]> git.ozlabs.org Git - ppp.git/blob - pppd/options.c
pppd: Check tdb pointer before closing
[ppp.git] / pppd / options.c
1 /*
2  * options.c - handles option processing for PPP.
3  *
4  * Copyright (c) 1984-2000 Carnegie Mellon University. All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  *
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  *
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in
15  *    the documentation and/or other materials provided with the
16  *    distribution.
17  *
18  * 3. The name "Carnegie Mellon University" must not be used to
19  *    endorse or promote products derived from this software without
20  *    prior written permission. For permission or any legal
21  *    details, please contact
22  *      Office of Technology Transfer
23  *      Carnegie Mellon University
24  *      5000 Forbes Avenue
25  *      Pittsburgh, PA  15213-3890
26  *      (412) 268-4387, fax: (412) 268-7395
27  *      tech-transfer@andrew.cmu.edu
28  *
29  * 4. Redistributions of any form whatsoever must retain the following
30  *    acknowledgment:
31  *    "This product includes software developed by Computing Services
32  *     at Carnegie Mellon University (http://www.cmu.edu/computing/)."
33  *
34  * CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO
35  * THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
36  * AND FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE
37  * FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
38  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
39  * AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
40  * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
41  */
42
43 #define RCSID   "$Id: options.c,v 1.102 2008/06/15 06:53:06 paulus Exp $"
44
45 #include <ctype.h>
46 #include <stdio.h>
47 #include <errno.h>
48 #include <unistd.h>
49 #include <fcntl.h>
50 #include <stdlib.h>
51 #include <syslog.h>
52 #include <string.h>
53 #include <pwd.h>
54 #ifdef PLUGIN
55 #include <dlfcn.h>
56 #endif
57
58 #ifdef PPP_FILTER
59 #include <pcap.h>
60 /*
61  * There have been 3 or 4 different names for this in libpcap CVS, but
62  * this seems to be what they have settled on...
63  * For older versions of libpcap, use DLT_PPP - but that means
64  * we lose the inbound and outbound qualifiers.
65  */
66 #ifndef DLT_PPP_PPPD
67 #ifdef DLT_PPP_WITHDIRECTION
68 #define DLT_PPP_PPPD    DLT_PPP_WITHDIRECTION
69 #else
70 #define DLT_PPP_PPPD    DLT_PPP
71 #endif
72 #endif
73 #endif /* PPP_FILTER */
74
75 #include "pppd.h"
76 #include "pathnames.h"
77
78 #if defined(ultrix) || defined(NeXT)
79 char *strdup __P((char *));
80 #endif
81
82
83 struct option_value {
84     struct option_value *next;
85     const char *source;
86     char value[1];
87 };
88
89 /*
90  * Option variables and default values.
91  */
92 int     debug = 0;              /* Debug flag */
93 int     kdebugflag = 0;         /* Tell kernel to print debug messages */
94 int     default_device = 1;     /* Using /dev/tty or equivalent */
95 char    devnam[MAXPATHLEN];     /* Device name */
96 bool    nodetach = 0;           /* Don't detach from controlling tty */
97 bool    updetach = 0;           /* Detach once link is up */
98 bool    master_detach;          /* Detach when we're (only) multilink master */
99 #ifdef SYSTEMD
100 bool    up_sdnotify = 0;        /* Notify systemd once link is up */
101 #endif
102 int     maxconnect = 0;         /* Maximum connect time */
103 char    user[MAXNAMELEN];       /* Username for PAP */
104 char    passwd[MAXSECRETLEN];   /* Password for PAP */
105 bool    persist = 0;            /* Reopen link after it goes down */
106 char    our_name[MAXNAMELEN];   /* Our name for authentication purposes */
107 bool    demand = 0;             /* do dial-on-demand */
108 char    *ipparam = NULL;        /* Extra parameter for ip up/down scripts */
109 int     idle_time_limit = 0;    /* Disconnect if idle for this many seconds */
110 int     holdoff = 30;           /* # seconds to pause before reconnecting */
111 bool    holdoff_specified;      /* true if a holdoff value has been given */
112 int     log_to_fd = 1;          /* send log messages to this fd too */
113 bool    log_default = 1;        /* log_to_fd is default (stdout) */
114 int     maxfail = 10;           /* max # of unsuccessful connection attempts */
115 char    linkname[MAXPATHLEN];   /* logical name for link */
116 bool    tune_kernel;            /* may alter kernel settings */
117 int     connect_delay = 1000;   /* wait this many ms after connect script */
118 int     req_unit = -1;          /* requested interface unit */
119 char    req_ifname[MAXIFNAMELEN];       /* requested interface name */
120 bool    multilink = 0;          /* Enable multilink operation */
121 char    *bundle_name = NULL;    /* bundle name for multilink */
122 bool    dump_options;           /* print out option values */
123 bool    dryrun;                 /* print out option values and exit */
124 char    *domain;                /* domain name set by domain option */
125 int     child_wait = 5;         /* # seconds to wait for children at exit */
126 struct userenv *userenv_list;   /* user environment variables */
127 int     dfl_route_metric = -1;  /* metric of the default route to set over the PPP link */
128
129 #ifdef MAXOCTETS
130 unsigned int  maxoctets = 0;    /* default - no limit */
131 int maxoctets_dir = 0;       /* default - sum of traffic */
132 int maxoctets_timeout = 1;   /* default 1 second */ 
133 #endif
134
135
136 extern option_t auth_options[];
137 extern struct stat devstat;
138
139 #ifdef PPP_FILTER
140 struct  bpf_program pass_filter;/* Filter program for packets to pass */
141 struct  bpf_program active_filter; /* Filter program for link-active pkts */
142 #endif
143
144 static option_t *curopt;        /* pointer to option being processed */
145 char *current_option;           /* the name of the option being parsed */
146 int  privileged_option;         /* set iff the current option came from root */
147 char *option_source;            /* string saying where the option came from */
148 int  option_priority = OPRIO_CFGFILE; /* priority of the current options */
149 bool devnam_fixed;              /* can no longer change device name */
150
151 static int logfile_fd = -1;     /* fd opened for log file */
152 static char logfile_name[MAXPATHLEN];   /* name of log file */
153
154 /*
155  * Prototypes
156  */
157 static int setdomain __P((char **));
158 static int readfile __P((char **));
159 static int callfile __P((char **));
160 static int showversion __P((char **));
161 static int showhelp __P((char **));
162 static void usage __P((void));
163 static int setlogfile __P((char **));
164 #ifdef PLUGIN
165 static int loadplugin __P((char **));
166 #endif
167
168 #ifdef PPP_FILTER
169 static int setpassfilter __P((char **));
170 static int setactivefilter __P((char **));
171 #endif
172
173 #ifdef MAXOCTETS
174 static int setmodir __P((char **));
175 #endif
176
177 static int user_setenv __P((char **));
178 static void user_setprint __P((option_t *, printer_func, void *));
179 static int user_unsetenv __P((char **));
180 static void user_unsetprint __P((option_t *, printer_func, void *));
181
182 static option_t *find_option __P((const char *name));
183 static int process_option __P((option_t *, char *, char **));
184 static int n_arguments __P((option_t *));
185 static int number_option __P((char *, u_int32_t *, int));
186
187 /*
188  * Structure to store extra lists of options.
189  */
190 struct option_list {
191     option_t *options;
192     struct option_list *next;
193 };
194
195 static struct option_list *extra_options = NULL;
196
197 /*
198  * Valid arguments.
199  */
200 option_t general_options[] = {
201     { "debug", o_int, &debug,
202       "Increase debugging level", OPT_INC | OPT_NOARG | 1 },
203     { "-d", o_int, &debug,
204       "Increase debugging level",
205       OPT_ALIAS | OPT_INC | OPT_NOARG | 1 },
206
207     { "kdebug", o_int, &kdebugflag,
208       "Set kernel driver debug level", OPT_PRIO },
209
210     { "nodetach", o_bool, &nodetach,
211       "Don't detach from controlling tty", OPT_PRIO | 1 },
212     { "-detach", o_bool, &nodetach,
213       "Don't detach from controlling tty", OPT_ALIAS | OPT_PRIOSUB | 1 },
214 #ifdef SYSTEMD
215     { "up_sdnotify", o_bool, &up_sdnotify,
216       "Notify systemd once link is up (implies nodetach)",
217       OPT_PRIOSUB | OPT_A2COPY | 1, &nodetach },
218 #endif
219     { "updetach", o_bool, &updetach,
220       "Detach from controlling tty once link is up",
221       OPT_PRIOSUB | OPT_A2CLR | 1, &nodetach },
222
223     { "master_detach", o_bool, &master_detach,
224       "Detach when we're multilink master but have no link", 1 },
225
226     { "holdoff", o_int, &holdoff,
227       "Set time in seconds before retrying connection",
228       OPT_PRIO, &holdoff_specified },
229
230     { "idle", o_int, &idle_time_limit,
231       "Set time in seconds before disconnecting idle link", OPT_PRIO },
232
233     { "maxconnect", o_int, &maxconnect,
234       "Set connection time limit",
235       OPT_PRIO | OPT_LLIMIT | OPT_NOINCR | OPT_ZEROINF },
236
237     { "domain", o_special, (void *)setdomain,
238       "Add given domain name to hostname",
239       OPT_PRIO | OPT_PRIV | OPT_A2STRVAL, &domain },
240
241     { "file", o_special, (void *)readfile,
242       "Take options from a file", OPT_NOPRINT },
243     { "call", o_special, (void *)callfile,
244       "Take options from a privileged file", OPT_NOPRINT },
245
246     { "persist", o_bool, &persist,
247       "Keep on reopening connection after close", OPT_PRIO | 1 },
248     { "nopersist", o_bool, &persist,
249       "Turn off persist option", OPT_PRIOSUB },
250
251     { "demand", o_bool, &demand,
252       "Dial on demand", OPT_INITONLY | 1, &persist },
253
254     { "--version", o_special_noarg, (void *)showversion,
255       "Show version number" },
256     { "--help", o_special_noarg, (void *)showhelp,
257       "Show brief listing of options" },
258     { "-h", o_special_noarg, (void *)showhelp,
259       "Show brief listing of options", OPT_ALIAS },
260
261     { "logfile", o_special, (void *)setlogfile,
262       "Append log messages to this file",
263       OPT_PRIO | OPT_A2STRVAL | OPT_STATIC, &logfile_name },
264     { "logfd", o_int, &log_to_fd,
265       "Send log messages to this file descriptor",
266       OPT_PRIOSUB | OPT_A2CLR, &log_default },
267     { "nolog", o_int, &log_to_fd,
268       "Don't send log messages to any file",
269       OPT_PRIOSUB | OPT_NOARG | OPT_VAL(-1) },
270     { "nologfd", o_int, &log_to_fd,
271       "Don't send log messages to any file descriptor",
272       OPT_PRIOSUB | OPT_ALIAS | OPT_NOARG | OPT_VAL(-1) },
273
274     { "linkname", o_string, linkname,
275       "Set logical name for link",
276       OPT_PRIO | OPT_PRIV | OPT_STATIC, NULL, MAXPATHLEN },
277
278     { "maxfail", o_int, &maxfail,
279       "Maximum number of unsuccessful connection attempts to allow",
280       OPT_PRIO },
281
282     { "ktune", o_bool, &tune_kernel,
283       "Alter kernel settings as necessary", OPT_PRIO | 1 },
284     { "noktune", o_bool, &tune_kernel,
285       "Don't alter kernel settings", OPT_PRIOSUB },
286
287     { "connect-delay", o_int, &connect_delay,
288       "Maximum time (in ms) to wait after connect script finishes",
289       OPT_PRIO },
290
291     { "unit", o_int, &req_unit,
292       "PPP interface unit number to use if possible",
293       OPT_PRIO | OPT_LLIMIT, 0, 0 },
294
295     { "ifname", o_string, req_ifname,
296       "Set PPP interface name",
297       OPT_PRIO | OPT_PRIV | OPT_STATIC, NULL, MAXIFNAMELEN },
298
299     { "dump", o_bool, &dump_options,
300       "Print out option values after parsing all options", 1 },
301     { "dryrun", o_bool, &dryrun,
302       "Stop after parsing, printing, and checking options", 1 },
303
304     { "child-timeout", o_int, &child_wait,
305       "Number of seconds to wait for child processes at exit",
306       OPT_PRIO },
307
308     { "set", o_special, (void *)user_setenv,
309       "Set user environment variable",
310       OPT_A2PRINTER | OPT_NOPRINT, (void *)user_setprint },
311     { "unset", o_special, (void *)user_unsetenv,
312       "Unset user environment variable",
313       OPT_A2PRINTER | OPT_NOPRINT, (void *)user_unsetprint },
314
315     { "defaultroute-metric", o_int, &dfl_route_metric,
316       "Metric to use for the default route (Linux only; -1 for default behavior)",
317       OPT_PRIV|OPT_LLIMIT|OPT_INITONLY, NULL, 0, -1 },
318
319 #ifdef HAVE_MULTILINK
320     { "multilink", o_bool, &multilink,
321       "Enable multilink operation", OPT_PRIO | 1 },
322     { "mp", o_bool, &multilink,
323       "Enable multilink operation", OPT_PRIOSUB | OPT_ALIAS | 1 },
324     { "nomultilink", o_bool, &multilink,
325       "Disable multilink operation", OPT_PRIOSUB | 0 },
326     { "nomp", o_bool, &multilink,
327       "Disable multilink operation", OPT_PRIOSUB | OPT_ALIAS | 0 },
328
329     { "bundle", o_string, &bundle_name,
330       "Bundle name for multilink", OPT_PRIO },
331 #endif /* HAVE_MULTILINK */
332
333 #ifdef PLUGIN
334     { "plugin", o_special, (void *)loadplugin,
335       "Load a plug-in module into pppd", OPT_PRIV | OPT_A2LIST },
336 #endif
337
338 #ifdef PPP_FILTER
339     { "pass-filter", o_special, setpassfilter,
340       "set filter for packets to pass", OPT_PRIO },
341
342     { "active-filter", o_special, setactivefilter,
343       "set filter for active pkts", OPT_PRIO },
344 #endif
345
346 #ifdef MAXOCTETS
347     { "maxoctets", o_int, &maxoctets,
348       "Set connection traffic limit",
349       OPT_PRIO | OPT_LLIMIT | OPT_NOINCR | OPT_ZEROINF },
350     { "mo", o_int, &maxoctets,
351       "Set connection traffic limit",
352       OPT_ALIAS | OPT_PRIO | OPT_LLIMIT | OPT_NOINCR | OPT_ZEROINF },
353     { "mo-direction", o_special, setmodir,
354       "Set direction for limit traffic (sum,in,out,max)" },
355     { "mo-timeout", o_int, &maxoctets_timeout,
356       "Check for traffic limit every N seconds", OPT_PRIO | OPT_LLIMIT | 1 },
357 #endif
358
359     { NULL }
360 };
361
362 #ifndef IMPLEMENTATION
363 #define IMPLEMENTATION ""
364 #endif
365
366 static char *usage_string = "\
367 pppd version %s\n\
368 Usage: %s [ options ], where options are:\n\
369         <device>        Communicate over the named device\n\
370         <speed>         Set the baud rate to <speed>\n\
371         <loc>:<rem>     Set the local and/or remote interface IP\n\
372                         addresses.  Either one may be omitted.\n\
373         asyncmap <n>    Set the desired async map to hex <n>\n\
374         auth            Require authentication from peer\n\
375         connect <p>     Invoke shell command <p> to set up the serial line\n\
376         crtscts         Use hardware RTS/CTS flow control\n\
377         defaultroute    Add default route through interface\n\
378         file <f>        Take options from file <f>\n\
379         modem           Use modem control lines\n\
380         mru <n>         Set MRU value to <n> for negotiation\n\
381 See pppd(8) for more options.\n\
382 ";
383
384 /*
385  * parse_args - parse a string of arguments from the command line.
386  */
387 int
388 parse_args(argc, argv)
389     int argc;
390     char **argv;
391 {
392     char *arg;
393     option_t *opt;
394     int n;
395
396     privileged_option = privileged;
397     option_source = "command line";
398     option_priority = OPRIO_CMDLINE;
399     while (argc > 0) {
400         arg = *argv++;
401         --argc;
402         opt = find_option(arg);
403         if (opt == NULL) {
404             option_error("unrecognized option '%s'", arg);
405             usage();
406             return 0;
407         }
408         n = n_arguments(opt);
409         if (argc < n) {
410             option_error("too few parameters for option %s", arg);
411             return 0;
412         }
413         if (!process_option(opt, arg, argv))
414             return 0;
415         argc -= n;
416         argv += n;
417     }
418     return 1;
419 }
420
421 /*
422  * options_from_file - Read a string of options from a file,
423  * and interpret them.
424  */
425 int
426 options_from_file(filename, must_exist, check_prot, priv)
427     char *filename;
428     int must_exist;
429     int check_prot;
430     int priv;
431 {
432     FILE *f;
433     int i, newline, ret, err;
434     option_t *opt;
435     int oldpriv, n;
436     char *oldsource;
437     uid_t euid;
438     char *argv[MAXARGS];
439     char args[MAXARGS][MAXWORDLEN];
440     char cmd[MAXWORDLEN];
441
442     euid = geteuid();
443     if (check_prot && seteuid(getuid()) == -1) {
444         option_error("unable to drop privileges to open %s: %m", filename);
445         return 0;
446     }
447     f = fopen(filename, "r");
448     err = errno;
449     if (check_prot && seteuid(euid) == -1)
450         fatal("unable to regain privileges");
451     if (f == NULL) {
452         errno = err;
453         if (!must_exist) {
454             if (err != ENOENT && err != ENOTDIR)
455                 warn("Warning: can't open options file %s: %m", filename);
456             return 1;
457         }
458         option_error("Can't open options file %s: %m", filename);
459         return 0;
460     }
461
462     oldpriv = privileged_option;
463     privileged_option = priv;
464     oldsource = option_source;
465     option_source = strdup(filename);
466     if (option_source == NULL)
467         option_source = "file";
468     ret = 0;
469     while (getword(f, cmd, &newline, filename)) {
470         opt = find_option(cmd);
471         if (opt == NULL) {
472             option_error("In file %s: unrecognized option '%s'",
473                          filename, cmd);
474             goto err;
475         }
476         n = n_arguments(opt);
477         for (i = 0; i < n; ++i) {
478             if (!getword(f, args[i], &newline, filename)) {
479                 option_error(
480                         "In file %s: too few parameters for option '%s'",
481                         filename, cmd);
482                 goto err;
483             }
484             argv[i] = args[i];
485         }
486         if (!process_option(opt, cmd, argv))
487             goto err;
488     }
489     ret = 1;
490
491 err:
492     fclose(f);
493     privileged_option = oldpriv;
494     option_source = oldsource;
495     return ret;
496 }
497
498 /*
499  * options_from_user - See if the use has a ~/.ppprc file,
500  * and if so, interpret options from it.
501  */
502 int
503 options_from_user()
504 {
505     char *user, *path, *file;
506     int ret;
507     struct passwd *pw;
508     size_t pl;
509
510     pw = getpwuid(getuid());
511     if (pw == NULL || (user = pw->pw_dir) == NULL || user[0] == 0)
512         return 1;
513     file = _PATH_USEROPT;
514     pl = strlen(user) + strlen(file) + 2;
515     path = malloc(pl);
516     if (path == NULL)
517         novm("init file name");
518     slprintf(path, pl, "%s/%s", user, file);
519     option_priority = OPRIO_CFGFILE;
520     ret = options_from_file(path, 0, 1, privileged);
521     free(path);
522     return ret;
523 }
524
525 /*
526  * options_for_tty - See if an options file exists for the serial
527  * device, and if so, interpret options from it.
528  * We only allow the per-tty options file to override anything from
529  * the command line if it is something that the user can't override
530  * once it has been set by root; this is done by giving configuration
531  * files a lower priority than the command line.
532  */
533 int
534 options_for_tty()
535 {
536     char *dev, *path, *p;
537     int ret;
538     size_t pl;
539
540     dev = devnam;
541     if ((p = strstr(dev, "/dev/")) != NULL)
542         dev = p + 5;
543     if (dev[0] == 0 || strcmp(dev, "tty") == 0)
544         return 1;               /* don't look for /etc/ppp/options.tty */
545     pl = strlen(_PATH_TTYOPT) + strlen(dev) + 1;
546     path = malloc(pl);
547     if (path == NULL)
548         novm("tty init file name");
549     slprintf(path, pl, "%s%s", _PATH_TTYOPT, dev);
550     /* Turn slashes into dots, for Solaris case (e.g. /dev/term/a) */
551     for (p = path + strlen(_PATH_TTYOPT); *p != 0; ++p)
552         if (*p == '/')
553             *p = '.';
554     option_priority = OPRIO_CFGFILE;
555     ret = options_from_file(path, 0, 0, 1);
556     free(path);
557     return ret;
558 }
559
560 /*
561  * options_from_list - process a string of options in a wordlist.
562  */
563 int
564 options_from_list(w, priv)
565     struct wordlist *w;
566     int priv;
567 {
568     char *argv[MAXARGS];
569     option_t *opt;
570     int i, n, ret = 0;
571     struct wordlist *w0;
572
573     privileged_option = priv;
574     option_source = "secrets file";
575     option_priority = OPRIO_SECFILE;
576
577     while (w != NULL) {
578         opt = find_option(w->word);
579         if (opt == NULL) {
580             option_error("In secrets file: unrecognized option '%s'",
581                          w->word);
582             goto err;
583         }
584         n = n_arguments(opt);
585         w0 = w;
586         for (i = 0; i < n; ++i) {
587             w = w->next;
588             if (w == NULL) {
589                 option_error(
590                         "In secrets file: too few parameters for option '%s'",
591                         w0->word);
592                 goto err;
593             }
594             argv[i] = w->word;
595         }
596         if (!process_option(opt, w0->word, argv))
597             goto err;
598         w = w->next;
599     }
600     ret = 1;
601
602 err:
603     return ret;
604 }
605
606 /*
607  * match_option - see if this option matches an option_t structure.
608  */
609 static int
610 match_option(name, opt, dowild)
611     char *name;
612     option_t *opt;
613     int dowild;
614 {
615         int (*match) __P((char *, char **, int));
616
617         if (dowild != (opt->type == o_wild))
618                 return 0;
619         if (!dowild)
620                 return strcmp(name, opt->name) == 0;
621         match = (int (*) __P((char *, char **, int))) opt->addr;
622         return (*match)(name, NULL, 0);
623 }
624
625 /*
626  * find_option - scan the option lists for the various protocols
627  * looking for an entry with the given name.
628  * This could be optimized by using a hash table.
629  */
630 static option_t *
631 find_option(name)
632     const char *name;
633 {
634         option_t *opt;
635         struct option_list *list;
636         int i, dowild;
637
638         for (dowild = 0; dowild <= 1; ++dowild) {
639                 for (opt = general_options; opt->name != NULL; ++opt)
640                         if (match_option(name, opt, dowild))
641                                 return opt;
642                 for (opt = auth_options; opt->name != NULL; ++opt)
643                         if (match_option(name, opt, dowild))
644                                 return opt;
645                 for (list = extra_options; list != NULL; list = list->next)
646                         for (opt = list->options; opt->name != NULL; ++opt)
647                                 if (match_option(name, opt, dowild))
648                                         return opt;
649                 for (opt = the_channel->options; opt->name != NULL; ++opt)
650                         if (match_option(name, opt, dowild))
651                                 return opt;
652                 for (i = 0; protocols[i] != NULL; ++i)
653                         if ((opt = protocols[i]->options) != NULL)
654                                 for (; opt->name != NULL; ++opt)
655                                         if (match_option(name, opt, dowild))
656                                                 return opt;
657         }
658         return NULL;
659 }
660
661 /*
662  * process_option - process one new-style option.
663  */
664 static int
665 process_option(opt, cmd, argv)
666     option_t *opt;
667     char *cmd;
668     char **argv;
669 {
670     u_int32_t v;
671     int iv, a;
672     char *sv;
673     int (*parser) __P((char **));
674     int (*wildp) __P((char *, char **, int));
675     char *optopt = (opt->type == o_wild)? "": " option";
676     int prio = option_priority;
677     option_t *mainopt = opt;
678
679     current_option = opt->name;
680     if ((opt->flags & OPT_PRIVFIX) && privileged_option)
681         prio += OPRIO_ROOT;
682     while (mainopt->flags & OPT_PRIOSUB)
683         --mainopt;
684     if (mainopt->flags & OPT_PRIO) {
685         if (prio < mainopt->priority) {
686             /* new value doesn't override old */
687             if (prio == OPRIO_CMDLINE && mainopt->priority > OPRIO_ROOT) {
688                 option_error("%s%s set in %s cannot be overridden\n",
689                              opt->name, optopt, mainopt->source);
690                 return 0;
691             }
692             return 1;
693         }
694         if (prio > OPRIO_ROOT && mainopt->priority == OPRIO_CMDLINE)
695             warn("%s%s from %s overrides command line",
696                  opt->name, optopt, option_source);
697     }
698
699     if ((opt->flags & OPT_INITONLY) && phase != PHASE_INITIALIZE) {
700         option_error("%s%s cannot be changed after initialization",
701                      opt->name, optopt);
702         return 0;
703     }
704     if ((opt->flags & OPT_PRIV) && !privileged_option) {
705         option_error("using the %s%s requires root privilege",
706                      opt->name, optopt);
707         return 0;
708     }
709     if ((opt->flags & OPT_ENABLE) && *(bool *)(opt->addr2) == 0) {
710         option_error("%s%s is disabled", opt->name, optopt);
711         return 0;
712     }
713     if ((opt->flags & OPT_DEVEQUIV) && devnam_fixed) {
714         option_error("the %s%s may not be changed in %s",
715                      opt->name, optopt, option_source);
716         return 0;
717     }
718
719     switch (opt->type) {
720     case o_bool:
721         v = opt->flags & OPT_VALUE;
722         *(bool *)(opt->addr) = v;
723         if (opt->addr2 && (opt->flags & OPT_A2COPY))
724             *(bool *)(opt->addr2) = v;
725         else if (opt->addr2 && (opt->flags & OPT_A2CLR))
726             *(bool *)(opt->addr2) = 0;
727         else if (opt->addr2 && (opt->flags & OPT_A2CLRB))
728             *(u_char *)(opt->addr2) &= ~v;
729         else if (opt->addr2 && (opt->flags & OPT_A2OR))
730             *(u_char *)(opt->addr2) |= v;
731         break;
732
733     case o_int:
734         iv = 0;
735         if ((opt->flags & OPT_NOARG) == 0) {
736             if (!int_option(*argv, &iv))
737                 return 0;
738             if ((((opt->flags & OPT_LLIMIT) && iv < opt->lower_limit)
739                  || ((opt->flags & OPT_ULIMIT) && iv > opt->upper_limit))
740                 && !((opt->flags & OPT_ZEROOK && iv == 0))) {
741                 char *zok = (opt->flags & OPT_ZEROOK)? " zero or": "";
742                 switch (opt->flags & OPT_LIMITS) {
743                 case OPT_LLIMIT:
744                     option_error("%s value must be%s >= %d",
745                                  opt->name, zok, opt->lower_limit);
746                     break;
747                 case OPT_ULIMIT:
748                     option_error("%s value must be%s <= %d",
749                                  opt->name, zok, opt->upper_limit);
750                     break;
751                 case OPT_LIMITS:
752                     option_error("%s value must be%s between %d and %d",
753                                 opt->name, zok, opt->lower_limit, opt->upper_limit);
754                     break;
755                 }
756                 return 0;
757             }
758         }
759         a = opt->flags & OPT_VALUE;
760         if (a >= 128)
761             a -= 256;           /* sign extend */
762         iv += a;
763         if (opt->flags & OPT_INC)
764             iv += *(int *)(opt->addr);
765         if ((opt->flags & OPT_NOINCR) && !privileged_option) {
766             int oldv = *(int *)(opt->addr);
767             if ((opt->flags & OPT_ZEROINF) ?
768                 (oldv != 0 && (iv == 0 || iv > oldv)) : (iv > oldv)) {
769                 option_error("%s value cannot be increased", opt->name);
770                 return 0;
771             }
772         }
773         *(int *)(opt->addr) = iv;
774         if (opt->addr2 && (opt->flags & OPT_A2COPY))
775             *(int *)(opt->addr2) = iv;
776         break;
777
778     case o_uint32:
779         if (opt->flags & OPT_NOARG) {
780             v = opt->flags & OPT_VALUE;
781             if (v & 0x80)
782                     v |= 0xffffff00U;
783         } else if (!number_option(*argv, &v, 16))
784             return 0;
785         if (opt->flags & OPT_OR)
786             v |= *(u_int32_t *)(opt->addr);
787         *(u_int32_t *)(opt->addr) = v;
788         if (opt->addr2 && (opt->flags & OPT_A2COPY))
789             *(u_int32_t *)(opt->addr2) = v;
790         break;
791
792     case o_string:
793         if (opt->flags & OPT_STATIC) {
794             strlcpy((char *)(opt->addr), *argv, opt->upper_limit);
795         } else {
796             char **optptr = (char **)(opt->addr);
797             sv = strdup(*argv);
798             if (sv == NULL)
799                 novm("option argument");
800             if (*optptr)
801                 free(*optptr);
802             *optptr = sv;
803         }
804         break;
805
806     case o_special_noarg:
807     case o_special:
808         parser = (int (*) __P((char **))) opt->addr;
809         curopt = opt;
810         if (!(*parser)(argv))
811             return 0;
812         if (opt->flags & OPT_A2LIST) {
813             struct option_value *ovp, *pp;
814
815             ovp = malloc(sizeof(*ovp) + strlen(*argv));
816             if (ovp != 0) {
817                 strcpy(ovp->value, *argv);
818                 ovp->source = option_source;
819                 ovp->next = NULL;
820                 if (opt->addr2 == NULL) {
821                     opt->addr2 = ovp;
822                 } else {
823                     for (pp = opt->addr2; pp->next != NULL; pp = pp->next)
824                         ;
825                     pp->next = ovp;
826                 }
827             }
828         }
829         break;
830
831     case o_wild:
832         wildp = (int (*) __P((char *, char **, int))) opt->addr;
833         if (!(*wildp)(cmd, argv, 1))
834             return 0;
835         break;
836     }
837
838     /*
839      * If addr2 wasn't used by any flag (OPT_A2COPY, etc.) but is set,
840      * treat it as a bool and set/clear it based on the OPT_A2CLR bit.
841      */
842     if (opt->addr2 && (opt->flags & (OPT_A2COPY|OPT_ENABLE
843                 |OPT_A2PRINTER|OPT_A2STRVAL|OPT_A2LIST|OPT_A2OR)) == 0)
844         *(bool *)(opt->addr2) = !(opt->flags & OPT_A2CLR);
845
846     mainopt->source = option_source;
847     mainopt->priority = prio;
848     mainopt->winner = opt - mainopt;
849
850     return 1;
851 }
852
853 /*
854  * override_value - if the option priorities would permit us to
855  * override the value of option, return 1 and update the priority
856  * and source of the option value.  Otherwise returns 0.
857  */
858 int
859 override_value(option, priority, source)
860     const char *option;
861     int priority;
862     const char *source;
863 {
864         option_t *opt;
865
866         opt = find_option(option);
867         if (opt == NULL)
868                 return 0;
869         while (opt->flags & OPT_PRIOSUB)
870                 --opt;
871         if ((opt->flags & OPT_PRIO) && priority < opt->priority)
872                 return 0;
873         opt->priority = priority;
874         opt->source = source;
875         opt->winner = -1;
876         return 1;
877 }
878
879 /*
880  * n_arguments - tell how many arguments an option takes
881  */
882 static int
883 n_arguments(opt)
884     option_t *opt;
885 {
886         return (opt->type == o_bool || opt->type == o_special_noarg
887                 || (opt->flags & OPT_NOARG))? 0: 1;
888 }
889
890 /*
891  * add_options - add a list of options to the set we grok.
892  */
893 void
894 add_options(opt)
895     option_t *opt;
896 {
897     struct option_list *list;
898
899     list = malloc(sizeof(*list));
900     if (list == 0)
901         novm("option list entry");
902     list->options = opt;
903     list->next = extra_options;
904     extra_options = list;
905 }
906
907 /*
908  * check_options - check that options are valid and consistent.
909  */
910 void
911 check_options()
912 {
913         if (logfile_fd >= 0 && logfile_fd != log_to_fd)
914                 close(logfile_fd);
915 }
916
917 /*
918  * print_option - print out an option and its value
919  */
920 static void
921 print_option(opt, mainopt, printer, arg)
922     option_t *opt, *mainopt;
923     printer_func printer;
924     void *arg;
925 {
926         int i, v;
927         char *p;
928
929         if (opt->flags & OPT_NOPRINT)
930                 return;
931         switch (opt->type) {
932         case o_bool:
933                 v = opt->flags & OPT_VALUE;
934                 if (*(bool *)opt->addr != v)
935                         /* this can happen legitimately, e.g. lock
936                            option turned off for default device */
937                         break;
938                 printer(arg, "%s", opt->name);
939                 break;
940         case o_int:
941                 v = opt->flags & OPT_VALUE;
942                 if (v >= 128)
943                         v -= 256;
944                 i = *(int *)opt->addr;
945                 if (opt->flags & OPT_NOARG) {
946                         printer(arg, "%s", opt->name);
947                         if (i != v) {
948                                 if (opt->flags & OPT_INC) {
949                                         for (; i > v; i -= v)
950                                                 printer(arg, " %s", opt->name);
951                                 } else
952                                         printer(arg, " # oops: %d not %d\n",
953                                                 i, v);
954                         }
955                 } else {
956                         printer(arg, "%s %d", opt->name, i);
957                 }
958                 break;
959         case o_uint32:
960                 printer(arg, "%s", opt->name);
961                 if ((opt->flags & OPT_NOARG) == 0)
962                         printer(arg, " %x", *(u_int32_t *)opt->addr);
963                 break;
964
965         case o_string:
966                 if (opt->flags & OPT_HIDE) {
967                         p = "??????";
968                 } else {
969                         p = (char *) opt->addr;
970                         if ((opt->flags & OPT_STATIC) == 0)
971                                 p = *(char **)p;
972                 }
973                 printer(arg, "%s %q", opt->name, p);
974                 break;
975
976         case o_special:
977         case o_special_noarg:
978         case o_wild:
979                 if (opt->type != o_wild) {
980                         printer(arg, "%s", opt->name);
981                         if (n_arguments(opt) == 0)
982                                 break;
983                         printer(arg, " ");
984                 }
985                 if (opt->flags & OPT_A2PRINTER) {
986                         void (*oprt) __P((option_t *, printer_func, void *));
987                         oprt = (void (*) __P((option_t *, printer_func,
988                                          void *)))opt->addr2;
989                         (*oprt)(opt, printer, arg);
990                 } else if (opt->flags & OPT_A2STRVAL) {
991                         p = (char *) opt->addr2;
992                         if ((opt->flags & OPT_STATIC) == 0)
993                                 p = *(char **)p;
994                         printer(arg, "%q", p);
995                 } else if (opt->flags & OPT_A2LIST) {
996                         struct option_value *ovp;
997
998                         ovp = (struct option_value *) opt->addr2;
999                         for (;;) {
1000                                 printer(arg, "%q", ovp->value);
1001                                 if ((ovp = ovp->next) == NULL)
1002                                         break;
1003                                 printer(arg, "\t\t# (from %s)\n%s ",
1004                                         ovp->source, opt->name);
1005                         }
1006                 } else {
1007                         printer(arg, "xxx # [don't know how to print value]");
1008                 }
1009                 break;
1010
1011         default:
1012                 printer(arg, "# %s value (type %d\?\?)", opt->name, opt->type);
1013                 break;
1014         }
1015         printer(arg, "\t\t# (from %s)\n", mainopt->source);
1016 }
1017
1018 /*
1019  * print_option_list - print out options in effect from an
1020  * array of options.
1021  */
1022 static void
1023 print_option_list(opt, printer, arg)
1024     option_t *opt;
1025     printer_func printer;
1026     void *arg;
1027 {
1028         while (opt->name != NULL) {
1029                 if (opt->priority != OPRIO_DEFAULT
1030                     && opt->winner != (short int) -1)
1031                         print_option(opt + opt->winner, opt, printer, arg);
1032                 do {
1033                         ++opt;
1034                 } while (opt->flags & OPT_PRIOSUB);
1035         }
1036 }
1037
1038 /*
1039  * print_options - print out what options are in effect.
1040  */
1041 void
1042 print_options(printer, arg)
1043     printer_func printer;
1044     void *arg;
1045 {
1046         struct option_list *list;
1047         int i;
1048
1049         printer(arg, "pppd options in effect:\n");
1050         print_option_list(general_options, printer, arg);
1051         print_option_list(auth_options, printer, arg);
1052         for (list = extra_options; list != NULL; list = list->next)
1053                 print_option_list(list->options, printer, arg);
1054         print_option_list(the_channel->options, printer, arg);
1055         for (i = 0; protocols[i] != NULL; ++i)
1056                 print_option_list(protocols[i]->options, printer, arg);
1057 }
1058
1059 /*
1060  * usage - print out a message telling how to use the program.
1061  */
1062 static void
1063 usage()
1064 {
1065     if (phase == PHASE_INITIALIZE)
1066         fprintf(stderr, usage_string, VERSION, progname);
1067 }
1068
1069 /*
1070  * showhelp - print out usage message and exit.
1071  */
1072 static int
1073 showhelp(argv)
1074     char **argv;
1075 {
1076     if (phase == PHASE_INITIALIZE) {
1077         usage();
1078         exit(0);
1079     }
1080     return 0;
1081 }
1082
1083 /*
1084  * showversion - print out the version number and exit.
1085  */
1086 static int
1087 showversion(argv)
1088     char **argv;
1089 {
1090     if (phase == PHASE_INITIALIZE) {
1091         fprintf(stderr, "pppd version %s\n", VERSION);
1092         exit(0);
1093     }
1094     return 0;
1095 }
1096
1097 /*
1098  * option_error - print a message about an error in an option.
1099  * The message is logged, and also sent to
1100  * stderr if phase == PHASE_INITIALIZE.
1101  */
1102 void
1103 option_error __V((char *fmt, ...))
1104 {
1105     va_list args;
1106     char buf[1024];
1107
1108 #if defined(__STDC__)
1109     va_start(args, fmt);
1110 #else
1111     char *fmt;
1112     va_start(args);
1113     fmt = va_arg(args, char *);
1114 #endif
1115     vslprintf(buf, sizeof(buf), fmt, args);
1116     va_end(args);
1117     if (phase == PHASE_INITIALIZE)
1118         fprintf(stderr, "%s: %s\n", progname, buf);
1119     syslog(LOG_ERR, "%s", buf);
1120 }
1121
1122 #if 0
1123 /*
1124  * readable - check if a file is readable by the real user.
1125  */
1126 int
1127 readable(fd)
1128     int fd;
1129 {
1130     uid_t uid;
1131     int i;
1132     struct stat sbuf;
1133
1134     uid = getuid();
1135     if (uid == 0)
1136         return 1;
1137     if (fstat(fd, &sbuf) != 0)
1138         return 0;
1139     if (sbuf.st_uid == uid)
1140         return sbuf.st_mode & S_IRUSR;
1141     if (sbuf.st_gid == getgid())
1142         return sbuf.st_mode & S_IRGRP;
1143     for (i = 0; i < ngroups; ++i)
1144         if (sbuf.st_gid == groups[i])
1145             return sbuf.st_mode & S_IRGRP;
1146     return sbuf.st_mode & S_IROTH;
1147 }
1148 #endif
1149
1150 /*
1151  * Read a word from a file.
1152  * Words are delimited by white-space or by quotes (" or ').
1153  * Quotes, white-space and \ may be escaped with \.
1154  * \<newline> is ignored.
1155  */
1156 int
1157 getword(f, word, newlinep, filename)
1158     FILE *f;
1159     char *word;
1160     int *newlinep;
1161     char *filename;
1162 {
1163     int c, len, escape;
1164     int quoted, comment;
1165     int value, digit, got, n;
1166
1167 #define isoctal(c) ((c) >= '0' && (c) < '8')
1168
1169     *newlinep = 0;
1170     len = 0;
1171     escape = 0;
1172     comment = 0;
1173     quoted = 0;
1174
1175     /*
1176      * First skip white-space and comments.
1177      */
1178     for (;;) {
1179         c = getc(f);
1180         if (c == EOF)
1181             break;
1182
1183         /*
1184          * A newline means the end of a comment; backslash-newline
1185          * is ignored.  Note that we cannot have escape && comment.
1186          */
1187         if (c == '\n') {
1188             if (!escape) {
1189                 *newlinep = 1;
1190                 comment = 0;
1191             } else
1192                 escape = 0;
1193             continue;
1194         }
1195
1196         /*
1197          * Ignore characters other than newline in a comment.
1198          */
1199         if (comment)
1200             continue;
1201
1202         /*
1203          * If this character is escaped, we have a word start.
1204          */
1205         if (escape)
1206             break;
1207
1208         /*
1209          * If this is the escape character, look at the next character.
1210          */
1211         if (c == '\\') {
1212             escape = 1;
1213             continue;
1214         }
1215
1216         /*
1217          * If this is the start of a comment, ignore the rest of the line.
1218          */
1219         if (c == '#') {
1220             comment = 1;
1221             continue;
1222         }
1223
1224         /*
1225          * A non-whitespace character is the start of a word.
1226          */
1227         if (!isspace(c))
1228             break;
1229     }
1230
1231     /*
1232      * Process characters until the end of the word.
1233      */
1234     while (c != EOF) {
1235         if (escape) {
1236             /*
1237              * This character is escaped: backslash-newline is ignored,
1238              * various other characters indicate particular values
1239              * as for C backslash-escapes.
1240              */
1241             escape = 0;
1242             if (c == '\n') {
1243                 c = getc(f);
1244                 continue;
1245             }
1246
1247             got = 0;
1248             switch (c) {
1249             case 'a':
1250                 value = '\a';
1251                 break;
1252             case 'b':
1253                 value = '\b';
1254                 break;
1255             case 'f':
1256                 value = '\f';
1257                 break;
1258             case 'n':
1259                 value = '\n';
1260                 break;
1261             case 'r':
1262                 value = '\r';
1263                 break;
1264             case 's':
1265                 value = ' ';
1266                 break;
1267             case 't':
1268                 value = '\t';
1269                 break;
1270
1271             default:
1272                 if (isoctal(c)) {
1273                     /*
1274                      * \ddd octal sequence
1275                      */
1276                     value = 0;
1277                     for (n = 0; n < 3 && isoctal(c); ++n) {
1278                         value = (value << 3) + (c & 07);
1279                         c = getc(f);
1280                     }
1281                     got = 1;
1282                     break;
1283                 }
1284
1285                 if (c == 'x') {
1286                     /*
1287                      * \x<hex_string> sequence
1288                      */
1289                     value = 0;
1290                     c = getc(f);
1291                     for (n = 0; n < 2 && isxdigit(c); ++n) {
1292                         digit = toupper(c) - '0';
1293                         if (digit > 10)
1294                             digit += '0' + 10 - 'A';
1295                         value = (value << 4) + digit;
1296                         c = getc (f);
1297                     }
1298                     got = 1;
1299                     break;
1300                 }
1301
1302                 /*
1303                  * Otherwise the character stands for itself.
1304                  */
1305                 value = c;
1306                 break;
1307             }
1308
1309             /*
1310              * Store the resulting character for the escape sequence.
1311              */
1312             if (len < MAXWORDLEN) {
1313                 word[len] = value;
1314                 ++len;
1315             }
1316
1317             if (!got)
1318                 c = getc(f);
1319             continue;
1320         }
1321
1322         /*
1323          * Backslash starts a new escape sequence.
1324          */
1325         if (c == '\\') {
1326             escape = 1;
1327             c = getc(f);
1328             continue;
1329         }
1330
1331         /*
1332          * Not escaped: check for the start or end of a quoted
1333          * section and see if we've reached the end of the word.
1334          */
1335         if (quoted) {
1336             if (c == quoted) {
1337                 quoted = 0;
1338                 c = getc(f);
1339                 continue;
1340             }
1341         } else if (c == '"' || c == '\'') {
1342             quoted = c;
1343             c = getc(f);
1344             continue;
1345         } else if (isspace(c) || c == '#') {
1346             ungetc (c, f);
1347             break;
1348         }
1349
1350         /*
1351          * An ordinary character: store it in the word and get another.
1352          */
1353         if (len < MAXWORDLEN) {
1354             word[len] = c;
1355             ++len;
1356         }
1357
1358         c = getc(f);
1359     }
1360
1361     /*
1362      * End of the word: check for errors.
1363      */
1364     if (c == EOF) {
1365         if (ferror(f)) {
1366             if (errno == 0)
1367                 errno = EIO;
1368             option_error("Error reading %s: %m", filename);
1369             die(1);
1370         }
1371         /*
1372          * If len is zero, then we didn't find a word before the
1373          * end of the file.
1374          */
1375         if (len == 0)
1376             return 0;
1377         if (quoted)
1378             option_error("warning: quoted word runs to end of file (%.20s...)",
1379                          filename, word);
1380     }
1381
1382     /*
1383      * Warn if the word was too long, and append a terminating null.
1384      */
1385     if (len >= MAXWORDLEN) {
1386         option_error("warning: word in file %s too long (%.20s...)",
1387                      filename, word);
1388         len = MAXWORDLEN - 1;
1389     }
1390     word[len] = 0;
1391
1392     return 1;
1393
1394 #undef isoctal
1395
1396 }
1397
1398 /*
1399  * number_option - parse an unsigned numeric parameter for an option.
1400  */
1401 static int
1402 number_option(str, valp, base)
1403     char *str;
1404     u_int32_t *valp;
1405     int base;
1406 {
1407     char *ptr;
1408
1409     *valp = strtoul(str, &ptr, base);
1410     if (ptr == str) {
1411         option_error("invalid numeric parameter '%s' for %s option",
1412                      str, current_option);
1413         return 0;
1414     }
1415     return 1;
1416 }
1417
1418
1419 /*
1420  * int_option - like number_option, but valp is int *,
1421  * the base is assumed to be 0, and *valp is not changed
1422  * if there is an error.
1423  */
1424 int
1425 int_option(str, valp)
1426     char *str;
1427     int *valp;
1428 {
1429     u_int32_t v;
1430
1431     if (!number_option(str, &v, 0))
1432         return 0;
1433     *valp = (int) v;
1434     return 1;
1435 }
1436
1437
1438 /*
1439  * The following procedures parse options.
1440  */
1441
1442 /*
1443  * readfile - take commands from a file.
1444  */
1445 static int
1446 readfile(argv)
1447     char **argv;
1448 {
1449     return options_from_file(*argv, 1, 1, privileged_option);
1450 }
1451
1452 /*
1453  * callfile - take commands from /etc/ppp/peers/<name>.
1454  * Name may not contain /../, start with / or ../, or end in /..
1455  */
1456 static int
1457 callfile(argv)
1458     char **argv;
1459 {
1460     char *fname, *arg, *p;
1461     int l, ok;
1462
1463     arg = *argv;
1464     ok = 1;
1465     if (arg[0] == '/' || arg[0] == 0)
1466         ok = 0;
1467     else {
1468         for (p = arg; *p != 0; ) {
1469             if (p[0] == '.' && p[1] == '.' && (p[2] == '/' || p[2] == 0)) {
1470                 ok = 0;
1471                 break;
1472             }
1473             while (*p != '/' && *p != 0)
1474                 ++p;
1475             if (*p == '/')
1476                 ++p;
1477         }
1478     }
1479     if (!ok) {
1480         option_error("call option value may not contain .. or start with /");
1481         return 0;
1482     }
1483
1484     l = strlen(arg) + strlen(_PATH_PEERFILES) + 1;
1485     if ((fname = (char *) malloc(l)) == NULL)
1486         novm("call file name");
1487     slprintf(fname, l, "%s%s", _PATH_PEERFILES, arg);
1488
1489     ok = options_from_file(fname, 1, 1, 1);
1490
1491     free(fname);
1492     return ok;
1493 }
1494
1495 #ifdef PPP_FILTER
1496 /*
1497  * setpassfilter - Set the pass filter for packets
1498  */
1499 static int
1500 setpassfilter(argv)
1501     char **argv;
1502 {
1503     pcap_t *pc;
1504     int ret = 1;
1505
1506     pc = pcap_open_dead(DLT_PPP_PPPD, 65535);
1507     if (pcap_compile(pc, &pass_filter, *argv, 1, netmask) == -1) {
1508         option_error("error in pass-filter expression: %s\n",
1509                      pcap_geterr(pc));
1510         ret = 0;
1511     }
1512     pcap_close(pc);
1513
1514     return ret;
1515 }
1516
1517 /*
1518  * setactivefilter - Set the active filter for packets
1519  */
1520 static int
1521 setactivefilter(argv)
1522     char **argv;
1523 {
1524     pcap_t *pc;
1525     int ret = 1;
1526
1527     pc = pcap_open_dead(DLT_PPP_PPPD, 65535);
1528     if (pcap_compile(pc, &active_filter, *argv, 1, netmask) == -1) {
1529         option_error("error in active-filter expression: %s\n",
1530                      pcap_geterr(pc));
1531         ret = 0;
1532     }
1533     pcap_close(pc);
1534
1535     return ret;
1536 }
1537 #endif
1538
1539 /*
1540  * setdomain - Set domain name to append to hostname 
1541  */
1542 static int
1543 setdomain(argv)
1544     char **argv;
1545 {
1546     gethostname(hostname, MAXNAMELEN);
1547     if (**argv != 0) {
1548         if (**argv != '.')
1549             strncat(hostname, ".", MAXNAMELEN - strlen(hostname));
1550         domain = hostname + strlen(hostname);
1551         strncat(hostname, *argv, MAXNAMELEN - strlen(hostname));
1552     }
1553     hostname[MAXNAMELEN-1] = 0;
1554     return (1);
1555 }
1556
1557 static int
1558 setlogfile(argv)
1559     char **argv;
1560 {
1561     int fd, err;
1562     uid_t euid;
1563
1564     euid = geteuid();
1565     if (!privileged_option && seteuid(getuid()) == -1) {
1566         option_error("unable to drop permissions to open %s: %m", *argv);
1567         return 0;
1568     }
1569     fd = open(*argv, O_WRONLY | O_APPEND | O_CREAT | O_EXCL, 0644);
1570     if (fd < 0 && errno == EEXIST)
1571         fd = open(*argv, O_WRONLY | O_APPEND);
1572     err = errno;
1573     if (!privileged_option && seteuid(euid) == -1)
1574         fatal("unable to regain privileges: %m");
1575     if (fd < 0) {
1576         errno = err;
1577         option_error("Can't open log file %s: %m", *argv);
1578         return 0;
1579     }
1580     strlcpy(logfile_name, *argv, sizeof(logfile_name));
1581     if (logfile_fd >= 0)
1582         close(logfile_fd);
1583     logfile_fd = fd;
1584     log_to_fd = fd;
1585     log_default = 0;
1586     return 1;
1587 }
1588
1589 #ifdef MAXOCTETS
1590 static int
1591 setmodir(argv)
1592     char **argv;
1593 {
1594     if(*argv == NULL)
1595         return 0;
1596     if(!strcmp(*argv,"in")) {
1597         maxoctets_dir = PPP_OCTETS_DIRECTION_IN;
1598     } else if (!strcmp(*argv,"out")) {
1599         maxoctets_dir = PPP_OCTETS_DIRECTION_OUT;
1600     } else if (!strcmp(*argv,"max")) {
1601         maxoctets_dir = PPP_OCTETS_DIRECTION_MAXOVERAL;
1602     } else {
1603         maxoctets_dir = PPP_OCTETS_DIRECTION_SUM;
1604     }
1605     return 1;
1606 }
1607 #endif
1608
1609 #ifdef PLUGIN
1610 static int
1611 loadplugin(argv)
1612     char **argv;
1613 {
1614     char *arg = *argv;
1615     void *handle;
1616     const char *err;
1617     void (*init) __P((void));
1618     char *path = arg;
1619     const char *vers;
1620
1621     if (strchr(arg, '/') == 0) {
1622         const char *base = _PATH_PLUGIN;
1623         int l = strlen(base) + strlen(arg) + 2;
1624         path = malloc(l);
1625         if (path == 0)
1626             novm("plugin file path");
1627         strlcpy(path, base, l);
1628         strlcat(path, "/", l);
1629         strlcat(path, arg, l);
1630     }
1631     handle = dlopen(path, RTLD_GLOBAL | RTLD_NOW);
1632     if (handle == 0) {
1633         err = dlerror();
1634         if (err != 0)
1635             option_error("%s", err);
1636         option_error("Couldn't load plugin %s", arg);
1637         goto err;
1638     }
1639     init = (void (*)(void))dlsym(handle, "plugin_init");
1640     if (init == 0) {
1641         option_error("%s has no initialization entry point", arg);
1642         goto errclose;
1643     }
1644     vers = (const char *) dlsym(handle, "pppd_version");
1645     if (vers == 0) {
1646         warn("Warning: plugin %s has no version information", arg);
1647     } else if (strcmp(vers, VERSION) != 0) {
1648         option_error("Plugin %s is for pppd version %s, this is %s",
1649                      arg, vers, VERSION);
1650         goto errclose;
1651     }
1652     info("Plugin %s loaded.", arg);
1653     (*init)();
1654     return 1;
1655
1656  errclose:
1657     dlclose(handle);
1658  err:
1659     if (path != arg)
1660         free(path);
1661     return 0;
1662 }
1663 #endif /* PLUGIN */
1664
1665 /*
1666  * Set an environment variable specified by the user.
1667  */
1668 static int
1669 user_setenv(argv)
1670     char **argv;
1671 {
1672     char *arg = argv[0];
1673     char *eqp;
1674     struct userenv *uep, **insp;
1675
1676     if ((eqp = strchr(arg, '=')) == NULL) {
1677         option_error("missing = in name=value: %s", arg);
1678         return 0;
1679     }
1680     if (eqp == arg) {
1681         option_error("missing variable name: %s", arg);
1682         return 0;
1683     }
1684     for (uep = userenv_list; uep != NULL; uep = uep->ue_next) {
1685         int nlen = strlen(uep->ue_name);
1686         if (nlen == (eqp - arg) &&
1687             strncmp(arg, uep->ue_name, nlen) == 0)
1688             break;
1689     }
1690     /* Ignore attempts by unprivileged users to override privileged sources */
1691     if (uep != NULL && !privileged_option && uep->ue_priv)
1692         return 1;
1693     /* The name never changes, so allocate it with the structure */
1694     if (uep == NULL) {
1695         uep = malloc(sizeof (*uep) + (eqp-arg));
1696         strncpy(uep->ue_name, arg, eqp-arg);
1697         uep->ue_name[eqp-arg] = '\0';
1698         uep->ue_next = NULL;
1699         insp = &userenv_list;
1700         while (*insp != NULL)
1701             insp = &(*insp)->ue_next;
1702         *insp = uep;
1703     } else {
1704         struct userenv *uep2;
1705         for (uep2 = userenv_list; uep2 != NULL; uep2 = uep2->ue_next) {
1706             if (uep2 != uep && !uep2->ue_isset)
1707                 break;
1708         }
1709         if (uep2 == NULL && !uep->ue_isset)
1710             find_option("unset")->flags |= OPT_NOPRINT;
1711         free(uep->ue_value);
1712     }
1713     uep->ue_isset = 1;
1714     uep->ue_priv = privileged_option;
1715     uep->ue_source = option_source;
1716     uep->ue_value = strdup(eqp + 1);
1717     curopt->flags &= ~OPT_NOPRINT;
1718     return 1;
1719 }
1720
1721 static void
1722 user_setprint(opt, printer, arg)
1723     option_t *opt;
1724     printer_func printer;
1725     void *arg;
1726 {
1727     struct userenv *uep, *uepnext;
1728
1729     uepnext = userenv_list;
1730     while (uepnext != NULL && !uepnext->ue_isset)
1731         uepnext = uepnext->ue_next;
1732     while ((uep = uepnext) != NULL) {
1733         uepnext = uep->ue_next;
1734         while (uepnext != NULL && !uepnext->ue_isset)
1735             uepnext = uepnext->ue_next;
1736         (*printer)(arg, "%s=%s", uep->ue_name, uep->ue_value);
1737         if (uepnext != NULL)
1738             (*printer)(arg, "\t\t# (from %s)\n%s ", uep->ue_source, opt->name);
1739         else
1740             opt->source = uep->ue_source;
1741     }
1742 }
1743
1744 static int
1745 user_unsetenv(argv)
1746     char **argv;
1747 {
1748     struct userenv *uep, **insp;
1749     char *arg = argv[0];
1750
1751     if (strchr(arg, '=') != NULL) {
1752         option_error("unexpected = in name: %s", arg);
1753         return 0;
1754     }
1755     if (*arg == '\0') {
1756         option_error("missing variable name for unset");
1757         return 0;
1758     }
1759     for (uep = userenv_list; uep != NULL; uep = uep->ue_next) {
1760         if (strcmp(arg, uep->ue_name) == 0)
1761             break;
1762     }
1763     /* Ignore attempts by unprivileged users to override privileged sources */
1764     if (uep != NULL && !privileged_option && uep->ue_priv)
1765         return 1;
1766     /* The name never changes, so allocate it with the structure */
1767     if (uep == NULL) {
1768         uep = malloc(sizeof (*uep) + strlen(arg));
1769         strcpy(uep->ue_name, arg);
1770         uep->ue_next = NULL;
1771         insp = &userenv_list;
1772         while (*insp != NULL)
1773             insp = &(*insp)->ue_next;
1774         *insp = uep;
1775     } else {
1776         struct userenv *uep2;
1777         for (uep2 = userenv_list; uep2 != NULL; uep2 = uep2->ue_next) {
1778             if (uep2 != uep && uep2->ue_isset)
1779                 break;
1780         }
1781         if (uep2 == NULL && uep->ue_isset)
1782             find_option("set")->flags |= OPT_NOPRINT;
1783         free(uep->ue_value);
1784     }
1785     uep->ue_isset = 0;
1786     uep->ue_priv = privileged_option;
1787     uep->ue_source = option_source;
1788     uep->ue_value = NULL;
1789     curopt->flags &= ~OPT_NOPRINT;
1790     return 1;
1791 }
1792
1793 static void
1794 user_unsetprint(opt, printer, arg)
1795     option_t *opt;
1796     printer_func printer;
1797     void *arg;
1798 {
1799     struct userenv *uep, *uepnext;
1800
1801     uepnext = userenv_list;
1802     while (uepnext != NULL && uepnext->ue_isset)
1803         uepnext = uepnext->ue_next;
1804     while ((uep = uepnext) != NULL) {
1805         uepnext = uep->ue_next;
1806         while (uepnext != NULL && uepnext->ue_isset)
1807             uepnext = uepnext->ue_next;
1808         (*printer)(arg, "%s", uep->ue_name);
1809         if (uepnext != NULL)
1810             (*printer)(arg, "\t\t# (from %s)\n%s ", uep->ue_source, opt->name);
1811         else
1812             opt->source = uep->ue_source;
1813     }
1814 }