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