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