OSDN Git Service

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