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