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