OSDN Git Service

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