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