]> git.ozlabs.org Git - ppp.git/blob - pppd/main.c
Makefile.am: Add explicit openssl directory to pppd include path
[ppp.git] / pppd / main.c
1 /*
2  * main.c - Point-to-Point Protocol main module
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  * Copyright (c) 1999-2020 Paul Mackerras. All rights reserved.
43  *
44  * Redistribution and use in source and binary forms, with or without
45  * modification, are permitted provided that the following conditions
46  * are met:
47  *
48  * 1. Redistributions of source code must retain the above copyright
49  *    notice, this list of conditions and the following disclaimer.
50  *
51  * 2. The name(s) of the authors of this software must not be used to
52  *    endorse or promote products derived from this software without
53  *    prior written permission.
54  *
55  * 3. Redistributions of any form whatsoever must retain the following
56  *    acknowledgment:
57  *    "This product includes software developed by Paul Mackerras
58  *     <paulus@ozlabs.org>".
59  *
60  * THE AUTHORS OF THIS SOFTWARE DISCLAIM ALL WARRANTIES WITH REGARD TO
61  * THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
62  * AND FITNESS, IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY
63  * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
64  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
65  * AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
66  * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
67  */
68
69 #ifdef HAVE_CONFIG_H
70 #include "config.h"
71 #endif
72
73 #include <stdio.h>
74 #include <ctype.h>
75 #include <stdlib.h>
76 #include <string.h>
77 #include <unistd.h>
78 #include <signal.h>
79 #include <errno.h>
80 #include <fcntl.h>
81 #include <syslog.h>
82 #include <netdb.h>
83 #include <utmp.h>
84 #include <pwd.h>
85 #include <sys/param.h>
86 #include <sys/types.h>
87 #include <sys/wait.h>
88 #include <sys/time.h>
89 #include <sys/resource.h>
90 #include <sys/stat.h>
91 #include <sys/socket.h>
92 #include <netinet/in.h>
93 #include <arpa/inet.h>
94 #include <limits.h>
95 #include <inttypes.h>
96 #include <net/if.h>
97
98 #include "pppd-private.h"
99 #include "options.h"
100 #include "magic.h"
101 #include "fsm.h"
102 #include "lcp.h"
103 #include "ipcp.h"
104 #ifdef PPP_WITH_IPV6CP
105 #include "ipv6cp.h"
106 #endif
107 #include "upap.h"
108 #include "chap.h"
109 #include "eap.h"
110 #include "ccp.h"
111 #include "ecp.h"
112 #include "pathnames.h"
113 #include "crypto.h"
114 #include "multilink.h"
115
116 #ifdef PPP_WITH_TDB
117 #include "tdb.h"
118 #endif
119
120 #ifdef PPP_WITH_CBCP
121 #include "cbcp.h"
122 #endif
123
124 #ifdef AT_CHANGE
125 #include "atcp.h"
126 #endif
127
128 /* interface vars */
129 char ifname[IFNAMSIZ];          /* Interface name */
130 int ifunit;                     /* Interface unit number */
131
132 struct channel *the_channel;
133
134 char *progname;                 /* Name of this program */
135 char hostname[MAXNAMELEN];      /* Our hostname */
136 static char pidfilename[MAXPATHLEN];    /* name of pid file */
137 static char linkpidfile[MAXPATHLEN];    /* name of linkname pid file */
138 uid_t uid;                      /* Our real user-id */
139 struct notifier *pidchange = NULL;
140 struct notifier *phasechange = NULL;
141 struct notifier *exitnotify = NULL;
142 struct notifier *sigreceived = NULL;
143 struct notifier *fork_notifier = NULL;
144
145 int hungup;                     /* terminal has been hung up */
146 int privileged;                 /* we're running as real uid root */
147 int need_holdoff;               /* need holdoff period before restarting */
148 int detached;                   /* have detached from terminal */
149 volatile int code;              /* exit status for pppd */
150 int unsuccess;                  /* # unsuccessful connection attempts */
151 int do_callback;                /* != 0 if we should do callback next */
152 int doing_callback;             /* != 0 if we are doing callback */
153 int ppp_session_number;         /* Session number, for channels with such a
154                                    concept (eg PPPoE) */
155 int childwait_done;             /* have timed out waiting for children */
156
157 #ifdef PPP_WITH_TDB
158 TDB_CONTEXT *pppdb;             /* database for storing status etc. */
159 #endif
160
161 char db_key[32];
162
163 int (*holdoff_hook)(void) = NULL;
164 int (*new_phase_hook)(int) = NULL;
165 void (*snoop_recv_hook)(unsigned char *p, int len) = NULL;
166 void (*snoop_send_hook)(unsigned char *p, int len) = NULL;
167
168 static int conn_running;        /* we have a [dis]connector running */
169 static int fd_loop;             /* fd for getting demand-dial packets */
170
171 int fd_devnull;                 /* fd for /dev/null */
172 int devfd = -1;                 /* fd of underlying device */
173 int fd_ppp = -1;                /* fd for talking PPP */
174 ppp_phase_t phase;              /* where the link is at */
175 int kill_link;
176 int asked_to_quit;
177 int open_ccp_flag;
178 int listen_time;
179 int got_sigusr2;
180 int got_sigterm;
181 int got_sighup;
182
183 static sigset_t signals_handled;
184 static int waiting;
185 static int sigpipe[2];
186
187 char **script_env;              /* Env. variable values for scripts */
188 int s_env_nalloc;               /* # words avail at script_env */
189
190 u_char outpacket_buf[PPP_MRU+PPP_HDRLEN]; /* buffer for outgoing packet */
191 u_char inpacket_buf[PPP_MRU+PPP_HDRLEN]; /* buffer for incoming packet */
192
193 static int n_children;          /* # child processes still running */
194 static int got_sigchld;         /* set if we have received a SIGCHLD */
195
196 int privopen;                   /* don't lock, open device as root */
197
198 char *no_ppp_msg = "Sorry - this system lacks PPP kernel support\n";
199
200 GIDSET_TYPE groups[NGROUPS_MAX];/* groups the user is in */
201 int ngroups;                    /* How many groups valid in groups */
202
203 static struct timeval start_time;       /* Time when link was started. */
204
205 static struct pppd_stats old_link_stats;
206 struct pppd_stats link_stats;
207 unsigned link_connect_time;
208 int link_stats_valid;
209 int link_stats_print;
210
211 int error_count;
212
213 bool bundle_eof;
214 bool bundle_terminating;
215
216 /*
217  * We maintain a list of child process pids and
218  * functions to call when they exit.
219  */
220 struct subprocess {
221     pid_t       pid;
222     char        *prog;
223     void        (*done)(void *);
224     void        *arg;
225     int         killable;
226     struct subprocess *next;
227 };
228
229 static struct subprocess *children;
230
231 /* Prototypes for procedures local to this file. */
232
233 static void setup_signals(void);
234 static void create_pidfile(int pid);
235 static void create_linkpidfile(int pid);
236 static void cleanup(void);
237 static void get_input(void);
238 static void calltimeout(void);
239 static struct timeval *timeleft(struct timeval *);
240 static void kill_my_pg(int);
241 static void hup(int);
242 static void term(int);
243 static void chld(int);
244 static void toggle_debug(int);
245 static void open_ccp(int);
246 static void bad_signal(int);
247 static void holdoff_end(void *);
248 static void forget_child(int pid, int status);
249 static int reap_kids(void);
250 static void childwait_end(void *);
251 static void run_net_script(char* script, int wait);
252
253 #ifdef PPP_WITH_TDB
254 static void update_db_entry(void);
255 static void add_db_key(const char *);
256 static void delete_db_key(const char *);
257 static void cleanup_db(void);
258 #endif
259
260 static void handle_events(void);
261 void print_link_stats(void);
262
263 extern  char    *getlogin(void);
264 int main(int, char *[]);
265
266 const char *ppp_hostname()
267 {
268     return hostname;
269 }
270
271 bool ppp_signaled(int sig)
272 {
273     if (sig == SIGTERM)
274         return !!got_sigterm;
275     if (sig == SIGUSR2)
276         return !!got_sigusr2;
277     if (sig == SIGHUP)
278         return !!got_sighup;
279     return false;
280 }
281
282 ppp_exit_code_t ppp_status()
283 {
284    return code;
285 }
286
287 void ppp_set_status(ppp_exit_code_t value)
288 {
289     code = value;
290 }
291
292 void ppp_set_session_number(int number)
293 {
294     ppp_session_number = number;
295 }
296
297 int ppp_get_session_number()
298 {
299     return ppp_session_number;
300 }
301
302 const char *ppp_ifname()
303 {
304     return ifname;
305 }
306
307 int ppp_get_ifname(char *buf, size_t bufsz)
308 {
309     if (buf) {
310         return strlcpy(buf, ifname, bufsz);
311     }
312     return false;
313 }
314
315 void ppp_set_ifname(const char *name)
316 {
317     if (name) {
318         strlcpy(ifname, name, sizeof(ifname));
319     }
320 }
321
322 int ppp_ifunit()
323 {
324     return ifunit;
325 }
326
327 int ppp_get_link_uptime()
328 {
329     return link_connect_time;
330 }
331
332 /*
333  * PPP Data Link Layer "protocol" table.
334  * One entry per supported protocol.
335  * The last entry must be NULL.
336  */
337 struct protent *protocols[] = {
338     &lcp_protent,
339     &pap_protent,
340     &chap_protent,
341 #ifdef PPP_WITH_CBCP
342     &cbcp_protent,
343 #endif
344     &ipcp_protent,
345 #ifdef PPP_WITH_IPV6CP
346     &ipv6cp_protent,
347 #endif
348     &ccp_protent,
349     &ecp_protent,
350 #ifdef AT_CHANGE
351     &atcp_protent,
352 #endif
353     &eap_protent,
354     NULL
355 };
356
357 int
358 main(int argc, char *argv[])
359 {
360     int i, t;
361     char *p;
362     struct passwd *pw;
363     struct protent *protp;
364     char numbuf[16];
365
366     PPP_crypto_init();
367
368     strlcpy(path_ipup, PPP_PATH_IPUP, MAXPATHLEN);
369     strlcpy(path_ipdown, PPP_PATH_IPDOWN, MAXPATHLEN);
370
371 #ifdef PPP_WITH_IPV6CP
372     strlcpy(path_ipv6up, PPP_PATH_IPV6UP, MAXPATHLEN);
373     strlcpy(path_ipv6down, PPP_PATH_IPV6DOWN, MAXPATHLEN);
374 #endif
375     link_stats_valid = 0;
376     link_stats_print = 1;
377     new_phase(PHASE_INITIALIZE);
378
379     script_env = NULL;
380
381     /* Initialize syslog facilities */
382     reopen_log();
383
384     if (gethostname(hostname, sizeof(hostname)) < 0 ) {
385         ppp_option_error("Couldn't get hostname: %m");
386         exit(1);
387     }
388     hostname[MAXNAMELEN-1] = 0;
389
390     /* make sure we don't create world or group writable files. */
391     umask(umask(0777) | 022);
392
393     uid = getuid();
394     privileged = uid == 0;
395     slprintf(numbuf, sizeof(numbuf), "%d", uid);
396     ppp_script_setenv("ORIG_UID", numbuf, 0);
397
398     ngroups = getgroups(NGROUPS_MAX, groups);
399
400     /*
401      * Initialize magic number generator now so that protocols may
402      * use magic numbers in initialization.
403      */
404     magic_init();
405
406     /*
407      * Initialize each protocol.
408      */
409     for (i = 0; (protp = protocols[i]) != NULL; ++i)
410         (*protp->init)(0);
411
412     /*
413      * Initialize the default channel.
414      */
415     tty_init();
416
417     progname = *argv;
418
419     /*
420      * Parse, in order, the system options file, the user's options file,
421      * and the command line arguments.
422      */
423     if (!ppp_options_from_file(PPP_PATH_SYSOPTIONS, !privileged, 0, 1)
424         || !options_from_user()
425         || !parse_args(argc-1, argv+1))
426         exit(EXIT_OPTION_ERROR);
427     devnam_fixed = 1;           /* can no longer change device name */
428
429     /*
430      * Work out the device name, if it hasn't already been specified,
431      * and parse the tty's options file.
432      */
433     if (the_channel->process_extra_options)
434         (*the_channel->process_extra_options)();
435
436     if (debug)
437         setlogmask(LOG_UPTO(LOG_DEBUG));
438
439     if (show_options) {
440         showopts();
441         die(0);
442     }
443
444     /*
445      * Check that we are running as root.
446      */
447     if (geteuid() != 0) {
448         ppp_option_error("must be root to run %s, since it is not setuid-root",
449                      argv[0]);
450         exit(EXIT_NOT_ROOT);
451     }
452
453     if (!ppp_check_kernel_support()) {
454         ppp_option_error("%s", no_ppp_msg);
455         exit(EXIT_NO_KERNEL_SUPPORT);
456     }
457
458     /*
459      * Check that the options given are valid and consistent.
460      */
461     check_options();
462     if (!sys_check_options())
463         exit(EXIT_OPTION_ERROR);
464     auth_check_options();
465     mp_check_options();
466     for (i = 0; (protp = protocols[i]) != NULL; ++i)
467         if (protp->check_options != NULL)
468             (*protp->check_options)();
469     if (the_channel->check_options)
470         (*the_channel->check_options)();
471
472
473     if (dump_options || dryrun) {
474         init_pr_log(NULL, LOG_INFO);
475         print_options(pr_log, NULL);
476         end_pr_log();
477     }
478
479     if (dryrun)
480         die(0);
481
482     /* Make sure fds 0, 1, 2 are open to somewhere. */
483     fd_devnull = open(PPP_DEVNULL, O_RDWR);
484     if (fd_devnull < 0)
485         fatal("Couldn't open %s: %m", PPP_DEVNULL);
486     while (fd_devnull <= 2) {
487         i = dup(fd_devnull);
488         if (i < 0)
489             fatal("Critical shortage of file descriptors: dup failed: %m");
490         fd_devnull = i;
491     }
492
493     /*
494      * Initialize system-dependent stuff.
495      */
496     sys_init();
497
498 #ifdef PPP_WITH_TDB
499     pppdb = tdb_open(PPP_PATH_PPPDB, 0, 0, O_RDWR|O_CREAT, 0644);
500     if (pppdb != NULL) {
501         slprintf(db_key, sizeof(db_key), "pppd%d", getpid());
502         update_db_entry();
503     } else {
504         warn("Warning: couldn't open ppp database %s", PPP_PATH_PPPDB);
505         if (multilink) {
506             warn("Warning: disabling multilink");
507             multilink = 0;
508         }
509     }
510 #endif
511
512     /*
513      * Detach ourselves from the terminal, if required,
514      * and identify who is running us.
515      */
516     if (!nodetach && !updetach)
517         detach();
518     p = getlogin();
519     if (p == NULL) {
520         pw = getpwuid(uid);
521         if (pw != NULL && pw->pw_name != NULL)
522             p = pw->pw_name;
523         else
524             p = "(unknown)";
525     }
526     syslog(LOG_NOTICE, "pppd %s started by %s, uid %d", VERSION, p, uid);
527     ppp_script_setenv("PPPLOGNAME", p, 0);
528
529     if (devnam[0])
530         ppp_script_setenv("DEVICE", devnam, 1);
531     slprintf(numbuf, sizeof(numbuf), "%d", getpid());
532     ppp_script_setenv("PPPD_PID", numbuf, 1);
533
534     setup_signals();
535
536     create_linkpidfile(getpid());
537
538     waiting = 0;
539
540     /*
541      * If we're doing dial-on-demand, set up the interface now.
542      */
543     if (demand) {
544         /*
545          * Open the loopback channel and set it up to be the ppp interface.
546          */
547         fd_loop = open_ppp_loopback();
548         set_ifunit(1);
549         /*
550          * Configure the interface and mark it up, etc.
551          */
552         demand_conf();
553     }
554
555     do_callback = 0;
556     for (;;) {
557
558         bundle_eof = 0;
559         bundle_terminating = 0;
560         listen_time = 0;
561         need_holdoff = 1;
562         devfd = -1;
563         code = EXIT_OK;
564         ++unsuccess;
565         doing_callback = do_callback;
566         do_callback = 0;
567
568         if (demand && !doing_callback) {
569             /*
570              * Don't do anything until we see some activity.
571              */
572             new_phase(PHASE_DORMANT);
573             demand_unblock();
574             add_fd(fd_loop);
575             for (;;) {
576                 handle_events();
577                 if (asked_to_quit)
578                     break;
579                 if (get_loop_output())
580                     break;
581             }
582             remove_fd(fd_loop);
583             if (asked_to_quit)
584                 break;
585
586             /*
587              * Now we want to bring up the link.
588              */
589             demand_block();
590             info("Starting link");
591         }
592
593         ppp_get_time(&start_time);
594         ppp_script_unsetenv("CONNECT_TIME");
595         ppp_script_unsetenv("BYTES_SENT");
596         ppp_script_unsetenv("BYTES_RCVD");
597
598         lcp_open(0);            /* Start protocol */
599         start_link(0);
600         while (phase != PHASE_DEAD) {
601             handle_events();
602             get_input();
603             if (kill_link)
604                 lcp_close(0, "User request");
605             if (asked_to_quit) {
606                 bundle_terminating = 1;
607                 if (phase == PHASE_MASTER)
608                     mp_bundle_terminated();
609             }
610             if (open_ccp_flag) {
611                 if (phase == PHASE_NETWORK || phase == PHASE_RUNNING) {
612                     ccp_fsm[0].flags = OPT_RESTART; /* clears OPT_SILENT */
613                     (*ccp_protent.open)(0);
614                 }
615             }
616         }
617         /* restore FSMs to original state */
618         lcp_close(0, "");
619
620         if (!persist || asked_to_quit || (maxfail > 0 && unsuccess >= maxfail))
621             break;
622
623         if (demand)
624             demand_discard();
625         t = need_holdoff? holdoff: 0;
626         if (holdoff_hook)
627             t = (*holdoff_hook)();
628         if (t > 0) {
629             new_phase(PHASE_HOLDOFF);
630             TIMEOUT(holdoff_end, NULL, t);
631             do {
632                 handle_events();
633                 if (kill_link)
634                     new_phase(PHASE_DORMANT); /* allow signal to end holdoff */
635             } while (phase == PHASE_HOLDOFF);
636             if (!persist)
637                 break;
638         }
639     }
640
641     /* Wait for scripts to finish */
642     reap_kids();
643     if (n_children > 0) {
644         if (child_wait > 0)
645             TIMEOUT(childwait_end, NULL, child_wait);
646         if (debug) {
647             struct subprocess *chp;
648             dbglog("Waiting for %d child processes...", n_children);
649             for (chp = children; chp != NULL; chp = chp->next)
650                 dbglog("  script %s, pid %d", chp->prog, chp->pid);
651         }
652         while (n_children > 0 && !childwait_done) {
653             handle_events();
654             if (kill_link && !childwait_done)
655                 childwait_end(NULL);
656         }
657     }
658
659     PPP_crypto_deinit();
660     die(code);
661     return 0;
662 }
663
664 /*
665  * handle_events - wait for something to happen and respond to it.
666  */
667 static void
668 handle_events(void)
669 {
670     struct timeval timo;
671     unsigned char buf[16];
672
673     kill_link = open_ccp_flag = 0;
674
675     /* alert via signal pipe */
676     waiting = 1;
677     /* flush signal pipe */
678     for (; read(sigpipe[0], buf, sizeof(buf)) > 0; );
679     add_fd(sigpipe[0]);
680     /* wait if necessary */
681     if (!(got_sighup || got_sigterm || got_sigusr2 || got_sigchld))
682         wait_input(timeleft(&timo));
683     waiting = 0;
684     remove_fd(sigpipe[0]);
685
686     calltimeout();
687     if (got_sighup) {
688         info("Hangup (SIGHUP)");
689         kill_link = 1;
690         got_sighup = 0;
691         if (code != EXIT_HANGUP)
692             code = EXIT_USER_REQUEST;
693     }
694     if (got_sigterm) {
695         info("Terminating on signal %d", got_sigterm);
696         kill_link = 1;
697         asked_to_quit = 1;
698         persist = 0;
699         code = EXIT_USER_REQUEST;
700         got_sigterm = 0;
701     }
702     if (got_sigchld) {
703         got_sigchld = 0;
704         reap_kids();    /* Don't leave dead kids lying around */
705     }
706     if (got_sigusr2) {
707         open_ccp_flag = 1;
708         got_sigusr2 = 0;
709     }
710 }
711
712 /*
713  * setup_signals - initialize signal handling.
714  */
715 static void
716 setup_signals(void)
717 {
718     struct sigaction sa;
719
720     /* create pipe to wake up event handler from signal handler */
721     if (pipe(sigpipe) < 0)
722         fatal("Couldn't create signal pipe: %m");
723     fcntl(sigpipe[0], F_SETFD, fcntl(sigpipe[0], F_GETFD) | FD_CLOEXEC);
724     fcntl(sigpipe[1], F_SETFD, fcntl(sigpipe[1], F_GETFD) | FD_CLOEXEC);
725     fcntl(sigpipe[0], F_SETFL, fcntl(sigpipe[0], F_GETFL) | O_NONBLOCK);
726     fcntl(sigpipe[1], F_SETFL, fcntl(sigpipe[1], F_GETFL) | O_NONBLOCK);
727
728     /*
729      * Compute mask of all interesting signals and install signal handlers
730      * for each.  Only one signal handler may be active at a time.  Therefore,
731      * all other signals should be masked when any handler is executing.
732      */
733     sigemptyset(&signals_handled);
734     sigaddset(&signals_handled, SIGHUP);
735     sigaddset(&signals_handled, SIGINT);
736     sigaddset(&signals_handled, SIGTERM);
737     sigaddset(&signals_handled, SIGCHLD);
738     sigaddset(&signals_handled, SIGUSR2);
739
740 #define SIGNAL(s, handler)      do { \
741         sa.sa_handler = handler; \
742         if (sigaction(s, &sa, NULL) < 0) \
743             fatal("Couldn't establish signal handler (%d): %m", s); \
744     } while (0)
745
746     sa.sa_mask = signals_handled;
747     sa.sa_flags = 0;
748     SIGNAL(SIGHUP, hup);                /* Hangup */
749     SIGNAL(SIGINT, term);               /* Interrupt */
750     SIGNAL(SIGTERM, term);              /* Terminate */
751     SIGNAL(SIGCHLD, chld);
752
753     SIGNAL(SIGUSR1, toggle_debug);      /* Toggle debug flag */
754     SIGNAL(SIGUSR2, open_ccp);          /* Reopen CCP */
755
756     /*
757      * Install a handler for other signals which would otherwise
758      * cause pppd to exit without cleaning up.
759      */
760     SIGNAL(SIGABRT, bad_signal);
761     SIGNAL(SIGALRM, bad_signal);
762     SIGNAL(SIGFPE, bad_signal);
763     SIGNAL(SIGILL, bad_signal);
764     SIGNAL(SIGPIPE, bad_signal);
765     SIGNAL(SIGQUIT, bad_signal);
766     SIGNAL(SIGSEGV, bad_signal);
767 #ifdef SIGBUS
768     SIGNAL(SIGBUS, bad_signal);
769 #endif
770 #ifdef SIGEMT
771     SIGNAL(SIGEMT, bad_signal);
772 #endif
773 #ifdef SIGPOLL
774     SIGNAL(SIGPOLL, bad_signal);
775 #endif
776 #ifdef SIGPROF
777     SIGNAL(SIGPROF, bad_signal);
778 #endif
779 #ifdef SIGSYS
780     SIGNAL(SIGSYS, bad_signal);
781 #endif
782 #ifdef SIGTRAP
783     SIGNAL(SIGTRAP, bad_signal);
784 #endif
785 #ifdef SIGVTALRM
786     SIGNAL(SIGVTALRM, bad_signal);
787 #endif
788 #ifdef SIGXCPU
789     SIGNAL(SIGXCPU, bad_signal);
790 #endif
791 #ifdef SIGXFSZ
792     SIGNAL(SIGXFSZ, bad_signal);
793 #endif
794
795     /*
796      * Apparently we can get a SIGPIPE when we call syslog, if
797      * syslogd has died and been restarted.  Ignoring it seems
798      * be sufficient.
799      */
800     signal(SIGPIPE, SIG_IGN);
801 }
802
803 /*
804  * net-* scripts to be run come through here.
805  */
806 void run_net_script(char* script, int wait)
807 {
808     char strspeed[32];
809     char *argv[6];
810
811     slprintf(strspeed, sizeof(strspeed), "%d", baud_rate);
812
813     argv[0] = script;
814     argv[1] = ifname;
815     argv[2] = devnam;
816     argv[3] = strspeed;
817     argv[4] = ipparam;
818     argv[5] = NULL;
819
820     run_program(script, argv, 0, NULL, NULL, wait);
821 }
822
823 /*
824  * set_ifunit - do things we need to do once we know which ppp
825  * unit we are using.
826  */
827 void
828 set_ifunit(int iskey)
829 {
830     char ifkey[32];
831
832     if (req_ifname[0] != '\0')
833         slprintf(ifname, sizeof(ifname), "%s", req_ifname);
834     else
835         slprintf(ifname, sizeof(ifname), "%s%d", PPP_DRV_NAME, ifunit);
836     info("Using interface %s", ifname);
837     ppp_script_setenv("IFNAME", ifname, iskey);
838     slprintf(ifkey, sizeof(ifkey), "%d", ifunit);
839     ppp_script_setenv("UNIT", ifkey, iskey);
840     if (iskey) {
841         create_pidfile(getpid());       /* write pid to file */
842         create_linkpidfile(getpid());
843     }
844     run_net_script(PPP_PATH_NET_INIT, 1);
845 }
846
847 /*
848  * detach - detach us from the controlling terminal.
849  */
850 void
851 detach(void)
852 {
853     int pid;
854     int ret;
855     char numbuf[16];
856     int pipefd[2];
857
858     if (detached)
859         return;
860     if (pipe(pipefd) == -1)
861         pipefd[0] = pipefd[1] = -1;
862     if ((pid = fork()) < 0) {
863         error("Couldn't detach (fork failed: %m)");
864         die(1);                 /* or just return? */
865     }
866     if (pid != 0) {
867         /* parent */
868         notify(pidchange, pid);
869         /* update pid files if they have been written already */
870         if (pidfilename[0])
871             create_pidfile(pid);
872         create_linkpidfile(pid);
873         exit(0);                /* parent dies */
874     }
875     setsid();
876     ret = chdir("/");
877     if (ret != 0) {
878         fatal("Could not change directory to '/', %m");
879     }
880     dup2(fd_devnull, 0);
881     dup2(fd_devnull, 1);
882     dup2(fd_devnull, 2);
883     detached = 1;
884     if (log_default)
885         log_to_fd = -1;
886     slprintf(numbuf, sizeof(numbuf), "%d", getpid());
887     ppp_script_setenv("PPPD_PID", numbuf, 1);
888
889     /* wait for parent to finish updating pid & lock files and die */
890     close(pipefd[1]);
891     complete_read(pipefd[0], numbuf, 1);
892     close(pipefd[0]);
893 }
894
895 /*
896  * reopen_log - (re)open our connection to syslog.
897  */
898 void
899 reopen_log(void)
900 {
901     openlog("pppd", LOG_PID | LOG_NDELAY, LOG_PPP);
902     setlogmask(LOG_UPTO(LOG_INFO));
903 }
904
905 /*
906  * Create a file containing our process ID.
907  */
908 static void
909 create_pidfile(int pid)
910 {
911     FILE *pidfile;
912
913     slprintf(pidfilename, sizeof(pidfilename), "%s/%s.pid",
914              PPP_PATH_VARRUN, ifname);
915     if ((pidfile = fopen(pidfilename, "w")) != NULL) {
916         fprintf(pidfile, "%d\n", pid);
917         (void) fclose(pidfile);
918     } else {
919         error("Failed to create pid file %s: %m", pidfilename);
920         pidfilename[0] = 0;
921     }
922 }
923
924 void
925 create_linkpidfile(int pid)
926 {
927     FILE *pidfile;
928
929     if (linkname[0] == 0)
930         return;
931     ppp_script_setenv("LINKNAME", linkname, 1);
932     slprintf(linkpidfile, sizeof(linkpidfile), "%s/ppp-%s.pid",
933              PPP_PATH_VARRUN, linkname);
934     if ((pidfile = fopen(linkpidfile, "w")) != NULL) {
935         fprintf(pidfile, "%d\n", pid);
936         if (ifname[0])
937             fprintf(pidfile, "%s\n", ifname);
938         (void) fclose(pidfile);
939     } else {
940         error("Failed to create pid file %s: %m", linkpidfile);
941         linkpidfile[0] = 0;
942     }
943 }
944
945 /*
946  * remove_pidfile - remove our pid files
947  */
948 void remove_pidfiles(void)
949 {
950     if (pidfilename[0] != 0 && unlink(pidfilename) < 0 && errno != ENOENT)
951         warn("unable to delete pid file %s: %m", pidfilename);
952     pidfilename[0] = 0;
953     if (linkpidfile[0] != 0 && unlink(linkpidfile) < 0 && errno != ENOENT)
954         warn("unable to delete pid file %s: %m", linkpidfile);
955     linkpidfile[0] = 0;
956 }
957
958 /*
959  * holdoff_end - called via a timeout when the holdoff period ends.
960  */
961 static void
962 holdoff_end(void *arg)
963 {
964     new_phase(PHASE_DORMANT);
965 }
966
967 /* List of protocol names, to make our messages a little more informative. */
968 struct protocol_list {
969     u_short     proto;
970     const char  *name;
971 } protocol_list[] = {
972     { 0x21,     "IP" },
973     { 0x23,     "OSI Network Layer" },
974     { 0x25,     "Xerox NS IDP" },
975     { 0x27,     "DECnet Phase IV" },
976     { 0x29,     "Appletalk" },
977     { 0x2b,     "Novell IPX" },
978     { 0x2d,     "VJ compressed TCP/IP" },
979     { 0x2f,     "VJ uncompressed TCP/IP" },
980     { 0x31,     "Bridging PDU" },
981     { 0x33,     "Stream Protocol ST-II" },
982     { 0x35,     "Banyan Vines" },
983     { 0x39,     "AppleTalk EDDP" },
984     { 0x3b,     "AppleTalk SmartBuffered" },
985     { 0x3d,     "Multi-Link" },
986     { 0x3f,     "NETBIOS Framing" },
987     { 0x41,     "Cisco Systems" },
988     { 0x43,     "Ascom Timeplex" },
989     { 0x45,     "Fujitsu Link Backup and Load Balancing (LBLB)" },
990     { 0x47,     "DCA Remote Lan" },
991     { 0x49,     "Serial Data Transport Protocol (PPP-SDTP)" },
992     { 0x4b,     "SNA over 802.2" },
993     { 0x4d,     "SNA" },
994     { 0x4f,     "IP6 Header Compression" },
995     { 0x51,     "KNX Bridging Data" },
996     { 0x53,     "Encryption" },
997     { 0x55,     "Individual Link Encryption" },
998     { 0x57,     "IPv6" },
999     { 0x59,     "PPP Muxing" },
1000     { 0x5b,     "Vendor-Specific Network Protocol" },
1001     { 0x61,     "RTP IPHC Full Header" },
1002     { 0x63,     "RTP IPHC Compressed TCP" },
1003     { 0x65,     "RTP IPHC Compressed non-TCP" },
1004     { 0x67,     "RTP IPHC Compressed UDP 8" },
1005     { 0x69,     "RTP IPHC Compressed RTP 8" },
1006     { 0x6f,     "Stampede Bridging" },
1007     { 0x73,     "MP+" },
1008     { 0xc1,     "NTCITS IPI" },
1009     { 0xfb,     "single-link compression" },
1010     { 0xfd,     "Compressed Datagram" },
1011     { 0x0201,   "802.1d Hello Packets" },
1012     { 0x0203,   "IBM Source Routing BPDU" },
1013     { 0x0205,   "DEC LANBridge100 Spanning Tree" },
1014     { 0x0207,   "Cisco Discovery Protocol" },
1015     { 0x0209,   "Netcs Twin Routing" },
1016     { 0x020b,   "STP - Scheduled Transfer Protocol" },
1017     { 0x020d,   "EDP - Extreme Discovery Protocol" },
1018     { 0x0211,   "Optical Supervisory Channel Protocol" },
1019     { 0x0213,   "Optical Supervisory Channel Protocol" },
1020     { 0x0231,   "Luxcom" },
1021     { 0x0233,   "Sigma Network Systems" },
1022     { 0x0235,   "Apple Client Server Protocol" },
1023     { 0x0281,   "MPLS Unicast" },
1024     { 0x0283,   "MPLS Multicast" },
1025     { 0x0285,   "IEEE p1284.4 standard - data packets" },
1026     { 0x0287,   "ETSI TETRA Network Protocol Type 1" },
1027     { 0x0289,   "Multichannel Flow Treatment Protocol" },
1028     { 0x2063,   "RTP IPHC Compressed TCP No Delta" },
1029     { 0x2065,   "RTP IPHC Context State" },
1030     { 0x2067,   "RTP IPHC Compressed UDP 16" },
1031     { 0x2069,   "RTP IPHC Compressed RTP 16" },
1032     { 0x4001,   "Cray Communications Control Protocol" },
1033     { 0x4003,   "CDPD Mobile Network Registration Protocol" },
1034     { 0x4005,   "Expand accelerator protocol" },
1035     { 0x4007,   "ODSICP NCP" },
1036     { 0x4009,   "DOCSIS DLL" },
1037     { 0x400B,   "Cetacean Network Detection Protocol" },
1038     { 0x4021,   "Stacker LZS" },
1039     { 0x4023,   "RefTek Protocol" },
1040     { 0x4025,   "Fibre Channel" },
1041     { 0x4027,   "EMIT Protocols" },
1042     { 0x405b,   "Vendor-Specific Protocol (VSP)" },
1043     { 0x8021,   "Internet Protocol Control Protocol" },
1044     { 0x8023,   "OSI Network Layer Control Protocol" },
1045     { 0x8025,   "Xerox NS IDP Control Protocol" },
1046     { 0x8027,   "DECnet Phase IV Control Protocol" },
1047     { 0x8029,   "Appletalk Control Protocol" },
1048     { 0x802b,   "Novell IPX Control Protocol" },
1049     { 0x8031,   "Bridging NCP" },
1050     { 0x8033,   "Stream Protocol Control Protocol" },
1051     { 0x8035,   "Banyan Vines Control Protocol" },
1052     { 0x803d,   "Multi-Link Control Protocol" },
1053     { 0x803f,   "NETBIOS Framing Control Protocol" },
1054     { 0x8041,   "Cisco Systems Control Protocol" },
1055     { 0x8043,   "Ascom Timeplex" },
1056     { 0x8045,   "Fujitsu LBLB Control Protocol" },
1057     { 0x8047,   "DCA Remote Lan Network Control Protocol (RLNCP)" },
1058     { 0x8049,   "Serial Data Control Protocol (PPP-SDCP)" },
1059     { 0x804b,   "SNA over 802.2 Control Protocol" },
1060     { 0x804d,   "SNA Control Protocol" },
1061     { 0x804f,   "IP6 Header Compression Control Protocol" },
1062     { 0x8051,   "KNX Bridging Control Protocol" },
1063     { 0x8053,   "Encryption Control Protocol" },
1064     { 0x8055,   "Individual Link Encryption Control Protocol" },
1065     { 0x8057,   "IPv6 Control Protocol" },
1066     { 0x8059,   "PPP Muxing Control Protocol" },
1067     { 0x805b,   "Vendor-Specific Network Control Protocol (VSNCP)" },
1068     { 0x806f,   "Stampede Bridging Control Protocol" },
1069     { 0x8073,   "MP+ Control Protocol" },
1070     { 0x80c1,   "NTCITS IPI Control Protocol" },
1071     { 0x80fb,   "Single Link Compression Control Protocol" },
1072     { 0x80fd,   "Compression Control Protocol" },
1073     { 0x8207,   "Cisco Discovery Protocol Control" },
1074     { 0x8209,   "Netcs Twin Routing" },
1075     { 0x820b,   "STP - Control Protocol" },
1076     { 0x820d,   "EDPCP - Extreme Discovery Protocol Ctrl Prtcl" },
1077     { 0x8235,   "Apple Client Server Protocol Control" },
1078     { 0x8281,   "MPLSCP" },
1079     { 0x8285,   "IEEE p1284.4 standard - Protocol Control" },
1080     { 0x8287,   "ETSI TETRA TNP1 Control Protocol" },
1081     { 0x8289,   "Multichannel Flow Treatment Protocol" },
1082     { 0xc021,   "Link Control Protocol" },
1083     { 0xc023,   "Password Authentication Protocol" },
1084     { 0xc025,   "Link Quality Report" },
1085     { 0xc027,   "Shiva Password Authentication Protocol" },
1086     { 0xc029,   "CallBack Control Protocol (CBCP)" },
1087     { 0xc02b,   "BACP Bandwidth Allocation Control Protocol" },
1088     { 0xc02d,   "BAP" },
1089     { 0xc05b,   "Vendor-Specific Authentication Protocol (VSAP)" },
1090     { 0xc081,   "Container Control Protocol" },
1091     { 0xc223,   "Challenge Handshake Authentication Protocol" },
1092     { 0xc225,   "RSA Authentication Protocol" },
1093     { 0xc227,   "Extensible Authentication Protocol" },
1094     { 0xc229,   "Mitsubishi Security Info Exch Ptcl (SIEP)" },
1095     { 0xc26f,   "Stampede Bridging Authorization Protocol" },
1096     { 0xc281,   "Proprietary Authentication Protocol" },
1097     { 0xc283,   "Proprietary Authentication Protocol" },
1098     { 0xc481,   "Proprietary Node ID Authentication Protocol" },
1099     { 0,        NULL },
1100 };
1101
1102 /*
1103  * protocol_name - find a name for a PPP protocol.
1104  */
1105 const char *
1106 protocol_name(int proto)
1107 {
1108     struct protocol_list *lp;
1109
1110     for (lp = protocol_list; lp->proto != 0; ++lp)
1111         if (proto == lp->proto)
1112             return lp->name;
1113     return NULL;
1114 }
1115
1116 /*
1117  * get_input - called when incoming data is available.
1118  */
1119 static void
1120 get_input(void)
1121 {
1122     int len, i;
1123     u_char *p;
1124     u_short protocol;
1125     struct protent *protp;
1126
1127     p = inpacket_buf;   /* point to beginning of packet buffer */
1128
1129     len = read_packet(inpacket_buf);
1130     if (len < 0)
1131         return;
1132
1133     if (len == 0) {
1134         if (bundle_eof && mp_master()) {
1135             notice("Last channel has disconnected");
1136             mp_bundle_terminated();
1137             return;
1138         }
1139         notice("Modem hangup");
1140         hungup = 1;
1141         code = EXIT_HANGUP;
1142         lcp_lowerdown(0);       /* serial link is no longer available */
1143         link_terminated(0);
1144         return;
1145     }
1146
1147     if (len < PPP_HDRLEN) {
1148         dbglog("received short packet:%.*B", len, p);
1149         return;
1150     }
1151
1152     dump_packet("rcvd", p, len);
1153     if (snoop_recv_hook) snoop_recv_hook(p, len);
1154
1155     p += 2;                             /* Skip address and control */
1156     GETSHORT(protocol, p);
1157     len -= PPP_HDRLEN;
1158
1159     /*
1160      * Toss all non-LCP packets unless LCP is OPEN.
1161      */
1162     if (protocol != PPP_LCP && lcp_fsm[0].state != OPENED) {
1163         dbglog("Discarded non-LCP packet when LCP not open");
1164         return;
1165     }
1166
1167     /*
1168      * Until we get past the authentication phase, toss all packets
1169      * except LCP, LQR and authentication packets.
1170      */
1171     if (phase <= PHASE_AUTHENTICATE
1172         && !(protocol == PPP_LCP || protocol == PPP_LQR
1173              || protocol == PPP_PAP || protocol == PPP_CHAP ||
1174                 protocol == PPP_EAP)) {
1175         dbglog("discarding proto 0x%x in phase %d",
1176                    protocol, phase);
1177         return;
1178     }
1179
1180     /*
1181      * Upcall the proper protocol input routine.
1182      */
1183     for (i = 0; (protp = protocols[i]) != NULL; ++i) {
1184         if (protp->protocol == protocol && protp->enabled_flag) {
1185             (*protp->input)(0, p, len);
1186             return;
1187         }
1188         if (protocol == (protp->protocol & ~0x8000) && protp->enabled_flag
1189             && protp->datainput != NULL) {
1190             (*protp->datainput)(0, p, len);
1191             return;
1192         }
1193     }
1194
1195     if (debug) {
1196         const char *pname = protocol_name(protocol);
1197         if (pname != NULL)
1198             warn("Unsupported protocol '%s' (0x%x) received", pname, protocol);
1199         else
1200             warn("Unsupported protocol 0x%x received", protocol);
1201     }
1202     lcp_sprotrej(0, p - PPP_HDRLEN, len + PPP_HDRLEN);
1203 }
1204
1205 /*
1206  * ppp_send_config - configure the transmit-side characteristics of
1207  * the ppp interface.  Returns -1, indicating an error, if the channel
1208  * send_config procedure called error() (or incremented error_count
1209  * itself), otherwise 0.
1210  */
1211 int
1212 ppp_send_config(int unit, int mtu, u_int32_t accm, int pcomp, int accomp)
1213 {
1214         int errs;
1215
1216         if (the_channel->send_config == NULL)
1217                 return 0;
1218         errs = error_count;
1219         (*the_channel->send_config)(mtu, accm, pcomp, accomp);
1220         return (error_count != errs)? -1: 0;
1221 }
1222
1223 /*
1224  * ppp_recv_config - configure the receive-side characteristics of
1225  * the ppp interface.  Returns -1, indicating an error, if the channel
1226  * recv_config procedure called error() (or incremented error_count
1227  * itself), otherwise 0.
1228  */
1229 int
1230 ppp_recv_config(int unit, int mru, u_int32_t accm, int pcomp, int accomp)
1231 {
1232         int errs;
1233
1234         if (the_channel->recv_config == NULL)
1235                 return 0;
1236         errs = error_count;
1237         (*the_channel->recv_config)(mru, accm, pcomp, accomp);
1238         return (error_count != errs)? -1: 0;
1239 }
1240
1241 /*
1242  * new_phase - signal the start of a new phase of pppd's operation.
1243  */
1244 void
1245 new_phase(ppp_phase_t p)
1246 {
1247     switch (p) {
1248     case PHASE_NETWORK:
1249         if (phase <= PHASE_NETWORK) {
1250             char iftmpname[IFNAMSIZ];
1251             int ifindex = if_nametoindex(ifname);
1252             run_net_script(PPP_PATH_NET_PREUP, 1);
1253             if (if_indextoname(ifindex, iftmpname) && strcmp(iftmpname, ifname)) {
1254                 info("Detected interface name change from %s to %s.", ifname, iftmpname);
1255                 strcpy(ifname, iftmpname);
1256             }
1257         }
1258         break;
1259     case PHASE_DISCONNECT:
1260         run_net_script(PPP_PATH_NET_DOWN, 0);
1261         break;
1262     }
1263
1264     phase = p;
1265     if (new_phase_hook)
1266         (*new_phase_hook)(p);
1267     notify(phasechange, p);
1268 }
1269
1270 bool
1271 in_phase(ppp_phase_t p)
1272 {
1273     return (phase == p);
1274 }
1275
1276 /*
1277  * die - clean up state and exit with the specified status.
1278  */
1279 void
1280 die(int status)
1281 {
1282
1283     if (!mp_on() || mp_master())
1284         print_link_stats();
1285     cleanup();
1286     notify(exitnotify, status);
1287     syslog(LOG_INFO, "Exit.");
1288     exit(status);
1289 }
1290
1291 /*
1292  * cleanup - restore anything which needs to be restored before we exit
1293  */
1294 /* ARGSUSED */
1295 static void
1296 cleanup(void)
1297 {
1298     sys_cleanup();
1299
1300     if (fd_ppp >= 0)
1301         the_channel->disestablish_ppp(devfd);
1302     if (the_channel->cleanup)
1303         (*the_channel->cleanup)();
1304     remove_pidfiles();
1305
1306 #ifdef PPP_WITH_TDB
1307     if (pppdb != NULL)
1308         cleanup_db();
1309 #endif
1310
1311 }
1312
1313 void
1314 print_link_stats(void)
1315 {
1316     /*
1317      * Print connect time and statistics.
1318      */
1319     if (link_stats_print && link_stats_valid) {
1320        int t = (link_connect_time + 5) / 6;    /* 1/10ths of minutes */
1321        info("Connect time %d.%d minutes.", t/10, t%10);
1322        info("Sent %u bytes, received %u bytes.",
1323             link_stats.bytes_out, link_stats.bytes_in);
1324        link_stats_print = 0;
1325     }
1326 }
1327
1328 /*
1329  * reset_link_stats - "reset" stats when link goes up.
1330  */
1331 void
1332 reset_link_stats(int u)
1333 {
1334     if (!get_ppp_stats(u, &old_link_stats))
1335         return;
1336     ppp_get_time(&start_time);
1337 }
1338
1339 /*
1340  * update_link_stats - get stats at link termination.
1341  */
1342 void
1343 update_link_stats(int u)
1344 {
1345     struct timeval now;
1346     char numbuf[32];
1347
1348     if (!get_ppp_stats(u, &link_stats)
1349         || ppp_get_time(&now) < 0)
1350         return;
1351     link_connect_time = now.tv_sec - start_time.tv_sec;
1352     link_stats_valid = 1;
1353
1354     link_stats.bytes_in  -= old_link_stats.bytes_in;
1355     link_stats.bytes_out -= old_link_stats.bytes_out;
1356     link_stats.pkts_in   -= old_link_stats.pkts_in;
1357     link_stats.pkts_out  -= old_link_stats.pkts_out;
1358
1359     slprintf(numbuf, sizeof(numbuf), "%u", link_connect_time);
1360     ppp_script_setenv("CONNECT_TIME", numbuf, 0);
1361     snprintf(numbuf, sizeof(numbuf), "%" PRIu64, link_stats.bytes_out);
1362     ppp_script_setenv("BYTES_SENT", numbuf, 0);
1363     snprintf(numbuf, sizeof(numbuf), "%" PRIu64, link_stats.bytes_in);
1364     ppp_script_setenv("BYTES_RCVD", numbuf, 0);
1365 }
1366
1367 bool
1368 ppp_get_link_stats(ppp_link_stats_st *stats)
1369 {
1370     update_link_stats(0);
1371     if (stats != NULL &&
1372         link_stats_valid) {
1373
1374         memcpy(stats, &link_stats, sizeof(*stats));
1375         return true;
1376     }
1377     return false;
1378 }
1379
1380
1381 struct  callout {
1382     struct timeval      c_time;         /* time at which to call routine */
1383     void                *c_arg;         /* argument to routine */
1384     void                (*c_func)(void *); /* routine */
1385     struct              callout *c_next;
1386 };
1387
1388 static struct callout *callout = NULL;  /* Callout list */
1389 static struct timeval timenow;          /* Current time */
1390
1391 /*
1392  * timeout - Schedule a timeout.
1393  */
1394 void
1395 ppp_timeout(void (*func)(void *), void *arg, int secs, int usecs)
1396 {
1397     struct callout *newp, *p, **pp;
1398
1399     /*
1400      * Allocate timeout.
1401      */
1402     if ((newp = (struct callout *) malloc(sizeof(struct callout))) == NULL)
1403         fatal("Out of memory in timeout()!");
1404     newp->c_arg = arg;
1405     newp->c_func = func;
1406     ppp_get_time(&timenow);
1407     newp->c_time.tv_sec = timenow.tv_sec + secs;
1408     newp->c_time.tv_usec = timenow.tv_usec + usecs;
1409     if (newp->c_time.tv_usec >= 1000000) {
1410         newp->c_time.tv_sec += newp->c_time.tv_usec / 1000000;
1411         newp->c_time.tv_usec %= 1000000;
1412     }
1413
1414     /*
1415      * Find correct place and link it in.
1416      */
1417     for (pp = &callout; (p = *pp); pp = &p->c_next)
1418         if (newp->c_time.tv_sec < p->c_time.tv_sec
1419             || (newp->c_time.tv_sec == p->c_time.tv_sec
1420                 && newp->c_time.tv_usec < p->c_time.tv_usec))
1421             break;
1422     newp->c_next = p;
1423     *pp = newp;
1424 }
1425
1426
1427 /*
1428  * untimeout - Unschedule a timeout.
1429  */
1430 void
1431 ppp_untimeout(void (*func)(void *), void *arg)
1432 {
1433     struct callout **copp, *freep;
1434
1435     /*
1436      * Find first matching timeout and remove it from the list.
1437      */
1438     for (copp = &callout; (freep = *copp); copp = &freep->c_next)
1439         if (freep->c_func == func && freep->c_arg == arg) {
1440             *copp = freep->c_next;
1441             free((char *) freep);
1442             break;
1443         }
1444 }
1445
1446
1447 /*
1448  * calltimeout - Call any timeout routines which are now due.
1449  */
1450 static void
1451 calltimeout(void)
1452 {
1453     struct callout *p;
1454
1455     while (callout != NULL) {
1456         p = callout;
1457
1458         if (ppp_get_time(&timenow) < 0)
1459             fatal("Failed to get time of day: %m");
1460         if (!(p->c_time.tv_sec < timenow.tv_sec
1461               || (p->c_time.tv_sec == timenow.tv_sec
1462                   && p->c_time.tv_usec <= timenow.tv_usec)))
1463             break;              /* no, it's not time yet */
1464
1465         callout = p->c_next;
1466         (*p->c_func)(p->c_arg);
1467
1468         free((char *) p);
1469     }
1470 }
1471
1472
1473 /*
1474  * timeleft - return the length of time until the next timeout is due.
1475  */
1476 static struct timeval *
1477 timeleft(struct timeval *tvp)
1478 {
1479     if (callout == NULL)
1480         return NULL;
1481
1482     ppp_get_time(&timenow);
1483     tvp->tv_sec = callout->c_time.tv_sec - timenow.tv_sec;
1484     tvp->tv_usec = callout->c_time.tv_usec - timenow.tv_usec;
1485     if (tvp->tv_usec < 0) {
1486         tvp->tv_usec += 1000000;
1487         tvp->tv_sec -= 1;
1488     }
1489     if (tvp->tv_sec < 0)
1490         tvp->tv_sec = tvp->tv_usec = 0;
1491
1492     return tvp;
1493 }
1494
1495
1496 /*
1497  * kill_my_pg - send a signal to our process group, and ignore it ourselves.
1498  * We assume that sig is currently blocked.
1499  */
1500 static void
1501 kill_my_pg(int sig)
1502 {
1503     struct sigaction act, oldact;
1504     struct subprocess *chp;
1505
1506     if (!detached) {
1507         /*
1508          * There might be other things in our process group that we
1509          * didn't start that would get hit if we did a kill(0), so
1510          * just send the signal individually to our children.
1511          */
1512         for (chp = children; chp != NULL; chp = chp->next)
1513             if (chp->killable)
1514                 kill(chp->pid, sig);
1515         return;
1516     }
1517
1518     /* We've done a setsid(), so we can just use a kill(0) */
1519     sigemptyset(&act.sa_mask);          /* unnecessary in fact */
1520     act.sa_handler = SIG_IGN;
1521     act.sa_flags = 0;
1522     kill(0, sig);
1523     /*
1524      * The kill() above made the signal pending for us, as well as
1525      * the rest of our process group, but we don't want it delivered
1526      * to us.  It is blocked at the moment.  Setting it to be ignored
1527      * will cause the pending signal to be discarded.  If we did the
1528      * kill() after setting the signal to be ignored, it is unspecified
1529      * (by POSIX) whether the signal is immediately discarded or left
1530      * pending, and in fact Linux would leave it pending, and so it
1531      * would be delivered after the current signal handler exits,
1532      * leading to an infinite loop.
1533      */
1534     sigaction(sig, &act, &oldact);
1535     sigaction(sig, &oldact, NULL);
1536 }
1537
1538
1539 /*
1540  * hup - Catch SIGHUP signal.
1541  *
1542  * Indicates that the physical layer has been disconnected.
1543  * We don't rely on this indication; if the user has sent this
1544  * signal, we just take the link down.
1545  */
1546 static void
1547 hup(int sig)
1548 {
1549     /* can't log a message here, it can deadlock */
1550     got_sighup = 1;
1551     if (conn_running)
1552         /* Send the signal to the [dis]connector process(es) also */
1553         kill_my_pg(sig);
1554     notify(sigreceived, sig);
1555     if (waiting) {
1556 #pragma GCC diagnostic push
1557 #pragma GCC diagnostic ignored "-Wunused-result"
1558         write(sigpipe[1], &sig, sizeof(sig));
1559 #pragma GCC diagnostic pop
1560     }
1561 }
1562
1563
1564 /*
1565  * term - Catch SIGTERM signal and SIGINT signal (^C/del).
1566  *
1567  * Indicates that we should initiate a graceful disconnect and exit.
1568  */
1569 /*ARGSUSED*/
1570 static void
1571 term(int sig)
1572 {
1573     /* can't log a message here, it can deadlock */
1574     got_sigterm = sig;
1575     if (conn_running)
1576         /* Send the signal to the [dis]connector process(es) also */
1577         kill_my_pg(sig);
1578     notify(sigreceived, sig);
1579     if (waiting) {
1580 #pragma GCC diagnostic push
1581 #pragma GCC diagnostic ignored "-Wunused-result"
1582         write(sigpipe[1], &sig, sizeof(sig));
1583 #pragma GCC diagnostic pop
1584     }
1585 }
1586
1587
1588 /*
1589  * chld - Catch SIGCHLD signal.
1590  * Sets a flag so we will call reap_kids in the mainline.
1591  */
1592 static void
1593 chld(int sig)
1594 {
1595     got_sigchld = 1;
1596     if (waiting) {
1597 #pragma GCC diagnostic push
1598 #pragma GCC diagnostic ignored "-Wunused-result"
1599         write(sigpipe[1], &sig, sizeof(sig));
1600 #pragma GCC diagnostic pop
1601     }
1602 }
1603
1604
1605 /*
1606  * toggle_debug - Catch SIGUSR1 signal.
1607  *
1608  * Toggle debug flag.
1609  */
1610 /*ARGSUSED*/
1611 static void
1612 toggle_debug(int sig)
1613 {
1614     debug = !debug;
1615     if (debug) {
1616         setlogmask(LOG_UPTO(LOG_DEBUG));
1617     } else {
1618         setlogmask(LOG_UPTO(LOG_WARNING));
1619     }
1620 }
1621
1622
1623 /*
1624  * open_ccp - Catch SIGUSR2 signal.
1625  *
1626  * Try to (re)negotiate compression.
1627  */
1628 /*ARGSUSED*/
1629 static void
1630 open_ccp(int sig)
1631 {
1632     got_sigusr2 = 1;
1633     if (waiting) {
1634 #pragma GCC diagnostic push
1635 #pragma GCC diagnostic ignored "-Wunused-result"
1636         write(sigpipe[1], &sig, sizeof(sig));
1637 #pragma GCC diagnostic pop
1638     }
1639 }
1640
1641
1642 /*
1643  * bad_signal - We've caught a fatal signal.  Clean up state and exit.
1644  */
1645 static void
1646 bad_signal(int sig)
1647 {
1648     static int crashed = 0;
1649
1650     if (crashed)
1651         _exit(127);
1652     crashed = 1;
1653     error("Fatal signal %d", sig);
1654     if (conn_running)
1655         kill_my_pg(SIGTERM);
1656     notify(sigreceived, sig);
1657     die(127);
1658 }
1659
1660 /*
1661  * ppp_safe_fork - Create a child process.  The child closes all the
1662  * file descriptors that we don't want to leak to a script.
1663  * The parent waits for the child to do this before returning.
1664  * This also arranges for the specified fds to be dup'd to
1665  * fds 0, 1, 2 in the child.
1666  */
1667 pid_t
1668 ppp_safe_fork(int infd, int outfd, int errfd)
1669 {
1670         pid_t pid;
1671         int fd, pipefd[2];
1672         char buf[1];
1673
1674         /* make sure fds 0, 1, 2 are occupied (probably not necessary) */
1675         while ((fd = dup(fd_devnull)) >= 0) {
1676                 if (fd > 2) {
1677                         close(fd);
1678                         break;
1679                 }
1680         }
1681
1682         if (pipe(pipefd) == -1)
1683                 pipefd[0] = pipefd[1] = -1;
1684         pid = fork();
1685         if (pid < 0) {
1686                 error("fork failed: %m");
1687                 return -1;
1688         }
1689         if (pid > 0) {
1690                 /* parent */
1691                 close(pipefd[1]);
1692                 /* this read() blocks until the close(pipefd[1]) below */
1693                 complete_read(pipefd[0], buf, 1);
1694                 close(pipefd[0]);
1695                 return pid;
1696         }
1697
1698         /* Executing in the child */
1699         ppp_sys_close();
1700 #ifdef PPP_WITH_TDB
1701         if (pppdb != NULL)
1702                 tdb_close(pppdb);
1703 #endif
1704
1705         /* make sure infd, outfd and errfd won't get tromped on below */
1706         if (infd == 1 || infd == 2)
1707                 infd = dup(infd);
1708         if (outfd == 0 || outfd == 2)
1709                 outfd = dup(outfd);
1710         if (errfd == 0 || errfd == 1)
1711                 errfd = dup(errfd);
1712
1713         closelog();
1714
1715         /* dup the in, out, err fds to 0, 1, 2 */
1716         if (infd != 0)
1717                 dup2(infd, 0);
1718         if (outfd != 1)
1719                 dup2(outfd, 1);
1720         if (errfd != 2)
1721                 dup2(errfd, 2);
1722
1723         if (log_to_fd > 2)
1724                 close(log_to_fd);
1725         if (the_channel->close)
1726                 (*the_channel->close)();
1727         else
1728                 close(devfd);   /* some plugins don't have a close function */
1729         close(fd_ppp);
1730         close(fd_devnull);
1731         if (infd != 0)
1732                 close(infd);
1733         if (outfd != 1)
1734                 close(outfd);
1735         if (errfd != 2)
1736                 close(errfd);
1737
1738         notify(fork_notifier, 0);
1739         close(pipefd[0]);
1740         /* this close unblocks the read() call above in the parent */
1741         close(pipefd[1]);
1742
1743         return 0;
1744 }
1745
1746 static bool
1747 add_script_env(int pos, char *newstring)
1748 {
1749     if (pos + 1 >= s_env_nalloc) {
1750         int new_n = pos + 17;
1751         char **newenv = realloc(script_env, new_n * sizeof(char *));
1752         if (newenv == NULL) {
1753             free(newstring - 1);
1754             return 0;
1755         }
1756         script_env = newenv;
1757         s_env_nalloc = new_n;
1758     }
1759     script_env[pos] = newstring;
1760     script_env[pos + 1] = NULL;
1761     return 1;
1762 }
1763
1764 static void
1765 remove_script_env(int pos)
1766 {
1767     free(script_env[pos] - 1);
1768     while ((script_env[pos] = script_env[pos + 1]) != NULL)
1769         pos++;
1770 }
1771
1772 /*
1773  * update_system_environment - process the list of set/unset options
1774  * and update the system environment.
1775  */
1776 static void
1777 update_system_environment(void)
1778 {
1779     struct userenv *uep;
1780
1781     for (uep = userenv_list; uep != NULL; uep = uep->ue_next) {
1782         if (uep->ue_isset)
1783             setenv(uep->ue_name, uep->ue_value, 1);
1784         else
1785             unsetenv(uep->ue_name);
1786     }
1787 }
1788
1789 /*
1790  * device_script - run a program to talk to the specified fds
1791  * (e.g. to run the connector or disconnector script).
1792  * stderr gets connected to the log fd or to the PPP_PATH_CONNERRS file.
1793  */
1794 int
1795 device_script(char *program, int in, int out, int dont_wait)
1796 {
1797     int pid;
1798     int status = -1;
1799     int errfd;
1800     int ret;
1801
1802     if (log_to_fd >= 0)
1803         errfd = log_to_fd;
1804     else
1805         errfd = open(PPP_PATH_CONNERRS, O_WRONLY | O_APPEND | O_CREAT, 0644);
1806
1807     ++conn_running;
1808     pid = ppp_safe_fork(in, out, errfd);
1809
1810     if (pid != 0 && log_to_fd < 0)
1811         close(errfd);
1812
1813     if (pid < 0) {
1814         --conn_running;
1815         error("Failed to create child process: %m");
1816         return -1;
1817     }
1818
1819     if (pid != 0) {
1820         record_child(pid, program, NULL, NULL, 1);
1821         status = 0;
1822         if (!dont_wait) {
1823             while (waitpid(pid, &status, 0) < 0) {
1824                 if (errno == EINTR)
1825                     continue;
1826                 fatal("error waiting for (dis)connection process: %m");
1827             }
1828             forget_child(pid, status);
1829             --conn_running;
1830         }
1831         return (status == 0 ? 0 : -1);
1832     }
1833
1834     /* here we are executing in the child */
1835     ret = setgid(getgid());
1836     if (ret != 0) {
1837         perror("pppd: setgid failed\n");
1838         exit(1);
1839     }
1840     ret = setuid(uid);
1841     if (ret != 0 || getuid() != uid) {
1842         perror("pppd: setuid failed\n");
1843         exit(1);
1844     }
1845     update_system_environment();
1846     execl("/bin/sh", "sh", "-c", program, (char *)0);
1847     perror("pppd: could not exec /bin/sh");
1848     _exit(99);
1849     /* NOTREACHED */
1850 }
1851
1852
1853 /*
1854  * update_script_environment - process the list of set/unset options
1855  * and update the script environment.  Note that we intentionally do
1856  * not update the TDB.  These changes are layered on top right before
1857  * exec.  It is not possible to use script_setenv() or
1858  * ppp_script_unsetenv() safely after this routine is run.
1859  */
1860 static void
1861 update_script_environment(void)
1862 {
1863     struct userenv *uep;
1864
1865     for (uep = userenv_list; uep != NULL; uep = uep->ue_next) {
1866         int i;
1867         char *p, *newstring;
1868         int nlen = strlen(uep->ue_name);
1869
1870         for (i = 0; (p = script_env[i]) != NULL; i++) {
1871             if (strncmp(p, uep->ue_name, nlen) == 0 && p[nlen] == '=')
1872                 break;
1873         }
1874         if (uep->ue_isset) {
1875             nlen += strlen(uep->ue_value) + 2;
1876             newstring = malloc(nlen + 1);
1877             if (newstring == NULL)
1878                 continue;
1879             *newstring++ = 0;
1880             slprintf(newstring, nlen, "%s=%s", uep->ue_name, uep->ue_value);
1881             if (p != NULL)
1882                 script_env[i] = newstring;
1883             else
1884                 add_script_env(i, newstring);
1885         } else if (p != NULL) {
1886             remove_script_env(i);
1887         }
1888     }
1889 }
1890
1891 /*
1892  * run_program - execute a program with given arguments,
1893  * but don't wait for it unless wait is non-zero.
1894  * If the program can't be executed, logs an error unless
1895  * must_exist is 0 and the program file doesn't exist.
1896  * Returns -1 if it couldn't fork, 0 if the file doesn't exist
1897  * or isn't an executable plain file, or the process ID of the child.
1898  * If done != NULL, (*done)(arg) will be called later (within
1899  * reap_kids) iff the return value is > 0.
1900  */
1901 pid_t
1902 run_program(char *prog, char * const *args, int must_exist, void (*done)(void *), void *arg, int wait)
1903 {
1904     int pid, status, ret;
1905     struct stat sbuf;
1906
1907     /*
1908      * First check if the file exists and is executable.
1909      * We don't use access() because that would use the
1910      * real user-id, which might not be root, and the script
1911      * might be accessible only to root.
1912      */
1913     errno = EINVAL;
1914     if (stat(prog, &sbuf) < 0 || !S_ISREG(sbuf.st_mode)
1915         || (sbuf.st_mode & (S_IXUSR|S_IXGRP|S_IXOTH)) == 0) {
1916         if (must_exist || errno != ENOENT)
1917             warn("Can't execute %s: %m", prog);
1918         return 0;
1919     }
1920
1921     pid = ppp_safe_fork(fd_devnull, fd_devnull, fd_devnull);
1922     if (pid == -1) {
1923         error("Failed to create child process for %s: %m", prog);
1924         return -1;
1925     }
1926     if (pid != 0) {
1927         if (debug)
1928             dbglog("Script %s started (pid %d)", prog, pid);
1929         record_child(pid, prog, done, arg, 0);
1930         if (wait) {
1931             while (waitpid(pid, &status, 0) < 0) {
1932                 if (errno == EINTR)
1933                     continue;
1934                 fatal("error waiting for script %s: %m", prog);
1935             }
1936             forget_child(pid, status);
1937         }
1938         return pid;
1939     }
1940
1941     /* Leave the current location */
1942     (void) setsid();    /* No controlling tty. */
1943     (void) umask (S_IRWXG|S_IRWXO);
1944     ret = chdir ("/");  /* no current directory. */
1945     if (ret != 0) {
1946         fatal("Failed to change directory to '/', %m");
1947     }
1948     ret = setuid(0);            /* set real UID = root */
1949     if (ret != 0) {
1950         fatal("Failed to set uid, %m");
1951     }
1952     ret = setgid(getegid());
1953     if (ret != 0) {
1954         fatal("failed to set gid, %m");
1955     }
1956
1957 #ifdef BSD
1958     /* Force the priority back to zero if pppd is running higher. */
1959     if (setpriority (PRIO_PROCESS, 0, 0) < 0)
1960         warn("can't reset priority to 0: %m");
1961 #endif
1962
1963     /* run the program */
1964     update_script_environment();
1965     execve(prog, args, script_env);
1966     if (must_exist || errno != ENOENT) {
1967         /* have to reopen the log, there's nowhere else
1968            for the message to go. */
1969         reopen_log();
1970         syslog(LOG_ERR, "Can't execute %s: %m", prog);
1971         closelog();
1972     }
1973     _exit(99);
1974 }
1975
1976
1977 /*
1978  * record_child - add a child process to the list for reap_kids
1979  * to use.
1980  */
1981 void
1982 record_child(int pid, char *prog, void (*done)(void *), void *arg, int killable)
1983 {
1984     struct subprocess *chp;
1985
1986     ++n_children;
1987
1988     chp = (struct subprocess *) malloc(sizeof(struct subprocess));
1989     if (chp == NULL) {
1990         warn("losing track of %s process", prog);
1991     } else {
1992         chp->pid = pid;
1993         chp->prog = prog;
1994         chp->done = done;
1995         chp->arg = arg;
1996         chp->next = children;
1997         chp->killable = killable;
1998         children = chp;
1999     }
2000 }
2001
2002 /*
2003  * childwait_end - we got fed up waiting for the child processes to
2004  * exit, send them all a SIGTERM.
2005  */
2006 static void
2007 childwait_end(void *arg)
2008 {
2009     struct subprocess *chp;
2010
2011     for (chp = children; chp != NULL; chp = chp->next) {
2012         if (debug)
2013             dbglog("sending SIGTERM to process %d", chp->pid);
2014         kill(chp->pid, SIGTERM);
2015     }
2016     childwait_done = 1;
2017 }
2018
2019 /*
2020  * forget_child - clean up after a dead child
2021  */
2022 static void
2023 forget_child(int pid, int status)
2024 {
2025     struct subprocess *chp, **prevp;
2026
2027     for (prevp = &children; (chp = *prevp) != NULL; prevp = &chp->next) {
2028         if (chp->pid == pid) {
2029             --n_children;
2030             *prevp = chp->next;
2031             break;
2032         }
2033     }
2034     if (WIFSIGNALED(status)) {
2035         warn("Child process %s (pid %d) terminated with signal %d",
2036              (chp? chp->prog: "??"), pid, WTERMSIG(status));
2037     } else if (debug)
2038         dbglog("Script %s finished (pid %d), status = 0x%x",
2039                (chp? chp->prog: "??"), pid,
2040                WIFEXITED(status) ? WEXITSTATUS(status) : status);
2041     if (chp && chp->done)
2042         (*chp->done)(chp->arg);
2043     if (chp)
2044         free(chp);
2045 }
2046
2047 /*
2048  * reap_kids - get status from any dead child processes,
2049  * and log a message for abnormal terminations.
2050  */
2051 static int
2052 reap_kids(void)
2053 {
2054     int pid, status;
2055
2056     if (n_children == 0)
2057         return 0;
2058     while ((pid = waitpid(-1, &status, WNOHANG)) != -1 && pid != 0) {
2059         forget_child(pid, status);
2060     }
2061     if (pid == -1) {
2062         if (errno == ECHILD)
2063             return -1;
2064         if (errno != EINTR)
2065             error("Error waiting for child process: %m");
2066     }
2067     return 0;
2068 }
2069
2070
2071 struct notifier **get_notifier_by_type(ppp_notify_t type)
2072 {
2073     struct notifier **list[NF_MAX_NOTIFY] = {
2074         [NF_PID_CHANGE  ] = &pidchange,
2075         [NF_PHASE_CHANGE] = &phasechange,
2076         [NF_EXIT        ] = &exitnotify,
2077         [NF_SIGNALED    ] = &sigreceived,
2078         [NF_IP_UP       ] = &ip_up_notifier,
2079         [NF_IP_DOWN     ] = &ip_down_notifier,
2080 #ifdef PPP_WITH_IPV6CP
2081         [NF_IPV6_UP     ] = &ipv6_up_notifier,
2082         [NF_IPV6_DOWN   ] = &ipv6_down_notifier,
2083 #endif
2084         [NF_AUTH_UP     ] = &auth_up_notifier,
2085         [NF_LINK_DOWN   ] = &link_down_notifier,
2086         [NF_FORK        ] = &fork_notifier,
2087     };
2088     return list[type];
2089 }
2090
2091 /*
2092  * add_notifier - add a new function to be called when something happens.
2093  */
2094 void
2095 ppp_add_notify(ppp_notify_t type, ppp_notify_fn *func, void *arg)
2096 {
2097     struct notifier **notif = get_notifier_by_type(type);
2098     if (notif) {
2099
2100         struct notifier *np = malloc(sizeof(struct notifier));
2101         if (np == 0)
2102             novm("notifier struct");
2103         np->next = *notif;
2104         np->func = func;
2105         np->arg = arg;
2106         *notif = np;
2107     } else {
2108         error("Could not find notifier function for: %d", type);
2109     }
2110 }
2111
2112 /*
2113  * remove_notifier - remove a function from the list of things to
2114  * be called when something happens.
2115  */
2116 void
2117 ppp_del_notify(ppp_notify_t type, ppp_notify_fn *func, void *arg)
2118 {
2119     struct notifier **notif = get_notifier_by_type(type);
2120     if (notif) {
2121         struct notifier *np;
2122
2123         for (; (np = *notif) != 0; notif = &np->next) {
2124             if (np->func == func && np->arg == arg) {
2125                 *notif = np->next;
2126                 free(np);
2127                 break;
2128             }
2129         }
2130     } else {
2131         error("Could not find notifier function for: %d", type);
2132     }
2133 }
2134
2135 /*
2136  * notify - call a set of functions registered with add_notifier.
2137  */
2138 void
2139 notify(struct notifier *notif, int val)
2140 {
2141     struct notifier *np;
2142
2143     while ((np = notif) != 0) {
2144         notif = np->next;
2145         (*np->func)(np->arg, val);
2146     }
2147 }
2148
2149 /*
2150  * novm - log an error message saying we ran out of memory, and die.
2151  */
2152 void
2153 novm(const char *msg)
2154 {
2155     fatal("Virtual memory exhausted allocating %s\n", msg);
2156 }
2157
2158 /*
2159  * ppp_script_setenv - set an environment variable value to be used
2160  * for scripts that we run (e.g. ip-up, auth-up, etc.)
2161  */
2162 void
2163 ppp_script_setenv(char *var, char *value, int iskey)
2164 {
2165     size_t varl = strlen(var);
2166     size_t vl = varl + strlen(value) + 2;
2167     int i;
2168     char *p, *newstring;
2169
2170     newstring = (char *) malloc(vl+1);
2171     if (newstring == 0)
2172         return;
2173     *newstring++ = iskey;
2174     slprintf(newstring, vl, "%s=%s", var, value);
2175
2176     /* check if this variable is already set */
2177     if (script_env != 0) {
2178         for (i = 0; (p = script_env[i]) != 0; ++i) {
2179             if (strncmp(p, var, varl) == 0 && p[varl] == '=') {
2180 #ifdef PPP_WITH_TDB
2181                 if (p[-1] && pppdb != NULL)
2182                     delete_db_key(p);
2183 #endif
2184                 free(p-1);
2185                 script_env[i] = newstring;
2186 #ifdef PPP_WITH_TDB
2187                 if (pppdb != NULL) {
2188                     if (iskey)
2189                         add_db_key(newstring);
2190                     update_db_entry();
2191                 }
2192 #endif
2193                 return;
2194             }
2195         }
2196     } else {
2197         /* no space allocated for script env. ptrs. yet */
2198         i = 0;
2199         script_env = malloc(16 * sizeof(char *));
2200         if (script_env == 0) {
2201             free(newstring - 1);
2202             return;
2203         }
2204         s_env_nalloc = 16;
2205     }
2206
2207     if (!add_script_env(i, newstring))
2208         return;
2209
2210 #ifdef PPP_WITH_TDB
2211     if (pppdb != NULL) {
2212         if (iskey)
2213             add_db_key(newstring);
2214         update_db_entry();
2215     }
2216 #endif
2217 }
2218
2219 /*
2220  * ppp_script_unsetenv - remove a variable from the environment
2221  * for scripts.
2222  */
2223 void
2224 ppp_script_unsetenv(char *var)
2225 {
2226     int vl = strlen(var);
2227     int i;
2228     char *p;
2229
2230     if (script_env == 0)
2231         return;
2232     for (i = 0; (p = script_env[i]) != 0; ++i) {
2233         if (strncmp(p, var, vl) == 0 && p[vl] == '=') {
2234 #ifdef PPP_WITH_TDB
2235             if (p[-1] && pppdb != NULL)
2236                 delete_db_key(p);
2237 #endif
2238             remove_script_env(i);
2239             break;
2240         }
2241     }
2242 #ifdef PPP_WITH_TDB
2243     if (pppdb != NULL)
2244         update_db_entry();
2245 #endif
2246 }
2247
2248 /*
2249  * Any arbitrary string used as a key for locking the database.
2250  * It doesn't matter what it is as long as all pppds use the same string.
2251  */
2252 #define PPPD_LOCK_KEY   "pppd lock"
2253
2254 /*
2255  * lock_db - get an exclusive lock on the TDB database.
2256  * Used to ensure atomicity of various lookup/modify operations.
2257  */
2258 void lock_db(void)
2259 {
2260 #ifdef PPP_WITH_TDB
2261         TDB_DATA key;
2262
2263         key.dptr = PPPD_LOCK_KEY;
2264         key.dsize = strlen(key.dptr);
2265         tdb_chainlock(pppdb, key);
2266 #endif
2267 }
2268
2269 /*
2270  * unlock_db - remove the exclusive lock obtained by lock_db.
2271  */
2272 void unlock_db(void)
2273 {
2274 #ifdef PPP_WITH_TDB
2275         TDB_DATA key;
2276
2277         key.dptr = PPPD_LOCK_KEY;
2278         key.dsize = strlen(key.dptr);
2279         tdb_chainunlock(pppdb, key);
2280 #endif
2281 }
2282
2283 #ifdef PPP_WITH_TDB
2284 /*
2285  * update_db_entry - update our entry in the database.
2286  */
2287 static void
2288 update_db_entry(void)
2289 {
2290     TDB_DATA key, dbuf;
2291     int vlen, i;
2292     char *p, *q, *vbuf;
2293
2294     if (script_env == NULL)
2295         return;
2296     vlen = 0;
2297     for (i = 0; (p = script_env[i]) != 0; ++i)
2298         vlen += strlen(p) + 1;
2299     vbuf = malloc(vlen + 1);
2300     if (vbuf == 0)
2301         novm("database entry");
2302     q = vbuf;
2303     for (i = 0; (p = script_env[i]) != 0; ++i)
2304         q += slprintf(q, vbuf + vlen - q, "%s;", p);
2305
2306     key.dptr = db_key;
2307     key.dsize = strlen(db_key);
2308     dbuf.dptr = vbuf;
2309     dbuf.dsize = vlen;
2310     if (tdb_store(pppdb, key, dbuf, TDB_REPLACE))
2311         error("tdb_store failed: %s", tdb_errorstr(pppdb));
2312
2313     if (vbuf)
2314         free(vbuf);
2315
2316 }
2317
2318 /*
2319  * add_db_key - add a key that we can use to look up our database entry.
2320  */
2321 static void
2322 add_db_key(const char *str)
2323 {
2324     TDB_DATA key, dbuf;
2325
2326     key.dptr = (char *) str;
2327     key.dsize = strlen(str);
2328     dbuf.dptr = db_key;
2329     dbuf.dsize = strlen(db_key);
2330     if (tdb_store(pppdb, key, dbuf, TDB_REPLACE))
2331         error("tdb_store key failed: %s", tdb_errorstr(pppdb));
2332 }
2333
2334 /*
2335  * delete_db_key - delete a key for looking up our database entry.
2336  */
2337 static void
2338 delete_db_key(const char *str)
2339 {
2340     TDB_DATA key;
2341
2342     key.dptr = (char *) str;
2343     key.dsize = strlen(str);
2344     tdb_delete(pppdb, key);
2345 }
2346
2347 /*
2348  * cleanup_db - delete all the entries we put in the database.
2349  */
2350 static void
2351 cleanup_db(void)
2352 {
2353     TDB_DATA key;
2354     int i;
2355     char *p;
2356
2357     key.dptr = db_key;
2358     key.dsize = strlen(db_key);
2359     tdb_delete(pppdb, key);
2360     for (i = 0; (p = script_env[i]) != 0; ++i)
2361         if (p[-1])
2362             delete_db_key(p);
2363 }
2364 #endif /* PPP_WITH_TDB */