Home | History | Annotate | Line # | Download | only in net
if_sppp.h revision 1.28.30.1
      1  1.28.30.1   thorpej /*	$NetBSD: if_sppp.h,v 1.28.30.1 2020/12/14 14:38:15 thorpej Exp $	*/
      2        1.4  explorer 
      3       1.17    martin /*-
      4       1.17    martin  * Copyright (c) 2002 The NetBSD Foundation, Inc.
      5       1.17    martin  * All rights reserved.
      6       1.17    martin  *
      7       1.17    martin  * This code is derived from software contributed to The NetBSD Foundation
      8       1.22    keihan  * by Martin Husemann <martin (at) NetBSD.org>.
      9        1.1  explorer  *
     10       1.12    martin  * Redistribution and use in source and binary forms, with or without
     11       1.12    martin  * modification, are permitted provided that the following conditions
     12       1.12    martin  * are met:
     13       1.12    martin  * 1. Redistributions of source code must retain the above copyright
     14       1.12    martin  *    notice, this list of conditions and the following disclaimer.
     15       1.12    martin  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.12    martin  *    notice, this list of conditions and the following disclaimer in the
     17       1.12    martin  *    documentation and/or other materials provided with the distribution.
     18       1.12    martin  *
     19       1.17    martin  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20       1.17    martin  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21       1.17    martin  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22       1.17    martin  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23       1.17    martin  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24       1.17    martin  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25       1.17    martin  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26       1.17    martin  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27       1.17    martin  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28       1.17    martin  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29       1.17    martin  * POSSIBILITY OF SUCH DAMAGE.
     30        1.1  explorer  */
     31        1.1  explorer 
     32       1.24      elad #ifndef _NET_IF_SPPP_H_
     33       1.24      elad #define _NET_IF_SPPP_H_
     34       1.24      elad 
     35       1.12    martin /* ioctls used by the if_spppsubr.c driver */
     36        1.3  explorer 
     37       1.28  dholland #include <sys/ioccom.h>
     38       1.28  dholland 
     39       1.28  dholland 
     40       1.12    martin #define	SPPP_AUTHPROTO_NONE	0
     41       1.12    martin #define SPPP_AUTHPROTO_PAP	1
     42       1.12    martin #define SPPP_AUTHPROTO_CHAP	2
     43       1.12    martin 
     44       1.12    martin #define SPPP_AUTHFLAG_NOCALLOUT		1	/* do not require authentication on */
     45       1.12    martin 						/* callouts */
     46       1.12    martin #define SPPP_AUTHFLAG_NORECHALLENGE	2	/* do not re-challenge CHAP */
     47       1.12    martin 
     48       1.12    martin struct spppauthcfg {
     49       1.12    martin 	char	ifname[IFNAMSIZ];	/* pppoe interface name */
     50       1.15    martin 	u_int	hisauth;		/* one of SPPP_AUTHPROTO_* above */
     51       1.15    martin 	u_int	myauth;			/* one of SPPP_AUTHPROTO_* above */
     52       1.15    martin 	u_int	myname_length;		/* includes terminating 0 */
     53       1.15    martin 	u_int	mysecret_length;	/* includes terminating 0 */
     54       1.15    martin 	u_int	hisname_length;		/* includes terminating 0 */
     55       1.15    martin 	u_int	hissecret_length;	/* includes terminating 0 */
     56       1.15    martin 	u_int	myauthflags;
     57       1.15    martin 	u_int	hisauthflags;
     58       1.12    martin 	char	*myname;
     59       1.12    martin 	char	*mysecret;
     60       1.12    martin 	char	*hisname;
     61       1.12    martin 	char	*hissecret;
     62       1.12    martin };
     63       1.12    martin 
     64       1.12    martin #define	SPPPGETAUTHCFG	_IOWR('i', 120, struct spppauthcfg)
     65       1.12    martin #define	SPPPSETAUTHCFG	_IOW('i', 121, struct spppauthcfg)
     66       1.12    martin 
     67       1.12    martin struct sppplcpcfg {
     68       1.12    martin 	char	ifname[IFNAMSIZ];	/* pppoe interface name */
     69       1.12    martin 	int	lcp_timeout;		/* LCP timeout, in ticks */
     70        1.1  explorer };
     71        1.1  explorer 
     72       1.12    martin #define	SPPPGETLCPCFG	_IOWR('i', 122, struct sppplcpcfg)
     73       1.12    martin #define	SPPPSETLCPCFG	_IOW('i', 123, struct sppplcpcfg)
     74        1.3  explorer 
     75        1.3  explorer /*
     76        1.3  explorer  * Don't change the order of this.  Ordering the phases this way allows
     77  1.28.30.1   thorpej  * for a comparison of ``pp_phase >= PHASE_AUTHENTICATE'' in order to
     78        1.3  explorer  * know whether LCP is up.
     79        1.3  explorer  */
     80       1.12    martin #define	SPPP_PHASE_DEAD		0
     81       1.12    martin #define	SPPP_PHASE_ESTABLISH	1
     82       1.12    martin #define	SPPP_PHASE_TERMINATE	2
     83       1.12    martin #define	SPPP_PHASE_AUTHENTICATE	3
     84       1.12    martin #define	SPPP_PHASE_NETWORK	4
     85       1.12    martin 
     86       1.12    martin struct spppstatus {
     87       1.12    martin 	char	ifname[IFNAMSIZ];	/* pppoe interface name */
     88       1.12    martin 	int	phase;			/* one of SPPP_PHASE_* above */
     89        1.1  explorer };
     90        1.1  explorer 
     91       1.12    martin #define	SPPPGETSTATUS	_IOWR('i', 124, struct spppstatus)
     92       1.13    martin 
     93       1.23    martin struct spppstatusncp {
     94       1.23    martin 	char	ifname[IFNAMSIZ];	/* pppoe interface name */
     95       1.23    martin 	int	phase;			/* one of SPPP_PHASE_* above */
     96       1.23    martin 	int	ncpup;			/* != 0 if at least on NCP is up */
     97       1.23    martin };
     98       1.23    martin 
     99       1.23    martin #define	SPPPGETSTATUSNCP	_IOWR('i', 134, struct spppstatusncp)
    100       1.23    martin 
    101       1.13    martin struct spppidletimeout {
    102       1.13    martin 	char	ifname[IFNAMSIZ];	/* pppoe interface name */
    103       1.13    martin 	time_t	idle_seconds;		/* number of seconds idle before
    104       1.13    martin 					 * disconnect, 0 to disable idle-timeout */
    105       1.13    martin };
    106       1.13    martin 
    107       1.27  jmcneill struct spppidletimeout50 {
    108       1.27  jmcneill 	char	ifname[IFNAMSIZ];	/* pppoe interface name */
    109       1.27  jmcneill 	uint32_t idle_seconds;		/* number of seconds idle before
    110       1.27  jmcneill 					 * disconnect, 0 to disable idle-timeout */
    111       1.27  jmcneill };
    112       1.27  jmcneill 
    113       1.21    martin #define	SPPPGETIDLETO	_IOWR('i', 125, struct spppidletimeout)
    114       1.21    martin #define	SPPPSETIDLETO	_IOW('i', 126, struct spppidletimeout)
    115       1.27  jmcneill #define	__SPPPGETIDLETO50	_IOWR('i', 125, struct spppidletimeout50)
    116       1.27  jmcneill #define	__SPPPSETIDLETO50	_IOW('i', 126, struct spppidletimeout50)
    117       1.14    martin 
    118       1.14    martin struct spppauthfailurestats {
    119       1.14    martin 	char	ifname[IFNAMSIZ];	/* pppoe interface name */
    120       1.18       wiz 	int	auth_failures;		/* number of LCP failures since last successful TLU */
    121       1.14    martin 	int	max_failures;		/* max. allowed authorization failures */
    122       1.14    martin };
    123       1.14    martin 
    124       1.14    martin #define	SPPPGETAUTHFAILURES	_IOWR('i', 127, struct spppauthfailurestats)
    125       1.14    martin 
    126       1.14    martin struct spppauthfailuresettings {
    127       1.14    martin 	char	ifname[IFNAMSIZ];	/* pppoe interface name */
    128       1.14    martin 	int	max_failures;		/* max. allowed authorization failures */
    129       1.14    martin };
    130       1.14    martin #define	SPPPSETAUTHFAILURE	_IOW('i', 128, struct spppauthfailuresettings)
    131       1.16    martin 
    132       1.16    martin /* set the DNS options we would like to query during PPP negotiation */
    133       1.16    martin struct spppdnssettings {
    134       1.16    martin 	char	ifname[IFNAMSIZ];	/* pppoe interface name */
    135       1.16    martin 	int	query_dns;		/* bitmask (bits 0 and 1) for DNS options to query in IPCP */
    136       1.16    martin };
    137       1.16    martin #define	SPPPSETDNSOPTS		_IOW('i', 129, struct spppdnssettings)
    138       1.16    martin #define	SPPPGETDNSOPTS		_IOWR('i', 130, struct spppdnssettings)
    139       1.16    martin 
    140       1.16    martin /* get the DNS addresses we received from the peer */
    141       1.16    martin struct spppdnsaddrs {
    142       1.16    martin 	char	ifname[IFNAMSIZ];	/* pppoe interface name */
    143       1.25      matt 	uint32_t dns[2];		/* IP addresses */
    144       1.16    martin };
    145       1.16    martin 
    146       1.16    martin #define SPPPGETDNSADDRS		_IOWR('i', 131, struct spppdnsaddrs)
    147       1.19    martin 
    148       1.19    martin /* set LCP keepalive/timeout options */
    149       1.19    martin struct spppkeepalivesettings {
    150       1.19    martin 	char	ifname[IFNAMSIZ];	/* pppoe interface name */
    151       1.19    martin 	u_int	maxalive;		/* number of LCP echo req. w/o reply */
    152       1.19    martin 	time_t	max_noreceive;		/* (sec.) grace period before we start
    153       1.19    martin 					   sending LCP echo requests. */
    154       1.19    martin };
    155       1.27  jmcneill struct spppkeepalivesettings50 {
    156       1.27  jmcneill 	char	ifname[IFNAMSIZ];	/* pppoe interface name */
    157       1.27  jmcneill 	u_int	maxalive;		/* number of LCP echo req. w/o reply */
    158       1.27  jmcneill 	uint32_t max_noreceive;		/* (sec.) grace period before we start
    159       1.27  jmcneill 					   sending LCP echo requests. */
    160       1.27  jmcneill };
    161       1.20    martin #define	SPPPSETKEEPALIVE	_IOW('i', 132, struct spppkeepalivesettings)
    162       1.20    martin #define	SPPPGETKEEPALIVE	_IOWR('i', 133, struct spppkeepalivesettings)
    163       1.27  jmcneill #define	__SPPPSETKEEPALIVE50	_IOW('i', 132, struct spppkeepalivesettings50)
    164       1.27  jmcneill #define	__SPPPGETKEEPALIVE50	_IOWR('i', 133, struct spppkeepalivesettings50)
    165       1.19    martin 
    166       1.23    martin /* 134 already used! */
    167       1.24      elad 
    168  1.28.30.1   thorpej /* states are named and numbered according to RFC 1661 */
    169  1.28.30.1   thorpej #define SPPP_STATE_INITIAL	0
    170  1.28.30.1   thorpej #define SPPP_STATE_STARTING	1
    171  1.28.30.1   thorpej #define SPPP_STATE_CLOSED	2
    172  1.28.30.1   thorpej #define SPPP_STATE_STOPPED	3
    173  1.28.30.1   thorpej #define SPPP_STATE_CLOSING	4
    174  1.28.30.1   thorpej #define SPPP_STATE_STOPPING	5
    175  1.28.30.1   thorpej #define SPPP_STATE_REQ_SENT	6
    176  1.28.30.1   thorpej #define SPPP_STATE_ACK_RCVD	7
    177  1.28.30.1   thorpej #define SPPP_STATE_ACK_SENT	8
    178  1.28.30.1   thorpej #define SPPP_STATE_OPENED	9
    179  1.28.30.1   thorpej 
    180  1.28.30.1   thorpej #define SPPP_LCP_OPT_MRU		__BIT(1)
    181  1.28.30.1   thorpej #define SPPP_LCP_OPT_ASYNC_MAP		__BIT(2)
    182  1.28.30.1   thorpej #define SPPP_LCP_OPT_AUTH_PROTO		__BIT(3)
    183  1.28.30.1   thorpej #define SPPP_LCP_OPT_QUAL_PROTO		__BIT(4)
    184  1.28.30.1   thorpej #define SPPP_LCP_OPT_MAGIC		__BIT(5)
    185  1.28.30.1   thorpej #define SPPP_LCP_OPT_RESERVED		__BIT(6)
    186  1.28.30.1   thorpej #define SPPP_LCP_OPT_PROTO_COMP		__BIT(7)
    187  1.28.30.1   thorpej #define SPPP_LCP_OPT_ADDR_COMP		__BIT(8)
    188  1.28.30.1   thorpej #define SPPP_LCP_OPT_FCS_ALTS		__BIT(9)
    189  1.28.30.1   thorpej #define SPPP_LCP_OPT_SELF_DESC_PAD	__BIT(10)
    190  1.28.30.1   thorpej #define SPPP_LCP_OPT_CALL_BACK		__BIT(13)
    191  1.28.30.1   thorpej #define SPPP_LCP_OPT_COMPOUND_FRMS	__BIT(15)
    192  1.28.30.1   thorpej #define SPPP_LCP_OPT_MP_MRRU		__BIT(17)
    193  1.28.30.1   thorpej #define SPPP_LCP_OPT_MP_SSNHF		__BIT(18)
    194  1.28.30.1   thorpej #define SPPP_LCP_OPT_MP_EID		__BIT(19)
    195  1.28.30.1   thorpej 
    196  1.28.30.1   thorpej /* #define SPPP_OPT_ADDRESSES	__BIT(0) */
    197  1.28.30.1   thorpej #define SPPP_IPCP_OPT_COMPRESSION	__BIT(1)
    198  1.28.30.1   thorpej #define SPPP_IPCP_OPT_ADDRESS		__BIT(2)
    199  1.28.30.1   thorpej #define SPPP_IPCP_OPT_PRIMDNS		__BIT(3)
    200  1.28.30.1   thorpej #define SPPP_IPCP_OPT_SECDNS		__BIT(4)
    201  1.28.30.1   thorpej 
    202  1.28.30.1   thorpej #define SPPP_IPV6CP_OPT_IFID		__BIT(1)
    203  1.28.30.1   thorpej #define SPPP_IPV6CP_OPT_COMPRESSION	__BIT(2)
    204  1.28.30.1   thorpej 
    205  1.28.30.1   thorpej struct sppplcpstatus {
    206  1.28.30.1   thorpej 	char	ifname[IFNAMSIZ];
    207  1.28.30.1   thorpej 	int	state;
    208  1.28.30.1   thorpej 	int	timeout;
    209  1.28.30.1   thorpej 	u_long	opts;
    210  1.28.30.1   thorpej 	u_long	magic;
    211  1.28.30.1   thorpej 	u_long	mru;
    212  1.28.30.1   thorpej };
    213  1.28.30.1   thorpej 
    214  1.28.30.1   thorpej #define SPPPGETLCPSTATUS	_IOWR('i', 135, struct sppplcpstatus)
    215  1.28.30.1   thorpej 
    216  1.28.30.1   thorpej struct spppipcpstatus {
    217  1.28.30.1   thorpej 	char		ifname[IFNAMSIZ];
    218  1.28.30.1   thorpej 	int		state;
    219  1.28.30.1   thorpej 	u_long		opts;
    220  1.28.30.1   thorpej 	u_int32_t	myaddr;
    221  1.28.30.1   thorpej };
    222  1.28.30.1   thorpej 
    223  1.28.30.1   thorpej #define SPPPGETIPCPSTATUS	_IOWR('i', 136, struct spppipcpstatus)
    224  1.28.30.1   thorpej 
    225  1.28.30.1   thorpej struct spppipv6cpstatus {
    226  1.28.30.1   thorpej 	char		ifname[IFNAMSIZ];
    227  1.28.30.1   thorpej 	int		state;
    228  1.28.30.1   thorpej 	u_long		opts;
    229  1.28.30.1   thorpej 	u_int8_t	my_ifid[8];
    230  1.28.30.1   thorpej 	u_int8_t	his_ifid[8];
    231  1.28.30.1   thorpej };
    232  1.28.30.1   thorpej 
    233  1.28.30.1   thorpej #define SPPPGETIPV6CPSTATUS	_IOWR('i', 137, struct spppipv6cpstatus)
    234  1.28.30.1   thorpej 
    235       1.24      elad #endif /* !_NET_IF_SPPP_H_ */
    236       1.24      elad 
    237