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