Home | History | Annotate | Line # | Download | only in net
if_sppp.h revision 1.23.16.2
      1  1.23.16.2      yamt /*	$NetBSD: if_sppp.h,v 1.23.16.2 2008/02/27 08:37:00 yamt 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.17    martin  * 3. All advertising materials mentioning features or use of this software
     19       1.17    martin  *    must display the following acknowledgement:
     20       1.17    martin  *        This product includes software developed by the NetBSD
     21       1.17    martin  *        Foundation, Inc. and its contributors.
     22       1.17    martin  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23       1.17    martin  *    contributors may be used to endorse or promote products derived
     24       1.17    martin  *    from this software without specific prior written permission.
     25       1.12    martin  *
     26       1.17    martin  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27       1.17    martin  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28       1.17    martin  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29       1.17    martin  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30       1.17    martin  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31       1.17    martin  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32       1.17    martin  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33       1.17    martin  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34       1.17    martin  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35       1.17    martin  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36       1.17    martin  * POSSIBILITY OF SUCH DAMAGE.
     37        1.1  explorer  */
     38        1.1  explorer 
     39  1.23.16.1      yamt #ifndef _NET_IF_SPPP_H_
     40  1.23.16.1      yamt #define _NET_IF_SPPP_H_
     41  1.23.16.1      yamt 
     42       1.12    martin /* ioctls used by the if_spppsubr.c driver */
     43        1.3  explorer 
     44       1.12    martin #define	SPPP_AUTHPROTO_NONE	0
     45       1.12    martin #define SPPP_AUTHPROTO_PAP	1
     46       1.12    martin #define SPPP_AUTHPROTO_CHAP	2
     47       1.12    martin 
     48       1.12    martin #define SPPP_AUTHFLAG_NOCALLOUT		1	/* do not require authentication on */
     49       1.12    martin 						/* callouts */
     50       1.12    martin #define SPPP_AUTHFLAG_NORECHALLENGE	2	/* do not re-challenge CHAP */
     51       1.12    martin 
     52       1.12    martin struct spppauthcfg {
     53       1.12    martin 	char	ifname[IFNAMSIZ];	/* pppoe interface name */
     54       1.15    martin 	u_int	hisauth;		/* one of SPPP_AUTHPROTO_* above */
     55       1.15    martin 	u_int	myauth;			/* one of SPPP_AUTHPROTO_* above */
     56       1.15    martin 	u_int	myname_length;		/* includes terminating 0 */
     57       1.15    martin 	u_int	mysecret_length;	/* includes terminating 0 */
     58       1.15    martin 	u_int	hisname_length;		/* includes terminating 0 */
     59       1.15    martin 	u_int	hissecret_length;	/* includes terminating 0 */
     60       1.15    martin 	u_int	myauthflags;
     61       1.15    martin 	u_int	hisauthflags;
     62       1.12    martin 	char	*myname;
     63       1.12    martin 	char	*mysecret;
     64       1.12    martin 	char	*hisname;
     65       1.12    martin 	char	*hissecret;
     66       1.12    martin };
     67       1.12    martin 
     68       1.12    martin #define	SPPPGETAUTHCFG	_IOWR('i', 120, struct spppauthcfg)
     69       1.12    martin #define	SPPPSETAUTHCFG	_IOW('i', 121, struct spppauthcfg)
     70       1.12    martin 
     71       1.12    martin struct sppplcpcfg {
     72       1.12    martin 	char	ifname[IFNAMSIZ];	/* pppoe interface name */
     73       1.12    martin 	int	lcp_timeout;		/* LCP timeout, in ticks */
     74        1.1  explorer };
     75        1.1  explorer 
     76       1.12    martin #define	SPPPGETLCPCFG	_IOWR('i', 122, struct sppplcpcfg)
     77       1.12    martin #define	SPPPSETLCPCFG	_IOW('i', 123, struct sppplcpcfg)
     78        1.3  explorer 
     79        1.3  explorer /*
     80        1.3  explorer  * Don't change the order of this.  Ordering the phases this way allows
     81        1.3  explorer  * for a comparision of ``pp_phase >= PHASE_AUTHENTICATE'' in order to
     82        1.3  explorer  * know whether LCP is up.
     83        1.3  explorer  */
     84       1.12    martin #define	SPPP_PHASE_DEAD		0
     85       1.12    martin #define	SPPP_PHASE_ESTABLISH	1
     86       1.12    martin #define	SPPP_PHASE_TERMINATE	2
     87       1.12    martin #define	SPPP_PHASE_AUTHENTICATE	3
     88       1.12    martin #define	SPPP_PHASE_NETWORK	4
     89       1.12    martin 
     90       1.12    martin struct spppstatus {
     91       1.12    martin 	char	ifname[IFNAMSIZ];	/* pppoe interface name */
     92       1.12    martin 	int	phase;			/* one of SPPP_PHASE_* above */
     93        1.1  explorer };
     94        1.1  explorer 
     95       1.12    martin #define	SPPPGETSTATUS	_IOWR('i', 124, struct spppstatus)
     96       1.13    martin 
     97       1.23    martin struct spppstatusncp {
     98       1.23    martin 	char	ifname[IFNAMSIZ];	/* pppoe interface name */
     99       1.23    martin 	int	phase;			/* one of SPPP_PHASE_* above */
    100       1.23    martin 	int	ncpup;			/* != 0 if at least on NCP is up */
    101       1.23    martin };
    102       1.23    martin 
    103       1.23    martin #define	SPPPGETSTATUSNCP	_IOWR('i', 134, struct spppstatusncp)
    104       1.23    martin 
    105       1.13    martin struct spppidletimeout {
    106       1.13    martin 	char	ifname[IFNAMSIZ];	/* pppoe interface name */
    107       1.13    martin 	time_t	idle_seconds;		/* number of seconds idle before
    108       1.13    martin 					 * disconnect, 0 to disable idle-timeout */
    109       1.13    martin };
    110       1.13    martin 
    111       1.21    martin #define	SPPPGETIDLETO	_IOWR('i', 125, struct spppidletimeout)
    112       1.21    martin #define	SPPPSETIDLETO	_IOW('i', 126, struct spppidletimeout)
    113       1.14    martin 
    114       1.14    martin struct spppauthfailurestats {
    115       1.14    martin 	char	ifname[IFNAMSIZ];	/* pppoe interface name */
    116       1.18       wiz 	int	auth_failures;		/* number of LCP failures since last successful TLU */
    117       1.14    martin 	int	max_failures;		/* max. allowed authorization failures */
    118       1.14    martin };
    119       1.14    martin 
    120       1.14    martin #define	SPPPGETAUTHFAILURES	_IOWR('i', 127, struct spppauthfailurestats)
    121       1.14    martin 
    122       1.14    martin struct spppauthfailuresettings {
    123       1.14    martin 	char	ifname[IFNAMSIZ];	/* pppoe interface name */
    124       1.14    martin 	int	max_failures;		/* max. allowed authorization failures */
    125       1.14    martin };
    126       1.14    martin #define	SPPPSETAUTHFAILURE	_IOW('i', 128, struct spppauthfailuresettings)
    127       1.16    martin 
    128       1.16    martin /* set the DNS options we would like to query during PPP negotiation */
    129       1.16    martin struct spppdnssettings {
    130       1.16    martin 	char	ifname[IFNAMSIZ];	/* pppoe interface name */
    131       1.16    martin 	int	query_dns;		/* bitmask (bits 0 and 1) for DNS options to query in IPCP */
    132       1.16    martin };
    133       1.16    martin #define	SPPPSETDNSOPTS		_IOW('i', 129, struct spppdnssettings)
    134       1.16    martin #define	SPPPGETDNSOPTS		_IOWR('i', 130, struct spppdnssettings)
    135       1.16    martin 
    136       1.16    martin /* get the DNS addresses we received from the peer */
    137       1.16    martin struct spppdnsaddrs {
    138       1.16    martin 	char	ifname[IFNAMSIZ];	/* pppoe interface name */
    139  1.23.16.2      yamt 	uint32_t dns[2];		/* IP addresses */
    140       1.16    martin };
    141       1.16    martin 
    142       1.16    martin #define SPPPGETDNSADDRS		_IOWR('i', 131, struct spppdnsaddrs)
    143       1.19    martin 
    144       1.19    martin /* set LCP keepalive/timeout options */
    145       1.19    martin struct spppkeepalivesettings {
    146       1.19    martin 	char	ifname[IFNAMSIZ];	/* pppoe interface name */
    147       1.19    martin 	u_int	maxalive;		/* number of LCP echo req. w/o reply */
    148       1.19    martin 	time_t	max_noreceive;		/* (sec.) grace period before we start
    149       1.19    martin 					   sending LCP echo requests. */
    150       1.19    martin };
    151       1.20    martin #define	SPPPSETKEEPALIVE	_IOW('i', 132, struct spppkeepalivesettings)
    152       1.20    martin #define	SPPPGETKEEPALIVE	_IOWR('i', 133, struct spppkeepalivesettings)
    153       1.19    martin 
    154       1.23    martin /* 134 already used! */
    155  1.23.16.1      yamt 
    156  1.23.16.1      yamt #endif /* !_NET_IF_SPPP_H_ */
    157  1.23.16.1      yamt 
    158