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