2001-06-13 21:52:19 +00:00
|
|
|
/*-
|
2017-11-27 15:37:16 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause-FreeBSD
|
|
|
|
*
|
2001-06-13 21:52:19 +00:00
|
|
|
* Copyright (c) 1996 - 2001 Brian Somers <brian@Awfulhak.org>
|
|
|
|
* based on work by Toshiharu OHNO <tony-o@iij.ad.jp>
|
|
|
|
* Internet Initiative Japan, Inc (IIJ)
|
|
|
|
* All rights reserved.
|
1995-01-31 06:29:58 +00:00
|
|
|
*
|
2001-06-13 21:52:19 +00: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.
|
1995-01-31 06:29:58 +00:00
|
|
|
*
|
2001-06-13 21:52:19 +00:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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.
|
1995-01-31 06:29:58 +00:00
|
|
|
*
|
1999-08-28 01:35:59 +00:00
|
|
|
* $FreeBSD$
|
1995-01-31 06:29:58 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#define IPCP_MAXCODE CODE_CODEREJ
|
|
|
|
|
|
|
|
#define TY_IPADDRS 1
|
|
|
|
#define TY_COMPPROTO 2
|
|
|
|
#define TY_IPADDR 3
|
|
|
|
|
1998-01-29 23:11:44 +00:00
|
|
|
/* Domain NameServer and NetBIOS NameServer options */
|
1996-10-06 13:32:37 +00:00
|
|
|
|
|
|
|
#define TY_PRIMARY_DNS 129
|
|
|
|
#define TY_PRIMARY_NBNS 130
|
|
|
|
#define TY_SECONDARY_DNS 131
|
|
|
|
#define TY_SECONDARY_NBNS 132
|
1998-04-17 22:05:37 +00:00
|
|
|
#define TY_ADJUST_NS 119 /* subtract from NS val for REJECT bit */
|
1997-10-26 01:04:02 +00:00
|
|
|
|
1998-02-08 11:05:01 +00:00
|
|
|
struct ipcp {
|
1998-01-31 02:48:30 +00:00
|
|
|
struct fsm fsm; /* The finite state machine */
|
|
|
|
|
1998-02-21 01:45:26 +00:00
|
|
|
struct {
|
1998-04-16 00:26:21 +00:00
|
|
|
struct {
|
|
|
|
int slots; /* Maximum VJ slots */
|
|
|
|
unsigned slotcomp : 1; /* Slot compression */
|
|
|
|
unsigned neg : 2; /* VJ negotiation */
|
|
|
|
} vj;
|
1998-01-29 00:44:16 +00:00
|
|
|
|
2001-08-14 16:05:52 +00:00
|
|
|
struct ncprange my_range; /* MYADDR spec */
|
1999-01-28 01:56:34 +00:00
|
|
|
struct in_addr netmask; /* Iface netmask (unused by most OSs) */
|
2001-08-14 16:05:52 +00:00
|
|
|
struct ncprange peer_range; /* HISADDR spec */
|
1998-02-21 01:45:26 +00:00
|
|
|
struct iplist peer_list; /* Ranges of HISADDR values */
|
1998-01-29 00:44:16 +00:00
|
|
|
|
1998-02-21 01:45:26 +00:00
|
|
|
struct in_addr TriggerAddress; /* Address to suggest in REQ */
|
1998-04-05 19:02:49 +00:00
|
|
|
unsigned HaveTriggerAddress : 1; /* Trigger address specified */
|
1998-01-29 23:11:44 +00:00
|
|
|
|
1998-04-17 22:05:37 +00:00
|
|
|
struct {
|
|
|
|
struct in_addr dns[2]; /* DNS addresses offered */
|
|
|
|
unsigned dns_neg : 2; /* dns negotiation */
|
|
|
|
struct in_addr nbns[2]; /* NetBIOS NS addresses offered */
|
|
|
|
} ns;
|
|
|
|
|
2001-08-14 16:05:52 +00:00
|
|
|
struct fsm_retry fsm; /* frequency to resend requests */
|
1998-02-21 01:45:26 +00:00
|
|
|
} cfg;
|
1998-01-29 23:11:44 +00:00
|
|
|
|
1998-03-16 22:54:35 +00:00
|
|
|
struct {
|
|
|
|
struct slcompress cslc; /* VJ state */
|
|
|
|
struct slstat slstat; /* VJ statistics */
|
|
|
|
} vj;
|
|
|
|
|
2000-03-14 01:47:27 +00:00
|
|
|
struct {
|
|
|
|
unsigned resolver : 1; /* Found resolv.conf ? */
|
|
|
|
unsigned writable : 1; /* Can write resolv.conf ? */
|
|
|
|
struct in_addr dns[2]; /* Current DNS addresses */
|
|
|
|
char *resolv; /* Contents of resolv.conf */
|
|
|
|
char *resolv_nons; /* Contents of resolv.conf without ns */
|
|
|
|
} ns;
|
|
|
|
|
1998-04-05 19:02:49 +00:00
|
|
|
unsigned heis1172 : 1; /* True if he is speaking rfc1172 */
|
1998-02-21 01:45:26 +00:00
|
|
|
|
2001-07-28 11:32:08 +00:00
|
|
|
unsigned peer_req : 1; /* Any TY_IPADDR REQs from the peer ? */
|
1998-02-21 01:45:26 +00:00
|
|
|
struct in_addr peer_ip; /* IP address he's willing to use */
|
|
|
|
u_int32_t peer_compproto; /* VJ params he's willing to use */
|
1998-01-29 23:11:44 +00:00
|
|
|
|
1999-01-28 01:56:34 +00:00
|
|
|
struct in_addr ifmask; /* Interface netmask */
|
|
|
|
|
1998-02-21 01:45:26 +00:00
|
|
|
struct in_addr my_ip; /* IP address I'm willing to use */
|
|
|
|
u_int32_t my_compproto; /* VJ params I'm willing to use */
|
1998-01-29 23:11:44 +00:00
|
|
|
|
1998-02-21 01:45:26 +00:00
|
|
|
u_int32_t peer_reject; /* Request codes rejected by peer */
|
|
|
|
u_int32_t my_reject; /* Request codes I have rejected */
|
1998-01-29 23:11:44 +00:00
|
|
|
|
|
|
|
struct pppThroughput throughput; /* throughput statistics */
|
1999-09-07 14:34:55 +00:00
|
|
|
struct mqueue Queue[3]; /* Output packet queues */
|
1998-01-29 00:44:16 +00:00
|
|
|
};
|
|
|
|
|
1998-02-08 11:05:01 +00:00
|
|
|
#define fsm2ipcp(fp) (fp->proto == PROTO_IPCP ? (struct ipcp *)fp : NULL)
|
1999-09-04 00:00:21 +00:00
|
|
|
#define IPCP_QUEUES(ipcp) (sizeof ipcp->Queue / sizeof ipcp->Queue[0])
|
1998-02-06 02:24:29 +00:00
|
|
|
|
1998-04-07 00:54:26 +00:00
|
|
|
struct bundle;
|
|
|
|
struct link;
|
|
|
|
struct cmdargs;
|
2001-08-14 16:05:52 +00:00
|
|
|
struct iface_addr;
|
1998-04-07 00:54:26 +00:00
|
|
|
|
1998-04-23 18:56:21 +00:00
|
|
|
extern void ipcp_Init(struct ipcp *, struct bundle *, struct link *,
|
1998-02-27 01:22:39 +00:00
|
|
|
const struct fsm_parent *);
|
1999-09-04 00:00:21 +00:00
|
|
|
extern void ipcp_Destroy(struct ipcp *);
|
1999-01-28 01:56:34 +00:00
|
|
|
extern void ipcp_Setup(struct ipcp *, u_int32_t);
|
1998-04-23 18:56:21 +00:00
|
|
|
extern void ipcp_SetLink(struct ipcp *, struct link *);
|
1998-02-21 01:45:26 +00:00
|
|
|
|
1998-05-01 19:26:12 +00:00
|
|
|
extern int ipcp_Show(struct cmdargs const *);
|
1999-05-08 11:07:56 +00:00
|
|
|
extern struct mbuf *ipcp_Input(struct bundle *, struct link *, struct mbuf *);
|
1998-03-13 21:07:46 +00:00
|
|
|
extern void ipcp_AddInOctets(struct ipcp *, int);
|
|
|
|
extern void ipcp_AddOutOctets(struct ipcp *, int);
|
1999-01-28 01:56:34 +00:00
|
|
|
extern int ipcp_UseHisIPaddr(struct bundle *, struct in_addr);
|
1998-05-01 19:26:12 +00:00
|
|
|
extern int ipcp_UseHisaddr(struct bundle *, const char *, int);
|
|
|
|
extern int ipcp_vjset(struct cmdargs const *);
|
2001-08-14 16:05:52 +00:00
|
|
|
extern void ipcp_IfaceAddrAdded(struct ipcp *, const struct iface_addr *);
|
|
|
|
extern void ipcp_IfaceAddrDeleted(struct ipcp *, const struct iface_addr *);
|
1998-05-15 23:58:30 +00:00
|
|
|
extern int ipcp_InterfaceUp(struct ipcp *);
|
1999-03-03 23:00:41 +00:00
|
|
|
extern struct in_addr addr2mask(struct in_addr);
|
2000-03-14 01:47:27 +00:00
|
|
|
extern int ipcp_WriteDNS(struct ipcp *);
|
|
|
|
extern void ipcp_RestoreDNS(struct ipcp *);
|
|
|
|
extern void ipcp_LoadDNS(struct ipcp *);
|
2001-08-14 16:05:52 +00:00
|
|
|
extern size_t ipcp_QueueLen(struct ipcp *);
|
|
|
|
extern int ipcp_PushPacket(struct ipcp *, struct link *);
|