]> arthur.barton.de Git - netatalk.git/blob - libatalk/util/netatalk_conf.c
Read voldefault preset from AFP section
[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     else
610         EC_NULL( volume->v_volcodepage = strdup("UTF8") );
611
612     if (val = getoption(obj->iniconfig, name, "maccharset", preset))
613         EC_NULL( volume->v_maccodepage = strdup(val) );
614     else
615         EC_NULL( volume->v_maccodepage = strdup(obj->options.maccodepage) );
616
617     if (val = getoption(obj->iniconfig, name, "dbpath", preset))
618         EC_NULL( volume->v_dbpath = volxlate(obj, NULL, MAXPATHLEN, val, pwd, path, name) );
619
620     if (val = getoption(obj->iniconfig, name, "cnidscheme", preset))
621         EC_NULL( volume->v_cnidscheme = strdup(val) );
622
623     if (val = getoption(obj->iniconfig, name, "umask", preset))
624         volume->v_umask = (int)strtol(val, NULL, 8);
625
626     if (val = getoption(obj->iniconfig, name, "dperm", preset))
627         volume->v_dperm = (int)strtol(val, NULL, 8);
628
629     if (val = getoption(obj->iniconfig, name, "fperm", preset))
630         volume->v_fperm = (int)strtol(val, NULL, 8);
631
632     if (val = getoption(obj->iniconfig, name, "perm", preset))
633         volume->v_perm = (int)strtol(val, NULL, 8);
634
635     if (val = getoption(obj->iniconfig, name, "volsizelimit", preset))
636         volume->v_limitsize = (uint32_t)strtoul(val, NULL, 10);
637
638     if (val = getoption(obj->iniconfig, name, "preexec", preset))
639         EC_NULL( volume->v_preexec = volxlate(obj, NULL, MAXPATHLEN, val, pwd, path, name) );
640
641     if (val = getoption(obj->iniconfig, name, "postexec", preset))
642         EC_NULL( volume->v_postexec = volxlate(obj, NULL, MAXPATHLEN, val, pwd, path, name) );
643
644     if (val = getoption(obj->iniconfig, name, "root_preexec", preset))
645         EC_NULL( volume->v_root_preexec = volxlate(obj, NULL, MAXPATHLEN, val, pwd, path, name) );
646
647     if (val = getoption(obj->iniconfig, name, "root_postexec", preset))
648         EC_NULL( volume->v_root_postexec = volxlate(obj, NULL, MAXPATHLEN, val, pwd, path, name) );
649
650     if (val = getoption(obj->iniconfig, name, "adouble", preset)) {
651         if (strcmp(val, "v2") == 0)
652             volume->v_adouble = AD_VERSION2;
653         else if (strcmp(val, "ea") == 0)
654             volume->v_adouble = AD_VERSION_EA;
655     } else {
656         volume->v_adouble = AD_VERSION;
657     }
658
659     if (val = getoption(obj->iniconfig, name, "cnidserver", preset)) {
660         EC_NULL( p = strdup(val) );
661         volume->v_cnidserver = p;
662         if (q = strrchr(val, ':')) {
663             *q++ = 0;
664             volume->v_cnidport = q;
665         } else {
666             volume->v_cnidport = "4700";
667         }
668
669     }
670
671     if (val = getoption(obj->iniconfig, name, "ea", preset)) {
672         if (strcasecmp(val, "ad") == 0)
673             volume->v_vfs_ea = AFPVOL_EA_AD;
674         else if (strcasecmp(val, "sys") == 0)
675             volume->v_vfs_ea = AFPVOL_EA_SYS;
676         else if (strcasecmp(val, "none") == 0)
677             volume->v_vfs_ea = AFPVOL_EA_NONE;
678     }
679
680     if (val = getoption(obj->iniconfig, name, "casefold", preset)) {
681         if (strcasecmp(val, "tolower") == 0)
682             volume->v_casefold = AFPVOL_UMLOWER;
683         else if (strcasecmp(val, "toupper") == 0)
684             volume->v_casefold = AFPVOL_UMUPPER;
685         else if (strcasecmp(val, "xlatelower") == 0)
686             volume->v_casefold = AFPVOL_UUPPERMLOWER;
687         else if (strcasecmp(val, "xlateupper") == 0)
688             volume->v_casefold = AFPVOL_ULOWERMUPPER;
689     }
690
691     if (val = getoption(obj->iniconfig, name, "options", preset)) {
692         q = strdup(val);
693         if (p = strtok(q, ", ")) {
694             while (p) {
695                 if (strcasecmp(p, "ro") == 0)
696                     volume->v_flags |= AFPVOL_RO;
697                 else if (strcasecmp(p, "nohex") == 0)
698                     volume->v_flags |= AFPVOL_NOHEX;
699                 else if (strcasecmp(p, "nousedots") == 0)
700                     volume->v_flags &= ~AFPVOL_USEDOTS;
701                 else if (strcasecmp(p, "invisibledots") == 0)
702                     volume->v_flags |= volume->v_flags;
703                 else if (strcasecmp(p, "nostat") == 0)
704                     volume->v_flags |= AFPVOL_NOSTAT;
705                 else if (strcasecmp(p, "noupriv") == 0)
706                     volume->v_flags &= ~AFPVOL_UNIX_PRIV;
707                 else if (strcasecmp(p, "nodev") == 0)
708                     volume->v_flags |= AFPVOL_NODEV;
709                 else if (strcasecmp(p, "caseinsensitive") == 0)
710                     volume->v_flags |= AFPVOL_CASEINSEN;
711                 else if (strcasecmp(p, "illegalseq") == 0)
712                     volume->v_flags |= AFPVOL_EILSEQ;
713                 else if (strcasecmp(p, "tm") == 0)
714                     volume->v_flags |= AFPVOL_TM;
715                 else if (strcasecmp(p, "searchdb") == 0)
716                     volume->v_flags |= AFPVOL_SEARCHDB;
717                 else if (strcasecmp(p, "nonetids") == 0)
718                     volume->v_flags |= AFPVOL_NONETIDS;
719                 else if (strcasecmp(p, "noacls") == 0)
720                     volume->v_flags &= ~AFPVOL_ACLS;
721                 else if (strcasecmp(p, "nov2toeaconv") == 0)
722                     volume->v_flags |= AFPVOL_NOV2TOEACONV;
723                 else if (strcasecmp(p, "preexec_close") == 0)
724                     volume->v_preexec_close = 1;
725                 else if (strcasecmp(p, "root_preexec_close") == 0)
726                     volume->v_root_preexec_close = 1;
727                 p = strtok(NULL, ", ");
728             }
729         }
730         free(q);
731     }
732
733     /*
734      * Handle read-only behaviour. semantics:
735      * 1) neither the rolist nor the rwlist exist -> rw
736      * 2) rolist exists -> ro if user is in it.
737      * 3) rwlist exists -> ro unless user is in it.
738      */
739     if (pwd) {
740         if (accessvol(obj, getoption(obj->iniconfig, name, "rolist", preset), pwd->pw_name) == 1
741             || accessvol(obj, getoption(obj->iniconfig, name, "rwlist", preset), pwd->pw_name) == 0)
742             volume->v_flags |= AFPVOL_RO;
743     }
744
745     if ((volume->v_flags & AFPVOL_NODEV))
746         volume->v_ad_options |= ADVOL_NODEV;
747     if ((volume->v_flags & AFPVOL_UNIX_PRIV))
748         volume->v_ad_options |= ADVOL_UNIXPRIV;
749     if ((volume->v_flags & AFPVOL_INV_DOTS))
750         volume->v_ad_options |= ADVOL_INVDOTS;
751
752     /* Mac to Unix conversion flags*/
753     if (!(volume->v_flags & AFPVOL_NOHEX))
754         volume->v_mtou_flags |= CONV_ESCAPEHEX;
755     if (!(volume->v_flags & AFPVOL_USEDOTS))
756         volume->v_mtou_flags |= CONV_ESCAPEDOTS;
757     if ((volume->v_flags & AFPVOL_EILSEQ))
758         volume->v_mtou_flags |= CONV__EILSEQ;
759
760     if ((volume->v_casefold & AFPVOL_MTOUUPPER))
761         volume->v_mtou_flags |= CONV_TOUPPER;
762     else if ((volume->v_casefold & AFPVOL_MTOULOWER))
763         volume->v_mtou_flags |= CONV_TOLOWER;
764
765     /* Unix to Mac conversion flags*/
766     volume->v_utom_flags = CONV_IGNORE | CONV_UNESCAPEHEX;
767     if ((volume->v_casefold & AFPVOL_UTOMUPPER))
768         volume->v_utom_flags |= CONV_TOUPPER;
769     else if ((volume->v_casefold & AFPVOL_UTOMLOWER))
770         volume->v_utom_flags |= CONV_TOLOWER;
771     if ((volume->v_flags & AFPVOL_EILSEQ))
772         volume->v_utom_flags |= CONV__EILSEQ;
773
774     /* suffix for mangling use (lastvid + 1)   */
775     /* because v_vid has not been decided yet. */
776     suffixlen = sprintf(suffix, "#%X", lastvid + 1 );
777
778     vlen = strlen( name );
779
780     /* Unicode Volume Name */
781     /* Firstly convert name from unixcharset to UTF8-MAC */
782     flags = CONV_IGNORE;
783     tmpvlen = convert_charset(obj->options.unixcharset, CH_UTF8_MAC, 0, name, vlen, tmpname, AFPVOL_U8MNAMELEN, &flags);
784     if (tmpvlen <= 0) {
785         strcpy(tmpname, "???");
786         tmpvlen = 3;
787     }
788
789     /* Do we have to mangle ? */
790     if ( (flags & CONV_REQMANGLE) || (tmpvlen > obj->options.volnamelen)) {
791         if (tmpvlen + suffixlen > obj->options.volnamelen) {
792             flags = CONV_FORCE;
793             tmpvlen = convert_charset(obj->options.unixcharset, CH_UTF8_MAC, 0, name, vlen, tmpname, obj->options.volnamelen - suffixlen, &flags);
794             tmpname[tmpvlen >= 0 ? tmpvlen : 0] = 0;
795         }
796         strcat(tmpname, suffix);
797         tmpvlen = strlen(tmpname);
798     }
799
800     /* Secondly convert name from UTF8-MAC to UCS2 */
801     if ( 0 >= ( u8mvlen = convert_string(CH_UTF8_MAC, CH_UCS2, tmpname, tmpvlen, u8mtmpname, AFPVOL_U8MNAMELEN*2)) )
802         EC_FAIL;
803
804     LOG(log_maxdebug, logtype_afpd, "createvol: Volume '%s' -> UTF8-MAC Name: '%s'", name, tmpname);
805
806     /* Maccharset Volume Name */
807     /* Firsty convert name from unixcharset to maccharset */
808     flags = CONV_IGNORE;
809     tmpvlen = convert_charset(obj->options.unixcharset, obj->options.maccharset, 0, name, vlen, tmpname, AFPVOL_U8MNAMELEN, &flags);
810     if (tmpvlen <= 0) {
811         strcpy(tmpname, "???");
812         tmpvlen = 3;
813     }
814
815     /* Do we have to mangle ? */
816     if ( (flags & CONV_REQMANGLE) || (tmpvlen > AFPVOL_MACNAMELEN)) {
817         if (tmpvlen + suffixlen > AFPVOL_MACNAMELEN) {
818             flags = CONV_FORCE;
819             tmpvlen = convert_charset(obj->options.unixcharset,
820                                       obj->options.maccharset,
821                                       0,
822                                       name,
823                                       vlen,
824                                       tmpname,
825                                       AFPVOL_MACNAMELEN - suffixlen,
826                                       &flags);
827             tmpname[tmpvlen >= 0 ? tmpvlen : 0] = 0;
828         }
829         strcat(tmpname, suffix);
830         tmpvlen = strlen(tmpname);
831     }
832
833     /* Secondly convert name from maccharset to UCS2 */
834     if ( 0 >= ( macvlen = convert_string(obj->options.maccharset,
835                                          CH_UCS2,
836                                          tmpname,
837                                          tmpvlen,
838                                          mactmpname,
839                                          AFPVOL_U8MNAMELEN*2)) )
840         EC_FAIL;
841
842     LOG(log_maxdebug, logtype_afpd, "createvol: Volume '%s' ->  Longname: '%s'", name, tmpname);
843
844     EC_NULL( volume->v_localname = strdup(name) );
845     EC_NULL( volume->v_u8mname = strdup_w(u8mtmpname) );
846     EC_NULL( volume->v_macname = strdup_w(mactmpname) );
847     EC_NULL( volume->v_path = malloc(strlen(path) + 1) );
848
849     volume->v_name = utf8_encoding(obj) ? volume->v_u8mname : volume->v_macname;
850     strcpy(volume->v_path, path);
851
852 #ifdef __svr4__
853     volume->v_qfd = -1;
854 #endif /* __svr4__ */
855
856     /* os X start at 1 and use network order ie. 1 2 3 */
857     volume->v_vid = ++lastvid;
858     volume->v_vid = htons(volume->v_vid);
859
860 #ifdef HAVE_ACLS
861     if (!check_vol_acl_support(volume)) {
862         LOG(log_debug, logtype_afpd, "creatvol(\"%s\"): disabling ACL support", volume->v_path);
863         volume->v_flags &= ~AFPVOL_ACLS;
864     }
865 #endif
866
867     volume->v_dperm |= volume->v_perm;
868     volume->v_fperm |= volume->v_perm;
869
870     /* Check EA support on volume */
871     if (volume->v_vfs_ea == AFPVOL_EA_AUTO || volume->v_adouble == AD_VERSION_EA)
872         check_ea_support(volume);
873     initvol_vfs(volume);
874
875     /* get/store uuid from file in afpd master*/
876     if (!(pwd) && (volume->v_flags & AFPVOL_TM)) {
877         char *uuid = get_vol_uuid(obj, volume->v_localname);
878         if (!uuid) {
879             LOG(log_error, logtype_afpd, "Volume '%s': couldn't get UUID",
880                 volume->v_localname);
881         } else {
882             volume->v_uuid = uuid;
883             LOG(log_debug, logtype_afpd, "Volume '%s': UUID '%s'",
884                 volume->v_localname, volume->v_uuid);
885         }
886     }
887
888     /* no errors shall happen beyond this point because the cleanup would mess the volume chain up */
889     volume->v_next = Volumes;
890     Volumes = volume;
891     volume->v_obj = obj;
892
893 EC_CLEANUP:
894     if (ret != 0) {
895         if (volume) {
896             volume_free(volume);
897             free(volume);
898         }
899     }
900     LOG(log_debug, logtype_afpd, "createvol: END: %d", ret);
901     EC_EXIT;
902 }
903
904 /* ----------------------
905  */
906 static int volfile_changed(struct afp_options *p)
907 {
908     struct stat st;
909
910     if (!stat(p->configfile, &st) && st.st_mtime > p->volfile.mtime) {
911         p->volfile.mtime = st.st_mtime;
912         return 1;
913     }
914     return 0;
915 }
916
917 static int vol_section(const char *sec)
918 {
919     if (STRCMP(sec, ==, INISEC_GLOBAL))
920         return 0;
921     if (STRCMP(sec, ==, INISEC_AFP))
922         return 0;
923     if (STRCMP(sec, ==, INISEC_CNID))
924         return 0;
925     return 1;
926 }
927
928 #define MAXPRESETLEN 100
929 /*!
930  * Read volumes from iniconfig and add the volumes contained within to
931  * the global volume list. This gets called from the forked afpd childs.
932  * The master now reads this too for Zeroconf announcements.
933  */
934 static int readvolfile(AFPObj *obj, const struct passwd *pwent)
935 {
936     EC_INIT;
937     char        path[MAXPATHLEN + 1];
938     char        volname[AFPVOL_U8MNAMELEN + 1];
939     char        tmp[MAXPATHLEN + 1];
940     const char  *preset, *default_preset, *p;
941     int         i;
942
943     LOG(log_debug, logtype_afpd, "readvolfile: BEGIN");
944
945     int secnum = iniparser_getnsec(obj->iniconfig);    
946     LOG(log_debug, logtype_afpd, "readvolfile: sections: %d", secnum);
947     const char *secname;
948
949     if ((p = iniparser_getstring(obj->iniconfig, INISEC_AFP, "preset", NULL))) {
950         default_preset = p;
951         LOG(log_debug, logtype_afpd, "readvolfile: default_preset: %s", default_preset);
952     }
953
954     for (i = 0; i < secnum; i++) { 
955         secname = iniparser_getsecname(obj->iniconfig, i);
956
957         if (!vol_section(secname))
958             continue;
959
960         /* Get path */
961         if ((p = iniparser_getstring(obj->iniconfig, secname, "path", NULL)) == NULL)
962             continue;
963         strlcpy(tmp, p, MAXPATHLEN);
964         if (volxlate(obj, path, sizeof(path) - 1, tmp, pwent, NULL, NULL) == NULL)
965             continue;
966
967         strlcpy(tmp, secname, AFPVOL_U8MNAMELEN);
968         LOG(log_debug, logtype_afpd, "readvolfile: volume: %s", volname);
969
970         /* do variable substitution for volname */
971         if (volxlate(obj, volname, sizeof(volname) - 1, tmp, pwent, path, NULL) == NULL) {
972             continue;
973         }
974
975         preset = iniparser_getstring(obj->iniconfig, secname, "preset", NULL);
976
977         creatvol(obj, pwent, path, volname, preset ? preset : default_preset ? default_preset : NULL);
978     }
979
980 EC_CLEANUP:
981     EC_EXIT;
982 }
983
984 /**************************************************************
985  * API functions
986  **************************************************************/
987
988 /*!
989  * Remove a volume from the linked list of volumes
990  */
991 void volume_unlink(struct vol *volume)
992 {
993     struct vol *vol, *ovol, *nvol;
994
995     if (volume == Volumes) {
996         Volumes = NULL;
997         return;
998     }
999     for ( vol = Volumes->v_next, ovol = Volumes; vol; vol = nvol) {
1000         nvol = vol->v_next;
1001
1002         if (vol == volume) {
1003             ovol->v_next = nvol;
1004             break;
1005         }
1006         else {
1007             ovol = vol;
1008         }
1009     }
1010 }
1011
1012 /*!
1013  * Free all resources allocated in a struct vol, only struct dir *v_root can't be freed
1014  */
1015 void volume_free(struct vol *vol)
1016 {
1017     LOG(log_debug, logtype_afpd, "volume_free('%s'): BEGIN", vol->v_localname);
1018
1019     free(vol->v_localname);
1020     free(vol->v_u8mname);
1021     free(vol->v_macname);
1022     free(vol->v_path);
1023     free(vol->v_password);
1024     free(vol->v_veto);
1025     free(vol->v_volcodepage);
1026     free(vol->v_maccodepage);
1027     free(vol->v_cnidscheme);
1028     free(vol->v_dbpath);
1029     free(vol->v_gvs);
1030     free(vol->v_uuid);
1031     free(vol->v_cnidserver);
1032 #if 0
1033     /* NO! Just points to v_cnidserver + x */
1034     free(vol->v_cnidport);
1035 #endif
1036     free(vol->v_root_preexec);
1037     free(vol->v_postexec);
1038
1039     LOG(log_debug, logtype_afpd, "volume_free: END");
1040 }
1041
1042 /*!
1043  * Load charsets for a volume
1044  */
1045 int load_charset(struct vol *vol)
1046 {
1047     if ((vol->v_maccharset = add_charset(vol->v_maccodepage)) == (charset_t)-1) {
1048         LOG(log_error, logtype_default, "Setting Mac codepage '%s' failed", vol->v_maccodepage);
1049         return -1;
1050     }
1051
1052     if ((vol->v_volcharset = add_charset(vol->v_volcodepage)) == (charset_t)-1) {
1053         LOG(log_error, logtype_default, "Setting volume codepage '%s' failed", vol->v_volcodepage);
1054         return -1;
1055     }
1056
1057     return 0;
1058 }
1059
1060 /*!
1061  * Initialize volumes and load ini configfile
1062  *
1063  * Depending on the value of obj->uid either access checks are done (!=0) or skipped (=0)
1064  *
1065  * @param obj       (r) handle
1066  * @param delvol_fn (r) callback called for deleted volumes
1067  */
1068 int load_volumes(AFPObj *obj, void (*delvol_fn)(struct vol *))
1069 {
1070     EC_INIT;
1071     int fd = -1;
1072     struct passwd   *pwent = NULL;
1073     struct stat         st;
1074     int retries = 0;
1075     struct vol *vol;
1076
1077     LOG(log_debug, logtype_afpd, "load_volumes: BEGIN");
1078
1079     if (Volumes) {
1080         if (!volfile_changed(&obj->options))
1081             goto EC_CLEANUP;
1082         for (vol = Volumes; vol; vol = vol->v_next)
1083             vol->v_deleted = 1;
1084     } else {
1085         LOG(log_debug, logtype_afpd, "load_volumes: no volumes yet");
1086         EC_ZERO_LOG( lstat(obj->options.configfile, &st) );
1087         obj->options.volfile.mtime = st.st_mtime;
1088     }
1089
1090     /* try putting a read lock on the volume file twice, sleep 1 second if first attempt fails */
1091
1092     fd = open(obj->options.configfile, O_RDONLY);
1093
1094     while (retries < 2) {
1095         if ((read_lock(fd, 0, SEEK_SET, 0)) != 0) {
1096             retries++;
1097             if (!retries) {
1098                 LOG(log_error, logtype_afpd, "readvolfile: can't lock configfile \"%s\"",
1099                     obj->options.configfile);
1100                 EC_FAIL;
1101             }
1102             sleep(1);
1103             continue;
1104         }
1105         break;
1106     }
1107
1108     if (obj->uid)
1109         pwent = getpwuid(obj->uid);
1110
1111     if (obj->iniconfig)
1112         iniparser_freedict(obj->iniconfig);
1113     LOG(log_debug, logtype_afpd, "load_volumes: loading: %s", obj->options.configfile);
1114     obj->iniconfig = iniparser_load(obj->options.configfile);
1115
1116     EC_ZERO_LOG( readvolfile(obj, pwent) );
1117
1118     for ( vol = Volumes; vol; vol = vol->v_next ) {
1119         if (vol->v_deleted) {
1120             LOG(log_debug, logtype_afpd, "load_volumes: deleted: %s", vol->v_localname);
1121             if (delvol_fn)
1122                 delvol_fn(vol);
1123             vol = Volumes;
1124         }
1125     }
1126
1127 EC_CLEANUP:
1128     if (fd != -1)
1129         (void)close(fd);
1130
1131     LOG(log_debug, logtype_afpd, "load_volumes: END");
1132     EC_EXIT;
1133 }
1134
1135 void unload_volumes(AFPObj *obj)
1136 {
1137     struct vol *vol;
1138
1139     LOG(log_debug, logtype_afpd, "unload_volumes: BEGIN");
1140
1141     for (vol = Volumes; vol; vol = vol->v_next)
1142         volume_free(vol);
1143     Volumes = NULL;
1144     obj->options.volfile.mtime = 0;
1145     
1146     LOG(log_debug, logtype_afpd, "unload_volumes: END");
1147 }
1148
1149 struct vol *getvolumes(void)
1150 {
1151     return Volumes;
1152 }
1153
1154 struct vol *getvolbyvid(const uint16_t vid )
1155 {
1156     struct vol  *vol;
1157
1158     for ( vol = Volumes; vol; vol = vol->v_next ) {
1159         if ( vid == vol->v_vid ) {
1160             break;
1161         }
1162     }
1163     if ( vol == NULL || ( vol->v_flags & AFPVOL_OPEN ) == 0 ) {
1164         return( NULL );
1165     }
1166
1167     return( vol );
1168 }
1169
1170 struct vol *getvolbypath(const char *path)
1171 {
1172     struct vol *vol = NULL;
1173     struct vol *tmp;
1174
1175     for (tmp = Volumes; tmp; tmp = tmp->v_next) {
1176         if (strncmp(path, tmp->v_path, strlen(tmp->v_path)) == 0) {
1177             vol = tmp;
1178             break;
1179         }
1180     }
1181     return vol;
1182 }
1183
1184 #define MAXVAL 1024
1185 /*!
1186  * Initialize an AFPObj and options from ini config file
1187  */
1188 int afp_config_parse(AFPObj *AFPObj)
1189 {
1190     EC_INIT;
1191     dictionary *config;
1192     struct afp_options *options = &AFPObj->options;
1193     int i, c;
1194     const char *p, *tmp;
1195     char *q, *r;
1196     char val[MAXVAL];
1197
1198     AFPObj->afp_version = 11;
1199     options->configfile  = AFPObj->cmdlineconfigfile ? strdup(AFPObj->cmdlineconfigfile) : strdup(_PATH_CONFDIR "afp.conf");
1200     options->sigconffile = strdup(_PATH_CONFDIR "afp_signature.conf");
1201     options->uuidconf    = strdup(_PATH_CONFDIR "afp_voluuid.conf");
1202     options->flags       = OPTION_ACL2MACCESS | OPTION_UUID | OPTION_SERVERNOTIF | AFPObj->cmdlineflags;
1203     
1204     if ((config = iniparser_load(AFPObj->options.configfile)) == NULL)
1205         return -1;
1206     AFPObj->iniconfig = config;
1207
1208     /* [Global] */
1209     options->logconfig = iniparser_getstrdup(config, INISEC_GLOBAL, "loglevel", "default:note");
1210     options->logfile   = iniparser_getstrdup(config, INISEC_GLOBAL, "logfile",  NULL);
1211
1212     /* [AFP] "options" options wo values */
1213     if (p = iniparser_getstrdup(config, INISEC_AFP, "options", NULL)) {
1214         if (p = strtok(q, ", ")) {
1215             while (p) {
1216                 if (strcasecmp(p, "nozeroconf"))
1217                     options->flags |= OPTION_NOZEROCONF;
1218                 if (strcasecmp(p, "icon"))
1219                     options->flags |= OPTION_CUSTOMICON;
1220                 if (strcasecmp(p, "noicon"))
1221                     options->flags &= ~OPTION_CUSTOMICON;
1222                 if (strcasecmp(p, "advertise_ssh"))
1223                     options->flags |= OPTION_ANNOUNCESSH;
1224                 if (strcasecmp(p, "noacl2maccess"))
1225                     options->flags &= ~OPTION_ACL2MACCESS;
1226                 if (strcasecmp(p, "keepsessions"))
1227                     options->flags |= OPTION_KEEPSESSIONS;
1228                 if (strcasecmp(p, "closevol"))
1229                     options->flags |= OPTION_CLOSEVOL;
1230                 if (strcasecmp(p, "client_polling"))
1231                     options->flags &= ~OPTION_SERVERNOTIF;
1232                 if (strcasecmp(p, "nosavepassword"))
1233                     options->passwdbits |= PASSWD_NOSAVE;
1234                 if (strcasecmp(p, "savepassword"))
1235                     options->passwdbits &= ~PASSWD_NOSAVE;
1236                 if (strcasecmp(p, "nosetpassword"))
1237                     options->passwdbits &= ~PASSWD_SET;
1238                 if (strcasecmp(p, "setpassword"))
1239                     options->passwdbits |= PASSWD_SET;
1240                 p = strtok(NULL, ", ");
1241             }
1242         }
1243     }
1244     /* figure out options w values */
1245
1246     options->loginmesg      = iniparser_getstrdup(config, INISEC_AFP, "loginmesg",      "");
1247     options->guest          = iniparser_getstrdup(config, INISEC_AFP, "guestname",      "nobody");
1248     options->passwdfile     = iniparser_getstrdup(config, INISEC_AFP, "passwdfile",     _PATH_AFPDPWFILE);
1249     options->uampath        = iniparser_getstrdup(config, INISEC_AFP, "uampath",        _PATH_AFPDUAMPATH);
1250     options->uamlist        = iniparser_getstrdup(config, INISEC_AFP, "uamlist",        "uams_dhx.so,uams_dhx2.so");
1251     options->port           = iniparser_getstrdup(config, INISEC_AFP, "port",           "548");
1252     options->signatureopt   = iniparser_getstrdup(config, INISEC_AFP, "signature",      "auto");
1253     options->k5service      = iniparser_getstrdup(config, INISEC_AFP, "k5service",      NULL);
1254     options->k5realm        = iniparser_getstrdup(config, INISEC_AFP, "k5realm",        NULL);
1255     options->listen         = iniparser_getstrdup(config, INISEC_AFP, "listen",         NULL);
1256     options->ntdomain       = iniparser_getstrdup(config, INISEC_AFP, "ntdomain",       NULL);
1257     options->ntseparator    = iniparser_getstrdup(config, INISEC_AFP, "ntseparator",    NULL);
1258     options->mimicmodel     = iniparser_getstrdup(config, INISEC_AFP, "mimicmodel",     NULL);
1259     options->adminauthuser  = iniparser_getstrdup(config, INISEC_AFP, "adminauthuser",  NULL);
1260     options->connections    = iniparser_getint   (config, INISEC_AFP, "maxcon",         200);
1261     options->passwdminlen   = iniparser_getint   (config, INISEC_AFP, "passwdminlen",   0);
1262     options->tickleval      = iniparser_getint   (config, INISEC_AFP, "tickleval",      30);
1263     options->timeout        = iniparser_getint   (config, INISEC_AFP, "timeout",        4);
1264     options->dsireadbuf     = iniparser_getint   (config, INISEC_AFP, "dsireadbuf",     12);
1265     options->server_quantum = iniparser_getint   (config, INISEC_AFP, "server_quantum", DSI_SERVQUANT_DEF);
1266     options->volnamelen     = iniparser_getint   (config, INISEC_AFP, "volnamelen",     80);
1267     options->dircachesize   = iniparser_getint   (config, INISEC_AFP, "dircachesize",   DEFAULT_MAX_DIRCACHE_SIZE);
1268     options->tcp_sndbuf     = iniparser_getint   (config, INISEC_AFP, "tcpsndbuf",      0);
1269     options->tcp_rcvbuf     = iniparser_getint   (config, INISEC_AFP, "tcprcvbuf",      0);
1270     options->fce_fmodwait   = iniparser_getint   (config, INISEC_AFP, "fceholdfmod",    60);
1271     options->sleep          = iniparser_getint   (config, INISEC_AFP, "sleep",          10);
1272     options->disconnected   = iniparser_getint   (config, INISEC_AFP, "disconnect",     24);
1273
1274     if ((p = iniparser_getstring(config, INISEC_AFP, "hostname", NULL))) {
1275         EC_NULL_LOG( options->hostname = strdup(p) );
1276     } else {
1277         if (gethostname(val, sizeof(val)) < 0 ) {
1278             perror( "gethostname" );
1279             EC_FAIL;
1280         }
1281         if ((q = strchr(val, '.')))
1282             *q = '\0';
1283         options->hostname = strdup(val);
1284     }
1285
1286     if ((p = iniparser_getstring(config, INISEC_AFP, "k5keytab", NULL))) {
1287         EC_NULL_LOG( options->k5keytab = malloc(strlen(p) + 14) );
1288         snprintf(options->k5keytab, strlen(p) + 14, "KRB5_KTNAME=%s", p);
1289         putenv(options->k5keytab);
1290     }
1291
1292 #ifdef ADMIN_GRP
1293     if ((p = iniparser_getstring(config, INISEC_AFP, "admingroup",  NULL))) {
1294          struct group *gr = getgrnam(p);
1295          if (gr != NULL)
1296              options->admingid = gr->gr_gid;
1297     }
1298 #endif /* ADMIN_GRP */
1299
1300     q = iniparser_getstrdup(config, INISEC_AFP, "cnidserver", "localhost:4700");
1301     r = strrchr(q, ':');
1302     if (r)
1303         *r = 0;
1304     options->Cnid_srv = strdup(q);
1305     if (r)
1306         options->Cnid_port = strdup(r + 1);
1307     else
1308         options->Cnid_port = strdup("4700");
1309     LOG(log_debug, logtype_afpd, "CNID Server: %s:%s", options->Cnid_srv, options->Cnid_port);
1310     if (q)
1311         free(q);
1312
1313     if ((q = iniparser_getstrdup(config, INISEC_AFP, "fqdn", NULL))) {
1314         /* do a little checking for the domain name. */
1315         r = strchr(q, ':');
1316         if (r)
1317             *r = '\0';
1318         if (gethostbyname(q)) {
1319             if (r)
1320                 *r = ':';
1321             EC_NULL_LOG( options->fqdn = strdup(q) );
1322         } else {
1323             LOG(log_error, logtype_afpd, "error parsing -fqdn, gethostbyname failed for: %s", c);
1324         }
1325         free(q);
1326     }
1327
1328     if (!(p = iniparser_getstring(config, INISEC_AFP, "unixcodepage", NULL))) {
1329         options->unixcharset = CH_UNIX;
1330         options->unixcodepage = strdup("LOCALE");
1331     } else {
1332         if ((options->unixcharset = add_charset(p)) == (charset_t)-1) {
1333             options->unixcharset = CH_UNIX;
1334             options->unixcodepage = strdup("LOCALE");
1335             LOG(log_warning, logtype_afpd, "Setting Unix codepage to '%s' failed", p);
1336         } else {
1337             options->unixcodepage = strdup(p);
1338         }
1339     }
1340         
1341     if (!(p = iniparser_getstring(config, INISEC_AFP, "maccodepage", NULL))) {
1342         options->maccharset = CH_MAC;
1343         options->maccodepage = strdup("MAC_ROMAN");
1344     } else {
1345         if ((options->maccharset = add_charset(p)) == (charset_t)-1) {
1346             options->maccharset = CH_MAC;
1347             options->maccodepage = strdup("MAC_ROMAN");
1348             LOG(log_warning, logtype_afpd, "Setting Mac codepage to '%s' failed", p);
1349         } else {
1350             options->maccodepage = strdup(p);
1351         }
1352     }
1353
1354     /* Check for sane values */
1355     if (options->tickleval <= 0)
1356         options->tickleval = 30;
1357     options->disconnected *= 3600 / options->tickleval;
1358     options->sleep *= 3600 / options->tickleval;
1359     if (options->timeout <= 0)
1360         options->timeout = 4;
1361     if (options->sleep <= 4)
1362         options->disconnected = options->sleep = 4;
1363     if (options->dsireadbuf < 6)
1364         options->dsireadbuf = 6;
1365     if (options->volnamelen < 8)
1366         options->volnamelen = 8; /* max mangled volname "???#FFFF" */
1367     if (options->volnamelen > 255)
1368             options->volnamelen = 255; /* AFP3 spec */
1369
1370 EC_CLEANUP:
1371     EC_EXIT;
1372 }
1373