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