OSDN Git Service

efcc0e212ef7bc2af36d1ded315ddfec433f6e97
[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 #ifndef ANDROID_CHANGES
816     openlog("pppd", LOG_PID | LOG_NDELAY, LOG_PPP);
817     setlogmask(LOG_UPTO(LOG_INFO));
818 #endif
819 }
820
821 /*
822  * Create a file containing our process ID.
823  */
824 static void
825 create_pidfile(pid)
826     int pid;
827 {
828 #ifndef ANDROID_CHANGES
829     FILE *pidfile;
830
831     slprintf(pidfilename, sizeof(pidfilename), "%s%s.pid",
832              _PATH_VARRUN, ifname);
833     if ((pidfile = fopen(pidfilename, "w")) != NULL) {
834         fprintf(pidfile, "%d\n", pid);
835         (void) fclose(pidfile);
836     } else {
837         error("Failed to create pid file %s: %m", pidfilename);
838         pidfilename[0] = 0;
839     }
840 #endif
841 }
842
843 void
844 create_linkpidfile(pid)
845     int pid;
846 {
847 #ifndef ANDROID_CHANGES
848     FILE *pidfile;
849
850     if (linkname[0] == 0)
851         return;
852     script_setenv("LINKNAME", linkname, 1);
853     slprintf(linkpidfile, sizeof(linkpidfile), "%sppp-%s.pid",
854              _PATH_VARRUN, linkname);
855     if ((pidfile = fopen(linkpidfile, "w")) != NULL) {
856         fprintf(pidfile, "%d\n", pid);
857         if (ifname[0])
858             fprintf(pidfile, "%s\n", ifname);
859         (void) fclose(pidfile);
860     } else {
861         error("Failed to create pid file %s: %m", linkpidfile);
862         linkpidfile[0] = 0;
863     }
864 #endif
865 }
866
867 /*
868  * remove_pidfile - remove our pid files
869  */
870 void remove_pidfiles()
871 {
872 #ifndef ANDROID_CHANGES
873     if (pidfilename[0] != 0 && unlink(pidfilename) < 0 && errno != ENOENT)
874         warn("unable to delete pid file %s: %m", pidfilename);
875     pidfilename[0] = 0;
876     if (linkpidfile[0] != 0 && unlink(linkpidfile) < 0 && errno != ENOENT)
877         warn("unable to delete pid file %s: %m", linkpidfile);
878     linkpidfile[0] = 0;
879 #endif
880 }
881
882 /*
883  * holdoff_end - called via a timeout when the holdoff period ends.
884  */
885 static void
886 holdoff_end(arg)
887     void *arg;
888 {
889     new_phase(PHASE_DORMANT);
890 }
891
892 /* List of protocol names, to make our messages a little more informative. */
893 struct protocol_list {
894     u_short     proto;
895     const char  *name;
896 } protocol_list[] = {
897     { 0x21,     "IP" },
898     { 0x23,     "OSI Network Layer" },
899     { 0x25,     "Xerox NS IDP" },
900     { 0x27,     "DECnet Phase IV" },
901     { 0x29,     "Appletalk" },
902     { 0x2b,     "Novell IPX" },
903     { 0x2d,     "VJ compressed TCP/IP" },
904     { 0x2f,     "VJ uncompressed TCP/IP" },
905     { 0x31,     "Bridging PDU" },
906     { 0x33,     "Stream Protocol ST-II" },
907     { 0x35,     "Banyan Vines" },
908     { 0x39,     "AppleTalk EDDP" },
909     { 0x3b,     "AppleTalk SmartBuffered" },
910     { 0x3d,     "Multi-Link" },
911     { 0x3f,     "NETBIOS Framing" },
912     { 0x41,     "Cisco Systems" },
913     { 0x43,     "Ascom Timeplex" },
914     { 0x45,     "Fujitsu Link Backup and Load Balancing (LBLB)" },
915     { 0x47,     "DCA Remote Lan" },
916     { 0x49,     "Serial Data Transport Protocol (PPP-SDTP)" },
917     { 0x4b,     "SNA over 802.2" },
918     { 0x4d,     "SNA" },
919     { 0x4f,     "IP6 Header Compression" },
920     { 0x6f,     "Stampede Bridging" },
921     { 0xfb,     "single-link compression" },
922     { 0xfd,     "1st choice compression" },
923     { 0x0201,   "802.1d Hello Packets" },
924     { 0x0203,   "IBM Source Routing BPDU" },
925     { 0x0205,   "DEC LANBridge100 Spanning Tree" },
926     { 0x0231,   "Luxcom" },
927     { 0x0233,   "Sigma Network Systems" },
928     { 0x8021,   "Internet Protocol Control Protocol" },
929     { 0x8023,   "OSI Network Layer Control Protocol" },
930     { 0x8025,   "Xerox NS IDP Control Protocol" },
931     { 0x8027,   "DECnet Phase IV Control Protocol" },
932     { 0x8029,   "Appletalk Control Protocol" },
933     { 0x802b,   "Novell IPX Control Protocol" },
934     { 0x8031,   "Bridging NCP" },
935     { 0x8033,   "Stream Protocol Control Protocol" },
936     { 0x8035,   "Banyan Vines Control Protocol" },
937     { 0x803d,   "Multi-Link Control Protocol" },
938     { 0x803f,   "NETBIOS Framing Control Protocol" },
939     { 0x8041,   "Cisco Systems Control Protocol" },
940     { 0x8043,   "Ascom Timeplex" },
941     { 0x8045,   "Fujitsu LBLB Control Protocol" },
942     { 0x8047,   "DCA Remote Lan Network Control Protocol (RLNCP)" },
943     { 0x8049,   "Serial Data Control Protocol (PPP-SDCP)" },
944     { 0x804b,   "SNA over 802.2 Control Protocol" },
945     { 0x804d,   "SNA Control Protocol" },
946     { 0x804f,   "IP6 Header Compression Control Protocol" },
947     { 0x006f,   "Stampede Bridging Control Protocol" },
948     { 0x80fb,   "Single Link Compression Control Protocol" },
949     { 0x80fd,   "Compression Control Protocol" },
950     { 0xc021,   "Link Control Protocol" },
951     { 0xc023,   "Password Authentication Protocol" },
952     { 0xc025,   "Link Quality Report" },
953     { 0xc027,   "Shiva Password Authentication Protocol" },
954     { 0xc029,   "CallBack Control Protocol (CBCP)" },
955     { 0xc081,   "Container Control Protocol" },
956     { 0xc223,   "Challenge Handshake Authentication Protocol" },
957     { 0xc281,   "Proprietary Authentication Protocol" },
958     { 0,        NULL },
959 };
960
961 /*
962  * protocol_name - find a name for a PPP protocol.
963  */
964 const char *
965 protocol_name(proto)
966     int proto;
967 {
968     struct protocol_list *lp;
969
970     for (lp = protocol_list; lp->proto != 0; ++lp)
971         if (proto == lp->proto)
972             return lp->name;
973     return NULL;
974 }
975
976 /*
977  * get_input - called when incoming data is available.
978  */
979 static void
980 get_input()
981 {
982     int len, i;
983     u_char *p;
984     u_short protocol;
985     struct protent *protp;
986
987     p = inpacket_buf;   /* point to beginning of packet buffer */
988
989     len = read_packet(inpacket_buf);
990     if (len < 0)
991         return;
992
993     if (len == 0) {
994         if (bundle_eof && multilink_master) {
995             notice("Last channel has disconnected");
996             mp_bundle_terminated();
997             return;
998         }
999         notice("Modem hangup");
1000         hungup = 1;
1001         status = EXIT_HANGUP;
1002         lcp_lowerdown(0);       /* serial link is no longer available */
1003         link_terminated(0);
1004         return;
1005     }
1006
1007     if (len < PPP_HDRLEN) {
1008         dbglog("received short packet:%.*B", len, p);
1009         return;
1010     }
1011
1012     dump_packet("rcvd", p, len);
1013     if (snoop_recv_hook) snoop_recv_hook(p, len);
1014
1015     p += 2;                             /* Skip address and control */
1016     GETSHORT(protocol, p);
1017     len -= PPP_HDRLEN;
1018
1019     /*
1020      * Toss all non-LCP packets unless LCP is OPEN.
1021      */
1022     if (protocol != PPP_LCP && lcp_fsm[0].state != OPENED) {
1023         dbglog("Discarded non-LCP packet when LCP not open");
1024         return;
1025     }
1026
1027     /*
1028      * Until we get past the authentication phase, toss all packets
1029      * except LCP, LQR and authentication packets.
1030      */
1031     if (phase <= PHASE_AUTHENTICATE
1032         && !(protocol == PPP_LCP || protocol == PPP_LQR
1033              || protocol == PPP_PAP || protocol == PPP_CHAP ||
1034                 protocol == PPP_EAP)) {
1035         dbglog("discarding proto 0x%x in phase %d",
1036                    protocol, phase);
1037         return;
1038     }
1039
1040     /*
1041      * Upcall the proper protocol input routine.
1042      */
1043     for (i = 0; (protp = protocols[i]) != NULL; ++i) {
1044         if (protp->protocol == protocol && protp->enabled_flag) {
1045             (*protp->input)(0, p, len);
1046             return;
1047         }
1048         if (protocol == (protp->protocol & ~0x8000) && protp->enabled_flag
1049             && protp->datainput != NULL) {
1050             (*protp->datainput)(0, p, len);
1051             return;
1052         }
1053     }
1054
1055     if (debug) {
1056         const char *pname = protocol_name(protocol);
1057         if (pname != NULL)
1058             warn("Unsupported protocol '%s' (0x%x) received", pname, protocol);
1059         else
1060             warn("Unsupported protocol 0x%x received", protocol);
1061     }
1062     lcp_sprotrej(0, p - PPP_HDRLEN, len + PPP_HDRLEN);
1063 }
1064
1065 /*
1066  * ppp_send_config - configure the transmit-side characteristics of
1067  * the ppp interface.  Returns -1, indicating an error, if the channel
1068  * send_config procedure called error() (or incremented error_count
1069  * itself), otherwise 0.
1070  */
1071 int
1072 ppp_send_config(unit, mtu, accm, pcomp, accomp)
1073     int unit, mtu;
1074     u_int32_t accm;
1075     int pcomp, accomp;
1076 {
1077         int errs;
1078
1079         if (the_channel->send_config == NULL)
1080                 return 0;
1081         errs = error_count;
1082         (*the_channel->send_config)(mtu, accm, pcomp, accomp);
1083         return (error_count != errs)? -1: 0;
1084 }
1085
1086 /*
1087  * ppp_recv_config - configure the receive-side characteristics of
1088  * the ppp interface.  Returns -1, indicating an error, if the channel
1089  * recv_config procedure called error() (or incremented error_count
1090  * itself), otherwise 0.
1091  */
1092 int
1093 ppp_recv_config(unit, mru, accm, pcomp, accomp)
1094     int unit, mru;
1095     u_int32_t accm;
1096     int pcomp, accomp;
1097 {
1098         int errs;
1099
1100         if (the_channel->recv_config == NULL)
1101                 return 0;
1102         errs = error_count;
1103         (*the_channel->recv_config)(mru, accm, pcomp, accomp);
1104         return (error_count != errs)? -1: 0;
1105 }
1106
1107 /*
1108  * new_phase - signal the start of a new phase of pppd's operation.
1109  */
1110 void
1111 new_phase(p)
1112     int p;
1113 {
1114     phase = p;
1115     if (new_phase_hook)
1116         (*new_phase_hook)(p);
1117     notify(phasechange, p);
1118 }
1119
1120 /*
1121  * die - clean up state and exit with the specified status.
1122  */
1123 void
1124 die(status)
1125     int status;
1126 {
1127     if (!doing_multilink || multilink_master)
1128         print_link_stats();
1129     cleanup();
1130     notify(exitnotify, status);
1131     syslog(LOG_INFO, "Exit.");
1132     exit(status);
1133 }
1134
1135 /*
1136  * cleanup - restore anything which needs to be restored before we exit
1137  */
1138 /* ARGSUSED */
1139 static void
1140 cleanup()
1141 {
1142     sys_cleanup();
1143
1144     if (fd_ppp >= 0)
1145         the_channel->disestablish_ppp(devfd);
1146     if (the_channel->cleanup)
1147         (*the_channel->cleanup)();
1148     remove_pidfiles();
1149
1150 #ifdef USE_TDB
1151     if (pppdb != NULL)
1152         cleanup_db();
1153 #endif
1154
1155 }
1156
1157 void
1158 print_link_stats()
1159 {
1160     /*
1161      * Print connect time and statistics.
1162      */
1163     if (link_stats_valid) {
1164        int t = (link_connect_time + 5) / 6;    /* 1/10ths of minutes */
1165        info("Connect time %d.%d minutes.", t/10, t%10);
1166        info("Sent %u bytes, received %u bytes.",
1167             link_stats.bytes_out, link_stats.bytes_in);
1168        link_stats_valid = 0;
1169     }
1170 }
1171
1172 /*
1173  * reset_link_stats - "reset" stats when link goes up.
1174  */
1175 void
1176 reset_link_stats(u)
1177     int u;
1178 {
1179     if (!get_ppp_stats(u, &old_link_stats))
1180         return;
1181     gettimeofday(&start_time, NULL);
1182 }
1183
1184 /*
1185  * update_link_stats - get stats at link termination.
1186  */
1187 void
1188 update_link_stats(u)
1189     int u;
1190 {
1191     struct timeval now;
1192     char numbuf[32];
1193
1194     if (!get_ppp_stats(u, &link_stats)
1195         || gettimeofday(&now, NULL) < 0)
1196         return;
1197     link_connect_time = now.tv_sec - start_time.tv_sec;
1198     link_stats_valid = 1;
1199
1200     link_stats.bytes_in  -= old_link_stats.bytes_in;
1201     link_stats.bytes_out -= old_link_stats.bytes_out;
1202     link_stats.pkts_in   -= old_link_stats.pkts_in;
1203     link_stats.pkts_out  -= old_link_stats.pkts_out;
1204
1205     slprintf(numbuf, sizeof(numbuf), "%u", link_connect_time);
1206     script_setenv("CONNECT_TIME", numbuf, 0);
1207     slprintf(numbuf, sizeof(numbuf), "%u", link_stats.bytes_out);
1208     script_setenv("BYTES_SENT", numbuf, 0);
1209     slprintf(numbuf, sizeof(numbuf), "%u", link_stats.bytes_in);
1210     script_setenv("BYTES_RCVD", numbuf, 0);
1211 }
1212
1213
1214 struct  callout {
1215     struct timeval      c_time;         /* time at which to call routine */
1216     void                *c_arg;         /* argument to routine */
1217     void                (*c_func) __P((void *)); /* routine */
1218     struct              callout *c_next;
1219 };
1220
1221 static struct callout *callout = NULL;  /* Callout list */
1222 static struct timeval timenow;          /* Current time */
1223
1224 /*
1225  * timeout - Schedule a timeout.
1226  */
1227 void
1228 timeout(func, arg, secs, usecs)
1229     void (*func) __P((void *));
1230     void *arg;
1231     int secs, usecs;
1232 {
1233     struct callout *newp, *p, **pp;
1234
1235     /*
1236      * Allocate timeout.
1237      */
1238     if ((newp = (struct callout *) malloc(sizeof(struct callout))) == NULL)
1239         fatal("Out of memory in timeout()!");
1240     newp->c_arg = arg;
1241     newp->c_func = func;
1242     gettimeofday(&timenow, NULL);
1243     newp->c_time.tv_sec = timenow.tv_sec + secs;
1244     newp->c_time.tv_usec = timenow.tv_usec + usecs;
1245     if (newp->c_time.tv_usec >= 1000000) {
1246         newp->c_time.tv_sec += newp->c_time.tv_usec / 1000000;
1247         newp->c_time.tv_usec %= 1000000;
1248     }
1249
1250     /*
1251      * Find correct place and link it in.
1252      */
1253     for (pp = &callout; (p = *pp); pp = &p->c_next)
1254         if (newp->c_time.tv_sec < p->c_time.tv_sec
1255             || (newp->c_time.tv_sec == p->c_time.tv_sec
1256                 && newp->c_time.tv_usec < p->c_time.tv_usec))
1257             break;
1258     newp->c_next = p;
1259     *pp = newp;
1260 }
1261
1262
1263 /*
1264  * untimeout - Unschedule a timeout.
1265  */
1266 void
1267 untimeout(func, arg)
1268     void (*func) __P((void *));
1269     void *arg;
1270 {
1271     struct callout **copp, *freep;
1272
1273     /*
1274      * Find first matching timeout and remove it from the list.
1275      */
1276     for (copp = &callout; (freep = *copp); copp = &freep->c_next)
1277         if (freep->c_func == func && freep->c_arg == arg) {
1278             *copp = freep->c_next;
1279             free((char *) freep);
1280             break;
1281         }
1282 }
1283
1284
1285 /*
1286  * calltimeout - Call any timeout routines which are now due.
1287  */
1288 static void
1289 calltimeout()
1290 {
1291     struct callout *p;
1292
1293     while (callout != NULL) {
1294         p = callout;
1295
1296         if (gettimeofday(&timenow, NULL) < 0)
1297             fatal("Failed to get time of day: %m");
1298         if (!(p->c_time.tv_sec < timenow.tv_sec
1299               || (p->c_time.tv_sec == timenow.tv_sec
1300                   && p->c_time.tv_usec <= timenow.tv_usec)))
1301             break;              /* no, it's not time yet */
1302
1303         callout = p->c_next;
1304         (*p->c_func)(p->c_arg);
1305
1306         free((char *) p);
1307     }
1308 }
1309
1310
1311 /*
1312  * timeleft - return the length of time until the next timeout is due.
1313  */
1314 static struct timeval *
1315 timeleft(tvp)
1316     struct timeval *tvp;
1317 {
1318     if (callout == NULL)
1319         return NULL;
1320
1321     gettimeofday(&timenow, NULL);
1322     tvp->tv_sec = callout->c_time.tv_sec - timenow.tv_sec;
1323     tvp->tv_usec = callout->c_time.tv_usec - timenow.tv_usec;
1324     if (tvp->tv_usec < 0) {
1325         tvp->tv_usec += 1000000;
1326         tvp->tv_sec -= 1;
1327     }
1328     if (tvp->tv_sec < 0)
1329         tvp->tv_sec = tvp->tv_usec = 0;
1330
1331     return tvp;
1332 }
1333
1334
1335 /*
1336  * kill_my_pg - send a signal to our process group, and ignore it ourselves.
1337  * We assume that sig is currently blocked.
1338  */
1339 static void
1340 kill_my_pg(sig)
1341     int sig;
1342 {
1343     struct sigaction act, oldact;
1344
1345     sigemptyset(&act.sa_mask);          /* unnecessary in fact */
1346     act.sa_handler = SIG_IGN;
1347     act.sa_flags = 0;
1348     kill(0, sig);
1349     /*
1350      * The kill() above made the signal pending for us, as well as
1351      * the rest of our process group, but we don't want it delivered
1352      * to us.  It is blocked at the moment.  Setting it to be ignored
1353      * will cause the pending signal to be discarded.  If we did the
1354      * kill() after setting the signal to be ignored, it is unspecified
1355      * (by POSIX) whether the signal is immediately discarded or left
1356      * pending, and in fact Linux would leave it pending, and so it
1357      * would be delivered after the current signal handler exits,
1358      * leading to an infinite loop.
1359      */
1360     sigaction(sig, &act, &oldact);
1361     sigaction(sig, &oldact, NULL);
1362 }
1363
1364
1365 /*
1366  * hup - Catch SIGHUP signal.
1367  *
1368  * Indicates that the physical layer has been disconnected.
1369  * We don't rely on this indication; if the user has sent this
1370  * signal, we just take the link down.
1371  */
1372 static void
1373 hup(sig)
1374     int sig;
1375 {
1376     /* can't log a message here, it can deadlock */
1377     got_sighup = 1;
1378     if (conn_running)
1379         /* Send the signal to the [dis]connector process(es) also */
1380         kill_my_pg(sig);
1381     notify(sigreceived, sig);
1382     if (waiting)
1383         siglongjmp(sigjmp, 1);
1384 }
1385
1386
1387 /*
1388  * term - Catch SIGTERM signal and SIGINT signal (^C/del).
1389  *
1390  * Indicates that we should initiate a graceful disconnect and exit.
1391  */
1392 /*ARGSUSED*/
1393 static void
1394 term(sig)
1395     int sig;
1396 {
1397     /* can't log a message here, it can deadlock */
1398     got_sigterm = sig;
1399     if (conn_running)
1400         /* Send the signal to the [dis]connector process(es) also */
1401         kill_my_pg(sig);
1402     notify(sigreceived, sig);
1403     if (waiting)
1404         siglongjmp(sigjmp, 1);
1405 }
1406
1407
1408 /*
1409  * chld - Catch SIGCHLD signal.
1410  * Sets a flag so we will call reap_kids in the mainline.
1411  */
1412 static void
1413 chld(sig)
1414     int sig;
1415 {
1416     got_sigchld = 1;
1417     if (waiting)
1418         siglongjmp(sigjmp, 1);
1419 }
1420
1421
1422 /*
1423  * toggle_debug - Catch SIGUSR1 signal.
1424  *
1425  * Toggle debug flag.
1426  */
1427 /*ARGSUSED*/
1428 static void
1429 toggle_debug(sig)
1430     int sig;
1431 {
1432     debug = !debug;
1433     if (debug) {
1434         setlogmask(LOG_UPTO(LOG_DEBUG));
1435     } else {
1436         setlogmask(LOG_UPTO(LOG_WARNING));
1437     }
1438 }
1439
1440
1441 /*
1442  * open_ccp - Catch SIGUSR2 signal.
1443  *
1444  * Try to (re)negotiate compression.
1445  */
1446 /*ARGSUSED*/
1447 static void
1448 open_ccp(sig)
1449     int sig;
1450 {
1451     got_sigusr2 = 1;
1452     if (waiting)
1453         siglongjmp(sigjmp, 1);
1454 }
1455
1456
1457 /*
1458  * bad_signal - We've caught a fatal signal.  Clean up state and exit.
1459  */
1460 static void
1461 bad_signal(sig)
1462     int sig;
1463 {
1464     static int crashed = 0;
1465
1466     if (crashed)
1467         _exit(127);
1468     crashed = 1;
1469     error("Fatal signal %d", sig);
1470     if (conn_running)
1471         kill_my_pg(SIGTERM);
1472     notify(sigreceived, sig);
1473     die(127);
1474 }
1475
1476 /*
1477  * safe_fork - Create a child process.  The child closes all the
1478  * file descriptors that we don't want to leak to a script.
1479  * The parent waits for the child to do this before returning.
1480  * This also arranges for the specified fds to be dup'd to
1481  * fds 0, 1, 2 in the child.
1482  */
1483 pid_t
1484 safe_fork(int infd, int outfd, int errfd)
1485 {
1486         pid_t pid;
1487         int fd, pipefd[2];
1488         char buf[1];
1489
1490         /* make sure fds 0, 1, 2 are occupied (probably not necessary) */
1491         while ((fd = dup(fd_devnull)) >= 0) {
1492                 if (fd > 2) {
1493                         close(fd);
1494                         break;
1495                 }
1496         }
1497
1498         if (pipe(pipefd) == -1)
1499                 pipefd[0] = pipefd[1] = -1;
1500         pid = fork();
1501         if (pid < 0) {
1502                 error("fork failed: %m");
1503                 return -1;
1504         }
1505         if (pid > 0) {
1506                 /* parent */
1507                 close(pipefd[1]);
1508                 /* this read() blocks until the close(pipefd[1]) below */
1509                 complete_read(pipefd[0], buf, 1);
1510                 close(pipefd[0]);
1511                 return pid;
1512         }
1513
1514         /* Executing in the child */
1515         sys_close();
1516 #ifdef USE_TDB
1517         tdb_close(pppdb);
1518 #endif
1519
1520         /* make sure infd, outfd and errfd won't get tromped on below */
1521         if (infd == 1 || infd == 2)
1522                 infd = dup(infd);
1523         if (outfd == 0 || outfd == 2)
1524                 outfd = dup(outfd);
1525         if (errfd == 0 || errfd == 1)
1526                 errfd = dup(errfd);
1527
1528         /* dup the in, out, err fds to 0, 1, 2 */
1529         if (infd != 0)
1530                 dup2(infd, 0);
1531         if (outfd != 1)
1532                 dup2(outfd, 1);
1533         if (errfd != 2)
1534                 dup2(errfd, 2);
1535
1536 #ifndef ANDROID_CHANGES
1537         closelog();
1538 #endif
1539         if (log_to_fd > 2)
1540                 close(log_to_fd);
1541         if (the_channel->close)
1542                 (*the_channel->close)();
1543         else
1544                 close(devfd);   /* some plugins don't have a close function */
1545         close(fd_ppp);
1546         close(fd_devnull);
1547         if (infd != 0)
1548                 close(infd);
1549         if (outfd != 1)
1550                 close(outfd);
1551         if (errfd != 2)
1552                 close(errfd);
1553
1554         notify(fork_notifier, 0);
1555         close(pipefd[0]);
1556         /* this close unblocks the read() call above in the parent */
1557         close(pipefd[1]);
1558
1559         return 0;
1560 }
1561
1562 /*
1563  * device_script - run a program to talk to the specified fds
1564  * (e.g. to run the connector or disconnector script).
1565  * stderr gets connected to the log fd or to the _PATH_CONNERRS file.
1566  */
1567 int
1568 device_script(program, in, out, dont_wait)
1569     char *program;
1570     int in, out;
1571     int dont_wait;
1572 {
1573     int pid;
1574     int status = -1;
1575     int errfd;
1576
1577     if (log_to_fd >= 0)
1578         errfd = log_to_fd;
1579     else
1580         errfd = open(_PATH_CONNERRS, O_WRONLY | O_APPEND | O_CREAT, 0600);
1581
1582     ++conn_running;
1583     pid = safe_fork(in, out, errfd);
1584
1585     if (pid != 0 && log_to_fd < 0)
1586         close(errfd);
1587
1588     if (pid < 0) {
1589         --conn_running;
1590         error("Failed to create child process: %m");
1591         return -1;
1592     }
1593
1594     if (pid != 0) {
1595         if (dont_wait) {
1596             record_child(pid, program, NULL, NULL);
1597             status = 0;
1598         } else {
1599             while (waitpid(pid, &status, 0) < 0) {
1600                 if (errno == EINTR)
1601                     continue;
1602                 fatal("error waiting for (dis)connection process: %m");
1603             }
1604             --conn_running;
1605         }
1606         return (status == 0 ? 0 : -1);
1607     }
1608
1609     /* here we are executing in the child */
1610
1611     setgid(getgid());
1612     setuid(uid);
1613     if (getuid() != uid) {
1614         fprintf(stderr, "pppd: setuid failed\n");
1615         exit(1);
1616     }
1617     execl("/system/bin/sh", "sh", "-c", program, NULL);
1618     perror("pppd: could not exec /bin/sh");
1619     exit(99);
1620     /* NOTREACHED */
1621 }
1622
1623
1624 /*
1625  * run-program - execute a program with given arguments,
1626  * but don't wait for it.
1627  * If the program can't be executed, logs an error unless
1628  * must_exist is 0 and the program file doesn't exist.
1629  * Returns -1 if it couldn't fork, 0 if the file doesn't exist
1630  * or isn't an executable plain file, or the process ID of the child.
1631  * If done != NULL, (*done)(arg) will be called later (within
1632  * reap_kids) iff the return value is > 0.
1633  */
1634 pid_t
1635 run_program(prog, args, must_exist, done, arg)
1636     char *prog;
1637     char **args;
1638     int must_exist;
1639     void (*done) __P((void *));
1640     void *arg;
1641 {
1642     int pid;
1643     struct stat sbuf;
1644
1645 #ifdef ANDROID_CHANGES
1646     /* Originally linkname is used to create named pid files, which is
1647     * meaningless to android. Here we use it as a suffix of program names,
1648     * so different users can run their own program by specifying it. For
1649     * example, "/etc/ppp/ip-up-vpn" will be executed when IPCP is up and
1650     * linkname is "vpn". Note that "/" is not allowed for security reasons. */
1651     char file[MAXPATHLEN];
1652
1653     if (linkname[0] && !strchr(linkname, '/')) {
1654         snprintf(file, MAXPATHLEN, "%s-%s", prog, linkname);
1655         file[MAXPATHLEN - 1] = '\0';
1656         prog = file;
1657     }
1658 #endif
1659
1660     /*
1661      * First check if the file exists and is executable.
1662      * We don't use access() because that would use the
1663      * real user-id, which might not be root, and the script
1664      * might be accessible only to root.
1665      */
1666     errno = EINVAL;
1667     if (stat(prog, &sbuf) < 0 || !S_ISREG(sbuf.st_mode)
1668         || (sbuf.st_mode & (S_IXUSR|S_IXGRP|S_IXOTH)) == 0) {
1669         if (must_exist || errno != ENOENT)
1670             warn("Can't execute %s: %m", prog);
1671         return 0;
1672     }
1673
1674     pid = safe_fork(fd_devnull, fd_devnull, fd_devnull);
1675     if (pid == -1) {
1676         error("Failed to create child process for %s: %m", prog);
1677         return -1;
1678     }
1679     if (pid != 0) {
1680         if (debug)
1681             dbglog("Script %s started (pid %d)", prog, pid);
1682         record_child(pid, prog, done, arg);
1683         return pid;
1684     }
1685
1686     /* Leave the current location */
1687     (void) setsid();    /* No controlling tty. */
1688     (void) umask (S_IRWXG|S_IRWXO);
1689     (void) chdir ("/"); /* no current directory. */
1690     setuid(0);          /* set real UID = root */
1691     setgid(getegid());
1692
1693 #ifdef BSD
1694     /* Force the priority back to zero if pppd is running higher. */
1695     if (setpriority (PRIO_PROCESS, 0, 0) < 0)
1696         warn("can't reset priority to 0: %m");
1697 #endif
1698
1699     /* run the program */
1700     execve(prog, args, script_env);
1701     if (must_exist || errno != ENOENT) {
1702 #ifndef ANDROID_CHANGES
1703         /* have to reopen the log, there's nowhere else
1704            for the message to go. */
1705         reopen_log();
1706         syslog(LOG_ERR, "Can't execute %s: %m", prog);
1707         closelog();
1708 #else
1709         error("Can't execute %s: %m", prog);
1710 #endif
1711     }
1712     _exit(-1);
1713 }
1714
1715
1716 /*
1717  * record_child - add a child process to the list for reap_kids
1718  * to use.
1719  */
1720 void
1721 record_child(pid, prog, done, arg)
1722     int pid;
1723     char *prog;
1724     void (*done) __P((void *));
1725     void *arg;
1726 {
1727     struct subprocess *chp;
1728
1729     ++n_children;
1730
1731     chp = (struct subprocess *) malloc(sizeof(struct subprocess));
1732     if (chp == NULL) {
1733         warn("losing track of %s process", prog);
1734     } else {
1735         chp->pid = pid;
1736         chp->prog = prog;
1737         chp->done = done;
1738         chp->arg = arg;
1739         chp->next = children;
1740         children = chp;
1741     }
1742 }
1743
1744 /*
1745  * childwait_end - we got fed up waiting for the child processes to
1746  * exit, send them all a SIGTERM.
1747  */
1748 static void
1749 childwait_end(arg)
1750     void *arg;
1751 {
1752     struct subprocess *chp;
1753
1754     for (chp = children; chp != NULL; chp = chp->next) {
1755         if (debug)
1756             dbglog("sending SIGTERM to process %d", chp->pid);
1757         kill(chp->pid, SIGTERM);
1758     }
1759     childwait_done = 1;
1760 }
1761
1762 /*
1763  * reap_kids - get status from any dead child processes,
1764  * and log a message for abnormal terminations.
1765  */
1766 static int
1767 reap_kids()
1768 {
1769     int pid, status;
1770     struct subprocess *chp, **prevp;
1771
1772     if (n_children == 0)
1773         return 0;
1774     while ((pid = waitpid(-1, &status, WNOHANG)) != -1 && pid != 0) {
1775         for (prevp = &children; (chp = *prevp) != NULL; prevp = &chp->next) {
1776             if (chp->pid == pid) {
1777                 --n_children;
1778                 *prevp = chp->next;
1779                 break;
1780             }
1781         }
1782         if (WIFSIGNALED(status)) {
1783             warn("Child process %s (pid %d) terminated with signal %d",
1784                  (chp? chp->prog: "??"), pid, WTERMSIG(status));
1785         } else if (debug)
1786             dbglog("Script %s finished (pid %d), status = 0x%x",
1787                    (chp? chp->prog: "??"), pid,
1788                    WIFEXITED(status) ? WEXITSTATUS(status) : status);
1789         if (chp && chp->done)
1790             (*chp->done)(chp->arg);
1791         if (chp)
1792             free(chp);
1793     }
1794     if (pid == -1) {
1795         if (errno == ECHILD)
1796             return -1;
1797         if (errno != EINTR)
1798             error("Error waiting for child process: %m");
1799     }
1800     return 0;
1801 }
1802
1803 /*
1804  * add_notifier - add a new function to be called when something happens.
1805  */
1806 void
1807 add_notifier(notif, func, arg)
1808     struct notifier **notif;
1809     notify_func func;
1810     void *arg;
1811 {
1812     struct notifier *np;
1813
1814     np = malloc(sizeof(struct notifier));
1815     if (np == 0)
1816         novm("notifier struct");
1817     np->next = *notif;
1818     np->func = func;
1819     np->arg = arg;
1820     *notif = np;
1821 }
1822
1823 /*
1824  * remove_notifier - remove a function from the list of things to
1825  * be called when something happens.
1826  */
1827 void
1828 remove_notifier(notif, func, arg)
1829     struct notifier **notif;
1830     notify_func func;
1831     void *arg;
1832 {
1833     struct notifier *np;
1834
1835     for (; (np = *notif) != 0; notif = &np->next) {
1836         if (np->func == func && np->arg == arg) {
1837             *notif = np->next;
1838             free(np);
1839             break;
1840         }
1841     }
1842 }
1843
1844 /*
1845  * notify - call a set of functions registered with add_notifier.
1846  */
1847 void
1848 notify(notif, val)
1849     struct notifier *notif;
1850     int val;
1851 {
1852     struct notifier *np;
1853
1854     while ((np = notif) != 0) {
1855         notif = np->next;
1856         (*np->func)(np->arg, val);
1857     }
1858 }
1859
1860 /*
1861  * novm - log an error message saying we ran out of memory, and die.
1862  */
1863 void
1864 novm(msg)
1865     char *msg;
1866 {
1867     fatal("Virtual memory exhausted allocating %s\n", msg);
1868 }
1869
1870 /*
1871  * script_setenv - set an environment variable value to be used
1872  * for scripts that we run (e.g. ip-up, auth-up, etc.)
1873  */
1874 void
1875 script_setenv(var, value, iskey)
1876     char *var, *value;
1877     int iskey;
1878 {
1879     size_t varl = strlen(var);
1880     size_t vl = varl + strlen(value) + 2;
1881     int i;
1882     char *p, *newstring;
1883
1884     newstring = (char *) malloc(vl+1);
1885     if (newstring == 0)
1886         return;
1887     *newstring++ = iskey;
1888     slprintf(newstring, vl, "%s=%s", var, value);
1889
1890     /* check if this variable is already set */
1891     if (script_env != 0) {
1892         for (i = 0; (p = script_env[i]) != 0; ++i) {
1893             if (strncmp(p, var, varl) == 0 && p[varl] == '=') {
1894 #ifdef USE_TDB
1895                 if (p[-1] && pppdb != NULL)
1896                     delete_db_key(p);
1897 #endif
1898                 free(p-1);
1899                 script_env[i] = newstring;
1900 #ifdef USE_TDB
1901                 if (iskey && pppdb != NULL)
1902                     add_db_key(newstring);
1903                 update_db_entry();
1904 #endif
1905                 return;
1906             }
1907         }
1908     } else {
1909         /* no space allocated for script env. ptrs. yet */
1910         i = 0;
1911         script_env = (char **) malloc(16 * sizeof(char *));
1912         if (script_env == 0)
1913             return;
1914         s_env_nalloc = 16;
1915     }
1916
1917     /* reallocate script_env with more space if needed */
1918     if (i + 1 >= s_env_nalloc) {
1919         int new_n = i + 17;
1920         char **newenv = (char **) realloc((void *)script_env,
1921                                           new_n * sizeof(char *));
1922         if (newenv == 0)
1923             return;
1924         script_env = newenv;
1925         s_env_nalloc = new_n;
1926     }
1927
1928     script_env[i] = newstring;
1929     script_env[i+1] = 0;
1930
1931 #ifdef USE_TDB
1932     if (pppdb != NULL) {
1933         if (iskey)
1934             add_db_key(newstring);
1935         update_db_entry();
1936     }
1937 #endif
1938 }
1939
1940 /*
1941  * script_unsetenv - remove a variable from the environment
1942  * for scripts.
1943  */
1944 void
1945 script_unsetenv(var)
1946     char *var;
1947 {
1948     int vl = strlen(var);
1949     int i;
1950     char *p;
1951
1952     if (script_env == 0)
1953         return;
1954     for (i = 0; (p = script_env[i]) != 0; ++i) {
1955         if (strncmp(p, var, vl) == 0 && p[vl] == '=') {
1956 #ifdef USE_TDB
1957             if (p[-1] && pppdb != NULL)
1958                 delete_db_key(p);
1959 #endif
1960             free(p-1);
1961             while ((script_env[i] = script_env[i+1]) != 0)
1962                 ++i;
1963             break;
1964         }
1965     }
1966 #ifdef USE_TDB
1967     if (pppdb != NULL)
1968         update_db_entry();
1969 #endif
1970 }
1971
1972 /*
1973  * Any arbitrary string used as a key for locking the database.
1974  * It doesn't matter what it is as long as all pppds use the same string.
1975  */
1976 #define PPPD_LOCK_KEY   "pppd lock"
1977
1978 /*
1979  * lock_db - get an exclusive lock on the TDB database.
1980  * Used to ensure atomicity of various lookup/modify operations.
1981  */
1982 void lock_db()
1983 {
1984 #ifdef USE_TDB
1985         TDB_DATA key;
1986
1987         key.dptr = PPPD_LOCK_KEY;
1988         key.dsize = strlen(key.dptr);
1989         tdb_chainlock(pppdb, key);
1990 #endif
1991 }
1992
1993 /*
1994  * unlock_db - remove the exclusive lock obtained by lock_db.
1995  */
1996 void unlock_db()
1997 {
1998 #ifdef USE_TDB
1999         TDB_DATA key;
2000
2001         key.dptr = PPPD_LOCK_KEY;
2002         key.dsize = strlen(key.dptr);
2003         tdb_chainunlock(pppdb, key);
2004 #endif
2005 }
2006
2007 #ifdef USE_TDB
2008 /*
2009  * update_db_entry - update our entry in the database.
2010  */
2011 static void
2012 update_db_entry()
2013 {
2014     TDB_DATA key, dbuf;
2015     int vlen, i;
2016     char *p, *q, *vbuf;
2017
2018     if (script_env == NULL)
2019         return;
2020     vlen = 0;
2021     for (i = 0; (p = script_env[i]) != 0; ++i)
2022         vlen += strlen(p) + 1;
2023     vbuf = malloc(vlen + 1);
2024     if (vbuf == 0)
2025         novm("database entry");
2026     q = vbuf;
2027     for (i = 0; (p = script_env[i]) != 0; ++i)
2028         q += slprintf(q, vbuf + vlen - q, "%s;", p);
2029
2030     key.dptr = db_key;
2031     key.dsize = strlen(db_key);
2032     dbuf.dptr = vbuf;
2033     dbuf.dsize = vlen;
2034     if (tdb_store(pppdb, key, dbuf, TDB_REPLACE))
2035         error("tdb_store failed: %s", tdb_error(pppdb));
2036
2037     if (vbuf)
2038         free(vbuf);
2039
2040 }
2041
2042 /*
2043  * add_db_key - add a key that we can use to look up our database entry.
2044  */
2045 static void
2046 add_db_key(str)
2047     const char *str;
2048 {
2049     TDB_DATA key, dbuf;
2050
2051     key.dptr = (char *) str;
2052     key.dsize = strlen(str);
2053     dbuf.dptr = db_key;
2054     dbuf.dsize = strlen(db_key);
2055     if (tdb_store(pppdb, key, dbuf, TDB_REPLACE))
2056         error("tdb_store key failed: %s", tdb_error(pppdb));
2057 }
2058
2059 /*
2060  * delete_db_key - delete a key for looking up our database entry.
2061  */
2062 static void
2063 delete_db_key(str)
2064     const char *str;
2065 {
2066     TDB_DATA key;
2067
2068     key.dptr = (char *) str;
2069     key.dsize = strlen(str);
2070     tdb_delete(pppdb, key);
2071 }
2072
2073 /*
2074  * cleanup_db - delete all the entries we put in the database.
2075  */
2076 static void
2077 cleanup_db()
2078 {
2079     TDB_DATA key;
2080     int i;
2081     char *p;
2082
2083     key.dptr = db_key;
2084     key.dsize = strlen(db_key);
2085     tdb_delete(pppdb, key);
2086     for (i = 0; (p = script_env[i]) != 0; ++i)
2087         if (p[-1])
2088             delete_db_key(p);
2089 }
2090 #endif /* USE_TDB */