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