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