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