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