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