]> arthur.barton.de Git - netatalk.git/blob - etc/afpd/volume.c
Enable upriv and usedots volume options by default
[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, "nousedots") == 0)
426                     options[VOLOPT_FLAGS].i_value &= ~AFPVOL_USEDOTS;
427                 else if (strcasecmp(p, "invisibledots") == 0)
428                     options[VOLOPT_FLAGS].i_value |= AFPVOL_USEDOTS;
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, "noupriv") == 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))
912         return 0;
913     if (STRCMP(sec, ==, INISEC_AFP))
914         return 0;
915     if (STRCMP(sec, ==, INISEC_CNID))
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     default_options[VOLOPT_FLAGS].i_value |= AFPVOL_USEDOTS | AFPVOL_UNIX_PRIV;
947 #ifdef HAVE_ACLS
948     default_options[VOLOPT_FLAGS].i_value |= AFPVOL_ACLS;
949 #endif
950     default_options[VOLOPT_EA_VFS].i_value = AFPVOL_EA_AUTO;
951     default_options[VOLOPT_UMASK].i_value = obj->options.umask;
952     memcpy(save_options, default_options, sizeof(options));
953
954     int secnum = iniparser_getnsec(obj->iniconfig);    
955     LOG(log_debug, logtype_afpd, "readvolfile: sections: %d", secnum);
956     const char *secname;
957
958     for (i = 0; i < secnum; i++) { 
959         secname = iniparser_getsecname(obj->iniconfig, i);
960         if (!vol_section(secname))
961             continue;
962
963         strlcpy(volname, secname, AFPVOL_U8MNAMELEN);
964         LOG(log_debug, logtype_afpd, "readvolfile: volume: %s", volname);
965
966         if ((p = iniparser_getstrdup(obj->iniconfig, secname, "path", NULL)) == NULL)
967             continue;
968         strlcpy(path, p, MAXPATHLEN);
969         strcpy(tmp, path);
970
971
972         if (!pwent && obj->username)
973             pwent = getpwnam(obj->username);
974
975         if (volxlate(obj, path, sizeof(path) - 1, tmp, pwent, NULL, NULL) == NULL)
976             continue;
977
978         memcpy(options, default_options, sizeof(options));
979         volset(obj->iniconfig, secname, options, default_options);
980
981         /* check allow/deny lists (if not afpd master loading volumes for Zeroconf reg.):
982            allow -> either no list (-1), or in list (1)
983            deny -> either no list (-1), or not in list (0) */
984         if (parent_or_child == 0
985             ||
986             (accessvol(options[VOLOPT_ALLOW].c_value, obj->username) &&
987              (accessvol(options[VOLOPT_DENY].c_value, obj->username) < 1) &&
988              hostaccessvol(VOLOPT_ALLOWED_HOSTS, volname, options[VOLOPT_ALLOWED_HOSTS].c_value, obj) &&
989              (hostaccessvol(VOLOPT_DENIED_HOSTS, volname, options[VOLOPT_DENIED_HOSTS].c_value, obj) < 1))) {
990
991             /* handle read-only behaviour. semantics:
992              * 1) neither the rolist nor the rwlist exist -> rw
993              * 2) rolist exists -> ro if user is in it.
994              * 3) rwlist exists -> ro unless user is in it. */
995             if (parent_or_child == 1
996                 &&
997                 ((options[VOLOPT_FLAGS].i_value & AFPVOL_RO) == 0)
998                 &&
999                 ((accessvol(options[VOLOPT_ROLIST].c_value, obj->username) == 1) ||
1000                  !accessvol(options[VOLOPT_RWLIST].c_value, obj->username)))
1001                 options[VOLOPT_FLAGS].i_value |= AFPVOL_RO;
1002
1003             /* do variable substitution for volname */
1004             if (volxlate(obj, tmp, sizeof(tmp) - 1, volname, pwent, path, NULL) == NULL) {
1005                 volfree(options, default_options);
1006                 continue;
1007             }
1008
1009             creatvol(obj, pwent, path, tmp, options);
1010         }
1011         volfree(options, default_options);
1012     }
1013     volfree(save_options, NULL);
1014     p1->loaded = 1;
1015     return( 0 );
1016 }
1017
1018 /* ------------------------------- */
1019 static void volume_free(struct vol *vol)
1020 {
1021     free(vol->v_localname);
1022     vol->v_localname = NULL;
1023     free(vol->v_u8mname);
1024     vol->v_u8mname = NULL;
1025     free(vol->v_macname);
1026     vol->v_macname = NULL;
1027     free(vol->v_path);
1028     free(vol->v_password);
1029     free(vol->v_veto);
1030     free(vol->v_volcodepage);
1031     free(vol->v_maccodepage);
1032     free(vol->v_cnidscheme);
1033     free(vol->v_dbpath);
1034     free(vol->v_gvs);
1035     if (vol->v_uuid)
1036         free(vol->v_uuid);
1037 }
1038
1039 /* ------------------------------- */
1040 static void free_volumes(void )
1041 {
1042     struct vol  *vol;
1043     struct vol  *nvol, *ovol;
1044
1045     for ( vol = Volumes; vol; vol = vol->v_next ) {
1046         if (( vol->v_flags & AFPVOL_OPEN ) ) {
1047             vol->v_deleted = 1;
1048             continue;
1049         }
1050         volume_free(vol);
1051     }
1052
1053     for ( vol = Volumes, ovol = NULL; vol; vol = nvol) {
1054         nvol = vol->v_next;
1055
1056         if (vol->v_localname == NULL) {
1057             if (Volumes == vol) {
1058                 Volumes = nvol;
1059                 ovol = Volumes;
1060             }
1061             else {
1062                 ovol->v_next = nvol;
1063             }
1064             free(vol);
1065         }
1066         else {
1067             ovol = vol;
1068         }
1069     }
1070 }
1071
1072 /* ------------------------------- */
1073 static void volume_unlink(struct vol *volume)
1074 {
1075     struct vol *vol, *ovol, *nvol;
1076
1077     if (volume == Volumes) {
1078         Volumes = Volumes->v_next;
1079         return;
1080     }
1081     for ( vol = Volumes->v_next, ovol = Volumes; vol; vol = nvol) {
1082         nvol = vol->v_next;
1083
1084         if (vol == volume) {
1085             ovol->v_next = nvol;
1086             break;
1087         }
1088         else {
1089             ovol = vol;
1090         }
1091     }
1092 }
1093 /*!
1094  * Read band-size info from Info.plist XML file of an TM sparsebundle
1095  *
1096  * @param path   (r) path to Info.plist file
1097  * @return           band-size in bytes, -1 on error
1098  */
1099 static long long int get_tm_bandsize(const char *path)
1100 {
1101     EC_INIT;
1102     FILE *file = NULL;
1103     char buf[512];
1104     long long int bandsize = -1;
1105
1106     EC_NULL_LOGSTR( file = fopen(path, "r"),
1107                     "get_tm_bandsize(\"%s\"): %s",
1108                     path, strerror(errno) );
1109
1110     while (fgets(buf, sizeof(buf), file) != NULL) {
1111         if (strstr(buf, "band-size") == NULL)
1112             continue;
1113
1114         if (fscanf(file, " <integer>%lld</integer>", &bandsize) != 1) {
1115             LOG(log_error, logtype_afpd, "get_tm_bandsize(\"%s\"): can't parse band-size", path);
1116             EC_FAIL;
1117         }
1118         break;
1119     }
1120
1121 EC_CLEANUP:
1122     if (file)
1123         fclose(file);
1124     LOG(log_debug, logtype_afpd, "get_tm_bandsize(\"%s\"): bandsize: %lld", path, bandsize);
1125     return bandsize;
1126 }
1127
1128 /*!
1129  * Return number on entries in a directory
1130  *
1131  * @param path   (r) path to dir
1132  * @return           number of entries, -1 on error
1133  */
1134 static long long int get_tm_bands(const char *path)
1135 {
1136     EC_INIT;
1137     long long int count = 0;
1138     DIR *dir = NULL;
1139     const struct dirent *entry;
1140
1141     EC_NULL( dir = opendir(path) );
1142
1143     while ((entry = readdir(dir)) != NULL)
1144         count++;
1145     count -= 2; /* All OSens I'm aware of return "." and "..", so just substract them, avoiding string comparison in loop */
1146         
1147 EC_CLEANUP:
1148     if (dir)
1149         closedir(dir);
1150     if (ret != 0)
1151         return -1;
1152     return count;
1153 }
1154
1155 /*!
1156  * Calculate used size of a TimeMachine volume
1157  *
1158  * This assumes that the volume is used only for TimeMachine.
1159  *
1160  * 1) readdir(path of volume)
1161  * 2) for every element that matches regex "\(.*\)\.sparsebundle$" :
1162  * 3) parse "\1.sparsebundle/Info.plist" and read the band-size XML key integer value
1163  * 4) readdir "\1.sparsebundle/bands/" counting files
1164  * 5) calculate used size as: (file_count - 1) * band-size
1165  *
1166  * The result of the calculation is returned in "volume->v_tm_used".
1167  * "volume->v_appended" gets reset to 0.
1168  * "volume->v_tm_cachetime" is updated with the current time from time(NULL).
1169  *
1170  * "volume->v_tm_used" is cached for TM_USED_CACHETIME seconds and updated by
1171  * "volume->v_appended". The latter is increased by X every time the client
1172  * appends X bytes to a file (in fork.c).
1173  *
1174  * @param vol     (rw) volume to calculate
1175  * @return             0 on success, -1 on error
1176  */
1177 #define TM_USED_CACHETIME 60    /* cache for 60 seconds */
1178 static int get_tm_used(struct vol * restrict vol)
1179 {
1180     EC_INIT;
1181     long long int bandsize;
1182     VolSpace used = 0;
1183     bstring infoplist = NULL;
1184     bstring bandsdir = NULL;
1185     DIR *dir = NULL;
1186     const struct dirent *entry;
1187     const char *p;
1188     struct stat st;
1189     long int links;
1190     time_t now = time(NULL);
1191
1192     if (vol->v_tm_cachetime
1193         && ((vol->v_tm_cachetime + TM_USED_CACHETIME) >= now)) {
1194         if (vol->v_tm_used == -1)
1195             EC_FAIL;
1196         vol->v_tm_used += vol->v_appended;
1197         vol->v_appended = 0;
1198         LOG(log_debug, logtype_afpd, "getused(\"%s\"): cached: %" PRIu64 " bytes",
1199             vol->v_path, vol->v_tm_used);
1200         return 0;
1201     }
1202
1203     vol->v_tm_cachetime = now;
1204
1205     EC_NULL( dir = opendir(vol->v_path) );
1206
1207     while ((entry = readdir(dir)) != NULL) {
1208         if (((p = strstr(entry->d_name, "sparsebundle")) != NULL)
1209             && (strlen(entry->d_name) == (p + strlen("sparsebundle") - entry->d_name))) {
1210
1211             EC_NULL_LOG( infoplist = bformat("%s/%s/%s", vol->v_path, entry->d_name, "Info.plist") );
1212             
1213             if ((bandsize = get_tm_bandsize(cfrombstr(infoplist))) == -1)
1214                 continue;
1215
1216             EC_NULL_LOG( bandsdir = bformat("%s/%s/%s/", vol->v_path, entry->d_name, "bands") );
1217
1218             if ((links = get_tm_bands(cfrombstr(bandsdir))) == -1)
1219                 continue;
1220
1221             used += (links - 1) * bandsize;
1222             LOG(log_debug, logtype_afpd, "getused(\"%s\"): bands: %" PRIu64 " bytes",
1223                 cfrombstr(bandsdir), used);
1224         }
1225     }
1226
1227     vol->v_tm_used = used;
1228
1229 EC_CLEANUP:
1230     if (infoplist)
1231         bdestroy(infoplist);
1232     if (bandsdir)
1233         bdestroy(bandsdir);
1234     if (dir)
1235         closedir(dir);
1236
1237     LOG(log_debug, logtype_afpd, "getused(\"%s\"): %" PRIu64 " bytes", vol->v_path, vol->v_tm_used);
1238
1239     EC_EXIT;
1240 }
1241
1242 static int getvolspace(struct vol *vol,
1243                        uint32_t *bfree, uint32_t *btotal,
1244                        VolSpace *xbfree, VolSpace *xbtotal, uint32_t *bsize)
1245 {
1246     int         spaceflag, rc;
1247     uint32_t   maxsize;
1248     VolSpace    used;
1249 #ifndef NO_QUOTA_SUPPORT
1250     VolSpace    qfree, qtotal;
1251 #endif
1252
1253     spaceflag = AFPVOL_GVSMASK & vol->v_flags;
1254     /* report up to 2GB if afp version is < 2.2 (4GB if not) */
1255     maxsize = (afp_version < 22) ? 0x7fffffffL : 0xffffffffL;
1256
1257 #ifdef AFS
1258     if ( spaceflag == AFPVOL_NONE || spaceflag == AFPVOL_AFSGVS ) {
1259         if ( afs_getvolspace( vol, xbfree, xbtotal, bsize ) == AFP_OK ) {
1260             vol->v_flags = ( ~AFPVOL_GVSMASK & vol->v_flags ) | AFPVOL_AFSGVS;
1261             goto getvolspace_done;
1262         }
1263     }
1264 #endif
1265
1266     if (( rc = ustatfs_getvolspace( vol, xbfree, xbtotal, bsize)) != AFP_OK ) {
1267         return( rc );
1268     }
1269
1270 #ifndef NO_QUOTA_SUPPORT
1271     if ( spaceflag == AFPVOL_NONE || spaceflag == AFPVOL_UQUOTA ) {
1272         if ( uquota_getvolspace( vol, &qfree, &qtotal, *bsize ) == AFP_OK ) {
1273             vol->v_flags = ( ~AFPVOL_GVSMASK & vol->v_flags ) | AFPVOL_UQUOTA;
1274             *xbfree = MIN(*xbfree, qfree);
1275             *xbtotal = MIN(*xbtotal, qtotal);
1276             goto getvolspace_done;
1277         }
1278     }
1279 #endif
1280     vol->v_flags = ( ~AFPVOL_GVSMASK & vol->v_flags ) | AFPVOL_USTATFS;
1281
1282 getvolspace_done:
1283     if (vol->v_limitsize) {
1284         if (get_tm_used(vol) != 0)
1285             return AFPERR_MISC;
1286
1287         *xbtotal = MIN(*xbtotal, (vol->v_limitsize * 1024 * 1024));
1288         *xbfree = MIN(*xbfree, *xbtotal < vol->v_tm_used ? 0 : *xbtotal - vol->v_tm_used);
1289
1290         LOG(log_debug, logtype_afpd,
1291             "volparams: total: %" PRIu64 ", used: %" PRIu64 ", free: %" PRIu64 " bytes",
1292             *xbtotal, vol->v_tm_used, *xbfree);
1293     }
1294
1295     *bfree = MIN(*xbfree, maxsize);
1296     *btotal = MIN(*xbtotal, maxsize);
1297     return( AFP_OK );
1298 }
1299
1300 #define FCE_TM_DELTA 10  /* send notification every 10 seconds */
1301 void vol_fce_tm_event(void)
1302 {
1303     static time_t last;
1304     time_t now = time(NULL);
1305     struct vol  *vol = Volumes;
1306
1307     if ((last + FCE_TM_DELTA) < now) {
1308         last = now;
1309         for ( ; vol; vol = vol->v_next ) {
1310             if (vol->v_flags & AFPVOL_TM)
1311                 (void)fce_register_tm_size(vol->v_path, vol->v_tm_used + vol->v_appended);
1312         }
1313     }
1314 }
1315
1316 /* -----------------------
1317  * set volume creation date
1318  * avoid duplicate, well at least it tries
1319  */
1320 static void vol_setdate(uint16_t id, struct adouble *adp, time_t date)
1321 {
1322     struct vol  *volume;
1323     struct vol  *vol = Volumes;
1324
1325     for ( volume = Volumes; volume; volume = volume->v_next ) {
1326         if (volume->v_vid == id) {
1327             vol = volume;
1328         }
1329         else if ((time_t)(AD_DATE_FROM_UNIX(date)) == volume->v_ctime) {
1330             date = date+1;
1331             volume = Volumes; /* restart */
1332         }
1333     }
1334     vol->v_ctime = AD_DATE_FROM_UNIX(date);
1335     ad_setdate(adp, AD_DATE_CREATE | AD_DATE_UNIX, date);
1336 }
1337
1338 /* ----------------------- */
1339 static int getvolparams( uint16_t bitmap, struct vol *vol, struct stat *st, char *buf, size_t *buflen)
1340 {
1341     struct adouble  ad;
1342     int         bit = 0, isad = 1;
1343     uint32_t       aint;
1344     u_short     ashort;
1345     uint32_t       bfree, btotal, bsize;
1346     VolSpace            xbfree, xbtotal; /* extended bytes */
1347     char        *data, *nameoff = NULL;
1348     char                *slash;
1349
1350     LOG(log_debug, logtype_afpd, "getvolparams: Volume '%s'", vol->v_localname);
1351
1352     /* courtesy of jallison@whistle.com:
1353      * For MacOS8.x support we need to create the
1354      * .Parent file here if it doesn't exist. */
1355
1356     /* Convert adouble:v2 to adouble:ea on the fly */
1357     (void)ad_convert(vol->v_path, st, vol);
1358
1359     ad_init(&ad, vol);
1360     if (ad_open(&ad, vol->v_path, ADFLAGS_HF | ADFLAGS_DIR | ADFLAGS_RDWR | ADFLAGS_CREATE, 0666) != 0 ) {
1361         isad = 0;
1362         vol->v_ctime = AD_DATE_FROM_UNIX(st->st_mtime);
1363
1364     } else if (ad_get_MD_flags( &ad ) & O_CREAT) {
1365         slash = strrchr( vol->v_path, '/' );
1366         if(slash)
1367             slash++;
1368         else
1369             slash = vol->v_path;
1370         if (ad_getentryoff(&ad, ADEID_NAME)) {
1371             ad_setentrylen( &ad, ADEID_NAME, strlen( slash ));
1372             memcpy(ad_entry( &ad, ADEID_NAME ), slash,
1373                    ad_getentrylen( &ad, ADEID_NAME ));
1374         }
1375         vol_setdate(vol->v_vid, &ad, st->st_mtime);
1376         ad_flush(&ad);
1377     }
1378     else {
1379         if (ad_getdate(&ad, AD_DATE_CREATE, &aint) < 0)
1380             vol->v_ctime = AD_DATE_FROM_UNIX(st->st_mtime);
1381         else
1382             vol->v_ctime = aint;
1383     }
1384
1385     if (( bitmap & ( (1<<VOLPBIT_BFREE)|(1<<VOLPBIT_BTOTAL) |
1386                      (1<<VOLPBIT_XBFREE)|(1<<VOLPBIT_XBTOTAL) |
1387                      (1<<VOLPBIT_BSIZE)) ) != 0 ) {
1388         if ( getvolspace( vol, &bfree, &btotal, &xbfree, &xbtotal,
1389                           &bsize) != AFP_OK ) {
1390             if ( isad ) {
1391                 ad_close( &ad, ADFLAGS_HF );
1392             }
1393             return( AFPERR_PARAM );
1394         }
1395     }
1396
1397     data = buf;
1398     while ( bitmap != 0 ) {
1399         while (( bitmap & 1 ) == 0 ) {
1400             bitmap = bitmap>>1;
1401             bit++;
1402         }
1403
1404         switch ( bit ) {
1405         case VOLPBIT_ATTR :
1406             ashort = 0;
1407             /* check for read-only.
1408              * NOTE: we don't actually set the read-only flag unless
1409              *       it's passed in that way as it's possible to mount
1410              *       a read-write filesystem under a read-only one. */
1411             if ((vol->v_flags & AFPVOL_RO) ||
1412                 ((utime(vol->v_path, NULL) < 0) && (errno == EROFS))) {
1413                 ashort |= VOLPBIT_ATTR_RO;
1414             }
1415             /* prior 2.1 only VOLPBIT_ATTR_RO is defined */
1416             if (afp_version > 20) {
1417                 if (vol->v_cdb != NULL && (vol->v_cdb->flags & CNID_FLAG_PERSISTENT))
1418                     ashort |= VOLPBIT_ATTR_FILEID;
1419                 ashort |= VOLPBIT_ATTR_CATSEARCH;
1420
1421                 if (afp_version >= 30) {
1422                     ashort |= VOLPBIT_ATTR_UTF8;
1423                     if (vol->v_flags & AFPVOL_UNIX_PRIV)
1424                         ashort |= VOLPBIT_ATTR_UNIXPRIV;
1425                     if (vol->v_flags & AFPVOL_TM)
1426                         ashort |= VOLPBIT_ATTR_TM;
1427                     if (vol->v_flags & AFPVOL_NONETIDS)
1428                         ashort |= VOLPBIT_ATTR_NONETIDS;
1429                     if (afp_version >= 32) {
1430                         if (vol->v_vfs_ea)
1431                             ashort |= VOLPBIT_ATTR_EXT_ATTRS;
1432                         if (vol->v_flags & AFPVOL_ACLS)
1433                             ashort |= VOLPBIT_ATTR_ACLS;
1434                     }
1435                 }
1436             }
1437             ashort = htons(ashort);
1438             memcpy(data, &ashort, sizeof( ashort ));
1439             data += sizeof( ashort );
1440             break;
1441
1442         case VOLPBIT_SIG :
1443             ashort = htons( AFPVOLSIG_DEFAULT );
1444             memcpy(data, &ashort, sizeof( ashort ));
1445             data += sizeof( ashort );
1446             break;
1447
1448         case VOLPBIT_CDATE :
1449             aint = vol->v_ctime;
1450             memcpy(data, &aint, sizeof( aint ));
1451             data += sizeof( aint );
1452             break;
1453
1454         case VOLPBIT_MDATE :
1455             if ( st->st_mtime > vol->v_mtime ) {
1456                 vol->v_mtime = st->st_mtime;
1457             }
1458             aint = AD_DATE_FROM_UNIX(vol->v_mtime);
1459             memcpy(data, &aint, sizeof( aint ));
1460             data += sizeof( aint );
1461             break;
1462
1463         case VOLPBIT_BDATE :
1464             if (!isad ||  (ad_getdate(&ad, AD_DATE_BACKUP, &aint) < 0))
1465                 aint = AD_DATE_START;
1466             memcpy(data, &aint, sizeof( aint ));
1467             data += sizeof( aint );
1468             break;
1469
1470         case VOLPBIT_VID :
1471             memcpy(data, &vol->v_vid, sizeof( vol->v_vid ));
1472             data += sizeof( vol->v_vid );
1473             break;
1474
1475         case VOLPBIT_BFREE :
1476             bfree = htonl( bfree );
1477             memcpy(data, &bfree, sizeof( bfree ));
1478             data += sizeof( bfree );
1479             break;
1480
1481         case VOLPBIT_BTOTAL :
1482             btotal = htonl( btotal );
1483             memcpy(data, &btotal, sizeof( btotal ));
1484             data += sizeof( btotal );
1485             break;
1486
1487 #ifndef NO_LARGE_VOL_SUPPORT
1488         case VOLPBIT_XBFREE :
1489             xbfree = hton64( xbfree );
1490             memcpy(data, &xbfree, sizeof( xbfree ));
1491             data += sizeof( xbfree );
1492             break;
1493
1494         case VOLPBIT_XBTOTAL :
1495             xbtotal = hton64( xbtotal );
1496             memcpy(data, &xbtotal, sizeof( xbtotal ));
1497             data += sizeof( xbfree );
1498             break;
1499 #endif /* ! NO_LARGE_VOL_SUPPORT */
1500
1501         case VOLPBIT_NAME :
1502             nameoff = data;
1503             data += sizeof( uint16_t );
1504             break;
1505
1506         case VOLPBIT_BSIZE:  /* block size */
1507             bsize = htonl(bsize);
1508             memcpy(data, &bsize, sizeof(bsize));
1509             data += sizeof(bsize);
1510             break;
1511
1512         default :
1513             if ( isad ) {
1514                 ad_close( &ad, ADFLAGS_HF );
1515             }
1516             return( AFPERR_BITMAP );
1517         }
1518         bitmap = bitmap>>1;
1519         bit++;
1520     }
1521     if ( nameoff ) {
1522         ashort = htons( data - buf );
1523         memcpy(nameoff, &ashort, sizeof( ashort ));
1524         /* name is always in mac charset */
1525         aint = ucs2_to_charset( vol->v_maccharset, vol->v_macname, data+1, AFPVOL_MACNAMELEN + 1);
1526         if ( aint <= 0 ) {
1527             *buflen = 0;
1528             return AFPERR_MISC;
1529         }
1530
1531         *data++ = aint;
1532         data += aint;
1533     }
1534     if ( isad ) {
1535         ad_close(&ad, ADFLAGS_HF);
1536     }
1537     *buflen = data - buf;
1538     return( AFP_OK );
1539 }
1540
1541 /* ------------------------- */
1542 static int stat_vol(uint16_t bitmap, struct vol *vol, char *rbuf, size_t *rbuflen)
1543 {
1544     struct stat st;
1545     int     ret;
1546     size_t  buflen;
1547
1548     if ( stat( vol->v_path, &st ) < 0 ) {
1549         *rbuflen = 0;
1550         return( AFPERR_PARAM );
1551     }
1552     /* save the volume device number */
1553     vol->v_dev = st.st_dev;
1554
1555     buflen = *rbuflen - sizeof( bitmap );
1556     if (( ret = getvolparams( bitmap, vol, &st,
1557                               rbuf + sizeof( bitmap ), &buflen )) != AFP_OK ) {
1558         *rbuflen = 0;
1559         return( ret );
1560     }
1561     *rbuflen = buflen + sizeof( bitmap );
1562     bitmap = htons( bitmap );
1563     memcpy(rbuf, &bitmap, sizeof( bitmap ));
1564     return( AFP_OK );
1565
1566 }
1567
1568 /* ------------------------------- */
1569 void load_volumes(AFPObj *obj)
1570 {
1571     EC_INIT;
1572     int fd = -1;
1573     struct passwd   *pwent;
1574     struct stat         st;
1575     int retries = 0;
1576
1577     if (parent_or_child == 0) {
1578         LOG(log_debug, logtype_afpd, "load_volumes: AFP MASTER");
1579     } else {
1580         LOG(log_debug, logtype_afpd, "load_volumes: user: %s", obj->username);
1581     }
1582
1583     if (Volumes) {
1584         if (!volfile_changed(&obj->options))
1585             return;
1586         free_volumes();
1587     }
1588
1589     /* try putting a read lock on the volume file twice, sleep 1 second if first attempt fails */
1590
1591     fd = open(obj->options.configfile, O_RDWR);
1592
1593     while (retries < 2) {
1594         if ((read_lock(fd, 0, SEEK_SET, 0)) != 0) {
1595             retries++;
1596             if (!retries) {
1597                 LOG(log_error, logtype_afpd, "readvolfile: can't lock configfile \"%s\"",
1598                     obj->options.configfile);
1599                 EC_FAIL;
1600             }
1601             sleep(1);
1602             continue;
1603         }
1604         break;
1605     }
1606
1607     if (obj->iniconfig)
1608         iniparser_freedict(obj->iniconfig);
1609     LOG(log_debug, logtype_afpd, "load_volumes: reloading: %s", obj->options.configfile);
1610     obj->iniconfig = iniparser_load(obj->options.configfile);
1611
1612     if (obj->username)
1613         pwent = getpwnam(obj->username);
1614     else
1615         pwent = NULL;
1616
1617     readvolfile(obj, &obj->options.volfile, pwent);
1618
1619     if ( obj->options.flags & OPTION_CLOSEVOL) {
1620         struct vol *vol;
1621         for ( vol = Volumes; vol; vol = vol->v_next ) {
1622             if (vol->v_deleted && !vol->v_new ) {
1623                 of_closevol(vol);
1624                 deletevol(vol);
1625                 vol = Volumes;
1626             }
1627         }
1628     }
1629
1630 EC_CLEANUP:
1631     if (fd != -1)
1632         (void)close(fd);
1633     return;
1634 }
1635
1636 /* ------------------------------- */
1637 int afp_getsrvrparms(AFPObj *obj, char *ibuf _U_, size_t ibuflen _U_, char *rbuf, size_t *rbuflen)
1638 {
1639     struct timeval  tv;
1640     struct stat     st;
1641     struct vol      *volume;
1642     char    *data;
1643     char        *namebuf;
1644     int         vcnt;
1645     size_t      len;
1646
1647     load_volumes(obj);
1648
1649     data = rbuf + 5;
1650     for ( vcnt = 0, volume = Volumes; volume; volume = volume->v_next ) {
1651         if (!(volume->v_flags & AFPVOL_NOSTAT)) {
1652             struct maccess ma;
1653
1654             if ( stat( volume->v_path, &st ) < 0 ) {
1655                 LOG(log_info, logtype_afpd, "afp_getsrvrparms(%s): stat: %s",
1656                     volume->v_path, strerror(errno) );
1657                 continue;       /* can't access directory */
1658             }
1659             if (!S_ISDIR(st.st_mode)) {
1660                 continue;       /* not a dir */
1661             }
1662             accessmode(volume, volume->v_path, &ma, NULL, &st);
1663             if ((ma.ma_user & (AR_UREAD | AR_USEARCH)) != (AR_UREAD | AR_USEARCH)) {
1664                 continue;   /* no r-x access */
1665             }
1666         }
1667         if (volume->v_hide) {
1668             continue;       /* config file changed but the volume was mounted */
1669         }
1670
1671         if (utf8_encoding()) {
1672             len = ucs2_to_charset_allocate(CH_UTF8_MAC, &namebuf, volume->v_u8mname);
1673         } else {
1674             len = ucs2_to_charset_allocate(obj->options.maccharset, &namebuf, volume->v_macname);
1675         }
1676
1677         if (len == (size_t)-1)
1678             continue;
1679
1680         /* set password bit if there's a volume password */
1681         *data = (volume->v_password) ? AFPSRVR_PASSWD : 0;
1682
1683         *data++ |= 0; /* UNIX PRIVS BIT ..., OSX doesn't seem to use it, so we don't either */
1684         *data++ = len;
1685         memcpy(data, namebuf, len );
1686         data += len;
1687         free(namebuf);
1688         vcnt++;
1689     }
1690
1691     *rbuflen = data - rbuf;
1692     data = rbuf;
1693     if ( gettimeofday( &tv, NULL ) < 0 ) {
1694         LOG(log_error, logtype_afpd, "afp_getsrvrparms(%s): gettimeofday: %s", volume->v_path, strerror(errno) );
1695         *rbuflen = 0;
1696         return AFPERR_PARAM;
1697     }
1698     tv.tv_sec = AD_DATE_FROM_UNIX(tv.tv_sec);
1699     memcpy(data, &tv.tv_sec, sizeof( uint32_t));
1700     data += sizeof( uint32_t);
1701     *data = vcnt;
1702     return( AFP_OK );
1703 }
1704
1705 /* ------------------------- */
1706 static int volume_codepage(AFPObj *obj, struct vol *volume)
1707 {
1708     struct charset_functions *charset;
1709     /* Codepages */
1710
1711     if (!volume->v_volcodepage)
1712         volume->v_volcodepage = strdup("UTF8");
1713
1714     if ( (charset_t) -1 == ( volume->v_volcharset = add_charset(volume->v_volcodepage)) ) {
1715         LOG (log_error, logtype_afpd, "Setting codepage %s as volume codepage failed", volume->v_volcodepage);
1716         return -1;
1717     }
1718
1719     if ( NULL == (charset = find_charset_functions(volume->v_volcodepage)) || charset->flags & CHARSET_ICONV ) {
1720         LOG (log_warning, logtype_afpd, "WARNING: volume encoding %s is *not* supported by netatalk, expect problems !!!!", volume->v_volcodepage);
1721     }
1722
1723     if (!volume->v_maccodepage)
1724         volume->v_maccodepage = strdup(obj->options.maccodepage);
1725
1726     if ( (charset_t) -1 == ( volume->v_maccharset = add_charset(volume->v_maccodepage)) ) {
1727         LOG (log_error, logtype_afpd, "Setting codepage %s as mac codepage failed", volume->v_maccodepage);
1728         return -1;
1729     }
1730
1731     if ( NULL == ( charset = find_charset_functions(volume->v_maccodepage)) || ! (charset->flags & CHARSET_CLIENT) ) {
1732         LOG (log_error, logtype_afpd, "Fatal error: mac charset %s not supported", volume->v_maccodepage);
1733         return -1;
1734     }
1735     volume->v_kTextEncoding = htonl(charset->kTextEncoding);
1736     return 0;
1737 }
1738
1739 /* ------------------------- */
1740 static int volume_openDB(const AFPObj *obj, struct vol *volume)
1741 {
1742     int flags = 0;
1743
1744     if ((volume->v_flags & AFPVOL_NODEV)) {
1745         flags |= CNID_FLAG_NODEV;
1746     }
1747
1748     if (volume->v_cnidscheme == NULL) {
1749         volume->v_cnidscheme = strdup(DEFAULT_CNID_SCHEME);
1750         LOG(log_info, logtype_afpd, "Volume %s use CNID scheme %s.",
1751             volume->v_path, volume->v_cnidscheme);
1752     }
1753
1754     LOG(log_info, logtype_afpd, "CNID server: %s:%s",
1755         volume->v_cnidserver ? volume->v_cnidserver : obj->options.Cnid_srv,
1756         volume->v_cnidport ? volume->v_cnidport : obj->options.Cnid_port);
1757
1758     volume->v_cdb = cnid_open(volume->v_path,
1759                               volume->v_umask,
1760                               volume->v_cnidscheme,
1761                               flags,
1762                               volume->v_cnidserver ? volume->v_cnidserver : obj->options.Cnid_srv,
1763                               volume->v_cnidport ? volume->v_cnidport : obj->options.Cnid_port);
1764
1765     if ( ! volume->v_cdb && ! (flags & CNID_FLAG_MEMORY)) {
1766         /* The first attempt failed and it wasn't yet an attempt to open in-memory */
1767         LOG(log_error, logtype_afpd, "Can't open volume \"%s\" CNID backend \"%s\" ",
1768             volume->v_path, volume->v_cnidscheme);
1769         LOG(log_error, logtype_afpd, "Reopen volume %s using in memory temporary CNID DB.",
1770             volume->v_path);
1771         flags |= CNID_FLAG_MEMORY;
1772         volume->v_cdb = cnid_open (volume->v_path, volume->v_umask, "tdb", flags, NULL, NULL);
1773 #ifdef SERVERTEXT
1774         /* kill ourself with SIGUSR2 aka msg pending */
1775         if (volume->v_cdb) {
1776             setmessage("Something wrong with the volume's CNID DB, using temporary CNID DB instead."
1777                        "Check server messages for details!");
1778             kill(getpid(), SIGUSR2);
1779             /* deactivate cnid caching/storing in AppleDouble files */
1780         }
1781 #endif
1782     }
1783
1784     return (!volume->v_cdb)?-1:0;
1785 }
1786
1787 /*
1788   Check if the underlying filesystem supports EAs for ea:sys volumes.
1789   If not, switch to ea:ad.
1790   As we can't check (requires write access) on ro-volumes, we switch ea:auto
1791   volumes that are options:ro to ea:none.
1792 */
1793 static void check_ea_sys_support(struct vol *vol)
1794 {
1795     uid_t process_uid = 0;
1796     char eaname[] = {"org.netatalk.supports-eas.XXXXXX"};
1797     const char *eacontent = "yes";
1798
1799     if (vol->v_vfs_ea == AFPVOL_EA_AUTO) {
1800
1801         if ((vol->v_flags & AFPVOL_RO) == AFPVOL_RO) {
1802             LOG(log_info, logtype_afpd, "read-only volume '%s', can't test for EA support, disabling EAs", vol->v_localname);
1803             vol->v_vfs_ea = AFPVOL_EA_NONE;
1804             return;
1805         }
1806
1807         mktemp(eaname);
1808
1809         process_uid = geteuid();
1810         if (process_uid)
1811             if (seteuid(0) == -1) {
1812                 LOG(log_error, logtype_afpd, "check_ea_sys_support: can't seteuid(0): %s", strerror(errno));
1813                 exit(EXITERR_SYS);
1814             }
1815
1816         if ((sys_setxattr(vol->v_path, eaname, eacontent, 4, 0)) == 0) {
1817             sys_removexattr(vol->v_path, eaname);
1818             vol->v_vfs_ea = AFPVOL_EA_SYS;
1819         } else {
1820             LOG(log_warning, logtype_afpd, "volume \"%s\" does not support Extended Attributes, using ea:ad instead",
1821                 vol->v_localname);
1822             vol->v_vfs_ea = AFPVOL_EA_AD;
1823         }
1824
1825         if (process_uid) {
1826             if (seteuid(process_uid) == -1) {
1827                 LOG(log_error, logtype_afpd, "can't seteuid back %s", strerror(errno));
1828                 exit(EXITERR_SYS);
1829             }
1830         }
1831     }
1832 }
1833
1834 /* -------------------------
1835  * we are the user here
1836  */
1837 int afp_openvol(AFPObj *obj, char *ibuf, size_t ibuflen _U_, char *rbuf, size_t *rbuflen)
1838 {
1839     struct stat st;
1840     char    *volname;
1841     char        *p;
1842
1843     struct vol  *volume;
1844     struct dir  *dir;
1845     int     len, ret;
1846     size_t  namelen;
1847     uint16_t   bitmap;
1848     char        path[ MAXPATHLEN + 1];
1849     char        *vol_uname;
1850     char        *vol_mname;
1851     char        *volname_tmp;
1852
1853     ibuf += 2;
1854     memcpy(&bitmap, ibuf, sizeof( bitmap ));
1855     bitmap = ntohs( bitmap );
1856     ibuf += sizeof( bitmap );
1857
1858     *rbuflen = 0;
1859     if (( bitmap & (1<<VOLPBIT_VID)) == 0 ) {
1860         return AFPERR_BITMAP;
1861     }
1862
1863     len = (unsigned char)*ibuf++;
1864     volname = obj->oldtmp;
1865
1866     if ((volname_tmp = strchr(volname,'+')) != NULL)
1867         volname = volname_tmp+1;
1868
1869     if (utf8_encoding()) {
1870         namelen = convert_string(CH_UTF8_MAC, CH_UCS2, ibuf, len, volname, sizeof(obj->oldtmp));
1871     } else {
1872         namelen = convert_string(obj->options.maccharset, CH_UCS2, ibuf, len, volname, sizeof(obj->oldtmp));
1873     }
1874
1875     if ( namelen <= 0) {
1876         return AFPERR_PARAM;
1877     }
1878
1879     ibuf += len;
1880     if ((len + 1) & 1) /* pad to an even boundary */
1881         ibuf++;
1882
1883     load_volumes(obj);
1884
1885     for ( volume = Volumes; volume; volume = volume->v_next ) {
1886         if ( strcasecmp_w( (ucs2_t*) volname, volume->v_name ) == 0 ) {
1887             break;
1888         }
1889     }
1890
1891     if ( volume == NULL ) {
1892         return AFPERR_PARAM;
1893     }
1894
1895     /* check for a volume password */
1896     if (volume->v_password && strncmp(ibuf, volume->v_password, VOLPASSLEN)) {
1897         return AFPERR_ACCESS;
1898     }
1899
1900     if (( volume->v_flags & AFPVOL_OPEN  ) ) {
1901         /* the volume is already open */
1902         return stat_vol(bitmap, volume, rbuf, rbuflen);
1903     }
1904
1905     if (volume->v_root_preexec) {
1906         if ((ret = afprun(1, volume->v_root_preexec, NULL)) && volume->v_root_preexec_close) {
1907             LOG(log_error, logtype_afpd, "afp_openvol(%s): root preexec : %d", volume->v_path, ret );
1908             return AFPERR_MISC;
1909         }
1910     }
1911
1912     if (volume->v_preexec) {
1913         if ((ret = afprun(0, volume->v_preexec, NULL)) && volume->v_preexec_close) {
1914             LOG(log_error, logtype_afpd, "afp_openvol(%s): preexec : %d", volume->v_path, ret );
1915             return AFPERR_MISC;
1916         }
1917     }
1918
1919     if ( stat( volume->v_path, &st ) < 0 ) {
1920         return AFPERR_PARAM;
1921     }
1922
1923     if ( chdir( volume->v_path ) < 0 ) {
1924         return AFPERR_PARAM;
1925     }
1926
1927     if ( NULL == getcwd(path, MAXPATHLEN)) {
1928         /* shouldn't be fatal but it will fail later */
1929         LOG(log_error, logtype_afpd, "afp_openvol(%s): volume pathlen too long", volume->v_path);
1930         return AFPERR_MISC;
1931     }
1932
1933     /* Normalize volume path */
1934 #ifdef REALPATH_TAKES_NULL
1935     if ((volume->v_path = realpath(path, NULL)) == NULL)
1936         return AFPERR_MISC;
1937 #else
1938     if ((volume->v_path = malloc(MAXPATHLEN+1)) == NULL)
1939         return AFPERR_MISC;
1940     if (realpath(path, volume->v_path) == NULL) {
1941         free(volume->v_path);
1942         return AFPERR_MISC;
1943     }
1944     /* Safe some memory */
1945     char *tmp;
1946     if ((tmp = strdup(volume->v_path)) == NULL) {
1947         free(volume->v_path);
1948         return AFPERR_MISC;
1949     }
1950     free(volume->v_path);
1951     volume->v_path = tmp;
1952 #endif
1953
1954     if (volume_codepage(obj, volume) < 0) {
1955         ret = AFPERR_MISC;
1956         goto openvol_err;
1957     }
1958
1959     /* initialize volume variables
1960      * FIXME file size
1961      */
1962     if (utf8_encoding()) {
1963         volume->max_filename = UTF8FILELEN_EARLY;
1964     }
1965     else {
1966         volume->max_filename = MACFILELEN;
1967     }
1968
1969     volume->v_flags |= AFPVOL_OPEN;
1970     volume->v_cdb = NULL;
1971
1972     if (utf8_encoding()) {
1973         len = convert_string_allocate(CH_UCS2, CH_UTF8_MAC, volume->v_u8mname, namelen, &vol_mname);
1974     } else {
1975         len = convert_string_allocate(CH_UCS2, obj->options.maccharset, volume->v_macname, namelen, &vol_mname);
1976     }
1977     if ( !vol_mname || len <= 0) {
1978         ret = AFPERR_MISC;
1979         goto openvol_err;
1980     }
1981
1982     if ((vol_uname = strrchr(path, '/')) == NULL)
1983         vol_uname = path;
1984     else if (*(vol_uname + 1) != '\0')
1985         vol_uname++;
1986
1987     if ((dir = dir_new(vol_mname,
1988                        vol_uname,
1989                        volume,
1990                        DIRDID_ROOT_PARENT,
1991                        DIRDID_ROOT,
1992                        bfromcstr(volume->v_path),
1993                        &st)
1994             ) == NULL) {
1995         free(vol_mname);
1996         LOG(log_error, logtype_afpd, "afp_openvol(%s): malloc: %s", volume->v_path, strerror(errno) );
1997         ret = AFPERR_MISC;
1998         goto openvol_err;
1999     }
2000     free(vol_mname);
2001     volume->v_root = dir;
2002     curdir = dir;
2003
2004     if (volume_openDB(obj, volume) < 0) {
2005         LOG(log_error, logtype_afpd, "Fatal error: cannot open CNID or invalid CNID backend for %s: %s",
2006             volume->v_path, volume->v_cnidscheme);
2007         ret = AFPERR_MISC;
2008         goto openvol_err;
2009     }
2010
2011     ret  = stat_vol(bitmap, volume, rbuf, rbuflen);
2012
2013     if (ret == AFP_OK) {
2014         handle_special_folders(volume);
2015         savevolinfo(volume,
2016                     volume->v_cnidserver ? volume->v_cnidserver : obj->options.Cnid_srv,
2017                     volume->v_cnidport   ? volume->v_cnidport   : obj->options.Cnid_port);
2018
2019
2020         /*
2021          * If you mount a volume twice, the second time the trash appears on
2022          * the desk-top.  That's because the Mac remembers the DID for the
2023          * trash (even for volumes in different zones, on different servers).
2024          * Just so this works better, we prime the DID cache with the trash,
2025          * fixing the trash at DID 17.
2026          * FIXME (RL): should it be done inside a CNID backend ? (always returning Trash DID when asked) ?
2027          */
2028         if ((volume->v_cdb->flags & CNID_FLAG_PERSISTENT)) {
2029
2030             /* FIXME find db time stamp */
2031             if (cnid_getstamp(volume->v_cdb, volume->v_stamp, sizeof(volume->v_stamp)) < 0) {
2032                 LOG (log_error, logtype_afpd,
2033                      "afp_openvol(%s): Fatal error: Unable to get stamp value from CNID backend",
2034                      volume->v_path);
2035                 ret = AFPERR_MISC;
2036                 goto openvol_err;
2037             }
2038         }
2039         else {
2040             p = Trash;
2041             cname( volume, volume->v_root, &p );
2042         }
2043         return( AFP_OK );
2044     }
2045
2046 openvol_err:
2047     if (volume->v_root) {
2048         dir_free( volume->v_root );
2049         volume->v_root = NULL;
2050     }
2051
2052     volume->v_flags &= ~AFPVOL_OPEN;
2053     if (volume->v_cdb != NULL) {
2054         cnid_close(volume->v_cdb);
2055         volume->v_cdb = NULL;
2056     }
2057     *rbuflen = 0;
2058     return ret;
2059 }
2060
2061 /* ------------------------- */
2062 static void closevol(struct vol *vol)
2063 {
2064     if (!vol)
2065         return;
2066
2067     dir_free( vol->v_root );
2068     vol->v_root = NULL;
2069     if (vol->v_cdb != NULL) {
2070         cnid_close(vol->v_cdb);
2071         vol->v_cdb = NULL;
2072     }
2073
2074     if (vol->v_postexec) {
2075         afprun(0, vol->v_postexec, NULL);
2076     }
2077     if (vol->v_root_postexec) {
2078         afprun(1, vol->v_root_postexec, NULL);
2079     }
2080 }
2081
2082 /* ------------------------- */
2083 void close_all_vol(void)
2084 {
2085     struct vol  *ovol;
2086     curdir = NULL;
2087     for ( ovol = Volumes; ovol; ovol = ovol->v_next ) {
2088         if ( (ovol->v_flags & AFPVOL_OPEN) ) {
2089             ovol->v_flags &= ~AFPVOL_OPEN;
2090             closevol(ovol);
2091         }
2092     }
2093 }
2094
2095 /* ------------------------- */
2096 static void deletevol(struct vol *vol)
2097 {
2098     struct vol  *ovol;
2099
2100     vol->v_flags &= ~AFPVOL_OPEN;
2101     for ( ovol = Volumes; ovol; ovol = ovol->v_next ) {
2102         if ( (ovol->v_flags & AFPVOL_OPEN) ) {
2103             break;
2104         }
2105     }
2106     if ( ovol != NULL ) {
2107         /* Even if chdir fails, we can't say afp_closevol fails. */
2108         if ( chdir( ovol->v_path ) == 0 ) {
2109             curdir = ovol->v_root;
2110         }
2111     }
2112
2113     closevol(vol);
2114     if (vol->v_deleted) {
2115         showvol(vol->v_name);
2116         volume_free(vol);
2117         volume_unlink(vol);
2118         free(vol);
2119     }
2120 }
2121
2122 /* ------------------------- */
2123 int afp_closevol(AFPObj *obj _U_, char *ibuf, size_t ibuflen _U_, char *rbuf _U_, size_t *rbuflen)
2124 {
2125     struct vol  *vol;
2126     uint16_t   vid;
2127
2128     *rbuflen = 0;
2129     ibuf += 2;
2130     memcpy(&vid, ibuf, sizeof( vid ));
2131     if (NULL == ( vol = getvolbyvid( vid )) ) {
2132         return( AFPERR_PARAM );
2133     }
2134
2135     deletevol(vol);
2136     current_vol = NULL;
2137
2138     return( AFP_OK );
2139 }
2140
2141 /* ------------------------- */
2142 struct vol *getvolbyvid(const uint16_t vid )
2143 {
2144     struct vol  *vol;
2145
2146     for ( vol = Volumes; vol; vol = vol->v_next ) {
2147         if ( vid == vol->v_vid ) {
2148             break;
2149         }
2150     }
2151     if ( vol == NULL || ( vol->v_flags & AFPVOL_OPEN ) == 0 ) {
2152         return( NULL );
2153     }
2154
2155     current_vol = vol;
2156
2157     return( vol );
2158 }
2159
2160 /* --------------------------
2161    poll if a volume is changed by other processes.
2162    return
2163    0 no attention msg sent
2164    1 attention msg sent
2165    -1 error (socket closed)
2166
2167    Note: if attention return -1 no packet has been
2168    sent because the buffer is full, we don't care
2169    either there's no reader or there's a lot of
2170    traffic and another pollvoltime will follow
2171 */
2172 int  pollvoltime(AFPObj *obj)
2173
2174 {
2175     struct vol       *vol;
2176     struct timeval   tv;
2177     struct stat      st;
2178
2179     if (!(afp_version > 21 && obj->options.flags & OPTION_SERVERNOTIF))
2180         return 0;
2181
2182     if ( gettimeofday( &tv, NULL ) < 0 )
2183         return 0;
2184
2185     for ( vol = Volumes; vol; vol = vol->v_next ) {
2186         if ( (vol->v_flags & AFPVOL_OPEN)  && vol->v_mtime + 30 < tv.tv_sec) {
2187             if ( !stat( vol->v_path, &st ) && vol->v_mtime != st.st_mtime ) {
2188                 vol->v_mtime = st.st_mtime;
2189                 if (!obj->attention(obj->dsi, AFPATTN_NOTIFY | AFPATTN_VOLCHANGED))
2190                     return -1;
2191                 return 1;
2192             }
2193         }
2194     }
2195     return 0;
2196 }
2197
2198 /* ------------------------- */
2199 void setvoltime(AFPObj *obj, struct vol *vol)
2200 {
2201     struct timeval  tv;
2202
2203     if ( gettimeofday( &tv, NULL ) < 0 ) {
2204         LOG(log_error, logtype_afpd, "setvoltime(%s): gettimeofday: %s", vol->v_path, strerror(errno) );
2205         return;
2206     }
2207     if( utime( vol->v_path, NULL ) < 0 ) {
2208         /* write of time failed ... probably a read only filesys,
2209          * where no other users can interfere, so there's no issue here
2210          */
2211     }
2212
2213     /* a little granularity */
2214     if (vol->v_mtime < tv.tv_sec) {
2215         vol->v_mtime = tv.tv_sec;
2216         /* or finder doesn't update free space
2217          * AFP 3.2 and above clients seem to be ok without so many notification
2218          */
2219         if (afp_version < 32 && obj->options.flags & OPTION_SERVERNOTIF) {
2220             obj->attention(obj->dsi, AFPATTN_NOTIFY | AFPATTN_VOLCHANGED);
2221         }
2222     }
2223 }
2224
2225 /* ------------------------- */
2226 int afp_getvolparams(AFPObj *obj _U_, char *ibuf, size_t ibuflen _U_,char *rbuf, size_t *rbuflen)
2227 {
2228     struct vol  *vol;
2229     uint16_t   vid, bitmap;
2230
2231     ibuf += 2;
2232     memcpy(&vid, ibuf, sizeof( vid ));
2233     ibuf += sizeof( vid );
2234     memcpy(&bitmap, ibuf, sizeof( bitmap ));
2235     bitmap = ntohs( bitmap );
2236
2237     if (NULL == ( vol = getvolbyvid( vid )) ) {
2238         *rbuflen = 0;
2239         return( AFPERR_PARAM );
2240     }
2241
2242     return stat_vol(bitmap, vol, rbuf, rbuflen);
2243 }
2244
2245 /* ------------------------- */
2246 int afp_setvolparams(AFPObj *obj _U_, char *ibuf, size_t ibuflen _U_, char *rbuf _U_,  size_t *rbuflen)
2247 {
2248     struct adouble ad;
2249     struct vol  *vol;
2250     uint16_t   vid, bitmap;
2251     uint32_t   aint;
2252
2253     ibuf += 2;
2254     *rbuflen = 0;
2255
2256     memcpy(&vid, ibuf, sizeof( vid ));
2257     ibuf += sizeof( vid );
2258     memcpy(&bitmap, ibuf, sizeof( bitmap ));
2259     bitmap = ntohs( bitmap );
2260     ibuf += sizeof(bitmap);
2261
2262     if (( vol = getvolbyvid( vid )) == NULL ) {
2263         return( AFPERR_PARAM );
2264     }
2265
2266     if ((vol->v_flags & AFPVOL_RO))
2267         return AFPERR_VLOCK;
2268
2269     /* we can only set the backup date. */
2270     if (bitmap != (1 << VOLPBIT_BDATE))
2271         return AFPERR_BITMAP;
2272
2273     ad_init(&ad, vol);
2274     if ( ad_open(&ad,  vol->v_path, ADFLAGS_HF | ADFLAGS_DIR | ADFLAGS_RDWR) < 0 ) {
2275         if (errno == EROFS)
2276             return AFPERR_VLOCK;
2277
2278         return AFPERR_ACCESS;
2279     }
2280
2281     memcpy(&aint, ibuf, sizeof(aint));
2282     ad_setdate(&ad, AD_DATE_BACKUP, aint);
2283     ad_flush(&ad);
2284     ad_close(&ad, ADFLAGS_HF);
2285     return( AFP_OK );
2286 }
2287
2288 /*
2289  * precreate a folder
2290  * this is only intended for folders in the volume root
2291  * It will *not* work if the folder name contains extended characters
2292  */
2293 static int create_special_folder (const struct vol *vol, const struct _special_folder *folder)
2294 {
2295     char        *p,*q,*r;
2296     struct adouble  ad;
2297     uint16_t   attr;
2298     struct stat st;
2299     int     ret;
2300
2301
2302     p = (char *) malloc ( strlen(vol->v_path)+strlen(folder->name)+2);
2303     if ( p == NULL) {
2304         LOG(log_error, logtype_afpd,"malloc failed");
2305         exit (EXITERR_SYS);
2306     }
2307
2308     q=strdup(folder->name);
2309     if ( q == NULL) {
2310         LOG(log_error, logtype_afpd,"malloc failed");
2311         exit (EXITERR_SYS);
2312     }
2313
2314     strcpy(p, vol->v_path);
2315     strcat(p, "/");
2316
2317     r=q;
2318     while (*r) {
2319         if ((vol->v_casefold & AFPVOL_MTOUUPPER))
2320             *r=toupper(*r);
2321         else if ((vol->v_casefold & AFPVOL_MTOULOWER))
2322             *r=tolower(*r);
2323         r++;
2324     }
2325     strcat(p, q);
2326
2327     if ( (ret = stat( p, &st )) < 0 ) {
2328         if (folder->precreate) {
2329             if (ad_mkdir(p, folder->mode)) {
2330                 LOG(log_debug, logtype_afpd,"Creating '%s' failed in %s: %s", p, vol->v_path, strerror(errno));
2331                 free(p);
2332                 free(q);
2333                 return -1;
2334             }
2335             ret = 0;
2336         }
2337     }
2338
2339     if ( !ret && folder->hide) {
2340         /* Hide it */
2341         ad_init(&ad, vol);
2342         if (ad_open(&ad, p, ADFLAGS_HF | ADFLAGS_DIR | ADFLAGS_RDWR | ADFLAGS_CREATE, 0666) != 0) {
2343             free(p);
2344             free(q);
2345             return (-1);
2346         }
2347
2348         ad_setname(&ad, folder->name);
2349
2350         ad_getattr(&ad, &attr);
2351         attr |= htons( ntohs( attr ) | ATTRBIT_INVISIBLE );
2352         ad_setattr(&ad, attr);
2353
2354         /* do the same with the finder info */
2355         if (ad_entry(&ad, ADEID_FINDERI)) {
2356             memcpy(&attr, ad_entry(&ad, ADEID_FINDERI) + FINDERINFO_FRFLAGOFF, sizeof(attr));
2357             attr   |= htons(FINDERINFO_INVISIBLE);
2358             memcpy(ad_entry(&ad, ADEID_FINDERI) + FINDERINFO_FRFLAGOFF,&attr, sizeof(attr));
2359         }
2360
2361         ad_flush(&ad);
2362         ad_close(&ad, ADFLAGS_HF);
2363     }
2364     free(p);
2365     free(q);
2366     return 0;
2367 }
2368
2369 static void handle_special_folders (const struct vol * vol)
2370 {
2371     const _special_folder *p = &special_folders[0];
2372     uid_t process_uid;
2373
2374     process_uid = geteuid();
2375     if (process_uid) {
2376         if (seteuid(0) == -1) {
2377             process_uid = 0;
2378         }
2379     }
2380
2381     for (; p->name != NULL; p++) {
2382         create_special_folder (vol, p);
2383     }
2384
2385     if (process_uid) {
2386         if (seteuid(process_uid) == -1) {
2387             LOG(log_error, logtype_logger, "can't seteuid back %s", strerror(errno));
2388             exit(EXITERR_SYS);
2389         }
2390     }
2391 }
2392
2393 const struct vol *getvolumes(void)
2394 {
2395     return Volumes;
2396 }
2397
2398 void unload_volumes(void)
2399 {
2400     LOG(log_debug, logtype_afpd, "unload_volumes_and_extmap");
2401     free_volumes();
2402 }
2403
2404 /* 
2405  * Get a volumes UUID from the config file.
2406  * If there is none, it is generated and stored there.
2407  *
2408  * Returns pointer to allocated storage on success, NULL on error.
2409  */
2410 static char *get_vol_uuid(const AFPObj *obj, const char *volname)
2411 {
2412     char *volname_conf;
2413     char buf[1024], uuid[UUID_PRINTABLE_STRING_LENGTH], *p;
2414     FILE *fp;
2415     struct stat tmpstat;
2416     int fd;
2417     
2418     if ((fp = fopen(obj->options.uuidconf, "r")) != NULL) {  /* read open? */
2419         /* scan in the conf file */
2420         while (fgets(buf, sizeof(buf), fp) != NULL) { 
2421             p = buf;
2422             while (p && isblank(*p))
2423                 p++;
2424             if (!p || (*p == '#') || (*p == '\n'))
2425                 continue;                             /* invalid line */
2426             if (*p == '"') {
2427                 p++;
2428                 if ((volname_conf = strtok( p, "\"" )) == NULL)
2429                     continue;                         /* syntax error */
2430             } else {
2431                 if ((volname_conf = strtok( p, " \t" )) == NULL)
2432                     continue;                         /* syntax error: invalid name */
2433             }
2434             p = strchr(p, '\0');
2435             p++;
2436             if (*p == '\0')
2437                 continue;                             /* syntax error */
2438             
2439             if (strcmp(volname, volname_conf) != 0)
2440                 continue;                             /* another volume name */
2441                 
2442             while (p && isblank(*p))
2443                 p++;
2444
2445             if (sscanf(p, "%36s", uuid) == 1 ) {
2446                 for (int i=0; uuid[i]; i++)
2447                     uuid[i] = toupper(uuid[i]);
2448                 LOG(log_debug, logtype_afpd, "get_uuid('%s'): UUID: '%s'", volname, uuid);
2449                 fclose(fp);
2450                 return strdup(uuid);
2451             }
2452         }
2453     }
2454
2455     if (fp)
2456         fclose(fp);
2457
2458     /*  not found or no file, reopen in append mode */
2459
2460     if (stat(obj->options.uuidconf, &tmpstat)) {                /* no file */
2461         if (( fd = creat(obj->options.uuidconf, 0644 )) < 0 ) {
2462             LOG(log_error, logtype_afpd, "ERROR: Cannot create %s (%s).",
2463                 obj->options.uuidconf, strerror(errno));
2464             return NULL;
2465         }
2466         if (( fp = fdopen( fd, "w" )) == NULL ) {
2467             LOG(log_error, logtype_afpd, "ERROR: Cannot fdopen %s (%s).",
2468                 obj->options.uuidconf, strerror(errno));
2469             close(fd);
2470             return NULL;
2471         }
2472     } else if ((fp = fopen(obj->options.uuidconf, "a+")) == NULL) { /* not found */
2473         LOG(log_error, logtype_afpd, "Cannot create or append to %s (%s).",
2474             obj->options.uuidconf, strerror(errno));
2475         return NULL;
2476     }
2477     fseek(fp, 0L, SEEK_END);
2478     if(ftell(fp) == 0) {                     /* size = 0 */
2479         fprintf(fp, "# DON'T TOUCH NOR COPY THOUGHTLESSLY!\n");
2480         fprintf(fp, "# This file is auto-generated by afpd\n");
2481         fprintf(fp, "# and stores UUIDs for TM volumes.\n\n");
2482     } else {
2483         fseek(fp, -1L, SEEK_END);
2484         if(fgetc(fp) != '\n') fputc('\n', fp); /* last char is \n? */
2485     }                    
2486     
2487     /* generate uuid and write to file */
2488     atalk_uuid_t id;
2489     const char *cp;
2490     randombytes((void *)id, 16);
2491     cp = uuid_bin2string(id);
2492
2493     LOG(log_debug, logtype_afpd, "get_uuid('%s'): generated UUID '%s'", volname, cp);
2494
2495     fprintf(fp, "\"%s\"\t%36s\n", volname, cp);
2496     fclose(fp);
2497     
2498     return strdup(cp);
2499 }