]> arthur.barton.de Git - netatalk.git/blob - etc/afpd/afp_options.c
Head <-> 1.6 patch reduction.
[netatalk.git] / etc / afpd / afp_options.c
1 /*
2  * $Id: afp_options.c,v 1.32 2003-06-09 15:09:19 srittau 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 #define OPTIONS "dn:f:s:uc:g:P:ptDS:TL:F:U:Ivm:"
65 #define LENGTH 512
66
67 /* return an option. this uses an internal array, so it's necessary
68  * to duplicate it if you want to hold it for long. this is probably
69  * non-optimal. */
70 static char *getoption(char *buf, const char *option)
71 {
72     static char string[LENGTH + 1];
73     char *end;
74     int len;
75
76     if (option && (buf = strstr(buf, option)))
77         buf = strpbrk(buf, " \t");
78
79     while (buf && isspace(*buf))
80         buf++;
81
82     if (!buf)
83         return NULL;
84
85     /* search for any quoted stuff */
86     if (*buf == '"' && (end = strchr(buf + 1, '"'))) {
87         buf++;
88         len = MIN(end - buf, LENGTH);
89     } else if ((end = strpbrk(buf, " \t\n"))) /* option or eoln */
90         len = MIN(end - buf, LENGTH);
91     else
92         len = MIN(strlen(buf), LENGTH);
93
94     strncpy(string, buf, len);
95     string[len] = '\0';
96     return string;
97 }
98
99 /* get rid of any allocated afp_option buffers. */
100 void afp_options_free(struct afp_options *opt,
101                       const struct afp_options *save)
102 {
103     if (opt->defaultvol && (opt->defaultvol != save->defaultvol))
104         free(opt->defaultvol);
105     if (opt->systemvol && (opt->systemvol != save->systemvol))
106         free(opt->systemvol);
107     if (opt->loginmesg && (opt->loginmesg != save->loginmesg))
108         free(opt->loginmesg);
109     if (opt->guest && (opt->guest != save->guest))
110         free(opt->guest);
111     if (opt->server && (opt->server != save->server))
112         free(opt->server);
113     if (opt->ipaddr && (opt->ipaddr != save->ipaddr))
114         free(opt->ipaddr);
115     if (opt->fqdn && (opt->fqdn != save->fqdn))
116         free(opt->fqdn);
117     if (opt->uampath && (opt->uampath != save->uampath))
118         free(opt->uampath);
119     if (opt->uamlist && (opt->uamlist != save->uamlist))
120         free(opt->uamlist);
121     if (opt->nlspath && (opt->nlspath != save->nlspath))
122         free(opt->nlspath);
123     if (opt->passwdfile && (opt->passwdfile != save->passwdfile))
124         free(opt->passwdfile);
125     if (opt->signature && (opt->signature != save->signature))
126         free(opt->signature);
127     if (opt->k5service && (opt->k5service != save->k5service))
128         free(opt->k5service);
129     if (opt->k5realm && (opt->k5realm != save->k5realm))
130         free(opt->k5realm);
131 }
132
133 /* initialize options */
134 void afp_options_init(struct afp_options *options)
135 {
136     memset(options, 0, sizeof(struct afp_options));
137     options->connections = 20;
138     options->pidfile = _PATH_AFPDLOCK;
139     options->defaultvol = _PATH_AFPDDEFVOL;
140     options->systemvol = _PATH_AFPDSYSVOL;
141     options->configfile = _PATH_AFPDCONF;
142     options->nlspath = _PATH_AFPDNLSPATH;
143     options->uampath = _PATH_AFPDUAMPATH;
144     options->uamlist = "uams_clrtxt.so,uams_dhx.so";
145     options->guest = "nobody";
146     options->loginmesg = "";
147     options->transports = AFPTRANS_ALL;
148     options->passwdfile = _PATH_AFPDPWFILE;
149     options->tickleval = 30;
150     options->timeout = 4;
151     options->sleep = 10* 120; /* 10 h in 30 seconds tick */
152     options->server_notif = 1;
153     options->authprintdir = NULL;
154     options->signature = "host";
155     options->umask = 0;
156 #ifdef ADMIN_GRP
157     options->admingid = 0;
158 #endif /* ADMIN_GRP */
159     options->k5service = NULL;
160     options->k5realm = NULL;
161 }
162
163 /* parse an afpd.conf line. i'm doing it this way because it's
164  * easy. it is, however, massively hokey. sample afpd.conf:
165  * server:AFPServer@zone -loginmesg "blah blah blah" -nodsi 
166  * "private machine"@zone2 -noguest -port 11012
167  * server2 -nocleartxt -nodsi
168  *
169  * NOTE: this ignores unknown options 
170  */
171 int afp_options_parseline(char *buf, struct afp_options *options)
172 {
173     char *c, *opt;
174
175     /* handle server */
176     if (*buf != '-' && (c = getoption(buf, NULL)) && (opt = strdup(c)))
177         options->server = opt;
178
179     /* parse toggles */
180     if (strstr(buf, " -nodebug"))
181         options->flags &= ~OPTION_DEBUG;
182 #ifdef USE_SRVLOC
183     if (strstr(buf, " -noslp"))
184         options->flags |= OPTION_NOSLP;
185 #endif /* USE_SRVLOC */
186
187     if (strstr(buf, " -nouservolfirst"))
188         options->flags &= ~OPTION_USERVOLFIRST;
189     if (strstr(buf, " -uservolfirst"))
190         options->flags |= OPTION_USERVOLFIRST;
191     if (strstr(buf, " -nouservol"))
192         options->flags |= OPTION_NOUSERVOL;
193     if (strstr(buf, " -uservol"))
194         options->flags &= ~OPTION_NOUSERVOL;
195     if (strstr(buf, " -proxy"))
196         options->flags |= OPTION_PROXY;
197     if (strstr(buf, " -noicon"))
198         options->flags &= ~OPTION_CUSTOMICON;
199     if (strstr(buf, " -icon"))
200         options->flags |= OPTION_CUSTOMICON;
201
202     /* passwd bits */
203     if (strstr(buf, " -nosavepassword"))
204         options->passwdbits |= PASSWD_NOSAVE;
205     if (strstr(buf, " -savepassword"))
206         options->passwdbits &= ~PASSWD_NOSAVE;
207     if (strstr(buf, " -nosetpassword"))
208         options->passwdbits &= ~PASSWD_SET;
209     if (strstr(buf, " -setpassword"))
210         options->passwdbits |= PASSWD_SET;
211
212     /* transports */
213     if (strstr(buf, " -transall"))
214         options->transports = AFPTRANS_ALL;
215     if (strstr(buf, " -notransall"))
216         options->transports = AFPTRANS_NONE;
217     if (strstr(buf, " -tcp"))
218         options->transports |= AFPTRANS_TCP;
219     if (strstr(buf, " -notcp"))
220         options->transports &= ~AFPTRANS_TCP;
221     if (strstr(buf, " -ddp"))
222         options->transports |= AFPTRANS_DDP;
223     if (strstr(buf, " -noddp"))
224         options->transports &= ~AFPTRANS_DDP;
225     if (strstr(buf, "-client_polling"))
226         options->server_notif = 0;
227
228     /* figure out options w/ values. currently, this will ignore the setting
229      * if memory is lacking. */
230     if ((c = getoption(buf, "-defaultvol")) && (opt = strdup(c)))
231         options->defaultvol = opt;
232     if ((c = getoption(buf, "-systemvol")) && (opt = strdup(c)))
233         options->systemvol = opt;
234     if ((c = getoption(buf, "-loginmesg")) && (opt = strdup(c)))
235         options->loginmesg = opt;
236     if ((c = getoption(buf, "-guestname")) && (opt = strdup(c)))
237         options->guest = opt;
238     if ((c = getoption(buf, "-passwdfile")) && (opt = strdup(c)))
239         options->passwdfile = opt;
240     if ((c = getoption(buf, "-passwdminlen")))
241         options->passwdminlen = MIN(1, atoi(c));
242     if ((c = getoption(buf, "-loginmaxfail")))
243         options->loginmaxfail = atoi(c);
244     if ((c = getoption(buf, "-tickleval"))) {
245         options->tickleval = atoi(c);
246         if (options->tickleval <= 0) {
247             options->tickleval = 30;
248         }
249     }
250     if ((c = getoption(buf, "-timeout"))) {
251         options->timeout = atoi(c);
252         if (options->timeout <= 0) {
253             options->timeout = 4;
254         }
255     }
256
257     if ((c = getoption(buf, "-sleep"))) {
258         options->sleep = atoi(c) *120;
259         if (options->sleep <= 4) {
260             options->sleep = 4;
261         }
262     }
263
264     if ((c = getoption(buf, "-server_quantum")))
265         options->server_quantum = strtoul(c, NULL, 0);
266
267 #ifndef DISABLE_LOGGER
268     /* -setuplogtype <syslog|filelog> <logtype> <loglevel> <filename>*/
269     /* -[no]setuplog <logtype> <loglevel> [<filename>]*/
270     if ((c = getoption(buf, "-setuplog")))
271     {
272       char *ptr, *logtype, *loglevel, *filename;
273 #if 0
274       char *logsource;
275 #endif
276
277       LOG(log_debug6, logtype_afpd, "setting up logtype, c is %s", c);
278       ptr = c;
279
280 #if 0
281       logsource = ptr = c;
282       if (ptr)
283       {
284         ptr = strpbrk(ptr, " \t");
285         if (ptr) 
286         {
287           *ptr++ = 0;
288           while (*ptr && isspace(*ptr))
289             ptr++;
290         }
291       }
292 #endif
293
294       logtype = ptr; 
295       if (ptr)
296       {
297         ptr = strpbrk(ptr, " \t");
298         if (ptr) 
299         {
300           *ptr++ = 0;
301           while (*ptr && isspace(*ptr))
302             ptr++;
303         }
304       }
305
306       loglevel = ptr;
307       if (ptr)
308       {
309         ptr = strpbrk(ptr, " \t");
310         if (ptr) 
311         {
312           *ptr++ = 0;
313           while (*ptr && isspace(*ptr))
314             ptr++;
315         }
316       }
317
318       filename = ptr;
319       if (ptr)
320       {
321         ptr = strpbrk(ptr, " \t");
322         if (ptr) 
323         {
324           *ptr++ = 0;
325           while (*ptr && isspace(*ptr))
326             ptr++;
327         }
328       }
329
330       LOG(log_debug7, logtype_afpd, "calling setuplog %s %s %s", 
331           logtype, loglevel, filename);
332
333       setuplog(logtype, loglevel, filename);
334     }
335
336     if ((c = getoption(buf, "-unsetuplog")))
337     {
338       char *ptr, *logtype, *loglevel, *filename;
339
340       LOG(log_debug6, logtype_afpd, "unsetting up logtype, c is %s", c);
341
342       ptr = c;
343       logtype = ptr;
344       if (ptr)
345       {
346         ptr = strpbrk(ptr, " \t");
347         if (ptr)
348         {
349           *ptr++ = 0;
350           while (*ptr && isspace(*ptr))
351             ptr++;
352         }
353       }
354
355       loglevel = ptr;
356       if (ptr)
357       {
358         ptr = strpbrk(ptr, " \t");
359         if (ptr)
360         {
361           *ptr++ = 0;
362            while (*ptr && isspace(*ptr))
363              ptr++;
364         }
365       }
366
367       filename = ptr;
368       if (ptr)
369       {
370         ptr = strpbrk(ptr, " \t");
371         if (ptr)
372         {
373           *ptr++ = 0;
374           while (*ptr && isspace(*ptr))
375             ptr++;
376         }
377       }
378       
379       LOG(log_debug7, logtype_afpd, "calling setuplog %s %s %s",
380               logtype, NULL, filename);
381
382       setuplog(logtype, NULL, filename);
383     }
384 #endif /* DISABLE_LOGGER */
385 #ifdef ADMIN_GRP
386     if ((c = getoption(buf, "-admingroup"))) {
387         struct group *gr = getgrnam(c);
388         if (gr != NULL) {
389             options->admingid = gr->gr_gid;
390         }
391     }
392 #endif /* ADMIN_GRP */
393
394     if ((c = getoption(buf, "-k5service")) && (opt = strdup(c)))
395         options->k5service = opt;
396     if ((c = getoption(buf, "-k5realm")) && (opt = strdup(c)))
397         options->k5realm = opt;
398     if ((c = getoption(buf, "-k5keytab")))
399         setenv( "KRB5_KTNAME", c, 1 );
400     if ((c = getoption(buf, "-authprintdir")) && (opt = strdup(c)))
401         options->authprintdir = opt;
402     if ((c = getoption(buf, "-uampath")) && (opt = strdup(c)))
403         options->uampath = opt;
404     if ((c = getoption(buf, "-uamlist")) && (opt = strdup(c)))
405         options->uamlist = opt;
406     if ((c = getoption(buf, "-nlspath")) && (opt = strdup(c)))
407         options->nlspath = opt;
408
409     if ((c = getoption(buf, "-ipaddr"))) {
410         struct in_addr inaddr;
411         if (inet_aton(c, &inaddr) && (opt = strdup(c))) {
412             if (!gethostbyaddr((const char *) &inaddr, sizeof(inaddr), AF_INET))
413                 LOG(log_info, logtype_afpd, "WARNING: can't find %s\n", opt);
414             options->ipaddr = opt;
415         }
416     }
417
418     if ((c = getoption(buf, "-port")))
419         options->port = atoi(c);
420     if ((c = getoption(buf, "-ddpaddr")))
421         atalk_aton(c, &options->ddpaddr);
422     if ((c = getoption(buf, "-signature")) && (opt = strdup(c)))
423         options->signature = opt;
424
425     /* do a little checking for the domain name. */
426     if ((c = getoption(buf, "-fqdn"))) {
427         char *p = strchr(c, ':');
428         if (p)
429             *p = '\0';
430         if (gethostbyname(c)) {
431             if (p)
432                 *p = ':';
433             if ((opt = strdup(c)))
434                 options->fqdn = opt;
435         }
436     }
437
438     return 1;
439 }
440
441 int afp_options_parse(int ac, char **av, struct afp_options *options)
442 {
443     extern char *optarg;
444     extern int optind;
445
446     char *p;
447     char *tmp;  /* Used for error checking the result of strtol */
448     int c, err = 0;
449
450     if (gethostname(options->hostname, sizeof(options->hostname )) < 0 ) {
451         perror( "gethostname" );
452         return 0;
453     }
454     if (NULL != ( p = strchr(options->hostname, '.' )) ) {
455         *p = '\0';
456     }
457
458     if (NULL == ( p = strrchr( av[ 0 ], '/' )) ) {
459         p = av[ 0 ];
460     } else {
461         p++;
462     }
463
464     while (EOF != ( c = getopt( ac, av, OPTIONS )) ) {
465         switch ( c ) {
466         case 'd' :
467             options->flags |= OPTION_DEBUG;
468             break;
469         case 'n' :
470             options->server = optarg;
471             break;
472         case 'f' :
473             options->defaultvol = optarg;
474             break;
475         case 's' :
476             options->systemvol = optarg;
477             break;
478         case 'u' :
479             options->flags |= OPTION_USERVOLFIRST;
480             break;
481         case 'c' :
482             options->connections = atoi( optarg );
483             break;
484         case 'g' :
485             options->guest = optarg;
486             break;
487
488         case 'P' :
489             options->pidfile = optarg;
490             break;
491
492         case 'p':
493             options->passwdbits |= PASSWD_NOSAVE;
494             break;
495         case 't':
496             options->passwdbits |= PASSWD_SET;
497             break;
498
499         case 'D':
500             options->transports &= ~AFPTRANS_DDP;
501             break;
502         case 'S':
503             options->port = atoi(optarg);
504             break;
505         case 'T':
506             options->transports &= ~AFPTRANS_TCP;
507             break;
508         case 'L':
509             options->loginmesg = optarg;
510             break;
511         case 'F':
512             options->configfile = optarg;
513             break;
514         case 'U':
515             options->uamlist = optarg;
516             break;
517         case 'v':       /* version */
518             printf( "afpd (version %s)\n", VERSION );
519             exit ( 1 );
520             break;
521         case 'I':
522             options->flags |= OPTION_CUSTOMICON;
523             break;
524         case 'm':
525             options->umask = strtoul(optarg, &tmp, 8);
526             if ((options->umask > 0777)) {
527                 fprintf(stderr, "%s: out of range umask setting provided\n", p);
528                 err++;
529             }
530             if (tmp[0] != '\0') {
531                 fprintf(stderr, "%s: invalid characters in umask setting provided\n", p);
532                 err++;
533             }
534             break;
535         default :
536             err++;
537         }
538     }
539     if ( err || optind != ac ) {
540         fprintf( stderr,
541                  "Usage:\t%s [ -dpDTIt ] [ -n nbpname ] [ -f defvols ] \
542                  [ -P pidfile ] [ -s sysvols ] \n", p );
543         fprintf( stderr,
544                  "\t[ -u ] [ -c maxconn ] [ -g guest ] \
545                  [ -S port ] [ -L loginmesg ] [ -F configfile ] [ -U uamlist ]\n" );
546         return 0;
547     }
548
549 #ifdef ultrix
550     openlog( p, LOG_PID ); /* ultrix only */
551 #else /* ultrix */
552     set_processname(p);
553     syslog_setup(log_debug, logtype_default, logoption_ndelay|logoption_pid, logfacility_daemon);
554 #endif /* ultrix */
555
556     return 1;
557 }