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