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