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