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