VirtualBox

source: vbox/trunk/src/VBox/Devices/Network/slirp/tcp.h@ 34244

Last change on this file since 34244 was 30016, checked in by vboxsync, 14 years ago

NAT: clean up.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 7.5 KB
Line 
1/* $Id: tcp.h 30016 2010-06-03 18:31:14Z vboxsync $ */
2/** @file
3 * NAT - TCP.
4 */
5
6/*
7 * Copyright (C) 2006-2010 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 * @(#)tcp.h 8.1 (Berkeley) 6/10/93
53 * tcp.h,v 1.3 1994/08/21 05:27:34 paul Exp
54 */
55
56#ifndef _TCP_H_
57#define _TCP_H_
58
59typedef uint32_t tcp_seq;
60
61#define PR_SLOWHZ 2 /* 2 slow timeouts per second (approx) */
62#define PR_FASTHZ 5 /* 5 fast timeouts per second (not important) */
63
64extern int tcp_rcvspace;
65extern int tcp_sndspace;
66extern struct socket *tcp_last_so;
67
68#define TCP_SNDSPACE 8192
69#define TCP_RCVSPACE 8192
70
71/*
72 * TCP header.
73 * Per RFC 793, September, 1981.
74 */
75struct tcphdr
76{
77 uint16_t th_sport; /* source port */
78 uint16_t th_dport; /* destination port */
79 tcp_seq th_seq; /* sequence number */
80 tcp_seq th_ack; /* acknowledgement number */
81#ifdef WORDS_BIGENDIAN
82# ifdef _MSC_VER
83 uint8_t th_off:4; /* data offset */
84 uint8_t th_x2:4; /* (unused) */
85# else
86 unsigned th_off:4; /* data offset */
87 unsigned th_x2:4; /* (unused) */
88# endif
89#else
90# ifdef _MSC_VER
91 uint8_t th_x2:4; /* (unused) */
92 uint8_t th_off:4; /* data offset */
93# else
94 unsigned th_x2:4; /* (unused) */
95 unsigned th_off:4; /* data offset */
96# endif
97#endif
98 uint8_t th_flags;
99#define TH_FIN 0x01
100#define TH_SYN 0x02
101#define TH_RST 0x04
102#define TH_PUSH 0x08
103#define TH_ACK 0x10
104#define TH_URG 0x20
105 uint16_t th_win; /* window */
106 uint16_t th_sum; /* checksum */
107 uint16_t th_urp; /* urgent pointer */
108};
109AssertCompileSize(struct tcphdr, 20);
110
111#include "tcp_var.h"
112
113#define TCPOPT_EOL 0
114#define TCPOPT_NOP 1
115#define TCPOPT_MAXSEG 2
116#define TCPOLEN_MAXSEG 4
117#define TCPOPT_WINDOW 3
118#define TCPOLEN_WINDOW 3
119#define TCPOPT_SACK_PERMITTED 4 /* Experimental */
120#define TCPOLEN_SACK_PERMITTED 2
121#define TCPOPT_SACK 5 /* Experimental */
122#define TCPOPT_TIMESTAMP 8
123#define TCPOLEN_TIMESTAMP 10
124#define TCPOLEN_TSTAMP_APPA (TCPOLEN_TIMESTAMP+2) /* appendix A */
125
126#define TCPOPT_TSTAMP_HDR \
127 (TCPOPT_NOP<<24|TCPOPT_NOP<<16|TCPOPT_TIMESTAMP<<8|TCPOLEN_TIMESTAMP)
128
129/*
130 * Default maximum segment size for TCP.
131 * With an IP MSS of 576, this is 536,
132 * but 512 is probably more convenient.
133 * This should be defined as MIN(512, IP_MSS - sizeof (struct tcpiphdr)).
134 *
135 * We make this 1460 because we only care about Ethernet in the qemu context.
136 */
137#define TCP_MSS (if_mtu - 80)
138
139#define TCP_MAXWIN 65535 /* largest value for (unscaled) window */
140
141#define TCP_MAX_WINSHIFT 14 /* maximum window shift */
142
143/*
144 * User-settable options (used with setsockopt).
145 *
146 * We don't use the system headers on unix because we have conflicting
147 * local structures. We can't avoid the system definitions on Windows,
148 * so we undefine them.
149 */
150#undef TCP_NODELAY
151#define TCP_NODELAY 0x01 /* don't delay send to coalesce packets */
152#undef TCP_MAXSEG
153/* #define TCP_MAXSEG 0x02 */ /* set maximum segment size */
154
155/*
156 * TCP FSM state definitions.
157 * Per RFC793, September, 1981.
158 */
159
160#define TCP_NSTATES 11
161
162#define TCPS_CLOSED 0 /* closed */
163#define TCPS_LISTEN 1 /* listening for connection */
164#define TCPS_SYN_SENT 2 /* active, have sent syn */
165#define TCPS_SYN_RECEIVED 3 /* have send and received syn */
166/* states < TCPS_ESTABLISHED are those where connections not established */
167#define TCPS_ESTABLISHED 4 /* established */
168#define TCPS_CLOSE_WAIT 5 /* rcvd fin, waiting for close */
169/* states > TCPS_CLOSE_WAIT are those where user has closed */
170#define TCPS_FIN_WAIT_1 6 /* have closed, sent fin */
171#define TCPS_CLOSING 7 /* closed xchd FIN; await FIN ACK */
172#define TCPS_LAST_ACK 8 /* had fin and close; await FIN ACK */
173/* states > TCPS_CLOSE_WAIT && < TCPS_FIN_WAIT_2 await ACK of FIN */
174#define TCPS_FIN_WAIT_2 9 /* have closed, fin is acked */
175#define TCPS_TIME_WAIT 10 /* in 2*msl quiet wait after close */
176
177#define TCPS_HAVERCVDSYN(s) ((s) >= TCPS_SYN_RECEIVED)
178#define TCPS_HAVEESTABLISHED(s) ((s) >= TCPS_ESTABLISHED)
179#define TCPS_HAVERCVDFIN(s) ((s) >= TCPS_TIME_WAIT)
180
181/*
182 * TCP sequence numbers are 32 bit integers operated on with modular arithmetic.
183 * These macros can be used to compare such integers.
184 */
185#define SEQ_LT(a,b) ((int)((a)-(b)) < 0)
186#define SEQ_LEQ(a,b) ((int)((a)-(b)) <= 0)
187#define SEQ_GT(a,b) ((int)((a)-(b)) > 0)
188#define SEQ_GEQ(a,b) ((int)((a)-(b)) >= 0)
189
190/*
191 * Macros to initialize tcp sequence numbers for
192 * send and receive from initial send and receive
193 * sequence numbers.
194 */
195#define tcp_rcvseqinit(tp) \
196 (tp)->rcv_adv = (tp)->rcv_nxt = (tp)->irs + 1
197
198#define tcp_sendseqinit(tp) \
199 (tp)->snd_una = (tp)->snd_nxt = (tp)->snd_max = (tp)->snd_up = (tp)->iss
200
201#define TCP_ISSINCR (125*1024) /* increment for tcp_iss each second */
202
203
204extern const char * const tcpstates[];
205
206#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