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