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