1 | /* SPDX-License-Identifier: BSD-3-Clause */
|
---|
2 | /*
|
---|
3 | * Copyright (c) 1982, 1986, 1993
|
---|
4 | * The Regents of the University of California. All rights reserved.
|
---|
5 | *
|
---|
6 | * Redistribution and use in source and binary forms, with or without
|
---|
7 | * modification, are permitted provided that the following conditions
|
---|
8 | * are met:
|
---|
9 | * 1. Redistributions of source code must retain the above copyright
|
---|
10 | * notice, this list of conditions and the following disclaimer.
|
---|
11 | * 2. Redistributions in binary form must reproduce the above copyright
|
---|
12 | * notice, this list of conditions and the following disclaimer in the
|
---|
13 | * documentation and/or other materials provided with the distribution.
|
---|
14 | * 3. Neither the name of the University nor the names of its contributors
|
---|
15 | * may be used to endorse or promote products derived from this software
|
---|
16 | * without specific prior written permission.
|
---|
17 | *
|
---|
18 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
---|
19 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
---|
20 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
---|
21 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
---|
22 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
---|
23 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
---|
24 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
---|
25 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
---|
26 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
---|
27 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
---|
28 | * SUCH DAMAGE.
|
---|
29 | *
|
---|
30 | * @(#)ip.h 8.1 (Berkeley) 6/10/93
|
---|
31 | * ip.h,v 1.3 1994/08/21 05:27:30 paul Exp
|
---|
32 | */
|
---|
33 |
|
---|
34 | #ifndef IP_H
|
---|
35 | #define IP_H
|
---|
36 |
|
---|
37 | #include <glib.h>
|
---|
38 |
|
---|
39 | #if G_BYTE_ORDER == G_BIG_ENDIAN
|
---|
40 | #undef NTOHL
|
---|
41 | #undef NTOHS
|
---|
42 | #undef HTONL
|
---|
43 | #undef HTONS
|
---|
44 | #define NTOHL(d)
|
---|
45 | #define NTOHS(d)
|
---|
46 | #define HTONL(d)
|
---|
47 | #define HTONS(d)
|
---|
48 | #else
|
---|
49 | #ifndef NTOHL
|
---|
50 | #define NTOHL(d) ((d) = ntohl((d)))
|
---|
51 | #endif
|
---|
52 | #ifndef NTOHS
|
---|
53 | #define NTOHS(d) ((d) = ntohs((uint16_t)(d)))
|
---|
54 | #endif
|
---|
55 | #ifndef HTONL
|
---|
56 | #define HTONL(d) ((d) = htonl((d)))
|
---|
57 | #endif
|
---|
58 | #ifndef HTONS
|
---|
59 | #define HTONS(d) ((d) = htons((uint16_t)(d)))
|
---|
60 | #endif
|
---|
61 | #endif
|
---|
62 |
|
---|
63 | typedef uint32_t n_long; /* long as received from the net */
|
---|
64 |
|
---|
65 | /*
|
---|
66 | * Definitions for internet protocol version 4.
|
---|
67 | * Per RFC 791, September 1981.
|
---|
68 | */
|
---|
69 | #define IPVERSION 4
|
---|
70 |
|
---|
71 | /*
|
---|
72 | * Structure of an internet header, naked of options.
|
---|
73 | */
|
---|
74 | SLIRP_PACKED_BEGIN
|
---|
75 | struct ip {
|
---|
76 | #if (G_BYTE_ORDER == G_BIG_ENDIAN) && !defined(_MSC_VER)
|
---|
77 | uint8_t ip_v : 4, /* version */
|
---|
78 | ip_hl : 4; /* header length */
|
---|
79 | #else
|
---|
80 | uint8_t ip_hl : 4, /* header length */
|
---|
81 | ip_v : 4; /* version */
|
---|
82 | #endif
|
---|
83 | uint8_t ip_tos; /* type of service */
|
---|
84 | uint16_t ip_len; /* total length */
|
---|
85 | uint16_t ip_id; /* identification */
|
---|
86 | uint16_t ip_off; /* fragment offset field */
|
---|
87 | #define IP_DF 0x4000 /* don't fragment flag */
|
---|
88 | #define IP_MF 0x2000 /* more fragments flag */
|
---|
89 | #define IP_OFFMASK 0x1fff /* mask for fragmenting bits */
|
---|
90 | uint8_t ip_ttl; /* time to live */
|
---|
91 | uint8_t ip_p; /* protocol */
|
---|
92 | uint16_t ip_sum; /* checksum */
|
---|
93 | struct in_addr ip_src, ip_dst; /* source and dest address */
|
---|
94 | } SLIRP_PACKED_END;
|
---|
95 |
|
---|
96 | #define IP_MAXPACKET 65535 /* maximum packet size */
|
---|
97 |
|
---|
98 | /*
|
---|
99 | * Definitions for IP type of service (ip_tos)
|
---|
100 | */
|
---|
101 | #define IPTOS_LOWDELAY 0x10
|
---|
102 | #define IPTOS_THROUGHPUT 0x08
|
---|
103 | #define IPTOS_RELIABILITY 0x04
|
---|
104 |
|
---|
105 | /*
|
---|
106 | * Definitions for options.
|
---|
107 | */
|
---|
108 | #define IPOPT_COPIED(o) ((o)&0x80)
|
---|
109 | #define IPOPT_CLASS(o) ((o)&0x60)
|
---|
110 | #define IPOPT_NUMBER(o) ((o)&0x1f)
|
---|
111 |
|
---|
112 | #define IPOPT_CONTROL 0x00
|
---|
113 | #define IPOPT_RESERVED1 0x20
|
---|
114 | #define IPOPT_DEBMEAS 0x40
|
---|
115 | #define IPOPT_RESERVED2 0x60
|
---|
116 |
|
---|
117 | #define IPOPT_EOL 0 /* end of option list */
|
---|
118 | #define IPOPT_NOP 1 /* no operation */
|
---|
119 |
|
---|
120 | #define IPOPT_RR 7 /* record packet route */
|
---|
121 | #define IPOPT_TS 68 /* timestamp */
|
---|
122 | #define IPOPT_SECURITY 130 /* provide s,c,h,tcc */
|
---|
123 | #define IPOPT_LSRR 131 /* loose source route */
|
---|
124 | #define IPOPT_SATID 136 /* satnet id */
|
---|
125 | #define IPOPT_SSRR 137 /* strict source route */
|
---|
126 |
|
---|
127 | /*
|
---|
128 | * Offsets to fields in options other than EOL and NOP.
|
---|
129 | */
|
---|
130 | #define IPOPT_OPTVAL 0 /* option ID */
|
---|
131 | #define IPOPT_OLEN 1 /* option length */
|
---|
132 | #define IPOPT_OFFSET 2 /* offset within option */
|
---|
133 | #define IPOPT_MINOFF 4 /* min value of above */
|
---|
134 |
|
---|
135 | /*
|
---|
136 | * Time stamp option structure.
|
---|
137 | */
|
---|
138 | SLIRP_PACKED_BEGIN
|
---|
139 | struct ip_timestamp {
|
---|
140 | uint8_t ipt_code; /* IPOPT_TS */
|
---|
141 | uint8_t ipt_len; /* size of structure (variable) */
|
---|
142 | uint8_t ipt_ptr; /* index of current entry */
|
---|
143 | #if (G_BYTE_ORDER == G_BIG_ENDIAN) && !defined(_MSC_VER)
|
---|
144 | uint8_t ipt_oflw : 4, /* overflow counter */
|
---|
145 | ipt_flg : 4; /* flags, see below */
|
---|
146 | #else
|
---|
147 | uint8_t ipt_flg : 4, /* flags, see below */
|
---|
148 | ipt_oflw : 4; /* overflow counter */
|
---|
149 | #endif
|
---|
150 | union ipt_timestamp {
|
---|
151 | n_long ipt_time[1];
|
---|
152 | struct ipt_ta {
|
---|
153 | struct in_addr ipt_addr;
|
---|
154 | n_long ipt_time;
|
---|
155 | } ipt_ta[1];
|
---|
156 | } ipt_timestamp;
|
---|
157 | } SLIRP_PACKED_END;
|
---|
158 |
|
---|
159 | /* flag bits for ipt_flg */
|
---|
160 | #define IPOPT_TS_TSONLY 0 /* timestamps only */
|
---|
161 | #define IPOPT_TS_TSANDADDR 1 /* timestamps and addresses */
|
---|
162 | #define IPOPT_TS_PRESPEC 3 /* specified modules only */
|
---|
163 |
|
---|
164 | /* bits for security (not byte swapped) */
|
---|
165 | #define IPOPT_SECUR_UNCLASS 0x0000
|
---|
166 | #define IPOPT_SECUR_CONFID 0xf135
|
---|
167 | #define IPOPT_SECUR_EFTO 0x789a
|
---|
168 | #define IPOPT_SECUR_MMMM 0xbc4d
|
---|
169 | #define IPOPT_SECUR_RESTR 0xaf13
|
---|
170 | #define IPOPT_SECUR_SECRET 0xd788
|
---|
171 | #define IPOPT_SECUR_TOPSECRET 0x6bc5
|
---|
172 |
|
---|
173 | /*
|
---|
174 | * Internet implementation parameters.
|
---|
175 | */
|
---|
176 | #define MAXTTL 255 /* maximum time to live (seconds) */
|
---|
177 | #define IPDEFTTL 64 /* default ttl, from RFC 1340 */
|
---|
178 | #define IPFRAGTTL 60 /* time to live for frags, slowhz */
|
---|
179 | #define IPTTLDEC 1 /* subtracted when forwarding */
|
---|
180 |
|
---|
181 | #define IP_MSS 576 /* default maximum segment size */
|
---|
182 |
|
---|
183 | #if GLIB_SIZEOF_VOID_P == 4
|
---|
184 | SLIRP_PACKED_BEGIN
|
---|
185 | struct mbuf_ptr {
|
---|
186 | struct mbuf *mptr;
|
---|
187 | uint32_t dummy;
|
---|
188 | } SLIRP_PACKED_END;
|
---|
189 | #else
|
---|
190 | SLIRP_PACKED_BEGIN
|
---|
191 | struct mbuf_ptr {
|
---|
192 | struct mbuf *mptr;
|
---|
193 | } SLIRP_PACKED_END;
|
---|
194 | #endif
|
---|
195 | struct qlink {
|
---|
196 | void *next, *prev;
|
---|
197 | };
|
---|
198 |
|
---|
199 | /*
|
---|
200 | * Overlay for ip header used by other protocols (tcp, udp).
|
---|
201 | */
|
---|
202 | SLIRP_PACKED_BEGIN
|
---|
203 | struct ipovly {
|
---|
204 | struct mbuf_ptr ih_mbuf; /* backpointer to mbuf */
|
---|
205 | uint8_t ih_x1; /* (unused) */
|
---|
206 | uint8_t ih_pr; /* protocol */
|
---|
207 | uint16_t ih_len; /* protocol length */
|
---|
208 | struct in_addr ih_src; /* source internet address */
|
---|
209 | struct in_addr ih_dst; /* destination internet address */
|
---|
210 | } SLIRP_PACKED_END;
|
---|
211 |
|
---|
212 | /*
|
---|
213 | * Ip reassembly queue structure. Each fragment
|
---|
214 | * being reassembled is attached to one of these structures.
|
---|
215 | * They are timed out after ipq_ttl drops to 0, and may also
|
---|
216 | * be reclaimed if memory becomes tight.
|
---|
217 | */
|
---|
218 | struct ipq {
|
---|
219 | struct qlink ip_link; /* to other reass headers */
|
---|
220 | uint8_t ipq_ttl; /* time for reass q to live */
|
---|
221 | uint8_t ipq_p; /* protocol of this fragment */
|
---|
222 | uint16_t ipq_id; /* sequence id for reassembly */
|
---|
223 | struct in_addr ipq_src, ipq_dst;
|
---|
224 | };
|
---|
225 |
|
---|
226 | struct ipas {
|
---|
227 | struct qlink link;
|
---|
228 | union {
|
---|
229 | struct ipq ipq;
|
---|
230 | struct ip ipf_ip;
|
---|
231 | };
|
---|
232 | };
|
---|
233 |
|
---|
234 | #define ipf_off ipf_ip.ip_off
|
---|
235 | #define ipf_tos ipf_ip.ip_tos
|
---|
236 | #define ipf_len ipf_ip.ip_len
|
---|
237 |
|
---|
238 | #endif
|
---|