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