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