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.
42 * Copyright (c) 1999-2004 Paul Mackerras. All rights reserved.
44 * Redistribution and use in source and binary forms, with or without
45 * modification, are permitted provided that the following conditions
48 * 1. Redistributions of source code must retain the above copyright
49 * notice, this list of conditions and the following disclaimer.
51 * 2. The name(s) of the authors of this software must not be used to
52 * endorse or promote products derived from this software without
53 * prior written permission.
55 * 3. Redistributions of any form whatsoever must retain the following
57 * "This product includes software developed by Paul Mackerras
58 * <paulus@samba.org>".
60 * THE AUTHORS OF THIS SOFTWARE DISCLAIM ALL WARRANTIES WITH REGARD TO
61 * THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
62 * AND FITNESS, IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY
63 * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
64 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
65 * AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
66 * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
69 #define RCSID "$Id: main.c,v 1.150 2005/03/21 09:20:16 paulus Exp $"
84 #include <sys/param.h>
85 #include <sys/types.h>
88 #include <sys/resource.h>
90 #include <sys/socket.h>
91 #include <netinet/in.h>
92 #include <arpa/inet.h>
103 #include "chap-new.h"
107 #include "pathnames.h"
119 #endif /* IPX_CHANGE */
124 static const char rcsid
[] = RCSID
;
127 char ifname
[32]; /* Interface name */
128 int ifunit
; /* Interface unit number */
130 struct channel
*the_channel
;
132 char *progname
; /* Name of this program */
133 char hostname
[MAXNAMELEN
]; /* Our hostname */
134 static char pidfilename
[MAXPATHLEN
]; /* name of pid file */
135 static char linkpidfile
[MAXPATHLEN
]; /* name of linkname pid file */
136 char ppp_devnam
[MAXPATHLEN
]; /* name of PPP tty (maybe ttypx) */
137 uid_t uid
; /* Our real user-id */
138 struct notifier
*pidchange
= NULL
;
139 struct notifier
*phasechange
= NULL
;
140 struct notifier
*exitnotify
= NULL
;
141 struct notifier
*sigreceived
= NULL
;
142 struct notifier
*fork_notifier
= NULL
;
144 int hungup
; /* terminal has been hung up */
145 int privileged
; /* we're running as real uid root */
146 int need_holdoff
; /* need holdoff period before restarting */
147 int detached
; /* have detached from terminal */
148 volatile int status
; /* exit status for pppd */
149 int unsuccess
; /* # unsuccessful connection attempts */
150 int do_callback
; /* != 0 if we should do callback next */
151 int doing_callback
; /* != 0 if we are doing callback */
152 int ppp_session_number
; /* Session number, for channels with such a
153 concept (eg PPPoE) */
154 int childwait_done
; /* have timed out waiting for children */
157 TDB_CONTEXT
*pppdb
; /* database for storing status etc. */
162 int (*holdoff_hook
) __P((void)) = NULL
;
163 int (*new_phase_hook
) __P((int)) = NULL
;
164 void (*snoop_recv_hook
) __P((unsigned char *p
, int len
)) = NULL
;
165 void (*snoop_send_hook
) __P((unsigned char *p
, int len
)) = NULL
;
167 static int conn_running
; /* we have a [dis]connector running */
168 static int fd_loop
; /* fd for getting demand-dial packets */
170 int fd_devnull
; /* fd for /dev/null */
171 int devfd
= -1; /* fd of underlying device */
172 int fd_ppp
= -1; /* fd for talking PPP */
173 int phase
; /* where the link is at */
182 static sigset_t signals_handled
;
184 static sigjmp_buf sigjmp
;
186 char **script_env
; /* Env. variable values for scripts */
187 int s_env_nalloc
; /* # words avail at script_env */
189 u_char outpacket_buf
[PPP_MRU
+PPP_HDRLEN
]; /* buffer for outgoing packet */
190 u_char inpacket_buf
[PPP_MRU
+PPP_HDRLEN
]; /* buffer for incoming packet */
192 static int n_children
; /* # child processes still running */
193 static int got_sigchld
; /* set if we have received a SIGCHLD */
195 int privopen
; /* don't lock, open device as root */
197 char *no_ppp_msg
= "Sorry - this system lacks PPP kernel support\n";
199 GIDSET_TYPE groups
[NGROUPS_MAX
];/* groups the user is in */
200 int ngroups
; /* How many groups valid in groups */
202 static struct timeval start_time
; /* Time when link was started. */
204 static struct pppd_stats old_link_stats
;
205 struct pppd_stats link_stats
;
206 unsigned link_connect_time
;
207 int link_stats_valid
;
212 bool bundle_terminating
;
215 * We maintain a list of child process pids and
216 * functions to call when they exit.
221 void (*done
) __P((void *));
223 struct subprocess
*next
;
226 static struct subprocess
*children
;
228 /* Prototypes for procedures local to this file. */
230 static void setup_signals
__P((void));
231 static void create_pidfile
__P((int pid
));
232 static void create_linkpidfile
__P((int pid
));
233 static void cleanup
__P((void));
234 static void get_input
__P((void));
235 static void calltimeout
__P((void));
236 static struct timeval
*timeleft
__P((struct timeval
*));
237 static void kill_my_pg
__P((int));
238 static void hup
__P((int));
239 static void term
__P((int));
240 static void chld
__P((int));
241 static void toggle_debug
__P((int));
242 static void open_ccp
__P((int));
243 static void bad_signal
__P((int));
244 static void holdoff_end
__P((void *));
245 static int reap_kids
__P((void));
246 static void childwait_end
__P((void *));
249 static void update_db_entry
__P((void));
250 static void add_db_key
__P((const char *));
251 static void delete_db_key
__P((const char *));
252 static void cleanup_db
__P((void));
255 static void handle_events
__P((void));
256 void print_link_stats
__P((void));
258 extern char *ttyname
__P((int));
259 extern char *getlogin
__P((void));
260 int main
__P((int, char *[]));
264 #define O_NONBLOCK O_NDELAY
268 #define setlogmask(x)
272 * PPP Data Link Layer "protocol" table.
273 * One entry per supported protocol.
274 * The last entry must be NULL.
276 struct protent
*protocols
[] = {
300 * If PPP_DRV_NAME is not defined, use the default "ppp" as the device name.
302 #if !defined(PPP_DRV_NAME)
303 #define PPP_DRV_NAME "ppp"
304 #endif /* !defined(PPP_DRV_NAME) */
314 struct protent
*protp
;
317 link_stats_valid
= 0;
318 new_phase(PHASE_INITIALIZE
);
322 /* Initialize syslog facilities */
325 if (gethostname(hostname
, MAXNAMELEN
) < 0 ) {
326 option_error("Couldn't get hostname: %m");
329 hostname
[MAXNAMELEN
-1] = 0;
331 /* make sure we don't create world or group writable files. */
332 umask(umask(0777) | 022);
335 privileged
= uid
== 0;
336 slprintf(numbuf
, sizeof(numbuf
), "%d", uid
);
337 script_setenv("ORIG_UID", numbuf
, 0);
339 ngroups
= getgroups(NGROUPS_MAX
, groups
);
342 * Initialize magic number generator now so that protocols may
343 * use magic numbers in initialization.
348 * Initialize each protocol.
350 for (i
= 0; (protp
= protocols
[i
]) != NULL
; ++i
)
354 * Initialize the default channel.
361 * Parse, in order, the system options file, the user's options file,
362 * and the command line arguments.
364 if (!options_from_file(_PATH_SYSOPTIONS
, !privileged
, 0, 1)
365 || !options_from_user()
366 || !parse_args(argc
-1, argv
+1))
367 exit(EXIT_OPTION_ERROR
);
368 devnam_fixed
= 1; /* can no longer change device name */
371 * Work out the device name, if it hasn't already been specified,
372 * and parse the tty's options file.
374 if (the_channel
->process_extra_options
)
375 (*the_channel
->process_extra_options
)();
378 setlogmask(LOG_UPTO(LOG_DEBUG
));
381 * Check that we are running as root.
383 if (geteuid() != 0) {
384 option_error("must be root to run %s, since it is not setuid-root",
389 if (!ppp_available()) {
390 option_error("%s", no_ppp_msg
);
391 exit(EXIT_NO_KERNEL_SUPPORT
);
395 * Check that the options given are valid and consistent.
398 if (!sys_check_options())
399 exit(EXIT_OPTION_ERROR
);
400 auth_check_options();
401 #ifdef HAVE_MULTILINK
404 for (i
= 0; (protp
= protocols
[i
]) != NULL
; ++i
)
405 if (protp
->check_options
!= NULL
)
406 (*protp
->check_options
)();
407 if (the_channel
->check_options
)
408 (*the_channel
->check_options
)();
411 if (dump_options
|| dryrun
) {
412 init_pr_log(NULL
, LOG_INFO
);
413 print_options(pr_log
, NULL
);
420 /* Make sure fds 0, 1, 2 are open to somewhere. */
421 fd_devnull
= open(_PATH_DEVNULL
, O_RDWR
);
423 fatal("Couldn't open %s: %m", _PATH_DEVNULL
);
424 while (fd_devnull
<= 2) {
427 fatal("Critical shortage of file descriptors: dup failed: %m");
432 * Initialize system-dependent stuff.
437 pppdb
= tdb_open(_PATH_PPPDB
, 0, 0, O_RDWR
|O_CREAT
, 0644);
439 slprintf(db_key
, sizeof(db_key
), "pppd%d", getpid());
442 warn("Warning: couldn't open ppp database %s", _PATH_PPPDB
);
444 warn("Warning: disabling multilink");
451 * Detach ourselves from the terminal, if required,
452 * and identify who is running us.
454 if (!nodetach
&& !updetach
)
459 if (pw
!= NULL
&& pw
->pw_name
!= NULL
)
464 syslog(LOG_NOTICE
, "pppd %s started by %s, uid %d", VERSION
, p
, uid
);
465 script_setenv("PPPLOGNAME", p
, 0);
468 script_setenv("DEVICE", devnam
, 1);
469 slprintf(numbuf
, sizeof(numbuf
), "%d", getpid());
470 script_setenv("PPPD_PID", numbuf
, 1);
474 create_linkpidfile(getpid());
479 * If we're doing dial-on-demand, set up the interface now.
483 * Open the loopback channel and set it up to be the ppp interface.
485 fd_loop
= open_ppp_loopback();
488 * Configure the interface and mark it up, etc.
497 bundle_terminating
= 0;
503 doing_callback
= do_callback
;
506 if (demand
&& !doing_callback
) {
508 * Don't do anything until we see some activity.
510 new_phase(PHASE_DORMANT
);
517 if (get_loop_output())
525 * Now we want to bring up the link.
528 info("Starting link");
531 gettimeofday(&start_time
, NULL
);
532 script_unsetenv("CONNECT_TIME");
533 script_unsetenv("BYTES_SENT");
534 script_unsetenv("BYTES_RCVD");
536 lcp_open(0); /* Start protocol */
537 while (phase
!= PHASE_DEAD
) {
541 lcp_close(0, "User request");
543 bundle_terminating
= 1;
544 if (phase
== PHASE_MASTER
)
545 mp_bundle_terminated();
548 if (phase
== PHASE_NETWORK
|| phase
== PHASE_RUNNING
) {
549 ccp_fsm
[0].flags
= OPT_RESTART
; /* clears OPT_SILENT */
550 (*ccp_protent
.open
)(0);
554 /* restore FSMs to original state */
557 if (!persist
|| asked_to_quit
|| (maxfail
> 0 && unsuccess
>= maxfail
))
562 t
= need_holdoff
? holdoff
: 0;
564 t
= (*holdoff_hook
)();
566 new_phase(PHASE_HOLDOFF
);
567 TIMEOUT(holdoff_end
, NULL
, t
);
571 new_phase(PHASE_DORMANT
); /* allow signal to end holdoff */
572 } while (phase
== PHASE_HOLDOFF
);
578 /* Wait for scripts to finish */
580 if (n_children
> 0) {
582 TIMEOUT(childwait_end
, NULL
, child_wait
);
584 struct subprocess
*chp
;
585 dbglog("Waiting for %d child processes...", n_children
);
586 for (chp
= children
; chp
!= NULL
; chp
= chp
->next
)
587 dbglog(" script %s, pid %d", chp
->prog
, chp
->pid
);
589 while (n_children
> 0 && !childwait_done
) {
591 if (kill_link
&& !childwait_done
)
601 * handle_events - wait for something to happen and respond to it.
608 kill_link
= open_ccp_flag
= 0;
609 if (sigsetjmp(sigjmp
, 1) == 0) {
610 sigprocmask(SIG_BLOCK
, &signals_handled
, NULL
);
611 if (got_sighup
|| got_sigterm
|| got_sigusr2
|| got_sigchld
) {
612 sigprocmask(SIG_UNBLOCK
, &signals_handled
, NULL
);
615 sigprocmask(SIG_UNBLOCK
, &signals_handled
, NULL
);
616 wait_input(timeleft(&timo
));
622 info("Hangup (SIGHUP)");
625 if (status
!= EXIT_HANGUP
)
626 status
= EXIT_USER_REQUEST
;
629 info("Terminating on signal %d", got_sigterm
);
633 status
= EXIT_USER_REQUEST
;
638 reap_kids(); /* Don't leave dead kids lying around */
647 * setup_signals - initialize signal handling.
655 * Compute mask of all interesting signals and install signal handlers
656 * for each. Only one signal handler may be active at a time. Therefore,
657 * all other signals should be masked when any handler is executing.
659 sigemptyset(&signals_handled
);
660 sigaddset(&signals_handled
, SIGHUP
);
661 sigaddset(&signals_handled
, SIGINT
);
662 sigaddset(&signals_handled
, SIGTERM
);
663 sigaddset(&signals_handled
, SIGCHLD
);
664 sigaddset(&signals_handled
, SIGUSR2
);
666 #define SIGNAL(s, handler) do { \
667 sa.sa_handler = handler; \
668 if (sigaction(s, &sa, NULL) < 0) \
669 fatal("Couldn't establish signal handler (%d): %m", s); \
672 sa
.sa_mask
= signals_handled
;
674 SIGNAL(SIGHUP
, hup
); /* Hangup */
675 SIGNAL(SIGINT
, term
); /* Interrupt */
676 SIGNAL(SIGTERM
, term
); /* Terminate */
677 SIGNAL(SIGCHLD
, chld
);
679 SIGNAL(SIGUSR1
, toggle_debug
); /* Toggle debug flag */
680 SIGNAL(SIGUSR2
, open_ccp
); /* Reopen CCP */
683 * Install a handler for other signals which would otherwise
684 * cause pppd to exit without cleaning up.
686 SIGNAL(SIGABRT
, bad_signal
);
687 SIGNAL(SIGALRM
, bad_signal
);
688 SIGNAL(SIGFPE
, bad_signal
);
689 SIGNAL(SIGILL
, bad_signal
);
690 SIGNAL(SIGPIPE
, bad_signal
);
691 SIGNAL(SIGQUIT
, bad_signal
);
692 SIGNAL(SIGSEGV
, bad_signal
);
694 SIGNAL(SIGBUS
, bad_signal
);
697 SIGNAL(SIGEMT
, bad_signal
);
700 SIGNAL(SIGPOLL
, bad_signal
);
703 SIGNAL(SIGPROF
, bad_signal
);
706 SIGNAL(SIGSYS
, bad_signal
);
709 SIGNAL(SIGTRAP
, bad_signal
);
712 SIGNAL(SIGVTALRM
, bad_signal
);
715 SIGNAL(SIGXCPU
, bad_signal
);
718 SIGNAL(SIGXFSZ
, bad_signal
);
722 * Apparently we can get a SIGPIPE when we call syslog, if
723 * syslogd has died and been restarted. Ignoring it seems
726 signal(SIGPIPE
, SIG_IGN
);
730 * set_ifunit - do things we need to do once we know which ppp
737 info("Using interface %s%d", PPP_DRV_NAME
, ifunit
);
738 slprintf(ifname
, sizeof(ifname
), "%s%d", PPP_DRV_NAME
, ifunit
);
739 script_setenv("IFNAME", ifname
, iskey
);
741 create_pidfile(getpid()); /* write pid to file */
742 create_linkpidfile(getpid());
747 * detach - detach us from the controlling terminal.
758 if (pipe(pipefd
) == -1)
759 pipefd
[0] = pipefd
[1] = -1;
760 if ((pid
= fork()) < 0) {
761 error("Couldn't detach (fork failed: %m)");
762 die(1); /* or just return? */
766 notify(pidchange
, pid
);
767 /* update pid files if they have been written already */
771 create_linkpidfile(pid
);
772 exit(0); /* parent dies */
782 slprintf(numbuf
, sizeof(numbuf
), "%d", getpid());
783 script_setenv("PPPD_PID", numbuf
, 1);
785 /* wait for parent to finish updating pid & lock files and die */
787 complete_read(pipefd
[0], numbuf
, 1);
792 * reopen_log - (re)open our connection to syslog.
797 openlog("pppd", LOG_PID
| LOG_NDELAY
, LOG_PPP
);
798 setlogmask(LOG_UPTO(LOG_INFO
));
802 * Create a file containing our process ID.
810 slprintf(pidfilename
, sizeof(pidfilename
), "%s%s.pid",
811 _PATH_VARRUN
, ifname
);
812 if ((pidfile
= fopen(pidfilename
, "w")) != NULL
) {
813 fprintf(pidfile
, "%d\n", pid
);
814 (void) fclose(pidfile
);
816 error("Failed to create pid file %s: %m", pidfilename
);
822 create_linkpidfile(pid
)
827 if (linkname
[0] == 0)
829 script_setenv("LINKNAME", linkname
, 1);
830 slprintf(linkpidfile
, sizeof(linkpidfile
), "%sppp-%s.pid",
831 _PATH_VARRUN
, linkname
);
832 if ((pidfile
= fopen(linkpidfile
, "w")) != NULL
) {
833 fprintf(pidfile
, "%d\n", pid
);
835 fprintf(pidfile
, "%s\n", ifname
);
836 (void) fclose(pidfile
);
838 error("Failed to create pid file %s: %m", linkpidfile
);
844 * remove_pidfile - remove our pid files
846 void remove_pidfiles()
848 if (pidfilename
[0] != 0 && unlink(pidfilename
) < 0 && errno
!= ENOENT
)
849 warn("unable to delete pid file %s: %m", pidfilename
);
851 if (linkpidfile
[0] != 0 && unlink(linkpidfile
) < 0 && errno
!= ENOENT
)
852 warn("unable to delete pid file %s: %m", linkpidfile
);
857 * holdoff_end - called via a timeout when the holdoff period ends.
863 new_phase(PHASE_DORMANT
);
866 /* List of protocol names, to make our messages a little more informative. */
867 struct protocol_list
{
870 } protocol_list
[] = {
872 { 0x23, "OSI Network Layer" },
873 { 0x25, "Xerox NS IDP" },
874 { 0x27, "DECnet Phase IV" },
875 { 0x29, "Appletalk" },
876 { 0x2b, "Novell IPX" },
877 { 0x2d, "VJ compressed TCP/IP" },
878 { 0x2f, "VJ uncompressed TCP/IP" },
879 { 0x31, "Bridging PDU" },
880 { 0x33, "Stream Protocol ST-II" },
881 { 0x35, "Banyan Vines" },
882 { 0x39, "AppleTalk EDDP" },
883 { 0x3b, "AppleTalk SmartBuffered" },
884 { 0x3d, "Multi-Link" },
885 { 0x3f, "NETBIOS Framing" },
886 { 0x41, "Cisco Systems" },
887 { 0x43, "Ascom Timeplex" },
888 { 0x45, "Fujitsu Link Backup and Load Balancing (LBLB)" },
889 { 0x47, "DCA Remote Lan" },
890 { 0x49, "Serial Data Transport Protocol (PPP-SDTP)" },
891 { 0x4b, "SNA over 802.2" },
893 { 0x4f, "IP6 Header Compression" },
894 { 0x51, "KNX Bridging Data" },
895 { 0x53, "Encryption" },
896 { 0x55, "Individual Link Encryption" },
898 { 0x59, "PPP Muxing" },
899 { 0x5b, "Vendor-Specific Network Protocol" },
900 { 0x61, "RTP IPHC Full Header" },
901 { 0x63, "RTP IPHC Compressed TCP" },
902 { 0x65, "RTP IPHC Compressed non-TCP" },
903 { 0x67, "RTP IPHC Compressed UDP 8" },
904 { 0x69, "RTP IPHC Compressed RTP 8" },
905 { 0x6f, "Stampede Bridging" },
907 { 0xc1, "NTCITS IPI" },
908 { 0xfb, "single-link compression" },
909 { 0xfd, "Compressed Datagram" },
910 { 0x0201, "802.1d Hello Packets" },
911 { 0x0203, "IBM Source Routing BPDU" },
912 { 0x0205, "DEC LANBridge100 Spanning Tree" },
913 { 0x0207, "Cisco Discovery Protocol" },
914 { 0x0209, "Netcs Twin Routing" },
915 { 0x020b, "STP - Scheduled Transfer Protocol" },
916 { 0x020d, "EDP - Extreme Discovery Protocol" },
917 { 0x0211, "Optical Supervisory Channel Protocol" },
918 { 0x0213, "Optical Supervisory Channel Protocol" },
919 { 0x0231, "Luxcom" },
920 { 0x0233, "Sigma Network Systems" },
921 { 0x0235, "Apple Client Server Protocol" },
922 { 0x0281, "MPLS Unicast" },
923 { 0x0283, "MPLS Multicast" },
924 { 0x0285, "IEEE p1284.4 standard - data packets" },
925 { 0x0287, "ETSI TETRA Network Protocol Type 1" },
926 { 0x0289, "Multichannel Flow Treatment Protocol" },
927 { 0x2063, "RTP IPHC Compressed TCP No Delta" },
928 { 0x2065, "RTP IPHC Context State" },
929 { 0x2067, "RTP IPHC Compressed UDP 16" },
930 { 0x2069, "RTP IPHC Compressed RTP 16" },
931 { 0x4001, "Cray Communications Control Protocol" },
932 { 0x4003, "CDPD Mobile Network Registration Protocol" },
933 { 0x4005, "Expand accelerator protocol" },
934 { 0x4007, "ODSICP NCP" },
935 { 0x4009, "DOCSIS DLL" },
936 { 0x400B, "Cetacean Network Detection Protocol" },
937 { 0x4021, "Stacker LZS" },
938 { 0x4023, "RefTek Protocol" },
939 { 0x4025, "Fibre Channel" },
940 { 0x4027, "EMIT Protocols" },
941 { 0x405b, "Vendor-Specific Protocol (VSP)" },
942 { 0x8021, "Internet Protocol Control Protocol" },
943 { 0x8023, "OSI Network Layer Control Protocol" },
944 { 0x8025, "Xerox NS IDP Control Protocol" },
945 { 0x8027, "DECnet Phase IV Control Protocol" },
946 { 0x8029, "Appletalk Control Protocol" },
947 { 0x802b, "Novell IPX Control Protocol" },
948 { 0x8031, "Bridging NCP" },
949 { 0x8033, "Stream Protocol Control Protocol" },
950 { 0x8035, "Banyan Vines Control Protocol" },
951 { 0x803d, "Multi-Link Control Protocol" },
952 { 0x803f, "NETBIOS Framing Control Protocol" },
953 { 0x8041, "Cisco Systems Control Protocol" },
954 { 0x8043, "Ascom Timeplex" },
955 { 0x8045, "Fujitsu LBLB Control Protocol" },
956 { 0x8047, "DCA Remote Lan Network Control Protocol (RLNCP)" },
957 { 0x8049, "Serial Data Control Protocol (PPP-SDCP)" },
958 { 0x804b, "SNA over 802.2 Control Protocol" },
959 { 0x804d, "SNA Control Protocol" },
960 { 0x804f, "IP6 Header Compression Control Protocol" },
961 { 0x8051, "KNX Bridging Control Protocol" },
962 { 0x8053, "Encryption Control Protocol" },
963 { 0x8055, "Individual Link Encryption Control Protocol" },
964 { 0x8057, "IPv6 Control Protovol" },
965 { 0x8059, "PPP Muxing Control Protocol" },
966 { 0x805b, "Vendor-Specific Network Control Protocol (VSNCP)" },
967 { 0x806f, "Stampede Bridging Control Protocol" },
968 { 0x8073, "MP+ Control Protocol" },
969 { 0x80c1, "NTCITS IPI Control Protocol" },
970 { 0x80fb, "Single Link Compression Control Protocol" },
971 { 0x80fd, "Compression Control Protocol" },
972 { 0x8207, "Cisco Discovery Protocol Control" },
973 { 0x8209, "Netcs Twin Routing" },
974 { 0x820b, "STP - Control Protocol" },
975 { 0x820d, "EDPCP - Extreme Discovery Protocol Ctrl Prtcl" },
976 { 0x8235, "Apple Client Server Protocol Control" },
977 { 0x8281, "MPLSCP" },
978 { 0x8285, "IEEE p1284.4 standard - Protocol Control" },
979 { 0x8287, "ETSI TETRA TNP1 Control Protocol" },
980 { 0x8289, "Multichannel Flow Treatment Protocol" },
981 { 0xc021, "Link Control Protocol" },
982 { 0xc023, "Password Authentication Protocol" },
983 { 0xc025, "Link Quality Report" },
984 { 0xc027, "Shiva Password Authentication Protocol" },
985 { 0xc029, "CallBack Control Protocol (CBCP)" },
986 { 0xc02b, "BACP Bandwidth Allocation Control Protocol" },
988 { 0xc05b, "Vendor-Specific Authentication Protocol (VSAP)" },
989 { 0xc081, "Container Control Protocol" },
990 { 0xc223, "Challenge Handshake Authentication Protocol" },
991 { 0xc225, "RSA Authentication Protocol" },
992 { 0xc227, "Extensible Authentication Protocol" },
993 { 0xc229, "Mitsubishi Security Info Exch Ptcl (SIEP)" },
994 { 0xc26f, "Stampede Bridging Authorization Protocol" },
995 { 0xc281, "Proprietary Authentication Protocol" },
996 { 0xc283, "Proprietary Authentication Protocol" },
997 { 0xc481, "Proprietary Node ID Authentication Protocol" },
1002 * protocol_name - find a name for a PPP protocol.
1005 protocol_name(proto
)
1008 struct protocol_list
*lp
;
1010 for (lp
= protocol_list
; lp
->proto
!= 0; ++lp
)
1011 if (proto
== lp
->proto
)
1017 * get_input - called when incoming data is available.
1025 struct protent
*protp
;
1027 p
= inpacket_buf
; /* point to beginning of packet buffer */
1029 len
= read_packet(inpacket_buf
);
1034 if (bundle_eof
&& multilink_master
) {
1035 notice("Last channel has disconnected");
1036 mp_bundle_terminated();
1039 notice("Modem hangup");
1041 status
= EXIT_HANGUP
;
1042 lcp_lowerdown(0); /* serial link is no longer available */
1047 if (len
< PPP_HDRLEN
) {
1048 dbglog("received short packet:%.*B", len
, p
);
1052 dump_packet("rcvd", p
, len
);
1053 if (snoop_recv_hook
) snoop_recv_hook(p
, len
);
1055 p
+= 2; /* Skip address and control */
1056 GETSHORT(protocol
, p
);
1060 * Toss all non-LCP packets unless LCP is OPEN.
1062 if (protocol
!= PPP_LCP
&& lcp_fsm
[0].state
!= OPENED
) {
1063 dbglog("Discarded non-LCP packet when LCP not open");
1068 * Until we get past the authentication phase, toss all packets
1069 * except LCP, LQR and authentication packets.
1071 if (phase
<= PHASE_AUTHENTICATE
1072 && !(protocol
== PPP_LCP
|| protocol
== PPP_LQR
1073 || protocol
== PPP_PAP
|| protocol
== PPP_CHAP
||
1074 protocol
== PPP_EAP
)) {
1075 dbglog("discarding proto 0x%x in phase %d",
1081 * Upcall the proper protocol input routine.
1083 for (i
= 0; (protp
= protocols
[i
]) != NULL
; ++i
) {
1084 if (protp
->protocol
== protocol
&& protp
->enabled_flag
) {
1085 (*protp
->input
)(0, p
, len
);
1088 if (protocol
== (protp
->protocol
& ~0x8000) && protp
->enabled_flag
1089 && protp
->datainput
!= NULL
) {
1090 (*protp
->datainput
)(0, p
, len
);
1096 const char *pname
= protocol_name(protocol
);
1098 warn("Unsupported protocol '%s' (0x%x) received", pname
, protocol
);
1100 warn("Unsupported protocol 0x%x received", protocol
);
1102 lcp_sprotrej(0, p
- PPP_HDRLEN
, len
+ PPP_HDRLEN
);
1106 * ppp_send_config - configure the transmit-side characteristics of
1107 * the ppp interface. Returns -1, indicating an error, if the channel
1108 * send_config procedure called error() (or incremented error_count
1109 * itself), otherwise 0.
1112 ppp_send_config(unit
, mtu
, accm
, pcomp
, accomp
)
1119 if (the_channel
->send_config
== NULL
)
1122 (*the_channel
->send_config
)(mtu
, accm
, pcomp
, accomp
);
1123 return (error_count
!= errs
)? -1: 0;
1127 * ppp_recv_config - configure the receive-side characteristics of
1128 * the ppp interface. Returns -1, indicating an error, if the channel
1129 * recv_config procedure called error() (or incremented error_count
1130 * itself), otherwise 0.
1133 ppp_recv_config(unit
, mru
, accm
, pcomp
, accomp
)
1140 if (the_channel
->recv_config
== NULL
)
1143 (*the_channel
->recv_config
)(mru
, accm
, pcomp
, accomp
);
1144 return (error_count
!= errs
)? -1: 0;
1148 * new_phase - signal the start of a new phase of pppd's operation.
1156 (*new_phase_hook
)(p
);
1157 notify(phasechange
, p
);
1161 * die - clean up state and exit with the specified status.
1167 if (!doing_multilink
|| multilink_master
)
1170 notify(exitnotify
, status
);
1171 syslog(LOG_INFO
, "Exit.");
1176 * cleanup - restore anything which needs to be restored before we exit
1185 the_channel
->disestablish_ppp(devfd
);
1186 if (the_channel
->cleanup
)
1187 (*the_channel
->cleanup
)();
1201 * Print connect time and statistics.
1203 if (link_stats_valid
) {
1204 int t
= (link_connect_time
+ 5) / 6; /* 1/10ths of minutes */
1205 info("Connect time %d.%d minutes.", t
/10, t
%10);
1206 info("Sent %u bytes, received %u bytes.",
1207 link_stats
.bytes_out
, link_stats
.bytes_in
);
1208 link_stats_valid
= 0;
1213 * reset_link_stats - "reset" stats when link goes up.
1219 if (!get_ppp_stats(u
, &old_link_stats
))
1221 gettimeofday(&start_time
, NULL
);
1225 * update_link_stats - get stats at link termination.
1228 update_link_stats(u
)
1234 if (!get_ppp_stats(u
, &link_stats
)
1235 || gettimeofday(&now
, NULL
) < 0)
1237 link_connect_time
= now
.tv_sec
- start_time
.tv_sec
;
1238 link_stats_valid
= 1;
1240 link_stats
.bytes_in
-= old_link_stats
.bytes_in
;
1241 link_stats
.bytes_out
-= old_link_stats
.bytes_out
;
1242 link_stats
.pkts_in
-= old_link_stats
.pkts_in
;
1243 link_stats
.pkts_out
-= old_link_stats
.pkts_out
;
1245 slprintf(numbuf
, sizeof(numbuf
), "%u", link_connect_time
);
1246 script_setenv("CONNECT_TIME", numbuf
, 0);
1247 slprintf(numbuf
, sizeof(numbuf
), "%u", link_stats
.bytes_out
);
1248 script_setenv("BYTES_SENT", numbuf
, 0);
1249 slprintf(numbuf
, sizeof(numbuf
), "%u", link_stats
.bytes_in
);
1250 script_setenv("BYTES_RCVD", numbuf
, 0);
1255 struct timeval c_time
; /* time at which to call routine */
1256 void *c_arg
; /* argument to routine */
1257 void (*c_func
) __P((void *)); /* routine */
1258 struct callout
*c_next
;
1261 static struct callout
*callout
= NULL
; /* Callout list */
1262 static struct timeval timenow
; /* Current time */
1265 * timeout - Schedule a timeout.
1268 timeout(func
, arg
, secs
, usecs
)
1269 void (*func
) __P((void *));
1273 struct callout
*newp
, *p
, **pp
;
1278 if ((newp
= (struct callout
*) malloc(sizeof(struct callout
))) == NULL
)
1279 fatal("Out of memory in timeout()!");
1281 newp
->c_func
= func
;
1282 gettimeofday(&timenow
, NULL
);
1283 newp
->c_time
.tv_sec
= timenow
.tv_sec
+ secs
;
1284 newp
->c_time
.tv_usec
= timenow
.tv_usec
+ usecs
;
1285 if (newp
->c_time
.tv_usec
>= 1000000) {
1286 newp
->c_time
.tv_sec
+= newp
->c_time
.tv_usec
/ 1000000;
1287 newp
->c_time
.tv_usec
%= 1000000;
1291 * Find correct place and link it in.
1293 for (pp
= &callout
; (p
= *pp
); pp
= &p
->c_next
)
1294 if (newp
->c_time
.tv_sec
< p
->c_time
.tv_sec
1295 || (newp
->c_time
.tv_sec
== p
->c_time
.tv_sec
1296 && newp
->c_time
.tv_usec
< p
->c_time
.tv_usec
))
1304 * untimeout - Unschedule a timeout.
1307 untimeout(func
, arg
)
1308 void (*func
) __P((void *));
1311 struct callout
**copp
, *freep
;
1314 * Find first matching timeout and remove it from the list.
1316 for (copp
= &callout
; (freep
= *copp
); copp
= &freep
->c_next
)
1317 if (freep
->c_func
== func
&& freep
->c_arg
== arg
) {
1318 *copp
= freep
->c_next
;
1319 free((char *) freep
);
1326 * calltimeout - Call any timeout routines which are now due.
1333 while (callout
!= NULL
) {
1336 if (gettimeofday(&timenow
, NULL
) < 0)
1337 fatal("Failed to get time of day: %m");
1338 if (!(p
->c_time
.tv_sec
< timenow
.tv_sec
1339 || (p
->c_time
.tv_sec
== timenow
.tv_sec
1340 && p
->c_time
.tv_usec
<= timenow
.tv_usec
)))
1341 break; /* no, it's not time yet */
1343 callout
= p
->c_next
;
1344 (*p
->c_func
)(p
->c_arg
);
1352 * timeleft - return the length of time until the next timeout is due.
1354 static struct timeval
*
1356 struct timeval
*tvp
;
1358 if (callout
== NULL
)
1361 gettimeofday(&timenow
, NULL
);
1362 tvp
->tv_sec
= callout
->c_time
.tv_sec
- timenow
.tv_sec
;
1363 tvp
->tv_usec
= callout
->c_time
.tv_usec
- timenow
.tv_usec
;
1364 if (tvp
->tv_usec
< 0) {
1365 tvp
->tv_usec
+= 1000000;
1368 if (tvp
->tv_sec
< 0)
1369 tvp
->tv_sec
= tvp
->tv_usec
= 0;
1376 * kill_my_pg - send a signal to our process group, and ignore it ourselves.
1377 * We assume that sig is currently blocked.
1383 struct sigaction act
, oldact
;
1385 sigemptyset(&act
.sa_mask
); /* unnecessary in fact */
1386 act
.sa_handler
= SIG_IGN
;
1390 * The kill() above made the signal pending for us, as well as
1391 * the rest of our process group, but we don't want it delivered
1392 * to us. It is blocked at the moment. Setting it to be ignored
1393 * will cause the pending signal to be discarded. If we did the
1394 * kill() after setting the signal to be ignored, it is unspecified
1395 * (by POSIX) whether the signal is immediately discarded or left
1396 * pending, and in fact Linux would leave it pending, and so it
1397 * would be delivered after the current signal handler exits,
1398 * leading to an infinite loop.
1400 sigaction(sig
, &act
, &oldact
);
1401 sigaction(sig
, &oldact
, NULL
);
1406 * hup - Catch SIGHUP signal.
1408 * Indicates that the physical layer has been disconnected.
1409 * We don't rely on this indication; if the user has sent this
1410 * signal, we just take the link down.
1416 /* can't log a message here, it can deadlock */
1419 /* Send the signal to the [dis]connector process(es) also */
1421 notify(sigreceived
, sig
);
1423 siglongjmp(sigjmp
, 1);
1428 * term - Catch SIGTERM signal and SIGINT signal (^C/del).
1430 * Indicates that we should initiate a graceful disconnect and exit.
1437 /* can't log a message here, it can deadlock */
1440 /* Send the signal to the [dis]connector process(es) also */
1442 notify(sigreceived
, sig
);
1444 siglongjmp(sigjmp
, 1);
1449 * chld - Catch SIGCHLD signal.
1450 * Sets a flag so we will call reap_kids in the mainline.
1458 siglongjmp(sigjmp
, 1);
1463 * toggle_debug - Catch SIGUSR1 signal.
1465 * Toggle debug flag.
1474 setlogmask(LOG_UPTO(LOG_DEBUG
));
1476 setlogmask(LOG_UPTO(LOG_WARNING
));
1482 * open_ccp - Catch SIGUSR2 signal.
1484 * Try to (re)negotiate compression.
1493 siglongjmp(sigjmp
, 1);
1498 * bad_signal - We've caught a fatal signal. Clean up state and exit.
1504 static int crashed
= 0;
1509 error("Fatal signal %d", sig
);
1511 kill_my_pg(SIGTERM
);
1512 notify(sigreceived
, sig
);
1517 * safe_fork - Create a child process. The child closes all the
1518 * file descriptors that we don't want to leak to a script.
1519 * The parent waits for the child to do this before returning.
1520 * This also arranges for the specified fds to be dup'd to
1521 * fds 0, 1, 2 in the child.
1524 safe_fork(int infd
, int outfd
, int errfd
)
1530 /* make sure fds 0, 1, 2 are occupied (probably not necessary) */
1531 while ((fd
= dup(fd_devnull
)) >= 0) {
1538 if (pipe(pipefd
) == -1)
1539 pipefd
[0] = pipefd
[1] = -1;
1542 error("fork failed: %m");
1548 /* this read() blocks until the close(pipefd[1]) below */
1549 complete_read(pipefd
[0], buf
, 1);
1554 /* Executing in the child */
1560 /* make sure infd, outfd and errfd won't get tromped on below */
1561 if (infd
== 1 || infd
== 2)
1563 if (outfd
== 0 || outfd
== 2)
1565 if (errfd
== 0 || errfd
== 1)
1568 /* dup the in, out, err fds to 0, 1, 2 */
1579 if (the_channel
->close
)
1580 (*the_channel
->close
)();
1582 close(devfd
); /* some plugins don't have a close function */
1592 notify(fork_notifier
, 0);
1594 /* this close unblocks the read() call above in the parent */
1601 * device_script - run a program to talk to the specified fds
1602 * (e.g. to run the connector or disconnector script).
1603 * stderr gets connected to the log fd or to the _PATH_CONNERRS file.
1606 device_script(program
, in
, out
, dont_wait
)
1618 errfd
= open(_PATH_CONNERRS
, O_WRONLY
| O_APPEND
| O_CREAT
, 0600);
1621 pid
= safe_fork(in
, out
, errfd
);
1623 if (pid
!= 0 && log_to_fd
< 0)
1628 error("Failed to create child process: %m");
1634 record_child(pid
, program
, NULL
, NULL
);
1637 while (waitpid(pid
, &status
, 0) < 0) {
1640 fatal("error waiting for (dis)connection process: %m");
1644 return (status
== 0 ? 0 : -1);
1647 /* here we are executing in the child */
1651 if (getuid() != uid
) {
1652 fprintf(stderr
, "pppd: setuid failed\n");
1655 execl("/bin/sh", "sh", "-c", program
, (char *)0);
1656 perror("pppd: could not exec /bin/sh");
1663 * run-program - execute a program with given arguments,
1664 * but don't wait for it.
1665 * If the program can't be executed, logs an error unless
1666 * must_exist is 0 and the program file doesn't exist.
1667 * Returns -1 if it couldn't fork, 0 if the file doesn't exist
1668 * or isn't an executable plain file, or the process ID of the child.
1669 * If done != NULL, (*done)(arg) will be called later (within
1670 * reap_kids) iff the return value is > 0.
1673 run_program(prog
, args
, must_exist
, done
, arg
)
1677 void (*done
) __P((void *));
1684 * First check if the file exists and is executable.
1685 * We don't use access() because that would use the
1686 * real user-id, which might not be root, and the script
1687 * might be accessible only to root.
1690 if (stat(prog
, &sbuf
) < 0 || !S_ISREG(sbuf
.st_mode
)
1691 || (sbuf
.st_mode
& (S_IXUSR
|S_IXGRP
|S_IXOTH
)) == 0) {
1692 if (must_exist
|| errno
!= ENOENT
)
1693 warn("Can't execute %s: %m", prog
);
1697 pid
= safe_fork(fd_devnull
, fd_devnull
, fd_devnull
);
1699 error("Failed to create child process for %s: %m", prog
);
1704 dbglog("Script %s started (pid %d)", prog
, pid
);
1705 record_child(pid
, prog
, done
, arg
);
1709 /* Leave the current location */
1710 (void) setsid(); /* No controlling tty. */
1711 (void) umask (S_IRWXG
|S_IRWXO
);
1712 (void) chdir ("/"); /* no current directory. */
1713 setuid(0); /* set real UID = root */
1717 /* Force the priority back to zero if pppd is running higher. */
1718 if (setpriority (PRIO_PROCESS
, 0, 0) < 0)
1719 warn("can't reset priority to 0: %m");
1722 /* run the program */
1723 execve(prog
, args
, script_env
);
1724 if (must_exist
|| errno
!= ENOENT
) {
1725 /* have to reopen the log, there's nowhere else
1726 for the message to go. */
1728 syslog(LOG_ERR
, "Can't execute %s: %m", prog
);
1736 * record_child - add a child process to the list for reap_kids
1740 record_child(pid
, prog
, done
, arg
)
1743 void (*done
) __P((void *));
1746 struct subprocess
*chp
;
1750 chp
= (struct subprocess
*) malloc(sizeof(struct subprocess
));
1752 warn("losing track of %s process", prog
);
1758 chp
->next
= children
;
1764 * childwait_end - we got fed up waiting for the child processes to
1765 * exit, send them all a SIGTERM.
1771 struct subprocess
*chp
;
1773 for (chp
= children
; chp
!= NULL
; chp
= chp
->next
) {
1775 dbglog("sending SIGTERM to process %d", chp
->pid
);
1776 kill(chp
->pid
, SIGTERM
);
1782 * reap_kids - get status from any dead child processes,
1783 * and log a message for abnormal terminations.
1789 struct subprocess
*chp
, **prevp
;
1791 if (n_children
== 0)
1793 while ((pid
= waitpid(-1, &status
, WNOHANG
)) != -1 && pid
!= 0) {
1794 for (prevp
= &children
; (chp
= *prevp
) != NULL
; prevp
= &chp
->next
) {
1795 if (chp
->pid
== pid
) {
1801 if (WIFSIGNALED(status
)) {
1802 warn("Child process %s (pid %d) terminated with signal %d",
1803 (chp
? chp
->prog
: "??"), pid
, WTERMSIG(status
));
1805 dbglog("Script %s finished (pid %d), status = 0x%x",
1806 (chp
? chp
->prog
: "??"), pid
,
1807 WIFEXITED(status
) ? WEXITSTATUS(status
) : status
);
1808 if (chp
&& chp
->done
)
1809 (*chp
->done
)(chp
->arg
);
1814 if (errno
== ECHILD
)
1817 error("Error waiting for child process: %m");
1823 * add_notifier - add a new function to be called when something happens.
1826 add_notifier(notif
, func
, arg
)
1827 struct notifier
**notif
;
1831 struct notifier
*np
;
1833 np
= malloc(sizeof(struct notifier
));
1835 novm("notifier struct");
1843 * remove_notifier - remove a function from the list of things to
1844 * be called when something happens.
1847 remove_notifier(notif
, func
, arg
)
1848 struct notifier
**notif
;
1852 struct notifier
*np
;
1854 for (; (np
= *notif
) != 0; notif
= &np
->next
) {
1855 if (np
->func
== func
&& np
->arg
== arg
) {
1864 * notify - call a set of functions registered with add_notifier.
1868 struct notifier
*notif
;
1871 struct notifier
*np
;
1873 while ((np
= notif
) != 0) {
1875 (*np
->func
)(np
->arg
, val
);
1880 * novm - log an error message saying we ran out of memory, and die.
1886 fatal("Virtual memory exhausted allocating %s\n", msg
);
1890 * script_setenv - set an environment variable value to be used
1891 * for scripts that we run (e.g. ip-up, auth-up, etc.)
1894 script_setenv(var
, value
, iskey
)
1898 size_t varl
= strlen(var
);
1899 size_t vl
= varl
+ strlen(value
) + 2;
1901 char *p
, *newstring
;
1903 newstring
= (char *) malloc(vl
+1);
1906 *newstring
++ = iskey
;
1907 slprintf(newstring
, vl
, "%s=%s", var
, value
);
1909 /* check if this variable is already set */
1910 if (script_env
!= 0) {
1911 for (i
= 0; (p
= script_env
[i
]) != 0; ++i
) {
1912 if (strncmp(p
, var
, varl
) == 0 && p
[varl
] == '=') {
1914 if (p
[-1] && pppdb
!= NULL
)
1918 script_env
[i
] = newstring
;
1920 if (iskey
&& pppdb
!= NULL
)
1921 add_db_key(newstring
);
1928 /* no space allocated for script env. ptrs. yet */
1930 script_env
= (char **) malloc(16 * sizeof(char *));
1931 if (script_env
== 0)
1936 /* reallocate script_env with more space if needed */
1937 if (i
+ 1 >= s_env_nalloc
) {
1939 char **newenv
= (char **) realloc((void *)script_env
,
1940 new_n
* sizeof(char *));
1943 script_env
= newenv
;
1944 s_env_nalloc
= new_n
;
1947 script_env
[i
] = newstring
;
1948 script_env
[i
+1] = 0;
1951 if (pppdb
!= NULL
) {
1953 add_db_key(newstring
);
1960 * script_unsetenv - remove a variable from the environment
1964 script_unsetenv(var
)
1967 int vl
= strlen(var
);
1971 if (script_env
== 0)
1973 for (i
= 0; (p
= script_env
[i
]) != 0; ++i
) {
1974 if (strncmp(p
, var
, vl
) == 0 && p
[vl
] == '=') {
1976 if (p
[-1] && pppdb
!= NULL
)
1980 while ((script_env
[i
] = script_env
[i
+1]) != 0)
1992 * Any arbitrary string used as a key for locking the database.
1993 * It doesn't matter what it is as long as all pppds use the same string.
1995 #define PPPD_LOCK_KEY "pppd lock"
1998 * lock_db - get an exclusive lock on the TDB database.
1999 * Used to ensure atomicity of various lookup/modify operations.
2006 key
.dptr
= PPPD_LOCK_KEY
;
2007 key
.dsize
= strlen(key
.dptr
);
2008 tdb_chainlock(pppdb
, key
);
2013 * unlock_db - remove the exclusive lock obtained by lock_db.
2020 key
.dptr
= PPPD_LOCK_KEY
;
2021 key
.dsize
= strlen(key
.dptr
);
2022 tdb_chainunlock(pppdb
, key
);
2028 * update_db_entry - update our entry in the database.
2037 if (script_env
== NULL
)
2040 for (i
= 0; (p
= script_env
[i
]) != 0; ++i
)
2041 vlen
+= strlen(p
) + 1;
2042 vbuf
= malloc(vlen
+ 1);
2044 novm("database entry");
2046 for (i
= 0; (p
= script_env
[i
]) != 0; ++i
)
2047 q
+= slprintf(q
, vbuf
+ vlen
- q
, "%s;", p
);
2050 key
.dsize
= strlen(db_key
);
2053 if (tdb_store(pppdb
, key
, dbuf
, TDB_REPLACE
))
2054 error("tdb_store failed: %s", tdb_error(pppdb
));
2062 * add_db_key - add a key that we can use to look up our database entry.
2070 key
.dptr
= (char *) str
;
2071 key
.dsize
= strlen(str
);
2073 dbuf
.dsize
= strlen(db_key
);
2074 if (tdb_store(pppdb
, key
, dbuf
, TDB_REPLACE
))
2075 error("tdb_store key failed: %s", tdb_error(pppdb
));
2079 * delete_db_key - delete a key for looking up our database entry.
2087 key
.dptr
= (char *) str
;
2088 key
.dsize
= strlen(str
);
2089 tdb_delete(pppdb
, key
);
2093 * cleanup_db - delete all the entries we put in the database.
2103 key
.dsize
= strlen(db_key
);
2104 tdb_delete(pppdb
, key
);
2105 for (i
= 0; (p
= script_env
[i
]) != 0; ++i
)
2109 #endif /* USE_TDB */