Home | History | Annotate | Line # | Download | only in net
if_sppp.h revision 1.26.22.1
      1  1.26.22.1     rmind /*	$NetBSD: if_sppp.h,v 1.26.22.1 2010/05/30 05:18:01 rmind 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.12    martin #define	SPPP_AUTHPROTO_NONE	0
     38       1.12    martin #define SPPP_AUTHPROTO_PAP	1
     39       1.12    martin #define SPPP_AUTHPROTO_CHAP	2
     40       1.12    martin 
     41       1.12    martin #define SPPP_AUTHFLAG_NOCALLOUT		1	/* do not require authentication on */
     42       1.12    martin 						/* callouts */
     43       1.12    martin #define SPPP_AUTHFLAG_NORECHALLENGE	2	/* do not re-challenge CHAP */
     44       1.12    martin 
     45       1.12    martin struct spppauthcfg {
     46       1.12    martin 	char	ifname[IFNAMSIZ];	/* pppoe interface name */
     47       1.15    martin 	u_int	hisauth;		/* one of SPPP_AUTHPROTO_* above */
     48       1.15    martin 	u_int	myauth;			/* one of SPPP_AUTHPROTO_* above */
     49       1.15    martin 	u_int	myname_length;		/* includes terminating 0 */
     50       1.15    martin 	u_int	mysecret_length;	/* includes terminating 0 */
     51       1.15    martin 	u_int	hisname_length;		/* includes terminating 0 */
     52       1.15    martin 	u_int	hissecret_length;	/* includes terminating 0 */
     53       1.15    martin 	u_int	myauthflags;
     54       1.15    martin 	u_int	hisauthflags;
     55       1.12    martin 	char	*myname;
     56       1.12    martin 	char	*mysecret;
     57       1.12    martin 	char	*hisname;
     58       1.12    martin 	char	*hissecret;
     59       1.12    martin };
     60       1.12    martin 
     61       1.12    martin #define	SPPPGETAUTHCFG	_IOWR('i', 120, struct spppauthcfg)
     62       1.12    martin #define	SPPPSETAUTHCFG	_IOW('i', 121, struct spppauthcfg)
     63       1.12    martin 
     64       1.12    martin struct sppplcpcfg {
     65       1.12    martin 	char	ifname[IFNAMSIZ];	/* pppoe interface name */
     66       1.12    martin 	int	lcp_timeout;		/* LCP timeout, in ticks */
     67        1.1  explorer };
     68        1.1  explorer 
     69       1.12    martin #define	SPPPGETLCPCFG	_IOWR('i', 122, struct sppplcpcfg)
     70       1.12    martin #define	SPPPSETLCPCFG	_IOW('i', 123, struct sppplcpcfg)
     71        1.3  explorer 
     72        1.3  explorer /*
     73        1.3  explorer  * Don't change the order of this.  Ordering the phases this way allows
     74        1.3  explorer  * for a comparision of ``pp_phase >= PHASE_AUTHENTICATE'' in order to
     75        1.3  explorer  * know whether LCP is up.
     76        1.3  explorer  */
     77       1.12    martin #define	SPPP_PHASE_DEAD		0
     78       1.12    martin #define	SPPP_PHASE_ESTABLISH	1
     79       1.12    martin #define	SPPP_PHASE_TERMINATE	2
     80       1.12    martin #define	SPPP_PHASE_AUTHENTICATE	3
     81       1.12    martin #define	SPPP_PHASE_NETWORK	4
     82       1.12    martin 
     83       1.12    martin struct spppstatus {
     84       1.12    martin 	char	ifname[IFNAMSIZ];	/* pppoe interface name */
     85       1.12    martin 	int	phase;			/* one of SPPP_PHASE_* above */
     86        1.1  explorer };
     87        1.1  explorer 
     88       1.12    martin #define	SPPPGETSTATUS	_IOWR('i', 124, struct spppstatus)
     89       1.13    martin 
     90       1.23    martin struct spppstatusncp {
     91       1.23    martin 	char	ifname[IFNAMSIZ];	/* pppoe interface name */
     92       1.23    martin 	int	phase;			/* one of SPPP_PHASE_* above */
     93       1.23    martin 	int	ncpup;			/* != 0 if at least on NCP is up */
     94       1.23    martin };
     95       1.23    martin 
     96       1.23    martin #define	SPPPGETSTATUSNCP	_IOWR('i', 134, struct spppstatusncp)
     97       1.23    martin 
     98       1.13    martin struct spppidletimeout {
     99       1.13    martin 	char	ifname[IFNAMSIZ];	/* pppoe interface name */
    100       1.13    martin 	time_t	idle_seconds;		/* number of seconds idle before
    101       1.13    martin 					 * disconnect, 0 to disable idle-timeout */
    102       1.13    martin };
    103       1.13    martin 
    104  1.26.22.1     rmind struct spppidletimeout50 {
    105  1.26.22.1     rmind 	char	ifname[IFNAMSIZ];	/* pppoe interface name */
    106  1.26.22.1     rmind 	uint32_t idle_seconds;		/* number of seconds idle before
    107  1.26.22.1     rmind 					 * disconnect, 0 to disable idle-timeout */
    108  1.26.22.1     rmind };
    109  1.26.22.1     rmind 
    110       1.21    martin #define	SPPPGETIDLETO	_IOWR('i', 125, struct spppidletimeout)
    111       1.21    martin #define	SPPPSETIDLETO	_IOW('i', 126, struct spppidletimeout)
    112  1.26.22.1     rmind #define	__SPPPGETIDLETO50	_IOWR('i', 125, struct spppidletimeout50)
    113  1.26.22.1     rmind #define	__SPPPSETIDLETO50	_IOW('i', 126, struct spppidletimeout50)
    114       1.14    martin 
    115       1.14    martin struct spppauthfailurestats {
    116       1.14    martin 	char	ifname[IFNAMSIZ];	/* pppoe interface name */
    117       1.18       wiz 	int	auth_failures;		/* number of LCP failures since last successful TLU */
    118       1.14    martin 	int	max_failures;		/* max. allowed authorization failures */
    119       1.14    martin };
    120       1.14    martin 
    121       1.14    martin #define	SPPPGETAUTHFAILURES	_IOWR('i', 127, struct spppauthfailurestats)
    122       1.14    martin 
    123       1.14    martin struct spppauthfailuresettings {
    124       1.14    martin 	char	ifname[IFNAMSIZ];	/* pppoe interface name */
    125       1.14    martin 	int	max_failures;		/* max. allowed authorization failures */
    126       1.14    martin };
    127       1.14    martin #define	SPPPSETAUTHFAILURE	_IOW('i', 128, struct spppauthfailuresettings)
    128       1.16    martin 
    129       1.16    martin /* set the DNS options we would like to query during PPP negotiation */
    130       1.16    martin struct spppdnssettings {
    131       1.16    martin 	char	ifname[IFNAMSIZ];	/* pppoe interface name */
    132       1.16    martin 	int	query_dns;		/* bitmask (bits 0 and 1) for DNS options to query in IPCP */
    133       1.16    martin };
    134       1.16    martin #define	SPPPSETDNSOPTS		_IOW('i', 129, struct spppdnssettings)
    135       1.16    martin #define	SPPPGETDNSOPTS		_IOWR('i', 130, struct spppdnssettings)
    136       1.16    martin 
    137       1.16    martin /* get the DNS addresses we received from the peer */
    138       1.16    martin struct spppdnsaddrs {
    139       1.16    martin 	char	ifname[IFNAMSIZ];	/* pppoe interface name */
    140       1.25      matt 	uint32_t dns[2];		/* IP addresses */
    141       1.16    martin };
    142       1.16    martin 
    143       1.16    martin #define SPPPGETDNSADDRS		_IOWR('i', 131, struct spppdnsaddrs)
    144       1.19    martin 
    145       1.19    martin /* set LCP keepalive/timeout options */
    146       1.19    martin struct spppkeepalivesettings {
    147       1.19    martin 	char	ifname[IFNAMSIZ];	/* pppoe interface name */
    148       1.19    martin 	u_int	maxalive;		/* number of LCP echo req. w/o reply */
    149       1.19    martin 	time_t	max_noreceive;		/* (sec.) grace period before we start
    150       1.19    martin 					   sending LCP echo requests. */
    151       1.19    martin };
    152  1.26.22.1     rmind struct spppkeepalivesettings50 {
    153  1.26.22.1     rmind 	char	ifname[IFNAMSIZ];	/* pppoe interface name */
    154  1.26.22.1     rmind 	u_int	maxalive;		/* number of LCP echo req. w/o reply */
    155  1.26.22.1     rmind 	uint32_t max_noreceive;		/* (sec.) grace period before we start
    156  1.26.22.1     rmind 					   sending LCP echo requests. */
    157  1.26.22.1     rmind };
    158       1.20    martin #define	SPPPSETKEEPALIVE	_IOW('i', 132, struct spppkeepalivesettings)
    159       1.20    martin #define	SPPPGETKEEPALIVE	_IOWR('i', 133, struct spppkeepalivesettings)
    160  1.26.22.1     rmind #define	__SPPPSETKEEPALIVE50	_IOW('i', 132, struct spppkeepalivesettings50)
    161  1.26.22.1     rmind #define	__SPPPGETKEEPALIVE50	_IOWR('i', 133, struct spppkeepalivesettings50)
    162       1.19    martin 
    163       1.23    martin /* 134 already used! */
    164       1.24      elad 
    165       1.24      elad #endif /* !_NET_IF_SPPP_H_ */
    166       1.24      elad 
    167