Home | History | Annotate | Line # | Download | only in net
if_spppsubr.c revision 1.26.4.1
      1  1.26.4.1   thorpej /*	$NetBSD: if_spppsubr.c,v 1.26.4.1 2001/11/12 21:19:18 thorpej Exp $	 */
      2       1.4  explorer 
      3       1.1  explorer /*
      4       1.1  explorer  * Synchronous PPP/Cisco link level subroutines.
      5       1.1  explorer  * Keepalive protocol implemented in both Cisco and PPP modes.
      6       1.1  explorer  *
      7       1.3  explorer  * Copyright (C) 1994-1996 Cronyx Engineering Ltd.
      8       1.3  explorer  * Author: Serge Vakulenko, <vak (at) cronyx.ru>
      9       1.3  explorer  *
     10       1.3  explorer  * Heavily revamped to conform to RFC 1661.
     11       1.3  explorer  * Copyright (C) 1997, Joerg Wunsch.
     12       1.1  explorer  *
     13       1.9    itojun  * RFC2472 IPv6CP support.
     14       1.9    itojun  * Copyright (C) 2000, Jun-ichiro itojun Hagino <itojun (at) iijlab.net>.
     15       1.9    itojun  *
     16       1.1  explorer  * This software is distributed with NO WARRANTIES, not even the implied
     17       1.1  explorer  * warranties for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
     18       1.1  explorer  *
     19       1.1  explorer  * Authors grant any other persons or organisations permission to use
     20       1.1  explorer  * or modify this software as long as this message is kept with the software,
     21       1.1  explorer  * all derivative works or modified versions.
     22       1.1  explorer  *
     23       1.3  explorer  * From: Version 2.4, Thu Apr 30 17:17:21 MSD 1997
     24       1.3  explorer  *
     25       1.3  explorer  * From: if_spppsubr.c,v 1.39 1998/04/04 13:26:03 phk Exp
     26       1.3  explorer  *
     27       1.4  explorer  * From: Id: if_spppsubr.c,v 1.23 1999/02/23 14:47:50 hm Exp
     28       1.1  explorer  */
     29       1.1  explorer 
     30       1.1  explorer #include "opt_inet.h"
     31       1.3  explorer #include "opt_ipx.h"
     32       1.3  explorer #include "opt_iso.h"
     33       1.1  explorer #include "opt_ns.h"
     34       1.1  explorer 
     35       1.1  explorer #include <sys/param.h>
     36       1.3  explorer 
     37       1.1  explorer #include <sys/systm.h>
     38       1.1  explorer #include <sys/kernel.h>
     39       1.3  explorer #include <sys/sockio.h>
     40       1.1  explorer #include <sys/socket.h>
     41       1.3  explorer #include <sys/syslog.h>
     42       1.3  explorer #include <sys/malloc.h>
     43       1.1  explorer #include <sys/mbuf.h>
     44       1.1  explorer 
     45       1.3  explorer #include <sys/md5.h>
     46       1.3  explorer 
     47       1.1  explorer #include <net/if.h>
     48       1.1  explorer #include <net/netisr.h>
     49       1.1  explorer #include <net/if_types.h>
     50       1.3  explorer #include <net/route.h>
     51      1.11  sommerfe #include <net/ppp_defs.h>
     52       1.3  explorer 
     53       1.3  explorer #include <machine/stdarg.h>
     54       1.1  explorer 
     55       1.1  explorer #include <netinet/in.h>
     56       1.1  explorer #include <netinet/in_systm.h>
     57       1.1  explorer #include <netinet/in_var.h>
     58      1.12    itojun #ifdef INET
     59       1.1  explorer #include <netinet/ip.h>
     60       1.1  explorer #include <netinet/tcp.h>
     61      1.12    itojun #endif
     62       1.3  explorer #include <net/ethertypes.h>
     63       1.1  explorer 
     64       1.1  explorer #ifdef IPX
     65       1.1  explorer #include <netipx/ipx.h>
     66       1.1  explorer #include <netipx/ipx_if.h>
     67       1.1  explorer #endif
     68       1.1  explorer 
     69       1.1  explorer #ifdef NS
     70       1.1  explorer #include <netns/ns.h>
     71       1.1  explorer #include <netns/ns_if.h>
     72       1.1  explorer #endif
     73       1.1  explorer 
     74       1.1  explorer #ifdef ISO
     75       1.1  explorer #include <netiso/argo_debug.h>
     76       1.1  explorer #include <netiso/iso.h>
     77       1.1  explorer #include <netiso/iso_var.h>
     78       1.1  explorer #include <netiso/iso_snpac.h>
     79       1.1  explorer #endif
     80       1.1  explorer 
     81       1.1  explorer #include <net/if_sppp.h>
     82       1.1  explorer 
     83       1.1  explorer #define MAXALIVECNT     3               /* max. alive packets */
     84       1.1  explorer 
     85       1.3  explorer /*
     86       1.3  explorer  * Interface flags that can be set in an ifconfig command.
     87       1.3  explorer  *
     88       1.3  explorer  * Setting link0 will make the link passive, i.e. it will be marked
     89       1.3  explorer  * as being administrative openable, but won't be opened to begin
     90       1.3  explorer  * with.  Incoming calls will be answered, or subsequent calls with
     91       1.3  explorer  * -link1 will cause the administrative open of the LCP layer.
     92       1.3  explorer  *
     93       1.3  explorer  * Setting link1 will cause the link to auto-dial only as packets
     94       1.3  explorer  * arrive to be sent.
     95       1.3  explorer  *
     96       1.3  explorer  * Setting IFF_DEBUG will syslog the option negotiation and state
     97       1.3  explorer  * transitions at level kern.debug.  Note: all logs consistently look
     98       1.3  explorer  * like
     99       1.3  explorer  *
    100       1.3  explorer  *   <if-name><unit>: <proto-name> <additional info...>
    101       1.3  explorer  *
    102       1.3  explorer  * with <if-name><unit> being something like "bppp0", and <proto-name>
    103       1.3  explorer  * being one of "lcp", "ipcp", "cisco", "chap", "pap", etc.
    104       1.3  explorer  */
    105       1.3  explorer 
    106       1.3  explorer #define IFF_PASSIVE	IFF_LINK0	/* wait passively for connection */
    107       1.3  explorer #define IFF_AUTO	IFF_LINK1	/* auto-dial on output */
    108       1.3  explorer 
    109       1.3  explorer #define CONF_REQ	1		/* PPP configure request */
    110       1.3  explorer #define CONF_ACK	2		/* PPP configure acknowledge */
    111       1.3  explorer #define CONF_NAK	3		/* PPP configure negative ack */
    112       1.3  explorer #define CONF_REJ	4		/* PPP configure reject */
    113       1.3  explorer #define TERM_REQ	5		/* PPP terminate request */
    114       1.3  explorer #define TERM_ACK	6		/* PPP terminate acknowledge */
    115       1.3  explorer #define CODE_REJ	7		/* PPP code reject */
    116       1.3  explorer #define PROTO_REJ	8		/* PPP protocol reject */
    117       1.3  explorer #define ECHO_REQ	9		/* PPP echo request */
    118       1.3  explorer #define ECHO_REPLY	10		/* PPP echo reply */
    119       1.3  explorer #define DISC_REQ	11		/* PPP discard request */
    120       1.3  explorer 
    121       1.3  explorer #define LCP_OPT_MRU		1	/* maximum receive unit */
    122       1.3  explorer #define LCP_OPT_ASYNC_MAP	2	/* async control character map */
    123       1.3  explorer #define LCP_OPT_AUTH_PROTO	3	/* authentication protocol */
    124       1.3  explorer #define LCP_OPT_QUAL_PROTO	4	/* quality protocol */
    125       1.3  explorer #define LCP_OPT_MAGIC		5	/* magic number */
    126       1.3  explorer #define LCP_OPT_RESERVED	6	/* reserved */
    127       1.3  explorer #define LCP_OPT_PROTO_COMP	7	/* protocol field compression */
    128       1.3  explorer #define LCP_OPT_ADDR_COMP	8	/* address/control field compression */
    129       1.3  explorer 
    130       1.3  explorer #define IPCP_OPT_ADDRESSES	1	/* both IP addresses; deprecated */
    131      1.14    itojun #define IPCP_OPT_COMPRESSION	2	/* IP compression protocol */
    132       1.3  explorer #define IPCP_OPT_ADDRESS	3	/* local IP address */
    133       1.3  explorer 
    134       1.9    itojun #define IPV6CP_OPT_IFID		1	/* interface identifier */
    135       1.9    itojun #define IPV6CP_OPT_COMPRESSION	2	/* IPv6 compression protocol */
    136       1.9    itojun 
    137       1.3  explorer #define PAP_REQ			1	/* PAP name/password request */
    138       1.3  explorer #define PAP_ACK			2	/* PAP acknowledge */
    139       1.3  explorer #define PAP_NAK			3	/* PAP fail */
    140       1.3  explorer 
    141       1.3  explorer #define CHAP_CHALLENGE		1	/* CHAP challenge request */
    142       1.3  explorer #define CHAP_RESPONSE		2	/* CHAP challenge response */
    143       1.3  explorer #define CHAP_SUCCESS		3	/* CHAP response ok */
    144       1.3  explorer #define CHAP_FAILURE		4	/* CHAP response failed */
    145       1.3  explorer 
    146       1.3  explorer #define CHAP_MD5		5	/* hash algorithm - MD5 */
    147       1.3  explorer 
    148       1.3  explorer #define CISCO_MULTICAST		0x8f	/* Cisco multicast address */
    149       1.3  explorer #define CISCO_UNICAST		0x0f	/* Cisco unicast address */
    150       1.3  explorer #define CISCO_KEEPALIVE		0x8035	/* Cisco keepalive protocol */
    151       1.3  explorer #define CISCO_ADDR_REQ		0	/* Cisco address request */
    152       1.3  explorer #define CISCO_ADDR_REPLY	1	/* Cisco address reply */
    153       1.3  explorer #define CISCO_KEEPALIVE_REQ	2	/* Cisco keepalive request */
    154       1.3  explorer 
    155       1.3  explorer /* states are named and numbered according to RFC 1661 */
    156       1.3  explorer #define STATE_INITIAL	0
    157       1.3  explorer #define STATE_STARTING	1
    158       1.3  explorer #define STATE_CLOSED	2
    159       1.3  explorer #define STATE_STOPPED	3
    160       1.3  explorer #define STATE_CLOSING	4
    161       1.3  explorer #define STATE_STOPPING	5
    162       1.3  explorer #define STATE_REQ_SENT	6
    163       1.3  explorer #define STATE_ACK_RCVD	7
    164       1.3  explorer #define STATE_ACK_SENT	8
    165       1.3  explorer #define STATE_OPENED	9
    166       1.1  explorer 
    167       1.1  explorer struct ppp_header {
    168       1.3  explorer 	u_char address;
    169       1.3  explorer 	u_char control;
    170       1.3  explorer 	u_short protocol;
    171       1.6   thorpej } __attribute__((__packed__));
    172       1.1  explorer #define PPP_HEADER_LEN          sizeof (struct ppp_header)
    173       1.1  explorer 
    174       1.1  explorer struct lcp_header {
    175       1.3  explorer 	u_char type;
    176       1.3  explorer 	u_char ident;
    177       1.3  explorer 	u_short len;
    178       1.6   thorpej } __attribute__((__packed__));
    179       1.1  explorer #define LCP_HEADER_LEN          sizeof (struct lcp_header)
    180       1.1  explorer 
    181       1.1  explorer struct cisco_packet {
    182       1.3  explorer 	u_long type;
    183       1.3  explorer 	u_long par1;
    184       1.3  explorer 	u_long par2;
    185       1.3  explorer 	u_short rel;
    186       1.3  explorer 	u_short time0;
    187       1.3  explorer 	u_short time1;
    188       1.6   thorpej } __attribute__((__packed__));
    189       1.1  explorer #define CISCO_PACKET_LEN 18
    190       1.1  explorer 
    191       1.3  explorer /*
    192       1.3  explorer  * We follow the spelling and capitalization of RFC 1661 here, to make
    193       1.3  explorer  * it easier comparing with the standard.  Please refer to this RFC in
    194       1.3  explorer  * case you can't make sense out of these abbreviation; it will also
    195       1.3  explorer  * explain the semantics related to the various events and actions.
    196       1.3  explorer  */
    197       1.3  explorer struct cp {
    198       1.3  explorer 	u_short	proto;		/* PPP control protocol number */
    199       1.3  explorer 	u_char protoidx;	/* index into state table in struct sppp */
    200       1.3  explorer 	u_char flags;
    201       1.3  explorer #define CP_LCP		0x01	/* this is the LCP */
    202       1.3  explorer #define CP_AUTH		0x02	/* this is an authentication protocol */
    203       1.3  explorer #define CP_NCP		0x04	/* this is a NCP */
    204       1.3  explorer #define CP_QUAL		0x08	/* this is a quality reporting protocol */
    205       1.3  explorer 	const char *name;	/* name of this control protocol */
    206       1.3  explorer 	/* event handlers */
    207       1.3  explorer 	void	(*Up)(struct sppp *sp);
    208       1.3  explorer 	void	(*Down)(struct sppp *sp);
    209       1.3  explorer 	void	(*Open)(struct sppp *sp);
    210       1.3  explorer 	void	(*Close)(struct sppp *sp);
    211       1.3  explorer 	void	(*TO)(void *sp);
    212       1.3  explorer 	int	(*RCR)(struct sppp *sp, struct lcp_header *h, int len);
    213       1.3  explorer 	void	(*RCN_rej)(struct sppp *sp, struct lcp_header *h, int len);
    214       1.3  explorer 	void	(*RCN_nak)(struct sppp *sp, struct lcp_header *h, int len);
    215       1.3  explorer 	/* actions */
    216       1.3  explorer 	void	(*tlu)(struct sppp *sp);
    217       1.3  explorer 	void	(*tld)(struct sppp *sp);
    218       1.3  explorer 	void	(*tls)(struct sppp *sp);
    219       1.3  explorer 	void	(*tlf)(struct sppp *sp);
    220       1.3  explorer 	void	(*scr)(struct sppp *sp);
    221       1.3  explorer };
    222       1.3  explorer 
    223       1.1  explorer static struct sppp *spppq;
    224       1.7   thorpej static struct callout keepalive_ch;
    225       1.3  explorer 
    226       1.3  explorer #ifdef __FreeBSD__
    227       1.3  explorer #define	SPP_FMT		"%s%d: "
    228       1.3  explorer #define	SPP_ARGS(ifp)	(ifp)->if_name, (ifp)->if_unit
    229       1.3  explorer #else
    230       1.3  explorer #define	SPP_FMT		"%s: "
    231       1.3  explorer #define	SPP_ARGS(ifp)	(ifp)->if_xname
    232       1.3  explorer #endif
    233       1.1  explorer 
    234      1.12    itojun #ifdef INET
    235       1.1  explorer /*
    236       1.1  explorer  * The following disgusting hack gets around the problem that IP TOS
    237       1.1  explorer  * can't be set yet.  We want to put "interactive" traffic on a high
    238       1.1  explorer  * priority queue.  To decide if traffic is interactive, we check that
    239       1.1  explorer  * a) it is TCP and b) one of its ports is telnet, rlogin or ftp control.
    240       1.3  explorer  *
    241       1.3  explorer  * XXX is this really still necessary?  - joerg -
    242       1.1  explorer  */
    243       1.3  explorer static u_short interactive_ports[8] = {
    244       1.1  explorer 	0,	513,	0,	0,
    245       1.1  explorer 	0,	21,	0,	23,
    246       1.1  explorer };
    247       1.1  explorer #define INTERACTIVE(p) (interactive_ports[(p) & 7] == (p))
    248      1.12    itojun #endif
    249       1.1  explorer 
    250       1.3  explorer /* almost every function needs these */
    251       1.3  explorer #define STDDCL							\
    252       1.3  explorer 	struct ifnet *ifp = &sp->pp_if;				\
    253       1.3  explorer 	int debug = ifp->if_flags & IFF_DEBUG
    254       1.3  explorer 
    255       1.3  explorer static int sppp_output(struct ifnet *ifp, struct mbuf *m,
    256       1.3  explorer 		       struct sockaddr *dst, struct rtentry *rt);
    257       1.3  explorer 
    258       1.3  explorer static void sppp_cisco_send(struct sppp *sp, int type, long par1, long par2);
    259       1.3  explorer static void sppp_cisco_input(struct sppp *sp, struct mbuf *m);
    260       1.3  explorer 
    261       1.3  explorer static void sppp_cp_input(const struct cp *cp, struct sppp *sp,
    262       1.3  explorer 			  struct mbuf *m);
    263       1.3  explorer static void sppp_cp_send(struct sppp *sp, u_short proto, u_char type,
    264       1.3  explorer 			 u_char ident, u_short len, void *data);
    265       1.3  explorer /* static void sppp_cp_timeout(void *arg); */
    266       1.3  explorer static void sppp_cp_change_state(const struct cp *cp, struct sppp *sp,
    267       1.3  explorer 				 int newstate);
    268       1.3  explorer static void sppp_auth_send(const struct cp *cp,
    269       1.3  explorer 			   struct sppp *sp, unsigned int type, unsigned int id,
    270       1.3  explorer 			   ...);
    271       1.3  explorer 
    272       1.3  explorer static void sppp_up_event(const struct cp *cp, struct sppp *sp);
    273       1.3  explorer static void sppp_down_event(const struct cp *cp, struct sppp *sp);
    274       1.3  explorer static void sppp_open_event(const struct cp *cp, struct sppp *sp);
    275       1.3  explorer static void sppp_close_event(const struct cp *cp, struct sppp *sp);
    276       1.3  explorer static void sppp_to_event(const struct cp *cp, struct sppp *sp);
    277       1.3  explorer 
    278       1.3  explorer static void sppp_null(struct sppp *sp);
    279       1.3  explorer 
    280       1.3  explorer static void sppp_lcp_init(struct sppp *sp);
    281       1.3  explorer static void sppp_lcp_up(struct sppp *sp);
    282       1.3  explorer static void sppp_lcp_down(struct sppp *sp);
    283       1.3  explorer static void sppp_lcp_open(struct sppp *sp);
    284       1.3  explorer static void sppp_lcp_close(struct sppp *sp);
    285       1.3  explorer static void sppp_lcp_TO(void *sp);
    286       1.3  explorer static int sppp_lcp_RCR(struct sppp *sp, struct lcp_header *h, int len);
    287       1.3  explorer static void sppp_lcp_RCN_rej(struct sppp *sp, struct lcp_header *h, int len);
    288       1.3  explorer static void sppp_lcp_RCN_nak(struct sppp *sp, struct lcp_header *h, int len);
    289       1.3  explorer static void sppp_lcp_tlu(struct sppp *sp);
    290       1.3  explorer static void sppp_lcp_tld(struct sppp *sp);
    291       1.3  explorer static void sppp_lcp_tls(struct sppp *sp);
    292       1.3  explorer static void sppp_lcp_tlf(struct sppp *sp);
    293       1.3  explorer static void sppp_lcp_scr(struct sppp *sp);
    294       1.3  explorer static void sppp_lcp_check_and_close(struct sppp *sp);
    295       1.3  explorer static int sppp_ncp_check(struct sppp *sp);
    296       1.3  explorer 
    297       1.3  explorer static void sppp_ipcp_init(struct sppp *sp);
    298       1.3  explorer static void sppp_ipcp_up(struct sppp *sp);
    299       1.3  explorer static void sppp_ipcp_down(struct sppp *sp);
    300       1.3  explorer static void sppp_ipcp_open(struct sppp *sp);
    301       1.3  explorer static void sppp_ipcp_close(struct sppp *sp);
    302       1.3  explorer static void sppp_ipcp_TO(void *sp);
    303       1.3  explorer static int sppp_ipcp_RCR(struct sppp *sp, struct lcp_header *h, int len);
    304       1.3  explorer static void sppp_ipcp_RCN_rej(struct sppp *sp, struct lcp_header *h, int len);
    305       1.3  explorer static void sppp_ipcp_RCN_nak(struct sppp *sp, struct lcp_header *h, int len);
    306       1.3  explorer static void sppp_ipcp_tlu(struct sppp *sp);
    307       1.3  explorer static void sppp_ipcp_tld(struct sppp *sp);
    308       1.3  explorer static void sppp_ipcp_tls(struct sppp *sp);
    309       1.3  explorer static void sppp_ipcp_tlf(struct sppp *sp);
    310       1.3  explorer static void sppp_ipcp_scr(struct sppp *sp);
    311       1.3  explorer 
    312       1.9    itojun static void sppp_ipv6cp_init(struct sppp *sp);
    313       1.9    itojun static void sppp_ipv6cp_up(struct sppp *sp);
    314       1.9    itojun static void sppp_ipv6cp_down(struct sppp *sp);
    315       1.9    itojun static void sppp_ipv6cp_open(struct sppp *sp);
    316       1.9    itojun static void sppp_ipv6cp_close(struct sppp *sp);
    317       1.9    itojun static void sppp_ipv6cp_TO(void *sp);
    318       1.9    itojun static int sppp_ipv6cp_RCR(struct sppp *sp, struct lcp_header *h, int len);
    319       1.9    itojun static void sppp_ipv6cp_RCN_rej(struct sppp *sp, struct lcp_header *h, int len);
    320       1.9    itojun static void sppp_ipv6cp_RCN_nak(struct sppp *sp, struct lcp_header *h, int len);
    321       1.9    itojun static void sppp_ipv6cp_tlu(struct sppp *sp);
    322       1.9    itojun static void sppp_ipv6cp_tld(struct sppp *sp);
    323       1.9    itojun static void sppp_ipv6cp_tls(struct sppp *sp);
    324       1.9    itojun static void sppp_ipv6cp_tlf(struct sppp *sp);
    325       1.9    itojun static void sppp_ipv6cp_scr(struct sppp *sp);
    326       1.9    itojun 
    327       1.3  explorer static void sppp_pap_input(struct sppp *sp, struct mbuf *m);
    328       1.3  explorer static void sppp_pap_init(struct sppp *sp);
    329       1.3  explorer static void sppp_pap_open(struct sppp *sp);
    330       1.3  explorer static void sppp_pap_close(struct sppp *sp);
    331       1.3  explorer static void sppp_pap_TO(void *sp);
    332       1.3  explorer static void sppp_pap_my_TO(void *sp);
    333       1.3  explorer static void sppp_pap_tlu(struct sppp *sp);
    334       1.3  explorer static void sppp_pap_tld(struct sppp *sp);
    335       1.3  explorer static void sppp_pap_scr(struct sppp *sp);
    336       1.3  explorer 
    337       1.3  explorer static void sppp_chap_input(struct sppp *sp, struct mbuf *m);
    338       1.3  explorer static void sppp_chap_init(struct sppp *sp);
    339       1.3  explorer static void sppp_chap_open(struct sppp *sp);
    340       1.3  explorer static void sppp_chap_close(struct sppp *sp);
    341       1.3  explorer static void sppp_chap_TO(void *sp);
    342       1.3  explorer static void sppp_chap_tlu(struct sppp *sp);
    343       1.3  explorer static void sppp_chap_tld(struct sppp *sp);
    344       1.3  explorer static void sppp_chap_scr(struct sppp *sp);
    345       1.3  explorer 
    346       1.3  explorer static const char *sppp_auth_type_name(u_short proto, u_char type);
    347       1.3  explorer static const char *sppp_cp_type_name(u_char type);
    348       1.3  explorer static const char *sppp_dotted_quad(u_long addr);
    349       1.3  explorer static const char *sppp_ipcp_opt_name(u_char opt);
    350       1.9    itojun #ifdef INET6
    351       1.9    itojun static const char *sppp_ipv6cp_opt_name(u_char opt);
    352       1.9    itojun #endif
    353       1.3  explorer static const char *sppp_lcp_opt_name(u_char opt);
    354       1.3  explorer static const char *sppp_phase_name(enum ppp_phase phase);
    355       1.3  explorer static const char *sppp_proto_name(u_short proto);
    356       1.3  explorer static const char *sppp_state_name(int state);
    357       1.3  explorer static int sppp_params(struct sppp *sp, int cmd, void *data);
    358       1.3  explorer static int sppp_strnlen(u_char *p, int max);
    359       1.3  explorer static void sppp_get_ip_addrs(struct sppp *sp, u_long *src, u_long *dst,
    360       1.3  explorer 			      u_long *srcmask);
    361       1.3  explorer static void sppp_keepalive(void *dummy);
    362       1.3  explorer static void sppp_phase_network(struct sppp *sp);
    363       1.3  explorer static void sppp_print_bytes(const u_char *p, u_short len);
    364       1.3  explorer static void sppp_print_string(const char *p, u_short len);
    365       1.3  explorer static void sppp_set_ip_addr(struct sppp *sp, u_long src);
    366       1.9    itojun #ifdef INET6
    367       1.9    itojun static void sppp_get_ip6_addrs(struct sppp *sp, struct in6_addr *src,
    368       1.9    itojun 				struct in6_addr *dst, struct in6_addr *srcmask);
    369       1.9    itojun #ifdef IPV6CP_MYIFID_DYN
    370       1.9    itojun static void sppp_set_ip6_addr(struct sppp *sp, const struct in6_addr *src);
    371       1.9    itojun static void sppp_gen_ip6_addr(struct sppp *sp, const struct in6_addr *src);
    372       1.9    itojun #endif
    373       1.9    itojun static void sppp_suggest_ip6_addr(struct sppp *sp, struct in6_addr *src);
    374       1.9    itojun #endif
    375       1.3  explorer 
    376       1.3  explorer /* our control protocol descriptors */
    377       1.3  explorer static const struct cp lcp = {
    378       1.3  explorer 	PPP_LCP, IDX_LCP, CP_LCP, "lcp",
    379       1.3  explorer 	sppp_lcp_up, sppp_lcp_down, sppp_lcp_open, sppp_lcp_close,
    380       1.3  explorer 	sppp_lcp_TO, sppp_lcp_RCR, sppp_lcp_RCN_rej, sppp_lcp_RCN_nak,
    381       1.3  explorer 	sppp_lcp_tlu, sppp_lcp_tld, sppp_lcp_tls, sppp_lcp_tlf,
    382       1.3  explorer 	sppp_lcp_scr
    383       1.3  explorer };
    384       1.3  explorer 
    385       1.3  explorer static const struct cp ipcp = {
    386      1.19    itojun 	PPP_IPCP, IDX_IPCP,
    387      1.19    itojun #ifdef INET
    388      1.19    itojun 	CP_NCP,	/*don't run IPCP if there's no IPv4 support*/
    389      1.19    itojun #else
    390      1.19    itojun 	0,
    391      1.19    itojun #endif
    392      1.19    itojun 	"ipcp",
    393       1.3  explorer 	sppp_ipcp_up, sppp_ipcp_down, sppp_ipcp_open, sppp_ipcp_close,
    394       1.3  explorer 	sppp_ipcp_TO, sppp_ipcp_RCR, sppp_ipcp_RCN_rej, sppp_ipcp_RCN_nak,
    395       1.3  explorer 	sppp_ipcp_tlu, sppp_ipcp_tld, sppp_ipcp_tls, sppp_ipcp_tlf,
    396       1.3  explorer 	sppp_ipcp_scr
    397       1.3  explorer };
    398       1.3  explorer 
    399       1.9    itojun static const struct cp ipv6cp = {
    400       1.9    itojun 	PPP_IPV6CP, IDX_IPV6CP,
    401       1.9    itojun #ifdef INET6	/*don't run IPv6CP if there's no IPv6 support*/
    402       1.9    itojun 	CP_NCP,
    403       1.9    itojun #else
    404       1.9    itojun 	0,
    405       1.9    itojun #endif
    406       1.9    itojun 	"ipv6cp",
    407       1.9    itojun 	sppp_ipv6cp_up, sppp_ipv6cp_down, sppp_ipv6cp_open, sppp_ipv6cp_close,
    408       1.9    itojun 	sppp_ipv6cp_TO, sppp_ipv6cp_RCR, sppp_ipv6cp_RCN_rej, sppp_ipv6cp_RCN_nak,
    409       1.9    itojun 	sppp_ipv6cp_tlu, sppp_ipv6cp_tld, sppp_ipv6cp_tls, sppp_ipv6cp_tlf,
    410       1.9    itojun 	sppp_ipv6cp_scr
    411       1.9    itojun };
    412       1.9    itojun 
    413       1.3  explorer static const struct cp pap = {
    414       1.3  explorer 	PPP_PAP, IDX_PAP, CP_AUTH, "pap",
    415       1.3  explorer 	sppp_null, sppp_null, sppp_pap_open, sppp_pap_close,
    416       1.3  explorer 	sppp_pap_TO, 0, 0, 0,
    417       1.3  explorer 	sppp_pap_tlu, sppp_pap_tld, sppp_null, sppp_null,
    418       1.3  explorer 	sppp_pap_scr
    419       1.3  explorer };
    420       1.3  explorer 
    421       1.3  explorer static const struct cp chap = {
    422       1.3  explorer 	PPP_CHAP, IDX_CHAP, CP_AUTH, "chap",
    423       1.3  explorer 	sppp_null, sppp_null, sppp_chap_open, sppp_chap_close,
    424       1.3  explorer 	sppp_chap_TO, 0, 0, 0,
    425       1.3  explorer 	sppp_chap_tlu, sppp_chap_tld, sppp_null, sppp_null,
    426       1.3  explorer 	sppp_chap_scr
    427       1.3  explorer };
    428       1.3  explorer 
    429       1.3  explorer static const struct cp *cps[IDX_COUNT] = {
    430       1.3  explorer 	&lcp,			/* IDX_LCP */
    431       1.3  explorer 	&ipcp,			/* IDX_IPCP */
    432       1.9    itojun 	&ipv6cp,		/* IDX_IPV6CP */
    433       1.3  explorer 	&pap,			/* IDX_PAP */
    434       1.3  explorer 	&chap,			/* IDX_CHAP */
    435       1.3  explorer };
    436       1.1  explorer 
    437       1.1  explorer 
    438       1.3  explorer /*
    440       1.1  explorer  * Exported functions, comprising our interface to the lower layer.
    441       1.1  explorer  */
    442       1.1  explorer 
    443       1.1  explorer /*
    444       1.1  explorer  * Process the received packet.
    445       1.3  explorer  */
    446       1.3  explorer void
    447       1.1  explorer sppp_input(struct ifnet *ifp, struct mbuf *m)
    448      1.22    martin {
    449       1.1  explorer 	struct ppp_header *h = NULL;
    450      1.22    martin 	struct ifqueue *inq = 0;
    451       1.1  explorer 	u_int16_t protocol;
    452       1.3  explorer 	int s;
    453       1.3  explorer 	struct sppp *sp = (struct sppp *)ifp;
    454       1.1  explorer 	int debug = ifp->if_flags & IFF_DEBUG;
    455       1.1  explorer 
    456      1.22    martin 	if (ifp->if_flags & IFF_UP)
    457      1.22    martin 		/* Count received bytes, add hardware framing */
    458       1.1  explorer 		ifp->if_ibytes += m->m_pkthdr.len + sp->pp_framebytes;
    459       1.1  explorer 
    460       1.1  explorer 	if (m->m_pkthdr.len <= PPP_HEADER_LEN) {
    461       1.3  explorer 		/* Too small packet, drop it. */
    462       1.3  explorer 		if (debug)
    463       1.3  explorer 			log(LOG_DEBUG,
    464       1.3  explorer 			    SPP_FMT "input packet is too small, %d bytes\n",
    465       1.3  explorer 			    SPP_ARGS(ifp), m->m_pkthdr.len);
    466       1.3  explorer 	  drop:
    467       1.3  explorer 		++ifp->if_ierrors;
    468       1.1  explorer 		++ifp->if_iqdrops;
    469       1.1  explorer 		m_freem (m);
    470       1.1  explorer 		return;
    471       1.1  explorer 	}
    472      1.22    martin 
    473      1.22    martin 	if (sp->pp_flags & PP_NOFRAMING) {
    474      1.22    martin 		protocol = *(mtod(m, u_int16_t*));
    475      1.22    martin 		protocol = ntohs(protocol);
    476      1.22    martin 		m_adj(m, 2);
    477       1.1  explorer 	} else {
    478      1.22    martin 
    479      1.22    martin 		/* Get PPP header. */
    480      1.22    martin 		h = mtod (m, struct ppp_header*);
    481      1.22    martin 		m_adj (m, PPP_HEADER_LEN);
    482      1.22    martin 
    483      1.22    martin 		switch (h->address) {
    484      1.22    martin 		case PPP_ALLSTATIONS:
    485      1.22    martin 			if (h->control != PPP_UI)
    486      1.22    martin 				goto invalid;
    487      1.22    martin 			if (sp->pp_flags & PP_CISCO) {
    488      1.22    martin 				if (debug)
    489      1.22    martin 					log(LOG_DEBUG,
    490      1.22    martin 					    SPP_FMT "PPP packet in Cisco mode "
    491      1.22    martin 					    "<addr=0x%x ctrl=0x%x proto=0x%x>\n",
    492      1.22    martin 					    SPP_ARGS(ifp),
    493      1.22    martin 					    h->address, h->control, ntohs(h->protocol));
    494      1.22    martin 				goto drop;
    495      1.22    martin 			}
    496      1.22    martin 			break;
    497      1.22    martin 		case CISCO_MULTICAST:
    498      1.22    martin 		case CISCO_UNICAST:
    499      1.22    martin 			/* Don't check the control field here (RFC 1547). */
    500      1.22    martin 			if (! (sp->pp_flags & PP_CISCO)) {
    501      1.22    martin 				if (debug)
    502      1.22    martin 					log(LOG_DEBUG,
    503      1.22    martin 					    SPP_FMT "Cisco packet in PPP mode "
    504      1.22    martin 					    "<addr=0x%x ctrl=0x%x proto=0x%x>\n",
    505      1.22    martin 					    SPP_ARGS(ifp),
    506      1.22    martin 					    h->address, h->control, ntohs(h->protocol));
    507      1.22    martin 				goto drop;
    508      1.22    martin 			}
    509      1.22    martin 			switch (ntohs (h->protocol)) {
    510      1.22    martin 			default:
    511      1.22    martin 				++ifp->if_noproto;
    512      1.22    martin 				goto invalid;
    513      1.22    martin 			case CISCO_KEEPALIVE:
    514      1.22    martin 				sppp_cisco_input ((struct sppp*) ifp, m);
    515      1.22    martin 				m_freem (m);
    516       1.1  explorer 				return;
    517      1.22    martin #ifdef INET
    518       1.1  explorer 			case ETHERTYPE_IP:
    519       1.1  explorer 				schednetisr (NETISR_IP);
    520      1.22    martin 				inq = &ipintrq;
    521       1.1  explorer 				break;
    522       1.8    itojun #endif
    523      1.22    martin #ifdef INET6
    524       1.8    itojun 			case ETHERTYPE_IPV6:
    525       1.8    itojun 				schednetisr (NETISR_IPV6);
    526      1.22    martin 				inq = &ip6intrq;
    527       1.8    itojun 				break;
    528       1.1  explorer #endif
    529      1.22    martin #ifdef IPX
    530       1.1  explorer 			case ETHERTYPE_IPX:
    531       1.1  explorer 				schednetisr (NETISR_IPX);
    532      1.22    martin 				inq = &ipxintrq;
    533       1.1  explorer 				break;
    534       1.1  explorer #endif
    535      1.22    martin #ifdef NS
    536       1.1  explorer 			case ETHERTYPE_NS:
    537       1.1  explorer 				schednetisr (NETISR_NS);
    538      1.22    martin 				inq = &nsintrq;
    539       1.1  explorer 				break;
    540       1.1  explorer #endif
    541      1.22    martin 			}
    542      1.22    martin 			goto queue_pkt;
    543      1.22    martin 		default:        /* Invalid PPP packet. */
    544       1.3  explorer 		  invalid:
    545       1.3  explorer 			if (debug)
    546      1.22    martin 				log(LOG_DEBUG,
    547       1.3  explorer 				    SPP_FMT "invalid input packet "
    548       1.3  explorer 				    "<addr=0x%x ctrl=0x%x proto=0x%x>\n",
    549       1.3  explorer 				    SPP_ARGS(ifp),
    550       1.1  explorer 				    h->address, h->control, ntohs(h->protocol));
    551       1.1  explorer 			goto drop;
    552      1.22    martin 		}
    553      1.22    martin 		protocol = ntohs (h->protocol);
    554      1.22    martin 	}
    555      1.22    martin 
    556      1.22    martin 	switch (protocol) {
    557      1.22    martin 	default:
    558      1.22    martin 		if (sp->state[IDX_LCP] == STATE_OPENED) {
    559      1.22    martin 			u_int16_t prot = htons(protocol);
    560      1.22    martin 			sppp_cp_send (sp, PPP_LCP, PROTO_REJ,
    561      1.22    martin 			    ++sp->pp_seq[IDX_LCP], m->m_pkthdr.len + 2,
    562      1.22    martin 			    &prot);
    563      1.22    martin 		}
    564      1.22    martin 		if (debug)
    565      1.22    martin 			log(LOG_DEBUG,
    566      1.22    martin 			    SPP_FMT "invalid input protocol "
    567      1.22    martin 			    "<proto=0x%x>\n", SPP_ARGS(ifp), ntohs(protocol));
    568      1.22    martin 		++ifp->if_noproto;
    569      1.22    martin 		goto drop;
    570      1.22    martin 	case PPP_LCP:
    571      1.22    martin 		sppp_cp_input(&lcp, sp, m);
    572      1.22    martin 		m_freem (m);
    573      1.22    martin 		return;
    574      1.22    martin 	case PPP_PAP:
    575      1.22    martin 		if (sp->pp_phase >= PHASE_AUTHENTICATE)
    576      1.22    martin 			sppp_pap_input(sp, m);
    577      1.22    martin 		m_freem (m);
    578      1.22    martin 		return;
    579      1.22    martin 	case PPP_CHAP:
    580      1.22    martin 		if (sp->pp_phase >= PHASE_AUTHENTICATE)
    581      1.22    martin 			sppp_chap_input(sp, m);
    582      1.22    martin 		m_freem (m);
    583       1.1  explorer 		return;
    584      1.22    martin #ifdef INET
    585      1.22    martin 	case PPP_IPCP:
    586      1.22    martin 		if (sp->pp_phase == PHASE_NETWORK)
    587      1.22    martin 			sppp_cp_input(&ipcp, sp, m);
    588      1.22    martin 		m_freem (m);
    589      1.22    martin 		return;
    590      1.22    martin 	case PPP_IP:
    591       1.1  explorer 		if (sp->state[IDX_IPCP] == STATE_OPENED) {
    592       1.1  explorer 			schednetisr (NETISR_IP);
    593      1.22    martin 			inq = &ipintrq;
    594      1.22    martin 		}
    595       1.1  explorer 		break;
    596       1.8    itojun #endif
    597      1.22    martin #ifdef INET6
    598      1.22    martin 	case PPP_IPV6CP:
    599      1.22    martin 		if (sp->pp_phase == PHASE_NETWORK)
    600      1.22    martin 			sppp_cp_input(&ipv6cp, sp, m);
    601      1.22    martin 		m_freem (m);
    602      1.22    martin 		return;
    603      1.22    martin 
    604      1.22    martin 	case PPP_IPV6:
    605       1.8    itojun 		if (sp->state[IDX_IPV6CP] == STATE_OPENED) {
    606       1.8    itojun 			schednetisr (NETISR_IPV6);
    607      1.22    martin 			inq = &ip6intrq;
    608      1.22    martin 		}
    609       1.8    itojun 		break;
    610       1.1  explorer #endif
    611      1.22    martin #ifdef IPX
    612      1.22    martin 	case PPP_IPX:
    613      1.22    martin 		/* IPX IPXCP not implemented yet */
    614       1.1  explorer 		if (sp->pp_phase == PHASE_NETWORK) {
    615       1.1  explorer 			schednetisr (NETISR_IPX);
    616      1.22    martin 			inq = &ipxintrq;
    617      1.22    martin 		}
    618       1.1  explorer 		break;
    619       1.1  explorer #endif
    620      1.22    martin #ifdef NS
    621      1.22    martin 	case PPP_XNS:
    622      1.22    martin 		/* XNS IDPCP not implemented yet */
    623       1.1  explorer 		if (sp->pp_phase == PHASE_NETWORK) {
    624       1.1  explorer 			schednetisr (NETISR_NS);
    625      1.22    martin 			inq = &nsintrq;
    626      1.22    martin 		}
    627       1.1  explorer 		break;
    628      1.22    martin #endif
    629      1.22    martin #ifdef ISO
    630      1.22    martin 	case PPP_ISO:
    631      1.22    martin 		/* OSI NLCP not implemented yet */
    632      1.22    martin 		if (sp->pp_phase == PHASE_NETWORK) {
    633      1.22    martin 			schednetisr (NETISR_ISO);
    634       1.1  explorer 			inq = &clnlintrq;
    635       1.1  explorer 		}
    636      1.22    martin 		break;
    637       1.1  explorer #endif
    638       1.1  explorer 	}
    639      1.22    martin 
    640       1.1  explorer queue_pkt:
    641       1.1  explorer 	if (! (ifp->if_flags & IFF_UP) || ! inq)
    642       1.1  explorer 		goto drop;
    643       1.1  explorer 
    644      1.23   thorpej 	/* Check queue. */
    645       1.1  explorer 	s = splnet();
    646       1.1  explorer 	if (IF_QFULL (inq)) {
    647       1.3  explorer 		/* Queue overflow. */
    648       1.3  explorer 		IF_DROP(inq);
    649       1.3  explorer 		splx(s);
    650       1.3  explorer 		if (debug)
    651       1.3  explorer 			log(LOG_DEBUG, SPP_FMT "protocol queue overflow\n",
    652       1.1  explorer 				SPP_ARGS(ifp));
    653       1.1  explorer 		goto drop;
    654       1.3  explorer 	}
    655       1.3  explorer 	IF_ENQUEUE(inq, m);
    656       1.1  explorer 	splx(s);
    657       1.1  explorer }
    658       1.1  explorer 
    659       1.1  explorer /*
    660       1.1  explorer  * Enqueue transmit packet.
    661       1.1  explorer  */
    662       1.3  explorer static int
    663       1.3  explorer sppp_output(struct ifnet *ifp, struct mbuf *m,
    664       1.1  explorer 	    struct sockaddr *dst, struct rtentry *rt)
    665       1.1  explorer {
    666      1.22    martin 	struct sppp *sp = (struct sppp*) ifp;
    667      1.15   thorpej 	struct ppp_header *h = NULL;
    668      1.15   thorpej 	struct ifqueue *ifq = NULL;		/* XXX */
    669      1.22    martin 	int s, len, rv = 0;
    670      1.15   thorpej 	u_int16_t protocol;
    671       1.3  explorer 	ALTQ_DECL(struct altq_pktattr pktattr;)
    672      1.23   thorpej 
    673       1.1  explorer 	s = splnet();
    674       1.3  explorer 
    675       1.3  explorer 	if ((ifp->if_flags & IFF_UP) == 0 ||
    676       1.1  explorer 	    (ifp->if_flags & (IFF_RUNNING | IFF_AUTO)) == 0) {
    677       1.1  explorer 		m_freem (m);
    678       1.1  explorer 		splx (s);
    679       1.1  explorer 		return (ENETDOWN);
    680       1.1  explorer 	}
    681       1.3  explorer 
    682       1.3  explorer 	if ((ifp->if_flags & (IFF_RUNNING | IFF_AUTO)) == IFF_AUTO) {
    683       1.3  explorer 		/*
    684       1.3  explorer 		 * Interface is not yet running, but auto-dial.  Need
    685       1.3  explorer 		 * to start LCP for it.
    686       1.3  explorer 		 */
    687       1.3  explorer 		ifp->if_flags |= IFF_RUNNING;
    688       1.3  explorer 		splx(s);
    689      1.23   thorpej 		lcp.Open(sp);
    690       1.3  explorer 		s = splnet();
    691       1.3  explorer 	}
    692      1.15   thorpej 
    693      1.15   thorpej 	/*
    694      1.15   thorpej 	 * If the queueing discipline needs packet classification,
    695      1.15   thorpej 	 * do it before prepending link headers.
    696      1.15   thorpej 	 */
    697       1.3  explorer 	IFQ_CLASSIFY(&ifp->if_snd, m, dst->sa_family, &pktattr);
    698       1.1  explorer 
    699       1.3  explorer #ifdef INET
    700       1.3  explorer 	if (dst->sa_family == AF_INET)
    701       1.3  explorer 	{
    702       1.1  explorer 		/* Check mbuf length here??? */
    703       1.3  explorer 		struct ip *ip = mtod (m, struct ip*);
    704       1.1  explorer 		struct tcphdr *tcp = (struct tcphdr*) ((long*)ip + ip->ip_hl);
    705       1.3  explorer 
    706       1.3  explorer 		/*
    707       1.3  explorer 		 * When using dynamic local IP address assignment by using
    708       1.3  explorer 		 * 0.0.0.0 as a local address, the first TCP session will
    709       1.3  explorer 		 * not connect because the local TCP checksum is computed
    710       1.3  explorer 		 * using 0.0.0.0 which will later become our real IP address
    711       1.3  explorer 		 * so the TCP checksum computed at the remote end will
    712       1.3  explorer 		 * become invalid. So we
    713       1.3  explorer 		 * - don't let packets with src ip addr 0 thru
    714       1.3  explorer 		 * - we flag TCP packets with src ip 0 as an error
    715       1.3  explorer 		 */
    716       1.3  explorer 
    717       1.3  explorer 		if(ip->ip_src.s_addr == INADDR_ANY)	/* -hm */
    718       1.3  explorer 		{
    719       1.3  explorer 			m_freem(m);
    720       1.3  explorer 			splx(s);
    721       1.3  explorer 			if(ip->ip_p == IPPROTO_TCP)
    722       1.3  explorer 				return(EADDRNOTAVAIL);
    723       1.3  explorer 			else
    724       1.3  explorer 				return(0);
    725       1.3  explorer 		}
    726       1.3  explorer 
    727       1.3  explorer 		/*
    728       1.3  explorer 		 * Put low delay, telnet, rlogin and ftp control packets
    729       1.3  explorer 		 * in front of the queue.
    730       1.3  explorer 		 */
    731       1.3  explorer 
    732       1.1  explorer 		if (! IF_QFULL (&sp->pp_fastq) &&
    733       1.3  explorer 		    ((ip->ip_tos & IPTOS_LOWDELAY) ||
    734       1.1  explorer 	    	    ((ip->ip_p == IPPROTO_TCP &&
    735       1.3  explorer 	    	    m->m_len >= sizeof (struct ip) + sizeof (struct tcphdr) &&
    736       1.3  explorer 	    	    (INTERACTIVE (ntohs (tcp->th_sport)))) ||
    737       1.1  explorer 	    	    INTERACTIVE (ntohs (tcp->th_dport)))))
    738       1.1  explorer 			ifq = &sp->pp_fastq;
    739       1.1  explorer 	}
    740       1.1  explorer #endif
    741       1.5    itojun 
    742       1.5    itojun #ifdef INET6
    743       1.5    itojun 	if (dst->sa_family == AF_INET6) {
    744       1.5    itojun 		/* XXX do something tricky here? */
    745       1.5    itojun 	}
    746       1.5    itojun #endif
    747      1.22    martin 
    748      1.22    martin 	if ((sp->pp_flags & PP_NOFRAMING) == 0) {
    749      1.22    martin 		/*
    750      1.22    martin 		 * Prepend general data packet PPP header. For now, IP only.
    751      1.22    martin 		 */
    752      1.22    martin 		M_PREPEND (m, PPP_HEADER_LEN, M_DONTWAIT);
    753      1.22    martin 		if (! m) {
    754      1.22    martin 			if (ifp->if_flags & IFF_DEBUG)
    755      1.22    martin 				log(LOG_DEBUG, SPP_FMT "no memory for transmit header\n",
    756      1.22    martin 					SPP_ARGS(ifp));
    757      1.22    martin 			++ifp->if_oerrors;
    758      1.22    martin 			splx (s);
    759      1.22    martin 			return (ENOBUFS);
    760      1.22    martin 		}
    761      1.22    martin 		/*
    762      1.22    martin 		 * May want to check size of packet
    763      1.22    martin 		 * (albeit due to the implementation it's always enough)
    764      1.22    martin 		 */
    765      1.22    martin 		h = mtod (m, struct ppp_header*);
    766      1.22    martin 		if (sp->pp_flags & PP_CISCO) {
    767      1.22    martin 			h->address = CISCO_UNICAST;        /* unicast address */
    768      1.22    martin 			h->control = 0;
    769      1.22    martin 		} else {
    770      1.22    martin 			h->address = PPP_ALLSTATIONS;        /* broadcast address */
    771      1.22    martin 			h->control = PPP_UI;                 /* Unnumbered Info */
    772       1.1  explorer 		}
    773       1.1  explorer 	}
    774       1.1  explorer 
    775       1.1  explorer 	switch (dst->sa_family) {
    776       1.1  explorer #ifdef INET
    777       1.1  explorer 	case AF_INET:   /* Internet Protocol */
    778      1.22    martin 		if (sp->pp_flags & PP_CISCO)
    779       1.1  explorer 			protocol = htons (ETHERTYPE_IP);
    780       1.3  explorer 		else {
    781       1.3  explorer 			/*
    782       1.3  explorer 			 * Don't choke with an ENETDOWN early.  It's
    783       1.3  explorer 			 * possible that we just started dialing out,
    784       1.3  explorer 			 * so don't drop the packet immediately.  If
    785       1.3  explorer 			 * we notice that we run out of buffer space
    786       1.3  explorer 			 * below, we will however remember that we are
    787       1.3  explorer 			 * not ready to carry IP packets, and return
    788       1.3  explorer 			 * ENETDOWN, as opposed to ENOBUFS.
    789      1.22    martin 			 */
    790       1.5    itojun 			protocol = htons(PPP_IP);
    791       1.5    itojun 			if (sp->state[IDX_IPCP] != STATE_OPENED)
    792       1.5    itojun 				rv = ENETDOWN;
    793       1.5    itojun 		}
    794       1.5    itojun 		break;
    795       1.5    itojun #endif
    796       1.5    itojun #ifdef INET6
    797       1.5    itojun 	case AF_INET6:   /* Internet Protocol version 6 */
    798      1.22    martin 		if (sp->pp_flags & PP_CISCO)
    799       1.5    itojun 			protocol = htons (ETHERTYPE_IPV6);
    800       1.5    itojun 		else {
    801       1.5    itojun 			/*
    802       1.5    itojun 			 * Don't choke with an ENETDOWN early.  It's
    803       1.5    itojun 			 * possible that we just started dialing out,
    804       1.5    itojun 			 * so don't drop the packet immediately.  If
    805       1.5    itojun 			 * we notice that we run out of buffer space
    806       1.5    itojun 			 * below, we will however remember that we are
    807       1.5    itojun 			 * not ready to carry IP packets, and return
    808       1.5    itojun 			 * ENETDOWN, as opposed to ENOBUFS.
    809      1.22    martin 			 */
    810       1.9    itojun 			protocol = htons(PPP_IPV6);
    811       1.3  explorer 			if (sp->state[IDX_IPV6CP] != STATE_OPENED)
    812       1.1  explorer 				rv = ENETDOWN;
    813       1.1  explorer 		}
    814       1.1  explorer 		break;
    815       1.1  explorer #endif
    816       1.1  explorer #ifdef NS
    817      1.22    martin 	case AF_NS:     /* Xerox NS Protocol */
    818       1.1  explorer 		protocol = htons ((sp->pp_flags & PP_CISCO) ?
    819       1.1  explorer 			ETHERTYPE_NS : PPP_XNS);
    820       1.1  explorer 		break;
    821       1.1  explorer #endif
    822       1.1  explorer #ifdef IPX
    823      1.22    martin 	case AF_IPX:     /* Novell IPX Protocol */
    824       1.1  explorer 		protocol = htons ((sp->pp_flags & PP_CISCO) ?
    825       1.1  explorer 			ETHERTYPE_IPX : PPP_IPX);
    826       1.1  explorer 		break;
    827       1.1  explorer #endif
    828       1.1  explorer #ifdef ISO
    829       1.1  explorer 	case AF_ISO:    /* ISO OSI Protocol */
    830       1.1  explorer 		if (sp->pp_flags & PP_CISCO)
    831      1.22    martin 			goto nosupport;
    832       1.1  explorer 		protocol = htons (PPP_ISO);
    833       1.1  explorer 		break;
    834       1.1  explorer nosupport:
    835       1.1  explorer #endif
    836       1.1  explorer 	default:
    837       1.3  explorer 		m_freem (m);
    838       1.1  explorer 		++ifp->if_oerrors;
    839       1.1  explorer 		splx (s);
    840       1.1  explorer 		return (EAFNOSUPPORT);
    841       1.1  explorer 	}
    842      1.22    martin 
    843      1.22    martin 	if (sp->pp_flags & PP_NOFRAMING) {
    844      1.22    martin 		M_PREPEND (m, 2, M_DONTWAIT);
    845      1.22    martin 		if (m == NULL) {
    846      1.22    martin 			if (ifp->if_flags & IFF_DEBUG)
    847      1.22    martin 				log(LOG_DEBUG, SPP_FMT "no memory for transmit header\n",
    848      1.22    martin 					SPP_ARGS(ifp));
    849      1.22    martin 			++ifp->if_oerrors;
    850      1.22    martin 			splx (s);
    851      1.22    martin 			return (ENOBUFS);
    852      1.22    martin 		}
    853      1.22    martin 		*mtod(m, u_int16_t*) = protocol;
    854      1.22    martin 	} else {
    855      1.22    martin 		h->protocol = protocol;
    856      1.22    martin 	}
    857       1.1  explorer 
    858       1.1  explorer 	/*
    859       1.1  explorer 	 * Queue message on interface, and start output if interface
    860       1.1  explorer 	 * not yet active.
    861      1.15   thorpej 	 */
    862      1.15   thorpej 	len = m->m_pkthdr.len;
    863      1.15   thorpej 	if (ifq != NULL
    864      1.15   thorpej #ifdef ALTQ
    865      1.15   thorpej 	    && ALTQ_IS_ENABLED(&ifp->if_snd) == 0
    866      1.15   thorpej #endif
    867      1.15   thorpej 	    ) {
    868      1.15   thorpej 		if (IF_QFULL (ifq)) {
    869      1.15   thorpej 			IF_DROP (&ifp->if_snd);
    870      1.15   thorpej 			m_freem (m);
    871      1.15   thorpej 			if (rv == 0)
    872      1.15   thorpej 				rv = ENOBUFS;
    873      1.15   thorpej 		}
    874      1.15   thorpej 		IF_ENQUEUE(ifq, m);
    875      1.15   thorpej 	} else
    876      1.15   thorpej 		IFQ_ENQUEUE(&ifp->if_snd, m, &pktattr, rv);
    877       1.3  explorer 	if (rv != 0) {
    878      1.15   thorpej 		++ifp->if_oerrors;
    879      1.15   thorpej 		splx(s);
    880       1.1  explorer 		return (rv);
    881      1.15   thorpej 	}
    882       1.1  explorer 
    883       1.1  explorer 	if (! (ifp->if_flags & IFF_OACTIVE))
    884       1.1  explorer 		(*ifp->if_start) (ifp);
    885       1.1  explorer 
    886       1.1  explorer 	/*
    887      1.22    martin 	 * Count output packets and bytes.
    888       1.1  explorer 	 * The packet length includes header + additional hardware framing
    889       1.1  explorer 	 * according to RFC 1333.
    890      1.22    martin 	 */
    891       1.1  explorer 	ifp->if_obytes += len + sp->pp_framebytes;
    892       1.1  explorer 	splx (s);
    893       1.1  explorer 	return (0);
    894       1.1  explorer }
    895       1.3  explorer 
    896       1.3  explorer void
    897       1.1  explorer sppp_attach(struct ifnet *ifp)
    898       1.1  explorer {
    899       1.1  explorer 	struct sppp *sp = (struct sppp*) ifp;
    900       1.1  explorer 
    901       1.7   thorpej 	/* Initialize keepalive handler. */
    902       1.7   thorpej 	if (! spppq) {
    903       1.7   thorpej 		callout_init(&keepalive_ch);
    904       1.7   thorpej 		callout_reset(&keepalive_ch, hz * 10, sppp_keepalive, NULL);
    905       1.1  explorer 	}
    906       1.1  explorer 
    907       1.1  explorer 	/* Insert new entry into the keepalive list. */
    908       1.1  explorer 	sp->pp_next = spppq;
    909       1.1  explorer 	spppq = sp;
    910       1.1  explorer 
    911       1.1  explorer 	sp->pp_if.if_type = IFT_PPP;
    912       1.1  explorer 	sp->pp_if.if_output = sppp_output;
    913       1.3  explorer 	sp->pp_fastq.ifq_maxlen = 32;
    914       1.1  explorer 	sp->pp_cpq.ifq_maxlen = 20;
    915       1.1  explorer 	sp->pp_loopcnt = 0;
    916      1.25   thorpej 	sp->pp_alivecnt = 0;
    917      1.25   thorpej 	memset(&sp->pp_seq[0], 0, sizeof(sp->pp_seq));
    918       1.3  explorer 	memset(&sp->pp_rseq[0], 0, sizeof(sp->pp_rseq));
    919       1.3  explorer 	sp->pp_phase = PHASE_DEAD;
    920       1.3  explorer 	sp->pp_up = lcp.Up;
    921       1.3  explorer 	sp->pp_down = lcp.Down;
    922      1.20   thorpej 
    923      1.20   thorpej 	if_alloc_sadl(ifp);
    924       1.3  explorer 
    925       1.3  explorer 	sppp_lcp_init(sp);
    926       1.9    itojun 	sppp_ipcp_init(sp);
    927       1.3  explorer 	sppp_ipv6cp_init(sp);
    928       1.3  explorer 	sppp_pap_init(sp);
    929       1.1  explorer 	sppp_chap_init(sp);
    930       1.1  explorer }
    931       1.3  explorer 
    932       1.3  explorer void
    933       1.1  explorer sppp_detach(struct ifnet *ifp)
    934       1.1  explorer {
    935       1.3  explorer 	struct sppp **q, *p, *sp = (struct sppp*) ifp;
    936       1.1  explorer 	int i;
    937       1.1  explorer 
    938       1.1  explorer 	/* Remove the entry from the keepalive list. */
    939       1.1  explorer 	for (q = &spppq; (p = *q); q = &p->pp_next)
    940       1.1  explorer 		if (p == sp) {
    941       1.1  explorer 			*q = p->pp_next;
    942       1.1  explorer 			break;
    943       1.1  explorer 		}
    944       1.1  explorer 
    945       1.7   thorpej 	/* Stop keepalive handler. */
    946       1.7   thorpej 	if (! spppq) {
    947       1.7   thorpej 		callout_stop(&keepalive_ch);
    948       1.3  explorer 	}
    949       1.7   thorpej 
    950       1.7   thorpej 	for (i = 0; i < IDX_COUNT; i++) {
    951       1.7   thorpej 		callout_stop(&sp->ch[i]);
    952       1.7   thorpej 	}
    953      1.20   thorpej 	callout_stop(&sp->pap_my_to_ch);
    954      1.20   thorpej 
    955       1.1  explorer 	if_free_sadl(ifp);
    956       1.1  explorer }
    957       1.1  explorer 
    958       1.1  explorer /*
    959       1.1  explorer  * Flush the interface output queue.
    960       1.3  explorer  */
    961       1.3  explorer void
    962       1.1  explorer sppp_flush(struct ifnet *ifp)
    963       1.1  explorer {
    964       1.1  explorer 	struct sppp *sp = (struct sppp*) ifp;
    965      1.16   thorpej 
    966      1.26    itojun 	IFQ_PURGE (&sp->pp_if.if_snd);
    967      1.26    itojun 	IF_PURGE (&sp->pp_fastq);
    968       1.1  explorer 	IF_PURGE (&sp->pp_cpq);
    969       1.1  explorer }
    970       1.1  explorer 
    971       1.1  explorer /*
    972       1.1  explorer  * Check if the output queue is empty.
    973       1.1  explorer  */
    974       1.3  explorer int
    975       1.1  explorer sppp_isempty(struct ifnet *ifp)
    976       1.1  explorer {
    977       1.3  explorer 	struct sppp *sp = (struct sppp*) ifp;
    978       1.1  explorer 	int empty, s;
    979      1.23   thorpej 
    980       1.3  explorer 	s = splnet();
    981       1.3  explorer 	empty = !sp->pp_fastq.ifq_head && !sp->pp_cpq.ifq_head &&
    982       1.3  explorer 		!sp->pp_if.if_snd.ifq_head;
    983       1.1  explorer 	splx(s);
    984       1.1  explorer 	return (empty);
    985       1.1  explorer }
    986       1.1  explorer 
    987       1.1  explorer /*
    988       1.1  explorer  * Get next packet to send.
    989       1.3  explorer  */
    990       1.3  explorer struct mbuf *
    991       1.1  explorer sppp_dequeue(struct ifnet *ifp)
    992       1.1  explorer {
    993       1.1  explorer 	struct sppp *sp = (struct sppp*) ifp;
    994       1.3  explorer 	struct mbuf *m;
    995       1.1  explorer 	int s;
    996      1.23   thorpej 
    997       1.3  explorer 	s = splnet();
    998       1.3  explorer 	/*
    999       1.3  explorer 	 * Process only the control protocol queue until we have at
   1000       1.3  explorer 	 * least one NCP open.
   1001       1.3  explorer 	 *
   1002       1.3  explorer 	 * Do always serve all three queues in Cisco mode.
   1003       1.3  explorer 	 */
   1004       1.3  explorer 	IF_DEQUEUE(&sp->pp_cpq, m);
   1005       1.3  explorer 	if (m == NULL &&
   1006       1.3  explorer 	    (sppp_ncp_check(sp) || (sp->pp_flags & PP_CISCO) != 0)) {
   1007       1.3  explorer 		IF_DEQUEUE(&sp->pp_fastq, m);
   1008       1.3  explorer 		if (m == NULL)
   1009       1.3  explorer 			IF_DEQUEUE (&sp->pp_if.if_snd, m);
   1010       1.3  explorer 	}
   1011       1.3  explorer 	splx(s);
   1012       1.1  explorer 	return m;
   1013       1.1  explorer }
   1014       1.1  explorer 
   1015       1.3  explorer /*
   1016       1.1  explorer  * Pick the next packet, do not remove it from the queue.
   1017       1.3  explorer  */
   1018       1.3  explorer struct mbuf *
   1019       1.1  explorer sppp_pick(struct ifnet *ifp)
   1020       1.3  explorer {
   1021       1.3  explorer 	struct sppp *sp = (struct sppp*)ifp;
   1022       1.3  explorer 	struct mbuf *m;
   1023       1.1  explorer 	int s;
   1024      1.23   thorpej 
   1025       1.1  explorer 	s= splnet ();
   1026       1.3  explorer 
   1027       1.3  explorer 	m = sp->pp_cpq.ifq_head;
   1028       1.3  explorer 	if (m == NULL &&
   1029       1.3  explorer 	    (sp->pp_phase == PHASE_NETWORK ||
   1030       1.3  explorer 	     (sp->pp_flags & PP_CISCO) != 0))
   1031       1.3  explorer 		if ((m = sp->pp_fastq.ifq_head) == NULL)
   1032       1.1  explorer 			m = sp->pp_if.if_snd.ifq_head;
   1033       1.3  explorer 	splx (s);
   1034       1.1  explorer 	return (m);
   1035       1.1  explorer }
   1036       1.1  explorer 
   1037       1.3  explorer /*
   1038       1.1  explorer  * Process an ioctl request.  Called on low priority level.
   1039       1.3  explorer  */
   1040       1.3  explorer int
   1041       1.1  explorer sppp_ioctl(struct ifnet *ifp, u_long cmd, void *data)
   1042       1.3  explorer {
   1043       1.3  explorer 	struct ifreq *ifr = (struct ifreq*) data;
   1044       1.3  explorer 	struct sppp *sp = (struct sppp*) ifp;
   1045       1.1  explorer 	int s, rv, going_up, going_down, newmode;
   1046      1.23   thorpej 
   1047       1.3  explorer 	s = splnet();
   1048       1.3  explorer 	rv = 0;
   1049       1.3  explorer 	switch (cmd) {
   1050       1.3  explorer 	case SIOCAIFADDR:
   1051       1.1  explorer 	case SIOCSIFDSTADDR:
   1052       1.3  explorer 		break;
   1053       1.3  explorer 
   1054       1.3  explorer 	case SIOCSIFADDR:
   1055       1.3  explorer 		if_up(ifp);
   1056       1.3  explorer 		/* fall through... */
   1057       1.3  explorer 
   1058       1.3  explorer 	case SIOCSIFFLAGS:
   1059       1.3  explorer 		going_up = ifp->if_flags & IFF_UP &&
   1060       1.3  explorer 			(ifp->if_flags & IFF_RUNNING) == 0;
   1061       1.3  explorer 		going_down = (ifp->if_flags & IFF_UP) == 0 &&
   1062       1.3  explorer 			ifp->if_flags & IFF_RUNNING;
   1063       1.3  explorer 		newmode = ifp->if_flags & (IFF_AUTO | IFF_PASSIVE);
   1064       1.3  explorer 		if (newmode == (IFF_AUTO | IFF_PASSIVE)) {
   1065       1.3  explorer 			/* sanity */
   1066       1.3  explorer 			newmode = IFF_PASSIVE;
   1067       1.1  explorer 			ifp->if_flags &= ~IFF_AUTO;
   1068       1.1  explorer 		}
   1069       1.3  explorer 
   1070       1.3  explorer 		if (going_up || going_down)
   1071       1.3  explorer 			lcp.Close(sp);
   1072       1.3  explorer 		if (going_up && newmode == 0) {
   1073       1.3  explorer 			/* neither auto-dial nor passive */
   1074       1.3  explorer 			ifp->if_flags |= IFF_RUNNING;
   1075       1.3  explorer 			if (!(sp->pp_flags & PP_CISCO))
   1076       1.3  explorer 				lcp.Open(sp);
   1077       1.3  explorer 		} else if (going_down) {
   1078       1.3  explorer 			sppp_flush(ifp);
   1079       1.1  explorer 			ifp->if_flags &= ~IFF_RUNNING;
   1080       1.3  explorer 		}
   1081       1.3  explorer 
   1082       1.3  explorer 		break;
   1083       1.3  explorer 
   1084       1.3  explorer #ifdef SIOCSIFMTU
   1085       1.3  explorer #ifndef ifr_mtu
   1086       1.3  explorer #define ifr_mtu ifr_metric
   1087       1.3  explorer #endif
   1088       1.3  explorer 	case SIOCSIFMTU:
   1089       1.3  explorer 		if (ifr->ifr_mtu < 128 || ifr->ifr_mtu > sp->lcp.their_mru)
   1090       1.3  explorer 			return (EINVAL);
   1091       1.3  explorer 		ifp->if_mtu = ifr->ifr_mtu;
   1092       1.3  explorer 		break;
   1093       1.3  explorer #endif
   1094       1.3  explorer #ifdef SLIOCSETMTU
   1095       1.3  explorer 	case SLIOCSETMTU:
   1096       1.3  explorer 		if (*(short*)data < 128 || *(short*)data > sp->lcp.their_mru)
   1097       1.3  explorer 			return (EINVAL);
   1098       1.1  explorer 		ifp->if_mtu = *(short*)data;
   1099       1.3  explorer 		break;
   1100       1.3  explorer #endif
   1101       1.3  explorer #ifdef SIOCGIFMTU
   1102       1.3  explorer 	case SIOCGIFMTU:
   1103       1.1  explorer 		ifr->ifr_mtu = ifp->if_mtu;
   1104       1.3  explorer 		break;
   1105       1.3  explorer #endif
   1106       1.3  explorer #ifdef SLIOCGETMTU
   1107       1.3  explorer 	case SLIOCGETMTU:
   1108       1.1  explorer 		*(short*)data = ifp->if_mtu;
   1109       1.3  explorer 		break;
   1110       1.3  explorer #endif
   1111       1.3  explorer 	case SIOCADDMULTI:
   1112       1.1  explorer 	case SIOCDELMULTI:
   1113       1.1  explorer 		break;
   1114       1.3  explorer 
   1115       1.3  explorer 	case SIOCGIFGENERIC:
   1116       1.3  explorer 	case SIOCSIFGENERIC:
   1117       1.1  explorer 		rv = sppp_params(sp, cmd, data);
   1118       1.3  explorer 		break;
   1119       1.3  explorer 
   1120       1.3  explorer 	default:
   1121       1.1  explorer 		rv = ENOTTY;
   1122       1.3  explorer 	}
   1123       1.3  explorer 	splx(s);
   1124       1.1  explorer 	return rv;
   1125       1.1  explorer }
   1126       1.3  explorer 
   1127       1.3  explorer 
   1128       1.3  explorer /*
   1130       1.3  explorer  * Cisco framing implementation.
   1131       1.1  explorer  */
   1132       1.1  explorer 
   1133       1.1  explorer /*
   1134       1.3  explorer  * Handle incoming Cisco keepalive protocol packets.
   1135       1.3  explorer  */
   1136       1.1  explorer static void
   1137       1.3  explorer sppp_cisco_input(struct sppp *sp, struct mbuf *m)
   1138       1.1  explorer {
   1139       1.3  explorer 	STDDCL;
   1140       1.1  explorer 	struct cisco_packet *h;
   1141       1.1  explorer 	u_long me, mymask;
   1142       1.3  explorer 
   1143       1.3  explorer 	if (m->m_pkthdr.len < CISCO_PACKET_LEN) {
   1144       1.3  explorer 		if (debug)
   1145       1.3  explorer 			log(LOG_DEBUG,
   1146       1.1  explorer 			    SPP_FMT "cisco invalid packet length: %d bytes\n",
   1147       1.1  explorer 			    SPP_ARGS(ifp), m->m_pkthdr.len);
   1148       1.1  explorer 		return;
   1149       1.3  explorer 	}
   1150       1.3  explorer 	h = mtod (m, struct cisco_packet*);
   1151       1.3  explorer 	if (debug)
   1152       1.3  explorer 		log(LOG_DEBUG,
   1153       1.3  explorer 		    SPP_FMT "cisco input: %d bytes "
   1154       1.3  explorer 		    "<0x%lx 0x%lx 0x%lx 0x%x 0x%x-0x%x>\n",
   1155       1.3  explorer 		    SPP_ARGS(ifp), m->m_pkthdr.len,
   1156       1.1  explorer 		    (u_long)ntohl (h->type), (u_long)h->par1, (u_long)h->par2, (u_int)h->rel,
   1157       1.1  explorer 		    (u_int)h->time0, (u_int)h->time1);
   1158       1.3  explorer 	switch (ntohl (h->type)) {
   1159       1.3  explorer 	default:
   1160       1.3  explorer 		if (debug)
   1161       1.1  explorer 			addlog(SPP_FMT "cisco unknown packet type: 0x%lx\n",
   1162       1.1  explorer 			       SPP_ARGS(ifp), (u_long)ntohl (h->type));
   1163       1.1  explorer 		break;
   1164       1.1  explorer 	case CISCO_ADDR_REPLY:
   1165       1.1  explorer 		/* Reply on address request, ignore */
   1166       1.1  explorer 		break;
   1167       1.9    itojun 	case CISCO_KEEPALIVE_REQ:
   1168       1.9    itojun 		sp->pp_alivecnt = 0;
   1169       1.1  explorer 		sp->pp_rseq[IDX_LCP] = ntohl (h->par1);
   1170       1.1  explorer 		if (sp->pp_seq[IDX_LCP] == sp->pp_rseq[IDX_LCP]) {
   1171       1.1  explorer 			/* Local and remote sequence numbers are equal.
   1172       1.3  explorer 			 * Probably, the line is in loopback mode. */
   1173       1.3  explorer 			if (sp->pp_loopcnt >= MAXALIVECNT) {
   1174       1.1  explorer 				printf (SPP_FMT "loopback\n",
   1175       1.1  explorer 					SPP_ARGS(ifp));
   1176       1.1  explorer 				sp->pp_loopcnt = 0;
   1177      1.26    itojun 				if (ifp->if_flags & IFF_UP) {
   1178       1.1  explorer 					if_down (ifp);
   1179       1.1  explorer 					IF_PURGE (&sp->pp_cpq);
   1180       1.1  explorer 				}
   1181       1.1  explorer 			}
   1182       1.1  explorer 			++sp->pp_loopcnt;
   1183       1.9    itojun 
   1184       1.1  explorer 			/* Generate new local sequence number */
   1185       1.1  explorer 			sp->pp_seq[IDX_LCP] = random();
   1186       1.3  explorer 			break;
   1187       1.1  explorer 		}
   1188       1.1  explorer 		sp->pp_loopcnt = 0;
   1189       1.3  explorer 		if (! (ifp->if_flags & IFF_UP) &&
   1190       1.3  explorer 		    (ifp->if_flags & IFF_RUNNING)) {
   1191       1.1  explorer 			if_up(ifp);
   1192       1.1  explorer 			printf (SPP_FMT "up\n", SPP_ARGS(ifp));
   1193       1.1  explorer 		}
   1194       1.3  explorer 		break;
   1195       1.3  explorer 	case CISCO_ADDR_REQ:
   1196       1.3  explorer 		sppp_get_ip_addrs(sp, &me, 0, &mymask);
   1197       1.1  explorer 		if (me != 0L)
   1198       1.1  explorer 			sppp_cisco_send(sp, CISCO_ADDR_REPLY, me, mymask);
   1199       1.1  explorer 		break;
   1200       1.1  explorer 	}
   1201       1.1  explorer }
   1202       1.3  explorer 
   1203       1.1  explorer /*
   1204       1.1  explorer  * Send Cisco keepalive packet.
   1205       1.3  explorer  */
   1206       1.1  explorer static void
   1207       1.3  explorer sppp_cisco_send(struct sppp *sp, int type, long par1, long par2)
   1208       1.1  explorer {
   1209       1.3  explorer 	STDDCL;
   1210       1.1  explorer 	struct ppp_header *h;
   1211       1.3  explorer 	struct cisco_packet *ch;
   1212       1.1  explorer 	struct mbuf *m;
   1213       1.1  explorer 	u_long t = (time.tv_sec - boottime.tv_sec) * 1000;
   1214       1.1  explorer 
   1215       1.1  explorer 	MGETHDR (m, M_DONTWAIT, MT_DATA);
   1216       1.3  explorer 	if (! m)
   1217       1.1  explorer 		return;
   1218       1.1  explorer 	m->m_pkthdr.len = m->m_len = PPP_HEADER_LEN + CISCO_PACKET_LEN;
   1219       1.1  explorer 	m->m_pkthdr.rcvif = 0;
   1220       1.3  explorer 
   1221       1.3  explorer 	h = mtod (m, struct ppp_header*);
   1222       1.3  explorer 	h->address = CISCO_MULTICAST;
   1223       1.3  explorer 	h->control = 0;
   1224       1.3  explorer 	h->protocol = htons (CISCO_KEEPALIVE);
   1225       1.3  explorer 
   1226       1.3  explorer 	ch = (struct cisco_packet*) (h + 1);
   1227       1.3  explorer 	ch->type = htonl (type);
   1228       1.3  explorer 	ch->par1 = htonl (par1);
   1229       1.3  explorer 	ch->par2 = htonl (par2);
   1230       1.3  explorer 	ch->rel = -1;
   1231       1.3  explorer 
   1232       1.1  explorer 	ch->time0 = htons ((u_short) (t >> 16));
   1233       1.3  explorer 	ch->time1 = htons ((u_short) t);
   1234       1.3  explorer 
   1235       1.3  explorer 	if (debug)
   1236       1.3  explorer 		log(LOG_DEBUG,
   1237       1.3  explorer 		    SPP_FMT "cisco output: <0x%lx 0x%lx 0x%lx 0x%x 0x%x-0x%x>\n",
   1238       1.1  explorer 			SPP_ARGS(ifp), (u_long)ntohl (ch->type), (u_long)ch->par1,
   1239       1.3  explorer 			(u_long)ch->par2, (u_int)ch->rel, (u_int)ch->time0, (u_int)ch->time1);
   1240       1.3  explorer 
   1241       1.1  explorer 	if (IF_QFULL (&sp->pp_cpq)) {
   1242       1.1  explorer 		IF_DROP (&sp->pp_fastq);
   1243       1.1  explorer 		IF_DROP (&ifp->if_snd);
   1244       1.3  explorer 		m_freem (m);
   1245       1.1  explorer 	} else
   1246       1.1  explorer 		IF_ENQUEUE (&sp->pp_cpq, m);
   1247      1.22    martin 	if (! (ifp->if_flags & IFF_OACTIVE))
   1248       1.1  explorer 		(*ifp->if_start) (ifp);
   1249       1.1  explorer 	ifp->if_obytes += m->m_pkthdr.len + sp->pp_framebytes;
   1250       1.3  explorer }
   1251       1.3  explorer 
   1252       1.3  explorer /*
   1254       1.1  explorer  * PPP protocol implementation.
   1255       1.3  explorer  */
   1256       1.1  explorer 
   1257       1.1  explorer /*
   1258       1.3  explorer  * Send PPP control protocol packet.
   1259       1.3  explorer  */
   1260       1.1  explorer static void
   1261       1.3  explorer sppp_cp_send(struct sppp *sp, u_short proto, u_char type,
   1262       1.3  explorer 	     u_char ident, u_short len, void *data)
   1263       1.1  explorer {
   1264      1.22    martin 	STDDCL;
   1265       1.1  explorer 	struct lcp_header *lh;
   1266      1.22    martin 	struct mbuf *m;
   1267      1.22    martin 	size_t pkthdrlen;
   1268      1.22    martin 
   1269      1.22    martin 	pkthdrlen = (sp->pp_flags & PP_NOFRAMING) ? 2 : PPP_HEADER_LEN;
   1270       1.1  explorer 
   1271       1.1  explorer 	if (len > MHLEN - pkthdrlen - LCP_HEADER_LEN)
   1272       1.1  explorer 		len = MHLEN - pkthdrlen - LCP_HEADER_LEN;
   1273      1.22    martin 	MGETHDR (m, M_DONTWAIT, MT_DATA);
   1274       1.1  explorer 	if (! m)
   1275       1.1  explorer 		return;
   1276      1.22    martin 	m->m_pkthdr.len = m->m_len = pkthdrlen + LCP_HEADER_LEN + len;
   1277      1.22    martin 	m->m_pkthdr.rcvif = 0;
   1278      1.22    martin 
   1279      1.22    martin 	if (sp->pp_flags & PP_NOFRAMING) {
   1280      1.22    martin 		*mtod(m, u_int16_t*) = htons(proto);
   1281      1.22    martin 		lh = (struct lcp_header*)(mtod(m, u_int8_t*) + 2);
   1282      1.22    martin 	} else {
   1283      1.22    martin 		struct ppp_header *h;
   1284      1.22    martin 		h = mtod (m, struct ppp_header*);
   1285      1.22    martin 		h->address = PPP_ALLSTATIONS;        /* broadcast address */
   1286      1.22    martin 		h->control = PPP_UI;                 /* Unnumbered Info */
   1287       1.3  explorer 		h->protocol = htons (proto);         /* Link Control Protocol */
   1288       1.3  explorer 		lh = (struct lcp_header*) (h + 1);
   1289       1.3  explorer 	}
   1290       1.3  explorer 	lh->type = type;
   1291       1.3  explorer 	lh->ident = ident;
   1292       1.1  explorer 	lh->len = htons (LCP_HEADER_LEN + len);
   1293       1.3  explorer 	if (len)
   1294       1.3  explorer 		bcopy (data, lh+1, len);
   1295       1.3  explorer 
   1296       1.3  explorer 	if (debug) {
   1297       1.3  explorer 		log(LOG_DEBUG, SPP_FMT "%s output <%s id=0x%x len=%d",
   1298       1.3  explorer 		    SPP_ARGS(ifp),
   1299       1.3  explorer 		    sppp_proto_name(proto),
   1300       1.3  explorer 		    sppp_cp_type_name (lh->type), lh->ident,
   1301       1.3  explorer 		    ntohs (lh->len));
   1302       1.3  explorer 		if (len)
   1303       1.3  explorer 			sppp_print_bytes ((u_char*) (lh+1), len);
   1304       1.3  explorer 		addlog(">\n");
   1305       1.1  explorer 	}
   1306       1.1  explorer 	if (IF_QFULL (&sp->pp_cpq)) {
   1307       1.3  explorer 		IF_DROP (&sp->pp_fastq);
   1308       1.1  explorer 		IF_DROP (&ifp->if_snd);
   1309       1.3  explorer 		m_freem (m);
   1310       1.1  explorer 		++ifp->if_oerrors;
   1311       1.1  explorer 	} else
   1312      1.22    martin 		IF_ENQUEUE (&sp->pp_cpq, m);
   1313       1.1  explorer 	if (! (ifp->if_flags & IFF_OACTIVE))
   1314       1.1  explorer 		(*ifp->if_start) (ifp);
   1315       1.1  explorer 	ifp->if_obytes += m->m_pkthdr.len + sp->pp_framebytes;
   1316       1.3  explorer }
   1317       1.1  explorer 
   1318       1.1  explorer /*
   1319       1.3  explorer  * Handle incoming PPP control protocol packets.
   1320       1.1  explorer  */
   1321       1.3  explorer static void
   1322       1.1  explorer sppp_cp_input(const struct cp *cp, struct sppp *sp, struct mbuf *m)
   1323       1.1  explorer {
   1324       1.3  explorer 	STDDCL;
   1325       1.3  explorer 	struct lcp_header *h;
   1326       1.1  explorer 	int len = m->m_pkthdr.len;
   1327       1.1  explorer 	int rv;
   1328       1.3  explorer 	u_char *p;
   1329       1.3  explorer 
   1330       1.3  explorer 	if (len < 4) {
   1331       1.3  explorer 		if (debug)
   1332       1.1  explorer 			log(LOG_DEBUG,
   1333       1.1  explorer 			    SPP_FMT "%s invalid packet length: %d bytes\n",
   1334       1.1  explorer 			    SPP_ARGS(ifp), cp->name, len);
   1335       1.3  explorer 		return;
   1336       1.3  explorer 	}
   1337       1.3  explorer 	h = mtod (m, struct lcp_header*);
   1338       1.3  explorer 	if (debug) {
   1339       1.3  explorer 		log(LOG_DEBUG,
   1340       1.3  explorer 		    SPP_FMT "%s input(%s): <%s id=0x%x len=%d",
   1341       1.1  explorer 		    SPP_ARGS(ifp), cp->name,
   1342       1.3  explorer 		    sppp_state_name(sp->state[cp->protoidx]),
   1343       1.3  explorer 		    sppp_cp_type_name (h->type), h->ident, ntohs (h->len));
   1344       1.1  explorer 		if (len > 4)
   1345       1.1  explorer 			sppp_print_bytes ((u_char*) (h+1), len-4);
   1346       1.1  explorer 		addlog(">\n");
   1347       1.3  explorer 	}
   1348       1.1  explorer 	if (len > ntohs (h->len))
   1349       1.3  explorer 		len = ntohs (h->len);
   1350       1.1  explorer 	p = (u_char *)(h + 1);
   1351       1.3  explorer 	switch (h->type) {
   1352       1.3  explorer 	case CONF_REQ:
   1353       1.3  explorer 		if (len < 4) {
   1354       1.3  explorer 			if (debug)
   1355       1.3  explorer 				addlog(SPP_FMT "%s invalid conf-req length %d\n",
   1356       1.3  explorer 				       SPP_ARGS(ifp), cp->name,
   1357       1.3  explorer 				       len);
   1358       1.3  explorer 			++ifp->if_ierrors;
   1359       1.3  explorer 			break;
   1360       1.3  explorer 		}
   1361       1.3  explorer 		/* handle states where RCR doesn't get a SCA/SCN */
   1362       1.1  explorer 		switch (sp->state[cp->protoidx]) {
   1363       1.3  explorer 		case STATE_CLOSING:
   1364       1.3  explorer 		case STATE_STOPPING:
   1365       1.3  explorer 			return;
   1366       1.3  explorer 		case STATE_CLOSED:
   1367       1.3  explorer 			sppp_cp_send(sp, cp->proto, TERM_ACK, h->ident,
   1368       1.3  explorer 				     0, 0);
   1369       1.3  explorer 			return;
   1370       1.3  explorer 		}
   1371       1.3  explorer 		rv = (cp->RCR)(sp, h, len);
   1372       1.3  explorer 		switch (sp->state[cp->protoidx]) {
   1373       1.3  explorer 		case STATE_OPENED:
   1374       1.3  explorer 			(cp->tld)(sp);
   1375       1.3  explorer 			(cp->scr)(sp);
   1376       1.3  explorer 			/* fall through... */
   1377       1.3  explorer 		case STATE_ACK_SENT:
   1378       1.3  explorer 		case STATE_REQ_SENT:
   1379       1.3  explorer 			sppp_cp_change_state(cp, sp, rv?
   1380       1.3  explorer 					     STATE_ACK_SENT: STATE_REQ_SENT);
   1381       1.3  explorer 			break;
   1382       1.3  explorer 		case STATE_STOPPED:
   1383       1.3  explorer 			sp->rst_counter[cp->protoidx] = sp->lcp.max_configure;
   1384       1.3  explorer 			(cp->scr)(sp);
   1385       1.3  explorer 			sppp_cp_change_state(cp, sp, rv?
   1386       1.3  explorer 					     STATE_ACK_SENT: STATE_REQ_SENT);
   1387       1.3  explorer 			break;
   1388       1.3  explorer 		case STATE_ACK_RCVD:
   1389       1.3  explorer 			if (rv) {
   1390       1.3  explorer 				sppp_cp_change_state(cp, sp, STATE_OPENED);
   1391       1.3  explorer 				if (debug)
   1392       1.3  explorer 					log(LOG_DEBUG, SPP_FMT "%s tlu\n",
   1393       1.3  explorer 					    SPP_ARGS(ifp),
   1394       1.3  explorer 					    cp->name);
   1395       1.3  explorer 				(cp->tlu)(sp);
   1396       1.3  explorer 			} else
   1397       1.3  explorer 				sppp_cp_change_state(cp, sp, STATE_ACK_RCVD);
   1398       1.3  explorer 			break;
   1399       1.3  explorer 		default:
   1400       1.3  explorer 			printf(SPP_FMT "%s illegal %s in state %s\n",
   1401       1.3  explorer 			       SPP_ARGS(ifp), cp->name,
   1402       1.3  explorer 			       sppp_cp_type_name(h->type),
   1403       1.3  explorer 			       sppp_state_name(sp->state[cp->protoidx]));
   1404       1.3  explorer 			++ifp->if_ierrors;
   1405       1.3  explorer 		}
   1406       1.3  explorer 		break;
   1407       1.3  explorer 	case CONF_ACK:
   1408       1.3  explorer 		if (h->ident != sp->confid[cp->protoidx]) {
   1409       1.3  explorer 			if (debug)
   1410       1.3  explorer 				addlog(SPP_FMT "%s id mismatch 0x%x != 0x%x\n",
   1411       1.3  explorer 				       SPP_ARGS(ifp), cp->name,
   1412       1.3  explorer 				       h->ident, sp->confid[cp->protoidx]);
   1413       1.3  explorer 			++ifp->if_ierrors;
   1414       1.3  explorer 			break;
   1415       1.3  explorer 		}
   1416       1.3  explorer 		switch (sp->state[cp->protoidx]) {
   1417       1.3  explorer 		case STATE_CLOSED:
   1418       1.3  explorer 		case STATE_STOPPED:
   1419       1.3  explorer 			sppp_cp_send(sp, cp->proto, TERM_ACK, h->ident, 0, 0);
   1420       1.3  explorer 			break;
   1421       1.3  explorer 		case STATE_CLOSING:
   1422       1.3  explorer 		case STATE_STOPPING:
   1423       1.3  explorer 			break;
   1424       1.3  explorer 		case STATE_REQ_SENT:
   1425       1.3  explorer 			sp->rst_counter[cp->protoidx] = sp->lcp.max_configure;
   1426       1.3  explorer 			sppp_cp_change_state(cp, sp, STATE_ACK_RCVD);
   1427       1.3  explorer 			break;
   1428       1.3  explorer 		case STATE_OPENED:
   1429       1.3  explorer 			(cp->tld)(sp);
   1430       1.3  explorer 			/* fall through */
   1431       1.3  explorer 		case STATE_ACK_RCVD:
   1432       1.3  explorer 			(cp->scr)(sp);
   1433       1.3  explorer 			sppp_cp_change_state(cp, sp, STATE_REQ_SENT);
   1434       1.3  explorer 			break;
   1435       1.3  explorer 		case STATE_ACK_SENT:
   1436       1.3  explorer 			sp->rst_counter[cp->protoidx] = sp->lcp.max_configure;
   1437       1.3  explorer 			sppp_cp_change_state(cp, sp, STATE_OPENED);
   1438       1.3  explorer 			if (debug)
   1439       1.3  explorer 				log(LOG_DEBUG, SPP_FMT "%s tlu\n",
   1440       1.3  explorer 				       SPP_ARGS(ifp), cp->name);
   1441       1.3  explorer 			(cp->tlu)(sp);
   1442       1.3  explorer 			break;
   1443       1.3  explorer 		default:
   1444       1.3  explorer 			printf(SPP_FMT "%s illegal %s in state %s\n",
   1445       1.3  explorer 			       SPP_ARGS(ifp), cp->name,
   1446       1.3  explorer 			       sppp_cp_type_name(h->type),
   1447       1.3  explorer 			       sppp_state_name(sp->state[cp->protoidx]));
   1448       1.3  explorer 			++ifp->if_ierrors;
   1449       1.3  explorer 		}
   1450       1.3  explorer 		break;
   1451       1.3  explorer 	case CONF_NAK:
   1452       1.3  explorer 	case CONF_REJ:
   1453       1.3  explorer 		if (h->ident != sp->confid[cp->protoidx]) {
   1454       1.3  explorer 			if (debug)
   1455       1.3  explorer 				addlog(SPP_FMT "%s id mismatch 0x%x != 0x%x\n",
   1456       1.3  explorer 				       SPP_ARGS(ifp), cp->name,
   1457       1.1  explorer 				       h->ident, sp->confid[cp->protoidx]);
   1458       1.3  explorer 			++ifp->if_ierrors;
   1459       1.3  explorer 			break;
   1460       1.3  explorer 		}
   1461       1.3  explorer 		if (h->type == CONF_NAK)
   1462       1.3  explorer 			(cp->RCN_nak)(sp, h, len);
   1463       1.3  explorer 		else /* CONF_REJ */
   1464       1.3  explorer 			(cp->RCN_rej)(sp, h, len);
   1465       1.3  explorer 
   1466       1.3  explorer 		switch (sp->state[cp->protoidx]) {
   1467       1.3  explorer 		case STATE_CLOSED:
   1468       1.3  explorer 		case STATE_STOPPED:
   1469       1.3  explorer 			sppp_cp_send(sp, cp->proto, TERM_ACK, h->ident, 0, 0);
   1470       1.3  explorer 			break;
   1471       1.3  explorer 		case STATE_REQ_SENT:
   1472       1.3  explorer 		case STATE_ACK_SENT:
   1473       1.3  explorer 			sp->rst_counter[cp->protoidx] = sp->lcp.max_configure;
   1474       1.3  explorer 			(cp->scr)(sp);
   1475       1.3  explorer 			break;
   1476       1.3  explorer 		case STATE_OPENED:
   1477       1.3  explorer 			(cp->tld)(sp);
   1478       1.3  explorer 			/* fall through */
   1479       1.3  explorer 		case STATE_ACK_RCVD:
   1480       1.3  explorer 			sppp_cp_change_state(cp, sp, STATE_ACK_SENT);
   1481       1.3  explorer 			(cp->scr)(sp);
   1482       1.3  explorer 			break;
   1483       1.3  explorer 		case STATE_CLOSING:
   1484       1.3  explorer 		case STATE_STOPPING:
   1485       1.3  explorer 			break;
   1486       1.3  explorer 		default:
   1487       1.3  explorer 			printf(SPP_FMT "%s illegal %s in state %s\n",
   1488       1.3  explorer 			       SPP_ARGS(ifp), cp->name,
   1489       1.3  explorer 			       sppp_cp_type_name(h->type),
   1490       1.3  explorer 			       sppp_state_name(sp->state[cp->protoidx]));
   1491       1.3  explorer 			++ifp->if_ierrors;
   1492       1.3  explorer 		}
   1493       1.3  explorer 		break;
   1494       1.3  explorer 
   1495       1.3  explorer 	case TERM_REQ:
   1496       1.3  explorer 		switch (sp->state[cp->protoidx]) {
   1497       1.3  explorer 		case STATE_ACK_RCVD:
   1498       1.3  explorer 		case STATE_ACK_SENT:
   1499       1.3  explorer 			sppp_cp_change_state(cp, sp, STATE_REQ_SENT);
   1500       1.3  explorer 			/* fall through */
   1501       1.3  explorer 		case STATE_CLOSED:
   1502       1.3  explorer 		case STATE_STOPPED:
   1503       1.3  explorer 		case STATE_CLOSING:
   1504       1.3  explorer 		case STATE_STOPPING:
   1505       1.3  explorer 		case STATE_REQ_SENT:
   1506       1.3  explorer 		  sta:
   1507       1.3  explorer 			/* Send Terminate-Ack packet. */
   1508       1.3  explorer 			if (debug)
   1509       1.3  explorer 				log(LOG_DEBUG, SPP_FMT "%s send terminate-ack\n",
   1510       1.3  explorer 				    SPP_ARGS(ifp), cp->name);
   1511       1.3  explorer 			sppp_cp_send(sp, cp->proto, TERM_ACK, h->ident, 0, 0);
   1512       1.3  explorer 			break;
   1513       1.3  explorer 		case STATE_OPENED:
   1514       1.3  explorer 			(cp->tld)(sp);
   1515       1.3  explorer 			sp->rst_counter[cp->protoidx] = 0;
   1516       1.3  explorer 			sppp_cp_change_state(cp, sp, STATE_STOPPING);
   1517       1.3  explorer 			goto sta;
   1518       1.3  explorer 			break;
   1519       1.3  explorer 		default:
   1520       1.3  explorer 			printf(SPP_FMT "%s illegal %s in state %s\n",
   1521       1.3  explorer 			       SPP_ARGS(ifp), cp->name,
   1522       1.1  explorer 			       sppp_cp_type_name(h->type),
   1523       1.1  explorer 			       sppp_state_name(sp->state[cp->protoidx]));
   1524       1.3  explorer 			++ifp->if_ierrors;
   1525       1.3  explorer 		}
   1526       1.3  explorer 		break;
   1527       1.3  explorer 	case TERM_ACK:
   1528       1.3  explorer 		switch (sp->state[cp->protoidx]) {
   1529       1.3  explorer 		case STATE_CLOSED:
   1530       1.3  explorer 		case STATE_STOPPED:
   1531       1.3  explorer 		case STATE_REQ_SENT:
   1532       1.3  explorer 		case STATE_ACK_SENT:
   1533       1.3  explorer 			break;
   1534      1.24    martin 		case STATE_CLOSING:
   1535       1.3  explorer 			(cp->tlf)(sp);
   1536       1.3  explorer 			sppp_cp_change_state(cp, sp, STATE_CLOSED);
   1537       1.3  explorer 			sppp_lcp_check_and_close(sp);
   1538       1.3  explorer 			break;
   1539      1.24    martin 		case STATE_STOPPING:
   1540       1.1  explorer 			(cp->tlf)(sp);
   1541       1.3  explorer 			sppp_cp_change_state(cp, sp, STATE_STOPPED);
   1542       1.3  explorer 			sppp_lcp_check_and_close(sp);
   1543       1.1  explorer 			break;
   1544       1.3  explorer 		case STATE_ACK_RCVD:
   1545       1.3  explorer 			sppp_cp_change_state(cp, sp, STATE_REQ_SENT);
   1546       1.3  explorer 			break;
   1547       1.3  explorer 		case STATE_OPENED:
   1548       1.1  explorer 			(cp->tld)(sp);
   1549       1.3  explorer 			(cp->scr)(sp);
   1550       1.3  explorer 			sppp_cp_change_state(cp, sp, STATE_ACK_RCVD);
   1551       1.3  explorer 			break;
   1552       1.3  explorer 		default:
   1553       1.3  explorer 			printf(SPP_FMT "%s illegal %s in state %s\n",
   1554       1.3  explorer 			       SPP_ARGS(ifp), cp->name,
   1555       1.1  explorer 			       sppp_cp_type_name(h->type),
   1556       1.1  explorer 			       sppp_state_name(sp->state[cp->protoidx]));
   1557       1.3  explorer 			++ifp->if_ierrors;
   1558       1.3  explorer 		}
   1559       1.3  explorer 		break;
   1560       1.9    itojun 	case CODE_REJ:
   1561       1.3  explorer 		/* XXX catastrophic rejects (RXJ-) aren't handled yet. */
   1562       1.3  explorer 		log(LOG_INFO,
   1563       1.9    itojun 		    SPP_FMT "%s: ignoring RXJ (%s) for code ?, "
   1564       1.9    itojun 		    "danger will robinson\n",
   1565       1.9    itojun 		    SPP_ARGS(ifp), cp->name,
   1566       1.9    itojun 		    sppp_cp_type_name(h->type));
   1567       1.9    itojun 		switch (sp->state[cp->protoidx]) {
   1568       1.9    itojun 		case STATE_CLOSED:
   1569       1.9    itojun 		case STATE_STOPPED:
   1570       1.9    itojun 		case STATE_REQ_SENT:
   1571       1.9    itojun 		case STATE_ACK_SENT:
   1572       1.9    itojun 		case STATE_CLOSING:
   1573       1.9    itojun 		case STATE_STOPPING:
   1574       1.9    itojun 		case STATE_OPENED:
   1575       1.9    itojun 			break;
   1576       1.9    itojun 		case STATE_ACK_RCVD:
   1577       1.9    itojun 			sppp_cp_change_state(cp, sp, STATE_REQ_SENT);
   1578       1.9    itojun 			break;
   1579       1.9    itojun 		default:
   1580       1.9    itojun 			printf(SPP_FMT "%s illegal %s in state %s\n",
   1581       1.9    itojun 			       SPP_ARGS(ifp), cp->name,
   1582       1.9    itojun 			       sppp_cp_type_name(h->type),
   1583       1.9    itojun 			       sppp_state_name(sp->state[cp->protoidx]));
   1584       1.9    itojun 			++ifp->if_ierrors;
   1585       1.9    itojun 		}
   1586       1.9    itojun 		break;
   1587       1.9    itojun 	case PROTO_REJ:
   1588       1.9    itojun 	    {
   1589       1.9    itojun 		int catastrophic;
   1590       1.9    itojun 		const struct cp *upper;
   1591       1.9    itojun 		int i;
   1592       1.9    itojun 		u_int16_t proto;
   1593       1.9    itojun 
   1594       1.9    itojun 		catastrophic = 0;
   1595       1.9    itojun 		upper = NULL;
   1596       1.9    itojun 		proto = ntohs(*((u_int16_t *)p));
   1597       1.9    itojun 		for (i = 0; i < IDX_COUNT; i++) {
   1598       1.9    itojun 			if (cps[i]->proto == proto) {
   1599       1.9    itojun 				upper = cps[i];
   1600       1.9    itojun 				break;
   1601       1.9    itojun 			}
   1602       1.9    itojun 		}
   1603       1.9    itojun 		if (upper == NULL)
   1604       1.9    itojun 			catastrophic++;
   1605       1.9    itojun 
   1606       1.9    itojun 		log(LOG_INFO,
   1607       1.9    itojun 		    SPP_FMT "%s: RXJ%c (%s) for proto 0x%x (%s/%s)\n",
   1608       1.9    itojun 		    SPP_ARGS(ifp), cp->name, catastrophic ? '-' : '+',
   1609       1.9    itojun 		    sppp_cp_type_name(h->type), proto,
   1610       1.9    itojun 		    upper ? upper->name : "unknown",
   1611       1.9    itojun 		    upper ? sppp_state_name(sp->state[upper->protoidx]) : "?");
   1612       1.9    itojun 
   1613       1.9    itojun 		/*
   1614       1.9    itojun 		 * if we got RXJ+ against conf-req, the peer does not implement
   1615       1.9    itojun 		 * this particular protocol type.  terminate the protocol.
   1616       1.9    itojun 		 */
   1617       1.9    itojun 		if (upper && !catastrophic) {
   1618       1.9    itojun 			if (sp->state[upper->protoidx] == STATE_REQ_SENT) {
   1619       1.9    itojun 				upper->Close(sp);
   1620       1.9    itojun 				break;
   1621       1.9    itojun 			}
   1622       1.3  explorer 		}
   1623       1.3  explorer 
   1624       1.3  explorer 		/* XXX catastrophic rejects (RXJ-) aren't handled yet. */
   1625       1.3  explorer 		switch (sp->state[cp->protoidx]) {
   1626       1.3  explorer 		case STATE_CLOSED:
   1627       1.3  explorer 		case STATE_STOPPED:
   1628       1.3  explorer 		case STATE_REQ_SENT:
   1629       1.3  explorer 		case STATE_ACK_SENT:
   1630       1.3  explorer 		case STATE_CLOSING:
   1631       1.3  explorer 		case STATE_STOPPING:
   1632       1.3  explorer 		case STATE_OPENED:
   1633       1.1  explorer 			break;
   1634       1.3  explorer 		case STATE_ACK_RCVD:
   1635       1.3  explorer 			sppp_cp_change_state(cp, sp, STATE_REQ_SENT);
   1636       1.3  explorer 			break;
   1637       1.3  explorer 		default:
   1638       1.3  explorer 			printf(SPP_FMT "%s illegal %s in state %s\n",
   1639       1.3  explorer 			       SPP_ARGS(ifp), cp->name,
   1640       1.3  explorer 			       sppp_cp_type_name(h->type),
   1641       1.1  explorer 			       sppp_state_name(sp->state[cp->protoidx]));
   1642       1.9    itojun 			++ifp->if_ierrors;
   1643       1.3  explorer 		}
   1644       1.3  explorer 		break;
   1645       1.3  explorer 	    }
   1646       1.3  explorer 	case DISC_REQ:
   1647       1.3  explorer 		if (cp->proto != PPP_LCP)
   1648       1.3  explorer 			goto illegal;
   1649       1.3  explorer 		/* Discard the packet. */
   1650       1.3  explorer 		break;
   1651       1.3  explorer 	case ECHO_REQ:
   1652       1.3  explorer 		if (cp->proto != PPP_LCP)
   1653       1.3  explorer 			goto illegal;
   1654       1.3  explorer 		if (sp->state[cp->protoidx] != STATE_OPENED) {
   1655       1.3  explorer 			if (debug)
   1656       1.3  explorer 				addlog(SPP_FMT "lcp echo req but lcp closed\n",
   1657       1.3  explorer 				       SPP_ARGS(ifp));
   1658       1.3  explorer 			++ifp->if_ierrors;
   1659       1.3  explorer 			break;
   1660       1.3  explorer 		}
   1661       1.3  explorer 		if (len < 8) {
   1662       1.3  explorer 			if (debug)
   1663       1.3  explorer 				addlog(SPP_FMT "invalid lcp echo request "
   1664       1.3  explorer 				       "packet length: %d bytes\n",
   1665       1.3  explorer 				       SPP_ARGS(ifp), len);
   1666       1.3  explorer 			break;
   1667       1.3  explorer 		}
   1668       1.3  explorer 		if (ntohl (*(long*)(h+1)) == sp->lcp.magic) {
   1669      1.26    itojun 			/* Line loopback mode detected. */
   1670       1.3  explorer 			printf(SPP_FMT "loopback\n", SPP_ARGS(ifp));
   1671       1.3  explorer 			if_down (ifp);
   1672       1.3  explorer 			IF_PURGE (&sp->pp_cpq);
   1673       1.3  explorer 
   1674       1.3  explorer 			/* Shut down the PPP link. */
   1675       1.3  explorer 			/* XXX */
   1676       1.3  explorer 			lcp.Down(sp);
   1677       1.3  explorer 			lcp.Up(sp);
   1678       1.3  explorer 			break;
   1679       1.3  explorer 		}
   1680       1.3  explorer 		*(long*)(h+1) = htonl (sp->lcp.magic);
   1681       1.3  explorer 		if (debug)
   1682       1.1  explorer 			addlog(SPP_FMT "got lcp echo req, sending echo rep\n",
   1683       1.3  explorer 			       SPP_ARGS(ifp));
   1684       1.3  explorer 		sppp_cp_send (sp, PPP_LCP, ECHO_REPLY, h->ident, len-4, h+1);
   1685       1.3  explorer 		break;
   1686       1.3  explorer 	case ECHO_REPLY:
   1687       1.3  explorer 		if (cp->proto != PPP_LCP)
   1688       1.3  explorer 			goto illegal;
   1689       1.3  explorer 		if (h->ident != sp->lcp.echoid) {
   1690       1.3  explorer 			++ifp->if_ierrors;
   1691       1.3  explorer 			break;
   1692       1.3  explorer 		}
   1693       1.3  explorer 		if (len < 8) {
   1694       1.3  explorer 			if (debug)
   1695       1.3  explorer 				addlog(SPP_FMT "lcp invalid echo reply "
   1696       1.3  explorer 				       "packet length: %d bytes\n",
   1697       1.3  explorer 				       SPP_ARGS(ifp), len);
   1698       1.3  explorer 			break;
   1699       1.3  explorer 		}
   1700       1.3  explorer 		if (debug)
   1701       1.3  explorer 			addlog(SPP_FMT "lcp got echo rep\n",
   1702       1.1  explorer 			       SPP_ARGS(ifp));
   1703       1.3  explorer 		if (ntohl (*(long*)(h+1)) != sp->lcp.magic)
   1704       1.3  explorer 			sp->pp_alivecnt = 0;
   1705       1.3  explorer 		break;
   1706       1.3  explorer 	default:
   1707       1.3  explorer 		/* Unknown packet type -- send Code-Reject packet. */
   1708       1.3  explorer 	  illegal:
   1709       1.9    itojun 		if (debug)
   1710       1.9    itojun 			addlog(SPP_FMT "%s send code-rej for 0x%x\n",
   1711       1.3  explorer 			       SPP_ARGS(ifp), cp->name, h->type);
   1712       1.1  explorer 		sppp_cp_send(sp, cp->proto, CODE_REJ,
   1713       1.1  explorer 		    ++sp->pp_seq[cp->protoidx], m->m_pkthdr.len, h);
   1714       1.1  explorer 		++ifp->if_ierrors;
   1715       1.3  explorer 	}
   1716       1.3  explorer }
   1717       1.3  explorer 
   1718       1.3  explorer 
   1719       1.3  explorer /*
   1720       1.1  explorer  * The generic part of all Up/Down/Open/Close/TO event handlers.
   1721       1.3  explorer  * Basically, the state transition handling in the automaton.
   1722       1.1  explorer  */
   1723       1.3  explorer static void
   1724       1.1  explorer sppp_up_event(const struct cp *cp, struct sppp *sp)
   1725       1.3  explorer {
   1726       1.3  explorer 	STDDCL;
   1727       1.3  explorer 
   1728       1.3  explorer 	if (debug)
   1729       1.3  explorer 		log(LOG_DEBUG, SPP_FMT "%s up(%s)\n",
   1730       1.3  explorer 		    SPP_ARGS(ifp), cp->name,
   1731       1.3  explorer 		    sppp_state_name(sp->state[cp->protoidx]));
   1732       1.3  explorer 
   1733       1.3  explorer 	switch (sp->state[cp->protoidx]) {
   1734       1.3  explorer 	case STATE_INITIAL:
   1735       1.3  explorer 		sppp_cp_change_state(cp, sp, STATE_CLOSED);
   1736       1.3  explorer 		break;
   1737       1.3  explorer 	case STATE_STARTING:
   1738       1.3  explorer 		sp->rst_counter[cp->protoidx] = sp->lcp.max_configure;
   1739       1.3  explorer 		(cp->scr)(sp);
   1740       1.3  explorer 		sppp_cp_change_state(cp, sp, STATE_REQ_SENT);
   1741       1.3  explorer 		break;
   1742       1.3  explorer 	default:
   1743       1.3  explorer 		printf(SPP_FMT "%s illegal up in state %s\n",
   1744       1.1  explorer 		       SPP_ARGS(ifp), cp->name,
   1745       1.1  explorer 		       sppp_state_name(sp->state[cp->protoidx]));
   1746       1.1  explorer 	}
   1747       1.3  explorer }
   1748       1.1  explorer 
   1749       1.3  explorer static void
   1750       1.3  explorer sppp_down_event(const struct cp *cp, struct sppp *sp)
   1751       1.3  explorer {
   1752       1.3  explorer 	STDDCL;
   1753       1.3  explorer 
   1754       1.3  explorer 	if (debug)
   1755       1.3  explorer 		log(LOG_DEBUG, SPP_FMT "%s down(%s)\n",
   1756       1.3  explorer 		    SPP_ARGS(ifp), cp->name,
   1757       1.3  explorer 		    sppp_state_name(sp->state[cp->protoidx]));
   1758       1.3  explorer 
   1759       1.3  explorer 	switch (sp->state[cp->protoidx]) {
   1760       1.3  explorer 	case STATE_CLOSED:
   1761       1.3  explorer 	case STATE_CLOSING:
   1762       1.3  explorer 		sppp_cp_change_state(cp, sp, STATE_INITIAL);
   1763       1.3  explorer 		break;
   1764       1.3  explorer 	case STATE_STOPPED:
   1765       1.3  explorer 		(cp->tls)(sp);
   1766       1.3  explorer 		/* fall through */
   1767       1.3  explorer 	case STATE_STOPPING:
   1768       1.3  explorer 	case STATE_REQ_SENT:
   1769       1.3  explorer 	case STATE_ACK_RCVD:
   1770       1.3  explorer 	case STATE_ACK_SENT:
   1771       1.3  explorer 		sppp_cp_change_state(cp, sp, STATE_STARTING);
   1772       1.3  explorer 		break;
   1773       1.3  explorer 	case STATE_OPENED:
   1774       1.3  explorer 		(cp->tld)(sp);
   1775       1.3  explorer 		sppp_cp_change_state(cp, sp, STATE_STARTING);
   1776       1.3  explorer 		break;
   1777       1.3  explorer 	default:
   1778       1.3  explorer 		printf(SPP_FMT "%s illegal down in state %s\n",
   1779       1.1  explorer 		       SPP_ARGS(ifp), cp->name,
   1780       1.1  explorer 		       sppp_state_name(sp->state[cp->protoidx]));
   1781       1.3  explorer 	}
   1782       1.1  explorer }
   1783       1.3  explorer 
   1784       1.1  explorer 
   1785       1.3  explorer static void
   1786       1.1  explorer sppp_open_event(const struct cp *cp, struct sppp *sp)
   1787       1.3  explorer {
   1788       1.3  explorer 	STDDCL;
   1789       1.3  explorer 
   1790       1.3  explorer 	if (debug)
   1791       1.3  explorer 		log(LOG_DEBUG, SPP_FMT "%s open(%s)\n",
   1792       1.3  explorer 		    SPP_ARGS(ifp), cp->name,
   1793       1.3  explorer 		    sppp_state_name(sp->state[cp->protoidx]));
   1794       1.3  explorer 
   1795       1.3  explorer 	switch (sp->state[cp->protoidx]) {
   1796       1.3  explorer 	case STATE_INITIAL:
   1797       1.3  explorer 		(cp->tls)(sp);
   1798       1.3  explorer 		sppp_cp_change_state(cp, sp, STATE_STARTING);
   1799       1.3  explorer 		break;
   1800       1.3  explorer 	case STATE_STARTING:
   1801       1.3  explorer 		break;
   1802       1.3  explorer 	case STATE_CLOSED:
   1803       1.3  explorer 		sp->rst_counter[cp->protoidx] = sp->lcp.max_configure;
   1804       1.3  explorer 		(cp->scr)(sp);
   1805       1.3  explorer 		sppp_cp_change_state(cp, sp, STATE_REQ_SENT);
   1806       1.3  explorer 		break;
   1807       1.3  explorer 	case STATE_STOPPED:
   1808       1.3  explorer 	case STATE_STOPPING:
   1809       1.3  explorer 	case STATE_REQ_SENT:
   1810       1.3  explorer 	case STATE_ACK_RCVD:
   1811       1.3  explorer 	case STATE_ACK_SENT:
   1812       1.3  explorer 	case STATE_OPENED:
   1813       1.1  explorer 		break;
   1814       1.1  explorer 	case STATE_CLOSING:
   1815       1.1  explorer 		sppp_cp_change_state(cp, sp, STATE_STOPPING);
   1816       1.1  explorer 		break;
   1817       1.3  explorer 	}
   1818       1.3  explorer }
   1819       1.3  explorer 
   1820       1.1  explorer 
   1821       1.3  explorer static void
   1822       1.1  explorer sppp_close_event(const struct cp *cp, struct sppp *sp)
   1823       1.3  explorer {
   1824       1.3  explorer 	STDDCL;
   1825       1.3  explorer 
   1826       1.3  explorer 	if (debug)
   1827       1.3  explorer 		log(LOG_DEBUG, SPP_FMT "%s close(%s)\n",
   1828       1.3  explorer 		    SPP_ARGS(ifp), cp->name,
   1829       1.3  explorer 		    sppp_state_name(sp->state[cp->protoidx]));
   1830       1.3  explorer 
   1831       1.3  explorer 	switch (sp->state[cp->protoidx]) {
   1832       1.3  explorer 	case STATE_INITIAL:
   1833       1.3  explorer 	case STATE_CLOSED:
   1834       1.3  explorer 	case STATE_CLOSING:
   1835       1.3  explorer 		break;
   1836       1.3  explorer 	case STATE_STARTING:
   1837       1.3  explorer 		(cp->tlf)(sp);
   1838       1.3  explorer 		sppp_cp_change_state(cp, sp, STATE_INITIAL);
   1839       1.3  explorer 		break;
   1840       1.3  explorer 	case STATE_STOPPED:
   1841       1.3  explorer 		sppp_cp_change_state(cp, sp, STATE_CLOSED);
   1842       1.3  explorer 		break;
   1843       1.3  explorer 	case STATE_STOPPING:
   1844       1.3  explorer 		sppp_cp_change_state(cp, sp, STATE_CLOSING);
   1845       1.3  explorer 		break;
   1846       1.3  explorer 	case STATE_OPENED:
   1847       1.3  explorer 		(cp->tld)(sp);
   1848       1.3  explorer 		/* fall through */
   1849       1.3  explorer 	case STATE_REQ_SENT:
   1850       1.9    itojun 	case STATE_ACK_RCVD:
   1851       1.9    itojun 	case STATE_ACK_SENT:
   1852       1.3  explorer 		sp->rst_counter[cp->protoidx] = sp->lcp.max_terminate;
   1853       1.3  explorer 		sppp_cp_send(sp, cp->proto, TERM_REQ,
   1854       1.3  explorer 		    ++sp->pp_seq[cp->protoidx], 0, 0);
   1855       1.3  explorer 		sppp_cp_change_state(cp, sp, STATE_CLOSING);
   1856       1.3  explorer 		break;
   1857       1.3  explorer 	}
   1858       1.3  explorer }
   1859       1.3  explorer 
   1860       1.3  explorer static void
   1861       1.3  explorer sppp_to_event(const struct cp *cp, struct sppp *sp)
   1862       1.3  explorer {
   1863      1.23   thorpej 	STDDCL;
   1864       1.3  explorer 	int s;
   1865       1.3  explorer 
   1866       1.3  explorer 	s = splnet();
   1867       1.3  explorer 	if (debug)
   1868       1.3  explorer 		log(LOG_DEBUG, SPP_FMT "%s TO(%s) rst_counter = %d\n",
   1869       1.3  explorer 		    SPP_ARGS(ifp), cp->name,
   1870       1.3  explorer 		    sppp_state_name(sp->state[cp->protoidx]),
   1871       1.3  explorer 		    sp->rst_counter[cp->protoidx]);
   1872       1.3  explorer 
   1873       1.3  explorer 	if (--sp->rst_counter[cp->protoidx] < 0)
   1874       1.3  explorer 		/* TO- event */
   1875       1.3  explorer 		switch (sp->state[cp->protoidx]) {
   1876      1.24    martin 		case STATE_CLOSING:
   1877       1.3  explorer 			(cp->tlf)(sp);
   1878       1.3  explorer 			sppp_cp_change_state(cp, sp, STATE_CLOSED);
   1879       1.3  explorer 			sppp_lcp_check_and_close(sp);
   1880       1.3  explorer 			break;
   1881      1.24    martin 		case STATE_STOPPING:
   1882       1.3  explorer 			(cp->tlf)(sp);
   1883       1.3  explorer 			sppp_cp_change_state(cp, sp, STATE_STOPPED);
   1884       1.3  explorer 			sppp_lcp_check_and_close(sp);
   1885       1.3  explorer 			break;
   1886       1.3  explorer 		case STATE_REQ_SENT:
   1887       1.3  explorer 		case STATE_ACK_RCVD:
   1888      1.24    martin 		case STATE_ACK_SENT:
   1889       1.3  explorer 			(cp->tlf)(sp);
   1890       1.3  explorer 			sppp_cp_change_state(cp, sp, STATE_STOPPED);
   1891       1.3  explorer 			sppp_lcp_check_and_close(sp);
   1892       1.3  explorer 			break;
   1893       1.3  explorer 		}
   1894       1.3  explorer 	else
   1895       1.3  explorer 		/* TO+ event */
   1896       1.9    itojun 		switch (sp->state[cp->protoidx]) {
   1897       1.9    itojun 		case STATE_CLOSING:
   1898       1.7   thorpej 		case STATE_STOPPING:
   1899       1.7   thorpej 			sppp_cp_send(sp, cp->proto, TERM_REQ,
   1900       1.3  explorer 			    ++sp->pp_seq[cp->protoidx], 0, 0);
   1901       1.3  explorer 			callout_reset(&sp->ch[cp->protoidx], sp->lcp.timeout,
   1902       1.3  explorer 			    cp->TO, sp);
   1903       1.3  explorer 			break;
   1904       1.3  explorer 		case STATE_REQ_SENT:
   1905       1.3  explorer 		case STATE_ACK_RCVD:
   1906       1.3  explorer 			(cp->scr)(sp);
   1907       1.3  explorer 			/* sppp_cp_change_state() will restart the timer */
   1908       1.3  explorer 			sppp_cp_change_state(cp, sp, STATE_REQ_SENT);
   1909       1.7   thorpej 			break;
   1910       1.7   thorpej 		case STATE_ACK_SENT:
   1911       1.3  explorer 			(cp->scr)(sp);
   1912       1.3  explorer 			callout_reset(&sp->ch[cp->protoidx], sp->lcp.timeout,
   1913       1.3  explorer 			    cp->TO, sp);
   1914       1.3  explorer 			break;
   1915       1.3  explorer 		}
   1916       1.3  explorer 
   1917       1.3  explorer 	splx(s);
   1918       1.3  explorer }
   1919       1.3  explorer 
   1920       1.3  explorer /*
   1921       1.3  explorer  * Change the state of a control protocol in the state automaton.
   1922       1.3  explorer  * Takes care of starting/stopping the restart timer.
   1923       1.3  explorer  */
   1924       1.3  explorer void
   1925       1.7   thorpej sppp_cp_change_state(const struct cp *cp, struct sppp *sp, int newstate)
   1926       1.3  explorer {
   1927       1.3  explorer 	sp->state[cp->protoidx] = newstate;
   1928       1.3  explorer 	callout_stop(&sp->ch[cp->protoidx]);
   1929       1.3  explorer 	switch (newstate) {
   1930       1.3  explorer 	case STATE_INITIAL:
   1931       1.3  explorer 	case STATE_STARTING:
   1932       1.3  explorer 	case STATE_CLOSED:
   1933       1.3  explorer 	case STATE_STOPPED:
   1934       1.3  explorer 	case STATE_OPENED:
   1935       1.3  explorer 		break;
   1936       1.3  explorer 	case STATE_CLOSING:
   1937       1.3  explorer 	case STATE_STOPPING:
   1938       1.7   thorpej 	case STATE_REQ_SENT:
   1939       1.7   thorpej 	case STATE_ACK_RCVD:
   1940       1.3  explorer 	case STATE_ACK_SENT:
   1941       1.3  explorer 		callout_reset(&sp->ch[cp->protoidx], sp->lcp.timeout,
   1942       1.3  explorer 		    cp->TO, sp);
   1943       1.3  explorer 		break;
   1944       1.3  explorer 	}
   1945       1.3  explorer }
   1946       1.3  explorer /*
   1948       1.3  explorer  *--------------------------------------------------------------------------*
   1949       1.3  explorer  *                                                                          *
   1950       1.3  explorer  *                         The LCP implementation.                          *
   1951       1.3  explorer  *                                                                          *
   1952       1.3  explorer  *--------------------------------------------------------------------------*
   1953       1.3  explorer  */
   1954       1.3  explorer static void
   1955       1.3  explorer sppp_lcp_init(struct sppp *sp)
   1956       1.3  explorer {
   1957       1.9    itojun 	sp->lcp.opts = (1 << LCP_OPT_MAGIC);
   1958       1.9    itojun 	sp->lcp.magic = 0;
   1959       1.3  explorer 	sp->state[IDX_LCP] = STATE_INITIAL;
   1960       1.3  explorer 	sp->fail_counter[IDX_LCP] = 0;
   1961       1.3  explorer 	sp->pp_seq[IDX_LCP] = 0;
   1962       1.3  explorer 	sp->pp_rseq[IDX_LCP] = 0;
   1963       1.3  explorer 	sp->lcp.protos = 0;
   1964       1.3  explorer 	sp->lcp.mru = sp->lcp.their_mru = PP_MTU;
   1965       1.3  explorer 
   1966       1.3  explorer 	/*
   1967       1.3  explorer 	 * Initialize counters and timeout values.  Note that we don't
   1968       1.3  explorer 	 * use the 3 seconds suggested in RFC 1661 since we are likely
   1969       1.3  explorer 	 * running on a fast link.  XXX We should probably implement
   1970       1.3  explorer 	 * the exponential backoff option.  Note that these values are
   1971       1.3  explorer 	 * relevant for all control protocols, not just LCP only.
   1972       1.3  explorer 	 */
   1973       1.7   thorpej 	sp->lcp.timeout = 1 * hz;
   1974       1.3  explorer 	sp->lcp.max_terminate = 2;
   1975       1.3  explorer 	sp->lcp.max_configure = 10;
   1976       1.3  explorer 	sp->lcp.max_failure = 10;
   1977       1.3  explorer 	callout_init(&sp->ch[IDX_LCP]);
   1978       1.3  explorer }
   1979       1.3  explorer 
   1980       1.3  explorer static void
   1981       1.3  explorer sppp_lcp_up(struct sppp *sp)
   1982       1.3  explorer {
   1983       1.3  explorer 	STDDCL;
   1984       1.3  explorer 
   1985       1.3  explorer 	/*
   1986       1.3  explorer 	 * If this interface is passive or dial-on-demand, and we are
   1987       1.3  explorer 	 * still in Initial state, it means we've got an incoming
   1988       1.3  explorer 	 * call.  Activate the interface.
   1989       1.3  explorer 	 */
   1990       1.3  explorer 	if ((ifp->if_flags & (IFF_AUTO | IFF_PASSIVE)) != 0) {
   1991       1.3  explorer 		if (debug)
   1992       1.3  explorer 			log(LOG_DEBUG,
   1993       1.3  explorer 			    SPP_FMT "Up event", SPP_ARGS(ifp));
   1994       1.3  explorer 		ifp->if_flags |= IFF_RUNNING;
   1995       1.3  explorer 		if (sp->state[IDX_LCP] == STATE_INITIAL) {
   1996       1.3  explorer 			if (debug)
   1997       1.3  explorer 				addlog("(incoming call)\n");
   1998       1.3  explorer 			sp->pp_flags |= PP_CALLIN;
   1999       1.3  explorer 			lcp.Open(sp);
   2000       1.3  explorer 		} else if (debug)
   2001       1.3  explorer 			addlog("\n");
   2002       1.3  explorer 	}
   2003       1.3  explorer 
   2004       1.3  explorer 	sppp_up_event(&lcp, sp);
   2005       1.3  explorer }
   2006       1.3  explorer 
   2007       1.3  explorer static void
   2008       1.3  explorer sppp_lcp_down(struct sppp *sp)
   2009       1.3  explorer {
   2010       1.3  explorer 	STDDCL;
   2011       1.3  explorer 
   2012       1.3  explorer 	sppp_down_event(&lcp, sp);
   2013       1.3  explorer 
   2014       1.3  explorer 	/*
   2015       1.3  explorer 	 * If this is neither a dial-on-demand nor a passive
   2016       1.3  explorer 	 * interface, simulate an ``ifconfig down'' action, so the
   2017       1.3  explorer 	 * administrator can force a redial by another ``ifconfig
   2018       1.3  explorer 	 * up''.  XXX For leased line operation, should we immediately
   2019       1.3  explorer 	 * try to reopen the connection here?
   2020       1.3  explorer 	 */
   2021       1.3  explorer 	if ((ifp->if_flags & (IFF_AUTO | IFF_PASSIVE)) == 0) {
   2022       1.3  explorer 		log(LOG_INFO,
   2023       1.3  explorer 		    SPP_FMT "Down event (carrier loss), taking interface down.\n",
   2024       1.3  explorer 		    SPP_ARGS(ifp));
   2025       1.3  explorer 		if_down(ifp);
   2026       1.3  explorer 	} else {
   2027       1.3  explorer 		if (debug)
   2028       1.3  explorer 			log(LOG_DEBUG,
   2029       1.3  explorer 			    SPP_FMT "Down event (carrier loss)\n",
   2030       1.3  explorer 			    SPP_ARGS(ifp));
   2031       1.3  explorer 	}
   2032       1.3  explorer 	sp->pp_flags &= ~PP_CALLIN;
   2033       1.3  explorer 	if (sp->state[IDX_LCP] != STATE_INITIAL)
   2034       1.3  explorer 		lcp.Close(sp);
   2035       1.3  explorer 	ifp->if_flags &= ~IFF_RUNNING;
   2036       1.3  explorer }
   2037       1.3  explorer 
   2038       1.3  explorer static void
   2039       1.3  explorer sppp_lcp_open(struct sppp *sp)
   2040       1.3  explorer {
   2041       1.3  explorer 	/*
   2042       1.3  explorer 	 * If we are authenticator, negotiate LCP_AUTH
   2043       1.3  explorer 	 */
   2044       1.3  explorer 	if (sp->hisauth.proto != 0)
   2045       1.3  explorer 		sp->lcp.opts |= (1 << LCP_OPT_AUTH_PROTO);
   2046       1.3  explorer 	else
   2047       1.3  explorer 		sp->lcp.opts &= ~(1 << LCP_OPT_AUTH_PROTO);
   2048       1.3  explorer 	sp->pp_flags &= ~PP_NEEDAUTH;
   2049       1.3  explorer 	sppp_open_event(&lcp, sp);
   2050       1.3  explorer }
   2051       1.3  explorer 
   2052       1.3  explorer static void
   2053       1.3  explorer sppp_lcp_close(struct sppp *sp)
   2054       1.3  explorer {
   2055       1.3  explorer 	sppp_close_event(&lcp, sp);
   2056       1.3  explorer }
   2057       1.3  explorer 
   2058       1.3  explorer static void
   2059       1.3  explorer sppp_lcp_TO(void *cookie)
   2060       1.3  explorer {
   2061       1.3  explorer 	sppp_to_event(&lcp, (struct sppp *)cookie);
   2062       1.3  explorer }
   2063       1.3  explorer 
   2064       1.3  explorer /*
   2065       1.3  explorer  * Analyze a configure request.  Return true if it was agreeable, and
   2066       1.3  explorer  * caused action sca, false if it has been rejected or nak'ed, and
   2067       1.3  explorer  * caused action scn.  (The return value is used to make the state
   2068       1.3  explorer  * transition decision in the state automaton.)
   2069       1.3  explorer  */
   2070       1.3  explorer static int
   2071       1.3  explorer sppp_lcp_RCR(struct sppp *sp, struct lcp_header *h, int len)
   2072       1.3  explorer {
   2073       1.3  explorer 	STDDCL;
   2074       1.3  explorer 	u_char *buf, *r, *p;
   2075       1.3  explorer 	int origlen, rlen;
   2076       1.3  explorer 	u_long nmagic;
   2077       1.3  explorer 	u_short authproto;
   2078       1.3  explorer 
   2079       1.3  explorer 	len -= 4;
   2080       1.3  explorer 	origlen = len;
   2081       1.3  explorer 	buf = r = malloc (len, M_TEMP, M_NOWAIT);
   2082       1.9    itojun 	if (! buf)
   2083       1.3  explorer 		return (0);
   2084       1.3  explorer 
   2085       1.3  explorer 	if (debug)
   2086       1.3  explorer 		log(LOG_DEBUG, SPP_FMT "lcp parse opts:",
   2087       1.3  explorer 		    SPP_ARGS(ifp));
   2088       1.3  explorer 
   2089       1.9    itojun 	/* pass 1: check for things that need to be rejected */
   2090       1.3  explorer 	p = (void*) (h+1);
   2091       1.3  explorer 	for (rlen=0; len>1 && p[1]; len-=p[1], p+=p[1]) {
   2092       1.3  explorer 		if (debug)
   2093       1.3  explorer 			addlog(" %s", sppp_lcp_opt_name(*p));
   2094       1.3  explorer 		switch (*p) {
   2095       1.3  explorer 		case LCP_OPT_MAGIC:
   2096       1.3  explorer 			/* Magic number. */
   2097       1.3  explorer 			/* fall through, both are same length */
   2098       1.3  explorer 		case LCP_OPT_ASYNC_MAP:
   2099       1.9    itojun 			/* Async control character map. */
   2100       1.3  explorer 			if (len >= 6 || p[1] == 6)
   2101       1.3  explorer 				continue;
   2102       1.3  explorer 			if (debug)
   2103       1.3  explorer 				addlog(" [invalid]");
   2104       1.3  explorer 			break;
   2105       1.3  explorer 		case LCP_OPT_MRU:
   2106       1.9    itojun 			/* Maximum receive unit. */
   2107       1.3  explorer 			if (len >= 4 && p[1] == 4)
   2108       1.3  explorer 				continue;
   2109       1.3  explorer 			if (debug)
   2110       1.3  explorer 				addlog(" [invalid]");
   2111       1.9    itojun 			break;
   2112       1.3  explorer 		case LCP_OPT_AUTH_PROTO:
   2113       1.3  explorer 			if (len < 4) {
   2114       1.3  explorer 				if (debug)
   2115       1.3  explorer 					addlog(" [invalid]");
   2116       1.3  explorer 				break;
   2117       1.9    itojun 			}
   2118       1.3  explorer 			authproto = (p[2] << 8) + p[3];
   2119       1.3  explorer 			if (authproto == PPP_CHAP && p[1] != 5) {
   2120       1.3  explorer 				if (debug)
   2121       1.3  explorer 					addlog(" [invalid chap len]");
   2122       1.3  explorer 				break;
   2123       1.9    itojun 			}
   2124       1.3  explorer 			if (sp->myauth.proto == 0) {
   2125       1.3  explorer 				/* we are not configured to do auth */
   2126       1.3  explorer 				if (debug)
   2127       1.3  explorer 					addlog(" [not configured]");
   2128       1.3  explorer 				break;
   2129       1.3  explorer 			}
   2130       1.3  explorer 			/*
   2131       1.3  explorer 			 * Remote want us to authenticate, remember this,
   2132       1.3  explorer 			 * so we stay in PHASE_AUTHENTICATE after LCP got
   2133       1.3  explorer 			 * up.
   2134       1.3  explorer 			 */
   2135       1.3  explorer 			sp->pp_flags |= PP_NEEDAUTH;
   2136       1.9    itojun 			continue;
   2137       1.3  explorer 		default:
   2138       1.3  explorer 			/* Others not supported. */
   2139       1.3  explorer 			if (debug)
   2140       1.3  explorer 				addlog(" [rej]");
   2141       1.3  explorer 			break;
   2142       1.3  explorer 		}
   2143       1.3  explorer 		/* Add the option to rejected list. */
   2144       1.3  explorer 		bcopy (p, r, p[1]);
   2145       1.3  explorer 		r += p[1];
   2146       1.3  explorer 		rlen += p[1];
   2147       1.3  explorer 	}
   2148       1.9    itojun 	if (rlen) {
   2149       1.3  explorer 		if (debug)
   2150       1.3  explorer 			addlog(" send conf-rej\n");
   2151       1.3  explorer 		sppp_cp_send (sp, PPP_LCP, CONF_REJ, h->ident, rlen, buf);
   2152       1.3  explorer 		goto end;
   2153       1.3  explorer 	} else if (debug)
   2154       1.3  explorer 		addlog("\n");
   2155       1.3  explorer 
   2156       1.3  explorer 	/*
   2157       1.3  explorer 	 * pass 2: check for option values that are unacceptable and
   2158       1.3  explorer 	 * thus require to be nak'ed.
   2159       1.3  explorer 	 */
   2160       1.3  explorer 	if (debug)
   2161       1.3  explorer 		log(LOG_DEBUG, SPP_FMT "lcp parse opt values: ",
   2162       1.3  explorer 		    SPP_ARGS(ifp));
   2163       1.3  explorer 
   2164       1.9    itojun 	p = (void*) (h+1);
   2165       1.3  explorer 	len = origlen;
   2166       1.3  explorer 	for (rlen=0; len>1 && p[1]; len-=p[1], p+=p[1]) {
   2167       1.3  explorer 		if (debug)
   2168       1.3  explorer 			addlog(" %s", sppp_lcp_opt_name(*p));
   2169       1.3  explorer 		switch (*p) {
   2170       1.3  explorer 		case LCP_OPT_MAGIC:
   2171       1.3  explorer 			/* Magic number -- extract. */
   2172       1.9    itojun 			nmagic = (u_long)p[2] << 24 |
   2173       1.3  explorer 				(u_long)p[3] << 16 | p[4] << 8 | p[5];
   2174       1.3  explorer 			if (nmagic != sp->lcp.magic) {
   2175       1.3  explorer 				if (debug)
   2176       1.3  explorer 					addlog(" 0x%lx", nmagic);
   2177       1.3  explorer 				continue;
   2178       1.3  explorer 			}
   2179       1.3  explorer 			/*
   2180       1.3  explorer 			 * Local and remote magics equal -- loopback?
   2181       1.3  explorer 			 */
   2182       1.3  explorer 			if (sp->pp_loopcnt >= MAXALIVECNT*5) {
   2183       1.3  explorer 				printf (SPP_FMT "loopback\n",
   2184      1.26    itojun 					SPP_ARGS(ifp));
   2185       1.3  explorer 				sp->pp_loopcnt = 0;
   2186       1.3  explorer 				if (ifp->if_flags & IFF_UP) {
   2187       1.3  explorer 					if_down(ifp);
   2188       1.3  explorer 					IF_PURGE(&sp->pp_cpq);
   2189       1.3  explorer 					/* XXX ? */
   2190       1.9    itojun 					lcp.Down(sp);
   2191       1.3  explorer 					lcp.Up(sp);
   2192       1.3  explorer 				}
   2193       1.3  explorer 			} else if (debug)
   2194       1.3  explorer 				addlog(" [glitch]");
   2195       1.3  explorer 			++sp->pp_loopcnt;
   2196       1.3  explorer 			/*
   2197       1.3  explorer 			 * We negate our magic here, and NAK it.  If
   2198       1.3  explorer 			 * we see it later in an NAK packet, we
   2199       1.3  explorer 			 * suggest a new one.
   2200       1.3  explorer 			 */
   2201       1.3  explorer 			nmagic = ~sp->lcp.magic;
   2202       1.3  explorer 			/* Gonna NAK it. */
   2203       1.3  explorer 			p[2] = nmagic >> 24;
   2204       1.3  explorer 			p[3] = nmagic >> 16;
   2205       1.3  explorer 			p[4] = nmagic >> 8;
   2206       1.3  explorer 			p[5] = nmagic;
   2207       1.3  explorer 			break;
   2208       1.3  explorer 
   2209       1.9    itojun 		case LCP_OPT_ASYNC_MAP:
   2210       1.3  explorer 			/* Async control character map -- check to be zero. */
   2211       1.3  explorer 			if (! p[2] && ! p[3] && ! p[4] && ! p[5]) {
   2212       1.3  explorer 				if (debug)
   2213       1.9    itojun 					addlog(" [empty]");
   2214       1.3  explorer 				continue;
   2215       1.3  explorer 			}
   2216       1.3  explorer 			if (debug)
   2217       1.3  explorer 				addlog(" [non-empty]");
   2218       1.3  explorer 			/* suggest a zero one */
   2219       1.3  explorer 			p[2] = p[3] = p[4] = p[5] = 0;
   2220       1.3  explorer 			break;
   2221       1.3  explorer 
   2222       1.3  explorer 		case LCP_OPT_MRU:
   2223       1.3  explorer 			/*
   2224       1.3  explorer 			 * Maximum receive unit.  Always agreeable,
   2225       1.9    itojun 			 * but ignored by now.
   2226       1.3  explorer 			 */
   2227       1.3  explorer 			sp->lcp.their_mru = p[2] * 256 + p[3];
   2228       1.3  explorer 			if (debug)
   2229       1.3  explorer 				addlog(" %ld", sp->lcp.their_mru);
   2230       1.3  explorer 			continue;
   2231       1.3  explorer 
   2232       1.3  explorer 		case LCP_OPT_AUTH_PROTO:
   2233       1.9    itojun 			authproto = (p[2] << 8) + p[3];
   2234       1.3  explorer 			if (sp->myauth.proto != authproto) {
   2235       1.3  explorer 				/* not agreed, nak */
   2236       1.3  explorer 				if (debug)
   2237       1.3  explorer 					addlog(" [mine %s != his %s]",
   2238       1.3  explorer 					       sppp_proto_name(sp->hisauth.proto),
   2239       1.3  explorer 					       sppp_proto_name(authproto));
   2240       1.3  explorer 				p[2] = sp->myauth.proto >> 8;
   2241       1.3  explorer 				p[3] = sp->myauth.proto;
   2242       1.9    itojun 				break;
   2243       1.3  explorer 			}
   2244       1.3  explorer 			if (authproto == PPP_CHAP && p[4] != CHAP_MD5) {
   2245       1.3  explorer 				if (debug)
   2246       1.3  explorer 					addlog(" [chap not MD5]");
   2247       1.3  explorer 				p[4] = CHAP_MD5;
   2248       1.3  explorer 				break;
   2249       1.3  explorer 			}
   2250       1.3  explorer 			continue;
   2251       1.3  explorer 		}
   2252       1.3  explorer 		/* Add the option to nak'ed list. */
   2253       1.3  explorer 		bcopy (p, r, p[1]);
   2254       1.3  explorer 		r += p[1];
   2255       1.3  explorer 		rlen += p[1];
   2256       1.3  explorer 	}
   2257       1.3  explorer 	if (rlen) {
   2258       1.3  explorer 		if (++sp->fail_counter[IDX_LCP] >= sp->lcp.max_failure) {
   2259       1.3  explorer 			if (debug)
   2260       1.3  explorer 				addlog(" max_failure (%d) exceeded, "
   2261       1.3  explorer 				       "send conf-rej\n",
   2262       1.3  explorer 				       sp->lcp.max_failure);
   2263       1.3  explorer 			sppp_cp_send(sp, PPP_LCP, CONF_REJ, h->ident, rlen, buf);
   2264       1.3  explorer 		} else {
   2265       1.9    itojun 			if (debug)
   2266       1.3  explorer 				addlog(" send conf-nak\n");
   2267       1.3  explorer 			sppp_cp_send (sp, PPP_LCP, CONF_NAK, h->ident, rlen, buf);
   2268       1.3  explorer 		}
   2269       1.3  explorer 		goto end;
   2270       1.3  explorer 	} else {
   2271       1.3  explorer 		if (debug)
   2272       1.3  explorer 			addlog(" send conf-ack\n");
   2273       1.3  explorer 		sp->fail_counter[IDX_LCP] = 0;
   2274       1.3  explorer 		sp->pp_loopcnt = 0;
   2275       1.9    itojun 		sppp_cp_send (sp, PPP_LCP, CONF_ACK,
   2276       1.3  explorer 			      h->ident, origlen, h+1);
   2277       1.3  explorer 	}
   2278       1.3  explorer 
   2279       1.3  explorer  end:
   2280       1.3  explorer 	free (buf, M_TEMP);
   2281       1.3  explorer 	return (rlen == 0);
   2282       1.3  explorer }
   2283       1.3  explorer 
   2284       1.3  explorer /*
   2285       1.3  explorer  * Analyze the LCP Configure-Reject option list, and adjust our
   2286       1.3  explorer  * negotiation.
   2287       1.3  explorer  */
   2288       1.3  explorer static void
   2289       1.3  explorer sppp_lcp_RCN_rej(struct sppp *sp, struct lcp_header *h, int len)
   2290       1.3  explorer {
   2291       1.3  explorer 	STDDCL;
   2292       1.3  explorer 	u_char *buf, *p;
   2293       1.3  explorer 
   2294       1.3  explorer 	len -= 4;
   2295       1.3  explorer 	buf = malloc (len, M_TEMP, M_NOWAIT);
   2296       1.9    itojun 	if (!buf)
   2297       1.3  explorer 		return;
   2298       1.3  explorer 
   2299       1.3  explorer 	if (debug)
   2300       1.3  explorer 		log(LOG_DEBUG, SPP_FMT "lcp rej opts:",
   2301       1.3  explorer 		    SPP_ARGS(ifp));
   2302       1.9    itojun 
   2303       1.3  explorer 	p = (void*) (h+1);
   2304       1.3  explorer 	for (; len > 1 && p[1]; len -= p[1], p += p[1]) {
   2305       1.3  explorer 		if (debug)
   2306       1.3  explorer 			addlog(" %s", sppp_lcp_opt_name(*p));
   2307       1.3  explorer 		switch (*p) {
   2308       1.3  explorer 		case LCP_OPT_MAGIC:
   2309       1.3  explorer 			/* Magic number -- can't use it, use 0 */
   2310       1.3  explorer 			sp->lcp.opts &= ~(1 << LCP_OPT_MAGIC);
   2311       1.3  explorer 			sp->lcp.magic = 0;
   2312       1.3  explorer 			break;
   2313       1.3  explorer 		case LCP_OPT_MRU:
   2314       1.3  explorer 			/*
   2315       1.3  explorer 			 * Should not be rejected anyway, since we only
   2316       1.3  explorer 			 * negotiate a MRU if explicitly requested by
   2317       1.3  explorer 			 * peer.
   2318       1.3  explorer 			 */
   2319       1.3  explorer 			sp->lcp.opts &= ~(1 << LCP_OPT_MRU);
   2320       1.3  explorer 			break;
   2321       1.3  explorer 		case LCP_OPT_AUTH_PROTO:
   2322       1.3  explorer 			/*
   2323       1.3  explorer 			 * Peer doesn't want to authenticate himself,
   2324       1.3  explorer 			 * deny unless this is a dialout call, and
   2325       1.3  explorer 			 * AUTHFLAG_NOCALLOUT is set.
   2326       1.9    itojun 			 */
   2327       1.3  explorer 			if ((sp->pp_flags & PP_CALLIN) == 0 &&
   2328       1.3  explorer 			    (sp->hisauth.flags & AUTHFLAG_NOCALLOUT) != 0) {
   2329       1.3  explorer 				if (debug)
   2330       1.3  explorer 					addlog(" [don't insist on auth "
   2331       1.3  explorer 					       "for callout]");
   2332       1.3  explorer 				sp->lcp.opts &= ~(1 << LCP_OPT_AUTH_PROTO);
   2333       1.3  explorer 				break;
   2334       1.3  explorer 			}
   2335       1.3  explorer 			if (debug)
   2336       1.3  explorer 				addlog("[access denied]\n");
   2337       1.3  explorer 			lcp.Close(sp);
   2338       1.3  explorer 			break;
   2339       1.3  explorer 		}
   2340       1.3  explorer 	}
   2341       1.3  explorer 	if (debug)
   2342       1.3  explorer 		addlog("\n");
   2343       1.3  explorer 	free (buf, M_TEMP);
   2344       1.3  explorer 	return;
   2345       1.3  explorer }
   2346       1.3  explorer 
   2347       1.3  explorer /*
   2348       1.3  explorer  * Analyze the LCP Configure-NAK option list, and adjust our
   2349       1.3  explorer  * negotiation.
   2350       1.3  explorer  */
   2351       1.3  explorer static void
   2352       1.3  explorer sppp_lcp_RCN_nak(struct sppp *sp, struct lcp_header *h, int len)
   2353       1.3  explorer {
   2354       1.3  explorer 	STDDCL;
   2355       1.3  explorer 	u_char *buf, *p;
   2356       1.3  explorer 	u_long magic;
   2357       1.3  explorer 
   2358       1.3  explorer 	len -= 4;
   2359       1.3  explorer 	buf = malloc (len, M_TEMP, M_NOWAIT);
   2360       1.9    itojun 	if (!buf)
   2361       1.3  explorer 		return;
   2362       1.3  explorer 
   2363       1.3  explorer 	if (debug)
   2364       1.3  explorer 		log(LOG_DEBUG, SPP_FMT "lcp nak opts:",
   2365       1.3  explorer 		    SPP_ARGS(ifp));
   2366       1.9    itojun 
   2367       1.3  explorer 	p = (void*) (h+1);
   2368       1.3  explorer 	for (; len > 1 && p[1]; len -= p[1], p += p[1]) {
   2369       1.3  explorer 		if (debug)
   2370       1.3  explorer 			addlog(" %s", sppp_lcp_opt_name(*p));
   2371       1.3  explorer 		switch (*p) {
   2372       1.3  explorer 		case LCP_OPT_MAGIC:
   2373       1.3  explorer 			/* Magic number -- renegotiate */
   2374       1.3  explorer 			if ((sp->lcp.opts & (1 << LCP_OPT_MAGIC)) &&
   2375       1.3  explorer 			    len >= 6 && p[1] == 6) {
   2376       1.3  explorer 				magic = (u_long)p[2] << 24 |
   2377       1.3  explorer 					(u_long)p[3] << 16 | p[4] << 8 | p[5];
   2378       1.3  explorer 				/*
   2379       1.3  explorer 				 * If the remote magic is our negated one,
   2380       1.3  explorer 				 * this looks like a loopback problem.
   2381       1.9    itojun 				 * Suggest a new magic to make sure.
   2382       1.3  explorer 				 */
   2383       1.3  explorer 				if (magic == ~sp->lcp.magic) {
   2384       1.3  explorer 					if (debug)
   2385       1.3  explorer 						addlog(" magic glitch");
   2386       1.9    itojun 					sp->lcp.magic = random();
   2387       1.3  explorer 				} else {
   2388       1.3  explorer 					sp->lcp.magic = magic;
   2389       1.3  explorer 					if (debug)
   2390       1.3  explorer 						addlog(" %ld", magic);
   2391       1.3  explorer 				}
   2392       1.3  explorer 			}
   2393       1.3  explorer 			break;
   2394       1.3  explorer 		case LCP_OPT_MRU:
   2395       1.3  explorer 			/*
   2396       1.3  explorer 			 * Peer wants to advise us to negotiate an MRU.
   2397       1.3  explorer 			 * Agree on it if it's reasonable, or use
   2398       1.3  explorer 			 * default otherwise.
   2399       1.9    itojun 			 */
   2400       1.3  explorer 			if (len >= 4 && p[1] == 4) {
   2401       1.3  explorer 				u_int mru = p[2] * 256 + p[3];
   2402       1.3  explorer 				if (debug)
   2403       1.3  explorer 					addlog(" %d", mru);
   2404       1.3  explorer 				if (mru < PP_MTU || mru > PP_MAX_MRU)
   2405       1.3  explorer 					mru = PP_MTU;
   2406       1.3  explorer 				sp->lcp.mru = mru;
   2407       1.3  explorer 				sp->lcp.opts |= (1 << LCP_OPT_MRU);
   2408       1.3  explorer 			}
   2409       1.3  explorer 			break;
   2410       1.3  explorer 		case LCP_OPT_AUTH_PROTO:
   2411       1.3  explorer 			/*
   2412       1.3  explorer 			 * Peer doesn't like our authentication method,
   2413       1.3  explorer 			 * deny.
   2414       1.3  explorer 			 */
   2415       1.3  explorer 			if (debug)
   2416       1.3  explorer 				addlog("[access denied]\n");
   2417       1.3  explorer 			lcp.Close(sp);
   2418       1.3  explorer 			break;
   2419       1.3  explorer 		}
   2420       1.3  explorer 	}
   2421       1.3  explorer 	if (debug)
   2422       1.3  explorer 		addlog("\n");
   2423       1.3  explorer 	free (buf, M_TEMP);
   2424       1.3  explorer 	return;
   2425       1.3  explorer }
   2426       1.3  explorer 
   2427       1.3  explorer static void
   2428       1.3  explorer sppp_lcp_tlu(struct sppp *sp)
   2429       1.3  explorer {
   2430       1.3  explorer 	STDDCL;
   2431       1.3  explorer 	int i;
   2432       1.3  explorer 	u_long mask;
   2433       1.3  explorer 
   2434       1.3  explorer 	/* XXX ? */
   2435       1.3  explorer 	if (! (ifp->if_flags & IFF_UP) &&
   2436       1.3  explorer 	    (ifp->if_flags & IFF_RUNNING)) {
   2437       1.3  explorer 		/* Coming out of loopback mode. */
   2438       1.3  explorer 		if_up(ifp);
   2439       1.3  explorer 		printf (SPP_FMT "up\n", SPP_ARGS(ifp));
   2440       1.3  explorer 	}
   2441       1.3  explorer 
   2442       1.3  explorer 	for (i = 0; i < IDX_COUNT; i++)
   2443       1.3  explorer 		if ((cps[i])->flags & CP_QUAL)
   2444       1.3  explorer 			(cps[i])->Open(sp);
   2445       1.3  explorer 
   2446       1.3  explorer 	if ((sp->lcp.opts & (1 << LCP_OPT_AUTH_PROTO)) != 0 ||
   2447       1.3  explorer 	    (sp->pp_flags & PP_NEEDAUTH) != 0)
   2448       1.3  explorer 		sp->pp_phase = PHASE_AUTHENTICATE;
   2449       1.3  explorer 	else
   2450       1.3  explorer 		sp->pp_phase = PHASE_NETWORK;
   2451       1.3  explorer 
   2452       1.3  explorer 	if(debug)
   2453       1.3  explorer 	{
   2454       1.3  explorer 		log(LOG_INFO, SPP_FMT "phase %s\n", SPP_ARGS(ifp),
   2455       1.3  explorer 		    sppp_phase_name(sp->pp_phase));
   2456       1.3  explorer 	}
   2457       1.3  explorer 
   2458       1.3  explorer 	/*
   2459       1.3  explorer 	 * Open all authentication protocols.  This is even required
   2460       1.3  explorer 	 * if we already proceeded to network phase, since it might be
   2461       1.3  explorer 	 * that remote wants us to authenticate, so we might have to
   2462       1.3  explorer 	 * send a PAP request.  Undesired authentication protocols
   2463       1.3  explorer 	 * don't do anything when they get an Open event.
   2464       1.3  explorer 	 */
   2465       1.3  explorer 	for (i = 0; i < IDX_COUNT; i++)
   2466       1.3  explorer 		if ((cps[i])->flags & CP_AUTH)
   2467       1.3  explorer 			(cps[i])->Open(sp);
   2468       1.3  explorer 
   2469       1.3  explorer 	if (sp->pp_phase == PHASE_NETWORK) {
   2470       1.3  explorer 		/* Notify all NCPs. */
   2471       1.3  explorer 		for (i = 0; i < IDX_COUNT; i++)
   2472       1.3  explorer 			if ((cps[i])->flags & CP_NCP)
   2473       1.3  explorer 				(cps[i])->Open(sp);
   2474      1.13    itojun 	}
   2475       1.3  explorer 
   2476       1.3  explorer 	/* Send Up events to all started protos. */
   2477       1.3  explorer 	for (i = 0, mask = 1; i < IDX_COUNT; i++, mask <<= 1)
   2478       1.3  explorer 		if ((sp->lcp.protos & mask) && ((cps[i])->flags & CP_LCP) == 0)
   2479       1.3  explorer 			(cps[i])->Up(sp);
   2480       1.3  explorer 
   2481       1.3  explorer 	/* notify low-level driver of state change */
   2482       1.3  explorer 	if (sp->pp_chg)
   2483       1.3  explorer 		sp->pp_chg(sp, (int)sp->pp_phase);
   2484       1.3  explorer 
   2485       1.3  explorer 	if (sp->pp_phase == PHASE_NETWORK)
   2486       1.3  explorer 		/* if no NCP is starting, close down */
   2487       1.3  explorer 		sppp_lcp_check_and_close(sp);
   2488       1.3  explorer }
   2489       1.3  explorer 
   2490       1.3  explorer static void
   2491       1.3  explorer sppp_lcp_tld(struct sppp *sp)
   2492       1.3  explorer {
   2493       1.3  explorer 	STDDCL;
   2494       1.3  explorer 	int i;
   2495       1.3  explorer 	u_long mask;
   2496       1.3  explorer 
   2497       1.3  explorer 	sp->pp_phase = PHASE_TERMINATE;
   2498       1.3  explorer 
   2499       1.3  explorer 	if(debug)
   2500       1.3  explorer 	{
   2501       1.3  explorer 		log(LOG_INFO, SPP_FMT "phase %s\n", SPP_ARGS(ifp),
   2502       1.3  explorer 			sppp_phase_name(sp->pp_phase));
   2503       1.3  explorer 	}
   2504       1.3  explorer 
   2505       1.3  explorer 	/*
   2506       1.3  explorer 	 * Take upper layers down.  We send the Down event first and
   2507       1.3  explorer 	 * the Close second to prevent the upper layers from sending
   2508      1.13    itojun 	 * ``a flurry of terminate-request packets'', as the RFC
   2509       1.3  explorer 	 * describes it.
   2510       1.3  explorer 	 */
   2511       1.3  explorer 	for (i = 0, mask = 1; i < IDX_COUNT; i++, mask <<= 1)
   2512       1.3  explorer 		if ((sp->lcp.protos & mask) && ((cps[i])->flags & CP_LCP) == 0) {
   2513       1.3  explorer 			(cps[i])->Down(sp);
   2514       1.3  explorer 			(cps[i])->Close(sp);
   2515       1.3  explorer 		}
   2516       1.3  explorer }
   2517       1.3  explorer 
   2518       1.3  explorer static void
   2519       1.3  explorer sppp_lcp_tls(struct sppp *sp)
   2520       1.3  explorer {
   2521       1.3  explorer 	STDDCL;
   2522       1.3  explorer 
   2523       1.3  explorer 	sp->pp_phase = PHASE_ESTABLISH;
   2524       1.3  explorer 
   2525       1.3  explorer 	if(debug)
   2526       1.3  explorer 	{
   2527       1.3  explorer 		log(LOG_INFO, SPP_FMT "phase %s\n", SPP_ARGS(ifp),
   2528       1.3  explorer 			sppp_phase_name(sp->pp_phase));
   2529       1.3  explorer 	}
   2530       1.3  explorer 
   2531       1.3  explorer 	/* Notify lower layer if desired. */
   2532       1.3  explorer 	if (sp->pp_tls)
   2533       1.3  explorer 		(sp->pp_tls)(sp);
   2534       1.3  explorer }
   2535       1.3  explorer 
   2536       1.3  explorer static void
   2537       1.3  explorer sppp_lcp_tlf(struct sppp *sp)
   2538       1.3  explorer {
   2539       1.3  explorer 	STDDCL;
   2540       1.3  explorer 
   2541       1.3  explorer 	sp->pp_phase = PHASE_DEAD;
   2542       1.3  explorer 
   2543       1.3  explorer 	if(debug)
   2544       1.3  explorer 	{
   2545       1.3  explorer 		log(LOG_INFO, SPP_FMT "phase %s\n", SPP_ARGS(ifp),
   2546       1.3  explorer 			sppp_phase_name(sp->pp_phase));
   2547       1.3  explorer 	}
   2548       1.3  explorer 
   2549       1.3  explorer 	/* Notify lower layer if desired. */
   2550       1.3  explorer 	if (sp->pp_tlf)
   2551       1.3  explorer 		(sp->pp_tlf)(sp);
   2552       1.3  explorer }
   2553       1.3  explorer 
   2554       1.3  explorer static void
   2555       1.3  explorer sppp_lcp_scr(struct sppp *sp)
   2556       1.3  explorer {
   2557       1.3  explorer 	char opt[6 /* magicnum */ + 4 /* mru */ + 5 /* chap */];
   2558       1.3  explorer 	int i = 0;
   2559       1.3  explorer 	u_short authproto;
   2560       1.3  explorer 
   2561       1.3  explorer 	if (sp->lcp.opts & (1 << LCP_OPT_MAGIC)) {
   2562       1.3  explorer 		if (! sp->lcp.magic)
   2563       1.3  explorer 			sp->lcp.magic = random();
   2564       1.3  explorer 		opt[i++] = LCP_OPT_MAGIC;
   2565       1.3  explorer 		opt[i++] = 6;
   2566       1.3  explorer 		opt[i++] = sp->lcp.magic >> 24;
   2567       1.3  explorer 		opt[i++] = sp->lcp.magic >> 16;
   2568       1.3  explorer 		opt[i++] = sp->lcp.magic >> 8;
   2569       1.3  explorer 		opt[i++] = sp->lcp.magic;
   2570       1.3  explorer 	}
   2571       1.3  explorer 
   2572       1.3  explorer 	if (sp->lcp.opts & (1 << LCP_OPT_MRU)) {
   2573       1.3  explorer 		opt[i++] = LCP_OPT_MRU;
   2574       1.3  explorer 		opt[i++] = 4;
   2575       1.3  explorer 		opt[i++] = sp->lcp.mru >> 8;
   2576       1.3  explorer 		opt[i++] = sp->lcp.mru;
   2577       1.3  explorer 	}
   2578       1.3  explorer 
   2579       1.3  explorer 	if (sp->lcp.opts & (1 << LCP_OPT_AUTH_PROTO)) {
   2580       1.3  explorer 		authproto = sp->hisauth.proto;
   2581       1.3  explorer 		opt[i++] = LCP_OPT_AUTH_PROTO;
   2582       1.3  explorer 		opt[i++] = authproto == PPP_CHAP? 5: 4;
   2583       1.3  explorer 		opt[i++] = authproto >> 8;
   2584       1.3  explorer 		opt[i++] = authproto;
   2585       1.9    itojun 		if (authproto == PPP_CHAP)
   2586       1.3  explorer 			opt[i++] = CHAP_MD5;
   2587       1.3  explorer 	}
   2588       1.3  explorer 
   2589       1.3  explorer 	sp->confid[IDX_LCP] = ++sp->pp_seq[IDX_LCP];
   2590       1.3  explorer 	sppp_cp_send (sp, PPP_LCP, CONF_REQ, sp->confid[IDX_LCP], i, &opt);
   2591       1.3  explorer }
   2592       1.3  explorer 
   2593       1.3  explorer /*
   2594       1.3  explorer  * Check the open NCPs, return true if at least one NCP is open.
   2595       1.3  explorer  */
   2596       1.3  explorer static int
   2597       1.3  explorer sppp_ncp_check(struct sppp *sp)
   2598      1.13    itojun {
   2599       1.3  explorer 	int i, mask;
   2600       1.3  explorer 
   2601       1.3  explorer 	for (i = 0, mask = 1; i < IDX_COUNT; i++, mask <<= 1)
   2602       1.3  explorer 		if ((sp->lcp.protos & mask) && (cps[i])->flags & CP_NCP)
   2603       1.3  explorer 			return 1;
   2604       1.3  explorer 	return 0;
   2605       1.3  explorer }
   2606       1.3  explorer 
   2607       1.3  explorer /*
   2608       1.3  explorer  * Re-check the open NCPs and see if we should terminate the link.
   2609       1.3  explorer  * Called by the NCPs during their tlf action handling.
   2610       1.3  explorer  */
   2611       1.3  explorer static void
   2612       1.3  explorer sppp_lcp_check_and_close(struct sppp *sp)
   2613       1.3  explorer {
   2614       1.3  explorer 
   2615       1.3  explorer 	if (sp->pp_phase < PHASE_NETWORK)
   2616       1.3  explorer 		/* don't bother, we are already going down */
   2617       1.3  explorer 		return;
   2618       1.3  explorer 
   2619       1.3  explorer 	if (sppp_ncp_check(sp))
   2620       1.9    itojun 		return;
   2621       1.9    itojun 
   2622       1.3  explorer 	lcp.Close(sp);
   2623       1.3  explorer }
   2624       1.3  explorer 
   2625       1.3  explorer 
   2626       1.3  explorer /*
   2628       1.3  explorer  *--------------------------------------------------------------------------*
   2629       1.3  explorer  *                                                                          *
   2630       1.3  explorer  *                        The IPCP implementation.                          *
   2631       1.3  explorer  *                                                                          *
   2632       1.3  explorer  *--------------------------------------------------------------------------*
   2633       1.3  explorer  */
   2634       1.3  explorer 
   2635       1.3  explorer static void
   2636       1.3  explorer sppp_ipcp_init(struct sppp *sp)
   2637       1.9    itojun {
   2638       1.9    itojun 	sp->ipcp.opts = 0;
   2639       1.7   thorpej 	sp->ipcp.flags = 0;
   2640       1.3  explorer 	sp->state[IDX_IPCP] = STATE_INITIAL;
   2641       1.3  explorer 	sp->fail_counter[IDX_IPCP] = 0;
   2642       1.3  explorer 	sp->pp_seq[IDX_IPCP] = 0;
   2643       1.3  explorer 	sp->pp_rseq[IDX_IPCP] = 0;
   2644       1.3  explorer 	callout_init(&sp->ch[IDX_IPCP]);
   2645       1.3  explorer }
   2646       1.3  explorer 
   2647       1.3  explorer static void
   2648       1.3  explorer sppp_ipcp_up(struct sppp *sp)
   2649       1.3  explorer {
   2650       1.3  explorer 	sppp_up_event(&ipcp, sp);
   2651       1.3  explorer }
   2652       1.3  explorer 
   2653       1.3  explorer static void
   2654       1.3  explorer sppp_ipcp_down(struct sppp *sp)
   2655       1.3  explorer {
   2656       1.3  explorer 	sppp_down_event(&ipcp, sp);
   2657       1.3  explorer }
   2658       1.3  explorer 
   2659       1.3  explorer static void
   2660       1.3  explorer sppp_ipcp_open(struct sppp *sp)
   2661       1.3  explorer {
   2662       1.3  explorer 	STDDCL;
   2663       1.3  explorer 	u_long myaddr, hisaddr;
   2664       1.3  explorer 
   2665       1.3  explorer 	sp->ipcp.flags &= ~(IPCP_HISADDR_SEEN|IPCP_MYADDR_SEEN|IPCP_MYADDR_DYN);
   2666       1.3  explorer 
   2667       1.3  explorer 	sppp_get_ip_addrs(sp, &myaddr, &hisaddr, 0);
   2668       1.3  explorer 	/*
   2669       1.3  explorer 	 * If we don't have his address, this probably means our
   2670       1.3  explorer 	 * interface doesn't want to talk IP at all.  (This could
   2671       1.3  explorer 	 * be the case if somebody wants to speak only IPX, for
   2672       1.3  explorer 	 * example.)  Don't open IPCP in this case.
   2673       1.3  explorer 	 */
   2674       1.3  explorer 	if (hisaddr == 0L) {
   2675       1.3  explorer 		/* XXX this message should go away */
   2676       1.3  explorer 		if (debug)
   2677       1.3  explorer 			log(LOG_DEBUG, SPP_FMT "ipcp_open(): no IP interface\n",
   2678       1.3  explorer 			    SPP_ARGS(ifp));
   2679       1.3  explorer 		return;
   2680       1.3  explorer 	}
   2681       1.3  explorer 
   2682       1.3  explorer 	if (myaddr == 0L) {
   2683       1.3  explorer 		/*
   2684       1.3  explorer 		 * I don't have an assigned address, so i need to
   2685       1.3  explorer 		 * negotiate my address.
   2686       1.3  explorer 		 */
   2687       1.3  explorer 		sp->ipcp.flags |= IPCP_MYADDR_DYN;
   2688       1.3  explorer 		sp->ipcp.opts |= (1 << IPCP_OPT_ADDRESS);
   2689       1.3  explorer 	} else
   2690       1.3  explorer 		sp->ipcp.flags |= IPCP_MYADDR_SEEN;
   2691       1.3  explorer 	sppp_open_event(&ipcp, sp);
   2692       1.3  explorer }
   2693       1.3  explorer 
   2694       1.3  explorer static void
   2695       1.3  explorer sppp_ipcp_close(struct sppp *sp)
   2696       1.3  explorer {
   2697       1.3  explorer 	sppp_close_event(&ipcp, sp);
   2698       1.3  explorer 	if (sp->ipcp.flags & IPCP_MYADDR_DYN)
   2699       1.3  explorer 		/*
   2700       1.3  explorer 		 * My address was dynamic, clear it again.
   2701       1.3  explorer 		 */
   2702       1.3  explorer 		sppp_set_ip_addr(sp, 0L);
   2703       1.3  explorer }
   2704       1.3  explorer 
   2705       1.3  explorer static void
   2706       1.3  explorer sppp_ipcp_TO(void *cookie)
   2707       1.3  explorer {
   2708       1.3  explorer 	sppp_to_event(&ipcp, (struct sppp *)cookie);
   2709       1.3  explorer }
   2710       1.3  explorer 
   2711       1.3  explorer /*
   2712       1.3  explorer  * Analyze a configure request.  Return true if it was agreeable, and
   2713       1.3  explorer  * caused action sca, false if it has been rejected or nak'ed, and
   2714       1.3  explorer  * caused action scn.  (The return value is used to make the state
   2715       1.3  explorer  * transition decision in the state automaton.)
   2716       1.3  explorer  */
   2717       1.3  explorer static int
   2718       1.3  explorer sppp_ipcp_RCR(struct sppp *sp, struct lcp_header *h, int len)
   2719       1.3  explorer {
   2720       1.3  explorer 	u_char *buf, *r, *p;
   2721       1.3  explorer 	struct ifnet *ifp = &sp->pp_if;
   2722       1.3  explorer 	int rlen, origlen, debug = ifp->if_flags & IFF_DEBUG;
   2723       1.3  explorer 	u_long hisaddr, desiredaddr;
   2724       1.3  explorer 	int gotmyaddr = 0;
   2725       1.3  explorer 
   2726       1.3  explorer 	len -= 4;
   2727       1.3  explorer 	origlen = len;
   2728       1.3  explorer 	/*
   2729       1.3  explorer 	 * Make sure to allocate a buf that can at least hold a
   2730       1.3  explorer 	 * conf-nak with an `address' option.  We might need it below.
   2731       1.3  explorer 	 */
   2732       1.3  explorer 	buf = r = malloc ((len < 6? 6: len), M_TEMP, M_NOWAIT);
   2733       1.9    itojun 	if (! buf)
   2734       1.3  explorer 		return (0);
   2735       1.3  explorer 
   2736       1.3  explorer 	/* pass 1: see if we can recognize them */
   2737       1.3  explorer 	if (debug)
   2738       1.9    itojun 		log(LOG_DEBUG, SPP_FMT "ipcp parse opts:",
   2739       1.3  explorer 		    SPP_ARGS(ifp));
   2740       1.3  explorer 	p = (void*) (h+1);
   2741       1.3  explorer 	for (rlen=0; len>1 && p[1]; len-=p[1], p+=p[1]) {
   2742       1.3  explorer 		if (debug)
   2743       1.3  explorer 			addlog(" %s", sppp_ipcp_opt_name(*p));
   2744       1.3  explorer 		switch (*p) {
   2745       1.3  explorer #ifdef notyet
   2746       1.3  explorer 		case IPCP_OPT_COMPRESSION:
   2747       1.9    itojun 			if (len >= 6 && p[1] >= 6) {
   2748       1.3  explorer 				/* correctly formed compress option */
   2749       1.3  explorer 				continue;
   2750       1.3  explorer 			}
   2751       1.3  explorer 			if (debug)
   2752       1.3  explorer 				addlog(" [invalid]");
   2753       1.3  explorer 			break;
   2754       1.3  explorer #endif
   2755       1.3  explorer 		case IPCP_OPT_ADDRESS:
   2756       1.9    itojun 			if (len >= 6 && p[1] == 6) {
   2757       1.3  explorer 				/* correctly formed address option */
   2758       1.3  explorer 				continue;
   2759       1.3  explorer 			}
   2760       1.3  explorer 			if (debug)
   2761       1.9    itojun 				addlog(" [invalid]");
   2762       1.3  explorer 			break;
   2763       1.3  explorer 		default:
   2764       1.3  explorer 			/* Others not supported. */
   2765       1.3  explorer 			if (debug)
   2766       1.3  explorer 				addlog(" [rej]");
   2767       1.3  explorer 			break;
   2768       1.3  explorer 		}
   2769       1.3  explorer 		/* Add the option to rejected list. */
   2770       1.3  explorer 		bcopy (p, r, p[1]);
   2771       1.3  explorer 		r += p[1];
   2772       1.3  explorer 		rlen += p[1];
   2773       1.9    itojun 	}
   2774       1.3  explorer 	if (rlen) {
   2775       1.3  explorer 		if (debug)
   2776       1.3  explorer 			addlog(" send conf-rej\n");
   2777       1.3  explorer 		sppp_cp_send (sp, PPP_IPCP, CONF_REJ, h->ident, rlen, buf);
   2778       1.3  explorer 		goto end;
   2779       1.3  explorer 	} else if (debug)
   2780       1.3  explorer 		addlog("\n");
   2781       1.3  explorer 
   2782       1.3  explorer 	/* pass 2: parse option values */
   2783       1.3  explorer 	sppp_get_ip_addrs(sp, 0, &hisaddr, 0);
   2784       1.3  explorer 	if (debug)
   2785       1.3  explorer 		log(LOG_DEBUG, SPP_FMT "ipcp parse opt values: ",
   2786       1.9    itojun 		       SPP_ARGS(ifp));
   2787       1.3  explorer 	p = (void*) (h+1);
   2788       1.3  explorer 	len = origlen;
   2789       1.3  explorer 	for (rlen=0; len>1 && p[1]; len-=p[1], p+=p[1]) {
   2790       1.3  explorer 		if (debug)
   2791       1.3  explorer 			addlog(" %s", sppp_ipcp_opt_name(*p));
   2792       1.3  explorer 		switch (*p) {
   2793       1.3  explorer #ifdef notyet
   2794       1.3  explorer 		case IPCP_OPT_COMPRESSION:
   2795       1.3  explorer 			continue;
   2796       1.3  explorer #endif
   2797       1.3  explorer 		case IPCP_OPT_ADDRESS:
   2798       1.3  explorer 			desiredaddr = p[2] << 24 | p[3] << 16 |
   2799       1.3  explorer 				p[4] << 8 | p[5];
   2800       1.3  explorer 			if (!(sp->ipcp.flags & IPCP_MYADDR_SEEN) &&
   2801       1.9    itojun 			        (sp->ipcp.flags & IPCP_MYADDR_DYN)) {
   2802       1.3  explorer 				/*
   2803       1.3  explorer 				 * hopefully this is our address !!
   2804       1.3  explorer 				 */
   2805       1.3  explorer 			 	if (debug)
   2806       1.3  explorer 					addlog(" [wantmyaddr %s]",
   2807       1.3  explorer 						sppp_dotted_quad(desiredaddr));
   2808       1.3  explorer 				/*
   2809       1.3  explorer 				 * When doing dynamic address assignment,
   2810       1.3  explorer 			   	 * we accept his offer.  Otherwise, we
   2811       1.9    itojun 			    	 * ignore it and thus continue to negotiate
   2812       1.3  explorer 			     	 * our already existing value.
   2813       1.3  explorer 		      		 */
   2814       1.3  explorer 				sppp_set_ip_addr(sp, desiredaddr);
   2815       1.3  explorer 				if (debug)
   2816       1.3  explorer 					addlog(" [agree]");
   2817       1.3  explorer 				sp->ipcp.flags |= IPCP_MYADDR_SEEN;
   2818       1.3  explorer 				gotmyaddr++;
   2819       1.3  explorer 				continue;
   2820       1.3  explorer 			} else {
   2821       1.3  explorer 				if (desiredaddr == hisaddr ||
   2822       1.3  explorer 			    	(hisaddr == 1 && desiredaddr != 0)) {
   2823       1.3  explorer 					/*
   2824       1.9    itojun 				 	* Peer's address is same as our value,
   2825       1.3  explorer 				 	* this is agreeable.  Gonna conf-ack
   2826       1.3  explorer 				 	* it.
   2827       1.3  explorer 				 	*/
   2828       1.3  explorer 					if (debug)
   2829       1.3  explorer 						addlog(" %s [ack]",
   2830       1.3  explorer 					       		sppp_dotted_quad(hisaddr));
   2831       1.3  explorer 					/* record that we've seen it already */
   2832       1.3  explorer 					sp->ipcp.flags |= IPCP_HISADDR_SEEN;
   2833       1.3  explorer 					continue;
   2834       1.3  explorer 				}
   2835       1.3  explorer 				/*
   2836       1.3  explorer 			 	* The address wasn't agreeable.  This is either
   2837       1.3  explorer 			 	* he sent us 0.0.0.0, asking to assign him an
   2838       1.3  explorer 			 	* address, or he send us another address not
   2839       1.9    itojun 			 	* matching our value.  Either case, we gonna
   2840       1.3  explorer 			 	* conf-nak it with our value.
   2841       1.9    itojun 			 	*/
   2842       1.3  explorer 				if (debug) {
   2843       1.3  explorer 					if (desiredaddr == 0)
   2844       1.3  explorer 						addlog(" [addr requested]");
   2845       1.3  explorer 					else
   2846       1.3  explorer 						addlog(" %s [not agreed]",
   2847       1.3  explorer 					       		sppp_dotted_quad(desiredaddr));
   2848       1.3  explorer 				}
   2849       1.3  explorer 
   2850       1.3  explorer 				p[2] = hisaddr >> 24;
   2851       1.3  explorer 				p[3] = hisaddr >> 16;
   2852       1.3  explorer 				p[4] = hisaddr >> 8;
   2853       1.3  explorer 				p[5] = hisaddr;
   2854       1.3  explorer 				break;
   2855       1.3  explorer 			}
   2856       1.3  explorer 		}
   2857       1.3  explorer 		/* Add the option to nak'ed list. */
   2858       1.3  explorer 		bcopy (p, r, p[1]);
   2859       1.3  explorer 		r += p[1];
   2860       1.3  explorer 		rlen += p[1];
   2861       1.3  explorer 	}
   2862       1.3  explorer 
   2863       1.3  explorer 	/*
   2864       1.3  explorer 	 * If we are about to conf-ack the request, but haven't seen
   2865       1.3  explorer 	 * his address so far, gonna conf-nak it instead, with the
   2866       1.3  explorer 	 * `address' option present and our idea of his address being
   2867       1.3  explorer 	 * filled in there, to request negotiation of both addresses.
   2868       1.3  explorer 	 *
   2869       1.3  explorer 	 * XXX This can result in an endless req - nak loop if peer
   2870       1.3  explorer 	 * doesn't want to send us his address.  Q: What should we do
   2871       1.3  explorer 	 * about it?  XXX  A: implement the max-failure counter.
   2872       1.3  explorer 	 */
   2873       1.3  explorer 	if (rlen == 0 && !(sp->ipcp.flags & IPCP_HISADDR_SEEN) && !gotmyaddr) {
   2874       1.3  explorer 		buf[0] = IPCP_OPT_ADDRESS;
   2875       1.3  explorer 		buf[1] = 6;
   2876       1.3  explorer 		buf[2] = hisaddr >> 24;
   2877       1.9    itojun 		buf[3] = hisaddr >> 16;
   2878       1.3  explorer 		buf[4] = hisaddr >> 8;
   2879       1.3  explorer 		buf[5] = hisaddr;
   2880       1.3  explorer 		rlen = 6;
   2881       1.3  explorer 		if (debug)
   2882       1.3  explorer 			addlog(" still need hisaddr");
   2883       1.3  explorer 	}
   2884       1.3  explorer 
   2885       1.3  explorer 	if (rlen) {
   2886       1.3  explorer 		if (debug)
   2887       1.3  explorer 			addlog(" send conf-nak\n");
   2888       1.3  explorer 		sppp_cp_send (sp, PPP_IPCP, CONF_NAK, h->ident, rlen, buf);
   2889       1.3  explorer 	} else {
   2890       1.3  explorer 		if (debug)
   2891       1.9    itojun 			addlog(" send conf-ack\n");
   2892       1.3  explorer 		sppp_cp_send (sp, PPP_IPCP, CONF_ACK,
   2893       1.3  explorer 			      h->ident, origlen, h+1);
   2894       1.3  explorer 	}
   2895       1.3  explorer 
   2896       1.3  explorer  end:
   2897       1.3  explorer 	free (buf, M_TEMP);
   2898       1.3  explorer 	return (rlen == 0);
   2899       1.3  explorer }
   2900       1.3  explorer 
   2901       1.3  explorer /*
   2902       1.3  explorer  * Analyze the IPCP Configure-Reject option list, and adjust our
   2903       1.3  explorer  * negotiation.
   2904       1.3  explorer  */
   2905       1.3  explorer static void
   2906       1.3  explorer sppp_ipcp_RCN_rej(struct sppp *sp, struct lcp_header *h, int len)
   2907       1.3  explorer {
   2908       1.3  explorer 	u_char *buf, *p;
   2909       1.3  explorer 	struct ifnet *ifp = &sp->pp_if;
   2910       1.3  explorer 	int debug = ifp->if_flags & IFF_DEBUG;
   2911       1.3  explorer 
   2912       1.3  explorer 	len -= 4;
   2913       1.9    itojun 	buf = malloc (len, M_TEMP, M_NOWAIT);
   2914       1.3  explorer 	if (!buf)
   2915       1.3  explorer 		return;
   2916       1.3  explorer 
   2917       1.3  explorer 	if (debug)
   2918       1.3  explorer 		log(LOG_DEBUG, SPP_FMT "ipcp rej opts:",
   2919       1.9    itojun 		    SPP_ARGS(ifp));
   2920       1.3  explorer 
   2921       1.3  explorer 	p = (void*) (h+1);
   2922       1.3  explorer 	for (; len > 1 && p[1]; len -= p[1], p += p[1]) {
   2923       1.3  explorer 		if (debug)
   2924       1.3  explorer 			addlog(" %s", sppp_ipcp_opt_name(*p));
   2925       1.3  explorer 		switch (*p) {
   2926       1.3  explorer 		case IPCP_OPT_ADDRESS:
   2927       1.3  explorer 			/*
   2928       1.3  explorer 			 * Peer doesn't grok address option.  This is
   2929       1.3  explorer 			 * bad.  XXX  Should we better give up here?
   2930       1.3  explorer 			 */
   2931       1.3  explorer 			sp->ipcp.opts &= ~(1 << IPCP_OPT_ADDRESS);
   2932       1.3  explorer 			break;
   2933       1.3  explorer #ifdef notyet
   2934       1.3  explorer 		case IPCP_OPT_COMPRESS:
   2935       1.3  explorer 			sp->ipcp.opts &= ~(1 << IPCP_OPT_COMPRESS);
   2936       1.3  explorer 			break;
   2937       1.3  explorer #endif
   2938       1.3  explorer 		}
   2939       1.3  explorer 	}
   2940       1.3  explorer 	if (debug)
   2941       1.3  explorer 		addlog("\n");
   2942       1.3  explorer 	free (buf, M_TEMP);
   2943       1.3  explorer 	return;
   2944       1.3  explorer }
   2945       1.3  explorer 
   2946       1.3  explorer /*
   2947       1.3  explorer  * Analyze the IPCP Configure-NAK option list, and adjust our
   2948       1.3  explorer  * negotiation.
   2949       1.3  explorer  */
   2950       1.3  explorer static void
   2951       1.3  explorer sppp_ipcp_RCN_nak(struct sppp *sp, struct lcp_header *h, int len)
   2952       1.3  explorer {
   2953       1.3  explorer 	u_char *buf, *p;
   2954       1.3  explorer 	struct ifnet *ifp = &sp->pp_if;
   2955       1.3  explorer 	int debug = ifp->if_flags & IFF_DEBUG;
   2956       1.3  explorer 	u_long wantaddr;
   2957       1.3  explorer 
   2958       1.3  explorer 	len -= 4;
   2959       1.9    itojun 	buf = malloc (len, M_TEMP, M_NOWAIT);
   2960       1.3  explorer 	if (!buf)
   2961       1.3  explorer 		return;
   2962       1.3  explorer 
   2963       1.3  explorer 	if (debug)
   2964       1.3  explorer 		log(LOG_DEBUG, SPP_FMT "ipcp nak opts:",
   2965       1.9    itojun 		    SPP_ARGS(ifp));
   2966       1.3  explorer 
   2967       1.3  explorer 	p = (void*) (h+1);
   2968       1.3  explorer 	for (; len > 1 && p[1]; len -= p[1], p += p[1]) {
   2969       1.3  explorer 		if (debug)
   2970       1.3  explorer 			addlog(" %s", sppp_ipcp_opt_name(*p));
   2971       1.3  explorer 		switch (*p) {
   2972       1.3  explorer 		case IPCP_OPT_ADDRESS:
   2973       1.3  explorer 			/*
   2974       1.3  explorer 			 * Peer doesn't like our local IP address.  See
   2975       1.3  explorer 			 * if we can do something for him.  We'll drop
   2976       1.3  explorer 			 * him our address then.
   2977       1.3  explorer 			 */
   2978       1.9    itojun 			if (len >= 6 && p[1] == 6) {
   2979       1.3  explorer 				wantaddr = p[2] << 24 | p[3] << 16 |
   2980       1.3  explorer 					p[4] << 8 | p[5];
   2981       1.3  explorer 				sp->ipcp.opts |= (1 << IPCP_OPT_ADDRESS);
   2982       1.3  explorer 				if (debug)
   2983       1.3  explorer 					addlog(" [wantaddr %s]",
   2984       1.3  explorer 					       sppp_dotted_quad(wantaddr));
   2985       1.3  explorer 				/*
   2986       1.3  explorer 				 * When doing dynamic address assignment,
   2987       1.3  explorer 				 * we accept his offer.  Otherwise, we
   2988       1.3  explorer 				 * ignore it and thus continue to negotiate
   2989       1.9    itojun 				 * our already existing value.
   2990       1.3  explorer 				 */
   2991       1.3  explorer 				if (sp->ipcp.flags & IPCP_MYADDR_DYN) {
   2992       1.3  explorer 					sppp_set_ip_addr(sp, wantaddr);
   2993       1.3  explorer 					if (debug)
   2994       1.3  explorer 						addlog(" [agree]");
   2995       1.3  explorer 					sp->ipcp.flags |= IPCP_MYADDR_SEEN;
   2996       1.3  explorer 				}
   2997       1.3  explorer 			}
   2998       1.3  explorer 			break;
   2999       1.3  explorer #ifdef notyet
   3000       1.3  explorer 		case IPCP_OPT_COMPRESS:
   3001       1.3  explorer 			/*
   3002       1.3  explorer 			 * Peer wants different compression parameters.
   3003       1.3  explorer 			 */
   3004       1.3  explorer 			break;
   3005       1.3  explorer #endif
   3006       1.3  explorer 		}
   3007       1.3  explorer 	}
   3008       1.3  explorer 	if (debug)
   3009       1.3  explorer 		addlog("\n");
   3010       1.3  explorer 	free (buf, M_TEMP);
   3011       1.3  explorer 	return;
   3012       1.3  explorer }
   3013       1.3  explorer 
   3014       1.3  explorer static void
   3015       1.3  explorer sppp_ipcp_tlu(struct sppp *sp)
   3016       1.3  explorer {
   3017       1.3  explorer 	/* we are up - notify isdn daemon */
   3018       1.3  explorer 	if (sp->pp_con)
   3019       1.3  explorer 		sp->pp_con(sp);
   3020       1.3  explorer }
   3021       1.3  explorer 
   3022       1.3  explorer static void
   3023       1.3  explorer sppp_ipcp_tld(struct sppp *sp)
   3024       1.3  explorer {
   3025       1.3  explorer }
   3026       1.3  explorer 
   3027       1.3  explorer static void
   3028       1.3  explorer sppp_ipcp_tls(struct sppp *sp)
   3029       1.3  explorer {
   3030       1.3  explorer 	/* indicate to LCP that it must stay alive */
   3031       1.3  explorer 	sp->lcp.protos |= (1 << IDX_IPCP);
   3032       1.3  explorer }
   3033       1.3  explorer 
   3034       1.3  explorer static void
   3035       1.3  explorer sppp_ipcp_tlf(struct sppp *sp)
   3036       1.3  explorer {
   3037       1.3  explorer 	/* we no longer need LCP */
   3038       1.3  explorer 	sp->lcp.protos &= ~(1 << IDX_IPCP);
   3039       1.3  explorer }
   3040       1.3  explorer 
   3041       1.3  explorer static void
   3042       1.3  explorer sppp_ipcp_scr(struct sppp *sp)
   3043       1.3  explorer {
   3044       1.3  explorer 	char opt[6 /* compression */ + 6 /* address */];
   3045       1.3  explorer 	u_long ouraddr;
   3046       1.3  explorer 	int i = 0;
   3047       1.3  explorer 
   3048       1.3  explorer #ifdef notyet
   3049       1.3  explorer 	if (sp->ipcp.opts & (1 << IPCP_OPT_COMPRESSION)) {
   3050       1.3  explorer 		opt[i++] = IPCP_OPT_COMPRESSION;
   3051       1.3  explorer 		opt[i++] = 6;
   3052       1.3  explorer 		opt[i++] = 0;	/* VJ header compression */
   3053       1.3  explorer 		opt[i++] = 0x2d; /* VJ header compression */
   3054       1.3  explorer 		opt[i++] = max_slot_id;
   3055       1.3  explorer 		opt[i++] = comp_slot_id;
   3056       1.3  explorer 	}
   3057       1.3  explorer #endif
   3058       1.3  explorer 
   3059       1.3  explorer 	if (sp->ipcp.opts & (1 << IPCP_OPT_ADDRESS)) {
   3060       1.3  explorer 		sppp_get_ip_addrs(sp, &ouraddr, 0, 0);
   3061       1.3  explorer 		opt[i++] = IPCP_OPT_ADDRESS;
   3062       1.3  explorer 		opt[i++] = 6;
   3063       1.3  explorer 		opt[i++] = ouraddr >> 24;
   3064       1.9    itojun 		opt[i++] = ouraddr >> 16;
   3065       1.3  explorer 		opt[i++] = ouraddr >> 8;
   3066       1.3  explorer 		opt[i++] = ouraddr;
   3067       1.3  explorer 	}
   3068       1.3  explorer 
   3069       1.3  explorer 	sp->confid[IDX_IPCP] = ++sp->pp_seq[IDX_IPCP];
   3070       1.3  explorer 	sppp_cp_send(sp, PPP_IPCP, CONF_REQ, sp->confid[IDX_IPCP], i, &opt);
   3071       1.3  explorer }
   3072       1.9    itojun 
   3073       1.9    itojun 
   3074       1.9    itojun /*
   3076       1.9    itojun  *--------------------------------------------------------------------------*
   3077       1.9    itojun  *                                                                          *
   3078       1.9    itojun  *                      The IPv6CP implementation.                          *
   3079       1.9    itojun  *                                                                          *
   3080       1.9    itojun  *--------------------------------------------------------------------------*
   3081       1.9    itojun  */
   3082       1.9    itojun 
   3083       1.9    itojun #ifdef INET6
   3084       1.9    itojun static void
   3085       1.9    itojun sppp_ipv6cp_init(struct sppp *sp)
   3086       1.9    itojun {
   3087       1.9    itojun 	sp->ipv6cp.opts = 0;
   3088       1.9    itojun 	sp->ipv6cp.flags = 0;
   3089       1.9    itojun 	sp->state[IDX_IPV6CP] = STATE_INITIAL;
   3090       1.9    itojun 	sp->fail_counter[IDX_IPV6CP] = 0;
   3091       1.9    itojun 	sp->pp_seq[IDX_IPV6CP] = 0;
   3092       1.9    itojun 	sp->pp_rseq[IDX_IPV6CP] = 0;
   3093       1.9    itojun 	callout_init(&sp->ch[IDX_IPV6CP]);
   3094       1.9    itojun }
   3095       1.9    itojun 
   3096       1.9    itojun static void
   3097       1.9    itojun sppp_ipv6cp_up(struct sppp *sp)
   3098       1.9    itojun {
   3099       1.9    itojun 	sppp_up_event(&ipv6cp, sp);
   3100       1.9    itojun }
   3101       1.9    itojun 
   3102       1.9    itojun static void
   3103       1.9    itojun sppp_ipv6cp_down(struct sppp *sp)
   3104       1.9    itojun {
   3105       1.9    itojun 	sppp_down_event(&ipv6cp, sp);
   3106       1.9    itojun }
   3107       1.9    itojun 
   3108       1.9    itojun static void
   3109       1.9    itojun sppp_ipv6cp_open(struct sppp *sp)
   3110       1.9    itojun {
   3111       1.9    itojun 	STDDCL;
   3112       1.9    itojun 	struct in6_addr myaddr, hisaddr;
   3113       1.9    itojun 
   3114       1.9    itojun #ifdef IPV6CP_MYIFID_DYN
   3115       1.9    itojun 	sp->ipv6cp.flags &= ~(IPV6CP_MYIFID_SEEN|IPV6CP_MYIFID_DYN);
   3116       1.9    itojun #else
   3117       1.9    itojun 	sp->ipv6cp.flags &= ~IPV6CP_MYIFID_SEEN;
   3118       1.9    itojun #endif
   3119       1.9    itojun 
   3120       1.9    itojun 	sppp_get_ip6_addrs(sp, &myaddr, &hisaddr, 0);
   3121       1.9    itojun 	/*
   3122       1.9    itojun 	 * If we don't have our address, this probably means our
   3123       1.9    itojun 	 * interface doesn't want to talk IPv6 at all.  (This could
   3124       1.9    itojun 	 * be the case if somebody wants to speak only IPX, for
   3125       1.9    itojun 	 * example.)  Don't open IPv6CP in this case.
   3126       1.9    itojun 	 */
   3127       1.9    itojun 	if (IN6_IS_ADDR_UNSPECIFIED(&myaddr)) {
   3128       1.9    itojun 		/* XXX this message should go away */
   3129       1.9    itojun 		if (debug)
   3130       1.9    itojun 			log(LOG_DEBUG, SPP_FMT "ipv6cp_open(): no IPv6 interface\n",
   3131       1.9    itojun 			    SPP_ARGS(ifp));
   3132       1.9    itojun 		return;
   3133       1.9    itojun 	}
   3134       1.9    itojun 
   3135       1.9    itojun 	sp->ipv6cp.flags |= IPV6CP_MYIFID_SEEN;
   3136       1.9    itojun 	sp->ipv6cp.opts |= (1 << IPV6CP_OPT_IFID);
   3137       1.9    itojun 	sppp_open_event(&ipv6cp, sp);
   3138       1.9    itojun }
   3139       1.9    itojun 
   3140       1.9    itojun static void
   3141       1.9    itojun sppp_ipv6cp_close(struct sppp *sp)
   3142       1.9    itojun {
   3143       1.9    itojun 	sppp_close_event(&ipv6cp, sp);
   3144       1.9    itojun }
   3145       1.9    itojun 
   3146       1.9    itojun static void
   3147       1.9    itojun sppp_ipv6cp_TO(void *cookie)
   3148       1.9    itojun {
   3149       1.9    itojun 	sppp_to_event(&ipv6cp, (struct sppp *)cookie);
   3150       1.9    itojun }
   3151       1.9    itojun 
   3152       1.9    itojun /*
   3153       1.9    itojun  * Analyze a configure request.  Return true if it was agreeable, and
   3154       1.9    itojun  * caused action sca, false if it has been rejected or nak'ed, and
   3155       1.9    itojun  * caused action scn.  (The return value is used to make the state
   3156       1.9    itojun  * transition decision in the state automaton.)
   3157       1.9    itojun  */
   3158       1.9    itojun static int
   3159       1.9    itojun sppp_ipv6cp_RCR(struct sppp *sp, struct lcp_header *h, int len)
   3160       1.9    itojun {
   3161       1.9    itojun 	u_char *buf, *r, *p;
   3162       1.9    itojun 	struct ifnet *ifp = &sp->pp_if;
   3163       1.9    itojun 	int rlen, origlen, debug = ifp->if_flags & IFF_DEBUG;
   3164       1.9    itojun 	struct in6_addr myaddr, desiredaddr, suggestaddr;
   3165       1.9    itojun 	int ifidcount;
   3166       1.9    itojun 	int type;
   3167       1.9    itojun 	int collision, nohisaddr;
   3168       1.9    itojun 
   3169       1.9    itojun 	len -= 4;
   3170       1.9    itojun 	origlen = len;
   3171       1.9    itojun 	/*
   3172       1.9    itojun 	 * Make sure to allocate a buf that can at least hold a
   3173       1.9    itojun 	 * conf-nak with an `address' option.  We might need it below.
   3174       1.9    itojun 	 */
   3175       1.9    itojun 	buf = r = malloc ((len < 6? 6: len), M_TEMP, M_NOWAIT);
   3176       1.9    itojun 	if (! buf)
   3177       1.9    itojun 		return (0);
   3178       1.9    itojun 
   3179       1.9    itojun 	/* pass 1: see if we can recognize them */
   3180       1.9    itojun 	if (debug)
   3181       1.9    itojun 		log(LOG_DEBUG, SPP_FMT "ipv6cp parse opts:",
   3182       1.9    itojun 		    SPP_ARGS(ifp));
   3183       1.9    itojun 	p = (void*) (h+1);
   3184       1.9    itojun 	ifidcount = 0;
   3185       1.9    itojun 	for (rlen=0; len>1 && p[1]; len-=p[1], p+=p[1]) {
   3186       1.9    itojun 		if (debug)
   3187       1.9    itojun 			addlog(" %s", sppp_ipv6cp_opt_name(*p));
   3188       1.9    itojun 		switch (*p) {
   3189       1.9    itojun 		case IPV6CP_OPT_IFID:
   3190       1.9    itojun 			if (len >= 10 && p[1] == 10 && ifidcount == 0) {
   3191       1.9    itojun 				/* correctly formed address option */
   3192       1.9    itojun 				ifidcount++;
   3193       1.9    itojun 				continue;
   3194       1.9    itojun 			}
   3195       1.9    itojun 			if (debug)
   3196       1.9    itojun 				addlog(" [invalid]");
   3197       1.9    itojun 			break;
   3198       1.9    itojun #ifdef notyet
   3199       1.9    itojun 		case IPV6CP_OPT_COMPRESSION:
   3200       1.9    itojun 			if (len >= 4 && p[1] >= 4) {
   3201       1.9    itojun 				/* correctly formed compress option */
   3202       1.9    itojun 				continue;
   3203       1.9    itojun 			}
   3204       1.9    itojun 			if (debug)
   3205       1.9    itojun 				addlog(" [invalid]");
   3206       1.9    itojun 			break;
   3207       1.9    itojun #endif
   3208       1.9    itojun 		default:
   3209       1.9    itojun 			/* Others not supported. */
   3210       1.9    itojun 			if (debug)
   3211       1.9    itojun 				addlog(" [rej]");
   3212       1.9    itojun 			break;
   3213       1.9    itojun 		}
   3214       1.9    itojun 		/* Add the option to rejected list. */
   3215       1.9    itojun 		bcopy (p, r, p[1]);
   3216       1.9    itojun 		r += p[1];
   3217       1.9    itojun 		rlen += p[1];
   3218       1.9    itojun 	}
   3219       1.9    itojun 	if (rlen) {
   3220       1.9    itojun 		if (debug)
   3221       1.9    itojun 			addlog(" send conf-rej\n");
   3222       1.9    itojun 		sppp_cp_send (sp, PPP_IPV6CP, CONF_REJ, h->ident, rlen, buf);
   3223       1.9    itojun 		goto end;
   3224       1.9    itojun 	} else if (debug)
   3225       1.9    itojun 		addlog("\n");
   3226       1.9    itojun 
   3227       1.9    itojun 	/* pass 2: parse option values */
   3228       1.9    itojun 	sppp_get_ip6_addrs(sp, &myaddr, 0, 0);
   3229       1.9    itojun 	if (debug)
   3230       1.9    itojun 		log(LOG_DEBUG, SPP_FMT "ipv6cp parse opt values: ",
   3231       1.9    itojun 		       SPP_ARGS(ifp));
   3232       1.9    itojun 	p = (void*) (h+1);
   3233       1.9    itojun 	len = origlen;
   3234       1.9    itojun 	type = CONF_ACK;
   3235       1.9    itojun 	for (rlen=0; len>1 && p[1]; len-=p[1], p+=p[1]) {
   3236       1.9    itojun 		if (debug)
   3237       1.9    itojun 			addlog(" %s", sppp_ipv6cp_opt_name(*p));
   3238      1.25   thorpej 		switch (*p) {
   3239       1.9    itojun #ifdef notyet
   3240       1.9    itojun 		case IPV6CP_OPT_COMPRESSION:
   3241       1.9    itojun 			continue;
   3242       1.9    itojun #endif
   3243       1.9    itojun 		case IPV6CP_OPT_IFID:
   3244       1.9    itojun 			memset(&desiredaddr, 0, sizeof(desiredaddr));
   3245       1.9    itojun 			bcopy(&p[2], &desiredaddr.s6_addr[8], 8);
   3246       1.9    itojun 			collision = (bcmp(&desiredaddr.s6_addr[8],
   3247       1.9    itojun 					&myaddr.s6_addr[8], 8) == 0);
   3248       1.9    itojun 			nohisaddr = IN6_IS_ADDR_UNSPECIFIED(&desiredaddr);
   3249       1.9    itojun 
   3250       1.9    itojun 			desiredaddr.s6_addr16[0] = htons(0xfe80);
   3251       1.9    itojun 			desiredaddr.s6_addr16[1] = htons(sp->pp_if.if_index);
   3252       1.9    itojun 
   3253       1.9    itojun 			if (!collision && !nohisaddr) {
   3254       1.9    itojun 				/* no collision, hisaddr known - Conf-Ack */
   3255       1.9    itojun 				type = CONF_ACK;
   3256       1.9    itojun 
   3257       1.9    itojun 				if (debug) {
   3258       1.9    itojun 					addlog(" %s [%s]",
   3259      1.25   thorpej 					    ip6_sprintf(&desiredaddr),
   3260       1.9    itojun 					    sppp_cp_type_name(type));
   3261       1.9    itojun 				}
   3262       1.9    itojun 				continue;
   3263      1.25   thorpej 			}
   3264       1.9    itojun 
   3265       1.9    itojun 			memset(&suggestaddr, 0, sizeof(&suggestaddr));
   3266       1.9    itojun 			if (collision && nohisaddr) {
   3267       1.9    itojun 				/* collision, hisaddr unknown - Conf-Rej */
   3268       1.9    itojun 				type = CONF_REJ;
   3269       1.9    itojun 				memset(&p[2], 0, 8);
   3270       1.9    itojun 			} else {
   3271       1.9    itojun 				/*
   3272       1.9    itojun 				 * - no collision, hisaddr unknown, or
   3273       1.9    itojun 				 * - collision, hisaddr known
   3274       1.9    itojun 				 * Conf-Nak, suggest hisaddr
   3275       1.9    itojun 				 */
   3276       1.9    itojun 				type = CONF_NAK;
   3277       1.9    itojun 				sppp_suggest_ip6_addr(sp, &suggestaddr);
   3278       1.9    itojun 				bcopy(&suggestaddr.s6_addr[8], &p[2], 8);
   3279       1.9    itojun 			}
   3280       1.9    itojun 			if (debug)
   3281       1.9    itojun 				addlog(" %s [%s]", ip6_sprintf(&desiredaddr),
   3282       1.9    itojun 				    sppp_cp_type_name(type));
   3283       1.9    itojun 			break;
   3284       1.9    itojun 		}
   3285       1.9    itojun 		/* Add the option to nak'ed list. */
   3286       1.9    itojun 		bcopy (p, r, p[1]);
   3287       1.9    itojun 		r += p[1];
   3288       1.9    itojun 		rlen += p[1];
   3289       1.9    itojun 	}
   3290       1.9    itojun 
   3291       1.9    itojun 	if (rlen == 0 && type == CONF_ACK) {
   3292       1.9    itojun 		if (debug)
   3293       1.9    itojun 			addlog(" send %s\n", sppp_cp_type_name(type));
   3294       1.9    itojun 		sppp_cp_send (sp, PPP_IPV6CP, type, h->ident, origlen, h+1);
   3295       1.9    itojun 	} else {
   3296       1.9    itojun #ifdef DIAGNOSTIC
   3297       1.9    itojun 		if (type == CONF_ACK)
   3298       1.9    itojun 			panic("IPv6CP RCR: CONF_ACK with non-zero rlen");
   3299       1.9    itojun #endif
   3300       1.9    itojun 
   3301       1.9    itojun 		if (debug) {
   3302       1.9    itojun 			addlog(" send %s suggest %s\n",
   3303       1.9    itojun 			    sppp_cp_type_name(type), ip6_sprintf(&suggestaddr));
   3304       1.9    itojun 		}
   3305       1.9    itojun 		sppp_cp_send (sp, PPP_IPV6CP, type, h->ident, rlen, buf);
   3306       1.9    itojun 	}
   3307       1.9    itojun 
   3308       1.9    itojun  end:
   3309       1.9    itojun 	free (buf, M_TEMP);
   3310       1.9    itojun 	return (rlen == 0);
   3311       1.9    itojun }
   3312       1.9    itojun 
   3313       1.9    itojun /*
   3314       1.9    itojun  * Analyze the IPv6CP Configure-Reject option list, and adjust our
   3315       1.9    itojun  * negotiation.
   3316       1.9    itojun  */
   3317       1.9    itojun static void
   3318       1.9    itojun sppp_ipv6cp_RCN_rej(struct sppp *sp, struct lcp_header *h, int len)
   3319       1.9    itojun {
   3320       1.9    itojun 	u_char *buf, *p;
   3321       1.9    itojun 	struct ifnet *ifp = &sp->pp_if;
   3322       1.9    itojun 	int debug = ifp->if_flags & IFF_DEBUG;
   3323       1.9    itojun 
   3324       1.9    itojun 	len -= 4;
   3325       1.9    itojun 	buf = malloc (len, M_TEMP, M_NOWAIT);
   3326       1.9    itojun 	if (!buf)
   3327       1.9    itojun 		return;
   3328       1.9    itojun 
   3329       1.9    itojun 	if (debug)
   3330       1.9    itojun 		log(LOG_DEBUG, SPP_FMT "ipv6cp rej opts:",
   3331       1.9    itojun 		    SPP_ARGS(ifp));
   3332       1.9    itojun 
   3333       1.9    itojun 	p = (void*) (h+1);
   3334       1.9    itojun 	for (; len > 1 && p[1]; len -= p[1], p += p[1]) {
   3335       1.9    itojun 		if (debug)
   3336       1.9    itojun 			addlog(" %s", sppp_ipv6cp_opt_name(*p));
   3337       1.9    itojun 		switch (*p) {
   3338       1.9    itojun 		case IPV6CP_OPT_IFID:
   3339       1.9    itojun 			/*
   3340       1.9    itojun 			 * Peer doesn't grok address option.  This is
   3341       1.9    itojun 			 * bad.  XXX  Should we better give up here?
   3342       1.9    itojun 			 */
   3343       1.9    itojun 			sp->ipv6cp.opts &= ~(1 << IPV6CP_OPT_IFID);
   3344       1.9    itojun 			break;
   3345       1.9    itojun #ifdef notyet
   3346       1.9    itojun 		case IPV6CP_OPT_COMPRESS:
   3347       1.9    itojun 			sp->ipv6cp.opts &= ~(1 << IPV6CP_OPT_COMPRESS);
   3348       1.9    itojun 			break;
   3349       1.9    itojun #endif
   3350       1.9    itojun 		}
   3351       1.9    itojun 	}
   3352       1.9    itojun 	if (debug)
   3353       1.9    itojun 		addlog("\n");
   3354       1.9    itojun 	free (buf, M_TEMP);
   3355       1.9    itojun 	return;
   3356       1.9    itojun }
   3357       1.9    itojun 
   3358       1.9    itojun /*
   3359       1.9    itojun  * Analyze the IPv6CP Configure-NAK option list, and adjust our
   3360       1.9    itojun  * negotiation.
   3361       1.9    itojun  */
   3362       1.9    itojun static void
   3363       1.9    itojun sppp_ipv6cp_RCN_nak(struct sppp *sp, struct lcp_header *h, int len)
   3364       1.9    itojun {
   3365       1.9    itojun 	u_char *buf, *p;
   3366       1.9    itojun 	struct ifnet *ifp = &sp->pp_if;
   3367       1.9    itojun 	int debug = ifp->if_flags & IFF_DEBUG;
   3368       1.9    itojun 	struct in6_addr suggestaddr;
   3369       1.9    itojun 
   3370       1.9    itojun 	len -= 4;
   3371       1.9    itojun 	buf = malloc (len, M_TEMP, M_NOWAIT);
   3372       1.9    itojun 	if (!buf)
   3373       1.9    itojun 		return;
   3374       1.9    itojun 
   3375       1.9    itojun 	if (debug)
   3376       1.9    itojun 		log(LOG_DEBUG, SPP_FMT "ipv6cp nak opts:",
   3377       1.9    itojun 		    SPP_ARGS(ifp));
   3378       1.9    itojun 
   3379       1.9    itojun 	p = (void*) (h+1);
   3380       1.9    itojun 	for (; len > 1 && p[1]; len -= p[1], p += p[1]) {
   3381       1.9    itojun 		if (debug)
   3382       1.9    itojun 			addlog(" %s", sppp_ipv6cp_opt_name(*p));
   3383       1.9    itojun 		switch (*p) {
   3384       1.9    itojun 		case IPV6CP_OPT_IFID:
   3385       1.9    itojun 			/*
   3386      1.25   thorpej 			 * Peer doesn't like our local ifid.  See
   3387       1.9    itojun 			 * if we can do something for him.  We'll drop
   3388       1.9    itojun 			 * him our address then.
   3389       1.9    itojun 			 */
   3390       1.9    itojun 			if (len < 10 || p[1] != 10)
   3391       1.9    itojun 				break;
   3392       1.9    itojun 			memset(&suggestaddr, 0, sizeof(suggestaddr));
   3393       1.9    itojun 			suggestaddr.s6_addr16[0] = htons(0xfe80);
   3394       1.9    itojun 			suggestaddr.s6_addr16[1] = htons(sp->pp_if.if_index);
   3395       1.9    itojun 			bcopy(&p[2], &suggestaddr.s6_addr[8], 8);
   3396       1.9    itojun 
   3397       1.9    itojun 			sp->ipv6cp.opts |= (1 << IPV6CP_OPT_IFID);
   3398       1.9    itojun 			if (debug)
   3399       1.9    itojun 				addlog(" [suggestaddr %s]",
   3400       1.9    itojun 				       ip6_sprintf(&suggestaddr));
   3401       1.9    itojun #ifdef IPV6CP_MYIFID_DYN
   3402       1.9    itojun 			/*
   3403       1.9    itojun 			 * When doing dynamic address assignment,
   3404       1.9    itojun 			 * we accept his offer.
   3405       1.9    itojun 			 */
   3406       1.9    itojun 			if (sp->ipv6cp.flags & IPV6CP_MYIFID_DYN) {
   3407       1.9    itojun 				struct in6_addr lastsuggest;
   3408       1.9    itojun 				/*
   3409       1.9    itojun 				 * If <suggested myaddr from peer> equals to
   3410       1.9    itojun 				 * <hisaddr we have suggested last time>,
   3411       1.9    itojun 				 * we have a collision.  generate new random
   3412       1.9    itojun 				 * ifid.
   3413       1.9    itojun 				 */
   3414       1.9    itojun 				sppp_suggest_ip6_addr(&lastsuggest);
   3415       1.9    itojun 				if (IN6_ARE_ADDR_EQUAL(&suggestaddr,
   3416       1.9    itojun 						 lastsuggest)) {
   3417       1.9    itojun 					if (debug)
   3418       1.9    itojun 						addlog(" [random]");
   3419       1.9    itojun 					sppp_gen_ip6_addr(sp, &suggestaddr);
   3420       1.9    itojun 				}
   3421       1.9    itojun 				sppp_set_ip6_addr(sp, &suggestaddr, 0);
   3422       1.9    itojun 				if (debug)
   3423       1.9    itojun 					addlog(" [agree]");
   3424       1.9    itojun 				sp->ipv6cp.flags |= IPV6CP_MYIFID_SEEN;
   3425       1.9    itojun 			}
   3426       1.9    itojun #else
   3427       1.9    itojun 			/*
   3428       1.9    itojun 			 * Since we do not do dynamic address assignment,
   3429       1.9    itojun 			 * we ignore it and thus continue to negotiate
   3430       1.9    itojun 			 * our already existing value.  This can possibly
   3431       1.9    itojun 			 * go into infinite request-reject loop.
   3432       1.9    itojun 			 *
   3433       1.9    itojun 			 * This is not likely because we normally use
   3434       1.9    itojun 			 * ifid based on MAC-address.
   3435       1.9    itojun 			 * If you have no ethernet card on the node, too bad.
   3436       1.9    itojun 			 * XXX should we use fail_counter?
   3437       1.9    itojun 			 */
   3438       1.9    itojun #endif
   3439       1.9    itojun 			break;
   3440       1.9    itojun #ifdef notyet
   3441       1.9    itojun 		case IPV6CP_OPT_COMPRESS:
   3442       1.9    itojun 			/*
   3443       1.9    itojun 			 * Peer wants different compression parameters.
   3444       1.9    itojun 			 */
   3445       1.9    itojun 			break;
   3446       1.9    itojun #endif
   3447       1.9    itojun 		}
   3448       1.9    itojun 	}
   3449       1.9    itojun 	if (debug)
   3450       1.9    itojun 		addlog("\n");
   3451       1.9    itojun 	free (buf, M_TEMP);
   3452       1.9    itojun 	return;
   3453       1.9    itojun }
   3454       1.9    itojun 
   3455       1.9    itojun static void
   3456       1.9    itojun sppp_ipv6cp_tlu(struct sppp *sp)
   3457       1.9    itojun {
   3458       1.9    itojun 	/* we are up - notify isdn daemon */
   3459       1.9    itojun 	if (sp->pp_con)
   3460       1.9    itojun 		sp->pp_con(sp);
   3461       1.9    itojun }
   3462       1.9    itojun 
   3463       1.9    itojun static void
   3464       1.9    itojun sppp_ipv6cp_tld(struct sppp *sp)
   3465       1.9    itojun {
   3466       1.9    itojun }
   3467       1.9    itojun 
   3468       1.9    itojun static void
   3469       1.9    itojun sppp_ipv6cp_tls(struct sppp *sp)
   3470       1.9    itojun {
   3471       1.9    itojun 	/* indicate to LCP that it must stay alive */
   3472       1.9    itojun 	sp->lcp.protos |= (1 << IDX_IPV6CP);
   3473       1.9    itojun }
   3474       1.9    itojun 
   3475       1.9    itojun static void
   3476       1.9    itojun sppp_ipv6cp_tlf(struct sppp *sp)
   3477       1.9    itojun {
   3478       1.9    itojun 	/* we no longer need LCP */
   3479       1.9    itojun 	sp->lcp.protos &= ~(1 << IDX_IPV6CP);
   3480       1.9    itojun }
   3481       1.9    itojun 
   3482       1.9    itojun static void
   3483       1.9    itojun sppp_ipv6cp_scr(struct sppp *sp)
   3484       1.9    itojun {
   3485       1.9    itojun 	char opt[10 /* ifid */ + 4 /* compression, minimum */];
   3486       1.9    itojun 	struct in6_addr ouraddr;
   3487       1.9    itojun 	int i = 0;
   3488       1.9    itojun 
   3489       1.9    itojun 	if (sp->ipv6cp.opts & (1 << IPV6CP_OPT_IFID)) {
   3490       1.9    itojun 		sppp_get_ip6_addrs(sp, &ouraddr, 0, 0);
   3491       1.9    itojun 		opt[i++] = IPV6CP_OPT_IFID;
   3492       1.9    itojun 		opt[i++] = 10;
   3493       1.9    itojun 		bcopy(&ouraddr.s6_addr[8], &opt[i], 8);
   3494       1.9    itojun 		i += 8;
   3495       1.9    itojun 	}
   3496       1.9    itojun 
   3497       1.9    itojun #ifdef notyet
   3498       1.9    itojun 	if (sp->ipv6cp.opts & (1 << IPV6CP_OPT_COMPRESSION)) {
   3499       1.9    itojun 		opt[i++] = IPV6CP_OPT_COMPRESSION;
   3500       1.9    itojun 		opt[i++] = 4;
   3501       1.9    itojun 		opt[i++] = 0;	/* TBD */
   3502       1.9    itojun 		opt[i++] = 0;	/* TBD */
   3503       1.9    itojun 		/* variable length data may follow */
   3504       1.9    itojun 	}
   3505       1.9    itojun #endif
   3506       1.9    itojun 
   3507       1.9    itojun 	sp->confid[IDX_IPV6CP] = ++sp->pp_seq[IDX_IPV6CP];
   3508       1.9    itojun 	sppp_cp_send(sp, PPP_IPV6CP, CONF_REQ, sp->confid[IDX_IPV6CP], i, &opt);
   3509       1.9    itojun }
   3510       1.9    itojun #else /*INET6*/
   3511       1.9    itojun static void sppp_ipv6cp_init(struct sppp *sp)
   3512       1.9    itojun {
   3513       1.9    itojun }
   3514       1.9    itojun 
   3515       1.9    itojun static void sppp_ipv6cp_up(struct sppp *sp)
   3516       1.9    itojun {
   3517       1.9    itojun }
   3518       1.9    itojun 
   3519       1.9    itojun static void sppp_ipv6cp_down(struct sppp *sp)
   3520       1.9    itojun {
   3521       1.9    itojun }
   3522       1.9    itojun 
   3523       1.9    itojun 
   3524       1.9    itojun static void sppp_ipv6cp_open(struct sppp *sp)
   3525       1.9    itojun {
   3526       1.9    itojun }
   3527       1.9    itojun 
   3528       1.9    itojun static void sppp_ipv6cp_close(struct sppp *sp)
   3529       1.9    itojun {
   3530       1.9    itojun }
   3531       1.9    itojun 
   3532       1.9    itojun static void sppp_ipv6cp_TO(void *sp)
   3533       1.9    itojun {
   3534       1.9    itojun }
   3535       1.9    itojun 
   3536       1.9    itojun static int sppp_ipv6cp_RCR(struct sppp *sp, struct lcp_header *h, int len)
   3537       1.9    itojun {
   3538       1.9    itojun 	return 0;
   3539       1.9    itojun }
   3540       1.9    itojun 
   3541       1.9    itojun static void sppp_ipv6cp_RCN_rej(struct sppp *sp, struct lcp_header *h, int len)
   3542       1.9    itojun {
   3543       1.9    itojun }
   3544       1.9    itojun 
   3545       1.9    itojun static void sppp_ipv6cp_RCN_nak(struct sppp *sp, struct lcp_header *h, int len)
   3546       1.9    itojun {
   3547       1.9    itojun }
   3548       1.9    itojun 
   3549       1.9    itojun static void sppp_ipv6cp_tlu(struct sppp *sp)
   3550       1.9    itojun {
   3551       1.9    itojun }
   3552       1.9    itojun 
   3553       1.9    itojun static void sppp_ipv6cp_tld(struct sppp *sp)
   3554       1.9    itojun {
   3555       1.9    itojun }
   3556       1.9    itojun 
   3557       1.9    itojun static void sppp_ipv6cp_tls(struct sppp *sp)
   3558       1.9    itojun {
   3559       1.9    itojun }
   3560       1.9    itojun 
   3561       1.9    itojun static void sppp_ipv6cp_tlf(struct sppp *sp)
   3562       1.9    itojun {
   3563       1.9    itojun }
   3564       1.9    itojun 
   3565       1.9    itojun static void sppp_ipv6cp_scr(struct sppp *sp)
   3566       1.9    itojun {
   3567       1.9    itojun }
   3568       1.3  explorer #endif /*INET6*/
   3569       1.3  explorer 
   3570       1.3  explorer 
   3571       1.3  explorer /*
   3573       1.3  explorer  *--------------------------------------------------------------------------*
   3574       1.3  explorer  *                                                                          *
   3575       1.3  explorer  *                        The CHAP implementation.                          *
   3576       1.3  explorer  *                                                                          *
   3577       1.3  explorer  *--------------------------------------------------------------------------*
   3578       1.3  explorer  */
   3579       1.3  explorer 
   3580       1.3  explorer /*
   3581       1.3  explorer  * The authentication protocols don't employ a full-fledged state machine as
   3582       1.3  explorer  * the control protocols do, since they do have Open and Close events, but
   3583       1.3  explorer  * not Up and Down, nor are they explicitly terminated.  Also, use of the
   3584       1.3  explorer  * authentication protocols may be different in both directions (this makes
   3585       1.3  explorer  * sense, think of a machine that never accepts incoming calls but only
   3586       1.3  explorer  * calls out, it doesn't require the called party to authenticate itself).
   3587       1.3  explorer  *
   3588       1.3  explorer  * Our state machine for the local authentication protocol (we are requesting
   3589       1.3  explorer  * the peer to authenticate) looks like:
   3590       1.3  explorer  *
   3591       1.3  explorer  *						    RCA-
   3592       1.3  explorer  *	      +--------------------------------------------+
   3593       1.3  explorer  *	      V					    scn,tld|
   3594       1.3  explorer  *	  +--------+			       Close   +---------+ RCA+
   3595       1.3  explorer  *	  |	   |<----------------------------------|	 |------+
   3596       1.3  explorer  *   +--->| Closed |				TO*    | Opened	 | sca	|
   3597       1.3  explorer  *   |	  |	   |-----+		       +-------|	 |<-----+
   3598       1.3  explorer  *   |	  +--------+ irc |		       |       +---------+
   3599       1.3  explorer  *   |	    ^		 |		       |	   ^
   3600       1.3  explorer  *   |	    |		 |		       |	   |
   3601       1.3  explorer  *   |	    |		 |		       |	   |
   3602       1.3  explorer  *   |	 TO-|		 |		       |	   |
   3603       1.3  explorer  *   |	    |tld  TO+	 V		       |	   |
   3604       1.3  explorer  *   |	    |	+------->+		       |	   |
   3605       1.3  explorer  *   |	    |	|	 |		       |	   |
   3606       1.3  explorer  *   |	  +--------+	 V		       |	   |
   3607       1.3  explorer  *   |	  |	   |<----+<--------------------+	   |
   3608       1.3  explorer  *   |	  | Req-   | scr				   |
   3609       1.3  explorer  *   |	  | Sent   |					   |
   3610       1.3  explorer  *   |	  |	   |					   |
   3611       1.3  explorer  *   |	  +--------+					   |
   3612       1.3  explorer  *   | RCA- |	| RCA+					   |
   3613       1.3  explorer  *   +------+	+------------------------------------------+
   3614       1.3  explorer  *   scn,tld	  sca,irc,ict,tlu
   3615       1.3  explorer  *
   3616       1.3  explorer  *
   3617       1.3  explorer  *   with:
   3618       1.3  explorer  *
   3619       1.3  explorer  *	Open:	LCP reached authentication phase
   3620       1.3  explorer  *	Close:	LCP reached terminate phase
   3621       1.3  explorer  *
   3622       1.3  explorer  *	RCA+:	received reply (pap-req, chap-response), acceptable
   3623       1.3  explorer  *	RCN:	received reply (pap-req, chap-response), not acceptable
   3624       1.3  explorer  *	TO+:	timeout with restart counter >= 0
   3625       1.3  explorer  *	TO-:	timeout with restart counter < 0
   3626       1.3  explorer  *	TO*:	reschedule timeout for CHAP
   3627       1.3  explorer  *
   3628       1.3  explorer  *	scr:	send request packet (none for PAP, chap-challenge)
   3629       1.3  explorer  *	sca:	send ack packet (pap-ack, chap-success)
   3630       1.3  explorer  *	scn:	send nak packet (pap-nak, chap-failure)
   3631       1.3  explorer  *	ict:	initialize re-challenge timer (CHAP only)
   3632       1.3  explorer  *
   3633       1.3  explorer  *	tlu:	this-layer-up, LCP reaches network phase
   3634       1.3  explorer  *	tld:	this-layer-down, LCP enters terminate phase
   3635       1.3  explorer  *
   3636       1.3  explorer  * Note that in CHAP mode, after sending a new challenge, while the state
   3637       1.3  explorer  * automaton falls back into Req-Sent state, it doesn't signal a tld
   3638       1.3  explorer  * event to LCP, so LCP remains in network phase.  Only after not getting
   3639       1.3  explorer  * any response (or after getting an unacceptable response), CHAP closes,
   3640       1.3  explorer  * causing LCP to enter terminate phase.
   3641       1.3  explorer  *
   3642       1.9    itojun  * With PAP, there is no initial request that can be sent.  The peer is
   3643       1.3  explorer  * expected to send one based on the successful negotiation of PAP as
   3644       1.3  explorer  * the authentication protocol during the LCP option negotiation.
   3645       1.3  explorer  *
   3646       1.3  explorer  * Incoming authentication protocol requests (remote requests
   3647       1.3  explorer  * authentication, we are peer) don't employ a state machine at all,
   3648       1.3  explorer  * they are simply answered.  Some peers [Ascend P50 firmware rev
   3649       1.3  explorer  * 4.50] react allergically when sending IPCP/IPv6CP requests while they are
   3650       1.3  explorer  * still in authentication phase (thereby violating the standard that
   3651       1.3  explorer  * demands that these NCP packets are to be discarded), so we keep
   3652       1.3  explorer  * track of the peer demanding us to authenticate, and only proceed to
   3653       1.3  explorer  * phase network once we've seen a positive acknowledge for the
   3654       1.3  explorer  * authentication.
   3655       1.3  explorer  */
   3656       1.3  explorer 
   3657       1.3  explorer /*
   3658       1.3  explorer  * Handle incoming CHAP packets.
   3659       1.3  explorer  */
   3660       1.3  explorer void
   3661       1.3  explorer sppp_chap_input(struct sppp *sp, struct mbuf *m)
   3662       1.3  explorer {
   3663       1.3  explorer 	STDDCL;
   3664       1.3  explorer 	struct lcp_header *h;
   3665       1.3  explorer 	int len, x;
   3666       1.3  explorer 	u_char *value, *name, digest[AUTHKEYLEN], dsize;
   3667       1.3  explorer 	int value_len, name_len;
   3668       1.3  explorer 	MD5_CTX ctx;
   3669       1.3  explorer 
   3670       1.3  explorer 	len = m->m_pkthdr.len;
   3671       1.3  explorer 	if (len < 4) {
   3672       1.3  explorer 		if (debug)
   3673       1.3  explorer 			log(LOG_DEBUG,
   3674       1.3  explorer 			    SPP_FMT "chap invalid packet length: %d bytes\n",
   3675       1.3  explorer 			    SPP_ARGS(ifp), len);
   3676       1.3  explorer 		return;
   3677       1.3  explorer 	}
   3678       1.3  explorer 	h = mtod (m, struct lcp_header*);
   3679       1.3  explorer 	if (len > ntohs (h->len))
   3680       1.3  explorer 		len = ntohs (h->len);
   3681       1.3  explorer 
   3682       1.3  explorer 	switch (h->type) {
   3683       1.3  explorer 	/* challenge, failure and success are his authproto */
   3684       1.3  explorer 	case CHAP_CHALLENGE:
   3685       1.3  explorer 		value = 1 + (u_char*)(h+1);
   3686       1.3  explorer 		value_len = value[-1];
   3687       1.3  explorer 		name = value + value_len;
   3688       1.3  explorer 		name_len = len - value_len - 5;
   3689       1.3  explorer 		if (name_len < 0) {
   3690       1.3  explorer 			if (debug) {
   3691       1.3  explorer 				log(LOG_DEBUG,
   3692       1.3  explorer 				    SPP_FMT "chap corrupted challenge "
   3693       1.3  explorer 				    "<%s id=0x%x len=%d",
   3694       1.3  explorer 				    SPP_ARGS(ifp),
   3695       1.3  explorer 				    sppp_auth_type_name(PPP_CHAP, h->type),
   3696       1.3  explorer 				    h->ident, ntohs(h->len));
   3697       1.3  explorer 				if (len > 4)
   3698       1.3  explorer 					sppp_print_bytes((u_char*) (h+1), len-4);
   3699       1.3  explorer 				addlog(">\n");
   3700       1.3  explorer 			}
   3701       1.3  explorer 			break;
   3702       1.3  explorer 		}
   3703       1.3  explorer 
   3704       1.3  explorer 		if (debug) {
   3705       1.3  explorer 			log(LOG_DEBUG,
   3706       1.3  explorer 			    SPP_FMT "chap input <%s id=0x%x len=%d name=",
   3707       1.3  explorer 			    SPP_ARGS(ifp),
   3708       1.3  explorer 			    sppp_auth_type_name(PPP_CHAP, h->type), h->ident,
   3709       1.3  explorer 			    ntohs(h->len));
   3710       1.3  explorer 			sppp_print_string((char*) name, name_len);
   3711       1.3  explorer 			addlog(" value-size=%d value=", value_len);
   3712       1.3  explorer 			sppp_print_bytes(value, value_len);
   3713       1.3  explorer 			addlog(">\n");
   3714       1.3  explorer 		}
   3715       1.3  explorer 
   3716       1.3  explorer 		/* Compute reply value. */
   3717       1.3  explorer 		MD5Init(&ctx);
   3718       1.3  explorer 		MD5Update(&ctx, &h->ident, 1);
   3719       1.3  explorer 		MD5Update(&ctx, sp->myauth.secret,
   3720       1.3  explorer 			  sppp_strnlen(sp->myauth.secret, AUTHKEYLEN));
   3721       1.3  explorer 		MD5Update(&ctx, value, value_len);
   3722       1.3  explorer 		MD5Final(digest, &ctx);
   3723       1.3  explorer 		dsize = sizeof digest;
   3724       1.3  explorer 
   3725       1.3  explorer 		sppp_auth_send(&chap, sp, CHAP_RESPONSE, h->ident,
   3726       1.3  explorer 			       sizeof dsize, (const char *)&dsize,
   3727       1.3  explorer 			       sizeof digest, digest,
   3728       1.3  explorer 			       (size_t)sppp_strnlen(sp->myauth.name, AUTHNAMELEN),
   3729       1.3  explorer 			       sp->myauth.name,
   3730       1.3  explorer 			       0);
   3731       1.3  explorer 		break;
   3732       1.3  explorer 
   3733       1.3  explorer 	case CHAP_SUCCESS:
   3734       1.3  explorer 		if (debug) {
   3735       1.3  explorer 			log(LOG_DEBUG, SPP_FMT "chap success",
   3736      1.23   thorpej 			    SPP_ARGS(ifp));
   3737       1.3  explorer 			if (len > 4) {
   3738       1.3  explorer 				addlog(": ");
   3739       1.3  explorer 				sppp_print_string((char*)(h + 1), len - 4);
   3740       1.3  explorer 			}
   3741       1.3  explorer 			addlog("\n");
   3742       1.3  explorer 		}
   3743       1.3  explorer 		x = splnet();
   3744       1.3  explorer 		sp->pp_flags &= ~PP_NEEDAUTH;
   3745       1.3  explorer 		if (sp->myauth.proto == PPP_CHAP &&
   3746       1.3  explorer 		    (sp->lcp.opts & (1 << LCP_OPT_AUTH_PROTO)) &&
   3747       1.3  explorer 		    (sp->lcp.protos & (1 << IDX_CHAP)) == 0) {
   3748       1.3  explorer 			/*
   3749       1.3  explorer 			 * We are authenticator for CHAP but didn't
   3750       1.3  explorer 			 * complete yet.  Leave it to tlu to proceed
   3751       1.3  explorer 			 * to network phase.
   3752       1.3  explorer 			 */
   3753       1.3  explorer 			splx(x);
   3754       1.3  explorer 			break;
   3755       1.3  explorer 		}
   3756       1.3  explorer 		splx(x);
   3757       1.3  explorer 		sppp_phase_network(sp);
   3758       1.3  explorer 		break;
   3759       1.3  explorer 
   3760       1.3  explorer 	case CHAP_FAILURE:
   3761       1.3  explorer 		if (debug) {
   3762       1.3  explorer 			log(LOG_INFO, SPP_FMT "chap failure",
   3763       1.3  explorer 			    SPP_ARGS(ifp));
   3764       1.3  explorer 			if (len > 4) {
   3765       1.3  explorer 				addlog(": ");
   3766       1.3  explorer 				sppp_print_string((char*)(h + 1), len - 4);
   3767       1.3  explorer 			}
   3768       1.3  explorer 			addlog("\n");
   3769       1.3  explorer 		} else
   3770       1.3  explorer 			log(LOG_INFO, SPP_FMT "chap failure\n",
   3771       1.3  explorer 			    SPP_ARGS(ifp));
   3772       1.3  explorer 		/* await LCP shutdown by authenticator */
   3773       1.3  explorer 		break;
   3774       1.3  explorer 
   3775       1.3  explorer 	/* response is my authproto */
   3776       1.3  explorer 	case CHAP_RESPONSE:
   3777       1.3  explorer 		value = 1 + (u_char*)(h+1);
   3778       1.3  explorer 		value_len = value[-1];
   3779       1.3  explorer 		name = value + value_len;
   3780       1.3  explorer 		name_len = len - value_len - 5;
   3781       1.3  explorer 		if (name_len < 0) {
   3782       1.3  explorer 			if (debug) {
   3783       1.3  explorer 				log(LOG_DEBUG,
   3784       1.3  explorer 				    SPP_FMT "chap corrupted response "
   3785       1.3  explorer 				    "<%s id=0x%x len=%d",
   3786       1.3  explorer 				    SPP_ARGS(ifp),
   3787       1.3  explorer 				    sppp_auth_type_name(PPP_CHAP, h->type),
   3788       1.3  explorer 				    h->ident, ntohs(h->len));
   3789       1.3  explorer 				if (len > 4)
   3790       1.3  explorer 					sppp_print_bytes((u_char*)(h+1), len-4);
   3791       1.3  explorer 				addlog(">\n");
   3792       1.3  explorer 			}
   3793       1.3  explorer 			break;
   3794       1.3  explorer 		}
   3795       1.3  explorer 		if (h->ident != sp->confid[IDX_CHAP]) {
   3796       1.3  explorer 			if (debug)
   3797       1.3  explorer 				log(LOG_DEBUG,
   3798       1.3  explorer 				    SPP_FMT "chap dropping response for old ID "
   3799       1.3  explorer 				    "(got %d, expected %d)\n",
   3800       1.3  explorer 				    SPP_ARGS(ifp),
   3801       1.3  explorer 				    h->ident, sp->confid[IDX_CHAP]);
   3802       1.3  explorer 			break;
   3803       1.3  explorer 		}
   3804       1.3  explorer 		if (name_len != sppp_strnlen(sp->hisauth.name, AUTHNAMELEN)
   3805       1.3  explorer 		    || bcmp(name, sp->hisauth.name, name_len) != 0) {
   3806       1.3  explorer 			log(LOG_INFO, SPP_FMT "chap response, his name ",
   3807       1.3  explorer 			    SPP_ARGS(ifp));
   3808       1.3  explorer 			sppp_print_string(name, name_len);
   3809       1.3  explorer 			addlog(" != expected ");
   3810       1.3  explorer 			sppp_print_string(sp->hisauth.name,
   3811       1.3  explorer 					  sppp_strnlen(sp->hisauth.name, AUTHNAMELEN));
   3812       1.3  explorer 			addlog("\n");
   3813       1.3  explorer 		}
   3814       1.3  explorer 		if (debug) {
   3815       1.3  explorer 			log(LOG_DEBUG, SPP_FMT "chap input(%s) "
   3816       1.3  explorer 			    "<%s id=0x%x len=%d name=",
   3817       1.3  explorer 			    SPP_ARGS(ifp),
   3818       1.3  explorer 			    sppp_state_name(sp->state[IDX_CHAP]),
   3819       1.3  explorer 			    sppp_auth_type_name(PPP_CHAP, h->type),
   3820       1.3  explorer 			    h->ident, ntohs (h->len));
   3821       1.3  explorer 			sppp_print_string((char*)name, name_len);
   3822       1.3  explorer 			addlog(" value-size=%d value=", value_len);
   3823       1.3  explorer 			sppp_print_bytes(value, value_len);
   3824       1.3  explorer 			addlog(">\n");
   3825       1.3  explorer 		}
   3826       1.3  explorer 		if (value_len != AUTHKEYLEN) {
   3827       1.3  explorer 			if (debug)
   3828       1.3  explorer 				log(LOG_DEBUG,
   3829       1.3  explorer 				    SPP_FMT "chap bad hash value length: "
   3830       1.3  explorer 				    "%d bytes, should be %d\n",
   3831       1.3  explorer 				    SPP_ARGS(ifp), value_len,
   3832       1.3  explorer 				    AUTHKEYLEN);
   3833       1.3  explorer 			break;
   3834       1.3  explorer 		}
   3835       1.3  explorer 
   3836       1.3  explorer 		MD5Init(&ctx);
   3837       1.3  explorer 		MD5Update(&ctx, &h->ident, 1);
   3838       1.3  explorer 		MD5Update(&ctx, sp->hisauth.secret,
   3839       1.3  explorer 			  sppp_strnlen(sp->hisauth.secret, AUTHKEYLEN));
   3840       1.3  explorer 		MD5Update(&ctx, sp->myauth.challenge, AUTHKEYLEN);
   3841       1.3  explorer 		MD5Final(digest, &ctx);
   3842       1.3  explorer 
   3843       1.3  explorer #define FAILMSG "Failed..."
   3844       1.3  explorer #define SUCCMSG "Welcome!"
   3845       1.3  explorer 
   3846       1.3  explorer 		if (value_len != sizeof digest ||
   3847       1.3  explorer 		    bcmp(digest, value, value_len) != 0) {
   3848       1.3  explorer 			/* action scn, tld */
   3849       1.3  explorer 			sppp_auth_send(&chap, sp, CHAP_FAILURE, h->ident,
   3850       1.3  explorer 				       sizeof(FAILMSG) - 1, (u_char *)FAILMSG,
   3851       1.3  explorer 				       0);
   3852       1.3  explorer 			chap.tld(sp);
   3853       1.3  explorer 			break;
   3854       1.3  explorer 		}
   3855       1.3  explorer 		/* action sca, perhaps tlu */
   3856       1.3  explorer 		if (sp->state[IDX_CHAP] == STATE_REQ_SENT ||
   3857       1.3  explorer 		    sp->state[IDX_CHAP] == STATE_OPENED)
   3858       1.3  explorer 			sppp_auth_send(&chap, sp, CHAP_SUCCESS, h->ident,
   3859       1.3  explorer 				       sizeof(SUCCMSG) - 1, (u_char *)SUCCMSG,
   3860       1.3  explorer 				       0);
   3861       1.3  explorer 		if (sp->state[IDX_CHAP] == STATE_REQ_SENT) {
   3862       1.3  explorer 			sppp_cp_change_state(&chap, sp, STATE_OPENED);
   3863       1.3  explorer 			chap.tlu(sp);
   3864       1.3  explorer 		}
   3865       1.3  explorer 		break;
   3866       1.3  explorer 
   3867       1.3  explorer 	default:
   3868       1.3  explorer 		/* Unknown CHAP packet type -- ignore. */
   3869       1.3  explorer 		if (debug) {
   3870       1.3  explorer 			log(LOG_DEBUG, SPP_FMT "chap unknown input(%s) "
   3871       1.3  explorer 			    "<0x%x id=0x%xh len=%d",
   3872       1.3  explorer 			    SPP_ARGS(ifp),
   3873       1.3  explorer 			    sppp_state_name(sp->state[IDX_CHAP]),
   3874       1.3  explorer 			    h->type, h->ident, ntohs(h->len));
   3875       1.3  explorer 			if (len > 4)
   3876       1.3  explorer 				sppp_print_bytes((u_char*)(h+1), len-4);
   3877       1.3  explorer 			addlog(">\n");
   3878       1.3  explorer 		}
   3879       1.3  explorer 		break;
   3880       1.3  explorer 
   3881       1.3  explorer 	}
   3882       1.3  explorer }
   3883       1.9    itojun 
   3884       1.9    itojun static void
   3885       1.7   thorpej sppp_chap_init(struct sppp *sp)
   3886       1.3  explorer {
   3887       1.3  explorer 	/* Chap doesn't have STATE_INITIAL at all. */
   3888       1.3  explorer 	sp->state[IDX_CHAP] = STATE_CLOSED;
   3889       1.3  explorer 	sp->fail_counter[IDX_CHAP] = 0;
   3890       1.3  explorer 	sp->pp_seq[IDX_CHAP] = 0;
   3891       1.3  explorer 	sp->pp_rseq[IDX_CHAP] = 0;
   3892       1.3  explorer 	callout_init(&sp->ch[IDX_CHAP]);
   3893       1.3  explorer }
   3894       1.3  explorer 
   3895       1.3  explorer static void
   3896       1.3  explorer sppp_chap_open(struct sppp *sp)
   3897       1.3  explorer {
   3898       1.3  explorer 	if (sp->myauth.proto == PPP_CHAP &&
   3899       1.3  explorer 	    (sp->lcp.opts & (1 << LCP_OPT_AUTH_PROTO)) != 0) {
   3900       1.3  explorer 		/* we are authenticator for CHAP, start it */
   3901       1.3  explorer 		chap.scr(sp);
   3902       1.3  explorer 		sp->rst_counter[IDX_CHAP] = sp->lcp.max_configure;
   3903       1.3  explorer 		sppp_cp_change_state(&chap, sp, STATE_REQ_SENT);
   3904       1.3  explorer 	}
   3905       1.3  explorer 	/* nothing to be done if we are peer, await a challenge */
   3906       1.3  explorer }
   3907       1.3  explorer 
   3908       1.3  explorer static void
   3909       1.3  explorer sppp_chap_close(struct sppp *sp)
   3910       1.3  explorer {
   3911       1.3  explorer 	if (sp->state[IDX_CHAP] != STATE_CLOSED)
   3912       1.3  explorer 		sppp_cp_change_state(&chap, sp, STATE_CLOSED);
   3913       1.3  explorer }
   3914       1.3  explorer 
   3915      1.23   thorpej static void
   3916       1.3  explorer sppp_chap_TO(void *cookie)
   3917       1.3  explorer {
   3918       1.3  explorer 	struct sppp *sp = (struct sppp *)cookie;
   3919       1.3  explorer 	STDDCL;
   3920       1.3  explorer 	int s;
   3921       1.3  explorer 
   3922       1.3  explorer 	s = splnet();
   3923       1.3  explorer 	if (debug)
   3924       1.3  explorer 		log(LOG_DEBUG, SPP_FMT "chap TO(%s) rst_counter = %d\n",
   3925       1.3  explorer 		    SPP_ARGS(ifp),
   3926       1.3  explorer 		    sppp_state_name(sp->state[IDX_CHAP]),
   3927       1.3  explorer 		    sp->rst_counter[IDX_CHAP]);
   3928       1.3  explorer 
   3929       1.3  explorer 	if (--sp->rst_counter[IDX_CHAP] < 0)
   3930       1.3  explorer 		/* TO- event */
   3931       1.3  explorer 		switch (sp->state[IDX_CHAP]) {
   3932       1.3  explorer 		case STATE_REQ_SENT:
   3933       1.3  explorer 			chap.tld(sp);
   3934       1.3  explorer 			sppp_cp_change_state(&chap, sp, STATE_CLOSED);
   3935       1.3  explorer 			break;
   3936       1.3  explorer 		}
   3937       1.3  explorer 	else
   3938       1.3  explorer 		/* TO+ (or TO*) event */
   3939       1.3  explorer 		switch (sp->state[IDX_CHAP]) {
   3940       1.3  explorer 		case STATE_OPENED:
   3941       1.3  explorer 			/* TO* event */
   3942       1.3  explorer 			sp->rst_counter[IDX_CHAP] = sp->lcp.max_configure;
   3943       1.3  explorer 			/* fall through */
   3944       1.3  explorer 		case STATE_REQ_SENT:
   3945       1.3  explorer 			chap.scr(sp);
   3946       1.3  explorer 			/* sppp_cp_change_state() will restart the timer */
   3947       1.3  explorer 			sppp_cp_change_state(&chap, sp, STATE_REQ_SENT);
   3948       1.3  explorer 			break;
   3949       1.3  explorer 		}
   3950       1.3  explorer 
   3951       1.3  explorer 	splx(s);
   3952       1.3  explorer }
   3953       1.3  explorer 
   3954       1.3  explorer static void
   3955       1.3  explorer sppp_chap_tlu(struct sppp *sp)
   3956       1.3  explorer {
   3957       1.3  explorer 	STDDCL;
   3958       1.3  explorer 	int i, x;
   3959       1.3  explorer 
   3960       1.3  explorer 	i = 0;
   3961       1.3  explorer 	sp->rst_counter[IDX_CHAP] = sp->lcp.max_configure;
   3962       1.3  explorer 
   3963       1.3  explorer 	/*
   3964       1.3  explorer 	 * Some broken CHAP implementations (Conware CoNet, firmware
   3965       1.3  explorer 	 * 4.0.?) don't want to re-authenticate their CHAP once the
   3966       1.3  explorer 	 * initial challenge-response exchange has taken place.
   3967       1.3  explorer 	 * Provide for an option to avoid rechallenges.
   3968       1.3  explorer 	 */
   3969       1.7   thorpej 	if ((sp->hisauth.flags & AUTHFLAG_NORECHALLENGE) == 0) {
   3970       1.3  explorer 		/*
   3971       1.3  explorer 		 * Compute the re-challenge timeout.  This will yield
   3972       1.3  explorer 		 * a number between 300 and 810 seconds.
   3973       1.3  explorer 		 */
   3974       1.3  explorer 		i = 300 + ((unsigned)(random() & 0xff00) >> 7);
   3975       1.3  explorer 
   3976       1.3  explorer 		callout_reset(&sp->ch[IDX_CHAP], i * hz, chap.TO, sp);
   3977       1.3  explorer 	}
   3978       1.3  explorer 
   3979       1.3  explorer 	if (debug) {
   3980       1.3  explorer 		log(LOG_DEBUG,
   3981       1.3  explorer 		    SPP_FMT "chap %s, ",
   3982       1.3  explorer 		    SPP_ARGS(ifp),
   3983      1.23   thorpej 		    sp->pp_phase == PHASE_NETWORK? "reconfirmed": "tlu");
   3984       1.3  explorer 		if ((sp->hisauth.flags & AUTHFLAG_NORECHALLENGE) == 0)
   3985       1.3  explorer 			addlog("next re-challenge in %d seconds\n", i);
   3986       1.3  explorer 		else
   3987       1.3  explorer 			addlog("re-challenging supressed\n");
   3988       1.3  explorer 	}
   3989       1.3  explorer 
   3990       1.3  explorer 	x = splnet();
   3991       1.3  explorer 	/* indicate to LCP that we need to be closed down */
   3992       1.3  explorer 	sp->lcp.protos |= (1 << IDX_CHAP);
   3993       1.3  explorer 
   3994       1.3  explorer 	if (sp->pp_flags & PP_NEEDAUTH) {
   3995       1.3  explorer 		/*
   3996       1.3  explorer 		 * Remote is authenticator, but his auth proto didn't
   3997       1.3  explorer 		 * complete yet.  Defer the transition to network
   3998       1.3  explorer 		 * phase.
   3999       1.3  explorer 		 */
   4000       1.3  explorer 		splx(x);
   4001       1.3  explorer 		return;
   4002       1.3  explorer 	}
   4003       1.3  explorer 	splx(x);
   4004       1.3  explorer 
   4005       1.3  explorer 	/*
   4006       1.3  explorer 	 * If we are already in phase network, we are done here.  This
   4007       1.3  explorer 	 * is the case if this is a dummy tlu event after a re-challenge.
   4008       1.3  explorer 	 */
   4009       1.3  explorer 	if (sp->pp_phase != PHASE_NETWORK)
   4010       1.3  explorer 		sppp_phase_network(sp);
   4011       1.3  explorer }
   4012       1.3  explorer 
   4013       1.7   thorpej static void
   4014       1.3  explorer sppp_chap_tld(struct sppp *sp)
   4015       1.3  explorer {
   4016       1.3  explorer 	STDDCL;
   4017       1.3  explorer 
   4018       1.3  explorer 	if (debug)
   4019       1.3  explorer 		log(LOG_DEBUG, SPP_FMT "chap tld\n", SPP_ARGS(ifp));
   4020       1.3  explorer 	callout_stop(&sp->ch[IDX_CHAP]);
   4021       1.3  explorer 	sp->lcp.protos &= ~(1 << IDX_CHAP);
   4022       1.3  explorer 
   4023       1.3  explorer 	lcp.Close(sp);
   4024       1.3  explorer }
   4025       1.3  explorer 
   4026       1.3  explorer static void
   4027       1.3  explorer sppp_chap_scr(struct sppp *sp)
   4028       1.3  explorer {
   4029       1.3  explorer 	struct timeval tv;
   4030       1.3  explorer 	u_long *ch, seed;
   4031       1.3  explorer 	u_char clen;
   4032       1.3  explorer 
   4033       1.3  explorer 	/* Compute random challenge. */
   4034       1.3  explorer 	ch = (u_long *)sp->myauth.challenge;
   4035       1.3  explorer 	microtime(&tv);
   4036       1.9    itojun 	seed = tv.tv_sec ^ tv.tv_usec;
   4037       1.3  explorer 	ch[0] = seed ^ random();
   4038       1.3  explorer 	ch[1] = seed ^ random();
   4039       1.3  explorer 	ch[2] = seed ^ random();
   4040       1.3  explorer 	ch[3] = seed ^ random();
   4041       1.3  explorer 	clen = AUTHKEYLEN;
   4042       1.3  explorer 
   4043       1.3  explorer 	sp->confid[IDX_CHAP] = ++sp->pp_seq[IDX_CHAP];
   4044       1.3  explorer 
   4045       1.3  explorer 	sppp_auth_send(&chap, sp, CHAP_CHALLENGE, sp->confid[IDX_CHAP],
   4046       1.3  explorer 		       sizeof clen, (const char *)&clen,
   4047       1.3  explorer 		       (size_t)AUTHKEYLEN, sp->myauth.challenge,
   4048       1.3  explorer 		       (size_t)sppp_strnlen(sp->myauth.name, AUTHNAMELEN),
   4049       1.3  explorer 		       sp->myauth.name,
   4050       1.3  explorer 		       0);
   4051       1.3  explorer }
   4052       1.3  explorer /*
   4054       1.3  explorer  *--------------------------------------------------------------------------*
   4055       1.3  explorer  *                                                                          *
   4056       1.3  explorer  *                        The PAP implementation.                           *
   4057       1.3  explorer  *                                                                          *
   4058       1.3  explorer  *--------------------------------------------------------------------------*
   4059       1.3  explorer  */
   4060       1.3  explorer /*
   4061       1.3  explorer  * For PAP, we need to keep a little state also if we are the peer, not the
   4062       1.3  explorer  * authenticator.  This is since we don't get a request to authenticate, but
   4063       1.3  explorer  * have to repeatedly authenticate ourself until we got a response (or the
   4064       1.3  explorer  * retry counter is expired).
   4065       1.3  explorer  */
   4066       1.3  explorer 
   4067       1.3  explorer /*
   4068       1.3  explorer  * Handle incoming PAP packets.  */
   4069       1.3  explorer static void
   4070       1.3  explorer sppp_pap_input(struct sppp *sp, struct mbuf *m)
   4071       1.3  explorer {
   4072       1.3  explorer 	STDDCL;
   4073       1.3  explorer 	struct lcp_header *h;
   4074       1.3  explorer 	int len, x;
   4075       1.3  explorer 	u_char *name, *passwd, mlen;
   4076       1.3  explorer 	int name_len, passwd_len;
   4077       1.3  explorer 
   4078       1.3  explorer 	len = m->m_pkthdr.len;
   4079       1.3  explorer 	if (len < 5) {
   4080       1.3  explorer 		if (debug)
   4081       1.3  explorer 			log(LOG_DEBUG,
   4082       1.3  explorer 			    SPP_FMT "pap invalid packet length: %d bytes\n",
   4083       1.3  explorer 			    SPP_ARGS(ifp), len);
   4084       1.3  explorer 		return;
   4085       1.3  explorer 	}
   4086       1.3  explorer 	h = mtod (m, struct lcp_header*);
   4087       1.3  explorer 	if (len > ntohs (h->len))
   4088       1.3  explorer 		len = ntohs (h->len);
   4089       1.3  explorer 	switch (h->type) {
   4090       1.3  explorer 	/* PAP request is my authproto */
   4091       1.3  explorer 	case PAP_REQ:
   4092       1.3  explorer 		name = 1 + (u_char*)(h+1);
   4093       1.3  explorer 		name_len = name[-1];
   4094       1.3  explorer 		passwd = name + name_len + 1;
   4095       1.3  explorer 		if (name_len > len - 6 ||
   4096       1.3  explorer 		    (passwd_len = passwd[-1]) > len - 6 - name_len) {
   4097       1.3  explorer 			if (debug) {
   4098       1.3  explorer 				log(LOG_DEBUG, SPP_FMT "pap corrupted input "
   4099       1.3  explorer 				    "<%s id=0x%x len=%d",
   4100       1.3  explorer 				    SPP_ARGS(ifp),
   4101       1.3  explorer 				    sppp_auth_type_name(PPP_PAP, h->type),
   4102       1.3  explorer 				    h->ident, ntohs(h->len));
   4103       1.3  explorer 				if (len > 4)
   4104       1.3  explorer 					sppp_print_bytes((u_char*)(h+1), len-4);
   4105       1.3  explorer 				addlog(">\n");
   4106       1.3  explorer 			}
   4107       1.3  explorer 			break;
   4108       1.3  explorer 		}
   4109       1.3  explorer 		if (debug) {
   4110       1.3  explorer 			log(LOG_DEBUG, SPP_FMT "pap input(%s) "
   4111       1.3  explorer 			    "<%s id=0x%x len=%d name=",
   4112       1.3  explorer 			    SPP_ARGS(ifp),
   4113       1.3  explorer 			    sppp_state_name(sp->state[IDX_PAP]),
   4114       1.3  explorer 			    sppp_auth_type_name(PPP_PAP, h->type),
   4115       1.3  explorer 			    h->ident, ntohs(h->len));
   4116       1.3  explorer 			sppp_print_string((char*)name, name_len);
   4117       1.3  explorer 			addlog(" passwd=");
   4118       1.3  explorer 			sppp_print_string((char*)passwd, passwd_len);
   4119       1.3  explorer 			addlog(">\n");
   4120       1.3  explorer 		}
   4121       1.3  explorer 		if (name_len > AUTHNAMELEN ||
   4122       1.3  explorer 		    passwd_len > AUTHKEYLEN ||
   4123       1.3  explorer 		    bcmp(name, sp->hisauth.name, name_len) != 0 ||
   4124       1.3  explorer 		    bcmp(passwd, sp->hisauth.secret, passwd_len) != 0) {
   4125       1.3  explorer 			/* action scn, tld */
   4126       1.3  explorer 			mlen = sizeof(FAILMSG) - 1;
   4127       1.3  explorer 			sppp_auth_send(&pap, sp, PAP_NAK, h->ident,
   4128       1.3  explorer 				       sizeof mlen, (const char *)&mlen,
   4129       1.3  explorer 				       sizeof(FAILMSG) - 1, (u_char *)FAILMSG,
   4130       1.3  explorer 				       0);
   4131       1.3  explorer 			pap.tld(sp);
   4132       1.3  explorer 			break;
   4133       1.3  explorer 		}
   4134       1.3  explorer 		/* action sca, perhaps tlu */
   4135       1.3  explorer 		if (sp->state[IDX_PAP] == STATE_REQ_SENT ||
   4136       1.3  explorer 		    sp->state[IDX_PAP] == STATE_OPENED) {
   4137       1.3  explorer 			mlen = sizeof(SUCCMSG) - 1;
   4138       1.3  explorer 			sppp_auth_send(&pap, sp, PAP_ACK, h->ident,
   4139       1.3  explorer 				       sizeof mlen, (const char *)&mlen,
   4140       1.3  explorer 				       sizeof(SUCCMSG) - 1, (u_char *)SUCCMSG,
   4141       1.3  explorer 				       0);
   4142       1.3  explorer 		}
   4143       1.7   thorpej 		if (sp->state[IDX_PAP] == STATE_REQ_SENT) {
   4144       1.3  explorer 			sppp_cp_change_state(&pap, sp, STATE_OPENED);
   4145       1.3  explorer 			pap.tlu(sp);
   4146       1.3  explorer 		}
   4147       1.3  explorer 		break;
   4148       1.3  explorer 
   4149       1.3  explorer 	/* ack and nak are his authproto */
   4150       1.3  explorer 	case PAP_ACK:
   4151       1.3  explorer 		callout_stop(&sp->pap_my_to_ch);
   4152       1.3  explorer 		if (debug) {
   4153       1.3  explorer 			log(LOG_DEBUG, SPP_FMT "pap success",
   4154      1.23   thorpej 			    SPP_ARGS(ifp));
   4155       1.3  explorer 			name_len = *((char *)h);
   4156       1.3  explorer 			if (len > 5 && name_len) {
   4157       1.3  explorer 				addlog(": ");
   4158       1.3  explorer 				sppp_print_string((char*)(h+1), name_len);
   4159       1.3  explorer 			}
   4160       1.3  explorer 			addlog("\n");
   4161       1.3  explorer 		}
   4162       1.3  explorer 		x = splnet();
   4163       1.3  explorer 		sp->pp_flags &= ~PP_NEEDAUTH;
   4164       1.3  explorer 		if (sp->myauth.proto == PPP_PAP &&
   4165       1.3  explorer 		    (sp->lcp.opts & (1 << LCP_OPT_AUTH_PROTO)) &&
   4166       1.3  explorer 		    (sp->lcp.protos & (1 << IDX_PAP)) == 0) {
   4167       1.3  explorer 			/*
   4168       1.3  explorer 			 * We are authenticator for PAP but didn't
   4169       1.3  explorer 			 * complete yet.  Leave it to tlu to proceed
   4170       1.3  explorer 			 * to network phase.
   4171       1.3  explorer 			 */
   4172       1.7   thorpej 			splx(x);
   4173       1.3  explorer 			break;
   4174       1.3  explorer 		}
   4175       1.3  explorer 		splx(x);
   4176       1.3  explorer 		sppp_phase_network(sp);
   4177       1.3  explorer 		break;
   4178       1.3  explorer 
   4179       1.3  explorer 	case PAP_NAK:
   4180       1.3  explorer 		callout_stop(&sp->pap_my_to_ch);
   4181       1.3  explorer 		if (debug) {
   4182       1.3  explorer 			log(LOG_INFO, SPP_FMT "pap failure",
   4183       1.3  explorer 			    SPP_ARGS(ifp));
   4184       1.3  explorer 			name_len = *((char *)h);
   4185       1.3  explorer 			if (len > 5 && name_len) {
   4186       1.3  explorer 				addlog(": ");
   4187       1.3  explorer 				sppp_print_string((char*)(h+1), name_len);
   4188       1.3  explorer 			}
   4189       1.3  explorer 			addlog("\n");
   4190       1.3  explorer 		} else
   4191       1.3  explorer 			log(LOG_INFO, SPP_FMT "pap failure\n",
   4192       1.3  explorer 			    SPP_ARGS(ifp));
   4193       1.3  explorer 		/* await LCP shutdown by authenticator */
   4194       1.3  explorer 		break;
   4195       1.3  explorer 
   4196       1.3  explorer 	default:
   4197       1.3  explorer 		/* Unknown PAP packet type -- ignore. */
   4198       1.3  explorer 		if (debug) {
   4199       1.3  explorer 			log(LOG_DEBUG, SPP_FMT "pap corrupted input "
   4200       1.3  explorer 			    "<0x%x id=0x%x len=%d",
   4201       1.3  explorer 			    SPP_ARGS(ifp),
   4202       1.3  explorer 			    h->type, h->ident, ntohs(h->len));
   4203       1.3  explorer 			if (len > 4)
   4204       1.3  explorer 				sppp_print_bytes((u_char*)(h+1), len-4);
   4205       1.3  explorer 			addlog(">\n");
   4206       1.3  explorer 		}
   4207       1.3  explorer 		break;
   4208       1.3  explorer 
   4209       1.3  explorer 	}
   4210       1.9    itojun }
   4211       1.9    itojun 
   4212       1.7   thorpej static void
   4213       1.7   thorpej sppp_pap_init(struct sppp *sp)
   4214       1.3  explorer {
   4215       1.3  explorer 	/* PAP doesn't have STATE_INITIAL at all. */
   4216       1.3  explorer 	sp->state[IDX_PAP] = STATE_CLOSED;
   4217       1.3  explorer 	sp->fail_counter[IDX_PAP] = 0;
   4218       1.3  explorer 	sp->pp_seq[IDX_PAP] = 0;
   4219       1.3  explorer 	sp->pp_rseq[IDX_PAP] = 0;
   4220       1.3  explorer 	callout_init(&sp->ch[IDX_PAP]);
   4221       1.3  explorer 	callout_init(&sp->pap_my_to_ch);
   4222       1.3  explorer }
   4223       1.3  explorer 
   4224       1.3  explorer static void
   4225       1.3  explorer sppp_pap_open(struct sppp *sp)
   4226       1.3  explorer {
   4227       1.3  explorer 	if (sp->hisauth.proto == PPP_PAP &&
   4228       1.7   thorpej 	    (sp->lcp.opts & (1 << LCP_OPT_AUTH_PROTO)) != 0) {
   4229       1.7   thorpej 		/* we are authenticator for PAP, start our timer */
   4230       1.3  explorer 		sp->rst_counter[IDX_PAP] = sp->lcp.max_configure;
   4231       1.3  explorer 		sppp_cp_change_state(&pap, sp, STATE_REQ_SENT);
   4232       1.3  explorer 	}
   4233       1.3  explorer 	if (sp->myauth.proto == PPP_PAP) {
   4234       1.3  explorer 		/* we are peer, send a request, and start a timer */
   4235       1.3  explorer 		pap.scr(sp);
   4236       1.3  explorer 		callout_reset(&sp->pap_my_to_ch, sp->lcp.timeout,
   4237       1.3  explorer 		    sppp_pap_my_TO, sp);
   4238       1.3  explorer 	}
   4239       1.3  explorer }
   4240       1.3  explorer 
   4241       1.3  explorer static void
   4242       1.3  explorer sppp_pap_close(struct sppp *sp)
   4243       1.3  explorer {
   4244       1.3  explorer 	if (sp->state[IDX_PAP] != STATE_CLOSED)
   4245       1.3  explorer 		sppp_cp_change_state(&pap, sp, STATE_CLOSED);
   4246       1.3  explorer }
   4247       1.3  explorer 
   4248       1.3  explorer /*
   4249       1.3  explorer  * That's the timeout routine if we are authenticator.  Since the
   4250       1.3  explorer  * authenticator is basically passive in PAP, we can't do much here.
   4251      1.23   thorpej  */
   4252       1.3  explorer static void
   4253       1.3  explorer sppp_pap_TO(void *cookie)
   4254       1.3  explorer {
   4255       1.3  explorer 	struct sppp *sp = (struct sppp *)cookie;
   4256       1.3  explorer 	STDDCL;
   4257       1.3  explorer 	int s;
   4258       1.3  explorer 
   4259       1.3  explorer 	s = splnet();
   4260       1.3  explorer 	if (debug)
   4261       1.3  explorer 		log(LOG_DEBUG, SPP_FMT "pap TO(%s) rst_counter = %d\n",
   4262       1.3  explorer 		    SPP_ARGS(ifp),
   4263       1.3  explorer 		    sppp_state_name(sp->state[IDX_PAP]),
   4264       1.3  explorer 		    sp->rst_counter[IDX_PAP]);
   4265       1.3  explorer 
   4266       1.3  explorer 	if (--sp->rst_counter[IDX_PAP] < 0)
   4267       1.3  explorer 		/* TO- event */
   4268       1.3  explorer 		switch (sp->state[IDX_PAP]) {
   4269       1.3  explorer 		case STATE_REQ_SENT:
   4270       1.3  explorer 			pap.tld(sp);
   4271       1.3  explorer 			sppp_cp_change_state(&pap, sp, STATE_CLOSED);
   4272       1.3  explorer 			break;
   4273       1.3  explorer 		}
   4274       1.3  explorer 	else
   4275       1.3  explorer 		/* TO+ event, not very much we could do */
   4276       1.3  explorer 		switch (sp->state[IDX_PAP]) {
   4277       1.3  explorer 		case STATE_REQ_SENT:
   4278       1.3  explorer 			/* sppp_cp_change_state() will restart the timer */
   4279       1.3  explorer 			sppp_cp_change_state(&pap, sp, STATE_REQ_SENT);
   4280       1.3  explorer 			break;
   4281       1.3  explorer 		}
   4282       1.3  explorer 
   4283       1.3  explorer 	splx(s);
   4284       1.3  explorer }
   4285       1.3  explorer 
   4286       1.3  explorer /*
   4287       1.3  explorer  * That's the timeout handler if we are peer.  Since the peer is active,
   4288       1.3  explorer  * we need to retransmit our PAP request since it is apparently lost.
   4289       1.3  explorer  * XXX We should impose a max counter.
   4290       1.3  explorer  */
   4291       1.3  explorer static void
   4292       1.3  explorer sppp_pap_my_TO(void *cookie)
   4293       1.3  explorer {
   4294       1.3  explorer 	struct sppp *sp = (struct sppp *)cookie;
   4295       1.3  explorer 	STDDCL;
   4296       1.3  explorer 
   4297       1.3  explorer 	if (debug)
   4298       1.3  explorer 		log(LOG_DEBUG, SPP_FMT "pap peer TO\n",
   4299       1.3  explorer 		    SPP_ARGS(ifp));
   4300       1.3  explorer 
   4301       1.3  explorer 	pap.scr(sp);
   4302       1.3  explorer }
   4303       1.3  explorer 
   4304       1.3  explorer static void
   4305       1.3  explorer sppp_pap_tlu(struct sppp *sp)
   4306       1.3  explorer {
   4307       1.3  explorer 	STDDCL;
   4308      1.23   thorpej 	int x;
   4309       1.3  explorer 
   4310       1.3  explorer 	sp->rst_counter[IDX_PAP] = sp->lcp.max_configure;
   4311       1.3  explorer 
   4312       1.3  explorer 	if (debug)
   4313       1.3  explorer 		log(LOG_DEBUG, SPP_FMT "%s tlu\n",
   4314       1.3  explorer 		    SPP_ARGS(ifp), pap.name);
   4315       1.3  explorer 
   4316       1.3  explorer 	x = splnet();
   4317       1.3  explorer 	/* indicate to LCP that we need to be closed down */
   4318       1.3  explorer 	sp->lcp.protos |= (1 << IDX_PAP);
   4319       1.3  explorer 
   4320       1.3  explorer 	if (sp->pp_flags & PP_NEEDAUTH) {
   4321       1.3  explorer 		/*
   4322       1.3  explorer 		 * Remote is authenticator, but his auth proto didn't
   4323       1.3  explorer 		 * complete yet.  Defer the transition to network
   4324       1.3  explorer 		 * phase.
   4325       1.3  explorer 		 */
   4326       1.3  explorer 		splx(x);
   4327       1.3  explorer 		return;
   4328       1.3  explorer 	}
   4329       1.3  explorer 	splx(x);
   4330       1.3  explorer 	sppp_phase_network(sp);
   4331       1.3  explorer }
   4332       1.7   thorpej 
   4333       1.7   thorpej static void
   4334       1.3  explorer sppp_pap_tld(struct sppp *sp)
   4335       1.3  explorer {
   4336       1.3  explorer 	STDDCL;
   4337       1.3  explorer 
   4338       1.3  explorer 	if (debug)
   4339       1.3  explorer 		log(LOG_DEBUG, SPP_FMT "pap tld\n", SPP_ARGS(ifp));
   4340       1.3  explorer 	callout_stop(&sp->ch[IDX_PAP]);
   4341       1.3  explorer 	callout_stop(&sp->pap_my_to_ch);
   4342       1.3  explorer 	sp->lcp.protos &= ~(1 << IDX_PAP);
   4343       1.3  explorer 
   4344       1.9    itojun 	lcp.Close(sp);
   4345       1.3  explorer }
   4346       1.3  explorer 
   4347       1.3  explorer static void
   4348       1.3  explorer sppp_pap_scr(struct sppp *sp)
   4349       1.3  explorer {
   4350       1.3  explorer 	u_char idlen, pwdlen;
   4351       1.3  explorer 
   4352       1.3  explorer 	sp->confid[IDX_PAP] = ++sp->pp_seq[IDX_PAP];
   4353       1.3  explorer 	pwdlen = sppp_strnlen(sp->myauth.secret, AUTHKEYLEN);
   4354       1.3  explorer 	idlen = sppp_strnlen(sp->myauth.name, AUTHNAMELEN);
   4355       1.3  explorer 
   4356       1.3  explorer 	sppp_auth_send(&pap, sp, PAP_REQ, sp->confid[IDX_PAP],
   4357       1.3  explorer 		       sizeof idlen, (const char *)&idlen,
   4358       1.3  explorer 		       (size_t)idlen, sp->myauth.name,
   4359       1.3  explorer 		       sizeof pwdlen, (const char *)&pwdlen,
   4360       1.3  explorer 		       (size_t)pwdlen, sp->myauth.secret,
   4361       1.3  explorer 		       0);
   4362       1.3  explorer }
   4363       1.3  explorer /*
   4365       1.3  explorer  * Random miscellaneous functions.
   4366       1.3  explorer  */
   4367       1.3  explorer 
   4368       1.3  explorer /*
   4369       1.3  explorer  * Send a PAP or CHAP proto packet.
   4370       1.3  explorer  *
   4371       1.3  explorer  * Varadic function, each of the elements for the ellipsis is of type
   4372       1.3  explorer  * ``size_t mlen, const u_char *msg''.  Processing will stop iff
   4373       1.3  explorer  * mlen == 0.
   4374       1.3  explorer  * NOTE: never declare variadic functions with types subject to type
   4375       1.3  explorer  * promotion (i.e. u_char). This is asking for big trouble depending
   4376       1.3  explorer  * on the architecture you are on...
   4377       1.3  explorer  */
   4378       1.3  explorer 
   4379       1.3  explorer static void
   4380      1.22    martin sppp_auth_send(const struct cp *cp, struct sppp *sp,
   4381       1.3  explorer                unsigned int type, unsigned int id,
   4382       1.3  explorer 	       ...)
   4383       1.3  explorer {
   4384       1.3  explorer 	STDDCL;
   4385       1.3  explorer 	struct lcp_header *lh;
   4386       1.3  explorer 	struct mbuf *m;
   4387       1.3  explorer 	u_char *p;
   4388       1.3  explorer 	int len;
   4389       1.3  explorer 	size_t pkthdrlen;
   4390      1.22    martin 	unsigned int mlen;
   4391      1.22    martin 	const char *msg;
   4392      1.22    martin 	va_list ap;
   4393      1.22    martin 
   4394      1.22    martin 	MGETHDR (m, M_DONTWAIT, MT_DATA);
   4395      1.22    martin 	if (! m)
   4396      1.22    martin 		return;
   4397      1.22    martin 	m->m_pkthdr.rcvif = 0;
   4398      1.22    martin 
   4399      1.22    martin 	if (sp->pp_flags & PP_NOFRAMING) {
   4400      1.22    martin 		*mtod(m, u_int16_t*) = htons(cp->proto);
   4401      1.22    martin 		pkthdrlen = 2;
   4402      1.22    martin 		lh = (struct lcp_header*)(mtod(m, u_int8_t*)+2);
   4403      1.22    martin 	} else {
   4404       1.3  explorer 		struct ppp_header *h;
   4405       1.3  explorer 		h = mtod (m, struct ppp_header*);
   4406       1.3  explorer 		h->address = PPP_ALLSTATIONS;		/* broadcast address */
   4407       1.3  explorer 		h->control = PPP_UI;			/* Unnumbered Info */
   4408       1.3  explorer 		h->protocol = htons(cp->proto);
   4409       1.3  explorer 		pkthdrlen = PPP_HEADER_LEN;
   4410       1.3  explorer 
   4411       1.3  explorer 		lh = (struct lcp_header*)(h + 1);
   4412       1.3  explorer 	}
   4413       1.3  explorer 
   4414       1.3  explorer 	lh->type = type;
   4415      1.22    martin 	lh->ident = id;
   4416       1.3  explorer 	p = (u_char*) (lh+1);
   4417       1.3  explorer 
   4418       1.3  explorer 	va_start(ap, id);
   4419       1.3  explorer 	len = 0;
   4420       1.3  explorer 
   4421       1.3  explorer 	while ((mlen = (unsigned int)va_arg(ap, size_t)) != 0) {
   4422       1.3  explorer 		msg = va_arg(ap, const char *);
   4423       1.3  explorer 		len += mlen;
   4424       1.3  explorer 		if (len > MHLEN - pkthdrlen - LCP_HEADER_LEN) {
   4425       1.3  explorer 			va_end(ap);
   4426      1.22    martin 			m_freem(m);
   4427       1.3  explorer 			return;
   4428       1.3  explorer 		}
   4429       1.3  explorer 
   4430       1.3  explorer 		bcopy(msg, p, mlen);
   4431       1.3  explorer 		p += mlen;
   4432       1.3  explorer 	}
   4433       1.3  explorer 	va_end(ap);
   4434       1.3  explorer 
   4435       1.3  explorer 	m->m_pkthdr.len = m->m_len = pkthdrlen + LCP_HEADER_LEN + len;
   4436       1.3  explorer 	lh->len = htons (LCP_HEADER_LEN + len);
   4437       1.3  explorer 
   4438       1.3  explorer 	if (debug) {
   4439       1.3  explorer 		log(LOG_DEBUG, SPP_FMT "%s output <%s id=0x%x len=%d",
   4440       1.3  explorer 		    SPP_ARGS(ifp), cp->name,
   4441       1.3  explorer 		    sppp_auth_type_name(cp->proto, lh->type),
   4442       1.3  explorer 		    lh->ident, ntohs(lh->len));
   4443       1.3  explorer 		if (len)
   4444       1.3  explorer 			sppp_print_bytes((u_char*) (lh+1), len);
   4445       1.3  explorer 		addlog(">\n");
   4446       1.3  explorer 	}
   4447       1.3  explorer 	if (IF_QFULL (&sp->pp_cpq)) {
   4448       1.3  explorer 		IF_DROP (&sp->pp_fastq);
   4449       1.3  explorer 		IF_DROP (&ifp->if_snd);
   4450       1.3  explorer 		m_freem (m);
   4451       1.3  explorer 		++ifp->if_oerrors;
   4452       1.3  explorer 	} else
   4453       1.3  explorer 		IF_ENQUEUE (&sp->pp_cpq, m);
   4454       1.3  explorer 	if (! (ifp->if_flags & IFF_OACTIVE))
   4455       1.3  explorer 		(*ifp->if_start) (ifp);
   4456       1.3  explorer 	ifp->if_obytes += m->m_pkthdr.len + 3;
   4457       1.3  explorer }
   4458       1.3  explorer 
   4459      1.23   thorpej /*
   4460       1.3  explorer  * Send keepalive packets, every 10 seconds.
   4461       1.3  explorer  */
   4462       1.3  explorer static void
   4463       1.3  explorer sppp_keepalive(void *dummy)
   4464       1.3  explorer {
   4465       1.3  explorer 	struct sppp *sp;
   4466       1.3  explorer 	int s;
   4467       1.3  explorer 
   4468       1.3  explorer 	s = splnet();
   4469       1.3  explorer 	for (sp=spppq; sp; sp=sp->pp_next) {
   4470       1.3  explorer 		struct ifnet *ifp = &sp->pp_if;
   4471       1.3  explorer 
   4472       1.3  explorer 		/* Keepalive mode disabled or channel down? */
   4473       1.3  explorer 		if (! (sp->pp_flags & PP_KEEPALIVE) ||
   4474       1.3  explorer 		    ! (ifp->if_flags & IFF_RUNNING))
   4475       1.3  explorer 			continue;
   4476       1.3  explorer 
   4477      1.26    itojun 		/* No keepalive in PPP mode if LCP not opened yet. */
   4478       1.3  explorer 		if (! (sp->pp_flags & PP_CISCO) &&
   4479       1.3  explorer 		    sp->pp_phase < PHASE_AUTHENTICATE)
   4480       1.3  explorer 			continue;
   4481       1.3  explorer 
   4482       1.3  explorer 		if (sp->pp_alivecnt == MAXALIVECNT) {
   4483       1.3  explorer 			/* No keepalive packets got.  Stop the interface. */
   4484       1.3  explorer 			printf (SPP_FMT "down\n", SPP_ARGS(ifp));
   4485       1.3  explorer 			if_down (ifp);
   4486       1.3  explorer 			IF_PURGE (&sp->pp_cpq);
   4487       1.3  explorer 			if (! (sp->pp_flags & PP_CISCO)) {
   4488       1.3  explorer 				/* XXX */
   4489       1.9    itojun 				/* Shut down the PPP link. */
   4490       1.9    itojun 				lcp.Down(sp);
   4491       1.3  explorer 				/* Initiate negotiation. XXX */
   4492       1.3  explorer 				lcp.Up(sp);
   4493       1.9    itojun 			}
   4494       1.3  explorer 		}
   4495       1.3  explorer 		if (sp->pp_alivecnt <= MAXALIVECNT)
   4496       1.3  explorer 			++sp->pp_alivecnt;
   4497       1.3  explorer 		if (sp->pp_flags & PP_CISCO)
   4498       1.3  explorer 			sppp_cisco_send (sp, CISCO_KEEPALIVE_REQ,
   4499       1.7   thorpej 			    ++sp->pp_seq[IDX_LCP], sp->pp_rseq[IDX_LCP]);
   4500       1.3  explorer 		else if (sp->pp_phase >= PHASE_AUTHENTICATE) {
   4501       1.3  explorer 			long nmagic = htonl (sp->lcp.magic);
   4502       1.3  explorer 			sp->lcp.echoid = ++sp->pp_seq[IDX_LCP];
   4503       1.3  explorer 			sppp_cp_send (sp, PPP_LCP, ECHO_REQ,
   4504       1.3  explorer 				sp->lcp.echoid, 4, &nmagic);
   4505       1.3  explorer 		}
   4506       1.3  explorer 	}
   4507       1.3  explorer 	splx(s);
   4508       1.3  explorer 	callout_reset(&keepalive_ch, hz * 10, sppp_keepalive, NULL);
   4509       1.3  explorer }
   4510       1.3  explorer 
   4511       1.3  explorer /*
   4512       1.3  explorer  * Get both IP addresses.
   4513       1.3  explorer  */
   4514       1.3  explorer static void
   4515       1.3  explorer sppp_get_ip_addrs(struct sppp *sp, u_long *src, u_long *dst, u_long *srcmask)
   4516       1.3  explorer {
   4517       1.3  explorer 	struct ifnet *ifp = &sp->pp_if;
   4518       1.3  explorer 	struct ifaddr *ifa;
   4519  1.26.4.1   thorpej 	struct sockaddr_in *si, *sm;
   4520  1.26.4.1   thorpej 	u_long ssrc, ddst;
   4521       1.3  explorer 
   4522       1.3  explorer 	sm = NULL;
   4523       1.3  explorer 	ssrc = ddst = 0L;
   4524       1.3  explorer 	/*
   4525       1.3  explorer 	 * Pick the first AF_INET address from the list,
   4526       1.3  explorer 	 * aliases don't make any sense on a p2p link anyway.
   4527  1.26.4.1   thorpej 	 */
   4528       1.3  explorer 	si = 0;
   4529       1.3  explorer 	TAILQ_FOREACH(ifa, &ifp->if_addrlist, ifa_list) {
   4530       1.3  explorer 		if (ifa->ifa_addr->sa_family == AF_INET) {
   4531       1.3  explorer 			si = (struct sockaddr_in *)ifa->ifa_addr;
   4532       1.3  explorer 			sm = (struct sockaddr_in *)ifa->ifa_netmask;
   4533       1.3  explorer 			if (si)
   4534       1.3  explorer 				break;
   4535       1.3  explorer 		}
   4536       1.3  explorer 	}
   4537       1.3  explorer 	if (ifa) {
   4538       1.3  explorer 		if (si && si->sin_addr.s_addr) {
   4539       1.3  explorer 			ssrc = si->sin_addr.s_addr;
   4540       1.3  explorer 			if (srcmask)
   4541       1.3  explorer 				*srcmask = ntohl(sm->sin_addr.s_addr);
   4542       1.3  explorer 		}
   4543       1.3  explorer 
   4544       1.3  explorer 		si = (struct sockaddr_in *)ifa->ifa_dstaddr;
   4545      1.23   thorpej 		if (si && si->sin_addr.s_addr)
   4546       1.3  explorer 			ddst = si->sin_addr.s_addr;
   4547       1.3  explorer 	}
   4548       1.3  explorer 
   4549       1.3  explorer 	if (dst) *dst = ntohl(ddst);
   4550       1.3  explorer 	if (src) *src = ntohl(ssrc);
   4551       1.3  explorer }
   4552       1.3  explorer 
   4553       1.3  explorer /*
   4554       1.3  explorer  * Set my IP address.  Must be called at splnet.
   4555       1.3  explorer  */
   4556       1.3  explorer static void
   4557       1.3  explorer sppp_set_ip_addr(struct sppp *sp, u_long src)
   4558       1.3  explorer {
   4559  1.26.4.1   thorpej 	STDDCL;
   4560  1.26.4.1   thorpej 	struct ifaddr *ifa;
   4561       1.3  explorer 	struct sockaddr_in *si;
   4562       1.3  explorer 
   4563       1.3  explorer 	/*
   4564       1.3  explorer 	 * Pick the first AF_INET address from the list,
   4565       1.3  explorer 	 * aliases don't make any sense on a p2p link anyway.
   4566       1.3  explorer 	 */
   4567       1.3  explorer 
   4568       1.3  explorer 	si = 0;
   4569       1.3  explorer 	TAILQ_FOREACH(ifa, &ifp->if_addrlist, ifa_list)
   4570       1.3  explorer 	{
   4571       1.3  explorer 		if (ifa->ifa_addr->sa_family == AF_INET)
   4572       1.3  explorer 		{
   4573       1.3  explorer 			si = (struct sockaddr_in *)ifa->ifa_addr;
   4574       1.3  explorer 			if (si)
   4575       1.3  explorer 				break;
   4576       1.3  explorer 		}
   4577       1.3  explorer 	}
   4578       1.3  explorer 
   4579       1.3  explorer 	if (ifa && si)
   4580       1.3  explorer 	{
   4581       1.3  explorer 		int error;
   4582       1.3  explorer 		struct sockaddr_in new_sin = *si;
   4583       1.3  explorer 
   4584       1.3  explorer 		new_sin.sin_addr.s_addr = htonl(src);
   4585       1.9    itojun 		error = in_ifinit(ifp, ifatoia(ifa), &new_sin, 1);
   4586       1.9    itojun 		if(debug && error)
   4587       1.9    itojun 		{
   4588       1.9    itojun 			log(LOG_DEBUG, SPP_FMT "sppp_set_ip_addr: in_ifinit "
   4589       1.9    itojun 			" failed, error=%d\n", SPP_ARGS(ifp), error);
   4590       1.9    itojun 		}
   4591       1.9    itojun 	}
   4592       1.9    itojun }
   4593       1.9    itojun 
   4594       1.9    itojun #ifdef INET6
   4595       1.9    itojun /*
   4596       1.9    itojun  * Get both IPv6 addresses.
   4597       1.9    itojun  */
   4598       1.9    itojun static void
   4599      1.25   thorpej sppp_get_ip6_addrs(struct sppp *sp, struct in6_addr *src, struct in6_addr *dst,
   4600      1.25   thorpej 		   struct in6_addr *srcmask)
   4601       1.9    itojun {
   4602       1.9    itojun 	struct ifnet *ifp = &sp->pp_if;
   4603       1.9    itojun 	struct ifaddr *ifa;
   4604       1.9    itojun 	struct sockaddr_in6 *si, *sm;
   4605  1.26.4.1   thorpej 	struct in6_addr ssrc, ddst;
   4606  1.26.4.1   thorpej 
   4607       1.9    itojun 	sm = NULL;
   4608       1.9    itojun 	memset(&ssrc, 0, sizeof(ssrc));
   4609       1.9    itojun 	memset(&ddst, 0, sizeof(ddst));
   4610       1.9    itojun 	/*
   4611       1.9    itojun 	 * Pick the first link-local AF_INET6 address from the list,
   4612       1.9    itojun 	 * aliases don't make any sense on a p2p link anyway.
   4613       1.9    itojun 	 */
   4614       1.9    itojun 	si = 0;
   4615       1.9    itojun 	TAILQ_FOREACH(ifa, &ifp->if_addrlist, ifa_list)
   4616       1.9    itojun 		if (ifa->ifa_addr->sa_family == AF_INET6) {
   4617       1.9    itojun 			si = (struct sockaddr_in6 *)ifa->ifa_addr;
   4618       1.9    itojun 			sm = (struct sockaddr_in6 *)ifa->ifa_netmask;
   4619       1.9    itojun 			if (si && IN6_IS_ADDR_LINKLOCAL(&si->sin6_addr))
   4620       1.9    itojun 				break;
   4621       1.9    itojun 		}
   4622       1.9    itojun 	if (ifa) {
   4623       1.9    itojun 		if (si && !IN6_IS_ADDR_UNSPECIFIED(&si->sin6_addr)) {
   4624       1.9    itojun 			bcopy(&si->sin6_addr, &ssrc, sizeof(ssrc));
   4625       1.9    itojun 			if (srcmask) {
   4626       1.9    itojun 				bcopy(&sm->sin6_addr, srcmask,
   4627       1.9    itojun 				    sizeof(*srcmask));
   4628       1.9    itojun 			}
   4629       1.9    itojun 		}
   4630       1.9    itojun 
   4631       1.9    itojun 		si = (struct sockaddr_in6 *)ifa->ifa_dstaddr;
   4632       1.9    itojun 		if (si && !IN6_IS_ADDR_UNSPECIFIED(&si->sin6_addr))
   4633       1.9    itojun 			bcopy(&si->sin6_addr, &ddst, sizeof(ddst));
   4634       1.9    itojun 	}
   4635       1.9    itojun 
   4636       1.9    itojun 	if (dst)
   4637       1.9    itojun 		bcopy(&ddst, dst, sizeof(*dst));
   4638       1.9    itojun 	if (src)
   4639       1.9    itojun 		bcopy(&ssrc, src, sizeof(*src));
   4640       1.9    itojun }
   4641       1.9    itojun 
   4642       1.9    itojun #ifdef IPV6CP_MYIFID_DYN
   4643       1.9    itojun /*
   4644      1.23   thorpej  * Generate random ifid.
   4645       1.9    itojun  */
   4646       1.9    itojun static void
   4647       1.9    itojun sppp_gen_ip6_addr(struct sppp *sp, struct in6_addr *addr)
   4648       1.9    itojun {
   4649       1.9    itojun 	/* TBD */
   4650       1.9    itojun }
   4651       1.9    itojun 
   4652       1.9    itojun /*
   4653       1.9    itojun  * Set my IPv6 address.  Must be called at splnet.
   4654       1.9    itojun  */
   4655       1.9    itojun static void
   4656       1.9    itojun sppp_set_ip6_addr(struct sppp *sp, const struct in6_addr *src)
   4657       1.9    itojun {
   4658       1.9    itojun 	STDDCL;
   4659  1.26.4.1   thorpej 	struct ifaddr *ifa;
   4660       1.9    itojun 	struct sockaddr_in6 *sin6;
   4661       1.9    itojun 
   4662       1.9    itojun 	/*
   4663       1.9    itojun 	 * Pick the first link-local AF_INET6 address from the list,
   4664       1.9    itojun 	 * aliases don't make any sense on a p2p link anyway.
   4665       1.9    itojun 	 */
   4666       1.9    itojun 
   4667       1.9    itojun 	sin6 = NULL;
   4668       1.9    itojun 	TAILQ_FOREACH(ifa, &ifp->if_addrlist, ifa_list)
   4669       1.9    itojun 	{
   4670       1.9    itojun 		if (ifa->ifa_addr->sa_family == AF_INET6)
   4671       1.9    itojun 		{
   4672       1.9    itojun 			sin6 = (struct sockaddr_in6 *)ifa->ifa_addr;
   4673       1.9    itojun 			if (sin6 && IN6_IS_ADDR_LINKLOCAL(&sin6->sin6_addr))
   4674       1.9    itojun 				break;
   4675       1.9    itojun 		}
   4676       1.9    itojun 	}
   4677       1.9    itojun 
   4678       1.9    itojun 	if (ifa && sin6)
   4679       1.9    itojun 	{
   4680       1.9    itojun 		int error;
   4681       1.9    itojun 		struct sockaddr_in6 new_sin6 = *sin6;
   4682       1.9    itojun 
   4683       1.9    itojun 		bcopy(src, &new_sin6.sin6_addr, sizeof(new_sin6.sin6_addr));
   4684       1.9    itojun 		error = in6_ifinit(ifp, ifatoia6(ifa), &new_sin6, 1);
   4685       1.9    itojun 		if (debug && error)
   4686       1.9    itojun 		{
   4687       1.9    itojun 			log(LOG_DEBUG, SPP_FMT "sppp_set_ip6_addr: in6_ifinit "
   4688       1.9    itojun 			" failed, error=%d\n", SPP_ARGS(ifp), error);
   4689       1.9    itojun 		}
   4690       1.9    itojun 	}
   4691       1.9    itojun }
   4692      1.10    itojun #endif
   4693       1.9    itojun 
   4694       1.9    itojun /*
   4695       1.9    itojun  * Suggest a candidate address to be used by peer.
   4696       1.9    itojun  */
   4697      1.10    itojun static void
   4698      1.10    itojun sppp_suggest_ip6_addr(struct sppp *sp, struct in6_addr *suggest)
   4699      1.10    itojun {
   4700      1.10    itojun 	struct in6_addr myaddr;
   4701      1.10    itojun 	struct timeval tv;
   4702      1.10    itojun 
   4703      1.10    itojun 	sppp_get_ip6_addrs(sp, &myaddr, 0, 0);
   4704      1.10    itojun 
   4705       1.9    itojun 	myaddr.s6_addr[8] &= ~0x02;	/* u bit to "local" */
   4706       1.9    itojun 	microtime(&tv);
   4707       1.9    itojun 	if ((tv.tv_usec & 0xff) == 0 && (tv.tv_sec & 0xff) == 0) {
   4708       1.9    itojun 		myaddr.s6_addr[14] ^= 0xff;
   4709       1.9    itojun 		myaddr.s6_addr[15] ^= 0xff;
   4710       1.3  explorer 	} else {
   4711       1.3  explorer 		myaddr.s6_addr[14] ^= (tv.tv_usec & 0xff);
   4712       1.3  explorer 		myaddr.s6_addr[15] ^= (tv.tv_sec & 0xff);
   4713       1.3  explorer 	}
   4714       1.3  explorer 	if (suggest)
   4715       1.3  explorer 		bcopy(&myaddr, suggest, sizeof(myaddr));
   4716      1.18    martin }
   4717       1.3  explorer #endif /*INET6*/
   4718       1.3  explorer 
   4719       1.3  explorer static int
   4720       1.3  explorer sppp_params(struct sppp *sp, int cmd, void *data)
   4721       1.3  explorer {
   4722       1.3  explorer 	struct ifreq *ifr = (struct ifreq *)data;
   4723       1.3  explorer 	struct spppreq spr;
   4724      1.18    martin 
   4725       1.3  explorer #if 0
   4726       1.3  explorer 	/*
   4727       1.3  explorer 	 * ifr->ifr_data is supposed to point to a struct spppreq.
   4728       1.3  explorer 	 * Check the cmd word first before attempting to fetch all the
   4729      1.18    martin 	 * data.
   4730       1.3  explorer 	 */
   4731      1.17    martin 	if ((subcmd = fuword(ifr->ifr_data)) == -1)
   4732       1.3  explorer 		return EFAULT;
   4733       1.3  explorer #endif
   4734       1.3  explorer 
   4735       1.3  explorer 	if (copyin((caddr_t)ifr->ifr_data, &spr, sizeof spr) != 0)
   4736       1.3  explorer 		return EFAULT;
   4737       1.3  explorer 
   4738       1.3  explorer 	switch (spr.cmd) {
   4739       1.3  explorer 	case SPPPIOGDEFS:
   4740       1.3  explorer 		if (cmd != (int)SIOCGIFGENERIC)
   4741      1.25   thorpej 			return EINVAL;
   4742      1.25   thorpej 		/*
   4743      1.25   thorpej 		 * We copy over the entire current state, but clean
   4744      1.25   thorpej 		 * out some of the stuff we don't wanna pass up.
   4745       1.3  explorer 		 * Remember, SIOCGIFGENERIC is unprotected, and can be
   4746       1.3  explorer 		 * called by any user.  No need to ever get PAP or
   4747       1.3  explorer 		 * CHAP secrets back to userland anyway.
   4748      1.17    martin 		 */
   4749       1.3  explorer 		bcopy(sp, &spr.defs, sizeof(struct sppp));
   4750       1.3  explorer 		memset(spr.defs.myauth.secret, 0, AUTHKEYLEN);
   4751       1.3  explorer 		memset(spr.defs.myauth.challenge, 0, AUTHKEYLEN);
   4752       1.3  explorer 		memset(spr.defs.hisauth.secret, 0, AUTHKEYLEN);
   4753       1.3  explorer 		memset(spr.defs.hisauth.challenge, 0, AUTHKEYLEN);
   4754       1.3  explorer 		return copyout(&spr, (caddr_t)ifr->ifr_data, sizeof spr);
   4755       1.3  explorer 
   4756       1.3  explorer 	case SPPPIOSDEFS:
   4757       1.3  explorer 		if (cmd != (int)SIOCSIFGENERIC)
   4758       1.3  explorer 			return EINVAL;
   4759       1.3  explorer 		/*
   4760       1.3  explorer 		 * We have a very specific idea of which fields we allow
   4761       1.3  explorer 		 * being passed back from userland, so to not clobber our
   4762       1.3  explorer 		 * current state.  For one, we only allow setting
   4763       1.3  explorer 		 * anything if LCP is in dead phase.  Once the LCP
   4764       1.3  explorer 		 * negotiations started, the authentication settings must
   4765       1.3  explorer 		 * not be changed again.  (The administrator can force an
   4766       1.3  explorer 		 * ifconfig down in order to get LCP back into dead
   4767       1.3  explorer 		 * phase.)
   4768       1.3  explorer 		 *
   4769       1.3  explorer 		 * Also, we only allow for authentication parameters to be
   4770       1.3  explorer 		 * specified.
   4771       1.3  explorer 		 *
   4772       1.3  explorer 		 * XXX Should allow to set or clear pp_flags.
   4773       1.3  explorer 		 *
   4774       1.3  explorer 		 * Finally, if the respective authentication protocol to
   4775       1.3  explorer 		 * be used is set differently than 0, but the secret is
   4776       1.3  explorer 		 * passed as all zeros, we don't trash the existing secret.
   4777       1.3  explorer 		 * This allows an administrator to change the system name
   4778       1.3  explorer 		 * only without clobbering the secret (which he didn't get
   4779       1.3  explorer 		 * back in a previous SPPPIOGDEFS call).  However, the
   4780       1.3  explorer 		 * secrets are cleared if the authentication protocol is
   4781       1.3  explorer 		 * reset to 0.
   4782       1.3  explorer 		 */
   4783       1.3  explorer 		if (sp->pp_phase != PHASE_DEAD)
   4784       1.3  explorer 			return EBUSY;
   4785      1.25   thorpej 
   4786       1.3  explorer 		if ((spr.defs.myauth.proto != 0 && spr.defs.myauth.proto != PPP_PAP &&
   4787       1.3  explorer 		     spr.defs.myauth.proto != PPP_CHAP) ||
   4788       1.3  explorer 		    (spr.defs.hisauth.proto != 0 && spr.defs.hisauth.proto != PPP_PAP &&
   4789       1.3  explorer 		     spr.defs.hisauth.proto != PPP_CHAP))
   4790       1.3  explorer 			return EINVAL;
   4791       1.3  explorer 
   4792       1.3  explorer 		if (spr.defs.myauth.proto == 0)
   4793       1.3  explorer 			/* resetting myauth */
   4794       1.3  explorer 			memset(&sp->myauth, 0, sizeof sp->myauth);
   4795       1.3  explorer 		else {
   4796      1.25   thorpej 			/* setting/changing myauth */
   4797       1.3  explorer 			sp->myauth.proto = spr.defs.myauth.proto;
   4798       1.3  explorer 			bcopy(spr.defs.myauth.name, sp->myauth.name, AUTHNAMELEN);
   4799       1.3  explorer 			if (spr.defs.myauth.secret[0] != '\0')
   4800       1.3  explorer 				bcopy(spr.defs.myauth.secret, sp->myauth.secret,
   4801       1.3  explorer 				      AUTHKEYLEN);
   4802       1.3  explorer 		}
   4803       1.3  explorer 		if (spr.defs.hisauth.proto == 0)
   4804       1.3  explorer 			/* resetting hisauth */
   4805       1.3  explorer 			memset(&sp->hisauth, 0, sizeof sp->hisauth);
   4806       1.3  explorer 		else {
   4807       1.3  explorer 			/* setting/changing hisauth */
   4808       1.3  explorer 			sp->hisauth.proto = spr.defs.hisauth.proto;
   4809       1.3  explorer 			sp->hisauth.flags = spr.defs.hisauth.flags;
   4810       1.3  explorer 			bcopy(spr.defs.hisauth.name, sp->hisauth.name, AUTHNAMELEN);
   4811       1.3  explorer 			if (spr.defs.hisauth.secret[0] != '\0')
   4812       1.3  explorer 				bcopy(spr.defs.hisauth.secret, sp->hisauth.secret,
   4813       1.3  explorer 				      AUTHKEYLEN);
   4814       1.3  explorer 		}
   4815       1.3  explorer 		break;
   4816       1.3  explorer 
   4817       1.3  explorer 	default:
   4818       1.3  explorer 		return EINVAL;
   4819       1.3  explorer 	}
   4820       1.3  explorer 
   4821       1.3  explorer 	return 0;
   4822       1.3  explorer }
   4823       1.3  explorer 
   4824       1.3  explorer static void
   4825       1.3  explorer sppp_phase_network(struct sppp *sp)
   4826       1.3  explorer {
   4827       1.3  explorer 	STDDCL;
   4828       1.3  explorer 	int i;
   4829       1.3  explorer 	u_long mask;
   4830       1.3  explorer 
   4831       1.3  explorer 	sp->pp_phase = PHASE_NETWORK;
   4832       1.3  explorer 
   4833       1.3  explorer 	if(debug)
   4834       1.3  explorer 	{
   4835       1.3  explorer 		log(LOG_INFO, SPP_FMT "phase %s\n", SPP_ARGS(ifp),
   4836       1.3  explorer 			sppp_phase_name(sp->pp_phase));
   4837      1.13    itojun 	}
   4838       1.3  explorer 
   4839       1.3  explorer 	/* Notify NCPs now. */
   4840       1.3  explorer 	for (i = 0; i < IDX_COUNT; i++)
   4841       1.3  explorer 		if ((cps[i])->flags & CP_NCP)
   4842       1.3  explorer 			(cps[i])->Open(sp);
   4843       1.3  explorer 
   4844       1.3  explorer 	/* Send Up events to all NCPs. */
   4845       1.3  explorer 	for (i = 0, mask = 1; i < IDX_COUNT; i++, mask <<= 1)
   4846       1.3  explorer 		if ((sp->lcp.protos & mask) && ((cps[i])->flags & CP_NCP))
   4847       1.1  explorer 			(cps[i])->Up(sp);
   4848       1.3  explorer 
   4849       1.1  explorer 	/* if no NCP is starting, all this was in vain, close down */
   4850       1.3  explorer 	sppp_lcp_check_and_close(sp);
   4851       1.3  explorer }
   4852       1.3  explorer 
   4853       1.3  explorer 
   4854       1.3  explorer static const char *
   4855       1.3  explorer sppp_cp_type_name(u_char type)
   4856       1.3  explorer {
   4857       1.3  explorer 	static char buf[12];
   4858       1.3  explorer 	switch (type) {
   4859       1.3  explorer 	case CONF_REQ:   return "conf-req";
   4860       1.3  explorer 	case CONF_ACK:   return "conf-ack";
   4861       1.3  explorer 	case CONF_NAK:   return "conf-nak";
   4862       1.3  explorer 	case CONF_REJ:   return "conf-rej";
   4863       1.3  explorer 	case TERM_REQ:   return "term-req";
   4864       1.3  explorer 	case TERM_ACK:   return "term-ack";
   4865       1.3  explorer 	case CODE_REJ:   return "code-rej";
   4866       1.3  explorer 	case PROTO_REJ:  return "proto-rej";
   4867       1.3  explorer 	case ECHO_REQ:   return "echo-req";
   4868       1.3  explorer 	case ECHO_REPLY: return "echo-reply";
   4869       1.3  explorer 	case DISC_REQ:   return "discard-req";
   4870       1.3  explorer 	}
   4871       1.3  explorer 	sprintf (buf, "0x%x", type);
   4872       1.3  explorer 	return buf;
   4873       1.3  explorer }
   4874       1.3  explorer 
   4875       1.3  explorer static const char *
   4876       1.3  explorer sppp_auth_type_name(u_short proto, u_char type)
   4877       1.3  explorer {
   4878       1.3  explorer 	static char buf[12];
   4879       1.3  explorer 	switch (proto) {
   4880       1.3  explorer 	case PPP_CHAP:
   4881       1.3  explorer 		switch (type) {
   4882       1.3  explorer 		case CHAP_CHALLENGE:	return "challenge";
   4883       1.3  explorer 		case CHAP_RESPONSE:	return "response";
   4884       1.3  explorer 		case CHAP_SUCCESS:	return "success";
   4885       1.3  explorer 		case CHAP_FAILURE:	return "failure";
   4886       1.3  explorer 		}
   4887       1.3  explorer 	case PPP_PAP:
   4888       1.3  explorer 		switch (type) {
   4889       1.3  explorer 		case PAP_REQ:		return "req";
   4890       1.3  explorer 		case PAP_ACK:		return "ack";
   4891       1.3  explorer 		case PAP_NAK:		return "nak";
   4892       1.3  explorer 		}
   4893       1.3  explorer 	}
   4894       1.3  explorer 	sprintf (buf, "0x%x", type);
   4895       1.3  explorer 	return buf;
   4896       1.3  explorer }
   4897       1.3  explorer 
   4898       1.3  explorer static const char *
   4899       1.3  explorer sppp_lcp_opt_name(u_char opt)
   4900       1.3  explorer {
   4901       1.3  explorer 	static char buf[12];
   4902       1.3  explorer 	switch (opt) {
   4903       1.3  explorer 	case LCP_OPT_MRU:		return "mru";
   4904       1.3  explorer 	case LCP_OPT_ASYNC_MAP:		return "async-map";
   4905       1.3  explorer 	case LCP_OPT_AUTH_PROTO:	return "auth-proto";
   4906       1.3  explorer 	case LCP_OPT_QUAL_PROTO:	return "qual-proto";
   4907       1.3  explorer 	case LCP_OPT_MAGIC:		return "magic";
   4908       1.3  explorer 	case LCP_OPT_PROTO_COMP:	return "proto-comp";
   4909       1.3  explorer 	case LCP_OPT_ADDR_COMP:		return "addr-comp";
   4910       1.3  explorer 	}
   4911       1.3  explorer 	sprintf (buf, "0x%x", opt);
   4912       1.3  explorer 	return buf;
   4913       1.3  explorer }
   4914       1.3  explorer 
   4915       1.3  explorer static const char *
   4916       1.3  explorer sppp_ipcp_opt_name(u_char opt)
   4917       1.3  explorer {
   4918       1.3  explorer 	static char buf[12];
   4919       1.9    itojun 	switch (opt) {
   4920       1.9    itojun 	case IPCP_OPT_ADDRESSES:	return "addresses";
   4921       1.9    itojun 	case IPCP_OPT_COMPRESSION:	return "compression";
   4922       1.9    itojun 	case IPCP_OPT_ADDRESS:		return "address";
   4923       1.9    itojun 	}
   4924       1.9    itojun 	sprintf (buf, "0x%x", opt);
   4925       1.9    itojun 	return buf;
   4926       1.9    itojun }
   4927       1.9    itojun 
   4928       1.9    itojun #ifdef INET6
   4929       1.9    itojun static const char *
   4930       1.9    itojun sppp_ipv6cp_opt_name(u_char opt)
   4931       1.9    itojun {
   4932       1.9    itojun 	static char buf[12];
   4933       1.3  explorer 	switch (opt) {
   4934       1.3  explorer 	case IPV6CP_OPT_IFID:		return "ifid";
   4935       1.3  explorer 	case IPV6CP_OPT_COMPRESSION:	return "compression";
   4936       1.3  explorer 	}
   4937       1.3  explorer 	sprintf (buf, "0x%x", opt);
   4938       1.3  explorer 	return buf;
   4939       1.3  explorer }
   4940       1.3  explorer #endif
   4941       1.3  explorer 
   4942       1.3  explorer static const char *
   4943       1.3  explorer sppp_state_name(int state)
   4944       1.3  explorer {
   4945       1.3  explorer 	switch (state) {
   4946       1.3  explorer 	case STATE_INITIAL:	return "initial";
   4947       1.3  explorer 	case STATE_STARTING:	return "starting";
   4948       1.3  explorer 	case STATE_CLOSED:	return "closed";
   4949       1.3  explorer 	case STATE_STOPPED:	return "stopped";
   4950       1.3  explorer 	case STATE_CLOSING:	return "closing";
   4951       1.3  explorer 	case STATE_STOPPING:	return "stopping";
   4952       1.3  explorer 	case STATE_REQ_SENT:	return "req-sent";
   4953       1.3  explorer 	case STATE_ACK_RCVD:	return "ack-rcvd";
   4954       1.3  explorer 	case STATE_ACK_SENT:	return "ack-sent";
   4955       1.3  explorer 	case STATE_OPENED:	return "opened";
   4956       1.3  explorer 	}
   4957       1.3  explorer 	return "illegal";
   4958       1.3  explorer }
   4959       1.3  explorer 
   4960       1.3  explorer static const char *
   4961       1.3  explorer sppp_phase_name(enum ppp_phase phase)
   4962       1.3  explorer {
   4963       1.3  explorer 	switch (phase) {
   4964       1.3  explorer 	case PHASE_DEAD:	return "dead";
   4965       1.3  explorer 	case PHASE_ESTABLISH:	return "establish";
   4966       1.3  explorer 	case PHASE_TERMINATE:	return "terminate";
   4967       1.3  explorer 	case PHASE_AUTHENTICATE: return "authenticate";
   4968       1.3  explorer 	case PHASE_NETWORK:	return "network";
   4969       1.3  explorer 	}
   4970       1.3  explorer 	return "illegal";
   4971       1.3  explorer }
   4972       1.3  explorer 
   4973       1.9    itojun static const char *
   4974       1.1  explorer sppp_proto_name(u_short proto)
   4975       1.3  explorer {
   4976       1.3  explorer 	static char buf[12];
   4977       1.1  explorer 	switch (proto) {
   4978       1.1  explorer 	case PPP_LCP:	return "lcp";
   4979       1.1  explorer 	case PPP_IPCP:	return "ipcp";
   4980       1.3  explorer 	case PPP_PAP:	return "pap";
   4981       1.1  explorer 	case PPP_CHAP:	return "chap";
   4982       1.3  explorer 	case PPP_IPV6CP: return "ipv6cp";
   4983       1.1  explorer 	}
   4984       1.3  explorer 	sprintf(buf, "0x%x", (unsigned)proto);
   4985       1.3  explorer 	return buf;
   4986       1.3  explorer }
   4987       1.3  explorer 
   4988       1.3  explorer static void
   4989       1.3  explorer sppp_print_bytes(const u_char *p, u_short len)
   4990       1.3  explorer {
   4991       1.3  explorer 	addlog(" %02x", *p++);
   4992       1.3  explorer 	while (--len > 0)
   4993       1.3  explorer 		addlog("-%02x", *p++);
   4994       1.3  explorer }
   4995       1.3  explorer 
   4996       1.3  explorer static void
   4997       1.3  explorer sppp_print_string(const char *p, u_short len)
   4998       1.3  explorer {
   4999       1.3  explorer 	u_char c;
   5000       1.3  explorer 
   5001       1.3  explorer 	while (len-- > 0) {
   5002       1.3  explorer 		c = *p++;
   5003       1.3  explorer 		/*
   5004       1.3  explorer 		 * Print only ASCII chars directly.  RFC 1994 recommends
   5005       1.3  explorer 		 * using only them, but we don't rely on it.  */
   5006       1.3  explorer 		if (c < ' ' || c > '~')
   5007       1.3  explorer 			addlog("\\x%x", c);
   5008       1.3  explorer 		else
   5009       1.3  explorer 			addlog("%c", c);
   5010       1.3  explorer 	}
   5011       1.3  explorer }
   5012       1.3  explorer 
   5013       1.3  explorer static const char *
   5014       1.3  explorer sppp_dotted_quad(u_long addr)
   5015       1.3  explorer {
   5016       1.3  explorer 	static char s[16];
   5017       1.3  explorer 	sprintf(s, "%d.%d.%d.%d",
   5018       1.3  explorer 		(int)((addr >> 24) & 0xff),
   5019       1.3  explorer 		(int)((addr >> 16) & 0xff),
   5020       1.3  explorer 		(int)((addr >> 8) & 0xff),
   5021       1.3  explorer 		(int)(addr & 0xff));
   5022       1.3  explorer 	return s;
   5023       1.3  explorer }
   5024       1.3  explorer 
   5025       1.3  explorer static int
   5026       1.3  explorer sppp_strnlen(u_char *p, int max)
   5027       1.3  explorer {
   5028       1.3  explorer 	int len;
   5029       1.3  explorer 
   5030       1.3  explorer 	for (len = 0; len < max && *p; ++p)
   5031       1.1  explorer 		++len;
   5032       1.3  explorer 	return len;
   5033       1.3  explorer }
   5034       1.3  explorer 
   5035       1.3  explorer /* a dummy, used to drop uninteresting events */
   5036       1.3  explorer static void
   5037       1.3  explorer sppp_null(struct sppp *unused)
   5038       1.3  explorer {
   5039                     	/* do just nothing */
   5040                     }
   5041                     /*
   5042                      * This file is large.  Tell emacs to highlight it nevertheless.
   5043                      *
   5044                      * Local Variables:
   5045                      * hilit-auto-highlight-maxout: 120000
   5046                      * End:
   5047                      */
   5048