]> arthur.barton.de Git - netatalk.git/blob - libatalk/util/netatalk_conf.c
Enhance handling of nested volume paths
[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" or "@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     char buf[MAXPATHLEN + 1], *p;
415     struct group *gr;
416
417     if (!args)
418         return -1;
419
420     strlcpy(buf, args, sizeof(buf));
421     if ((p = strtok(buf, ", ")) == NULL) /* nothing, return okay */
422         return -1;
423
424     while (p) {
425         if (*p == '@') { /* it's a group */
426             if ((gr = getgrnam(p + 1)) && gmem(gr->gr_gid, obj->ngroups, obj->groups))
427                 return 1;
428         } else if (strcasecmp(p, name) == 0) /* it's a user name */
429             return 1;
430         p = strtok(NULL, ", ");
431     }
432
433     return 0;
434 }
435
436 static int hostaccessvol(const AFPObj *obj, const char *volname, const char *args)
437 {
438     int mask_int;
439     char buf[MAXPATHLEN + 1], *p, *b;
440     struct sockaddr_storage client;
441     const DSI *dsi = obj->dsi;
442
443     if (!args || !dsi)
444         return -1;
445
446     strlcpy(buf, args, sizeof(buf));
447     if ((p = strtok_r(buf, ", ", &b)) == NULL) /* nothing, return okay */
448         return -1;
449
450     while (p) {
451         int ret;
452         char *ipaddr, *mask_char;
453         struct addrinfo hints, *ai;
454
455         ipaddr = strtok(p, "/");
456         mask_char = strtok(NULL,"/");
457
458         /* Get address from string with getaddrinfo */
459         memset(&hints, 0, sizeof hints);
460         hints.ai_family = AF_UNSPEC;
461         hints.ai_socktype = SOCK_STREAM;
462         if ((ret = getaddrinfo(ipaddr, NULL, &hints, &ai)) != 0) {
463             LOG(log_error, logtype_afpd, "hostaccessvol: getaddrinfo: %s\n", gai_strerror(ret));
464             continue;
465         }
466
467         /* netmask */
468         if (mask_char != NULL)
469             mask_int = atoi(mask_char); /* apply_ip_mask does range checking on it */
470         else {
471             if (ai->ai_family == AF_INET) /* IPv4 */
472                 mask_int = 32;
473             else                          /* IPv6 */
474                 mask_int = 128;
475         }
476
477         /* Apply mask to addresses */
478         client = dsi->client;
479         apply_ip_mask((struct sockaddr *)&client, mask_int);
480         apply_ip_mask(ai->ai_addr, mask_int);
481
482         if (compare_ip((struct sockaddr *)&client, ai->ai_addr) == 0) {
483             freeaddrinfo(ai);
484             return 1;
485         }
486
487         /* next address */
488         freeaddrinfo(ai);
489         p = strtok_r(NULL, ", ", &b);
490     }
491
492     return 0;
493 }
494
495 /*!
496  * Get option string from config, use default value if not set
497  *
498  * @param conf    (r) config handle
499  * @param vol     (r) volume name (must be section name ie wo vars expanded)
500  * @param opt     (r) option
501  * @param defsec  (r) if "option" is not found in "vol", try to find it in section "defsec"
502  * @param defval  (r) if neither "vol" nor "defsec" contain "opt" return "defval"
503  *
504  * @returns       const option string from "vol" or "defsec", or "defval" if not found
505  */
506 static const char *getoption(const dictionary *conf, const char *vol, const char *opt, const char *defsec, const char *defval)
507 {
508     EC_INIT;
509     const char *result;
510
511     if ((!(result = iniparser_getstring(conf, vol, opt, NULL))) && (defsec != NULL))
512         result = iniparser_getstring(conf, defsec, opt, NULL);
513     
514 EC_CLEANUP:
515     if (result == NULL)
516         result = defval;
517     return result;
518 }
519
520 /*!
521  * Get boolean option from config, use default value if not set
522  *
523  * @param conf    (r) config handle
524  * @param vol     (r) volume name (must be section name ie wo vars expanded)
525  * @param opt     (r) option
526  * @param defsec  (r) if "option" is not found in "vol", try to find it in section "defsec"
527  * @param defval  (r) if neither "vol" nor "defsec" contain "opt" return "defval"
528  *
529  * @returns       const option string from "vol" or "defsec", or "defval" if not found
530  */
531 static int getoption_bool(const dictionary *conf, const char *vol, const char *opt, const char *defsec, int defval)
532 {
533     EC_INIT;
534     int result;
535
536     if (((result = iniparser_getboolean(conf, vol, opt, -1)) == -1) && (defsec != NULL))
537         result = iniparser_getboolean(conf, defsec, opt, -1);
538     
539 EC_CLEANUP:
540     if (result == -1)
541         result = defval;
542     return result;
543 }
544
545 /*!
546  * Create volume struct
547  *
548  * @param obj      (r) handle
549  * @param pwd      (r) struct passwd of logged in user, may be NULL in master afpd
550  * @param section  (r) volume name wo variables expanded (exactly as in iniconfig)
551  * @param name     (r) volume name
552  * @param path_in  (r) volume path
553  * @param preset   (r) default preset, may be NULL
554  * @returns            vol on success, NULL on error
555  */
556 static struct vol *creatvol(AFPObj *obj,
557                             const struct passwd *pwd,
558                             const char *section,
559                             const char *name,
560                             const char *path_in,
561                             const char *preset)
562 {
563     EC_INIT;
564     struct vol  *volume = NULL;
565     size_t      current_pathlen, another_pathlen;
566     int         i, suffixlen, vlen, tmpvlen, u8mvlen, macvlen;
567     char        tmpname[AFPVOL_U8MNAMELEN+1];
568     char        path[MAXPATHLEN + 1];
569     ucs2_t      u8mtmpname[(AFPVOL_U8MNAMELEN+1)*2], mactmpname[(AFPVOL_MACNAMELEN+1)*2];
570     char        suffix[6]; /* max is #FFFF */
571     uint16_t    flags;
572     const char  *val;
573     char        *p, *q;
574     bool        new_vol_nested = false; /* flag whether the new volume path is a subdirectory
575                                         *  of an existing directory in which case we force
576                                         * "last" cnidsheme and read only behaviour */
577
578     strlcpy(path, path_in, MAXPATHLEN);
579
580     LOG(log_debug, logtype_afpd, "createvol(volume: '%s', path: \"%s\", preset: '%s'): BEGIN",
581         name, path, preset ? preset : "-");
582
583     if ( name == NULL || *name == '\0' ) {
584         if ((name = strrchr( path, '/' )) == NULL)
585             EC_FAIL;
586         /* if you wish to share /, you need to specify a name. */
587         if (*++name == '\0')
588             EC_FAIL;
589     }
590
591     /* Once volumes are loaded, we never change options again, we just delete em when they're removed from afp.conf */
592
593     /*
594      * Check for duplicated or nested volumes, eg:
595      * /Volumes/name      /Volumes/name     [duplicate], and
596      * /Volumes/name      /Volumes/name/dir [nested], but beware of simple strncmp test:
597      * /Volumes/name      /Volumes/name1    [strncmp match if n=strlen("Volumes/name") -> false positive]
598      */
599     current_pathlen = strlen(path);
600     for (struct vol *vol = Volumes; vol; vol = vol->v_next) {
601         another_pathlen = strlen(vol->v_path);
602         if (strncmp(path, vol->v_path, MIN(current_pathlen, another_pathlen)) == 0) {
603             if (current_pathlen == another_pathlen) {
604                 LOG(log_error, logtype_afpd, "volume \"%s\" paths is duplicated: \"%s\"", name, path);
605                 vol->v_deleted = 0;
606                 volume = vol;
607                 goto EC_CLEANUP;
608             } else {
609                 const char *shorter_path, *longer_path;
610                 int shorter_len;
611                 if (another_pathlen > current_pathlen) {
612                     shorter_len = current_pathlen;
613                     shorter_path = path;
614                     longer_path = vol->v_path;
615                 } else {
616                     new_vol_nested = true;
617                     shorter_len = another_pathlen;
618                     shorter_path = vol->v_path;
619                     longer_path = path;
620                 }
621                 if (longer_path[shorter_len] == '/') {
622                     if (!new_vol_nested && STRCMP(vol->v_cnidscheme, !=, "last")) {
623                         /* the volume "vol" is nested, we must force cnidscheme "last" and read-only */
624                         LOG(log_warning, logtype_afpd, "volume \"%s\" path \"%s\" is nested, set to read-only",
625                             vol->v_configname, vol->v_path);
626                         vol->v_flags = AFPVOL_RO;
627                         free(vol->v_cnidscheme);
628                         vol->v_cnidscheme = strdup("last");
629                     }
630                 }
631             }
632         }
633     }
634
635     /*
636      * Check allow/deny lists:
637      * allow -> either no list (-1), or in list (1)
638      * deny -> either no list (-1), or not in list (0)
639      */
640     if (pwd) {
641         if (accessvol(obj, getoption(obj->iniconfig, section, "invalid users", preset, NULL), pwd->pw_name) == 1)
642             goto EC_CLEANUP;
643         if (accessvol(obj, getoption(obj->iniconfig, section, "valid users", preset, NULL), pwd->pw_name) == 0)
644             goto EC_CLEANUP;
645         if (hostaccessvol(obj, section, getoption(obj->iniconfig, section, "hosts deny", preset, NULL)) == 1)
646             goto EC_CLEANUP;
647         if (hostaccessvol(obj, section, getoption(obj->iniconfig, section, "hosts allow", preset, NULL)) == 0)
648             goto EC_CLEANUP;
649     }
650
651     EC_NULL( volume = calloc(1, sizeof(struct vol)) );
652
653     EC_NULL( volume->v_configname = strdup(section));
654
655     volume->v_vfs_ea = AFPVOL_EA_AUTO;
656     volume->v_umask = obj->options.umask;
657
658     if (val = getoption(obj->iniconfig, section, "password", preset, NULL))
659         EC_NULL( volume->v_password = strdup(val) );
660
661     if (val = getoption(obj->iniconfig, section, "veto files", preset, NULL))
662         EC_NULL( volume->v_veto = strdup(val) );
663
664     /* vol charset is in [G] and [V] */
665     if (val = getoption(obj->iniconfig, section, "vol charset", preset, NULL)) {
666         if (strcasecmp(val, "UTF-8") == 0) {
667             val = strdup("UTF8");
668         }
669         EC_NULL( volume->v_volcodepage = strdup(val) );
670     }
671     else
672         EC_NULL( volume->v_volcodepage = strdup(obj->options.volcodepage) );
673
674     /* mac charset is in [G] and [V] */
675     if (val = getoption(obj->iniconfig, section, "mac charset", preset, NULL)) {
676         if (strncasecmp(val, "MAC", 3) != 0) {
677             LOG(log_warning, logtype_afpd, "Is '%s' really mac charset? ", val);
678         }
679         EC_NULL( volume->v_maccodepage = strdup(val) );
680     }
681     else
682     EC_NULL( volume->v_maccodepage = strdup(obj->options.maccodepage) );
683
684     vlen = strlen(name);
685     strlcpy(tmpname, name, sizeof(tmpname));
686     for(i = 0; i < vlen; i++)
687         if(tmpname[i] == '/') tmpname[i] = ':';
688
689     bstring dbpath;
690     EC_NULL_LOG( val = iniparser_getstring(obj->iniconfig, INISEC_GLOBAL, "vol dbpath", _PATH_STATEDIR "CNID/") );
691     EC_NULL_LOG( dbpath = bformat("%s/%s/", val, tmpname) );
692     EC_NULL_LOG( volume->v_dbpath = strdup(bdata(dbpath)) );
693     bdestroy(dbpath);
694
695     if (val = getoption(obj->iniconfig, section, "cnid scheme", preset, NULL))
696         EC_NULL( volume->v_cnidscheme = strdup(val) );
697     else
698         volume->v_cnidscheme = strdup(DEFAULT_CNID_SCHEME);
699
700     if (val = getoption(obj->iniconfig, section, "umask", preset, NULL))
701         volume->v_umask = (int)strtol(val, NULL, 8);
702
703     if (val = getoption(obj->iniconfig, section, "directory perm", preset, NULL))
704         volume->v_dperm = (int)strtol(val, NULL, 8);
705
706     if (val = getoption(obj->iniconfig, section, "file perm", preset, NULL))
707         volume->v_fperm = (int)strtol(val, NULL, 8);
708
709     if (val = getoption(obj->iniconfig, section, "vol size limit", preset, NULL))
710         volume->v_limitsize = (uint32_t)strtoul(val, NULL, 10);
711
712     if (val = getoption(obj->iniconfig, section, "preexec", preset, NULL))
713         EC_NULL( volume->v_preexec = volxlate(obj, NULL, MAXPATHLEN, val, pwd, path, name) );
714
715     if (val = getoption(obj->iniconfig, section, "postexec", preset, NULL))
716         EC_NULL( volume->v_postexec = volxlate(obj, NULL, MAXPATHLEN, val, pwd, path, name) );
717
718     if (val = getoption(obj->iniconfig, section, "root preexec", preset, NULL))
719         EC_NULL( volume->v_root_preexec = volxlate(obj, NULL, MAXPATHLEN, val, pwd, path, name) );
720
721     if (val = getoption(obj->iniconfig, section, "root postexec", preset, NULL))
722         EC_NULL( volume->v_root_postexec = volxlate(obj, NULL, MAXPATHLEN, val, pwd, path, name) );
723
724     if (val = getoption(obj->iniconfig, section, "appledouble", preset, NULL)) {
725         if (strcmp(val, "v2") == 0)
726             volume->v_adouble = AD_VERSION2;
727         else if (strcmp(val, "ea") == 0)
728             volume->v_adouble = AD_VERSION_EA;
729     } else {
730         volume->v_adouble = AD_VERSION;
731     }
732
733     if (val = getoption(obj->iniconfig, section, "cnid server", preset, NULL)) {
734         EC_NULL( p = strdup(val) );
735         volume->v_cnidserver = p;
736         if (q = strrchr(val, ':')) {
737             *q++ = 0;
738             volume->v_cnidport = strdup(q);
739         } else {
740             volume->v_cnidport = strdup("4700");
741         }
742
743     } else {
744         volume->v_cnidserver = strdup(obj->options.Cnid_srv);
745         volume->v_cnidport = strdup(obj->options.Cnid_port);
746     }
747
748     if (val = getoption(obj->iniconfig, section, "ea", preset, NULL)) {
749         if (strcasecmp(val, "ad") == 0)
750             volume->v_vfs_ea = AFPVOL_EA_AD;
751         else if (strcasecmp(val, "sys") == 0)
752             volume->v_vfs_ea = AFPVOL_EA_SYS;
753         else if (strcasecmp(val, "none") == 0)
754             volume->v_vfs_ea = AFPVOL_EA_NONE;
755     }
756
757     if (val = getoption(obj->iniconfig, section, "casefold", preset, NULL)) {
758         if (strcasecmp(val, "tolower") == 0)
759             volume->v_casefold = AFPVOL_UMLOWER;
760         else if (strcasecmp(val, "toupper") == 0)
761             volume->v_casefold = AFPVOL_UMUPPER;
762         else if (strcasecmp(val, "xlatelower") == 0)
763             volume->v_casefold = AFPVOL_UUPPERMLOWER;
764         else if (strcasecmp(val, "xlateupper") == 0)
765             volume->v_casefold = AFPVOL_ULOWERMUPPER;
766     }
767
768     if (getoption_bool(obj->iniconfig, section, "read only", preset, 0))
769         volume->v_flags |= AFPVOL_RO;
770     if (getoption_bool(obj->iniconfig, section, "invisible dots", preset, 0))
771         volume->v_flags |= AFPVOL_INV_DOTS;
772     if (!getoption_bool(obj->iniconfig, section, "stat vol", preset, 1))
773         volume->v_flags |= AFPVOL_NOSTAT;
774     if (getoption_bool(obj->iniconfig, section, "unix priv", preset, 1))
775         volume->v_flags |= AFPVOL_UNIX_PRIV;
776     if (!getoption_bool(obj->iniconfig, section, "cnid dev", preset, 1))
777         volume->v_flags |= AFPVOL_NODEV;
778     if (getoption_bool(obj->iniconfig, section, "illegal seq", preset, 0))
779         volume->v_flags |= AFPVOL_EILSEQ;
780     if (getoption_bool(obj->iniconfig, section, "time machine", preset, 0))
781         volume->v_flags |= AFPVOL_TM;
782     if (getoption_bool(obj->iniconfig, section, "search db", preset, 0))
783         volume->v_flags |= AFPVOL_SEARCHDB;
784     if (!getoption_bool(obj->iniconfig, section, "network ids", preset, 1))
785         volume->v_flags |= AFPVOL_NONETIDS;
786 #ifdef HAVE_ACLS
787     if (getoption_bool(obj->iniconfig, section, "acls", preset, 1))
788         volume->v_flags |= AFPVOL_ACLS;
789 #endif
790     if (!getoption_bool(obj->iniconfig, section, "convert appledouble", preset, 1))
791         volume->v_flags |= AFPVOL_NOV2TOEACONV;
792
793     if (getoption_bool(obj->iniconfig, section, "preexec close", preset, 0))
794         volume->v_preexec_close = 1;
795     if (getoption_bool(obj->iniconfig, section, "root preexec close", preset, 0))
796         volume->v_root_preexec_close = 1;
797
798     /* Fixup for nested volume */
799     if (new_vol_nested && strcmp(volume->v_cnidscheme, "last")) {
800         LOG(log_note, logtype_afpd, "volume \"%s\" is changed into cnid last and read only. path is nested: \"%s\"",
801             name, path);
802         free(volume->v_cnidscheme);
803         volume->v_cnidscheme = strdup("last");
804     }
805
806     /*
807      * Handle read-only behaviour. semantics:
808      * 1) neither the rolist nor the rwlist exist -> rw
809      * 2) rolist exists -> ro if user is in it.
810      * 3) rwlist exists -> ro unless user is in it.
811      * 4) cnid scheme = last -> ro forcibly.
812      */
813     if (pwd) {
814         if (accessvol(obj, getoption(obj->iniconfig, section, "rolist", preset, NULL), pwd->pw_name) == 1
815             || accessvol(obj, getoption(obj->iniconfig, section, "rwlist", preset, NULL), pwd->pw_name) == 0)
816             volume->v_flags |= AFPVOL_RO;
817     }
818     if (0 == strcmp(volume->v_cnidscheme, "last"))
819         volume->v_flags |= AFPVOL_RO;
820
821     if ((volume->v_flags & AFPVOL_NODEV))
822         volume->v_ad_options |= ADVOL_NODEV;
823     if ((volume->v_flags & AFPVOL_UNIX_PRIV))
824         volume->v_ad_options |= ADVOL_UNIXPRIV;
825     if ((volume->v_flags & AFPVOL_INV_DOTS))
826         volume->v_ad_options |= ADVOL_INVDOTS;
827
828     /* Mac to Unix conversion flags*/
829     if ((volume->v_flags & AFPVOL_EILSEQ))
830         volume->v_mtou_flags |= CONV__EILSEQ;
831
832     if ((volume->v_casefold & AFPVOL_MTOUUPPER))
833         volume->v_mtou_flags |= CONV_TOUPPER;
834     else if ((volume->v_casefold & AFPVOL_MTOULOWER))
835         volume->v_mtou_flags |= CONV_TOLOWER;
836
837     /* Unix to Mac conversion flags*/
838     volume->v_utom_flags = CONV_IGNORE;
839     if ((volume->v_casefold & AFPVOL_UTOMUPPER))
840         volume->v_utom_flags |= CONV_TOUPPER;
841     else if ((volume->v_casefold & AFPVOL_UTOMLOWER))
842         volume->v_utom_flags |= CONV_TOLOWER;
843     if ((volume->v_flags & AFPVOL_EILSEQ))
844         volume->v_utom_flags |= CONV__EILSEQ;
845
846     /* suffix for mangling use (lastvid + 1)   */
847     /* because v_vid has not been decided yet. */
848     suffixlen = sprintf(suffix, "#%X", lastvid + 1 );
849
850     /* Unicode Volume Name */
851     /* Firstly convert name from unixcharset to UTF8-MAC */
852     flags = CONV_IGNORE | CONV_ALLOW_SLASH;
853     tmpvlen = convert_charset(obj->options.unixcharset, CH_UTF8_MAC, 0, name, vlen, tmpname, AFPVOL_U8MNAMELEN, &flags);
854     if (tmpvlen <= 0) {
855         strcpy(tmpname, "???");
856         tmpvlen = 3;
857     }
858
859     /* Do we have to mangle ? */
860     if ( (flags & CONV_REQMANGLE) || (tmpvlen > obj->options.volnamelen)) {
861         if (tmpvlen + suffixlen > obj->options.volnamelen) {
862             flags = CONV_FORCE | CONV_ALLOW_SLASH;
863             tmpvlen = convert_charset(obj->options.unixcharset, CH_UTF8_MAC, 0, name, vlen, tmpname, obj->options.volnamelen - suffixlen, &flags);
864             tmpname[tmpvlen >= 0 ? tmpvlen : 0] = 0;
865         }
866         strcat(tmpname, suffix);
867         tmpvlen = strlen(tmpname);
868     }
869
870     /* Secondly convert name from UTF8-MAC to UCS2 */
871     if ( 0 >= ( u8mvlen = convert_string(CH_UTF8_MAC, CH_UCS2, tmpname, tmpvlen, u8mtmpname, AFPVOL_U8MNAMELEN*2)) )
872         EC_FAIL;
873
874     LOG(log_maxdebug, logtype_afpd, "createvol: Volume '%s' -> UTF8-MAC Name: '%s'", name, tmpname);
875
876     /* Maccharset Volume Name */
877     /* Firsty convert name from unixcharset to maccharset */
878     flags = CONV_IGNORE | CONV_ALLOW_SLASH;
879     tmpvlen = convert_charset(obj->options.unixcharset, obj->options.maccharset, 0, name, vlen, tmpname, AFPVOL_U8MNAMELEN, &flags);
880     if (tmpvlen <= 0) {
881         strcpy(tmpname, "???");
882         tmpvlen = 3;
883     }
884
885     /* Do we have to mangle ? */
886     if ( (flags & CONV_REQMANGLE) || (tmpvlen > AFPVOL_MACNAMELEN)) {
887         if (tmpvlen + suffixlen > AFPVOL_MACNAMELEN) {
888             flags = CONV_FORCE | CONV_ALLOW_SLASH;
889             tmpvlen = convert_charset(obj->options.unixcharset,
890                                       obj->options.maccharset,
891                                       0,
892                                       name,
893                                       vlen,
894                                       tmpname,
895                                       AFPVOL_MACNAMELEN - suffixlen,
896                                       &flags);
897             tmpname[tmpvlen >= 0 ? tmpvlen : 0] = 0;
898         }
899         strcat(tmpname, suffix);
900         tmpvlen = strlen(tmpname);
901     }
902
903     /* Secondly convert name from maccharset to UCS2 */
904     if ( 0 >= ( macvlen = convert_string(obj->options.maccharset,
905                                          CH_UCS2,
906                                          tmpname,
907                                          tmpvlen,
908                                          mactmpname,
909                                          AFPVOL_U8MNAMELEN*2)) )
910         EC_FAIL;
911
912     LOG(log_maxdebug, logtype_afpd, "createvol: Volume '%s' ->  Longname: '%s'", name, tmpname);
913
914     EC_NULL( volume->v_localname = strdup(name) );
915     EC_NULL( volume->v_u8mname = strdup_w(u8mtmpname) );
916     EC_NULL( volume->v_macname = strdup_w(mactmpname) );
917     EC_NULL( volume->v_path = strdup(path) ); 
918         
919     volume->v_name = utf8_encoding(obj) ? volume->v_u8mname : volume->v_macname;
920
921 #ifdef __svr4__
922     volume->v_qfd = -1;
923 #endif /* __svr4__ */
924
925     /* os X start at 1 and use network order ie. 1 2 3 */
926     volume->v_vid = ++lastvid;
927     volume->v_vid = htons(volume->v_vid);
928
929 #ifdef HAVE_ACLS
930     if (!check_vol_acl_support(volume)) {
931         LOG(log_debug, logtype_afpd, "creatvol(\"%s\"): disabling ACL support", volume->v_path);
932         volume->v_flags &= ~AFPVOL_ACLS;
933     }
934 #endif
935
936     /* Check EA support on volume */
937     if (volume->v_vfs_ea == AFPVOL_EA_AUTO || volume->v_adouble == AD_VERSION_EA)
938         check_ea_support(volume);
939     initvol_vfs(volume);
940
941     /* get/store uuid from file in afpd master*/
942     if (!(pwd) && (volume->v_flags & AFPVOL_TM)) {
943         char *uuid = get_vol_uuid(obj, volume->v_localname);
944         if (!uuid) {
945             LOG(log_error, logtype_afpd, "Volume '%s': couldn't get UUID",
946                 volume->v_localname);
947         } else {
948             volume->v_uuid = uuid;
949             LOG(log_debug, logtype_afpd, "Volume '%s': UUID '%s'",
950                 volume->v_localname, volume->v_uuid);
951         }
952     }
953
954     /* no errors shall happen beyond this point because the cleanup would mess the volume chain up */
955     volume->v_next = Volumes;
956     Volumes = volume;
957     volume->v_obj = obj;
958
959 EC_CLEANUP:
960     LOG(log_debug, logtype_afpd, "createvol: END: %d", ret);
961     if (ret != 0) {
962         if (volume) {
963             volume_free(volume);
964             free(volume);
965         }
966         return NULL;
967     }
968     return volume;
969 }
970
971 /* ----------------------
972  */
973 static int volfile_changed(struct afp_options *p)
974 {
975     struct stat st;
976
977     if (!stat(p->configfile, &st) && st.st_mtime > p->volfile.mtime) {
978         p->volfile.mtime = st.st_mtime;
979         return 1;
980     }
981     return 0;
982 }
983
984 static int vol_section(const char *sec)
985 {
986     if (STRCMP(sec, ==, INISEC_GLOBAL))
987         return 0;
988     return 1;
989 }
990
991 #define MAXPRESETLEN 100
992 /*!
993  * Read volumes from iniconfig and add the volumes contained within to
994  * the global volume list. This gets called from the forked afpd childs.
995  * The master now reads this too for Zeroconf announcements.
996  */
997 static int readvolfile(AFPObj *obj, const struct passwd *pwent)
998 {
999     EC_INIT;
1000     static int regexerr = -1;
1001     static regex_t reg;
1002     char        *realvolpath;
1003     char        volname[AFPVOL_U8MNAMELEN + 1];
1004     char        path[MAXPATHLEN + 1], tmp[MAXPATHLEN + 1];
1005     const char  *preset, *default_preset, *p, *basedir;
1006     char        *q, *u;
1007     int         i;
1008     struct passwd   *pw;
1009     regmatch_t match[1];
1010
1011     LOG(log_debug, logtype_afpd, "readvolfile: BEGIN");
1012
1013     int secnum = iniparser_getnsec(obj->iniconfig);    
1014     LOG(log_debug, logtype_afpd, "readvolfile: sections: %d", secnum);
1015     const char *secname;
1016
1017     if ((default_preset = iniparser_getstring(obj->iniconfig, INISEC_GLOBAL, "vol preset", NULL))) {
1018         LOG(log_debug, logtype_afpd, "readvolfile: default_preset: %s", default_preset);
1019     }
1020
1021     for (i = 0; i < secnum; i++) { 
1022         secname = iniparser_getsecname(obj->iniconfig, i);
1023
1024         if (!vol_section(secname))
1025             continue;
1026         if (STRCMP(secname, ==, INISEC_HOMES)) {
1027             have_uservol = 1;
1028             if (!IS_AFP_SESSION(obj)
1029                 || strcmp(obj->username, obj->options.guest) == 0)
1030                 /* not an AFP session, but cnid daemon, dbd or ad util, or guest login */
1031                 continue;
1032             if (pwent->pw_dir == NULL || STRCMP("", ==, pwent->pw_dir))
1033                 /* no user home */
1034                 continue;
1035
1036             if ((realpath(pwent->pw_dir, tmp)) == NULL)
1037                 continue;
1038
1039             /* check if user home matches our "basedir regex" */
1040             if ((basedir = iniparser_getstring(obj->iniconfig, INISEC_HOMES, "basedir regex", NULL)) == NULL) {
1041                 LOG(log_error, logtype_afpd, "\"basedir regex =\" must be defined in [Homes] section");
1042                 continue;
1043             }
1044             LOG(log_debug, logtype_afpd, "readvolfile: basedir regex: '%s'", basedir);
1045
1046             if (regexerr != 0 && (regexerr = regcomp(&reg, basedir, REG_EXTENDED)) != 0) {
1047                 char errbuf[1024];
1048                 regerror(regexerr, &reg, errbuf, sizeof(errbuf));
1049                 LOG(log_debug, logtype_default, "readvolfile: bad basedir regex: %s", errbuf);
1050                 continue;
1051             }
1052
1053             if (regexec(&reg, tmp, 1, match, 0) == REG_NOMATCH) {
1054                 LOG(log_error, logtype_default, "readvolfile: user home \"%s\" doesn't match basedir regex \"%s\"",
1055                     tmp, basedir);
1056                 continue;
1057             }
1058
1059             if (p = iniparser_getstring(obj->iniconfig, INISEC_HOMES, "path", NULL)) {
1060                 strlcat(tmp, "/", MAXPATHLEN);
1061                 strlcat(tmp, p, MAXPATHLEN);
1062             }
1063         } else {
1064             /* Get path */
1065             if ((p = iniparser_getstring(obj->iniconfig, secname, "path", NULL)) == NULL)
1066                 continue;
1067             strlcpy(tmp, p, MAXPATHLEN);
1068         }
1069
1070         if (volxlate(obj, path, sizeof(path) - 1, tmp, pwent, NULL, NULL) == NULL)
1071             continue;
1072
1073         /* do variable substitution for volume name */
1074         if (STRCMP(secname, ==, INISEC_HOMES)) {
1075             p = iniparser_getstring(obj->iniconfig, INISEC_HOMES, "home name", "$u's home");
1076             if (strstr(p, "$u") == NULL) {
1077                 LOG(log_warning, logtype_afpd, "home name must contain $u.");
1078                 p = "$u's home";
1079             }
1080             if (strchr(p, ':') != NULL) {
1081                 LOG(log_warning, logtype_afpd, "home name must not contain \":\".");
1082                 p = "$u's home";
1083             }
1084             strlcpy(tmp, p, MAXPATHLEN);
1085         } else {
1086             strlcpy(tmp, secname, AFPVOL_U8MNAMELEN);
1087         }
1088         if (volxlate(obj, volname, sizeof(volname) - 1, tmp, pwent, path, NULL) == NULL)
1089             continue;
1090
1091         preset = iniparser_getstring(obj->iniconfig, secname, "vol preset", NULL);
1092
1093         if ((realvolpath = realpath_safe(path)) == NULL)
1094             continue;
1095
1096         creatvol(obj, pwent, secname, volname, realvolpath, preset ? preset : default_preset ? default_preset : NULL);
1097         free(realvolpath);
1098     }
1099
1100 EC_CLEANUP:
1101     EC_EXIT;
1102 }
1103
1104 static struct extmap    *Extmap = NULL, *Defextmap = NULL;
1105 static int              Extmap_cnt;
1106
1107 static int setextmap(char *ext, char *type, char *creator)
1108 {
1109     EC_INIT;
1110     struct extmap *em;
1111     int           cnt;
1112
1113     if (Extmap == NULL) {
1114         EC_NULL_LOG( Extmap = calloc(1, sizeof( struct extmap )) );
1115     }
1116
1117     ext++;
1118
1119     for (em = Extmap, cnt = 0; em->em_ext; em++, cnt++)
1120         if ((strdiacasecmp(em->em_ext, ext)) == 0)
1121             goto EC_CLEANUP;
1122
1123     EC_NULL_LOG( Extmap = realloc(Extmap, sizeof(struct extmap) * (cnt + 2)) );
1124     (Extmap + cnt + 1)->em_ext = NULL;
1125     em = Extmap + cnt;
1126
1127     EC_NULL( em->em_ext = strdup(ext) );
1128
1129     if ( *type == '\0' ) {
1130         memcpy(em->em_type, "\0\0\0\0", sizeof( em->em_type ));
1131     } else {
1132         memcpy(em->em_type, type, sizeof( em->em_type ));
1133     }
1134     if ( *creator == '\0' ) {
1135         memcpy(em->em_creator, "\0\0\0\0", sizeof( em->em_creator ));
1136     } else {
1137         memcpy(em->em_creator, creator, sizeof( em->em_creator ));
1138     }
1139
1140 EC_CLEANUP:
1141     EC_EXIT;
1142 }
1143
1144 /* -------------------------- */
1145 static int extmap_cmp(const void *map1, const void *map2)
1146 {
1147     const struct extmap *em1 = map1;
1148     const struct extmap *em2 = map2;
1149     return strdiacasecmp(em1->em_ext, em2->em_ext);
1150 }
1151
1152 static void sortextmap( void)
1153 {
1154     struct extmap   *em;
1155
1156     Extmap_cnt = 0;
1157     if ((em = Extmap) == NULL) {
1158         return;
1159     }
1160     while (em->em_ext) {
1161         em++;
1162         Extmap_cnt++;
1163     }
1164     if (Extmap_cnt) {
1165         qsort(Extmap, Extmap_cnt, sizeof(struct extmap), extmap_cmp);
1166         if (*Extmap->em_ext == 0) {
1167             /* the first line is really "." the default entry,
1168              * we remove the leading '.' in setextmap
1169              */
1170             Defextmap = Extmap;
1171         }
1172     }
1173 }
1174
1175 static void free_extmap( void)
1176 {
1177     struct extmap   *em;
1178
1179     if (Extmap) {
1180         for ( em = Extmap; em->em_ext; em++) {
1181             free (em->em_ext);
1182         }
1183         free(Extmap);
1184         Extmap = NULL;
1185         Defextmap = Extmap;
1186         Extmap_cnt = 0;
1187     }
1188 }
1189
1190 static int ext_cmp_key(const void *key, const void *obj)
1191 {
1192     const char          *p = key;
1193     const struct extmap *em = obj;
1194     return strdiacasecmp(p, em->em_ext);
1195 }
1196
1197 struct extmap *getextmap(const char *path)
1198 {
1199     char      *p;
1200     struct extmap *em;
1201
1202     if (!Extmap_cnt || NULL == ( p = strrchr( path, '.' )) ) {
1203         return( Defextmap );
1204     }
1205     p++;
1206     if (!*p) {
1207         return( Defextmap );
1208     }
1209     em = bsearch(p, Extmap, Extmap_cnt, sizeof(struct extmap), ext_cmp_key);
1210     if (em) {
1211         return( em );
1212     } else {
1213         return( Defextmap );
1214     }
1215 }
1216
1217 struct extmap *getdefextmap(void)
1218 {
1219     return( Defextmap );
1220 }
1221
1222 static int readextmap(const char *file)
1223 {
1224     EC_INIT;
1225     FILE        *fp;
1226     char        ext[256];
1227     char        buf[256];
1228     char        type[5], creator[5];
1229
1230     LOG(log_debug, logtype_afpd, "readextmap: loading \"%s\"", file);
1231
1232     EC_NULL_LOGSTR( fp = fopen(file, "r"), "Couldn't open extension maping file %s", file);
1233
1234     while (fgets(buf, sizeof(buf), fp) != NULL) {
1235         initline(strlen(buf), buf);
1236         parseline(sizeof(ext) - 1, ext);
1237
1238         switch (ext[0]) {
1239         case '.' :
1240             parseline(sizeof(type) - 1, type);
1241             parseline(sizeof(creator) - 1, creator);
1242             setextmap(ext, type, creator);
1243             LOG(log_debug, logtype_afpd, "readextmap: mapping: '%s' -> %s/%s", ext, type, creator);
1244             break;
1245         }
1246     }
1247
1248     sortextmap();
1249     EC_ZERO( fclose(fp) );
1250
1251     LOG(log_debug, logtype_afpd, "readextmap: done", file);
1252
1253 EC_CLEANUP:
1254     EC_EXIT;
1255 }
1256
1257 /**************************************************************
1258  * API functions
1259  **************************************************************/
1260
1261 /*!
1262  * Remove a volume from the linked list of volumes
1263  */
1264 void volume_unlink(struct vol *volume)
1265 {
1266     struct vol *vol, *ovol, *nvol;
1267
1268     if (volume == Volumes) {
1269         Volumes = NULL;
1270         return;
1271     }
1272     for ( vol = Volumes->v_next, ovol = Volumes; vol; vol = nvol) {
1273         nvol = vol->v_next;
1274
1275         if (vol == volume) {
1276             ovol->v_next = nvol;
1277             break;
1278         }
1279         else {
1280             ovol = vol;
1281         }
1282     }
1283 }
1284
1285 /*!
1286  * Free all resources allocated in a struct vol, only struct dir *v_root can't be freed
1287  */
1288 void volume_free(struct vol *vol)
1289 {
1290     LOG(log_debug, logtype_afpd, "volume_free('%s'): BEGIN", vol->v_localname);
1291
1292     free(vol->v_localname);
1293     free(vol->v_u8mname);
1294     free(vol->v_macname);
1295     free(vol->v_path);
1296     free(vol->v_password);
1297     free(vol->v_veto);
1298     free(vol->v_volcodepage);
1299     free(vol->v_maccodepage);
1300     free(vol->v_cnidscheme);
1301     free(vol->v_dbpath);
1302     free(vol->v_gvs);
1303     free(vol->v_uuid);
1304     free(vol->v_cnidserver);
1305     free(vol->v_cnidport);
1306     free(vol->v_root_preexec);
1307     free(vol->v_postexec);
1308
1309     LOG(log_debug, logtype_afpd, "volume_free: END");
1310 }
1311
1312 /*!
1313  * Load charsets for a volume
1314  */
1315 int load_charset(struct vol *vol)
1316 {
1317     if ((vol->v_maccharset = add_charset(vol->v_maccodepage)) == (charset_t)-1) {
1318         LOG(log_error, logtype_default, "Setting mac charset '%s' failed", vol->v_maccodepage);
1319         return -1;
1320     }
1321
1322     if ((vol->v_volcharset = add_charset(vol->v_volcodepage)) == (charset_t)-1) {
1323         LOG(log_error, logtype_default, "Setting vol charset '%s' failed", vol->v_volcodepage);
1324         return -1;
1325     }
1326
1327     return 0;
1328 }
1329
1330 /*!
1331  * Initialize volumes and load ini configfile
1332  *
1333  * Depending on the value of obj->uid either access checks are done (!=0) or skipped (=0)
1334  *
1335  * @param obj       (r) handle
1336  * @param delvol_fn (r) callback called for deleted volumes
1337  */
1338 int load_volumes(AFPObj *obj, void (*delvol_fn)(const AFPObj *obj, struct vol *))
1339 {
1340     EC_INIT;
1341     int fd = -1;
1342     struct passwd   *pwent = NULL;
1343     struct stat         st;
1344     int retries = 0;
1345     struct vol *vol;
1346
1347     LOG(log_debug, logtype_afpd, "load_volumes: BEGIN");
1348
1349     if (Volumes) {
1350         if (!volfile_changed(&obj->options))
1351             goto EC_CLEANUP;
1352         have_uservol = 0;
1353         for (vol = Volumes; vol; vol = vol->v_next) {
1354             vol->v_deleted = 1;
1355         }
1356     } else {
1357         LOG(log_debug, logtype_afpd, "load_volumes: no volumes yet");
1358         EC_ZERO_LOG( lstat(obj->options.configfile, &st) );
1359         obj->options.volfile.mtime = st.st_mtime;
1360     }
1361
1362     /* try putting a read lock on the volume file twice, sleep 1 second if first attempt fails */
1363
1364     fd = open(obj->options.configfile, O_RDONLY);
1365
1366     while (retries < 2) {
1367         if ((read_lock(fd, 0, SEEK_SET, 0)) != 0) {
1368             retries++;
1369             if (!retries) {
1370                 LOG(log_error, logtype_afpd, "readvolfile: can't lock configfile \"%s\"",
1371                     obj->options.configfile);
1372                 EC_FAIL;
1373             }
1374             sleep(1);
1375             continue;
1376         }
1377         break;
1378     }
1379
1380     if (obj->uid)
1381         pwent = getpwuid(obj->uid);
1382
1383     if (obj->iniconfig)
1384         iniparser_freedict(obj->iniconfig);
1385     LOG(log_debug, logtype_afpd, "load_volumes: loading: %s", obj->options.configfile);
1386     obj->iniconfig = iniparser_load(obj->options.configfile);
1387
1388     EC_ZERO_LOG( readvolfile(obj, pwent) );
1389
1390     for ( vol = Volumes; vol; vol = vol->v_next ) {
1391         if (vol->v_deleted) {
1392             LOG(log_debug, logtype_afpd, "load_volumes: deleted: %s", vol->v_localname);
1393             if (delvol_fn)
1394                 delvol_fn(obj, vol);
1395             vol = Volumes;
1396         }
1397     }
1398
1399 EC_CLEANUP:
1400     if (fd != -1)
1401         (void)close(fd);
1402
1403     LOG(log_debug, logtype_afpd, "load_volumes: END");
1404     EC_EXIT;
1405 }
1406
1407 void unload_volumes(AFPObj *obj)
1408 {
1409     struct vol *vol;
1410
1411     LOG(log_debug, logtype_afpd, "unload_volumes: BEGIN");
1412
1413     for (vol = Volumes; vol; vol = vol->v_next)
1414         volume_free(vol);
1415     Volumes = NULL;
1416     obj->options.volfile.mtime = 0;
1417     
1418     LOG(log_debug, logtype_afpd, "unload_volumes: END");
1419 }
1420
1421 struct vol *getvolumes(void)
1422 {
1423     return Volumes;
1424 }
1425
1426 struct vol *getvolbyvid(const uint16_t vid )
1427 {
1428     struct vol  *vol;
1429
1430     for ( vol = Volumes; vol; vol = vol->v_next ) {
1431         if ( vid == vol->v_vid ) {
1432             break;
1433         }
1434     }
1435     if ( vol == NULL || ( vol->v_flags & AFPVOL_OPEN ) == 0 ) {
1436         return( NULL );
1437     }
1438
1439     return( vol );
1440 }
1441
1442 /*!
1443  * Search volume by path, creating user home vols as necessary
1444  *
1445  * Path may be absolute or relative. Ordinary volume structs are created when
1446  * the ini config is initially parsed (load_volumes()), but user volumes are
1447  * as load_volumes() only can create the user volume of the logged in user
1448  * in an AFP session in afpd, but not when called from eg cnid_metad or dbd.
1449  * Both cnid_metad and dbd thus need a way to lookup and create struct vols
1450  * for user home by path. This is what this func does as well.
1451  *
1452  * (1) Search "normal" volume list 
1453  * (2) Check if theres a [Homes] section, load_volumes() remembers this for us
1454  * (3) If there is, match "path" with "basedir regex" to get the user home parent dir
1455  * (4) Built user home path by appending the basedir matched in (3) and appending the username
1456  * (5) The next path element then is the username
1457  * (6) Append [Homes]->path subdirectory if defined
1458  * (7) Create volume
1459  *
1460  * @param obj  (rw) handle
1461  * @param path (r)  path, may be relative or absolute
1462  */
1463 struct vol *getvolbypath(AFPObj *obj, const char *path)
1464 {
1465     EC_INIT;
1466     static int regexerr = -1;
1467     static regex_t reg;
1468     struct vol *vol;
1469     struct vol *tmp;
1470     const struct passwd *pw;
1471     char        volname[AFPVOL_U8MNAMELEN + 1];
1472     char        abspath[MAXPATHLEN + 1];
1473     char        volpath[MAXPATHLEN + 1], *realvolpath = NULL;
1474     char        tmpbuf[MAXPATHLEN + 1];
1475     const char *secname, *basedir, *p = NULL, *subpath = NULL, *subpathconfig;
1476     char *user = NULL, *prw;
1477     regmatch_t match[1];
1478
1479     LOG(log_debug, logtype_afpd, "getvolbypath(\"%s\")", path);
1480
1481     if (path[0] != '/') {
1482         /* relative path, build absolute path */
1483         EC_NULL_LOG( getcwd(abspath, MAXPATHLEN) );
1484         strlcat(abspath, "/", MAXPATHLEN);
1485         strlcat(abspath, path, MAXPATHLEN);
1486         path = abspath;
1487     }
1488
1489
1490     for (tmp = Volumes; tmp; tmp = tmp->v_next) { /* (1) */
1491         if (strncmp(path, tmp->v_path, strlen(tmp->v_path)) == 0) {
1492             vol = tmp;
1493             goto EC_CLEANUP;
1494         }
1495     }
1496
1497     if (!have_uservol) /* (2) */
1498         EC_FAIL_LOG("getvolbypath(\"%s\"): no volume for path", path);
1499
1500     int secnum = iniparser_getnsec(obj->iniconfig);
1501
1502     for (int i = 0; i < secnum; i++) { 
1503         secname = iniparser_getsecname(obj->iniconfig, i);
1504         if (STRCMP(secname, ==, INISEC_HOMES))
1505             break;
1506     }
1507
1508     if (STRCMP(secname, !=, INISEC_HOMES))
1509         EC_FAIL_LOG("getvolbypath(\"%s\"): no volume for path", path);
1510
1511     /* (3) */
1512     EC_NULL_LOG( basedir = iniparser_getstring(obj->iniconfig, INISEC_HOMES, "basedir regex", NULL) );
1513     LOG(log_debug, logtype_afpd, "getvolbypath: user home section: '%s', basedir: '%s'", secname, basedir);
1514
1515     if (regexerr != 0 && (regexerr = regcomp(&reg, basedir, REG_EXTENDED)) != 0) {
1516         char errbuf[1024];
1517         regerror(regexerr, &reg, errbuf, sizeof(errbuf));
1518         printf("error: %s\n", errbuf);
1519         EC_FAIL_LOG("getvolbypath(\"%s\"): bad basedir regex: %s", errbuf);
1520     }
1521
1522     if (regexec(&reg, path, 1, match, 0) == REG_NOMATCH)
1523         EC_FAIL_LOG("getvolbypath(\"%s\"): no volume for path", path);
1524
1525     if (match[0].rm_eo - match[0].rm_so > MAXPATHLEN)
1526         EC_FAIL_LOG("getvolbypath(\"%s\"): path too long", path);
1527
1528     /* (4) */
1529     strncpy(tmpbuf, path + match[0].rm_so, match[0].rm_eo - match[0].rm_so);
1530     tmpbuf[match[0].rm_eo - match[0].rm_so] = 0;
1531
1532     LOG(log_debug, logtype_afpd, "getvolbypath: basedir regex: '%s', basedir match: \"%s\"",
1533         basedir, tmpbuf);
1534
1535     strlcat(tmpbuf, "/", MAXPATHLEN);
1536
1537     /* (5) */
1538     p = path + strlen(basedir);
1539     while (*p == '/')
1540         p++;
1541     EC_NULL_LOG( user = strdup(p) );
1542
1543     if (prw = strchr(user, '/'))
1544         *prw++ = 0;
1545     if (prw != 0)
1546         subpath = prw;
1547
1548     strlcat(tmpbuf, user, MAXPATHLEN);
1549     strlcpy(obj->username, user, MAXUSERLEN);
1550     strlcat(tmpbuf, "/", MAXPATHLEN);
1551
1552     /* (6) */
1553     if (subpathconfig = iniparser_getstring(obj->iniconfig, INISEC_HOMES, "path", NULL)) {
1554         /*
1555         if (!subpath || strncmp(subpathconfig, subpath, strlen(subpathconfig)) != 0) {
1556             EC_FAIL;
1557         }
1558         */
1559         strlcat(tmpbuf, subpathconfig, MAXPATHLEN);
1560         strlcat(tmpbuf, "/", MAXPATHLEN);
1561     }
1562
1563
1564     /* (7) */
1565     if (volxlate(obj, volpath, sizeof(volpath) - 1, tmpbuf, pw, NULL, NULL) == NULL)
1566         EC_FAIL;
1567
1568     EC_NULL( realvolpath = realpath_safe(volpath) );
1569     EC_NULL( pw = getpwnam(user) );
1570
1571     LOG(log_debug, logtype_afpd, "getvolbypath(\"%s\"): user: %s, homedir: %s => realvolpath: \"%s\"",
1572         path, user, pw->pw_dir, realvolpath);
1573
1574     /* do variable substitution for volume name */
1575     p = iniparser_getstring(obj->iniconfig, INISEC_HOMES, "home name", "$u's home");
1576     if (strstr(p, "$u") == NULL)
1577         p = "$u's home";
1578     strlcpy(tmpbuf, p, AFPVOL_U8MNAMELEN);
1579     EC_NULL_LOG( volxlate(obj, volname, sizeof(volname) - 1, tmpbuf, pw, realvolpath, NULL) );
1580
1581     const char  *preset, *default_preset;
1582     default_preset = iniparser_getstring(obj->iniconfig, INISEC_GLOBAL, "vol preset", NULL);
1583     preset = iniparser_getstring(obj->iniconfig, INISEC_HOMES, "vol preset", NULL);
1584
1585     vol = creatvol(obj, pw, INISEC_HOMES, volname, realvolpath, preset ? preset : default_preset ? default_preset : NULL);
1586
1587 EC_CLEANUP:
1588     if (user)
1589         free(user);
1590     if (realvolpath)
1591         free(realvolpath);
1592     if (ret != 0)
1593         vol = NULL;
1594     return vol;
1595 }
1596
1597 struct vol *getvolbyname(const char *name)
1598 {
1599     struct vol *vol = NULL;
1600     struct vol *tmp;
1601
1602     for (tmp = Volumes; tmp; tmp = tmp->v_next) {
1603         if (strncmp(name, tmp->v_configname, strlen(tmp->v_configname)) == 0) {
1604             vol = tmp;
1605             break;
1606         }
1607     }
1608     return vol;
1609 }
1610
1611 #define MAXVAL 1024
1612 /*!
1613  * Initialize an AFPObj and options from ini config file
1614  */
1615 int afp_config_parse(AFPObj *AFPObj, char *processname)
1616 {
1617     EC_INIT;
1618     dictionary *config;
1619     struct afp_options *options = &AFPObj->options;
1620     int i, c;
1621     const char *p, *tmp;
1622     char *q, *r;
1623     char val[MAXVAL];
1624
1625     if (processname != NULL)
1626         set_processname(processname);
1627
1628     AFPObj->afp_version = 11;
1629     options->configfile  = AFPObj->cmdlineconfigfile ? strdup(AFPObj->cmdlineconfigfile) : strdup(_PATH_CONFDIR "afp.conf");
1630     options->sigconffile = strdup(_PATH_STATEDIR "afp_signature.conf");
1631     options->uuidconf    = strdup(_PATH_STATEDIR "afp_voluuid.conf");
1632     options->flags       = OPTION_UUID | AFPObj->cmdlineflags;
1633     
1634     if ((config = iniparser_load(AFPObj->options.configfile)) == NULL)
1635         return -1;
1636     AFPObj->iniconfig = config;
1637
1638     /* [Global] */
1639     options->logconfig = iniparser_getstrdup(config, INISEC_GLOBAL, "log level", "default:note");
1640     options->logfile   = iniparser_getstrdup(config, INISEC_GLOBAL, "log file",  NULL);
1641
1642     setuplog(options->logconfig, options->logfile);
1643
1644     /* "server options" boolean options */
1645     if (!iniparser_getboolean(config, INISEC_GLOBAL, "zeroconf", 1))
1646         options->flags |= OPTION_NOZEROCONF;
1647     if (iniparser_getboolean(config, INISEC_GLOBAL, "advertise ssh", 0))
1648         options->flags |= OPTION_ANNOUNCESSH;
1649     if (iniparser_getboolean(config, INISEC_GLOBAL, "map acls", 1))
1650         options->flags |= OPTION_ACL2MACCESS;
1651     if (iniparser_getboolean(config, INISEC_GLOBAL, "keep sessions", 0))
1652         options->flags |= OPTION_KEEPSESSIONS;
1653     if (iniparser_getboolean(config, INISEC_GLOBAL, "close vol", 0))
1654         options->flags |= OPTION_CLOSEVOL;
1655     if (!iniparser_getboolean(config, INISEC_GLOBAL, "client polling", 0))
1656         options->flags |= OPTION_SERVERNOTIF;
1657     if (!iniparser_getboolean(config, INISEC_GLOBAL, "use sendfile", 1))
1658         options->flags |= OPTION_NOSENDFILE;
1659     if (iniparser_getboolean(config, INISEC_GLOBAL, "solaris share reservations", 1))
1660         options->flags |= OPTION_SHARE_RESERV;
1661     if (iniparser_getboolean(config, INISEC_GLOBAL, "afp read locks", 0))
1662         options->flags |= OPTION_AFP_READ_LOCK;
1663     if (!iniparser_getboolean(config, INISEC_GLOBAL, "save password", 1))
1664         options->passwdbits |= PASSWD_NOSAVE;
1665     if (iniparser_getboolean(config, INISEC_GLOBAL, "set password", 0))
1666         options->passwdbits |= PASSWD_SET;
1667
1668     /* figure out options w values */
1669     options->loginmesg      = iniparser_getstrdup(config, INISEC_GLOBAL, "login message",  NULL);
1670     options->guest          = iniparser_getstrdup(config, INISEC_GLOBAL, "guest account",  "nobody");
1671     options->extmapfile     = iniparser_getstrdup(config, INISEC_GLOBAL, "extmap file",    _PATH_CONFDIR "extmap.conf");
1672     options->passwdfile     = iniparser_getstrdup(config, INISEC_GLOBAL, "passwd file",    _PATH_AFPDPWFILE);
1673     options->uampath        = iniparser_getstrdup(config, INISEC_GLOBAL, "uam path",       _PATH_AFPDUAMPATH);
1674     options->uamlist        = iniparser_getstrdup(config, INISEC_GLOBAL, "uam list",       "uams_dhx.so uams_dhx2.so");
1675     options->port           = iniparser_getstrdup(config, INISEC_GLOBAL, "afp port",       "548");
1676     options->signatureopt   = iniparser_getstrdup(config, INISEC_GLOBAL, "signature",      "");
1677     options->k5service      = iniparser_getstrdup(config, INISEC_GLOBAL, "k5 service",     NULL);
1678     options->k5realm        = iniparser_getstrdup(config, INISEC_GLOBAL, "k5 realm",       NULL);
1679     options->listen         = iniparser_getstrdup(config, INISEC_GLOBAL, "afp listen",     NULL);
1680     options->ntdomain       = iniparser_getstrdup(config, INISEC_GLOBAL, "nt domain",      NULL);
1681     options->ntseparator    = iniparser_getstrdup(config, INISEC_GLOBAL, "nt separator",   NULL);
1682     options->mimicmodel     = iniparser_getstrdup(config, INISEC_GLOBAL, "mimic model",    NULL);
1683     options->adminauthuser  = iniparser_getstrdup(config, INISEC_GLOBAL, "admin auth user",NULL);
1684     options->connections    = iniparser_getint   (config, INISEC_GLOBAL, "max connections",200);
1685     options->passwdminlen   = iniparser_getint   (config, INISEC_GLOBAL, "passwd minlen",  0);
1686     options->tickleval      = iniparser_getint   (config, INISEC_GLOBAL, "tickleval",      30);
1687     options->timeout        = iniparser_getint   (config, INISEC_GLOBAL, "timeout",        4);
1688     options->dsireadbuf     = iniparser_getint   (config, INISEC_GLOBAL, "dsireadbuf",     12);
1689     options->server_quantum = iniparser_getint   (config, INISEC_GLOBAL, "server quantum", DSI_SERVQUANT_DEF);
1690     options->volnamelen     = iniparser_getint   (config, INISEC_GLOBAL, "volnamelen",     80);
1691     options->dircachesize   = iniparser_getint   (config, INISEC_GLOBAL, "dircachesize",   DEFAULT_MAX_DIRCACHE_SIZE);
1692     options->tcp_sndbuf     = iniparser_getint   (config, INISEC_GLOBAL, "tcpsndbuf",      0);
1693     options->tcp_rcvbuf     = iniparser_getint   (config, INISEC_GLOBAL, "tcprcvbuf",      0);
1694     options->fce_fmodwait   = iniparser_getint   (config, INISEC_GLOBAL, "fce holdfmod",   60);
1695     options->sleep          = iniparser_getint   (config, INISEC_GLOBAL, "sleep time",     10);
1696     options->disconnected   = iniparser_getint   (config, INISEC_GLOBAL, "disconnect time",24);
1697
1698     if ((p = iniparser_getstring(config, INISEC_GLOBAL, "hostname", NULL))) {
1699         EC_NULL_LOG( options->hostname = strdup(p) );
1700     } else {
1701         if (gethostname(val, sizeof(val)) < 0 ) {
1702             perror( "gethostname" );
1703             EC_FAIL;
1704         }
1705         if ((q = strchr(val, '.')))
1706             *q = '\0';
1707         options->hostname = strdup(val);
1708     }
1709
1710     if ((p = iniparser_getstring(config, INISEC_GLOBAL, "k5 keytab", NULL))) {
1711         EC_NULL_LOG( options->k5keytab = malloc(strlen(p) + 14) );
1712         snprintf(options->k5keytab, strlen(p) + 14, "KRB5_KTNAME=%s", p);
1713         putenv(options->k5keytab);
1714     }
1715
1716 #ifdef ADMIN_GRP
1717     if ((p = iniparser_getstring(config, INISEC_GLOBAL, "admin group",  NULL))) {
1718          struct group *gr = getgrnam(p);
1719          if (gr != NULL)
1720              options->admingid = gr->gr_gid;
1721     }
1722 #endif /* ADMIN_GRP */
1723
1724     q = iniparser_getstrdup(config, INISEC_GLOBAL, "cnid server", "localhost:4700");
1725     r = strrchr(q, ':');
1726     if (r)
1727         *r = 0;
1728     options->Cnid_srv = strdup(q);
1729     if (r)
1730         options->Cnid_port = strdup(r + 1);
1731     else
1732         options->Cnid_port = strdup("4700");
1733     LOG(log_debug, logtype_afpd, "CNID Server: %s:%s", options->Cnid_srv, options->Cnid_port);
1734     if (q)
1735         free(q);
1736
1737     if ((q = iniparser_getstrdup(config, INISEC_GLOBAL, "fqdn", NULL))) {
1738         /* do a little checking for the domain name. */
1739         r = strchr(q, ':');
1740         if (r)
1741             *r = '\0';
1742         if (gethostbyname(q)) {
1743             if (r)
1744                 *r = ':';
1745             EC_NULL_LOG( options->fqdn = strdup(q) );
1746         } else {
1747             LOG(log_error, logtype_afpd, "error parsing -fqdn, gethostbyname failed for: %s", c);
1748         }
1749         free(q);
1750     }
1751
1752     /* Charset Options */
1753
1754     /* unix charset is in [G] only */
1755     if (!(p = iniparser_getstring(config, INISEC_GLOBAL, "unix charset", NULL))) {
1756         options->unixcodepage = strdup("UTF8");
1757         set_charset_name(CH_UNIX, "UTF8");
1758     } else {
1759         if (strcasecmp(p, "LOCALE") == 0) {
1760 #if defined(CODESET)
1761             setlocale(LC_ALL, "");
1762             p = nl_langinfo(CODESET);
1763             LOG(log_debug, logtype_afpd, "Locale charset is '%s'", p);
1764 #else /* system doesn't have LOCALE support */
1765             LOG(log_warning, logtype_afpd, "system doesn't have LOCALE support");
1766             p = strdup("UTF8");
1767 #endif
1768         }
1769         if (strcasecmp(p, "UTF-8") == 0) {
1770             p = strdup("UTF8");
1771         }
1772         options->unixcodepage = strdup(p);
1773         set_charset_name(CH_UNIX, p);
1774     }
1775     options->unixcharset = CH_UNIX;
1776     LOG(log_debug, logtype_afpd, "Global unix charset is %s", options->unixcodepage);
1777
1778     /* vol charset is in [G] and [V] */
1779     if (!(p = iniparser_getstring(config, INISEC_GLOBAL, "vol charset", NULL))) {
1780         options->volcodepage = strdup(options->unixcodepage);
1781     } else {
1782         if (strcasecmp(p, "UTF-8") == 0) {
1783             p = strdup("UTF8");
1784         }
1785         options->volcodepage = strdup(p);
1786     }
1787     LOG(log_debug, logtype_afpd, "Global vol charset is %s", options->volcodepage);
1788     
1789     /* mac charset is in [G] and [V] */
1790     if (!(p = iniparser_getstring(config, INISEC_GLOBAL, "mac charset", NULL))) {
1791         options->maccodepage = strdup("MAC_ROMAN");
1792         set_charset_name(CH_MAC, "MAC_ROMAN");
1793     } else {
1794         if (strncasecmp(p, "MAC", 3) != 0) {
1795             LOG(log_warning, logtype_afpd, "Is '%s' really mac charset? ", p);
1796         }
1797         options->maccodepage = strdup(p);
1798         set_charset_name(CH_MAC, p);
1799     }
1800     options->maccharset = CH_MAC;
1801     LOG(log_debug, logtype_afpd, "Global mac charset is %s", options->maccodepage);
1802
1803     if (readextmap(options->extmapfile) != 0) {
1804         LOG(log_error, logtype_afpd, "Couldn't load extension -> type/creator mappings file \"%s\"",
1805             options->extmapfile);
1806     }
1807
1808     /* Check for sane values */
1809     if (options->tickleval <= 0)
1810         options->tickleval = 30;
1811         options->disconnected *= 3600 / options->tickleval;
1812         options->sleep *= 3600 / options->tickleval;
1813     if (options->timeout <= 0)
1814         options->timeout = 4;
1815     if (options->sleep <= 4)
1816         options->disconnected = options->sleep = 4;
1817     if (options->dsireadbuf < 6)
1818         options->dsireadbuf = 6;
1819     if (options->volnamelen < 8)
1820         options->volnamelen = 8; /* max mangled volname "???#FFFF" */
1821     if (options->volnamelen > 255)
1822         options->volnamelen = 255; /* AFP3 spec */
1823
1824 EC_CLEANUP:
1825     EC_EXIT;
1826 }