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