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