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