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