]> arthur.barton.de Git - netatalk.git/blob - etc/afpd/volume.c
Enhance dircache robustness, dircache statistics logged in SIGALARM
[netatalk.git] / etc / afpd / volume.c
1 /*
2  * Copyright (c) 1990,1993 Regents of The University of Michigan.
3  * All Rights Reserved.  See COPYRIGHT.
4  */
5
6 #ifdef HAVE_CONFIG_H
7 #include "config.h"
8 #endif /* HAVE_CONFIG_H */
9
10 #include <stdio.h>
11 #include <stdlib.h>
12 #include <ctype.h>
13 #include <pwd.h>
14 #include <grp.h>
15 #include <utime.h>
16 #include <errno.h>
17 #ifdef HAVE_STRINGS_H
18 #include <strings.h>
19 #endif
20 /* STDC check */
21 #if STDC_HEADERS
22 #include <string.h>
23 #else /* STDC_HEADERS */
24 #ifndef HAVE_STRCHR
25 #define strchr index
26 #define strrchr index
27 #endif /* HAVE_STRCHR */
28 char *strchr (), *strrchr ();
29 #ifndef HAVE_MEMCPY
30 #define memcpy(d,s,n) bcopy ((s), (d), (n))
31 #define memmove(d,s,n) bcopy ((s), (d), (n))
32 #endif /* ! HAVE_MEMCPY */
33 #endif /* STDC_HEADERS */
34 #include <sys/param.h>
35 #include <sys/socket.h>
36 #include <netinet/in.h>
37 #include <arpa/inet.h>
38
39 #include <uuid/uuid.h>
40
41 #include <atalk/asp.h>
42 #include <atalk/dsi.h>
43 #include <atalk/adouble.h>
44 #include <atalk/afp.h>
45 #include <atalk/util.h>
46 #include <atalk/volinfo.h>
47 #include <atalk/logger.h>
48 #include <atalk/vfs.h>
49 #include <atalk/ea.h>
50 #ifdef CNID_DB
51 #include <atalk/cnid.h>
52 #endif /* CNID_DB*/
53
54 #include "globals.h"
55 #include "directory.h"
56 #include "file.h"
57 #include "volume.h"
58 #include "unix.h"
59 #include "mangle.h"
60 #include "fork.h"
61 #include "hash.h"
62 #include "acls.h"
63
64 extern int afprun(int root, char *cmd, int *outfd);
65
66 #ifndef MIN
67 #define MIN(a, b) ((a) < (b) ? (a) : (b))
68 #endif /* ! MIN */
69
70 #ifndef NO_LARGE_VOL_SUPPORT
71 #if BYTE_ORDER == BIG_ENDIAN
72 #define hton64(x)       (x)
73 #define ntoh64(x)       (x)
74 #else /* BYTE_ORDER == BIG_ENDIAN */
75 #define hton64(x)       ((u_int64_t) (htonl(((x) >> 32) & 0xffffffffLL)) | \
76                          (u_int64_t) ((htonl(x) & 0xffffffffLL) << 32))
77 #define ntoh64(x)       (hton64(x))
78 #endif /* BYTE_ORDER == BIG_ENDIAN */
79 #endif /* ! NO_LARGE_VOL_SUPPORT */
80
81 #ifndef UUID_PRINTABLE_STRING_LENGTH
82 #define UUID_PRINTABLE_STRING_LENGTH 37
83 #endif
84
85 /* Globals */
86 struct vol *current_vol;        /* last volume from getvolbyvid() */
87
88 static struct vol *Volumes = NULL;
89 static u_int16_t    lastvid = 0;
90 static char     *Trash = "\02\024Network Trash Folder";
91
92 static struct extmap    *Extmap = NULL, *Defextmap = NULL;
93 static int              Extmap_cnt;
94 static void             free_extmap(void);
95
96 #define VOLOPT_ALLOW      0  /* user allow list */
97 #define VOLOPT_DENY       1  /* user deny list */
98 #define VOLOPT_RWLIST     2  /* user rw list */
99 #define VOLOPT_ROLIST     3  /* user ro list */
100 #define VOLOPT_PASSWORD   4  /* volume password */
101 #define VOLOPT_CASEFOLD   5  /* character case mangling */
102 #define VOLOPT_FLAGS      6  /* various flags */
103 #define VOLOPT_DBPATH     7  /* path to database */
104 #define VOLOPT_LIMITSIZE  8  /* Limit the size of the volume */
105 /* Usable slot: 9 */
106 #define VOLOPT_VETO          10  /* list of veto filespec */
107 #define VOLOPT_PREEXEC       11  /* preexec command */
108 #define VOLOPT_ROOTPREEXEC   12  /* root preexec command */
109 #define VOLOPT_POSTEXEC      13  /* postexec command */
110 #define VOLOPT_ROOTPOSTEXEC  14  /* root postexec command */
111 #define VOLOPT_ENCODING      15  /* mac encoding (pre OSX)*/
112 #define VOLOPT_MACCHARSET    16
113 #define VOLOPT_CNIDSCHEME    17
114 #define VOLOPT_ADOUBLE       18  /* adouble version */
115
116 #ifdef FORCE_UIDGID
117 #warning UIDGID
118 #include "uid.h"
119
120 #define VOLOPT_FORCEUID      19  /* force uid for username x */
121 #define VOLOPT_FORCEGID      20  /* force gid for group x */
122 #endif /* FORCE_UIDGID */
123
124 #define VOLOPT_UMASK         21
125 #define VOLOPT_ALLOWED_HOSTS 22
126 #define VOLOPT_DENIED_HOSTS  23
127 #define VOLOPT_DPERM         24  /* dperm default directories perms */
128 #define VOLOPT_FPERM         25  /* fperm default files perms */
129 #define VOLOPT_DFLTPERM      26  /* perm */
130 #define VOLOPT_EA_VFS        27  /* Extended Attributes vfs indirection */
131 #define VOLOPT_CNIDSERVER    28  /* CNID Server ip address*/
132 #define VOLOPT_CNIDPORT      30  /* CNID server tcp port */
133
134 #define VOLOPT_MAX           31  /* <== IMPORTANT !!!!!! */
135 #define VOLOPT_NUM           (VOLOPT_MAX + 1)
136
137 #define VOLPASSLEN  8
138 #define VOLOPT_DEFAULT     ":DEFAULT:"
139 #define VOLOPT_DEFAULT_LEN 9
140
141 struct vol_option {
142     char *c_value;
143     int i_value;
144 };
145
146 typedef struct _special_folder {
147     const char *name;
148     int precreate;
149     mode_t mode;
150     int hide;
151 } _special_folder;
152
153 static const _special_folder special_folders[] = {
154     {"Network Trash Folder",     1,  0777,  1},
155     {"Temporary Items",          1,  0777,  1},
156     {".AppleDesktop",            1,  0777,  0},
157 #if 0
158     {"TheFindByContentFolder",   0,     0,  1},
159     {"TheVolumeSettingsFolder",  0,     0,  1},
160 #endif
161     {NULL, 0, 0, 0}};
162
163 /* Forward declarations */
164 static void handle_special_folders (const struct vol *);
165 static void deletevol(struct vol *vol);
166 static void volume_free(struct vol *vol);
167 static void check_ea_sys_support(struct vol *vol);
168
169 static void volfree(struct vol_option *options, const struct vol_option *save)
170 {
171     int i;
172
173     if (save) {
174         for (i = 0; i < VOLOPT_MAX; i++) {
175             if (options[i].c_value && (options[i].c_value != save[i].c_value))
176                 free(options[i].c_value);
177         }
178     } else {
179         for (i = 0; i < VOLOPT_MAX; i++) {
180             if (options[i].c_value)
181                 free(options[i].c_value);
182         }
183     }
184 }
185
186
187 #define is_var(a, b) (strncmp((a), (b), 2) == 0)
188
189 /*
190  * Handle variable substitutions. here's what we understand:
191  * $b   -> basename of path
192  * $c   -> client ip/appletalk address
193  * $d   -> volume pathname on server
194  * $f   -> full name (whatever's in the gecos field)
195  * $g   -> group
196  * $h   -> hostname
197  * $i   -> client ip/appletalk address without port
198  * $s   -> server name (hostname if it doesn't exist)
199  * $u   -> username (guest is usually nobody)
200  * $v   -> volume name or basename if null
201  * $z   -> zone (may not exist)
202  * $$   -> $
203  *
204  * This get's called from readvolfile with
205  * path = NULL, volname = NULL for xlating the volumes path
206  * path = path, volname = NULL for xlating the volumes name
207  * ... and from volumes options parsing code when xlating eg dbpath with
208  * path = path, volname = volname
209  *
210  * Using this information we can reject xlation of any variable depeninding on a login
211  * context which is not given in the afp master, where we must evaluate this whole stuff
212  * too for the Zeroconf announcements.
213  */
214 static char *volxlate(AFPObj *obj,
215                       char *dest,
216                       size_t destlen,
217                       char *src,
218                       struct passwd *pwd,
219                       char *path,
220                       char *volname)
221 {
222     char *p, *r;
223     const char *q;
224     int len;
225     char *ret;
226     int afpmaster = 0;
227     int xlatevolname = 0;
228
229     if (! ((DSI *)obj->handle)->child)
230         afpmaster = 1;
231
232     if (path && !volname)
233         /* cf above */
234         xlatevolname = 1;
235
236     if (!src) {
237         return NULL;
238     }
239     if (!dest) {
240         dest = calloc(destlen +1, 1);
241     }
242     ret = dest;
243     if (!ret) {
244         return NULL;
245     }
246     strlcpy(dest, src, destlen +1);
247     if ((p = strchr(src, '$')) == NULL) /* nothing to do */
248         return ret;
249
250     /* first part of the path. just forward to the next variable. */
251     len = MIN((size_t)(p - src), destlen);
252     if (len > 0) {
253         destlen -= len;
254         dest += len;
255     }
256
257     while (p && destlen > 0) {
258         /* now figure out what the variable is */
259         q = NULL;
260         if (is_var(p, "$b")) {
261             if (afpmaster && xlatevolname)
262                 return NULL;
263             if (path) {
264                 if ((q = strrchr(path, '/')) == NULL)
265                     q = path;
266                 else if (*(q + 1) != '\0')
267                     q++;
268             }
269         } else if (is_var(p, "$c")) {
270             if (afpmaster && xlatevolname)
271                 return NULL;
272             if (obj->proto == AFPPROTO_ASP) {
273                 ASP asp = obj->handle;
274
275                 len = sprintf(dest, "%u.%u", ntohs(asp->asp_sat.sat_addr.s_net),
276                               asp->asp_sat.sat_addr.s_node);
277                 dest += len;
278                 destlen -= len;
279
280             } else if (obj->proto == AFPPROTO_DSI) {
281                 DSI *dsi = obj->handle;
282                 len = sprintf(dest, "%s:%u",
283                               getip_string((struct sockaddr *)&dsi->client),
284                               getip_port((struct sockaddr *)&dsi->client));
285                 dest += len;
286                 destlen -= len;
287             }
288         } else if (is_var(p, "$d")) {
289             if (afpmaster && xlatevolname)
290                 return NULL;
291             q = path;
292         } else if (pwd && is_var(p, "$f")) {
293             if (afpmaster && xlatevolname)
294                 return NULL;
295             if ((r = strchr(pwd->pw_gecos, ',')))
296                 *r = '\0';
297             q = pwd->pw_gecos;
298         } else if (pwd && is_var(p, "$g")) {
299             if (afpmaster && xlatevolname)
300                 return NULL;
301             struct group *grp = getgrgid(pwd->pw_gid);
302             if (grp)
303                 q = grp->gr_name;
304         } else if (is_var(p, "$h")) {
305             q = obj->options.hostname;
306         } else if (is_var(p, "$i")) {
307             if (afpmaster && xlatevolname)
308                 return NULL;
309             if (obj->proto == AFPPROTO_ASP) {
310                 ASP asp = obj->handle;
311
312                 len = sprintf(dest, "%u", ntohs(asp->asp_sat.sat_addr.s_net));
313                 dest += len;
314                 destlen -= len;
315
316             } else if (obj->proto == AFPPROTO_DSI) {
317                 DSI *dsi = obj->handle;
318                 q = getip_string((struct sockaddr *)&dsi->client);
319             }
320         } else if (is_var(p, "$s")) {
321             if (obj->Obj)
322                 q = obj->Obj;
323             else if (obj->options.server) {
324                 q = obj->options.server;
325             } else
326                 q = obj->options.hostname;
327         } else if (obj->username && is_var(p, "$u")) {
328             if (afpmaster && xlatevolname)
329                 return NULL;
330             char* sep = NULL;
331             if ( obj->options.ntseparator && (sep = strchr(obj->username, obj->options.ntseparator[0])) != NULL)
332                 q = sep+1;
333             else
334                 q = obj->username;
335         } else if (is_var(p, "$v")) {
336             if (afpmaster && xlatevolname)
337                 return NULL;
338             if (volname) {
339                 q = volname;
340             }
341             else if (path) {
342                 if ((q = strrchr(path, '/')) == NULL)
343                     q = path;
344                 else if (*(q + 1) != '\0')
345                     q++;
346             }
347         } else if (is_var(p, "$z")) {
348             q = obj->Zone;
349         } else if (is_var(p, "$$")) {
350             q = "$";
351         } else
352             q = p;
353
354         /* copy the stuff over. if we don't understand something that we
355          * should, just skip it over. */
356         if (q) {
357             len = MIN(p == q ? 2 : strlen(q), destlen);
358             strncpy(dest, q, len);
359             dest += len;
360             destlen -= len;
361         }
362
363         /* stuff up to next $ */
364         src = p + 2;
365         p = strchr(src, '$');
366         len = p ? MIN((size_t)(p - src), destlen) : destlen;
367         if (len > 0) {
368             strncpy(dest, src, len);
369             dest += len;
370             destlen -= len;
371         }
372     }
373     return ret;
374 }
375
376 /* to make sure that val is valid, make sure to select an opt that
377    includes val */
378 static int optionok(const char *buf, const char *opt, const char *val)
379 {
380     if (!strstr(buf,opt))
381         return 0;
382     if (!val[1])
383         return 0;
384     return 1;
385 }
386
387
388 /* -------------------- */
389 static void setoption(struct vol_option *options, struct vol_option *save, int opt, const char *val)
390 {
391     if (options[opt].c_value && (!save || options[opt].c_value != save[opt].c_value))
392         free(options[opt].c_value);
393     options[opt].c_value = strdup(val + 1);
394 }
395
396 /* ------------------------------------------
397    handle all the options. tmp can't be NULL. */
398 static void volset(struct vol_option *options, struct vol_option *save,
399                    char *volname, int vlen,
400                    const char *tmp)
401 {
402     char *val;
403
404     val = strchr(tmp, ':');
405     if (!val) {
406         /* we'll assume it's a volume name. */
407         strncpy(volname, tmp, vlen);
408         volname[vlen] = 0;
409         return;
410     }
411 #if 0
412     LOG(log_debug, logtype_afpd, "Parsing volset %s", val);
413 #endif
414     if (optionok(tmp, "allow:", val)) {
415         setoption(options, save, VOLOPT_ALLOW, val);
416
417     } else if (optionok(tmp, "deny:", val)) {
418         setoption(options, save, VOLOPT_DENY, val);
419
420     } else if (optionok(tmp, "rwlist:", val)) {
421         setoption(options, save, VOLOPT_RWLIST, val);
422
423     } else if (optionok(tmp, "rolist:", val)) {
424         setoption(options, save, VOLOPT_ROLIST, val);
425
426     } else if (optionok(tmp, "codepage:", val)) {
427         LOG (log_error, logtype_afpd, "The old codepage system has been removed. Please make sure to read the documentation !!!!");
428         /* Make sure we don't screw anything */
429         exit (EXITERR_CONF);
430     } else if (optionok(tmp, "volcharset:", val)) {
431         setoption(options, save, VOLOPT_ENCODING, val);
432     } else if (optionok(tmp, "maccharset:", val)) {
433         setoption(options, save, VOLOPT_MACCHARSET, val);
434     } else if (optionok(tmp, "veto:", val)) {
435         setoption(options, save, VOLOPT_VETO, val);
436     } else if (optionok(tmp, "cnidscheme:", val)) {
437         setoption(options, save, VOLOPT_CNIDSCHEME, val);
438     } else if (optionok(tmp, "casefold:", val)) {
439         if (strcasecmp(val + 1, "tolower") == 0)
440             options[VOLOPT_CASEFOLD].i_value = AFPVOL_UMLOWER;
441         else if (strcasecmp(val + 1, "toupper") == 0)
442             options[VOLOPT_CASEFOLD].i_value = AFPVOL_UMUPPER;
443         else if (strcasecmp(val + 1, "xlatelower") == 0)
444             options[VOLOPT_CASEFOLD].i_value = AFPVOL_UUPPERMLOWER;
445         else if (strcasecmp(val + 1, "xlateupper") == 0)
446             options[VOLOPT_CASEFOLD].i_value = AFPVOL_ULOWERMUPPER;
447     } else if (optionok(tmp, "adouble:", val)) {
448         if (strcasecmp(val + 1, "v1") == 0)
449             options[VOLOPT_ADOUBLE].i_value = AD_VERSION1;
450 #if AD_VERSION == AD_VERSION2
451         else if (strcasecmp(val + 1, "v2") == 0)
452             options[VOLOPT_ADOUBLE].i_value = AD_VERSION2;
453         else if (strcasecmp(val + 1, "osx") == 0)
454             options[VOLOPT_ADOUBLE].i_value = AD_VERSION2_OSX;
455         else if (strcasecmp(val + 1, "sfm") == 0)
456             options[VOLOPT_ADOUBLE].i_value = AD_VERSION1_SFM;
457 #endif
458     } else if (optionok(tmp, "options:", val)) {
459         char *p;
460
461         if ((p = strtok(val + 1, ",")) == NULL) /* nothing */
462             return;
463
464         while (p) {
465             if (strcasecmp(p, "prodos") == 0)
466                 options[VOLOPT_FLAGS].i_value |= AFPVOL_A2VOL;
467             else if (strcasecmp(p, "mswindows") == 0) {
468                 options[VOLOPT_FLAGS].i_value |= AFPVOL_MSWINDOWS | AFPVOL_USEDOTS;
469             } else if (strcasecmp(p, "crlf") == 0)
470                 options[VOLOPT_FLAGS].i_value |= AFPVOL_CRLF;
471             else if (strcasecmp(p, "noadouble") == 0)
472                 options[VOLOPT_FLAGS].i_value |= AFPVOL_NOADOUBLE;
473             else if (strcasecmp(p, "ro") == 0)
474                 options[VOLOPT_FLAGS].i_value |= AFPVOL_RO;
475             else if (strcasecmp(p, "nohex") == 0)
476                 options[VOLOPT_FLAGS].i_value |= AFPVOL_NOHEX;
477             else if (strcasecmp(p, "usedots") == 0)
478                 options[VOLOPT_FLAGS].i_value |= AFPVOL_USEDOTS;
479             else if (strcasecmp(p, "invisibledots") == 0)
480                 options[VOLOPT_FLAGS].i_value |= AFPVOL_USEDOTS | AFPVOL_INV_DOTS;
481             else if (strcasecmp(p, "limitsize") == 0)
482                 options[VOLOPT_FLAGS].i_value |= AFPVOL_LIMITSIZE;
483             /* support for either "dropbox" or "dropkludge" */
484             else if (strcasecmp(p, "dropbox") == 0)
485                 options[VOLOPT_FLAGS].i_value |= AFPVOL_DROPBOX;
486             else if (strcasecmp(p, "dropkludge") == 0)
487                 options[VOLOPT_FLAGS].i_value |= AFPVOL_DROPBOX;
488             else if (strcasecmp(p, "nofileid") == 0)
489                 options[VOLOPT_FLAGS].i_value |= AFPVOL_NOFILEID;
490             else if (strcasecmp(p, "nostat") == 0)
491                 options[VOLOPT_FLAGS].i_value |= AFPVOL_NOSTAT;
492             else if (strcasecmp(p, "preexec_close") == 0)
493                 options[VOLOPT_PREEXEC].i_value = 1;
494             else if (strcasecmp(p, "root_preexec_close") == 0)
495                 options[VOLOPT_ROOTPREEXEC].i_value = 1;
496             else if (strcasecmp(p, "upriv") == 0)
497                 options[VOLOPT_FLAGS].i_value |= AFPVOL_UNIX_PRIV;
498             else if (strcasecmp(p, "nodev") == 0)
499                 options[VOLOPT_FLAGS].i_value |= AFPVOL_NODEV;
500             else if (strcasecmp(p, "caseinsensitive") == 0)
501                 options[VOLOPT_FLAGS].i_value |= AFPVOL_CASEINSEN;
502             else if (strcasecmp(p, "illegalseq") == 0)
503                 options[VOLOPT_FLAGS].i_value |= AFPVOL_EILSEQ;
504             else if (strcasecmp(p, "nocnidcache") == 0)
505                 options[VOLOPT_FLAGS].i_value &= ~AFPVOL_CACHE;
506             else if (strcasecmp(p, "tm") == 0)
507                 options[VOLOPT_FLAGS].i_value |= AFPVOL_TM;
508 /* Found this in branch dir-rewrite, maybe we want to use it sometimes */
509 #if 0
510             else if (strcasecmp(p, "cdrom") == 0)
511                 options[VOLOPT_FLAGS].i_value |= AFPVOL_CDROM | AFPVOL_RO;
512 #endif
513             p = strtok(NULL, ",");
514         }
515
516     } else if (optionok(tmp, "cnidserver:", val)) {
517         setoption(options, save, VOLOPT_CNIDSERVER, val);
518
519         char *p = strrchr(val + 1, ':');
520         if (p) {
521             *p = 0;
522             setoption(options, save, VOLOPT_CNIDPORT, p);
523         }
524
525         LOG(log_debug, logtype_afpd, "CNID Server for volume '%s': %s:%s",
526             volname, val + 1, p ? p + 1 : Cnid_port);
527
528     } else if (optionok(tmp, "dbpath:", val)) {
529         setoption(options, save, VOLOPT_DBPATH, val);
530
531     } else if (optionok(tmp, "umask:", val)) {
532         options[VOLOPT_UMASK].i_value = (int)strtol(val +1, NULL, 8);
533     } else if (optionok(tmp, "dperm:", val)) {
534         options[VOLOPT_DPERM].i_value = (int)strtol(val+1, NULL, 8);
535     } else if (optionok(tmp, "fperm:", val)) {
536         options[VOLOPT_FPERM].i_value = (int)strtol(val+1, NULL, 8);
537     } else if (optionok(tmp, "perm:", val)) {
538         options[VOLOPT_DFLTPERM].i_value = (int)strtol(val+1, NULL, 8);
539     } else if (optionok(tmp, "password:", val)) {
540         setoption(options, save, VOLOPT_PASSWORD, val);
541
542 #ifdef FORCE_UIDGID
543
544         /* this code allows forced uid/gid per volume settings */
545     } else if (optionok(tmp, "forceuid:", val)) {
546         setoption(options, save, VOLOPT_FORCEUID, val);
547     } else if (optionok(tmp, "forcegid:", val)) {
548         setoption(options, save, VOLOPT_FORCEGID, val);
549
550 #endif /* FORCE_UIDGID */
551     } else if (optionok(tmp, "root_preexec:", val)) {
552         setoption(options, save, VOLOPT_ROOTPREEXEC, val);
553
554     } else if (optionok(tmp, "preexec:", val)) {
555         setoption(options, save, VOLOPT_PREEXEC, val);
556
557     } else if (optionok(tmp, "root_postexec:", val)) {
558         setoption(options, save, VOLOPT_ROOTPOSTEXEC, val);
559
560     } else if (optionok(tmp, "postexec:", val)) {
561         setoption(options, save, VOLOPT_POSTEXEC, val);
562
563     } else if (optionok(tmp, "allowed_hosts:", val)) {
564         setoption(options, save, VOLOPT_ALLOWED_HOSTS, val);
565
566     } else if (optionok(tmp, "denied_hosts:", val)) {
567         setoption(options, save, VOLOPT_DENIED_HOSTS, val);
568
569     } else if (optionok(tmp, "ea:", val)) {
570         if (strcasecmp(val + 1, "ad") == 0)
571             options[VOLOPT_EA_VFS].i_value = AFPVOL_EA_AD;
572         else if (strcasecmp(val + 1, "sys") == 0)
573             options[VOLOPT_EA_VFS].i_value = AFPVOL_EA_SYS;
574         else if (strcasecmp(val + 1, "none") == 0)
575             options[VOLOPT_EA_VFS].i_value = AFPVOL_EA_NONE;
576
577     } else if (optionok(tmp, "volsizelimit:", val)) {
578         options[VOLOPT_LIMITSIZE].i_value = (uint32_t)strtoul(val + 1, NULL, 10);
579
580     } else {
581         /* ignore unknown options */
582         LOG(log_debug, logtype_afpd, "ignoring unknown volume option: %s", tmp);
583
584     }
585 }
586
587 /* ----------------- */
588 static void showvol(const ucs2_t *name)
589 {
590     struct vol  *volume;
591     for ( volume = Volumes; volume; volume = volume->v_next ) {
592         if (volume->v_hide && !strcasecmp_w( volume->v_name, name ) ) {
593             volume->v_hide = 0;
594             return;
595         }
596     }
597 }
598
599 /* ------------------------------- */
600 static int creatvol(AFPObj *obj, struct passwd *pwd,
601                     char *path, char *name,
602                     struct vol_option *options,
603                     const int user /* user defined volume */
604     )
605 {
606     struct vol  *volume;
607     int         suffixlen, vlen, tmpvlen, u8mvlen, macvlen;
608     int         hide = 0;
609     char        tmpname[AFPVOL_U8MNAMELEN+1];
610     ucs2_t      u8mtmpname[(AFPVOL_U8MNAMELEN+1)*2], mactmpname[(AFPVOL_MACNAMELEN+1)*2];
611     char        suffix[6]; /* max is #FFFF */
612     u_int16_t   flags;
613
614     if ( name == NULL || *name == '\0' ) {
615         if ((name = strrchr( path, '/' )) == NULL) {
616             return -1;  /* Obviously not a fully qualified path */
617         }
618
619         /* if you wish to share /, you need to specify a name. */
620         if (*++name == '\0')
621             return -1;
622     }
623
624     /* suffix for mangling use (lastvid + 1)   */
625     /* because v_vid has not been decided yet. */
626     suffixlen = sprintf(suffix, "%c%X", MANGLE_CHAR, lastvid + 1 );
627
628     vlen = strlen( name );
629
630     /* Unicode Volume Name */
631     /* Firstly convert name from unixcharset to UTF8-MAC */
632     flags = CONV_IGNORE;
633     tmpvlen = convert_charset(obj->options.unixcharset, CH_UTF8_MAC, 0, name, vlen, tmpname, AFPVOL_U8MNAMELEN, &flags);
634     if (tmpvlen <= 0) {
635         strcpy(tmpname, "???");
636         tmpvlen = 3;
637     }
638
639     /* Do we have to mangle ? */
640     if ( (flags & CONV_REQMANGLE) || (tmpvlen > obj->options.volnamelen)) {
641         if (tmpvlen + suffixlen > obj->options.volnamelen) {
642             flags = CONV_FORCE;
643             tmpvlen = convert_charset(obj->options.unixcharset, CH_UTF8_MAC, 0, name, vlen, tmpname, obj->options.volnamelen - suffixlen, &flags);
644             tmpname[tmpvlen >= 0 ? tmpvlen : 0] = 0;
645         }
646         strcat(tmpname, suffix);
647         tmpvlen = strlen(tmpname);
648     }
649
650     /* Secondly convert name from UTF8-MAC to UCS2 */
651     if ( 0 >= ( u8mvlen = convert_string(CH_UTF8_MAC, CH_UCS2, tmpname, tmpvlen, u8mtmpname, AFPVOL_U8MNAMELEN*2)) )
652         return -1;
653
654     LOG(log_debug, logtype_afpd, "createvol: Volume '%s' -> UTF8-MAC Name: '%s'", name, tmpname);
655
656     /* Maccharset Volume Name */
657     /* Firsty convert name from unixcharset to maccharset */
658     flags = CONV_IGNORE;
659     tmpvlen = convert_charset(obj->options.unixcharset, obj->options.maccharset, 0, name, vlen, tmpname, AFPVOL_U8MNAMELEN, &flags);
660     if (tmpvlen <= 0) {
661         strcpy(tmpname, "???");
662         tmpvlen = 3;
663     }
664
665     /* Do we have to mangle ? */
666     if ( (flags & CONV_REQMANGLE) || (tmpvlen > AFPVOL_MACNAMELEN)) {
667         if (tmpvlen + suffixlen > AFPVOL_MACNAMELEN) {
668             flags = CONV_FORCE;
669             tmpvlen = convert_charset(obj->options.unixcharset, obj->options.maccharset, 0, name, vlen, tmpname, AFPVOL_MACNAMELEN - suffixlen, &flags);
670             tmpname[tmpvlen >= 0 ? tmpvlen : 0] = 0;
671         }
672         strcat(tmpname, suffix);
673         tmpvlen = strlen(tmpname);
674     }
675
676     /* Secondly convert name from maccharset to UCS2 */
677     if ( 0 >= ( macvlen = convert_string(obj->options.maccharset, CH_UCS2, tmpname, tmpvlen, mactmpname, AFPVOL_U8MNAMELEN*2)) )
678         return -1;
679
680     LOG(log_debug, logtype_afpd, "createvol: Volume '%s' ->  Longname: '%s'", name, tmpname);
681
682     /* check duplicate */
683     for ( volume = Volumes; volume; volume = volume->v_next ) {
684         if (( strcasecmp_w( volume->v_u8mname, u8mtmpname ) == 0 ) || ( strcasecmp_w( volume->v_macname, mactmpname ) == 0 )){
685             if (volume->v_deleted) {
686                 volume->v_new = hide = 1;
687             }
688             else {
689                 return -1;  /* Won't be able to access it, anyway... */
690             }
691         }
692     }
693
694     if (!( volume = (struct vol *)calloc(1, sizeof( struct vol ))) ) {
695         LOG(log_error, logtype_afpd, "creatvol: malloc: %s", strerror(errno) );
696         return -1;
697     }
698     if ( NULL == ( volume->v_localname = strdup(name))) {
699         LOG(log_error, logtype_afpd, "creatvol: malloc: %s", strerror(errno) );
700         free(volume);
701         return -1;
702     }
703
704     if ( NULL == ( volume->v_u8mname = strdup_w(u8mtmpname))) {
705         LOG(log_error, logtype_afpd, "creatvol: malloc: %s", strerror(errno) );
706         volume_free(volume);
707         free(volume);
708         return -1;
709     }
710     if ( NULL == ( volume->v_macname = strdup_w(mactmpname))) {
711         LOG(log_error, logtype_afpd, "creatvol: malloc: %s", strerror(errno) );
712         volume_free(volume);
713         free(volume);
714         return -1;
715     }
716     if (!( volume->v_path = (char *)malloc( strlen( path ) + 1 )) ) {
717         LOG(log_error, logtype_afpd, "creatvol: malloc: %s", strerror(errno) );
718         volume_free(volume);
719         free(volume);
720         return -1;
721     }
722
723     volume->v_name = utf8_encoding()?volume->v_u8mname:volume->v_macname;
724     volume->v_hide = hide;
725     strcpy( volume->v_path, path );
726
727 #ifdef __svr4__
728     volume->v_qfd = -1;
729 #endif /* __svr4__ */
730     /* os X start at 1 and use network order ie. 1 2 3 */
731     volume->v_vid = ++lastvid;
732     volume->v_vid = htons(volume->v_vid);
733 #ifdef HAVE_ACLS
734     if (check_vol_acl_support(volume))
735         volume->v_flags |= AFPVOL_ACLS;
736 #endif
737
738     /* handle options */
739     if (options) {
740         volume->v_casefold = options[VOLOPT_CASEFOLD].i_value;
741         volume->v_flags |= options[VOLOPT_FLAGS].i_value;
742
743         if (options[VOLOPT_EA_VFS].i_value)
744             volume->v_vfs_ea = options[VOLOPT_EA_VFS].i_value;
745
746         volume->v_ad_options = 0;
747         if ((volume->v_flags & AFPVOL_NODEV))
748             volume->v_ad_options |= ADVOL_NODEV;
749         if ((volume->v_flags & AFPVOL_CACHE))
750             volume->v_ad_options |= ADVOL_CACHE;
751         if ((volume->v_flags & AFPVOL_UNIX_PRIV))
752             volume->v_ad_options |= ADVOL_UNIXPRIV;
753         if ((volume->v_flags & AFPVOL_INV_DOTS))
754             volume->v_ad_options |= ADVOL_INVDOTS;
755         if ((volume->v_flags & AFPVOL_NOADOUBLE))
756             volume->v_ad_options |= ADVOL_NOADOUBLE;
757
758         if (options[VOLOPT_PASSWORD].c_value)
759             volume->v_password = strdup(options[VOLOPT_PASSWORD].c_value);
760
761         if (options[VOLOPT_VETO].c_value)
762             volume->v_veto = strdup(options[VOLOPT_VETO].c_value);
763
764         if (options[VOLOPT_ENCODING].c_value)
765             volume->v_volcodepage = strdup(options[VOLOPT_ENCODING].c_value);
766
767         if (options[VOLOPT_MACCHARSET].c_value)
768             volume->v_maccodepage = strdup(options[VOLOPT_MACCHARSET].c_value);
769
770         if (options[VOLOPT_DBPATH].c_value)
771             volume->v_dbpath = volxlate(obj, NULL, MAXPATHLEN, options[VOLOPT_DBPATH].c_value, pwd, path, name);
772
773         if (options[VOLOPT_CNIDSCHEME].c_value)
774             volume->v_cnidscheme = strdup(options[VOLOPT_CNIDSCHEME].c_value);
775
776         if (options[VOLOPT_CNIDSERVER].c_value)
777             volume->v_cnidserver = strdup(options[VOLOPT_CNIDSERVER].c_value);
778
779         if (options[VOLOPT_CNIDPORT].c_value)
780             volume->v_cnidport = strdup(options[VOLOPT_CNIDPORT].c_value);
781
782         if (options[VOLOPT_UMASK].i_value)
783             volume->v_umask = (mode_t)options[VOLOPT_UMASK].i_value;
784
785         if (options[VOLOPT_DPERM].i_value)
786             volume->v_dperm = (mode_t)options[VOLOPT_DPERM].i_value;
787
788         if (options[VOLOPT_FPERM].i_value)
789             volume->v_fperm = (mode_t)options[VOLOPT_FPERM].i_value;
790
791         if (options[VOLOPT_DFLTPERM].i_value)
792             volume->v_perm = (mode_t)options[VOLOPT_DFLTPERM].i_value;
793
794         if (options[VOLOPT_ADOUBLE].i_value)
795             volume->v_adouble = options[VOLOPT_ADOUBLE].i_value;
796         else
797             volume->v_adouble = AD_VERSION;
798
799         if (options[VOLOPT_LIMITSIZE].i_value)
800             volume->v_limitsize = options[VOLOPT_LIMITSIZE].i_value;
801
802         /* Mac to Unix conversion flags*/
803         volume->v_mtou_flags = 0;
804         if (!(volume->v_flags & AFPVOL_NOHEX))
805             volume->v_mtou_flags |= CONV_ESCAPEHEX;
806         if (!(volume->v_flags & AFPVOL_USEDOTS))
807             volume->v_mtou_flags |= CONV_ESCAPEDOTS;
808         if ((volume->v_flags & AFPVOL_EILSEQ))
809             volume->v_mtou_flags |= CONV__EILSEQ;
810
811         if ((volume->v_casefold & AFPVOL_MTOUUPPER))
812             volume->v_mtou_flags |= CONV_TOUPPER;
813         else if ((volume->v_casefold & AFPVOL_MTOULOWER))
814             volume->v_mtou_flags |= CONV_TOLOWER;
815
816         /* Unix to Mac conversion flags*/
817         volume->v_utom_flags = CONV_IGNORE | CONV_UNESCAPEHEX;
818         if ((volume->v_casefold & AFPVOL_UTOMUPPER))
819             volume->v_utom_flags |= CONV_TOUPPER;
820         else if ((volume->v_casefold & AFPVOL_UTOMLOWER))
821             volume->v_utom_flags |= CONV_TOLOWER;
822
823         if ((volume->v_flags & AFPVOL_EILSEQ))
824             volume->v_utom_flags |= CONV__EILSEQ;
825
826 #ifdef FORCE_UIDGID
827         if (options[VOLOPT_FORCEUID].c_value) {
828             volume->v_forceuid = strdup(options[VOLOPT_FORCEUID].c_value);
829         } else {
830             volume->v_forceuid = NULL; /* set as null so as to return 0 later on */
831         }
832
833         if (options[VOLOPT_FORCEGID].c_value) {
834             volume->v_forcegid = strdup(options[VOLOPT_FORCEGID].c_value);
835         } else {
836             volume->v_forcegid = NULL; /* set as null so as to return 0 later on */
837         }
838 #endif
839         if (!user) {
840             if (options[VOLOPT_PREEXEC].c_value)
841                 volume->v_preexec = volxlate(obj, NULL, MAXPATHLEN, options[VOLOPT_PREEXEC].c_value, pwd, path, name);
842             volume->v_preexec_close = options[VOLOPT_PREEXEC].i_value;
843
844             if (options[VOLOPT_POSTEXEC].c_value)
845                 volume->v_postexec = volxlate(obj, NULL, MAXPATHLEN, options[VOLOPT_POSTEXEC].c_value, pwd, path, name);
846
847             if (options[VOLOPT_ROOTPREEXEC].c_value)
848                 volume->v_root_preexec = volxlate(obj, NULL, MAXPATHLEN, options[VOLOPT_ROOTPREEXEC].c_value, pwd, path,  name);
849             volume->v_root_preexec_close = options[VOLOPT_ROOTPREEXEC].i_value;
850
851             if (options[VOLOPT_ROOTPOSTEXEC].c_value)
852                 volume->v_root_postexec = volxlate(obj, NULL, MAXPATHLEN, options[VOLOPT_ROOTPOSTEXEC].c_value, pwd, path,  name);
853         }
854     }
855     volume->v_dperm |= volume->v_perm;
856     volume->v_fperm |= volume->v_perm;
857
858     /* Check EA support on volume */
859     if (volume->v_vfs_ea == AFPVOL_EA_AUTO)
860         check_ea_sys_support(volume);
861     initvol_vfs(volume);
862
863     /* get/store uuid from file */
864     if (volume->v_flags & AFPVOL_TM) {
865         char *uuid = get_uuid(obj, volume->v_localname);
866         if (!uuid) {
867             LOG(log_error, logtype_afpd, "Volume '%s': couldn't get UUID",
868                 volume->v_localname);
869         } else {
870             volume->v_uuid = uuid;
871             LOG(log_debug, logtype_afpd, "Volume '%s': UUID '%s'",
872                 volume->v_localname, volume->v_uuid);
873         }
874     }
875
876     volume->v_next = Volumes;
877     Volumes = volume;
878     return 0;
879 }
880
881 /* ---------------- */
882 static char *myfgets( char *buf, int size, FILE *fp)
883 {
884     char    *p;
885     int     c;
886
887     p = buf;
888     while ((EOF != ( c = getc( fp )) ) && ( size > 1 )) {
889         if ( c == '\n' || c == '\r' ) {
890             if (p != buf && *(p -1) == '\\') {
891                 p--;
892                 size++;
893                 continue;
894             }
895             *p++ = '\n';
896             break;
897         } else {
898             *p++ = c;
899         }
900         size--;
901     }
902
903     if ( p == buf ) {
904         return( NULL );
905     } else {
906         *p = '\0';
907         return( buf );
908     }
909 }
910
911
912 /* check access list. this function wants something of the following
913  * form:
914  *        @group,name,name2,@group2,name3
915  *
916  * a NULL argument allows everybody to have access.
917  * we return three things:
918  *     -1: no list
919  *      0: list exists, but name isn't in it
920  *      1: in list
921  */
922
923 #ifndef NO_REAL_USER_NAME
924 /* authentication is case insensitive
925  * FIXME should we do the same with group name?
926  */
927 #define access_strcmp strcasecmp
928
929 #else
930 #define access_strcmp strcmp
931
932 #endif
933
934 static int accessvol(const char *args, const char *name)
935 {
936     char buf[MAXPATHLEN + 1], *p;
937     struct group *gr;
938
939     if (!args)
940         return -1;
941
942     strlcpy(buf, args, sizeof(buf));
943     if ((p = strtok(buf, ",")) == NULL) /* nothing, return okay */
944         return -1;
945
946     while (p) {
947         if (*p == '@') { /* it's a group */
948             if ((gr = getgrnam(p + 1)) && gmem(gr->gr_gid))
949                 return 1;
950         } else if (access_strcmp(p, name) == 0) /* it's a user name */
951             return 1;
952         p = strtok(NULL, ",");
953     }
954
955     return 0;
956 }
957
958 static int hostaccessvol(int type, const char *volname, const char *args, const AFPObj *obj)
959 {
960     int mask_int;
961     char buf[MAXPATHLEN + 1], *p, *b;
962     DSI *dsi = obj->handle;
963     struct sockaddr_storage client;
964
965     if (!args)
966         return -1;
967
968     strlcpy(buf, args, sizeof(buf));
969     if ((p = strtok_r(buf, ",", &b)) == NULL) /* nothing, return okay */
970         return -1;
971
972     if (obj->proto != AFPPROTO_DSI)
973         return -1;
974
975     while (p) {
976         int ret;
977         char *ipaddr, *mask_char;
978         struct addrinfo hints, *ai;
979
980         ipaddr = strtok(p, "/");
981         mask_char = strtok(NULL,"/");
982
983         /* Get address from string with getaddrinfo */
984         memset(&hints, 0, sizeof hints);
985         hints.ai_family = AF_UNSPEC;
986         hints.ai_socktype = SOCK_STREAM;
987         if ((ret = getaddrinfo(ipaddr, NULL, &hints, &ai)) != 0) {
988             LOG(log_error, logtype_afpd, "hostaccessvol: getaddrinfo: %s\n", gai_strerror(ret));
989             continue;
990         }
991
992         /* netmask */
993         if (mask_char != NULL)
994             mask_int = atoi(mask_char); /* apply_ip_mask does range checking on it */
995         else {
996             if (ai->ai_family == AF_INET) /* IPv4 */
997                 mask_int = 32;
998             else                          /* IPv6 */
999                 mask_int = 128;
1000         }
1001
1002         /* Apply mask to addresses */
1003         client = dsi->client;
1004         apply_ip_mask((struct sockaddr *)&client, mask_int);
1005         apply_ip_mask(ai->ai_addr, mask_int);
1006
1007         if (compare_ip((struct sockaddr *)&client, ai->ai_addr) == 0) {
1008             if (type == VOLOPT_DENIED_HOSTS)
1009                 LOG(log_info, logtype_afpd, "AFP access denied for client IP '%s' to volume '%s' by denied list",
1010                     getip_string((struct sockaddr *)&client), volname);
1011             freeaddrinfo(ai);
1012             return 1;
1013         }
1014
1015         /* next address */
1016         freeaddrinfo(ai);
1017         p = strtok_r(NULL, ",", &b);
1018     }
1019
1020     if (type == VOLOPT_ALLOWED_HOSTS)
1021         LOG(log_info, logtype_afpd, "AFP access denied for client IP '%s' to volume '%s', not in allowed list",
1022             getip_string((struct sockaddr *)&dsi->client), volname);
1023     return 0;
1024 }
1025
1026 static void setextmap(char *ext, char *type, char *creator, int user)
1027 {
1028     struct extmap   *em;
1029     int                 cnt;
1030
1031     if (Extmap == NULL) {
1032         if (( Extmap = calloc(1, sizeof( struct extmap ))) == NULL ) {
1033             LOG(log_error, logtype_afpd, "setextmap: calloc: %s", strerror(errno) );
1034             return;
1035         }
1036     }
1037     ext++;
1038     for ( em = Extmap, cnt = 0; em->em_ext; em++, cnt++) {
1039         if ( (strdiacasecmp( em->em_ext, ext )) == 0 ) {
1040             break;
1041         }
1042     }
1043
1044     if ( em->em_ext == NULL ) {
1045         if (!(Extmap  = realloc( Extmap, sizeof( struct extmap ) * (cnt +2))) ) {
1046             LOG(log_error, logtype_afpd, "setextmap: realloc: %s", strerror(errno) );
1047             return;
1048         }
1049         (Extmap +cnt +1)->em_ext = NULL;
1050         em = Extmap +cnt;
1051     } else if ( !user ) {
1052         return;
1053     }
1054     if (em->em_ext)
1055         free(em->em_ext);
1056
1057     if (!(em->em_ext = strdup(  ext))) {
1058         LOG(log_error, logtype_afpd, "setextmap: strdup: %s", strerror(errno) );
1059         return;
1060     }
1061
1062     if ( *type == '\0' ) {
1063         memcpy(em->em_type, "\0\0\0\0", sizeof( em->em_type ));
1064     } else {
1065         memcpy(em->em_type, type, sizeof( em->em_type ));
1066     }
1067     if ( *creator == '\0' ) {
1068         memcpy(em->em_creator, "\0\0\0\0", sizeof( em->em_creator ));
1069     } else {
1070         memcpy(em->em_creator, creator, sizeof( em->em_creator ));
1071     }
1072 }
1073
1074 /* -------------------------- */
1075 static int extmap_cmp(const void *map1, const void *map2)
1076 {
1077     const struct extmap *em1 = map1;
1078     const struct extmap *em2 = map2;
1079     return strdiacasecmp(em1->em_ext, em2->em_ext);
1080 }
1081
1082 static void sortextmap( void)
1083 {
1084     struct extmap   *em;
1085
1086     Extmap_cnt = 0;
1087     if ((em = Extmap) == NULL) {
1088         return;
1089     }
1090     while (em->em_ext) {
1091         em++;
1092         Extmap_cnt++;
1093     }
1094     if (Extmap_cnt) {
1095         qsort(Extmap, Extmap_cnt, sizeof(struct extmap), extmap_cmp);
1096         if (*Extmap->em_ext == 0) {
1097             /* the first line is really "." the default entry,
1098              * we remove the leading '.' in setextmap
1099              */
1100             Defextmap = Extmap;
1101         }
1102     }
1103 }
1104
1105 /* ----------------------
1106  */
1107 static void free_extmap( void)
1108 {
1109     struct extmap   *em;
1110
1111     if (Extmap) {
1112         for ( em = Extmap; em->em_ext; em++) {
1113             free (em->em_ext);
1114         }
1115         free(Extmap);
1116         Extmap = NULL;
1117         Defextmap = Extmap;
1118         Extmap_cnt = 0;
1119     }
1120 }
1121
1122 /* ----------------------
1123  */
1124 static int volfile_changed(struct afp_volume_name *p)
1125 {
1126     struct stat      st;
1127     char *name;
1128
1129     if (p->full_name)
1130         name = p->full_name;
1131     else
1132         name = p->name;
1133
1134     if (!stat( name, &st) && st.st_mtime > p->mtime) {
1135         p->mtime = st.st_mtime;
1136         return 1;
1137     }
1138     return 0;
1139 }
1140
1141 /* ----------------------
1142  * Read a volume configuration file and add the volumes contained within to
1143  * the global volume list. This gets called from the forked afpd childs.
1144  * The master now reads this too for Zeroconf announcements.
1145  *
1146  * If p2 is non-NULL, the file that is opened is
1147  * p1/p2
1148  *
1149  * Lines that begin with # and blank lines are ignored.
1150  * Volume lines are of the form:
1151  *      <unix path> [<volume name>] [allow:<user>,<@group>,...] \
1152  *                           [codepage:<file>] [casefold:<num>]
1153  *      <extension> TYPE [CREATOR]
1154  *
1155  */
1156 int readvolfile(AFPObj *obj, struct afp_volume_name *p1, char *p2, int user, struct passwd *pwent)
1157 {
1158     FILE        *fp;
1159     char        path[MAXPATHLEN + 1];
1160     char        tmp[MAXPATHLEN + 1];
1161     char        volname[AFPVOL_U8MNAMELEN + 1];
1162     char        buf[BUFSIZ];
1163     char        type[5], creator[5];
1164     char        *u, *p;
1165     int         fd;
1166     int         i;
1167     struct passwd   *pw;
1168     struct vol_option   save_options[VOLOPT_NUM];
1169     struct vol_option   options[VOLOPT_NUM];
1170     struct stat         st;
1171
1172     if (!p1->name)
1173         return -1;
1174     p1->mtime = 0;
1175     strcpy( path, p1->name );
1176     if ( p2 != NULL ) {
1177         strcat( path, "/" );
1178         strcat( path, p2 );
1179         if (p1->full_name) {
1180             free(p1->full_name);
1181         }
1182         p1->full_name = strdup(path);
1183     }
1184
1185     if (NULL == ( fp = fopen( path, "r" )) ) {
1186         return( -1 );
1187     }
1188     fd = fileno(fp);
1189     if (fd != -1 && !fstat( fd, &st) ) {
1190         p1->mtime = st.st_mtime;
1191     }
1192
1193     memset(save_options, 0, sizeof(save_options));
1194
1195     /* Enable some default options for all volumes */
1196     save_options[VOLOPT_FLAGS].i_value |= AFPVOL_CACHE;
1197     save_options[VOLOPT_EA_VFS].i_value = AFPVOL_EA_AUTO;
1198     LOG(log_maxdebug, logtype_afpd, "readvolfile: seeding default umask: %04o",
1199         obj->options.umask);
1200     save_options[VOLOPT_UMASK].i_value = obj->options.umask;
1201
1202     while ( myfgets( buf, sizeof( buf ), fp ) != NULL ) {
1203         initline( strlen( buf ), buf );
1204         parseline( sizeof( path ) - 1, path );
1205         switch ( *path ) {
1206         case '\0' :
1207         case '#' :
1208             continue;
1209
1210         case ':':
1211             /* change the default options for this file */
1212             if (strncmp(path, VOLOPT_DEFAULT, VOLOPT_DEFAULT_LEN) == 0) {
1213                 *tmp = '\0';
1214                 for (i = 0; i < VOLOPT_NUM; i++) {
1215                     if (parseline( sizeof( path ) - VOLOPT_DEFAULT_LEN - 1,
1216                                    path + VOLOPT_DEFAULT_LEN) < 0)
1217                         break;
1218                     volset(save_options, NULL, tmp, sizeof(tmp) - 1,
1219                            path + VOLOPT_DEFAULT_LEN);
1220                 }
1221             }
1222             break;
1223
1224         case '~' :
1225             if (( p = strchr( path, '/' )) != NULL ) {
1226                 *p++ = '\0';
1227             }
1228             u = path;
1229             u++;
1230             if ( *u == '\0' ) {
1231                 u = obj->username;
1232             }
1233             if ( u == NULL || *u == '\0' || ( pw = getpwnam( u )) == NULL ) {
1234                 continue;
1235             }
1236             strcpy( tmp, pw->pw_dir );
1237             if ( p != NULL && *p != '\0' ) {
1238                 strcat( tmp, "/" );
1239                 strcat( tmp, p );
1240             }
1241             /* fall through */
1242
1243         case '/' :
1244             /* send path through variable substitution */
1245             if (*path != '~') /* need to copy path to tmp */
1246                 strcpy(tmp, path);
1247             if (!pwent && obj->username)
1248                 pwent = getpwnam(obj->username);
1249
1250             if (volxlate(obj, path, sizeof(path) - 1, tmp, pwent, NULL, NULL) == NULL)
1251                 continue;
1252
1253             /* this is sort of braindead. basically, i want to be
1254              * able to specify things in any order, but i don't want to
1255              * re-write everything. */
1256
1257             memcpy(options, save_options, sizeof(options));
1258             *volname = '\0';
1259
1260             /* read in up to VOLOP_NUM possible options */
1261             for (i = 0; i < VOLOPT_NUM; i++) {
1262                 if (parseline( sizeof( tmp ) - 1, tmp ) < 0)
1263                     break;
1264
1265                 volset(options, save_options, volname, sizeof(volname) - 1, tmp);
1266             }
1267
1268             /* check allow/deny lists:
1269                allow -> either no list (-1), or in list (1)
1270                deny -> either no list (-1), or not in list (0) */
1271             if (accessvol(options[VOLOPT_ALLOW].c_value, obj->username) &&
1272                 (accessvol(options[VOLOPT_DENY].c_value, obj->username) < 1) &&
1273                 hostaccessvol(VOLOPT_ALLOWED_HOSTS, volname, options[VOLOPT_ALLOWED_HOSTS].c_value, obj) &&
1274                 (hostaccessvol(VOLOPT_DENIED_HOSTS, volname, options[VOLOPT_DENIED_HOSTS].c_value, obj) < 1)) {
1275
1276                 /* handle read-only behaviour. semantics:
1277                  * 1) neither the rolist nor the rwlist exist -> rw
1278                  * 2) rolist exists -> ro if user is in it.
1279                  * 3) rwlist exists -> ro unless user is in it. */
1280                 if (((options[VOLOPT_FLAGS].i_value & AFPVOL_RO) == 0) &&
1281                     ((accessvol(options[VOLOPT_ROLIST].c_value,
1282                                 obj->username) == 1) ||
1283                      !accessvol(options[VOLOPT_RWLIST].c_value,
1284                                 obj->username)))
1285                     options[VOLOPT_FLAGS].i_value |= AFPVOL_RO;
1286
1287                 /* do variable substitution for volname */
1288                 if (volxlate(obj, tmp, sizeof(tmp) - 1, volname, pwent, path, NULL) == NULL)
1289                     continue;
1290
1291                 creatvol(obj, pwent, path, tmp, options, p2 != NULL);
1292             }
1293             volfree(options, save_options);
1294             break;
1295
1296         case '.' :
1297             parseline( sizeof( type ) - 1, type );
1298             parseline( sizeof( creator ) - 1, creator );
1299             setextmap( path, type, creator, user);
1300             break;
1301
1302         default :
1303             break;
1304         }
1305     }
1306     volfree(save_options, NULL);
1307     sortextmap();
1308     if ( fclose( fp ) != 0 ) {
1309         LOG(log_error, logtype_afpd, "readvolfile: fclose: %s", strerror(errno) );
1310     }
1311     p1->loaded = 1;
1312     return( 0 );
1313 }
1314
1315 /* ------------------------------- */
1316 static void volume_free(struct vol *vol)
1317 {
1318     free(vol->v_localname);
1319     vol->v_localname = NULL;
1320     free(vol->v_u8mname);
1321     vol->v_u8mname = NULL;
1322     free(vol->v_macname);
1323     vol->v_macname = NULL;
1324     free(vol->v_path);
1325     free(vol->v_password);
1326     free(vol->v_veto);
1327     free(vol->v_volcodepage);
1328     free(vol->v_maccodepage);
1329     free(vol->v_cnidscheme);
1330     free(vol->v_dbpath);
1331     free(vol->v_gvs);
1332 #ifdef FORCE_UIDGID
1333     free(vol->v_forceuid);
1334     free(vol->v_forcegid);
1335 #endif /* FORCE_UIDGID */
1336     if (vol->v_uuid)
1337         free(vol->v_uuid);
1338 }
1339
1340 /* ------------------------------- */
1341 static void free_volumes(void )
1342 {
1343     struct vol  *vol;
1344     struct vol  *nvol, *ovol;
1345
1346     for ( vol = Volumes; vol; vol = vol->v_next ) {
1347         if (( vol->v_flags & AFPVOL_OPEN ) ) {
1348             vol->v_deleted = 1;
1349             continue;
1350         }
1351         volume_free(vol);
1352     }
1353
1354     for ( vol = Volumes, ovol = NULL; vol; vol = nvol) {
1355         nvol = vol->v_next;
1356
1357         if (vol->v_localname == NULL) {
1358             if (Volumes == vol) {
1359                 Volumes = nvol;
1360                 ovol = Volumes;
1361             }
1362             else {
1363                 ovol->v_next = nvol;
1364             }
1365             free(vol);
1366         }
1367         else {
1368             ovol = vol;
1369         }
1370     }
1371 }
1372
1373 /* ------------------------------- */
1374 static void volume_unlink(struct vol *volume)
1375 {
1376     struct vol *vol, *ovol, *nvol;
1377
1378     if (volume == Volumes) {
1379         Volumes = Volumes->v_next;
1380         return;
1381     }
1382     for ( vol = Volumes->v_next, ovol = Volumes; vol; vol = nvol) {
1383         nvol = vol->v_next;
1384
1385         if (vol == volume) {
1386             ovol->v_next = nvol;
1387             break;
1388         }
1389         else {
1390             ovol = vol;
1391         }
1392     }
1393 }
1394
1395 static int getvolspace(struct vol *vol,
1396                        u_int32_t *bfree, u_int32_t *btotal,
1397                        VolSpace *xbfree, VolSpace *xbtotal, u_int32_t *bsize)
1398 {
1399     int         spaceflag, rc;
1400     u_int32_t   maxsize;
1401 #ifndef NO_QUOTA_SUPPORT
1402     VolSpace    qfree, qtotal;
1403 #endif
1404
1405     spaceflag = AFPVOL_GVSMASK & vol->v_flags;
1406     /* report up to 2GB if afp version is < 2.2 (4GB if not) */
1407     maxsize = (vol->v_flags & AFPVOL_A2VOL) ? 0x01fffe00 :
1408         (((afp_version < 22) || (vol->v_flags & AFPVOL_LIMITSIZE))
1409          ? 0x7fffffffL : 0xffffffffL);
1410
1411 #ifdef AFS
1412     if ( spaceflag == AFPVOL_NONE || spaceflag == AFPVOL_AFSGVS ) {
1413         if ( afs_getvolspace( vol, xbfree, xbtotal, bsize ) == AFP_OK ) {
1414             vol->v_flags = ( ~AFPVOL_GVSMASK & vol->v_flags ) | AFPVOL_AFSGVS;
1415             goto getvolspace_done;
1416         }
1417     }
1418 #endif
1419
1420     if (( rc = ustatfs_getvolspace( vol, xbfree, xbtotal, bsize)) != AFP_OK ) {
1421         return( rc );
1422     }
1423
1424 #define min(a,b)    ((a)<(b)?(a):(b))
1425 #ifndef NO_QUOTA_SUPPORT
1426     if ( spaceflag == AFPVOL_NONE || spaceflag == AFPVOL_UQUOTA ) {
1427         if ( uquota_getvolspace( vol, &qfree, &qtotal, *bsize ) == AFP_OK ) {
1428             vol->v_flags = ( ~AFPVOL_GVSMASK & vol->v_flags ) | AFPVOL_UQUOTA;
1429             *xbfree = min(*xbfree, qfree);
1430             *xbtotal = min( *xbtotal, qtotal);
1431             goto getvolspace_done;
1432         }
1433     }
1434 #endif
1435     vol->v_flags = ( ~AFPVOL_GVSMASK & vol->v_flags ) | AFPVOL_USTATFS;
1436
1437 getvolspace_done:
1438     if (vol->v_limitsize) {
1439         /* FIXME: Free could be limit minus (total minus used), */
1440         /* which will confuse the client less ? */
1441         *xbfree = min(*xbfree, (vol->v_limitsize * 1024 * 1024));
1442         *xbtotal = min(*xbtotal, (vol->v_limitsize * 1024 * 1024));
1443     }
1444
1445     *bfree = min( *xbfree, maxsize);
1446     *btotal = min( *xbtotal, maxsize);
1447     return( AFP_OK );
1448 }
1449
1450 /* -----------------------
1451  * set volume creation date
1452  * avoid duplicate, well at least it tries
1453  */
1454 static void vol_setdate(u_int16_t id, struct adouble *adp, time_t date)
1455 {
1456     struct vol  *volume;
1457     struct vol  *vol = Volumes;
1458
1459     for ( volume = Volumes; volume; volume = volume->v_next ) {
1460         if (volume->v_vid == id) {
1461             vol = volume;
1462         }
1463         else if ((time_t)(AD_DATE_FROM_UNIX(date)) == volume->v_ctime) {
1464             date = date+1;
1465             volume = Volumes; /* restart */
1466         }
1467     }
1468     vol->v_ctime = AD_DATE_FROM_UNIX(date);
1469     ad_setdate(adp, AD_DATE_CREATE | AD_DATE_UNIX, date);
1470 }
1471
1472 /* ----------------------- */
1473 static int getvolparams( u_int16_t bitmap, struct vol *vol, struct stat *st, char *buf, size_t *buflen)
1474 {
1475     struct adouble  ad;
1476     int         bit = 0, isad = 1;
1477     u_int32_t       aint;
1478     u_short     ashort;
1479     u_int32_t       bfree, btotal, bsize;
1480     VolSpace            xbfree, xbtotal; /* extended bytes */
1481     char        *data, *nameoff = NULL;
1482     char                *slash;
1483
1484     LOG(log_debug, logtype_afpd, "getvolparams: Volume '%s'", vol->v_localname);
1485
1486     /* courtesy of jallison@whistle.com:
1487      * For MacOS8.x support we need to create the
1488      * .Parent file here if it doesn't exist. */
1489
1490     ad_init(&ad, vol->v_adouble, vol->v_ad_options);
1491     if ( ad_open_metadata( vol->v_path, ADFLAGS_DIR, O_CREAT, &ad) < 0 ) {
1492         isad = 0;
1493         vol->v_ctime = AD_DATE_FROM_UNIX(st->st_mtime);
1494
1495     } else if (ad_get_MD_flags( &ad ) & O_CREAT) {
1496         slash = strrchr( vol->v_path, '/' );
1497         if(slash)
1498             slash++;
1499         else
1500             slash = vol->v_path;
1501         if (ad_getentryoff(&ad, ADEID_NAME)) {
1502             ad_setentrylen( &ad, ADEID_NAME, strlen( slash ));
1503             memcpy(ad_entry( &ad, ADEID_NAME ), slash,
1504                    ad_getentrylen( &ad, ADEID_NAME ));
1505         }
1506         vol_setdate(vol->v_vid, &ad, st->st_mtime);
1507         ad_flush(&ad);
1508     }
1509     else {
1510         if (ad_getdate(&ad, AD_DATE_CREATE, &aint) < 0)
1511             vol->v_ctime = AD_DATE_FROM_UNIX(st->st_mtime);
1512         else
1513             vol->v_ctime = aint;
1514     }
1515
1516     if (( bitmap & ( (1<<VOLPBIT_BFREE)|(1<<VOLPBIT_BTOTAL) |
1517                      (1<<VOLPBIT_XBFREE)|(1<<VOLPBIT_XBTOTAL) |
1518                      (1<<VOLPBIT_BSIZE)) ) != 0 ) {
1519         if ( getvolspace( vol, &bfree, &btotal, &xbfree, &xbtotal,
1520                           &bsize) != AFP_OK ) {
1521             if ( isad ) {
1522                 ad_close( &ad, ADFLAGS_HF );
1523             }
1524             return( AFPERR_PARAM );
1525         }
1526     }
1527
1528     data = buf;
1529     while ( bitmap != 0 ) {
1530         while (( bitmap & 1 ) == 0 ) {
1531             bitmap = bitmap>>1;
1532             bit++;
1533         }
1534
1535         switch ( bit ) {
1536         case VOLPBIT_ATTR :
1537             ashort = 0;
1538             /* check for read-only.
1539              * NOTE: we don't actually set the read-only flag unless
1540              *       it's passed in that way as it's possible to mount
1541              *       a read-write filesystem under a read-only one. */
1542             if ((vol->v_flags & AFPVOL_RO) ||
1543                 ((utime(vol->v_path, NULL) < 0) && (errno == EROFS))) {
1544                 ashort |= VOLPBIT_ATTR_RO;
1545             }
1546             /* prior 2.1 only VOLPBIT_ATTR_RO is defined */
1547             if (afp_version > 20) {
1548                 if (0 == (vol->v_flags & AFPVOL_NOFILEID) && vol->v_cdb != NULL &&
1549                     (vol->v_cdb->flags & CNID_FLAG_PERSISTENT)) {
1550                     ashort |= VOLPBIT_ATTR_FILEID;
1551                 }
1552                 ashort |= VOLPBIT_ATTR_CATSEARCH;
1553
1554                 if (afp_version >= 30) {
1555                     ashort |= VOLPBIT_ATTR_UTF8;
1556                     if (vol->v_flags & AFPVOL_UNIX_PRIV)
1557                         ashort |= VOLPBIT_ATTR_UNIXPRIV;
1558                     if (vol->v_flags & AFPVOL_TM)
1559                         ashort |= VOLPBIT_ATTR_TM;
1560
1561                     if (afp_version >= 32) {
1562                         if (vol->v_vfs_ea)
1563                             ashort |= VOLPBIT_ATTR_EXT_ATTRS;
1564                         if (vol->v_flags & AFPVOL_ACLS)
1565                             ashort |= VOLPBIT_ATTR_ACLS;
1566                     }
1567                 }
1568             }
1569             ashort = htons(ashort);
1570             memcpy(data, &ashort, sizeof( ashort ));
1571             data += sizeof( ashort );
1572             break;
1573
1574         case VOLPBIT_SIG :
1575             ashort = htons( AFPVOLSIG_DEFAULT );
1576             memcpy(data, &ashort, sizeof( ashort ));
1577             data += sizeof( ashort );
1578             break;
1579
1580         case VOLPBIT_CDATE :
1581             aint = vol->v_ctime;
1582             memcpy(data, &aint, sizeof( aint ));
1583             data += sizeof( aint );
1584             break;
1585
1586         case VOLPBIT_MDATE :
1587             if ( st->st_mtime > vol->v_mtime ) {
1588                 vol->v_mtime = st->st_mtime;
1589             }
1590             aint = AD_DATE_FROM_UNIX(vol->v_mtime);
1591             memcpy(data, &aint, sizeof( aint ));
1592             data += sizeof( aint );
1593             break;
1594
1595         case VOLPBIT_BDATE :
1596             if (!isad ||  (ad_getdate(&ad, AD_DATE_BACKUP, &aint) < 0))
1597                 aint = AD_DATE_START;
1598             memcpy(data, &aint, sizeof( aint ));
1599             data += sizeof( aint );
1600             break;
1601
1602         case VOLPBIT_VID :
1603             memcpy(data, &vol->v_vid, sizeof( vol->v_vid ));
1604             data += sizeof( vol->v_vid );
1605             break;
1606
1607         case VOLPBIT_BFREE :
1608             bfree = htonl( bfree );
1609             memcpy(data, &bfree, sizeof( bfree ));
1610             data += sizeof( bfree );
1611             break;
1612
1613         case VOLPBIT_BTOTAL :
1614             btotal = htonl( btotal );
1615             memcpy(data, &btotal, sizeof( btotal ));
1616             data += sizeof( btotal );
1617             break;
1618
1619 #ifndef NO_LARGE_VOL_SUPPORT
1620         case VOLPBIT_XBFREE :
1621             xbfree = hton64( xbfree );
1622 #if defined(__GNUC__) && defined(HAVE_GCC_MEMCPY_BUG)
1623             bcopy(&xbfree, data, sizeof(xbfree));
1624 #else /* __GNUC__ && HAVE_GCC_MEMCPY_BUG */
1625             memcpy(data, &xbfree, sizeof( xbfree ));
1626 #endif /* __GNUC__ && HAVE_GCC_MEMCPY_BUG */
1627             data += sizeof( xbfree );
1628             break;
1629
1630         case VOLPBIT_XBTOTAL :
1631             xbtotal = hton64( xbtotal );
1632 #if defined(__GNUC__) && defined(HAVE_GCC_MEMCPY_BUG)
1633             bcopy(&xbtotal, data, sizeof(xbtotal));
1634 #else /* __GNUC__ && HAVE_GCC_MEMCPY_BUG */
1635             memcpy(data, &xbtotal, sizeof( xbtotal ));
1636 #endif /* __GNUC__ && HAVE_GCC_MEMCPY_BUG */
1637             data += sizeof( xbfree );
1638             break;
1639 #endif /* ! NO_LARGE_VOL_SUPPORT */
1640
1641         case VOLPBIT_NAME :
1642             nameoff = data;
1643             data += sizeof( u_int16_t );
1644             break;
1645
1646         case VOLPBIT_BSIZE:  /* block size */
1647             bsize = htonl(bsize);
1648             memcpy(data, &bsize, sizeof(bsize));
1649             data += sizeof(bsize);
1650             break;
1651
1652         default :
1653             if ( isad ) {
1654                 ad_close( &ad, ADFLAGS_HF );
1655             }
1656             return( AFPERR_BITMAP );
1657         }
1658         bitmap = bitmap>>1;
1659         bit++;
1660     }
1661     if ( nameoff ) {
1662         ashort = htons( data - buf );
1663         memcpy(nameoff, &ashort, sizeof( ashort ));
1664         /* name is always in mac charset */
1665         aint = ucs2_to_charset( vol->v_maccharset, vol->v_macname, data+1, AFPVOL_MACNAMELEN + 1);
1666         if ( aint <= 0 ) {
1667             *buflen = 0;
1668             return AFPERR_MISC;
1669         }
1670
1671         *data++ = aint;
1672         data += aint;
1673     }
1674     if ( isad ) {
1675         ad_close_metadata( &ad);
1676     }
1677     *buflen = data - buf;
1678     return( AFP_OK );
1679 }
1680
1681 /* ------------------------- */
1682 static int stat_vol(u_int16_t bitmap, struct vol *vol, char *rbuf, size_t *rbuflen)
1683 {
1684     struct stat st;
1685     int     ret;
1686     size_t  buflen;
1687
1688     if ( stat( vol->v_path, &st ) < 0 ) {
1689         *rbuflen = 0;
1690         return( AFPERR_PARAM );
1691     }
1692     /* save the volume device number */
1693     vol->v_dev = st.st_dev;
1694
1695     buflen = *rbuflen - sizeof( bitmap );
1696     if (( ret = getvolparams( bitmap, vol, &st,
1697                               rbuf + sizeof( bitmap ), &buflen )) != AFP_OK ) {
1698         *rbuflen = 0;
1699         return( ret );
1700     }
1701     *rbuflen = buflen + sizeof( bitmap );
1702     bitmap = htons( bitmap );
1703     memcpy(rbuf, &bitmap, sizeof( bitmap ));
1704     return( AFP_OK );
1705
1706 }
1707
1708 /* ------------------------------- */
1709 void load_volumes(AFPObj *obj)
1710 {
1711     struct passwd   *pwent;
1712
1713     if (Volumes) {
1714         int changed = 0;
1715
1716         /* check files date */
1717         if (obj->options.defaultvol.loaded) {
1718             changed = volfile_changed(&obj->options.defaultvol);
1719         }
1720         if (obj->options.systemvol.loaded) {
1721             changed |= volfile_changed(&obj->options.systemvol);
1722         }
1723         if (obj->options.uservol.loaded) {
1724             changed |= volfile_changed(&obj->options.uservol);
1725         }
1726         if (!changed)
1727             return;
1728
1729         free_extmap();
1730         free_volumes();
1731     }
1732
1733     if (! ((DSI *)obj->handle)->child) {
1734         LOG(log_debug, logtype_afpd, "load_volumes: AFP MASTER");
1735     } else {
1736         LOG(log_debug, logtype_afpd, "load_volumes: user: %s", obj->username);
1737     }
1738
1739     pwent = getpwnam(obj->username);
1740     if ( (obj->options.flags & OPTION_USERVOLFIRST) == 0 ) {
1741         readvolfile(obj, &obj->options.systemvol, NULL, 0, pwent);
1742     }
1743
1744     if ((*obj->username == '\0') || (obj->options.flags & OPTION_NOUSERVOL)) {
1745         readvolfile(obj, &obj->options.defaultvol, NULL, 1, pwent);
1746     } else if (pwent) {
1747         /*
1748          * Read user's AppleVolumes or .AppleVolumes file
1749          * If neither are readable, read the default volumes file. if
1750          * that doesn't work, create a user share.
1751          */
1752         if (obj->options.uservol.name) {
1753             free(obj->options.uservol.name);
1754         }
1755         obj->options.uservol.name = strdup(pwent->pw_dir);
1756         if ( readvolfile(obj, &obj->options.uservol,    "AppleVolumes", 1, pwent) < 0 &&
1757              readvolfile(obj, &obj->options.uservol, ".AppleVolumes", 1, pwent) < 0 &&
1758              readvolfile(obj, &obj->options.uservol, "applevolumes", 1, pwent) < 0 &&
1759              readvolfile(obj, &obj->options.uservol, ".applevolumes", 1, pwent) < 0 &&
1760              obj->options.defaultvol.name != NULL ) {
1761             if (readvolfile(obj, &obj->options.defaultvol, NULL, 1, pwent) < 0)
1762                 creatvol(obj, pwent, pwent->pw_dir, NULL, NULL, 1);
1763         }
1764     }
1765     if ( obj->options.flags & OPTION_USERVOLFIRST ) {
1766         readvolfile(obj, &obj->options.systemvol, NULL, 0, pwent );
1767     }
1768
1769     if ( obj->options.closevol ) {
1770         struct vol *vol;
1771
1772         for ( vol = Volumes; vol; vol = vol->v_next ) {
1773             if (vol->v_deleted && !vol->v_new ) {
1774                 of_closevol(vol);
1775                 deletevol(vol);
1776                 vol = Volumes;
1777             }
1778         }
1779     }
1780 }
1781
1782 /* ------------------------------- */
1783 int afp_getsrvrparms(AFPObj *obj, char *ibuf _U_, size_t ibuflen _U_, char *rbuf, size_t *rbuflen)
1784 {
1785     struct timeval  tv;
1786     struct stat     st;
1787     struct vol      *volume;
1788     char    *data;
1789     char        *namebuf;
1790     int         vcnt;
1791     size_t      len;
1792
1793     load_volumes(obj);
1794
1795     data = rbuf + 5;
1796     for ( vcnt = 0, volume = Volumes; volume; volume = volume->v_next ) {
1797         if (!(volume->v_flags & AFPVOL_NOSTAT)) {
1798             struct maccess ma;
1799
1800             if ( stat( volume->v_path, &st ) < 0 ) {
1801                 LOG(log_info, logtype_afpd, "afp_getsrvrparms(%s): stat: %s",
1802                     volume->v_path, strerror(errno) );
1803                 continue;       /* can't access directory */
1804             }
1805             if (!S_ISDIR(st.st_mode)) {
1806                 continue;       /* not a dir */
1807             }
1808             accessmode(volume->v_path, &ma, NULL, &st);
1809             if ((ma.ma_user & (AR_UREAD | AR_USEARCH)) != (AR_UREAD | AR_USEARCH)) {
1810                 continue;   /* no r-x access */
1811             }
1812         }
1813         if (volume->v_hide) {
1814             continue;       /* config file changed but the volume was mounted */
1815         }
1816
1817         if (utf8_encoding()) {
1818             len = ucs2_to_charset_allocate(CH_UTF8_MAC, &namebuf, volume->v_u8mname);
1819         } else {
1820             len = ucs2_to_charset_allocate(obj->options.maccharset, &namebuf, volume->v_macname);
1821         }
1822
1823         if (len == (size_t)-1)
1824             continue;
1825
1826         /* set password bit if there's a volume password */
1827         *data = (volume->v_password) ? AFPSRVR_PASSWD : 0;
1828
1829         /* Apple 2 clients running ProDOS-8 expect one volume to have
1830            bit 0 of this byte set.  They will not recognize anything
1831            on the server unless this is the case.  I have not
1832            completely worked this out, but it's related to booting
1833            from the server.  Support for that function is a ways
1834            off.. <shirsch@ibm.net> */
1835         *data |= (volume->v_flags & AFPVOL_A2VOL) ? AFPSRVR_CONFIGINFO : 0;
1836         *data++ |= 0; /* UNIX PRIVS BIT ..., OSX doesn't seem to use it, so we don't either */
1837         *data++ = len;
1838         memcpy(data, namebuf, len );
1839         data += len;
1840         free(namebuf);
1841         vcnt++;
1842     }
1843
1844     *rbuflen = data - rbuf;
1845     data = rbuf;
1846     if ( gettimeofday( &tv, NULL ) < 0 ) {
1847         LOG(log_error, logtype_afpd, "afp_getsrvrparms(%s): gettimeofday: %s", volume->v_path, strerror(errno) );
1848         *rbuflen = 0;
1849         return AFPERR_PARAM;
1850     }
1851     tv.tv_sec = AD_DATE_FROM_UNIX(tv.tv_sec);
1852     memcpy(data, &tv.tv_sec, sizeof( u_int32_t));
1853     data += sizeof( u_int32_t);
1854     *data = vcnt;
1855     return( AFP_OK );
1856 }
1857
1858 /* ------------------------- */
1859 static int volume_codepage(AFPObj *obj, struct vol *volume)
1860 {
1861     struct charset_functions *charset;
1862     /* Codepages */
1863
1864     if (!volume->v_volcodepage)
1865         volume->v_volcodepage = strdup("UTF8");
1866
1867     if ( (charset_t) -1 == ( volume->v_volcharset = add_charset(volume->v_volcodepage)) ) {
1868         LOG (log_error, logtype_afpd, "Setting codepage %s as volume codepage failed", volume->v_volcodepage);
1869         return -1;
1870     }
1871
1872     if ( NULL == (charset = find_charset_functions(volume->v_volcodepage)) || charset->flags & CHARSET_ICONV ) {
1873         LOG (log_warning, logtype_afpd, "WARNING: volume encoding %s is *not* supported by netatalk, expect problems !!!!", volume->v_volcodepage);
1874     }
1875
1876     if (!volume->v_maccodepage)
1877         volume->v_maccodepage = strdup(obj->options.maccodepage);
1878
1879     if ( (charset_t) -1 == ( volume->v_maccharset = add_charset(volume->v_maccodepage)) ) {
1880         LOG (log_error, logtype_afpd, "Setting codepage %s as mac codepage failed", volume->v_maccodepage);
1881         return -1;
1882     }
1883
1884     if ( NULL == ( charset = find_charset_functions(volume->v_maccodepage)) || ! (charset->flags & CHARSET_CLIENT) ) {
1885         LOG (log_error, logtype_afpd, "Fatal error: mac charset %s not supported", volume->v_maccodepage);
1886         return -1;
1887     }
1888     volume->v_kTextEncoding = htonl(charset->kTextEncoding);
1889     return 0;
1890 }
1891
1892 /* ------------------------- */
1893 static int volume_openDB(struct vol *volume)
1894 {
1895     int flags = 0;
1896
1897     if ((volume->v_flags & AFPVOL_NODEV)) {
1898         flags |= CNID_FLAG_NODEV;
1899     }
1900
1901     if (volume->v_cnidscheme == NULL) {
1902         volume->v_cnidscheme = strdup(DEFAULT_CNID_SCHEME);
1903         LOG(log_info, logtype_afpd, "Volume %s use CNID scheme %s.",
1904             volume->v_path, volume->v_cnidscheme);
1905     }
1906
1907     LOG(log_info, logtype_afpd, "CNID server: %s:%s",
1908         volume->v_cnidserver ? volume->v_cnidserver : Cnid_srv,
1909         volume->v_cnidport ? volume->v_cnidport : Cnid_port);
1910
1911 #if 0
1912 /* Found this in branch dir-rewrite, maybe we want to use it sometimes */
1913
1914     /* Legacy pre 2.1 way of sharing eg CD-ROM */
1915     if (strcmp(volume->v_cnidscheme, "last") == 0) {
1916         /* "last" is gone. We support it by switching to in-memory "tdb" */
1917         volume->v_cnidscheme = strdup("tdb");
1918         flags |= CNID_FLAG_MEMORY;
1919     }
1920
1921     /* New way of sharing CD-ROM */
1922     if (volume->v_flags & AFPVOL_CDROM) {
1923         flags |= CNID_FLAG_MEMORY;
1924         if (strcmp(volume->v_cnidscheme, "tdb") != 0) {
1925             free(volume->v_cnidscheme);
1926             volume->v_cnidscheme = strdup("tdb");
1927             LOG(log_info, logtype_afpd, "Volume %s is ejectable, switching to scheme %s.",
1928                 volume->v_path, volume->v_cnidscheme);
1929         }
1930     }
1931 #endif
1932
1933     volume->v_cdb = cnid_open(volume->v_dbpath ? volume->v_dbpath : volume->v_path,
1934                               volume->v_umask,
1935                               volume->v_cnidscheme,
1936                               flags,
1937                               volume->v_cnidserver ? volume->v_cnidserver : Cnid_srv,
1938                               volume->v_cnidport ? volume->v_cnidport : Cnid_port);
1939
1940     if ( ! volume->v_cdb && ! (flags & CNID_FLAG_MEMORY)) {
1941         /* The first attempt failed and it wasn't yet an attempt to open in-memory */
1942         LOG(log_error, logtype_afpd, "Can't open volume \"%s\" CNID backend \"%s\" ",
1943             volume->v_path, volume->v_cnidscheme);
1944         LOG(log_error, logtype_afpd, "Reopen volume %s using in memory temporary CNID DB.",
1945             volume->v_path);
1946         flags |= CNID_FLAG_MEMORY;
1947         volume->v_cdb = cnid_open (volume->v_path, volume->v_umask, "tdb", flags, NULL, NULL);
1948 #ifdef SERVERTEXT
1949         /* kill ourself with SIGUSR2 aka msg pending */
1950         if (volume->v_cdb) {
1951             setmessage("Something wrong with the volume's CNID DB, using temporary CNID DB instead."
1952                        "Check server messages for details!");
1953             kill(getpid(), SIGUSR2);
1954             /* deactivate cnid caching/storing in AppleDouble files */
1955             volume->v_flags &= ~AFPVOL_CACHE;
1956         }
1957 #endif
1958     }
1959
1960     return (!volume->v_cdb)?-1:0;
1961 }
1962
1963 /*
1964   Check if the underlying filesystem supports EAs for ea:sys volumes.
1965   If not, switch to ea:ad.
1966   As we can't check (requires write access) on ro-volumes, we switch ea:auto
1967   volumes that are options:ro to ea:none.
1968 */
1969 static void check_ea_sys_support(struct vol *vol)
1970 {
1971     uid_t process_uid = 0;
1972     char eaname[] = {"org.netatalk.supports-eas.XXXXXX"};
1973     const char *eacontent = "yes";
1974
1975     if (vol->v_vfs_ea == AFPVOL_EA_AUTO) {
1976
1977         if ((vol->v_flags & AFPVOL_RO) == AFPVOL_RO) {
1978             LOG(log_info, logtype_logger, "read-only volume '%s', can't test for EA support, disabling EAs", vol->v_localname);
1979             vol->v_vfs_ea = AFPVOL_EA_NONE;
1980             return;
1981         }
1982
1983         mktemp(eaname);
1984
1985         process_uid = geteuid();
1986         if (process_uid)
1987             if (seteuid(0) == -1) {
1988                 LOG(log_error, logtype_logger, "check_ea_sys_support: can't seteuid(0): %s", strerror(errno));
1989                 exit(EXITERR_SYS);
1990             }
1991
1992         if ((sys_setxattr(vol->v_path, eaname, eacontent, 4, 0)) == 0) {
1993             sys_removexattr(vol->v_path, eaname);
1994             vol->v_vfs_ea = AFPVOL_EA_SYS;
1995         } else {
1996             LOG(log_warning, logtype_afpd, "volume \"%s\" does not support Extended Attributes, using ea:ad instead",
1997                 vol->v_localname);
1998             vol->v_vfs_ea = AFPVOL_EA_AD;
1999         }
2000
2001         if (process_uid) {
2002             if (seteuid(process_uid) == -1) {
2003                 LOG(log_error, logtype_logger, "can't seteuid back %s", strerror(errno));
2004                 exit(EXITERR_SYS);
2005             }
2006         }
2007     }
2008 }
2009
2010 /* -------------------------
2011  * we are the user here
2012  */
2013 int afp_openvol(AFPObj *obj, char *ibuf, size_t ibuflen _U_, char *rbuf, size_t *rbuflen)
2014 {
2015     struct stat st;
2016     char    *volname;
2017     char        *p;
2018
2019     struct vol  *volume;
2020     struct dir  *dir;
2021     int     len, ret;
2022     size_t  namelen;
2023     u_int16_t   bitmap;
2024     char        path[ MAXPATHLEN + 1];
2025     char        *vol_uname;
2026     char        *vol_mname;
2027     char        *volname_tmp;
2028
2029     ibuf += 2;
2030     memcpy(&bitmap, ibuf, sizeof( bitmap ));
2031     bitmap = ntohs( bitmap );
2032     ibuf += sizeof( bitmap );
2033
2034     *rbuflen = 0;
2035     if (( bitmap & (1<<VOLPBIT_VID)) == 0 ) {
2036         return AFPERR_BITMAP;
2037     }
2038
2039     len = (unsigned char)*ibuf++;
2040     volname = obj->oldtmp;
2041
2042     if ((volname_tmp = strchr(volname,'+')) != NULL)
2043         volname = volname_tmp+1;
2044
2045     if (utf8_encoding()) {
2046         namelen = convert_string(CH_UTF8_MAC, CH_UCS2, ibuf, len, volname, sizeof(obj->oldtmp));
2047     } else {
2048         namelen = convert_string(obj->options.maccharset, CH_UCS2, ibuf, len, volname, sizeof(obj->oldtmp));
2049     }
2050
2051     if ( namelen <= 0) {
2052         return AFPERR_PARAM;
2053     }
2054
2055     ibuf += len;
2056     if ((len + 1) & 1) /* pad to an even boundary */
2057         ibuf++;
2058
2059     load_volumes(obj);
2060
2061     for ( volume = Volumes; volume; volume = volume->v_next ) {
2062         if ( strcasecmp_w( (ucs2_t*) volname, volume->v_name ) == 0 ) {
2063             break;
2064         }
2065     }
2066
2067     if ( volume == NULL ) {
2068         return AFPERR_PARAM;
2069     }
2070
2071     /* check for a volume password */
2072     if (volume->v_password && strncmp(ibuf, volume->v_password, VOLPASSLEN)) {
2073         return AFPERR_ACCESS;
2074     }
2075
2076     if (( volume->v_flags & AFPVOL_OPEN  ) ) {
2077         /* the volume is already open */
2078 #ifdef FORCE_UIDGID
2079         set_uidgid ( volume );
2080 #endif
2081         return stat_vol(bitmap, volume, rbuf, rbuflen);
2082     }
2083
2084     if (volume->v_root_preexec) {
2085         if ((ret = afprun(1, volume->v_root_preexec, NULL)) && volume->v_root_preexec_close) {
2086             LOG(log_error, logtype_afpd, "afp_openvol(%s): root preexec : %d", volume->v_path, ret );
2087             return AFPERR_MISC;
2088         }
2089     }
2090
2091 #ifdef FORCE_UIDGID
2092     set_uidgid ( volume );
2093 #endif
2094
2095     if (volume->v_preexec) {
2096         if ((ret = afprun(0, volume->v_preexec, NULL)) && volume->v_preexec_close) {
2097             LOG(log_error, logtype_afpd, "afp_openvol(%s): preexec : %d", volume->v_path, ret );
2098             return AFPERR_MISC;
2099         }
2100     }
2101
2102     if ( stat( volume->v_path, &st ) < 0 ) {
2103         return AFPERR_PARAM;
2104     }
2105
2106     if ( chdir( volume->v_path ) < 0 ) {
2107         return AFPERR_PARAM;
2108     }
2109
2110     if ( NULL == getcwd(path, MAXPATHLEN)) {
2111         /* shouldn't be fatal but it will fail later */
2112         LOG(log_error, logtype_afpd, "afp_openvol(%s): volume pathlen too long", volume->v_path);
2113         return AFPERR_MISC;
2114     }
2115
2116     /* Normalize volume path */
2117 #ifdef REALPATH_TAKES_NULL
2118     if ((volume->v_path = realpath(path, NULL)) == NULL)
2119         return AFPERR_MISC;
2120 #else
2121     if ((volume->v_path = malloc(MAXPATHLEN+1)) == NULL)
2122         return AFPERR_MISC;
2123     if (realpath(path, volume->v_path) == NULL) {
2124         free(volume->v_path);
2125         return AFPERR_MISC;
2126     }
2127     /* Safe some memory */
2128     char *tmp;
2129     if ((tmp = strdup(volume->v_path)) == NULL) {
2130         free(volume->v_path);
2131         return AFPERR_MISC;
2132     }
2133     free(volume->v_path);
2134     volume->v_path = tmp;
2135 #endif
2136
2137     if (volume_codepage(obj, volume) < 0) {
2138         ret = AFPERR_MISC;
2139         goto openvol_err;
2140     }
2141
2142     /* initialize volume variables
2143      * FIXME file size
2144      */
2145     if (utf8_encoding()) {
2146         volume->max_filename = 255;
2147     }
2148     else {
2149         volume->max_filename = MACFILELEN;
2150     }
2151
2152     volume->v_flags |= AFPVOL_OPEN;
2153     volume->v_cdb = NULL;
2154
2155     if (utf8_encoding()) {
2156         len = convert_string_allocate(CH_UCS2, CH_UTF8_MAC, volume->v_u8mname, namelen, &vol_mname);
2157     } else {
2158         len = convert_string_allocate(CH_UCS2, obj->options.maccharset, volume->v_macname, namelen, &vol_mname);
2159     }
2160     if ( !vol_mname || len <= 0) {
2161         ret = AFPERR_MISC;
2162         goto openvol_err;
2163     }
2164
2165     if ((vol_uname = strrchr(path, '/')) == NULL)
2166         vol_uname = path;
2167     else if (*(vol_uname + 1) != '\0')
2168         vol_uname++;
2169
2170     if ((dir = dir_new(vol_mname,
2171                        vol_uname,
2172                        volume,
2173                        DIRDID_ROOT_PARENT,
2174                        DIRDID_ROOT,
2175                        bfromcstr(volume->v_path),
2176                        st.st_ctime)
2177             ) == NULL) {
2178         free(vol_mname);
2179         LOG(log_error, logtype_afpd, "afp_openvol(%s): malloc: %s", volume->v_path, strerror(errno) );
2180         ret = AFPERR_MISC;
2181         goto openvol_err;
2182     }
2183     free(vol_mname);
2184     volume->v_root = dir;
2185     curdir = dir;
2186
2187     if (volume_openDB(volume) < 0) {
2188         LOG(log_error, logtype_afpd, "Fatal error: cannot open CNID or invalid CNID backend for %s: %s",
2189             volume->v_path, volume->v_cnidscheme);
2190         ret = AFPERR_MISC;
2191         goto openvol_err;
2192     }
2193
2194     ret  = stat_vol(bitmap, volume, rbuf, rbuflen);
2195     if (ret == AFP_OK) {
2196
2197         if (!(volume->v_flags & AFPVOL_RO)) {
2198             handle_special_folders( volume );
2199             savevolinfo(volume,
2200                         volume->v_cnidserver ? volume->v_cnidserver : Cnid_srv,
2201                         volume->v_cnidport   ? volume->v_cnidport   : Cnid_port);
2202         }
2203
2204         /*
2205          * If you mount a volume twice, the second time the trash appears on
2206          * the desk-top.  That's because the Mac remembers the DID for the
2207          * trash (even for volumes in different zones, on different servers).
2208          * Just so this works better, we prime the DID cache with the trash,
2209          * fixing the trash at DID 17.
2210          * FIXME (RL): should it be done inside a CNID backend ? (always returning Trash DID when asked) ?
2211          */
2212         if ((volume->v_cdb->flags & CNID_FLAG_PERSISTENT)) {
2213
2214             /* FIXME find db time stamp */
2215             if (cnid_getstamp(volume->v_cdb, volume->v_stamp, sizeof(volume->v_stamp)) < 0) {
2216                 LOG (log_error, logtype_afpd,
2217                      "afp_openvol(%s): Fatal error: Unable to get stamp value from CNID backend",
2218                      volume->v_path);
2219                 ret = AFPERR_MISC;
2220                 goto openvol_err;
2221             }
2222         }
2223         else {
2224             p = Trash;
2225             cname( volume, volume->v_root, &p );
2226         }
2227         return( AFP_OK );
2228     }
2229
2230 openvol_err:
2231     if (volume->v_root) {
2232         dir_free( volume->v_root );
2233         volume->v_root = NULL;
2234     }
2235
2236     volume->v_flags &= ~AFPVOL_OPEN;
2237     if (volume->v_cdb != NULL) {
2238         cnid_close(volume->v_cdb);
2239         volume->v_cdb = NULL;
2240     }
2241     *rbuflen = 0;
2242     return ret;
2243 }
2244
2245 /* ------------------------- */
2246 static void closevol(struct vol *vol)
2247 {
2248     if (!vol)
2249         return;
2250
2251     dir_free( vol->v_root );
2252     vol->v_root = NULL;
2253     if (vol->v_cdb != NULL) {
2254         cnid_close(vol->v_cdb);
2255         vol->v_cdb = NULL;
2256     }
2257
2258     if (vol->v_postexec) {
2259         afprun(0, vol->v_postexec, NULL);
2260     }
2261     if (vol->v_root_postexec) {
2262         afprun(1, vol->v_root_postexec, NULL);
2263     }
2264 }
2265
2266 /* ------------------------- */
2267 void close_all_vol(void)
2268 {
2269     struct vol  *ovol;
2270     curdir = NULL;
2271     for ( ovol = Volumes; ovol; ovol = ovol->v_next ) {
2272         if ( (ovol->v_flags & AFPVOL_OPEN) ) {
2273             ovol->v_flags &= ~AFPVOL_OPEN;
2274             closevol(ovol);
2275         }
2276     }
2277 }
2278
2279 /* ------------------------- */
2280 static void deletevol(struct vol *vol)
2281 {
2282     struct vol  *ovol;
2283
2284     vol->v_flags &= ~AFPVOL_OPEN;
2285     for ( ovol = Volumes; ovol; ovol = ovol->v_next ) {
2286         if ( (ovol->v_flags & AFPVOL_OPEN) ) {
2287             break;
2288         }
2289     }
2290     if ( ovol != NULL ) {
2291         /* Even if chdir fails, we can't say afp_closevol fails. */
2292         if ( chdir( ovol->v_path ) == 0 ) {
2293             curdir = ovol->v_root;
2294         }
2295     }
2296
2297     closevol(vol);
2298     if (vol->v_deleted) {
2299         showvol(vol->v_name);
2300         volume_free(vol);
2301         volume_unlink(vol);
2302         free(vol);
2303     }
2304 }
2305
2306 /* ------------------------- */
2307 int afp_closevol(AFPObj *obj _U_, char *ibuf, size_t ibuflen _U_, char *rbuf _U_, size_t *rbuflen)
2308 {
2309     struct vol  *vol;
2310     u_int16_t   vid;
2311
2312     *rbuflen = 0;
2313     ibuf += 2;
2314     memcpy(&vid, ibuf, sizeof( vid ));
2315     if (NULL == ( vol = getvolbyvid( vid )) ) {
2316         return( AFPERR_PARAM );
2317     }
2318
2319     deletevol(vol);
2320     current_vol = NULL;
2321
2322     return( AFP_OK );
2323 }
2324
2325 /* ------------------------- */
2326 struct vol *getvolbyvid(const u_int16_t vid )
2327 {
2328     struct vol  *vol;
2329
2330     for ( vol = Volumes; vol; vol = vol->v_next ) {
2331         if ( vid == vol->v_vid ) {
2332             break;
2333         }
2334     }
2335     if ( vol == NULL || ( vol->v_flags & AFPVOL_OPEN ) == 0 ) {
2336         return( NULL );
2337     }
2338
2339 #ifdef FORCE_UIDGID
2340     set_uidgid ( vol );
2341 #endif /* FORCE_UIDGID */
2342
2343     current_vol = vol;
2344
2345     return( vol );
2346 }
2347
2348 /* ------------------------ */
2349 static int ext_cmp_key(const void *key, const void *obj)
2350 {
2351     const char          *p = key;
2352     const struct extmap *em = obj;
2353     return strdiacasecmp(p, em->em_ext);
2354 }
2355 struct extmap *getextmap(const char *path)
2356 {
2357     char      *p;
2358     struct extmap *em;
2359
2360     if (!Extmap_cnt || NULL == ( p = strrchr( path, '.' )) ) {
2361         return( Defextmap );
2362     }
2363     p++;
2364     if (!*p) {
2365         return( Defextmap );
2366     }
2367     em = bsearch(p, Extmap, Extmap_cnt, sizeof(struct extmap), ext_cmp_key);
2368     if (em) {
2369         return( em );
2370     } else {
2371         return( Defextmap );
2372     }
2373 }
2374
2375 /* ------------------------- */
2376 struct extmap *getdefextmap(void)
2377 {
2378     return( Defextmap );
2379 }
2380
2381 /* --------------------------
2382    poll if a volume is changed by other processes.
2383    return
2384    0 no attention msg sent
2385    1 attention msg sent
2386    -1 error (socket closed)
2387
2388    Note: if attention return -1 no packet has been
2389    sent because the buffer is full, we don't care
2390    either there's no reader or there's a lot of
2391    traffic and another pollvoltime will follow
2392 */
2393 int  pollvoltime(AFPObj *obj)
2394
2395 {
2396     struct vol       *vol;
2397     struct timeval   tv;
2398     struct stat      st;
2399
2400     if (!(afp_version > 21 && obj->options.server_notif))
2401         return 0;
2402
2403     if ( gettimeofday( &tv, NULL ) < 0 )
2404         return 0;
2405
2406     for ( vol = Volumes; vol; vol = vol->v_next ) {
2407         if ( (vol->v_flags & AFPVOL_OPEN)  && vol->v_mtime + 30 < tv.tv_sec) {
2408             if ( !stat( vol->v_path, &st ) && vol->v_mtime != st.st_mtime ) {
2409                 vol->v_mtime = st.st_mtime;
2410                 if (!obj->attention(obj->handle, AFPATTN_NOTIFY | AFPATTN_VOLCHANGED))
2411                     return -1;
2412                 return 1;
2413             }
2414         }
2415     }
2416     return 0;
2417 }
2418
2419 /* ------------------------- */
2420 void setvoltime(AFPObj *obj, struct vol *vol)
2421 {
2422     struct timeval  tv;
2423
2424     /* just looking at vol->v_mtime is broken seriously since updates
2425      * from other users afpd processes never are seen.
2426      * This is not the most elegant solution (a shared memory between
2427      * the afpd processes would come closer)
2428      * [RS] */
2429
2430     if ( gettimeofday( &tv, NULL ) < 0 ) {
2431         LOG(log_error, logtype_afpd, "setvoltime(%s): gettimeofday: %s", vol->v_path, strerror(errno) );
2432         return;
2433     }
2434     if( utime( vol->v_path, NULL ) < 0 ) {
2435         /* write of time failed ... probably a read only filesys,
2436          * where no other users can interfere, so there's no issue here
2437          */
2438     }
2439
2440     /* a little granularity */
2441     if (vol->v_mtime < tv.tv_sec) {
2442         vol->v_mtime = tv.tv_sec;
2443         /* or finder doesn't update free space
2444          * AFP 3.2 and above clients seem to be ok without so many notification
2445          */
2446         if (afp_version < 32 && obj->options.server_notif) {
2447             obj->attention(obj->handle, AFPATTN_NOTIFY | AFPATTN_VOLCHANGED);
2448         }
2449     }
2450 }
2451
2452 /* ------------------------- */
2453 int afp_getvolparams(AFPObj *obj _U_, char *ibuf, size_t ibuflen _U_,char *rbuf, size_t *rbuflen)
2454 {
2455     struct vol  *vol;
2456     u_int16_t   vid, bitmap;
2457
2458     ibuf += 2;
2459     memcpy(&vid, ibuf, sizeof( vid ));
2460     ibuf += sizeof( vid );
2461     memcpy(&bitmap, ibuf, sizeof( bitmap ));
2462     bitmap = ntohs( bitmap );
2463
2464     if (NULL == ( vol = getvolbyvid( vid )) ) {
2465         *rbuflen = 0;
2466         return( AFPERR_PARAM );
2467     }
2468
2469     return stat_vol(bitmap, vol, rbuf, rbuflen);
2470 }
2471
2472 /* ------------------------- */
2473 int afp_setvolparams(AFPObj *obj _U_, char *ibuf, size_t ibuflen _U_, char *rbuf _U_,  size_t *rbuflen)
2474 {
2475     struct adouble ad;
2476     struct vol  *vol;
2477     u_int16_t   vid, bitmap;
2478     u_int32_t   aint;
2479
2480     ibuf += 2;
2481     *rbuflen = 0;
2482
2483     memcpy(&vid, ibuf, sizeof( vid ));
2484     ibuf += sizeof( vid );
2485     memcpy(&bitmap, ibuf, sizeof( bitmap ));
2486     bitmap = ntohs( bitmap );
2487     ibuf += sizeof(bitmap);
2488
2489     if (( vol = getvolbyvid( vid )) == NULL ) {
2490         return( AFPERR_PARAM );
2491     }
2492
2493     if ((vol->v_flags & AFPVOL_RO))
2494         return AFPERR_VLOCK;
2495
2496     /* we can only set the backup date. */
2497     if (bitmap != (1 << VOLPBIT_BDATE))
2498         return AFPERR_BITMAP;
2499
2500     ad_init(&ad, vol->v_adouble, vol->v_ad_options);
2501     if ( ad_open( vol->v_path, ADFLAGS_HF|ADFLAGS_DIR, O_RDWR,
2502                   0666, &ad) < 0 ) {
2503         if (errno == EROFS)
2504             return AFPERR_VLOCK;
2505
2506         return AFPERR_ACCESS;
2507     }
2508
2509     memcpy(&aint, ibuf, sizeof(aint));
2510     ad_setdate(&ad, AD_DATE_BACKUP, aint);
2511     ad_flush(&ad);
2512     ad_close(&ad, ADFLAGS_HF);
2513     return( AFP_OK );
2514 }
2515
2516 /* ------------------------- */
2517 int wincheck(const struct vol *vol, const char *path)
2518 {
2519     int len;
2520
2521     if (!(vol->v_flags & AFPVOL_MSWINDOWS))
2522         return 1;
2523
2524     /* empty paths are not allowed */
2525     if ((len = strlen(path)) == 0)
2526         return 0;
2527
2528     /* leading or trailing whitespaces are not allowed, carriage returns
2529      * and probably other whitespace is okay, tabs are not allowed
2530      */
2531     if ((path[0] == ' ') || (path[len-1] == ' '))
2532         return 0;
2533
2534     /* certain characters are not allowed */
2535     if (strpbrk(path, MSWINDOWS_BADCHARS))
2536         return 0;
2537
2538     /* everything else is okay */
2539     return 1;
2540 }
2541
2542
2543 /*
2544  * precreate a folder
2545  * this is only intended for folders in the volume root
2546  * It will *not* work if the folder name contains extended characters
2547  */
2548 static int create_special_folder (const struct vol *vol, const struct _special_folder *folder)
2549 {
2550     char        *p,*q,*r;
2551     struct adouble  ad;
2552     u_int16_t   attr;
2553     struct stat st;
2554     int     ret;
2555
2556
2557     p = (char *) malloc ( strlen(vol->v_path)+strlen(folder->name)+2);
2558     if ( p == NULL) {
2559         LOG(log_error, logtype_afpd,"malloc failed");
2560         exit (EXITERR_SYS);
2561     }
2562
2563     q=strdup(folder->name);
2564     if ( q == NULL) {
2565         LOG(log_error, logtype_afpd,"malloc failed");
2566         exit (EXITERR_SYS);
2567     }
2568
2569     strcpy(p, vol->v_path);
2570     strcat(p, "/");
2571
2572     r=q;
2573     while (*r) {
2574         if ((vol->v_casefold & AFPVOL_MTOUUPPER))
2575             *r=toupper(*r);
2576         else if ((vol->v_casefold & AFPVOL_MTOULOWER))
2577             *r=tolower(*r);
2578         r++;
2579     }
2580     strcat(p, q);
2581
2582     if ( (ret = stat( p, &st )) < 0 ) {
2583         if (folder->precreate) {
2584             if (ad_mkdir(p, folder->mode)) {
2585                 LOG(log_debug, logtype_afpd,"Creating '%s' failed in %s: %s", p, vol->v_path, strerror(errno));
2586                 free(p);
2587                 free(q);
2588                 return -1;
2589             }
2590             ret = 0;
2591         }
2592     }
2593
2594     if ( !ret && folder->hide) {
2595         /* Hide it */
2596         ad_init(&ad, vol->v_adouble, vol->v_ad_options);
2597         if (ad_open_metadata( p, ADFLAGS_DIR, O_CREAT, &ad) < 0) {
2598             free (p);
2599             free(q);
2600             return (-1);
2601         }
2602
2603         ad_setname(&ad, folder->name);
2604
2605         ad_getattr(&ad, &attr);
2606         attr |= htons( ntohs( attr ) | ATTRBIT_INVISIBLE );
2607         ad_setattr(&ad, attr);
2608
2609         /* do the same with the finder info */
2610         if (ad_entry(&ad, ADEID_FINDERI)) {
2611             memcpy(&attr, ad_entry(&ad, ADEID_FINDERI) + FINDERINFO_FRFLAGOFF, sizeof(attr));
2612             attr   |= htons(FINDERINFO_INVISIBLE);
2613             memcpy(ad_entry(&ad, ADEID_FINDERI) + FINDERINFO_FRFLAGOFF,&attr, sizeof(attr));
2614         }
2615
2616         ad_flush( &ad );
2617         ad_close_metadata( &ad);
2618     }
2619     free(p);
2620     free(q);
2621     return 0;
2622 }
2623
2624 static void handle_special_folders (const struct vol * vol)
2625 {
2626     const _special_folder *p = &special_folders[0];
2627
2628     if ((vol->v_flags & AFPVOL_RO))
2629         return;
2630
2631     for (; p->name != NULL; p++) {
2632         create_special_folder (vol, p);
2633     }
2634 }
2635
2636 const struct vol *getvolumes(void)
2637 {
2638     return Volumes;
2639 }
2640
2641 void unload_volumes_and_extmap(void)
2642 {
2643     LOG(log_debug, logtype_afpd, "unload_volumes_and_extmap");
2644     free_extmap();
2645     free_volumes();
2646 }
2647
2648 /* 
2649  * Get a volumes UUID from the config file.
2650  * If there is none, it is generated and stored there.
2651  *
2652  * Returns pointer to allocated storage on success, NULL on error.
2653  */
2654 char *get_uuid(const AFPObj *obj, const char *volname)
2655 {
2656     char *volname_conf;
2657     char buf[1024], uuid[UUID_PRINTABLE_STRING_LENGTH], *p;
2658     FILE *fp;
2659     struct stat tmpstat;
2660     int fd;
2661     
2662     if ((fp = fopen(obj->options.uuidconf, "r")) != NULL) {  /* read open? */
2663         /* scan in the conf file */
2664         while (fgets(buf, sizeof(buf), fp) != NULL) { 
2665             p = buf;
2666             while (p && isblank(*p))
2667                 p++;
2668             if (!p || (*p == '#') || (*p == '\n'))
2669                 continue;                             /* invalid line */
2670             if (*p == '"') {
2671                 p++;
2672                 if ((volname_conf = strtok( p, "\"" )) == NULL)
2673                     continue;                         /* syntax error */
2674             } else {
2675                 if ((volname_conf = strtok( p, " \t" )) == NULL)
2676                     continue;                         /* syntax error: invalid name */
2677             }
2678             p = strchr(p, '\0');
2679             p++;
2680             if (*p == '\0')
2681                 continue;                             /* syntax error */
2682             
2683             if (strcmp(volname, volname_conf) != 0)
2684                 continue;                             /* another volume name */
2685                 
2686             while (p && isblank(*p))
2687                 p++;
2688
2689             if (sscanf(p, "%36s", uuid) == 1 ) {
2690                 for (int i=0; uuid[i]; i++)
2691                     uuid[i] = toupper(uuid[i]);
2692                 LOG(log_debug, logtype_afpd, "get_uuid('%s'): UUID: '%s'", volname, uuid);
2693                 fclose(fp);
2694                 return strdup(uuid);
2695             }
2696         }
2697     }
2698
2699     if (fp)
2700         fclose(fp);
2701
2702     /*  not found or no file, reopen in append mode */
2703
2704     if (stat(obj->options.uuidconf, &tmpstat)) {                /* no file */
2705         if (( fd = creat(obj->options.uuidconf, 0644 )) < 0 ) {
2706             LOG(log_error, logtype_atalkd, "ERROR: Cannot create %s (%s).",
2707                 obj->options.uuidconf, strerror(errno));
2708             return NULL;
2709         }
2710         if (( fp = fdopen( fd, "w" )) == NULL ) {
2711             LOG(log_error, logtype_atalkd, "ERROR: Cannot fdopen %s (%s).",
2712                 obj->options.uuidconf, strerror(errno));
2713             close(fd);
2714             return NULL;
2715         }
2716     } else if ((fp = fopen(obj->options.uuidconf, "a+")) == NULL) { /* not found */
2717         LOG(log_error, logtype_afpd, "Cannot create or append to %s (%s).",
2718             obj->options.uuidconf, strerror(errno));
2719         return NULL;
2720     }
2721     fseek(fp, 0L, SEEK_END);
2722     if(ftell(fp) == 0) {                     /* size = 0 */
2723         fprintf(fp, "# DON'T TOUCH NOR COPY THOUGHTLESSLY!\n");
2724         fprintf(fp, "# This file is auto-generated by afpd\n");
2725         fprintf(fp, "# and stores UUIDs for TM volumes.\n\n");
2726     } else {
2727         fseek(fp, -1L, SEEK_END);
2728         if(fgetc(fp) != '\n') fputc('\n', fp); /* last char is \n? */
2729     }                    
2730     
2731     /* generate uuid and write to file */
2732     uuid_t id;
2733     uuid_generate(id);
2734     uuid_unparse(id, uuid);
2735     for (int i=0; uuid[i]; i++)
2736         uuid[i] = toupper(uuid[i]);
2737     LOG(log_debug, logtype_afpd, "get_uuid('%s'): generated UUID '%s'", volname, uuid);
2738
2739     fprintf(fp, "\"%s\"\t%36s\n", volname, uuid);
2740     fclose(fp);
2741     
2742     return strdup(uuid);
2743 }