2003-11-28 11:56:48 +03:00
|
|
|
/* $NetBSD: if_sppp.h,v 1.22 2003/11/28 08:56:48 keihan Exp $ */
|
1999-04-04 10:57:03 +04:00
|
|
|
|
2002-04-14 16:24:26 +04:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 2002 The NetBSD Foundation, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
2003-11-28 11:56:48 +03:00
|
|
|
* by Martin Husemann <martin@NetBSD.org>.
|
1999-03-25 06:38:00 +03:00
|
|
|
*
|
2002-01-04 15:21:24 +03:00
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2002-04-14 16:24:26 +04:00
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the NetBSD
|
|
|
|
* Foundation, Inc. and its contributors.
|
|
|
|
* 4. Neither the name of The NetBSD Foundation nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
1999-04-04 10:07:56 +04:00
|
|
|
*
|
2002-04-14 16:24:26 +04:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
|
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
|
|
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
|
|
|
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
1999-03-25 06:38:00 +03:00
|
|
|
*/
|
|
|
|
|
2002-01-04 15:21:24 +03:00
|
|
|
/* ioctls used by the if_spppsubr.c driver */
|
|
|
|
|
|
|
|
#define SPPP_AUTHPROTO_NONE 0
|
|
|
|
#define SPPP_AUTHPROTO_PAP 1
|
|
|
|
#define SPPP_AUTHPROTO_CHAP 2
|
|
|
|
|
|
|
|
#define SPPP_AUTHFLAG_NOCALLOUT 1 /* do not require authentication on */
|
|
|
|
/* callouts */
|
|
|
|
#define SPPP_AUTHFLAG_NORECHALLENGE 2 /* do not re-challenge CHAP */
|
|
|
|
|
|
|
|
struct spppauthcfg {
|
|
|
|
char ifname[IFNAMSIZ]; /* pppoe interface name */
|
2002-01-15 15:28:08 +03:00
|
|
|
u_int hisauth; /* one of SPPP_AUTHPROTO_* above */
|
|
|
|
u_int myauth; /* one of SPPP_AUTHPROTO_* above */
|
|
|
|
u_int myname_length; /* includes terminating 0 */
|
|
|
|
u_int mysecret_length; /* includes terminating 0 */
|
|
|
|
u_int hisname_length; /* includes terminating 0 */
|
|
|
|
u_int hissecret_length; /* includes terminating 0 */
|
|
|
|
u_int myauthflags;
|
|
|
|
u_int hisauthflags;
|
2002-01-04 15:21:24 +03:00
|
|
|
char *myname;
|
|
|
|
char *mysecret;
|
|
|
|
char *hisname;
|
|
|
|
char *hissecret;
|
1999-03-25 06:38:00 +03:00
|
|
|
};
|
|
|
|
|
2002-01-04 15:21:24 +03:00
|
|
|
#define SPPPGETAUTHCFG _IOWR('i', 120, struct spppauthcfg)
|
|
|
|
#define SPPPSETAUTHCFG _IOW('i', 121, struct spppauthcfg)
|
1999-04-04 10:07:56 +04:00
|
|
|
|
2002-01-04 15:21:24 +03:00
|
|
|
struct sppplcpcfg {
|
|
|
|
char ifname[IFNAMSIZ]; /* pppoe interface name */
|
|
|
|
int lcp_timeout; /* LCP timeout, in ticks */
|
1999-04-04 10:07:56 +04:00
|
|
|
};
|
|
|
|
|
2002-01-04 15:21:24 +03:00
|
|
|
#define SPPPGETLCPCFG _IOWR('i', 122, struct sppplcpcfg)
|
|
|
|
#define SPPPSETLCPCFG _IOW('i', 123, struct sppplcpcfg)
|
1999-04-04 10:07:56 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Don't change the order of this. Ordering the phases this way allows
|
|
|
|
* for a comparision of ``pp_phase >= PHASE_AUTHENTICATE'' in order to
|
|
|
|
* know whether LCP is up.
|
|
|
|
*/
|
2002-01-04 15:21:24 +03:00
|
|
|
#define SPPP_PHASE_DEAD 0
|
|
|
|
#define SPPP_PHASE_ESTABLISH 1
|
|
|
|
#define SPPP_PHASE_TERMINATE 2
|
|
|
|
#define SPPP_PHASE_AUTHENTICATE 3
|
|
|
|
#define SPPP_PHASE_NETWORK 4
|
|
|
|
|
|
|
|
struct spppstatus {
|
|
|
|
char ifname[IFNAMSIZ]; /* pppoe interface name */
|
|
|
|
int phase; /* one of SPPP_PHASE_* above */
|
1999-03-25 06:38:00 +03:00
|
|
|
};
|
|
|
|
|
2002-01-04 15:21:24 +03:00
|
|
|
#define SPPPGETSTATUS _IOWR('i', 124, struct spppstatus)
|
2002-01-06 23:14:29 +03:00
|
|
|
|
|
|
|
struct spppidletimeout {
|
|
|
|
char ifname[IFNAMSIZ]; /* pppoe interface name */
|
|
|
|
time_t idle_seconds; /* number of seconds idle before
|
|
|
|
* disconnect, 0 to disable idle-timeout */
|
|
|
|
};
|
|
|
|
|
2003-09-11 22:04:51 +04:00
|
|
|
#define SPPPGETIDLETO _IOWR('i', 125, struct spppidletimeout)
|
|
|
|
#define SPPPSETIDLETO _IOW('i', 126, struct spppidletimeout)
|
2002-01-07 13:49:02 +03:00
|
|
|
|
|
|
|
struct spppauthfailurestats {
|
|
|
|
char ifname[IFNAMSIZ]; /* pppoe interface name */
|
2003-01-06 15:46:05 +03:00
|
|
|
int auth_failures; /* number of LCP failures since last successful TLU */
|
2002-01-07 13:49:02 +03:00
|
|
|
int max_failures; /* max. allowed authorization failures */
|
|
|
|
};
|
|
|
|
|
|
|
|
#define SPPPGETAUTHFAILURES _IOWR('i', 127, struct spppauthfailurestats)
|
|
|
|
|
|
|
|
struct spppauthfailuresettings {
|
|
|
|
char ifname[IFNAMSIZ]; /* pppoe interface name */
|
|
|
|
int max_failures; /* max. allowed authorization failures */
|
|
|
|
};
|
|
|
|
#define SPPPSETAUTHFAILURE _IOW('i', 128, struct spppauthfailuresettings)
|
2002-03-02 19:23:42 +03:00
|
|
|
|
|
|
|
/* set the DNS options we would like to query during PPP negotiation */
|
|
|
|
struct spppdnssettings {
|
|
|
|
char ifname[IFNAMSIZ]; /* pppoe interface name */
|
|
|
|
int query_dns; /* bitmask (bits 0 and 1) for DNS options to query in IPCP */
|
|
|
|
};
|
|
|
|
#define SPPPSETDNSOPTS _IOW('i', 129, struct spppdnssettings)
|
|
|
|
#define SPPPGETDNSOPTS _IOWR('i', 130, struct spppdnssettings)
|
|
|
|
|
|
|
|
/* get the DNS addresses we received from the peer */
|
|
|
|
struct spppdnsaddrs {
|
|
|
|
char ifname[IFNAMSIZ]; /* pppoe interface name */
|
|
|
|
u_int32_t dns[2]; /* IP addresses */
|
|
|
|
};
|
|
|
|
|
|
|
|
#define SPPPGETDNSADDRS _IOWR('i', 131, struct spppdnsaddrs)
|
2003-09-04 00:48:46 +04:00
|
|
|
|
|
|
|
/* set LCP keepalive/timeout options */
|
|
|
|
struct spppkeepalivesettings {
|
|
|
|
char ifname[IFNAMSIZ]; /* pppoe interface name */
|
|
|
|
u_int maxalive; /* number of LCP echo req. w/o reply */
|
|
|
|
time_t max_noreceive; /* (sec.) grace period before we start
|
|
|
|
sending LCP echo requests. */
|
|
|
|
};
|
2003-09-06 03:13:15 +04:00
|
|
|
#define SPPPSETKEEPALIVE _IOW('i', 132, struct spppkeepalivesettings)
|
|
|
|
#define SPPPGETKEEPALIVE _IOWR('i', 133, struct spppkeepalivesettings)
|
2003-09-04 00:48:46 +04:00
|
|
|
|