]> arthur.barton.de Git - netatalk.git/blob - libatalk/util/netatalk_conf.c
Add advanced option "chmod request" controlling ACLs
[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  * Create volume struct
552  *
553  * @param obj      (r) handle
554  * @param pwd      (r) struct passwd of logged in user, may be NULL in master afpd
555  * @param section  (r) volume name wo variables expanded (exactly as in iniconfig)
556  * @param name     (r) volume name
557  * @param path_in  (r) volume path
558  * @param preset   (r) default preset, may be NULL
559  * @returns            vol on success, NULL on error
560  */
561 static struct vol *creatvol(AFPObj *obj,
562                             const struct passwd *pwd,
563                             const char *section,
564                             const char *name,
565                             const char *path_in,
566                             const char *preset)
567 {
568     EC_INIT;
569     struct vol  *volume = NULL;
570     int         i, suffixlen, vlen, tmpvlen, u8mvlen, macvlen;
571     char        tmpname[AFPVOL_U8MNAMELEN+1];
572     char        path[MAXPATHLEN + 1];
573     ucs2_t      u8mtmpname[(AFPVOL_U8MNAMELEN+1)*2], mactmpname[(AFPVOL_MACNAMELEN+1)*2];
574     char        suffix[6]; /* max is #FFFF */
575     uint16_t    flags;
576     const char  *val;
577     char        *p, *q;
578     bstring     dbpath = NULL;
579     bstring     global_path_tmp = NULL;
580
581     strlcpy(path, path_in, MAXPATHLEN);
582
583     LOG(log_debug, logtype_afpd, "creatvol(volume: '%s', path: \"%s\", preset: '%s'): BEGIN",
584         name, path, preset ? preset : "-");
585
586     if ( name == NULL || *name == '\0' ) {
587         if ((name = strrchr( path, '/' )) == NULL)
588             EC_FAIL;
589         /* if you wish to share /, you need to specify a name. */
590         if (*++name == '\0')
591             EC_FAIL;
592     }
593
594     /* Once volumes are loaded, we never change options again, we just delete em when they're removed from afp.conf */
595
596     for (struct vol *vol = Volumes; vol; vol = vol->v_next) {
597         if (STRCMP(name, ==, vol->v_localname) && vol->v_deleted) {
598             /* 
599              * reloading config, volume still present, nothing else to do,
600              * we don't change options for volumes once they're loaded
601              */
602             vol->v_deleted = 0;
603             volume = vol;
604             EC_EXIT_STATUS(0);
605         }
606         if (STRCMP(path, ==, vol->v_path)) {
607             LOG(log_note, logtype_afpd, "volume \"%s\" path \"%s\" is the same as volumes \"%s\" path",
608                 name, path, vol->v_configname);
609             EC_EXIT_STATUS(0);
610         }
611         /*
612          * We could check for nested volume paths here, but
613          * nobody was able to come up with an implementation yet,
614          * that is simple, fast and correct.
615          */
616     }
617
618     /*
619      * Check allow/deny lists:
620      * allow -> either no list (-1), or in list (1)
621      * deny -> either no list (-1), or not in list (0)
622      */
623     if (pwd) {
624         if (accessvol(obj, getoption(obj->iniconfig, section, "invalid users", preset, NULL), pwd->pw_name) == 1)
625             goto EC_CLEANUP;
626         if (accessvol(obj, getoption(obj->iniconfig, section, "valid users", preset, NULL), pwd->pw_name) == 0)
627             goto EC_CLEANUP;
628         if (hostaccessvol(obj, section, getoption(obj->iniconfig, section, "hosts deny", preset, NULL)) == 1)
629             goto EC_CLEANUP;
630         if (hostaccessvol(obj, section, getoption(obj->iniconfig, section, "hosts allow", preset, NULL)) == 0)
631             goto EC_CLEANUP;
632     }
633
634     EC_NULL( volume = calloc(1, sizeof(struct vol)) );
635
636     EC_NULL( volume->v_configname = strdup(section));
637
638     volume->v_vfs_ea = AFPVOL_EA_AUTO;
639     volume->v_umask = obj->options.umask;
640
641     if ((val = getoption(obj->iniconfig, section, "password", preset, NULL)))
642         EC_NULL( volume->v_password = strdup(val) );
643
644     if ((val = getoption(obj->iniconfig, section, "veto files", preset, NULL)))
645         EC_NULL( volume->v_veto = strdup(val) );
646
647     /* vol charset is in [G] and [V] */
648     if ((val = getoption(obj->iniconfig, section, "vol charset", preset, NULL))) {
649         if (strcasecmp(val, "UTF-8") == 0) {
650             val = strdup("UTF8");
651         }
652         EC_NULL( volume->v_volcodepage = strdup(val) );
653     }
654     else
655         EC_NULL( volume->v_volcodepage = strdup(obj->options.volcodepage) );
656
657     /* mac charset is in [G] and [V] */
658     if ((val = getoption(obj->iniconfig, section, "mac charset", preset, NULL))) {
659         if (strncasecmp(val, "MAC", 3) != 0) {
660             LOG(log_warning, logtype_afpd, "Is '%s' really mac charset? ", val);
661         }
662         EC_NULL( volume->v_maccodepage = strdup(val) );
663     }
664     else
665     EC_NULL( volume->v_maccodepage = strdup(obj->options.maccodepage) );
666
667     vlen = strlen(name);
668     strlcpy(tmpname, name, sizeof(tmpname));
669     for(i = 0; i < vlen; i++)
670         if(tmpname[i] == '/') tmpname[i] = ':';
671
672
673     if (atalk_iniparser_getboolean(obj->iniconfig, INISEC_GLOBAL, "vol dbnest", 0)) {
674         EC_NULL( volume->v_dbpath = strdup(path) );
675     } else {
676         char *global_path;
677         val = getoption(obj->iniconfig, section, "vol dbpath", preset, NULL);
678         if (val == NULL) {
679             /* check global option */
680             global_path = atalk_iniparser_getstring(obj->iniconfig,
681                                                     INISEC_GLOBAL,
682                                                     "vol dbpath",
683                                                     NULL);
684             if (global_path) {
685                 /* check for pre 3.1.1 behaviour without variable */
686                 if (strchr(global_path, '$') == NULL) {
687                     global_path_tmp = bformat("%s/%s/", global_path, tmpname);
688                     val = cfrombstr(global_path_tmp);
689                 } else {
690                     val = global_path;
691                 }
692             }
693         }
694
695         if (val == NULL) {
696             EC_NULL( dbpath = bformat("%s/%s/", _PATH_STATEDIR "CNID/", tmpname) );
697         } else {
698             EC_NULL( dbpath = bfromcstr(val));
699         }
700         EC_NULL( volume->v_dbpath = volxlate(obj, NULL, MAXPATHLEN + 1,
701                                              cfrombstr(dbpath), pwd, NULL, tmpname) );
702     }
703
704     if ((val = getoption(obj->iniconfig, section, "cnid scheme", preset, NULL)))
705         EC_NULL( volume->v_cnidscheme = strdup(val) );
706     else
707         volume->v_cnidscheme = strdup(DEFAULT_CNID_SCHEME);
708
709     if ((val = getoption(obj->iniconfig, section, "umask", preset, NULL)))
710         volume->v_umask = (int)strtol(val, NULL, 8);
711
712     if ((val = getoption(obj->iniconfig, section, "directory perm", preset, NULL)))
713         volume->v_dperm = (int)strtol(val, NULL, 8);
714
715     if ((val = getoption(obj->iniconfig, section, "file perm", preset, NULL)))
716         volume->v_fperm = (int)strtol(val, NULL, 8);
717
718     if ((val = getoption(obj->iniconfig, section, "vol size limit", preset, NULL)))
719         volume->v_limitsize = (uint32_t)strtoul(val, NULL, 10);
720
721     if ((val = getoption(obj->iniconfig, section, "preexec", preset, NULL)))
722         EC_NULL( volume->v_preexec = volxlate(obj, NULL, MAXPATHLEN, val, pwd, path, name) );
723
724     if ((val = getoption(obj->iniconfig, section, "postexec", preset, NULL)))
725         EC_NULL( volume->v_postexec = volxlate(obj, NULL, MAXPATHLEN, val, pwd, path, name) );
726
727     if ((val = getoption(obj->iniconfig, section, "root preexec", preset, NULL)))
728         EC_NULL( volume->v_root_preexec = volxlate(obj, NULL, MAXPATHLEN, val, pwd, path, name) );
729
730     if ((val = getoption(obj->iniconfig, section, "root postexec", preset, NULL)))
731         EC_NULL( volume->v_root_postexec = volxlate(obj, NULL, MAXPATHLEN, val, pwd, path, name) );
732
733     if ((val = getoption(obj->iniconfig, section, "appledouble", preset, NULL))) {
734         if (strcmp(val, "v2") == 0)
735             volume->v_adouble = AD_VERSION2;
736         else if (strcmp(val, "ea") == 0)
737             volume->v_adouble = AD_VERSION_EA;
738     } else {
739         volume->v_adouble = AD_VERSION;
740     }
741
742     if ((val = getoption(obj->iniconfig, section, "cnid server", preset, NULL))) {
743         EC_NULL( p = strdup(val) );
744         volume->v_cnidserver = p;
745         if ((q = strrchr(val, ':'))) {
746             *q++ = 0;
747             volume->v_cnidport = strdup(q);
748         } else {
749             volume->v_cnidport = strdup("4700");
750         }
751
752     } else {
753         volume->v_cnidserver = strdup(obj->options.Cnid_srv);
754         volume->v_cnidport = strdup(obj->options.Cnid_port);
755     }
756
757     if ((val = getoption(obj->iniconfig, section, "ea", preset, NULL))) {
758         if (strcasecmp(val, "ad") == 0)
759             volume->v_vfs_ea = AFPVOL_EA_AD;
760         else if (strcasecmp(val, "sys") == 0)
761             volume->v_vfs_ea = AFPVOL_EA_SYS;
762         else if (strcasecmp(val, "none") == 0)
763             volume->v_vfs_ea = AFPVOL_EA_NONE;
764     }
765
766     if ((val = getoption(obj->iniconfig, section, "casefold", preset, NULL))) {
767         if (strcasecmp(val, "tolower") == 0)
768             volume->v_casefold = AFPVOL_UMLOWER;
769         else if (strcasecmp(val, "toupper") == 0)
770             volume->v_casefold = AFPVOL_UMUPPER;
771         else if (strcasecmp(val, "xlatelower") == 0)
772             volume->v_casefold = AFPVOL_UUPPERMLOWER;
773         else if (strcasecmp(val, "xlateupper") == 0)
774             volume->v_casefold = AFPVOL_ULOWERMUPPER;
775     }
776
777     if (getoption_bool(obj->iniconfig, section, "read only", preset, 0))
778         volume->v_flags |= AFPVOL_RO;
779     if (getoption_bool(obj->iniconfig, section, "invisible dots", preset, 0))
780         volume->v_flags |= AFPVOL_INV_DOTS;
781     if (!getoption_bool(obj->iniconfig, section, "stat vol", preset, 1))
782         volume->v_flags |= AFPVOL_NOSTAT;
783     if (getoption_bool(obj->iniconfig, section, "unix priv", preset, 1))
784         volume->v_flags |= AFPVOL_UNIX_PRIV;
785     if (!getoption_bool(obj->iniconfig, section, "cnid dev", preset, 1))
786         volume->v_flags |= AFPVOL_NODEV;
787     if (getoption_bool(obj->iniconfig, section, "illegal seq", preset, 0))
788         volume->v_flags |= AFPVOL_EILSEQ;
789     if (getoption_bool(obj->iniconfig, section, "time machine", preset, 0))
790         volume->v_flags |= AFPVOL_TM;
791     if (getoption_bool(obj->iniconfig, section, "search db", preset, 0))
792         volume->v_flags |= AFPVOL_SEARCHDB;
793     if (!getoption_bool(obj->iniconfig, section, "network ids", preset, 1))
794         volume->v_flags |= AFPVOL_NONETIDS;
795 #ifdef HAVE_ACLS
796     if (getoption_bool(obj->iniconfig, section, "acls", preset, 1))
797         volume->v_flags |= AFPVOL_ACLS;
798 #endif
799     if (!getoption_bool(obj->iniconfig, section, "convert appledouble", preset, 1))
800         volume->v_flags |= AFPVOL_NOV2TOEACONV;
801     if (getoption_bool(obj->iniconfig, section, "follow symlinks", preset, 0))
802         volume->v_flags |= AFPVOL_FOLLOWSYM;
803     if (getoption_bool(obj->iniconfig, section, "spotlight", preset, obj->options.flags & OPTION_SPOTLIGHT_VOL)) {
804         volume->v_flags |= AFPVOL_SPOTLIGHT;
805         obj->options.flags |= OPTION_SPOTLIGHT;
806     }
807     if (getoption_bool(obj->iniconfig, section, "delete veto files", preset, 0))
808         volume->v_flags |= AFPVOL_DELVETO;
809
810     if (getoption_bool(obj->iniconfig, section, "preexec close", preset, 0))
811         volume->v_preexec_close = 1;
812     if (getoption_bool(obj->iniconfig, section, "root preexec close", preset, 0))
813         volume->v_root_preexec_close = 1;
814
815     if ((val = getoption(obj->iniconfig, section, "ignored attributes", preset, obj->options.ignored_attr))) {
816         if (strstr(val, "all")) {
817             volume->v_ignattr |= ATTRBIT_NOWRITE | ATTRBIT_NORENAME | ATTRBIT_NODELETE;
818         }
819         if (strstr(val, "nowrite")) {
820             volume->v_ignattr |= ATTRBIT_NOWRITE;
821         }
822         if (strstr(val, "norename")) {
823             volume->v_ignattr |= ATTRBIT_NORENAME;
824         }
825         if (strstr(val, "nodelete")) {
826             volume->v_ignattr |= ATTRBIT_NODELETE;
827         }
828     }
829
830     val = getoption(obj->iniconfig, section, "chmod request", preset, NULL);
831     if (val == NULL) {
832         val = atalk_iniparser_getstring(obj->iniconfig, INISEC_GLOBAL, "chmod request", "preserve");
833     }
834     if (strcasecmp(val, "ignore") == 0) {
835         volume->v_flags |= AFPVOL_CHMOD_IGNORE;
836     } else if (strcasecmp(val, "preserve") == 0) {
837         volume->v_flags |= AFPVOL_CHMOD_PRESERVE_ACL;
838     } else if (strcasecmp(val, "simple") != 0) {
839         LOG(log_warning, logtype_afpd, "unknown 'chmod request' setting: '%s', using default", val);
840         volume->v_flags |= AFPVOL_CHMOD_PRESERVE_ACL;
841     }
842
843     /*
844      * Handle read-only behaviour. semantics:
845      * 1) neither the rolist nor the rwlist exist -> rw
846      * 2) rolist exists -> ro if user is in it.
847      * 3) rwlist exists -> ro unless user is in it.
848      * 4) cnid scheme = last -> ro forcibly.
849      */
850     if (pwd) {
851         if (accessvol(obj, getoption(obj->iniconfig, section, "rolist", preset, NULL), pwd->pw_name) == 1
852             || accessvol(obj, getoption(obj->iniconfig, section, "rwlist", preset, NULL), pwd->pw_name) == 0)
853             volume->v_flags |= AFPVOL_RO;
854     }
855     if (0 == strcmp(volume->v_cnidscheme, "last"))
856         volume->v_flags |= AFPVOL_RO;
857
858     if ((volume->v_flags & AFPVOL_NODEV))
859         volume->v_ad_options |= ADVOL_NODEV;
860     if ((volume->v_flags & AFPVOL_UNIX_PRIV))
861         volume->v_ad_options |= ADVOL_UNIXPRIV;
862     if ((volume->v_flags & AFPVOL_INV_DOTS))
863         volume->v_ad_options |= ADVOL_INVDOTS;
864     if ((volume->v_flags & AFPVOL_FOLLOWSYM))
865         volume->v_ad_options |= ADVOL_FOLLO_SYML;
866     if ((volume->v_flags & AFPVOL_RO))
867         volume->v_ad_options |= ADVOL_RO;
868
869     /* Mac to Unix conversion flags*/
870     if ((volume->v_flags & AFPVOL_EILSEQ))
871         volume->v_mtou_flags |= CONV__EILSEQ;
872
873     if ((volume->v_casefold & AFPVOL_MTOUUPPER))
874         volume->v_mtou_flags |= CONV_TOUPPER;
875     else if ((volume->v_casefold & AFPVOL_MTOULOWER))
876         volume->v_mtou_flags |= CONV_TOLOWER;
877
878     /* Unix to Mac conversion flags*/
879     volume->v_utom_flags = CONV_IGNORE;
880     if ((volume->v_casefold & AFPVOL_UTOMUPPER))
881         volume->v_utom_flags |= CONV_TOUPPER;
882     else if ((volume->v_casefold & AFPVOL_UTOMLOWER))
883         volume->v_utom_flags |= CONV_TOLOWER;
884     if ((volume->v_flags & AFPVOL_EILSEQ))
885         volume->v_utom_flags |= CONV__EILSEQ;
886
887     /* suffix for mangling use (lastvid + 1)   */
888     /* because v_vid has not been decided yet. */
889     suffixlen = sprintf(suffix, "#%X", lastvid + 1 );
890
891     /* Unicode Volume Name */
892     /* Firstly convert name from unixcharset to UTF8-MAC */
893     flags = CONV_IGNORE;
894     tmpvlen = convert_charset(obj->options.unixcharset, CH_UTF8_MAC, 0, name, vlen, tmpname, AFPVOL_U8MNAMELEN, &flags);
895     if (tmpvlen <= 0) {
896         strcpy(tmpname, "???");
897         tmpvlen = 3;
898     }
899
900     /* Do we have to mangle ? */
901     if ( (flags & CONV_REQMANGLE) || (tmpvlen > obj->options.volnamelen)) {
902         if (tmpvlen + suffixlen > obj->options.volnamelen) {
903             flags = CONV_FORCE;
904             tmpvlen = convert_charset(obj->options.unixcharset, CH_UTF8_MAC, 0, name, vlen, tmpname, obj->options.volnamelen - suffixlen, &flags);
905             tmpname[tmpvlen >= 0 ? tmpvlen : 0] = 0;
906         }
907         strcat(tmpname, suffix);
908         tmpvlen = strlen(tmpname);
909     }
910
911     /* Secondly convert name from UTF8-MAC to UCS2 */
912     if ( 0 >= ( u8mvlen = convert_string(CH_UTF8_MAC, CH_UCS2, tmpname, tmpvlen, u8mtmpname, AFPVOL_U8MNAMELEN*2)) )
913         EC_FAIL;
914
915     LOG(log_maxdebug, logtype_afpd, "creatvol: Volume '%s' -> UTF8-MAC Name: '%s'", name, tmpname);
916
917     /* Maccharset Volume Name */
918     /* Firsty convert name from unixcharset to maccharset */
919     flags = CONV_IGNORE;
920     tmpvlen = convert_charset(obj->options.unixcharset, obj->options.maccharset, 0, name, vlen, tmpname, AFPVOL_U8MNAMELEN, &flags);
921     if (tmpvlen <= 0) {
922         strcpy(tmpname, "???");
923         tmpvlen = 3;
924     }
925
926     /* Do we have to mangle ? */
927     if ( (flags & CONV_REQMANGLE) || (tmpvlen > AFPVOL_MACNAMELEN)) {
928         if (tmpvlen + suffixlen > AFPVOL_MACNAMELEN) {
929             flags = CONV_FORCE;
930             tmpvlen = convert_charset(obj->options.unixcharset,
931                                       obj->options.maccharset,
932                                       0,
933                                       name,
934                                       vlen,
935                                       tmpname,
936                                       AFPVOL_MACNAMELEN - suffixlen,
937                                       &flags);
938             tmpname[tmpvlen >= 0 ? tmpvlen : 0] = 0;
939         }
940         strcat(tmpname, suffix);
941         tmpvlen = strlen(tmpname);
942     }
943
944     /* Secondly convert name from maccharset to UCS2 */
945     if ( 0 >= ( macvlen = convert_string(obj->options.maccharset,
946                                          CH_UCS2,
947                                          tmpname,
948                                          tmpvlen,
949                                          mactmpname,
950                                          AFPVOL_U8MNAMELEN*2)) )
951         EC_FAIL;
952
953     LOG(log_maxdebug, logtype_afpd, "creatvol: Volume '%s' ->  Longname: '%s'", name, tmpname);
954
955     EC_NULL( volume->v_localname = strdup(name) );
956     EC_NULL( volume->v_u8mname = strdup_w(u8mtmpname) );
957     EC_NULL( volume->v_macname = strdup_w(mactmpname) );
958     EC_NULL( volume->v_path = strdup(path) ); 
959         
960     volume->v_name = utf8_encoding(obj) ? volume->v_u8mname : volume->v_macname;
961
962 #ifdef __svr4__
963     volume->v_qfd = -1;
964 #endif /* __svr4__ */
965
966     /* os X start at 1 and use network order ie. 1 2 3 */
967     volume->v_vid = ++lastvid;
968     volume->v_vid = htons(volume->v_vid);
969
970 #ifdef HAVE_ACLS
971     if (!check_vol_acl_support(volume)) {
972         LOG(log_debug, logtype_afpd, "creatvol(\"%s\"): disabling ACL support", volume->v_path);
973         volume->v_flags &= ~AFPVOL_ACLS;
974     }
975 #endif
976
977     /* Check EA support on volume */
978     if (volume->v_vfs_ea == AFPVOL_EA_AUTO || volume->v_adouble == AD_VERSION_EA)
979         check_ea_support(volume);
980     initvol_vfs(volume);
981
982     /* get/store uuid from file in afpd master*/
983     become_root();
984     char *uuid = get_vol_uuid(obj, volume->v_localname);
985     unbecome_root();
986     if (!uuid) {
987         LOG(log_error, logtype_afpd, "Volume '%s': couldn't get UUID",
988             volume->v_localname);
989     } else {
990         volume->v_uuid = uuid;
991         LOG(log_debug, logtype_afpd, "Volume '%s': UUID '%s'",
992             volume->v_localname, volume->v_uuid);
993     }
994
995     /* no errors shall happen beyond this point because the cleanup would mess the volume chain up */
996     volume->v_next = Volumes;
997     Volumes = volume;
998     volume->v_obj = obj;
999
1000 EC_CLEANUP:
1001     LOG(log_debug, logtype_afpd, "creatvol: END: %d", ret);
1002     if (dbpath)
1003         bdestroy(dbpath);
1004     if (global_path_tmp)
1005         bdestroy(global_path_tmp);
1006     if (ret != 0) {
1007         if (volume)
1008             volume_free(volume);
1009         return NULL;
1010     }
1011     return volume;
1012 }
1013
1014 /* ----------------------
1015  */
1016 static int volfile_changed(struct afp_options *p)
1017 {
1018     struct stat st;
1019
1020     if (!stat(p->configfile, &st) && st.st_mtime > p->volfile.mtime) {
1021         p->volfile.mtime = st.st_mtime;
1022         return 1;
1023     }
1024     return 0;
1025 }
1026
1027 static int vol_section(const char *sec)
1028 {
1029     if (STRCMP(sec, ==, INISEC_GLOBAL))
1030         return 0;
1031     return 1;
1032 }
1033
1034 #define MAXPRESETLEN 100
1035 /*!
1036  * Read volumes from iniconfig and add the volumes contained within to
1037  * the global volume list. This gets called from the forked afpd childs.
1038  * The master now reads this too for Zeroconf announcements.
1039  */
1040 static int readvolfile(AFPObj *obj, const struct passwd *pwent)
1041 {
1042     EC_INIT;
1043     static int regexerr = -1;
1044     static regex_t reg;
1045     char        *realvolpath;
1046     char        volname[AFPVOL_U8MNAMELEN + 1];
1047     char        path[MAXPATHLEN + 1], tmp[MAXPATHLEN + 1];
1048     const char  *preset, *default_preset, *p, *basedir;
1049     int         i;
1050     regmatch_t match[1];
1051
1052     LOG(log_debug, logtype_afpd, "readvolfile: BEGIN");
1053
1054     int secnum = atalk_iniparser_getnsec(obj->iniconfig);    
1055     LOG(log_debug, logtype_afpd, "readvolfile: sections: %d", secnum);
1056     const char *secname;
1057
1058     if ((default_preset = atalk_iniparser_getstring(obj->iniconfig, INISEC_GLOBAL, "vol preset", NULL))) {
1059         LOG(log_debug, logtype_afpd, "readvolfile: default_preset: %s", default_preset);
1060     }
1061
1062     for (i = 0; i < secnum; i++) { 
1063         secname = atalk_iniparser_getsecname(obj->iniconfig, i);
1064
1065         if (!vol_section(secname))
1066             continue;
1067         if (STRCMP(secname, ==, INISEC_HOMES)) {
1068             have_uservol = 1;
1069             if (!IS_AFP_SESSION(obj)
1070                 || strcmp(obj->username, obj->options.guest) == 0)
1071                 /* not an AFP session, but cnid daemon, dbd or ad util, or guest login */
1072                 continue;
1073             if (pwent->pw_dir == NULL || STRCMP("", ==, pwent->pw_dir)) {
1074                 LOG(log_debug, logtype_afpd, "readvolfile: pwent->pw_dir: NULL or \"\" - no user home");
1075                 continue;
1076             }
1077             LOG(log_debug, logtype_afpd, "readvolfile: pwent->pw_dir: '%s'", pwent->pw_dir);
1078
1079             if ((realpath(pwent->pw_dir, tmp)) == NULL) {
1080                 LOG(log_debug, logtype_afpd, "readvolfile: Cannot get realpath '%s' (%s).", pwent->pw_dir, strerror(errno));
1081                 continue;
1082             }
1083             LOG(log_debug, logtype_afpd, "readvolfile: realpath pwent->pw_dir: '%s'", tmp);
1084
1085             /* check if user home matches our "basedir regex" */
1086             if ((basedir = atalk_iniparser_getstring(obj->iniconfig, INISEC_HOMES, "basedir regex", NULL)) == NULL) {
1087                 LOG(log_error, logtype_afpd, "\"basedir regex =\" must be defined in [Homes] section");
1088                 continue;
1089             }
1090             LOG(log_debug, logtype_afpd, "readvolfile: basedir regex: '%s'", basedir);
1091
1092             if (regexerr != 0 && (regexerr = regcomp(&reg, basedir, REG_EXTENDED)) != 0) {
1093                 char errbuf[1024];
1094                 regerror(regexerr, &reg, errbuf, sizeof(errbuf));
1095                 LOG(log_debug, logtype_default, "readvolfile: bad basedir regex: %s", errbuf);
1096                 continue;
1097             }
1098
1099             if (regexec(&reg, tmp, 1, match, 0) == REG_NOMATCH) {
1100                 LOG(log_error, logtype_default, "readvolfile: user home \"%s\" doesn't match basedir regex \"%s\"",
1101                     tmp, basedir);
1102                 continue;
1103             }
1104
1105             if ((p = atalk_iniparser_getstring(obj->iniconfig, INISEC_HOMES, "path", NULL))) {
1106                 strlcat(tmp, "/", MAXPATHLEN);
1107                 strlcat(tmp, p, MAXPATHLEN);
1108             }
1109         } else {
1110             /* Get path */
1111             if ((p = atalk_iniparser_getstring(obj->iniconfig, secname, "path", NULL)) == NULL)
1112                 continue;
1113             strlcpy(tmp, p, MAXPATHLEN);
1114         }
1115
1116         if (volxlate(obj, path, sizeof(path) - 1, tmp, pwent, NULL, NULL) == NULL)
1117             continue;
1118
1119         /* do variable substitution for volume name */
1120         if (STRCMP(secname, ==, INISEC_HOMES)) {
1121             p = atalk_iniparser_getstring(obj->iniconfig, INISEC_HOMES, "home name", "$u's home");
1122             if (strstr(p, "$u") == NULL) {
1123                 LOG(log_warning, logtype_afpd, "home name must contain $u.");
1124                 p = "$u's home";
1125             }
1126             if (strchr(p, ':') != NULL) {
1127                 LOG(log_warning, logtype_afpd, "home name must not contain \":\".");
1128                 p = "$u's home";
1129             }
1130             strlcpy(tmp, p, MAXPATHLEN);
1131         } else {
1132             strlcpy(tmp, secname, AFPVOL_U8MNAMELEN);
1133         }
1134         if (volxlate(obj, volname, sizeof(volname) - 1, tmp, pwent, path, NULL) == NULL)
1135             continue;
1136
1137         preset = atalk_iniparser_getstring(obj->iniconfig, secname, "vol preset", NULL);
1138
1139         if ((realvolpath = realpath_safe(path)) == NULL)
1140             continue;
1141
1142         creatvol(obj, pwent, secname, volname, realvolpath, preset ? preset : default_preset ? default_preset : NULL);
1143         free(realvolpath);
1144     }
1145
1146 // EC_CLEANUP:
1147     EC_EXIT;
1148 }
1149
1150 static struct extmap    *Extmap = NULL, *Defextmap = NULL;
1151 static int              Extmap_cnt;
1152
1153 static int setextmap(char *ext, char *type, char *creator)
1154 {
1155     EC_INIT;
1156     struct extmap *em;
1157     int           cnt;
1158
1159     if (Extmap == NULL) {
1160         EC_NULL_LOG( Extmap = calloc(1, sizeof( struct extmap )) );
1161     }
1162
1163     ext++;
1164
1165     for (em = Extmap, cnt = 0; em->em_ext; em++, cnt++)
1166         if ((strdiacasecmp(em->em_ext, ext)) == 0)
1167             goto EC_CLEANUP;
1168
1169     EC_NULL_LOG( Extmap = realloc(Extmap, sizeof(struct extmap) * (cnt + 2)) );
1170     (Extmap + cnt + 1)->em_ext = NULL;
1171     em = Extmap + cnt;
1172
1173     EC_NULL( em->em_ext = strdup(ext) );
1174
1175     if ( *type == '\0' ) {
1176         memcpy(em->em_type, "\0\0\0\0", sizeof( em->em_type ));
1177     } else {
1178         memcpy(em->em_type, type, sizeof( em->em_type ));
1179     }
1180     if ( *creator == '\0' ) {
1181         memcpy(em->em_creator, "\0\0\0\0", sizeof( em->em_creator ));
1182     } else {
1183         memcpy(em->em_creator, creator, sizeof( em->em_creator ));
1184     }
1185
1186 EC_CLEANUP:
1187     EC_EXIT;
1188 }
1189
1190 /* -------------------------- */
1191 static int extmap_cmp(const void *map1, const void *map2)
1192 {
1193     const struct extmap *em1 = map1;
1194     const struct extmap *em2 = map2;
1195     return strdiacasecmp(em1->em_ext, em2->em_ext);
1196 }
1197
1198 static void sortextmap( void)
1199 {
1200     struct extmap   *em;
1201
1202     Extmap_cnt = 0;
1203     if ((em = Extmap) == NULL) {
1204         return;
1205     }
1206     while (em->em_ext) {
1207         em++;
1208         Extmap_cnt++;
1209     }
1210     if (Extmap_cnt) {
1211         qsort(Extmap, Extmap_cnt, sizeof(struct extmap), extmap_cmp);
1212         if (*Extmap->em_ext == 0) {
1213             /* the first line is really "." the default entry,
1214              * we remove the leading '.' in setextmap
1215              */
1216             Defextmap = Extmap;
1217         }
1218     }
1219 }
1220
1221 static void free_extmap( void)
1222 {
1223     struct extmap   *em;
1224
1225     if (Extmap) {
1226         for ( em = Extmap; em->em_ext; em++) {
1227             free (em->em_ext);
1228         }
1229         free(Extmap);
1230         Extmap = NULL;
1231         Defextmap = Extmap;
1232         Extmap_cnt = 0;
1233     }
1234 }
1235
1236 static int ext_cmp_key(const void *key, const void *obj)
1237 {
1238     const char          *p = key;
1239     const struct extmap *em = obj;
1240     return strdiacasecmp(p, em->em_ext);
1241 }
1242
1243 struct extmap *getextmap(const char *path)
1244 {
1245     char      *p;
1246     struct extmap *em;
1247
1248     if (!Extmap_cnt || NULL == ( p = strrchr( path, '.' )) ) {
1249         return( Defextmap );
1250     }
1251     p++;
1252     if (!*p) {
1253         return( Defextmap );
1254     }
1255     em = bsearch(p, Extmap, Extmap_cnt, sizeof(struct extmap), ext_cmp_key);
1256     if (em) {
1257         return( em );
1258     } else {
1259         return( Defextmap );
1260     }
1261 }
1262
1263 struct extmap *getdefextmap(void)
1264 {
1265     return( Defextmap );
1266 }
1267
1268 static int readextmap(const char *file)
1269 {
1270     EC_INIT;
1271     FILE        *fp;
1272     char        ext[256];
1273     char        buf[256];
1274     char        type[5], creator[5];
1275
1276     LOG(log_debug, logtype_afpd, "readextmap: loading \"%s\"", file);
1277
1278     EC_NULL_LOGSTR( fp = fopen(file, "r"), "Couldn't open extension maping file %s", file);
1279
1280     while (fgets(buf, sizeof(buf), fp) != NULL) {
1281         initline(strlen(buf), buf);
1282         parseline(sizeof(ext) - 1, ext);
1283
1284         switch (ext[0]) {
1285         case '.' :
1286             parseline(sizeof(type) - 1, type);
1287             parseline(sizeof(creator) - 1, creator);
1288             setextmap(ext, type, creator);
1289             LOG(log_debug, logtype_afpd, "readextmap: mapping: '%s' -> %s/%s", ext, type, creator);
1290             break;
1291         }
1292     }
1293
1294     sortextmap();
1295     EC_ZERO( fclose(fp) );
1296
1297     LOG(log_debug, logtype_afpd, "readextmap: done", file);
1298
1299 EC_CLEANUP:
1300     EC_EXIT;
1301 }
1302
1303 /**************************************************************
1304  * API functions
1305  **************************************************************/
1306
1307 /*!
1308  * Remove a volume from the linked list of volumes
1309  */
1310 void volume_unlink(struct vol *volume)
1311 {
1312     struct vol *vol, *ovol, *nvol;
1313
1314     if (volume == Volumes) {
1315         Volumes = NULL;
1316         return;
1317     }
1318     for ( vol = Volumes->v_next, ovol = Volumes; vol; vol = nvol) {
1319         nvol = vol->v_next;
1320
1321         if (vol == volume) {
1322             ovol->v_next = nvol;
1323             break;
1324         }
1325         else {
1326             ovol = vol;
1327         }
1328     }
1329 }
1330
1331 /*!
1332  * Free all resources allocated in a struct vol in load_volumes()
1333  *
1334  * Actually opening a volume (afp_openvol()) will allocate additional
1335  * ressources which are freed in closevol()
1336  */
1337 void volume_free(struct vol *vol)
1338 {
1339     free(vol->v_configname);
1340     free(vol->v_localname);
1341     free(vol->v_u8mname);
1342     free(vol->v_macname);
1343     free(vol->v_path);
1344     free(vol->v_password);
1345     free(vol->v_veto);
1346     free(vol->v_volcodepage);
1347     free(vol->v_maccodepage);
1348     free(vol->v_cnidscheme);
1349     free(vol->v_dbpath);
1350     free(vol->v_gvs);
1351     free(vol->v_uuid);
1352     free(vol->v_cnidserver);
1353     free(vol->v_cnidport);
1354     free(vol->v_preexec);
1355     free(vol->v_root_preexec);
1356     free(vol->v_postexec);
1357     free(vol->v_root_postexec);
1358
1359     free(vol);
1360 }
1361
1362 /*!
1363  * Load charsets for a volume
1364  */
1365 int load_charset(struct vol *vol)
1366 {
1367     if ((vol->v_maccharset = add_charset(vol->v_maccodepage)) == (charset_t)-1) {
1368         LOG(log_error, logtype_default, "Setting mac charset '%s' failed", vol->v_maccodepage);
1369         return -1;
1370     }
1371
1372     if ((vol->v_volcharset = add_charset(vol->v_volcodepage)) == (charset_t)-1) {
1373         LOG(log_error, logtype_default, "Setting vol charset '%s' failed", vol->v_volcodepage);
1374         return -1;
1375     }
1376
1377     return 0;
1378 }
1379
1380 /*!
1381  * Initialize volumes and load ini configfile
1382  *
1383  * @param obj      (r) handle
1384  * @param flags    (r) flags controlling volume load behaviour
1385  */
1386 int load_volumes(AFPObj *obj, lv_flags_t flags)
1387 {
1388     EC_INIT;
1389
1390     static long         bufsize;
1391     static char        *pwbuf = NULL;
1392
1393     int                 fd = -1;
1394     struct passwd       pwent;
1395     struct passwd      *pwresult = NULL;
1396     struct stat         st;
1397     int                 retries = 0;
1398     struct vol         *vol;
1399
1400     LOG(log_debug, logtype_afpd, "load_volumes: BEGIN");
1401
1402     if (pwbuf == NULL) {
1403         bufsize = sysconf(_SC_GETPW_R_SIZE_MAX);
1404         if (bufsize == -1)          /* Value was indeterminate */
1405             bufsize = 16384;        /* Should be more than enough */
1406         EC_NULL( pwbuf = malloc(bufsize) );
1407     }
1408
1409     if (!(flags & lv_all) && obj->uid) {
1410         ret = getpwuid_r(obj->uid, &pwent, pwbuf, bufsize, &pwresult);
1411         if (pwresult == NULL) {
1412             LOG(log_error, logtype_afpd, "load_volumes: getpwuid_r: %s", strerror(errno));
1413             EC_FAIL;
1414         }
1415         pwresult = &pwent;
1416     }
1417
1418     if (Volumes) {
1419         if (!volfile_changed(&obj->options))
1420             goto EC_CLEANUP;
1421         have_uservol = 0;
1422         for (vol = Volumes; vol; vol = vol->v_next) {
1423             vol->v_deleted = 1;
1424         }
1425         if (obj->uid && pwresult) {
1426             become_root();
1427             ret = set_groups(obj, pwresult);
1428             unbecome_root();
1429             if (ret != 0) {
1430                 LOG(log_error, logtype_afpd, "load_volumes: set_groups: %s", strerror(errno));
1431                 EC_FAIL;
1432             }
1433         }
1434     } else {
1435         LOG(log_debug, logtype_afpd, "load_volumes: no volumes yet");
1436         EC_ZERO_LOG( lstat(obj->options.configfile, &st) );
1437         obj->options.volfile.mtime = st.st_mtime;
1438     }
1439
1440     /* try putting a read lock on the volume file twice, sleep 1 second if first attempt fails */
1441
1442     fd = open(obj->options.configfile, O_RDONLY);
1443
1444     while (retries < 2) {
1445         if ((read_lock(fd, 0, SEEK_SET, 0)) != 0) {
1446             retries++;
1447             if (!retries) {
1448                 LOG(log_error, logtype_afpd, "readvolfile: can't lock configfile \"%s\"",
1449                     obj->options.configfile);
1450                 EC_FAIL;
1451             }
1452             sleep(1);
1453             continue;
1454         }
1455         break;
1456     }
1457
1458     if (obj->iniconfig)
1459         atalk_iniparser_freedict(obj->iniconfig);
1460     LOG(log_debug, logtype_afpd, "load_volumes: loading: %s", obj->options.configfile);
1461     obj->iniconfig = atalk_iniparser_load(obj->options.configfile);
1462
1463     EC_ZERO_LOG( readvolfile(obj, pwresult) );
1464
1465     struct vol *p, *prevvol;
1466
1467     vol = Volumes;
1468     prevvol = NULL;
1469
1470     while (vol) {
1471         if (vol->v_deleted && !(vol->v_flags & AFPVOL_OPEN)) {
1472             LOG(log_debug, logtype_afpd, "load_volumes: deleted: %s", vol->v_localname);
1473             if (prevvol)
1474                 prevvol->v_next = vol->v_next;
1475             else
1476                 Volumes = NULL;
1477             p = vol->v_next;
1478             volume_free(vol);
1479             vol = p;
1480         } else {
1481             prevvol = vol;
1482             vol = vol->v_next;
1483         }
1484     }
1485
1486 EC_CLEANUP:
1487     if (fd != -1)
1488         (void)close(fd);
1489
1490     LOG(log_debug, logtype_afpd, "load_volumes: END");
1491     EC_EXIT;
1492 }
1493
1494 void unload_volumes(AFPObj *obj)
1495 {
1496     struct vol *vol, *p;
1497
1498     LOG(log_debug, logtype_afpd, "unload_volumes: BEGIN");
1499
1500     p = Volumes;
1501     while (p) {
1502         vol = p;
1503         p = vol->v_next;
1504         volume_free(vol);
1505     }
1506     Volumes = NULL;
1507     obj->options.volfile.mtime = 0;
1508     
1509     LOG(log_debug, logtype_afpd, "unload_volumes: END");
1510 }
1511
1512 struct vol *getvolumes(void)
1513 {
1514     return Volumes;
1515 }
1516
1517 struct vol *getvolbyvid(const uint16_t vid )
1518 {
1519     struct vol  *vol;
1520
1521     for ( vol = Volumes; vol; vol = vol->v_next ) {
1522         if ( vid == vol->v_vid ) {
1523             break;
1524         }
1525     }
1526     if ( vol == NULL || ( vol->v_flags & AFPVOL_OPEN ) == 0 ) {
1527         return( NULL );
1528     }
1529
1530     return( vol );
1531 }
1532
1533 /*
1534  * get username by path
1535  * 
1536  * getvolbypath() assumes that the user home directory has the same name as the username.
1537  * If that is not true, getuserbypath() is called and tries to retrieve the username
1538  * from the directory owner, checking its validity.
1539  * 
1540  * @param   path (r) absolute volume path
1541  * @returns NULL     if no match is found, pointer to username if successfull
1542  *
1543  */ 
1544 static char *getuserbypath(const char *path)
1545 {
1546     EC_INIT;
1547     struct stat sbuf;
1548     struct passwd  *pwd;
1549     char *hdir = NULL;
1550
1551     LOG(log_debug, logtype_afpd, "getuserbypath(\"%s\")", path);
1552
1553     /* does folder exists? */
1554     if (stat(path, &sbuf) != 0)
1555         EC_FAIL;
1556
1557     /* get uid of dir owner */
1558     if ((pwd = getpwuid(sbuf.st_uid)) == NULL)
1559         EC_FAIL;
1560
1561     /* does user home directory exists? */
1562     if (stat(pwd->pw_dir, &sbuf) != 0)
1563         EC_FAIL;
1564
1565     /* resolve and remove symlinks */
1566     if ((hdir = realpath_safe(pwd->pw_dir)) == NULL) 
1567         EC_FAIL;
1568
1569     /* handle subdirectories, path = */
1570     if (strncmp(path, hdir, strlen(hdir)) != 0)
1571         EC_FAIL;
1572
1573     LOG(log_debug, logtype_afpd, "getuserbypath: match user: %s, home: %s, realhome: %s",
1574         pwd->pw_name, pwd->pw_dir, hdir);
1575
1576 EC_CLEANUP:
1577     if (hdir)
1578         free(hdir);
1579     if (ret != 0)
1580         return NULL;
1581     return pwd->pw_name;
1582 }
1583 /*!
1584  * Search volume by path, creating user home vols as necessary
1585  *
1586  * Path may be absolute or relative. Ordinary volume structs are created when
1587  * the ini config is initially parsed (load_volumes()), but user volumes are
1588  * as load_volumes() only can create the user volume of the logged in user
1589  * in an AFP session in afpd, but not when called from eg cnid_metad or dbd.
1590  * Both cnid_metad and dbd thus need a way to lookup and create struct vols
1591  * for user home by path. This is what this func does as well.
1592  *
1593  * (1) Search "normal" volume list 
1594  * (2) Check if theres a [Homes] section, load_volumes() remembers this for us
1595  * (3) If there is, match "path" with "basedir regex" to get the user home parent dir
1596  * (4) Built user home path by appending the basedir matched in (3) and appending the username
1597  * (5) The next path element then is the username
1598  * (5b) getvolbypath() assumes that the user home directory has the same name as the username.
1599  *     If that is not true, getuserbypath() is called and tries to retrieve the username
1600  *     from the directory owner, checking its validity
1601  * (6) Append [Homes]->path subdirectory if defined
1602  * (7) Create volume
1603  *
1604  * @param obj  (rw) handle
1605  * @param path (r)  path, may be relative or absolute
1606  */
1607 struct vol *getvolbypath(AFPObj *obj, const char *path)
1608 {
1609     EC_INIT;
1610     static int regexerr = -1;
1611     static regex_t reg;
1612     struct vol *vol;
1613     struct vol *tmp;
1614     const struct passwd *pw;
1615     char        volname[AFPVOL_U8MNAMELEN + 1];
1616     char        *realabspath = NULL;
1617     char        volpath[MAXPATHLEN + 1], *realvolpath = NULL;
1618     char        tmpbuf[MAXPATHLEN + 1];
1619     const char *secname, *basedir, *p = NULL, *subpath = NULL, *subpathconfig;
1620     char *user = NULL, *prw;
1621     regmatch_t match[1];
1622
1623     LOG(log_debug, logtype_afpd, "getvolbypath(\"%s\")", path);
1624
1625     /*  build absolute path */
1626     EC_NULL( realabspath = realpath_safe(path) );
1627     path = realabspath;
1628
1629     for (tmp = Volumes; tmp; tmp = tmp->v_next) { /* (1) */
1630         size_t v_path_len = strlen(tmp->v_path);
1631         if (strncmp(path, tmp->v_path, v_path_len) == 0) {
1632             if (v_path_len < strlen(path) && path[v_path_len] != '/') {
1633                 LOG(log_debug, logtype_afpd, "getvolbypath: path(\"%s\") != volume(\"%s\")", path, tmp->v_path);
1634             } else {
1635                 LOG(log_debug, logtype_afpd, "getvolbypath: path(\"%s\") == volume(\"%s\")", path, tmp->v_path);
1636                 vol = tmp;
1637                 goto EC_CLEANUP;
1638             }
1639         } else {
1640             LOG(log_debug, logtype_afpd, "getvolbypath: path(\"%s\") != volume(\"%s\")", path, tmp->v_path);
1641         }
1642     }
1643
1644     if (!have_uservol) /* (2) */
1645         EC_FAIL_LOG("getvolbypath(\"%s\"): no volume for path", path);
1646
1647     int secnum = atalk_iniparser_getnsec(obj->iniconfig);
1648
1649     for (int i = 0; i < secnum; i++) { 
1650         secname = atalk_iniparser_getsecname(obj->iniconfig, i);
1651         if (STRCMP(secname, ==, INISEC_HOMES))
1652             break;
1653     }
1654
1655     if (STRCMP(secname, !=, INISEC_HOMES))
1656         EC_FAIL_LOG("getvolbypath(\"%s\"): no volume for path", path);
1657
1658     /* (3) */
1659     EC_NULL_LOG( basedir = atalk_iniparser_getstring(obj->iniconfig, INISEC_HOMES, "basedir regex", NULL) );
1660     LOG(log_debug, logtype_afpd, "getvolbypath: user home section: '%s', basedir: '%s'", secname, basedir);
1661
1662     if (regexerr != 0 && (regexerr = regcomp(&reg, basedir, REG_EXTENDED)) != 0) {
1663         char errbuf[1024];
1664         regerror(regexerr, &reg, errbuf, sizeof(errbuf));
1665         printf("error: %s\n", errbuf);
1666         EC_FAIL_LOG("getvolbypath(\"%s\"): bad basedir regex: %s", errbuf);
1667     }
1668
1669     if (regexec(&reg, path, 1, match, 0) == REG_NOMATCH)
1670         EC_FAIL_LOG("getvolbypath(\"%s\"): no volume for path", path);
1671
1672     if (match[0].rm_eo - match[0].rm_so > MAXPATHLEN)
1673         EC_FAIL_LOG("getvolbypath(\"%s\"): path too long", path);
1674
1675     /* (4) */
1676     strncpy(tmpbuf, path + match[0].rm_so, match[0].rm_eo - match[0].rm_so);
1677     tmpbuf[match[0].rm_eo - match[0].rm_so] = 0;
1678
1679     LOG(log_debug, logtype_afpd, "getvolbypath: basedir regex: '%s', basedir match: \"%s\"",
1680         basedir, tmpbuf);
1681
1682     strlcat(tmpbuf, "/", MAXPATHLEN);
1683
1684     /* (5) */
1685     p = path + match[0].rm_eo - match[0].rm_so;
1686     while (*p == '/')
1687         p++;
1688     EC_NULL_LOG( user = strdup(p) );
1689
1690     if ((prw = strchr(user, '/')))
1691         *prw++ = 0;
1692     if (prw != 0)
1693         subpath = prw;
1694
1695     strlcat(tmpbuf, user, MAXPATHLEN);
1696     if ((pw = getpwnam(user)) == NULL) {
1697         /* (5b) */
1698         char *tuser;
1699         if ((tuser = getuserbypath(tmpbuf)) != NULL) {
1700             free(user);
1701             user = strdup(tuser);
1702         }
1703         if ((pw = getpwnam(user)) == NULL)
1704             EC_FAIL_LOG("unknown user: %s", user);
1705     }
1706     strlcpy(obj->username, user, MAXUSERLEN);
1707     strlcat(tmpbuf, "/", MAXPATHLEN);
1708
1709     /* (6) */
1710     if ((subpathconfig = atalk_iniparser_getstring(obj->iniconfig, INISEC_HOMES, "path", NULL))) {
1711         /*
1712         if (!subpath || strncmp(subpathconfig, subpath, strlen(subpathconfig)) != 0) {
1713             EC_FAIL;
1714         }
1715         */
1716         strlcat(tmpbuf, subpathconfig, MAXPATHLEN);
1717         strlcat(tmpbuf, "/", MAXPATHLEN);
1718     }
1719
1720
1721     /* (7) */
1722     if (volxlate(obj, volpath, sizeof(volpath) - 1, tmpbuf, pw, NULL, NULL) == NULL)
1723         EC_FAIL;
1724
1725     EC_NULL( realvolpath = realpath_safe(volpath) );
1726     EC_NULL( pw = getpwnam(user) );
1727
1728     LOG(log_debug, logtype_afpd, "getvolbypath(\"%s\"): user: %s, homedir: %s => realvolpath: \"%s\"",
1729         path, user, pw->pw_dir, realvolpath);
1730
1731     /* do variable substitution for volume name */
1732     p = atalk_iniparser_getstring(obj->iniconfig, INISEC_HOMES, "home name", "$u's home");
1733     if (strstr(p, "$u") == NULL)
1734         p = "$u's home";
1735     strlcpy(tmpbuf, p, AFPVOL_U8MNAMELEN);
1736     EC_NULL_LOG( volxlate(obj, volname, sizeof(volname) - 1, tmpbuf, pw, realvolpath, NULL) );
1737
1738     const char  *preset, *default_preset;
1739     default_preset = atalk_iniparser_getstring(obj->iniconfig, INISEC_GLOBAL, "vol preset", NULL);
1740     preset = atalk_iniparser_getstring(obj->iniconfig, INISEC_HOMES, "vol preset", NULL);
1741
1742     vol = creatvol(obj, pw, INISEC_HOMES, volname, realvolpath, preset ? preset : default_preset ? default_preset : NULL);
1743
1744 EC_CLEANUP:
1745     if (user)
1746         free(user);
1747     if (realvolpath)
1748         free(realvolpath);
1749     if (realabspath)
1750         free(realabspath);
1751     if (ret != 0)
1752         vol = NULL;
1753     return vol;
1754 }
1755
1756 struct vol *getvolbyname(const char *name)
1757 {
1758     struct vol *vol = NULL;
1759     struct vol *tmp;
1760
1761     for (tmp = Volumes; tmp; tmp = tmp->v_next) {
1762         if (strncmp(name, tmp->v_configname, strlen(tmp->v_configname)) == 0) {
1763             vol = tmp;
1764             break;
1765         }
1766     }
1767     return vol;
1768 }
1769
1770 #define MAXVAL 1024
1771 /*!
1772  * Initialize an AFPObj and options from ini config file
1773  */
1774 int afp_config_parse(AFPObj *AFPObj, char *processname)
1775 {
1776     EC_INIT;
1777     dictionary *config;
1778     struct afp_options *options = &AFPObj->options;
1779     int c;
1780     const char *p;
1781     char *q, *r;
1782     char val[MAXVAL];
1783
1784     if (processname != NULL)
1785         set_processname(processname);
1786
1787     AFPObj->afp_version = 11;
1788     options->configfile  = AFPObj->cmdlineconfigfile ? strdup(AFPObj->cmdlineconfigfile) : strdup(_PATH_CONFDIR "afp.conf");
1789     options->sigconffile = strdup(_PATH_STATEDIR "afp_signature.conf");
1790     options->uuidconf    = strdup(_PATH_STATEDIR "afp_voluuid.conf");
1791 #ifdef HAVE_TRACKER_SPARQL
1792     options->slmod_path  = strdup(_PATH_AFPDUAMPATH "slmod_sparql.so");
1793 #endif
1794     options->flags       = OPTION_UUID | AFPObj->cmdlineflags;
1795     
1796     if ((config = atalk_iniparser_load(AFPObj->options.configfile)) == NULL)
1797         return -1;
1798     AFPObj->iniconfig = config;
1799
1800     /* [Global] */
1801     options->logconfig = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "log level", "default:note");
1802     options->logfile   = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "log file",  NULL);
1803
1804     setuplog(options->logconfig, options->logfile);
1805
1806     /* "server options" boolean options */
1807     if (!atalk_iniparser_getboolean(config, INISEC_GLOBAL, "zeroconf", 1))
1808         options->flags |= OPTION_NOZEROCONF;
1809     if (atalk_iniparser_getboolean(config, INISEC_GLOBAL, "advertise ssh", 0))
1810         options->flags |= OPTION_ANNOUNCESSH;
1811     if (atalk_iniparser_getboolean(config, INISEC_GLOBAL, "close vol", 0))
1812         options->flags |= OPTION_CLOSEVOL;
1813     if (!atalk_iniparser_getboolean(config, INISEC_GLOBAL, "client polling", 0))
1814         options->flags |= OPTION_SERVERNOTIF;
1815     if (!atalk_iniparser_getboolean(config, INISEC_GLOBAL, "use sendfile", 1))
1816         options->flags |= OPTION_NOSENDFILE;
1817     if (atalk_iniparser_getboolean(config, INISEC_GLOBAL, "recvfile", 0))
1818         options->flags |= OPTION_RECVFILE;
1819     if (atalk_iniparser_getboolean(config, INISEC_GLOBAL, "solaris share reservations", 1))
1820         options->flags |= OPTION_SHARE_RESERV;
1821     if (atalk_iniparser_getboolean(config, INISEC_GLOBAL, "afpstats", 0))
1822         options->flags |= OPTION_DBUS_AFPSTATS;
1823     if (atalk_iniparser_getboolean(config, INISEC_GLOBAL, "afp read locks", 0))
1824         options->flags |= OPTION_AFP_READ_LOCK;
1825     if (atalk_iniparser_getboolean(config, INISEC_GLOBAL, "spotlight", 0))
1826         options->flags |= OPTION_SPOTLIGHT_VOL;
1827     if (atalk_iniparser_getboolean(config, INISEC_GLOBAL, "veto message", 0))
1828         options->flags |= OPTION_VETOMSG;
1829     if (!atalk_iniparser_getboolean(config, INISEC_GLOBAL, "save password", 1))
1830         options->passwdbits |= PASSWD_NOSAVE;
1831     if (atalk_iniparser_getboolean(config, INISEC_GLOBAL, "set password", 0))
1832         options->passwdbits |= PASSWD_SET;
1833     if (atalk_iniparser_getboolean(config, INISEC_GLOBAL, "spotlight expr", 1))
1834         options->flags |= OPTION_SPOTLIGHT_EXPR;
1835
1836     /* figure out options w values */
1837     options->loginmesg      = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "login message",  NULL);
1838     options->guest          = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "guest account",  "nobody");
1839     options->extmapfile     = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "extmap file",    _PATH_CONFDIR "extmap.conf");
1840     options->passwdfile     = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "passwd file",    _PATH_AFPDPWFILE);
1841     options->uampath        = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "uam path",       _PATH_AFPDUAMPATH);
1842     options->uamlist        = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "uam list",       "uams_dhx.so uams_dhx2.so");
1843     options->port           = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "afp port",       "548");
1844     options->signatureopt   = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "signature",      "");
1845     options->k5service      = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "k5 service",     NULL);
1846     options->k5realm        = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "k5 realm",       NULL);
1847     options->listen         = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "afp listen",     NULL);
1848     options->interfaces     = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "afp interfaces", NULL);
1849     options->ntdomain       = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "nt domain",      NULL);
1850     options->addomain       = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "ad domain",      NULL);
1851     options->ntseparator    = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "nt separator",   NULL);
1852     options->mimicmodel     = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "mimic model",    NULL);
1853     options->adminauthuser  = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "admin auth user",NULL);
1854     options->ignored_attr   = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "ignored attributes", NULL);
1855     options->cnid_mysql_host = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "cnid mysql host", NULL);
1856     options->cnid_mysql_user = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "cnid mysql user", NULL);
1857     options->cnid_mysql_pw  = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "cnid mysql pw", NULL);
1858     options->cnid_mysql_db  = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "cnid mysql db", NULL);
1859     options->connections    = atalk_iniparser_getint   (config, INISEC_GLOBAL, "max connections",200);
1860     options->passwdminlen   = atalk_iniparser_getint   (config, INISEC_GLOBAL, "passwd minlen",  0);
1861     options->tickleval      = atalk_iniparser_getint   (config, INISEC_GLOBAL, "tickleval",      30);
1862     options->timeout        = atalk_iniparser_getint   (config, INISEC_GLOBAL, "timeout",        4);
1863     options->dsireadbuf     = atalk_iniparser_getint   (config, INISEC_GLOBAL, "dsireadbuf",     12);
1864     options->server_quantum = atalk_iniparser_getint   (config, INISEC_GLOBAL, "server quantum", DSI_SERVQUANT_DEF);
1865     options->volnamelen     = atalk_iniparser_getint   (config, INISEC_GLOBAL, "volnamelen",     80);
1866     options->dircachesize   = atalk_iniparser_getint   (config, INISEC_GLOBAL, "dircachesize",   DEFAULT_MAX_DIRCACHE_SIZE);
1867     options->tcp_sndbuf     = atalk_iniparser_getint   (config, INISEC_GLOBAL, "tcpsndbuf",      0);
1868     options->tcp_rcvbuf     = atalk_iniparser_getint   (config, INISEC_GLOBAL, "tcprcvbuf",      0);
1869     options->fce_fmodwait   = atalk_iniparser_getint   (config, INISEC_GLOBAL, "fce holdfmod",   60);
1870     options->sleep          = atalk_iniparser_getint   (config, INISEC_GLOBAL, "sleep time",     10);
1871     options->disconnected   = atalk_iniparser_getint   (config, INISEC_GLOBAL, "disconnect time",24);
1872     options->splice_size    = atalk_iniparser_getint   (config, INISEC_GLOBAL, "splice size",    64*1024);
1873     options->sparql_limit   = atalk_iniparser_getint   (config, INISEC_GLOBAL, "sparql results limit", 0);
1874
1875     p = atalk_iniparser_getstring(config, INISEC_GLOBAL, "map acls", "rights");
1876     if (STRCMP(p, ==, "rights"))
1877         options->flags |= OPTION_ACL2MACCESS;
1878     else if (STRCMP(p, ==, "mode"))
1879         options->flags |= OPTION_ACL2MODE | OPTION_ACL2MACCESS;
1880     else {
1881         if (STRCMP(p, !=, "none")) {
1882             LOG(log_error, logtype_afpd, "bad ACL mapping option: %s, defaulting to 'rights'", p);
1883             options->flags |= OPTION_ACL2MACCESS;
1884         }
1885     }
1886
1887     if ((p = atalk_iniparser_getstring(config, INISEC_GLOBAL, "hostname", NULL))) {
1888         EC_NULL_LOG( options->hostname = strdup(p) );
1889     } else {
1890         if (gethostname(val, sizeof(val)) < 0 ) {
1891             perror( "gethostname" );
1892             EC_FAIL;
1893         }
1894         if ((q = strchr(val, '.')))
1895             *q = '\0';
1896         options->hostname = strdup(val);
1897     }
1898
1899     if ((p = atalk_iniparser_getstring(config, INISEC_GLOBAL, "k5 keytab", NULL))) {
1900         EC_NULL_LOG( options->k5keytab = malloc(strlen(p) + 14) );
1901         snprintf(options->k5keytab, strlen(p) + 14, "KRB5_KTNAME=%s", p);
1902         putenv(options->k5keytab);
1903     }
1904
1905 #ifdef ADMIN_GRP
1906     if ((p = atalk_iniparser_getstring(config, INISEC_GLOBAL, "admin group",  NULL))) {
1907          struct group *gr = getgrnam(p);
1908          if (gr != NULL)
1909              options->admingid = gr->gr_gid;
1910     }
1911 #endif /* ADMIN_GRP */
1912
1913     q = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "cnid server", "localhost:4700");
1914     r = strrchr(q, ':');
1915     if (r)
1916         *r = 0;
1917     options->Cnid_srv = strdup(q);
1918     if (r)
1919         options->Cnid_port = strdup(r + 1);
1920     else
1921         options->Cnid_port = strdup("4700");
1922     LOG(log_debug, logtype_afpd, "CNID Server: %s:%s", options->Cnid_srv, options->Cnid_port);
1923     if (q)
1924         free(q);
1925
1926     if ((q = atalk_iniparser_getstrdup(config, INISEC_GLOBAL, "fqdn", NULL))) {
1927         /* do a little checking for the domain name. */
1928         r = strchr(q, ':');
1929         if (r)
1930             *r = '\0';
1931         if (gethostbyname(q)) {
1932             if (r)
1933                 *r = ':';
1934             EC_NULL_LOG( options->fqdn = strdup(q) );
1935         } else {
1936             LOG(log_error, logtype_afpd, "error parsing -fqdn, gethostbyname failed for: %s", q);
1937         }
1938         free(q);
1939     }
1940
1941     /* Charset Options */
1942
1943     /* unix charset is in [G] only */
1944     if (!(p = atalk_iniparser_getstring(config, INISEC_GLOBAL, "unix charset", NULL))) {
1945         options->unixcodepage = strdup("UTF8");
1946         set_charset_name(CH_UNIX, "UTF8");
1947     } else {
1948         if (strcasecmp(p, "LOCALE") == 0) {
1949 #if defined(CODESET)
1950             setlocale(LC_ALL, "");
1951             p = nl_langinfo(CODESET);
1952             LOG(log_debug, logtype_afpd, "Locale charset is '%s'", p);
1953 #else /* system doesn't have LOCALE support */
1954             LOG(log_warning, logtype_afpd, "system doesn't have LOCALE support");
1955             p = "UTF8";
1956 #endif
1957         }
1958         if (strcasecmp(p, "UTF-8") == 0) {
1959             p = "UTF8";
1960         }
1961         options->unixcodepage = strdup(p);
1962         set_charset_name(CH_UNIX, p);
1963     }
1964     options->unixcharset = CH_UNIX;
1965     LOG(log_debug, logtype_afpd, "Global unix charset is %s", options->unixcodepage);
1966
1967     /* vol charset is in [G] and [V] */
1968     if (!(p = atalk_iniparser_getstring(config, INISEC_GLOBAL, "vol charset", NULL))) {
1969         options->volcodepage = strdup(options->unixcodepage);
1970     } else {
1971         if (strcasecmp(p, "UTF-8") == 0) {
1972             p = "UTF8";
1973         }
1974         options->volcodepage = strdup(p);
1975     }
1976     LOG(log_debug, logtype_afpd, "Global vol charset is %s", options->volcodepage);
1977     
1978     /* mac charset is in [G] and [V] */
1979     if (!(p = atalk_iniparser_getstring(config, INISEC_GLOBAL, "mac charset", NULL))) {
1980         options->maccodepage = strdup("MAC_ROMAN");
1981         set_charset_name(CH_MAC, "MAC_ROMAN");
1982     } else {
1983         if (strncasecmp(p, "MAC", 3) != 0) {
1984             LOG(log_warning, logtype_afpd, "Is '%s' really mac charset? ", p);
1985         }
1986         options->maccodepage = strdup(p);
1987         set_charset_name(CH_MAC, p);
1988     }
1989     options->maccharset = CH_MAC;
1990     LOG(log_debug, logtype_afpd, "Global mac charset is %s", options->maccodepage);
1991
1992     if (readextmap(options->extmapfile) != 0) {
1993         LOG(log_error, logtype_afpd, "Couldn't load extension -> type/creator mappings file \"%s\"",
1994             options->extmapfile);
1995     }
1996
1997     /* Check for sane values */
1998     if (options->tickleval <= 0)
1999         options->tickleval = 30;
2000         options->disconnected *= 3600 / options->tickleval;
2001         options->sleep *= 3600 / options->tickleval;
2002     if (options->timeout <= 0)
2003         options->timeout = 4;
2004     if (options->sleep <= 4)
2005         options->disconnected = options->sleep = 4;
2006     if (options->dsireadbuf < 6)
2007         options->dsireadbuf = 6;
2008     if (options->volnamelen < 8)
2009         options->volnamelen = 8; /* max mangled volname "???#FFFF" */
2010     if (options->volnamelen > 255)
2011         options->volnamelen = 255; /* AFP3 spec */
2012
2013 EC_CLEANUP:
2014     EC_EXIT;
2015 }
2016
2017 #define CONFIG_ARG_FREE(a) do {                     \
2018     free(a);                                        \
2019     a = NULL;                                       \
2020     } while (0);
2021
2022 /* get rid of any allocated afp_option buffers. */
2023 void afp_config_free(AFPObj *obj)
2024 {
2025     if (obj->options.configfile)
2026         CONFIG_ARG_FREE(obj->options.configfile);
2027     if (obj->options.sigconffile)
2028         CONFIG_ARG_FREE(obj->options.sigconffile);
2029     if (obj->options.uuidconf)
2030         CONFIG_ARG_FREE(obj->options.uuidconf);
2031     if (obj->options.logconfig)
2032         CONFIG_ARG_FREE(obj->options.logconfig);
2033     if (obj->options.logfile)
2034         CONFIG_ARG_FREE(obj->options.logfile);
2035     if (obj->options.loginmesg)
2036         CONFIG_ARG_FREE(obj->options.loginmesg);
2037     if (obj->options.guest)
2038         CONFIG_ARG_FREE(obj->options.guest);
2039     if (obj->options.extmapfile)
2040         CONFIG_ARG_FREE(obj->options.extmapfile);
2041     if (obj->options.passwdfile)
2042         CONFIG_ARG_FREE(obj->options.passwdfile);
2043     if (obj->options.uampath)
2044         CONFIG_ARG_FREE(obj->options.uampath);
2045     if (obj->options.uamlist)
2046         CONFIG_ARG_FREE(obj->options.uamlist);
2047     if (obj->options.port)
2048         CONFIG_ARG_FREE(obj->options.port);
2049     if (obj->options.signatureopt)
2050         CONFIG_ARG_FREE(obj->options.signatureopt);
2051     if (obj->options.k5service)
2052         CONFIG_ARG_FREE(obj->options.k5service);
2053     if (obj->options.k5realm)
2054         CONFIG_ARG_FREE(obj->options.k5realm);
2055     if (obj->options.k5principal)
2056         CONFIG_ARG_FREE(obj->options.k5principal);
2057     if (obj->options.listen)
2058         CONFIG_ARG_FREE(obj->options.listen);
2059     if (obj->options.interfaces)
2060         CONFIG_ARG_FREE(obj->options.interfaces);
2061     if (obj->options.ntdomain)
2062         CONFIG_ARG_FREE(obj->options.ntdomain);
2063     if (obj->options.addomain)
2064         CONFIG_ARG_FREE(obj->options.addomain);
2065     if (obj->options.ntseparator)
2066         CONFIG_ARG_FREE(obj->options.ntseparator);
2067     if (obj->options.mimicmodel)
2068         CONFIG_ARG_FREE(obj->options.mimicmodel);
2069     if (obj->options.adminauthuser)
2070         CONFIG_ARG_FREE(obj->options.adminauthuser);
2071     if (obj->options.hostname)
2072         CONFIG_ARG_FREE(obj->options.hostname);
2073     if (obj->options.k5keytab)
2074         CONFIG_ARG_FREE(obj->options.k5keytab);
2075     if (obj->options.Cnid_srv)
2076         CONFIG_ARG_FREE(obj->options.Cnid_srv);
2077     if (obj->options.Cnid_port)
2078         CONFIG_ARG_FREE(obj->options.Cnid_port);
2079     if (obj->options.fqdn)
2080         CONFIG_ARG_FREE(obj->options.fqdn);
2081     if (obj->options.ignored_attr)
2082         CONFIG_ARG_FREE(obj->options.ignored_attr);
2083     if (obj->options.slmod_path)
2084         CONFIG_ARG_FREE(obj->options.slmod_path);
2085
2086     if (obj->options.unixcodepage)
2087         CONFIG_ARG_FREE(obj->options.unixcodepage);
2088     if (obj->options.maccodepage)
2089         CONFIG_ARG_FREE(obj->options.maccodepage);
2090     if (obj->options.volcodepage)
2091         CONFIG_ARG_FREE(obj->options.volcodepage);
2092
2093     obj->options.flags = 0;
2094     obj->options.passwdbits = 0;
2095
2096     /* Free everything called from afp_config_parse() */
2097     free_extmap();
2098     atalk_iniparser_freedict(obj->iniconfig);
2099     free_charset_names();
2100 }