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