2 * Synchronous PPP/Cisco link level subroutines.
3 * Keepalive protocol implemented in both Cisco and PPP modes.
5 * Copyright (C) 1994-1996 Cronyx Engineering Ltd.
6 * Author: Serge Vakulenko, <vak@cronyx.ru>
8 * Heavily revamped to conform to RFC 1661.
9 * Copyright (C) 1997, 2001 Joerg Wunsch.
11 * This software is distributed with NO WARRANTIES, not even the implied
12 * warranties for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
14 * Authors grant any other persons or organisations permission to use
15 * or modify this software as long as this message is kept with the software,
16 * all derivative works or modified versions.
18 * From: Version 2.4, Thu Apr 30 17:17:21 MSD 1997
20 * $FreeBSD: src/sys/net/if_spppsubr.c,v 1.59.2.13 2002/07/03 15:44:41 joerg Exp $
21 * $DragonFly: src/sys/net/sppp/if_spppsubr.c,v 1.29 2006/12/26 11:01:07 swildner Exp $
24 #include <sys/param.h>
26 #if defined(__DragonFly__)
28 #include "opt_inet6.h"
34 # include "opt_inet.h"
35 # include "opt_inet6.h"
40 #include <sys/systm.h>
41 #include <sys/kernel.h>
42 #include <sys/module.h>
43 #include <sys/sockio.h>
44 #include <sys/socket.h>
45 #include <sys/syslog.h>
46 #if defined(__DragonFly__)
47 #include <sys/random.h>
48 #include <sys/thread2.h>
50 #include <sys/malloc.h>
53 #if defined (__OpenBSD__)
60 #include <net/ifq_var.h>
61 #include <net/netisr.h>
62 #include <net/if_types.h>
63 #include <net/route.h>
64 #include <netinet/in.h>
65 #include <netinet/in_systm.h>
66 #include <netinet/ip.h>
67 #include <net/slcompress.h>
69 #if defined (__NetBSD__) || defined (__OpenBSD__)
70 #include <machine/cpu.h> /* XXX for softnet */
73 #include <machine/stdarg.h>
75 #include <netinet/in.h>
76 #include <netinet/in_systm.h>
77 #include <netinet/in_var.h>
80 #include <netinet/ip.h>
81 #include <netinet/tcp.h>
84 #if defined (__DragonFly__) || defined (__OpenBSD__)
85 # include <netinet/if_ether.h>
87 # include <net/ethertypes.h>
91 #include <netproto/ipx/ipx.h>
92 #include <netproto/ipx/ipx_if.h>
97 #include <netns/ns_if.h>
102 #define IOCTL_CMD_T u_long
103 #define MAXALIVECNT 3 /* max. alive packets */
106 * Interface flags that can be set in an ifconfig command.
108 * Setting link0 will make the link passive, i.e. it will be marked
109 * as being administrative openable, but won't be opened to begin
110 * with. Incoming calls will be answered, or subsequent calls with
111 * -link1 will cause the administrative open of the LCP layer.
113 * Setting link1 will cause the link to auto-dial only as packets
116 * Setting IFF_DEBUG will syslog the option negotiation and state
117 * transitions at level kern.debug. Note: all logs consistently look
120 * <if-name><unit>: <proto-name> <additional info...>
122 * with <if-name><unit> being something like "bppp0", and <proto-name>
123 * being one of "lcp", "ipcp", "cisco", "chap", "pap", etc.
126 #define IFF_PASSIVE IFF_LINK0 /* wait passively for connection */
127 #define IFF_AUTO IFF_LINK1 /* auto-dial on output */
128 #define IFF_CISCO IFF_LINK2 /* auto-dial on output */
130 #define PPP_ALLSTATIONS 0xff /* All-Stations broadcast address */
131 #define PPP_UI 0x03 /* Unnumbered Information */
132 #define PPP_IP 0x0021 /* Internet Protocol */
133 #define PPP_ISO 0x0023 /* ISO OSI Protocol */
134 #define PPP_XNS 0x0025 /* Xerox NS Protocol */
135 #define PPP_IPX 0x002b /* Novell IPX Protocol */
136 #define PPP_VJ_COMP 0x002d /* VJ compressed TCP/IP */
137 #define PPP_VJ_UCOMP 0x002f /* VJ uncompressed TCP/IP */
138 #define PPP_IPV6 0x0057 /* Internet Protocol Version 6 */
139 #define PPP_LCP 0xc021 /* Link Control Protocol */
140 #define PPP_PAP 0xc023 /* Password Authentication Protocol */
141 #define PPP_CHAP 0xc223 /* Challenge-Handshake Auth Protocol */
142 #define PPP_IPCP 0x8021 /* Internet Protocol Control Protocol */
143 #define PPP_IPV6CP 0x8057 /* IPv6 Control Protocol */
145 #define CONF_REQ 1 /* PPP configure request */
146 #define CONF_ACK 2 /* PPP configure acknowledge */
147 #define CONF_NAK 3 /* PPP configure negative ack */
148 #define CONF_REJ 4 /* PPP configure reject */
149 #define TERM_REQ 5 /* PPP terminate request */
150 #define TERM_ACK 6 /* PPP terminate acknowledge */
151 #define CODE_REJ 7 /* PPP code reject */
152 #define PROTO_REJ 8 /* PPP protocol reject */
153 #define ECHO_REQ 9 /* PPP echo request */
154 #define ECHO_REPLY 10 /* PPP echo reply */
155 #define DISC_REQ 11 /* PPP discard request */
157 #define LCP_OPT_MRU 1 /* maximum receive unit */
158 #define LCP_OPT_ASYNC_MAP 2 /* async control character map */
159 #define LCP_OPT_AUTH_PROTO 3 /* authentication protocol */
160 #define LCP_OPT_QUAL_PROTO 4 /* quality protocol */
161 #define LCP_OPT_MAGIC 5 /* magic number */
162 #define LCP_OPT_RESERVED 6 /* reserved */
163 #define LCP_OPT_PROTO_COMP 7 /* protocol field compression */
164 #define LCP_OPT_ADDR_COMP 8 /* address/control field compression */
166 #define IPCP_OPT_ADDRESSES 1 /* both IP addresses; deprecated */
167 #define IPCP_OPT_COMPRESSION 2 /* IP compression protocol (VJ) */
168 #define IPCP_OPT_ADDRESS 3 /* local IP address */
170 #define IPV6CP_OPT_IFID 1 /* interface identifier */
171 #define IPV6CP_OPT_COMPRESSION 2 /* IPv6 compression protocol */
173 #define IPCP_COMP_VJ 0x2d /* Code for VJ compression */
175 #define PAP_REQ 1 /* PAP name/password request */
176 #define PAP_ACK 2 /* PAP acknowledge */
177 #define PAP_NAK 3 /* PAP fail */
179 #define CHAP_CHALLENGE 1 /* CHAP challenge request */
180 #define CHAP_RESPONSE 2 /* CHAP challenge response */
181 #define CHAP_SUCCESS 3 /* CHAP response ok */
182 #define CHAP_FAILURE 4 /* CHAP response failed */
184 #define CHAP_MD5 5 /* hash algorithm - MD5 */
186 #define CISCO_MULTICAST 0x8f /* Cisco multicast address */
187 #define CISCO_UNICAST 0x0f /* Cisco unicast address */
188 #define CISCO_KEEPALIVE 0x8035 /* Cisco keepalive protocol */
189 #define CISCO_ADDR_REQ 0 /* Cisco address request */
190 #define CISCO_ADDR_REPLY 1 /* Cisco address reply */
191 #define CISCO_KEEPALIVE_REQ 2 /* Cisco keepalive request */
193 /* states are named and numbered according to RFC 1661 */
194 #define STATE_INITIAL 0
195 #define STATE_STARTING 1
196 #define STATE_CLOSED 2
197 #define STATE_STOPPED 3
198 #define STATE_CLOSING 4
199 #define STATE_STOPPING 5
200 #define STATE_REQ_SENT 6
201 #define STATE_ACK_RCVD 7
202 #define STATE_ACK_SENT 8
203 #define STATE_OPENED 9
209 } __attribute__((__packed__
));
210 #define PPP_HEADER_LEN sizeof (struct ppp_header)
216 } __attribute__((__packed__
));
217 #define LCP_HEADER_LEN sizeof (struct lcp_header)
219 struct cisco_packet
{
226 } __attribute__((__packed__
));
227 #define CISCO_PACKET_LEN sizeof (struct cisco_packet)
230 * We follow the spelling and capitalization of RFC 1661 here, to make
231 * it easier comparing with the standard. Please refer to this RFC in
232 * case you can't make sense out of these abbreviation; it will also
233 * explain the semantics related to the various events and actions.
236 u_short proto
; /* PPP control protocol number */
237 u_char protoidx
; /* index into state table in struct sppp */
239 #define CP_LCP 0x01 /* this is the LCP */
240 #define CP_AUTH 0x02 /* this is an authentication protocol */
241 #define CP_NCP 0x04 /* this is a NCP */
242 #define CP_QUAL 0x08 /* this is a quality reporting protocol */
243 const char *name
; /* name of this control protocol */
245 void (*Up
)(struct sppp
*sp
);
246 void (*Down
)(struct sppp
*sp
);
247 void (*Open
)(struct sppp
*sp
);
248 void (*Close
)(struct sppp
*sp
);
249 void (*TO
)(void *sp
);
250 int (*RCR
)(struct sppp
*sp
, struct lcp_header
*h
, int len
);
251 void (*RCN_rej
)(struct sppp
*sp
, struct lcp_header
*h
, int len
);
252 void (*RCN_nak
)(struct sppp
*sp
, struct lcp_header
*h
, int len
);
254 void (*tlu
)(struct sppp
*sp
);
255 void (*tld
)(struct sppp
*sp
);
256 void (*tls
)(struct sppp
*sp
);
257 void (*tlf
)(struct sppp
*sp
);
258 void (*scr
)(struct sppp
*sp
);
261 static struct sppp
*spppq
;
262 #if defined(__DragonFly__)
263 static struct callout keepalive_timeout
;
266 #if defined(__FreeBSD__) && __FreeBSD__ >= 3 && !defined(__DragonFly__)
267 #define SPP_FMT "%s%d: "
268 #define SPP_ARGS(ifp) (ifp)->if_name, (ifp)->if_unit
270 #define SPP_FMT "%s: "
271 #define SPP_ARGS(ifp) (ifp)->if_xname
276 * The following disgusting hack gets around the problem that IP TOS
277 * can't be set yet. We want to put "interactive" traffic on a high
278 * priority queue. To decide if traffic is interactive, we check that
279 * a) it is TCP and b) one of its ports is telnet, rlogin or ftp control.
281 * XXX is this really still necessary? - joerg -
283 static u_short interactive_ports
[8] = {
287 #define INTERACTIVE(p) (interactive_ports[(p) & 7] == (p))
290 /* almost every function needs these */
292 struct ifnet *ifp = &sp->pp_if; \
293 int debug = ifp->if_flags & IFF_DEBUG
295 static int sppp_output(struct ifnet
*ifp
, struct mbuf
*m
,
296 struct sockaddr
*dst
, struct rtentry
*rt
);
298 static void sppp_cisco_send(struct sppp
*sp
, int type
, long par1
, long par2
);
299 static void sppp_cisco_input(struct sppp
*sp
, struct mbuf
*m
);
301 static void sppp_cp_input(const struct cp
*cp
, struct sppp
*sp
,
303 static void sppp_cp_send(struct sppp
*sp
, u_short proto
, u_char type
,
304 u_char ident
, u_short len
, void *data
);
305 /* static void sppp_cp_timeout(void *arg); */
306 static void sppp_cp_change_state(const struct cp
*cp
, struct sppp
*sp
,
308 static void sppp_auth_send(const struct cp
*cp
,
309 struct sppp
*sp
, unsigned int type
, unsigned int id
,
312 static void sppp_up_event(const struct cp
*cp
, struct sppp
*sp
);
313 static void sppp_down_event(const struct cp
*cp
, struct sppp
*sp
);
314 static void sppp_open_event(const struct cp
*cp
, struct sppp
*sp
);
315 static void sppp_close_event(const struct cp
*cp
, struct sppp
*sp
);
316 static void sppp_to_event(const struct cp
*cp
, struct sppp
*sp
);
318 static void sppp_null(struct sppp
*sp
);
320 static void sppp_lcp_init(struct sppp
*sp
);
321 static void sppp_lcp_up(struct sppp
*sp
);
322 static void sppp_lcp_down(struct sppp
*sp
);
323 static void sppp_lcp_open(struct sppp
*sp
);
324 static void sppp_lcp_close(struct sppp
*sp
);
325 static void sppp_lcp_TO(void *sp
);
326 static int sppp_lcp_RCR(struct sppp
*sp
, struct lcp_header
*h
, int len
);
327 static void sppp_lcp_RCN_rej(struct sppp
*sp
, struct lcp_header
*h
, int len
);
328 static void sppp_lcp_RCN_nak(struct sppp
*sp
, struct lcp_header
*h
, int len
);
329 static void sppp_lcp_tlu(struct sppp
*sp
);
330 static void sppp_lcp_tld(struct sppp
*sp
);
331 static void sppp_lcp_tls(struct sppp
*sp
);
332 static void sppp_lcp_tlf(struct sppp
*sp
);
333 static void sppp_lcp_scr(struct sppp
*sp
);
334 static void sppp_lcp_check_and_close(struct sppp
*sp
);
335 static int sppp_ncp_check(struct sppp
*sp
);
337 static void sppp_ipcp_init(struct sppp
*sp
);
338 static void sppp_ipcp_up(struct sppp
*sp
);
339 static void sppp_ipcp_down(struct sppp
*sp
);
340 static void sppp_ipcp_open(struct sppp
*sp
);
341 static void sppp_ipcp_close(struct sppp
*sp
);
342 static void sppp_ipcp_TO(void *sp
);
343 static int sppp_ipcp_RCR(struct sppp
*sp
, struct lcp_header
*h
, int len
);
344 static void sppp_ipcp_RCN_rej(struct sppp
*sp
, struct lcp_header
*h
, int len
);
345 static void sppp_ipcp_RCN_nak(struct sppp
*sp
, struct lcp_header
*h
, int len
);
346 static void sppp_ipcp_tlu(struct sppp
*sp
);
347 static void sppp_ipcp_tld(struct sppp
*sp
);
348 static void sppp_ipcp_tls(struct sppp
*sp
);
349 static void sppp_ipcp_tlf(struct sppp
*sp
);
350 static void sppp_ipcp_scr(struct sppp
*sp
);
352 static void sppp_ipv6cp_init(struct sppp
*sp
);
353 static void sppp_ipv6cp_up(struct sppp
*sp
);
354 static void sppp_ipv6cp_down(struct sppp
*sp
);
355 static void sppp_ipv6cp_open(struct sppp
*sp
);
356 static void sppp_ipv6cp_close(struct sppp
*sp
);
357 static void sppp_ipv6cp_TO(void *sp
);
358 static int sppp_ipv6cp_RCR(struct sppp
*sp
, struct lcp_header
*h
, int len
);
359 static void sppp_ipv6cp_RCN_rej(struct sppp
*sp
, struct lcp_header
*h
, int len
);
360 static void sppp_ipv6cp_RCN_nak(struct sppp
*sp
, struct lcp_header
*h
, int len
);
361 static void sppp_ipv6cp_tlu(struct sppp
*sp
);
362 static void sppp_ipv6cp_tld(struct sppp
*sp
);
363 static void sppp_ipv6cp_tls(struct sppp
*sp
);
364 static void sppp_ipv6cp_tlf(struct sppp
*sp
);
365 static void sppp_ipv6cp_scr(struct sppp
*sp
);
367 static void sppp_pap_input(struct sppp
*sp
, struct mbuf
*m
);
368 static void sppp_pap_init(struct sppp
*sp
);
369 static void sppp_pap_open(struct sppp
*sp
);
370 static void sppp_pap_close(struct sppp
*sp
);
371 static void sppp_pap_TO(void *sp
);
372 static void sppp_pap_my_TO(void *sp
);
373 static void sppp_pap_tlu(struct sppp
*sp
);
374 static void sppp_pap_tld(struct sppp
*sp
);
375 static void sppp_pap_scr(struct sppp
*sp
);
377 static void sppp_chap_input(struct sppp
*sp
, struct mbuf
*m
);
378 static void sppp_chap_init(struct sppp
*sp
);
379 static void sppp_chap_open(struct sppp
*sp
);
380 static void sppp_chap_close(struct sppp
*sp
);
381 static void sppp_chap_TO(void *sp
);
382 static void sppp_chap_tlu(struct sppp
*sp
);
383 static void sppp_chap_tld(struct sppp
*sp
);
384 static void sppp_chap_scr(struct sppp
*sp
);
386 static const char *sppp_auth_type_name(u_short proto
, u_char type
);
387 static const char *sppp_cp_type_name(u_char type
);
388 static const char *sppp_dotted_quad(u_long addr
);
389 static const char *sppp_ipcp_opt_name(u_char opt
);
391 static const char *sppp_ipv6cp_opt_name(u_char opt
);
393 static const char *sppp_lcp_opt_name(u_char opt
);
394 static const char *sppp_phase_name(enum ppp_phase phase
);
395 static const char *sppp_proto_name(u_short proto
);
396 static const char *sppp_state_name(int state
);
397 static int sppp_params(struct sppp
*sp
, u_long cmd
, void *data
);
398 static int sppp_strnlen(u_char
*p
, int max
);
399 static void sppp_get_ip_addrs(struct sppp
*sp
, u_long
*src
, u_long
*dst
,
401 static void sppp_keepalive(void *dummy
);
402 static void sppp_phase_network(struct sppp
*sp
);
403 static void sppp_print_bytes(const u_char
*p
, u_short len
);
404 static void sppp_print_string(const char *p
, u_short len
);
405 static void sppp_set_ip_addr(struct sppp
*sp
, u_long src
);
407 static void sppp_get_ip6_addrs(struct sppp
*sp
, struct in6_addr
*src
,
408 struct in6_addr
*dst
, struct in6_addr
*srcmask
);
409 #ifdef IPV6CP_MYIFID_DYN
410 static void sppp_set_ip6_addr(struct sppp
*sp
, const struct in6_addr
*src
);
411 static void sppp_gen_ip6_addr(struct sppp
*sp
, const struct in6_addr
*src
);
413 static void sppp_suggest_ip6_addr(struct sppp
*sp
, struct in6_addr
*src
);
416 /* our control protocol descriptors */
417 static const struct cp lcp
= {
418 PPP_LCP
, IDX_LCP
, CP_LCP
, "lcp",
419 sppp_lcp_up
, sppp_lcp_down
, sppp_lcp_open
, sppp_lcp_close
,
420 sppp_lcp_TO
, sppp_lcp_RCR
, sppp_lcp_RCN_rej
, sppp_lcp_RCN_nak
,
421 sppp_lcp_tlu
, sppp_lcp_tld
, sppp_lcp_tls
, sppp_lcp_tlf
,
425 static const struct cp ipcp
= {
426 PPP_IPCP
, IDX_IPCP
, CP_NCP
, "ipcp",
427 sppp_ipcp_up
, sppp_ipcp_down
, sppp_ipcp_open
, sppp_ipcp_close
,
428 sppp_ipcp_TO
, sppp_ipcp_RCR
, sppp_ipcp_RCN_rej
, sppp_ipcp_RCN_nak
,
429 sppp_ipcp_tlu
, sppp_ipcp_tld
, sppp_ipcp_tls
, sppp_ipcp_tlf
,
433 static const struct cp ipv6cp
= {
434 PPP_IPV6CP
, IDX_IPV6CP
,
435 #ifdef INET6 /*don't run IPv6CP if there's no IPv6 support*/
441 sppp_ipv6cp_up
, sppp_ipv6cp_down
, sppp_ipv6cp_open
, sppp_ipv6cp_close
,
442 sppp_ipv6cp_TO
, sppp_ipv6cp_RCR
, sppp_ipv6cp_RCN_rej
, sppp_ipv6cp_RCN_nak
,
443 sppp_ipv6cp_tlu
, sppp_ipv6cp_tld
, sppp_ipv6cp_tls
, sppp_ipv6cp_tlf
,
447 static const struct cp pap
= {
448 PPP_PAP
, IDX_PAP
, CP_AUTH
, "pap",
449 sppp_null
, sppp_null
, sppp_pap_open
, sppp_pap_close
,
450 sppp_pap_TO
, 0, 0, 0,
451 sppp_pap_tlu
, sppp_pap_tld
, sppp_null
, sppp_null
,
455 static const struct cp chap
= {
456 PPP_CHAP
, IDX_CHAP
, CP_AUTH
, "chap",
457 sppp_null
, sppp_null
, sppp_chap_open
, sppp_chap_close
,
458 sppp_chap_TO
, 0, 0, 0,
459 sppp_chap_tlu
, sppp_chap_tld
, sppp_null
, sppp_null
,
463 static const struct cp
*cps
[IDX_COUNT
] = {
465 &ipcp
, /* IDX_IPCP */
466 &ipv6cp
, /* IDX_IPV6CP */
468 &chap
, /* IDX_CHAP */
472 sppp_modevent(module_t mod
, int type
, void *unused
)
485 static moduledata_t spppmod
= {
490 MODULE_VERSION(sppp
, 1);
491 DECLARE_MODULE(sppp
, spppmod
, SI_SUB_DRIVERS
, SI_ORDER_ANY
);
494 * Exported functions, comprising our interface to the lower layer.
498 * Process the received packet.
501 sppp_input(struct ifnet
*ifp
, struct mbuf
*m
)
503 struct ppp_header
*h
;
505 struct sppp
*sp
= (struct sppp
*)ifp
;
507 int hlen
, vjlen
, do_account
= 0;
508 int debug
= ifp
->if_flags
& IFF_DEBUG
;
510 if (ifp
->if_flags
& IFF_UP
)
511 /* Count received bytes, add FCS and one flag */
512 ifp
->if_ibytes
+= m
->m_pkthdr
.len
+ 3;
514 if (m
->m_pkthdr
.len
<= PPP_HEADER_LEN
) {
515 /* Too small packet, drop it. */
518 SPP_FMT
"input packet is too small, %d bytes\n",
519 SPP_ARGS(ifp
), m
->m_pkthdr
.len
);
528 /* Get PPP header. */
529 h
= mtod (m
, struct ppp_header
*);
530 m_adj (m
, PPP_HEADER_LEN
);
532 switch (h
->address
) {
533 case PPP_ALLSTATIONS
:
534 if (h
->control
!= PPP_UI
)
536 if (sp
->pp_mode
== IFF_CISCO
) {
539 SPP_FMT
"PPP packet in Cisco mode "
540 "<addr=0x%x ctrl=0x%x proto=0x%x>\n",
542 h
->address
, h
->control
, ntohs(h
->protocol
));
545 switch (ntohs (h
->protocol
)) {
549 SPP_FMT
"rejecting protocol "
550 "<addr=0x%x ctrl=0x%x proto=0x%x>\n",
552 h
->address
, h
->control
, ntohs(h
->protocol
));
553 if (sp
->state
[IDX_LCP
] == STATE_OPENED
)
554 sppp_cp_send (sp
, PPP_LCP
, PROTO_REJ
,
555 ++sp
->pp_seq
[IDX_LCP
], m
->m_pkthdr
.len
+ 2,
560 sppp_cp_input(&lcp
, sp
, m
);
564 if (sp
->pp_phase
>= PHASE_AUTHENTICATE
)
565 sppp_pap_input(sp
, m
);
569 if (sp
->pp_phase
>= PHASE_AUTHENTICATE
)
570 sppp_chap_input(sp
, m
);
575 if (sp
->pp_phase
== PHASE_NETWORK
)
576 sppp_cp_input(&ipcp
, sp
, m
);
580 if (sp
->state
[IDX_IPCP
] == STATE_OPENED
) {
586 if (sp
->state
[IDX_IPCP
] == STATE_OPENED
) {
588 sl_uncompress_tcp_core(mtod(m
, u_char
*),
592 &iphdr
, &hlen
)) <= 0) {
595 SPP_FMT
"VJ uncompress failed on compressed packet\n",
601 * Trim the VJ header off the packet, and prepend
602 * the uncompressed IP header (which will usually
603 * end up in two chained mbufs since there's not
604 * enough leading space in the existing mbuf).
607 M_PREPEND(m
, hlen
, MB_DONTWAIT
);
610 bcopy(iphdr
, mtod(m
, u_char
*), hlen
);
617 if (sp
->state
[IDX_IPCP
] == STATE_OPENED
) {
618 if (sl_uncompress_tcp_core(mtod(m
, u_char
*),
620 TYPE_UNCOMPRESSED_TCP
,
622 &iphdr
, &hlen
) != 0) {
625 SPP_FMT
"VJ uncompress failed on uncompressed packet\n",
636 if (sp
->pp_phase
== PHASE_NETWORK
)
637 sppp_cp_input(&ipv6cp
, sp
, m
);
642 if (sp
->state
[IDX_IPV6CP
] == STATE_OPENED
) {
650 /* IPX IPXCP not implemented yet */
651 if (sp
->pp_phase
== PHASE_NETWORK
) {
659 /* XNS IDPCP not implemented yet */
660 if (sp
->pp_phase
== PHASE_NETWORK
) {
668 case CISCO_MULTICAST
:
670 /* Don't check the control field here (RFC 1547). */
671 if (sp
->pp_mode
!= IFF_CISCO
) {
674 SPP_FMT
"Cisco packet in PPP mode "
675 "<addr=0x%x ctrl=0x%x proto=0x%x>\n",
677 h
->address
, h
->control
, ntohs(h
->protocol
));
680 switch (ntohs (h
->protocol
)) {
684 case CISCO_KEEPALIVE
:
685 sppp_cisco_input ((struct sppp
*) ifp
, m
);
714 default: /* Invalid PPP packet. */
718 SPP_FMT
"invalid input packet "
719 "<addr=0x%x ctrl=0x%x proto=0x%x>\n",
721 h
->address
, h
->control
, ntohs(h
->protocol
));
725 if (! (ifp
->if_flags
& IFF_UP
) || isr
< 0)
730 netisr_dispatch(isr
, m
);
733 * Do only account for network packets, not for control
734 * packets. This is used by some subsystems to detect
737 sp
->pp_last_recv
= time_second
;
741 * Enqueue transmit packet.
744 sppp_output(struct ifnet
*ifp
, struct mbuf
*m
,
745 struct sockaddr
*dst
, struct rtentry
*rt
)
747 struct sppp
*sp
= (struct sppp
*) ifp
;
748 struct ppp_header
*h
;
749 struct ifqueue
*ifq
= NULL
;
751 int ipproto
= PPP_IP
;
752 int debug
= ifp
->if_flags
& IFF_DEBUG
;
753 struct altq_pktattr pktattr
;
757 if ((ifp
->if_flags
& IFF_UP
) == 0 ||
758 (ifp
->if_flags
& (IFF_RUNNING
| IFF_AUTO
)) == 0) {
767 if ((ifp
->if_flags
& (IFF_RUNNING
| IFF_AUTO
)) == IFF_AUTO
) {
772 * Hack to prevent the initialization-time generated
773 * IPv6 multicast packet to erroneously cause a
774 * dialout event in case IPv6 has been
775 * administratively disabled on that interface.
777 if (dst
->sa_family
== AF_INET6
&&
778 !(sp
->confflags
& CONF_ENABLE_IPV6
))
782 * Interface is not yet running, but auto-dial. Need
783 * to start LCP for it.
785 ifp
->if_flags
|= IFF_RUNNING
;
792 * if the queueing discipline needs packet classification,
793 * do it before prepending link headers.
795 ifq_classify(&ifp
->if_snd
, m
, dst
->sa_family
, &pktattr
);
798 if (dst
->sa_family
== AF_INET
) {
799 /* XXX Check mbuf length here? */
800 struct ip
*ip
= mtod (m
, struct ip
*);
801 struct tcphdr
*tcp
= (struct tcphdr
*) ((long*)ip
+ ip
->ip_hl
);
804 * When using dynamic local IP address assignment by using
805 * 0.0.0.0 as a local address, the first TCP session will
806 * not connect because the local TCP checksum is computed
807 * using 0.0.0.0 which will later become our real IP address
808 * so the TCP checksum computed at the remote end will
809 * become invalid. So we
810 * - don't let packets with src ip addr 0 thru
811 * - we flag TCP packets with src ip 0 as an error
814 if(ip
->ip_src
.s_addr
== INADDR_ANY
) /* -hm */
818 if(ip
->ip_p
== IPPROTO_TCP
)
819 return(EADDRNOTAVAIL
);
825 * Put low delay, telnet, rlogin and ftp control packets
826 * in front of the queue.
828 if (IF_QFULL (&sp
->pp_fastq
))
830 else if (ip
->ip_tos
& IPTOS_LOWDELAY
)
832 else if (m
->m_len
< sizeof *ip
+ sizeof *tcp
)
834 else if (ip
->ip_p
!= IPPROTO_TCP
)
836 else if (INTERACTIVE (ntohs (tcp
->th_sport
)))
838 else if (INTERACTIVE (ntohs (tcp
->th_dport
)))
842 * Do IP Header compression
844 if (sp
->pp_mode
!= IFF_CISCO
&& (sp
->ipcp
.flags
& IPCP_VJ
) &&
845 ip
->ip_p
== IPPROTO_TCP
)
846 switch (sl_compress_tcp(m
, ip
, sp
->pp_comp
,
847 sp
->ipcp
.compress_cid
)) {
848 case TYPE_COMPRESSED_TCP
:
849 ipproto
= PPP_VJ_COMP
;
851 case TYPE_UNCOMPRESSED_TCP
:
852 ipproto
= PPP_VJ_UCOMP
;
866 if (dst
->sa_family
== AF_INET6
) {
867 /* XXX do something tricky here? */
872 * Prepend general data packet PPP header. For now, IP only.
874 M_PREPEND (m
, PPP_HEADER_LEN
, MB_DONTWAIT
);
877 log(LOG_DEBUG
, SPP_FMT
"no memory for transmit header\n",
884 * May want to check size of packet
885 * (albeit due to the implementation it's always enough)
887 h
= mtod (m
, struct ppp_header
*);
888 if (sp
->pp_mode
== IFF_CISCO
) {
889 h
->address
= CISCO_UNICAST
; /* unicast address */
892 h
->address
= PPP_ALLSTATIONS
; /* broadcast address */
893 h
->control
= PPP_UI
; /* Unnumbered Info */
896 switch (dst
->sa_family
) {
898 case AF_INET
: /* Internet Protocol */
899 if (sp
->pp_mode
== IFF_CISCO
)
900 h
->protocol
= htons (ETHERTYPE_IP
);
903 * Don't choke with an ENETDOWN early. It's
904 * possible that we just started dialing out,
905 * so don't drop the packet immediately. If
906 * we notice that we run out of buffer space
907 * below, we will however remember that we are
908 * not ready to carry IP packets, and return
909 * ENETDOWN, as opposed to ENOBUFS.
911 h
->protocol
= htons(ipproto
);
912 if (sp
->state
[IDX_IPCP
] != STATE_OPENED
)
918 case AF_INET6
: /* Internet Protocol */
919 if (sp
->pp_mode
== IFF_CISCO
)
920 h
->protocol
= htons (ETHERTYPE_IPV6
);
923 * Don't choke with an ENETDOWN early. It's
924 * possible that we just started dialing out,
925 * so don't drop the packet immediately. If
926 * we notice that we run out of buffer space
927 * below, we will however remember that we are
928 * not ready to carry IP packets, and return
929 * ENETDOWN, as opposed to ENOBUFS.
931 h
->protocol
= htons(PPP_IPV6
);
932 if (sp
->state
[IDX_IPV6CP
] != STATE_OPENED
)
938 case AF_NS
: /* Xerox NS Protocol */
939 h
->protocol
= htons (sp
->pp_mode
== IFF_CISCO
?
940 ETHERTYPE_NS
: PPP_XNS
);
944 case AF_IPX
: /* Novell IPX Protocol */
945 h
->protocol
= htons (sp
->pp_mode
== IFF_CISCO
?
946 ETHERTYPE_IPX
: PPP_IPX
);
953 return (EAFNOSUPPORT
);
957 * Queue message on interface, and start output if interface
971 lwkt_serialize_enter(ifp
->if_serializer
);
972 rv
= ifq_enqueue(&ifp
->if_snd
, m
, &pktattr
);
973 lwkt_serialize_exit(ifp
->if_serializer
);
980 if (! (ifp
->if_flags
& IFF_OACTIVE
))
981 (*ifp
->if_start
) (ifp
);
984 * Count output packets and bytes.
985 * The packet length includes header, FCS and 1 flag,
986 * according to RFC 1333.
988 ifp
->if_obytes
+= m
->m_pkthdr
.len
+ 3;
991 * Unlike in sppp_input(), we can always bump the timestamp
992 * here since sppp_output() is only called on behalf of
993 * network-layer traffic; control-layer traffic is handled
996 sp
->pp_last_sent
= time_second
;
1003 sppp_attach(struct ifnet
*ifp
)
1005 struct sppp
*sp
= (struct sppp
*) ifp
;
1007 /* Initialize keepalive handler. */
1009 callout_reset(&keepalive_timeout
, hz
* 10,
1010 sppp_keepalive
, NULL
);
1012 /* Insert new entry into the keepalive list. */
1013 sp
->pp_next
= spppq
;
1016 sp
->pp_if
.if_mtu
= PP_MTU
;
1017 sp
->pp_if
.if_flags
= IFF_POINTOPOINT
| IFF_MULTICAST
;
1018 sp
->pp_if
.if_type
= IFT_PPP
;
1019 sp
->pp_if
.if_output
= sppp_output
;
1021 sp
->pp_flags
= PP_KEEPALIVE
;
1023 sp
->pp_if
.if_snd
.ifq_maxlen
= 32;
1024 sp
->pp_fastq
.ifq_maxlen
= 32;
1025 sp
->pp_cpq
.ifq_maxlen
= 20;
1027 sp
->pp_alivecnt
= 0;
1028 bzero(&sp
->pp_seq
[0], sizeof(sp
->pp_seq
));
1029 bzero(&sp
->pp_rseq
[0], sizeof(sp
->pp_rseq
));
1030 sp
->pp_phase
= PHASE_DEAD
;
1032 sp
->pp_down
= lcp
.Down
;
1033 sp
->pp_last_recv
= sp
->pp_last_sent
= time_second
;
1036 sp
->confflags
|= CONF_ENABLE_VJ
;
1039 sp
->confflags
|= CONF_ENABLE_IPV6
;
1041 sp
->pp_comp
= kmalloc(sizeof(struct slcompress
), M_TEMP
, M_WAITOK
);
1042 sl_compress_init(sp
->pp_comp
, -1);
1045 sppp_ipv6cp_init(sp
);
1051 sppp_detach(struct ifnet
*ifp
)
1053 struct sppp
**q
, *p
, *sp
= (struct sppp
*) ifp
;
1056 /* Remove the entry from the keepalive list. */
1057 for (q
= &spppq
; (p
= *q
); q
= &p
->pp_next
)
1063 /* Stop keepalive handler. */
1065 callout_stop(&keepalive_timeout
);
1067 for (i
= 0; i
< IDX_COUNT
; i
++)
1068 callout_stop(&sp
->timeout
[i
]);
1069 callout_stop(&sp
->pap_my_to
);
1073 * Flush the interface output queue.
1076 sppp_flush(struct ifnet
*ifp
)
1078 struct sppp
*sp
= (struct sppp
*) ifp
;
1080 ifq_purge(&sp
->pp_if
.if_snd
);
1081 IF_DRAIN(&sp
->pp_fastq
);
1082 IF_DRAIN(&sp
->pp_cpq
);
1086 * Check if the output queue is empty.
1089 sppp_isempty(struct ifnet
*ifp
)
1091 struct sppp
*sp
= (struct sppp
*) ifp
;
1095 empty
= IF_QEMPTY(&sp
->pp_fastq
) && IF_QEMPTY(&sp
->pp_cpq
) &&
1096 ifq_is_empty(&sp
->pp_if
.if_snd
);
1102 * Get next packet to send.
1105 sppp_dequeue(struct ifnet
*ifp
)
1107 struct sppp
*sp
= (struct sppp
*) ifp
;
1113 * Process only the control protocol queue until we have at
1114 * least one NCP open.
1116 * Do always serve all three queues in Cisco mode.
1118 IF_DEQUEUE(&sp
->pp_cpq
, m
);
1120 (sppp_ncp_check(sp
) || sp
->pp_mode
== IFF_CISCO
)) {
1121 IF_DEQUEUE(&sp
->pp_fastq
, m
);
1123 m
= ifq_dequeue(&sp
->pp_if
.if_snd
, NULL
);
1131 * Pick the next packet, do not remove it from the queue.
1134 sppp_pick(struct ifnet
*ifp
)
1136 struct sppp
*sp
= (struct sppp
*)ifp
;
1141 m
= sp
->pp_cpq
.ifq_head
;
1143 (sp
->pp_phase
== PHASE_NETWORK
|| sp
->pp_mode
== IFF_CISCO
)) {
1144 if ((m
= sp
->pp_fastq
.ifq_head
) == NULL
)
1145 m
= ifq_poll(&sp
->pp_if
.if_snd
);
1153 * Process an ioctl request. Called on low priority level.
1156 sppp_ioctl(struct ifnet
*ifp
, IOCTL_CMD_T cmd
, void *data
)
1158 struct ifreq
*ifr
= (struct ifreq
*) data
;
1159 struct sppp
*sp
= (struct sppp
*) ifp
;
1160 int rv
, going_up
, going_down
, newmode
;
1167 case SIOCSIFDSTADDR
:
1171 /* set the interface "up" when assigning an IP address */
1172 ifp
->if_flags
|= IFF_UP
;
1173 /* fall through... */
1176 going_up
= ifp
->if_flags
& IFF_UP
&&
1177 (ifp
->if_flags
& IFF_RUNNING
) == 0;
1178 going_down
= (ifp
->if_flags
& IFF_UP
) == 0 &&
1179 ifp
->if_flags
& IFF_RUNNING
;
1181 newmode
= ifp
->if_flags
& IFF_PASSIVE
;
1183 newmode
= ifp
->if_flags
& IFF_AUTO
;
1185 newmode
= ifp
->if_flags
& IFF_CISCO
;
1186 ifp
->if_flags
&= ~(IFF_PASSIVE
| IFF_AUTO
| IFF_CISCO
);
1187 ifp
->if_flags
|= newmode
;
1189 if (newmode
!= sp
->pp_mode
) {
1192 going_up
= ifp
->if_flags
& IFF_RUNNING
;
1196 if (sp
->pp_mode
!= IFF_CISCO
)
1198 else if (sp
->pp_tlf
)
1201 ifp
->if_flags
&= ~IFF_RUNNING
;
1202 sp
->pp_mode
= newmode
;
1206 if (sp
->pp_mode
!= IFF_CISCO
)
1208 sp
->pp_mode
= newmode
;
1209 if (sp
->pp_mode
== 0) {
1210 ifp
->if_flags
|= IFF_RUNNING
;
1213 if (sp
->pp_mode
== IFF_CISCO
) {
1216 ifp
->if_flags
|= IFF_RUNNING
;
1224 #define ifr_mtu ifr_metric
1227 if (ifr
->ifr_mtu
< 128 || ifr
->ifr_mtu
> sp
->lcp
.their_mru
)
1229 ifp
->if_mtu
= ifr
->ifr_mtu
;
1234 if (*(short*)data
< 128 || *(short*)data
> sp
->lcp
.their_mru
)
1236 ifp
->if_mtu
= *(short*)data
;
1241 ifr
->ifr_mtu
= ifp
->if_mtu
;
1246 *(short*)data
= ifp
->if_mtu
;
1253 case SIOCGIFGENERIC
:
1254 case SIOCSIFGENERIC
:
1255 rv
= sppp_params(sp
, cmd
, data
);
1267 * Cisco framing implementation.
1271 * Handle incoming Cisco keepalive protocol packets.
1274 sppp_cisco_input(struct sppp
*sp
, struct mbuf
*m
)
1277 struct cisco_packet
*h
;
1280 if (m
->m_pkthdr
.len
< CISCO_PACKET_LEN
) {
1283 SPP_FMT
"cisco invalid packet length: %d bytes\n",
1284 SPP_ARGS(ifp
), m
->m_pkthdr
.len
);
1287 h
= mtod (m
, struct cisco_packet
*);
1290 SPP_FMT
"cisco input: %d bytes "
1291 "<0x%lx 0x%lx 0x%lx 0x%x 0x%x-0x%x>\n",
1292 SPP_ARGS(ifp
), m
->m_pkthdr
.len
,
1293 (u_long
)ntohl (h
->type
), (u_long
)h
->par1
, (u_long
)h
->par2
, (u_int
)h
->rel
,
1294 (u_int
)h
->time0
, (u_int
)h
->time1
);
1295 switch (ntohl (h
->type
)) {
1298 log(-1, SPP_FMT
"cisco unknown packet type: 0x%lx\n",
1299 SPP_ARGS(ifp
), (u_long
)ntohl (h
->type
));
1301 case CISCO_ADDR_REPLY
:
1302 /* Reply on address request, ignore */
1304 case CISCO_KEEPALIVE_REQ
:
1305 sp
->pp_alivecnt
= 0;
1306 sp
->pp_rseq
[IDX_LCP
] = ntohl (h
->par1
);
1307 if (sp
->pp_seq
[IDX_LCP
] == sp
->pp_rseq
[IDX_LCP
]) {
1308 /* Local and remote sequence numbers are equal.
1309 * Probably, the line is in loopback mode. */
1310 if (sp
->pp_loopcnt
>= MAXALIVECNT
) {
1311 kprintf (SPP_FMT
"loopback\n",
1314 if (ifp
->if_flags
& IFF_UP
) {
1316 IF_DRAIN(&sp
->pp_cpq
);
1321 /* Generate new local sequence number */
1322 #if defined(__DragonFly__)
1323 sp
->pp_seq
[IDX_LCP
] = krandom();
1325 sp
->pp_seq
[IDX_LCP
] ^= time
.tv_sec
^ time
.tv_usec
;
1330 if (! (ifp
->if_flags
& IFF_UP
) &&
1331 (ifp
->if_flags
& IFF_RUNNING
)) {
1333 kprintf (SPP_FMT
"up\n", SPP_ARGS(ifp
));
1336 case CISCO_ADDR_REQ
:
1337 sppp_get_ip_addrs(sp
, &me
, 0, &mymask
);
1339 sppp_cisco_send(sp
, CISCO_ADDR_REPLY
, me
, mymask
);
1345 * Send Cisco keepalive packet.
1348 sppp_cisco_send(struct sppp
*sp
, int type
, long par1
, long par2
)
1351 struct ppp_header
*h
;
1352 struct cisco_packet
*ch
;
1354 #if defined(__DragonFly__)
1357 u_long t
= (time
.tv_sec
- boottime
.tv_sec
) * 1000;
1360 #if defined(__DragonFly__)
1361 getmicrouptime(&tv
);
1364 MGETHDR (m
, MB_DONTWAIT
, MT_DATA
);
1367 m
->m_pkthdr
.len
= m
->m_len
= PPP_HEADER_LEN
+ CISCO_PACKET_LEN
;
1368 m
->m_pkthdr
.rcvif
= 0;
1370 h
= mtod (m
, struct ppp_header
*);
1371 h
->address
= CISCO_MULTICAST
;
1373 h
->protocol
= htons (CISCO_KEEPALIVE
);
1375 ch
= (struct cisco_packet
*) (h
+ 1);
1376 ch
->type
= htonl (type
);
1377 ch
->par1
= htonl (par1
);
1378 ch
->par2
= htonl (par2
);
1381 #if defined(__DragonFly__)
1382 ch
->time0
= htons ((u_short
) (tv
.tv_sec
>> 16));
1383 ch
->time1
= htons ((u_short
) tv
.tv_sec
);
1385 ch
->time0
= htons ((u_short
) (t
>> 16));
1386 ch
->time1
= htons ((u_short
) t
);
1391 SPP_FMT
"cisco output: <0x%lx 0x%lx 0x%lx 0x%x 0x%x-0x%x>\n",
1392 SPP_ARGS(ifp
), (u_long
)ntohl (ch
->type
), (u_long
)ch
->par1
,
1393 (u_long
)ch
->par2
, (u_int
)ch
->rel
, (u_int
)ch
->time0
, (u_int
)ch
->time1
);
1395 if (IF_QFULL (&sp
->pp_cpq
)) {
1396 IF_DROP (&sp
->pp_fastq
);
1397 IF_DROP (&ifp
->if_snd
);
1400 IF_ENQUEUE (&sp
->pp_cpq
, m
);
1401 if (! (ifp
->if_flags
& IFF_OACTIVE
))
1402 (*ifp
->if_start
) (ifp
);
1403 ifp
->if_obytes
+= m
->m_pkthdr
.len
+ 3;
1407 * PPP protocol implementation.
1411 * Send PPP control protocol packet.
1414 sppp_cp_send(struct sppp
*sp
, u_short proto
, u_char type
,
1415 u_char ident
, u_short len
, void *data
)
1418 struct ppp_header
*h
;
1419 struct lcp_header
*lh
;
1422 if (len
> MHLEN
- PPP_HEADER_LEN
- LCP_HEADER_LEN
)
1423 len
= MHLEN
- PPP_HEADER_LEN
- LCP_HEADER_LEN
;
1424 MGETHDR (m
, MB_DONTWAIT
, MT_DATA
);
1427 m
->m_pkthdr
.len
= m
->m_len
= PPP_HEADER_LEN
+ LCP_HEADER_LEN
+ len
;
1428 m
->m_pkthdr
.rcvif
= 0;
1430 h
= mtod (m
, struct ppp_header
*);
1431 h
->address
= PPP_ALLSTATIONS
; /* broadcast address */
1432 h
->control
= PPP_UI
; /* Unnumbered Info */
1433 h
->protocol
= htons (proto
); /* Link Control Protocol */
1435 lh
= (struct lcp_header
*) (h
+ 1);
1438 lh
->len
= htons (LCP_HEADER_LEN
+ len
);
1440 bcopy (data
, lh
+1, len
);
1443 log(LOG_DEBUG
, SPP_FMT
"%s output <%s id=0x%x len=%d",
1445 sppp_proto_name(proto
),
1446 sppp_cp_type_name (lh
->type
), lh
->ident
,
1448 sppp_print_bytes ((u_char
*) (lh
+1), len
);
1451 if (IF_QFULL (&sp
->pp_cpq
)) {
1452 IF_DROP (&sp
->pp_fastq
);
1453 IF_DROP (&ifp
->if_snd
);
1457 IF_ENQUEUE (&sp
->pp_cpq
, m
);
1458 if (! (ifp
->if_flags
& IFF_OACTIVE
))
1459 (*ifp
->if_start
) (ifp
);
1460 ifp
->if_obytes
+= m
->m_pkthdr
.len
+ 3;
1464 * Handle incoming PPP control protocol packets.
1467 sppp_cp_input(const struct cp
*cp
, struct sppp
*sp
, struct mbuf
*m
)
1470 struct lcp_header
*h
;
1471 int printlen
, len
= m
->m_pkthdr
.len
;
1478 SPP_FMT
"%s invalid packet length: %d bytes\n",
1479 SPP_ARGS(ifp
), cp
->name
, len
);
1482 h
= mtod (m
, struct lcp_header
*);
1484 printlen
= ntohs(h
->len
);
1486 SPP_FMT
"%s input(%s): <%s id=0x%x len=%d",
1487 SPP_ARGS(ifp
), cp
->name
,
1488 sppp_state_name(sp
->state
[cp
->protoidx
]),
1489 sppp_cp_type_name (h
->type
), h
->ident
, printlen
);
1493 sppp_print_bytes ((u_char
*) (h
+1), printlen
- 4);
1496 if (len
> ntohs (h
->len
))
1497 len
= ntohs (h
->len
);
1498 p
= (u_char
*)(h
+ 1);
1503 log(-1, SPP_FMT
"%s invalid conf-req length %d\n",
1504 SPP_ARGS(ifp
), cp
->name
,
1509 /* handle states where RCR doesn't get a SCA/SCN */
1510 switch (sp
->state
[cp
->protoidx
]) {
1512 case STATE_STOPPING
:
1515 sppp_cp_send(sp
, cp
->proto
, TERM_ACK
, h
->ident
,
1519 rv
= (cp
->RCR
)(sp
, h
, len
);
1521 /* fatal error, shut down */
1526 switch (sp
->state
[cp
->protoidx
]) {
1530 /* fall through... */
1531 case STATE_ACK_SENT
:
1532 case STATE_REQ_SENT
:
1534 * sppp_cp_change_state() have the side effect of
1535 * restarting the timeouts. We want to avoid that
1536 * if the state don't change, otherwise we won't
1537 * ever timeout and resend a configuration request
1540 if (sp
->state
[cp
->protoidx
] == (rv
? STATE_ACK_SENT
:
1543 sppp_cp_change_state(cp
, sp
, rv
?
1544 STATE_ACK_SENT
: STATE_REQ_SENT
);
1547 sp
->rst_counter
[cp
->protoidx
] = sp
->lcp
.max_configure
;
1549 sppp_cp_change_state(cp
, sp
, rv
?
1550 STATE_ACK_SENT
: STATE_REQ_SENT
);
1552 case STATE_ACK_RCVD
:
1554 sppp_cp_change_state(cp
, sp
, STATE_OPENED
);
1556 log(LOG_DEBUG
, SPP_FMT
"%s tlu\n",
1561 sppp_cp_change_state(cp
, sp
, STATE_ACK_RCVD
);
1564 kprintf(SPP_FMT
"%s illegal %s in state %s\n",
1565 SPP_ARGS(ifp
), cp
->name
,
1566 sppp_cp_type_name(h
->type
),
1567 sppp_state_name(sp
->state
[cp
->protoidx
]));
1572 if (h
->ident
!= sp
->confid
[cp
->protoidx
]) {
1574 log(-1, SPP_FMT
"%s id mismatch 0x%x != 0x%x\n",
1575 SPP_ARGS(ifp
), cp
->name
,
1576 h
->ident
, sp
->confid
[cp
->protoidx
]);
1580 switch (sp
->state
[cp
->protoidx
]) {
1583 sppp_cp_send(sp
, cp
->proto
, TERM_ACK
, h
->ident
, 0, 0);
1586 case STATE_STOPPING
:
1588 case STATE_REQ_SENT
:
1589 sp
->rst_counter
[cp
->protoidx
] = sp
->lcp
.max_configure
;
1590 sppp_cp_change_state(cp
, sp
, STATE_ACK_RCVD
);
1595 case STATE_ACK_RCVD
:
1597 sppp_cp_change_state(cp
, sp
, STATE_REQ_SENT
);
1599 case STATE_ACK_SENT
:
1600 sp
->rst_counter
[cp
->protoidx
] = sp
->lcp
.max_configure
;
1601 sppp_cp_change_state(cp
, sp
, STATE_OPENED
);
1603 log(LOG_DEBUG
, SPP_FMT
"%s tlu\n",
1604 SPP_ARGS(ifp
), cp
->name
);
1608 kprintf(SPP_FMT
"%s illegal %s in state %s\n",
1609 SPP_ARGS(ifp
), cp
->name
,
1610 sppp_cp_type_name(h
->type
),
1611 sppp_state_name(sp
->state
[cp
->protoidx
]));
1617 if (h
->ident
!= sp
->confid
[cp
->protoidx
]) {
1619 log(-1, SPP_FMT
"%s id mismatch 0x%x != 0x%x\n",
1620 SPP_ARGS(ifp
), cp
->name
,
1621 h
->ident
, sp
->confid
[cp
->protoidx
]);
1625 if (h
->type
== CONF_NAK
)
1626 (cp
->RCN_nak
)(sp
, h
, len
);
1628 (cp
->RCN_rej
)(sp
, h
, len
);
1630 switch (sp
->state
[cp
->protoidx
]) {
1633 sppp_cp_send(sp
, cp
->proto
, TERM_ACK
, h
->ident
, 0, 0);
1635 case STATE_REQ_SENT
:
1636 case STATE_ACK_SENT
:
1637 sp
->rst_counter
[cp
->protoidx
] = sp
->lcp
.max_configure
;
1639 * Slow things down a bit if we think we might be
1640 * in loopback. Depend on the timeout to send the
1641 * next configuration request.
1650 case STATE_ACK_RCVD
:
1651 sppp_cp_change_state(cp
, sp
, STATE_REQ_SENT
);
1655 case STATE_STOPPING
:
1658 kprintf(SPP_FMT
"%s illegal %s in state %s\n",
1659 SPP_ARGS(ifp
), cp
->name
,
1660 sppp_cp_type_name(h
->type
),
1661 sppp_state_name(sp
->state
[cp
->protoidx
]));
1667 switch (sp
->state
[cp
->protoidx
]) {
1668 case STATE_ACK_RCVD
:
1669 case STATE_ACK_SENT
:
1670 sppp_cp_change_state(cp
, sp
, STATE_REQ_SENT
);
1675 case STATE_STOPPING
:
1676 case STATE_REQ_SENT
:
1678 /* Send Terminate-Ack packet. */
1680 log(LOG_DEBUG
, SPP_FMT
"%s send terminate-ack\n",
1681 SPP_ARGS(ifp
), cp
->name
);
1682 sppp_cp_send(sp
, cp
->proto
, TERM_ACK
, h
->ident
, 0, 0);
1686 sp
->rst_counter
[cp
->protoidx
] = 0;
1687 sppp_cp_change_state(cp
, sp
, STATE_STOPPING
);
1691 kprintf(SPP_FMT
"%s illegal %s in state %s\n",
1692 SPP_ARGS(ifp
), cp
->name
,
1693 sppp_cp_type_name(h
->type
),
1694 sppp_state_name(sp
->state
[cp
->protoidx
]));
1699 switch (sp
->state
[cp
->protoidx
]) {
1702 case STATE_REQ_SENT
:
1703 case STATE_ACK_SENT
:
1706 sppp_cp_change_state(cp
, sp
, STATE_CLOSED
);
1709 case STATE_STOPPING
:
1710 sppp_cp_change_state(cp
, sp
, STATE_STOPPED
);
1713 case STATE_ACK_RCVD
:
1714 sppp_cp_change_state(cp
, sp
, STATE_REQ_SENT
);
1719 sppp_cp_change_state(cp
, sp
, STATE_ACK_RCVD
);
1722 kprintf(SPP_FMT
"%s illegal %s in state %s\n",
1723 SPP_ARGS(ifp
), cp
->name
,
1724 sppp_cp_type_name(h
->type
),
1725 sppp_state_name(sp
->state
[cp
->protoidx
]));
1730 /* XXX catastrophic rejects (RXJ-) aren't handled yet. */
1732 SPP_FMT
"%s: ignoring RXJ (%s) for proto 0x%x, "
1733 "danger will robinson\n",
1734 SPP_ARGS(ifp
), cp
->name
,
1735 sppp_cp_type_name(h
->type
), ntohs(*((u_short
*)p
)));
1736 switch (sp
->state
[cp
->protoidx
]) {
1739 case STATE_REQ_SENT
:
1740 case STATE_ACK_SENT
:
1742 case STATE_STOPPING
:
1745 case STATE_ACK_RCVD
:
1746 sppp_cp_change_state(cp
, sp
, STATE_REQ_SENT
);
1749 kprintf(SPP_FMT
"%s illegal %s in state %s\n",
1750 SPP_ARGS(ifp
), cp
->name
,
1751 sppp_cp_type_name(h
->type
),
1752 sppp_state_name(sp
->state
[cp
->protoidx
]));
1759 const struct cp
*upper
;
1765 proto
= ntohs(*((u_int16_t
*)p
));
1766 for (i
= 0; i
< IDX_COUNT
; i
++) {
1767 if (cps
[i
]->proto
== proto
) {
1775 if (catastrophic
|| debug
)
1776 log(catastrophic
? LOG_INFO
: LOG_DEBUG
,
1777 SPP_FMT
"%s: RXJ%c (%s) for proto 0x%x (%s/%s)\n",
1778 SPP_ARGS(ifp
), cp
->name
, catastrophic
? '-' : '+',
1779 sppp_cp_type_name(h
->type
), proto
,
1780 upper
? upper
->name
: "unknown",
1781 upper
? sppp_state_name(sp
->state
[upper
->protoidx
]) : "?");
1784 * if we got RXJ+ against conf-req, the peer does not implement
1785 * this particular protocol type. terminate the protocol.
1787 if (upper
&& !catastrophic
) {
1788 if (sp
->state
[upper
->protoidx
] == STATE_REQ_SENT
) {
1794 /* XXX catastrophic rejects (RXJ-) aren't handled yet. */
1795 switch (sp
->state
[cp
->protoidx
]) {
1798 case STATE_REQ_SENT
:
1799 case STATE_ACK_SENT
:
1801 case STATE_STOPPING
:
1804 case STATE_ACK_RCVD
:
1805 sppp_cp_change_state(cp
, sp
, STATE_REQ_SENT
);
1808 kprintf(SPP_FMT
"%s illegal %s in state %s\n",
1809 SPP_ARGS(ifp
), cp
->name
,
1810 sppp_cp_type_name(h
->type
),
1811 sppp_state_name(sp
->state
[cp
->protoidx
]));
1817 if (cp
->proto
!= PPP_LCP
)
1819 /* Discard the packet. */
1822 if (cp
->proto
!= PPP_LCP
)
1824 if (sp
->state
[cp
->protoidx
] != STATE_OPENED
) {
1826 log(-1, SPP_FMT
"lcp echo req but lcp closed\n",
1833 log(-1, SPP_FMT
"invalid lcp echo request "
1834 "packet length: %d bytes\n",
1835 SPP_ARGS(ifp
), len
);
1838 if ((sp
->lcp
.opts
& (1 << LCP_OPT_MAGIC
)) &&
1839 ntohl (*(long*)(h
+1)) == sp
->lcp
.magic
) {
1840 /* Line loopback mode detected. */
1841 kprintf(SPP_FMT
"loopback\n", SPP_ARGS(ifp
));
1842 sp
->pp_loopcnt
= MAXALIVECNT
* 5;
1844 IF_DRAIN(&sp
->pp_cpq
);
1846 /* Shut down the PPP link. */
1852 *(long*)(h
+1) = htonl (sp
->lcp
.magic
);
1854 log(-1, SPP_FMT
"got lcp echo req, sending echo rep\n",
1856 sppp_cp_send (sp
, PPP_LCP
, ECHO_REPLY
, h
->ident
, len
-4, h
+1);
1859 if (cp
->proto
!= PPP_LCP
)
1861 if (h
->ident
!= sp
->lcp
.echoid
) {
1867 log(-1, SPP_FMT
"lcp invalid echo reply "
1868 "packet length: %d bytes\n",
1869 SPP_ARGS(ifp
), len
);
1873 log(-1, SPP_FMT
"lcp got echo rep\n",
1875 if (!(sp
->lcp
.opts
& (1 << LCP_OPT_MAGIC
)) ||
1876 ntohl (*(long*)(h
+1)) != sp
->lcp
.magic
)
1877 sp
->pp_alivecnt
= 0;
1880 /* Unknown packet type -- send Code-Reject packet. */
1883 log(-1, SPP_FMT
"%s send code-rej for 0x%x\n",
1884 SPP_ARGS(ifp
), cp
->name
, h
->type
);
1885 sppp_cp_send(sp
, cp
->proto
, CODE_REJ
,
1886 ++sp
->pp_seq
[cp
->protoidx
], m
->m_pkthdr
.len
, h
);
1893 * The generic part of all Up/Down/Open/Close/TO event handlers.
1894 * Basically, the state transition handling in the automaton.
1897 sppp_up_event(const struct cp
*cp
, struct sppp
*sp
)
1902 log(LOG_DEBUG
, SPP_FMT
"%s up(%s)\n",
1903 SPP_ARGS(ifp
), cp
->name
,
1904 sppp_state_name(sp
->state
[cp
->protoidx
]));
1906 switch (sp
->state
[cp
->protoidx
]) {
1908 sppp_cp_change_state(cp
, sp
, STATE_CLOSED
);
1910 case STATE_STARTING
:
1911 sp
->rst_counter
[cp
->protoidx
] = sp
->lcp
.max_configure
;
1913 sppp_cp_change_state(cp
, sp
, STATE_REQ_SENT
);
1916 kprintf(SPP_FMT
"%s illegal up in state %s\n",
1917 SPP_ARGS(ifp
), cp
->name
,
1918 sppp_state_name(sp
->state
[cp
->protoidx
]));
1923 sppp_down_event(const struct cp
*cp
, struct sppp
*sp
)
1928 log(LOG_DEBUG
, SPP_FMT
"%s down(%s)\n",
1929 SPP_ARGS(ifp
), cp
->name
,
1930 sppp_state_name(sp
->state
[cp
->protoidx
]));
1932 switch (sp
->state
[cp
->protoidx
]) {
1935 sppp_cp_change_state(cp
, sp
, STATE_INITIAL
);
1938 sppp_cp_change_state(cp
, sp
, STATE_STARTING
);
1941 case STATE_STOPPING
:
1942 case STATE_REQ_SENT
:
1943 case STATE_ACK_RCVD
:
1944 case STATE_ACK_SENT
:
1945 sppp_cp_change_state(cp
, sp
, STATE_STARTING
);
1949 sppp_cp_change_state(cp
, sp
, STATE_STARTING
);
1952 kprintf(SPP_FMT
"%s illegal down in state %s\n",
1953 SPP_ARGS(ifp
), cp
->name
,
1954 sppp_state_name(sp
->state
[cp
->protoidx
]));
1960 sppp_open_event(const struct cp
*cp
, struct sppp
*sp
)
1965 log(LOG_DEBUG
, SPP_FMT
"%s open(%s)\n",
1966 SPP_ARGS(ifp
), cp
->name
,
1967 sppp_state_name(sp
->state
[cp
->protoidx
]));
1969 switch (sp
->state
[cp
->protoidx
]) {
1971 sppp_cp_change_state(cp
, sp
, STATE_STARTING
);
1974 case STATE_STARTING
:
1977 sp
->rst_counter
[cp
->protoidx
] = sp
->lcp
.max_configure
;
1979 sppp_cp_change_state(cp
, sp
, STATE_REQ_SENT
);
1983 * Try escaping stopped state. This seems to bite
1984 * people occasionally, in particular for IPCP,
1985 * presumably following previous IPCP negotiation
1986 * aborts. Somehow, we must have missed a Down event
1987 * which would have caused a transition into starting
1988 * state, so as a bandaid we force the Down event now.
1989 * This effectively implements (something like the)
1990 * `restart' option mentioned in the state transition
1991 * table of RFC 1661.
1993 sppp_cp_change_state(cp
, sp
, STATE_STARTING
);
1996 case STATE_STOPPING
:
1997 case STATE_REQ_SENT
:
1998 case STATE_ACK_RCVD
:
1999 case STATE_ACK_SENT
:
2003 sppp_cp_change_state(cp
, sp
, STATE_STOPPING
);
2010 sppp_close_event(const struct cp
*cp
, struct sppp
*sp
)
2015 log(LOG_DEBUG
, SPP_FMT
"%s close(%s)\n",
2016 SPP_ARGS(ifp
), cp
->name
,
2017 sppp_state_name(sp
->state
[cp
->protoidx
]));
2019 switch (sp
->state
[cp
->protoidx
]) {
2024 case STATE_STARTING
:
2025 sppp_cp_change_state(cp
, sp
, STATE_INITIAL
);
2029 sppp_cp_change_state(cp
, sp
, STATE_CLOSED
);
2031 case STATE_STOPPING
:
2032 sppp_cp_change_state(cp
, sp
, STATE_CLOSING
);
2037 case STATE_REQ_SENT
:
2038 case STATE_ACK_RCVD
:
2039 case STATE_ACK_SENT
:
2040 sp
->rst_counter
[cp
->protoidx
] = sp
->lcp
.max_terminate
;
2041 sppp_cp_send(sp
, cp
->proto
, TERM_REQ
,
2042 ++sp
->pp_seq
[cp
->protoidx
], 0, 0);
2043 sppp_cp_change_state(cp
, sp
, STATE_CLOSING
);
2049 sppp_to_event(const struct cp
*cp
, struct sppp
*sp
)
2056 log(LOG_DEBUG
, SPP_FMT
"%s TO(%s) rst_counter = %d\n",
2057 SPP_ARGS(ifp
), cp
->name
,
2058 sppp_state_name(sp
->state
[cp
->protoidx
]),
2059 sp
->rst_counter
[cp
->protoidx
]);
2061 if (--sp
->rst_counter
[cp
->protoidx
] < 0)
2063 switch (sp
->state
[cp
->protoidx
]) {
2065 sppp_cp_change_state(cp
, sp
, STATE_CLOSED
);
2068 case STATE_STOPPING
:
2069 sppp_cp_change_state(cp
, sp
, STATE_STOPPED
);
2072 case STATE_REQ_SENT
:
2073 case STATE_ACK_RCVD
:
2074 case STATE_ACK_SENT
:
2075 sppp_cp_change_state(cp
, sp
, STATE_STOPPED
);
2081 switch (sp
->state
[cp
->protoidx
]) {
2083 case STATE_STOPPING
:
2084 sppp_cp_send(sp
, cp
->proto
, TERM_REQ
,
2085 ++sp
->pp_seq
[cp
->protoidx
], 0, 0);
2086 callout_reset(&sp
->timeout
[cp
->protoidx
],
2087 sp
->lcp
.timeout
, cp
->TO
, sp
);
2089 case STATE_REQ_SENT
:
2090 case STATE_ACK_RCVD
:
2092 /* sppp_cp_change_state() will restart the timer */
2093 sppp_cp_change_state(cp
, sp
, STATE_REQ_SENT
);
2095 case STATE_ACK_SENT
:
2097 callout_reset(&sp
->timeout
[cp
->protoidx
],
2098 sp
->lcp
.timeout
, cp
->TO
, sp
);
2106 * Change the state of a control protocol in the state automaton.
2107 * Takes care of starting/stopping the restart timer.
2110 sppp_cp_change_state(const struct cp
*cp
, struct sppp
*sp
, int newstate
)
2112 sp
->state
[cp
->protoidx
] = newstate
;
2113 callout_stop(&sp
->timeout
[cp
->protoidx
]);
2117 case STATE_STARTING
:
2123 case STATE_STOPPING
:
2124 case STATE_REQ_SENT
:
2125 case STATE_ACK_RCVD
:
2126 case STATE_ACK_SENT
:
2127 callout_reset(&sp
->timeout
[cp
->protoidx
],
2128 sp
->lcp
.timeout
, cp
->TO
, sp
);
2134 *--------------------------------------------------------------------------*
2136 * The LCP implementation. *
2138 *--------------------------------------------------------------------------*
2141 sppp_lcp_init(struct sppp
*sp
)
2143 sp
->lcp
.opts
= (1 << LCP_OPT_MAGIC
);
2145 sp
->state
[IDX_LCP
] = STATE_INITIAL
;
2146 sp
->fail_counter
[IDX_LCP
] = 0;
2147 sp
->pp_seq
[IDX_LCP
] = 0;
2148 sp
->pp_rseq
[IDX_LCP
] = 0;
2150 sp
->lcp
.mru
= sp
->lcp
.their_mru
= PP_MTU
;
2152 /* Note that these values are relevant for all control protocols */
2153 sp
->lcp
.timeout
= 3 * hz
;
2154 sp
->lcp
.max_terminate
= 2;
2155 sp
->lcp
.max_configure
= 10;
2156 sp
->lcp
.max_failure
= 10;
2157 #if defined(__DragonFly__)
2158 callout_init(&sp
->timeout
[IDX_LCP
]);
2163 sppp_lcp_up(struct sppp
*sp
)
2167 sp
->pp_alivecnt
= 0;
2168 sp
->lcp
.opts
= (1 << LCP_OPT_MAGIC
);
2171 sp
->lcp
.mru
= sp
->lcp
.their_mru
= PP_MTU
;
2173 * If this interface is passive or dial-on-demand, and we are
2174 * still in Initial state, it means we've got an incoming
2175 * call. Activate the interface.
2177 if ((ifp
->if_flags
& (IFF_AUTO
| IFF_PASSIVE
)) != 0) {
2180 SPP_FMT
"Up event", SPP_ARGS(ifp
));
2181 ifp
->if_flags
|= IFF_RUNNING
;
2182 if (sp
->state
[IDX_LCP
] == STATE_INITIAL
) {
2184 log(-1, "(incoming call)\n");
2185 sp
->pp_flags
|= PP_CALLIN
;
2189 } else if ((ifp
->if_flags
& (IFF_AUTO
| IFF_PASSIVE
)) == 0 &&
2190 (sp
->state
[IDX_LCP
] == STATE_INITIAL
)) {
2191 ifp
->if_flags
|= IFF_RUNNING
;
2195 sppp_up_event(&lcp
, sp
);
2199 sppp_lcp_down(struct sppp
*sp
)
2203 sppp_down_event(&lcp
, sp
);
2206 * If this is neither a dial-on-demand nor a passive
2207 * interface, simulate an ``ifconfig down'' action, so the
2208 * administrator can force a redial by another ``ifconfig
2209 * up''. XXX For leased line operation, should we immediately
2210 * try to reopen the connection here?
2212 if ((ifp
->if_flags
& (IFF_AUTO
| IFF_PASSIVE
)) == 0) {
2214 SPP_FMT
"Down event, taking interface down.\n",
2220 SPP_FMT
"Down event (carrier loss)\n",
2222 sp
->pp_flags
&= ~PP_CALLIN
;
2223 if (sp
->state
[IDX_LCP
] != STATE_INITIAL
)
2225 ifp
->if_flags
&= ~IFF_RUNNING
;
2230 sppp_lcp_open(struct sppp
*sp
)
2233 * If we are authenticator, negotiate LCP_AUTH
2235 if (sp
->hisauth
.proto
!= 0)
2236 sp
->lcp
.opts
|= (1 << LCP_OPT_AUTH_PROTO
);
2238 sp
->lcp
.opts
&= ~(1 << LCP_OPT_AUTH_PROTO
);
2239 sp
->pp_flags
&= ~PP_NEEDAUTH
;
2240 sppp_open_event(&lcp
, sp
);
2244 sppp_lcp_close(struct sppp
*sp
)
2246 sppp_close_event(&lcp
, sp
);
2250 sppp_lcp_TO(void *cookie
)
2252 sppp_to_event(&lcp
, (struct sppp
*)cookie
);
2256 * Analyze a configure request. Return true if it was agreeable, and
2257 * caused action sca, false if it has been rejected or nak'ed, and
2258 * caused action scn. (The return value is used to make the state
2259 * transition decision in the state automaton.)
2262 sppp_lcp_RCR(struct sppp
*sp
, struct lcp_header
*h
, int len
)
2265 u_char
*buf
, *r
, *p
;
2272 buf
= r
= kmalloc (len
, M_TEMP
, M_INTWAIT
);
2275 log(LOG_DEBUG
, SPP_FMT
"lcp parse opts: ",
2278 /* pass 1: check for things that need to be rejected */
2280 for (rlen
=0; len
>1 && p
[1]; len
-=p
[1], p
+=p
[1]) {
2281 /* Sanity check option length */
2283 /* Malicious option - drop immediately.
2284 * XXX Maybe we should just RXJ it?
2286 log(-1, "%s: received malicious LCP option 0x%02x, "
2287 "length 0x%02x, (len: 0x%02x) dropping.\n", ifp
->if_xname
,
2292 log(-1, " %s ", sppp_lcp_opt_name(*p
));
2296 if (len
>= 6 && p
[1] == 6)
2299 log(-1, "[invalid] ");
2301 case LCP_OPT_ASYNC_MAP
:
2302 /* Async control character map. */
2303 if (len
>= 6 && p
[1] == 6)
2306 log(-1, "[invalid] ");
2309 /* Maximum receive unit. */
2310 if (len
>= 4 && p
[1] == 4)
2313 log(-1, "[invalid] ");
2315 case LCP_OPT_AUTH_PROTO
:
2318 log(-1, "[invalid] ");
2321 authproto
= (p
[2] << 8) + p
[3];
2322 if (authproto
== PPP_CHAP
&& p
[1] != 5) {
2324 log(-1, "[invalid chap len] ");
2327 if (sp
->myauth
.proto
== 0) {
2328 /* we are not configured to do auth */
2330 log(-1, "[not configured] ");
2334 * Remote want us to authenticate, remember this,
2335 * so we stay in PHASE_AUTHENTICATE after LCP got
2338 sp
->pp_flags
|= PP_NEEDAUTH
;
2341 /* Others not supported. */
2346 /* Add the option to rejected list. */
2353 log(-1, " send conf-rej\n");
2354 sppp_cp_send (sp
, PPP_LCP
, CONF_REJ
, h
->ident
, rlen
, buf
);
2360 * pass 2: check for option values that are unacceptable and
2361 * thus require to be nak'ed.
2364 log(LOG_DEBUG
, SPP_FMT
"lcp parse opt values: ",
2369 for (rlen
=0; len
>1 && p
[1]; len
-=p
[1], p
+=p
[1]) {
2371 log(-1, " %s ", sppp_lcp_opt_name(*p
));
2374 /* Magic number -- extract. */
2375 nmagic
= (u_long
)p
[2] << 24 |
2376 (u_long
)p
[3] << 16 | p
[4] << 8 | p
[5];
2377 if (nmagic
!= sp
->lcp
.magic
) {
2380 log(-1, "0x%lx ", nmagic
);
2383 if (debug
&& sp
->pp_loopcnt
< MAXALIVECNT
*5)
2384 log(-1, "[glitch] ");
2387 * We negate our magic here, and NAK it. If
2388 * we see it later in an NAK packet, we
2389 * suggest a new one.
2391 nmagic
= ~sp
->lcp
.magic
;
2393 p
[2] = nmagic
>> 24;
2394 p
[3] = nmagic
>> 16;
2399 case LCP_OPT_ASYNC_MAP
:
2401 * Async control character map -- just ignore it.
2403 * Quote from RFC 1662, chapter 6:
2404 * To enable this functionality, synchronous PPP
2405 * implementations MUST always respond to the
2406 * Async-Control-Character-Map Configuration
2407 * Option with the LCP Configure-Ack. However,
2408 * acceptance of the Configuration Option does
2409 * not imply that the synchronous implementation
2410 * will do any ACCM mapping. Instead, all such
2411 * octet mapping will be performed by the
2412 * asynchronous-to-synchronous converter.
2418 * Maximum receive unit. Always agreeable,
2419 * but ignored by now.
2421 sp
->lcp
.their_mru
= p
[2] * 256 + p
[3];
2423 log(-1, "%lu ", sp
->lcp
.their_mru
);
2426 case LCP_OPT_AUTH_PROTO
:
2427 authproto
= (p
[2] << 8) + p
[3];
2428 if (sp
->myauth
.proto
!= authproto
) {
2429 /* not agreed, nak */
2431 log(-1, "[mine %s != his %s] ",
2432 sppp_proto_name(sp
->hisauth
.proto
),
2433 sppp_proto_name(authproto
));
2434 p
[2] = sp
->myauth
.proto
>> 8;
2435 p
[3] = sp
->myauth
.proto
;
2438 if (authproto
== PPP_CHAP
&& p
[4] != CHAP_MD5
) {
2440 log(-1, "[chap not MD5] ");
2446 /* Add the option to nak'ed list. */
2453 * Local and remote magics equal -- loopback?
2455 if (sp
->pp_loopcnt
>= MAXALIVECNT
*5) {
2456 if (sp
->pp_loopcnt
== MAXALIVECNT
*5)
2457 kprintf (SPP_FMT
"loopback\n",
2459 if (ifp
->if_flags
& IFF_UP
) {
2461 IF_DRAIN(&sp
->pp_cpq
);
2466 } else if (++sp
->fail_counter
[IDX_LCP
] >= sp
->lcp
.max_failure
) {
2468 log(-1, " max_failure (%d) exceeded, "
2470 sp
->lcp
.max_failure
);
2471 sppp_cp_send(sp
, PPP_LCP
, CONF_REJ
, h
->ident
, rlen
, buf
);
2474 log(-1, " send conf-nak\n");
2475 sppp_cp_send (sp
, PPP_LCP
, CONF_NAK
, h
->ident
, rlen
, buf
);
2479 log(-1, " send conf-ack\n");
2480 sp
->fail_counter
[IDX_LCP
] = 0;
2482 sppp_cp_send (sp
, PPP_LCP
, CONF_ACK
,
2483 h
->ident
, origlen
, h
+1);
2486 kfree (buf
, M_TEMP
);
2495 * Analyze the LCP Configure-Reject option list, and adjust our
2499 sppp_lcp_RCN_rej(struct sppp
*sp
, struct lcp_header
*h
, int len
)
2505 buf
= kmalloc (len
, M_TEMP
, M_INTWAIT
);
2508 log(LOG_DEBUG
, SPP_FMT
"lcp rej opts: ",
2512 for (; len
> 1 && p
[1]; len
-= p
[1], p
+= p
[1]) {
2513 /* Sanity check option length */
2516 * Malicious option - drop immediately.
2517 * XXX Maybe we should just RXJ it?
2519 log(-1, "%s: received malicious LCP option, "
2520 "dropping.\n", ifp
->if_xname
);
2524 log(-1, " %s ", sppp_lcp_opt_name(*p
));
2527 /* Magic number -- can't use it, use 0 */
2528 sp
->lcp
.opts
&= ~(1 << LCP_OPT_MAGIC
);
2533 * Should not be rejected anyway, since we only
2534 * negotiate a MRU if explicitly requested by
2537 sp
->lcp
.opts
&= ~(1 << LCP_OPT_MRU
);
2539 case LCP_OPT_AUTH_PROTO
:
2541 * Peer doesn't want to authenticate himself,
2542 * deny unless this is a dialout call, and
2543 * AUTHFLAG_NOCALLOUT is set.
2545 if ((sp
->pp_flags
& PP_CALLIN
) == 0 &&
2546 (sp
->hisauth
.flags
& AUTHFLAG_NOCALLOUT
) != 0) {
2548 log(-1, "[don't insist on auth "
2550 sp
->lcp
.opts
&= ~(1 << LCP_OPT_AUTH_PROTO
);
2554 log(-1, "[access denied]\n");
2562 kfree (buf
, M_TEMP
);
2567 * Analyze the LCP Configure-NAK option list, and adjust our
2571 sppp_lcp_RCN_nak(struct sppp
*sp
, struct lcp_header
*h
, int len
)
2578 buf
= kmalloc (len
, M_TEMP
, M_INTWAIT
);
2581 log(LOG_DEBUG
, SPP_FMT
"lcp nak opts: ",
2585 for (; len
> 1 && p
[1]; len
-= p
[1], p
+= p
[1]) {
2586 /* Sanity check option length */
2589 * Malicious option - drop immediately.
2590 * XXX Maybe we should just RXJ it?
2592 log(-1, "%s: received malicious LCP option, "
2593 "dropping.\n", ifp
->if_xname
);
2597 log(-1, " %s ", sppp_lcp_opt_name(*p
));
2600 /* Magic number -- renegotiate */
2601 if ((sp
->lcp
.opts
& (1 << LCP_OPT_MAGIC
)) &&
2602 len
>= 6 && p
[1] == 6) {
2603 magic
= (u_long
)p
[2] << 24 |
2604 (u_long
)p
[3] << 16 | p
[4] << 8 | p
[5];
2606 * If the remote magic is our negated one,
2607 * this looks like a loopback problem.
2608 * Suggest a new magic to make sure.
2610 if (magic
== ~sp
->lcp
.magic
) {
2612 log(-1, "magic glitch ");
2613 #if defined(__DragonFly__)
2614 sp
->lcp
.magic
= krandom();
2616 sp
->lcp
.magic
= time
.tv_sec
+ time
.tv_usec
;
2619 sp
->lcp
.magic
= magic
;
2621 log(-1, "%lu ", magic
);
2627 * Peer wants to advise us to negotiate an MRU.
2628 * Agree on it if it's reasonable, or use
2629 * default otherwise.
2631 if (len
>= 4 && p
[1] == 4) {
2632 u_int mru
= p
[2] * 256 + p
[3];
2634 log(-1, "%d ", mru
);
2635 if (mru
< PP_MTU
|| mru
> PP_MAX_MRU
)
2638 sp
->lcp
.opts
|= (1 << LCP_OPT_MRU
);
2641 case LCP_OPT_AUTH_PROTO
:
2643 * Peer doesn't like our authentication method,
2647 log(-1, "[access denied]\n");
2655 kfree (buf
, M_TEMP
);
2660 sppp_lcp_tlu(struct sppp
*sp
)
2667 if (! (ifp
->if_flags
& IFF_UP
) &&
2668 (ifp
->if_flags
& IFF_RUNNING
)) {
2669 /* Coming out of loopback mode. */
2671 kprintf (SPP_FMT
"up\n", SPP_ARGS(ifp
));
2674 for (i
= 0; i
< IDX_COUNT
; i
++)
2675 if ((cps
[i
])->flags
& CP_QUAL
)
2678 if ((sp
->lcp
.opts
& (1 << LCP_OPT_AUTH_PROTO
)) != 0 ||
2679 (sp
->pp_flags
& PP_NEEDAUTH
) != 0)
2680 sp
->pp_phase
= PHASE_AUTHENTICATE
;
2682 sp
->pp_phase
= PHASE_NETWORK
;
2685 log(LOG_DEBUG
, SPP_FMT
"phase %s\n", SPP_ARGS(ifp
),
2686 sppp_phase_name(sp
->pp_phase
));
2689 * Open all authentication protocols. This is even required
2690 * if we already proceeded to network phase, since it might be
2691 * that remote wants us to authenticate, so we might have to
2692 * send a PAP request. Undesired authentication protocols
2693 * don't do anything when they get an Open event.
2695 for (i
= 0; i
< IDX_COUNT
; i
++)
2696 if ((cps
[i
])->flags
& CP_AUTH
)
2699 if (sp
->pp_phase
== PHASE_NETWORK
) {
2700 /* Notify all NCPs. */
2701 for (i
= 0; i
< IDX_COUNT
; i
++)
2702 if (((cps
[i
])->flags
& CP_NCP
) &&
2705 * Hack to administratively disable IPv6 if
2706 * not desired. Perhaps we should have another
2707 * flag for this, but right now, we can make
2708 * all struct cp's read/only.
2710 (cps
[i
] != &ipv6cp
||
2711 (sp
->confflags
& CONF_ENABLE_IPV6
)))
2715 /* Send Up events to all started protos. */
2716 for (i
= 0, mask
= 1; i
< IDX_COUNT
; i
++, mask
<<= 1)
2717 if ((sp
->lcp
.protos
& mask
) && ((cps
[i
])->flags
& CP_LCP
) == 0)
2720 /* notify low-level driver of state change */
2722 sp
->pp_chg(sp
, (int)sp
->pp_phase
);
2724 if (sp
->pp_phase
== PHASE_NETWORK
)
2725 /* if no NCP is starting, close down */
2726 sppp_lcp_check_and_close(sp
);
2730 sppp_lcp_tld(struct sppp
*sp
)
2736 sp
->pp_phase
= PHASE_TERMINATE
;
2739 log(LOG_DEBUG
, SPP_FMT
"phase %s\n", SPP_ARGS(ifp
),
2740 sppp_phase_name(sp
->pp_phase
));
2743 * Take upper layers down. We send the Down event first and
2744 * the Close second to prevent the upper layers from sending
2745 * ``a flurry of terminate-request packets'', as the RFC
2748 for (i
= 0, mask
= 1; i
< IDX_COUNT
; i
++, mask
<<= 1)
2749 if ((sp
->lcp
.protos
& mask
) && ((cps
[i
])->flags
& CP_LCP
) == 0) {
2751 (cps
[i
])->Close(sp
);
2756 sppp_lcp_tls(struct sppp
*sp
)
2760 sp
->pp_phase
= PHASE_ESTABLISH
;
2763 log(LOG_DEBUG
, SPP_FMT
"phase %s\n", SPP_ARGS(ifp
),
2764 sppp_phase_name(sp
->pp_phase
));
2766 /* Notify lower layer if desired. */
2774 sppp_lcp_tlf(struct sppp
*sp
)
2778 sp
->pp_phase
= PHASE_DEAD
;
2780 log(LOG_DEBUG
, SPP_FMT
"phase %s\n", SPP_ARGS(ifp
),
2781 sppp_phase_name(sp
->pp_phase
));
2783 /* Notify lower layer if desired. */
2791 sppp_lcp_scr(struct sppp
*sp
)
2793 char opt
[6 /* magicnum */ + 4 /* mru */ + 5 /* chap */];
2797 if (sp
->lcp
.opts
& (1 << LCP_OPT_MAGIC
)) {
2798 if (! sp
->lcp
.magic
)
2799 #if defined(__DragonFly__)
2800 sp
->lcp
.magic
= krandom();
2802 sp
->lcp
.magic
= time
.tv_sec
+ time
.tv_usec
;
2804 opt
[i
++] = LCP_OPT_MAGIC
;
2806 opt
[i
++] = sp
->lcp
.magic
>> 24;
2807 opt
[i
++] = sp
->lcp
.magic
>> 16;
2808 opt
[i
++] = sp
->lcp
.magic
>> 8;
2809 opt
[i
++] = sp
->lcp
.magic
;
2812 if (sp
->lcp
.opts
& (1 << LCP_OPT_MRU
)) {
2813 opt
[i
++] = LCP_OPT_MRU
;
2815 opt
[i
++] = sp
->lcp
.mru
>> 8;
2816 opt
[i
++] = sp
->lcp
.mru
;
2819 if (sp
->lcp
.opts
& (1 << LCP_OPT_AUTH_PROTO
)) {
2820 authproto
= sp
->hisauth
.proto
;
2821 opt
[i
++] = LCP_OPT_AUTH_PROTO
;
2822 opt
[i
++] = authproto
== PPP_CHAP
? 5: 4;
2823 opt
[i
++] = authproto
>> 8;
2824 opt
[i
++] = authproto
;
2825 if (authproto
== PPP_CHAP
)
2826 opt
[i
++] = CHAP_MD5
;
2829 sp
->confid
[IDX_LCP
] = ++sp
->pp_seq
[IDX_LCP
];
2830 sppp_cp_send (sp
, PPP_LCP
, CONF_REQ
, sp
->confid
[IDX_LCP
], i
, &opt
);
2834 * Check the open NCPs, return true if at least one NCP is open.
2837 sppp_ncp_check(struct sppp
*sp
)
2841 for (i
= 0, mask
= 1; i
< IDX_COUNT
; i
++, mask
<<= 1)
2842 if ((sp
->lcp
.protos
& mask
) && (cps
[i
])->flags
& CP_NCP
)
2848 * Re-check the open NCPs and see if we should terminate the link.
2849 * Called by the NCPs during their tlf action handling.
2852 sppp_lcp_check_and_close(struct sppp
*sp
)
2855 if (sp
->pp_phase
< PHASE_NETWORK
)
2856 /* don't bother, we are already going down */
2859 if (sppp_ncp_check(sp
))
2866 *--------------------------------------------------------------------------*
2868 * The IPCP implementation. *
2870 *--------------------------------------------------------------------------*
2874 sppp_ipcp_init(struct sppp
*sp
)
2878 sp
->state
[IDX_IPCP
] = STATE_INITIAL
;
2879 sp
->fail_counter
[IDX_IPCP
] = 0;
2880 sp
->pp_seq
[IDX_IPCP
] = 0;
2881 sp
->pp_rseq
[IDX_IPCP
] = 0;
2882 #if defined(__DragonFly__)
2883 callout_init(&sp
->timeout
[IDX_IPCP
]);
2888 sppp_ipcp_up(struct sppp
*sp
)
2890 sppp_up_event(&ipcp
, sp
);
2894 sppp_ipcp_down(struct sppp
*sp
)
2896 sppp_down_event(&ipcp
, sp
);
2900 sppp_ipcp_open(struct sppp
*sp
)
2903 u_long myaddr
, hisaddr
;
2905 sp
->ipcp
.flags
&= ~(IPCP_HISADDR_SEEN
| IPCP_MYADDR_SEEN
|
2906 IPCP_MYADDR_DYN
| IPCP_VJ
);
2909 sppp_get_ip_addrs(sp
, &myaddr
, &hisaddr
, 0);
2911 * If we don't have his address, this probably means our
2912 * interface doesn't want to talk IP at all. (This could
2913 * be the case if somebody wants to speak only IPX, for
2914 * example.) Don't open IPCP in this case.
2916 if (hisaddr
== 0L) {
2917 /* XXX this message should go away */
2919 log(LOG_DEBUG
, SPP_FMT
"ipcp_open(): no IP interface\n",
2925 * I don't have an assigned address, so i need to
2926 * negotiate my address.
2928 sp
->ipcp
.flags
|= IPCP_MYADDR_DYN
;
2929 sp
->ipcp
.opts
|= (1 << IPCP_OPT_ADDRESS
);
2931 sp
->ipcp
.flags
|= IPCP_MYADDR_SEEN
;
2932 if (sp
->confflags
& CONF_ENABLE_VJ
) {
2933 sp
->ipcp
.opts
|= (1 << IPCP_OPT_COMPRESSION
);
2934 sp
->ipcp
.max_state
= MAX_STATES
- 1;
2935 sp
->ipcp
.compress_cid
= 1;
2937 sppp_open_event(&ipcp
, sp
);
2941 sppp_ipcp_close(struct sppp
*sp
)
2943 sppp_close_event(&ipcp
, sp
);
2944 if (sp
->ipcp
.flags
& IPCP_MYADDR_DYN
)
2946 * My address was dynamic, clear it again.
2948 sppp_set_ip_addr(sp
, 0L);
2952 sppp_ipcp_TO(void *cookie
)
2954 sppp_to_event(&ipcp
, (struct sppp
*)cookie
);
2958 * Analyze a configure request. Return true if it was agreeable, and
2959 * caused action sca, false if it has been rejected or nak'ed, and
2960 * caused action scn. (The return value is used to make the state
2961 * transition decision in the state automaton.)
2964 sppp_ipcp_RCR(struct sppp
*sp
, struct lcp_header
*h
, int len
)
2966 u_char
*buf
, *r
, *p
;
2967 struct ifnet
*ifp
= &sp
->pp_if
;
2968 int rlen
, origlen
, debug
= ifp
->if_flags
& IFF_DEBUG
;
2969 u_long hisaddr
, desiredaddr
;
2976 * Make sure to allocate a buf that can at least hold a
2977 * conf-nak with an `address' option. We might need it below.
2979 buf
= r
= kmalloc ((len
< 6? 6: len
), M_TEMP
, M_INTWAIT
);
2981 /* pass 1: see if we can recognize them */
2983 log(LOG_DEBUG
, SPP_FMT
"ipcp parse opts: ",
2986 for (rlen
=0; len
>1 && p
[1]; len
-=p
[1], p
+=p
[1]) {
2987 /* Sanity check option length */
2989 /* XXX should we just RXJ? */
2990 log(-1, "%s: malicious IPCP option received, dropping\n",
2995 log(-1, " %s ", sppp_ipcp_opt_name(*p
));
2997 case IPCP_OPT_COMPRESSION
:
2998 if (!(sp
->confflags
& CONF_ENABLE_VJ
)) {
2999 /* VJ compression administratively disabled */
3001 log(-1, "[locally disabled] ");
3005 * In theory, we should only conf-rej an
3006 * option that is shorter than RFC 1618
3007 * requires (i.e. < 4), and should conf-nak
3008 * anything else that is not VJ. However,
3009 * since our algorithm always uses the
3010 * original option to NAK it with new values,
3011 * things would become more complicated. In
3012 * pratice, the only commonly implemented IP
3013 * compression option is VJ anyway, so the
3014 * difference is negligible.
3016 if (len
>= 6 && p
[1] == 6) {
3018 * correctly formed compression option
3019 * that could be VJ compression
3024 log(-1, "optlen %d [invalid/unsupported] ",
3027 case IPCP_OPT_ADDRESS
:
3028 if (len
>= 6 && p
[1] == 6) {
3029 /* correctly formed address option */
3033 log(-1, "[invalid] ");
3036 /* Others not supported. */
3041 /* Add the option to rejected list. */
3048 log(-1, " send conf-rej\n");
3049 sppp_cp_send (sp
, PPP_IPCP
, CONF_REJ
, h
->ident
, rlen
, buf
);
3054 /* pass 2: parse option values */
3055 sppp_get_ip_addrs(sp
, 0, &hisaddr
, 0);
3057 log(LOG_DEBUG
, SPP_FMT
"ipcp parse opt values: ",
3061 for (rlen
=0; len
>1 && p
[1]; len
-=p
[1], p
+=p
[1]) {
3063 log(-1, " %s ", sppp_ipcp_opt_name(*p
));
3065 case IPCP_OPT_COMPRESSION
:
3066 desiredcomp
= p
[2] << 8 | p
[3];
3067 /* We only support VJ */
3068 if (desiredcomp
== IPCP_COMP_VJ
) {
3070 log(-1, "VJ [ack] ");
3071 sp
->ipcp
.flags
|= IPCP_VJ
;
3072 sl_compress_init(sp
->pp_comp
, p
[4]);
3073 sp
->ipcp
.max_state
= p
[4];
3074 sp
->ipcp
.compress_cid
= p
[5];
3078 log(-1, "compproto %#04x [not supported] ",
3080 p
[2] = IPCP_COMP_VJ
>> 8;
3081 p
[3] = IPCP_COMP_VJ
;
3082 p
[4] = sp
->ipcp
.max_state
;
3083 p
[5] = sp
->ipcp
.compress_cid
;
3085 case IPCP_OPT_ADDRESS
:
3086 /* This is the address he wants in his end */
3087 desiredaddr
= p
[2] << 24 | p
[3] << 16 |
3089 if (desiredaddr
== hisaddr
||
3090 (hisaddr
>= 1 && hisaddr
<= 254 && desiredaddr
!= 0)) {
3092 * Peer's address is same as our value,
3093 * or we have set it to 0.0.0.* to
3094 * indicate that we do not really care,
3095 * this is agreeable. Gonna conf-ack
3099 log(-1, "%s [ack] ",
3100 sppp_dotted_quad(hisaddr
));
3101 /* record that we've seen it already */
3102 sp
->ipcp
.flags
|= IPCP_HISADDR_SEEN
;
3106 * The address wasn't agreeable. This is either
3107 * he sent us 0.0.0.0, asking to assign him an
3108 * address, or he send us another address not
3109 * matching our value. Either case, we gonna
3110 * conf-nak it with our value.
3111 * XXX: we should "rej" if hisaddr == 0
3114 if (desiredaddr
== 0)
3115 log(-1, "[addr requested] ");
3117 log(-1, "%s [not agreed] ",
3118 sppp_dotted_quad(desiredaddr
));
3121 p
[2] = hisaddr
>> 24;
3122 p
[3] = hisaddr
>> 16;
3123 p
[4] = hisaddr
>> 8;
3127 /* Add the option to nak'ed list. */
3134 * If we are about to conf-ack the request, but haven't seen
3135 * his address so far, gonna conf-nak it instead, with the
3136 * `address' option present and our idea of his address being
3137 * filled in there, to request negotiation of both addresses.
3139 * XXX This can result in an endless req - nak loop if peer
3140 * doesn't want to send us his address. Q: What should we do
3141 * about it? XXX A: implement the max-failure counter.
3143 if (rlen
== 0 && !(sp
->ipcp
.flags
& IPCP_HISADDR_SEEN
) && !gotmyaddr
) {
3144 buf
[0] = IPCP_OPT_ADDRESS
;
3146 buf
[2] = hisaddr
>> 24;
3147 buf
[3] = hisaddr
>> 16;
3148 buf
[4] = hisaddr
>> 8;
3152 log(-1, "still need hisaddr ");
3157 log(-1, " send conf-nak\n");
3158 sppp_cp_send (sp
, PPP_IPCP
, CONF_NAK
, h
->ident
, rlen
, buf
);
3161 log(-1, " send conf-ack\n");
3162 sppp_cp_send (sp
, PPP_IPCP
, CONF_ACK
,
3163 h
->ident
, origlen
, h
+1);
3166 kfree (buf
, M_TEMP
);
3175 * Analyze the IPCP Configure-Reject option list, and adjust our
3179 sppp_ipcp_RCN_rej(struct sppp
*sp
, struct lcp_header
*h
, int len
)
3182 struct ifnet
*ifp
= &sp
->pp_if
;
3183 int debug
= ifp
->if_flags
& IFF_DEBUG
;
3186 buf
= kmalloc (len
, M_TEMP
, M_INTWAIT
);
3189 log(LOG_DEBUG
, SPP_FMT
"ipcp rej opts: ",
3193 for (; len
> 1 && p
[1]; len
-= p
[1], p
+= p
[1]) {
3194 /* Sanity check option length */
3196 /* XXX should we just RXJ? */
3197 log(-1, "%s: malicious IPCP option received, dropping\n",
3202 log(-1, " %s ", sppp_ipcp_opt_name(*p
));
3204 case IPCP_OPT_COMPRESSION
:
3205 sp
->ipcp
.opts
&= ~(1 << IPCP_OPT_COMPRESSION
);
3207 case IPCP_OPT_ADDRESS
:
3209 * Peer doesn't grok address option. This is
3210 * bad. XXX Should we better give up here?
3211 * XXX We could try old "addresses" option...
3213 sp
->ipcp
.opts
&= ~(1 << IPCP_OPT_ADDRESS
);
3220 kfree (buf
, M_TEMP
);
3225 * Analyze the IPCP Configure-NAK option list, and adjust our
3229 sppp_ipcp_RCN_nak(struct sppp
*sp
, struct lcp_header
*h
, int len
)
3232 struct ifnet
*ifp
= &sp
->pp_if
;
3233 int debug
= ifp
->if_flags
& IFF_DEBUG
;
3238 buf
= kmalloc (len
, M_TEMP
, M_INTWAIT
);
3241 log(LOG_DEBUG
, SPP_FMT
"ipcp nak opts: ",
3245 for (; len
> 1 && p
[1]; len
-= p
[1], p
+= p
[1]) {
3246 /* Sanity check option length */
3248 /* XXX should we just RXJ? */
3249 log(-1, "%s: malicious IPCP option received, dropping\n",
3254 log(-1, " %s ", sppp_ipcp_opt_name(*p
));
3256 case IPCP_OPT_COMPRESSION
:
3257 if (len
>= 6 && p
[1] == 6) {
3258 desiredcomp
= p
[2] << 8 | p
[3];
3260 log(-1, "[wantcomp %#04x] ",
3262 if (desiredcomp
== IPCP_COMP_VJ
) {
3263 sl_compress_init(sp
->pp_comp
, p
[4]);
3264 sp
->ipcp
.max_state
= p
[4];
3265 sp
->ipcp
.compress_cid
= p
[5];
3267 log(-1, "[agree] ");
3270 ~(1 << IPCP_OPT_COMPRESSION
);
3273 case IPCP_OPT_ADDRESS
:
3275 * Peer doesn't like our local IP address. See
3276 * if we can do something for him. We'll drop
3277 * him our address then.
3279 if (len
>= 6 && p
[1] == 6) {
3280 wantaddr
= p
[2] << 24 | p
[3] << 16 |
3282 sp
->ipcp
.opts
|= (1 << IPCP_OPT_ADDRESS
);
3284 log(-1, "[wantaddr %s] ",
3285 sppp_dotted_quad(wantaddr
));
3287 * When doing dynamic address assignment,
3288 * we accept his offer. Otherwise, we
3289 * ignore it and thus continue to negotiate
3290 * our already existing value.
3291 * XXX: Bogus, if he said no once, he'll
3292 * just say no again, might as well die.
3294 if (sp
->ipcp
.flags
& IPCP_MYADDR_DYN
) {
3295 sppp_set_ip_addr(sp
, wantaddr
);
3297 log(-1, "[agree] ");
3298 sp
->ipcp
.flags
|= IPCP_MYADDR_SEEN
;
3306 kfree (buf
, M_TEMP
);
3311 sppp_ipcp_tlu(struct sppp
*sp
)
3313 /* we are up - notify isdn daemon */
3319 sppp_ipcp_tld(struct sppp
*sp
)
3324 sppp_ipcp_tls(struct sppp
*sp
)
3326 /* indicate to LCP that it must stay alive */
3327 sp
->lcp
.protos
|= (1 << IDX_IPCP
);
3331 sppp_ipcp_tlf(struct sppp
*sp
)
3333 /* we no longer need LCP */
3334 sp
->lcp
.protos
&= ~(1 << IDX_IPCP
);
3335 sppp_lcp_check_and_close(sp
);
3339 sppp_ipcp_scr(struct sppp
*sp
)
3341 char opt
[6 /* compression */ + 6 /* address */];
3345 if (sp
->ipcp
.opts
& (1 << IPCP_OPT_COMPRESSION
)) {
3346 opt
[i
++] = IPCP_OPT_COMPRESSION
;
3348 opt
[i
++] = IPCP_COMP_VJ
>> 8;
3349 opt
[i
++] = IPCP_COMP_VJ
;
3350 opt
[i
++] = sp
->ipcp
.max_state
;
3351 opt
[i
++] = sp
->ipcp
.compress_cid
;
3353 if (sp
->ipcp
.opts
& (1 << IPCP_OPT_ADDRESS
)) {
3354 sppp_get_ip_addrs(sp
, &ouraddr
, 0, 0);
3355 opt
[i
++] = IPCP_OPT_ADDRESS
;
3357 opt
[i
++] = ouraddr
>> 24;
3358 opt
[i
++] = ouraddr
>> 16;
3359 opt
[i
++] = ouraddr
>> 8;
3363 sp
->confid
[IDX_IPCP
] = ++sp
->pp_seq
[IDX_IPCP
];
3364 sppp_cp_send(sp
, PPP_IPCP
, CONF_REQ
, sp
->confid
[IDX_IPCP
], i
, &opt
);
3368 *--------------------------------------------------------------------------*
3370 * The IPv6CP implementation. *
3372 *--------------------------------------------------------------------------*
3377 sppp_ipv6cp_init(struct sppp
*sp
)
3379 sp
->ipv6cp
.opts
= 0;
3380 sp
->ipv6cp
.flags
= 0;
3381 sp
->state
[IDX_IPV6CP
] = STATE_INITIAL
;
3382 sp
->fail_counter
[IDX_IPV6CP
] = 0;
3383 sp
->pp_seq
[IDX_IPV6CP
] = 0;
3384 sp
->pp_rseq
[IDX_IPV6CP
] = 0;
3385 #if defined(__NetBSD__)
3386 callout_init(&sp
->ch
[IDX_IPV6CP
]);
3388 #if defined(__DragonFly__)
3389 callout_init(&sp
->timeout
[IDX_IPV6CP
]);
3394 sppp_ipv6cp_up(struct sppp
*sp
)
3396 sppp_up_event(&ipv6cp
, sp
);
3400 sppp_ipv6cp_down(struct sppp
*sp
)
3402 sppp_down_event(&ipv6cp
, sp
);
3406 sppp_ipv6cp_open(struct sppp
*sp
)
3409 struct in6_addr myaddr
, hisaddr
;
3411 #ifdef IPV6CP_MYIFID_DYN
3412 sp
->ipv6cp
.flags
&= ~(IPV6CP_MYIFID_SEEN
|IPV6CP_MYIFID_DYN
);
3414 sp
->ipv6cp
.flags
&= ~IPV6CP_MYIFID_SEEN
;
3417 sppp_get_ip6_addrs(sp
, &myaddr
, &hisaddr
, 0);
3419 * If we don't have our address, this probably means our
3420 * interface doesn't want to talk IPv6 at all. (This could
3421 * be the case if somebody wants to speak only IPX, for
3422 * example.) Don't open IPv6CP in this case.
3424 if (IN6_IS_ADDR_UNSPECIFIED(&myaddr
)) {
3425 /* XXX this message should go away */
3427 log(LOG_DEBUG
, SPP_FMT
"ipv6cp_open(): no IPv6 interface\n",
3432 sp
->ipv6cp
.flags
|= IPV6CP_MYIFID_SEEN
;
3433 sp
->ipv6cp
.opts
|= (1 << IPV6CP_OPT_IFID
);
3434 sppp_open_event(&ipv6cp
, sp
);
3438 sppp_ipv6cp_close(struct sppp
*sp
)
3440 sppp_close_event(&ipv6cp
, sp
);
3444 sppp_ipv6cp_TO(void *cookie
)
3446 sppp_to_event(&ipv6cp
, (struct sppp
*)cookie
);
3450 * Analyze a configure request. Return true if it was agreeable, and
3451 * caused action sca, false if it has been rejected or nak'ed, and
3452 * caused action scn. (The return value is used to make the state
3453 * transition decision in the state automaton.)
3456 sppp_ipv6cp_RCR(struct sppp
*sp
, struct lcp_header
*h
, int len
)
3458 u_char
*buf
, *r
, *p
;
3459 struct ifnet
*ifp
= &sp
->pp_if
;
3460 int rlen
, origlen
, debug
= ifp
->if_flags
& IFF_DEBUG
;
3461 struct in6_addr myaddr
, desiredaddr
, suggestaddr
;
3464 int collision
, nohisaddr
;
3469 * Make sure to allocate a buf that can at least hold a
3470 * conf-nak with an `address' option. We might need it below.
3472 buf
= r
= kmalloc ((len
< 6? 6: len
), M_TEMP
, M_INTWAIT
);
3474 /* pass 1: see if we can recognize them */
3476 log(LOG_DEBUG
, SPP_FMT
"ipv6cp parse opts:",
3480 for (rlen
=0; len
>1 && p
[1]; len
-=p
[1], p
+=p
[1]) {
3481 /* Sanity check option length */
3484 log(-1, "%s: received malicious IPCPv6 option, "
3485 "dropping\n", ifp
->if_xname
);
3489 log(-1, " %s", sppp_ipv6cp_opt_name(*p
));
3491 case IPV6CP_OPT_IFID
:
3492 if (len
>= 10 && p
[1] == 10 && ifidcount
== 0) {
3493 /* correctly formed address option */
3498 log(-1, " [invalid]");
3501 case IPV6CP_OPT_COMPRESSION
:
3502 if (len
>= 4 && p
[1] >= 4) {
3503 /* correctly formed compress option */
3507 log(-1, " [invalid]");
3511 /* Others not supported. */
3516 /* Add the option to rejected list. */
3523 log(-1, " send conf-rej\n");
3524 sppp_cp_send (sp
, PPP_IPV6CP
, CONF_REJ
, h
->ident
, rlen
, buf
);
3529 /* pass 2: parse option values */
3530 sppp_get_ip6_addrs(sp
, &myaddr
, 0, 0);
3532 log(LOG_DEBUG
, SPP_FMT
"ipv6cp parse opt values: ",
3537 for (rlen
=0; len
>1 && p
[1]; len
-=p
[1], p
+=p
[1]) {
3539 log(-1, " %s", sppp_ipv6cp_opt_name(*p
));
3542 case IPV6CP_OPT_COMPRESSION
:
3545 case IPV6CP_OPT_IFID
:
3546 bzero(&desiredaddr
, sizeof(desiredaddr
));
3547 bcopy(&p
[2], &desiredaddr
.s6_addr
[8], 8);
3548 collision
= (bcmp(&desiredaddr
.s6_addr
[8],
3549 &myaddr
.s6_addr
[8], 8) == 0);
3550 nohisaddr
= IN6_IS_ADDR_UNSPECIFIED(&desiredaddr
);
3552 desiredaddr
.s6_addr16
[0] = htons(0xfe80);
3553 desiredaddr
.s6_addr16
[1] = htons(sp
->pp_if
.if_index
);
3555 if (!collision
&& !nohisaddr
) {
3556 /* no collision, hisaddr known - Conf-Ack */
3561 ip6_sprintf(&desiredaddr
),
3562 sppp_cp_type_name(type
));
3567 bzero(&suggestaddr
, sizeof(&suggestaddr
));
3568 if (collision
&& nohisaddr
) {
3569 /* collision, hisaddr unknown - Conf-Rej */
3574 * - no collision, hisaddr unknown, or
3575 * - collision, hisaddr known
3576 * Conf-Nak, suggest hisaddr
3579 sppp_suggest_ip6_addr(sp
, &suggestaddr
);
3580 bcopy(&suggestaddr
.s6_addr
[8], &p
[2], 8);
3583 log(-1, " %s [%s]", ip6_sprintf(&desiredaddr
),
3584 sppp_cp_type_name(type
));
3587 /* Add the option to nak'ed list. */
3593 if (rlen
== 0 && type
== CONF_ACK
) {
3595 log(-1, " send %s\n", sppp_cp_type_name(type
));
3596 sppp_cp_send (sp
, PPP_IPV6CP
, type
, h
->ident
, origlen
, h
+1);
3599 if (type
== CONF_ACK
)
3600 panic("IPv6CP RCR: CONF_ACK with non-zero rlen");
3604 log(-1, " send %s suggest %s\n",
3605 sppp_cp_type_name(type
), ip6_sprintf(&suggestaddr
));
3607 sppp_cp_send (sp
, PPP_IPV6CP
, type
, h
->ident
, rlen
, buf
);
3611 kfree (buf
, M_TEMP
);
3620 * Analyze the IPv6CP Configure-Reject option list, and adjust our
3624 sppp_ipv6cp_RCN_rej(struct sppp
*sp
, struct lcp_header
*h
, int len
)
3627 struct ifnet
*ifp
= &sp
->pp_if
;
3628 int debug
= ifp
->if_flags
& IFF_DEBUG
;
3631 buf
= kmalloc (len
, M_TEMP
, M_INTWAIT
);
3634 log(LOG_DEBUG
, SPP_FMT
"ipv6cp rej opts:",
3638 for (; len
> 1 && p
[1]; len
-= p
[1], p
+= p
[1]) {
3641 log(-1, "%s: received malicious IPCPv6 option, "
3642 "dropping\n", ifp
->if_xname
);
3646 log(-1, " %s", sppp_ipv6cp_opt_name(*p
));
3648 case IPV6CP_OPT_IFID
:
3650 * Peer doesn't grok address option. This is
3651 * bad. XXX Should we better give up here?
3653 sp
->ipv6cp
.opts
&= ~(1 << IPV6CP_OPT_IFID
);
3656 case IPV6CP_OPT_COMPRESS
:
3657 sp
->ipv6cp
.opts
&= ~(1 << IPV6CP_OPT_COMPRESS
);
3665 kfree (buf
, M_TEMP
);
3670 * Analyze the IPv6CP Configure-NAK option list, and adjust our
3674 sppp_ipv6cp_RCN_nak(struct sppp
*sp
, struct lcp_header
*h
, int len
)
3677 struct ifnet
*ifp
= &sp
->pp_if
;
3678 int debug
= ifp
->if_flags
& IFF_DEBUG
;
3679 struct in6_addr suggestaddr
;
3682 buf
= kmalloc (len
, M_TEMP
, M_INTWAIT
);
3685 log(LOG_DEBUG
, SPP_FMT
"ipv6cp nak opts:",
3689 for (; len
> 1 && p
[1]; len
-= p
[1], p
+= p
[1]) {
3692 log(-1, "%s: received malicious IPCPv6 option, "
3693 "dropping\n", ifp
->if_xname
);
3697 log(-1, " %s", sppp_ipv6cp_opt_name(*p
));
3699 case IPV6CP_OPT_IFID
:
3701 * Peer doesn't like our local ifid. See
3702 * if we can do something for him. We'll drop
3703 * him our address then.
3705 if (len
< 10 || p
[1] != 10)
3707 bzero(&suggestaddr
, sizeof(suggestaddr
));
3708 suggestaddr
.s6_addr16
[0] = htons(0xfe80);
3709 suggestaddr
.s6_addr16
[1] = htons(sp
->pp_if
.if_index
);
3710 bcopy(&p
[2], &suggestaddr
.s6_addr
[8], 8);
3712 sp
->ipv6cp
.opts
|= (1 << IPV6CP_OPT_IFID
);
3714 log(-1, " [suggestaddr %s]",
3715 ip6_sprintf(&suggestaddr
));
3716 #ifdef IPV6CP_MYIFID_DYN
3718 * When doing dynamic address assignment,
3719 * we accept his offer.
3721 if (sp
->ipv6cp
.flags
& IPV6CP_MYIFID_DYN
) {
3722 struct in6_addr lastsuggest
;
3724 * If <suggested myaddr from peer> equals to
3725 * <hisaddr we have suggested last time>,
3726 * we have a collision. generate new random
3729 sppp_suggest_ip6_addr(&lastsuggest
);
3730 if (IN6_ARE_ADDR_EQUAL(&suggestaddr
,
3733 log(-1, " [random]");
3734 sppp_gen_ip6_addr(sp
, &suggestaddr
);
3736 sppp_set_ip6_addr(sp
, &suggestaddr
, 0);
3738 log(-1, " [agree]");
3739 sp
->ipv6cp
.flags
|= IPV6CP_MYIFID_SEEN
;
3743 * Since we do not do dynamic address assignment,
3744 * we ignore it and thus continue to negotiate
3745 * our already existing value. This can possibly
3746 * go into infinite request-reject loop.
3748 * This is not likely because we normally use
3749 * ifid based on MAC-address.
3750 * If you have no ethernet card on the node, too bad.
3751 * XXX should we use fail_counter?
3756 case IPV6CP_OPT_COMPRESS
:
3758 * Peer wants different compression parameters.
3767 kfree (buf
, M_TEMP
);
3771 sppp_ipv6cp_tlu(struct sppp
*sp
)
3773 /* we are up - notify isdn daemon */
3779 sppp_ipv6cp_tld(struct sppp
*sp
)
3784 sppp_ipv6cp_tls(struct sppp
*sp
)
3786 /* indicate to LCP that it must stay alive */
3787 sp
->lcp
.protos
|= (1 << IDX_IPV6CP
);
3791 sppp_ipv6cp_tlf(struct sppp
*sp
)
3794 #if 0 /* need #if 0 to close IPv6CP properly */
3795 /* we no longer need LCP */
3796 sp
->lcp
.protos
&= ~(1 << IDX_IPV6CP
);
3797 sppp_lcp_check_and_close(sp
);
3802 sppp_ipv6cp_scr(struct sppp
*sp
)
3804 char opt
[10 /* ifid */ + 4 /* compression, minimum */];
3805 struct in6_addr ouraddr
;
3808 if (sp
->ipv6cp
.opts
& (1 << IPV6CP_OPT_IFID
)) {
3809 sppp_get_ip6_addrs(sp
, &ouraddr
, 0, 0);
3810 opt
[i
++] = IPV6CP_OPT_IFID
;
3812 bcopy(&ouraddr
.s6_addr
[8], &opt
[i
], 8);
3817 if (sp
->ipv6cp
.opts
& (1 << IPV6CP_OPT_COMPRESSION
)) {
3818 opt
[i
++] = IPV6CP_OPT_COMPRESSION
;
3820 opt
[i
++] = 0; /* TBD */
3821 opt
[i
++] = 0; /* TBD */
3822 /* variable length data may follow */
3826 sp
->confid
[IDX_IPV6CP
] = ++sp
->pp_seq
[IDX_IPV6CP
];
3827 sppp_cp_send(sp
, PPP_IPV6CP
, CONF_REQ
, sp
->confid
[IDX_IPV6CP
], i
, &opt
);
3831 sppp_ipv6cp_init(struct sppp
*sp
)
3836 sppp_ipv6cp_up(struct sppp
*sp
)
3841 sppp_ipv6cp_down(struct sppp
*sp
)
3847 sppp_ipv6cp_open(struct sppp
*sp
)
3852 sppp_ipv6cp_close(struct sppp
*sp
)
3857 sppp_ipv6cp_TO(void *sp
)
3862 sppp_ipv6cp_RCR(struct sppp
*sp
, struct lcp_header
*h
, int len
)
3868 sppp_ipv6cp_RCN_rej(struct sppp
*sp
, struct lcp_header
*h
, int len
)
3873 sppp_ipv6cp_RCN_nak(struct sppp
*sp
, struct lcp_header
*h
, int len
)
3878 sppp_ipv6cp_tlu(struct sppp
*sp
)
3883 sppp_ipv6cp_tld(struct sppp
*sp
)
3888 sppp_ipv6cp_tls(struct sppp
*sp
)
3893 sppp_ipv6cp_tlf(struct sppp
*sp
)
3898 sppp_ipv6cp_scr(struct sppp
*sp
)
3904 *--------------------------------------------------------------------------*
3906 * The CHAP implementation. *
3908 *--------------------------------------------------------------------------*
3912 * The authentication protocols don't employ a full-fledged state machine as
3913 * the control protocols do, since they do have Open and Close events, but
3914 * not Up and Down, nor are they explicitly terminated. Also, use of the
3915 * authentication protocols may be different in both directions (this makes
3916 * sense, think of a machine that never accepts incoming calls but only
3917 * calls out, it doesn't require the called party to authenticate itself).
3919 * Our state machine for the local authentication protocol (we are requesting
3920 * the peer to authenticate) looks like:
3923 * +--------------------------------------------+
3925 * +--------+ Close +---------+ RCA+
3926 * | |<----------------------------------| |------+
3927 * +--->| Closed | TO* | Opened | sca |
3928 * | | |-----+ +-------| |<-----+
3929 * | +--------+ irc | | +---------+
3935 * | | +------->+ | |
3937 * | +--------+ V | |
3938 * | | |<----+<--------------------+ |
3944 * +------+ +------------------------------------------+
3945 * scn,tld sca,irc,ict,tlu
3950 * Open: LCP reached authentication phase
3951 * Close: LCP reached terminate phase
3953 * RCA+: received reply (pap-req, chap-response), acceptable
3954 * RCN: received reply (pap-req, chap-response), not acceptable
3955 * TO+: timeout with restart counter >= 0
3956 * TO-: timeout with restart counter < 0
3957 * TO*: reschedule timeout for CHAP
3959 * scr: send request packet (none for PAP, chap-challenge)
3960 * sca: send ack packet (pap-ack, chap-success)
3961 * scn: send nak packet (pap-nak, chap-failure)
3962 * ict: initialize re-challenge timer (CHAP only)
3964 * tlu: this-layer-up, LCP reaches network phase
3965 * tld: this-layer-down, LCP enters terminate phase
3967 * Note that in CHAP mode, after sending a new challenge, while the state
3968 * automaton falls back into Req-Sent state, it doesn't signal a tld
3969 * event to LCP, so LCP remains in network phase. Only after not getting
3970 * any response (or after getting an unacceptable response), CHAP closes,
3971 * causing LCP to enter terminate phase.
3973 * With PAP, there is no initial request that can be sent. The peer is
3974 * expected to send one based on the successful negotiation of PAP as
3975 * the authentication protocol during the LCP option negotiation.
3977 * Incoming authentication protocol requests (remote requests
3978 * authentication, we are peer) don't employ a state machine at all,
3979 * they are simply answered. Some peers [Ascend P50 firmware rev
3980 * 4.50] react allergically when sending IPCP requests while they are
3981 * still in authentication phase (thereby violating the standard that
3982 * demands that these NCP packets are to be discarded), so we keep
3983 * track of the peer demanding us to authenticate, and only proceed to
3984 * phase network once we've seen a positive acknowledge for the
3989 * Handle incoming CHAP packets.
3992 sppp_chap_input(struct sppp
*sp
, struct mbuf
*m
)
3995 struct lcp_header
*h
;
3997 u_char
*value
, *name
, digest
[AUTHKEYLEN
], dsize
;
3998 int value_len
, name_len
;
4001 len
= m
->m_pkthdr
.len
;
4005 SPP_FMT
"chap invalid packet length: %d bytes\n",
4006 SPP_ARGS(ifp
), len
);
4009 h
= mtod (m
, struct lcp_header
*);
4010 if (len
> ntohs (h
->len
))
4011 len
= ntohs (h
->len
);
4014 /* challenge, failure and success are his authproto */
4015 case CHAP_CHALLENGE
:
4016 value
= 1 + (u_char
*)(h
+1);
4017 value_len
= value
[-1];
4018 name
= value
+ value_len
;
4019 name_len
= len
- value_len
- 5;
4023 SPP_FMT
"chap corrupted challenge "
4024 "<%s id=0x%x len=%d",
4026 sppp_auth_type_name(PPP_CHAP
, h
->type
),
4027 h
->ident
, ntohs(h
->len
));
4028 sppp_print_bytes((u_char
*) (h
+1), len
-4);
4036 SPP_FMT
"chap input <%s id=0x%x len=%d name=",
4038 sppp_auth_type_name(PPP_CHAP
, h
->type
), h
->ident
,
4040 sppp_print_string((char*) name
, name_len
);
4041 log(-1, " value-size=%d value=", value_len
);
4042 sppp_print_bytes(value
, value_len
);
4046 /* Compute reply value. */
4048 MD5Update(&ctx
, &h
->ident
, 1);
4049 MD5Update(&ctx
, sp
->myauth
.secret
,
4050 sppp_strnlen(sp
->myauth
.secret
, AUTHKEYLEN
));
4051 MD5Update(&ctx
, value
, value_len
);
4052 MD5Final(digest
, &ctx
);
4053 dsize
= sizeof digest
;
4055 sppp_auth_send(&chap
, sp
, CHAP_RESPONSE
, h
->ident
,
4056 sizeof dsize
, (const char *)&dsize
,
4057 sizeof digest
, digest
,
4058 (size_t)sppp_strnlen(sp
->myauth
.name
, AUTHNAMELEN
),
4065 log(LOG_DEBUG
, SPP_FMT
"chap success",
4069 sppp_print_string((char*)(h
+ 1), len
- 4);
4076 sp
->pp_flags
&= ~PP_NEEDAUTH
;
4077 if (sp
->myauth
.proto
== PPP_CHAP
&&
4078 (sp
->lcp
.opts
& (1 << LCP_OPT_AUTH_PROTO
)) &&
4079 (sp
->lcp
.protos
& (1 << IDX_CHAP
)) == 0) {
4081 * We are authenticator for CHAP but didn't
4082 * complete yet. Leave it to tlu to proceed
4089 sppp_phase_network(sp
);
4094 log(LOG_INFO
, SPP_FMT
"chap failure",
4098 sppp_print_string((char*)(h
+ 1), len
- 4);
4102 log(LOG_INFO
, SPP_FMT
"chap failure\n",
4104 /* await LCP shutdown by authenticator */
4107 /* response is my authproto */
4109 value
= 1 + (u_char
*)(h
+1);
4110 value_len
= value
[-1];
4111 name
= value
+ value_len
;
4112 name_len
= len
- value_len
- 5;
4116 SPP_FMT
"chap corrupted response "
4117 "<%s id=0x%x len=%d",
4119 sppp_auth_type_name(PPP_CHAP
, h
->type
),
4120 h
->ident
, ntohs(h
->len
));
4121 sppp_print_bytes((u_char
*)(h
+1), len
-4);
4126 if (h
->ident
!= sp
->confid
[IDX_CHAP
]) {
4129 SPP_FMT
"chap dropping response for old ID "
4130 "(got %d, expected %d)\n",
4132 h
->ident
, sp
->confid
[IDX_CHAP
]);
4135 if (name_len
!= sppp_strnlen(sp
->hisauth
.name
, AUTHNAMELEN
)
4136 || bcmp(name
, sp
->hisauth
.name
, name_len
) != 0) {
4137 log(LOG_INFO
, SPP_FMT
"chap response, his name ",
4139 sppp_print_string(name
, name_len
);
4140 log(-1, " != expected ");
4141 sppp_print_string(sp
->hisauth
.name
,
4142 sppp_strnlen(sp
->hisauth
.name
, AUTHNAMELEN
));
4146 log(LOG_DEBUG
, SPP_FMT
"chap input(%s) "
4147 "<%s id=0x%x len=%d name=",
4149 sppp_state_name(sp
->state
[IDX_CHAP
]),
4150 sppp_auth_type_name(PPP_CHAP
, h
->type
),
4151 h
->ident
, ntohs (h
->len
));
4152 sppp_print_string((char*)name
, name_len
);
4153 log(-1, " value-size=%d value=", value_len
);
4154 sppp_print_bytes(value
, value_len
);
4157 if (value_len
!= AUTHKEYLEN
) {
4160 SPP_FMT
"chap bad hash value length: "
4161 "%d bytes, should be %d\n",
4162 SPP_ARGS(ifp
), value_len
,
4168 MD5Update(&ctx
, &h
->ident
, 1);
4169 MD5Update(&ctx
, sp
->hisauth
.secret
,
4170 sppp_strnlen(sp
->hisauth
.secret
, AUTHKEYLEN
));
4171 MD5Update(&ctx
, sp
->myauth
.challenge
, AUTHKEYLEN
);
4172 MD5Final(digest
, &ctx
);
4174 #define FAILMSG "Failed..."
4175 #define SUCCMSG "Welcome!"
4177 if (value_len
!= sizeof digest
||
4178 bcmp(digest
, value
, value_len
) != 0) {
4179 /* action scn, tld */
4180 sppp_auth_send(&chap
, sp
, CHAP_FAILURE
, h
->ident
,
4181 sizeof(FAILMSG
) - 1, (u_char
*)FAILMSG
,
4186 /* action sca, perhaps tlu */
4187 if (sp
->state
[IDX_CHAP
] == STATE_REQ_SENT
||
4188 sp
->state
[IDX_CHAP
] == STATE_OPENED
)
4189 sppp_auth_send(&chap
, sp
, CHAP_SUCCESS
, h
->ident
,
4190 sizeof(SUCCMSG
) - 1, (u_char
*)SUCCMSG
,
4192 if (sp
->state
[IDX_CHAP
] == STATE_REQ_SENT
) {
4193 sppp_cp_change_state(&chap
, sp
, STATE_OPENED
);
4199 /* Unknown CHAP packet type -- ignore. */
4201 log(LOG_DEBUG
, SPP_FMT
"chap unknown input(%s) "
4202 "<0x%x id=0x%xh len=%d",
4204 sppp_state_name(sp
->state
[IDX_CHAP
]),
4205 h
->type
, h
->ident
, ntohs(h
->len
));
4206 sppp_print_bytes((u_char
*)(h
+1), len
-4);
4215 sppp_chap_init(struct sppp
*sp
)
4217 /* Chap doesn't have STATE_INITIAL at all. */
4218 sp
->state
[IDX_CHAP
] = STATE_CLOSED
;
4219 sp
->fail_counter
[IDX_CHAP
] = 0;
4220 sp
->pp_seq
[IDX_CHAP
] = 0;
4221 sp
->pp_rseq
[IDX_CHAP
] = 0;
4222 #if defined(__DragonFly__)
4223 callout_init(&sp
->timeout
[IDX_CHAP
]);
4228 sppp_chap_open(struct sppp
*sp
)
4230 if (sp
->myauth
.proto
== PPP_CHAP
&&
4231 (sp
->lcp
.opts
& (1 << LCP_OPT_AUTH_PROTO
)) != 0) {
4232 /* we are authenticator for CHAP, start it */
4234 sp
->rst_counter
[IDX_CHAP
] = sp
->lcp
.max_configure
;
4235 sppp_cp_change_state(&chap
, sp
, STATE_REQ_SENT
);
4237 /* nothing to be done if we are peer, await a challenge */
4241 sppp_chap_close(struct sppp
*sp
)
4243 if (sp
->state
[IDX_CHAP
] != STATE_CLOSED
)
4244 sppp_cp_change_state(&chap
, sp
, STATE_CLOSED
);
4248 sppp_chap_TO(void *cookie
)
4250 struct sppp
*sp
= (struct sppp
*)cookie
;
4256 log(LOG_DEBUG
, SPP_FMT
"chap TO(%s) rst_counter = %d\n",
4258 sppp_state_name(sp
->state
[IDX_CHAP
]),
4259 sp
->rst_counter
[IDX_CHAP
]);
4261 if (--sp
->rst_counter
[IDX_CHAP
] < 0)
4263 switch (sp
->state
[IDX_CHAP
]) {
4264 case STATE_REQ_SENT
:
4266 sppp_cp_change_state(&chap
, sp
, STATE_CLOSED
);
4270 /* TO+ (or TO*) event */
4271 switch (sp
->state
[IDX_CHAP
]) {
4274 sp
->rst_counter
[IDX_CHAP
] = sp
->lcp
.max_configure
;
4276 case STATE_REQ_SENT
:
4278 /* sppp_cp_change_state() will restart the timer */
4279 sppp_cp_change_state(&chap
, sp
, STATE_REQ_SENT
);
4287 sppp_chap_tlu(struct sppp
*sp
)
4293 sp
->rst_counter
[IDX_CHAP
] = sp
->lcp
.max_configure
;
4296 * Some broken CHAP implementations (Conware CoNet, firmware
4297 * 4.0.?) don't want to re-authenticate their CHAP once the
4298 * initial challenge-response exchange has taken place.
4299 * Provide for an option to avoid rechallenges.
4301 if ((sp
->hisauth
.flags
& AUTHFLAG_NORECHALLENGE
) == 0) {
4303 * Compute the re-challenge timeout. This will yield
4304 * a number between 300 and 810 seconds.
4306 i
= 300 + ((unsigned)(krandom() & 0xff00) >> 7);
4307 callout_reset(&sp
->timeout
[IDX_CHAP
], i
* hz
, chap
.TO
, sp
);
4312 SPP_FMT
"chap %s, ",
4314 sp
->pp_phase
== PHASE_NETWORK
? "reconfirmed": "tlu");
4315 if ((sp
->hisauth
.flags
& AUTHFLAG_NORECHALLENGE
) == 0)
4316 log(-1, "next re-challenge in %d seconds\n", i
);
4318 log(-1, "re-challenging supressed\n");
4323 /* indicate to LCP that we need to be closed down */
4324 sp
->lcp
.protos
|= (1 << IDX_CHAP
);
4326 if (sp
->pp_flags
& PP_NEEDAUTH
) {
4328 * Remote is authenticator, but his auth proto didn't
4329 * complete yet. Defer the transition to network
4339 * If we are already in phase network, we are done here. This
4340 * is the case if this is a dummy tlu event after a re-challenge.
4342 if (sp
->pp_phase
!= PHASE_NETWORK
)
4343 sppp_phase_network(sp
);
4347 sppp_chap_tld(struct sppp
*sp
)
4352 log(LOG_DEBUG
, SPP_FMT
"chap tld\n", SPP_ARGS(ifp
));
4353 callout_stop(&sp
->timeout
[IDX_CHAP
]);
4354 sp
->lcp
.protos
&= ~(1 << IDX_CHAP
);
4360 sppp_chap_scr(struct sppp
*sp
)
4365 /* Compute random challenge. */
4366 ch
= (u_long
*)sp
->myauth
.challenge
;
4367 #if defined(__DragonFly__)
4368 read_random(&seed
, sizeof seed
);
4373 seed
= tv
.tv_sec
^ tv
.tv_usec
;
4376 ch
[0] = seed
^ krandom();
4377 ch
[1] = seed
^ krandom();
4378 ch
[2] = seed
^ krandom();
4379 ch
[3] = seed
^ krandom();
4382 sp
->confid
[IDX_CHAP
] = ++sp
->pp_seq
[IDX_CHAP
];
4384 sppp_auth_send(&chap
, sp
, CHAP_CHALLENGE
, sp
->confid
[IDX_CHAP
],
4385 sizeof clen
, (const char *)&clen
,
4386 (size_t)AUTHKEYLEN
, sp
->myauth
.challenge
,
4387 (size_t)sppp_strnlen(sp
->myauth
.name
, AUTHNAMELEN
),
4393 *--------------------------------------------------------------------------*
4395 * The PAP implementation. *
4397 *--------------------------------------------------------------------------*
4400 * For PAP, we need to keep a little state also if we are the peer, not the
4401 * authenticator. This is since we don't get a request to authenticate, but
4402 * have to repeatedly authenticate ourself until we got a response (or the
4403 * retry counter is expired).
4407 * Handle incoming PAP packets. */
4409 sppp_pap_input(struct sppp
*sp
, struct mbuf
*m
)
4412 struct lcp_header
*h
;
4414 u_char
*name
, *passwd
, mlen
;
4415 int name_len
, passwd_len
;
4418 * Malicious input might leave this uninitialized, so
4419 * init to an impossible value.
4423 len
= m
->m_pkthdr
.len
;
4427 SPP_FMT
"pap invalid packet length: %d bytes\n",
4428 SPP_ARGS(ifp
), len
);
4431 h
= mtod (m
, struct lcp_header
*);
4432 if (len
> ntohs (h
->len
))
4433 len
= ntohs (h
->len
);
4435 /* PAP request is my authproto */
4437 name
= 1 + (u_char
*)(h
+1);
4438 name_len
= name
[-1];
4439 passwd
= name
+ name_len
+ 1;
4440 if (name_len
> len
- 6 ||
4441 (passwd_len
= passwd
[-1]) > len
- 6 - name_len
) {
4443 log(LOG_DEBUG
, SPP_FMT
"pap corrupted input "
4444 "<%s id=0x%x len=%d",
4446 sppp_auth_type_name(PPP_PAP
, h
->type
),
4447 h
->ident
, ntohs(h
->len
));
4448 sppp_print_bytes((u_char
*)(h
+1), len
-4);
4454 log(LOG_DEBUG
, SPP_FMT
"pap input(%s) "
4455 "<%s id=0x%x len=%d name=",
4457 sppp_state_name(sp
->state
[IDX_PAP
]),
4458 sppp_auth_type_name(PPP_PAP
, h
->type
),
4459 h
->ident
, ntohs(h
->len
));
4460 sppp_print_string((char*)name
, name_len
);
4461 log(-1, " passwd=");
4462 sppp_print_string((char*)passwd
, passwd_len
);
4465 if (name_len
!= sppp_strnlen(sp
->hisauth
.name
, AUTHNAMELEN
) ||
4466 passwd_len
!= sppp_strnlen(sp
->hisauth
.secret
, AUTHKEYLEN
) ||
4467 bcmp(name
, sp
->hisauth
.name
, name_len
) != 0 ||
4468 bcmp(passwd
, sp
->hisauth
.secret
, passwd_len
) != 0) {
4469 /* action scn, tld */
4470 mlen
= sizeof(FAILMSG
) - 1;
4471 sppp_auth_send(&pap
, sp
, PAP_NAK
, h
->ident
,
4472 sizeof mlen
, (const char *)&mlen
,
4473 sizeof(FAILMSG
) - 1, (u_char
*)FAILMSG
,
4478 /* action sca, perhaps tlu */
4479 if (sp
->state
[IDX_PAP
] == STATE_REQ_SENT
||
4480 sp
->state
[IDX_PAP
] == STATE_OPENED
) {
4481 mlen
= sizeof(SUCCMSG
) - 1;
4482 sppp_auth_send(&pap
, sp
, PAP_ACK
, h
->ident
,
4483 sizeof mlen
, (const char *)&mlen
,
4484 sizeof(SUCCMSG
) - 1, (u_char
*)SUCCMSG
,
4487 if (sp
->state
[IDX_PAP
] == STATE_REQ_SENT
) {
4488 sppp_cp_change_state(&pap
, sp
, STATE_OPENED
);
4493 /* ack and nak are his authproto */
4495 callout_stop(&sp
->pap_my_to
);
4497 log(LOG_DEBUG
, SPP_FMT
"pap success",
4499 name
= 1 + (u_char
*)(h
+ 1);
4500 name_len
= name
[-1];
4501 if (len
> 5 && name_len
< len
+4) {
4503 sppp_print_string(name
, name_len
);
4510 sp
->pp_flags
&= ~PP_NEEDAUTH
;
4511 if (sp
->myauth
.proto
== PPP_PAP
&&
4512 (sp
->lcp
.opts
& (1 << LCP_OPT_AUTH_PROTO
)) &&
4513 (sp
->lcp
.protos
& (1 << IDX_PAP
)) == 0) {
4515 * We are authenticator for PAP but didn't
4516 * complete yet. Leave it to tlu to proceed
4527 sppp_phase_network(sp
);
4531 callout_stop(&sp
->pap_my_to
);
4533 log(LOG_INFO
, SPP_FMT
"pap failure",
4535 name
= 1 + (u_char
*)(h
+ 1);
4536 name_len
= name
[-1];
4537 if (len
> 5 && name_len
< len
+4) {
4539 sppp_print_string(name
, name_len
);
4543 log(LOG_INFO
, SPP_FMT
"pap failure\n",
4545 /* await LCP shutdown by authenticator */
4549 /* Unknown PAP packet type -- ignore. */
4551 log(LOG_DEBUG
, SPP_FMT
"pap corrupted input "
4552 "<0x%x id=0x%x len=%d",
4554 h
->type
, h
->ident
, ntohs(h
->len
));
4555 sppp_print_bytes((u_char
*)(h
+1), len
-4);
4564 sppp_pap_init(struct sppp
*sp
)
4566 /* PAP doesn't have STATE_INITIAL at all. */
4567 sp
->state
[IDX_PAP
] = STATE_CLOSED
;
4568 sp
->fail_counter
[IDX_PAP
] = 0;
4569 sp
->pp_seq
[IDX_PAP
] = 0;
4570 sp
->pp_rseq
[IDX_PAP
] = 0;
4571 #if defined(__DragonFly__)
4572 callout_init(&sp
->timeout
[IDX_PAP
]);
4573 callout_init(&sp
->pap_my_to
);
4578 sppp_pap_open(struct sppp
*sp
)
4580 if (sp
->hisauth
.proto
== PPP_PAP
&&
4581 (sp
->lcp
.opts
& (1 << LCP_OPT_AUTH_PROTO
)) != 0) {
4582 /* we are authenticator for PAP, start our timer */
4583 sp
->rst_counter
[IDX_PAP
] = sp
->lcp
.max_configure
;
4584 sppp_cp_change_state(&pap
, sp
, STATE_REQ_SENT
);
4586 if (sp
->myauth
.proto
== PPP_PAP
) {
4587 /* we are peer, send a request, and start a timer */
4589 callout_reset(&sp
->pap_my_to
, sp
->lcp
.timeout
,
4590 sppp_pap_my_TO
, sp
);
4595 sppp_pap_close(struct sppp
*sp
)
4597 if (sp
->state
[IDX_PAP
] != STATE_CLOSED
)
4598 sppp_cp_change_state(&pap
, sp
, STATE_CLOSED
);
4602 * That's the timeout routine if we are authenticator. Since the
4603 * authenticator is basically passive in PAP, we can't do much here.
4606 sppp_pap_TO(void *cookie
)
4608 struct sppp
*sp
= (struct sppp
*)cookie
;
4614 log(LOG_DEBUG
, SPP_FMT
"pap TO(%s) rst_counter = %d\n",
4616 sppp_state_name(sp
->state
[IDX_PAP
]),
4617 sp
->rst_counter
[IDX_PAP
]);
4619 if (--sp
->rst_counter
[IDX_PAP
] < 0)
4621 switch (sp
->state
[IDX_PAP
]) {
4622 case STATE_REQ_SENT
:
4624 sppp_cp_change_state(&pap
, sp
, STATE_CLOSED
);
4628 /* TO+ event, not very much we could do */
4629 switch (sp
->state
[IDX_PAP
]) {
4630 case STATE_REQ_SENT
:
4631 /* sppp_cp_change_state() will restart the timer */
4632 sppp_cp_change_state(&pap
, sp
, STATE_REQ_SENT
);
4640 * That's the timeout handler if we are peer. Since the peer is active,
4641 * we need to retransmit our PAP request since it is apparently lost.
4642 * XXX We should impose a max counter.
4645 sppp_pap_my_TO(void *cookie
)
4647 struct sppp
*sp
= (struct sppp
*)cookie
;
4651 log(LOG_DEBUG
, SPP_FMT
"pap peer TO\n",
4658 sppp_pap_tlu(struct sppp
*sp
)
4662 sp
->rst_counter
[IDX_PAP
] = sp
->lcp
.max_configure
;
4665 log(LOG_DEBUG
, SPP_FMT
"%s tlu\n",
4666 SPP_ARGS(ifp
), pap
.name
);
4670 /* indicate to LCP that we need to be closed down */
4671 sp
->lcp
.protos
|= (1 << IDX_PAP
);
4673 if (sp
->pp_flags
& PP_NEEDAUTH
) {
4675 * Remote is authenticator, but his auth proto didn't
4676 * complete yet. Defer the transition to network
4683 sppp_phase_network(sp
);
4687 sppp_pap_tld(struct sppp
*sp
)
4692 log(LOG_DEBUG
, SPP_FMT
"pap tld\n", SPP_ARGS(ifp
));
4693 callout_stop(&sp
->timeout
[IDX_PAP
]);
4694 callout_stop(&sp
->pap_my_to
);
4695 sp
->lcp
.protos
&= ~(1 << IDX_PAP
);
4701 sppp_pap_scr(struct sppp
*sp
)
4703 u_char idlen
, pwdlen
;
4705 sp
->confid
[IDX_PAP
] = ++sp
->pp_seq
[IDX_PAP
];
4706 pwdlen
= sppp_strnlen(sp
->myauth
.secret
, AUTHKEYLEN
);
4707 idlen
= sppp_strnlen(sp
->myauth
.name
, AUTHNAMELEN
);
4709 sppp_auth_send(&pap
, sp
, PAP_REQ
, sp
->confid
[IDX_PAP
],
4710 sizeof idlen
, (const char *)&idlen
,
4711 (size_t)idlen
, sp
->myauth
.name
,
4712 sizeof pwdlen
, (const char *)&pwdlen
,
4713 (size_t)pwdlen
, sp
->myauth
.secret
,
4718 * Random miscellaneous functions.
4722 * Send a PAP or CHAP proto packet.
4724 * Varadic function, each of the elements for the ellipsis is of type
4725 * ``size_t mlen, const u_char *msg''. Processing will stop iff
4727 * NOTE: never declare variadic functions with types subject to type
4728 * promotion (i.e. u_char). This is asking for big trouble depending
4729 * on the architecture you are on...
4733 sppp_auth_send(const struct cp
*cp
, struct sppp
*sp
,
4734 unsigned int type
, unsigned int id
,
4738 struct ppp_header
*h
;
4739 struct lcp_header
*lh
;
4747 MGETHDR (m
, MB_DONTWAIT
, MT_DATA
);
4750 m
->m_pkthdr
.rcvif
= 0;
4752 h
= mtod (m
, struct ppp_header
*);
4753 h
->address
= PPP_ALLSTATIONS
; /* broadcast address */
4754 h
->control
= PPP_UI
; /* Unnumbered Info */
4755 h
->protocol
= htons(cp
->proto
);
4757 lh
= (struct lcp_header
*)(h
+ 1);
4760 p
= (u_char
*) (lh
+1);
4765 while ((mlen
= (unsigned int)__va_arg(ap
, size_t)) != 0) {
4766 msg
= __va_arg(ap
, const char *);
4768 if (len
> MHLEN
- PPP_HEADER_LEN
- LCP_HEADER_LEN
) {
4774 bcopy(msg
, p
, mlen
);
4779 m
->m_pkthdr
.len
= m
->m_len
= PPP_HEADER_LEN
+ LCP_HEADER_LEN
+ len
;
4780 lh
->len
= htons (LCP_HEADER_LEN
+ len
);
4783 log(LOG_DEBUG
, SPP_FMT
"%s output <%s id=0x%x len=%d",
4784 SPP_ARGS(ifp
), cp
->name
,
4785 sppp_auth_type_name(cp
->proto
, lh
->type
),
4786 lh
->ident
, ntohs(lh
->len
));
4787 sppp_print_bytes((u_char
*) (lh
+1), len
);
4790 if (IF_QFULL (&sp
->pp_cpq
)) {
4791 IF_DROP (&sp
->pp_fastq
);
4792 IF_DROP (&ifp
->if_snd
);
4796 IF_ENQUEUE (&sp
->pp_cpq
, m
);
4797 if (! (ifp
->if_flags
& IFF_OACTIVE
))
4798 (*ifp
->if_start
) (ifp
);
4799 ifp
->if_obytes
+= m
->m_pkthdr
.len
+ 3;
4803 * Send keepalive packets, every 10 seconds.
4806 sppp_keepalive(void *dummy
)
4812 for (sp
=spppq
; sp
; sp
=sp
->pp_next
) {
4813 struct ifnet
*ifp
= &sp
->pp_if
;
4815 /* Keepalive mode disabled or channel down? */
4816 if (! (sp
->pp_flags
& PP_KEEPALIVE
) ||
4817 ! (ifp
->if_flags
& IFF_RUNNING
))
4820 /* No keepalive in PPP mode if LCP not opened yet. */
4821 if (sp
->pp_mode
!= IFF_CISCO
&&
4822 sp
->pp_phase
< PHASE_AUTHENTICATE
)
4825 if (sp
->pp_alivecnt
== MAXALIVECNT
) {
4826 /* No keepalive packets got. Stop the interface. */
4827 kprintf (SPP_FMT
"down\n", SPP_ARGS(ifp
));
4829 IF_DRAIN(&sp
->pp_cpq
);
4830 if (sp
->pp_mode
!= IFF_CISCO
) {
4832 /* Shut down the PPP link. */
4834 /* Initiate negotiation. XXX */
4838 lwkt_serialize_enter(ifp
->if_serializer
);
4839 if (sp
->pp_alivecnt
<= MAXALIVECNT
)
4841 if (sp
->pp_mode
== IFF_CISCO
)
4842 sppp_cisco_send (sp
, CISCO_KEEPALIVE_REQ
,
4843 ++sp
->pp_seq
[IDX_LCP
], sp
->pp_rseq
[IDX_LCP
]);
4844 else if (sp
->pp_phase
>= PHASE_AUTHENTICATE
) {
4845 long nmagic
= htonl (sp
->lcp
.magic
);
4846 sp
->lcp
.echoid
= ++sp
->pp_seq
[IDX_LCP
];
4847 sppp_cp_send (sp
, PPP_LCP
, ECHO_REQ
,
4848 sp
->lcp
.echoid
, 4, &nmagic
);
4850 lwkt_serialize_exit(ifp
->if_serializer
);
4852 callout_reset(&keepalive_timeout
, hz
* 10, sppp_keepalive
, NULL
);
4857 * Get both IP addresses.
4860 sppp_get_ip_addrs(struct sppp
*sp
, u_long
*src
, u_long
*dst
, u_long
*srcmask
)
4862 struct ifnet
*ifp
= &sp
->pp_if
;
4864 struct sockaddr_in
*si
, *sm
;
4870 * Pick the first AF_INET address from the list,
4871 * aliases don't make any sense on a p2p link anyway.
4874 #if defined(__DragonFly__)
4875 TAILQ_FOREACH(ifa
, &ifp
->if_addrhead
, ifa_link
)
4876 #elif defined(__NetBSD__) || defined (__OpenBSD__)
4877 for (ifa
= ifp
->if_addrlist
.tqh_first
;
4879 ifa
= ifa
->ifa_list
.tqe_next
)
4881 for (ifa
= ifp
->if_addrlist
;
4883 ifa
= ifa
->ifa_next
)
4885 if (ifa
->ifa_addr
->sa_family
== AF_INET
) {
4886 si
= (struct sockaddr_in
*)ifa
->ifa_addr
;
4887 sm
= (struct sockaddr_in
*)ifa
->ifa_netmask
;
4892 if (si
&& si
->sin_addr
.s_addr
) {
4893 ssrc
= si
->sin_addr
.s_addr
;
4895 *srcmask
= ntohl(sm
->sin_addr
.s_addr
);
4898 si
= (struct sockaddr_in
*)ifa
->ifa_dstaddr
;
4899 if (si
&& si
->sin_addr
.s_addr
)
4900 ddst
= si
->sin_addr
.s_addr
;
4903 if (dst
) *dst
= ntohl(ddst
);
4904 if (src
) *src
= ntohl(ssrc
);
4908 * Set my IP address. Must be called at splimp.
4911 sppp_set_ip_addr(struct sppp
*sp
, u_long src
)
4915 struct sockaddr_in
*si
;
4916 struct in_ifaddr
*ia
;
4919 * Pick the first AF_INET address from the list,
4920 * aliases don't make any sense on a p2p link anyway.
4923 #if defined(__DragonFly__)
4924 TAILQ_FOREACH(ifa
, &ifp
->if_addrhead
, ifa_link
)
4925 #elif defined(__NetBSD__) || defined (__OpenBSD__)
4926 for (ifa
= ifp
->if_addrlist
.tqh_first
;
4928 ifa
= ifa
->ifa_list
.tqe_next
)
4930 for (ifa
= ifp
->if_addrlist
;
4932 ifa
= ifa
->ifa_next
)
4935 if (ifa
->ifa_addr
->sa_family
== AF_INET
)
4937 si
= (struct sockaddr_in
*)ifa
->ifa_addr
;
4946 #if __NetBSD_Version__ >= 103080000
4947 struct sockaddr_in new_sin
= *si
;
4949 new_sin
.sin_addr
.s_addr
= htonl(src
);
4950 error
= in_ifinit(ifp
, ifatoia(ifa
), &new_sin
, 1);
4953 log(LOG_DEBUG
, SPP_FMT
"sppp_set_ip_addr: in_ifinit "
4954 " failed, error=%d\n", SPP_ARGS(ifp
), error
);
4957 /* delete old route */
4958 error
= rtinit(ifa
, (int)RTM_DELETE
, RTF_HOST
);
4961 log(LOG_DEBUG
, SPP_FMT
"sppp_set_ip_addr: rtinit DEL failed, error=%d\n",
4962 SPP_ARGS(ifp
), error
);
4965 /* set new address */
4966 si
->sin_addr
.s_addr
= htonl(src
);
4968 LIST_REMOVE(ia
, ia_hash
);
4969 LIST_INSERT_HEAD(INADDR_HASH(si
->sin_addr
.s_addr
), ia
, ia_hash
);
4972 error
= rtinit(ifa
, (int)RTM_ADD
, RTF_HOST
);
4975 log(LOG_DEBUG
, SPP_FMT
"sppp_set_ip_addr: rtinit ADD failed, error=%d",
4976 SPP_ARGS(ifp
), error
);
4984 * Get both IPv6 addresses.
4987 sppp_get_ip6_addrs(struct sppp
*sp
, struct in6_addr
*src
, struct in6_addr
*dst
,
4988 struct in6_addr
*srcmask
)
4990 struct ifnet
*ifp
= &sp
->pp_if
;
4992 struct sockaddr_in6
*si
, *sm
;
4993 struct in6_addr ssrc
, ddst
;
4996 bzero(&ssrc
, sizeof(ssrc
));
4997 bzero(&ddst
, sizeof(ddst
));
4999 * Pick the first link-local AF_INET6 address from the list,
5000 * aliases don't make any sense on a p2p link anyway.
5002 #if defined(__DragonFly__)
5004 TAILQ_FOREACH(ifa
, &ifp
->if_addrhead
, ifa_link
)
5005 #elif defined(__NetBSD__) || defined (__OpenBSD__)
5006 for (ifa
= ifp
->if_addrlist
.tqh_first
, si
= 0;
5008 ifa
= ifa
->ifa_list
.tqe_next
)
5010 for (ifa
= ifp
->if_addrlist
, si
= 0;
5012 ifa
= ifa
->ifa_next
)
5014 if (ifa
->ifa_addr
->sa_family
== AF_INET6
) {
5015 si
= (struct sockaddr_in6
*)ifa
->ifa_addr
;
5016 sm
= (struct sockaddr_in6
*)ifa
->ifa_netmask
;
5017 if (si
&& IN6_IS_ADDR_LINKLOCAL(&si
->sin6_addr
))
5021 if (si
&& !IN6_IS_ADDR_UNSPECIFIED(&si
->sin6_addr
)) {
5022 bcopy(&si
->sin6_addr
, &ssrc
, sizeof(ssrc
));
5024 bcopy(&sm
->sin6_addr
, srcmask
,
5029 si
= (struct sockaddr_in6
*)ifa
->ifa_dstaddr
;
5030 if (si
&& !IN6_IS_ADDR_UNSPECIFIED(&si
->sin6_addr
))
5031 bcopy(&si
->sin6_addr
, &ddst
, sizeof(ddst
));
5035 bcopy(&ddst
, dst
, sizeof(*dst
));
5037 bcopy(&ssrc
, src
, sizeof(*src
));
5040 #ifdef IPV6CP_MYIFID_DYN
5042 * Generate random ifid.
5045 sppp_gen_ip6_addr(struct sppp
*sp
, struct in6_addr
*addr
)
5051 * Set my IPv6 address. Must be called at splimp.
5054 sppp_set_ip6_addr(struct sppp
*sp
, const struct in6_addr
*src
)
5058 struct sockaddr_in6
*sin6
;
5061 * Pick the first link-local AF_INET6 address from the list,
5062 * aliases don't make any sense on a p2p link anyway.
5066 #if defined(__DragonFly__)
5067 TAILQ_FOREACH(ifa
, &ifp
->if_addrhead
, ifa_link
)
5068 #elif defined(__NetBSD__) || defined (__OpenBSD__)
5069 for (ifa
= ifp
->if_addrlist
.tqh_first
;
5071 ifa
= ifa
->ifa_list
.tqe_next
)
5073 for (ifa
= ifp
->if_addrlist
; ifa
; ifa
= ifa
->ifa_next
)
5076 if (ifa
->ifa_addr
->sa_family
== AF_INET6
)
5078 sin6
= (struct sockaddr_in6
*)ifa
->ifa_addr
;
5079 if (sin6
&& IN6_IS_ADDR_LINKLOCAL(&sin6
->sin6_addr
))
5087 struct sockaddr_in6 new_sin6
= *sin6
;
5089 bcopy(src
, &new_sin6
.sin6_addr
, sizeof(new_sin6
.sin6_addr
));
5090 error
= in6_ifinit(ifp
, ifatoia6(ifa
), &new_sin6
, 1);
5093 log(LOG_DEBUG
, SPP_FMT
"sppp_set_ip6_addr: in6_ifinit "
5094 " failed, error=%d\n", SPP_ARGS(ifp
), error
);
5101 * Suggest a candidate address to be used by peer.
5104 sppp_suggest_ip6_addr(struct sppp
*sp
, struct in6_addr
*suggest
)
5106 struct in6_addr myaddr
;
5109 sppp_get_ip6_addrs(sp
, &myaddr
, 0, 0);
5111 myaddr
.s6_addr
[8] &= ~0x02; /* u bit to "local" */
5113 if ((tv
.tv_usec
& 0xff) == 0 && (tv
.tv_sec
& 0xff) == 0) {
5114 myaddr
.s6_addr
[14] ^= 0xff;
5115 myaddr
.s6_addr
[15] ^= 0xff;
5117 myaddr
.s6_addr
[14] ^= (tv
.tv_usec
& 0xff);
5118 myaddr
.s6_addr
[15] ^= (tv
.tv_sec
& 0xff);
5121 bcopy(&myaddr
, suggest
, sizeof(myaddr
));
5126 sppp_params(struct sppp
*sp
, u_long cmd
, void *data
)
5129 struct ifreq
*ifr
= (struct ifreq
*)data
;
5130 struct spppreq
*spr
;
5133 spr
= kmalloc(sizeof(struct spppreq
), M_TEMP
, M_INTWAIT
);
5136 * ifr->ifr_data is supposed to point to a struct spppreq.
5137 * Check the cmd word first before attempting to fetch all the
5140 if ((subcmd
= fuword(ifr
->ifr_data
)) == -1) {
5145 if (copyin((caddr_t
)ifr
->ifr_data
, spr
, sizeof(struct spppreq
)) != 0) {
5151 case (int)SPPPIOGDEFS
:
5152 if (cmd
!= SIOCGIFGENERIC
) {
5157 * We copy over the entire current state, but clean
5158 * out some of the stuff we don't wanna pass up.
5159 * Remember, SIOCGIFGENERIC is unprotected, and can be
5160 * called by any user. No need to ever get PAP or
5161 * CHAP secrets back to userland anyway.
5163 spr
->defs
.pp_phase
= sp
->pp_phase
;
5164 spr
->defs
.enable_vj
= (sp
->confflags
& CONF_ENABLE_VJ
) != 0;
5165 spr
->defs
.enable_ipv6
= (sp
->confflags
& CONF_ENABLE_IPV6
) != 0;
5166 spr
->defs
.lcp
= sp
->lcp
;
5167 spr
->defs
.ipcp
= sp
->ipcp
;
5168 spr
->defs
.ipv6cp
= sp
->ipv6cp
;
5169 spr
->defs
.myauth
= sp
->myauth
;
5170 spr
->defs
.hisauth
= sp
->hisauth
;
5171 bzero(spr
->defs
.myauth
.secret
, AUTHKEYLEN
);
5172 bzero(spr
->defs
.myauth
.challenge
, AUTHKEYLEN
);
5173 bzero(spr
->defs
.hisauth
.secret
, AUTHKEYLEN
);
5174 bzero(spr
->defs
.hisauth
.challenge
, AUTHKEYLEN
);
5176 * Fixup the LCP timeout value to milliseconds so
5177 * spppcontrol doesn't need to bother about the value
5178 * of "hz". We do the reverse calculation below when
5181 spr
->defs
.lcp
.timeout
= sp
->lcp
.timeout
* 1000 / hz
;
5182 rv
= copyout(spr
, (caddr_t
)ifr
->ifr_data
,
5183 sizeof(struct spppreq
));
5186 case (int)SPPPIOSDEFS
:
5187 if (cmd
!= SIOCSIFGENERIC
) {
5192 * We have a very specific idea of which fields we
5193 * allow being passed back from userland, so to not
5194 * clobber our current state. For one, we only allow
5195 * setting anything if LCP is in dead or establish
5196 * phase. Once the authentication negotiations
5197 * started, the authentication settings must not be
5198 * changed again. (The administrator can force an
5199 * ifconfig down in order to get LCP back into dead
5202 * Also, we only allow for authentication parameters to be
5205 * XXX Should allow to set or clear pp_flags.
5207 * Finally, if the respective authentication protocol to
5208 * be used is set differently than 0, but the secret is
5209 * passed as all zeros, we don't trash the existing secret.
5210 * This allows an administrator to change the system name
5211 * only without clobbering the secret (which he didn't get
5212 * back in a previous SPPPIOGDEFS call). However, the
5213 * secrets are cleared if the authentication protocol is
5215 if (sp
->pp_phase
!= PHASE_DEAD
&&
5216 sp
->pp_phase
!= PHASE_ESTABLISH
) {
5221 if ((spr
->defs
.myauth
.proto
!= 0 && spr
->defs
.myauth
.proto
!= PPP_PAP
&&
5222 spr
->defs
.myauth
.proto
!= PPP_CHAP
) ||
5223 (spr
->defs
.hisauth
.proto
!= 0 && spr
->defs
.hisauth
.proto
!= PPP_PAP
&&
5224 spr
->defs
.hisauth
.proto
!= PPP_CHAP
)) {
5229 if (spr
->defs
.myauth
.proto
== 0)
5230 /* resetting myauth */
5231 bzero(&sp
->myauth
, sizeof sp
->myauth
);
5233 /* setting/changing myauth */
5234 sp
->myauth
.proto
= spr
->defs
.myauth
.proto
;
5235 bcopy(spr
->defs
.myauth
.name
, sp
->myauth
.name
, AUTHNAMELEN
);
5236 if (spr
->defs
.myauth
.secret
[0] != '\0')
5237 bcopy(spr
->defs
.myauth
.secret
, sp
->myauth
.secret
,
5240 if (spr
->defs
.hisauth
.proto
== 0)
5241 /* resetting hisauth */
5242 bzero(&sp
->hisauth
, sizeof sp
->hisauth
);
5244 /* setting/changing hisauth */
5245 sp
->hisauth
.proto
= spr
->defs
.hisauth
.proto
;
5246 sp
->hisauth
.flags
= spr
->defs
.hisauth
.flags
;
5247 bcopy(spr
->defs
.hisauth
.name
, sp
->hisauth
.name
, AUTHNAMELEN
);
5248 if (spr
->defs
.hisauth
.secret
[0] != '\0')
5249 bcopy(spr
->defs
.hisauth
.secret
, sp
->hisauth
.secret
,
5252 /* set LCP restart timer timeout */
5253 if (spr
->defs
.lcp
.timeout
!= 0)
5254 sp
->lcp
.timeout
= spr
->defs
.lcp
.timeout
* hz
/ 1000;
5255 /* set VJ enable and IPv6 disable flags */
5257 if (spr
->defs
.enable_vj
)
5258 sp
->confflags
|= CONF_ENABLE_VJ
;
5260 sp
->confflags
&= ~CONF_ENABLE_VJ
;
5263 if (spr
->defs
.enable_ipv6
)
5264 sp
->confflags
|= CONF_ENABLE_IPV6
;
5266 sp
->confflags
&= ~CONF_ENABLE_IPV6
;
5281 sppp_phase_network(struct sppp
*sp
)
5287 sp
->pp_phase
= PHASE_NETWORK
;
5290 log(LOG_DEBUG
, SPP_FMT
"phase %s\n", SPP_ARGS(ifp
),
5291 sppp_phase_name(sp
->pp_phase
));
5293 /* Notify NCPs now. */
5294 for (i
= 0; i
< IDX_COUNT
; i
++)
5295 if ((cps
[i
])->flags
& CP_NCP
)
5298 /* Send Up events to all NCPs. */
5299 for (i
= 0, mask
= 1; i
< IDX_COUNT
; i
++, mask
<<= 1)
5300 if ((sp
->lcp
.protos
& mask
) && ((cps
[i
])->flags
& CP_NCP
))
5303 /* if no NCP is starting, all this was in vain, close down */
5304 sppp_lcp_check_and_close(sp
);
5309 sppp_cp_type_name(u_char type
)
5311 static char buf
[12];
5313 case CONF_REQ
: return "conf-req";
5314 case CONF_ACK
: return "conf-ack";
5315 case CONF_NAK
: return "conf-nak";
5316 case CONF_REJ
: return "conf-rej";
5317 case TERM_REQ
: return "term-req";
5318 case TERM_ACK
: return "term-ack";
5319 case CODE_REJ
: return "code-rej";
5320 case PROTO_REJ
: return "proto-rej";
5321 case ECHO_REQ
: return "echo-req";
5322 case ECHO_REPLY
: return "echo-reply";
5323 case DISC_REQ
: return "discard-req";
5325 ksnprintf (buf
, sizeof(buf
), "cp/0x%x", type
);
5330 sppp_auth_type_name(u_short proto
, u_char type
)
5332 static char buf
[12];
5336 case CHAP_CHALLENGE
: return "challenge";
5337 case CHAP_RESPONSE
: return "response";
5338 case CHAP_SUCCESS
: return "success";
5339 case CHAP_FAILURE
: return "failure";
5343 case PAP_REQ
: return "req";
5344 case PAP_ACK
: return "ack";
5345 case PAP_NAK
: return "nak";
5348 ksnprintf (buf
, sizeof(buf
), "auth/0x%x", type
);
5353 sppp_lcp_opt_name(u_char opt
)
5355 static char buf
[12];
5357 case LCP_OPT_MRU
: return "mru";
5358 case LCP_OPT_ASYNC_MAP
: return "async-map";
5359 case LCP_OPT_AUTH_PROTO
: return "auth-proto";
5360 case LCP_OPT_QUAL_PROTO
: return "qual-proto";
5361 case LCP_OPT_MAGIC
: return "magic";
5362 case LCP_OPT_PROTO_COMP
: return "proto-comp";
5363 case LCP_OPT_ADDR_COMP
: return "addr-comp";
5365 ksnprintf (buf
, sizeof(buf
), "lcp/0x%x", opt
);
5370 sppp_ipcp_opt_name(u_char opt
)
5372 static char buf
[12];
5374 case IPCP_OPT_ADDRESSES
: return "addresses";
5375 case IPCP_OPT_COMPRESSION
: return "compression";
5376 case IPCP_OPT_ADDRESS
: return "address";
5378 ksnprintf (buf
, sizeof(buf
), "ipcp/0x%x", opt
);
5384 sppp_ipv6cp_opt_name(u_char opt
)
5386 static char buf
[12];
5388 case IPV6CP_OPT_IFID
: return "ifid";
5389 case IPV6CP_OPT_COMPRESSION
: return "compression";
5391 ksprintf (buf
, "0x%x", opt
);
5397 sppp_state_name(int state
)
5400 case STATE_INITIAL
: return "initial";
5401 case STATE_STARTING
: return "starting";
5402 case STATE_CLOSED
: return "closed";
5403 case STATE_STOPPED
: return "stopped";
5404 case STATE_CLOSING
: return "closing";
5405 case STATE_STOPPING
: return "stopping";
5406 case STATE_REQ_SENT
: return "req-sent";
5407 case STATE_ACK_RCVD
: return "ack-rcvd";
5408 case STATE_ACK_SENT
: return "ack-sent";
5409 case STATE_OPENED
: return "opened";
5415 sppp_phase_name(enum ppp_phase phase
)
5418 case PHASE_DEAD
: return "dead";
5419 case PHASE_ESTABLISH
: return "establish";
5420 case PHASE_TERMINATE
: return "terminate";
5421 case PHASE_AUTHENTICATE
: return "authenticate";
5422 case PHASE_NETWORK
: return "network";
5428 sppp_proto_name(u_short proto
)
5430 static char buf
[12];
5432 case PPP_LCP
: return "lcp";
5433 case PPP_IPCP
: return "ipcp";
5434 case PPP_PAP
: return "pap";
5435 case PPP_CHAP
: return "chap";
5436 case PPP_IPV6CP
: return "ipv6cp";
5438 ksnprintf(buf
, sizeof(buf
), "proto/0x%x", (unsigned)proto
);
5443 sppp_print_bytes(const u_char
*p
, u_short len
)
5446 log(-1, " %*D", len
, p
, "-");
5450 sppp_print_string(const char *p
, u_short len
)
5457 * Print only ASCII chars directly. RFC 1994 recommends
5458 * using only them, but we don't rely on it. */
5459 if (c
< ' ' || c
> '~')
5460 log(-1, "\\x%x", c
);
5467 sppp_dotted_quad(u_long addr
)
5470 ksprintf(s
, "%d.%d.%d.%d",
5471 (int)((addr
>> 24) & 0xff),
5472 (int)((addr
>> 16) & 0xff),
5473 (int)((addr
>> 8) & 0xff),
5474 (int)(addr
& 0xff));
5479 sppp_strnlen(u_char
*p
, int max
)
5483 for (len
= 0; len
< max
&& *p
; ++p
)
5488 /* a dummy, used to drop uninteresting events */
5490 sppp_null(struct sppp
*unused
)
5492 /* do just nothing */