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