]> arthur.barton.de Git - netatalk.git/blob - libatalk/util/netatalk_conf.c
Remove lenght limitation of options like "valid users"
[netatalk.git] / libatalk / util / netatalk_conf.c
1 /*
2   Copyright (c) 2012 Frank Lahm <franklahm@gmail.com>
3
4   This program is free software; you can redistribute it and/or modify
5   it under the terms of the GNU General Public License as published by
6   the Free Software Foundation; either version 2 of the License, or
7   (at your option) any later version.
8
9   This program is distributed in the hope that it will be useful,
10   but WITHOUT ANY WARRANTY; without even the implied warranty of
11   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12   GNU General Public License for more details.
13 */
14
15 #ifdef HAVE_CONFIG_H
16 #include "config.h"
17 #endif /* HAVE_CONFIG_H */
18
19 #include <stdio.h>
20 #include <stdlib.h>
21 #include <ctype.h>
22 #include <pwd.h>
23 #include <grp.h>
24 #include <utime.h>
25 #include <errno.h>
26 #include <string.h>
27 #include <sys/param.h>
28 #include <sys/socket.h>
29 #include <netinet/in.h>
30 #include <arpa/inet.h>
31 #include <inttypes.h>
32 #include <time.h>
33 #include <regex.h>
34 #if HAVE_LOCALE_H
35 #include <locale.h>
36 #endif
37 #if HAVE_LANGINFO_H
38 #include <langinfo.h>
39 #endif
40
41 #include <atalk/afp.h>
42 #include <atalk/util.h>
43 #include <atalk/logger.h>
44 #include <atalk/ea.h>
45 #include <atalk/globals.h>
46 #include <atalk/errchk.h>
47 #include <atalk/iniparser.h>
48 #include <atalk/unix.h>
49 #include <atalk/cnid.h>
50 #include <atalk/dsi.h>
51 #include <atalk/uuid.h>
52 #include <atalk/netatalk_conf.h>
53 #include <atalk/bstrlib.h>
54
55 #define VOLPASSLEN  8
56 #ifndef UUID_PRINTABLE_STRING_LENGTH
57 #define UUID_PRINTABLE_STRING_LENGTH 37
58 #endif
59
60 #define IS_VAR(a, b) (strncmp((a), (b), 2) == 0)
61
62 /**************************************************************
63  * Locals
64  **************************************************************/
65
66 static int have_uservol = 0; /* whether there's generic user home share in config ("~" or "~/path", but not "~user") */
67 static struct vol *Volumes = NULL;
68 static uint16_t    lastvid = 0;
69
70 /* 
71  * Get a volumes UUID from the config file.
72  * If there is none, it is generated and stored there.
73  *
74  * Returns pointer to allocated storage on success, NULL on error.
75  */
76 static char *get_vol_uuid(const AFPObj *obj, const char *volname)
77 {
78     char *volname_conf;
79     char buf[1024], uuid[UUID_PRINTABLE_STRING_LENGTH], *p;
80     FILE *fp;
81     struct stat tmpstat;
82     int fd;
83     
84     if ((fp = fopen(obj->options.uuidconf, "r")) != NULL) {  /* read open? */
85         /* scan in the conf file */
86         while (fgets(buf, sizeof(buf), fp) != NULL) { 
87             p = buf;
88             while (p && isblank(*p))
89                 p++;
90             if (!p || (*p == '#') || (*p == '\n'))
91                 continue;                             /* invalid line */
92             if (*p == '"') {
93                 p++;
94                 if ((volname_conf = strtok( p, "\"" )) == NULL)
95                     continue;                         /* syntax error */
96             } else {
97                 if ((volname_conf = strtok( p, " \t" )) == NULL)
98                     continue;                         /* syntax error: invalid name */
99             }
100             p = strchr(p, '\0');
101             p++;
102             if (*p == '\0')
103                 continue;                             /* syntax error */
104             
105             if (strcmp(volname, volname_conf) != 0)
106                 continue;                             /* another volume name */
107                 
108             while (p && isblank(*p))
109                 p++;
110
111             if (sscanf(p, "%36s", uuid) == 1 ) {
112                 for (int i=0; uuid[i]; i++)
113                     uuid[i] = toupper(uuid[i]);
114                 LOG(log_debug, logtype_afpd, "get_uuid('%s'): UUID: '%s'", volname, uuid);
115                 fclose(fp);
116                 return strdup(uuid);
117             }
118         }
119     }
120
121     if (fp)
122         fclose(fp);
123
124     /*  not found or no file, reopen in append mode */
125
126     if (stat(obj->options.uuidconf, &tmpstat)) {                /* no file */
127         if (( fd = creat(obj->options.uuidconf, 0644 )) < 0 ) {
128             LOG(log_error, logtype_afpd, "ERROR: Cannot create %s (%s).",
129                 obj->options.uuidconf, strerror(errno));
130             return NULL;
131         }
132         if (( fp = fdopen( fd, "w" )) == NULL ) {
133             LOG(log_error, logtype_afpd, "ERROR: Cannot fdopen %s (%s).",
134                 obj->options.uuidconf, strerror(errno));
135             close(fd);
136             return NULL;
137         }
138     } else if ((fp = fopen(obj->options.uuidconf, "a+")) == NULL) { /* not found */
139         LOG(log_error, logtype_afpd, "Cannot create or append to %s (%s).",
140             obj->options.uuidconf, strerror(errno));
141         return NULL;
142     }
143     fseek(fp, 0L, SEEK_END);
144     if(ftell(fp) == 0) {                     /* size = 0 */
145         fprintf(fp, "# DON'T TOUCH NOR COPY THOUGHTLESSLY!\n");
146         fprintf(fp, "# This file is auto-generated by afpd\n");
147         fprintf(fp, "# and stores UUIDs for Time Machine volumes.\n\n");
148     } else {
149         fseek(fp, -1L, SEEK_END);
150         if(fgetc(fp) != '\n') fputc('\n', fp); /* last char is \n? */
151     }                    
152     
153     /* generate uuid and write to file */
154     atalk_uuid_t id;
155     const char *cp;
156     randombytes((void *)id, 16);
157     cp = uuid_bin2string(id);
158
159     LOG(log_debug, logtype_afpd, "get_uuid('%s'): generated UUID '%s'", volname, cp);
160
161     fprintf(fp, "\"%s\"\t%36s\n", volname, cp);
162     fclose(fp);
163     
164     return strdup(cp);
165 }
166
167 /*
168   Check if the underlying filesystem supports EAs.
169   If not, switch to ea:ad.
170   As we can't check (requires write access) on ro-volumes, we switch ea:auto
171   volumes that are options:ro to ea:none.
172 */
173 #define EABUFSZ 4
174 static int do_check_ea_support(const struct vol *vol)
175 {
176     int haseas;
177     const char *eaname = "org.netatalk.has-Extended-Attributes";
178     const char *eacontent = "yes";
179     char buf[EABUFSZ];
180
181     if (sys_lgetxattr(vol->v_path, eaname, buf, EABUFSZ) != -1)
182         return 1;
183
184     if (vol->v_flags & AFPVOL_RO) {
185         LOG(log_debug, logtype_afpd, "read-only volume '%s', can't test for EA support, assuming yes", vol->v_localname);
186         return 1;
187     }
188
189     become_root();
190
191     if ((sys_setxattr(vol->v_path, eaname, eacontent, strlen(eacontent) + 1, 0)) == 0) {
192         haseas = 1;
193     } else {
194         LOG(log_warning, logtype_afpd, "volume \"%s\" does not support Extended Attributes or read-only volume",
195             vol->v_localname);
196         haseas = 0;
197     }
198
199     unbecome_root();
200
201     return haseas;
202 }
203
204 static void check_ea_support(struct vol *vol)
205 {
206     int haseas;
207
208     haseas = do_check_ea_support(vol);
209
210     if (vol->v_vfs_ea == AFPVOL_EA_AUTO) {
211         if (haseas)
212             vol->v_vfs_ea = AFPVOL_EA_SYS;
213         else
214             vol->v_vfs_ea = AFPVOL_EA_NONE;
215     }
216
217     if (vol->v_adouble == AD_VERSION_EA) {
218         if (!haseas)
219             vol->v_adouble = AD_VERSION2;
220     }
221 }
222
223 /*!
224  * Check whether a volume supports ACLs
225  *
226  * @param vol  (r) volume
227  *
228  * @returns        0 if not, 1 if yes
229  */
230 static int check_vol_acl_support(const struct vol *vol)
231 {
232     int ret = 0;
233
234 #ifdef HAVE_SOLARIS_ACLS
235     ace_t *aces = NULL;
236     ret = 1;
237     if (get_nfsv4_acl(vol->v_path, &aces) == -1)
238         ret = 0;
239 #endif
240 #ifdef HAVE_POSIX_ACLS
241     acl_t acl = NULL;
242     ret = 1;
243     if ((acl = acl_get_file(vol->v_path, ACL_TYPE_ACCESS)) == NULL)
244         ret = 0;
245 #endif
246
247 #ifdef HAVE_SOLARIS_ACLS
248     if (aces) free(aces);
249 #endif
250 #ifdef HAVE_POSIX_ACLS
251     if (acl) acl_free(acl);
252 #endif /* HAVE_POSIX_ACLS */
253
254     LOG(log_debug, logtype_afpd, "Volume \"%s\" ACL support: %s",
255         vol->v_path, ret ? "yes" : "no");
256     return ret;
257 }
258
259 /*
260  * Handle variable substitutions. here's what we understand:
261  * $b   -> basename of path
262  * $c   -> client ip/appletalk address
263  * $d   -> volume pathname on server
264  * $f   -> full name (whatever's in the gecos field)
265  * $g   -> group
266  * $h   -> hostname
267  * $i   -> client ip/appletalk address without port
268  * $s   -> server name (hostname if it doesn't exist)
269  * $u   -> username (guest is usually nobody)
270  * $v   -> volume name or basename if null
271  * $$   -> $
272  *
273  * This get's called from readvolfile with
274  * path = NULL, volname = NULL for xlating the volumes path
275  * path = path, volname = NULL for xlating the volumes name
276  * ... and from volumes options parsing code when xlating eg dbpath with
277  * path = path, volname = volname
278  *
279  * Using this information we can reject xlation of any variable depeninding on a login
280  * context which is not given in the afp master, where we must evaluate this whole stuff
281  * too for the Zeroconf announcements.
282  */
283 static char *volxlate(const AFPObj *obj,
284                       char *dest,
285                       size_t destlen,
286                       const char *src,
287                       const struct passwd *pwd,
288                       const char *path,
289                       const char *volname)
290 {
291     char *p, *r;
292     const char *q;
293     int len;
294     char *ret;
295     int xlatevolname = 0;
296
297     if (path && !volname)
298         /* cf above */
299         xlatevolname = 1;
300
301     if (!src) {
302         return NULL;
303     }
304     if (!dest) {
305         dest = calloc(destlen +1, 1);
306     }
307     ret = dest;
308     if (!ret) {
309         return NULL;
310     }
311     strlcpy(dest, src, destlen +1);
312     if ((p = strchr(src, '$')) == NULL) /* nothing to do */
313         return ret;
314
315     /* first part of the path. just forward to the next variable. */
316     len = MIN((size_t)(p - src), destlen);
317     if (len > 0) {
318         destlen -= len;
319         dest += len;
320     }
321
322     while (p && destlen > 0) {
323         /* now figure out what the variable is */
324         q = NULL;
325         if (IS_VAR(p, "$b")) {
326             if (path) {
327                 if ((q = strrchr(path, '/')) == NULL)
328                     q = path;
329                 else if (*(q + 1) != '\0')
330                     q++;
331             }
332         } else if (IS_VAR(p, "$c")) {
333             if (IS_AFP_SESSION(obj)) {
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             }
341         } else if (IS_VAR(p, "$d")) {
342             q = path;
343         } else if (pwd && IS_VAR(p, "$f")) {
344             if ((r = strchr(pwd->pw_gecos, ',')))
345                 *r = '\0';
346             q = pwd->pw_gecos;
347         } else if (pwd && IS_VAR(p, "$g")) {
348             struct group *grp = getgrgid(pwd->pw_gid);
349             if (grp)
350                 q = grp->gr_name;
351         } else if (IS_VAR(p, "$h")) {
352             q = obj->options.hostname;
353         } else if (IS_VAR(p, "$i")) {
354             DSI *dsi = obj->dsi;
355             q = getip_string((struct sockaddr *)&dsi->client);
356         } else if (IS_VAR(p, "$s")) {
357             q = obj->options.hostname;
358         } else if (obj->username[0] && IS_VAR(p, "$u")) {
359             char* sep = NULL;
360             if ( obj->options.ntseparator && (sep = strchr(obj->username, obj->options.ntseparator[0])) != NULL)
361                 q = sep+1;
362             else
363                 q = obj->username;
364         } else if (IS_VAR(p, "$v")) {
365             if (volname) {
366                 q = volname;
367             }
368             else if (path) {
369                 if ((q = strrchr(path, '/')) == NULL)
370                     q = path;
371                 else if (*(q + 1) != '\0')
372                     q++;
373             }
374         } else if (IS_VAR(p, "$$")) {
375             q = "$";
376         } else
377             q = p;
378
379         /* copy the stuff over. if we don't understand something that we
380          * should, just skip it over. */
381         if (q) {
382             len = MIN(p == q ? 2 : strlen(q), destlen);
383             strncpy(dest, q, len);
384             dest += len;
385             destlen -= len;
386         }
387
388         /* stuff up to next $ */
389         src = p + 2;
390         p = strchr(src, '$');
391         len = p ? MIN((size_t)(p - src), destlen) : destlen;
392         if (len > 0) {
393             strncpy(dest, src, len);
394             dest += len;
395             destlen -= len;
396         }
397     }
398     return ret;
399 }
400
401 /*!
402  * check access list
403  *
404  * this function wants something of the following form:
405  * "@group,name,name2,@group2,name3".
406  * A NULL argument allows everybody to have access.
407  * We return three things:
408  *     -1: no list
409  *      0: list exists, but name isn't in it
410  *      1: in list
411  */
412 static int accessvol(const AFPObj *obj, const char *args, const char *name)
413 {
414     EC_INIT;
415     char *names = NULL, *p;
416     struct group *gr;
417
418     if (!args)
419         EC_EXIT_STATUS(-1);
420
421     EC_NULL_LOG( names = strdup(args) );
422
423     if ((p = strtok(names, ",")) == NULL) /* nothing, return okay */
424         EC_EXIT_STATUS(-1);
425
426     while (p) {
427         if (*p == '@') { /* it's a group */
428             if ((gr = getgrnam(p + 1)) && gmem(gr->gr_gid, obj->ngroups, obj->groups))
429                 EC_EXIT_STATUS(1);
430         } else if (strcasecmp(p, name) == 0) /* it's a user name */
431             EC_EXIT_STATUS(1);
432         p = strtok(NULL, ", ");
433     }
434
435 EC_CLEANUP:
436     if (names)
437         free(names);
438     EC_EXIT;
439 }
440
441 static int hostaccessvol(const AFPObj *obj, const char *volname, const char *args)
442 {
443     int mask_int;
444     char buf[MAXPATHLEN + 1], *p, *b;
445     struct sockaddr_storage client;
446     const DSI *dsi = obj->dsi;
447
448     if (!args || !dsi)
449         return -1;
450
451     strlcpy(buf, args, sizeof(buf));
452     if ((p = strtok_r(buf, ", ", &b)) == NULL) /* nothing, return okay */
453         return -1;
454
455     while (p) {
456         int ret;
457         char *ipaddr, *mask_char;
458         struct addrinfo hints, *ai;
459
460         ipaddr = strtok(p, "/");
461         mask_char = strtok(NULL,"/");
462
463         /* Get address from string with getaddrinfo */
464         memset(&hints, 0, sizeof hints);
465         hints.ai_family = AF_UNSPEC;
466         hints.ai_socktype = SOCK_STREAM;
467         if ((ret = getaddrinfo(ipaddr, NULL, &hints, &ai)) != 0) {
468             LOG(log_error, logtype_afpd, "hostaccessvol: getaddrinfo: %s\n", gai_strerror(ret));
469             continue;
470         }
471
472         /* netmask */
473         if (mask_char != NULL)
474             mask_int = atoi(mask_char); /* apply_ip_mask does range checking on it */
475         else {
476             if (ai->ai_family == AF_INET) /* IPv4 */
477                 mask_int = 32;
478             else                          /* IPv6 */
479                 mask_int = 128;
480         }
481
482         /* Apply mask to addresses */
483         client = dsi->client;
484         apply_ip_mask((struct sockaddr *)&client, mask_int);
485         apply_ip_mask(ai->ai_addr, mask_int);
486
487         if (compare_ip((struct sockaddr *)&client, ai->ai_addr) == 0) {
488             freeaddrinfo(ai);
489             return 1;
490         }
491
492         /* next address */
493         freeaddrinfo(ai);
494         p = strtok_r(NULL, ", ", &b);
495     }
496
497     return 0;
498 }
499
500 /*!
501  * Get option string from config, use default value if not set
502  *
503  * @param conf    (r) config handle
504  * @param vol     (r) volume name (must be section name ie wo vars expanded)
505  * @param opt     (r) option
506  * @param defsec  (r) if "option" is not found in "vol", try to find it in section "defsec"
507  * @param defval  (r) if neither "vol" nor "defsec" contain "opt" return "defval"
508  *
509  * @returns       const option string from "vol" or "defsec", or "defval" if not found
510  */
511 static const char *getoption(const dictionary *conf, const char *vol, const char *opt, const char *defsec, const char *defval)
512 {
513     EC_INIT;
514     const char *result;
515
516     if ((!(result = iniparser_getstring(conf, vol, opt, NULL))) && (defsec != NULL))
517         result = iniparser_getstring(conf, defsec, opt, NULL);
518     
519 EC_CLEANUP:
520     if (result == NULL)
521         result = defval;
522     return result;
523 }
524
525 /*!
526  * Get boolean option from config, use default value if not set
527  *
528  * @param conf    (r) config handle
529  * @param vol     (r) volume name (must be section name ie wo vars expanded)
530  * @param opt     (r) option
531  * @param defsec  (r) if "option" is not found in "vol", try to find it in section "defsec"
532  * @param defval  (r) if neither "vol" nor "defsec" contain "opt" return "defval"
533  *
534  * @returns       const option string from "vol" or "defsec", or "defval" if not found
535  */
536 static int getoption_bool(const dictionary *conf, const char *vol, const char *opt, const char *defsec, int defval)
537 {
538     EC_INIT;
539     int result;
540
541     if (((result = iniparser_getboolean(conf, vol, opt, -1)) == -1) && (defsec != NULL))
542         result = iniparser_getboolean(conf, defsec, opt, -1);
543     
544 EC_CLEANUP:
545     if (result == -1)
546         result = defval;
547     return result;
548 }
549
550 /*!
551  * Create volume struct
552  *
553  * @param obj      (r) handle
554  * @param pwd      (r) struct passwd of logged in user, may be NULL in master afpd
555  * @param section  (r) volume name wo variables expanded (exactly as in iniconfig)
556  * @param name     (r) volume name
557  * @param path_in  (r) volume path
558  * @param preset   (r) default preset, may be NULL
559  * @returns            vol on success, NULL on error
560  */
561 static struct vol *creatvol(AFPObj *obj,
562                             const struct passwd *pwd,
563                             const char *section,
564                             const char *name,
565                             const char *path_in,
566                             const char *preset)
567 {
568     EC_INIT;
569     struct vol  *volume = NULL;
570     size_t      current_pathlen, another_pathlen;
571     int         i, suffixlen, vlen, tmpvlen, u8mvlen, macvlen;
572     char        tmpname[AFPVOL_U8MNAMELEN+1];
573     char        path[MAXPATHLEN + 1];
574     ucs2_t      u8mtmpname[(AFPVOL_U8MNAMELEN+1)*2], mactmpname[(AFPVOL_MACNAMELEN+1)*2];
575     char        suffix[6]; /* max is #FFFF */
576     uint16_t    flags;
577     const char  *val;
578     char        *p, *q;
579
580     strlcpy(path, path_in, MAXPATHLEN);
581
582     LOG(log_debug, logtype_afpd, "createvol(volume: '%s', path: \"%s\", preset: '%s'): BEGIN",
583         name, path, preset ? preset : "-");
584
585     if ( name == NULL || *name == '\0' ) {
586         if ((name = strrchr( path, '/' )) == NULL)
587             EC_FAIL;
588         /* if you wish to share /, you need to specify a name. */
589         if (*++name == '\0')
590             EC_FAIL;
591     }
592
593     /* Once volumes are loaded, we never change options again, we just delete em when they're removed from afp.conf */
594
595     /*
596      * Check for duplicated or nested volumes, eg:
597      * /Volumes/name      /Volumes/name     [duplicate], and
598      * /Volumes/name      /Volumes/name/dir [nested], but beware of simple strncmp test:
599      * /Volumes/name      /Volumes/name1    [strncmp match if n=strlen("Volumes/name") -> false positive]
600      */
601     current_pathlen = strlen(path);
602     for (struct vol *vol = Volumes; vol; vol = vol->v_next) {
603         another_pathlen = strlen(vol->v_path);
604         if (strncmp(path, vol->v_path, MIN(current_pathlen, another_pathlen)) == 0) {
605             if (current_pathlen == another_pathlen) {
606                 LOG(log_error, logtype_afpd, "volume \"%s\" paths is duplicated: \"%s\"", name, path);
607                 vol->v_deleted = 0;
608                 volume = vol;
609                 goto EC_CLEANUP;
610             } else {
611                 const char *shorter_path, *longer_path;
612                 int shorter_len;
613                 if (another_pathlen > current_pathlen) {
614                     shorter_len = current_pathlen;
615                     shorter_path = path;
616                     longer_path = vol->v_path;
617                 } else {
618                     shorter_len = another_pathlen;
619                     shorter_path = vol->v_path;
620                     longer_path = path;
621                 }
622                 if (longer_path[shorter_len] == '/')
623                     LOG(log_info, logtype_afpd, "volume \"%s\" paths are nested: \"%s\" and \"%s\"", name, path, vol->v_path);
624             }
625         }
626     }
627
628     /*
629      * Check allow/deny lists:
630      * allow -> either no list (-1), or in list (1)
631      * deny -> either no list (-1), or not in list (0)
632      */
633     if (pwd) {
634         if (accessvol(obj, getoption(obj->iniconfig, section, "invalid users", preset, NULL), pwd->pw_name) == 1)
635             goto EC_CLEANUP;
636         if (accessvol(obj, getoption(obj->iniconfig, section, "valid users", preset, NULL), pwd->pw_name) == 0)
637             goto EC_CLEANUP;
638         if (hostaccessvol(obj, section, getoption(obj->iniconfig, section, "hosts deny", preset, NULL)) == 1)
639             goto EC_CLEANUP;
640         if (hostaccessvol(obj, section, getoption(obj->iniconfig, section, "hosts allow", preset, NULL)) == 0)
641             goto EC_CLEANUP;
642     }
643
644     EC_NULL( volume = calloc(1, sizeof(struct vol)) );
645
646     EC_NULL( volume->v_configname = strdup(section));
647
648     volume->v_vfs_ea = AFPVOL_EA_AUTO;
649     volume->v_umask = obj->options.umask;
650
651     if (val = getoption(obj->iniconfig, section, "password", preset, NULL))
652         EC_NULL( volume->v_password = strdup(val) );
653
654     if (val = getoption(obj->iniconfig, section, "veto files", preset, NULL))
655         EC_NULL( volume->v_veto = strdup(val) );
656
657     /* vol charset is in [G] and [V] */
658     if (val = getoption(obj->iniconfig, section, "vol charset", preset, NULL)) {
659         if (strcasecmp(val, "UTF-8") == 0) {
660             val = strdup("UTF8");
661         }
662         EC_NULL( volume->v_volcodepage = strdup(val) );
663     }
664     else
665         EC_NULL( volume->v_volcodepage = strdup(obj->options.volcodepage) );
666
667     /* mac charset is in [G] and [V] */
668     if (val = getoption(obj->iniconfig, section, "mac charset", preset, NULL)) {
669         if (strncasecmp(val, "MAC", 3) != 0) {
670             LOG(log_warning, logtype_afpd, "Is '%s' really mac charset? ", val);
671         }
672         EC_NULL( volume->v_maccodepage = strdup(val) );
673     }
674     else
675     EC_NULL( volume->v_maccodepage = strdup(obj->options.maccodepage) );
676
677     vlen = strlen(name);
678     strlcpy(tmpname, name, sizeof(tmpname));
679     for(i = 0; i < vlen; i++)
680         if(tmpname[i] == '/') tmpname[i] = ':';
681
682     bstring dbpath;
683     EC_NULL_LOG( val = iniparser_getstring(obj->iniconfig, INISEC_GLOBAL, "vol dbpath", _PATH_STATEDIR "CNID/") );
684     EC_NULL_LOG( dbpath = bformat("%s/%s/", val, tmpname) );
685     EC_NULL_LOG( volume->v_dbpath = strdup(bdata(dbpath)) );
686     bdestroy(dbpath);
687
688     if (val = getoption(obj->iniconfig, section, "cnid scheme", preset, NULL))
689         EC_NULL( volume->v_cnidscheme = strdup(val) );
690     else
691         volume->v_cnidscheme = strdup(DEFAULT_CNID_SCHEME);
692
693     if (val = getoption(obj->iniconfig, section, "umask", preset, NULL))
694         volume->v_umask = (int)strtol(val, NULL, 8);
695
696     if (val = getoption(obj->iniconfig, section, "directory perm", preset, NULL))
697         volume->v_dperm = (int)strtol(val, NULL, 8);
698
699     if (val = getoption(obj->iniconfig, section, "file perm", preset, NULL))
700         volume->v_fperm = (int)strtol(val, NULL, 8);
701
702     if (val = getoption(obj->iniconfig, section, "vol size limit", preset, NULL))
703         volume->v_limitsize = (uint32_t)strtoul(val, NULL, 10);
704
705     if (val = getoption(obj->iniconfig, section, "preexec", preset, NULL))
706         EC_NULL( volume->v_preexec = volxlate(obj, NULL, MAXPATHLEN, val, pwd, path, name) );
707
708     if (val = getoption(obj->iniconfig, section, "postexec", preset, NULL))
709         EC_NULL( volume->v_postexec = volxlate(obj, NULL, MAXPATHLEN, val, pwd, path, name) );
710
711     if (val = getoption(obj->iniconfig, section, "root preexec", preset, NULL))
712         EC_NULL( volume->v_root_preexec = volxlate(obj, NULL, MAXPATHLEN, val, pwd, path, name) );
713
714     if (val = getoption(obj->iniconfig, section, "root postexec", preset, NULL))
715         EC_NULL( volume->v_root_postexec = volxlate(obj, NULL, MAXPATHLEN, val, pwd, path, name) );
716
717     if (val = getoption(obj->iniconfig, section, "appledouble", preset, NULL)) {
718         if (strcmp(val, "v2") == 0)
719             volume->v_adouble = AD_VERSION2;
720         else if (strcmp(val, "ea") == 0)
721             volume->v_adouble = AD_VERSION_EA;
722     } else {
723         volume->v_adouble = AD_VERSION;
724     }
725
726     if (val = getoption(obj->iniconfig, section, "cnid server", preset, NULL)) {
727         EC_NULL( p = strdup(val) );
728         volume->v_cnidserver = p;
729         if (q = strrchr(val, ':')) {
730             *q++ = 0;
731             volume->v_cnidport = strdup(q);
732         } else {
733             volume->v_cnidport = strdup("4700");
734         }
735
736     } else {
737         volume->v_cnidserver = strdup(obj->options.Cnid_srv);
738         volume->v_cnidport = strdup(obj->options.Cnid_port);
739     }
740
741     if (val = getoption(obj->iniconfig, section, "ea", preset, NULL)) {
742         if (strcasecmp(val, "ad") == 0)
743             volume->v_vfs_ea = AFPVOL_EA_AD;
744         else if (strcasecmp(val, "sys") == 0)
745             volume->v_vfs_ea = AFPVOL_EA_SYS;
746         else if (strcasecmp(val, "none") == 0)
747             volume->v_vfs_ea = AFPVOL_EA_NONE;
748     }
749
750     if (val = getoption(obj->iniconfig, section, "casefold", preset, NULL)) {
751         if (strcasecmp(val, "tolower") == 0)
752             volume->v_casefold = AFPVOL_UMLOWER;
753         else if (strcasecmp(val, "toupper") == 0)
754             volume->v_casefold = AFPVOL_UMUPPER;
755         else if (strcasecmp(val, "xlatelower") == 0)
756             volume->v_casefold = AFPVOL_UUPPERMLOWER;
757         else if (strcasecmp(val, "xlateupper") == 0)
758             volume->v_casefold = AFPVOL_ULOWERMUPPER;
759     }
760
761     if (getoption_bool(obj->iniconfig, section, "read only", preset, 0))
762         volume->v_flags |= AFPVOL_RO;
763     if (getoption_bool(obj->iniconfig, section, "invisible dots", preset, 0))
764         volume->v_flags |= AFPVOL_INV_DOTS;
765     if (!getoption_bool(obj->iniconfig, section, "stat vol", preset, 1))
766         volume->v_flags |= AFPVOL_NOSTAT;
767     if (getoption_bool(obj->iniconfig, section, "unix priv", preset, 1))
768         volume->v_flags |= AFPVOL_UNIX_PRIV;
769     if (!getoption_bool(obj->iniconfig, section, "cnid dev", preset, 1))
770         volume->v_flags |= AFPVOL_NODEV;
771     if (getoption_bool(obj->iniconfig, section, "illegal seq", preset, 0))
772         volume->v_flags |= AFPVOL_EILSEQ;
773     if (getoption_bool(obj->iniconfig, section, "time machine", preset, 0))
774         volume->v_flags |= AFPVOL_TM;
775     if (getoption_bool(obj->iniconfig, section, "search db", preset, 0))
776         volume->v_flags |= AFPVOL_SEARCHDB;
777     if (!getoption_bool(obj->iniconfig, section, "network ids", preset, 1))
778         volume->v_flags |= AFPVOL_NONETIDS;
779 #ifdef HAVE_ACLS
780     if (getoption_bool(obj->iniconfig, section, "acls", preset, 1))
781         volume->v_flags |= AFPVOL_ACLS;
782 #endif
783     if (!getoption_bool(obj->iniconfig, section, "convert appledouble", preset, 1))
784         volume->v_flags |= AFPVOL_NOV2TOEACONV;
785
786     if (getoption_bool(obj->iniconfig, section, "preexec close", preset, 0))
787         volume->v_preexec_close = 1;
788     if (getoption_bool(obj->iniconfig, section, "root preexec close", preset, 0))
789         volume->v_root_preexec_close = 1;
790
791     /*
792      * Handle read-only behaviour. semantics:
793      * 1) neither the rolist nor the rwlist exist -> rw
794      * 2) rolist exists -> ro if user is in it.
795      * 3) rwlist exists -> ro unless user is in it.
796      * 4) cnid scheme = last -> ro forcibly.
797      */
798     if (pwd) {
799         if (accessvol(obj, getoption(obj->iniconfig, section, "rolist", preset, NULL), pwd->pw_name) == 1
800             || accessvol(obj, getoption(obj->iniconfig, section, "rwlist", preset, NULL), pwd->pw_name) == 0)
801             volume->v_flags |= AFPVOL_RO;
802     }
803     if (0 == strcmp(volume->v_cnidscheme, "last"))
804         volume->v_flags |= AFPVOL_RO;
805
806     if ((volume->v_flags & AFPVOL_NODEV))
807         volume->v_ad_options |= ADVOL_NODEV;
808     if ((volume->v_flags & AFPVOL_UNIX_PRIV))
809         volume->v_ad_options |= ADVOL_UNIXPRIV;
810     if ((volume->v_flags & AFPVOL_INV_DOTS))
811         volume->v_ad_options |= ADVOL_INVDOTS;
812
813     /* Mac to Unix conversion flags*/
814     if ((volume->v_flags & AFPVOL_EILSEQ))
815         volume->v_mtou_flags |= CONV__EILSEQ;
816
817     if ((volume->v_casefold & AFPVOL_MTOUUPPER))
818         volume->v_mtou_flags |= CONV_TOUPPER;
819     else if ((volume->v_casefold & AFPVOL_MTOULOWER))
820         volume->v_mtou_flags |= CONV_TOLOWER;
821
822     /* Unix to Mac conversion flags*/
823     volume->v_utom_flags = CONV_IGNORE;
824     if ((volume->v_casefold & AFPVOL_UTOMUPPER))
825         volume->v_utom_flags |= CONV_TOUPPER;
826     else if ((volume->v_casefold & AFPVOL_UTOMLOWER))
827         volume->v_utom_flags |= CONV_TOLOWER;
828     if ((volume->v_flags & AFPVOL_EILSEQ))
829         volume->v_utom_flags |= CONV__EILSEQ;
830
831     /* suffix for mangling use (lastvid + 1)   */
832     /* because v_vid has not been decided yet. */
833     suffixlen = sprintf(suffix, "#%X", lastvid + 1 );
834
835     /* Unicode Volume Name */
836     /* Firstly convert name from unixcharset to UTF8-MAC */
837     flags = CONV_IGNORE | CONV_ALLOW_SLASH;
838     tmpvlen = convert_charset(obj->options.unixcharset, CH_UTF8_MAC, 0, name, vlen, tmpname, AFPVOL_U8MNAMELEN, &flags);
839     if (tmpvlen <= 0) {
840         strcpy(tmpname, "???");
841         tmpvlen = 3;
842     }
843
844     /* Do we have to mangle ? */
845     if ( (flags & CONV_REQMANGLE) || (tmpvlen > obj->options.volnamelen)) {
846         if (tmpvlen + suffixlen > obj->options.volnamelen) {
847             flags = CONV_FORCE | CONV_ALLOW_SLASH;
848             tmpvlen = convert_charset(obj->options.unixcharset, CH_UTF8_MAC, 0, name, vlen, tmpname, obj->options.volnamelen - suffixlen, &flags);
849             tmpname[tmpvlen >= 0 ? tmpvlen : 0] = 0;
850         }
851         strcat(tmpname, suffix);
852         tmpvlen = strlen(tmpname);
853     }
854
855     /* Secondly convert name from UTF8-MAC to UCS2 */
856     if ( 0 >= ( u8mvlen = convert_string(CH_UTF8_MAC, CH_UCS2, tmpname, tmpvlen, u8mtmpname, AFPVOL_U8MNAMELEN*2)) )
857         EC_FAIL;
858
859     LOG(log_maxdebug, logtype_afpd, "createvol: Volume '%s' -> UTF8-MAC Name: '%s'", name, tmpname);
860
861     /* Maccharset Volume Name */
862     /* Firsty convert name from unixcharset to maccharset */
863     flags = CONV_IGNORE | CONV_ALLOW_SLASH;
864     tmpvlen = convert_charset(obj->options.unixcharset, obj->options.maccharset, 0, name, vlen, tmpname, AFPVOL_U8MNAMELEN, &flags);
865     if (tmpvlen <= 0) {
866         strcpy(tmpname, "???");
867         tmpvlen = 3;
868     }
869
870     /* Do we have to mangle ? */
871     if ( (flags & CONV_REQMANGLE) || (tmpvlen > AFPVOL_MACNAMELEN)) {
872         if (tmpvlen + suffixlen > AFPVOL_MACNAMELEN) {
873             flags = CONV_FORCE | CONV_ALLOW_SLASH;
874             tmpvlen = convert_charset(obj->options.unixcharset,
875                                       obj->options.maccharset,
876                                       0,
877                                       name,
878                                       vlen,
879                                       tmpname,
880                                       AFPVOL_MACNAMELEN - suffixlen,
881                                       &flags);
882             tmpname[tmpvlen >= 0 ? tmpvlen : 0] = 0;
883         }
884         strcat(tmpname, suffix);
885         tmpvlen = strlen(tmpname);
886     }
887
888     /* Secondly convert name from maccharset to UCS2 */
889     if ( 0 >= ( macvlen = convert_string(obj->options.maccharset,
890                                          CH_UCS2,
891                                          tmpname,
892                                          tmpvlen,
893                                          mactmpname,
894                                          AFPVOL_U8MNAMELEN*2)) )
895         EC_FAIL;
896
897     LOG(log_maxdebug, logtype_afpd, "createvol: Volume '%s' ->  Longname: '%s'", name, tmpname);
898
899     EC_NULL( volume->v_localname = strdup(name) );
900     EC_NULL( volume->v_u8mname = strdup_w(u8mtmpname) );
901     EC_NULL( volume->v_macname = strdup_w(mactmpname) );
902     EC_NULL( volume->v_path = strdup(path) ); 
903         
904     volume->v_name = utf8_encoding(obj) ? volume->v_u8mname : volume->v_macname;
905
906 #ifdef __svr4__
907     volume->v_qfd = -1;
908 #endif /* __svr4__ */
909
910     /* os X start at 1 and use network order ie. 1 2 3 */
911     volume->v_vid = ++lastvid;
912     volume->v_vid = htons(volume->v_vid);
913
914 #ifdef HAVE_ACLS
915     if (!check_vol_acl_support(volume)) {
916         LOG(log_debug, logtype_afpd, "creatvol(\"%s\"): disabling ACL support", volume->v_path);
917         volume->v_flags &= ~AFPVOL_ACLS;
918     }
919 #endif
920
921     /* Check EA support on volume */
922     if (volume->v_vfs_ea == AFPVOL_EA_AUTO || volume->v_adouble == AD_VERSION_EA)
923         check_ea_support(volume);
924     initvol_vfs(volume);
925
926     /* get/store uuid from file in afpd master*/
927     if (!(pwd) && (volume->v_flags & AFPVOL_TM)) {
928         char *uuid = get_vol_uuid(obj, volume->v_localname);
929         if (!uuid) {
930             LOG(log_error, logtype_afpd, "Volume '%s': couldn't get UUID",
931                 volume->v_localname);
932         } else {
933             volume->v_uuid = uuid;
934             LOG(log_debug, logtype_afpd, "Volume '%s': UUID '%s'",
935                 volume->v_localname, volume->v_uuid);
936         }
937     }
938
939     /* no errors shall happen beyond this point because the cleanup would mess the volume chain up */
940     volume->v_next = Volumes;
941     Volumes = volume;
942     volume->v_obj = obj;
943
944 EC_CLEANUP:
945     LOG(log_debug, logtype_afpd, "createvol: END: %d", ret);
946     if (ret != 0) {
947         if (volume) {
948             volume_free(volume);
949             free(volume);
950         }
951         return NULL;
952     }
953     return volume;
954 }
955
956 /* ----------------------
957  */
958 static int volfile_changed(struct afp_options *p)
959 {
960     struct stat st;
961
962     if (!stat(p->configfile, &st) && st.st_mtime > p->volfile.mtime) {
963         p->volfile.mtime = st.st_mtime;
964         return 1;
965     }
966     return 0;
967 }
968
969 static int vol_section(const char *sec)
970 {
971     if (STRCMP(sec, ==, INISEC_GLOBAL))
972         return 0;
973     return 1;
974 }
975
976 #define MAXPRESETLEN 100
977 /*!
978  * Read volumes from iniconfig and add the volumes contained within to
979  * the global volume list. This gets called from the forked afpd childs.
980  * The master now reads this too for Zeroconf announcements.
981  */
982 static int readvolfile(AFPObj *obj, const struct passwd *pwent)
983 {
984     EC_INIT;
985     static int regexerr = -1;
986     static regex_t reg;
987     char        *realvolpath;
988     char        volname[AFPVOL_U8MNAMELEN + 1];
989     char        path[MAXPATHLEN + 1], tmp[MAXPATHLEN + 1];
990     const char  *preset, *default_preset, *p, *basedir;
991     char        *q, *u;
992     int         i;
993     struct passwd   *pw;
994     regmatch_t match[1];
995
996     LOG(log_debug, logtype_afpd, "readvolfile: BEGIN");
997
998     int secnum = iniparser_getnsec(obj->iniconfig);    
999     LOG(log_debug, logtype_afpd, "readvolfile: sections: %d", secnum);
1000     const char *secname;
1001
1002     if ((default_preset = iniparser_getstring(obj->iniconfig, INISEC_GLOBAL, "vol preset", NULL))) {
1003         LOG(log_debug, logtype_afpd, "readvolfile: default_preset: %s", default_preset);
1004     }
1005
1006     for (i = 0; i < secnum; i++) { 
1007         secname = iniparser_getsecname(obj->iniconfig, i);
1008
1009         if (!vol_section(secname))
1010             continue;
1011         if (STRCMP(secname, ==, INISEC_HOMES)) {
1012             have_uservol = 1;
1013             if (!IS_AFP_SESSION(obj)
1014                 || strcmp(obj->username, obj->options.guest) == 0)
1015                 /* not an AFP session, but cnid daemon, dbd or ad util, or guest login */
1016                 continue;
1017             if (pwent->pw_dir == NULL || STRCMP("", ==, pwent->pw_dir))
1018                 /* no user home */
1019                 continue;
1020
1021             if ((realpath(pwent->pw_dir, tmp)) == NULL)
1022                 continue;
1023
1024             /* check if user home matches our "basedir regex" */
1025             if ((basedir = iniparser_getstring(obj->iniconfig, INISEC_HOMES, "basedir regex", NULL)) == NULL) {
1026                 LOG(log_error, logtype_afpd, "\"basedir regex =\" must be defined in [Homes] section");
1027                 continue;
1028             }
1029             LOG(log_debug, logtype_afpd, "readvolfile: basedir regex: '%s'", basedir);
1030
1031             if (regexerr != 0 && (regexerr = regcomp(&reg, basedir, REG_EXTENDED)) != 0) {
1032                 char errbuf[1024];
1033                 regerror(regexerr, &reg, errbuf, sizeof(errbuf));
1034                 LOG(log_debug, logtype_default, "readvolfile: bad basedir regex: %s", errbuf);
1035                 continue;
1036             }
1037
1038             if (regexec(&reg, tmp, 1, match, 0) == REG_NOMATCH) {
1039                 LOG(log_error, logtype_default, "readvolfile: user home \"%s\" doesn't match basedir regex \"%s\"",
1040                     tmp, basedir);
1041                 continue;
1042             }
1043
1044             if (p = iniparser_getstring(obj->iniconfig, INISEC_HOMES, "path", NULL)) {
1045                 strlcat(tmp, "/", MAXPATHLEN);
1046                 strlcat(tmp, p, MAXPATHLEN);
1047             }
1048         } else {
1049             /* Get path */
1050             if ((p = iniparser_getstring(obj->iniconfig, secname, "path", NULL)) == NULL)
1051                 continue;
1052             strlcpy(tmp, p, MAXPATHLEN);
1053         }
1054
1055         if (volxlate(obj, path, sizeof(path) - 1, tmp, pwent, NULL, NULL) == NULL)
1056             continue;
1057
1058         /* do variable substitution for volume name */
1059         if (STRCMP(secname, ==, INISEC_HOMES)) {
1060             p = iniparser_getstring(obj->iniconfig, INISEC_HOMES, "home name", "$u's home");
1061             if (strstr(p, "$u") == NULL) {
1062                 LOG(log_warning, logtype_afpd, "home name must contain $u.");
1063                 p = "$u's home";
1064             }
1065             if (strchr(p, ':') != NULL) {
1066                 LOG(log_warning, logtype_afpd, "home name must not contain \":\".");
1067                 p = "$u's home";
1068             }
1069             strlcpy(tmp, p, MAXPATHLEN);
1070         } else {
1071             strlcpy(tmp, secname, AFPVOL_U8MNAMELEN);
1072         }
1073         if (volxlate(obj, volname, sizeof(volname) - 1, tmp, pwent, path, NULL) == NULL)
1074             continue;
1075
1076         preset = iniparser_getstring(obj->iniconfig, secname, "vol preset", NULL);
1077
1078         if ((realvolpath = realpath_safe(path)) == NULL)
1079             continue;
1080
1081         creatvol(obj, pwent, secname, volname, realvolpath, preset ? preset : default_preset ? default_preset : NULL);
1082         free(realvolpath);
1083     }
1084
1085 EC_CLEANUP:
1086     EC_EXIT;
1087 }
1088
1089 static struct extmap    *Extmap = NULL, *Defextmap = NULL;
1090 static int              Extmap_cnt;
1091
1092 static int setextmap(char *ext, char *type, char *creator)
1093 {
1094     EC_INIT;
1095     struct extmap *em;
1096     int           cnt;
1097
1098     if (Extmap == NULL) {
1099         EC_NULL_LOG( Extmap = calloc(1, sizeof( struct extmap )) );
1100     }
1101
1102     ext++;
1103
1104     for (em = Extmap, cnt = 0; em->em_ext; em++, cnt++)
1105         if ((strdiacasecmp(em->em_ext, ext)) == 0)
1106             goto EC_CLEANUP;
1107
1108     EC_NULL_LOG( Extmap = realloc(Extmap, sizeof(struct extmap) * (cnt + 2)) );
1109     (Extmap + cnt + 1)->em_ext = NULL;
1110     em = Extmap + cnt;
1111
1112     EC_NULL( em->em_ext = strdup(ext) );
1113
1114     if ( *type == '\0' ) {
1115         memcpy(em->em_type, "\0\0\0\0", sizeof( em->em_type ));
1116     } else {
1117         memcpy(em->em_type, type, sizeof( em->em_type ));
1118     }
1119     if ( *creator == '\0' ) {
1120         memcpy(em->em_creator, "\0\0\0\0", sizeof( em->em_creator ));
1121     } else {
1122         memcpy(em->em_creator, creator, sizeof( em->em_creator ));
1123     }
1124
1125 EC_CLEANUP:
1126     EC_EXIT;
1127 }
1128
1129 /* -------------------------- */
1130 static int extmap_cmp(const void *map1, const void *map2)
1131 {
1132     const struct extmap *em1 = map1;
1133     const struct extmap *em2 = map2;
1134     return strdiacasecmp(em1->em_ext, em2->em_ext);
1135 }
1136
1137 static void sortextmap( void)
1138 {
1139     struct extmap   *em;
1140
1141     Extmap_cnt = 0;
1142     if ((em = Extmap) == NULL) {
1143         return;
1144     }
1145     while (em->em_ext) {
1146         em++;
1147         Extmap_cnt++;
1148     }
1149     if (Extmap_cnt) {
1150         qsort(Extmap, Extmap_cnt, sizeof(struct extmap), extmap_cmp);
1151         if (*Extmap->em_ext == 0) {
1152             /* the first line is really "." the default entry,
1153              * we remove the leading '.' in setextmap
1154              */
1155             Defextmap = Extmap;
1156         }
1157     }
1158 }
1159
1160 static void free_extmap( void)
1161 {
1162     struct extmap   *em;
1163
1164     if (Extmap) {
1165         for ( em = Extmap; em->em_ext; em++) {
1166             free (em->em_ext);
1167         }
1168         free(Extmap);
1169         Extmap = NULL;
1170         Defextmap = Extmap;
1171         Extmap_cnt = 0;
1172     }
1173 }
1174
1175 static int ext_cmp_key(const void *key, const void *obj)
1176 {
1177     const char          *p = key;
1178     const struct extmap *em = obj;
1179     return strdiacasecmp(p, em->em_ext);
1180 }
1181
1182 struct extmap *getextmap(const char *path)
1183 {
1184     char      *p;
1185     struct extmap *em;
1186
1187     if (!Extmap_cnt || NULL == ( p = strrchr( path, '.' )) ) {
1188         return( Defextmap );
1189     }
1190     p++;
1191     if (!*p) {
1192         return( Defextmap );
1193     }
1194     em = bsearch(p, Extmap, Extmap_cnt, sizeof(struct extmap), ext_cmp_key);
1195     if (em) {
1196         return( em );
1197     } else {
1198         return( Defextmap );
1199     }
1200 }
1201
1202 struct extmap *getdefextmap(void)
1203 {
1204     return( Defextmap );
1205 }
1206
1207 static int readextmap(const char *file)
1208 {
1209     EC_INIT;
1210     FILE        *fp;
1211     char        ext[256];
1212     char        buf[256];
1213     char        type[5], creator[5];
1214
1215     LOG(log_debug, logtype_afpd, "readextmap: loading \"%s\"", file);
1216
1217     EC_NULL_LOGSTR( fp = fopen(file, "r"), "Couldn't open extension maping file %s", file);
1218
1219     while (fgets(buf, sizeof(buf), fp) != NULL) {
1220         initline(strlen(buf), buf);
1221         parseline(sizeof(ext) - 1, ext);
1222
1223         switch (ext[0]) {
1224         case '.' :
1225             parseline(sizeof(type) - 1, type);
1226             parseline(sizeof(creator) - 1, creator);
1227             setextmap(ext, type, creator);
1228             LOG(log_debug, logtype_afpd, "readextmap: mapping: '%s' -> %s/%s", ext, type, creator);
1229             break;
1230         }
1231     }
1232
1233     sortextmap();
1234     EC_ZERO( fclose(fp) );
1235
1236     LOG(log_debug, logtype_afpd, "readextmap: done", file);
1237
1238 EC_CLEANUP:
1239     EC_EXIT;
1240 }
1241
1242 /**************************************************************
1243  * API functions
1244  **************************************************************/
1245
1246 /*!
1247  * Remove a volume from the linked list of volumes
1248  */
1249 void volume_unlink(struct vol *volume)
1250 {
1251     struct vol *vol, *ovol, *nvol;
1252
1253     if (volume == Volumes) {
1254         Volumes = NULL;
1255         return;
1256     }
1257     for ( vol = Volumes->v_next, ovol = Volumes; vol; vol = nvol) {
1258         nvol = vol->v_next;
1259
1260         if (vol == volume) {
1261             ovol->v_next = nvol;
1262             break;
1263         }
1264         else {
1265             ovol = vol;
1266         }
1267     }
1268 }
1269
1270 /*!
1271  * Free all resources allocated in a struct vol, only struct dir *v_root can't be freed
1272  */
1273 void volume_free(struct vol *vol)
1274 {
1275     LOG(log_debug, logtype_afpd, "volume_free('%s'): BEGIN", vol->v_localname);
1276
1277     free(vol->v_localname);
1278     free(vol->v_u8mname);
1279     free(vol->v_macname);
1280     free(vol->v_path);
1281     free(vol->v_password);
1282     free(vol->v_veto);
1283     free(vol->v_volcodepage);
1284     free(vol->v_maccodepage);
1285     free(vol->v_cnidscheme);
1286     free(vol->v_dbpath);
1287     free(vol->v_gvs);
1288     free(vol->v_uuid);
1289     free(vol->v_cnidserver);
1290     free(vol->v_cnidport);
1291     free(vol->v_root_preexec);
1292     free(vol->v_postexec);
1293
1294     LOG(log_debug, logtype_afpd, "volume_free: END");
1295 }
1296
1297 /*!
1298  * Load charsets for a volume
1299  */
1300 int load_charset(struct vol *vol)
1301 {
1302     if ((vol->v_maccharset = add_charset(vol->v_maccodepage)) == (charset_t)-1) {
1303         LOG(log_error, logtype_default, "Setting mac charset '%s' failed", vol->v_maccodepage);
1304         return -1;
1305     }
1306
1307     if ((vol->v_volcharset = add_charset(vol->v_volcodepage)) == (charset_t)-1) {
1308         LOG(log_error, logtype_default, "Setting vol charset '%s' failed", vol->v_volcodepage);
1309         return -1;
1310     }
1311
1312     return 0;
1313 }
1314
1315 /*!
1316  * Initialize volumes and load ini configfile
1317  *
1318  * Depending on the value of obj->uid either access checks are done (!=0) or skipped (=0)
1319  *
1320  * @param obj       (r) handle
1321  * @param delvol_fn (r) callback called for deleted volumes
1322  */
1323 int load_volumes(AFPObj *obj, void (*delvol_fn)(const AFPObj *obj, struct vol *))
1324 {
1325     EC_INIT;
1326     int fd = -1;
1327     struct passwd   *pwent = NULL;
1328     struct stat         st;
1329     int retries = 0;
1330     struct vol *vol;
1331
1332     LOG(log_debug, logtype_afpd, "load_volumes: BEGIN");
1333
1334     if (Volumes) {
1335         if (!volfile_changed(&obj->options))
1336             goto EC_CLEANUP;
1337         have_uservol = 0;
1338         for (vol = Volumes; vol; vol = vol->v_next) {
1339             vol->v_deleted = 1;
1340         }
1341     } else {
1342         LOG(log_debug, logtype_afpd, "load_volumes: no volumes yet");
1343         EC_ZERO_LOG( lstat(obj->options.configfile, &st) );
1344         obj->options.volfile.mtime = st.st_mtime;
1345     }
1346
1347     /* try putting a read lock on the volume file twice, sleep 1 second if first attempt fails */
1348
1349     fd = open(obj->options.configfile, O_RDONLY);
1350
1351     while (retries < 2) {
1352         if ((read_lock(fd, 0, SEEK_SET, 0)) != 0) {
1353             retries++;
1354             if (!retries) {
1355                 LOG(log_error, logtype_afpd, "readvolfile: can't lock configfile \"%s\"",
1356                     obj->options.configfile);
1357                 EC_FAIL;
1358             }
1359             sleep(1);
1360             continue;
1361         }
1362         break;
1363     }
1364
1365     if (obj->uid)
1366         pwent = getpwuid(obj->uid);
1367
1368     if (obj->iniconfig)
1369         iniparser_freedict(obj->iniconfig);
1370     LOG(log_debug, logtype_afpd, "load_volumes: loading: %s", obj->options.configfile);
1371     obj->iniconfig = iniparser_load(obj->options.configfile);
1372
1373     EC_ZERO_LOG( readvolfile(obj, pwent) );
1374
1375     for ( vol = Volumes; vol; vol = vol->v_next ) {
1376         if (vol->v_deleted) {
1377             LOG(log_debug, logtype_afpd, "load_volumes: deleted: %s", vol->v_localname);
1378             if (delvol_fn)
1379                 delvol_fn(obj, vol);
1380             vol = Volumes;
1381         }
1382     }
1383
1384 EC_CLEANUP:
1385     if (fd != -1)
1386         (void)close(fd);
1387
1388     LOG(log_debug, logtype_afpd, "load_volumes: END");
1389     EC_EXIT;
1390 }
1391
1392 void unload_volumes(AFPObj *obj)
1393 {
1394     struct vol *vol;
1395
1396     LOG(log_debug, logtype_afpd, "unload_volumes: BEGIN");
1397
1398     for (vol = Volumes; vol; vol = vol->v_next)
1399         volume_free(vol);
1400     Volumes = NULL;
1401     obj->options.volfile.mtime = 0;
1402     
1403     LOG(log_debug, logtype_afpd, "unload_volumes: END");
1404 }
1405
1406 struct vol *getvolumes(void)
1407 {
1408     return Volumes;
1409 }
1410
1411 struct vol *getvolbyvid(const uint16_t vid )
1412 {
1413     struct vol  *vol;
1414
1415     for ( vol = Volumes; vol; vol = vol->v_next ) {
1416         if ( vid == vol->v_vid ) {
1417             break;
1418         }
1419     }
1420     if ( vol == NULL || ( vol->v_flags & AFPVOL_OPEN ) == 0 ) {
1421         return( NULL );
1422     }
1423
1424     return( vol );
1425 }
1426
1427 /*!
1428  * Search volume by path, creating user home vols as necessary
1429  *
1430  * Path may be absolute or relative. Ordinary volume structs are created when
1431  * the ini config is initially parsed (load_volumes()), but user volumes are
1432  * as load_volumes() only can create the user volume of the logged in user
1433  * in an AFP session in afpd, but not when called from eg cnid_metad or dbd.
1434  * Both cnid_metad and dbd thus need a way to lookup and create struct vols
1435  * for user home by path. This is what this func does as well.
1436  *
1437  * (1) Search "normal" volume list 
1438  * (2) Check if theres a [Homes] section, load_volumes() remembers this for us
1439  * (3) If there is, match "path" with "basedir regex" to get the user home parent dir
1440  * (4) Built user home path by appending the basedir matched in (3) and appending the username
1441  * (5) The next path element then is the username
1442  * (6) Append [Homes]->path subdirectory if defined
1443  * (7) Create volume
1444  *
1445  * @param obj  (rw) handle
1446  * @param path (r)  path, may be relative or absolute
1447  */
1448 struct vol *getvolbypath(AFPObj *obj, const char *path)
1449 {
1450     EC_INIT;
1451     static int regexerr = -1;
1452     static regex_t reg;
1453     struct vol *vol;
1454     struct vol *tmp;
1455     const struct passwd *pw;
1456     char        volname[AFPVOL_U8MNAMELEN + 1];
1457     char        abspath[MAXPATHLEN + 1];
1458     char        volpath[MAXPATHLEN + 1], *realvolpath = NULL;
1459     char        tmpbuf[MAXPATHLEN + 1];
1460     const char *secname, *basedir, *p = NULL, *subpath = NULL, *subpathconfig;
1461     char *user = NULL, *prw;
1462     regmatch_t match[1];
1463
1464     LOG(log_debug, logtype_afpd, "getvolbypath(\"%s\")", path);
1465
1466     if (path[0] != '/') {
1467         /* relative path, build absolute path */
1468         EC_NULL_LOG( getcwd(abspath, MAXPATHLEN) );
1469         strlcat(abspath, "/", MAXPATHLEN);
1470         strlcat(abspath, path, MAXPATHLEN);
1471         path = abspath;
1472     }
1473
1474
1475     for (tmp = Volumes; tmp; tmp = tmp->v_next) { /* (1) */
1476         if (strncmp(path, tmp->v_path, strlen(tmp->v_path)) == 0) {
1477             vol = tmp;
1478             goto EC_CLEANUP;
1479         }
1480     }
1481
1482     if (!have_uservol) /* (2) */
1483         EC_FAIL_LOG("getvolbypath(\"%s\"): no volume for path", path);
1484
1485     int secnum = iniparser_getnsec(obj->iniconfig);
1486
1487     for (int i = 0; i < secnum; i++) { 
1488         secname = iniparser_getsecname(obj->iniconfig, i);
1489         if (STRCMP(secname, ==, INISEC_HOMES))
1490             break;
1491     }
1492
1493     if (STRCMP(secname, !=, INISEC_HOMES))
1494         EC_FAIL_LOG("getvolbypath(\"%s\"): no volume for path", path);
1495
1496     /* (3) */
1497     EC_NULL_LOG( basedir = iniparser_getstring(obj->iniconfig, INISEC_HOMES, "basedir regex", NULL) );
1498     LOG(log_debug, logtype_afpd, "getvolbypath: user home section: '%s', basedir: '%s'", secname, basedir);
1499
1500     if (regexerr != 0 && (regexerr = regcomp(&reg, basedir, REG_EXTENDED)) != 0) {
1501         char errbuf[1024];
1502         regerror(regexerr, &reg, errbuf, sizeof(errbuf));
1503         printf("error: %s\n", errbuf);
1504         EC_FAIL_LOG("getvolbypath(\"%s\"): bad basedir regex: %s", errbuf);
1505     }
1506
1507     if (regexec(&reg, path, 1, match, 0) == REG_NOMATCH)
1508         EC_FAIL_LOG("getvolbypath(\"%s\"): no volume for path", path);
1509
1510     if (match[0].rm_eo - match[0].rm_so > MAXPATHLEN)
1511         EC_FAIL_LOG("getvolbypath(\"%s\"): path too long", path);
1512
1513     /* (4) */
1514     strncpy(tmpbuf, path + match[0].rm_so, match[0].rm_eo - match[0].rm_so);
1515     tmpbuf[match[0].rm_eo - match[0].rm_so] = 0;
1516
1517     LOG(log_debug, logtype_afpd, "getvolbypath: basedir regex: '%s', basedir match: \"%s\"",
1518         basedir, tmpbuf);
1519
1520     strlcat(tmpbuf, "/", MAXPATHLEN);
1521
1522     /* (5) */
1523     p = path + strlen(basedir);
1524     while (*p == '/')
1525         p++;
1526     EC_NULL_LOG( user = strdup(p) );
1527
1528     if (prw = strchr(user, '/'))
1529         *prw++ = 0;
1530     if (prw != 0)
1531         subpath = prw;
1532
1533     strlcat(tmpbuf, user, MAXPATHLEN);
1534     strlcpy(obj->username, user, MAXUSERLEN);
1535     strlcat(tmpbuf, "/", MAXPATHLEN);
1536
1537     /* (6) */
1538     if (subpathconfig = iniparser_getstring(obj->iniconfig, INISEC_HOMES, "path", NULL)) {
1539         /*
1540         if (!subpath || strncmp(subpathconfig, subpath, strlen(subpathconfig)) != 0) {
1541             EC_FAIL;
1542         }
1543         */
1544         strlcat(tmpbuf, subpathconfig, MAXPATHLEN);
1545         strlcat(tmpbuf, "/", MAXPATHLEN);
1546     }
1547
1548
1549     /* (7) */
1550     if (volxlate(obj, volpath, sizeof(volpath) - 1, tmpbuf, pw, NULL, NULL) == NULL)
1551         EC_FAIL;
1552
1553     EC_NULL( realvolpath = realpath_safe(volpath) );
1554     EC_NULL( pw = getpwnam(user) );
1555
1556     LOG(log_debug, logtype_afpd, "getvolbypath(\"%s\"): user: %s, homedir: %s => realvolpath: \"%s\"",
1557         path, user, pw->pw_dir, realvolpath);
1558
1559     /* do variable substitution for volume name */
1560     p = iniparser_getstring(obj->iniconfig, INISEC_HOMES, "home name", "$u's home");
1561     if (strstr(p, "$u") == NULL)
1562         p = "$u's home";
1563     strlcpy(tmpbuf, p, AFPVOL_U8MNAMELEN);
1564     EC_NULL_LOG( volxlate(obj, volname, sizeof(volname) - 1, tmpbuf, pw, realvolpath, NULL) );
1565
1566     const char  *preset, *default_preset;
1567     default_preset = iniparser_getstring(obj->iniconfig, INISEC_GLOBAL, "vol preset", NULL);
1568     preset = iniparser_getstring(obj->iniconfig, INISEC_HOMES, "vol preset", NULL);
1569
1570     vol = creatvol(obj, pw, INISEC_HOMES, volname, realvolpath, preset ? preset : default_preset ? default_preset : NULL);
1571
1572 EC_CLEANUP:
1573     if (user)
1574         free(user);
1575     if (realvolpath)
1576         free(realvolpath);
1577     if (ret != 0)
1578         vol = NULL;
1579     return vol;
1580 }
1581
1582 struct vol *getvolbyname(const char *name)
1583 {
1584     struct vol *vol = NULL;
1585     struct vol *tmp;
1586
1587     for (tmp = Volumes; tmp; tmp = tmp->v_next) {
1588         if (strncmp(name, tmp->v_configname, strlen(tmp->v_configname)) == 0) {
1589             vol = tmp;
1590             break;
1591         }
1592     }
1593     return vol;
1594 }
1595
1596 #define MAXVAL 1024
1597 /*!
1598  * Initialize an AFPObj and options from ini config file
1599  */
1600 int afp_config_parse(AFPObj *AFPObj, char *processname)
1601 {
1602     EC_INIT;
1603     dictionary *config;
1604     struct afp_options *options = &AFPObj->options;
1605     int i, c;
1606     const char *p, *tmp;
1607     char *q, *r;
1608     char val[MAXVAL];
1609
1610     if (processname != NULL)
1611         set_processname(processname);
1612
1613     AFPObj->afp_version = 11;
1614     options->configfile  = AFPObj->cmdlineconfigfile ? strdup(AFPObj->cmdlineconfigfile) : strdup(_PATH_CONFDIR "afp.conf");
1615     options->sigconffile = strdup(_PATH_STATEDIR "afp_signature.conf");
1616     options->uuidconf    = strdup(_PATH_STATEDIR "afp_voluuid.conf");
1617     options->flags       = OPTION_UUID | AFPObj->cmdlineflags;
1618     
1619     if ((config = iniparser_load(AFPObj->options.configfile)) == NULL)
1620         return -1;
1621     AFPObj->iniconfig = config;
1622
1623     /* [Global] */
1624     options->logconfig = iniparser_getstrdup(config, INISEC_GLOBAL, "log level", "default:note");
1625     options->logfile   = iniparser_getstrdup(config, INISEC_GLOBAL, "log file",  NULL);
1626
1627     setuplog(options->logconfig, options->logfile);
1628
1629     /* "server options" boolean options */
1630     if (!iniparser_getboolean(config, INISEC_GLOBAL, "zeroconf", 1))
1631         options->flags |= OPTION_NOZEROCONF;
1632     if (iniparser_getboolean(config, INISEC_GLOBAL, "advertise ssh", 0))
1633         options->flags |= OPTION_ANNOUNCESSH;
1634     if (iniparser_getboolean(config, INISEC_GLOBAL, "map acls", 1))
1635         options->flags |= OPTION_ACL2MACCESS;
1636     if (iniparser_getboolean(config, INISEC_GLOBAL, "keep sessions", 0))
1637         options->flags |= OPTION_KEEPSESSIONS;
1638     if (iniparser_getboolean(config, INISEC_GLOBAL, "close vol", 0))
1639         options->flags |= OPTION_CLOSEVOL;
1640     if (!iniparser_getboolean(config, INISEC_GLOBAL, "client polling", 0))
1641         options->flags |= OPTION_SERVERNOTIF;
1642     if (!iniparser_getboolean(config, INISEC_GLOBAL, "use sendfile", 1))
1643         options->flags |= OPTION_NOSENDFILE;
1644     if (iniparser_getboolean(config, INISEC_GLOBAL, "solaris share reservations", 1))
1645         options->flags |= OPTION_SHARE_RESERV;
1646     if (iniparser_getboolean(config, INISEC_GLOBAL, "afp read locks", 0))
1647         options->flags |= OPTION_AFP_READ_LOCK;
1648     if (!iniparser_getboolean(config, INISEC_GLOBAL, "save password", 1))
1649         options->passwdbits |= PASSWD_NOSAVE;
1650     if (iniparser_getboolean(config, INISEC_GLOBAL, "set password", 0))
1651         options->passwdbits |= PASSWD_SET;
1652
1653     /* figure out options w values */
1654     options->loginmesg      = iniparser_getstrdup(config, INISEC_GLOBAL, "login message",  NULL);
1655     options->guest          = iniparser_getstrdup(config, INISEC_GLOBAL, "guest account",  "nobody");
1656     options->extmapfile     = iniparser_getstrdup(config, INISEC_GLOBAL, "extmap file",    _PATH_CONFDIR "extmap.conf");
1657     options->passwdfile     = iniparser_getstrdup(config, INISEC_GLOBAL, "passwd file",    _PATH_AFPDPWFILE);
1658     options->uampath        = iniparser_getstrdup(config, INISEC_GLOBAL, "uam path",       _PATH_AFPDUAMPATH);
1659     options->uamlist        = iniparser_getstrdup(config, INISEC_GLOBAL, "uam list",       "uams_dhx.so uams_dhx2.so");
1660     options->port           = iniparser_getstrdup(config, INISEC_GLOBAL, "afp port",       "548");
1661     options->signatureopt   = iniparser_getstrdup(config, INISEC_GLOBAL, "signature",      "");
1662     options->k5service      = iniparser_getstrdup(config, INISEC_GLOBAL, "k5 service",     NULL);
1663     options->k5realm        = iniparser_getstrdup(config, INISEC_GLOBAL, "k5 realm",       NULL);
1664     options->listen         = iniparser_getstrdup(config, INISEC_GLOBAL, "afp listen",     NULL);
1665     options->ntdomain       = iniparser_getstrdup(config, INISEC_GLOBAL, "nt domain",      NULL);
1666     options->ntseparator    = iniparser_getstrdup(config, INISEC_GLOBAL, "nt separator",   NULL);
1667     options->mimicmodel     = iniparser_getstrdup(config, INISEC_GLOBAL, "mimic model",    NULL);
1668     options->adminauthuser  = iniparser_getstrdup(config, INISEC_GLOBAL, "admin auth user",NULL);
1669     options->connections    = iniparser_getint   (config, INISEC_GLOBAL, "max connections",200);
1670     options->passwdminlen   = iniparser_getint   (config, INISEC_GLOBAL, "passwd minlen",  0);
1671     options->tickleval      = iniparser_getint   (config, INISEC_GLOBAL, "tickleval",      30);
1672     options->timeout        = iniparser_getint   (config, INISEC_GLOBAL, "timeout",        4);
1673     options->dsireadbuf     = iniparser_getint   (config, INISEC_GLOBAL, "dsireadbuf",     12);
1674     options->server_quantum = iniparser_getint   (config, INISEC_GLOBAL, "server quantum", DSI_SERVQUANT_DEF);
1675     options->volnamelen     = iniparser_getint   (config, INISEC_GLOBAL, "volnamelen",     80);
1676     options->dircachesize   = iniparser_getint   (config, INISEC_GLOBAL, "dircachesize",   DEFAULT_MAX_DIRCACHE_SIZE);
1677     options->tcp_sndbuf     = iniparser_getint   (config, INISEC_GLOBAL, "tcpsndbuf",      0);
1678     options->tcp_rcvbuf     = iniparser_getint   (config, INISEC_GLOBAL, "tcprcvbuf",      0);
1679     options->fce_fmodwait   = iniparser_getint   (config, INISEC_GLOBAL, "fce holdfmod",   60);
1680     options->sleep          = iniparser_getint   (config, INISEC_GLOBAL, "sleep time",     10);
1681     options->disconnected   = iniparser_getint   (config, INISEC_GLOBAL, "disconnect time",24);
1682
1683     if ((p = iniparser_getstring(config, INISEC_GLOBAL, "hostname", NULL))) {
1684         EC_NULL_LOG( options->hostname = strdup(p) );
1685     } else {
1686         if (gethostname(val, sizeof(val)) < 0 ) {
1687             perror( "gethostname" );
1688             EC_FAIL;
1689         }
1690         if ((q = strchr(val, '.')))
1691             *q = '\0';
1692         options->hostname = strdup(val);
1693     }
1694
1695     if ((p = iniparser_getstring(config, INISEC_GLOBAL, "k5 keytab", NULL))) {
1696         EC_NULL_LOG( options->k5keytab = malloc(strlen(p) + 14) );
1697         snprintf(options->k5keytab, strlen(p) + 14, "KRB5_KTNAME=%s", p);
1698         putenv(options->k5keytab);
1699     }
1700
1701 #ifdef ADMIN_GRP
1702     if ((p = iniparser_getstring(config, INISEC_GLOBAL, "admin group",  NULL))) {
1703          struct group *gr = getgrnam(p);
1704          if (gr != NULL)
1705              options->admingid = gr->gr_gid;
1706     }
1707 #endif /* ADMIN_GRP */
1708
1709     q = iniparser_getstrdup(config, INISEC_GLOBAL, "cnid server", "localhost:4700");
1710     r = strrchr(q, ':');
1711     if (r)
1712         *r = 0;
1713     options->Cnid_srv = strdup(q);
1714     if (r)
1715         options->Cnid_port = strdup(r + 1);
1716     else
1717         options->Cnid_port = strdup("4700");
1718     LOG(log_debug, logtype_afpd, "CNID Server: %s:%s", options->Cnid_srv, options->Cnid_port);
1719     if (q)
1720         free(q);
1721
1722     if ((q = iniparser_getstrdup(config, INISEC_GLOBAL, "fqdn", NULL))) {
1723         /* do a little checking for the domain name. */
1724         r = strchr(q, ':');
1725         if (r)
1726             *r = '\0';
1727         if (gethostbyname(q)) {
1728             if (r)
1729                 *r = ':';
1730             EC_NULL_LOG( options->fqdn = strdup(q) );
1731         } else {
1732             LOG(log_error, logtype_afpd, "error parsing -fqdn, gethostbyname failed for: %s", c);
1733         }
1734         free(q);
1735     }
1736
1737     /* Charset Options */
1738
1739     /* unix charset is in [G] only */
1740     if (!(p = iniparser_getstring(config, INISEC_GLOBAL, "unix charset", NULL))) {
1741         options->unixcodepage = strdup("UTF8");
1742         set_charset_name(CH_UNIX, "UTF8");
1743     } else {
1744         if (strcasecmp(p, "LOCALE") == 0) {
1745 #if defined(CODESET)
1746             setlocale(LC_ALL, "");
1747             p = nl_langinfo(CODESET);
1748             LOG(log_debug, logtype_afpd, "Locale charset is '%s'", p);
1749 #else /* system doesn't have LOCALE support */
1750             LOG(log_warning, logtype_afpd, "system doesn't have LOCALE support");
1751             p = strdup("UTF8");
1752 #endif
1753         }
1754         if (strcasecmp(p, "UTF-8") == 0) {
1755             p = strdup("UTF8");
1756         }
1757         options->unixcodepage = strdup(p);
1758         set_charset_name(CH_UNIX, p);
1759     }
1760     options->unixcharset = CH_UNIX;
1761     LOG(log_debug, logtype_afpd, "Global unix charset is %s", options->unixcodepage);
1762
1763     /* vol charset is in [G] and [V] */
1764     if (!(p = iniparser_getstring(config, INISEC_GLOBAL, "vol charset", NULL))) {
1765         options->volcodepage = strdup(options->unixcodepage);
1766     } else {
1767         if (strcasecmp(p, "UTF-8") == 0) {
1768             p = strdup("UTF8");
1769         }
1770         options->volcodepage = strdup(p);
1771     }
1772     LOG(log_debug, logtype_afpd, "Global vol charset is %s", options->volcodepage);
1773     
1774     /* mac charset is in [G] and [V] */
1775     if (!(p = iniparser_getstring(config, INISEC_GLOBAL, "mac charset", NULL))) {
1776         options->maccodepage = strdup("MAC_ROMAN");
1777         set_charset_name(CH_MAC, "MAC_ROMAN");
1778     } else {
1779         if (strncasecmp(p, "MAC", 3) != 0) {
1780             LOG(log_warning, logtype_afpd, "Is '%s' really mac charset? ", p);
1781         }
1782         options->maccodepage = strdup(p);
1783         set_charset_name(CH_MAC, p);
1784     }
1785     options->maccharset = CH_MAC;
1786     LOG(log_debug, logtype_afpd, "Global mac charset is %s", options->maccodepage);
1787
1788     if (readextmap(options->extmapfile) != 0) {
1789         LOG(log_error, logtype_afpd, "Couldn't load extension -> type/creator mappings file \"%s\"",
1790             options->extmapfile);
1791     }
1792
1793     /* Check for sane values */
1794     if (options->tickleval <= 0)
1795         options->tickleval = 30;
1796         options->disconnected *= 3600 / options->tickleval;
1797         options->sleep *= 3600 / options->tickleval;
1798     if (options->timeout <= 0)
1799         options->timeout = 4;
1800     if (options->sleep <= 4)
1801         options->disconnected = options->sleep = 4;
1802     if (options->dsireadbuf < 6)
1803         options->dsireadbuf = 6;
1804     if (options->volnamelen < 8)
1805         options->volnamelen = 8; /* max mangled volname "???#FFFF" */
1806     if (options->volnamelen > 255)
1807         options->volnamelen = 255; /* AFP3 spec */
1808
1809 EC_CLEANUP:
1810     EC_EXIT;
1811 }