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