]> arthur.barton.de Git - netatalk.git/blob - etc/afpd/afp_options.c
Implement runtime logging config option to cnid dbd backend. See #2721956.
[netatalk.git] / etc / afpd / afp_options.c
1 /*
2  * $Id: afp_options.c,v 1.41 2009-03-31 11:40:26 franklahm 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     options->volnamelen = 80; /* spec: 255, 10.1: 73, 10.4/10.5: 80 */
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     if ((c = getoption(buf, "-volnamelen"))) {
312         options->volnamelen = atoi(c);
313         if (options->volnamelen < 8) {
314             options->volnamelen = 8; /* max mangled volname "???#FFFF" */
315         }
316         if (options->volnamelen > 255) {
317             options->volnamelen = 255; /* AFP3 spec */
318         }
319     }
320
321     /* -[no]setuplog <logtype> <loglevel> [<filename>]*/
322     if ((c = getoption(buf, "-setuplog")))
323       setuplog(c);
324
325     if ((c = getoption(buf, "-unsetuplog")))
326       unsetuplog(c);
327
328 #ifdef ADMIN_GRP
329     if ((c = getoption(buf, "-admingroup"))) {
330         struct group *gr = getgrnam(c);
331         if (gr != NULL) {
332             options->admingid = gr->gr_gid;
333         }
334     }
335 #endif /* ADMIN_GRP */
336
337     if ((c = getoption(buf, "-k5service")) && (opt = strdup(c)))
338         options->k5service = opt;
339     if ((c = getoption(buf, "-k5realm")) && (opt = strdup(c)))
340         options->k5realm = opt;
341     if ((c = getoption(buf, "-k5keytab"))) {
342         if ( NULL == (options->k5keytab = (char *) malloc(sizeof(char)*(strlen(c)+14)) )) {
343                 LOG(log_error, logtype_afpd, "malloc failed");
344                 exit(-1);
345         }
346         snprintf(options->k5keytab, strlen(c)+14, "KRB5_KTNAME=%s", c);
347         putenv(options->k5keytab);
348         /* setenv( "KRB5_KTNAME", c, 1 ); */
349     }
350     if ((c = getoption(buf, "-authprintdir")) && (opt = strdup(c)))
351         options->authprintdir = opt;
352     if ((c = getoption(buf, "-uampath")) && (opt = strdup(c)))
353         options->uampath = opt;
354     if ((c = getoption(buf, "-uamlist")) && (opt = strdup(c)))
355         options->uamlist = opt;
356
357     if ((c = getoption(buf, "-ipaddr"))) {
358         struct in_addr inaddr;
359         if (inet_aton(c, &inaddr) && (opt = strdup(c))) {
360             if (!gethostbyaddr((const char *) &inaddr, sizeof(inaddr), AF_INET))
361                 LOG(log_info, logtype_afpd, "WARNING: can't find %s", opt);
362             options->ipaddr = opt;
363         }
364         else {
365             LOG(log_error, logtype_afpd, "Error parsing -ipaddr, is %s in numbers-and-dots notation?", c);
366         }
367     }
368
369     /* FIXME CNID Cnid_srv is a server attribute */
370     if ((c = getoption(buf, "-cnidserver"))) {
371         char *p;
372         int len;        
373         p = strchr(c, ':');
374         if (p != NULL && (len = p - c) <= MAXHOSTNAMELEN) {
375             memcpy(Cnid_srv, c, len);
376             Cnid_srv[len] = 0;
377             Cnid_port = atoi(p +1);
378         }
379     }
380
381     if ((c = getoption(buf, "-port")))
382         options->port = atoi(c);
383     if ((c = getoption(buf, "-ddpaddr")))
384         atalk_aton(c, &options->ddpaddr);
385     if ((c = getoption(buf, "-signature")) && (opt = strdup(c)))
386         options->signature = opt;
387
388     /* do a little checking for the domain name. */
389     if ((c = getoption(buf, "-fqdn"))) {
390         char *p = strchr(c, ':');
391         if (p)
392             *p = '\0';
393         if (gethostbyname(c)) {
394             if (p)
395                 *p = ':';
396             if ((opt = strdup(c)))
397                 options->fqdn = opt;
398         }
399         else {
400             LOG(log_error, logtype_afpd, "error parsing -fqdn, gethostbyname failed for: %s", c);
401         }
402     }
403
404     if ((c = getoption(buf, "-unixcodepage"))) {
405         if ((charset_t)-1  == ( options->unixcharset = add_charset(c)) ) {
406             options->unixcharset = CH_UNIX;
407             LOG(log_warning, logtype_afpd, "setting Unix codepage to '%s' failed", c);
408         }
409         else {
410             if ((opt = strdup(c)))
411                 options->unixcodepage = opt;
412         }
413     }
414         
415     if ((c = getoption(buf, "-maccodepage"))) {
416         if ((charset_t)-1 == ( options->maccharset = add_charset(c)) ) {
417             options->maccharset = CH_MAC;
418             LOG(log_warning, logtype_afpd, "setting Mac codepage to '%s' failed", c);
419         }
420         else {
421             if ((opt = strdup(c)))
422                 options->maccodepage = opt;
423         }
424     }
425     
426     if ((c = strstr(buf, "-closevol"))) {
427         options->closevol= 1;
428     }
429
430     if ((c = getoption(buf, "-ntdomain")) && (opt = strdup(c)))
431        options->ntdomain = opt;
432
433     if ((c = getoption(buf, "-ntseparator")) && (opt = strdup(c)))
434        options->ntseparator = opt;
435      
436     return 1;
437 }
438
439 /*
440  * Show version information about afpd.
441  * Used by "afp -v".
442  */
443 void show_version( )
444 {
445         printf( "afpd %s - Apple Filing Protocol (AFP) daemon of Netatalk\n\n", VERSION );
446
447         puts( "This program is free software; you can redistribute it and/or modify it under" );
448         puts( "the terms of the GNU General Public License as published by the Free Software" );
449         puts( "Foundation; either version 2 of the License, or (at your option) any later" );
450         puts( "version. Please see the file COPYING for further information and details.\n" );
451
452         puts( "afpd has been compiled with support for these features:\n" );
453
454         printf( "        AFP3.1 support:\t" );
455 #ifdef AFP3x
456         puts( "Yes" );
457 #else
458         puts( "No" );
459 #endif
460
461         printf( "      Transport layers:\t" );
462 #ifdef NO_DDP
463         puts( "TCP/IP" );
464 #else
465         puts( "TCP/IP DDP" );
466 #endif
467
468         printf( "         CNID backends:\t" );
469 #ifdef CNID_BACKEND_CDB
470         printf( "cdb ");
471 #endif
472 #ifdef CNID_BACKEND_DB3
473         printf( "db3 " );
474 #endif
475 #ifdef CNID_BACKEND_DBD
476 #ifdef CNID_BACKEND_DBD_TXN
477         printf( "dbd-txn " );
478 #else
479         printf( "dbd " );
480 #endif
481 #endif
482 #ifdef CNID_BACKEND_HASH
483         printf( "hash " );
484 #endif
485 #ifdef CNID_BACKEND_LAST
486         printf( "last " );
487 #endif
488 #ifdef CNID_BACKEND_MTAB
489         printf( "mtab " );
490 #endif
491 #ifdef CNID_BACKEND_TDB
492         printf( "tdb " );
493 #endif
494         puts( "" );
495 }
496
497 /*
498  * Show extended version information about afpd and Netatalk.
499  * Used by "afp -V".
500  */
501 void show_version_extended( )
502 {
503         show_version( );
504
505         printf( "           SLP support:\t" );
506 #ifdef USE_SRVLOC
507         puts( "Yes" );
508 #else
509         puts( "No" );
510 #endif
511
512         printf( "  TCP wrappers support:\t" );
513 #ifdef TCPWRAP
514         puts( "Yes" );
515 #else
516         puts( "No" );
517 #endif
518
519         printf( "         Quota support:\t" );
520 #ifndef NO_QUOTA_SUPPORT
521         puts( "Yes" );
522 #else
523         puts( "No" );
524 #endif
525
526         printf( "   Admin group support:\t" );
527 #ifdef ADMIN_GRP
528         puts( "Yes" );
529 #else
530         puts( "No" );
531 #endif
532
533         printf( "    Valid shell checks:\t" );
534 #ifndef DISABLE_SHELLCHECK
535         puts( "Yes" );
536 #else
537         puts( "No" );
538 #endif
539
540         printf( "      cracklib support:\t" );
541 #ifdef USE_CRACKLIB
542         puts( "Yes" );
543 #else
544         puts( "No" );
545 #endif
546
547         printf( "        Dropbox kludge:\t" );
548 #ifdef DROPKLUDGE
549         puts( "Yes" );
550 #else
551         puts( "No" );
552 #endif
553
554         printf( "  Force volume uid/gid:\t" );
555 #ifdef FORCE_UIDGID
556         puts( "Yes" );
557 #else
558         puts( "No" );
559 #endif
560 }
561
562 /*
563  * Display compiled-in default paths
564  */
565 void show_paths( void )
566 {
567         printf( "             afpd.conf:\t%s\n", _PATH_AFPDCONF );
568         printf( "   AppleVolumes.system:\t%s\n", _PATH_AFPDSYSVOL );
569         printf( "  AppleVolumes.default:\t%s\n", _PATH_AFPDDEFVOL );
570         printf( "       UAM search path:\t%s\n", _PATH_AFPDUAMPATH );
571 }
572
573 /*
574  * Display usage information about adpd.
575  */
576 void show_usage( char *name )
577 {
578         fprintf( stderr, "Usage:\t%s [-dDIptTu] [-c maxconnections] [-f defaultvolumes] [-F config]\n", name );
579         fprintf( stderr, "\t     [-g guest] [-L message] [-m umask][-n nbpname] [-P pidfile]\n" );
580         fprintf( stderr, "\t     [-s systemvolumes] [-S port] [-U uams]\n" );
581         fprintf( stderr, "\t%s -h|-v|-V\n", name );
582 }
583
584 int afp_options_parse(int ac, char **av, struct afp_options *options)
585 {
586     extern char *optarg;
587     extern int optind;
588
589     char *p;
590     char *tmp;  /* Used for error checking the result of strtol */
591     int c, err = 0;
592
593     if (gethostname(options->hostname, sizeof(options->hostname )) < 0 ) {
594         perror( "gethostname" );
595         return 0;
596     }
597     if (NULL != ( p = strchr(options->hostname, '.' )) ) {
598         *p = '\0';
599     }
600
601     if (NULL == ( p = strrchr( av[ 0 ], '/' )) ) {
602         p = av[ 0 ];
603     } else {
604         p++;
605     }
606
607     while (EOF != ( c = getopt( ac, av, OPTIONS )) ) {
608         switch ( c ) {
609         case 'd' :
610             options->flags |= OPTION_DEBUG;
611             break;
612         case 'n' :
613             options->server = optarg;
614             break;
615         case 'f' :
616             options->defaultvol.name = optarg;
617             break;
618         case 's' :
619             options->systemvol.name = optarg;
620             break;
621         case 'u' :
622             options->flags |= OPTION_USERVOLFIRST;
623             break;
624         case 'c' :
625             options->connections = atoi( optarg );
626             break;
627         case 'g' :
628             options->guest = optarg;
629             break;
630
631         case 'P' :
632             options->pidfile = optarg;
633             break;
634
635         case 'p':
636             options->passwdbits |= PASSWD_NOSAVE;
637             break;
638         case 't':
639             options->passwdbits |= PASSWD_SET;
640             break;
641
642         case 'D':
643             options->transports &= ~AFPTRANS_DDP;
644             break;
645         case 'S':
646             options->port = atoi(optarg);
647             break;
648         case 'T':
649             options->transports &= ~AFPTRANS_TCP;
650             break;
651         case 'L':
652             options->loginmesg = optarg;
653             break;
654         case 'F':
655             options->configfile = optarg;
656             break;
657         case 'U':
658             options->uamlist = optarg;
659             break;
660         case 'v':       /* version */
661             show_version( ); puts( "" );
662             show_paths( ); puts( "" );
663             exit( 0 );
664             break;
665         case 'V':       /* extended version */
666             show_version_extended( ); puts( "" );
667             show_paths( ); puts( "" );
668             exit( 0 );
669             break;
670         case 'h':       /* usage */
671             show_usage( p );
672             exit( 0 );
673             break;
674         case 'I':
675             options->flags |= OPTION_CUSTOMICON;
676             break;
677         case 'm':
678             options->umask = strtoul(optarg, &tmp, 8);
679             if ((options->umask > 0777)) {
680                 fprintf(stderr, "%s: out of range umask setting provided\n", p);
681                 err++;
682             }
683             if (tmp[0] != '\0') {
684                 fprintf(stderr, "%s: invalid characters in umask setting provided\n", p);
685                 err++;
686             }
687             break;
688         default :
689             err++;
690         }
691     }
692     if ( err || optind != ac ) {
693         show_usage( p );
694         exit( 2 );
695     }
696
697 #ifdef ultrix
698     openlog( p, LOG_PID ); /* ultrix only */
699 #else
700     set_processname(p);
701 #endif /* ultrix */
702
703     return 1;
704 }