VirtualBox

source: vbox/trunk/src/VBox/Devices/Network/slirp/ip.h@ 62511

Last change on this file since 62511 was 62511, checked in by vboxsync, 8 years ago

(C) 2016

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 9.6 KB
Line 
1/* $Id: ip.h 62511 2016-07-22 19:12:58Z vboxsync $ */
2/** @file
3 * NAT - IP handling (declarations/defines).
4 */
5
6/*
7 * Copyright (C) 2006-2016 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18/*
19 * This code is based on:
20 *
21 * Copyright (c) 1982, 1986, 1993
22 * The Regents of the University of California. All rights reserved.
23 *
24 * Redistribution and use in source and binary forms, with or without
25 * modification, are permitted provided that the following conditions
26 * are met:
27 * 1. Redistributions of source code must retain the above copyright
28 * notice, this list of conditions and the following disclaimer.
29 * 2. Redistributions in binary form must reproduce the above copyright
30 * notice, this list of conditions and the following disclaimer in the
31 * documentation and/or other materials provided with the distribution.
32 * 3. All advertising materials mentioning features or use of this software
33 * must display the following acknowledgement:
34 * This product includes software developed by the University of
35 * California, Berkeley and its contributors.
36 * 4. Neither the name of the University nor the names of its contributors
37 * may be used to endorse or promote products derived from this software
38 * without specific prior written permission.
39 *
40 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
41 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
44 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
46 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50 * SUCH DAMAGE.
51 *
52 * @(#)ip.h 8.1 (Berkeley) 6/10/93
53 * ip.h,v 1.3 1994/08/21 05:27:30 paul Exp
54 */
55
56#ifndef _IP_H_
57#define _IP_H_
58
59#include "queue.h"
60
61#ifdef WORDS_BIGENDIAN
62# ifndef NTOHL
63# define NTOHL(d)
64# endif
65# ifndef NTOHS
66# define NTOHS(d)
67# endif
68# ifndef HTONL
69# define HTONL(d)
70# endif
71# ifndef HTONS
72# define HTONS(d)
73# endif
74#else
75# ifndef NTOHL
76# define NTOHL(d) ((d) = RT_N2H_U32((d)))
77# endif
78# ifndef NTOHS
79# define NTOHS(d) ((d) = RT_N2H_U16((u_int16_t)(d)))
80# endif
81# ifndef HTONL
82# define HTONL(d) ((d) = RT_H2N_U32((d)))
83# endif
84# ifndef HTONS
85# define HTONS(d) ((d) = RT_H2N_U16((u_int16_t)(d)))
86# endif
87#endif
88
89/*
90 * Definitions for internet protocol version 4.
91 * Per RFC 791, September 1981.
92 */
93#define IPVERSION 4
94
95/*
96 * Structure of an internet header, naked of options.
97 */
98struct ip
99{
100#ifdef WORDS_BIGENDIAN
101# ifdef _MSC_VER
102 uint8_t ip_v:4; /* version */
103 uint8_t ip_hl:4; /* header length */
104# else
105 unsigned ip_v:4; /* version */
106 unsigned ip_hl:4; /* header length */
107# endif
108#else
109# ifdef _MSC_VER
110 uint8_t ip_hl:4; /* header length */
111 uint8_t ip_v:4; /* version */
112# else
113 unsigned ip_hl:4; /* header length */
114 unsigned ip_v:4; /* version */
115# endif
116#endif
117 uint8_t ip_tos; /* type of service */
118 uint16_t ip_len; /* total length */
119 uint16_t ip_id; /* identification */
120 uint16_t ip_off; /* fragment offset field */
121#define IP_DF 0x4000 /* don't fragment flag */
122#define IP_MF 0x2000 /* more fragments flag */
123#define IP_OFFMASK 0x1fff /* mask for fragmenting bits */
124 uint8_t ip_ttl; /* time to live */
125 uint8_t ip_p; /* protocol */
126 uint16_t ip_sum; /* checksum */
127 struct in_addr ip_src; /* source address */
128 struct in_addr ip_dst; /* destination address */
129};
130AssertCompileSize(struct ip, 20);
131
132#define IP_MAXPACKET 65535 /* maximum packet size */
133
134/*
135 * Definitions for IP type of service (ip_tos)
136 */
137#define IPTOS_LOWDELAY 0x10
138#define IPTOS_THROUGHPUT 0x08
139#define IPTOS_RELIABILITY 0x04
140
141
142/*
143 * Time stamp option structure.
144 */
145struct ip_timestamp
146{
147 uint8_t ipt_code; /* IPOPT_TS */
148 uint8_t ipt_len; /* size of structure (variable) */
149 uint8_t ipt_ptr; /* index of current entry */
150#ifdef WORDS_BIGENDIAN
151# ifdef _MSC_VER
152 uint8_t ipt_oflw:4; /* overflow counter */
153 uint8_t ipt_flg:4; /* flags, see below */
154# else
155 unsigned ipt_oflw:4; /* overflow counter */
156 unsigned ipt_flg:4; /* flags, see below */
157# endif
158#else
159# ifdef _MSC_VER
160 uint8_t ipt_flg:4; /* flags, see below */
161 uint8_t ipt_oflw:4; /* overflow counter */
162# else
163 unsigned ipt_flg:4; /* flags, see below */
164 unsigned ipt_oflw:4; /* overflow counter */
165# endif
166#endif
167 union ipt_timestamp
168 {
169 uint32_t ipt_time[1];
170 struct ipt_ta
171 {
172 struct in_addr ipt_addr;
173 uint32_t ipt_time;
174 } ipt_ta[1];
175 } ipt_timestamp;
176};
177AssertCompileSize(struct ip_timestamp, 12);
178
179/*
180 * Internet implementation parameters.
181 */
182#define MAXTTL 255 /* maximum time to live (seconds) */
183#define IPDEFTTL 64 /* default ttl, from RFC 1340 */
184#define IPFRAGTTL 60 /* time to live for frags, slowhz */
185#define IPTTLDEC 1 /* subtracted when forwarding */
186
187#define IP_MSS 576 /* default maximum segment size */
188
189#ifdef HAVE_SYS_TYPES32_H /* Overcome some Solaris 2.x junk */
190# include <sys/types32.h>
191#else
192typedef caddr_t caddr32_t;
193#endif
194
195#if SIZEOF_CHAR_P == 4
196typedef struct ipq_t *ipqp_32;
197typedef struct ipasfrag *ipasfragp_32;
198#else
199typedef caddr32_t ipqp_32;
200typedef caddr32_t ipasfragp_32;
201#endif
202
203/*
204 * Overlay for ip header used by other protocols (tcp, udp).
205 */
206struct ipovly
207{
208 u_int8_t ih_x1[9]; /* (unused) */
209 u_int8_t ih_pr; /* protocol */
210 u_int16_t ih_len; /* protocol length */
211 struct in_addr ih_src; /* source internet address */
212 struct in_addr ih_dst; /* destination internet address */
213};
214AssertCompileSize(struct ipovly, 20);
215
216/*
217 * Ip reassembly queue structure. Each fragment being reassembled is
218 * attached to one of these structures. They are timed out after ipq_ttl
219 * drops to 0, and may also be reclaimed if memory becomes tight.
220 * size 28 bytes
221 */
222struct ipq_t
223{
224 TAILQ_ENTRY(ipq_t) ipq_list;
225 u_int8_t ipq_ttl; /* time for reass q to live */
226 u_int8_t ipq_p; /* protocol of this fragment */
227 u_int16_t ipq_id; /* sequence id for reassembly */
228 struct mbuf *ipq_frags; /* to ip headers of fragments */
229 uint8_t ipq_nfrags; /* # of fragments in this packet */
230 struct in_addr ipq_src;
231 struct in_addr ipq_dst;
232};
233
234
235/*
236* IP datagram reassembly.
237*/
238#define IPREASS_NHASH_LOG2 6
239#define IPREASS_NHASH (1 << IPREASS_NHASH_LOG2)
240#define IPREASS_HMASK (IPREASS_NHASH - 1)
241#define IPREASS_HASH(x,y) \
242(((((x) & 0xF) | ((((x) >> 8) & 0xF) << 4)) ^ (y)) & IPREASS_HMASK)
243TAILQ_HEAD(ipqhead, ipq_t);
244
245/*
246 * Structure attached to inpcb.ip_moptions and
247 * passed to ip_output when IP multicast options are in use.
248 */
249
250struct ipstat_t
251{
252 u_long ips_total; /* total packets received */
253 u_long ips_badsum; /* checksum bad */
254 u_long ips_tooshort; /* packet too short */
255 u_long ips_toosmall; /* not enough data */
256 u_long ips_badhlen; /* ip header length < data size */
257 u_long ips_badlen; /* ip length < ip header length */
258 u_long ips_fragments; /* fragments received */
259 u_long ips_fragdropped; /* frags dropped (dups, out of space) */
260 u_long ips_fragtimeout; /* fragments timed out */
261 u_long ips_forward; /* packets forwarded */
262 u_long ips_cantforward; /* packets rcvd for unreachable dest */
263 u_long ips_redirectsent; /* packets forwarded on same net */
264 u_long ips_noproto; /* unknown or unsupported protocol */
265 u_long ips_delivered; /* datagrams delivered to upper level*/
266 u_long ips_localout; /* total ip packets generated here */
267 u_long ips_odropped; /* lost packets due to nobufs, etc. */
268 u_long ips_reassembled; /* total packets reassembled ok */
269 u_long ips_fragmented; /* datagrams successfully fragmented */
270 u_long ips_ofragments; /* output fragments created */
271 u_long ips_cantfrag; /* don't fragment flag was set, etc. */
272 u_long ips_badoptions; /* error in option processing */
273 u_long ips_noroute; /* packets discarded due to no route */
274 u_long ips_badvers; /* ip version != 4 */
275 u_long ips_rawout; /* total raw ip packets generated */
276 u_long ips_unaligned; /* times the ip packet was not aligned */
277};
278
279#endif
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette