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