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