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