]> arthur.barton.de Git - netatalk.git/blob - libatalk/util/netatalk_conf.c
fix: basedir regex symlink problem
[netatalk.git] / libatalk / util / netatalk_conf.c
1 /*
2   Copyright (c) 2012 Frank Lahm <franklahm@gmail.com>
3
4   This program is free software; you can redistribute it and/or modify
5   it under the terms of the GNU General Public License as published by
6   the Free Software Foundation; either version 2 of the License, or
7   (at your option) any later version.
8
9   This program is distributed in the hope that it will be useful,
10   but WITHOUT ANY WARRANTY; without even the implied warranty of
11   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12   GNU General Public License for more details.
13 */
14
15 #ifdef HAVE_CONFIG_H
16 #include "config.h"
17 #endif /* HAVE_CONFIG_H */
18
19 #include <stdio.h>
20 #include <stdlib.h>
21 #include <ctype.h>
22 #include <pwd.h>
23 #include <grp.h>
24 #include <utime.h>
25 #include <errno.h>
26 #include <string.h>
27 #include <sys/param.h>
28 #include <sys/socket.h>
29 #include <netinet/in.h>
30 #include <arpa/inet.h>
31 #include <inttypes.h>
32 #include <time.h>
33 #include <regex.h>
34 #if HAVE_LOCALE_H
35 #include <locale.h>
36 #endif
37 #if HAVE_LANGINFO_H
38 #include <langinfo.h>
39 #endif
40
41 #include <atalk/afp.h>
42 #include <atalk/util.h>
43 #include <atalk/logger.h>
44 #include <atalk/ea.h>
45 #include <atalk/globals.h>
46 #include <atalk/errchk.h>
47 #include <atalk/iniparser.h>
48 #include <atalk/unix.h>
49 #include <atalk/cnid.h>
50 #include <atalk/dsi.h>
51 #include <atalk/uuid.h>
52 #include <atalk/netatalk_conf.h>
53 #include <atalk/bstrlib.h>
54
55 #define VOLPASSLEN  8
56 #ifndef UUID_PRINTABLE_STRING_LENGTH
57 #define UUID_PRINTABLE_STRING_LENGTH 37
58 #endif
59
60 #define IS_VAR(a, b) (strncmp((a), (b), 2) == 0)
61
62 /**************************************************************
63  * Locals
64  **************************************************************/
65
66 static int have_uservol = 0; /* whether there's generic user home share in config ("~" or "~/path", but not "~user") */
67 static struct vol *Volumes = NULL;
68 static uint16_t    lastvid = 0;
69
70
71 /*
72  * Normalize volume path
73  */
74 static char *realpath_safe(const char *path)
75 {
76     char *resolved_path;
77
78 #ifdef REALPATH_TAKES_NULL
79     if ((resolved_path = realpath(path, NULL)) == NULL) {
80         LOG(log_error, logtype_afpd, "realpath() cannot resolve path \"%s\"", path);
81         return NULL;
82     }
83     return resolved_path;
84
85 #else
86 if ((resolved_path = malloc(MAXPATHLEN+1)) == NULL)
87         return NULL;
88     if (realpath(path, resolved_path) == NULL) {
89         free(resolved_path);
90         LOG(log_error, logtype_afpd, "realpath() cannot resolve path \"%s\"", path);
91         return NULL;
92     }
93     /* Safe some memory */
94     char *tmp;
95     if ((tmp = strdup(resolved_path)) == NULL) {
96         free(resolved_path);
97         return NULL;
98     }
99     free(resolved_path);
100     resolved_path = tmp;
101     return resolved_path;
102 #endif
103 }
104
105
106 /* 
107  * Get a volumes UUID from the config file.
108  * If there is none, it is generated and stored there.
109  *
110  * Returns pointer to allocated storage on success, NULL on error.
111  */
112 static char *get_vol_uuid(const AFPObj *obj, const char *volname)
113 {
114     char *volname_conf;
115     char buf[1024], uuid[UUID_PRINTABLE_STRING_LENGTH], *p;
116     FILE *fp;
117     struct stat tmpstat;
118     int fd;
119     
120     if ((fp = fopen(obj->options.uuidconf, "r")) != NULL) {  /* read open? */
121         /* scan in the conf file */
122         while (fgets(buf, sizeof(buf), fp) != NULL) { 
123             p = buf;
124             while (p && isblank(*p))
125                 p++;
126             if (!p || (*p == '#') || (*p == '\n'))
127                 continue;                             /* invalid line */
128             if (*p == '"') {
129                 p++;
130                 if ((volname_conf = strtok( p, "\"" )) == NULL)
131                     continue;                         /* syntax error */
132             } else {
133                 if ((volname_conf = strtok( p, " \t" )) == NULL)
134                     continue;                         /* syntax error: invalid name */
135             }
136             p = strchr(p, '\0');
137             p++;
138             if (*p == '\0')
139                 continue;                             /* syntax error */
140             
141             if (strcmp(volname, volname_conf) != 0)
142                 continue;                             /* another volume name */
143                 
144             while (p && isblank(*p))
145                 p++;
146
147             if (sscanf(p, "%36s", uuid) == 1 ) {
148                 for (int i=0; uuid[i]; i++)
149                     uuid[i] = toupper(uuid[i]);
150                 LOG(log_debug, logtype_afpd, "get_uuid('%s'): UUID: '%s'", volname, uuid);
151                 fclose(fp);
152                 return strdup(uuid);
153             }
154         }
155     }
156
157     if (fp)
158         fclose(fp);
159
160     /*  not found or no file, reopen in append mode */
161
162     if (stat(obj->options.uuidconf, &tmpstat)) {                /* no file */
163         if (( fd = creat(obj->options.uuidconf, 0644 )) < 0 ) {
164             LOG(log_error, logtype_afpd, "ERROR: Cannot create %s (%s).",
165                 obj->options.uuidconf, strerror(errno));
166             return NULL;
167         }
168         if (( fp = fdopen( fd, "w" )) == NULL ) {
169             LOG(log_error, logtype_afpd, "ERROR: Cannot fdopen %s (%s).",
170                 obj->options.uuidconf, strerror(errno));
171             close(fd);
172             return NULL;
173         }
174     } else if ((fp = fopen(obj->options.uuidconf, "a+")) == NULL) { /* not found */
175         LOG(log_error, logtype_afpd, "Cannot create or append to %s (%s).",
176             obj->options.uuidconf, strerror(errno));
177         return NULL;
178     }
179     fseek(fp, 0L, SEEK_END);
180     if(ftell(fp) == 0) {                     /* size = 0 */
181         fprintf(fp, "# DON'T TOUCH NOR COPY THOUGHTLESSLY!\n");
182         fprintf(fp, "# This file is auto-generated by afpd\n");
183         fprintf(fp, "# and stores UUIDs for Time Machine volumes.\n\n");
184     } else {
185         fseek(fp, -1L, SEEK_END);
186         if(fgetc(fp) != '\n') fputc('\n', fp); /* last char is \n? */
187     }                    
188     
189     /* generate uuid and write to file */
190     atalk_uuid_t id;
191     const char *cp;
192     randombytes((void *)id, 16);
193     cp = uuid_bin2string(id);
194
195     LOG(log_debug, logtype_afpd, "get_uuid('%s'): generated UUID '%s'", volname, cp);
196
197     fprintf(fp, "\"%s\"\t%36s\n", volname, cp);
198     fclose(fp);
199     
200     return strdup(cp);
201 }
202
203 /*
204   Check if the underlying filesystem supports EAs.
205   If not, switch to ea:ad.
206   As we can't check (requires write access) on ro-volumes, we switch ea:auto
207   volumes that are options:ro to ea:none.
208 */
209 #define EABUFSZ 4
210 static int do_check_ea_support(const struct vol *vol)
211 {
212     int haseas;
213     const char *eaname = "org.netatalk.has-Extended-Attributes";
214     const char *eacontent = "yes";
215     char buf[EABUFSZ];
216
217     if (sys_lgetxattr(vol->v_path, eaname, buf, EABUFSZ) != -1)
218         return 1;
219
220     if (vol->v_flags & AFPVOL_RO) {
221         LOG(log_debug, logtype_afpd, "read-only volume '%s', can't test for EA support, assuming yes", vol->v_localname);
222         return 1;
223     }
224
225     become_root();
226
227     if ((sys_setxattr(vol->v_path, eaname, eacontent, strlen(eacontent) + 1, 0)) == 0) {
228         haseas = 1;
229     } else {
230         LOG(log_warning, logtype_afpd, "volume \"%s\" does not support Extended Attributes or read-only volume",
231             vol->v_localname);
232         haseas = 0;
233     }
234
235     unbecome_root();
236
237     return haseas;
238 }
239
240 static void check_ea_support(struct vol *vol)
241 {
242     int haseas;
243
244     haseas = do_check_ea_support(vol);
245
246     if (vol->v_vfs_ea == AFPVOL_EA_AUTO) {
247         if (haseas)
248             vol->v_vfs_ea = AFPVOL_EA_SYS;
249         else
250             vol->v_vfs_ea = AFPVOL_EA_NONE;
251     }
252
253     if (vol->v_adouble == AD_VERSION_EA) {
254         if (!haseas)
255             vol->v_adouble = AD_VERSION2;
256     }
257 }
258
259 /*!
260  * Check whether a volume supports ACLs
261  *
262  * @param vol  (r) volume
263  *
264  * @returns        0 if not, 1 if yes
265  */
266 static int check_vol_acl_support(const struct vol *vol)
267 {
268     int ret = 0;
269
270 #ifdef HAVE_SOLARIS_ACLS
271     ace_t *aces = NULL;
272     ret = 1;
273     if (get_nfsv4_acl(vol->v_path, &aces) == -1)
274         ret = 0;
275 #endif
276 #ifdef HAVE_POSIX_ACLS
277     acl_t acl = NULL;
278     ret = 1;
279     if ((acl = acl_get_file(vol->v_path, ACL_TYPE_ACCESS)) == NULL)
280         ret = 0;
281 #endif
282
283 #ifdef HAVE_SOLARIS_ACLS
284     if (aces) free(aces);
285 #endif
286 #ifdef HAVE_POSIX_ACLS
287     if (acl) acl_free(acl);
288 #endif /* HAVE_POSIX_ACLS */
289
290     LOG(log_debug, logtype_afpd, "Volume \"%s\" ACL support: %s",
291         vol->v_path, ret ? "yes" : "no");
292     return ret;
293 }
294
295 /*
296  * Handle variable substitutions. here's what we understand:
297  * $b   -> basename of path
298  * $c   -> client ip/appletalk address
299  * $d   -> volume pathname on server
300  * $f   -> full name (whatever's in the gecos field)
301  * $g   -> group
302  * $h   -> hostname
303  * $i   -> client ip/appletalk address without port
304  * $s   -> server name (hostname if it doesn't exist)
305  * $u   -> username (guest is usually nobody)
306  * $v   -> volume name or basename if null
307  * $$   -> $
308  *
309  * This get's called from readvolfile with
310  * path = NULL, volname = NULL for xlating the volumes path
311  * path = path, volname = NULL for xlating the volumes name
312  * ... and from volumes options parsing code when xlating eg dbpath with
313  * path = path, volname = volname
314  *
315  * Using this information we can reject xlation of any variable depeninding on a login
316  * context which is not given in the afp master, where we must evaluate this whole stuff
317  * too for the Zeroconf announcements.
318  */
319 static char *volxlate(const AFPObj *obj,
320                       char *dest,
321                       size_t destlen,
322                       const char *src,
323                       const struct passwd *pwd,
324                       const char *path,
325                       const char *volname)
326 {
327     char *p, *r;
328     const char *q;
329     int len;
330     char *ret;
331     int xlatevolname = 0;
332
333     if (path && !volname)
334         /* cf above */
335         xlatevolname = 1;
336
337     if (!src) {
338         return NULL;
339     }
340     if (!dest) {
341         dest = calloc(destlen +1, 1);
342     }
343     ret = dest;
344     if (!ret) {
345         return NULL;
346     }
347     strlcpy(dest, src, destlen +1);
348     if ((p = strchr(src, '$')) == NULL) /* nothing to do */
349         return ret;
350
351     /* first part of the path. just forward to the next variable. */
352     len = MIN((size_t)(p - src), destlen);
353     if (len > 0) {
354         destlen -= len;
355         dest += len;
356     }
357
358     while (p && destlen > 0) {
359         /* now figure out what the variable is */
360         q = NULL;
361         if (IS_VAR(p, "$b")) {
362             if (path) {
363                 if ((q = strrchr(path, '/')) == NULL)
364                     q = path;
365                 else if (*(q + 1) != '\0')
366                     q++;
367             }
368         } else if (IS_VAR(p, "$c")) {
369             if (IS_AFP_SESSION(obj)) {
370                 DSI *dsi = obj->dsi;
371                 len = sprintf(dest, "%s:%u",
372                               getip_string((struct sockaddr *)&dsi->client),
373                               getip_port((struct sockaddr *)&dsi->client));
374                 dest += len;
375                 destlen -= len;
376             }
377         } else if (IS_VAR(p, "$d")) {
378             q = path;
379         } else if (pwd && IS_VAR(p, "$f")) {
380             if ((r = strchr(pwd->pw_gecos, ',')))
381                 *r = '\0';
382             q = pwd->pw_gecos;
383         } else if (pwd && IS_VAR(p, "$g")) {
384             struct group *grp = getgrgid(pwd->pw_gid);
385             if (grp)
386                 q = grp->gr_name;
387         } else if (IS_VAR(p, "$h")) {
388             q = obj->options.hostname;
389         } else if (IS_VAR(p, "$i")) {
390             DSI *dsi = obj->dsi;
391             q = getip_string((struct sockaddr *)&dsi->client);
392         } else if (IS_VAR(p, "$s")) {
393             q = obj->options.hostname;
394         } else if (obj->username[0] && IS_VAR(p, "$u")) {
395             char* sep = NULL;
396             if ( obj->options.ntseparator && (sep = strchr(obj->username, obj->options.ntseparator[0])) != NULL)
397                 q = sep+1;
398             else
399                 q = obj->username;
400         } else if (IS_VAR(p, "$v")) {
401             if (volname) {
402                 q = volname;
403             }
404             else if (path) {
405                 if ((q = strrchr(path, '/')) == NULL)
406                     q = path;
407                 else if (*(q + 1) != '\0')
408                     q++;
409             }
410         } else if (IS_VAR(p, "$$")) {
411             q = "$";
412         } else
413             q = p;
414
415         /* copy the stuff over. if we don't understand something that we
416          * should, just skip it over. */
417         if (q) {
418             len = MIN(p == q ? 2 : strlen(q), destlen);
419             strncpy(dest, q, len);
420             dest += len;
421             destlen -= len;
422         }
423
424         /* stuff up to next $ */
425         src = p + 2;
426         p = strchr(src, '$');
427         len = p ? MIN((size_t)(p - src), destlen) : destlen;
428         if (len > 0) {
429             strncpy(dest, src, len);
430             dest += len;
431             destlen -= len;
432         }
433     }
434     return ret;
435 }
436
437 /*!
438  * check access list
439  *
440  * this function wants something of the following form:
441  * "@group,name,name2,@group2,name3" or "@group name name2 @group2 name3"
442  * A NULL argument allows everybody to have access.
443  * We return three things:
444  *     -1: no list
445  *      0: list exists, but name isn't in it
446  *      1: in list
447  */
448 static int accessvol(const AFPObj *obj, const char *args, const char *name)
449 {
450     char buf[MAXPATHLEN + 1], *p;
451     struct group *gr;
452
453     if (!args)
454         return -1;
455
456     strlcpy(buf, args, sizeof(buf));
457     if ((p = strtok(buf, ", ")) == NULL) /* nothing, return okay */
458         return -1;
459
460     while (p) {
461         if (*p == '@') { /* it's a group */
462             if ((gr = getgrnam(p + 1)) && gmem(gr->gr_gid, obj->ngroups, obj->groups))
463                 return 1;
464         } else if (strcasecmp(p, name) == 0) /* it's a user name */
465             return 1;
466         p = strtok(NULL, ", ");
467     }
468
469     return 0;
470 }
471
472 static int hostaccessvol(const AFPObj *obj, const char *volname, const char *args)
473 {
474     int mask_int;
475     char buf[MAXPATHLEN + 1], *p, *b;
476     struct sockaddr_storage client;
477     const DSI *dsi = obj->dsi;
478
479     if (!args || !dsi)
480         return -1;
481
482     strlcpy(buf, args, sizeof(buf));
483     if ((p = strtok_r(buf, ", ", &b)) == NULL) /* nothing, return okay */
484         return -1;
485
486     while (p) {
487         int ret;
488         char *ipaddr, *mask_char;
489         struct addrinfo hints, *ai;
490
491         ipaddr = strtok(p, "/");
492         mask_char = strtok(NULL,"/");
493
494         /* Get address from string with getaddrinfo */
495         memset(&hints, 0, sizeof hints);
496         hints.ai_family = AF_UNSPEC;
497         hints.ai_socktype = SOCK_STREAM;
498         if ((ret = getaddrinfo(ipaddr, NULL, &hints, &ai)) != 0) {
499             LOG(log_error, logtype_afpd, "hostaccessvol: getaddrinfo: %s\n", gai_strerror(ret));
500             continue;
501         }
502
503         /* netmask */
504         if (mask_char != NULL)
505             mask_int = atoi(mask_char); /* apply_ip_mask does range checking on it */
506         else {
507             if (ai->ai_family == AF_INET) /* IPv4 */
508                 mask_int = 32;
509             else                          /* IPv6 */
510                 mask_int = 128;
511         }
512
513         /* Apply mask to addresses */
514         client = dsi->client;
515         apply_ip_mask((struct sockaddr *)&client, mask_int);
516         apply_ip_mask(ai->ai_addr, mask_int);
517
518         if (compare_ip((struct sockaddr *)&client, ai->ai_addr) == 0) {
519             freeaddrinfo(ai);
520             return 1;
521         }
522
523         /* next address */
524         freeaddrinfo(ai);
525         p = strtok_r(NULL, ", ", &b);
526     }
527
528     return 0;
529 }
530
531 /*!
532  * Get option string from config, use default value if not set
533  *
534  * @param conf    (r) config handle
535  * @param vol     (r) volume name (must be section name ie wo vars expanded)
536  * @param opt     (r) option
537  * @param defsec  (r) if "option" is not found in "vol", try to find it in section "defsec"
538  * @param defval  (r) if neither "vol" nor "defsec" contain "opt" return "defval"
539  *
540  * @returns       const option string from "vol" or "defsec", or "defval" if not found
541  */
542 static const char *getoption(const dictionary *conf, const char *vol, const char *opt, const char *defsec, const char *defval)
543 {
544     EC_INIT;
545     const char *result;
546
547     if ((!(result = iniparser_getstring(conf, vol, opt, NULL))) && (defsec != NULL))
548         result = iniparser_getstring(conf, defsec, opt, NULL);
549     
550 EC_CLEANUP:
551     if (result == NULL)
552         result = defval;
553     return result;
554 }
555
556 /*!
557  * Get boolean option from config, use default value if not set
558  *
559  * @param conf    (r) config handle
560  * @param vol     (r) volume name (must be section name ie wo vars expanded)
561  * @param opt     (r) option
562  * @param defsec  (r) if "option" is not found in "vol", try to find it in section "defsec"
563  * @param defval  (r) if neither "vol" nor "defsec" contain "opt" return "defval"
564  *
565  * @returns       const option string from "vol" or "defsec", or "defval" if not found
566  */
567 static int getoption_bool(const dictionary *conf, const char *vol, const char *opt, const char *defsec, int defval)
568 {
569     EC_INIT;
570     int result;
571
572     if (((result = iniparser_getboolean(conf, vol, opt, -1)) == -1) && (defsec != NULL))
573         result = iniparser_getboolean(conf, defsec, opt, -1);
574     
575 EC_CLEANUP:
576     if (result == -1)
577         result = defval;
578     return result;
579 }
580
581 /*!
582  * Create volume struct
583  *
584  * @param obj      (r) handle
585  * @param pwd      (r) struct passwd of logged in user, may be NULL in master afpd
586  * @param section  (r) volume name wo variables expanded (exactly as in iniconfig)
587  * @param name     (r) volume name
588  * @param path     (r) volume path
589  * @param preset   (r) default preset, may be NULL
590  * @returns            vol on success, NULL on error
591  */
592 static struct vol *creatvol(AFPObj *obj,
593                             const struct passwd *pwd,
594                             const char *section,
595                             const char *name,
596                             const char *path,
597                             const char *preset)
598 {
599     EC_INIT;
600     struct vol  *volume = NULL;
601     int         i, suffixlen, vlen, tmpvlen, u8mvlen, macvlen;
602     char        *tmpname;
603     ucs2_t      u8mtmpname[(AFPVOL_U8MNAMELEN+1)*2], mactmpname[(AFPVOL_MACNAMELEN+1)*2];
604     char        suffix[6]; /* max is #FFFF */
605     uint16_t    flags;
606     const char  *val;
607     char        *p, *q;
608
609     LOG(log_debug, logtype_afpd, "createvol(volume: '%s', path: \"%s\", preset: '%s'): BEGIN",
610         name, path, preset ? preset : "-");
611
612     if ( name == NULL || *name == '\0' ) {
613         if ((name = strrchr( path, '/' )) == NULL) {
614             EC_FAIL;
615         }
616
617         /* if you wish to share /, you need to specify a name. */
618         if (*++name == '\0')
619             EC_FAIL;
620     }
621
622     /* Once volumes are loaded, we never change options again, we just delete em when they're removed from afp.conf */
623     for (struct vol *vol = Volumes; vol; vol = vol->v_next) {
624         if (STRCMP(path, ==, vol->v_path)) {
625             LOG(log_debug, logtype_afpd, "createvol('%s'): already loaded", name);
626             vol->v_deleted = 0;
627             volume = vol;
628             goto EC_CLEANUP;
629         }
630     }
631
632     /*
633      * Check allow/deny lists:
634      * allow -> either no list (-1), or in list (1)
635      * deny -> either no list (-1), or not in list (0)
636      */
637     if (pwd) {
638         if (accessvol(obj, getoption(obj->iniconfig, section, "invalid users", preset, NULL), pwd->pw_name) == 1)
639             goto EC_CLEANUP;
640         if (accessvol(obj, getoption(obj->iniconfig, section, "valid users", preset, NULL), pwd->pw_name) == 0)
641             goto EC_CLEANUP;
642         if (hostaccessvol(obj, section, getoption(obj->iniconfig, section, "hosts deny", preset, NULL)) == 1)
643             goto EC_CLEANUP;
644         if (hostaccessvol(obj, section, getoption(obj->iniconfig, section, "hosts allow", preset, NULL)) == 0)
645             goto EC_CLEANUP;
646     }
647
648     EC_NULL( volume = calloc(1, sizeof(struct vol)) );
649
650     EC_NULL( volume->v_configname = strdup(section));
651
652     volume->v_vfs_ea = AFPVOL_EA_AUTO;
653     volume->v_umask = obj->options.umask;
654
655     if (val = getoption(obj->iniconfig, section, "password", preset, NULL))
656         EC_NULL( volume->v_password = strdup(val) );
657
658     if (val = getoption(obj->iniconfig, section, "veto files", preset, NULL))
659         EC_NULL( volume->v_veto = strdup(val) );
660
661     /* vol charset is in [G] and [V] */
662     if (val = getoption(obj->iniconfig, section, "vol charset", preset, NULL)) {
663         if (strcasecmp(val, "UTF-8") == 0) {
664             val = strdup("UTF8");
665         }
666         EC_NULL( volume->v_volcodepage = strdup(val) );
667     }
668     else
669         EC_NULL( volume->v_volcodepage = strdup(obj->options.volcodepage) );
670
671     /* mac charset is in [G] and [V] */
672     if (val = getoption(obj->iniconfig, section, "mac charset", preset, NULL)) {
673         if (strncasecmp(val, "MAC", 3) != 0) {
674             LOG(log_warning, logtype_afpd, "Is '%s' really mac charset? ", val);
675         }
676         EC_NULL( volume->v_maccodepage = strdup(val) );
677     }
678     else
679     EC_NULL( volume->v_maccodepage = strdup(obj->options.maccodepage) );
680
681     vlen = strlen(name);
682     tmpname = strdup(name);
683     for(i = 0; i < vlen; i++)
684         if(tmpname[i] == '/') tmpname[i] = ':';
685
686     bstring dbpath;
687     EC_NULL_LOG( val = iniparser_getstring(obj->iniconfig, INISEC_GLOBAL, "vol dbpath", _PATH_STATEDIR "CNID/") );
688     EC_NULL_LOG( dbpath = bformat("%s/%s/", val, tmpname) );
689     EC_NULL_LOG( volume->v_dbpath = strdup(bdata(dbpath)) );
690     bdestroy(dbpath);
691
692     if (val = getoption(obj->iniconfig, section, "cnid scheme", preset, NULL))
693         EC_NULL( volume->v_cnidscheme = strdup(val) );
694     else
695         volume->v_cnidscheme = strdup(DEFAULT_CNID_SCHEME);
696
697     if (val = getoption(obj->iniconfig, section, "umask", preset, NULL))
698         volume->v_umask = (int)strtol(val, NULL, 8);
699
700     if (val = getoption(obj->iniconfig, section, "directory perm", preset, NULL))
701         volume->v_dperm = (int)strtol(val, NULL, 8);
702
703     if (val = getoption(obj->iniconfig, section, "file perm", preset, NULL))
704         volume->v_fperm = (int)strtol(val, NULL, 8);
705
706     if (val = getoption(obj->iniconfig, section, "vol size limit", preset, NULL))
707         volume->v_limitsize = (uint32_t)strtoul(val, NULL, 10);
708
709     if (val = getoption(obj->iniconfig, section, "preexec", preset, NULL))
710         EC_NULL( volume->v_preexec = volxlate(obj, NULL, MAXPATHLEN, val, pwd, path, name) );
711
712     if (val = getoption(obj->iniconfig, section, "postexec", preset, NULL))
713         EC_NULL( volume->v_postexec = volxlate(obj, NULL, MAXPATHLEN, val, pwd, path, name) );
714
715     if (val = getoption(obj->iniconfig, section, "root preexec", preset, NULL))
716         EC_NULL( volume->v_root_preexec = volxlate(obj, NULL, MAXPATHLEN, val, pwd, path, name) );
717
718     if (val = getoption(obj->iniconfig, section, "root postexec", preset, NULL))
719         EC_NULL( volume->v_root_postexec = volxlate(obj, NULL, MAXPATHLEN, val, pwd, path, name) );
720
721     if (val = getoption(obj->iniconfig, section, "appledouble", preset, NULL)) {
722         if (strcmp(val, "v2") == 0)
723             volume->v_adouble = AD_VERSION2;
724         else if (strcmp(val, "ea") == 0)
725             volume->v_adouble = AD_VERSION_EA;
726     } else {
727         volume->v_adouble = AD_VERSION;
728     }
729
730     if (val = getoption(obj->iniconfig, section, "cnid server", preset, NULL)) {
731         EC_NULL( p = strdup(val) );
732         volume->v_cnidserver = p;
733         if (q = strrchr(val, ':')) {
734             *q++ = 0;
735             volume->v_cnidport = strdup(q);
736         } else {
737             volume->v_cnidport = strdup("4700");
738         }
739
740     } else {
741         volume->v_cnidserver = strdup(obj->options.Cnid_srv);
742         volume->v_cnidport = strdup(obj->options.Cnid_port);
743     }
744
745     if (val = getoption(obj->iniconfig, section, "ea", preset, NULL)) {
746         if (strcasecmp(val, "ad") == 0)
747             volume->v_vfs_ea = AFPVOL_EA_AD;
748         else if (strcasecmp(val, "sys") == 0)
749             volume->v_vfs_ea = AFPVOL_EA_SYS;
750         else if (strcasecmp(val, "none") == 0)
751             volume->v_vfs_ea = AFPVOL_EA_NONE;
752     }
753
754     if (val = getoption(obj->iniconfig, section, "casefold", preset, NULL)) {
755         if (strcasecmp(val, "tolower") == 0)
756             volume->v_casefold = AFPVOL_UMLOWER;
757         else if (strcasecmp(val, "toupper") == 0)
758             volume->v_casefold = AFPVOL_UMUPPER;
759         else if (strcasecmp(val, "xlatelower") == 0)
760             volume->v_casefold = AFPVOL_UUPPERMLOWER;
761         else if (strcasecmp(val, "xlateupper") == 0)
762             volume->v_casefold = AFPVOL_ULOWERMUPPER;
763     }
764
765     if (getoption_bool(obj->iniconfig, section, "read only", preset, 0))
766         volume->v_flags |= AFPVOL_RO;
767     if (getoption_bool(obj->iniconfig, section, "invisible dots", preset, 0))
768         volume->v_flags |= AFPVOL_INV_DOTS;
769     if (!getoption_bool(obj->iniconfig, section, "stat vol", preset, 1))
770         volume->v_flags |= AFPVOL_NOSTAT;
771     if (getoption_bool(obj->iniconfig, section, "unix priv", preset, 1))
772         volume->v_flags |= AFPVOL_UNIX_PRIV;
773     if (!getoption_bool(obj->iniconfig, section, "cnid dev", preset, 1))
774         volume->v_flags |= AFPVOL_NODEV;
775     if (getoption_bool(obj->iniconfig, section, "illegal seq", preset, 0))
776         volume->v_flags |= AFPVOL_EILSEQ;
777     if (getoption_bool(obj->iniconfig, section, "time machine", preset, 0))
778         volume->v_flags |= AFPVOL_TM;
779     if (getoption_bool(obj->iniconfig, section, "search db", preset, 0))
780         volume->v_flags |= AFPVOL_SEARCHDB;
781     if (!getoption_bool(obj->iniconfig, section, "network ids", preset, 1))
782         volume->v_flags |= AFPVOL_NONETIDS;
783 #ifdef HAVE_ACLS
784     if (getoption_bool(obj->iniconfig, section, "acls", preset, 1))
785         volume->v_flags |= AFPVOL_ACLS;
786 #endif
787     if (!getoption_bool(obj->iniconfig, section, "convert appledouble", preset, 1))
788         volume->v_flags |= AFPVOL_NOV2TOEACONV;
789
790     if (getoption_bool(obj->iniconfig, section, "preexec close", preset, 0))
791         volume->v_preexec_close = 1;
792     if (getoption_bool(obj->iniconfig, section, "root preexec close", preset, 0))
793         volume->v_root_preexec_close = 1;
794
795     /*
796      * Handle read-only behaviour. semantics:
797      * 1) neither the rolist nor the rwlist exist -> rw
798      * 2) rolist exists -> ro if user is in it.
799      * 3) rwlist exists -> ro unless user is in it.
800      * 4) cnid scheme = last -> ro forcibly.
801      */
802     if (pwd) {
803         if (accessvol(obj, getoption(obj->iniconfig, section, "rolist", preset, NULL), pwd->pw_name) == 1
804             || accessvol(obj, getoption(obj->iniconfig, section, "rwlist", preset, NULL), pwd->pw_name) == 0)
805             volume->v_flags |= AFPVOL_RO;
806     }
807     if (0 == strcmp(volume->v_cnidscheme, "last"))
808         volume->v_flags |= AFPVOL_RO;
809
810     if ((volume->v_flags & AFPVOL_NODEV))
811         volume->v_ad_options |= ADVOL_NODEV;
812     if ((volume->v_flags & AFPVOL_UNIX_PRIV))
813         volume->v_ad_options |= ADVOL_UNIXPRIV;
814     if ((volume->v_flags & AFPVOL_INV_DOTS))
815         volume->v_ad_options |= ADVOL_INVDOTS;
816
817     /* Mac to Unix conversion flags*/
818     if ((volume->v_flags & AFPVOL_EILSEQ))
819         volume->v_mtou_flags |= CONV__EILSEQ;
820
821     if ((volume->v_casefold & AFPVOL_MTOUUPPER))
822         volume->v_mtou_flags |= CONV_TOUPPER;
823     else if ((volume->v_casefold & AFPVOL_MTOULOWER))
824         volume->v_mtou_flags |= CONV_TOLOWER;
825
826     /* Unix to Mac conversion flags*/
827     volume->v_utom_flags = CONV_IGNORE;
828     if ((volume->v_casefold & AFPVOL_UTOMUPPER))
829         volume->v_utom_flags |= CONV_TOUPPER;
830     else if ((volume->v_casefold & AFPVOL_UTOMLOWER))
831         volume->v_utom_flags |= CONV_TOLOWER;
832     if ((volume->v_flags & AFPVOL_EILSEQ))
833         volume->v_utom_flags |= CONV__EILSEQ;
834
835     /* suffix for mangling use (lastvid + 1)   */
836     /* because v_vid has not been decided yet. */
837     suffixlen = sprintf(suffix, "#%X", lastvid + 1 );
838
839     /* Unicode Volume Name */
840     /* Firstly convert name from unixcharset to UTF8-MAC */
841     flags = CONV_IGNORE | CONV_ALLOW_SLASH;
842     tmpvlen = convert_charset(obj->options.unixcharset, CH_UTF8_MAC, 0, name, vlen, tmpname, AFPVOL_U8MNAMELEN, &flags);
843     if (tmpvlen <= 0) {
844         strcpy(tmpname, "???");
845         tmpvlen = 3;
846     }
847
848     /* Do we have to mangle ? */
849     if ( (flags & CONV_REQMANGLE) || (tmpvlen > obj->options.volnamelen)) {
850         if (tmpvlen + suffixlen > obj->options.volnamelen) {
851             flags = CONV_FORCE | CONV_ALLOW_SLASH;
852             tmpvlen = convert_charset(obj->options.unixcharset, CH_UTF8_MAC, 0, name, vlen, tmpname, obj->options.volnamelen - suffixlen, &flags);
853             tmpname[tmpvlen >= 0 ? tmpvlen : 0] = 0;
854         }
855         strcat(tmpname, suffix);
856         tmpvlen = strlen(tmpname);
857     }
858
859     /* Secondly convert name from UTF8-MAC to UCS2 */
860     if ( 0 >= ( u8mvlen = convert_string(CH_UTF8_MAC, CH_UCS2, tmpname, tmpvlen, u8mtmpname, AFPVOL_U8MNAMELEN*2)) )
861         EC_FAIL;
862
863     LOG(log_maxdebug, logtype_afpd, "createvol: Volume '%s' -> UTF8-MAC Name: '%s'", name, tmpname);
864
865     /* Maccharset Volume Name */
866     /* Firsty convert name from unixcharset to maccharset */
867     flags = CONV_IGNORE | CONV_ALLOW_SLASH;
868     tmpvlen = convert_charset(obj->options.unixcharset, obj->options.maccharset, 0, name, vlen, tmpname, AFPVOL_U8MNAMELEN, &flags);
869     if (tmpvlen <= 0) {
870         strcpy(tmpname, "???");
871         tmpvlen = 3;
872     }
873
874     /* Do we have to mangle ? */
875     if ( (flags & CONV_REQMANGLE) || (tmpvlen > AFPVOL_MACNAMELEN)) {
876         if (tmpvlen + suffixlen > AFPVOL_MACNAMELEN) {
877             flags = CONV_FORCE | CONV_ALLOW_SLASH;
878             tmpvlen = convert_charset(obj->options.unixcharset,
879                                       obj->options.maccharset,
880                                       0,
881                                       name,
882                                       vlen,
883                                       tmpname,
884                                       AFPVOL_MACNAMELEN - suffixlen,
885                                       &flags);
886             tmpname[tmpvlen >= 0 ? tmpvlen : 0] = 0;
887         }
888         strcat(tmpname, suffix);
889         tmpvlen = strlen(tmpname);
890     }
891
892     /* Secondly convert name from maccharset to UCS2 */
893     if ( 0 >= ( macvlen = convert_string(obj->options.maccharset,
894                                          CH_UCS2,
895                                          tmpname,
896                                          tmpvlen,
897                                          mactmpname,
898                                          AFPVOL_U8MNAMELEN*2)) )
899         EC_FAIL;
900
901     LOG(log_maxdebug, logtype_afpd, "createvol: Volume '%s' ->  Longname: '%s'", name, tmpname);
902
903     EC_NULL( volume->v_localname = strdup(name) );
904     EC_NULL( volume->v_u8mname = strdup_w(u8mtmpname) );
905     EC_NULL( volume->v_macname = strdup_w(mactmpname) );
906     EC_NULL( volume->v_path = malloc(strlen(path) + 1) );
907
908     volume->v_name = utf8_encoding(obj) ? volume->v_u8mname : volume->v_macname;
909     strcpy(volume->v_path, path);
910
911 #ifdef __svr4__
912     volume->v_qfd = -1;
913 #endif /* __svr4__ */
914
915     /* os X start at 1 and use network order ie. 1 2 3 */
916     volume->v_vid = ++lastvid;
917     volume->v_vid = htons(volume->v_vid);
918
919 #ifdef HAVE_ACLS
920     if (!check_vol_acl_support(volume)) {
921         LOG(log_debug, logtype_afpd, "creatvol(\"%s\"): disabling ACL support", volume->v_path);
922         volume->v_flags &= ~AFPVOL_ACLS;
923     }
924 #endif
925
926     /* Check EA support on volume */
927     if (volume->v_vfs_ea == AFPVOL_EA_AUTO || volume->v_adouble == AD_VERSION_EA)
928         check_ea_support(volume);
929     initvol_vfs(volume);
930
931     /* get/store uuid from file in afpd master*/
932     if (!(pwd) && (volume->v_flags & AFPVOL_TM)) {
933         char *uuid = get_vol_uuid(obj, volume->v_localname);
934         if (!uuid) {
935             LOG(log_error, logtype_afpd, "Volume '%s': couldn't get UUID",
936                 volume->v_localname);
937         } else {
938             volume->v_uuid = uuid;
939             LOG(log_debug, logtype_afpd, "Volume '%s': UUID '%s'",
940                 volume->v_localname, volume->v_uuid);
941         }
942     }
943
944     /* no errors shall happen beyond this point because the cleanup would mess the volume chain up */
945     volume->v_next = Volumes;
946     Volumes = volume;
947     volume->v_obj = obj;
948
949 EC_CLEANUP:
950     LOG(log_debug, logtype_afpd, "createvol: END: %d", ret);
951     if (ret != 0) {
952         if (volume) {
953             volume_free(volume);
954             free(volume);
955         }
956         return NULL;
957     }
958     return volume;
959 }
960
961 /* ----------------------
962  */
963 static int volfile_changed(struct afp_options *p)
964 {
965     struct stat st;
966
967     if (!stat(p->configfile, &st) && st.st_mtime > p->volfile.mtime) {
968         p->volfile.mtime = st.st_mtime;
969         return 1;
970     }
971     return 0;
972 }
973
974 static int vol_section(const char *sec)
975 {
976     if (STRCMP(sec, ==, INISEC_GLOBAL))
977         return 0;
978     return 1;
979 }
980
981 #define MAXPRESETLEN 100
982 /*!
983  * Read volumes from iniconfig and add the volumes contained within to
984  * the global volume list. This gets called from the forked afpd childs.
985  * The master now reads this too for Zeroconf announcements.
986  */
987 static int readvolfile(AFPObj *obj, const struct passwd *pwent)
988 {
989     EC_INIT;
990     static int regexerr = -1;
991     static regex_t reg;
992     char        *realpw_dir;
993     char        *realvolpath;
994     char        volname[AFPVOL_U8MNAMELEN + 1];
995     char        tmp[MAXPATHLEN + 1], tmp2[MAXPATHLEN + 1];
996     const char  *preset, *default_preset, *p, *basedir;
997     char        *q, *u;
998     int         i;
999     struct passwd   *pw;
1000     regmatch_t match[1];
1001
1002     LOG(log_debug, logtype_afpd, "readvolfile: BEGIN");
1003
1004     int secnum = iniparser_getnsec(obj->iniconfig);    
1005     LOG(log_debug, logtype_afpd, "readvolfile: sections: %d", secnum);
1006     const char *secname;
1007
1008     if ((default_preset = iniparser_getstring(obj->iniconfig, INISEC_GLOBAL, "vol preset", NULL))) {
1009         LOG(log_debug, logtype_afpd, "readvolfile: default_preset: %s", default_preset);
1010     }
1011
1012     for (i = 0; i < secnum; i++) { 
1013         secname = iniparser_getsecname(obj->iniconfig, i);
1014
1015         if (!vol_section(secname))
1016             continue;
1017         if (STRCMP(secname, ==, INISEC_HOMES)) {
1018             have_uservol = 1;
1019             if (!IS_AFP_SESSION(obj)
1020                 || strcmp(obj->username, obj->options.guest) == 0)
1021                 /* not an AFP session, but cnid daemon, dbd or ad util, or guest login */
1022                 continue;
1023             if (pwent->pw_dir == NULL || STRCMP("", ==, pwent->pw_dir))
1024                 /* no user home */
1025                 continue;
1026             if ((realpw_dir = realpath_safe(pwent->pw_dir)) == NULL)
1027                 continue;
1028
1029             /* check if user home matches our "basedir regex" */
1030             if ((basedir = iniparser_getstring(obj->iniconfig, INISEC_HOMES, "basedir regex", NULL)) == NULL) {
1031                 LOG(log_error, logtype_afpd, "\"basedir regex =\" must be defined in [Homes] section");
1032                 continue;
1033             }
1034             LOG(log_debug, logtype_afpd, "readvolfile: basedir regex: '%s'", basedir);
1035
1036             if (regexerr != 0 && (regexerr = regcomp(&reg, basedir, REG_EXTENDED)) != 0) {
1037                 char errbuf[1024];
1038                 regerror(regexerr, &reg, errbuf, sizeof(errbuf));
1039                 LOG(log_debug, logtype_default, "readvolfile: bad basedir regex: %s", errbuf);
1040             }
1041
1042             if (regexec(&reg, realpw_dir, 1, match, 0) == REG_NOMATCH) {
1043                 LOG(log_debug, logtype_default, "readvolfile: user home \"%s\" doesn't match basedir regex \"%s\"",
1044                     realpw_dir, basedir);
1045                 continue;
1046             }
1047
1048             strlcpy(tmp, realpw_dir, MAXPATHLEN);
1049             strlcat(tmp, "/", MAXPATHLEN);
1050             if (p = iniparser_getstring(obj->iniconfig, INISEC_HOMES, "path", NULL))
1051                 strlcat(tmp, p, MAXPATHLEN);
1052         } else {
1053             /* Get path */
1054             if ((p = iniparser_getstring(obj->iniconfig, secname, "path", NULL)) == NULL)
1055                 continue;
1056             strlcpy(tmp, p, MAXPATHLEN);
1057         }
1058
1059         if (volxlate(obj, tmp2, sizeof(tmp2) - 1, tmp, pwent, NULL, NULL) == NULL)
1060             continue;
1061
1062         /* do variable substitution for volume name */
1063         if (STRCMP(secname, ==, INISEC_HOMES)) {
1064             p = iniparser_getstring(obj->iniconfig, INISEC_HOMES, "home name", "$u's home");
1065             if (strstr(p, "$u") == NULL) {
1066                 LOG(log_warning, logtype_afpd, "home name must contain $u.");
1067                 p = "$u's home";
1068             }
1069             if (strchr(p, ':') != NULL) {
1070                 LOG(log_warning, logtype_afpd, "home name must not contain \":\".");
1071                 p = "$u's home";
1072             }
1073             strlcpy(tmp, p, MAXPATHLEN);
1074         } else {
1075             strlcpy(tmp, secname, AFPVOL_U8MNAMELEN);
1076         }
1077         if (volxlate(obj, volname, sizeof(volname) - 1, tmp, pwent, tmp2, NULL) == NULL)
1078             continue;
1079
1080         preset = iniparser_getstring(obj->iniconfig, secname, "vol preset", NULL);
1081
1082         if ((realvolpath = realpath_safe(tmp2)) == NULL)
1083             continue;
1084
1085         creatvol(obj, pwent, secname, volname, realvolpath, preset ? preset : default_preset ? default_preset : NULL);
1086     }
1087
1088 EC_CLEANUP:
1089     EC_EXIT;
1090 }
1091
1092 /**************************************************************
1093  * API functions
1094  **************************************************************/
1095
1096 /*!
1097  * Remove a volume from the linked list of volumes
1098  */
1099 void volume_unlink(struct vol *volume)
1100 {
1101     struct vol *vol, *ovol, *nvol;
1102
1103     if (volume == Volumes) {
1104         Volumes = NULL;
1105         return;
1106     }
1107     for ( vol = Volumes->v_next, ovol = Volumes; vol; vol = nvol) {
1108         nvol = vol->v_next;
1109
1110         if (vol == volume) {
1111             ovol->v_next = nvol;
1112             break;
1113         }
1114         else {
1115             ovol = vol;
1116         }
1117     }
1118 }
1119
1120 /*!
1121  * Free all resources allocated in a struct vol, only struct dir *v_root can't be freed
1122  */
1123 void volume_free(struct vol *vol)
1124 {
1125     LOG(log_debug, logtype_afpd, "volume_free('%s'): BEGIN", vol->v_localname);
1126
1127     free(vol->v_localname);
1128     free(vol->v_u8mname);
1129     free(vol->v_macname);
1130     free(vol->v_path);
1131     free(vol->v_password);
1132     free(vol->v_veto);
1133     free(vol->v_volcodepage);
1134     free(vol->v_maccodepage);
1135     free(vol->v_cnidscheme);
1136     free(vol->v_dbpath);
1137     free(vol->v_gvs);
1138     free(vol->v_uuid);
1139     free(vol->v_cnidserver);
1140     free(vol->v_cnidport);
1141     free(vol->v_root_preexec);
1142     free(vol->v_postexec);
1143
1144     LOG(log_debug, logtype_afpd, "volume_free: END");
1145 }
1146
1147 /*!
1148  * Load charsets for a volume
1149  */
1150 int load_charset(struct vol *vol)
1151 {
1152     if ((vol->v_maccharset = add_charset(vol->v_maccodepage)) == (charset_t)-1) {
1153         LOG(log_error, logtype_default, "Setting mac charset '%s' failed", vol->v_maccodepage);
1154         return -1;
1155     }
1156
1157     if ((vol->v_volcharset = add_charset(vol->v_volcodepage)) == (charset_t)-1) {
1158         LOG(log_error, logtype_default, "Setting vol charset '%s' failed", vol->v_volcodepage);
1159         return -1;
1160     }
1161
1162     return 0;
1163 }
1164
1165 /*!
1166  * Initialize volumes and load ini configfile
1167  *
1168  * Depending on the value of obj->uid either access checks are done (!=0) or skipped (=0)
1169  *
1170  * @param obj       (r) handle
1171  * @param delvol_fn (r) callback called for deleted volumes
1172  */
1173 int load_volumes(AFPObj *obj, void (*delvol_fn)(const AFPObj *obj, struct vol *))
1174 {
1175     EC_INIT;
1176     int fd = -1;
1177     struct passwd   *pwent = NULL;
1178     struct stat         st;
1179     int retries = 0;
1180     struct vol *vol;
1181
1182     LOG(log_debug, logtype_afpd, "load_volumes: BEGIN");
1183
1184     if (Volumes) {
1185         if (!volfile_changed(&obj->options))
1186             goto EC_CLEANUP;
1187         have_uservol = 0;
1188         for (vol = Volumes; vol; vol = vol->v_next) {
1189             vol->v_deleted = 1;
1190         }
1191     } else {
1192         LOG(log_debug, logtype_afpd, "load_volumes: no volumes yet");
1193         EC_ZERO_LOG( lstat(obj->options.configfile, &st) );
1194         obj->options.volfile.mtime = st.st_mtime;
1195     }
1196
1197     /* try putting a read lock on the volume file twice, sleep 1 second if first attempt fails */
1198
1199     fd = open(obj->options.configfile, O_RDONLY);
1200
1201     while (retries < 2) {
1202         if ((read_lock(fd, 0, SEEK_SET, 0)) != 0) {
1203             retries++;
1204             if (!retries) {
1205                 LOG(log_error, logtype_afpd, "readvolfile: can't lock configfile \"%s\"",
1206                     obj->options.configfile);
1207                 EC_FAIL;
1208             }
1209             sleep(1);
1210             continue;
1211         }
1212         break;
1213     }
1214
1215     if (obj->uid)
1216         pwent = getpwuid(obj->uid);
1217
1218     if (obj->iniconfig)
1219         iniparser_freedict(obj->iniconfig);
1220     LOG(log_debug, logtype_afpd, "load_volumes: loading: %s", obj->options.configfile);
1221     obj->iniconfig = iniparser_load(obj->options.configfile);
1222
1223     EC_ZERO_LOG( readvolfile(obj, pwent) );
1224
1225     for ( vol = Volumes; vol; vol = vol->v_next ) {
1226         if (vol->v_deleted) {
1227             LOG(log_debug, logtype_afpd, "load_volumes: deleted: %s", vol->v_localname);
1228             if (delvol_fn)
1229                 delvol_fn(obj, vol);
1230             vol = Volumes;
1231         }
1232     }
1233
1234 EC_CLEANUP:
1235     if (fd != -1)
1236         (void)close(fd);
1237
1238     LOG(log_debug, logtype_afpd, "load_volumes: END");
1239     EC_EXIT;
1240 }
1241
1242 void unload_volumes(AFPObj *obj)
1243 {
1244     struct vol *vol;
1245
1246     LOG(log_debug, logtype_afpd, "unload_volumes: BEGIN");
1247
1248     for (vol = Volumes; vol; vol = vol->v_next)
1249         volume_free(vol);
1250     Volumes = NULL;
1251     obj->options.volfile.mtime = 0;
1252     
1253     LOG(log_debug, logtype_afpd, "unload_volumes: END");
1254 }
1255
1256 struct vol *getvolumes(void)
1257 {
1258     return Volumes;
1259 }
1260
1261 struct vol *getvolbyvid(const uint16_t vid )
1262 {
1263     struct vol  *vol;
1264
1265     for ( vol = Volumes; vol; vol = vol->v_next ) {
1266         if ( vid == vol->v_vid ) {
1267             break;
1268         }
1269     }
1270     if ( vol == NULL || ( vol->v_flags & AFPVOL_OPEN ) == 0 ) {
1271         return( NULL );
1272     }
1273
1274     return( vol );
1275 }
1276
1277 /*!
1278  * Search volume by path, creating user home vols as necessary
1279  *
1280  * Path may be absolute or relative. Ordinary volume structs are created when
1281  * the ini config is initially parsed (load_volumes()), but user volumes are
1282  * as load_volumes() only can create the user volume of the logged in user
1283  * in an AFP session in afpd, but not when called from eg cnid_metad or dbd.
1284  * Both cnid_metad and dbd thus need a way to lookup and create struct vols
1285  * for user home by path. This is what this func does as well.
1286  *
1287  * (1) Search "normal" volume list 
1288  * (2) Check if theres a [Homes] section, load_volumes() remembers this for us
1289  * (3) If there is, match "path" with "basedir regex" to get the user home parent dir
1290  * (4) Built user home path by appending the basedir matched in (3) and appending the username
1291  * (5) The next path element then is the username
1292  * (6) Append [Homes]->path subdirectory if defined
1293  * (7) Create volume
1294  *
1295  * @param obj  (rw) handle
1296  * @param path (r)  path, may be relative or absolute
1297  */
1298 struct vol *getvolbypath(AFPObj *obj, const char *path)
1299 {
1300     EC_INIT;
1301     static int regexerr = -1;
1302     static regex_t reg;
1303     struct vol *vol;
1304     struct vol *tmp;
1305     const struct passwd *pw;
1306     char        volname[AFPVOL_U8MNAMELEN + 1];
1307     char        abspath[MAXPATHLEN + 1];
1308     char        volpath[MAXPATHLEN + 1], *realvolpath;
1309     char        tmpbuf[MAXPATHLEN + 1];
1310     const char *secname, *basedir, *p = NULL, *subpath = NULL, *subpathconfig;
1311     char *user = NULL, *prw;
1312     regmatch_t match[1];
1313
1314     LOG(log_debug, logtype_afpd, "getvolbypath(\"%s\")", path);
1315
1316     if (path[0] != '/') {
1317         /* relative path, build absolute path */
1318         EC_NULL_LOG( getcwd(abspath, MAXPATHLEN) );
1319         strlcat(abspath, "/", MAXPATHLEN);
1320         strlcat(abspath, path, MAXPATHLEN);
1321         path = abspath;
1322     }
1323
1324
1325     for (tmp = Volumes; tmp; tmp = tmp->v_next) { /* (1) */
1326         if (strncmp(path, tmp->v_path, strlen(tmp->v_path)) == 0) {
1327             vol = tmp;
1328             goto EC_CLEANUP;
1329         }
1330     }
1331
1332     if (!have_uservol) /* (2) */
1333         EC_FAIL_LOG("getvolbypath(\"%s\"): no volume for path", path);
1334
1335     int secnum = iniparser_getnsec(obj->iniconfig);
1336
1337     for (int i = 0; i < secnum; i++) { 
1338         secname = iniparser_getsecname(obj->iniconfig, i);
1339         if (STRCMP(secname, ==, INISEC_HOMES))
1340             break;
1341     }
1342
1343     if (STRCMP(secname, !=, INISEC_HOMES))
1344         EC_FAIL_LOG("getvolbypath(\"%s\"): no volume for path", path);
1345
1346     /* (3) */
1347     EC_NULL_LOG( basedir = iniparser_getstring(obj->iniconfig, INISEC_HOMES, "basedir regex", NULL) );
1348     LOG(log_debug, logtype_afpd, "getvolbypath: user home section: '%s', basedir: '%s'", secname, basedir);
1349
1350     if (regexerr != 0 && (regexerr = regcomp(&reg, basedir, REG_EXTENDED)) != 0) {
1351         char errbuf[1024];
1352         regerror(regexerr, &reg, errbuf, sizeof(errbuf));
1353         printf("error: %s\n", errbuf);
1354         EC_FAIL_LOG("getvolbypath(\"%s\"): bad basedir regex: %s", errbuf);
1355     }
1356
1357     if (regexec(&reg, path, 1, match, 0) == REG_NOMATCH)
1358         EC_FAIL_LOG("getvolbypath(\"%s\"): no volume for path", path);
1359
1360     if (match[0].rm_eo - match[0].rm_so > MAXPATHLEN)
1361         EC_FAIL_LOG("getvolbypath(\"%s\"): path too long", path);
1362
1363     /* (4) */
1364     strncpy(tmpbuf, path + match[0].rm_so, match[0].rm_eo - match[0].rm_so);
1365     tmpbuf[match[0].rm_eo - match[0].rm_so] = 0;
1366
1367     LOG(log_debug, logtype_afpd, "getvolbypath: basedir regex: '%s', basedir match: \"%s\"",
1368         basedir, tmpbuf);
1369
1370     strlcat(tmpbuf, "/", MAXPATHLEN);
1371
1372     /* (5) */
1373     p = path + strlen(basedir);
1374     while (*p == '/')
1375         p++;
1376     EC_NULL_LOG( user = strdup(p) );
1377
1378     if (prw = strchr(user, '/'))
1379         *prw++ = 0;
1380     if (prw != 0)
1381         subpath = prw;
1382
1383     strlcat(tmpbuf, user, MAXPATHLEN);
1384     strlcpy(obj->username, user, MAXUSERLEN);
1385     strlcat(tmpbuf, "/", MAXPATHLEN);
1386
1387     /* (6) */
1388     if (subpathconfig = iniparser_getstring(obj->iniconfig, INISEC_HOMES, "path", NULL)) {
1389         /*
1390         if (!subpath || strncmp(subpathconfig, subpath, strlen(subpathconfig)) != 0) {
1391             EC_FAIL;
1392         }
1393         */
1394         strlcat(tmpbuf, subpathconfig, MAXPATHLEN);
1395         strlcat(tmpbuf, "/", MAXPATHLEN);
1396     }
1397
1398
1399     /* (7) */
1400     if (volxlate(obj, volpath, sizeof(volpath) - 1, tmpbuf, pw, NULL, NULL) == NULL)
1401         return NULL;
1402
1403     if ((realvolpath = realpath_safe(volpath)) == NULL)
1404         return NULL;
1405
1406     EC_NULL( pw = getpwnam(user) );
1407
1408     LOG(log_debug, logtype_afpd, "getvolbypath(\"%s\"): user: %s, homedir: %s => realvolpath: \"%s\"",
1409         path, user, pw->pw_dir, realvolpath);
1410
1411     /* do variable substitution for volume name */
1412     p = iniparser_getstring(obj->iniconfig, INISEC_HOMES, "home name", "$u's home");
1413     if (strstr(p, "$u") == NULL)
1414         p = "$u's home";
1415     strlcpy(tmpbuf, p, AFPVOL_U8MNAMELEN);
1416     EC_NULL_LOG( volxlate(obj, volname, sizeof(volname) - 1, tmpbuf, pw, realvolpath, NULL) );
1417
1418     const char  *preset, *default_preset;
1419     default_preset = iniparser_getstring(obj->iniconfig, INISEC_GLOBAL, "vol preset", NULL);
1420     preset = iniparser_getstring(obj->iniconfig, INISEC_HOMES, "vol preset", NULL);
1421
1422     vol = creatvol(obj, pw, INISEC_HOMES, volname, realvolpath, preset ? preset : default_preset ? default_preset : NULL);
1423
1424 EC_CLEANUP:
1425     if (user)
1426         free(user);
1427     if (ret != 0)
1428         vol = NULL;
1429     return vol;
1430 }
1431
1432 struct vol *getvolbyname(const char *name)
1433 {
1434     struct vol *vol = NULL;
1435     struct vol *tmp;
1436
1437     for (tmp = Volumes; tmp; tmp = tmp->v_next) {
1438         if (strncmp(name, tmp->v_configname, strlen(tmp->v_configname)) == 0) {
1439             vol = tmp;
1440             break;
1441         }
1442     }
1443     return vol;
1444 }
1445
1446 #define MAXVAL 1024
1447 /*!
1448  * Initialize an AFPObj and options from ini config file
1449  */
1450 int afp_config_parse(AFPObj *AFPObj, char *processname)
1451 {
1452     EC_INIT;
1453     dictionary *config;
1454     struct afp_options *options = &AFPObj->options;
1455     int i, c;
1456     const char *p, *tmp;
1457     char *q, *r;
1458     char val[MAXVAL];
1459
1460     if (processname != NULL)
1461         set_processname(processname);
1462
1463     AFPObj->afp_version = 11;
1464     options->configfile  = AFPObj->cmdlineconfigfile ? strdup(AFPObj->cmdlineconfigfile) : strdup(_PATH_CONFDIR "afp.conf");
1465     options->sigconffile = strdup(_PATH_STATEDIR "afp_signature.conf");
1466     options->uuidconf    = strdup(_PATH_STATEDIR "afp_voluuid.conf");
1467     options->flags       = OPTION_UUID | AFPObj->cmdlineflags;
1468     
1469     if ((config = iniparser_load(AFPObj->options.configfile)) == NULL)
1470         return -1;
1471     AFPObj->iniconfig = config;
1472
1473     /* [Global] */
1474     options->logconfig = iniparser_getstrdup(config, INISEC_GLOBAL, "log level", "default:note");
1475     options->logfile   = iniparser_getstrdup(config, INISEC_GLOBAL, "log file",  NULL);
1476
1477     setuplog(options->logconfig, options->logfile);
1478
1479     /* "server options" boolean options */
1480     if (!iniparser_getboolean(config, INISEC_GLOBAL, "zeroconf", 1))
1481         options->flags |= OPTION_NOZEROCONF;
1482     if (iniparser_getboolean(config, INISEC_GLOBAL, "advertise ssh", 0))
1483         options->flags |= OPTION_ANNOUNCESSH;
1484     if (iniparser_getboolean(config, INISEC_GLOBAL, "map acls", 1))
1485         options->flags |= OPTION_ACL2MACCESS;
1486     if (iniparser_getboolean(config, INISEC_GLOBAL, "keep sessions", 0))
1487         options->flags |= OPTION_KEEPSESSIONS;
1488     if (iniparser_getboolean(config, INISEC_GLOBAL, "close vol", 0))
1489         options->flags |= OPTION_CLOSEVOL;
1490     if (!iniparser_getboolean(config, INISEC_GLOBAL, "client polling", 0))
1491         options->flags |= OPTION_SERVERNOTIF;
1492     if (!iniparser_getboolean(config, INISEC_GLOBAL, "use sendfile", 1))
1493         options->flags |= OPTION_NOSENDFILE;
1494     if (iniparser_getboolean(config, INISEC_GLOBAL, "solaris share reservations", 1))
1495         options->flags |= OPTION_SHARE_RESERV;
1496     if (iniparser_getboolean(config, INISEC_GLOBAL, "afp read locks", 0))
1497         options->flags |= OPTION_AFP_READ_LOCK;
1498     if (!iniparser_getboolean(config, INISEC_GLOBAL, "save password", 1))
1499         options->passwdbits |= PASSWD_NOSAVE;
1500     if (iniparser_getboolean(config, INISEC_GLOBAL, "set password", 0))
1501         options->passwdbits |= PASSWD_SET;
1502
1503     /* figure out options w values */
1504     options->loginmesg      = iniparser_getstrdup(config, INISEC_GLOBAL, "login message",  NULL);
1505     options->guest          = iniparser_getstrdup(config, INISEC_GLOBAL, "guest account",  "nobody");
1506     options->passwdfile     = iniparser_getstrdup(config, INISEC_GLOBAL, "passwd file",_PATH_AFPDPWFILE);
1507     options->uampath        = iniparser_getstrdup(config, INISEC_GLOBAL, "uam path",       _PATH_AFPDUAMPATH);
1508     options->uamlist        = iniparser_getstrdup(config, INISEC_GLOBAL, "uam list",       "uams_dhx.so uams_dhx2.so");
1509     options->port           = iniparser_getstrdup(config, INISEC_GLOBAL, "afp port",       "548");
1510     options->signatureopt   = iniparser_getstrdup(config, INISEC_GLOBAL, "signature",      "");
1511     options->k5service      = iniparser_getstrdup(config, INISEC_GLOBAL, "k5 service",     NULL);
1512     options->k5realm        = iniparser_getstrdup(config, INISEC_GLOBAL, "k5 realm",       NULL);
1513     options->listen         = iniparser_getstrdup(config, INISEC_GLOBAL, "afp listen",     NULL);
1514     options->ntdomain       = iniparser_getstrdup(config, INISEC_GLOBAL, "nt domain",      NULL);
1515     options->ntseparator    = iniparser_getstrdup(config, INISEC_GLOBAL, "nt separator",   NULL);
1516     options->mimicmodel     = iniparser_getstrdup(config, INISEC_GLOBAL, "mimic model",    NULL);
1517     options->adminauthuser  = iniparser_getstrdup(config, INISEC_GLOBAL, "admin auth user",NULL);
1518     options->connections    = iniparser_getint   (config, INISEC_GLOBAL, "max connections",200);
1519     options->passwdminlen   = iniparser_getint   (config, INISEC_GLOBAL, "passwd minlen",  0);
1520     options->tickleval      = iniparser_getint   (config, INISEC_GLOBAL, "tickleval",      30);
1521     options->timeout        = iniparser_getint   (config, INISEC_GLOBAL, "timeout",        4);
1522     options->dsireadbuf     = iniparser_getint   (config, INISEC_GLOBAL, "dsireadbuf",     12);
1523     options->server_quantum = iniparser_getint   (config, INISEC_GLOBAL, "server quantum", DSI_SERVQUANT_DEF);
1524     options->volnamelen     = iniparser_getint   (config, INISEC_GLOBAL, "volnamelen",     80);
1525     options->dircachesize   = iniparser_getint   (config, INISEC_GLOBAL, "dircachesize",   DEFAULT_MAX_DIRCACHE_SIZE);
1526     options->tcp_sndbuf     = iniparser_getint   (config, INISEC_GLOBAL, "tcpsndbuf",      0);
1527     options->tcp_rcvbuf     = iniparser_getint   (config, INISEC_GLOBAL, "tcprcvbuf",      0);
1528     options->fce_fmodwait   = iniparser_getint   (config, INISEC_GLOBAL, "fce holdfmod",   60);
1529     options->sleep          = iniparser_getint   (config, INISEC_GLOBAL, "sleep time",     10);
1530     options->disconnected   = iniparser_getint   (config, INISEC_GLOBAL, "disconnect time",24);
1531
1532     if ((p = iniparser_getstring(config, INISEC_GLOBAL, "hostname", NULL))) {
1533         EC_NULL_LOG( options->hostname = strdup(p) );
1534     } else {
1535         if (gethostname(val, sizeof(val)) < 0 ) {
1536             perror( "gethostname" );
1537             EC_FAIL;
1538         }
1539         if ((q = strchr(val, '.')))
1540             *q = '\0';
1541         options->hostname = strdup(val);
1542     }
1543
1544     if ((p = iniparser_getstring(config, INISEC_GLOBAL, "k5 keytab", NULL))) {
1545         EC_NULL_LOG( options->k5keytab = malloc(strlen(p) + 14) );
1546         snprintf(options->k5keytab, strlen(p) + 14, "KRB5_KTNAME=%s", p);
1547         putenv(options->k5keytab);
1548     }
1549
1550 #ifdef ADMIN_GRP
1551     if ((p = iniparser_getstring(config, INISEC_GLOBAL, "admin group",  NULL))) {
1552          struct group *gr = getgrnam(p);
1553          if (gr != NULL)
1554              options->admingid = gr->gr_gid;
1555     }
1556 #endif /* ADMIN_GRP */
1557
1558     q = iniparser_getstrdup(config, INISEC_GLOBAL, "cnid server", "localhost:4700");
1559     r = strrchr(q, ':');
1560     if (r)
1561         *r = 0;
1562     options->Cnid_srv = strdup(q);
1563     if (r)
1564         options->Cnid_port = strdup(r + 1);
1565     else
1566         options->Cnid_port = strdup("4700");
1567     LOG(log_debug, logtype_afpd, "CNID Server: %s:%s", options->Cnid_srv, options->Cnid_port);
1568     if (q)
1569         free(q);
1570
1571     if ((q = iniparser_getstrdup(config, INISEC_GLOBAL, "fqdn", NULL))) {
1572         /* do a little checking for the domain name. */
1573         r = strchr(q, ':');
1574         if (r)
1575             *r = '\0';
1576         if (gethostbyname(q)) {
1577             if (r)
1578                 *r = ':';
1579             EC_NULL_LOG( options->fqdn = strdup(q) );
1580         } else {
1581             LOG(log_error, logtype_afpd, "error parsing -fqdn, gethostbyname failed for: %s", c);
1582         }
1583         free(q);
1584     }
1585
1586     /* Charset Options */
1587
1588     /* unix charset is in [G] only */
1589     if (!(p = iniparser_getstring(config, INISEC_GLOBAL, "unix charset", NULL))) {
1590         options->unixcodepage = strdup("UTF8");
1591         set_charset_name(CH_UNIX, "UTF8");
1592     } else {
1593         if (strcasecmp(p, "LOCALE") == 0) {
1594 #if defined(CODESET)
1595             setlocale(LC_ALL, "");
1596             p = nl_langinfo(CODESET);
1597             LOG(log_debug, logtype_afpd, "Locale charset is '%s'", p);
1598 #else /* system doesn't have LOCALE support */
1599             LOG(log_warning, logtype_afpd, "system doesn't have LOCALE support");
1600             p = strdup("UTF8");
1601 #endif
1602         }
1603         if (strcasecmp(p, "UTF-8") == 0) {
1604             p = strdup("UTF8");
1605         }
1606         options->unixcodepage = strdup(p);
1607         set_charset_name(CH_UNIX, p);
1608     }
1609     options->unixcharset = CH_UNIX;
1610     LOG(log_debug, logtype_afpd, "Global unix charset is %s", options->unixcodepage);
1611
1612     /* vol charset is in [G] and [V] */
1613     if (!(p = iniparser_getstring(config, INISEC_GLOBAL, "vol charset", NULL))) {
1614         options->volcodepage = strdup(options->unixcodepage);
1615     } else {
1616         if (strcasecmp(p, "UTF-8") == 0) {
1617             p = strdup("UTF8");
1618         }
1619         options->volcodepage = strdup(p);
1620     }
1621     LOG(log_debug, logtype_afpd, "Global vol charset is %s", options->volcodepage);
1622     
1623     /* mac charset is in [G] and [V] */
1624     if (!(p = iniparser_getstring(config, INISEC_GLOBAL, "mac charset", NULL))) {
1625         options->maccodepage = strdup("MAC_ROMAN");
1626         set_charset_name(CH_MAC, "MAC_ROMAN");
1627     } else {
1628         if (strncasecmp(p, "MAC", 3) != 0) {
1629             LOG(log_warning, logtype_afpd, "Is '%s' really mac charset? ", p);
1630         }
1631         options->maccodepage = strdup(p);
1632         set_charset_name(CH_MAC, p);
1633     }
1634     options->maccharset = CH_MAC;
1635     LOG(log_debug, logtype_afpd, "Global mac charset is %s", options->maccodepage);
1636
1637     /* Check for sane values */
1638     if (options->tickleval <= 0)
1639         options->tickleval = 30;
1640         options->disconnected *= 3600 / options->tickleval;
1641         options->sleep *= 3600 / options->tickleval;
1642     if (options->timeout <= 0)
1643         options->timeout = 4;
1644     if (options->sleep <= 4)
1645         options->disconnected = options->sleep = 4;
1646     if (options->dsireadbuf < 6)
1647         options->dsireadbuf = 6;
1648     if (options->volnamelen < 8)
1649         options->volnamelen = 8; /* max mangled volname "???#FFFF" */
1650     if (options->volnamelen > 255)
1651         options->volnamelen = 255; /* AFP3 spec */
1652
1653 EC_CLEANUP:
1654     EC_EXIT;
1655 }