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