]> arthur.barton.de Git - netatalk.git/blob - libatalk/util/netatalk_conf.c
a3f2620d8710510caed19b87d008d7fba2d56974
[netatalk.git] / libatalk / util / netatalk_conf.c
1 /*
2   Copyright (c) 2012 Frank Lahm <franklahm@gmail.com>
3
4   This program is free software; you can redistribute it and/or modify
5   it under the terms of the GNU General Public License as published by
6   the Free Software Foundation; either version 2 of the License, or
7   (at your option) any later version.
8
9   This program is distributed in the hope that it will be useful,
10   but WITHOUT ANY WARRANTY; without even the implied warranty of
11   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12   GNU General Public License for more details.
13 */
14
15 #ifdef HAVE_CONFIG_H
16 #include "config.h"
17 #endif /* HAVE_CONFIG_H */
18
19 #include <stdio.h>
20 #include <stdlib.h>
21 #include <ctype.h>
22 #include <pwd.h>
23 #include <grp.h>
24 #include <utime.h>
25 #include <errno.h>
26 #include <string.h>
27 #include <sys/param.h>
28 #include <sys/socket.h>
29 #include <netinet/in.h>
30 #include <arpa/inet.h>
31 #include <inttypes.h>
32 #include <time.h>
33 #include <regex.h>
34 #if HAVE_LOCALE_H
35 #include <locale.h>
36 #endif
37 #if HAVE_LANGINFO_H
38 #include <langinfo.h>
39 #endif
40
41 #include <atalk/afp.h>
42 #include <atalk/util.h>
43 #include <atalk/logger.h>
44 #include <atalk/ea.h>
45 #include <atalk/globals.h>
46 #include <atalk/errchk.h>
47 #include <atalk/iniparser.h>
48 #include <atalk/unix.h>
49 #include <atalk/cnid.h>
50 #include <atalk/dsi.h>
51 #include <atalk/uuid.h>
52 #include <atalk/netatalk_conf.h>
53 #include <atalk/bstrlib.h>
54 #include <atalk/bstradd.h>
55
56 #define VOLPASSLEN  8
57 #ifndef UUID_PRINTABLE_STRING_LENGTH
58 #define UUID_PRINTABLE_STRING_LENGTH 37
59 #endif
60
61 #define IS_VAR(a, b) (strncmp((a), (b), 2) == 0)
62
63 /**************************************************************
64  * Locals
65  **************************************************************/
66
67 static int have_uservol = 0; /* whether there's generic user home share in config ("~" or "~/path", but not "~user") */
68 static struct vol *Volumes = NULL;
69 static uint16_t    lastvid = 0;
70
71 /* 
72  * Get a volumes UUID from the config file.
73  * If there is none, it is generated and stored there.
74  *
75  * Returns pointer to allocated storage on success, NULL on error.
76  */
77 static char *get_vol_uuid(const AFPObj *obj, const char *volname)
78 {
79     char *volname_conf;
80     char buf[1024], uuid[UUID_PRINTABLE_STRING_LENGTH], *p;
81     FILE *fp;
82     struct stat tmpstat;
83     int fd;
84     
85     if ((fp = fopen(obj->options.uuidconf, "r")) != NULL) {  /* read open? */
86         /* scan in the conf file */
87         while (fgets(buf, sizeof(buf), fp) != NULL) { 
88             p = buf;
89             while (p && isblank(*p))
90                 p++;
91             if (!p || (*p == '#') || (*p == '\n'))
92                 continue;                             /* invalid line */
93             if (*p == '"') {
94                 p++;
95                 if ((volname_conf = strtok( p, "\"" )) == NULL)
96                     continue;                         /* syntax error */
97             } else {
98                 if ((volname_conf = strtok( p, " \t" )) == NULL)
99                     continue;                         /* syntax error: invalid name */
100             }
101             p = strchr(p, '\0');
102             p++;
103             if (*p == '\0')
104                 continue;                             /* syntax error */
105             
106             if (strcmp(volname, volname_conf) != 0)
107                 continue;                             /* another volume name */
108                 
109             while (p && isblank(*p))
110                 p++;
111
112             if (sscanf(p, "%36s", uuid) == 1 ) {
113                 for (int i=0; uuid[i]; i++)
114                     uuid[i] = toupper(uuid[i]);
115                 LOG(log_debug, logtype_afpd, "get_uuid('%s'): UUID: '%s'", volname, uuid);
116                 fclose(fp);
117                 return strdup(uuid);
118             }
119         }
120     }
121
122     if (fp)
123         fclose(fp);
124
125     /*  not found or no file, reopen in append mode */
126
127     if (stat(obj->options.uuidconf, &tmpstat)) {                /* no file */
128         if (( fd = creat(obj->options.uuidconf, 0644 )) < 0 ) {
129             LOG(log_error, logtype_afpd, "ERROR: Cannot create %s (%s).",
130                 obj->options.uuidconf, strerror(errno));
131             return NULL;
132         }
133         if (( fp = fdopen( fd, "w" )) == NULL ) {
134             LOG(log_error, logtype_afpd, "ERROR: Cannot fdopen %s (%s).",
135                 obj->options.uuidconf, strerror(errno));
136             close(fd);
137             return NULL;
138         }
139     } else if ((fp = fopen(obj->options.uuidconf, "a+")) == NULL) { /* not found */
140         LOG(log_error, logtype_afpd, "Cannot create or append to %s (%s).",
141             obj->options.uuidconf, strerror(errno));
142         return NULL;
143     }
144     fseek(fp, 0L, SEEK_END);
145     if(ftell(fp) == 0) {                     /* size = 0 */
146         fprintf(fp, "# DON'T TOUCH NOR COPY THOUGHTLESSLY!\n");
147         fprintf(fp, "# This file is auto-generated by afpd\n");
148         fprintf(fp, "# and stores UUIDs for Time Machine volumes.\n\n");
149     } else {
150         fseek(fp, -1L, SEEK_END);
151         if(fgetc(fp) != '\n') fputc('\n', fp); /* last char is \n? */
152     }                    
153     
154     /* generate uuid and write to file */
155     atalk_uuid_t id;
156     const char *cp;
157     randombytes((void *)id, 16);
158     cp = uuid_bin2string(id);
159
160     LOG(log_debug, logtype_afpd, "get_uuid('%s'): generated UUID '%s'", volname, cp);
161
162     fprintf(fp, "\"%s\"\t%36s\n", volname, cp);
163     fclose(fp);
164     
165     return strdup(cp);
166 }
167
168 /*
169   Check if the underlying filesystem supports EAs.
170   If not, switch to ea:ad.
171   As we can't check (requires write access) on ro-volumes, we switch ea:auto
172   volumes that are options:ro to ea:none.
173 */
174 #define EABUFSZ 4
175 static int do_check_ea_support(const struct vol *vol)
176 {
177     int haseas;
178     const char *eaname = "org.netatalk.has-Extended-Attributes";
179     const char *eacontent = "yes";
180     char buf[EABUFSZ];
181
182     if (sys_lgetxattr(vol->v_path, eaname, buf, EABUFSZ) != -1)
183         return 1;
184
185     if (vol->v_flags & AFPVOL_RO) {
186         LOG(log_debug, logtype_afpd, "read-only volume '%s', can't test for EA support, assuming yes", vol->v_localname);
187         return 1;
188     }
189
190     become_root();
191
192     if ((sys_setxattr(vol->v_path, eaname, eacontent, strlen(eacontent) + 1, 0)) == 0) {
193         haseas = 1;
194     } else {
195         LOG(log_warning, logtype_afpd, "volume \"%s\" does not support Extended Attributes or read-only volume",
196             vol->v_localname);
197         haseas = 0;
198     }
199
200     unbecome_root();
201
202     return haseas;
203 }
204
205 static void check_ea_support(struct vol *vol)
206 {
207     int haseas;
208
209     haseas = do_check_ea_support(vol);
210
211     if (vol->v_vfs_ea == AFPVOL_EA_AUTO) {
212         if (haseas)
213             vol->v_vfs_ea = AFPVOL_EA_SYS;
214         else
215             vol->v_vfs_ea = AFPVOL_EA_NONE;
216     }
217
218     if (vol->v_adouble == AD_VERSION_EA) {
219         if (!haseas)
220             vol->v_adouble = AD_VERSION2;
221     }
222 }
223
224 /*!
225  * Check whether a volume supports ACLs
226  *
227  * @param vol  (r) volume
228  *
229  * @returns        0 if not, 1 if yes
230  */
231 static int check_vol_acl_support(const struct vol *vol)
232 {
233     int ret = 0;
234
235 #ifdef HAVE_NFSV4_ACLS
236     ace_t *aces = NULL;
237     ret = 1;
238     if (get_nfsv4_acl(vol->v_path, &aces) == -1)
239         ret = 0;
240 #endif
241 #ifdef HAVE_POSIX_ACLS
242     acl_t acl = NULL;
243     ret = 1;
244     if ((acl = acl_get_file(vol->v_path, ACL_TYPE_ACCESS)) == NULL)
245         ret = 0;
246 #endif
247
248 #ifdef HAVE_NFSV4_ACLS
249     if (aces) free(aces);
250 #endif
251 #ifdef HAVE_POSIX_ACLS
252     if (acl) acl_free(acl);
253 #endif /* HAVE_POSIX_ACLS */
254
255     LOG(log_debug, logtype_afpd, "Volume \"%s\" ACL support: %s",
256         vol->v_path, ret ? "yes" : "no");
257     return ret;
258 }
259
260 /*
261  * Handle variable substitutions. here's what we understand:
262  * $b   -> basename of path
263  * $c   -> client ip/appletalk address
264  * $d   -> volume pathname on server
265  * $f   -> full name (whatever's in the gecos field)
266  * $g   -> group
267  * $h   -> hostname
268  * $i   -> client ip/appletalk address without port
269  * $s   -> server name (hostname if it doesn't exist)
270  * $u   -> username (guest is usually nobody)
271  * $v   -> volume name or basename if null
272  * $$   -> $
273  *
274  * This get's called from readvolfile with
275  * path = NULL, volname = NULL for xlating the volumes path
276  * path = path, volname = NULL for xlating the volumes name
277  * ... and from volumes options parsing code when xlating eg dbpath with
278  * path = path, volname = volname
279  *
280  * Using this information we can reject xlation of any variable depeninding on a login
281  * context which is not given in the afp master, where we must evaluate this whole stuff
282  * too for the Zeroconf announcements.
283  */
284 static char *volxlate(const AFPObj *obj,
285                       char *dest,
286                       size_t destlen,
287                       const char *src,
288                       const struct passwd *pwd,
289                       const char *path,
290                       const char *volname)
291 {
292     char *p, *r;
293     const char *q;
294     int len;
295     char *ret;
296     int xlatevolname = 0;
297
298     if (path && !volname)
299         /* cf above */
300         xlatevolname = 1;
301
302     if (!src) {
303         return NULL;
304     }
305     if (!dest) {
306         dest = calloc(destlen +1, 1);
307     }
308     ret = dest;
309     if (!ret) {
310         return NULL;
311     }
312     strlcpy(dest, src, destlen +1);
313     if ((p = strchr(src, '$')) == NULL) /* nothing to do */
314         return ret;
315
316     /* first part of the path. just forward to the next variable. */
317     len = MIN((size_t)(p - src), destlen);
318     if (len > 0) {
319         destlen -= len;
320         dest += len;
321     }
322
323     while (p && destlen > 0) {
324         /* now figure out what the variable is */
325         q = NULL;
326         if (IS_VAR(p, "$b")) {
327             if (path) {
328                 if ((q = strrchr(path, '/')) == NULL)
329                     q = path;
330                 else if (*(q + 1) != '\0')
331                     q++;
332             }
333         } else if (IS_VAR(p, "$c")) {
334             if (IS_AFP_SESSION(obj)) {
335                 DSI *dsi = obj->dsi;
336                 len = sprintf(dest, "%s:%u",
337                               getip_string((struct sockaddr *)&dsi->client),
338                               getip_port((struct sockaddr *)&dsi->client));
339                 dest += len;
340                 destlen -= len;
341             }
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[0] && 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 a string consisting of names seperated by comma
406  * or space. Names may be quoted within a pair of quotes. Groups are
407  * denoted by a leading @ symbol.
408  * Example:
409  * user1 user2, user3, @group1 @group2, @group3 "user name1", "@group name1"
410  * A NULL argument allows everybody to have access.
411  * We return three things:
412  *     -1: no list
413  *      0: list exists, but name isn't in it
414  *      1: in list
415  */
416 static int accessvol(const AFPObj *obj, const char *args, const char *name)
417 {
418     EC_INIT;
419     char *names = NULL, *p;
420     struct group *gr;
421
422     if (!args)
423         EC_EXIT_STATUS(-1);
424
425     EC_NULL_LOG( names = strdup(args) );
426
427     if ((p = strtok_quote(names, ", ")) == NULL) /* nothing, return okay */
428         EC_EXIT_STATUS(-1);
429
430     while (p) {
431         if (*p == '@') { /* it's a group */
432             if ((gr = getgrnam(p + 1)) && gmem(gr->gr_gid, obj->ngroups, obj->groups))
433                 EC_EXIT_STATUS(1);
434         } else if (strcasecmp(p, name) == 0) /* it's a user name */
435             EC_EXIT_STATUS(1);
436         p = strtok_quote(NULL, ", ");
437     }
438
439 EC_CLEANUP:
440     if (names)
441         free(names);
442     EC_EXIT;
443 }
444
445 static int hostaccessvol(const AFPObj *obj, const char *volname, const char *args)
446 {
447     int mask_int;
448     char buf[MAXPATHLEN + 1], *p, *b;
449     struct sockaddr_storage client;
450     const DSI *dsi = obj->dsi;
451
452     if (!args || !dsi)
453         return -1;
454
455     strlcpy(buf, args, sizeof(buf));
456     if ((p = strtok_r(buf, ", ", &b)) == NULL) /* nothing, return okay */
457         return -1;
458
459     while (p) {
460         int ret;
461         char *ipaddr, *mask_char;
462         struct addrinfo hints, *ai;
463
464         ipaddr = strtok(p, "/");
465         mask_char = strtok(NULL,"/");
466
467         /* Get address from string with getaddrinfo */
468         memset(&hints, 0, sizeof hints);
469         hints.ai_family = AF_UNSPEC;
470         hints.ai_socktype = SOCK_STREAM;
471         if ((ret = getaddrinfo(ipaddr, NULL, &hints, &ai)) != 0) {
472             LOG(log_error, logtype_afpd, "hostaccessvol: getaddrinfo: %s\n", gai_strerror(ret));
473             continue;
474         }
475
476         /* netmask */
477         if (mask_char != NULL)
478             mask_int = atoi(mask_char); /* apply_ip_mask does range checking on it */
479         else {
480             if (ai->ai_family == AF_INET) /* IPv4 */
481                 mask_int = 32;
482             else                          /* IPv6 */
483                 mask_int = 128;
484         }
485
486         /* Apply mask to addresses */
487         client = dsi->client;
488         apply_ip_mask((struct sockaddr *)&client, mask_int);
489         apply_ip_mask(ai->ai_addr, mask_int);
490
491         if (compare_ip((struct sockaddr *)&client, ai->ai_addr) == 0) {
492             freeaddrinfo(ai);
493             return 1;
494         }
495
496         /* next address */
497         freeaddrinfo(ai);
498         p = strtok_r(NULL, ", ", &b);
499     }
500
501     return 0;
502 }
503
504 /*!
505  * Get option string from config, use default value if not set
506  *
507  * @param conf    (r) config handle
508  * @param vol     (r) volume name (must be section name ie wo vars expanded)
509  * @param opt     (r) option
510  * @param defsec  (r) if "option" is not found in "vol", try to find it in section "defsec"
511  * @param defval  (r) if neither "vol" nor "defsec" contain "opt" return "defval"
512  *
513  * @returns       const option string from "vol" or "defsec", or "defval" if not found
514  */
515 static const char *getoption(const dictionary *conf, const char *vol, const char *opt, const char *defsec, const char *defval)
516 {
517     const char *result;
518
519     if ((!(result = atalk_iniparser_getstring(conf, vol, opt, NULL))) && (defsec != NULL))
520         result = atalk_iniparser_getstring(conf, defsec, opt, NULL);
521     
522     if (result == NULL)
523         result = defval;
524     return result;
525 }
526
527 /*!
528  * Get boolean option from config, use default value if not set
529  *
530  * @param conf    (r) config handle
531  * @param vol     (r) volume name (must be section name ie wo vars expanded)
532  * @param opt     (r) option
533  * @param defsec  (r) if "option" is not found in "vol", try to find it in section "defsec"
534  * @param defval  (r) if neither "vol" nor "defsec" contain "opt" return "defval"
535  *
536  * @returns       const option string from "vol" or "defsec", or "defval" if not found
537  */
538 static int getoption_bool(const dictionary *conf, const char *vol, const char *opt, const char *defsec, int defval)
539 {
540     int result;
541
542     if (((result = atalk_iniparser_getboolean(conf, vol, opt, -1)) == -1) && (defsec != NULL))
543         result = atalk_iniparser_getboolean(conf, defsec, opt, -1);
544     
545     if (result == -1)
546         result = defval;
547     return result;
548 }
549
550 /*!
551  * Get boolean option from volume, default section or global - use default value if not set
552  *
553  * Order of precedence: volume -> default section -> global -> default value
554  *
555  * "vdg" means volume, default section or global
556  *
557  * @param conf    (r) config handle
558  * @param vol     (r) volume name (must be section name ie wo vars expanded)
559  * @param opt     (r) option
560  * @param defsec  (r) if "option" is not found in "vol", try to find it in section "defsec"
561  * @param defval  (r) if neither "vol" nor "defsec" contain "opt" return "defval"
562  *
563  * @returns       const option string from "vol" or "defsec", or "defval" if not found
564  */
565 static int vdgoption_bool(const dictionary *conf, const char *vol, const char *opt, const char *defsec, int defval)
566 {
567     int result;
568
569     result = atalk_iniparser_getboolean(conf, vol, opt, -1);
570
571     if ((result == -1) && (defsec != NULL))
572         result = atalk_iniparser_getboolean(conf, defsec, opt, -1);
573
574     if (result == -1)
575         result = atalk_iniparser_getboolean(conf, INISEC_GLOBAL, opt, defval);
576
577     return result;
578 }
579
580 /*!
581  * Create volume struct
582  *
583  * @param obj      (r) handle
584  * @param pwd      (r) struct passwd of logged in user, may be NULL in master afpd
585  * @param section  (r) volume name wo variables expanded (exactly as in iniconfig)
586  * @param name     (r) volume name
587  * @param path_in  (r) volume path
588  * @param preset   (r) default preset, may be NULL
589  * @returns            vol on success, NULL on error
590  */
591 static struct vol *creatvol(AFPObj *obj,
592                             const struct passwd *pwd,
593                             const char *section,
594                             const char *name,
595                             const char *path_in,
596                             const char *preset)
597 {
598     EC_INIT;
599     struct vol  *volume = NULL;
600     int         i, suffixlen, vlen, tmpvlen, u8mvlen, macvlen;
601     char        tmpname[AFPVOL_U8MNAMELEN+1];
602     char        path[MAXPATHLEN + 1];
603     ucs2_t      u8mtmpname[(AFPVOL_U8MNAMELEN+1)*2], mactmpname[(AFPVOL_MACNAMELEN+1)*2];
604     char        suffix[6]; /* max is #FFFF */
605     uint16_t    flags;
606     const char  *val;
607     char        *p, *q;
608     bstring     dbpath = NULL;
609     bstring     global_path_tmp = NULL;
610
611     strlcpy(path, path_in, MAXPATHLEN);
612
613     LOG(log_debug, logtype_afpd, "creatvol(volume: '%s', path: \"%s\", preset: '%s'): BEGIN",
614         name, path, preset ? preset : "-");
615
616     if ( name == NULL || *name == '\0' ) {
617         if ((name = strrchr( path, '/' )) == NULL)
618             EC_FAIL;
619         /* if you wish to share /, you need to specify a name. */
620         if (*++name == '\0')
621             EC_FAIL;
622     }
623
624     /* Once volumes are loaded, we never change options again, we just delete em when they're removed from afp.conf */
625
626     for (struct vol *vol = Volumes; vol; vol = vol->v_next) {
627         if (STRCMP(name, ==, vol->v_localname) && vol->v_deleted) {
628             /* 
629              * reloading config, volume still present, nothing else to do,
630              * we don't change options for volumes once they're loaded
631              */
632             vol->v_deleted = 0;
633             volume = vol;
634             EC_EXIT_STATUS(0);
635         }
636         if (STRCMP(path, ==, vol->v_path)) {
637             LOG(log_note, logtype_afpd, "volume \"%s\" path \"%s\" is the same as volumes \"%s\" path",
638                 name, path, vol->v_configname);
639             EC_EXIT_STATUS(0);
640         }
641         /*
642          * We could check for nested volume paths here, but
643          * nobody was able to come up with an implementation yet,
644          * that is simple, fast and correct.
645          */
646     }
647
648     /*
649      * Check allow/deny lists:
650      * allow -> either no list (-1), or in list (1)
651      * deny -> either no list (-1), or not in list (0)
652      */
653     if (pwd) {
654         if (accessvol(obj, getoption(obj->iniconfig, section, "invalid users", preset, NULL), pwd->pw_name) == 1)
655             goto EC_CLEANUP;
656         if (accessvol(obj, getoption(obj->iniconfig, section, "valid users", preset, NULL), pwd->pw_name) == 0)
657             goto EC_CLEANUP;
658         if (hostaccessvol(obj, section, getoption(obj->iniconfig, section, "hosts deny", preset, NULL)) == 1)
659             goto EC_CLEANUP;
660         if (hostaccessvol(obj, section, getoption(obj->iniconfig, section, "hosts allow", preset, NULL)) == 0)
661             goto EC_CLEANUP;
662     }
663
664     EC_NULL( volume = calloc(1, sizeof(struct vol)) );
665
666     EC_NULL( volume->v_configname = strdup(section));
667
668     volume->v_vfs_ea = AFPVOL_EA_AUTO;
669     volume->v_umask = obj->options.umask;
670
671     if ((val = getoption(obj->iniconfig, section, "password", preset, NULL)))
672         EC_NULL( volume->v_password = strdup(val) );
673
674     if ((val = getoption(obj->iniconfig, section, "veto files", preset, NULL)))
675         EC_NULL( volume->v_veto = strdup(val) );
676
677     /* vol charset is in [G] and [V] */
678     if ((val = getoption(obj->iniconfig, section, "vol charset", preset, NULL))) {
679         if (strcasecmp(val, "UTF-8") == 0) {
680             val = strdup("UTF8");
681         }
682         EC_NULL( volume->v_volcodepage = strdup(val) );
683     }
684     else
685         EC_NULL( volume->v_volcodepage = strdup(obj->options.volcodepage) );
686
687     /* mac charset is in [G] and [V] */
688     if ((val = getoption(obj->iniconfig, section, "mac charset", preset, NULL))) {
689         if (strncasecmp(val, "MAC", 3) != 0) {
690             LOG(log_warning, logtype_afpd, "Is '%s' really mac charset? ", val);
691         }
692         EC_NULL( volume->v_maccodepage = strdup(val) );
693     }
694     else
695     EC_NULL( volume->v_maccodepage = strdup(obj->options.maccodepage) );
696
697     vlen = strlen(name);
698     strlcpy(tmpname, name, sizeof(tmpname));
699     for(i = 0; i < vlen; i++)
700         if(tmpname[i] == '/') tmpname[i] = ':';
701
702
703     if (atalk_iniparser_getboolean(obj->iniconfig, INISEC_GLOBAL, "vol dbnest", 0)) {
704         EC_NULL( volume->v_dbpath = strdup(path) );
705     } else {
706         char *global_path;
707         val = getoption(obj->iniconfig, section, "vol dbpath", preset, NULL);
708         if (val == NULL) {
709             /* check global option */
710             global_path = atalk_iniparser_getstring(obj->iniconfig,
711                                                     INISEC_GLOBAL,
712                                                     "vol dbpath",
713                                                     NULL);
714             if (global_path) {
715                 /* check for pre 3.1.1 behaviour without variable */
716                 if (strchr(global_path, '$') == NULL) {
717                     global_path_tmp = bformat("%s/%s/", global_path, tmpname);
718                     val = cfrombstr(global_path_tmp);
719                 } else {
720                     val = global_path;
721                 }
722             }
723         }
724
725         if (val == NULL) {
726             EC_NULL( dbpath = bformat("%s/%s/", _PATH_STATEDIR "CNID/", tmpname) );
727         } else {
728             EC_NULL( dbpath = bfromcstr(val));
729         }
730         EC_NULL( volume->v_dbpath = volxlate(obj, NULL, MAXPATHLEN + 1,
731                                              cfrombstr(dbpath), pwd, NULL, tmpname) );
732     }
733
734     if ((val = getoption(obj->iniconfig, section, "cnid scheme", preset, NULL)))
735         EC_NULL( volume->v_cnidscheme = strdup(val) );
736     else
737         volume->v_cnidscheme = strdup(DEFAULT_CNID_SCHEME);
738
739     if ((val = getoption(obj->iniconfig, section, "umask", preset, NULL)))
740         volume->v_umask = (int)strtol(val, NULL, 8);
741
742     if ((val = getoption(obj->iniconfig, section, "directory perm", preset, NULL)))
743         volume->v_dperm = (int)strtol(val, NULL, 8);
744
745     if ((val = getoption(obj->iniconfig, section, "file perm", preset, NULL)))
746         volume->v_fperm = (int)strtol(val, NULL, 8);
747
748     if ((val = getoption(obj->iniconfig, section, "vol size limit", preset, NULL)))
749         volume->v_limitsize = (uint32_t)strtoul(val, NULL, 10);
750
751     if ((val = getoption(obj->iniconfig, section, "preexec", preset, NULL)))
752         EC_NULL( volume->v_preexec = volxlate(obj, NULL, MAXPATHLEN, val, pwd, path, name) );
753
754     if ((val = getoption(obj->iniconfig, section, "postexec", preset, NULL)))
755         EC_NULL( volume->v_postexec = volxlate(obj, NULL, MAXPATHLEN, val, pwd, path, name) );
756
757     if ((val = getoption(obj->iniconfig, section, "root preexec", preset, NULL)))
758         EC_NULL( volume->v_root_preexec = volxlate(obj, NULL, MAXPATHLEN, val, pwd, path, name) );
759
760     if ((val = getoption(obj->iniconfig, section, "root postexec", preset, NULL)))
761         EC_NULL( volume->v_root_postexec = volxlate(obj, NULL, MAXPATHLEN, val, pwd, path, name) );
762
763     if ((val = getoption(obj->iniconfig, section, "appledouble", preset, NULL))) {
764         if (strcmp(val, "v2") == 0)
765             volume->v_adouble = AD_VERSION2;
766         else if (strcmp(val, "ea") == 0)
767             volume->v_adouble = AD_VERSION_EA;
768     } else {
769         volume->v_adouble = AD_VERSION;
770     }
771
772     if ((val = getoption(obj->iniconfig, section, "cnid server", preset, NULL))) {
773         EC_NULL( p = strdup(val) );
774         volume->v_cnidserver = p;
775         if ((q = strrchr(val, ':'))) {
776             *q++ = 0;
777             volume->v_cnidport = strdup(q);
778         } else {
779             volume->v_cnidport = strdup("4700");
780         }
781
782     } else {
783         volume->v_cnidserver = strdup(obj->options.Cnid_srv);
784         volume->v_cnidport = strdup(obj->options.Cnid_port);
785     }
786
787     if ((val = getoption(obj->iniconfig, section, "ea", preset, NULL))) {
788         if (strcasecmp(val, "ad") == 0)
789             volume->v_vfs_ea = AFPVOL_EA_AD;
790         else if (strcasecmp(val, "sys") == 0)
791             volume->v_vfs_ea = AFPVOL_EA_SYS;
792         else if (strcasecmp(val, "none") == 0)
793             volume->v_vfs_ea = AFPVOL_EA_NONE;
794     }
795
796     if ((val = getoption(obj->iniconfig, section, "casefold", preset, NULL))) {
797         if (strcasecmp(val, "tolower") == 0)
798             volume->v_casefold = AFPVOL_UMLOWER;
799         else if (strcasecmp(val, "toupper") == 0)
800             volume->v_casefold = AFPVOL_UMUPPER;
801         else if (strcasecmp(val, "xlatelower") == 0)
802             volume->v_casefold = AFPVOL_UUPPERMLOWER;
803         else if (strcasecmp(val, "xlateupper") == 0)
804             volume->v_casefold = AFPVOL_ULOWERMUPPER;
805     }
806     if (getoption_bool(obj->iniconfig, section, "case sensitive", preset, 1))
807         volume->v_casefold |= AFPVOL_CASESENS;
808
809     if (getoption_bool(obj->iniconfig, section, "read only", preset, 0))
810         volume->v_flags |= AFPVOL_RO;
811     if (getoption_bool(obj->iniconfig, section, "invisible dots", preset, 0))
812         volume->v_flags |= AFPVOL_INV_DOTS;
813     if (!getoption_bool(obj->iniconfig, section, "stat vol", preset, 1))
814         volume->v_flags |= AFPVOL_NOSTAT;
815     if (getoption_bool(obj->iniconfig, section, "unix priv", preset, 1))
816         volume->v_flags |= AFPVOL_UNIX_PRIV;
817     if (!getoption_bool(obj->iniconfig, section, "cnid dev", preset, 1))
818         volume->v_flags |= AFPVOL_NODEV;
819     if (getoption_bool(obj->iniconfig, section, "illegal seq", preset, 0))
820         volume->v_flags |= AFPVOL_EILSEQ;
821     if (getoption_bool(obj->iniconfig, section, "time machine", preset, 0))
822         volume->v_flags |= AFPVOL_TM;
823     if (getoption_bool(obj->iniconfig, section, "search db", preset, 0))
824         volume->v_flags |= AFPVOL_SEARCHDB;
825     if (!getoption_bool(obj->iniconfig, section, "network ids", preset, 1))
826         volume->v_flags |= AFPVOL_NONETIDS;
827 #ifdef HAVE_ACLS
828     if (getoption_bool(obj->iniconfig, section, "acls", preset, 1))
829         volume->v_flags |= AFPVOL_ACLS;
830 #endif
831     if (!getoption_bool(obj->iniconfig, section, "convert appledouble", preset, 1))
832         volume->v_flags |= AFPVOL_NOV2TOEACONV;
833     if (getoption_bool(obj->iniconfig, section, "follow symlinks", preset, 0))
834         volume->v_flags |= AFPVOL_FOLLOWSYM;
835     if (getoption_bool(obj->iniconfig, section, "spotlight", preset, obj->options.flags & OPTION_SPOTLIGHT_VOL)) {
836         volume->v_flags |= AFPVOL_SPOTLIGHT;
837         obj->options.flags |= OPTION_SPOTLIGHT;
838     }
839     if (getoption_bool(obj->iniconfig, section, "delete veto files", preset, 0))
840         volume->v_flags |= AFPVOL_DELVETO;
841
842     if (getoption_bool(obj->iniconfig, section, "preexec close", preset, 0))
843         volume->v_preexec_close = 1;
844     if (getoption_bool(obj->iniconfig, section, "root preexec close", preset, 0))
845         volume->v_root_preexec_close = 1;
846     if (vdgoption_bool(obj->iniconfig, section, "force xattr with sticky bit", preset, 0))
847         volume->v_flags |= AFPVOL_FORCE_STICKY_XATTR;
848
849     if ((val = getoption(obj->iniconfig, section, "ignored attributes", preset, obj->options.ignored_attr))) {
850         if (strstr(val, "all")) {
851             volume->v_ignattr |= ATTRBIT_NOWRITE | ATTRBIT_NORENAME | ATTRBIT_NODELETE;
852         }
853         if (strstr(val, "nowrite")) {
854             volume->v_ignattr |= ATTRBIT_NOWRITE;
855         }
856         if (strstr(val, "norename")) {
857             volume->v_ignattr |= ATTRBIT_NORENAME;
858         }
859         if (strstr(val, "nodelete")) {
860             volume->v_ignattr |= ATTRBIT_NODELETE;
861         }
862     }
863
864     val = getoption(obj->iniconfig, section, "chmod request", preset, NULL);
865     if (val == NULL) {
866         val = atalk_iniparser_getstring(obj->iniconfig, INISEC_GLOBAL, "chmod request", "preserve");
867     }
868     if (strcasecmp(val, "ignore") == 0) {
869         volume->v_flags |= AFPVOL_CHMOD_IGNORE;
870     } else if (strcasecmp(val, "preserve") == 0) {
871         volume->v_flags |= AFPVOL_CHMOD_PRESERVE_ACL;
872     } else if (strcasecmp(val, "simple") != 0) {
873         LOG(log_warning, logtype_afpd, "unknown 'chmod request' setting: '%s', using default", val);
874         volume->v_flags |= AFPVOL_CHMOD_PRESERVE_ACL;
875     }
876
877     /*
878      * Handle read-only behaviour. semantics:
879      * 1) neither the rolist nor the rwlist exist -> rw
880      * 2) rolist exists -> ro if user is in it.
881      * 3) rwlist exists -> ro unless user is in it.
882      * 4) cnid scheme = last -> ro forcibly.
883      */
884     if (pwd) {
885         if (accessvol(obj, getoption(obj->iniconfig, section, "rolist", preset, NULL), pwd->pw_name) == 1
886             || accessvol(obj, getoption(obj->iniconfig, section, "rwlist", preset, NULL), pwd->pw_name) == 0)
887             volume->v_flags |= AFPVOL_RO;
888     }
889     if (0 == strcmp(volume->v_cnidscheme, "last"))
890         volume->v_flags |= AFPVOL_RO;
891
892     if ((volume->v_flags & AFPVOL_NODEV))
893         volume->v_ad_options |= ADVOL_NODEV;
894     if ((volume->v_flags & AFPVOL_UNIX_PRIV))
895         volume->v_ad_options |= ADVOL_UNIXPRIV;
896     if ((volume->v_flags & AFPVOL_INV_DOTS))
897         volume->v_ad_options |= ADVOL_INVDOTS;
898     if ((volume->v_flags & AFPVOL_FOLLOWSYM))
899         volume->v_ad_options |= ADVOL_FOLLO_SYML;
900     if ((volume->v_flags & AFPVOL_RO))
901         volume->v_ad_options |= ADVOL_RO;
902     if ((volume->v_flags & AFPVOL_FORCE_STICKY_XATTR))
903         volume->v_ad_options |= ADVOL_FORCE_STICKY_XATTR;
904
905     /* Mac to Unix conversion flags*/
906     if ((volume->v_flags & AFPVOL_EILSEQ))
907         volume->v_mtou_flags |= CONV__EILSEQ;
908
909     if ((volume->v_casefold & AFPVOL_MTOUUPPER))
910         volume->v_mtou_flags |= CONV_TOUPPER;
911     else if ((volume->v_casefold & AFPVOL_MTOULOWER))
912         volume->v_mtou_flags |= CONV_TOLOWER;
913
914     /* Unix to Mac conversion flags*/
915     volume->v_utom_flags = CONV_IGNORE;
916     if ((volume->v_casefold & AFPVOL_UTOMUPPER))
917         volume->v_utom_flags |= CONV_TOUPPER;
918     else if ((volume->v_casefold & AFPVOL_UTOMLOWER))
919         volume->v_utom_flags |= CONV_TOLOWER;
920     if ((volume->v_flags & AFPVOL_EILSEQ))
921         volume->v_utom_flags |= CONV__EILSEQ;
922
923     /* suffix for mangling use (lastvid + 1)   */
924     /* because v_vid has not been decided yet. */
925     suffixlen = sprintf(suffix, "#%X", lastvid + 1 );
926
927     /* Unicode Volume Name */
928     /* Firstly convert name from unixcharset to UTF8-MAC */
929     flags = CONV_IGNORE;
930     tmpvlen = convert_charset(obj->options.unixcharset, CH_UTF8_MAC, 0, name, vlen, tmpname, AFPVOL_U8MNAMELEN, &flags);
931     if (tmpvlen <= 0) {
932         strcpy(tmpname, "???");
933         tmpvlen = 3;
934     }
935
936     /* Do we have to mangle ? */
937     if ( (flags & CONV_REQMANGLE) || (tmpvlen > obj->options.volnamelen)) {
938         if (tmpvlen + suffixlen > obj->options.volnamelen) {
939             flags = CONV_FORCE;
940             tmpvlen = convert_charset(obj->options.unixcharset, CH_UTF8_MAC, 0, name, vlen, tmpname, obj->options.volnamelen - suffixlen, &flags);
941             tmpname[tmpvlen >= 0 ? tmpvlen : 0] = 0;
942         }
943         strcat(tmpname, suffix);
944         tmpvlen = strlen(tmpname);
945     }
946
947     /* Secondly convert name from UTF8-MAC to UCS2 */
948     if ( 0 >= ( u8mvlen = convert_string(CH_UTF8_MAC, CH_UCS2, tmpname, tmpvlen, u8mtmpname, AFPVOL_U8MNAMELEN*2)) )
949         EC_FAIL;
950
951     LOG(log_maxdebug, logtype_afpd, "creatvol: Volume '%s' -> UTF8-MAC Name: '%s'", name, tmpname);
952
953     /* Maccharset Volume Name */
954     /* Firsty convert name from unixcharset to maccharset */
955     flags = CONV_IGNORE;
956     tmpvlen = convert_charset(obj->options.unixcharset, obj->options.maccharset, 0, name, vlen, tmpname, AFPVOL_U8MNAMELEN, &flags);
957     if (tmpvlen <= 0) {
958         strcpy(tmpname, "???");
959         tmpvlen = 3;
960     }
961
962     /* Do we have to mangle ? */
963     if ( (flags & CONV_REQMANGLE) || (tmpvlen > AFPVOL_MACNAMELEN)) {
964         if (tmpvlen + suffixlen > AFPVOL_MACNAMELEN) {
965             flags = CONV_FORCE;
966             tmpvlen = convert_charset(obj->options.unixcharset,
967                                       obj->options.maccharset,
968                                       0,
969                                       name,
970                                       vlen,
971                                       tmpname,
972                                       AFPVOL_MACNAMELEN - suffixlen,
973                                       &flags);
974             tmpname[tmpvlen >= 0 ? tmpvlen : 0] = 0;
975         }
976         strcat(tmpname, suffix);
977         tmpvlen = strlen(tmpname);
978     }
979
980     /* Secondly convert name from maccharset to UCS2 */
981     if ( 0 >= ( macvlen = convert_string(obj->options.maccharset,
982                                          CH_UCS2,
983                                          tmpname,
984                                          tmpvlen,
985                                          mactmpname,
986                                          AFPVOL_U8MNAMELEN*2)) )
987         EC_FAIL;
988
989     LOG(log_maxdebug, logtype_afpd, "creatvol: Volume '%s' ->  Longname: '%s'", name, tmpname);
990
991     EC_NULL( volume->v_localname = strdup(name) );
992     EC_NULL( volume->v_u8mname = strdup_w(u8mtmpname) );
993     EC_NULL( volume->v_macname = strdup_w(mactmpname) );
994     EC_NULL( volume->v_path = strdup(path) ); 
995         
996     volume->v_name = utf8_encoding(obj) ? volume->v_u8mname : volume->v_macname;
997
998 #ifdef __svr4__
999     volume->v_qfd = -1;
1000 #endif /* __svr4__ */
1001
1002     /* os X start at 1 and use network order ie. 1 2 3 */
1003     volume->v_vid = ++lastvid;
1004     volume->v_vid = htons(volume->v_vid);
1005
1006 #ifdef HAVE_ACLS
1007     if (!check_vol_acl_support(volume)) {
1008         LOG(log_debug, logtype_afpd, "creatvol(\"%s\"): disabling ACL support", volume->v_path);
1009         volume->v_flags &= ~AFPVOL_ACLS;
1010     }
1011 #endif
1012
1013     /* Check EA support on volume */
1014     if (volume->v_vfs_ea == AFPVOL_EA_AUTO || volume->v_adouble == AD_VERSION_EA)
1015         check_ea_support(volume);
1016     initvol_vfs(volume);
1017
1018     /* get/store uuid from file in afpd master*/
1019     become_root();
1020     char *uuid = get_vol_uuid(obj, volume->v_localname);
1021     unbecome_root();
1022     if (!uuid) {
1023         LOG(log_error, logtype_afpd, "Volume '%s': couldn't get UUID",
1024             volume->v_localname);
1025     } else {
1026         volume->v_uuid = uuid;
1027         LOG(log_debug, logtype_afpd, "Volume '%s': UUID '%s'",
1028             volume->v_localname, volume->v_uuid);
1029     }
1030
1031     /* no errors shall happen beyond this point because the cleanup would mess the volume chain up */
1032     volume->v_next = Volumes;
1033     Volumes = volume;
1034     volume->v_obj = obj;
1035
1036 EC_CLEANUP:
1037     LOG(log_debug, logtype_afpd, "creatvol: END: %d", ret);
1038     if (dbpath)
1039         bdestroy(dbpath);
1040     if (global_path_tmp)
1041         bdestroy(global_path_tmp);
1042     if (ret != 0) {
1043         if (volume)
1044             volume_free(volume);
1045         return NULL;
1046     }
1047     return volume;
1048 }
1049
1050 /* ----------------------
1051  */
1052 static int volfile_changed(AFPObj *obj)
1053 {
1054     struct stat st;
1055     struct afp_options *p = &obj->options;
1056     int result;
1057     const char *includefile;
1058
1059     result = stat(p->configfile, &st);
1060     if (result != 0) {
1061         LOG(log_debug, logtype_afpd, "where is the config file %s ?",
1062             p->configfile);
1063         /*
1064          * We return 1 which means "config file changed". The caller
1065          * will re-read config and fail too which is what we want.
1066          */
1067         return 1;
1068     }
1069
1070     if (st.st_mtime > p->volfile.mtime) {
1071         p->volfile.mtime = st.st_mtime;
1072         return 1;
1073     }
1074
1075     includefile = atalk_iniparser_getstring(obj->iniconfig, INISEC_GLOBAL,
1076                                             "include", NULL);
1077     if (includefile) {
1078         result = stat(includefile, &st);
1079         if (result != 0) {
1080             LOG(log_debug, logtype_afpd, "where is the include file %s ?",
1081                 includefile);
1082             return 1;
1083         }
1084
1085         if (st.st_mtime > p->includefile.mtime) {
1086             p->includefile.mtime = st.st_mtime;
1087             return 1;
1088         }
1089     }
1090
1091     return 0;
1092 }
1093
1094 static int vol_section(const char *sec)
1095 {
1096     if (STRCMP(sec, ==, INISEC_GLOBAL))
1097         return 0;
1098     return 1;
1099 }
1100
1101 #define MAXPRESETLEN 100
1102 /*!
1103  * Read volumes from iniconfig and add the volumes contained within to
1104  * the global volume list. This gets called from the forked afpd childs.
1105  * The master now reads this too for Zeroconf announcements.
1106  */
1107 static int readvolfile(AFPObj *obj, const struct passwd *pwent)
1108 {
1109     EC_INIT;
1110     static int regexerr = -1;
1111     static regex_t reg;
1112     char        *realvolpath;
1113     char        volname[AFPVOL_U8MNAMELEN + 1];
1114     char        path[MAXPATHLEN + 1], tmp[MAXPATHLEN + 1];
1115     const char  *preset, *default_preset, *p, *basedir;
1116     int         i;
1117     regmatch_t match[1];
1118
1119     LOG(log_debug, logtype_afpd, "readvolfile: BEGIN");
1120
1121     int secnum = atalk_iniparser_getnsec(obj->iniconfig);    
1122     LOG(log_debug, logtype_afpd, "readvolfile: sections: %d", secnum);
1123     const char *secname;
1124
1125     if ((default_preset = atalk_iniparser_getstring(obj->iniconfig, INISEC_GLOBAL, "vol preset", NULL))) {
1126         LOG(log_debug, logtype_afpd, "readvolfile: default_preset: %s", default_preset);
1127     }
1128
1129     for (i = 0; i < secnum; i++) { 
1130         secname = atalk_iniparser_getsecname(obj->iniconfig, i);
1131
1132         if (!vol_section(secname))
1133             continue;
1134         if (STRCMP(secname, ==, INISEC_HOMES)) {
1135             have_uservol = 1;
1136             if (!IS_AFP_SESSION(obj)
1137                 || strcmp(obj->username, obj->options.guest) == 0)
1138                 /* not an AFP session, but cnid daemon, dbd or ad util, or guest login */
1139                 continue;
1140             if (pwent->pw_dir == NULL || STRCMP("", ==, pwent->pw_dir)) {
1141                 LOG(log_debug, logtype_afpd, "readvolfile: pwent->pw_dir: NULL or \"\" - no user home");
1142                 continue;
1143             }
1144             LOG(log_debug, logtype_afpd, "readvolfile: pwent->pw_dir: '%s'", pwent->pw_dir);
1145
1146             if ((realpath(pwent->pw_dir, tmp)) == NULL) {
1147                 LOG(log_debug, logtype_afpd, "readvolfile: Cannot get realpath '%s' (%s).", pwent->pw_dir, strerror(errno));
1148                 continue;
1149             }
1150             LOG(log_debug, logtype_afpd, "readvolfile: realpath pwent->pw_dir: '%s'", tmp);
1151
1152             /* check if user home matches our "basedir regex" */
1153             if ((basedir = atalk_iniparser_getstring(obj->iniconfig, INISEC_HOMES, "basedir regex", NULL)) == NULL) {
1154                 LOG(log_error, logtype_afpd, "\"basedir regex =\" must be defined in [Homes] section");
1155                 continue;
1156             }
1157             LOG(log_debug, logtype_afpd, "readvolfile: basedir regex: '%s'", basedir);
1158
1159             if (regexerr != 0 && (regexerr = regcomp(&reg, basedir, REG_EXTENDED)) != 0) {
1160                 char errbuf[1024];
1161                 regerror(regexerr, &reg, errbuf, sizeof(errbuf));
1162                 LOG(log_debug, logtype_default, "readvolfile: bad basedir regex: %s", errbuf);
1163                 continue;
1164             }
1165
1166             if (regexec(&reg, tmp, 1, match, 0) == REG_NOMATCH) {
1167                 LOG(log_error, logtype_default, "readvolfile: user home \"%s\" doesn't match basedir regex \"%s\"",
1168                     tmp, basedir);
1169                 continue;
1170             }
1171
1172             if ((p = atalk_iniparser_getstring(obj->iniconfig, INISEC_HOMES, "path", NULL))) {
1173                 strlcat(tmp, "/", MAXPATHLEN);
1174                 strlcat(tmp, p, MAXPATHLEN);
1175             }
1176         } else {
1177             /* Get path */
1178             if ((p = atalk_iniparser_getstring(obj->iniconfig, secname, "path", NULL)) == NULL)
1179                 continue;
1180             strlcpy(tmp, p, MAXPATHLEN);
1181         }
1182
1183         if (volxlate(obj, path, sizeof(path) - 1, tmp, pwent, NULL, NULL) == NULL)
1184             continue;
1185
1186         /* do variable substitution for volume name */
1187         if (STRCMP(secname, ==, INISEC_HOMES)) {
1188             p = atalk_iniparser_getstring(obj->iniconfig, INISEC_HOMES, "home name", "$u's home");
1189             if (strstr(p, "$u") == NULL) {
1190                 LOG(log_warning, logtype_afpd, "home name must contain $u.");
1191                 p = "$u's home";
1192             }
1193             if (strchr(p, ':') != NULL) {
1194                 LOG(log_warning, logtype_afpd, "home name must not contain \":\".");
1195                 p = "$u's home";
1196             }
1197             strlcpy(tmp, p, MAXPATHLEN);
1198         } else {
1199             strlcpy(tmp, secname, AFPVOL_U8MNAMELEN);
1200         }
1201         if (volxlate(obj, volname, sizeof(volname) - 1, tmp, pwent, path, NULL) == NULL)
1202             continue;
1203
1204         preset = atalk_iniparser_getstring(obj->iniconfig, secname, "vol preset", NULL);
1205
1206         if ((realvolpath = realpath_safe(path)) == NULL)
1207             continue;
1208
1209         creatvol(obj, pwent, secname, volname, realvolpath, preset ? preset : default_preset ? default_preset : NULL);
1210         free(realvolpath);
1211     }
1212
1213 // EC_CLEANUP:
1214     EC_EXIT;
1215 }
1216
1217 static struct extmap    *Extmap = NULL, *Defextmap = NULL;
1218 static int              Extmap_cnt;
1219
1220 static int setextmap(char *ext, char *type, char *creator)
1221 {
1222     EC_INIT;
1223     struct extmap *em;
1224     int           cnt;
1225
1226     if (Extmap == NULL) {
1227         EC_NULL_LOG( Extmap = calloc(1, sizeof( struct extmap )) );
1228     }
1229
1230     ext++;
1231
1232     for (em = Extmap, cnt = 0; em->em_ext; em++, cnt++)
1233         if ((strdiacasecmp(em->em_ext, ext)) == 0)
1234             goto EC_CLEANUP;
1235
1236     EC_NULL_LOG( Extmap = realloc(Extmap, sizeof(struct extmap) * (cnt + 2)) );
1237     (Extmap + cnt + 1)->em_ext = NULL;
1238     em = Extmap + cnt;
1239
1240     EC_NULL( em->em_ext = strdup(ext) );
1241
1242     if ( *type == '\0' ) {
1243         memcpy(em->em_type, "\0\0\0\0", sizeof( em->em_type ));
1244     } else {
1245         memcpy(em->em_type, type, sizeof( em->em_type ));
1246     }
1247     if ( *creator == '\0' ) {
1248         memcpy(em->em_creator, "\0\0\0\0", sizeof( em->em_creator ));
1249     } else {
1250         memcpy(em->em_creator, creator, sizeof( em->em_creator ));
1251     }
1252
1253 EC_CLEANUP:
1254     EC_EXIT;
1255 }
1256
1257 /* -------------------------- */
1258 static int extmap_cmp(const void *map1, const void *map2)
1259 {
1260     const struct extmap *em1 = map1;
1261     const struct extmap *em2 = map2;
1262     return strdiacasecmp(em1->em_ext, em2->em_ext);
1263 }
1264
1265 static void sortextmap( void)
1266 {
1267     struct extmap   *em;
1268
1269     Extmap_cnt = 0;
1270     if ((em = Extmap) == NULL) {
1271         return;
1272     }
1273     while (em->em_ext) {
1274         em++;
1275         Extmap_cnt++;
1276     }
1277     if (Extmap_cnt) {
1278         qsort(Extmap, Extmap_cnt, sizeof(struct extmap), extmap_cmp);
1279         if (*Extmap->em_ext == 0) {
1280             /* the first line is really "." the default entry,
1281              * we remove the leading '.' in setextmap
1282              */
1283             Defextmap = Extmap;
1284         }
1285     }
1286 }
1287
1288 static void free_extmap( void)
1289 {
1290     struct extmap   *em;
1291
1292     if (Extmap) {
1293         for ( em = Extmap; em->em_ext; em++) {
1294             free (em->em_ext);
1295         }
1296         free(Extmap);
1297         Extmap = NULL;
1298         Defextmap = Extmap;
1299         Extmap_cnt = 0;
1300     }
1301 }
1302
1303 static int ext_cmp_key(const void *key, const void *obj)
1304 {
1305     const char          *p = key;
1306     const struct extmap *em = obj;
1307     return strdiacasecmp(p, em->em_ext);
1308 }
1309
1310 struct extmap *getextmap(const char *path)
1311 {
1312     char      *p;
1313     struct extmap *em;
1314
1315     if (!Extmap_cnt || NULL == ( p = strrchr( path, '.' )) ) {
1316         return( Defextmap );
1317     }
1318     p++;
1319     if (!*p) {
1320         return( Defextmap );
1321     }
1322     em = bsearch(p, Extmap, Extmap_cnt, sizeof(struct extmap), ext_cmp_key);
1323     if (em) {
1324         return( em );
1325     } else {
1326         return( Defextmap );
1327     }
1328 }
1329
1330 struct extmap *getdefextmap(void)
1331 {
1332     return( Defextmap );
1333 }
1334
1335 static int readextmap(const char *file)
1336 {
1337     EC_INIT;
1338     FILE        *fp;
1339     char        ext[256];
1340     char        buf[256];
1341     char        type[5], creator[5];
1342
1343     LOG(log_debug, logtype_afpd, "readextmap: loading \"%s\"", file);
1344
1345     EC_NULL_LOGSTR( fp = fopen(file, "r"), "Couldn't open extension maping file %s", file);
1346
1347     while (fgets(buf, sizeof(buf), fp) != NULL) {
1348         initline(strlen(buf), buf);
1349         parseline(sizeof(ext) - 1, ext);
1350
1351         switch (ext[0]) {
1352         case '.' :
1353             parseline(sizeof(type) - 1, type);
1354             parseline(sizeof(creator) - 1, creator);
1355             setextmap(ext, type, creator);
1356             LOG(log_debug, logtype_afpd, "readextmap: mapping: '%s' -> %s/%s", ext, type, creator);
1357             break;
1358         }
1359     }
1360
1361     sortextmap();
1362     EC_ZERO( fclose(fp) );
1363
1364     LOG(log_debug, logtype_afpd, "readextmap: done", file);
1365
1366 EC_CLEANUP:
1367     EC_EXIT;
1368 }
1369
1370 /**************************************************************
1371  * API functions
1372  **************************************************************/
1373
1374 /*!
1375  * Remove a volume from the linked list of volumes
1376  */
1377 void volume_unlink(struct vol *volume)
1378 {
1379     struct vol *vol, *ovol, *nvol;
1380
1381     if (volume == Volumes) {
1382         Volumes = NULL;
1383         return;
1384     }
1385     for ( vol = Volumes->v_next, ovol = Volumes; vol; vol = nvol) {
1386         nvol = vol->v_next;
1387
1388         if (vol == volume) {
1389             ovol->v_next = nvol;
1390             break;
1391         }
1392         else {
1393             ovol = vol;
1394         }
1395     }
1396 }
1397
1398 /*!
1399  * Free all resources allocated in a struct vol in load_volumes()
1400  *
1401  * Actually opening a volume (afp_openvol()) will allocate additional
1402  * ressources which are freed in closevol()
1403  */
1404 void volume_free(struct vol *vol)
1405 {
1406     free(vol->v_configname);
1407     free(vol->v_localname);
1408     free(vol->v_u8mname);
1409     free(vol->v_macname);
1410     free(vol->v_path);
1411     free(vol->v_password);
1412     free(vol->v_veto);
1413     free(vol->v_volcodepage);
1414     free(vol->v_maccodepage);
1415     free(vol->v_cnidscheme);
1416     free(vol->v_dbpath);
1417     free(vol->v_gvs);
1418     free(vol->v_uuid);
1419     free(vol->v_cnidserver);
1420     free(vol->v_cnidport);
1421     free(vol->v_preexec);
1422     free(vol->v_root_preexec);
1423     free(vol->v_postexec);
1424     free(vol->v_root_postexec);
1425
1426     free(vol);
1427 }
1428
1429 /*!
1430  * Load charsets for a volume
1431  */
1432 int load_charset(struct vol *vol)
1433 {
1434     if ((vol->v_maccharset = add_charset(vol->v_maccodepage)) == (charset_t)-1) {
1435         LOG(log_error, logtype_default, "Setting mac charset '%s' failed", vol->v_maccodepage);
1436         return -1;
1437     }
1438
1439     if ((vol->v_volcharset = add_charset(vol->v_volcodepage)) == (charset_t)-1) {
1440         LOG(log_error, logtype_default, "Setting vol charset '%s' failed", vol->v_volcodepage);
1441         return -1;
1442     }
1443
1444     return 0;
1445 }
1446
1447 /*!
1448  * Initialize volumes and load ini configfile
1449  *
1450  * @param obj      (r) handle
1451  * @param flags    (r) flags controlling volume load behaviour
1452  */
1453 int load_volumes(AFPObj *obj, lv_flags_t flags)
1454 {
1455     EC_INIT;
1456
1457     static long         bufsize;
1458     static char        *pwbuf = NULL;
1459
1460     int                 fd = -1;
1461     struct passwd       pwent;
1462     struct passwd      *pwresult = NULL;
1463     struct stat         st;
1464     int                 retries = 0;
1465     struct vol         *vol;
1466     char               *includefile;
1467
1468     LOG(log_debug, logtype_afpd, "load_volumes: BEGIN");
1469
1470     if (pwbuf == NULL) {
1471         bufsize = sysconf(_SC_GETPW_R_SIZE_MAX);
1472         if (bufsize == -1)          /* Value was indeterminate */
1473             bufsize = 16384;        /* Should be more than enough */
1474         EC_NULL( pwbuf = malloc(bufsize) );
1475     }
1476
1477     if (!(flags & lv_all) && obj->uid) {
1478         ret = getpwuid_r(obj->uid, &pwent, pwbuf, bufsize, &pwresult);
1479         if (pwresult == NULL) {
1480             LOG(log_error, logtype_afpd, "load_volumes: getpwuid_r: %s", strerror(errno));
1481             EC_FAIL;
1482         }
1483         pwresult = &pwent;
1484     }
1485
1486     if (Volumes) {
1487         if (!volfile_changed(obj))
1488             goto EC_CLEANUP;
1489         have_uservol = 0;
1490         for (vol = Volumes; vol; vol = vol->v_next) {
1491             vol->v_deleted = 1;
1492         }
1493         if (obj->uid && pwresult) {
1494             become_root();
1495             ret = set_groups(obj, pwresult);
1496             unbecome_root();
1497             if (ret != 0) {
1498                 LOG(log_error, logtype_afpd, "load_volumes: set_groups: %s", strerror(errno));
1499                 EC_FAIL;
1500             }
1501         }
1502     } else {
1503         LOG(log_debug, logtype_afpd, "load_volumes: no volumes yet");
1504         EC_ZERO_LOG( lstat(obj->options.configfile, &st) );
1505         obj->options.volfile.mtime = st.st_mtime;
1506
1507         includefile = atalk_iniparser_getstring(obj->iniconfig, INISEC_GLOBAL,
1508                                                 "include", NULL);
1509         if (includefile) {
1510             EC_ZERO_LOG( stat(includefile, &st) );
1511             obj->options.includefile.mtime = st.st_mtime;
1512         }
1513     }
1514
1515     /* try putting a read lock on the volume file twice, sleep 1 second if first attempt fails */
1516
1517     fd = open(obj->options.configfile, O_RDONLY);
1518
1519     while (retries < 2) {
1520         if ((read_lock(fd, 0, SEEK_SET, 0)) != 0) {
1521             retries++;
1522             if (!retries) {
1523                 LOG(log_error, logtype_afpd, "readvolfile: can't lock configfile \"%s\"",
1524                     obj->options.configfile);
1525                 EC_FAIL;
1526             }
1527             sleep(1);
1528             continue;
1529         }
1530         break;
1531     }
1532
1533     if (obj->iniconfig)
1534         atalk_iniparser_freedict(obj->iniconfig);
1535     LOG(log_debug, logtype_afpd, "load_volumes: loading: %s", obj->options.configfile);
1536     obj->iniconfig = atalk_iniparser_load(obj->options.configfile);
1537
1538     EC_ZERO_LOG( readvolfile(obj, pwresult) );
1539
1540     struct vol *p, *prevvol;
1541
1542     vol = Volumes;
1543     prevvol = NULL;
1544
1545     while (vol) {
1546         if (vol->v_deleted && !(vol->v_flags & AFPVOL_OPEN)) {
1547             LOG(log_debug, logtype_afpd, "load_volumes: deleted: %s", vol->v_localname);
1548             if (prevvol)
1549                 prevvol->v_next = vol->v_next;
1550             else
1551                 Volumes = NULL;
1552             p = vol->v_next;
1553             volume_free(vol);
1554             vol = p;
1555         } else {
1556             prevvol = vol;
1557             vol = vol->v_next;
1558         }
1559     }
1560
1561 EC_CLEANUP:
1562     if (fd != -1)
1563         (void)close(fd);
1564
1565     LOG(log_debug, logtype_afpd, "load_volumes: END");
1566     EC_EXIT;
1567 }
1568
1569 void unload_volumes(AFPObj *obj)
1570 {
1571     struct vol *vol, *p;
1572
1573     LOG(log_debug, logtype_afpd, "unload_volumes: BEGIN");
1574
1575     p = Volumes;
1576     while (p) {
1577         vol = p;
1578         p = vol->v_next;
1579         volume_free(vol);
1580     }
1581     Volumes = NULL;
1582     obj->options.volfile.mtime = 0;
1583     
1584     LOG(log_debug, logtype_afpd, "unload_volumes: END");
1585 }
1586
1587 struct vol *getvolumes(void)
1588 {
1589     return Volumes;
1590 }
1591
1592 struct vol *getvolbyvid(const uint16_t vid )
1593 {
1594     struct vol  *vol;
1595
1596     for ( vol = Volumes; vol; vol = vol->v_next ) {
1597         if ( vid == vol->v_vid ) {
1598             break;
1599         }
1600     }
1601     if ( vol == NULL || ( vol->v_flags & AFPVOL_OPEN ) == 0 ) {
1602         return( NULL );
1603     }
1604
1605     return( vol );
1606 }
1607
1608 /*
1609  * get username by path
1610  * 
1611  * getvolbypath() assumes that the user home directory has the same name as the username.
1612  * If that is not true, getuserbypath() is called and tries to retrieve the username
1613  * from the directory owner, checking its validity.
1614  * 
1615  * @param   path (r) absolute volume path
1616  * @returns NULL     if no match is found, pointer to username if successfull
1617  *
1618  */ 
1619 static char *getuserbypath(const char *path)
1620 {
1621     EC_INIT;
1622     struct stat sbuf;
1623     struct passwd  *pwd;
1624     char *hdir = NULL;
1625
1626     LOG(log_debug, logtype_afpd, "getuserbypath(\"%s\")", path);
1627
1628     /* does folder exists? */
1629     if (stat(path, &sbuf) != 0)
1630         EC_FAIL;
1631
1632     /* get uid of dir owner */
1633     if ((pwd = getpwuid(sbuf.st_uid)) == NULL)
1634         EC_FAIL;
1635
1636     /* does user home directory exists? */
1637     if (stat(pwd->pw_dir, &sbuf) != 0)
1638         EC_FAIL;
1639
1640     /* resolve and remove symlinks */
1641     if ((hdir = realpath_safe(pwd->pw_dir)) == NULL) 
1642         EC_FAIL;
1643
1644     /* handle subdirectories, path = */
1645     if (strncmp(path, hdir, strlen(hdir)) != 0)
1646         EC_FAIL;
1647
1648     LOG(log_debug, logtype_afpd, "getuserbypath: match user: %s, home: %s, realhome: %s",
1649         pwd->pw_name, pwd->pw_dir, hdir);
1650
1651 EC_CLEANUP:
1652     if (hdir)
1653         free(hdir);
1654     if (ret != 0)
1655         return NULL;
1656     return pwd->pw_name;
1657 }
1658 /*!
1659  * Search volume by path, creating user home vols as necessary
1660  *
1661  * Path may be absolute or relative. Ordinary volume structs are created when
1662  * the ini config is initially parsed (load_volumes()), but user volumes are
1663  * as load_volumes() only can create the user volume of the logged in user
1664  * in an AFP session in afpd, but not when called from eg cnid_metad or dbd.
1665  * Both cnid_metad and dbd thus need a way to lookup and create struct vols
1666  * for user home by path. This is what this func does as well.
1667  *
1668  * (1) Search "normal" volume list 
1669  * (2) Check if theres a [Homes] section, load_volumes() remembers this for us
1670  * (3) If there is, match "path" with "basedir regex" to get the user home parent dir
1671  * (4) Built user home path by appending the basedir matched in (3) and appending the username
1672  * (5) The next path element then is the username
1673  * (5b) getvolbypath() assumes that the user home directory has the same name as the username.
1674  *     If that is not true, getuserbypath() is called and tries to retrieve the username
1675  *     from the directory owner, checking its validity
1676  * (6) Append [Homes]->path subdirectory if defined
1677  * (7) Create volume
1678  *
1679  * @param obj  (rw) handle
1680  * @param path (r)  path, may be relative or absolute
1681  */
1682 struct vol *getvolbypath(AFPObj *obj, const char *path)
1683 {
1684     EC_INIT;
1685     static int regexerr = -1;
1686     static regex_t reg;
1687     struct vol *vol;
1688     struct vol *tmp;
1689     const struct passwd *pw;
1690     char        volname[AFPVOL_U8MNAMELEN + 1];
1691     char        *realabspath = NULL;
1692     char        volpath[MAXPATHLEN + 1], *realvolpath = NULL;
1693     char        tmpbuf[MAXPATHLEN + 1];
1694     const char *secname, *basedir, *p = NULL, *subpath = NULL, *subpathconfig;
1695     char *user = NULL, *prw;
1696     regmatch_t match[1];
1697
1698     LOG(log_debug, logtype_afpd, "getvolbypath(\"%s\")", path);
1699
1700     /*  build absolute path */
1701     EC_NULL( realabspath = realpath_safe(path) );
1702     path = realabspath;
1703
1704     for (tmp = Volumes; tmp; tmp = tmp->v_next) { /* (1) */
1705         size_t v_path_len = strlen(tmp->v_path);
1706         if (strncmp(path, tmp->v_path, v_path_len) == 0) {
1707             if (v_path_len < strlen(path) && path[v_path_len] != '/') {
1708                 LOG(log_debug, logtype_afpd, "getvolbypath: path(\"%s\") != volume(\"%s\")", path, tmp->v_path);
1709             } else {
1710                 LOG(log_debug, logtype_afpd, "getvolbypath: path(\"%s\") == volume(\"%s\")", path, tmp->v_path);
1711                 vol = tmp;
1712                 goto EC_CLEANUP;
1713             }
1714         } else {
1715             LOG(log_debug, logtype_afpd, "getvolbypath: path(\"%s\") != volume(\"%s\")", path, tmp->v_path);
1716         }
1717     }
1718
1719     if (!have_uservol) /* (2) */
1720         EC_FAIL_LOG("getvolbypath(\"%s\"): no volume for path", path);
1721
1722     int secnum = atalk_iniparser_getnsec(obj->iniconfig);
1723
1724     for (int i = 0; i < secnum; i++) { 
1725         secname = atalk_iniparser_getsecname(obj->iniconfig, i);
1726         if (STRCMP(secname, ==, INISEC_HOMES))
1727             break;
1728     }
1729
1730     if (STRCMP(secname, !=, INISEC_HOMES))
1731         EC_FAIL_LOG("getvolbypath(\"%s\"): no volume for path", path);
1732
1733     /* (3) */
1734     EC_NULL_LOG( basedir = atalk_iniparser_getstring(obj->iniconfig, INISEC_HOMES, "basedir regex", NULL) );
1735     LOG(log_debug, logtype_afpd, "getvolbypath: user home section: '%s', basedir: '%s'", secname, basedir);
1736
1737     if (regexerr != 0 && (regexerr = regcomp(&reg, basedir, REG_EXTENDED)) != 0) {
1738         char errbuf[1024];
1739         regerror(regexerr, &reg, errbuf, sizeof(errbuf));
1740         printf("error: %s\n", errbuf);
1741         EC_FAIL_LOG("getvolbypath(\"%s\"): bad basedir regex: %s", errbuf);
1742     }
1743
1744     if (regexec(&reg, path, 1, match, 0) == REG_NOMATCH)
1745         EC_FAIL_LOG("getvolbypath(\"%s\"): no volume for path", path);
1746
1747     if (match[0].rm_eo - match[0].rm_so > MAXPATHLEN)
1748         EC_FAIL_LOG("getvolbypath(\"%s\"): path too long", path);
1749
1750     /* (4) */
1751     strncpy(tmpbuf, path + match[0].rm_so, match[0].rm_eo - match[0].rm_so);
1752     tmpbuf[match[0].rm_eo - match[0].rm_so] = 0;
1753
1754     LOG(log_debug, logtype_afpd, "getvolbypath: basedir regex: '%s', basedir match: \"%s\"",
1755         basedir, tmpbuf);
1756
1757     strlcat(tmpbuf, "/", MAXPATHLEN);
1758
1759     /* (5) */
1760     p = path + match[0].rm_eo - match[0].rm_so;
1761     while (*p == '/')
1762         p++;
1763     EC_NULL_LOG( user = strdup(p) );
1764
1765     if ((prw = strchr(user, '/')))
1766         *prw++ = 0;
1767     if (prw != 0)
1768         subpath = prw;
1769
1770     strlcat(tmpbuf, user, MAXPATHLEN);
1771     if ((pw = getpwnam(user)) == NULL) {
1772         /* (5b) */
1773         char *tuser;
1774         if ((tuser = getuserbypath(tmpbuf)) != NULL) {
1775             free(user);
1776             user = strdup(tuser);
1777         }
1778         if ((pw = getpwnam(user)) == NULL)
1779             EC_FAIL_LOG("unknown user: %s", user);
1780     }
1781     strlcpy(obj->username, user, MAXUSERLEN);
1782     strlcat(tmpbuf, "/", MAXPATHLEN);
1783
1784     /* (6) */
1785     if ((subpathconfig = atalk_iniparser_getstring(obj->iniconfig, INISEC_HOMES, "path", NULL))) {
1786         /*
1787         if (!subpath || strncmp(subpathconfig, subpath, strlen(subpathconfig)) != 0) {
1788             EC_FAIL;
1789         }
1790         */
1791         strlcat(tmpbuf, subpathconfig, MAXPATHLEN);
1792         strlcat(tmpbuf, "/", MAXPATHLEN);
1793     }
1794
1795
1796     /* (7) */
1797     if (volxlate(obj, volpath, sizeof(volpath) - 1, tmpbuf, pw, NULL, NULL) == NULL)
1798         EC_FAIL;
1799
1800     EC_NULL( realvolpath = realpath_safe(volpath) );
1801     EC_NULL( pw = getpwnam(user) );
1802
1803     LOG(log_debug, logtype_afpd, "getvolbypath(\"%s\"): user: %s, homedir: %s => realvolpath: \"%s\"",
1804         path, user, pw->pw_dir, realvolpath);
1805
1806     /* do variable substitution for volume name */
1807     p = atalk_iniparser_getstring(obj->iniconfig, INISEC_HOMES, "home name", "$u's home");
1808     if (strstr(p, "$u") == NULL)
1809         p = "$u's home";
1810     strlcpy(tmpbuf, p, AFPVOL_U8MNAMELEN);
1811     EC_NULL_LOG( volxlate(obj, volname, sizeof(volname) - 1, tmpbuf, pw, realvolpath, NULL) );
1812
1813     const char  *preset, *default_preset;
1814     default_preset = atalk_iniparser_getstring(obj->iniconfig, INISEC_GLOBAL, "vol preset", NULL);
1815     preset = atalk_iniparser_getstring(obj->iniconfig, INISEC_HOMES, "vol preset", NULL);
1816
1817     vol = creatvol(obj, pw, INISEC_HOMES, volname, realvolpath, preset ? preset : default_preset ? default_preset : NULL);
1818
1819 EC_CLEANUP:
1820     if (user)
1821         free(user);
1822     if (realvolpath)
1823         free(realvolpath);
1824     if (realabspath)
1825         free(realabspath);
1826     if (ret != 0)
1827         vol = NULL;
1828     return vol;
1829 }
1830
1831 struct vol *getvolbyname(const char *name)
1832 {
1833     struct vol *vol = NULL;
1834     struct vol *tmp;
1835
1836     for (tmp = Volumes; tmp; tmp = tmp->v_next) {
1837         if (strncmp(name, tmp->v_configname, strlen(tmp->v_configname)) == 0) {
1838             vol = tmp;
1839             break;
1840         }
1841     }
1842     return vol;
1843 }
1844
1845 #define MAXVAL 1024
1846 /*!
1847  * Initialize an AFPObj and options from ini config file
1848  */
1849 int afp_config_parse(AFPObj *AFPObj, char *processname)
1850 {
1851     EC_INIT;
1852     dictionary *config;
1853     struct afp_options *options = &AFPObj->options;
1854     int c;
1855     const char *p;
1856     char *q, *r;
1857     char val[MAXVAL];
1858
1859     if (processname != NULL)
1860         set_processname(processname);
1861
1862     AFPObj->afp_version = 11;
1863     options->configfile  = AFPObj->cmdlineconfigfile ? strdup(AFPObj->cmdlineconfigfile) : strdup(_PATH_CONFDIR "afp.conf");
1864     options->sigconffile = strdup(_PATH_STATEDIR "afp_signature.conf");
1865     options->uuidconf    = strdup(_PATH_STATEDIR "afp_voluuid.conf");
1866     options->flags       = OPTION_UUID | AFPObj->cmdlineflags;
1867     
1868     if ((config = atalk_iniparser_load(AFPObj->options.configfile)) == NULL)
1869         return -1;
1870     AFPObj->iniconfig = config;
1871
1872     /* [Global] */
1873     options->logconfig = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "log level", "default:note");
1874     options->logfile   = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "log file",  NULL);
1875
1876     setuplog(options->logconfig, options->logfile);
1877
1878     /* "server options" boolean options */
1879     if (!atalk_iniparser_getboolean(config, INISEC_GLOBAL, "zeroconf", 1))
1880         options->flags |= OPTION_NOZEROCONF;
1881     if (atalk_iniparser_getboolean(config, INISEC_GLOBAL, "advertise ssh", 0))
1882         options->flags |= OPTION_ANNOUNCESSH;
1883     if (atalk_iniparser_getboolean(config, INISEC_GLOBAL, "close vol", 0))
1884         options->flags |= OPTION_CLOSEVOL;
1885     if (!atalk_iniparser_getboolean(config, INISEC_GLOBAL, "client polling", 0))
1886         options->flags |= OPTION_SERVERNOTIF;
1887     if (!atalk_iniparser_getboolean(config, INISEC_GLOBAL, "use sendfile", 1))
1888         options->flags |= OPTION_NOSENDFILE;
1889     if (atalk_iniparser_getboolean(config, INISEC_GLOBAL, "recvfile", 0))
1890         options->flags |= OPTION_RECVFILE;
1891     if (atalk_iniparser_getboolean(config, INISEC_GLOBAL, "solaris share reservations", 1))
1892         options->flags |= OPTION_SHARE_RESERV;
1893     if (atalk_iniparser_getboolean(config, INISEC_GLOBAL, "afpstats", 0))
1894         options->flags |= OPTION_DBUS_AFPSTATS;
1895     if (atalk_iniparser_getboolean(config, INISEC_GLOBAL, "afp read locks", 0))
1896         options->flags |= OPTION_AFP_READ_LOCK;
1897     if (atalk_iniparser_getboolean(config, INISEC_GLOBAL, "spotlight", 0))
1898         options->flags |= OPTION_SPOTLIGHT_VOL;
1899     if (atalk_iniparser_getboolean(config, INISEC_GLOBAL, "veto message", 0))
1900         options->flags |= OPTION_VETOMSG;
1901     if (!atalk_iniparser_getboolean(config, INISEC_GLOBAL, "save password", 1))
1902         options->passwdbits |= PASSWD_NOSAVE;
1903     if (atalk_iniparser_getboolean(config, INISEC_GLOBAL, "set password", 0))
1904         options->passwdbits |= PASSWD_SET;
1905     if (atalk_iniparser_getboolean(config, INISEC_GLOBAL, "spotlight expr", 1))
1906         options->flags |= OPTION_SPOTLIGHT_EXPR;
1907
1908     /* figure out options w values */
1909     options->loginmesg      = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "login message",  NULL);
1910     options->guest          = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "guest account",  "nobody");
1911     options->extmapfile     = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "extmap file",    _PATH_CONFDIR "extmap.conf");
1912     options->passwdfile     = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "passwd file",    _PATH_AFPDPWFILE);
1913     options->uampath        = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "uam path",       _PATH_AFPDUAMPATH);
1914     options->uamlist        = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "uam list",       "uams_dhx.so uams_dhx2.so");
1915     options->port           = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "afp port",       "548");
1916     options->signatureopt   = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "signature",      "");
1917     options->k5service      = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "k5 service",     NULL);
1918     options->k5realm        = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "k5 realm",       NULL);
1919     options->listen         = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "afp listen",     NULL);
1920     options->interfaces     = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "afp interfaces", NULL);
1921     options->ntdomain       = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "nt domain",      NULL);
1922     options->addomain       = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "ad domain",      NULL);
1923     options->ntseparator    = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "nt separator",   NULL);
1924     options->mimicmodel     = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "mimic model",    NULL);
1925     options->adminauthuser  = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "admin auth user",NULL);
1926     options->ignored_attr   = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "ignored attributes", NULL);
1927     options->cnid_mysql_host = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "cnid mysql host", NULL);
1928     options->cnid_mysql_user = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "cnid mysql user", NULL);
1929     options->cnid_mysql_pw  = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "cnid mysql pw", NULL);
1930     options->cnid_mysql_db  = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "cnid mysql db", NULL);
1931     options->connections    = atalk_iniparser_getint   (config, INISEC_GLOBAL, "max connections",200);
1932     options->passwdminlen   = atalk_iniparser_getint   (config, INISEC_GLOBAL, "passwd minlen",  0);
1933     options->tickleval      = atalk_iniparser_getint   (config, INISEC_GLOBAL, "tickleval",      30);
1934     options->timeout        = atalk_iniparser_getint   (config, INISEC_GLOBAL, "timeout",        4);
1935     options->dsireadbuf     = atalk_iniparser_getint   (config, INISEC_GLOBAL, "dsireadbuf",     12);
1936     options->server_quantum = atalk_iniparser_getint   (config, INISEC_GLOBAL, "server quantum", DSI_SERVQUANT_DEF);
1937     options->volnamelen     = atalk_iniparser_getint   (config, INISEC_GLOBAL, "volnamelen",     80);
1938     options->dircachesize   = atalk_iniparser_getint   (config, INISEC_GLOBAL, "dircachesize",   DEFAULT_MAX_DIRCACHE_SIZE);
1939     options->tcp_sndbuf     = atalk_iniparser_getint   (config, INISEC_GLOBAL, "tcpsndbuf",      0);
1940     options->tcp_rcvbuf     = atalk_iniparser_getint   (config, INISEC_GLOBAL, "tcprcvbuf",      0);
1941     options->fce_fmodwait   = atalk_iniparser_getint   (config, INISEC_GLOBAL, "fce holdfmod",   60);
1942     options->sleep          = atalk_iniparser_getint   (config, INISEC_GLOBAL, "sleep time",     10);
1943     options->disconnected   = atalk_iniparser_getint   (config, INISEC_GLOBAL, "disconnect time",24);
1944     options->splice_size    = atalk_iniparser_getint   (config, INISEC_GLOBAL, "splice size",    64*1024);
1945     options->sparql_limit   = atalk_iniparser_getint   (config, INISEC_GLOBAL, "sparql results limit", 0);
1946
1947     p = atalk_iniparser_getstring(config, INISEC_GLOBAL, "map acls", "rights");
1948     if (STRCMP(p, ==, "rights"))
1949         options->flags |= OPTION_ACL2MACCESS;
1950     else if (STRCMP(p, ==, "mode"))
1951         options->flags |= OPTION_ACL2MODE | OPTION_ACL2MACCESS;
1952     else {
1953         if (STRCMP(p, !=, "none")) {
1954             LOG(log_error, logtype_afpd, "bad ACL mapping option: %s, defaulting to 'rights'", p);
1955             options->flags |= OPTION_ACL2MACCESS;
1956         }
1957     }
1958
1959     if ((p = atalk_iniparser_getstring(config, INISEC_GLOBAL, "hostname", NULL))) {
1960         EC_NULL_LOG( options->hostname = strdup(p) );
1961     } else {
1962         if (gethostname(val, sizeof(val)) < 0 ) {
1963             perror( "gethostname" );
1964             EC_FAIL;
1965         }
1966         if ((q = strchr(val, '.')))
1967             *q = '\0';
1968         options->hostname = strdup(val);
1969     }
1970
1971     if ((p = atalk_iniparser_getstring(config, INISEC_GLOBAL, "k5 keytab", NULL))) {
1972         EC_NULL_LOG( options->k5keytab = malloc(strlen(p) + 14) );
1973         snprintf(options->k5keytab, strlen(p) + 14, "KRB5_KTNAME=%s", p);
1974         putenv(options->k5keytab);
1975     }
1976
1977 #ifdef ADMIN_GRP
1978     if ((p = atalk_iniparser_getstring(config, INISEC_GLOBAL, "admin group",  NULL))) {
1979          struct group *gr = getgrnam(p);
1980          if (gr != NULL)
1981              options->admingid = gr->gr_gid;
1982     }
1983 #endif /* ADMIN_GRP */
1984
1985     q = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "cnid server", "localhost:4700");
1986     r = strrchr(q, ':');
1987     if (r)
1988         *r = 0;
1989     options->Cnid_srv = strdup(q);
1990     if (r)
1991         options->Cnid_port = strdup(r + 1);
1992     else
1993         options->Cnid_port = strdup("4700");
1994     LOG(log_debug, logtype_afpd, "CNID Server: %s:%s", options->Cnid_srv, options->Cnid_port);
1995     if (q)
1996         free(q);
1997
1998     if ((q = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "fqdn", NULL))) {
1999         /* do a little checking for the domain name. */
2000         r = strchr(q, ':');
2001         if (r)
2002             *r = '\0';
2003         if (gethostbyname(q)) {
2004             if (r)
2005                 *r = ':';
2006             EC_NULL_LOG( options->fqdn = strdup(q) );
2007         } else {
2008             LOG(log_error, logtype_afpd, "error parsing -fqdn, gethostbyname failed for: %s", q);
2009         }
2010         free(q);
2011     }
2012
2013     /* Charset Options */
2014
2015     /* unix charset is in [G] only */
2016     if (!(p = atalk_iniparser_getstring(config, INISEC_GLOBAL, "unix charset", NULL))) {
2017         options->unixcodepage = strdup("UTF8");
2018         set_charset_name(CH_UNIX, "UTF8");
2019     } else {
2020         if (strcasecmp(p, "LOCALE") == 0) {
2021 #if defined(CODESET)
2022             setlocale(LC_ALL, "");
2023             p = nl_langinfo(CODESET);
2024             LOG(log_debug, logtype_afpd, "Locale charset is '%s'", p);
2025 #else /* system doesn't have LOCALE support */
2026             LOG(log_warning, logtype_afpd, "system doesn't have LOCALE support");
2027             p = "UTF8";
2028 #endif
2029         }
2030         if (strcasecmp(p, "UTF-8") == 0) {
2031             p = "UTF8";
2032         }
2033         options->unixcodepage = strdup(p);
2034         set_charset_name(CH_UNIX, p);
2035     }
2036     options->unixcharset = CH_UNIX;
2037     LOG(log_debug, logtype_afpd, "Global unix charset is %s", options->unixcodepage);
2038
2039     /* vol charset is in [G] and [V] */
2040     if (!(p = atalk_iniparser_getstring(config, INISEC_GLOBAL, "vol charset", NULL))) {
2041         options->volcodepage = strdup(options->unixcodepage);
2042     } else {
2043         if (strcasecmp(p, "UTF-8") == 0) {
2044             p = "UTF8";
2045         }
2046         options->volcodepage = strdup(p);
2047     }
2048     LOG(log_debug, logtype_afpd, "Global vol charset is %s", options->volcodepage);
2049     
2050     /* mac charset is in [G] and [V] */
2051     if (!(p = atalk_iniparser_getstring(config, INISEC_GLOBAL, "mac charset", NULL))) {
2052         options->maccodepage = strdup("MAC_ROMAN");
2053         set_charset_name(CH_MAC, "MAC_ROMAN");
2054     } else {
2055         if (strncasecmp(p, "MAC", 3) != 0) {
2056             LOG(log_warning, logtype_afpd, "Is '%s' really mac charset? ", p);
2057         }
2058         options->maccodepage = strdup(p);
2059         set_charset_name(CH_MAC, p);
2060     }
2061     options->maccharset = CH_MAC;
2062     LOG(log_debug, logtype_afpd, "Global mac charset is %s", options->maccodepage);
2063
2064     if (readextmap(options->extmapfile) != 0) {
2065         LOG(log_error, logtype_afpd, "Couldn't load extension -> type/creator mappings file \"%s\"",
2066             options->extmapfile);
2067     }
2068
2069     /* Check for sane values */
2070     if (options->tickleval <= 0)
2071         options->tickleval = 30;
2072         options->disconnected *= 3600 / options->tickleval;
2073         options->sleep *= 3600 / options->tickleval;
2074     if (options->timeout <= 0)
2075         options->timeout = 4;
2076     if (options->sleep <= 4)
2077         options->disconnected = options->sleep = 4;
2078     if (options->dsireadbuf < 6)
2079         options->dsireadbuf = 6;
2080     if (options->volnamelen < 8)
2081         options->volnamelen = 8; /* max mangled volname "???#FFFF" */
2082     if (options->volnamelen > 255)
2083         options->volnamelen = 255; /* AFP3 spec */
2084
2085 EC_CLEANUP:
2086     EC_EXIT;
2087 }
2088
2089 #define CONFIG_ARG_FREE(a) do {                     \
2090     free(a);                                        \
2091     a = NULL;                                       \
2092     } while (0);
2093
2094 /* get rid of any allocated afp_option buffers. */
2095 void afp_config_free(AFPObj *obj)
2096 {
2097     if (obj->options.configfile)
2098         CONFIG_ARG_FREE(obj->options.configfile);
2099     if (obj->options.sigconffile)
2100         CONFIG_ARG_FREE(obj->options.sigconffile);
2101     if (obj->options.uuidconf)
2102         CONFIG_ARG_FREE(obj->options.uuidconf);
2103     if (obj->options.logconfig)
2104         CONFIG_ARG_FREE(obj->options.logconfig);
2105     if (obj->options.logfile)
2106         CONFIG_ARG_FREE(obj->options.logfile);
2107     if (obj->options.loginmesg)
2108         CONFIG_ARG_FREE(obj->options.loginmesg);
2109     if (obj->options.guest)
2110         CONFIG_ARG_FREE(obj->options.guest);
2111     if (obj->options.extmapfile)
2112         CONFIG_ARG_FREE(obj->options.extmapfile);
2113     if (obj->options.passwdfile)
2114         CONFIG_ARG_FREE(obj->options.passwdfile);
2115     if (obj->options.uampath)
2116         CONFIG_ARG_FREE(obj->options.uampath);
2117     if (obj->options.uamlist)
2118         CONFIG_ARG_FREE(obj->options.uamlist);
2119     if (obj->options.port)
2120         CONFIG_ARG_FREE(obj->options.port);
2121     if (obj->options.signatureopt)
2122         CONFIG_ARG_FREE(obj->options.signatureopt);
2123     if (obj->options.k5service)
2124         CONFIG_ARG_FREE(obj->options.k5service);
2125     if (obj->options.k5realm)
2126         CONFIG_ARG_FREE(obj->options.k5realm);
2127     if (obj->options.k5principal)
2128         CONFIG_ARG_FREE(obj->options.k5principal);
2129     if (obj->options.listen)
2130         CONFIG_ARG_FREE(obj->options.listen);
2131     if (obj->options.interfaces)
2132         CONFIG_ARG_FREE(obj->options.interfaces);
2133     if (obj->options.ntdomain)
2134         CONFIG_ARG_FREE(obj->options.ntdomain);
2135     if (obj->options.addomain)
2136         CONFIG_ARG_FREE(obj->options.addomain);
2137     if (obj->options.ntseparator)
2138         CONFIG_ARG_FREE(obj->options.ntseparator);
2139     if (obj->options.mimicmodel)
2140         CONFIG_ARG_FREE(obj->options.mimicmodel);
2141     if (obj->options.adminauthuser)
2142         CONFIG_ARG_FREE(obj->options.adminauthuser);
2143     if (obj->options.hostname)
2144         CONFIG_ARG_FREE(obj->options.hostname);
2145     if (obj->options.k5keytab)
2146         CONFIG_ARG_FREE(obj->options.k5keytab);
2147     if (obj->options.Cnid_srv)
2148         CONFIG_ARG_FREE(obj->options.Cnid_srv);
2149     if (obj->options.Cnid_port)
2150         CONFIG_ARG_FREE(obj->options.Cnid_port);
2151     if (obj->options.fqdn)
2152         CONFIG_ARG_FREE(obj->options.fqdn);
2153     if (obj->options.ignored_attr)
2154         CONFIG_ARG_FREE(obj->options.ignored_attr);
2155     if (obj->options.unixcodepage)
2156         CONFIG_ARG_FREE(obj->options.unixcodepage);
2157     if (obj->options.maccodepage)
2158         CONFIG_ARG_FREE(obj->options.maccodepage);
2159     if (obj->options.volcodepage)
2160         CONFIG_ARG_FREE(obj->options.volcodepage);
2161
2162     obj->options.flags = 0;
2163     obj->options.passwdbits = 0;
2164
2165     /* Free everything called from afp_config_parse() */
2166     free_extmap();
2167     atalk_iniparser_freedict(obj->iniconfig);
2168     free_charset_names();
2169 }