]> arthur.barton.de Git - netatalk.git/blob - etc/afpd/afp_options.c
Merge master
[netatalk.git] / etc / afpd / afp_options.c
1 /*
2  * Copyright (c) 1997 Adrian Sun (asun@zoology.washington.edu)
3  * Copyright (c) 1990,1993 Regents of The University of Michigan.
4  * All Rights Reserved.  See COPYRIGHT.
5  *
6  * modified from main.c. this handles afp options.
7  */
8
9 #ifdef HAVE_CONFIG_H
10 #include "config.h"
11 #endif /* HAVE_CONFIG_H */
12
13 #include <stdio.h>
14 #include <stdlib.h>
15 #include <string.h>
16 #include <ctype.h>
17 #include <unistd.h>
18 #include <sys/param.h>
19 #include <sys/socket.h>
20 #include <atalk/logger.h>
21
22 #include <netinet/in.h>
23 #include <arpa/inet.h>
24
25 #ifdef HAVE_NETDB_H
26 #include <netdb.h>
27 #endif /* HAVE_NETDB_H */
28
29 #ifdef ADMIN_GRP
30 #include <grp.h>
31 #include <sys/types.h>
32 #endif /* ADMIN_GRP */
33
34 #include <atalk/paths.h>
35 #include <atalk/util.h>
36 #include <atalk/compat.h>
37 #include <atalk/globals.h>
38 #include <atalk/fce_api.h>
39
40 #include "status.h"
41 #include "auth.h"
42 #include "dircache.h"
43
44 #ifndef MIN
45 #define MIN(a, b)  ((a) < (b) ? (a) : (b))
46 #endif /* MIN */
47
48 /* FIXME CNID */
49 const char *Cnid_srv = "localhost";
50 const char *Cnid_port = "4700";
51
52 #define OPTIONS "dn:f:s:uc:g:P:ptDS:TL:F:U:hIvVm:"
53 #define LENGTH 512
54
55 /* return an option. this uses an internal array, so it's necessary
56  * to duplicate it if you want to hold it for long. this is probably
57  * non-optimal. */
58 static char *getoption(char *buf, const char *option)
59 {
60     static char string[LENGTH + 1];
61     char *end;
62     int len;
63
64     if (option && (buf = strstr(buf, option)))
65         buf = strpbrk(buf, " \t");
66
67     while (buf && isspace(*buf))
68         buf++;
69
70     if (!buf)
71         return NULL;
72
73     /* search for any quoted stuff */
74     if (*buf == '"' && (end = strchr(buf + 1, '"'))) {
75         buf++;
76         len = MIN(end - buf, LENGTH);
77     } else if ((end = strpbrk(buf, " \t\n"))) /* option or eoln */
78         len = MIN(end - buf, LENGTH);
79     else
80         len = MIN(strlen(buf), LENGTH);
81
82     strncpy(string, buf, len);
83     string[len] = '\0';
84     return string;
85 }
86
87 /* get rid of any allocated afp_option buffers. */
88 void afp_options_free(struct afp_options *opt,
89                       const struct afp_options *save)
90 {
91     if (opt->defaultvol.name && (opt->defaultvol.name != save->defaultvol.name))
92         free(opt->defaultvol.name);
93     if (opt->defaultvol.full_name && (opt->defaultvol.full_name != save->defaultvol.full_name))
94         free(opt->defaultvol.full_name);
95
96     if (opt->systemvol.name && (opt->systemvol.name != save->systemvol.name))
97         free(opt->systemvol.name);
98     if (opt->systemvol.full_name && (opt->systemvol.full_name != save->systemvol.full_name))
99         free(opt->systemvol.full_name);
100
101     if (opt->uservol.name && (opt->uservol.name != save->uservol.name))
102         free(opt->uservol.name);
103     if (opt->uservol.full_name && (opt->uservol.full_name != save->uservol.full_name))
104         free(opt->uservol.full_name);
105
106     if (opt->loginmesg && (opt->loginmesg != save->loginmesg))
107         free(opt->loginmesg);
108     if (opt->guest && (opt->guest != save->guest))
109         free(opt->guest);
110     if (opt->server && (opt->server != save->server))
111         free(opt->server);
112     if (opt->ipaddr && (opt->ipaddr != save->ipaddr))
113         free(opt->ipaddr);
114     if (opt->port && (opt->port != save->port))
115         free(opt->port);
116     if (opt->fqdn && (opt->fqdn != save->fqdn))
117         free(opt->fqdn);
118     if (opt->uampath && (opt->uampath != save->uampath))
119         free(opt->uampath);
120     if (opt->uamlist && (opt->uamlist != save->uamlist))
121         free(opt->uamlist);
122     if (opt->passwdfile && (opt->passwdfile != save->passwdfile))
123         free(opt->passwdfile);
124     if (opt->signatureopt && (opt->signatureopt != save->signatureopt))
125         free(opt->signatureopt);
126     if (opt->k5service && (opt->k5service != save->k5service))
127         free(opt->k5service);
128     if (opt->k5realm && (opt->k5realm != save->k5realm))
129         free(opt->k5realm);
130     if (opt->k5keytab && (opt->k5keytab != save->k5keytab))
131         free(opt->k5keytab);
132     if (opt->unixcodepage && (opt->unixcodepage != save->unixcodepage))
133         free(opt->unixcodepage);
134     if (opt->maccodepage && (opt->maccodepage != save->maccodepage))
135         free(opt->maccodepage);
136
137     if (opt->ntdomain && (opt->ntdomain != save->ntdomain))
138         free(opt->ntdomain);
139     if (opt->ntseparator && (opt->ntseparator != save->ntseparator))
140         free(opt->ntseparator);
141     if (opt->logconfig && (opt->logconfig != save->logconfig))
142         free(opt->logconfig);
143         if (opt->mimicmodel && (opt->mimicmodel != save->mimicmodel))
144         free(opt->mimicmodel);
145 }
146
147 /* initialize options */
148 void afp_options_init(struct afp_options *options)
149 {
150     memset(options, 0, sizeof(struct afp_options));
151     options->connections = 20;
152     options->pidfile = _PATH_AFPDLOCK;
153     options->defaultvol.name = _PATH_AFPDDEFVOL;
154     options->systemvol.name = _PATH_AFPDSYSVOL;
155     options->configfile = _PATH_AFPDCONF;
156     options->sigconffile = _PATH_AFPDSIGCONF;
157     options->uuidconf = _PATH_AFPDUUIDCONF;
158     options->uampath = _PATH_AFPDUAMPATH;
159     options->uamlist = "uams_dhx.so,uams_dhx2.so";
160     options->guest = "nobody";
161     options->loginmesg = "";
162     options->transports = AFPTRANS_TCP; /*  TCP only */
163     options->passwdfile = _PATH_AFPDPWFILE;
164     options->tickleval = 30;
165     options->timeout = 4;       /* 4 tickles = 2 minutes */
166     options->sleep = 10 * 60 * 2; /* 10 h in 30 seconds tick */
167     options->disconnected = 10 * 60 * 2; /* 10 h in 30 seconds tick */
168     options->server_notif = 1;
169     options->authprintdir = NULL;
170     options->signatureopt = "auto";
171     options->umask = 0;
172 #ifdef ADMIN_GRP
173     options->admingid = 0;
174 #endif /* ADMIN_GRP */
175     options->k5service = NULL;
176     options->k5realm = NULL;
177     options->k5keytab = NULL;
178     options->unixcharset = CH_UNIX;
179     options->unixcodepage = "LOCALE";
180     options->maccharset = CH_MAC;
181     options->maccodepage = "MAC_ROMAN";
182     options->volnamelen = 80; /* spec: 255, 10.1: 73, 10.4/10.5: 80 */
183     options->ntdomain = NULL;
184     options->ntseparator = NULL;
185 #ifdef USE_SRVLOC
186     /* don't advertize slp by default */
187     options->flags |= OPTION_NOSLP;
188 #endif
189     options->dircachesize = DEFAULT_MAX_DIRCACHE_SIZE;
190     options->flags |= OPTION_ACL2MACCESS;
191     options->flags |= OPTION_UUID;
192     options->tcp_sndbuf = 0;    /* 0 means don't change OS default */
193     options->tcp_rcvbuf = 0;    /* 0 means don't change OS default */
194     options->dsireadbuf = 12;
195         options->mimicmodel = NULL;
196     options->fce_fmodwait = 60; /* put fmod events 60 seconds on hold */
197 }
198
199 /* parse an afpd.conf line. i'm doing it this way because it's
200  * easy. it is, however, massively hokey. sample afpd.conf:
201  * server:AFPServer@zone -loginmesg "blah blah blah" -nodsi 
202  * "private machine"@zone2 -noguest -port 11012
203  * server2 -nocleartxt -nodsi
204  *
205  * NOTE: this ignores unknown options 
206  */
207 int afp_options_parseline(char *buf, struct afp_options *options)
208 {
209     char *c, *opt;
210
211     /* handle server */
212     if (*buf != '-' && (c = getoption(buf, NULL)) && (opt = strdup(c)))
213         options->server = opt;
214
215     /* parse toggles */
216     if (strstr(buf, " -nodebug"))
217         options->flags &= ~OPTION_DEBUG;
218 #ifdef USE_SRVLOC
219     if (strstr(buf, " -slp"))
220         options->flags &= ~OPTION_NOSLP;
221 #endif
222 #ifdef USE_ZEROCONF
223     if (strstr(buf, " -nozeroconf"))
224         options->flags |= OPTION_NOZEROCONF;
225 #endif
226     if (strstr(buf, " -nouservolfirst"))
227         options->flags &= ~OPTION_USERVOLFIRST;
228     if (strstr(buf, " -uservolfirst"))
229         options->flags |= OPTION_USERVOLFIRST;
230     if (strstr(buf, " -nouservol"))
231         options->flags |= OPTION_NOUSERVOL;
232     if (strstr(buf, " -uservol"))
233         options->flags &= ~OPTION_NOUSERVOL;
234     if (strstr(buf, " -proxy"))
235         options->flags |= OPTION_PROXY;
236     if (strstr(buf, " -noicon"))
237         options->flags &= ~OPTION_CUSTOMICON;
238     if (strstr(buf, " -icon"))
239         options->flags |= OPTION_CUSTOMICON;
240     if (strstr(buf, " -advertise_ssh"))
241         options->flags |= OPTION_ANNOUNCESSH;
242     if (strstr(buf, " -noacl2maccess"))
243         options->flags &= ~OPTION_ACL2MACCESS;
244     if (strstr(buf, " -keepsessions")) {
245         default_options.flags |= OPTION_KEEPSESSIONS;
246         options->flags |= OPTION_KEEPSESSIONS;
247     }
248
249     /* passwd bits */
250     if (strstr(buf, " -nosavepassword"))
251         options->passwdbits |= PASSWD_NOSAVE;
252     if (strstr(buf, " -savepassword"))
253         options->passwdbits &= ~PASSWD_NOSAVE;
254     if (strstr(buf, " -nosetpassword"))
255         options->passwdbits &= ~PASSWD_SET;
256     if (strstr(buf, " -setpassword"))
257         options->passwdbits |= PASSWD_SET;
258
259     /* transports */
260     if (strstr(buf, " -transall"))
261         options->transports = AFPTRANS_ALL;
262     if (strstr(buf, " -notransall"))
263         options->transports = AFPTRANS_NONE;
264     if (strstr(buf, " -tcp"))
265         options->transports |= AFPTRANS_TCP;
266     if (strstr(buf, " -notcp"))
267         options->transports &= ~AFPTRANS_TCP;
268     if (strstr(buf, " -ddp"))
269         options->transports |= AFPTRANS_DDP;
270     if (strstr(buf, " -noddp"))
271         options->transports &= ~AFPTRANS_DDP;
272     if (strstr(buf, "-client_polling"))
273         options->server_notif = 0;
274
275     /* figure out options w/ values. currently, this will ignore the setting
276      * if memory is lacking. */
277
278     if ((c = getoption(buf, "-hostname"))) {
279         int len = strlen (c);
280         if (len <= MAXHOSTNAMELEN) {
281             memcpy(options->hostname, c, len);
282             options->hostname[len] = 0;
283         }
284         else
285             LOG(log_info, logtype_afpd, "WARNING: hostname %s is too long (%d)",c,len);
286     }
287
288     if ((c = getoption(buf, "-defaultvol")) && (opt = strdup(c)))
289         options->defaultvol.name = opt;
290     if ((c = getoption(buf, "-systemvol")) && (opt = strdup(c)))
291         options->systemvol.name = opt;
292     if ((c = getoption(buf, "-loginmesg")) && (opt = strdup(c))) {
293         int i = 0, j = 0;
294         while (c[i]) {
295             if (c[i] != '\\') {
296                 opt[j++] = c[i];
297             } else {
298                 i++;
299                 if (c[i] == 'n')
300                     opt[j++] = '\n';
301             }
302             i++;
303         }
304         opt[j] = 0;
305         options->loginmesg = opt;
306         
307     }
308     if ((c = getoption(buf, "-guestname")) && (opt = strdup(c)))
309         options->guest = opt;
310     if ((c = getoption(buf, "-passwdfile")) && (opt = strdup(c)))
311         options->passwdfile = opt;
312     if ((c = getoption(buf, "-passwdminlen")))
313         options->passwdminlen = MIN(1, atoi(c));
314     if ((c = getoption(buf, "-loginmaxfail")))
315         options->loginmaxfail = atoi(c);
316     if ((c = getoption(buf, "-tickleval"))) {
317         options->tickleval = atoi(c);
318         if (options->tickleval <= 0) {
319             options->tickleval = 30;
320         }
321     }
322     if ((c = getoption(buf, "-timeout"))) {
323         options->timeout = atoi(c);
324         if (options->timeout <= 0) {
325             options->timeout = 4;
326         }
327     }
328
329     if ((c = getoption(buf, "-sleep"))) {
330         options->disconnected = options->sleep = atoi(c) * 120;
331         if (options->sleep <= 4) {
332             options->disconnected = options->sleep = 4;
333         }
334     }
335
336     if ((c = getoption(buf, "-dsireadbuf"))) {
337         options->dsireadbuf = atoi(c);
338         if (options->dsireadbuf < 6)
339             options->dsireadbuf = 6;
340     }
341
342     if ((c = getoption(buf, "-server_quantum")))
343         options->server_quantum = strtoul(c, NULL, 0);
344
345     if ((c = getoption(buf, "-volnamelen"))) {
346         options->volnamelen = atoi(c);
347         if (options->volnamelen < 8) {
348             options->volnamelen = 8; /* max mangled volname "???#FFFF" */
349         }
350         if (options->volnamelen > 255) {
351             options->volnamelen = 255; /* AFP3 spec */
352         }
353     }
354
355     /* -[no]setuplog <logtype> <loglevel> [<filename>]*/
356     c = buf;
357     /* Now THIS is hokey! Multiple occurrences are not supported by our current code, */
358     /* so I have to loop myself. */
359     while (NULL != (c = strstr(c, "-setuplog"))) {
360         char *optstr;
361         if ((optstr = getoption(c, "-setuplog"))) {
362             /* hokey2: options->logconfig must be converted to store an array of logstrings */
363             if (options->logconfig)
364                 free(options->logconfig);
365             options->logconfig = strdup(optstr);
366             setuplog(optstr);
367             c += sizeof("-setuplog");
368         }
369     }
370
371     if ((c = getoption(buf, "-unsetuplog")))
372       unsetuplog(c);
373
374 #ifdef ADMIN_GRP
375     if ((c = getoption(buf, "-admingroup"))) {
376         struct group *gr = getgrnam(c);
377         if (gr != NULL) {
378             options->admingid = gr->gr_gid;
379         }
380     }
381 #endif /* ADMIN_GRP */
382
383     if ((c = getoption(buf, "-k5service")) && (opt = strdup(c)))
384         options->k5service = opt;
385     if ((c = getoption(buf, "-k5realm")) && (opt = strdup(c)))
386         options->k5realm = opt;
387     if ((c = getoption(buf, "-k5keytab"))) {
388         if ( NULL == (options->k5keytab = (char *) malloc(sizeof(char)*(strlen(c)+14)) )) {
389                 LOG(log_error, logtype_afpd, "malloc failed");
390                 exit(-1);
391         }
392         snprintf(options->k5keytab, strlen(c)+14, "KRB5_KTNAME=%s", c);
393         putenv(options->k5keytab);
394         /* setenv( "KRB5_KTNAME", c, 1 ); */
395     }
396     if ((c = getoption(buf, "-authprintdir")) && (opt = strdup(c)))
397         options->authprintdir = opt;
398     if ((c = getoption(buf, "-uampath")) && (opt = strdup(c)))
399         options->uampath = opt;
400     if ((c = getoption(buf, "-uamlist")) && (opt = strdup(c)))
401         options->uamlist = opt;
402
403     if ((c = getoption(buf, "-ipaddr"))) {
404 #if 0
405         struct in_addr inaddr;
406         if (inet_aton(c, &inaddr) && (opt = strdup(c))) {
407             if (!gethostbyaddr((const char *) &inaddr, sizeof(inaddr), AF_INET))
408                 LOG(log_info, logtype_afpd, "WARNING: can't find %s", opt);
409             options->ipaddr = opt;
410         }
411         else {
412             LOG(log_error, logtype_afpd, "Error parsing -ipaddr, is %s in numbers-and-dots notation?", c);
413         }
414 #endif
415         options->ipaddr = strdup(c);
416     }
417
418     /* FIXME CNID Cnid_srv is a server attribute */
419     if ((c = getoption(buf, "-cnidserver"))) {
420         char *p = strrchr(c, ':');
421         if (p)
422             *p = 0;
423         Cnid_srv = strdup(c);
424         if (p)
425             Cnid_port = strdup(p + 1);
426         LOG(log_debug, logtype_afpd, "CNID Server: %s:%s", Cnid_srv, Cnid_port);
427     }
428
429     if ((c = getoption(buf, "-port")))
430         options->port = strdup(c);
431     if ((c = getoption(buf, "-signature")) && (opt = strdup(c)))
432         options->signatureopt = opt;
433
434     /* do a little checking for the domain name. */
435     if ((c = getoption(buf, "-fqdn"))) {
436         char *p = strchr(c, ':');
437         if (p)
438             *p = '\0';
439         if (gethostbyname(c)) {
440             if (p)
441                 *p = ':';
442             if ((opt = strdup(c)))
443                 options->fqdn = opt;
444         }
445         else {
446             LOG(log_error, logtype_afpd, "error parsing -fqdn, gethostbyname failed for: %s", c);
447         }
448     }
449
450     if ((c = getoption(buf, "-unixcodepage"))) {
451         if ((charset_t)-1  == ( options->unixcharset = add_charset(c)) ) {
452             options->unixcharset = CH_UNIX;
453             LOG(log_warning, logtype_afpd, "setting Unix codepage to '%s' failed", c);
454         }
455         else {
456             if ((opt = strdup(c)))
457                 options->unixcodepage = opt;
458         }
459     }
460         
461     if ((c = getoption(buf, "-maccodepage"))) {
462         if ((charset_t)-1 == ( options->maccharset = add_charset(c)) ) {
463             options->maccharset = CH_MAC;
464             LOG(log_warning, logtype_afpd, "setting Mac codepage to '%s' failed", c);
465         }
466         else {
467             if ((opt = strdup(c)))
468                 options->maccodepage = opt;
469         }
470     }
471     
472     if ((c = strstr(buf, "-closevol"))) {
473         options->closevol= 1;
474     }
475
476     if ((c = getoption(buf, "-ntdomain")) && (opt = strdup(c)))
477        options->ntdomain = opt;
478
479     if ((c = getoption(buf, "-ntseparator")) && (opt = strdup(c)))
480        options->ntseparator = opt;
481
482     if ((c = getoption(buf, "-dircachesize")))
483         options->dircachesize = atoi(c);
484      
485     if ((c = getoption(buf, "-tcpsndbuf")))
486         options->tcp_sndbuf = atoi(c);
487
488     if ((c = getoption(buf, "-tcprcvbuf")))
489         options->tcp_rcvbuf = atoi(c);
490
491         if ((c = getoption(buf, "-fcelistener"))) {
492                 LOG(log_note, logtype_afpd, "Adding fce listener \"%s\"", c);
493                 fce_add_udp_socket(c);
494         }
495         if ((c = getoption(buf, "-fcecoalesce"))) {
496                 LOG(log_note, logtype_afpd, "Fce coalesce: %s", c);
497                 fce_set_coalesce(c);
498         }
499         if ((c = getoption(buf, "-fceevents"))) {
500                 LOG(log_note, logtype_afpd, "Fce events: %s", c);
501                 fce_set_events(c);
502         }
503
504     if ((c = getoption(buf, "-fceholdfmod")))
505         options->fce_fmodwait = atoi(c);
506
507     if ((c = getoption(buf, "-mimicmodel")) && (opt = strdup(c)))
508        options->mimicmodel = opt;
509
510     return 1;
511 }
512
513 /*
514  * Show version information about afpd.
515  * Used by "afp -v".
516  */
517 static void show_version( void )
518 {
519         int num, i;
520
521         printf( "afpd %s - Apple Filing Protocol (AFP) daemon of Netatalk\n\n", VERSION );
522
523         puts( "This program is free software; you can redistribute it and/or modify it under" );
524         puts( "the terms of the GNU General Public License as published by the Free Software" );
525         puts( "Foundation; either version 2 of the License, or (at your option) any later" );
526         puts( "version. Please see the file COPYING for further information and details.\n" );
527
528         puts( "afpd has been compiled with support for these features:\n" );
529
530         num = sizeof( afp_versions ) / sizeof( afp_versions[ 0 ] );
531         printf( "          AFP versions:\t" );
532         for ( i = 0; i < num; i++ ) {
533                 printf( "%d.%d ", afp_versions[ i ].av_number/10, afp_versions[ i ].av_number%10);
534         }
535         puts( "" );
536
537         printf( "         CNID backends:\t" );
538 #ifdef CNID_BACKEND_CDB
539         printf( "cdb ");
540 #endif
541 #ifdef CNID_BACKEND_DB3
542         printf( "db3 " );
543 #endif
544 #ifdef CNID_BACKEND_DBD
545 #ifdef CNID_BACKEND_DBD_TXN
546         printf( "dbd-txn " );
547 #else
548         printf( "dbd " );
549 #endif
550 #endif
551 #ifdef CNID_BACKEND_HASH
552         printf( "hash " );
553 #endif
554 #ifdef CNID_BACKEND_LAST
555         printf( "last " );
556 #endif
557 #ifdef CNID_BACKEND_MTAB
558         printf( "mtab " );
559 #endif
560 #ifdef CNID_BACKEND_TDB
561         printf( "tdb " );
562 #endif
563         puts( "" );
564 }
565
566 /*
567  * Show extended version information about afpd and Netatalk.
568  * Used by "afp -V".
569  */
570 static void show_version_extended(void )
571 {
572         show_version( );
573
574         printf( "           SLP support:\t" );
575 #ifdef USE_SRVLOC
576         puts( "Yes" );
577 #else
578         puts( "No" );
579 #endif
580
581         printf( "      Zeroconf support:\t" );
582 #ifdef USE_ZEROCONF
583         puts( "Yes" );
584 #else
585         puts( "No" );
586 #endif
587
588         printf( "  TCP wrappers support:\t" );
589 #ifdef TCPWRAP
590         puts( "Yes" );
591 #else
592         puts( "No" );
593 #endif
594
595         printf( "         Quota support:\t" );
596 #ifndef NO_QUOTA_SUPPORT
597         puts( "Yes" );
598 #else
599         puts( "No" );
600 #endif
601
602         printf( "   Admin group support:\t" );
603 #ifdef ADMIN_GRP
604         puts( "Yes" );
605 #else
606         puts( "No" );
607 #endif
608
609         printf( "    Valid shell checks:\t" );
610 #ifndef DISABLE_SHELLCHECK
611         puts( "Yes" );
612 #else
613         puts( "No" );
614 #endif
615
616         printf( "      cracklib support:\t" );
617 #ifdef USE_CRACKLIB
618         puts( "Yes" );
619 #else
620         puts( "No" );
621 #endif
622
623         printf( "           ACL support:\t" );
624 #ifdef HAVE_ACLS
625         puts( "Yes" );
626 #else
627         puts( "No" );
628 #endif
629
630         printf( "            EA support:\t" );
631         puts( EA_MODULES );
632
633         printf( "          LDAP support:\t" );
634 #ifdef HAVE_LDAP
635         puts( "Yes" );
636 #else
637         puts( "No" );
638 #endif
639 }
640
641 /*
642  * Display compiled-in default paths
643  */
644 static void show_paths( void )
645 {
646         printf( "             afpd.conf:\t%s\n", _PATH_AFPDCONF );
647         printf( "   AppleVolumes.system:\t%s\n", _PATH_AFPDSYSVOL );
648         printf( "  AppleVolumes.default:\t%s\n", _PATH_AFPDDEFVOL );
649         printf( "    afp_signature.conf:\t%s\n", _PATH_AFPDSIGCONF );
650         printf( "      afp_voluuid.conf:\t%s\n", _PATH_AFPDUUIDCONF );
651 #ifdef HAVE_LDAP
652         printf( "         afp_ldap.conf:\t%s\n", _PATH_ACL_LDAPCONF );
653 #else
654         printf( "         afp_ldap.conf:\tnot supported\n");
655 #endif
656         printf( "       UAM search path:\t%s\n", _PATH_AFPDUAMPATH );
657         printf( "  Server messages path:\t%s\n", SERVERTEXT);
658         printf( "              lockfile:\t%s\n", _PATH_AFPDLOCK);
659 }
660
661 /*
662  * Display usage information about afpd.
663  */
664 static void show_usage( char *name )
665 {
666         fprintf( stderr, "Usage:\t%s [-duptDTI] [-f defaultvolumes] [-s systemvolumes] [-n nbpname]\n", name );
667         fprintf( stderr, "\t     [-c maxconnections] [-g guest] [-P pidfile] [-S port] [-L message]\n" );
668         fprintf( stderr, "\t     [-F configfile] [-U uams] [-m umask]\n" );
669         fprintf( stderr, "\t%s -h|-v|-V\n", name );
670 }
671
672 int afp_options_parse(int ac, char **av, struct afp_options *options)
673 {
674     extern char *optarg;
675     extern int optind;
676
677     char *p;
678     char *tmp;  /* Used for error checking the result of strtol */
679     int c, err = 0;
680
681     if (gethostname(options->hostname, sizeof(options->hostname )) < 0 ) {
682         perror( "gethostname" );
683         return 0;
684     }
685     if (NULL != ( p = strchr(options->hostname, '.' )) ) {
686         *p = '\0';
687     }
688
689 #ifdef ultrix
690     if (NULL == ( p = strrchr( av[ 0 ], '/' )) ) {
691         p = av[ 0 ];
692     } else {
693         p++;
694     }
695     openlog( p, LOG_PID ); /* ultrix only */
696 #endif /* ultrix */
697
698     while (EOF != ( c = getopt( ac, av, OPTIONS )) ) {
699         switch ( c ) {
700         case 'd' :
701             options->flags |= OPTION_DEBUG;
702             break;
703         case 'n' :
704             options->server = optarg;
705             break;
706         case 'f' :
707             options->defaultvol.name = optarg;
708             break;
709         case 's' :
710             options->systemvol.name = optarg;
711             break;
712         case 'u' :
713             options->flags |= OPTION_USERVOLFIRST;
714             break;
715         case 'c' :
716             options->connections = atoi( optarg );
717             break;
718         case 'g' :
719             options->guest = optarg;
720             break;
721
722         case 'P' :
723             options->pidfile = optarg;
724             break;
725
726         case 'p':
727             options->passwdbits |= PASSWD_NOSAVE;
728             break;
729         case 't':
730             options->passwdbits |= PASSWD_SET;
731             break;
732
733         case 'D':
734             options->transports &= ~AFPTRANS_DDP;
735             break;
736         case 'S':
737             options->port = optarg;
738             break;
739         case 'T':
740             options->transports &= ~AFPTRANS_TCP;
741             break;
742         case 'L':
743             options->loginmesg = optarg;
744             break;
745         case 'F':
746             options->configfile = optarg;
747             break;
748         case 'U':
749             options->uamlist = optarg;
750             break;
751         case 'v':       /* version */
752             show_version( ); puts( "" );
753             show_paths( ); puts( "" );
754             exit( 0 );
755             break;
756         case 'V':       /* extended version */
757             show_version_extended( ); puts( "" );
758             show_paths( ); puts( "" );
759             exit( 0 );
760             break;
761         case 'h':       /* usage */
762             show_usage( p );
763             exit( 0 );
764             break;
765         case 'I':
766             options->flags |= OPTION_CUSTOMICON;
767             break;
768         case 'm':
769             options->umask = strtoul(optarg, &tmp, 8);
770             if ((options->umask > 0777)) {
771                 fprintf(stderr, "%s: out of range umask setting provided\n", p);
772                 err++;
773             }
774             if (tmp[0] != '\0') {
775                 fprintf(stderr, "%s: invalid characters in umask setting provided\n", p);
776                 err++;
777             }
778             break;
779         default :
780             err++;
781         }
782     }
783     if ( err || optind != ac ) {
784         show_usage( p );
785         exit( 2 );
786     }
787
788     return 1;
789 }