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