xref: /freebsd/sys/netinet/tcp_var.h (revision 6990ffd8a95caaba6858ad44ff1b3157d1efba8f)
1 /*
2  * Copyright (c) 1982, 1986, 1993, 1994, 1995
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *	This product includes software developed by the University of
16  *	California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  *
33  *	@(#)tcp_var.h	8.4 (Berkeley) 5/24/95
34  * $FreeBSD$
35  */
36 
37 #ifndef _NETINET_TCP_VAR_H_
38 #define _NETINET_TCP_VAR_H_
39 /*
40  * Kernel variables for tcp.
41  */
42 
43 /* TCP segment queue entry */
44 struct tseg_qent {
45 	LIST_ENTRY(tseg_qent) tqe_q;
46 	int	tqe_len;		/* TCP segment data length */
47 	struct	tcphdr *tqe_th;		/* a pointer to tcp header */
48 	struct	mbuf	*tqe_m;		/* mbuf contains packet */
49 };
50 LIST_HEAD(tsegqe_head, tseg_qent);
51 #ifdef MALLOC_DECLARE
52 MALLOC_DECLARE(M_TSEGQ);
53 #endif
54 
55 struct tcptemp {
56 	u_char	tt_ipgen[40]; /* the size must be of max ip header, now IPv6 */
57 	struct	tcphdr tt_t;
58 };
59 
60 #define tcp6cb		tcpcb  /* for KAME src sync over BSD*'s */
61 
62 /*
63  * Tcp control block, one per tcp; fields:
64  * Organized for 16 byte cacheline efficiency.
65  */
66 struct tcpcb {
67 	struct	tsegqe_head t_segq;
68 	int	t_dupacks;		/* consecutive dup acks recd */
69 	struct	tcptemp	*unused;	/* unused */
70 
71 	struct	callout *tt_rexmt;	/* retransmit timer */
72 	struct	callout *tt_persist;	/* retransmit persistence */
73 	struct	callout *tt_keep;	/* keepalive */
74 	struct	callout *tt_2msl;	/* 2*msl TIME_WAIT timer */
75 	struct	callout *tt_delack;	/* delayed ACK timer */
76 
77 	struct	inpcb *t_inpcb;		/* back pointer to internet pcb */
78 	int	t_state;		/* state of this connection */
79 	u_int	t_flags;
80 #define	TF_ACKNOW	0x00001		/* ack peer immediately */
81 #define	TF_DELACK	0x00002		/* ack, but try to delay it */
82 #define	TF_NODELAY	0x00004		/* don't delay packets to coalesce */
83 #define	TF_NOOPT	0x00008		/* don't use tcp options */
84 #define	TF_SENTFIN	0x00010		/* have sent FIN */
85 #define	TF_REQ_SCALE	0x00020		/* have/will request window scaling */
86 #define	TF_RCVD_SCALE	0x00040		/* other side has requested scaling */
87 #define	TF_REQ_TSTMP	0x00080		/* have/will request timestamps */
88 #define	TF_RCVD_TSTMP	0x00100		/* a timestamp was received in SYN */
89 #define	TF_SACK_PERMIT	0x00200		/* other side said I could SACK */
90 #define	TF_NEEDSYN	0x00400		/* send SYN (implicit state) */
91 #define	TF_NEEDFIN	0x00800		/* send FIN (implicit state) */
92 #define	TF_NOPUSH	0x01000		/* don't push */
93 #define	TF_REQ_CC	0x02000		/* have/will request CC */
94 #define	TF_RCVD_CC	0x04000		/* a CC was received in SYN */
95 #define	TF_SENDCCNEW	0x08000		/* send CCnew instead of CC in SYN */
96 #define	TF_MORETOCOME	0x10000		/* More data to be appended to sock */
97 #define	TF_LQ_OVERFLOW	0x20000		/* listen queue overflow */
98 	int	t_force;		/* 1 if forcing out a byte */
99 
100 	tcp_seq	snd_una;		/* send unacknowledged */
101 	tcp_seq	snd_max;		/* highest sequence number sent;
102 					 * used to recognize retransmits
103 					 */
104 	tcp_seq	snd_nxt;		/* send next */
105 	tcp_seq	snd_up;			/* send urgent pointer */
106 
107 	tcp_seq	snd_wl1;		/* window update seg seq number */
108 	tcp_seq	snd_wl2;		/* window update seg ack number */
109 	tcp_seq	iss;			/* initial send sequence number */
110 	tcp_seq	irs;			/* initial receive sequence number */
111 
112 	tcp_seq	rcv_nxt;		/* receive next */
113 	tcp_seq	rcv_adv;		/* advertised window */
114 	u_long	rcv_wnd;		/* receive window */
115 	tcp_seq	rcv_up;			/* receive urgent pointer */
116 
117 	u_long	snd_wnd;		/* send window */
118 	u_long	snd_cwnd;		/* congestion-controlled window */
119 	u_long	snd_ssthresh;		/* snd_cwnd size threshold for
120 					 * for slow start exponential to
121 					 * linear switch
122 					 */
123 	tcp_seq	snd_recover;		/* for use in fast recovery */
124 
125 	u_int	t_maxopd;		/* mss plus options */
126 
127 	u_long	t_rcvtime;		/* inactivity time */
128 	u_long	t_starttime;		/* time connection was established */
129 	int	t_rtttime;		/* round trip time */
130 	tcp_seq	t_rtseq;		/* sequence number being timed */
131 
132 	int	t_rxtcur;		/* current retransmit value (ticks) */
133 	u_int	t_maxseg;		/* maximum segment size */
134 	int	t_srtt;			/* smoothed round-trip time */
135 	int	t_rttvar;		/* variance in round-trip time */
136 
137 	int	t_rxtshift;		/* log(2) of rexmt exp. backoff */
138 	u_int	t_rttmin;		/* minimum rtt allowed */
139 	u_long	t_rttupdated;		/* number of times rtt sampled */
140 	u_long	max_sndwnd;		/* largest window peer has offered */
141 
142 	int	t_softerror;		/* possible error not yet reported */
143 /* out-of-band data */
144 	char	t_oobflags;		/* have some */
145 	char	t_iobc;			/* input character */
146 #define	TCPOOB_HAVEDATA	0x01
147 #define	TCPOOB_HADDATA	0x02
148 /* RFC 1323 variables */
149 	u_char	snd_scale;		/* window scaling for send window */
150 	u_char	rcv_scale;		/* window scaling for recv window */
151 	u_char	request_r_scale;	/* pending window scaling */
152 	u_char	requested_s_scale;
153 	u_long	ts_recent;		/* timestamp echo data */
154 
155 	u_long	ts_recent_age;		/* when last updated */
156 	tcp_seq	last_ack_sent;
157 /* RFC 1644 variables */
158 	tcp_cc	cc_send;		/* send connection count */
159 	tcp_cc	cc_recv;		/* receive connection count */
160 /* experimental */
161 	u_long	snd_cwnd_prev;		/* cwnd prior to retransmit */
162 	u_long	snd_ssthresh_prev;	/* ssthresh prior to retransmit */
163 	u_long	t_badrxtwin;		/* window for retransmit recovery */
164 };
165 
166 /*
167  * Structure to hold TCP options that are only used during segment
168  * processing (in tcp_input), but not held in the tcpcb.
169  * It's basically used to reduce the number of parameters
170  * to tcp_dooptions.
171  */
172 struct tcpopt {
173 	u_long	to_flag;		/* which options are present */
174 #define TOF_TS		0x0001		/* timestamp */
175 #define TOF_CC		0x0002		/* CC and CCnew are exclusive */
176 #define TOF_CCNEW	0x0004
177 #define	TOF_CCECHO	0x0008
178 	u_long	to_tsval;
179 	u_long	to_tsecr;
180 	tcp_cc	to_cc;		/* holds CC or CCnew */
181 	tcp_cc	to_ccecho;
182 };
183 
184 /*
185  * The TAO cache entry which is stored in the protocol family specific
186  * portion of the route metrics.
187  */
188 struct rmxp_tao {
189 	tcp_cc	tao_cc;			/* latest CC in valid SYN */
190 	tcp_cc	tao_ccsent;		/* latest CC sent to peer */
191 	u_short	tao_mssopt;		/* peer's cached MSS */
192 #ifdef notyet
193 	u_short	tao_flags;		/* cache status flags */
194 #define	TAOF_DONT	0x0001		/* peer doesn't understand rfc1644 */
195 #define	TAOF_OK		0x0002		/* peer does understand rfc1644 */
196 #define	TAOF_UNDEF	0		/* we don't know yet */
197 #endif /* notyet */
198 };
199 #define rmx_taop(r)	((struct rmxp_tao *)(r).rmx_filler)
200 
201 #define	intotcpcb(ip)	((struct tcpcb *)(ip)->inp_ppcb)
202 #define	sototcpcb(so)	(intotcpcb(sotoinpcb(so)))
203 
204 /*
205  * The smoothed round-trip time and estimated variance
206  * are stored as fixed point numbers scaled by the values below.
207  * For convenience, these scales are also used in smoothing the average
208  * (smoothed = (1/scale)sample + ((scale-1)/scale)smoothed).
209  * With these scales, srtt has 3 bits to the right of the binary point,
210  * and thus an "ALPHA" of 0.875.  rttvar has 2 bits to the right of the
211  * binary point, and is smoothed with an ALPHA of 0.75.
212  */
213 #define	TCP_RTT_SCALE		32	/* multiplier for srtt; 3 bits frac. */
214 #define	TCP_RTT_SHIFT		5	/* shift for srtt; 3 bits frac. */
215 #define	TCP_RTTVAR_SCALE	16	/* multiplier for rttvar; 2 bits */
216 #define	TCP_RTTVAR_SHIFT	4	/* shift for rttvar; 2 bits */
217 #define	TCP_DELTA_SHIFT		2	/* see tcp_input.c */
218 
219 /*
220  * The initial retransmission should happen at rtt + 4 * rttvar.
221  * Because of the way we do the smoothing, srtt and rttvar
222  * will each average +1/2 tick of bias.  When we compute
223  * the retransmit timer, we want 1/2 tick of rounding and
224  * 1 extra tick because of +-1/2 tick uncertainty in the
225  * firing of the timer.  The bias will give us exactly the
226  * 1.5 tick we need.  But, because the bias is
227  * statistical, we have to test that we don't drop below
228  * the minimum feasible timer (which is 2 ticks).
229  * This version of the macro adapted from a paper by Lawrence
230  * Brakmo and Larry Peterson which outlines a problem caused
231  * by insufficient precision in the original implementation,
232  * which results in inappropriately large RTO values for very
233  * fast networks.
234  */
235 #define	TCP_REXMTVAL(tp) \
236 	max((tp)->t_rttmin, (((tp)->t_srtt >> (TCP_RTT_SHIFT - TCP_DELTA_SHIFT))  \
237 	  + (tp)->t_rttvar) >> TCP_DELTA_SHIFT)
238 
239 /*
240  * TCP statistics.
241  * Many of these should be kept per connection,
242  * but that's inconvenient at the moment.
243  */
244 struct	tcpstat {
245 	u_long	tcps_connattempt;	/* connections initiated */
246 	u_long	tcps_accepts;		/* connections accepted */
247 	u_long	tcps_connects;		/* connections established */
248 	u_long	tcps_drops;		/* connections dropped */
249 	u_long	tcps_conndrops;		/* embryonic connections dropped */
250 	u_long	tcps_closed;		/* conn. closed (includes drops) */
251 	u_long	tcps_segstimed;		/* segs where we tried to get rtt */
252 	u_long	tcps_rttupdated;	/* times we succeeded */
253 	u_long	tcps_delack;		/* delayed acks sent */
254 	u_long	tcps_timeoutdrop;	/* conn. dropped in rxmt timeout */
255 	u_long	tcps_rexmttimeo;	/* retransmit timeouts */
256 	u_long	tcps_persisttimeo;	/* persist timeouts */
257 	u_long	tcps_keeptimeo;		/* keepalive timeouts */
258 	u_long	tcps_keepprobe;		/* keepalive probes sent */
259 	u_long	tcps_keepdrops;		/* connections dropped in keepalive */
260 
261 	u_long	tcps_sndtotal;		/* total packets sent */
262 	u_long	tcps_sndpack;		/* data packets sent */
263 	u_long	tcps_sndbyte;		/* data bytes sent */
264 	u_long	tcps_sndrexmitpack;	/* data packets retransmitted */
265 	u_long	tcps_sndrexmitbyte;	/* data bytes retransmitted */
266 	u_long	tcps_sndacks;		/* ack-only packets sent */
267 	u_long	tcps_sndprobe;		/* window probes sent */
268 	u_long	tcps_sndurg;		/* packets sent with URG only */
269 	u_long	tcps_sndwinup;		/* window update-only packets sent */
270 	u_long	tcps_sndctrl;		/* control (SYN|FIN|RST) packets sent */
271 
272 	u_long	tcps_rcvtotal;		/* total packets received */
273 	u_long	tcps_rcvpack;		/* packets received in sequence */
274 	u_long	tcps_rcvbyte;		/* bytes received in sequence */
275 	u_long	tcps_rcvbadsum;		/* packets received with ccksum errs */
276 	u_long	tcps_rcvbadoff;		/* packets received with bad offset */
277 	u_long	tcps_rcvmemdrop;	/* packets dropped for lack of memory */
278 	u_long	tcps_rcvshort;		/* packets received too short */
279 	u_long	tcps_rcvduppack;	/* duplicate-only packets received */
280 	u_long	tcps_rcvdupbyte;	/* duplicate-only bytes received */
281 	u_long	tcps_rcvpartduppack;	/* packets with some duplicate data */
282 	u_long	tcps_rcvpartdupbyte;	/* dup. bytes in part-dup. packets */
283 	u_long	tcps_rcvoopack;		/* out-of-order packets received */
284 	u_long	tcps_rcvoobyte;		/* out-of-order bytes received */
285 	u_long	tcps_rcvpackafterwin;	/* packets with data after window */
286 	u_long	tcps_rcvbyteafterwin;	/* bytes rcvd after window */
287 	u_long	tcps_rcvafterclose;	/* packets rcvd after "close" */
288 	u_long	tcps_rcvwinprobe;	/* rcvd window probe packets */
289 	u_long	tcps_rcvdupack;		/* rcvd duplicate acks */
290 	u_long	tcps_rcvacktoomuch;	/* rcvd acks for unsent data */
291 	u_long	tcps_rcvackpack;	/* rcvd ack packets */
292 	u_long	tcps_rcvackbyte;	/* bytes acked by rcvd acks */
293 	u_long	tcps_rcvwinupd;		/* rcvd window update packets */
294 	u_long	tcps_pawsdrop;		/* segments dropped due to PAWS */
295 	u_long	tcps_predack;		/* times hdr predict ok for acks */
296 	u_long	tcps_preddat;		/* times hdr predict ok for data pkts */
297 	u_long	tcps_pcbcachemiss;
298 	u_long	tcps_cachedrtt;		/* times cached RTT in route updated */
299 	u_long	tcps_cachedrttvar;	/* times cached rttvar updated */
300 	u_long	tcps_cachedssthresh;	/* times cached ssthresh updated */
301 	u_long	tcps_usedrtt;		/* times RTT initialized from route */
302 	u_long	tcps_usedrttvar;	/* times RTTVAR initialized from rt */
303 	u_long	tcps_usedssthresh;	/* times ssthresh initialized from rt*/
304 	u_long	tcps_persistdrop;	/* timeout in persist state */
305 	u_long	tcps_badsyn;		/* bogus SYN, e.g. premature ACK */
306 	u_long	tcps_mturesent;		/* resends due to MTU discovery */
307 	u_long	tcps_listendrop;	/* listen queue overflows */
308 };
309 
310 /*
311  * TCB structure exported to user-land via sysctl(3).
312  * Evil hack: declare only if in_pcb.h and sys/socketvar.h have been
313  * included.  Not all of our clients do.
314  */
315 #if defined(_NETINET_IN_PCB_H_) && defined(_SYS_SOCKETVAR_H_)
316 struct	xtcpcb {
317 	size_t	xt_len;
318 	struct	inpcb	xt_inp;
319 	struct	tcpcb	xt_tp;
320 	struct	xsocket	xt_socket;
321 	u_quad_t	xt_alignment_hack;
322 };
323 #endif
324 
325 /*
326  * Names for TCP sysctl objects
327  */
328 #define	TCPCTL_DO_RFC1323	1	/* use RFC-1323 extensions */
329 #define	TCPCTL_DO_RFC1644	2	/* use RFC-1644 extensions */
330 #define	TCPCTL_MSSDFLT		3	/* MSS default */
331 #define TCPCTL_STATS		4	/* statistics (read-only) */
332 #define	TCPCTL_RTTDFLT		5	/* default RTT estimate */
333 #define	TCPCTL_KEEPIDLE		6	/* keepalive idle timer */
334 #define	TCPCTL_KEEPINTVL	7	/* interval to send keepalives */
335 #define	TCPCTL_SENDSPACE	8	/* send buffer space */
336 #define	TCPCTL_RECVSPACE	9	/* receive buffer space */
337 #define	TCPCTL_KEEPINIT		10	/* timeout for establishing syn */
338 #define	TCPCTL_PCBLIST		11	/* list of all outstanding PCBs */
339 #define	TCPCTL_DELACKTIME	12	/* time before sending delayed ACK */
340 #define	TCPCTL_V6MSSDFLT	13	/* MSS default for IPv6 */
341 #define	TCPCTL_MAXID		14
342 
343 #define TCPCTL_NAMES { \
344 	{ 0, 0 }, \
345 	{ "rfc1323", CTLTYPE_INT }, \
346 	{ "rfc1644", CTLTYPE_INT }, \
347 	{ "mssdflt", CTLTYPE_INT }, \
348 	{ "stats", CTLTYPE_STRUCT }, \
349 	{ "rttdflt", CTLTYPE_INT }, \
350 	{ "keepidle", CTLTYPE_INT }, \
351 	{ "keepintvl", CTLTYPE_INT }, \
352 	{ "sendspace", CTLTYPE_INT }, \
353 	{ "recvspace", CTLTYPE_INT }, \
354 	{ "keepinit", CTLTYPE_INT }, \
355 	{ "pcblist", CTLTYPE_STRUCT }, \
356 	{ "delacktime", CTLTYPE_INT }, \
357 	{ "v6mssdflt", CTLTYPE_INT }, \
358 }
359 
360 
361 #ifdef _KERNEL
362 #ifdef SYSCTL_DECL
363 SYSCTL_DECL(_net_inet_tcp);
364 #endif
365 
366 extern	struct inpcbhead tcb;		/* head of queue of active tcpcb's */
367 extern	struct inpcbinfo tcbinfo;
368 extern	struct tcpstat tcpstat;	/* tcp statistics */
369 extern	int tcp_mssdflt;	/* XXX */
370 extern	int tcp_delack_enabled;
371 extern	int tcp_do_newreno;
372 extern	int ss_fltsz;
373 extern	int ss_fltsz_local;
374 
375 void	 tcp_canceltimers __P((struct tcpcb *));
376 struct tcpcb *
377 	 tcp_close __P((struct tcpcb *));
378 void	 tcp_ctlinput __P((int, struct sockaddr *, void *));
379 int	 tcp_ctloutput __P((struct socket *, struct sockopt *));
380 struct tcpcb *
381 	 tcp_drop __P((struct tcpcb *, int));
382 void	 tcp_drain __P((void));
383 void	 tcp_fasttimo __P((void));
384 struct rmxp_tao *
385 	 tcp_gettaocache __P((struct inpcb *));
386 void	 tcp_init __P((void));
387 void	 tcp_input __P((struct mbuf *, int));
388 void	 tcp_mss __P((struct tcpcb *, int));
389 int	 tcp_mssopt __P((struct tcpcb *));
390 void	 tcp_drop_syn_sent __P((struct inpcb *, int));
391 void	 tcp_mtudisc __P((struct inpcb *, int));
392 struct tcpcb *
393 	 tcp_newtcpcb __P((struct inpcb *));
394 int	 tcp_output __P((struct tcpcb *));
395 void	 tcp_quench __P((struct inpcb *, int));
396 void	 tcp_respond __P((struct tcpcb *, void *,
397 	    struct tcphdr *, struct mbuf *, tcp_seq, tcp_seq, int));
398 struct rtentry *
399 	 tcp_rtlookup __P((struct inpcb *));
400 void	 tcp_setpersist __P((struct tcpcb *));
401 void	 tcp_slowtimo __P((void));
402 struct tcptemp *
403 	 tcp_maketemplate __P((struct tcpcb *));
404 void	 tcp_fillheaders __P((struct tcpcb *, void *, void *));
405 struct tcpcb *
406 	 tcp_timers __P((struct tcpcb *, int));
407 void	 tcp_trace __P((int, int, struct tcpcb *, void *, struct tcphdr *,
408 			int));
409 
410 extern	struct pr_usrreqs tcp_usrreqs;
411 extern	u_long tcp_sendspace;
412 extern	u_long tcp_recvspace;
413 tcp_seq tcp_new_isn __P((struct tcpcb *));
414 
415 #endif /* _KERNEL */
416 
417 #endif /* _NETINET_TCP_VAR_H_ */
418