ppp_defs.h revision 1.5.12.1 1 1.5.12.1 itojun /* $NetBSD: ppp_defs.h,v 1.5.12.1 1999/06/28 06:36:57 itojun Exp $ */
2 1.3 christos /* Id: ppp_defs.h,v 1.11 1997/04/30 05:46:24 paulus Exp */
3 1.1 paulus
4 1.1 paulus /*
5 1.5.12.1 itojun * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
6 1.5.12.1 itojun * All rights reserved.
7 1.5.12.1 itojun *
8 1.5.12.1 itojun * Redistribution and use in source and binary forms, with or without
9 1.5.12.1 itojun * modification, are permitted provided that the following conditions
10 1.5.12.1 itojun * are met:
11 1.5.12.1 itojun * 1. Redistributions of source code must retain the above copyright
12 1.5.12.1 itojun * notice, this list of conditions and the following disclaimer.
13 1.5.12.1 itojun * 2. Redistributions in binary form must reproduce the above copyright
14 1.5.12.1 itojun * notice, this list of conditions and the following disclaimer in the
15 1.5.12.1 itojun * documentation and/or other materials provided with the distribution.
16 1.5.12.1 itojun * 3. Neither the name of the project nor the names of its contributors
17 1.5.12.1 itojun * may be used to endorse or promote products derived from this software
18 1.5.12.1 itojun * without specific prior written permission.
19 1.5.12.1 itojun *
20 1.5.12.1 itojun * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
21 1.5.12.1 itojun * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 1.5.12.1 itojun * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 1.5.12.1 itojun * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
24 1.5.12.1 itojun * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 1.5.12.1 itojun * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 1.5.12.1 itojun * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 1.5.12.1 itojun * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 1.5.12.1 itojun * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 1.5.12.1 itojun * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 1.5.12.1 itojun * SUCH DAMAGE.
31 1.5.12.1 itojun */
32 1.5.12.1 itojun
33 1.5.12.1 itojun /*
34 1.1 paulus * ppp_defs.h - PPP definitions.
35 1.1 paulus *
36 1.1 paulus * Copyright (c) 1994 The Australian National University.
37 1.1 paulus * All rights reserved.
38 1.1 paulus *
39 1.1 paulus * Permission to use, copy, modify, and distribute this software and its
40 1.1 paulus * documentation is hereby granted, provided that the above copyright
41 1.1 paulus * notice appears in all copies. This software is provided without any
42 1.1 paulus * warranty, express or implied. The Australian National University
43 1.1 paulus * makes no representations about the suitability of this software for
44 1.1 paulus * any purpose.
45 1.1 paulus *
46 1.1 paulus * IN NO EVENT SHALL THE AUSTRALIAN NATIONAL UNIVERSITY BE LIABLE TO ANY
47 1.1 paulus * PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
48 1.1 paulus * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF
49 1.1 paulus * THE AUSTRALIAN NATIONAL UNIVERSITY HAVE BEEN ADVISED OF THE POSSIBILITY
50 1.1 paulus * OF SUCH DAMAGE.
51 1.1 paulus *
52 1.1 paulus * THE AUSTRALIAN NATIONAL UNIVERSITY SPECIFICALLY DISCLAIMS ANY WARRANTIES,
53 1.1 paulus * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
54 1.1 paulus * AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
55 1.1 paulus * ON AN "AS IS" BASIS, AND THE AUSTRALIAN NATIONAL UNIVERSITY HAS NO
56 1.1 paulus * OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS,
57 1.1 paulus * OR MODIFICATIONS.
58 1.1 paulus */
59 1.1 paulus
60 1.4 perry #ifndef _NET_PPP_DEFS_H_
61 1.4 perry #define _NET_PPP_DEFS_H_
62 1.1 paulus
63 1.1 paulus /*
64 1.1 paulus * The basic PPP frame.
65 1.1 paulus */
66 1.1 paulus #define PPP_HDRLEN 4 /* octets for standard ppp header */
67 1.1 paulus #define PPP_FCSLEN 2 /* octets for FCS */
68 1.3 christos
69 1.3 christos /*
70 1.3 christos * Packet sizes
71 1.3 christos *
72 1.3 christos * Note - lcp shouldn't be allowed to negotiate stuff outside these
73 1.3 christos * limits. See lcp.h in the pppd directory.
74 1.3 christos * (XXX - these constants should simply be shared by lcp.c instead
75 1.3 christos * of living in lcp.h)
76 1.3 christos */
77 1.3 christos #define PPP_MTU 1500 /* Default MTU (size of Info field) */
78 1.3 christos #define PPP_MAXMTU 65535 - (PPP_HDRLEN + PPP_FCSLEN)
79 1.3 christos #define PPP_MINMTU 64
80 1.1 paulus #define PPP_MRU 1500 /* default MRU = max length of info field */
81 1.3 christos #define PPP_MAXMRU 65000 /* Largest MRU we allow */
82 1.3 christos #define PPP_MINMRU 128
83 1.1 paulus
84 1.1 paulus #define PPP_ADDRESS(p) (((u_char *)(p))[0])
85 1.1 paulus #define PPP_CONTROL(p) (((u_char *)(p))[1])
86 1.1 paulus #define PPP_PROTOCOL(p) ((((u_char *)(p))[2] << 8) + ((u_char *)(p))[3])
87 1.1 paulus
88 1.1 paulus /*
89 1.1 paulus * Significant octet values.
90 1.1 paulus */
91 1.1 paulus #define PPP_ALLSTATIONS 0xff /* All-Stations broadcast address */
92 1.1 paulus #define PPP_UI 0x03 /* Unnumbered Information */
93 1.1 paulus #define PPP_FLAG 0x7e /* Flag Sequence */
94 1.1 paulus #define PPP_ESCAPE 0x7d /* Asynchronous Control Escape */
95 1.1 paulus #define PPP_TRANS 0x20 /* Asynchronous transparency modifier */
96 1.1 paulus
97 1.1 paulus /*
98 1.1 paulus * Protocol field values.
99 1.1 paulus */
100 1.1 paulus #define PPP_IP 0x21 /* Internet Protocol */
101 1.2 christos #define PPP_AT 0x29 /* AppleTalk Protocol */
102 1.5 christos #define PPP_IPX 0x2b /* IPX protocol */
103 1.1 paulus #define PPP_VJC_COMP 0x2d /* VJ compressed TCP */
104 1.1 paulus #define PPP_VJC_UNCOMP 0x2f /* VJ uncompressed TCP */
105 1.5 christos #define PPP_IPV6 0x57 /* Internet Protocol Version 6 */
106 1.1 paulus #define PPP_COMP 0xfd /* compressed packet */
107 1.1 paulus #define PPP_IPCP 0x8021 /* IP Control Protocol */
108 1.2 christos #define PPP_ATCP 0x8029 /* AppleTalk Control Protocol */
109 1.5 christos #define PPP_IPXCP 0x802b /* IPX Control Protocol */
110 1.5.12.1 itojun #define PPP_IPV6CP 0x8057 /* IPv6 Control Protocol */
111 1.1 paulus #define PPP_CCP 0x80fd /* Compression Control Protocol */
112 1.1 paulus #define PPP_LCP 0xc021 /* Link Control Protocol */
113 1.1 paulus #define PPP_PAP 0xc023 /* Password Authentication Protocol */
114 1.1 paulus #define PPP_LQR 0xc025 /* Link Quality Report protocol */
115 1.1 paulus #define PPP_CHAP 0xc223 /* Cryptographic Handshake Auth. Protocol */
116 1.2 christos #define PPP_CBCP 0xc029 /* Callback Control Protocol */
117 1.1 paulus
118 1.1 paulus /*
119 1.1 paulus * Values for FCS calculations.
120 1.1 paulus */
121 1.1 paulus #define PPP_INITFCS 0xffff /* Initial FCS value */
122 1.1 paulus #define PPP_GOODFCS 0xf0b8 /* Good final FCS value */
123 1.1 paulus #define PPP_FCS(fcs, c) (((fcs) >> 8) ^ fcstab[((fcs) ^ (c)) & 0xff])
124 1.1 paulus
125 1.1 paulus /*
126 1.1 paulus * A 32-bit unsigned integral type.
127 1.1 paulus */
128 1.2 christos #if !defined(__BIT_TYPES_DEFINED__) && !defined(_BITYPES) && !defined(__FreeBSD__)
129 1.1 paulus #ifdef UINT32_T
130 1.1 paulus typedef UINT32_T u_int32_t;
131 1.1 paulus #else
132 1.1 paulus typedef unsigned int u_int32_t;
133 1.1 paulus #endif
134 1.1 paulus #endif
135 1.1 paulus
136 1.1 paulus /*
137 1.1 paulus * Extended asyncmap - allows any character to be escaped.
138 1.1 paulus */
139 1.1 paulus typedef u_int32_t ext_accm[8];
140 1.1 paulus
141 1.1 paulus /*
142 1.1 paulus * What to do with network protocol (NP) packets.
143 1.1 paulus */
144 1.1 paulus enum NPmode {
145 1.1 paulus NPMODE_PASS, /* pass the packet through */
146 1.1 paulus NPMODE_DROP, /* silently drop the packet */
147 1.1 paulus NPMODE_ERROR, /* return an error */
148 1.1 paulus NPMODE_QUEUE /* save it up for later. */
149 1.1 paulus };
150 1.1 paulus
151 1.1 paulus /*
152 1.1 paulus * Statistics.
153 1.1 paulus */
154 1.1 paulus struct pppstat {
155 1.2 christos unsigned int ppp_ibytes; /* bytes received */
156 1.2 christos unsigned int ppp_ipackets; /* packets received */
157 1.2 christos unsigned int ppp_ierrors; /* receive errors */
158 1.2 christos unsigned int ppp_obytes; /* bytes sent */
159 1.2 christos unsigned int ppp_opackets; /* packets sent */
160 1.2 christos unsigned int ppp_oerrors; /* transmit errors */
161 1.1 paulus };
162 1.1 paulus
163 1.1 paulus struct vjstat {
164 1.2 christos unsigned int vjs_packets; /* outbound packets */
165 1.2 christos unsigned int vjs_compressed; /* outbound compressed packets */
166 1.2 christos unsigned int vjs_searches; /* searches for connection state */
167 1.2 christos unsigned int vjs_misses; /* times couldn't find conn. state */
168 1.2 christos unsigned int vjs_uncompressedin; /* inbound uncompressed packets */
169 1.2 christos unsigned int vjs_compressedin; /* inbound compressed packets */
170 1.2 christos unsigned int vjs_errorin; /* inbound unknown type packets */
171 1.2 christos unsigned int vjs_tossed; /* inbound packets tossed because of error */
172 1.1 paulus };
173 1.1 paulus
174 1.1 paulus struct ppp_stats {
175 1.2 christos struct pppstat p; /* basic PPP statistics */
176 1.2 christos struct vjstat vj; /* VJ header compression statistics */
177 1.1 paulus };
178 1.1 paulus
179 1.1 paulus struct compstat {
180 1.2 christos unsigned int unc_bytes; /* total uncompressed bytes */
181 1.2 christos unsigned int unc_packets; /* total uncompressed packets */
182 1.2 christos unsigned int comp_bytes; /* compressed bytes */
183 1.2 christos unsigned int comp_packets; /* compressed packets */
184 1.2 christos unsigned int inc_bytes; /* incompressible bytes */
185 1.2 christos unsigned int inc_packets; /* incompressible packets */
186 1.2 christos unsigned int ratio; /* recent compression ratio << 8 */
187 1.1 paulus };
188 1.1 paulus
189 1.1 paulus struct ppp_comp_stats {
190 1.2 christos struct compstat c; /* packet compression statistics */
191 1.2 christos struct compstat d; /* packet decompression statistics */
192 1.1 paulus };
193 1.1 paulus
194 1.1 paulus /*
195 1.1 paulus * The following structure records the time in seconds since
196 1.1 paulus * the last NP packet was sent or received.
197 1.1 paulus */
198 1.1 paulus struct ppp_idle {
199 1.1 paulus time_t xmit_idle; /* time since last NP packet sent */
200 1.1 paulus time_t recv_idle; /* time since last NP packet received */
201 1.1 paulus };
202 1.1 paulus
203 1.1 paulus #ifndef __P
204 1.1 paulus #ifdef __STDC__
205 1.1 paulus #define __P(x) x
206 1.1 paulus #else
207 1.1 paulus #define __P(x) ()
208 1.1 paulus #endif
209 1.1 paulus #endif
210 1.1 paulus
211 1.4 perry #endif /* _NET_PPP_DEFS_H_ */
212