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