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