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