]> arthur.barton.de Git - netatalk.git/blob - libatalk/util/netatalk_conf.c
new function realpath_safe()
[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     int         i, suffixlen, vlen, tmpvlen, u8mvlen, macvlen;
602     char        *tmpname;
603     ucs2_t      u8mtmpname[(AFPVOL_U8MNAMELEN+1)*2], mactmpname[(AFPVOL_MACNAMELEN+1)*2];
604     char        suffix[6]; /* max is #FFFF */
605     uint16_t    flags;
606     const char  *val;
607     char        *p, *q;
608
609     LOG(log_debug, logtype_afpd, "createvol(volume: '%s', path: \"%s\", preset: '%s'): BEGIN",
610         name, path, preset ? preset : "-");
611
612     if ( name == NULL || *name == '\0' ) {
613         if ((name = strrchr( path, '/' )) == NULL) {
614             EC_FAIL;
615         }
616
617         /* if you wish to share /, you need to specify a name. */
618         if (*++name == '\0')
619             EC_FAIL;
620     }
621
622     /* Once volumes are loaded, we never change options again, we just delete em when they're removed from afp.conf */
623     for (struct vol *vol = Volumes; vol; vol = vol->v_next) {
624         if (STRCMP(path, ==, vol->v_path)) {
625             LOG(log_debug, logtype_afpd, "createvol('%s'): already loaded", name);
626             vol->v_deleted = 0;
627             volume = vol;
628             goto EC_CLEANUP;
629         }
630     }
631
632     /*
633      * Check allow/deny lists:
634      * allow -> either no list (-1), or in list (1)
635      * deny -> either no list (-1), or not in list (0)
636      */
637     if (pwd) {
638         if (accessvol(obj, getoption(obj->iniconfig, section, "invalid users", preset, NULL), pwd->pw_name) == 1)
639             goto EC_CLEANUP;
640         if (accessvol(obj, getoption(obj->iniconfig, section, "valid users", preset, NULL), pwd->pw_name) == 0)
641             goto EC_CLEANUP;
642         if (hostaccessvol(obj, section, getoption(obj->iniconfig, section, "hosts deny", preset, NULL)) == 1)
643             goto EC_CLEANUP;
644         if (hostaccessvol(obj, section, getoption(obj->iniconfig, section, "hosts allow", preset, NULL)) == 0)
645             goto EC_CLEANUP;
646     }
647
648     EC_NULL( volume = calloc(1, sizeof(struct vol)) );
649
650     EC_NULL( volume->v_configname = strdup(section));
651
652     volume->v_vfs_ea = AFPVOL_EA_AUTO;
653     volume->v_umask = obj->options.umask;
654
655     if (val = getoption(obj->iniconfig, section, "password", preset, NULL))
656         EC_NULL( volume->v_password = strdup(val) );
657
658     if (val = getoption(obj->iniconfig, section, "veto files", preset, NULL))
659         EC_NULL( volume->v_veto = strdup(val) );
660
661     /* vol charset is in [G] and [V] */
662     if (val = getoption(obj->iniconfig, section, "vol charset", preset, NULL)) {
663         if (strcasecmp(val, "UTF-8") == 0) {
664             val = strdup("UTF8");
665         }
666         EC_NULL( volume->v_volcodepage = strdup(val) );
667     }
668     else
669         EC_NULL( volume->v_volcodepage = strdup(obj->options.volcodepage) );
670
671     /* mac charset is in [G] and [V] */
672     if (val = getoption(obj->iniconfig, section, "mac charset", preset, NULL)) {
673         if (strncasecmp(val, "MAC", 3) != 0) {
674             LOG(log_warning, logtype_afpd, "Is '%s' really mac charset? ", val);
675         }
676         EC_NULL( volume->v_maccodepage = strdup(val) );
677     }
678     else
679     EC_NULL( volume->v_maccodepage = strdup(obj->options.maccodepage) );
680
681     vlen = strlen(name);
682     tmpname = strdup(name);
683     for(i = 0; i < vlen; i++)
684         if(tmpname[i] == '/') tmpname[i] = ':';
685
686     bstring dbpath;
687     EC_NULL_LOG( val = iniparser_getstring(obj->iniconfig, INISEC_GLOBAL, "vol dbpath", _PATH_STATEDIR "CNID/") );
688     EC_NULL_LOG( dbpath = bformat("%s/%s/", val, tmpname) );
689     EC_NULL_LOG( volume->v_dbpath = strdup(bdata(dbpath)) );
690     bdestroy(dbpath);
691
692     if (val = getoption(obj->iniconfig, section, "cnid scheme", preset, NULL))
693         EC_NULL( volume->v_cnidscheme = strdup(val) );
694     else
695         volume->v_cnidscheme = strdup(DEFAULT_CNID_SCHEME);
696
697     if (val = getoption(obj->iniconfig, section, "umask", preset, NULL))
698         volume->v_umask = (int)strtol(val, NULL, 8);
699
700     if (val = getoption(obj->iniconfig, section, "directory perm", preset, NULL))
701         volume->v_dperm = (int)strtol(val, NULL, 8);
702
703     if (val = getoption(obj->iniconfig, section, "file perm", preset, NULL))
704         volume->v_fperm = (int)strtol(val, NULL, 8);
705
706     if (val = getoption(obj->iniconfig, section, "vol size limit", preset, NULL))
707         volume->v_limitsize = (uint32_t)strtoul(val, NULL, 10);
708
709     if (val = getoption(obj->iniconfig, section, "preexec", preset, NULL))
710         EC_NULL( volume->v_preexec = volxlate(obj, NULL, MAXPATHLEN, val, pwd, path, name) );
711
712     if (val = getoption(obj->iniconfig, section, "postexec", preset, NULL))
713         EC_NULL( volume->v_postexec = volxlate(obj, NULL, MAXPATHLEN, val, pwd, path, name) );
714
715     if (val = getoption(obj->iniconfig, section, "root preexec", preset, NULL))
716         EC_NULL( volume->v_root_preexec = volxlate(obj, NULL, MAXPATHLEN, val, pwd, path, name) );
717
718     if (val = getoption(obj->iniconfig, section, "root postexec", preset, NULL))
719         EC_NULL( volume->v_root_postexec = volxlate(obj, NULL, MAXPATHLEN, val, pwd, path, name) );
720
721     if (val = getoption(obj->iniconfig, section, "appledouble", preset, NULL)) {
722         if (strcmp(val, "v2") == 0)
723             volume->v_adouble = AD_VERSION2;
724         else if (strcmp(val, "ea") == 0)
725             volume->v_adouble = AD_VERSION_EA;
726     } else {
727         volume->v_adouble = AD_VERSION;
728     }
729
730     if (val = getoption(obj->iniconfig, section, "cnid server", preset, NULL)) {
731         EC_NULL( p = strdup(val) );
732         volume->v_cnidserver = p;
733         if (q = strrchr(val, ':')) {
734             *q++ = 0;
735             volume->v_cnidport = strdup(q);
736         } else {
737             volume->v_cnidport = strdup("4700");
738         }
739
740     } else {
741         volume->v_cnidserver = strdup(obj->options.Cnid_srv);
742         volume->v_cnidport = strdup(obj->options.Cnid_port);
743     }
744
745     if (val = getoption(obj->iniconfig, section, "ea", preset, NULL)) {
746         if (strcasecmp(val, "ad") == 0)
747             volume->v_vfs_ea = AFPVOL_EA_AD;
748         else if (strcasecmp(val, "sys") == 0)
749             volume->v_vfs_ea = AFPVOL_EA_SYS;
750         else if (strcasecmp(val, "none") == 0)
751             volume->v_vfs_ea = AFPVOL_EA_NONE;
752     }
753
754     if (val = getoption(obj->iniconfig, section, "casefold", preset, NULL)) {
755         if (strcasecmp(val, "tolower") == 0)
756             volume->v_casefold = AFPVOL_UMLOWER;
757         else if (strcasecmp(val, "toupper") == 0)
758             volume->v_casefold = AFPVOL_UMUPPER;
759         else if (strcasecmp(val, "xlatelower") == 0)
760             volume->v_casefold = AFPVOL_UUPPERMLOWER;
761         else if (strcasecmp(val, "xlateupper") == 0)
762             volume->v_casefold = AFPVOL_ULOWERMUPPER;
763     }
764
765     if (getoption_bool(obj->iniconfig, section, "read only", preset, 0))
766         volume->v_flags |= AFPVOL_RO;
767     if (getoption_bool(obj->iniconfig, section, "invisible dots", preset, 0))
768         volume->v_flags |= AFPVOL_INV_DOTS;
769     if (!getoption_bool(obj->iniconfig, section, "stat vol", preset, 1))
770         volume->v_flags |= AFPVOL_NOSTAT;
771     if (getoption_bool(obj->iniconfig, section, "unix priv", preset, 1))
772         volume->v_flags |= AFPVOL_UNIX_PRIV;
773     if (!getoption_bool(obj->iniconfig, section, "cnid dev", preset, 1))
774         volume->v_flags |= AFPVOL_NODEV;
775     if (getoption_bool(obj->iniconfig, section, "illegal seq", preset, 0))
776         volume->v_flags |= AFPVOL_EILSEQ;
777     if (getoption_bool(obj->iniconfig, section, "time machine", preset, 0))
778         volume->v_flags |= AFPVOL_TM;
779     if (getoption_bool(obj->iniconfig, section, "search db", preset, 0))
780         volume->v_flags |= AFPVOL_SEARCHDB;
781     if (!getoption_bool(obj->iniconfig, section, "network ids", preset, 1))
782         volume->v_flags |= AFPVOL_NONETIDS;
783 #ifdef HAVE_ACLS
784     if (getoption_bool(obj->iniconfig, section, "acls", preset, 1))
785         volume->v_flags |= AFPVOL_ACLS;
786 #endif
787     if (!getoption_bool(obj->iniconfig, section, "convert appledouble", preset, 1))
788         volume->v_flags |= AFPVOL_NOV2TOEACONV;
789
790     if (getoption_bool(obj->iniconfig, section, "preexec close", preset, 0))
791         volume->v_preexec_close = 1;
792     if (getoption_bool(obj->iniconfig, section, "root preexec close", preset, 0))
793         volume->v_root_preexec_close = 1;
794
795     /*
796      * Handle read-only behaviour. semantics:
797      * 1) neither the rolist nor the rwlist exist -> rw
798      * 2) rolist exists -> ro if user is in it.
799      * 3) rwlist exists -> ro unless user is in it.
800      * 4) cnid scheme = last -> ro forcibly.
801      */
802     if (pwd) {
803         if (accessvol(obj, getoption(obj->iniconfig, section, "rolist", preset, NULL), pwd->pw_name) == 1
804             || accessvol(obj, getoption(obj->iniconfig, section, "rwlist", preset, NULL), pwd->pw_name) == 0)
805             volume->v_flags |= AFPVOL_RO;
806     }
807     if (0 == strcmp(volume->v_cnidscheme, "last"))
808         volume->v_flags |= AFPVOL_RO;
809
810     if ((volume->v_flags & AFPVOL_NODEV))
811         volume->v_ad_options |= ADVOL_NODEV;
812     if ((volume->v_flags & AFPVOL_UNIX_PRIV))
813         volume->v_ad_options |= ADVOL_UNIXPRIV;
814     if ((volume->v_flags & AFPVOL_INV_DOTS))
815         volume->v_ad_options |= ADVOL_INVDOTS;
816
817     /* Mac to Unix conversion flags*/
818     if ((volume->v_flags & AFPVOL_EILSEQ))
819         volume->v_mtou_flags |= CONV__EILSEQ;
820
821     if ((volume->v_casefold & AFPVOL_MTOUUPPER))
822         volume->v_mtou_flags |= CONV_TOUPPER;
823     else if ((volume->v_casefold & AFPVOL_MTOULOWER))
824         volume->v_mtou_flags |= CONV_TOLOWER;
825
826     /* Unix to Mac conversion flags*/
827     volume->v_utom_flags = CONV_IGNORE;
828     if ((volume->v_casefold & AFPVOL_UTOMUPPER))
829         volume->v_utom_flags |= CONV_TOUPPER;
830     else if ((volume->v_casefold & AFPVOL_UTOMLOWER))
831         volume->v_utom_flags |= CONV_TOLOWER;
832     if ((volume->v_flags & AFPVOL_EILSEQ))
833         volume->v_utom_flags |= CONV__EILSEQ;
834
835     /* suffix for mangling use (lastvid + 1)   */
836     /* because v_vid has not been decided yet. */
837     suffixlen = sprintf(suffix, "#%X", lastvid + 1 );
838
839     /* Unicode Volume Name */
840     /* Firstly convert name from unixcharset to UTF8-MAC */
841     flags = CONV_IGNORE | CONV_ALLOW_SLASH;
842     tmpvlen = convert_charset(obj->options.unixcharset, CH_UTF8_MAC, 0, name, vlen, tmpname, AFPVOL_U8MNAMELEN, &flags);
843     if (tmpvlen <= 0) {
844         strcpy(tmpname, "???");
845         tmpvlen = 3;
846     }
847
848     /* Do we have to mangle ? */
849     if ( (flags & CONV_REQMANGLE) || (tmpvlen > obj->options.volnamelen)) {
850         if (tmpvlen + suffixlen > obj->options.volnamelen) {
851             flags = CONV_FORCE | CONV_ALLOW_SLASH;
852             tmpvlen = convert_charset(obj->options.unixcharset, CH_UTF8_MAC, 0, name, vlen, tmpname, obj->options.volnamelen - suffixlen, &flags);
853             tmpname[tmpvlen >= 0 ? tmpvlen : 0] = 0;
854         }
855         strcat(tmpname, suffix);
856         tmpvlen = strlen(tmpname);
857     }
858
859     /* Secondly convert name from UTF8-MAC to UCS2 */
860     if ( 0 >= ( u8mvlen = convert_string(CH_UTF8_MAC, CH_UCS2, tmpname, tmpvlen, u8mtmpname, AFPVOL_U8MNAMELEN*2)) )
861         EC_FAIL;
862
863     LOG(log_maxdebug, logtype_afpd, "createvol: Volume '%s' -> UTF8-MAC Name: '%s'", name, tmpname);
864
865     /* Maccharset Volume Name */
866     /* Firsty convert name from unixcharset to maccharset */
867     flags = CONV_IGNORE | CONV_ALLOW_SLASH;
868     tmpvlen = convert_charset(obj->options.unixcharset, obj->options.maccharset, 0, name, vlen, tmpname, AFPVOL_U8MNAMELEN, &flags);
869     if (tmpvlen <= 0) {
870         strcpy(tmpname, "???");
871         tmpvlen = 3;
872     }
873
874     /* Do we have to mangle ? */
875     if ( (flags & CONV_REQMANGLE) || (tmpvlen > AFPVOL_MACNAMELEN)) {
876         if (tmpvlen + suffixlen > AFPVOL_MACNAMELEN) {
877             flags = CONV_FORCE | CONV_ALLOW_SLASH;
878             tmpvlen = convert_charset(obj->options.unixcharset,
879                                       obj->options.maccharset,
880                                       0,
881                                       name,
882                                       vlen,
883                                       tmpname,
884                                       AFPVOL_MACNAMELEN - suffixlen,
885                                       &flags);
886             tmpname[tmpvlen >= 0 ? tmpvlen : 0] = 0;
887         }
888         strcat(tmpname, suffix);
889         tmpvlen = strlen(tmpname);
890     }
891
892     /* Secondly convert name from maccharset to UCS2 */
893     if ( 0 >= ( macvlen = convert_string(obj->options.maccharset,
894                                          CH_UCS2,
895                                          tmpname,
896                                          tmpvlen,
897                                          mactmpname,
898                                          AFPVOL_U8MNAMELEN*2)) )
899         EC_FAIL;
900
901     LOG(log_maxdebug, logtype_afpd, "createvol: Volume '%s' ->  Longname: '%s'", name, tmpname);
902
903     EC_NULL( volume->v_localname = strdup(name) );
904     EC_NULL( volume->v_u8mname = strdup_w(u8mtmpname) );
905     EC_NULL( volume->v_macname = strdup_w(mactmpname) );
906     EC_NULL( volume->v_path = malloc(strlen(path) + 1) );
907
908     volume->v_name = utf8_encoding(obj) ? volume->v_u8mname : volume->v_macname;
909     strcpy(volume->v_path, path);
910
911 #ifdef __svr4__
912     volume->v_qfd = -1;
913 #endif /* __svr4__ */
914
915     /* os X start at 1 and use network order ie. 1 2 3 */
916     volume->v_vid = ++lastvid;
917     volume->v_vid = htons(volume->v_vid);
918
919 #ifdef HAVE_ACLS
920     if (!check_vol_acl_support(volume)) {
921         LOG(log_debug, logtype_afpd, "creatvol(\"%s\"): disabling ACL support", volume->v_path);
922         volume->v_flags &= ~AFPVOL_ACLS;
923     }
924 #endif
925
926     /* Check EA support on volume */
927     if (volume->v_vfs_ea == AFPVOL_EA_AUTO || volume->v_adouble == AD_VERSION_EA)
928         check_ea_support(volume);
929     initvol_vfs(volume);
930
931     /* get/store uuid from file in afpd master*/
932     if (!(pwd) && (volume->v_flags & AFPVOL_TM)) {
933         char *uuid = get_vol_uuid(obj, volume->v_localname);
934         if (!uuid) {
935             LOG(log_error, logtype_afpd, "Volume '%s': couldn't get UUID",
936                 volume->v_localname);
937         } else {
938             volume->v_uuid = uuid;
939             LOG(log_debug, logtype_afpd, "Volume '%s': UUID '%s'",
940                 volume->v_localname, volume->v_uuid);
941         }
942     }
943
944     /* no errors shall happen beyond this point because the cleanup would mess the volume chain up */
945     volume->v_next = Volumes;
946     Volumes = volume;
947     volume->v_obj = obj;
948
949 EC_CLEANUP:
950     LOG(log_debug, logtype_afpd, "createvol: END: %d", ret);
951     if (ret != 0) {
952         if (volume) {
953             volume_free(volume);
954             free(volume);
955         }
956         return NULL;
957     }
958     return volume;
959 }
960
961 /* ----------------------
962  */
963 static int volfile_changed(struct afp_options *p)
964 {
965     struct stat st;
966
967     if (!stat(p->configfile, &st) && st.st_mtime > p->volfile.mtime) {
968         p->volfile.mtime = st.st_mtime;
969         return 1;
970     }
971     return 0;
972 }
973
974 static int vol_section(const char *sec)
975 {
976     if (STRCMP(sec, ==, INISEC_GLOBAL))
977         return 0;
978     return 1;
979 }
980
981 #define MAXPRESETLEN 100
982 /*!
983  * Read volumes from iniconfig and add the volumes contained within to
984  * the global volume list. This gets called from the forked afpd childs.
985  * The master now reads this too for Zeroconf announcements.
986  */
987 static int readvolfile(AFPObj *obj, const struct passwd *pwent)
988 {
989     EC_INIT;
990     static int regexerr = -1;
991     static regex_t reg;
992     char        *realvolpath;
993     char        volname[AFPVOL_U8MNAMELEN + 1];
994     char        tmp[MAXPATHLEN + 1], tmp2[MAXPATHLEN + 1];
995     const char  *preset, *default_preset, *p, *basedir;
996     char        *q, *u;
997     int         i;
998     struct passwd   *pw;
999     regmatch_t match[1];
1000
1001     LOG(log_debug, logtype_afpd, "readvolfile: BEGIN");
1002
1003     int secnum = iniparser_getnsec(obj->iniconfig);    
1004     LOG(log_debug, logtype_afpd, "readvolfile: sections: %d", secnum);
1005     const char *secname;
1006
1007     if ((default_preset = iniparser_getstring(obj->iniconfig, INISEC_GLOBAL, "vol preset", NULL))) {
1008         LOG(log_debug, logtype_afpd, "readvolfile: default_preset: %s", default_preset);
1009     }
1010
1011     for (i = 0; i < secnum; i++) { 
1012         secname = iniparser_getsecname(obj->iniconfig, i);
1013
1014         if (!vol_section(secname))
1015             continue;
1016         if (STRCMP(secname, ==, INISEC_HOMES)) {
1017             have_uservol = 1;
1018             if (!IS_AFP_SESSION(obj)
1019                 || strcmp(obj->username, obj->options.guest) == 0)
1020                 /* not an AFP session, but cnid daemon, dbd or ad util, or guest login */
1021                 continue;
1022             if (pwent->pw_dir == NULL || STRCMP("", ==, pwent->pw_dir))
1023                 /* no user home */
1024                 continue;
1025
1026             /* check if user home matches our "basedir regex" */
1027             if ((basedir = iniparser_getstring(obj->iniconfig, INISEC_HOMES, "basedir regex", NULL)) == NULL) {
1028                 LOG(log_error, logtype_afpd, "\"basedir regex =\" must be defined in [Homes] section");
1029                 continue;
1030             }
1031             LOG(log_debug, logtype_afpd, "readvolfile: basedir regex: '%s'", basedir);
1032
1033             if (regexerr != 0 && (regexerr = regcomp(&reg, basedir, REG_EXTENDED)) != 0) {
1034                 char errbuf[1024];
1035                 regerror(regexerr, &reg, errbuf, sizeof(errbuf));
1036                 LOG(log_debug, logtype_default, "readvolfile: bad basedir regex: %s", errbuf);
1037             }
1038
1039             if (regexec(&reg, pwent->pw_dir, 1, match, 0) == REG_NOMATCH) {
1040                 LOG(log_debug, logtype_default, "readvolfile: user home \"%s\" doesn't match basedir regex \"%s\"",
1041                     pwent->pw_dir, basedir);
1042                 continue;
1043             }
1044
1045             strlcpy(tmp, pwent->pw_dir, MAXPATHLEN);
1046             strlcat(tmp, "/", MAXPATHLEN);
1047             if (p = iniparser_getstring(obj->iniconfig, INISEC_HOMES, "path", NULL))
1048                 strlcat(tmp, p, MAXPATHLEN);
1049         } else {
1050             /* Get path */
1051             if ((p = iniparser_getstring(obj->iniconfig, secname, "path", NULL)) == NULL)
1052                 continue;
1053             strlcpy(tmp, p, MAXPATHLEN);
1054         }
1055
1056         if (volxlate(obj, tmp2, sizeof(tmp2) - 1, tmp, pwent, NULL, NULL) == NULL)
1057             continue;
1058
1059         /* do variable substitution for volume name */
1060         if (STRCMP(secname, ==, INISEC_HOMES)) {
1061             p = iniparser_getstring(obj->iniconfig, INISEC_HOMES, "home name", "$u's home");
1062             if (strstr(p, "$u") == NULL) {
1063                 LOG(log_warning, logtype_afpd, "home name must contain $u.");
1064                 p = "$u's home";
1065             }
1066             if (strchr(p, ':') != NULL) {
1067                 LOG(log_warning, logtype_afpd, "home name must not contain \":\".");
1068                 p = "$u's home";
1069             }
1070             strlcpy(tmp, p, MAXPATHLEN);
1071         } else {
1072             strlcpy(tmp, secname, AFPVOL_U8MNAMELEN);
1073         }
1074         if (volxlate(obj, volname, sizeof(volname) - 1, tmp, pwent, tmp2, NULL) == NULL)
1075             continue;
1076
1077         preset = iniparser_getstring(obj->iniconfig, secname, "vol preset", NULL);
1078
1079         if ((realvolpath = realpath_safe(tmp2)) == NULL)
1080             continue;
1081
1082         creatvol(obj, pwent, secname, volname, realvolpath, preset ? preset : default_preset ? default_preset : NULL);
1083     }
1084
1085 EC_CLEANUP:
1086     EC_EXIT;
1087 }
1088
1089 /**************************************************************
1090  * API functions
1091  **************************************************************/
1092
1093 /*!
1094  * Remove a volume from the linked list of volumes
1095  */
1096 void volume_unlink(struct vol *volume)
1097 {
1098     struct vol *vol, *ovol, *nvol;
1099
1100     if (volume == Volumes) {
1101         Volumes = NULL;
1102         return;
1103     }
1104     for ( vol = Volumes->v_next, ovol = Volumes; vol; vol = nvol) {
1105         nvol = vol->v_next;
1106
1107         if (vol == volume) {
1108             ovol->v_next = nvol;
1109             break;
1110         }
1111         else {
1112             ovol = vol;
1113         }
1114     }
1115 }
1116
1117 /*!
1118  * Free all resources allocated in a struct vol, only struct dir *v_root can't be freed
1119  */
1120 void volume_free(struct vol *vol)
1121 {
1122     LOG(log_debug, logtype_afpd, "volume_free('%s'): BEGIN", vol->v_localname);
1123
1124     free(vol->v_localname);
1125     free(vol->v_u8mname);
1126     free(vol->v_macname);
1127     free(vol->v_path);
1128     free(vol->v_password);
1129     free(vol->v_veto);
1130     free(vol->v_volcodepage);
1131     free(vol->v_maccodepage);
1132     free(vol->v_cnidscheme);
1133     free(vol->v_dbpath);
1134     free(vol->v_gvs);
1135     free(vol->v_uuid);
1136     free(vol->v_cnidserver);
1137     free(vol->v_cnidport);
1138     free(vol->v_root_preexec);
1139     free(vol->v_postexec);
1140
1141     LOG(log_debug, logtype_afpd, "volume_free: END");
1142 }
1143
1144 /*!
1145  * Load charsets for a volume
1146  */
1147 int load_charset(struct vol *vol)
1148 {
1149     if ((vol->v_maccharset = add_charset(vol->v_maccodepage)) == (charset_t)-1) {
1150         LOG(log_error, logtype_default, "Setting mac charset '%s' failed", vol->v_maccodepage);
1151         return -1;
1152     }
1153
1154     if ((vol->v_volcharset = add_charset(vol->v_volcodepage)) == (charset_t)-1) {
1155         LOG(log_error, logtype_default, "Setting vol charset '%s' failed", vol->v_volcodepage);
1156         return -1;
1157     }
1158
1159     return 0;
1160 }
1161
1162 /*!
1163  * Initialize volumes and load ini configfile
1164  *
1165  * Depending on the value of obj->uid either access checks are done (!=0) or skipped (=0)
1166  *
1167  * @param obj       (r) handle
1168  * @param delvol_fn (r) callback called for deleted volumes
1169  */
1170 int load_volumes(AFPObj *obj, void (*delvol_fn)(const AFPObj *obj, struct vol *))
1171 {
1172     EC_INIT;
1173     int fd = -1;
1174     struct passwd   *pwent = NULL;
1175     struct stat         st;
1176     int retries = 0;
1177     struct vol *vol;
1178
1179     LOG(log_debug, logtype_afpd, "load_volumes: BEGIN");
1180
1181     if (Volumes) {
1182         if (!volfile_changed(&obj->options))
1183             goto EC_CLEANUP;
1184         have_uservol = 0;
1185         for (vol = Volumes; vol; vol = vol->v_next) {
1186             vol->v_deleted = 1;
1187         }
1188     } else {
1189         LOG(log_debug, logtype_afpd, "load_volumes: no volumes yet");
1190         EC_ZERO_LOG( lstat(obj->options.configfile, &st) );
1191         obj->options.volfile.mtime = st.st_mtime;
1192     }
1193
1194     /* try putting a read lock on the volume file twice, sleep 1 second if first attempt fails */
1195
1196     fd = open(obj->options.configfile, O_RDONLY);
1197
1198     while (retries < 2) {
1199         if ((read_lock(fd, 0, SEEK_SET, 0)) != 0) {
1200             retries++;
1201             if (!retries) {
1202                 LOG(log_error, logtype_afpd, "readvolfile: can't lock configfile \"%s\"",
1203                     obj->options.configfile);
1204                 EC_FAIL;
1205             }
1206             sleep(1);
1207             continue;
1208         }
1209         break;
1210     }
1211
1212     if (obj->uid)
1213         pwent = getpwuid(obj->uid);
1214
1215     if (obj->iniconfig)
1216         iniparser_freedict(obj->iniconfig);
1217     LOG(log_debug, logtype_afpd, "load_volumes: loading: %s", obj->options.configfile);
1218     obj->iniconfig = iniparser_load(obj->options.configfile);
1219
1220     EC_ZERO_LOG( readvolfile(obj, pwent) );
1221
1222     for ( vol = Volumes; vol; vol = vol->v_next ) {
1223         if (vol->v_deleted) {
1224             LOG(log_debug, logtype_afpd, "load_volumes: deleted: %s", vol->v_localname);
1225             if (delvol_fn)
1226                 delvol_fn(obj, vol);
1227             vol = Volumes;
1228         }
1229     }
1230
1231 EC_CLEANUP:
1232     if (fd != -1)
1233         (void)close(fd);
1234
1235     LOG(log_debug, logtype_afpd, "load_volumes: END");
1236     EC_EXIT;
1237 }
1238
1239 void unload_volumes(AFPObj *obj)
1240 {
1241     struct vol *vol;
1242
1243     LOG(log_debug, logtype_afpd, "unload_volumes: BEGIN");
1244
1245     for (vol = Volumes; vol; vol = vol->v_next)
1246         volume_free(vol);
1247     Volumes = NULL;
1248     obj->options.volfile.mtime = 0;
1249     
1250     LOG(log_debug, logtype_afpd, "unload_volumes: END");
1251 }
1252
1253 struct vol *getvolumes(void)
1254 {
1255     return Volumes;
1256 }
1257
1258 struct vol *getvolbyvid(const uint16_t vid )
1259 {
1260     struct vol  *vol;
1261
1262     for ( vol = Volumes; vol; vol = vol->v_next ) {
1263         if ( vid == vol->v_vid ) {
1264             break;
1265         }
1266     }
1267     if ( vol == NULL || ( vol->v_flags & AFPVOL_OPEN ) == 0 ) {
1268         return( NULL );
1269     }
1270
1271     return( vol );
1272 }
1273
1274 /*!
1275  * Search volume by path, creating user home vols as necessary
1276  *
1277  * Path may be absolute or relative. Ordinary volume structs are created when
1278  * the ini config is initially parsed (load_volumes()), but user volumes are
1279  * as load_volumes() only can create the user volume of the logged in user
1280  * in an AFP session in afpd, but not when called from eg cnid_metad or dbd.
1281  * Both cnid_metad and dbd thus need a way to lookup and create struct vols
1282  * for user home by path. This is what this func does as well.
1283  *
1284  * (1) Search "normal" volume list 
1285  * (2) Check if theres a [Homes] section, load_volumes() remembers this for us
1286  * (3) If there is, match "path" with "basedir regex" to get the user home parent dir
1287  * (4) Built user home path by appending the basedir matched in (3) and appending the username
1288  * (5) The next path element then is the username
1289  * (6) Append [Homes]->path subdirectory if defined
1290  * (7) Create volume
1291  *
1292  * @param obj  (rw) handle
1293  * @param path (r)  path, may be relative or absolute
1294  */
1295 struct vol *getvolbypath(AFPObj *obj, const char *path)
1296 {
1297     EC_INIT;
1298     static int regexerr = -1;
1299     static regex_t reg;
1300     struct vol *vol;
1301     struct vol *tmp;
1302     const struct passwd *pw;
1303     char        volname[AFPVOL_U8MNAMELEN + 1];
1304     char        abspath[MAXPATHLEN + 1];
1305     char        volpath[MAXPATHLEN + 1], *realvolpath;
1306     char        tmpbuf[MAXPATHLEN + 1];
1307     const char *secname, *basedir, *p = NULL, *subpath = NULL, *subpathconfig;
1308     char *user = NULL, *prw;
1309     regmatch_t match[1];
1310
1311     LOG(log_debug, logtype_afpd, "getvolbypath(\"%s\")", path);
1312
1313     if (path[0] != '/') {
1314         /* relative path, build absolute path */
1315         EC_NULL_LOG( getcwd(abspath, MAXPATHLEN) );
1316         strlcat(abspath, "/", MAXPATHLEN);
1317         strlcat(abspath, path, MAXPATHLEN);
1318         path = abspath;
1319     }
1320
1321
1322     for (tmp = Volumes; tmp; tmp = tmp->v_next) { /* (1) */
1323         if (strncmp(path, tmp->v_path, strlen(tmp->v_path)) == 0) {
1324             vol = tmp;
1325             goto EC_CLEANUP;
1326         }
1327     }
1328
1329     if (!have_uservol) /* (2) */
1330         EC_FAIL_LOG("getvolbypath(\"%s\"): no volume for path", path);
1331
1332     int secnum = iniparser_getnsec(obj->iniconfig);
1333
1334     for (int i = 0; i < secnum; i++) { 
1335         secname = iniparser_getsecname(obj->iniconfig, i);
1336         if (STRCMP(secname, ==, INISEC_HOMES))
1337             break;
1338     }
1339
1340     if (STRCMP(secname, !=, INISEC_HOMES))
1341         EC_FAIL_LOG("getvolbypath(\"%s\"): no volume for path", path);
1342
1343     /* (3) */
1344     EC_NULL_LOG( basedir = iniparser_getstring(obj->iniconfig, INISEC_HOMES, "basedir regex", NULL) );
1345     LOG(log_debug, logtype_afpd, "getvolbypath: user home section: '%s', basedir: '%s'", secname, basedir);
1346
1347     if (regexerr != 0 && (regexerr = regcomp(&reg, basedir, REG_EXTENDED)) != 0) {
1348         char errbuf[1024];
1349         regerror(regexerr, &reg, errbuf, sizeof(errbuf));
1350         printf("error: %s\n", errbuf);
1351         EC_FAIL_LOG("getvolbypath(\"%s\"): bad basedir regex: %s", errbuf);
1352     }
1353
1354     if (regexec(&reg, path, 1, match, 0) == REG_NOMATCH)
1355         EC_FAIL_LOG("getvolbypath(\"%s\"): no volume for path", path);
1356
1357     if (match[0].rm_eo - match[0].rm_so > MAXPATHLEN)
1358         EC_FAIL_LOG("getvolbypath(\"%s\"): path too long", path);
1359
1360     /* (4) */
1361     strncpy(tmpbuf, path + match[0].rm_so, match[0].rm_eo - match[0].rm_so);
1362     tmpbuf[match[0].rm_eo - match[0].rm_so] = 0;
1363
1364     LOG(log_debug, logtype_afpd, "getvolbypath: basedir regex: '%s', basedir match: \"%s\"",
1365         basedir, tmpbuf);
1366
1367     strlcat(tmpbuf, "/", MAXPATHLEN);
1368
1369     /* (5) */
1370     p = path + strlen(basedir);
1371     while (*p == '/')
1372         p++;
1373     EC_NULL_LOG( user = strdup(p) );
1374
1375     if (prw = strchr(user, '/'))
1376         *prw++ = 0;
1377     if (prw != 0)
1378         subpath = prw;
1379
1380     strlcat(tmpbuf, user, MAXPATHLEN);
1381     strlcpy(obj->username, user, MAXUSERLEN);
1382     strlcat(tmpbuf, "/", MAXPATHLEN);
1383
1384     /* (6) */
1385     if (subpathconfig = iniparser_getstring(obj->iniconfig, INISEC_HOMES, "path", NULL)) {
1386         /*
1387         if (!subpath || strncmp(subpathconfig, subpath, strlen(subpathconfig)) != 0) {
1388             EC_FAIL;
1389         }
1390         */
1391         strlcat(tmpbuf, subpathconfig, MAXPATHLEN);
1392         strlcat(tmpbuf, "/", MAXPATHLEN);
1393     }
1394
1395
1396     /* (7) */
1397     if (volxlate(obj, volpath, sizeof(volpath) - 1, tmpbuf, pw, NULL, NULL) == NULL)
1398         return NULL;
1399
1400     if ((realvolpath = realpath_safe(volpath)) == NULL)
1401         return NULL;
1402
1403     EC_NULL( pw = getpwnam(user) );
1404
1405     LOG(log_debug, logtype_afpd, "getvolbypath(\"%s\"): user: %s, homedir: %s => realvolpath: \"%s\"",
1406         path, user, pw->pw_dir, realvolpath);
1407
1408     /* do variable substitution for volume name */
1409     p = iniparser_getstring(obj->iniconfig, INISEC_HOMES, "home name", "$u's home");
1410     if (strstr(p, "$u") == NULL)
1411         p = "$u's home";
1412     strlcpy(tmpbuf, p, AFPVOL_U8MNAMELEN);
1413     EC_NULL_LOG( volxlate(obj, volname, sizeof(volname) - 1, tmpbuf, pw, realvolpath, NULL) );
1414
1415     const char  *preset, *default_preset;
1416     default_preset = iniparser_getstring(obj->iniconfig, INISEC_GLOBAL, "vol preset", NULL);
1417     preset = iniparser_getstring(obj->iniconfig, INISEC_HOMES, "vol preset", NULL);
1418
1419     vol = creatvol(obj, pw, INISEC_HOMES, volname, realvolpath, preset ? preset : default_preset ? default_preset : NULL);
1420
1421 EC_CLEANUP:
1422     if (user)
1423         free(user);
1424     if (ret != 0)
1425         vol = NULL;
1426     return vol;
1427 }
1428
1429 struct vol *getvolbyname(const char *name)
1430 {
1431     struct vol *vol = NULL;
1432     struct vol *tmp;
1433
1434     for (tmp = Volumes; tmp; tmp = tmp->v_next) {
1435         if (strncmp(name, tmp->v_configname, strlen(tmp->v_configname)) == 0) {
1436             vol = tmp;
1437             break;
1438         }
1439     }
1440     return vol;
1441 }
1442
1443 #define MAXVAL 1024
1444 /*!
1445  * Initialize an AFPObj and options from ini config file
1446  */
1447 int afp_config_parse(AFPObj *AFPObj, char *processname)
1448 {
1449     EC_INIT;
1450     dictionary *config;
1451     struct afp_options *options = &AFPObj->options;
1452     int i, c;
1453     const char *p, *tmp;
1454     char *q, *r;
1455     char val[MAXVAL];
1456
1457     if (processname != NULL)
1458         set_processname(processname);
1459
1460     AFPObj->afp_version = 11;
1461     options->configfile  = AFPObj->cmdlineconfigfile ? strdup(AFPObj->cmdlineconfigfile) : strdup(_PATH_CONFDIR "afp.conf");
1462     options->sigconffile = strdup(_PATH_STATEDIR "afp_signature.conf");
1463     options->uuidconf    = strdup(_PATH_STATEDIR "afp_voluuid.conf");
1464     options->flags       = OPTION_UUID | AFPObj->cmdlineflags;
1465     
1466     if ((config = iniparser_load(AFPObj->options.configfile)) == NULL)
1467         return -1;
1468     AFPObj->iniconfig = config;
1469
1470     /* [Global] */
1471     options->logconfig = iniparser_getstrdup(config, INISEC_GLOBAL, "log level", "default:note");
1472     options->logfile   = iniparser_getstrdup(config, INISEC_GLOBAL, "log file",  NULL);
1473
1474     setuplog(options->logconfig, options->logfile);
1475
1476     /* "server options" boolean options */
1477     if (!iniparser_getboolean(config, INISEC_GLOBAL, "zeroconf", 1))
1478         options->flags |= OPTION_NOZEROCONF;
1479     if (iniparser_getboolean(config, INISEC_GLOBAL, "advertise ssh", 0))
1480         options->flags |= OPTION_ANNOUNCESSH;
1481     if (iniparser_getboolean(config, INISEC_GLOBAL, "map acls", 1))
1482         options->flags |= OPTION_ACL2MACCESS;
1483     if (iniparser_getboolean(config, INISEC_GLOBAL, "keep sessions", 0))
1484         options->flags |= OPTION_KEEPSESSIONS;
1485     if (iniparser_getboolean(config, INISEC_GLOBAL, "close vol", 0))
1486         options->flags |= OPTION_CLOSEVOL;
1487     if (!iniparser_getboolean(config, INISEC_GLOBAL, "client polling", 0))
1488         options->flags |= OPTION_SERVERNOTIF;
1489     if (!iniparser_getboolean(config, INISEC_GLOBAL, "use sendfile", 1))
1490         options->flags |= OPTION_NOSENDFILE;
1491     if (iniparser_getboolean(config, INISEC_GLOBAL, "solaris share reservations", 1))
1492         options->flags |= OPTION_SHARE_RESERV;
1493     if (iniparser_getboolean(config, INISEC_GLOBAL, "afp read locks", 0))
1494         options->flags |= OPTION_AFP_READ_LOCK;
1495     if (!iniparser_getboolean(config, INISEC_GLOBAL, "save password", 1))
1496         options->passwdbits |= PASSWD_NOSAVE;
1497     if (iniparser_getboolean(config, INISEC_GLOBAL, "set password", 0))
1498         options->passwdbits |= PASSWD_SET;
1499
1500     /* figure out options w values */
1501     options->loginmesg      = iniparser_getstrdup(config, INISEC_GLOBAL, "login message",  NULL);
1502     options->guest          = iniparser_getstrdup(config, INISEC_GLOBAL, "guest account",  "nobody");
1503     options->passwdfile     = iniparser_getstrdup(config, INISEC_GLOBAL, "passwd file",_PATH_AFPDPWFILE);
1504     options->uampath        = iniparser_getstrdup(config, INISEC_GLOBAL, "uam path",       _PATH_AFPDUAMPATH);
1505     options->uamlist        = iniparser_getstrdup(config, INISEC_GLOBAL, "uam list",       "uams_dhx.so uams_dhx2.so");
1506     options->port           = iniparser_getstrdup(config, INISEC_GLOBAL, "afp port",       "548");
1507     options->signatureopt   = iniparser_getstrdup(config, INISEC_GLOBAL, "signature",      "");
1508     options->k5service      = iniparser_getstrdup(config, INISEC_GLOBAL, "k5 service",     NULL);
1509     options->k5realm        = iniparser_getstrdup(config, INISEC_GLOBAL, "k5 realm",       NULL);
1510     options->listen         = iniparser_getstrdup(config, INISEC_GLOBAL, "afp listen",     NULL);
1511     options->ntdomain       = iniparser_getstrdup(config, INISEC_GLOBAL, "nt domain",      NULL);
1512     options->ntseparator    = iniparser_getstrdup(config, INISEC_GLOBAL, "nt separator",   NULL);
1513     options->mimicmodel     = iniparser_getstrdup(config, INISEC_GLOBAL, "mimic model",    NULL);
1514     options->adminauthuser  = iniparser_getstrdup(config, INISEC_GLOBAL, "admin auth user",NULL);
1515     options->connections    = iniparser_getint   (config, INISEC_GLOBAL, "max connections",200);
1516     options->passwdminlen   = iniparser_getint   (config, INISEC_GLOBAL, "passwd minlen",  0);
1517     options->tickleval      = iniparser_getint   (config, INISEC_GLOBAL, "tickleval",      30);
1518     options->timeout        = iniparser_getint   (config, INISEC_GLOBAL, "timeout",        4);
1519     options->dsireadbuf     = iniparser_getint   (config, INISEC_GLOBAL, "dsireadbuf",     12);
1520     options->server_quantum = iniparser_getint   (config, INISEC_GLOBAL, "server quantum", DSI_SERVQUANT_DEF);
1521     options->volnamelen     = iniparser_getint   (config, INISEC_GLOBAL, "volnamelen",     80);
1522     options->dircachesize   = iniparser_getint   (config, INISEC_GLOBAL, "dircachesize",   DEFAULT_MAX_DIRCACHE_SIZE);
1523     options->tcp_sndbuf     = iniparser_getint   (config, INISEC_GLOBAL, "tcpsndbuf",      0);
1524     options->tcp_rcvbuf     = iniparser_getint   (config, INISEC_GLOBAL, "tcprcvbuf",      0);
1525     options->fce_fmodwait   = iniparser_getint   (config, INISEC_GLOBAL, "fce holdfmod",   60);
1526     options->sleep          = iniparser_getint   (config, INISEC_GLOBAL, "sleep time",     10);
1527     options->disconnected   = iniparser_getint   (config, INISEC_GLOBAL, "disconnect time",24);
1528
1529     if ((p = iniparser_getstring(config, INISEC_GLOBAL, "hostname", NULL))) {
1530         EC_NULL_LOG( options->hostname = strdup(p) );
1531     } else {
1532         if (gethostname(val, sizeof(val)) < 0 ) {
1533             perror( "gethostname" );
1534             EC_FAIL;
1535         }
1536         if ((q = strchr(val, '.')))
1537             *q = '\0';
1538         options->hostname = strdup(val);
1539     }
1540
1541     if ((p = iniparser_getstring(config, INISEC_GLOBAL, "k5 keytab", NULL))) {
1542         EC_NULL_LOG( options->k5keytab = malloc(strlen(p) + 14) );
1543         snprintf(options->k5keytab, strlen(p) + 14, "KRB5_KTNAME=%s", p);
1544         putenv(options->k5keytab);
1545     }
1546
1547 #ifdef ADMIN_GRP
1548     if ((p = iniparser_getstring(config, INISEC_GLOBAL, "admin group",  NULL))) {
1549          struct group *gr = getgrnam(p);
1550          if (gr != NULL)
1551              options->admingid = gr->gr_gid;
1552     }
1553 #endif /* ADMIN_GRP */
1554
1555     q = iniparser_getstrdup(config, INISEC_GLOBAL, "cnid server", "localhost:4700");
1556     r = strrchr(q, ':');
1557     if (r)
1558         *r = 0;
1559     options->Cnid_srv = strdup(q);
1560     if (r)
1561         options->Cnid_port = strdup(r + 1);
1562     else
1563         options->Cnid_port = strdup("4700");
1564     LOG(log_debug, logtype_afpd, "CNID Server: %s:%s", options->Cnid_srv, options->Cnid_port);
1565     if (q)
1566         free(q);
1567
1568     if ((q = iniparser_getstrdup(config, INISEC_GLOBAL, "fqdn", NULL))) {
1569         /* do a little checking for the domain name. */
1570         r = strchr(q, ':');
1571         if (r)
1572             *r = '\0';
1573         if (gethostbyname(q)) {
1574             if (r)
1575                 *r = ':';
1576             EC_NULL_LOG( options->fqdn = strdup(q) );
1577         } else {
1578             LOG(log_error, logtype_afpd, "error parsing -fqdn, gethostbyname failed for: %s", c);
1579         }
1580         free(q);
1581     }
1582
1583     /* Charset Options */
1584
1585     /* unix charset is in [G] only */
1586     if (!(p = iniparser_getstring(config, INISEC_GLOBAL, "unix charset", NULL))) {
1587         options->unixcodepage = strdup("UTF8");
1588         set_charset_name(CH_UNIX, "UTF8");
1589     } else {
1590         if (strcasecmp(p, "LOCALE") == 0) {
1591 #if defined(CODESET)
1592             setlocale(LC_ALL, "");
1593             p = nl_langinfo(CODESET);
1594             LOG(log_debug, logtype_afpd, "Locale charset is '%s'", p);
1595 #else /* system doesn't have LOCALE support */
1596             LOG(log_warning, logtype_afpd, "system doesn't have LOCALE support");
1597             p = strdup("UTF8");
1598 #endif
1599         }
1600         if (strcasecmp(p, "UTF-8") == 0) {
1601             p = strdup("UTF8");
1602         }
1603         options->unixcodepage = strdup(p);
1604         set_charset_name(CH_UNIX, p);
1605     }
1606     options->unixcharset = CH_UNIX;
1607     LOG(log_debug, logtype_afpd, "Global unix charset is %s", options->unixcodepage);
1608
1609     /* vol charset is in [G] and [V] */
1610     if (!(p = iniparser_getstring(config, INISEC_GLOBAL, "vol charset", NULL))) {
1611         options->volcodepage = strdup(options->unixcodepage);
1612     } else {
1613         if (strcasecmp(p, "UTF-8") == 0) {
1614             p = strdup("UTF8");
1615         }
1616         options->volcodepage = strdup(p);
1617     }
1618     LOG(log_debug, logtype_afpd, "Global vol charset is %s", options->volcodepage);
1619     
1620     /* mac charset is in [G] and [V] */
1621     if (!(p = iniparser_getstring(config, INISEC_GLOBAL, "mac charset", NULL))) {
1622         options->maccodepage = strdup("MAC_ROMAN");
1623         set_charset_name(CH_MAC, "MAC_ROMAN");
1624     } else {
1625         if (strncasecmp(p, "MAC", 3) != 0) {
1626             LOG(log_warning, logtype_afpd, "Is '%s' really mac charset? ", p);
1627         }
1628         options->maccodepage = strdup(p);
1629         set_charset_name(CH_MAC, p);
1630     }
1631     options->maccharset = CH_MAC;
1632     LOG(log_debug, logtype_afpd, "Global mac charset is %s", options->maccodepage);
1633
1634     /* Check for sane values */
1635     if (options->tickleval <= 0)
1636         options->tickleval = 30;
1637         options->disconnected *= 3600 / options->tickleval;
1638         options->sleep *= 3600 / options->tickleval;
1639     if (options->timeout <= 0)
1640         options->timeout = 4;
1641     if (options->sleep <= 4)
1642         options->disconnected = options->sleep = 4;
1643     if (options->dsireadbuf < 6)
1644         options->dsireadbuf = 6;
1645     if (options->volnamelen < 8)
1646         options->volnamelen = 8; /* max mangled volname "???#FFFF" */
1647     if (options->volnamelen > 255)
1648         options->volnamelen = 255; /* AFP3 spec */
1649
1650 EC_CLEANUP:
1651     EC_EXIT;
1652 }