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