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