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