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