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