2 * main.c - Point-to-Point Protocol main module
4 * Copyright (c) 1984-2000 Carnegie Mellon University. All rights reserved.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
15 * the documentation and/or other materials provided with the
18 * 3. The name "Carnegie Mellon University" must not be used to
19 * endorse or promote products derived from this software without
20 * prior written permission. For permission or any legal
21 * details, please contact
22 * Office of Technology Transfer
23 * Carnegie Mellon University
25 * Pittsburgh, PA 15213-3890
26 * (412) 268-4387, fax: (412) 268-7395
27 * tech-transfer@andrew.cmu.edu
29 * 4. Redistributions of any form whatsoever must retain the following
31 * "This product includes software developed by Computing Services
32 * at Carnegie Mellon University (http://www.cmu.edu/computing/)."
34 * CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO
35 * THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
36 * AND FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE
37 * FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
38 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
39 * AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
40 * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
43 #define RCSID "$Id: main.c,v 1.126 2003/04/07 00:01:45 paulus Exp $"
58 #include <sys/param.h>
59 #include <sys/types.h>
62 #include <sys/resource.h>
64 #include <sys/socket.h>
65 #include <netinet/in.h>
66 #include <arpa/inet.h>
81 #include "pathnames.h"
93 #endif /* IPX_CHANGE */
98 static const char rcsid
[] = RCSID
;
101 char ifname
[32]; /* Interface name */
102 int ifunit
; /* Interface unit number */
104 struct channel
*the_channel
;
106 char *progname
; /* Name of this program */
107 char hostname
[MAXNAMELEN
]; /* Our hostname */
108 static char pidfilename
[MAXPATHLEN
]; /* name of pid file */
109 static char linkpidfile
[MAXPATHLEN
]; /* name of linkname pid file */
110 char ppp_devnam
[MAXPATHLEN
]; /* name of PPP tty (maybe ttypx) */
111 uid_t uid
; /* Our real user-id */
112 struct notifier
*pidchange
= NULL
;
113 struct notifier
*phasechange
= NULL
;
114 struct notifier
*exitnotify
= NULL
;
115 struct notifier
*sigreceived
= NULL
;
116 struct notifier
*fork_notifier
= NULL
;
118 int hungup
; /* terminal has been hung up */
119 int privileged
; /* we're running as real uid root */
120 int need_holdoff
; /* need holdoff period before restarting */
121 int detached
; /* have detached from terminal */
122 volatile int status
; /* exit status for pppd */
123 int unsuccess
; /* # unsuccessful connection attempts */
124 int do_callback
; /* != 0 if we should do callback next */
125 int doing_callback
; /* != 0 if we are doing callback */
126 int ppp_session_number
; /* Session number, for channels with such a
127 concept (eg PPPoE) */
129 TDB_CONTEXT
*pppdb
; /* database for storing status etc. */
134 int (*holdoff_hook
) __P((void)) = NULL
;
135 int (*new_phase_hook
) __P((int)) = NULL
;
136 void (*snoop_recv_hook
) __P((unsigned char *p
, int len
)) = NULL
;
137 void (*snoop_send_hook
) __P((unsigned char *p
, int len
)) = NULL
;
139 static int conn_running
; /* we have a [dis]connector running */
140 static int devfd
; /* fd of underlying device */
141 static int fd_ppp
= -1; /* fd for talking PPP */
142 static int fd_loop
; /* fd for getting demand-dial packets */
143 static int fd_devnull
; /* fd for /dev/null */
145 int phase
; /* where the link is at */
154 static sigjmp_buf sigjmp
;
156 char **script_env
; /* Env. variable values for scripts */
157 int s_env_nalloc
; /* # words avail at script_env */
159 u_char outpacket_buf
[PPP_MRU
+PPP_HDRLEN
]; /* buffer for outgoing packet */
160 u_char inpacket_buf
[PPP_MRU
+PPP_HDRLEN
]; /* buffer for incoming packet */
162 static int n_children
; /* # child processes still running */
163 static int got_sigchld
; /* set if we have received a SIGCHLD */
165 int privopen
; /* don't lock, open device as root */
167 char *no_ppp_msg
= "Sorry - this system lacks PPP kernel support\n";
169 GIDSET_TYPE groups
[NGROUPS_MAX
];/* groups the user is in */
170 int ngroups
; /* How many groups valid in groups */
172 static struct timeval start_time
; /* Time when link was started. */
174 struct pppd_stats link_stats
;
175 unsigned link_connect_time
;
176 int link_stats_valid
;
181 * We maintain a list of child process pids and
182 * functions to call when they exit.
187 void (*done
) __P((void *));
189 struct subprocess
*next
;
192 static struct subprocess
*children
;
194 /* Prototypes for procedures local to this file. */
196 static void setup_signals
__P((void));
197 static void create_pidfile
__P((int pid
));
198 static void create_linkpidfile
__P((int pid
));
199 static void cleanup
__P((void));
200 static void get_input
__P((void));
201 static void calltimeout
__P((void));
202 static struct timeval
*timeleft
__P((struct timeval
*));
203 static void kill_my_pg
__P((int));
204 static void hup
__P((int));
205 static void term
__P((int));
206 static void chld
__P((int));
207 static void toggle_debug
__P((int));
208 static void open_ccp
__P((int));
209 static void bad_signal
__P((int));
210 static void holdoff_end
__P((void *));
211 static int reap_kids
__P((int waitfor
));
214 static void update_db_entry
__P((void));
215 static void add_db_key
__P((const char *));
216 static void delete_db_key
__P((const char *));
217 static void cleanup_db
__P((void));
220 static void handle_events
__P((void));
221 static void print_link_stats
__P((void));
223 extern char *ttyname
__P((int));
224 extern char *getlogin
__P((void));
225 int main
__P((int, char *[]));
229 #define O_NONBLOCK O_NDELAY
233 #define setlogmask(x)
237 * PPP Data Link Layer "protocol" table.
238 * One entry per supported protocol.
239 * The last entry must be NULL.
241 struct protent
*protocols
[] = {
265 * If PPP_DRV_NAME is not defined, use the default "ppp" as the device name.
267 #if !defined(PPP_DRV_NAME)
268 #define PPP_DRV_NAME "ppp"
269 #endif /* !defined(PPP_DRV_NAME) */
279 struct protent
*protp
;
282 link_stats_valid
= 0;
283 new_phase(PHASE_INITIALIZE
);
287 /* Initialize syslog facilities */
290 if (gethostname(hostname
, MAXNAMELEN
) < 0 ) {
291 option_error("Couldn't get hostname: %m");
294 hostname
[MAXNAMELEN
-1] = 0;
296 /* make sure we don't create world or group writable files. */
297 umask(umask(0777) | 022);
300 privileged
= uid
== 0;
301 slprintf(numbuf
, sizeof(numbuf
), "%d", uid
);
302 script_setenv("ORIG_UID", numbuf
, 0);
304 ngroups
= getgroups(NGROUPS_MAX
, groups
);
307 * Initialize magic number generator now so that protocols may
308 * use magic numbers in initialization.
313 * Initialize each protocol.
315 for (i
= 0; (protp
= protocols
[i
]) != NULL
; ++i
)
319 * Initialize the default channel.
326 * Parse, in order, the system options file, the user's options file,
327 * and the command line arguments.
329 if (!options_from_file(_PATH_SYSOPTIONS
, !privileged
, 0, 1)
330 || !options_from_user()
331 || !parse_args(argc
-1, argv
+1))
332 exit(EXIT_OPTION_ERROR
);
333 devnam_fixed
= 1; /* can no longer change device name */
336 * Work out the device name, if it hasn't already been specified,
337 * and parse the tty's options file.
339 if (the_channel
->process_extra_options
)
340 (*the_channel
->process_extra_options
)();
343 setlogmask(LOG_UPTO(LOG_DEBUG
));
346 * Check that we are running as root.
348 if (geteuid() != 0) {
349 option_error("must be root to run %s, since it is not setuid-root",
354 if (!ppp_available()) {
355 option_error("%s", no_ppp_msg
);
356 exit(EXIT_NO_KERNEL_SUPPORT
);
360 * Check that the options given are valid and consistent.
363 if (!sys_check_options())
364 exit(EXIT_OPTION_ERROR
);
365 auth_check_options();
366 #ifdef HAVE_MULTILINK
369 for (i
= 0; (protp
= protocols
[i
]) != NULL
; ++i
)
370 if (protp
->check_options
!= NULL
)
371 (*protp
->check_options
)();
372 if (the_channel
->check_options
)
373 (*the_channel
->check_options
)();
376 if (dump_options
|| dryrun
) {
377 init_pr_log(NULL
, LOG_INFO
);
378 print_options(pr_log
, NULL
);
386 * Initialize system-dependent stuff.
390 /* Make sure fds 0, 1, 2 are open to somewhere. */
391 fd_devnull
= open(_PATH_DEVNULL
, O_RDWR
);
393 fatal("Couldn't open %s: %m", _PATH_DEVNULL
);
394 while (fd_devnull
<= 2) {
397 fatal("Critical shortage of file descriptors: dup failed: %m");
402 pppdb
= tdb_open(_PATH_PPPDB
, 0, 0, O_RDWR
|O_CREAT
, 0644);
404 slprintf(db_key
, sizeof(db_key
), "pppd%d", getpid());
407 warn("Warning: couldn't open ppp database %s", _PATH_PPPDB
);
409 warn("Warning: disabling multilink");
416 * Detach ourselves from the terminal, if required,
417 * and identify who is running us.
419 if (!nodetach
&& !updetach
)
424 if (pw
!= NULL
&& pw
->pw_name
!= NULL
)
429 syslog(LOG_NOTICE
, "pppd %s started by %s, uid %d", VERSION
, p
, uid
);
430 script_setenv("PPPLOGNAME", p
, 0);
433 script_setenv("DEVICE", devnam
, 1);
434 slprintf(numbuf
, sizeof(numbuf
), "%d", getpid());
435 script_setenv("PPPD_PID", numbuf
, 1);
441 create_linkpidfile(getpid());
444 * If we're doing dial-on-demand, set up the interface now.
448 * Open the loopback channel and set it up to be the ppp interface.
451 tdb_writelock(pppdb
);
453 fd_loop
= open_ppp_loopback();
456 tdb_writeunlock(pppdb
);
459 * Configure the interface and mark it up, etc.
472 doing_callback
= do_callback
;
475 if (demand
&& !doing_callback
) {
477 * Don't do anything until we see some activity.
479 new_phase(PHASE_DORMANT
);
484 if (kill_link
&& !persist
)
486 if (get_loop_output())
490 if (kill_link
&& !persist
)
494 * Now we want to bring up the link.
497 info("Starting link");
500 new_phase(PHASE_SERIALCONN
);
502 devfd
= the_channel
->connect();
506 /* set up the serial device as a ppp interface */
508 tdb_writelock(pppdb
);
510 fd_ppp
= the_channel
->establish_ppp(devfd
);
513 tdb_writeunlock(pppdb
);
515 status
= EXIT_FATAL_ERROR
;
519 if (!demand
&& ifunit
>= 0)
522 tdb_writeunlock(pppdb
);
526 * Start opening the connection and wait for
527 * incoming events (reply, timeout, etc.).
530 notice("Connect: %s <--> %s", ifname
, ppp_devnam
);
532 notice("Starting negotiation on %s", ppp_devnam
);
533 gettimeofday(&start_time
, NULL
);
534 script_unsetenv("CONNECT_TIME");
535 script_unsetenv("BYTES_SENT");
536 script_unsetenv("BYTES_RCVD");
540 lcp_open(0); /* Start protocol */
541 status
= EXIT_NEGOTIATION_FAILED
;
542 new_phase(PHASE_ESTABLISH
);
543 while (phase
!= PHASE_DEAD
) {
547 lcp_close(0, "User request");
549 if (phase
== PHASE_NETWORK
|| phase
== PHASE_RUNNING
) {
550 ccp_fsm
[0].flags
= OPT_RESTART
; /* clears OPT_SILENT */
551 (*ccp_protent
.open
)(0);
559 * Delete pid file before disestablishing ppp. Otherwise it
560 * can happen that another pppd gets the same unit and then
561 * we delete its pid file.
564 if (pidfilename
[0] != 0
565 && unlink(pidfilename
) < 0 && errno
!= ENOENT
)
566 warn("unable to delete pid file %s: %m", pidfilename
);
571 * If we may want to bring the link up again, transfer
572 * the ppp unit back to the loopback. Set the
573 * real serial device back to its normal mode of operation.
577 the_channel
->disestablish_ppp(devfd
);
582 script_unsetenv("IFNAME");
585 * Run disconnector script, if requested.
586 * XXX we may not be able to do this if the line has hung up!
589 new_phase(PHASE_DISCONNECT
);
590 the_channel
->disconnect();
593 if (the_channel
->cleanup
)
594 (*the_channel
->cleanup
)();
597 if (pidfilename
[0] != 0
598 && unlink(pidfilename
) < 0 && errno
!= ENOENT
)
599 warn("unable to delete pid file %s: %m", pidfilename
);
603 if (!persist
|| (maxfail
> 0 && unsuccess
>= maxfail
))
608 t
= need_holdoff
? holdoff
: 0;
610 t
= (*holdoff_hook
)();
612 new_phase(PHASE_HOLDOFF
);
613 TIMEOUT(holdoff_end
, NULL
, t
);
617 new_phase(PHASE_DORMANT
); /* allow signal to end holdoff */
618 } while (phase
== PHASE_HOLDOFF
);
624 /* Wait for scripts to finish */
625 /* XXX should have a timeout here */
626 while (n_children
> 0) {
628 struct subprocess
*chp
;
629 dbglog("Waiting for %d child processes...", n_children
);
630 for (chp
= children
; chp
!= NULL
; chp
= chp
->next
)
631 dbglog(" script %s, pid %d", chp
->prog
, chp
->pid
);
633 if (reap_kids(1) < 0)
642 * handle_events - wait for something to happen and respond to it.
650 kill_link
= open_ccp_flag
= 0;
651 if (sigsetjmp(sigjmp
, 1) == 0) {
652 sigprocmask(SIG_BLOCK
, &mask
, NULL
);
653 if (got_sighup
|| got_sigterm
|| got_sigusr2
|| got_sigchld
) {
654 sigprocmask(SIG_UNBLOCK
, &mask
, NULL
);
657 sigprocmask(SIG_UNBLOCK
, &mask
, NULL
);
658 wait_input(timeleft(&timo
));
666 if (status
!= EXIT_HANGUP
)
667 status
= EXIT_USER_REQUEST
;
672 status
= EXIT_USER_REQUEST
;
676 reap_kids(0); /* Don't leave dead kids lying around */
686 * setup_signals - initialize signal handling.
695 * Compute mask of all interesting signals and install signal handlers
696 * for each. Only one signal handler may be active at a time. Therefore,
697 * all other signals should be masked when any handler is executing.
700 sigaddset(&mask
, SIGHUP
);
701 sigaddset(&mask
, SIGINT
);
702 sigaddset(&mask
, SIGTERM
);
703 sigaddset(&mask
, SIGCHLD
);
704 sigaddset(&mask
, SIGUSR2
);
706 #define SIGNAL(s, handler) do { \
707 sa.sa_handler = handler; \
708 if (sigaction(s, &sa, NULL) < 0) \
709 fatal("Couldn't establish signal handler (%d): %m", s); \
714 SIGNAL(SIGHUP
, hup
); /* Hangup */
715 SIGNAL(SIGINT
, term
); /* Interrupt */
716 SIGNAL(SIGTERM
, term
); /* Terminate */
717 SIGNAL(SIGCHLD
, chld
);
719 SIGNAL(SIGUSR1
, toggle_debug
); /* Toggle debug flag */
720 SIGNAL(SIGUSR2
, open_ccp
); /* Reopen CCP */
723 * Install a handler for other signals which would otherwise
724 * cause pppd to exit without cleaning up.
726 SIGNAL(SIGABRT
, bad_signal
);
727 SIGNAL(SIGALRM
, bad_signal
);
728 SIGNAL(SIGFPE
, bad_signal
);
729 SIGNAL(SIGILL
, bad_signal
);
730 SIGNAL(SIGPIPE
, bad_signal
);
731 SIGNAL(SIGQUIT
, bad_signal
);
732 SIGNAL(SIGSEGV
, bad_signal
);
734 SIGNAL(SIGBUS
, bad_signal
);
737 SIGNAL(SIGEMT
, bad_signal
);
740 SIGNAL(SIGPOLL
, bad_signal
);
743 SIGNAL(SIGPROF
, bad_signal
);
746 SIGNAL(SIGSYS
, bad_signal
);
749 SIGNAL(SIGTRAP
, bad_signal
);
752 SIGNAL(SIGVTALRM
, bad_signal
);
755 SIGNAL(SIGXCPU
, bad_signal
);
758 SIGNAL(SIGXFSZ
, bad_signal
);
762 * Apparently we can get a SIGPIPE when we call syslog, if
763 * syslogd has died and been restarted. Ignoring it seems
766 signal(SIGPIPE
, SIG_IGN
);
770 * set_ifunit - do things we need to do once we know which ppp
777 info("Using interface %s%d", PPP_DRV_NAME
, ifunit
);
778 slprintf(ifname
, sizeof(ifname
), "%s%d", PPP_DRV_NAME
, ifunit
);
779 script_setenv("IFNAME", ifname
, iskey
);
781 create_pidfile(getpid()); /* write pid to file */
782 create_linkpidfile(getpid());
787 * detach - detach us from the controlling terminal.
798 if (pipe(pipefd
) == -1)
799 pipefd
[0] = pipefd
[1] = -1;
800 if ((pid
= fork()) < 0) {
801 error("Couldn't detach (fork failed: %m)");
802 die(1); /* or just return? */
806 notify(pidchange
, pid
);
807 /* update pid files if they have been written already */
811 create_linkpidfile(pid
);
812 exit(0); /* parent dies */
822 slprintf(numbuf
, sizeof(numbuf
), "%d", getpid());
823 script_setenv("PPPD_PID", numbuf
, 1);
825 /* wait for parent to finish updating pid & lock files and die */
827 complete_read(pipefd
[0], numbuf
, 1);
832 * reopen_log - (re)open our connection to syslog.
838 openlog("pppd", LOG_PID
);
840 openlog("pppd", LOG_PID
| LOG_NDELAY
, LOG_PPP
);
841 setlogmask(LOG_UPTO(LOG_INFO
));
846 * Create a file containing our process ID.
854 slprintf(pidfilename
, sizeof(pidfilename
), "%s%s.pid",
855 _PATH_VARRUN
, ifname
);
856 if ((pidfile
= fopen(pidfilename
, "w")) != NULL
) {
857 fprintf(pidfile
, "%d\n", pid
);
858 (void) fclose(pidfile
);
860 error("Failed to create pid file %s: %m", pidfilename
);
866 create_linkpidfile(pid
)
871 if (linkname
[0] == 0)
873 script_setenv("LINKNAME", linkname
, 1);
874 slprintf(linkpidfile
, sizeof(linkpidfile
), "%sppp-%s.pid",
875 _PATH_VARRUN
, linkname
);
876 if ((pidfile
= fopen(linkpidfile
, "w")) != NULL
) {
877 fprintf(pidfile
, "%d\n", pid
);
879 fprintf(pidfile
, "%s\n", ifname
);
880 (void) fclose(pidfile
);
882 error("Failed to create pid file %s: %m", linkpidfile
);
888 * holdoff_end - called via a timeout when the holdoff period ends.
894 new_phase(PHASE_DORMANT
);
897 /* List of protocol names, to make our messages a little more informative. */
898 struct protocol_list
{
901 } protocol_list
[] = {
903 { 0x23, "OSI Network Layer" },
904 { 0x25, "Xerox NS IDP" },
905 { 0x27, "DECnet Phase IV" },
906 { 0x29, "Appletalk" },
907 { 0x2b, "Novell IPX" },
908 { 0x2d, "VJ compressed TCP/IP" },
909 { 0x2f, "VJ uncompressed TCP/IP" },
910 { 0x31, "Bridging PDU" },
911 { 0x33, "Stream Protocol ST-II" },
912 { 0x35, "Banyan Vines" },
913 { 0x39, "AppleTalk EDDP" },
914 { 0x3b, "AppleTalk SmartBuffered" },
915 { 0x3d, "Multi-Link" },
916 { 0x3f, "NETBIOS Framing" },
917 { 0x41, "Cisco Systems" },
918 { 0x43, "Ascom Timeplex" },
919 { 0x45, "Fujitsu Link Backup and Load Balancing (LBLB)" },
920 { 0x47, "DCA Remote Lan" },
921 { 0x49, "Serial Data Transport Protocol (PPP-SDTP)" },
922 { 0x4b, "SNA over 802.2" },
924 { 0x4f, "IP6 Header Compression" },
925 { 0x6f, "Stampede Bridging" },
926 { 0xfb, "single-link compression" },
927 { 0xfd, "1st choice compression" },
928 { 0x0201, "802.1d Hello Packets" },
929 { 0x0203, "IBM Source Routing BPDU" },
930 { 0x0205, "DEC LANBridge100 Spanning Tree" },
931 { 0x0231, "Luxcom" },
932 { 0x0233, "Sigma Network Systems" },
933 { 0x8021, "Internet Protocol Control Protocol" },
934 { 0x8023, "OSI Network Layer Control Protocol" },
935 { 0x8025, "Xerox NS IDP Control Protocol" },
936 { 0x8027, "DECnet Phase IV Control Protocol" },
937 { 0x8029, "Appletalk Control Protocol" },
938 { 0x802b, "Novell IPX Control Protocol" },
939 { 0x8031, "Bridging NCP" },
940 { 0x8033, "Stream Protocol Control Protocol" },
941 { 0x8035, "Banyan Vines Control Protocol" },
942 { 0x803d, "Multi-Link Control Protocol" },
943 { 0x803f, "NETBIOS Framing Control Protocol" },
944 { 0x8041, "Cisco Systems Control Protocol" },
945 { 0x8043, "Ascom Timeplex" },
946 { 0x8045, "Fujitsu LBLB Control Protocol" },
947 { 0x8047, "DCA Remote Lan Network Control Protocol (RLNCP)" },
948 { 0x8049, "Serial Data Control Protocol (PPP-SDCP)" },
949 { 0x804b, "SNA over 802.2 Control Protocol" },
950 { 0x804d, "SNA Control Protocol" },
951 { 0x804f, "IP6 Header Compression Control Protocol" },
952 { 0x006f, "Stampede Bridging Control Protocol" },
953 { 0x80fb, "Single Link Compression Control Protocol" },
954 { 0x80fd, "Compression Control Protocol" },
955 { 0xc021, "Link Control Protocol" },
956 { 0xc023, "Password Authentication Protocol" },
957 { 0xc025, "Link Quality Report" },
958 { 0xc027, "Shiva Password Authentication Protocol" },
959 { 0xc029, "CallBack Control Protocol (CBCP)" },
960 { 0xc081, "Container Control Protocol" },
961 { 0xc223, "Challenge Handshake Authentication Protocol" },
962 { 0xc281, "Proprietary Authentication Protocol" },
967 * protocol_name - find a name for a PPP protocol.
973 struct protocol_list
*lp
;
975 for (lp
= protocol_list
; lp
->proto
!= 0; ++lp
)
976 if (proto
== lp
->proto
)
982 * get_input - called when incoming data is available.
990 struct protent
*protp
;
992 p
= inpacket_buf
; /* point to beginning of packet buffer */
994 len
= read_packet(inpacket_buf
);
999 notice("Modem hangup");
1001 status
= EXIT_HANGUP
;
1002 lcp_lowerdown(0); /* serial link is no longer available */
1007 if (len
< PPP_HDRLEN
) {
1008 dbglog("received short packet:%.*B", len
, p
);
1012 dump_packet("rcvd", p
, len
);
1013 if (snoop_recv_hook
) snoop_recv_hook(p
, len
);
1015 p
+= 2; /* Skip address and control */
1016 GETSHORT(protocol
, p
);
1020 * Toss all non-LCP packets unless LCP is OPEN.
1022 if (protocol
!= PPP_LCP
&& lcp_fsm
[0].state
!= OPENED
) {
1023 dbglog("Discarded non-LCP packet when LCP not open");
1028 * Until we get past the authentication phase, toss all packets
1029 * except LCP, LQR and authentication packets.
1031 if (phase
<= PHASE_AUTHENTICATE
1032 && !(protocol
== PPP_LCP
|| protocol
== PPP_LQR
1033 || protocol
== PPP_PAP
|| protocol
== PPP_CHAP
||
1034 protocol
== PPP_EAP
)) {
1035 dbglog("discarding proto 0x%x in phase %d",
1041 * Upcall the proper protocol input routine.
1043 for (i
= 0; (protp
= protocols
[i
]) != NULL
; ++i
) {
1044 if (protp
->protocol
== protocol
&& protp
->enabled_flag
) {
1045 (*protp
->input
)(0, p
, len
);
1048 if (protocol
== (protp
->protocol
& ~0x8000) && protp
->enabled_flag
1049 && protp
->datainput
!= NULL
) {
1050 (*protp
->datainput
)(0, p
, len
);
1056 const char *pname
= protocol_name(protocol
);
1058 warn("Unsupported protocol '%s' (0x%x) received", pname
, protocol
);
1060 warn("Unsupported protocol 0x%x received", protocol
);
1062 lcp_sprotrej(0, p
- PPP_HDRLEN
, len
+ PPP_HDRLEN
);
1066 * ppp_send_config - configure the transmit-side characteristics of
1067 * the ppp interface. Returns -1, indicating an error, if the channel
1068 * send_config procedure called error() (or incremented error_count
1069 * itself), otherwise 0.
1072 ppp_send_config(unit
, mtu
, accm
, pcomp
, accomp
)
1079 if (the_channel
->send_config
== NULL
)
1082 (*the_channel
->send_config
)(mtu
, accm
, pcomp
, accomp
);
1083 return (error_count
!= errs
)? -1: 0;
1087 * ppp_recv_config - configure the receive-side characteristics of
1088 * the ppp interface. Returns -1, indicating an error, if the channel
1089 * recv_config procedure called error() (or incremented error_count
1090 * itself), otherwise 0.
1093 ppp_recv_config(unit
, mru
, accm
, pcomp
, accomp
)
1100 if (the_channel
->recv_config
== NULL
)
1103 (*the_channel
->recv_config
)(mru
, accm
, pcomp
, accomp
);
1104 return (error_count
!= errs
)? -1: 0;
1108 * new_phase - signal the start of a new phase of pppd's operation.
1116 (*new_phase_hook
)(p
);
1117 notify(phasechange
, p
);
1121 * die - clean up state and exit with the specified status.
1129 notify(exitnotify
, status
);
1130 syslog(LOG_INFO
, "Exit.");
1135 * cleanup - restore anything which needs to be restored before we exit
1144 the_channel
->disestablish_ppp(devfd
);
1145 if (the_channel
->cleanup
)
1146 (*the_channel
->cleanup
)();
1148 if (pidfilename
[0] != 0 && unlink(pidfilename
) < 0 && errno
!= ENOENT
)
1149 warn("unable to delete pid file %s: %m", pidfilename
);
1151 if (linkpidfile
[0] != 0 && unlink(linkpidfile
) < 0 && errno
!= ENOENT
)
1152 warn("unable to delete pid file %s: %m", linkpidfile
);
1166 * Print connect time and statistics.
1168 if (link_stats_valid
) {
1169 int t
= (link_connect_time
+ 5) / 6; /* 1/10ths of minutes */
1170 info("Connect time %d.%d minutes.", t
/10, t
%10);
1171 info("Sent %u bytes, received %u bytes.",
1172 link_stats
.bytes_out
, link_stats
.bytes_in
);
1177 * update_link_stats - get stats at link termination.
1180 update_link_stats(u
)
1186 if (!get_ppp_stats(u
, &link_stats
)
1187 || gettimeofday(&now
, NULL
) < 0)
1189 link_connect_time
= now
.tv_sec
- start_time
.tv_sec
;
1190 link_stats_valid
= 1;
1192 slprintf(numbuf
, sizeof(numbuf
), "%u", link_connect_time
);
1193 script_setenv("CONNECT_TIME", numbuf
, 0);
1194 slprintf(numbuf
, sizeof(numbuf
), "%u", link_stats
.bytes_out
);
1195 script_setenv("BYTES_SENT", numbuf
, 0);
1196 slprintf(numbuf
, sizeof(numbuf
), "%u", link_stats
.bytes_in
);
1197 script_setenv("BYTES_RCVD", numbuf
, 0);
1202 struct timeval c_time
; /* time at which to call routine */
1203 void *c_arg
; /* argument to routine */
1204 void (*c_func
) __P((void *)); /* routine */
1205 struct callout
*c_next
;
1208 static struct callout
*callout
= NULL
; /* Callout list */
1209 static struct timeval timenow
; /* Current time */
1212 * timeout - Schedule a timeout.
1215 timeout(func
, arg
, secs
, usecs
)
1216 void (*func
) __P((void *));
1220 struct callout
*newp
, *p
, **pp
;
1222 MAINDEBUG(("Timeout %p:%p in %d.%03d seconds.", func
, arg
,
1228 if ((newp
= (struct callout
*) malloc(sizeof(struct callout
))) == NULL
)
1229 fatal("Out of memory in timeout()!");
1231 newp
->c_func
= func
;
1232 gettimeofday(&timenow
, NULL
);
1233 newp
->c_time
.tv_sec
= timenow
.tv_sec
+ secs
;
1234 newp
->c_time
.tv_usec
= timenow
.tv_usec
+ usecs
;
1235 if (newp
->c_time
.tv_usec
>= 1000000) {
1236 newp
->c_time
.tv_sec
+= newp
->c_time
.tv_usec
/ 1000000;
1237 newp
->c_time
.tv_usec
%= 1000000;
1241 * Find correct place and link it in.
1243 for (pp
= &callout
; (p
= *pp
); pp
= &p
->c_next
)
1244 if (newp
->c_time
.tv_sec
< p
->c_time
.tv_sec
1245 || (newp
->c_time
.tv_sec
== p
->c_time
.tv_sec
1246 && newp
->c_time
.tv_usec
< p
->c_time
.tv_usec
))
1254 * untimeout - Unschedule a timeout.
1257 untimeout(func
, arg
)
1258 void (*func
) __P((void *));
1261 struct callout
**copp
, *freep
;
1263 MAINDEBUG(("Untimeout %p:%p.", func
, arg
));
1266 * Find first matching timeout and remove it from the list.
1268 for (copp
= &callout
; (freep
= *copp
); copp
= &freep
->c_next
)
1269 if (freep
->c_func
== func
&& freep
->c_arg
== arg
) {
1270 *copp
= freep
->c_next
;
1271 free((char *) freep
);
1278 * calltimeout - Call any timeout routines which are now due.
1285 while (callout
!= NULL
) {
1288 if (gettimeofday(&timenow
, NULL
) < 0)
1289 fatal("Failed to get time of day: %m");
1290 if (!(p
->c_time
.tv_sec
< timenow
.tv_sec
1291 || (p
->c_time
.tv_sec
== timenow
.tv_sec
1292 && p
->c_time
.tv_usec
<= timenow
.tv_usec
)))
1293 break; /* no, it's not time yet */
1295 callout
= p
->c_next
;
1296 (*p
->c_func
)(p
->c_arg
);
1304 * timeleft - return the length of time until the next timeout is due.
1306 static struct timeval
*
1308 struct timeval
*tvp
;
1310 if (callout
== NULL
)
1313 gettimeofday(&timenow
, NULL
);
1314 tvp
->tv_sec
= callout
->c_time
.tv_sec
- timenow
.tv_sec
;
1315 tvp
->tv_usec
= callout
->c_time
.tv_usec
- timenow
.tv_usec
;
1316 if (tvp
->tv_usec
< 0) {
1317 tvp
->tv_usec
+= 1000000;
1320 if (tvp
->tv_sec
< 0)
1321 tvp
->tv_sec
= tvp
->tv_usec
= 0;
1328 * kill_my_pg - send a signal to our process group, and ignore it ourselves.
1334 struct sigaction act
, oldact
;
1336 act
.sa_handler
= SIG_IGN
;
1339 sigaction(sig
, &act
, &oldact
);
1340 sigaction(sig
, &oldact
, NULL
);
1345 * hup - Catch SIGHUP signal.
1347 * Indicates that the physical layer has been disconnected.
1348 * We don't rely on this indication; if the user has sent this
1349 * signal, we just take the link down.
1355 info("Hangup (SIGHUP)");
1358 /* Send the signal to the [dis]connector process(es) also */
1360 notify(sigreceived
, sig
);
1362 siglongjmp(sigjmp
, 1);
1367 * term - Catch SIGTERM signal and SIGINT signal (^C/del).
1369 * Indicates that we should initiate a graceful disconnect and exit.
1376 info("Terminating on signal %d.", sig
);
1379 /* Send the signal to the [dis]connector process(es) also */
1381 notify(sigreceived
, sig
);
1383 siglongjmp(sigjmp
, 1);
1388 * chld - Catch SIGCHLD signal.
1389 * Sets a flag so we will call reap_kids in the mainline.
1397 siglongjmp(sigjmp
, 1);
1402 * toggle_debug - Catch SIGUSR1 signal.
1404 * Toggle debug flag.
1413 setlogmask(LOG_UPTO(LOG_DEBUG
));
1415 setlogmask(LOG_UPTO(LOG_WARNING
));
1421 * open_ccp - Catch SIGUSR2 signal.
1423 * Try to (re)negotiate compression.
1432 siglongjmp(sigjmp
, 1);
1437 * bad_signal - We've caught a fatal signal. Clean up state and exit.
1443 static int crashed
= 0;
1448 error("Fatal signal %d", sig
);
1450 kill_my_pg(SIGTERM
);
1451 notify(sigreceived
, sig
);
1456 * safe_fork - Create a child process. The child closes all the
1457 * file descriptors that we don't want to leak to a script.
1458 * The parent waits for the child to do this before returning.
1467 if (pipe(pipefd
) == -1)
1468 pipefd
[0] = pipefd
[1] = -1;
1474 /* this read() blocks until the close(pipefd[1]) below */
1475 complete_read(pipefd
[0], buf
, 1);
1483 notify(fork_notifier
, 0);
1485 /* this close unblocks the read() call above in the parent */
1491 * device_script - run a program to talk to the specified fds
1492 * (e.g. to run the connector or disconnector script).
1493 * stderr gets connected to the log fd or to the _PATH_CONNERRS file.
1496 device_script(program
, in
, out
, dont_wait
)
1510 error("Failed to create child process: %m");
1516 record_child(pid
, program
, NULL
, NULL
);
1519 while (waitpid(pid
, &status
, 0) < 0) {
1522 fatal("error waiting for (dis)connection process: %m");
1526 return (status
== 0 ? 0 : -1);
1529 /* here we are executing in the child */
1531 /* dup in and out to fds > 2 */
1533 int fd1
= in
, fd2
= out
, fd3
= log_to_fd
;
1537 if (log_to_fd
>= 0) {
1538 errfd
= dup(log_to_fd
);
1540 errfd
= open(_PATH_CONNERRS
, O_WRONLY
| O_APPEND
| O_CREAT
, 0600);
1547 /* close fds 0 - 2 and any others we can think of */
1551 if (the_channel
->close
)
1552 (*the_channel
->close
)();
1556 /* dup the in, out, err fds to 0, 1, 2 */
1567 if (getuid() != uid
) {
1568 error("setuid failed");
1572 execl("/bin/sh", "sh", "-c", program
, (char *)0);
1573 error("could not exec /bin/sh: %m");
1580 * run-program - execute a program with given arguments,
1581 * but don't wait for it.
1582 * If the program can't be executed, logs an error unless
1583 * must_exist is 0 and the program file doesn't exist.
1584 * Returns -1 if it couldn't fork, 0 if the file doesn't exist
1585 * or isn't an executable plain file, or the process ID of the child.
1586 * If done != NULL, (*done)(arg) will be called later (within
1587 * reap_kids) iff the return value is > 0.
1590 run_program(prog
, args
, must_exist
, done
, arg
)
1594 void (*done
) __P((void *));
1601 * First check if the file exists and is executable.
1602 * We don't use access() because that would use the
1603 * real user-id, which might not be root, and the script
1604 * might be accessible only to root.
1607 if (stat(prog
, &sbuf
) < 0 || !S_ISREG(sbuf
.st_mode
)
1608 || (sbuf
.st_mode
& (S_IXUSR
|S_IXGRP
|S_IXOTH
)) == 0) {
1609 if (must_exist
|| errno
!= ENOENT
)
1610 warn("Can't execute %s: %m", prog
);
1616 error("Failed to create child process for %s: %m", prog
);
1621 dbglog("Script %s started (pid %d)", prog
, pid
);
1622 record_child(pid
, prog
, done
, arg
);
1626 /* Leave the current location */
1627 (void) setsid(); /* No controlling tty. */
1628 (void) umask (S_IRWXG
|S_IRWXO
);
1629 (void) chdir ("/"); /* no current directory. */
1630 setuid(0); /* set real UID = root */
1633 /* Ensure that nothing of our device environment is inherited. */
1635 if (the_channel
->close
)
1636 (*the_channel
->close
)();
1638 /* Don't pass handles to the PPP device, even by accident. */
1639 dup2(fd_devnull
, 0);
1640 dup2(fd_devnull
, 1);
1641 dup2(fd_devnull
, 2);
1645 /* Force the priority back to zero if pppd is running higher. */
1646 if (setpriority (PRIO_PROCESS
, 0, 0) < 0)
1647 warn("can't reset priority to 0: %m");
1650 /* SysV recommends a second fork at this point. */
1652 /* run the program */
1653 execve(prog
, args
, script_env
);
1654 if (must_exist
|| errno
!= ENOENT
) {
1655 /* have to reopen the log, there's nowhere else
1656 for the message to go. */
1658 syslog(LOG_ERR
, "Can't execute %s: %m", prog
);
1666 * record_child - add a child process to the list for reap_kids
1670 record_child(pid
, prog
, done
, arg
)
1673 void (*done
) __P((void *));
1676 struct subprocess
*chp
;
1680 chp
= (struct subprocess
*) malloc(sizeof(struct subprocess
));
1682 warn("losing track of %s process", prog
);
1688 chp
->next
= children
;
1695 * reap_kids - get status from any dead child processes,
1696 * and log a message for abnormal terminations.
1703 struct subprocess
*chp
, **prevp
;
1705 if (n_children
== 0)
1707 while ((pid
= waitpid(-1, &status
, (waitfor
? 0: WNOHANG
))) != -1
1709 for (prevp
= &children
; (chp
= *prevp
) != NULL
; prevp
= &chp
->next
) {
1710 if (chp
->pid
== pid
) {
1716 if (WIFSIGNALED(status
)) {
1717 warn("Child process %s (pid %d) terminated with signal %d",
1718 (chp
? chp
->prog
: "??"), pid
, WTERMSIG(status
));
1720 dbglog("Script %s finished (pid %d), status = 0x%x",
1721 (chp
? chp
->prog
: "??"), pid
,
1722 WIFEXITED(status
) ? WEXITSTATUS(status
) : status
);
1723 if (chp
&& chp
->done
)
1724 (*chp
->done
)(chp
->arg
);
1729 if (errno
== ECHILD
)
1732 error("Error waiting for child process: %m");
1738 * add_notifier - add a new function to be called when something happens.
1741 add_notifier(notif
, func
, arg
)
1742 struct notifier
**notif
;
1746 struct notifier
*np
;
1748 np
= malloc(sizeof(struct notifier
));
1750 novm("notifier struct");
1758 * remove_notifier - remove a function from the list of things to
1759 * be called when something happens.
1762 remove_notifier(notif
, func
, arg
)
1763 struct notifier
**notif
;
1767 struct notifier
*np
;
1769 for (; (np
= *notif
) != 0; notif
= &np
->next
) {
1770 if (np
->func
== func
&& np
->arg
== arg
) {
1779 * notify - call a set of functions registered with add_notifier.
1783 struct notifier
*notif
;
1786 struct notifier
*np
;
1788 while ((np
= notif
) != 0) {
1790 (*np
->func
)(np
->arg
, val
);
1795 * novm - log an error message saying we ran out of memory, and die.
1801 fatal("Virtual memory exhausted allocating %s\n", msg
);
1805 * script_setenv - set an environment variable value to be used
1806 * for scripts that we run (e.g. ip-up, auth-up, etc.)
1809 script_setenv(var
, value
, iskey
)
1813 size_t varl
= strlen(var
);
1814 size_t vl
= varl
+ strlen(value
) + 2;
1816 char *p
, *newstring
;
1818 newstring
= (char *) malloc(vl
+1);
1821 *newstring
++ = iskey
;
1822 slprintf(newstring
, vl
, "%s=%s", var
, value
);
1824 /* check if this variable is already set */
1825 if (script_env
!= 0) {
1826 for (i
= 0; (p
= script_env
[i
]) != 0; ++i
) {
1827 if (strncmp(p
, var
, varl
) == 0 && p
[varl
] == '=') {
1829 if (p
[-1] && pppdb
!= NULL
)
1833 script_env
[i
] = newstring
;
1835 if (iskey
&& pppdb
!= NULL
)
1836 add_db_key(newstring
);
1843 /* no space allocated for script env. ptrs. yet */
1845 script_env
= (char **) malloc(16 * sizeof(char *));
1846 if (script_env
== 0)
1851 /* reallocate script_env with more space if needed */
1852 if (i
+ 1 >= s_env_nalloc
) {
1854 char **newenv
= (char **) realloc((void *)script_env
,
1855 new_n
* sizeof(char *));
1858 script_env
= newenv
;
1859 s_env_nalloc
= new_n
;
1862 script_env
[i
] = newstring
;
1863 script_env
[i
+1] = 0;
1866 if (pppdb
!= NULL
) {
1868 add_db_key(newstring
);
1875 * script_unsetenv - remove a variable from the environment
1879 script_unsetenv(var
)
1882 int vl
= strlen(var
);
1886 if (script_env
== 0)
1888 for (i
= 0; (p
= script_env
[i
]) != 0; ++i
) {
1889 if (strncmp(p
, var
, vl
) == 0 && p
[vl
] == '=') {
1891 if (p
[-1] && pppdb
!= NULL
)
1895 while ((script_env
[i
] = script_env
[i
+1]) != 0)
1908 * update_db_entry - update our entry in the database.
1917 if (script_env
== NULL
)
1920 for (i
= 0; (p
= script_env
[i
]) != 0; ++i
)
1921 vlen
+= strlen(p
) + 1;
1922 vbuf
= malloc(vlen
);
1924 novm("database entry");
1926 for (i
= 0; (p
= script_env
[i
]) != 0; ++i
)
1927 q
+= slprintf(q
, vbuf
+ vlen
- q
, "%s;", p
);
1930 key
.dsize
= strlen(db_key
);
1933 if (tdb_store(pppdb
, key
, dbuf
, TDB_REPLACE
))
1934 error("tdb_store failed: %s", tdb_error(pppdb
));
1942 * add_db_key - add a key that we can use to look up our database entry.
1950 key
.dptr
= (char *) str
;
1951 key
.dsize
= strlen(str
);
1953 dbuf
.dsize
= strlen(db_key
);
1954 if (tdb_store(pppdb
, key
, dbuf
, TDB_REPLACE
))
1955 error("tdb_store key failed: %s", tdb_error(pppdb
));
1959 * delete_db_key - delete a key for looking up our database entry.
1967 key
.dptr
= (char *) str
;
1968 key
.dsize
= strlen(str
);
1969 tdb_delete(pppdb
, key
);
1973 * cleanup_db - delete all the entries we put in the database.
1983 key
.dsize
= strlen(db_key
);
1984 tdb_delete(pppdb
, key
);
1985 for (i
= 0; (p
= script_env
[i
]) != 0; ++i
)
1989 #endif /* USE_TDB */