]> arthur.barton.de Git - netatalk.git/blob - libatalk/util/netatalk_conf.c
Fixes
[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     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, "vol 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, "vol 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  * Load charsets for a volume
1040  */
1041 int load_charset(struct vol *vol)
1042 {
1043     if ((vol->v_maccharset = add_charset(vol->v_maccodepage)) == (charset_t)-1) {
1044         LOG(log_error, logtype_default, "Setting Mac codepage '%s' failed", vol->v_maccodepage);
1045         return -1;
1046     }
1047
1048     if ((vol->v_volcharset = add_charset(vol->v_volcodepage)) == (charset_t)-1) {
1049         LOG(log_error, logtype_default, "Setting volume codepage '%s' failed", vol->v_volcodepage);
1050         return -1;
1051     }
1052
1053     return 0;
1054 }
1055
1056 /*!
1057  * Initialize volumes and load ini configfile
1058  *
1059  * Depending on the value of obj->uid either access checks are done (!=0) or skipped (=0)
1060  *
1061  * @param obj       (r) handle
1062  * @param delvol_fn (r) callback called for deleted volumes
1063  */
1064 int load_volumes(AFPObj *obj, void (*delvol_fn)(struct vol *))
1065 {
1066     EC_INIT;
1067     int fd = -1;
1068     struct passwd   *pwent = NULL;
1069     struct stat         st;
1070     int retries = 0;
1071     struct vol *vol;
1072
1073     LOG(log_debug, logtype_afpd, "load_volumes: BEGIN");
1074
1075     if (Volumes) {
1076         if (!volfile_changed(&obj->options))
1077             goto EC_CLEANUP;
1078         for (vol = Volumes; vol; vol = vol->v_next)
1079             vol->v_deleted = 1;
1080     } else {
1081         LOG(log_debug, logtype_afpd, "load_volumes: no volumes yet");
1082         EC_ZERO_LOG( lstat(obj->options.configfile, &st) );
1083         obj->options.volfile.mtime = st.st_mtime;
1084     }
1085
1086     /* try putting a read lock on the volume file twice, sleep 1 second if first attempt fails */
1087
1088     fd = open(obj->options.configfile, O_RDONLY);
1089
1090     while (retries < 2) {
1091         if ((read_lock(fd, 0, SEEK_SET, 0)) != 0) {
1092             retries++;
1093             if (!retries) {
1094                 LOG(log_error, logtype_afpd, "readvolfile: can't lock configfile \"%s\"",
1095                     obj->options.configfile);
1096                 EC_FAIL;
1097             }
1098             sleep(1);
1099             continue;
1100         }
1101         break;
1102     }
1103
1104     if (obj->uid)
1105         pwent = getpwuid(obj->uid);
1106
1107     if (obj->iniconfig)
1108         iniparser_freedict(obj->iniconfig);
1109     LOG(log_debug, logtype_afpd, "load_volumes: loading: %s", obj->options.configfile);
1110     obj->iniconfig = iniparser_load(obj->options.configfile);
1111
1112     EC_ZERO_LOG( readvolfile(obj, pwent) );
1113
1114     for ( vol = Volumes; vol; vol = vol->v_next ) {
1115         if (vol->v_deleted) {
1116             LOG(log_debug, logtype_afpd, "load_volumes: deleted: %s", vol->v_localname);
1117             if (delvol_fn)
1118                 delvol_fn(vol);
1119             vol = Volumes;
1120         }
1121     }
1122
1123 EC_CLEANUP:
1124     if (fd != -1)
1125         (void)close(fd);
1126
1127     LOG(log_debug, logtype_afpd, "load_volumes: END");
1128     EC_EXIT;
1129 }
1130
1131 void unload_volumes(AFPObj *obj)
1132 {
1133     struct vol *vol;
1134
1135     LOG(log_debug, logtype_afpd, "unload_volumes: BEGIN");
1136
1137     for (vol = Volumes; vol; vol = vol->v_next)
1138         volume_free(vol);
1139     Volumes = NULL;
1140     obj->options.volfile.mtime = 0;
1141     
1142     LOG(log_debug, logtype_afpd, "unload_volumes: END");
1143 }
1144
1145 struct vol *getvolumes(void)
1146 {
1147     return Volumes;
1148 }
1149
1150 struct vol *getvolbyvid(const uint16_t vid )
1151 {
1152     struct vol  *vol;
1153
1154     for ( vol = Volumes; vol; vol = vol->v_next ) {
1155         if ( vid == vol->v_vid ) {
1156             break;
1157         }
1158     }
1159     if ( vol == NULL || ( vol->v_flags & AFPVOL_OPEN ) == 0 ) {
1160         return( NULL );
1161     }
1162
1163     return( vol );
1164 }
1165
1166 struct vol *getvolbypath(const char *path)
1167 {
1168     struct vol *vol = NULL;
1169     struct vol *tmp;
1170
1171     for (tmp = Volumes; tmp; tmp = tmp->v_next) {
1172         if (strncmp(path, tmp->v_path, strlen(tmp->v_path)) == 0) {
1173             vol = tmp;
1174             break;
1175         }
1176     }
1177     return vol;
1178 }
1179
1180 #define MAXVAL 1024
1181 /*!
1182  * Initialize an AFPObj and options from ini config file
1183  */
1184 int afp_config_parse(AFPObj *AFPObj)
1185 {
1186     EC_INIT;
1187     dictionary *config;
1188     struct afp_options *options = &AFPObj->options;
1189     int i, c;
1190     const char *p, *tmp;
1191     char *q, *r;
1192     char val[MAXVAL];
1193
1194     AFPObj->afp_version = 11;
1195     options->configfile  = AFPObj->cmdlineconfigfile ? strdup(AFPObj->cmdlineconfigfile) : strdup(_PATH_CONFDIR "afp.conf");
1196     options->sigconffile = strdup(_PATH_CONFDIR "afp_signature.conf");
1197     options->uuidconf    = strdup(_PATH_CONFDIR "afp_voluuid.conf");
1198     options->flags       = OPTION_ACL2MACCESS | OPTION_UUID | OPTION_SERVERNOTIF | AFPObj->cmdlineflags;
1199     
1200     if ((config = iniparser_load(AFPObj->options.configfile)) == NULL)
1201         return -1;
1202     AFPObj->iniconfig = config;
1203
1204     /* [Global] */
1205     options->logconfig = iniparser_getstrdup(config, INISEC_GLOBAL, "loglevel", "default:note");
1206     options->logfile   = iniparser_getstrdup(config, INISEC_GLOBAL, "logfile",  NULL);
1207
1208     /* [AFP] "options" options wo values */
1209     if (p = iniparser_getstrdup(config, INISEC_GLOBAL, "options", NULL)) {
1210         if (p = strtok(q, ", ")) {
1211             while (p) {
1212                 if (strcasecmp(p, "nozeroconf"))
1213                     options->flags |= OPTION_NOZEROCONF;
1214                 if (strcasecmp(p, "icon"))
1215                     options->flags |= OPTION_CUSTOMICON;
1216                 if (strcasecmp(p, "noicon"))
1217                     options->flags &= ~OPTION_CUSTOMICON;
1218                 if (strcasecmp(p, "advertise_ssh"))
1219                     options->flags |= OPTION_ANNOUNCESSH;
1220                 if (strcasecmp(p, "noacl2maccess"))
1221                     options->flags &= ~OPTION_ACL2MACCESS;
1222                 if (strcasecmp(p, "keepsessions"))
1223                     options->flags |= OPTION_KEEPSESSIONS;
1224                 if (strcasecmp(p, "closevol"))
1225                     options->flags |= OPTION_CLOSEVOL;
1226                 if (strcasecmp(p, "client_polling"))
1227                     options->flags &= ~OPTION_SERVERNOTIF;
1228                 if (strcasecmp(p, "nosavepassword"))
1229                     options->passwdbits |= PASSWD_NOSAVE;
1230                 if (strcasecmp(p, "savepassword"))
1231                     options->passwdbits &= ~PASSWD_NOSAVE;
1232                 if (strcasecmp(p, "nosetpassword"))
1233                     options->passwdbits &= ~PASSWD_SET;
1234                 if (strcasecmp(p, "setpassword"))
1235                     options->passwdbits |= PASSWD_SET;
1236                 p = strtok(NULL, ", ");
1237             }
1238         }
1239     }
1240     /* figure out options w values */
1241
1242     options->loginmesg      = iniparser_getstrdup(config, INISEC_GLOBAL, "loginmesg",      "");
1243     options->guest          = iniparser_getstrdup(config, INISEC_GLOBAL, "guestname",      "nobody");
1244     options->passwdfile     = iniparser_getstrdup(config, INISEC_GLOBAL, "passwdfile",     _PATH_AFPDPWFILE);
1245     options->uampath        = iniparser_getstrdup(config, INISEC_GLOBAL, "uampath",        _PATH_AFPDUAMPATH);
1246     options->uamlist        = iniparser_getstrdup(config, INISEC_GLOBAL, "uamlist",        "uams_dhx.so,uams_dhx2.so");
1247     options->port           = iniparser_getstrdup(config, INISEC_GLOBAL, "afp port",       "548");
1248     options->signatureopt   = iniparser_getstrdup(config, INISEC_GLOBAL, "signature",      "auto");
1249     options->k5service      = iniparser_getstrdup(config, INISEC_GLOBAL, "k5service",      NULL);
1250     options->k5realm        = iniparser_getstrdup(config, INISEC_GLOBAL, "k5realm",        NULL);
1251     options->listen         = iniparser_getstrdup(config, INISEC_GLOBAL, "afp listen",     NULL);
1252     options->ntdomain       = iniparser_getstrdup(config, INISEC_GLOBAL, "ntdomain",       NULL);
1253     options->ntseparator    = iniparser_getstrdup(config, INISEC_GLOBAL, "ntseparator",    NULL);
1254     options->mimicmodel     = iniparser_getstrdup(config, INISEC_GLOBAL, "mimicmodel",     NULL);
1255     options->adminauthuser  = iniparser_getstrdup(config, INISEC_GLOBAL, "adminauthuser",  NULL);
1256     options->connections    = iniparser_getint   (config, INISEC_GLOBAL, "maxcon",         200);
1257     options->passwdminlen   = iniparser_getint   (config, INISEC_GLOBAL, "passwdminlen",   0);
1258     options->tickleval      = iniparser_getint   (config, INISEC_GLOBAL, "tickleval",      30);
1259     options->timeout        = iniparser_getint   (config, INISEC_GLOBAL, "timeout",        4);
1260     options->dsireadbuf     = iniparser_getint   (config, INISEC_GLOBAL, "dsireadbuf",     12);
1261     options->server_quantum = iniparser_getint   (config, INISEC_GLOBAL, "server_quantum", DSI_SERVQUANT_DEF);
1262     options->volnamelen     = iniparser_getint   (config, INISEC_GLOBAL, "volnamelen",     80);
1263     options->dircachesize   = iniparser_getint   (config, INISEC_GLOBAL, "dircachesize",   DEFAULT_MAX_DIRCACHE_SIZE);
1264     options->tcp_sndbuf     = iniparser_getint   (config, INISEC_GLOBAL, "tcpsndbuf",      0);
1265     options->tcp_rcvbuf     = iniparser_getint   (config, INISEC_GLOBAL, "tcprcvbuf",      0);
1266     options->fce_fmodwait   = iniparser_getint   (config, INISEC_GLOBAL, "fceholdfmod",    60);
1267     options->sleep          = iniparser_getint   (config, INISEC_GLOBAL, "sleep",          10);
1268     options->disconnected   = iniparser_getint   (config, INISEC_GLOBAL, "disconnect",     24);
1269
1270     if ((p = iniparser_getstring(config, INISEC_GLOBAL, "hostname", NULL))) {
1271         EC_NULL_LOG( options->hostname = strdup(p) );
1272     } else {
1273         if (gethostname(val, sizeof(val)) < 0 ) {
1274             perror( "gethostname" );
1275             EC_FAIL;
1276         }
1277         if ((q = strchr(val, '.')))
1278             *q = '\0';
1279         options->hostname = strdup(val);
1280     }
1281
1282     if ((p = iniparser_getstring(config, INISEC_GLOBAL, "k5keytab", NULL))) {
1283         EC_NULL_LOG( options->k5keytab = malloc(strlen(p) + 14) );
1284         snprintf(options->k5keytab, strlen(p) + 14, "KRB5_KTNAME=%s", p);
1285         putenv(options->k5keytab);
1286     }
1287
1288 #ifdef ADMIN_GRP
1289     if ((p = iniparser_getstring(config, INISEC_GLOBAL, "admingroup",  NULL))) {
1290          struct group *gr = getgrnam(p);
1291          if (gr != NULL)
1292              options->admingid = gr->gr_gid;
1293     }
1294 #endif /* ADMIN_GRP */
1295
1296     q = iniparser_getstrdup(config, INISEC_GLOBAL, "cnidserver", "localhost:4700");
1297     r = strrchr(q, ':');
1298     if (r)
1299         *r = 0;
1300     options->Cnid_srv = strdup(q);
1301     if (r)
1302         options->Cnid_port = strdup(r + 1);
1303     else
1304         options->Cnid_port = strdup("4700");
1305     LOG(log_debug, logtype_afpd, "CNID Server: %s:%s", options->Cnid_srv, options->Cnid_port);
1306     if (q)
1307         free(q);
1308
1309     if ((q = iniparser_getstrdup(config, INISEC_GLOBAL, "fqdn", NULL))) {
1310         /* do a little checking for the domain name. */
1311         r = strchr(q, ':');
1312         if (r)
1313             *r = '\0';
1314         if (gethostbyname(q)) {
1315             if (r)
1316                 *r = ':';
1317             EC_NULL_LOG( options->fqdn = strdup(q) );
1318         } else {
1319             LOG(log_error, logtype_afpd, "error parsing -fqdn, gethostbyname failed for: %s", c);
1320         }
1321         free(q);
1322     }
1323
1324     if (!(p = iniparser_getstring(config, INISEC_GLOBAL, "unixcodepage", NULL))) {
1325         options->unixcharset = CH_UNIX;
1326         options->unixcodepage = strdup("LOCALE");
1327     } else {
1328         if ((options->unixcharset = add_charset(p)) == (charset_t)-1) {
1329             options->unixcharset = CH_UNIX;
1330             options->unixcodepage = strdup("LOCALE");
1331             LOG(log_warning, logtype_afpd, "Setting Unix codepage to '%s' failed", p);
1332         } else {
1333             options->unixcodepage = strdup(p);
1334         }
1335     }
1336         
1337     if (!(p = iniparser_getstring(config, INISEC_GLOBAL, "maccodepage", NULL))) {
1338         options->maccharset = CH_MAC;
1339         options->maccodepage = strdup("MAC_ROMAN");
1340     } else {
1341         if ((options->maccharset = add_charset(p)) == (charset_t)-1) {
1342             options->maccharset = CH_MAC;
1343             options->maccodepage = strdup("MAC_ROMAN");
1344             LOG(log_warning, logtype_afpd, "Setting Mac codepage to '%s' failed", p);
1345         } else {
1346             options->maccodepage = strdup(p);
1347         }
1348     }
1349
1350     /* Check for sane values */
1351     if (options->tickleval <= 0)
1352         options->tickleval = 30;
1353     options->disconnected *= 3600 / options->tickleval;
1354     options->sleep *= 3600 / options->tickleval;
1355     if (options->timeout <= 0)
1356         options->timeout = 4;
1357     if (options->sleep <= 4)
1358         options->disconnected = options->sleep = 4;
1359     if (options->dsireadbuf < 6)
1360         options->dsireadbuf = 6;
1361     if (options->volnamelen < 8)
1362         options->volnamelen = 8; /* max mangled volname "???#FFFF" */
1363     if (options->volnamelen > 255)
1364             options->volnamelen = 255; /* AFP3 spec */
1365
1366 EC_CLEANUP:
1367     EC_EXIT;
1368 }
1369