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