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