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