]> git.saurik.com Git - apple/xnu.git/blame - bsd/netinet/tcp_input.c
xnu-7195.81.3.tar.gz
[apple/xnu.git] / bsd / netinet / tcp_input.c
CommitLineData
1c79356b 1/*
f427ee49 2 * Copyright (c) 2000-2020 Apple Inc. All rights reserved.
5d5c5d0d 3 *
2d21ac55 4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
39037602 5 *
2d21ac55
A
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
39037602 14 *
2d21ac55
A
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
39037602 17 *
2d21ac55
A
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
8f6c56a5
A
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
2d21ac55
A
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
39037602 25 *
2d21ac55 26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
1c79356b
A
27 */
28/*
29 * Copyright (c) 1982, 1986, 1988, 1990, 1993, 1994, 1995
30 * The Regents of the University of California. All rights reserved.
31 *
32 * Redistribution and use in source and binary forms, with or without
33 * modification, are permitted provided that the following conditions
34 * are met:
35 * 1. Redistributions of source code must retain the above copyright
36 * notice, this list of conditions and the following disclaimer.
37 * 2. Redistributions in binary form must reproduce the above copyright
38 * notice, this list of conditions and the following disclaimer in the
39 * documentation and/or other materials provided with the distribution.
40 * 3. All advertising materials mentioning features or use of this software
41 * must display the following acknowledgement:
42 * This product includes software developed by the University of
43 * California, Berkeley and its contributors.
44 * 4. Neither the name of the University nor the names of its contributors
45 * may be used to endorse or promote products derived from this software
46 * without specific prior written permission.
47 *
48 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
49 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
50 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
51 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
52 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
53 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
54 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
55 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
56 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
57 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
58 * SUCH DAMAGE.
59 *
60 * @(#)tcp_input.c 8.12 (Berkeley) 5/24/95
9bccf70c 61 * $FreeBSD: src/sys/netinet/tcp_input.c,v 1.107.2.16 2001/08/22 00:59:12 silby Exp $
1c79356b 62 */
2d21ac55
A
63/*
64 * NOTICE: This file was modified by SPARTA, Inc. in 2005 to introduce
65 * support for mandatory and extensible security protections. This notice
66 * is included in support of clause 2.2 (b) of the Apple Public License,
67 * Version 2.0.
68 */
1c79356b
A
69
70#include <sys/param.h>
71#include <sys/systm.h>
72#include <sys/kernel.h>
73#include <sys/sysctl.h>
74#include <sys/malloc.h>
75#include <sys/mbuf.h>
0a7de745 76#include <sys/proc.h> /* for proc0 declaration */
1c79356b
A
77#include <sys/protosw.h>
78#include <sys/socket.h>
79#include <sys/socketvar.h>
80#include <sys/syslog.h>
316670eb 81#include <sys/mcache.h>
f427ee49 82#if XNU_TARGET_OS_OSX
39236c6e 83#include <sys/kasl.h>
f427ee49 84#endif /* XNU_TARGET_OS_OSX */
5ba3f43e 85#include <sys/kauth.h>
0a7de745 86#include <kern/cpu_number.h> /* before tcp_seq.h, for tcp_random18() */
1c79356b 87
b0d623f7
A
88#include <machine/endian.h>
89
1c79356b 90#include <net/if.h>
d12e1678 91#include <net/if_types.h>
1c79356b 92#include <net/route.h>
6d2010ae 93#include <net/ntstat.h>
cb323159 94#include <net/content_filter.h>
39236c6e 95#include <net/dlil.h>
cb323159 96#include <net/multi_layer_pkt_log.h>
1c79356b
A
97
98#include <netinet/in.h>
99#include <netinet/in_systm.h>
100#include <netinet/ip.h>
39037602 101#include <netinet/ip_icmp.h> /* for ICMP_BANDLIM */
1c79356b 102#include <netinet/in_var.h>
0a7de745 103#include <netinet/icmp_var.h> /* for ICMP_BANDLIM */
1c79356b 104#include <netinet/in_pcb.h>
9bccf70c 105#include <netinet/ip_var.h>
6d2010ae 106#include <mach/sdt.h>
1c79356b
A
107#include <netinet/ip6.h>
108#include <netinet/icmp6.h>
109#include <netinet6/nd6.h>
110#include <netinet6/ip6_var.h>
111#include <netinet6/in6_pcb.h>
1c79356b 112#include <netinet/tcp.h>
3e170ce0 113#include <netinet/tcp_cache.h>
1c79356b
A
114#include <netinet/tcp_fsm.h>
115#include <netinet/tcp_seq.h>
116#include <netinet/tcp_timer.h>
117#include <netinet/tcp_var.h>
6d2010ae 118#include <netinet/tcp_cc.h>
39236c6e 119#include <dev/random/randomdev.h>
6d2010ae 120#include <kern/zalloc.h>
9bccf70c 121#include <netinet6/tcp6_var.h>
1c79356b
A
122#include <netinet/tcpip.h>
123#if TCPDEBUG
124#include <netinet/tcp_debug.h>
9bccf70c 125u_char tcp_saveipgen[40]; /* the size must be of max ip header, now IPv6 */
1c79356b
A
126struct tcphdr tcp_savetcp;
127#endif /* TCPDEBUG */
cb323159 128#include <netinet/tcp_log.h>
1c79356b
A
129
130#if IPSEC
131#include <netinet6/ipsec.h>
9bccf70c 132#include <netinet6/ipsec6.h>
1c79356b
A
133#include <netkey/key.h>
134#endif /*IPSEC*/
135
136#include <sys/kdebug.h>
39236c6e
A
137#if MPTCP
138#include <netinet/mptcp_var.h>
139#include <netinet/mptcp.h>
39037602 140#include <netinet/mptcp_opt.h>
39236c6e 141#endif /* MPTCP */
1c79356b 142
3e170ce0
A
143#include <corecrypto/ccaes.h>
144
0a7de745
A
145#define DBG_LAYER_BEG NETDBG_CODE(DBG_NETTCP, 0)
146#define DBG_LAYER_END NETDBG_CODE(DBG_NETTCP, 2)
1c79356b
A
147#define DBG_FNC_TCP_INPUT NETDBG_CODE(DBG_NETTCP, (3 << 8))
148#define DBG_FNC_TCP_NEWCONN NETDBG_CODE(DBG_NETTCP, (7 << 8))
149
0a7de745
A
150#define TCP_RTT_HISTORY_EXPIRE_TIME (60 * TCP_RETRANSHZ)
151#define TCP_RECV_THROTTLE_WIN (5 * TCP_RETRANSHZ)
152#define TCP_STRETCHACK_ENABLE_PKTCNT 2000
ecc0ceb4 153
0a7de745 154struct tcpstat tcpstat;
1c79356b 155
f427ee49
A
156SYSCTL_SKMEM_TCP_INT(OID_AUTO, flow_control_response,
157 CTLFLAG_RW | CTLFLAG_LOCKED, int, tcp_flow_control_response, 1,
158 "Improved response to Flow-control events");
159
9bccf70c 160static int log_in_vain = 0;
3e170ce0
A
161SYSCTL_INT(_net_inet_tcp, OID_AUTO, log_in_vain,
162 CTLFLAG_RW | CTLFLAG_LOCKED, &log_in_vain, 0,
163 "Log all incoming TCP connections");
9bccf70c 164
f427ee49
A
165SYSCTL_SKMEM_TCP_INT(OID_AUTO, ack_strategy,
166 CTLFLAG_RW | CTLFLAG_LOCKED, int, tcp_ack_strategy, TCP_ACK_STRATEGY_MODERN,
167 "Revised TCP ACK-strategy, avoiding stretch-ACK implementation");
168
9bccf70c 169static int blackhole = 0;
3e170ce0
A
170SYSCTL_INT(_net_inet_tcp, OID_AUTO, blackhole,
171 CTLFLAG_RW | CTLFLAG_LOCKED, &blackhole, 0,
172 "Do not send RST when dropping refused connections");
1c79356b 173
f427ee49
A
174SYSCTL_SKMEM_TCP_INT(OID_AUTO, aggressive_rcvwnd_inc,
175 CTLFLAG_RW | CTLFLAG_LOCKED, int, tcp_aggressive_rcvwnd_inc, 1,
176 "Be more aggressive about increasing the receive-window.");
177
5ba3f43e
A
178SYSCTL_SKMEM_TCP_INT(OID_AUTO, delayed_ack,
179 CTLFLAG_RW | CTLFLAG_LOCKED, int, tcp_delack_enabled, 3,
9bccf70c
A
180 "Delay ACK to try and piggyback it onto a data packet");
181
5ba3f43e
A
182SYSCTL_SKMEM_TCP_INT(OID_AUTO, recvbg, CTLFLAG_RW | CTLFLAG_LOCKED,
183 int, tcp_recv_bg, 0, "Receive background");
6d2010ae 184
5ba3f43e
A
185SYSCTL_SKMEM_TCP_INT(OID_AUTO, drop_synfin,
186 CTLFLAG_RW | CTLFLAG_LOCKED, static int, drop_synfin, 1,
3e170ce0 187 "Drop TCP packets with SYN+FIN set");
1c79356b 188
0a7de745 189SYSCTL_NODE(_net_inet_tcp, OID_AUTO, reass, CTLFLAG_RW | CTLFLAG_LOCKED, 0,
e5568f75
A
190 "TCP Segment Reassembly Queue");
191
e5568f75 192static int tcp_reass_overflows = 0;
3e170ce0
A
193SYSCTL_INT(_net_inet_tcp_reass, OID_AUTO, overflows,
194 CTLFLAG_RD | CTLFLAG_LOCKED, &tcp_reass_overflows, 0,
e5568f75
A
195 "Global number of TCP Segment Reassembly Queue Overflows");
196
197
5ba3f43e 198SYSCTL_SKMEM_TCP_INT(OID_AUTO, slowlink_wsize, CTLFLAG_RW | CTLFLAG_LOCKED,
0a7de745
A
199 __private_extern__ int, slowlink_wsize, 8192,
200 "Maximum advertised window size for slowlink");
d12e1678 201
5ba3f43e
A
202SYSCTL_SKMEM_TCP_INT(OID_AUTO, maxseg_unacked,
203 CTLFLAG_RW | CTLFLAG_LOCKED, int, maxseg_unacked, 8,
3e170ce0 204 "Maximum number of outstanding segments left unacked");
2d21ac55 205
5ba3f43e
A
206SYSCTL_SKMEM_TCP_INT(OID_AUTO, rfc3465, CTLFLAG_RW | CTLFLAG_LOCKED,
207 int, tcp_do_rfc3465, 1, "");
b0d623f7 208
5ba3f43e
A
209SYSCTL_SKMEM_TCP_INT(OID_AUTO, rfc3465_lim2,
210 CTLFLAG_RW | CTLFLAG_LOCKED, int, tcp_do_rfc3465_lim2, 1,
3e170ce0 211 "Appropriate bytes counting w/ L=2*SMSS");
6d2010ae 212
3e170ce0 213int rtt_samples_per_slot = 20;
6d2010ae 214
3e170ce0
A
215int tcp_acc_iaj_high_thresh = ACC_IAJ_HIGH_THRESH;
216u_int32_t tcp_autorcvbuf_inc_shift = 3;
5ba3f43e
A
217SYSCTL_SKMEM_TCP_INT(OID_AUTO, recv_allowed_iaj,
218 CTLFLAG_RW | CTLFLAG_LOCKED, int, tcp_allowed_iaj, ALLOWED_IAJ,
3e170ce0 219 "Allowed inter-packet arrival jiter");
6d2010ae 220
5ba3f43e
A
221SYSCTL_SKMEM_TCP_INT(OID_AUTO, doautorcvbuf,
222 CTLFLAG_RW | CTLFLAG_LOCKED, u_int32_t, tcp_do_autorcvbuf, 1,
3e170ce0 223 "Enable automatic socket buffer tuning");
316670eb 224
ea3f0419
A
225SYSCTL_SKMEM_TCP_INT(OID_AUTO, autotunereorder,
226 CTLFLAG_RW | CTLFLAG_LOCKED, u_int32_t, tcp_autotune_reorder, 1,
227 "Enable automatic socket buffer tuning even when reordering is present");
228
5ba3f43e 229SYSCTL_SKMEM_TCP_INT(OID_AUTO, autorcvbufmax,
f427ee49 230 CTLFLAG_RW | CTLFLAG_LOCKED, u_int32_t, tcp_autorcvbuf_max, 2 * 1024 * 1024,
3e170ce0 231 "Maximum receive socket buffer size");
316670eb 232
5ba3f43e
A
233int tcp_disable_access_to_stats = 1;
234SYSCTL_INT(_net_inet_tcp, OID_AUTO, disable_access_to_stats,
235 CTLFLAG_RW | CTLFLAG_LOCKED, &tcp_disable_access_to_stats, 0,
236 "Disable access to tcpstat");
237
d9a64523
A
238SYSCTL_SKMEM_TCP_INT(OID_AUTO, challengeack_limit,
239 CTLFLAG_RW | CTLFLAG_LOCKED, uint32_t, tcp_challengeack_limit, 10,
240 "Maximum number of challenge ACKs per connection per second");
241
f427ee49 242/* TO BE REMOVED */
d9a64523
A
243SYSCTL_SKMEM_TCP_INT(OID_AUTO, do_rfc5961,
244 CTLFLAG_RW | CTLFLAG_LOCKED, static int, tcp_do_rfc5961, 1,
245 "Enable/Disable full RFC 5961 compliance");
39236c6e 246
f427ee49
A
247SYSCTL_SKMEM_TCP_INT(OID_AUTO, do_better_lr,
248 CTLFLAG_RW | CTLFLAG_LOCKED, int, tcp_do_better_lr, 1,
249 "Improved TCP Loss Recovery");
250
6d2010ae
A
251extern int tcp_acc_iaj_high;
252extern int tcp_acc_iaj_react_limit;
6d2010ae 253
39236c6e 254int tcprexmtthresh = 3;
d12e1678 255
b0d623f7 256u_int32_t tcp_now;
0a7de745
A
257struct timeval tcp_uptime; /* uptime when tcp_now was last updated */
258lck_spin_t *tcp_uptime_lock; /* Used to sychronize updates to tcp_now */
2d21ac55 259
1c79356b 260struct inpcbhead tcb;
0a7de745 261#define tcb6 tcb /* for KAME src sync over BSD*'s */
1c79356b
A
262struct inpcbinfo tcbinfo;
263
6d2010ae 264static void tcp_dooptions(struct tcpcb *, u_char *, int, struct tcphdr *,
3e170ce0
A
265 struct tcpopt *);
266static void tcp_finalize_options(struct tcpcb *, struct tcpopt *, unsigned int);
267static void tcp_pulloutofband(struct socket *,
268 struct tcphdr *, struct mbuf *, int);
3e170ce0 269static void tcp_xmit_timer(struct tcpcb *, int, u_int32_t, tcp_seq);
2d21ac55 270static inline unsigned int tcp_maxmtu(struct rtentry *);
39037602 271static inline int tcp_stretch_ack_enable(struct tcpcb *tp, int thflags);
39236c6e 272static inline void tcp_adaptive_rwtimo_check(struct tcpcb *, int);
6d2010ae
A
273
274#if TRAFFIC_MGT
fe8ab488 275static inline void update_iaj_state(struct tcpcb *tp, uint32_t tlen,
3e170ce0 276 int reset_size);
f427ee49
A
277static inline void compute_iaj(struct tcpcb *tp);
278static inline void compute_iaj_meat(struct tcpcb *tp, uint32_t cur_iaj);
6d2010ae
A
279#endif /* TRAFFIC_MGT */
280
2d21ac55 281static inline unsigned int tcp_maxmtu6(struct rtentry *);
5ba3f43e
A
282unsigned int get_maxmtu(struct rtentry *);
283
39037602 284static void tcp_sbrcv_grow(struct tcpcb *tp, struct sockbuf *sb,
f427ee49 285 struct tcpopt *to, uint32_t tlen);
316670eb
A
286void tcp_sbrcv_trim(struct tcpcb *tp, struct sockbuf *sb);
287static void tcp_sbsnd_trim(struct sockbuf *sbsnd);
288static inline void tcp_sbrcv_tstmp_check(struct tcpcb *tp);
289static inline void tcp_sbrcv_reserve(struct tcpcb *tp, struct sockbuf *sb,
39037602 290 u_int32_t newsize, u_int32_t idealsize, u_int32_t rcvbuf_max);
39236c6e 291static void tcp_bad_rexmt_restore_state(struct tcpcb *tp, struct tcphdr *th);
39037602 292static void tcp_compute_rtt(struct tcpcb *tp, struct tcpopt *to,
3e170ce0 293 struct tcphdr *th);
fe8ab488
A
294static void tcp_early_rexmt_check(struct tcpcb *tp, struct tcphdr *th);
295static void tcp_bad_rexmt_check(struct tcpcb *tp, struct tcphdr *th,
3e170ce0 296 struct tcpopt *to);
39236c6e 297/*
39037602
A
298 * Constants used for resizing receive socket buffer
299 * when timestamps are not supported
39236c6e 300 */
316670eb
A
301#define TCPTV_RCVNOTS_QUANTUM 100
302#define TCP_RCVNOTS_BYTELEVEL 204800
39236c6e 303
39037602
A
304/*
305 * Constants used for limiting early retransmits
39236c6e
A
306 * to 10 per minute.
307 */
308#define TCP_EARLY_REXMT_WIN (60 * TCP_RETRANSHZ) /* 60 seconds */
309#define TCP_EARLY_REXMT_LIMIT 10
9bccf70c 310
2d21ac55 311#define log_in_vain_log( a ) { log a; }
2d21ac55 312
6d2010ae
A
313int tcp_rcvunackwin = TCPTV_UNACKWIN;
314int tcp_maxrcvidle = TCPTV_MAXRCVIDLE;
5ba3f43e 315SYSCTL_SKMEM_TCP_INT(OID_AUTO, rcvsspktcnt, CTLFLAG_RW | CTLFLAG_LOCKED,
0a7de745 316 int, tcp_rcvsspktcnt, TCP_RCV_SS_PKTCOUNT, "packets to be seen before receiver stretches acks");
91447636 317
39236c6e
A
318#define DELAY_ACK(tp, th) \
319 (CC_ALGO(tp)->delay_ack != NULL && CC_ALGO(tp)->delay_ack(tp, th))
91447636 320
2d21ac55 321static int tcp_dropdropablreq(struct socket *head);
8ad349bb 322static void tcp_newreno_partial_ack(struct tcpcb *tp, struct tcphdr *th);
6d2010ae 323static void update_base_rtt(struct tcpcb *tp, uint32_t rtt);
6d2010ae
A
324void tcp_set_background_cc(struct socket *so);
325void tcp_set_foreground_cc(struct socket *so);
326static void tcp_set_new_cc(struct socket *so, uint16_t cc_index);
316670eb 327static void tcp_bwmeas_check(struct tcpcb *tp);
6d2010ae
A
328
329#if TRAFFIC_MGT
330void
331reset_acc_iaj(struct tcpcb *tp)
332{
333 tp->acc_iaj = 0;
316670eb 334 CLEAR_IAJ_STATE(tp);
6d2010ae
A
335}
336
337static inline void
338update_iaj_state(struct tcpcb *tp, uint32_t size, int rst_size)
339{
0a7de745 340 if (rst_size > 0) {
6d2010ae 341 tp->iaj_size = 0;
0a7de745 342 }
6d2010ae
A
343 if (tp->iaj_size == 0 || size >= tp->iaj_size) {
344 tp->iaj_size = size;
345 tp->iaj_rcv_ts = tcp_now;
346 tp->iaj_small_pkt = 0;
347 }
348}
349
39037602
A
350/* For every 32 bit unsigned integer(v), this function will find the
351 * largest integer n such that (n*n <= v). This takes at most 16 iterations
352 * irrespective of the value of v and does not involve multiplications.
6d2010ae
A
353 */
354static inline int
39037602
A
355isqrt(unsigned int val)
356{
6d2010ae 357 unsigned int sqrt_cache[11] = {0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100};
0a7de745
A
358 unsigned int temp, g = 0, b = 0x8000, bshft = 15;
359 if (val <= 100) {
6d2010ae
A
360 for (g = 0; g <= 10; ++g) {
361 if (sqrt_cache[g] > val) {
362 g--;
363 break;
364 } else if (sqrt_cache[g] == val) {
365 break;
366 }
367 }
368 } else {
369 do {
370 temp = (((g << 1) + b) << (bshft--));
371 if (val >= temp) {
372 g += b;
373 val -= temp;
374 }
375 b >>= 1;
0a7de745 376 } while (b > 0 && val > 0);
6d2010ae 377 }
0a7de745 378 return g;
39037602 379}
6d2010ae 380
f427ee49
A
381static inline void
382compute_iaj(struct tcpcb *tp)
6d2010ae 383{
f427ee49 384 compute_iaj_meat(tp, (tcp_now - tp->iaj_rcv_ts));
39236c6e
A
385}
386
f427ee49 387static inline void
0a7de745 388compute_iaj_meat(struct tcpcb *tp, uint32_t cur_iaj)
39236c6e 389{
39037602 390 /* When accumulated IAJ reaches MAX_ACC_IAJ in milliseconds,
39236c6e 391 * throttle the receive window to a minimum of MIN_IAJ_WIN packets
6d2010ae
A
392 */
393#define MAX_ACC_IAJ (tcp_acc_iaj_high_thresh + tcp_acc_iaj_react_limit)
39236c6e
A
394#define IAJ_DIV_SHIFT 4
395#define IAJ_ROUNDUP_CONST (1 << (IAJ_DIV_SHIFT - 1))
6d2010ae
A
396
397 uint32_t allowed_iaj, acc_iaj = 0;
6d2010ae
A
398
399 uint32_t mean, temp;
400 int32_t cur_iaj_dev;
39236c6e 401
39037602
A
402 cur_iaj_dev = (cur_iaj - tp->avg_iaj);
403
404 /* Allow a jitter of "allowed_iaj" milliseconds. Some connections
405 * may have a constant jitter more than that. We detect this by
39236c6e 406 * using standard deviation.
6d2010ae
A
407 */
408 allowed_iaj = tp->avg_iaj + tp->std_dev_iaj;
0a7de745 409 if (allowed_iaj < tcp_allowed_iaj) {
6d2010ae 410 allowed_iaj = tcp_allowed_iaj;
0a7de745 411 }
6d2010ae 412
39037602
A
413 /* Initially when the connection starts, the senders congestion
414 * window is small. During this period we avoid throttling a
415 * connection because we do not have a good starting point for
416 * allowed_iaj. IAJ_IGNORE_PKTCNT is used to quietly gloss over
39236c6e 417 * the first few packets.
6d2010ae
A
418 */
419 if (tp->iaj_pktcnt > IAJ_IGNORE_PKTCNT) {
0a7de745
A
420 if (cur_iaj <= allowed_iaj) {
421 if (tp->acc_iaj >= 2) {
6d2010ae 422 acc_iaj = tp->acc_iaj - 2;
0a7de745 423 } else {
6d2010ae 424 acc_iaj = 0;
0a7de745 425 }
6d2010ae
A
426 } else {
427 acc_iaj = tp->acc_iaj + (cur_iaj - allowed_iaj);
428 }
429
0a7de745 430 if (acc_iaj > MAX_ACC_IAJ) {
6d2010ae 431 acc_iaj = MAX_ACC_IAJ;
0a7de745 432 }
6d2010ae
A
433 tp->acc_iaj = acc_iaj;
434 }
435
436 /* Compute weighted average where the history has a weight of
39037602 437 * 15 out of 16 and the current value has a weight of 1 out of 16.
6d2010ae 438 * This will make the short-term measurements have more weight.
39236c6e 439 *
39037602 440 * The addition of 8 will help to round-up the value
39236c6e 441 * instead of round-down
6d2010ae 442 */
39037602 443 tp->avg_iaj = (((tp->avg_iaj << IAJ_DIV_SHIFT) - tp->avg_iaj)
0a7de745 444 + cur_iaj + IAJ_ROUNDUP_CONST) >> IAJ_DIV_SHIFT;
6d2010ae
A
445
446 /* Compute Root-mean-square of deviation where mean is a weighted
39037602 447 * average as described above.
6d2010ae
A
448 */
449 temp = tp->std_dev_iaj * tp->std_dev_iaj;
39037602 450 mean = (((temp << IAJ_DIV_SHIFT) - temp)
0a7de745
A
451 + (cur_iaj_dev * cur_iaj_dev)
452 + IAJ_ROUNDUP_CONST) >> IAJ_DIV_SHIFT;
39037602 453
6d2010ae
A
454 tp->std_dev_iaj = isqrt(mean);
455
39037602 456 DTRACE_TCP3(iaj, struct tcpcb *, tp, uint32_t, cur_iaj,
0a7de745 457 uint32_t, allowed_iaj);
6d2010ae
A
458
459 return;
460}
461#endif /* TRAFFIC_MGT */
9bccf70c 462
d9a64523
A
463/*
464 * Perform rate limit check per connection per second
465 * tp->t_challengeack_last is the last_time diff was greater than 1sec
466 * tp->t_challengeack_count is the number of ACKs sent (within 1sec)
467 * Return TRUE if we shouldn't send the ACK due to rate limitation
468 * Return FALSE if it is still ok to send challenge ACK
469 */
470static boolean_t
471tcp_is_ack_ratelimited(struct tcpcb *tp)
472{
473 boolean_t ret = TRUE;
474 uint32_t now = tcp_now;
475 int32_t diff = 0;
476
477 diff = timer_diff(now, 0, tp->t_challengeack_last, 0);
478 /* If it is first time or diff > 1000ms,
479 * update the challengeack_last and reset the
480 * current count of ACKs
481 */
482 if (tp->t_challengeack_last == 0 || diff >= 1000) {
483 tp->t_challengeack_last = now;
484 tp->t_challengeack_count = 0;
485 ret = FALSE;
486 } else if (tp->t_challengeack_count < tcp_challengeack_limit) {
487 ret = FALSE;
488 }
489
490 /* Careful about wrap-around */
0a7de745 491 if (ret == FALSE && (tp->t_challengeack_count + 1 > 0)) {
d9a64523 492 tp->t_challengeack_count++;
0a7de745 493 }
d9a64523 494
0a7de745 495 return ret;
d9a64523
A
496}
497
39037602 498/* Check if enough amount of data has been acknowledged since
316670eb
A
499 * bw measurement was started
500 */
501static void
502tcp_bwmeas_check(struct tcpcb *tp)
503{
504 int32_t bw_meas_bytes;
505 uint32_t bw, bytes, elapsed_time;
5ba3f43e 506
0a7de745 507 if (SEQ_LEQ(tp->snd_una, tp->t_bwmeas->bw_start)) {
5ba3f43e 508 return;
0a7de745 509 }
5ba3f43e 510
316670eb 511 bw_meas_bytes = tp->snd_una - tp->t_bwmeas->bw_start;
5ba3f43e 512 if ((tp->t_flagsext & TF_BWMEAS_INPROGRESS) &&
316670eb
A
513 bw_meas_bytes >= (int32_t)(tp->t_bwmeas->bw_size)) {
514 bytes = bw_meas_bytes;
515 elapsed_time = tcp_now - tp->t_bwmeas->bw_ts;
516 if (elapsed_time > 0) {
517 bw = bytes / elapsed_time;
0a7de745 518 if (bw > 0) {
316670eb 519 if (tp->t_bwmeas->bw_sndbw > 0) {
39037602 520 tp->t_bwmeas->bw_sndbw =
5ba3f43e
A
521 (((tp->t_bwmeas->bw_sndbw << 3)
522 - tp->t_bwmeas->bw_sndbw)
523 + bw) >> 3;
316670eb
A
524 } else {
525 tp->t_bwmeas->bw_sndbw = bw;
526 }
5ba3f43e
A
527
528 /* Store the maximum value */
529 if (tp->t_bwmeas->bw_sndbw_max == 0) {
530 tp->t_bwmeas->bw_sndbw_max =
531 tp->t_bwmeas->bw_sndbw;
532 } else {
533 tp->t_bwmeas->bw_sndbw_max =
534 max(tp->t_bwmeas->bw_sndbw,
535 tp->t_bwmeas->bw_sndbw_max);
536 }
316670eb
A
537 }
538 }
539 tp->t_flagsext &= ~(TF_BWMEAS_INPROGRESS);
540 }
541}
542
9bccf70c 543static int
39236c6e 544tcp_reass(struct tcpcb *tp, struct tcphdr *th, int *tlenp, struct mbuf *m,
cb323159 545 struct ifnet *ifp, int *dowakeup)
1c79356b 546{
9bccf70c
A
547 struct tseg_qent *q;
548 struct tseg_qent *p = NULL;
549 struct tseg_qent *nq;
8ad349bb 550 struct tseg_qent *te = NULL;
39236c6e
A
551 struct inpcb *inp = tp->t_inpcb;
552 struct socket *so = inp->inp_socket;
553 int flags = 0;
fe8ab488 554 u_int16_t qlimit;
39236c6e
A
555 boolean_t cell = IFNET_IS_CELLULAR(ifp);
556 boolean_t wifi = (!cell && IFNET_IS_WIFI(ifp));
fe8ab488 557 boolean_t wired = (!wifi && IFNET_IS_WIRED(ifp));
3e170ce0 558 boolean_t dsack_set = FALSE;
1c79356b
A
559
560 /*
561 * Call with th==0 after become established to
562 * force pre-ESTABLISHED data up to user socket.
563 */
0a7de745 564 if (th == NULL) {
1c79356b 565 goto present;
0a7de745 566 }
39037602 567
fe8ab488 568 /*
39037602
A
569 * If the reassembly queue already has entries or if we are going
570 * to add a new one, then the connection has reached a loss state.
6d2010ae
A
571 * Reset the stretch-ack algorithm at this point.
572 */
fe8ab488 573 tcp_reset_stretch_ack(tp);
f427ee49 574 tp->t_forced_acks = TCP_FORCED_ACKS_COUNT;
6d2010ae
A
575
576#if TRAFFIC_MGT
0a7de745 577 if (tp->acc_iaj > 0) {
6d2010ae 578 reset_acc_iaj(tp);
0a7de745 579 }
39037602 580#endif /* TRAFFIC_MGT */
1c79356b 581
2a1bd2d3
A
582 if (th->th_seq != tp->rcv_nxt) {
583 struct mbuf *tmp = m;
584 while (tmp != NULL) {
585 if (mbuf_class_under_pressure(tmp)) {
586 m_freem(m);
587 tcp_reass_overflows++;
588 tcpstat.tcps_rcvmemdrop++;
589 *tlenp = 0;
590 return 0;
591 }
592
593 tmp = tmp->m_next;
594 }
595 }
596
e5568f75
A
597 /*
598 * Limit the number of segments in the reassembly queue to prevent
599 * holding on to too many segments (and thus running out of mbufs).
600 * Make sure to let the missing segment through which caused this
601 * queue. Always keep one global queue entry spare to be able to
602 * process the missing segment.
603 */
fe8ab488 604 qlimit = min(max(100, so->so_rcv.sb_hiwat >> 10),
f427ee49 605 (tcp_autorcvbuf_max >> 10));
e5568f75 606 if (th->th_seq != tp->rcv_nxt &&
fe8ab488 607 (tp->t_reassqlen + 1) >= qlimit) {
e5568f75
A
608 tcp_reass_overflows++;
609 tcpstat.tcps_rcvmemdrop++;
610 m_freem(m);
2d21ac55 611 *tlenp = 0;
0a7de745 612 return 0;
e5568f75
A
613 }
614
9bccf70c 615 /* Allocate a new queue entry. If we can't, just drop the pkt. XXX */
fe8ab488 616 te = (struct tseg_qent *) zalloc(tcp_reass_zone);
9bccf70c 617 if (te == NULL) {
1c79356b
A
618 tcpstat.tcps_rcvmemdrop++;
619 m_freem(m);
0a7de745 620 return 0;
1c79356b 621 }
fe8ab488 622 tp->t_reassqlen++;
1c79356b
A
623
624 /*
625 * Find a segment which begins after this one does.
626 */
9bccf70c 627 LIST_FOREACH(q, &tp->t_segq, tqe_q) {
0a7de745 628 if (SEQ_GT(q->tqe_th->th_seq, th->th_seq)) {
1c79356b 629 break;
0a7de745 630 }
9bccf70c
A
631 p = q;
632 }
1c79356b
A
633
634 /*
635 * If there is a preceding segment, it may provide some of
636 * our data already. If so, drop the data from the incoming
637 * segment. If it provides all of our data, drop us.
638 */
639 if (p != NULL) {
3e170ce0 640 int i;
1c79356b 641 /* conversion to int (in i) handles seq wraparound */
9bccf70c 642 i = p->tqe_th->th_seq + p->tqe_len - th->th_seq;
1c79356b 643 if (i > 0) {
f427ee49 644 if (i > 1) {
3e170ce0
A
645 /*
646 * Note duplicate data sequnce numbers
647 * to report in DSACK option
648 */
649 tp->t_dsack_lseq = th->th_seq;
650 tp->t_dsack_rseq = th->th_seq +
651 min(i, *tlenp);
652
653 /*
654 * Report only the first part of partial/
655 * non-contiguous duplicate sequence space
656 */
657 dsack_set = TRUE;
658 }
9bccf70c 659 if (i >= *tlenp) {
1c79356b 660 tcpstat.tcps_rcvduppack++;
9bccf70c 661 tcpstat.tcps_rcvdupbyte += *tlenp;
6d2010ae 662 if (nstat_collect) {
fe8ab488
A
663 nstat_route_rx(inp->inp_route.ro_rt,
664 1, *tlenp,
665 NSTAT_RX_FLAG_DUPLICATE);
666 INP_ADD_STAT(inp, cell, wifi, wired,
667 rxpackets, 1);
668 INP_ADD_STAT(inp, cell, wifi, wired,
669 rxbytes, *tlenp);
6d2010ae 670 tp->t_stat.rxduplicatebytes += *tlenp;
5ba3f43e 671 inp_set_activity_bitmap(inp);
6d2010ae 672 }
1c79356b 673 m_freem(m);
6d2010ae 674 zfree(tcp_reass_zone, te);
39236c6e 675 te = NULL;
fe8ab488 676 tp->t_reassqlen--;
1c79356b
A
677 /*
678 * Try to present any queued data
679 * at the left window edge to the user.
680 * This is needed after the 3-WHS
681 * completes.
682 */
39236c6e 683 goto present;
1c79356b
A
684 }
685 m_adj(m, i);
9bccf70c 686 *tlenp -= i;
1c79356b
A
687 th->th_seq += i;
688 }
689 }
4bd07ac2 690 tp->t_rcvoopack++;
1c79356b 691 tcpstat.tcps_rcvoopack++;
9bccf70c 692 tcpstat.tcps_rcvoobyte += *tlenp;
6d2010ae 693 if (nstat_collect) {
fe8ab488
A
694 nstat_route_rx(inp->inp_route.ro_rt, 1, *tlenp,
695 NSTAT_RX_FLAG_OUT_OF_ORDER);
696 INP_ADD_STAT(inp, cell, wifi, wired, rxpackets, 1);
697 INP_ADD_STAT(inp, cell, wifi, wired, rxbytes, *tlenp);
6d2010ae 698 tp->t_stat.rxoutoforderbytes += *tlenp;
5ba3f43e 699 inp_set_activity_bitmap(inp);
6d2010ae 700 }
1c79356b
A
701
702 /*
703 * While we overlap succeeding segments trim them or,
704 * if they are completely covered, dequeue them.
705 */
706 while (q) {
3e170ce0 707 int i = (th->th_seq + *tlenp) - q->tqe_th->th_seq;
0a7de745 708 if (i <= 0) {
1c79356b 709 break;
0a7de745 710 }
3e170ce0
A
711
712 /*
713 * Report only the first part of partial/non-contiguous
714 * duplicate segment in dsack option. The variable
715 * dsack_set will be true if a previous entry has some of
716 * the duplicate sequence space.
717 */
f427ee49 718 if (i > 1 && !dsack_set) {
3e170ce0
A
719 if (tp->t_dsack_lseq == 0) {
720 tp->t_dsack_lseq = q->tqe_th->th_seq;
721 tp->t_dsack_rseq =
722 tp->t_dsack_lseq + min(i, q->tqe_len);
723 } else {
724 /*
725 * this segment overlaps data in multple
726 * entries in the reassembly queue, move
727 * the right sequence number further.
728 */
729 tp->t_dsack_rseq =
730 tp->t_dsack_rseq + min(i, q->tqe_len);
731 }
732 }
9bccf70c
A
733 if (i < q->tqe_len) {
734 q->tqe_th->th_seq += i;
735 q->tqe_len -= i;
736 m_adj(q->tqe_m, i);
1c79356b
A
737 break;
738 }
9bccf70c
A
739
740 nq = LIST_NEXT(q, tqe_q);
741 LIST_REMOVE(q, tqe_q);
742 m_freem(q->tqe_m);
6d2010ae 743 zfree(tcp_reass_zone, q);
fe8ab488 744 tp->t_reassqlen--;
1c79356b
A
745 q = nq;
746 }
747
9bccf70c
A
748 /* Insert the new segment queue entry into place. */
749 te->tqe_m = m;
750 te->tqe_th = th;
751 te->tqe_len = *tlenp;
1c79356b 752
1c79356b 753 if (p == NULL) {
9bccf70c 754 LIST_INSERT_HEAD(&tp->t_segq, te, tqe_q);
1c79356b 755 } else {
9bccf70c 756 LIST_INSERT_AFTER(p, te, tqe_q);
1c79356b
A
757 }
758
759present:
760 /*
761 * Present data to user, advancing rcv_nxt through
762 * completed sequence space.
763 */
0a7de745
A
764 if (!TCPS_HAVEESTABLISHED(tp->t_state)) {
765 return 0;
766 }
9bccf70c 767 q = LIST_FIRST(&tp->t_segq);
316670eb 768 if (!q || q->tqe_th->th_seq != tp->rcv_nxt) {
0a7de745 769 return 0;
fe8ab488
A
770 }
771
39037602
A
772 /*
773 * If there is already another thread doing reassembly for this
774 * connection, it is better to let it finish the job --
775 * (radar 16316196)
776 */
0a7de745
A
777 if (tp->t_flagsext & TF_REASS_INPROG) {
778 return 0;
779 }
39037602
A
780
781 tp->t_flagsext |= TF_REASS_INPROG;
fe8ab488
A
782 /* lost packet was recovered, so ooo data can be returned */
783 tcpstat.tcps_recovered_pkts++;
784
1c79356b 785 do {
9bccf70c
A
786 tp->rcv_nxt += q->tqe_len;
787 flags = q->tqe_th->th_flags & TH_FIN;
9bccf70c 788 LIST_REMOVE(q, tqe_q);
39236c6e 789 if (so->so_state & SS_CANTRCVMORE) {
9bccf70c 790 m_freem(q->tqe_m);
39236c6e 791 } else {
cb323159
A
792 /*
793 * The mbuf may be freed after it has been added to the
794 * receive socket buffer so we reinitialize th to point
795 * to a safe copy of the TCP header
796 */
797 struct tcphdr saved_tcphdr = {};
798
6d2010ae 799 so_recv_data_stat(so, q->tqe_m, 0); /* XXXX */
cb323159 800 memcpy(&saved_tcphdr, th, sizeof(struct tcphdr));
f427ee49
A
801
802 if (q->tqe_th->th_flags & TH_PUSH) {
803 tp->t_flagsext |= TF_LAST_IS_PSH;
804 } else {
805 tp->t_flagsext &= ~TF_LAST_IS_PSH;
0a7de745 806 }
cb323159 807
f427ee49
A
808 if (sbappendstream_rcvdemux(so, q->tqe_m)) {
809 *dowakeup = 1;
316670eb 810 }
f427ee49 811 th = &saved_tcphdr;
91447636 812 }
6d2010ae 813 zfree(tcp_reass_zone, q);
fe8ab488 814 tp->t_reassqlen--;
39037602 815 q = LIST_FIRST(&tp->t_segq);
9bccf70c 816 } while (q && q->tqe_th->th_seq == tp->rcv_nxt);
39037602 817 tp->t_flagsext &= ~TF_REASS_INPROG;
9bccf70c 818
39236c6e 819 if ((inp->inp_vflag & INP_IPV6) != 0) {
9bccf70c 820 KERNEL_DEBUG(DBG_LAYER_BEG,
0a7de745
A
821 ((inp->inp_fport << 16) | inp->inp_lport),
822 (((inp->in6p_laddr.s6_addr16[0] & 0xffff) << 16) |
823 (inp->in6p_faddr.s6_addr16[0] & 0xffff)),
824 0, 0, 0);
f427ee49 825 } else {
9bccf70c 826 KERNEL_DEBUG(DBG_LAYER_BEG,
0a7de745
A
827 ((inp->inp_fport << 16) | inp->inp_lport),
828 (((inp->inp_laddr.s_addr & 0xffff) << 16) |
829 (inp->inp_faddr.s_addr & 0xffff)),
830 0, 0, 0);
91447636 831 }
39236c6e 832
0a7de745 833 return flags;
1c79356b
A
834}
835
2d21ac55 836/*
3e170ce0
A
837 * Reduce congestion window -- used when ECN is seen or when a tail loss
838 * probe recovers the last packet.
2d21ac55
A
839 */
840static void
f427ee49 841tcp_reduce_congestion_window(struct tcpcb *tp)
2d21ac55 842{
6d2010ae
A
843 /*
844 * If the current tcp cc module has
845 * defined a hook for tasks to run
846 * before entering FR, call it
847 */
0a7de745 848 if (CC_ALGO(tp)->pre_fr != NULL) {
316670eb 849 CC_ALGO(tp)->pre_fr(tp);
0a7de745 850 }
2d21ac55 851 ENTER_FASTRECOVERY(tp);
0a7de745 852 if (tp->t_flags & TF_SENTFIN) {
3e170ce0 853 tp->snd_recover = tp->snd_max - 1;
0a7de745 854 } else {
3e170ce0 855 tp->snd_recover = tp->snd_max;
0a7de745 856 }
2d21ac55 857 tp->t_timer[TCPT_REXMT] = 0;
fe8ab488 858 tp->t_timer[TCPT_PTO] = 0;
2d21ac55 859 tp->t_rtttime = 0;
3e170ce0
A
860 if (tp->t_flagsext & TF_CWND_NONVALIDATED) {
861 tcp_cc_adjust_nonvalidated_cwnd(tp);
862 } else {
863 tp->snd_cwnd = tp->snd_ssthresh +
864 tp->t_maxseg * tcprexmtthresh;
865 }
2d21ac55
A
866}
867
39236c6e 868/*
3e170ce0
A
869 * This function is called upon reception of data on a socket. It's purpose is
870 * to handle the adaptive keepalive timers that monitor whether the connection
871 * is making progress. First the adaptive read-timer, second the TFO probe-timer.
872 *
873 * The application wants to get an event if there is a stall during read.
874 * Set the initial keepalive timeout to be equal to twice RTO.
875 *
876 * If the outgoing interface is in marginal conditions, we need to
877 * enable read probes for that too.
39236c6e
A
878 */
879static inline void
3e170ce0 880tcp_adaptive_rwtimo_check(struct tcpcb *tp, int tlen)
39236c6e 881{
3e170ce0
A
882 struct ifnet *outifp = tp->t_inpcb->inp_last_outifp;
883
884 if ((tp->t_adaptive_rtimo > 0 ||
885 (outifp != NULL &&
886 (outifp->if_eflags & IFEF_PROBE_CONNECTIVITY)))
887 && tlen > 0 &&
888 tp->t_state == TCPS_ESTABLISHED) {
889 tp->t_timer[TCPT_KEEP] = OFFSET_FROM_START(tp,
0a7de745 890 (TCP_REXMTVAL(tp) << 1));
39236c6e
A
891 tp->t_flagsext |= TF_DETECT_READSTALL;
892 tp->t_rtimo_probes = 0;
893 }
894}
895
896inline void
897tcp_keepalive_reset(struct tcpcb *tp)
898{
39037602 899 tp->t_timer[TCPT_KEEP] = OFFSET_FROM_START(tp,
0a7de745 900 TCP_CONN_KEEPIDLE(tp));
39236c6e
A
901 tp->t_flagsext &= ~(TF_DETECT_READSTALL);
902 tp->t_rtimo_probes = 0;
903}
9bccf70c 904
1c79356b
A
905/*
906 * TCP input routine, follows pages 65-76 of the
907 * protocol specification dated September, 1981 very closely.
908 */
1c79356b 909int
6d2010ae 910tcp6_input(struct mbuf **mp, int *offp, int proto)
1c79356b 911{
6d2010ae 912#pragma unused(proto)
39037602 913 struct mbuf *m = *mp;
39236c6e
A
914 uint32_t ia6_flags;
915 struct ifnet *ifp = m->m_pkthdr.rcvif;
9bccf70c 916
91447636 917 IP6_EXTHDR_CHECK(m, *offp, sizeof(struct tcphdr), return IPPROTO_DONE);
9bccf70c 918
316670eb
A
919 /* Expect 32-bit aligned data pointer on strict-align platforms */
920 MBUF_STRICT_DATA_ALIGNMENT_CHECK_32(m);
921
9bccf70c
A
922 /*
923 * draft-itojun-ipv6-tcp-to-anycast
924 * better place to put this in?
925 */
39236c6e
A
926 if (ip6_getdstifaddr_info(m, NULL, &ia6_flags) == 0) {
927 if (ia6_flags & IN6_IFF_ANYCAST) {
6d2010ae 928 struct ip6_hdr *ip6;
9bccf70c 929
6d2010ae
A
930 ip6 = mtod(m, struct ip6_hdr *);
931 icmp6_error(m, ICMP6_DST_UNREACH,
932 ICMP6_DST_UNREACH_ADDR,
9bccf70c 933 (caddr_t)&ip6->ip6_dst - (caddr_t)ip6);
39236c6e
A
934
935 IF_TCP_STATINC(ifp, icmp6unreach);
936
0a7de745 937 return IPPROTO_DONE;
6d2010ae 938 }
9bccf70c
A
939 }
940
941 tcp_input(m, *offp);
0a7de745 942 return IPPROTO_DONE;
1c79356b 943}
1c79356b 944
316670eb 945/* Depending on the usage of mbuf space in the system, this function
39037602 946 * will return true or false. This is used to determine if a socket
316670eb
A
947 * buffer can take more memory from the system for auto-tuning or not.
948 */
949u_int8_t
950tcp_cansbgrow(struct sockbuf *sb)
951{
952 /* Calculate the host level space limit in terms of MSIZE buffers.
953 * We can use a maximum of half of the available mbuf space for
39037602 954 * socket buffers.
316670eb
A
955 */
956 u_int32_t mblim = ((nmbclusters >> 1) << (MCLSHIFT - MSIZESHIFT));
957
958 /* Calculate per sb limit in terms of bytes. We optimize this limit
959 * for upto 16 socket buffers.
960 */
961
962 u_int32_t sbspacelim = ((nmbclusters >> 4) << MCLSHIFT);
963
964 if ((total_sbmb_cnt < mblim) &&
0a7de745
A
965 (sb->sb_hiwat < sbspacelim)) {
966 return 1;
fe8ab488
A
967 } else {
968 OSIncrementAtomic64(&sbmb_limreached);
316670eb 969 }
0a7de745 970 return 0;
316670eb
A
971}
972
39236c6e
A
973static void
974tcp_sbrcv_reserve(struct tcpcb *tp, struct sockbuf *sbrcv,
0a7de745 975 u_int32_t newsize, u_int32_t idealsize, u_int32_t rcvbuf_max)
39236c6e 976{
316670eb 977 /* newsize should not exceed max */
39037602 978 newsize = min(newsize, rcvbuf_max);
316670eb 979
39037602
A
980 /* The receive window scale negotiated at the
981 * beginning of the connection will also set a
316670eb
A
982 * limit on the socket buffer size
983 */
984 newsize = min(newsize, TCP_MAXWIN << tp->rcv_scale);
985
986 /* Set new socket buffer size */
987 if (newsize > sbrcv->sb_hiwat &&
0a7de745 988 (sbreserve(sbrcv, newsize) == 1)) {
39037602
A
989 sbrcv->sb_idealsize = min(max(sbrcv->sb_idealsize,
990 (idealsize != 0) ? idealsize : newsize), rcvbuf_max);
316670eb 991
39037602
A
992 /* Again check the limit set by the advertised
993 * window scale
316670eb 994 */
39037602 995 sbrcv->sb_idealsize = min(sbrcv->sb_idealsize,
0a7de745 996 TCP_MAXWIN << tp->rcv_scale);
316670eb
A
997 }
998}
999
39037602 1000/*
316670eb
A
1001 * This function is used to grow a receive socket buffer. It
1002 * will take into account system-level memory usage and the
1003 * bandwidth available on the link to make a decision.
1004 */
1005static void
39037602 1006tcp_sbrcv_grow(struct tcpcb *tp, struct sockbuf *sbrcv,
f427ee49 1007 struct tcpopt *to, uint32_t pktlen)
3e170ce0
A
1008{
1009 struct socket *so = sbrcv->sb_so;
39037602 1010
39236c6e
A
1011 /*
1012 * Do not grow the receive socket buffer if
1013 * - auto resizing is disabled, globally or on this socket
fe8ab488 1014 * - the high water mark already reached the maximum
39037602 1015 * - the stream is in background and receive side is being
39236c6e 1016 * throttled
39236c6e 1017 */
316670eb 1018 if (tcp_do_autorcvbuf == 0 ||
0a7de745
A
1019 (sbrcv->sb_flags & SB_AUTOSIZE) == 0 ||
1020 tcp_cansbgrow(sbrcv) == 0 ||
f427ee49 1021 sbrcv->sb_hiwat >= tcp_autorcvbuf_max ||
0a7de745
A
1022 (tp->t_flagsext & TF_RECV_THROTTLE) ||
1023 (so->so_flags1 & SOF1_EXTEND_BK_IDLE_WANTED) ||
ea3f0419 1024 (!tcp_autotune_reorder && !LIST_EMPTY(&tp->t_segq))) {
316670eb
A
1025 /* Can not resize the socket buffer, just return */
1026 goto out;
1027 }
1028
39236c6e 1029 if (!TSTMP_SUPPORTED(tp)) {
316670eb
A
1030 /*
1031 * Timestamp option is not supported on this connection.
1032 * If the connection reached a state to indicate that
1033 * the receive socket buffer needs to grow, increase
fe8ab488
A
1034 * the high water mark.
1035 */
39037602 1036 if (TSTMP_GEQ(tcp_now,
0a7de745 1037 tp->rfbuf_ts + TCPTV_RCVNOTS_QUANTUM)) {
cb323159 1038 if (tp->rfbuf_cnt + pktlen >= TCP_RCVNOTS_BYTELEVEL) {
316670eb 1039 tcp_sbrcv_reserve(tp, sbrcv,
39037602
A
1040 tcp_autorcvbuf_max, 0,
1041 tcp_autorcvbuf_max);
316670eb
A
1042 }
1043 goto out;
1044 } else {
1045 tp->rfbuf_cnt += pktlen;
1046 return;
fe8ab488 1047 }
316670eb 1048 } else if (to->to_tsecr != 0) {
fe8ab488
A
1049 /*
1050 * If the timestamp shows that one RTT has
316670eb
A
1051 * completed, we can stop counting the
1052 * bytes. Here we consider increasing
fe8ab488
A
1053 * the socket buffer if the bandwidth measured in
1054 * last rtt, is more than half of sb_hiwat, this will
1055 * help to scale the buffer according to the bandwidth
1056 * on the link.
316670eb
A
1057 */
1058 if (TSTMP_GEQ(to->to_tsecr, tp->rfbuf_ts)) {
f427ee49 1059 if (tcp_aggressive_rcvwnd_inc) {
ea3f0419 1060 tp->rfbuf_cnt += pktlen;
f427ee49 1061 }
fe8ab488 1062
f427ee49
A
1063 if ((tcp_aggressive_rcvwnd_inc == 0 &&
1064 tp->rfbuf_cnt + pktlen > (sbrcv->sb_hiwat -
1065 (sbrcv->sb_hiwat >> 1))) ||
1066 (tcp_aggressive_rcvwnd_inc &&
1067 tp->rfbuf_cnt > tp->rfbuf_space)) {
1068 int32_t rcvbuf_inc;
1069 uint32_t idealsize;
1070
1071 if (tcp_aggressive_rcvwnd_inc == 0) {
1072 int32_t min_incr;
1073
1074 tp->rfbuf_cnt += pktlen;
1075 /*
1076 * Increment the receive window by a
1077 * multiple of maximum sized segments.
1078 * This will prevent a connection from
1079 * sending smaller segments on wire if it
1080 * is limited by the receive window.
1081 *
1082 * Set the ideal size based on current
1083 * bandwidth measurements. We set the
1084 * ideal size on receive socket buffer to
1085 * be twice the bandwidth delay product.
1086 */
1087 rcvbuf_inc = (tp->rfbuf_cnt << 1)
1088 - sbrcv->sb_hiwat;
1089
1090 /*
1091 * Make the increment equal to 8 segments
1092 * at least
1093 */
1094 min_incr = tp->t_maxseg << tcp_autorcvbuf_inc_shift;
1095 if (rcvbuf_inc < min_incr) {
1096 rcvbuf_inc = min_incr;
1097 }
1098
1099 idealsize = (tp->rfbuf_cnt << 1);
1100 } else {
1101 if (tp->rfbuf_cnt > tp->rfbuf_space + (tp->rfbuf_space >> 1)) {
1102 rcvbuf_inc = (tp->rfbuf_cnt << 2) - sbrcv->sb_hiwat;
1103 idealsize = (tp->rfbuf_cnt << 2);
1104 } else {
1105 rcvbuf_inc = (tp->rfbuf_cnt << 1) - sbrcv->sb_hiwat;
1106 idealsize = (tp->rfbuf_cnt << 1);
1107 }
0a7de745 1108 }
fe8ab488 1109
f427ee49
A
1110 tp->rfbuf_space = tp->rfbuf_cnt;
1111
1112 if (rcvbuf_inc > 0) {
1113 rcvbuf_inc =
1114 (rcvbuf_inc / tp->t_maxseg) * tp->t_maxseg;
1115
1116 tcp_sbrcv_reserve(tp, sbrcv,
1117 sbrcv->sb_hiwat + rcvbuf_inc,
1118 idealsize, tcp_autorcvbuf_max);
1119 }
316670eb 1120 }
5ba3f43e
A
1121 /* Measure instantaneous receive bandwidth */
1122 if (tp->t_bwmeas != NULL && tp->rfbuf_cnt > 0 &&
1123 TSTMP_GT(tcp_now, tp->rfbuf_ts)) {
1124 u_int32_t rcv_bw;
1125 rcv_bw = tp->rfbuf_cnt /
1126 (int)(tcp_now - tp->rfbuf_ts);
1127 if (tp->t_bwmeas->bw_rcvbw_max == 0) {
1128 tp->t_bwmeas->bw_rcvbw_max = rcv_bw;
1129 } else {
1130 tp->t_bwmeas->bw_rcvbw_max = max(
0a7de745 1131 tp->t_bwmeas->bw_rcvbw_max, rcv_bw);
5ba3f43e
A
1132 }
1133 }
316670eb
A
1134 goto out;
1135 } else {
1136 tp->rfbuf_cnt += pktlen;
1137 return;
1138 }
1139 }
1140out:
1141 /* Restart the measurement */
f427ee49 1142 tp->rfbuf_ts = tcp_now;
316670eb
A
1143 tp->rfbuf_cnt = 0;
1144 return;
1145}
1146
1147/* This function will trim the excess space added to the socket buffer
1148 * to help a slow-reading app. The ideal-size of a socket buffer depends
39037602 1149 * on the link bandwidth or it is set by an application and we aim to
316670eb
A
1150 * reach that size.
1151 */
1152void
39037602
A
1153tcp_sbrcv_trim(struct tcpcb *tp, struct sockbuf *sbrcv)
1154{
316670eb 1155 if (tcp_do_autorcvbuf == 1 && sbrcv->sb_idealsize > 0 &&
0a7de745 1156 sbrcv->sb_hiwat > sbrcv->sb_idealsize) {
316670eb
A
1157 int32_t trim;
1158 /* compute the difference between ideal and current sizes */
1159 u_int32_t diff = sbrcv->sb_hiwat - sbrcv->sb_idealsize;
1160
1161 /* Compute the maximum advertised window for
1162 * this connection.
1163 */
1164 u_int32_t advwin = tp->rcv_adv - tp->rcv_nxt;
39037602 1165
316670eb
A
1166 /* How much can we trim the receive socket buffer?
1167 * 1. it can not be trimmed beyond the max rcv win advertised
39037602 1168 * 2. if possible, leave 1/16 of bandwidth*delay to
316670eb
A
1169 * avoid closing the win completely
1170 */
1171 u_int32_t leave = max(advwin, (sbrcv->sb_idealsize >> 4));
1172
1173 /* Sometimes leave can be zero, in that case leave at least
0a7de745 1174 * a few segments worth of space.
316670eb 1175 */
0a7de745 1176 if (leave == 0) {
316670eb 1177 leave = tp->t_maxseg << tcp_autorcvbuf_inc_shift;
0a7de745 1178 }
39037602 1179
316670eb
A
1180 trim = sbrcv->sb_hiwat - (sbrcv->sb_cc + leave);
1181 trim = imin(trim, (int32_t)diff);
1182
0a7de745 1183 if (trim > 0) {
316670eb 1184 sbreserve(sbrcv, (sbrcv->sb_hiwat - trim));
0a7de745 1185 }
316670eb
A
1186 }
1187}
1188
1189/* We may need to trim the send socket buffer size for two reasons:
1190 * 1. if the rtt seen on the connection is climbing up, we do not
1191 * want to fill the buffers any more.
1192 * 2. if the congestion win on the socket backed off, there is no need
1193 * to hold more mbufs for that connection than what the cwnd will allow.
1194 */
1195void
39037602
A
1196tcp_sbsnd_trim(struct sockbuf *sbsnd)
1197{
f427ee49 1198 if (((sbsnd->sb_flags & (SB_AUTOSIZE | SB_TRIM)) ==
0a7de745
A
1199 (SB_AUTOSIZE | SB_TRIM)) &&
1200 (sbsnd->sb_idealsize > 0) &&
1201 (sbsnd->sb_hiwat > sbsnd->sb_idealsize)) {
316670eb
A
1202 u_int32_t trim = 0;
1203 if (sbsnd->sb_cc <= sbsnd->sb_idealsize) {
1204 trim = sbsnd->sb_hiwat - sbsnd->sb_idealsize;
1205 } else {
1206 trim = sbsnd->sb_hiwat - sbsnd->sb_cc;
1207 }
1208 sbreserve(sbsnd, (sbsnd->sb_hiwat - trim));
1209 }
0a7de745 1210 if (sbsnd->sb_hiwat <= sbsnd->sb_idealsize) {
316670eb 1211 sbsnd->sb_flags &= ~(SB_TRIM);
0a7de745 1212 }
316670eb
A
1213}
1214
39037602 1215/*
316670eb
A
1216 * If timestamp option was not negotiated on this connection
1217 * and this connection is on the receiving side of a stream
1218 * then we can not measure the delay on the link accurately.
1219 * Instead of enabling automatic receive socket buffer
1220 * resizing, just give more space to the receive socket buffer.
1221 */
39037602
A
1222static inline void
1223tcp_sbrcv_tstmp_check(struct tcpcb *tp)
1224{
316670eb
A
1225 struct socket *so = tp->t_inpcb->inp_socket;
1226 u_int32_t newsize = 2 * tcp_recvspace;
1227 struct sockbuf *sbrcv = &so->so_rcv;
1228
1229 if ((tp->t_flags & (TF_REQ_TSTMP | TF_RCVD_TSTMP)) !=
0a7de745
A
1230 (TF_REQ_TSTMP | TF_RCVD_TSTMP) &&
1231 (sbrcv->sb_flags & SB_AUTOSIZE) != 0) {
39037602 1232 tcp_sbrcv_reserve(tp, sbrcv, newsize, 0, newsize);
316670eb
A
1233 }
1234}
1235
39037602
A
1236/* A receiver will evaluate the flow of packets on a connection
1237 * to see if it can reduce ack traffic. The receiver will start
6d2010ae
A
1238 * stretching acks if all of the following conditions are met:
1239 * 1. tcp_delack_enabled is set to 3
1240 * 2. If the bytes received in the last 100ms is greater than a threshold
1241 * defined by maxseg_unacked
1242 * 3. If the connection has not been idle for tcp_maxrcvidle period.
39037602 1243 * 4. If the connection has seen enough packets to let the slow-start
6d2010ae
A
1244 * finish after connection establishment or after some packet loss.
1245 *
1246 * The receiver will stop stretching acks if there is congestion/reordering
39037602
A
1247 * as indicated by packets on reassembly queue or an ECN. If the delayed-ack
1248 * timer fires while stretching acks, it means that the packet flow has gone
6d2010ae 1249 * below the threshold defined by maxseg_unacked and the receiver will stop
39037602
A
1250 * stretching acks. The receiver gets no indication when slow-start is completed
1251 * or when the connection reaches an idle state. That is why we use
1252 * tcp_rcvsspktcnt to cover slow-start and tcp_maxrcvidle to identify idle
6d2010ae
A
1253 * state.
1254 */
39236c6e 1255static inline int
39037602 1256tcp_stretch_ack_enable(struct tcpcb *tp, int thflags)
39236c6e 1257{
39037602 1258 if (tp->rcv_by_unackwin >= (maxseg_unacked * tp->t_maxseg) &&
0a7de745 1259 TSTMP_GEQ(tp->rcv_unackwin, tcp_now)) {
39037602 1260 tp->t_flags |= TF_STREAMING_ON;
0a7de745 1261 } else {
39037602 1262 tp->t_flags &= ~TF_STREAMING_ON;
0a7de745 1263 }
39037602
A
1264
1265 /* If there has been an idle time, reset streaming detection */
0a7de745 1266 if (TSTMP_GT(tcp_now, tp->rcv_unackwin + tcp_maxrcvidle)) {
39037602 1267 tp->t_flags &= ~TF_STREAMING_ON;
0a7de745 1268 }
39037602
A
1269
1270 /*
1271 * If there are flags other than TH_ACK set, reset streaming
1272 * detection
1273 */
0a7de745 1274 if (thflags & ~TH_ACK) {
39037602 1275 tp->t_flags &= ~TF_STREAMING_ON;
0a7de745 1276 }
39037602
A
1277
1278 if (tp->t_flagsext & TF_DISABLE_STRETCHACK) {
1279 if (tp->rcv_nostrack_pkts >= TCP_STRETCHACK_ENABLE_PKTCNT) {
1280 tp->t_flagsext &= ~TF_DISABLE_STRETCHACK;
1281 tp->rcv_nostrack_pkts = 0;
1282 tp->rcv_nostrack_ts = 0;
1283 } else {
1284 tp->rcv_nostrack_pkts++;
1285 }
1286 }
1287
0a7de745 1288 if (!(tp->t_flagsext & (TF_NOSTRETCHACK | TF_DISABLE_STRETCHACK)) &&
39037602
A
1289 (tp->t_flags & TF_STREAMING_ON) &&
1290 (!(tp->t_flagsext & TF_RCVUNACK_WAITSS) ||
1291 (tp->rcv_waitforss >= tcp_rcvsspktcnt))) {
0a7de745 1292 return 1;
6d2010ae 1293 }
39037602 1294
0a7de745 1295 return 0;
6d2010ae
A
1296}
1297
fe8ab488
A
1298/*
1299 * Reset the state related to stretch-ack algorithm. This will make
6d2010ae 1300 * the receiver generate an ack every other packet. The receiver
39037602 1301 * will start re-evaluating the rate at which packets come to decide
6d2010ae
A
1302 * if it can benefit by lowering the ack traffic.
1303 */
1304void
1305tcp_reset_stretch_ack(struct tcpcb *tp)
1306{
0a7de745 1307 tp->t_flags &= ~(TF_STRETCHACK | TF_STREAMING_ON);
6d2010ae 1308 tp->rcv_by_unackwin = 0;
cb323159 1309 tp->rcv_by_unackhalfwin = 0;
6d2010ae 1310 tp->rcv_unackwin = tcp_now + tcp_rcvunackwin;
fe8ab488
A
1311
1312 /*
1313 * When there is packet loss or packet re-ordering or CWR due to
1314 * ECN, the sender's congestion window is reduced. In these states,
1315 * generate an ack for every other packet for some time to allow
39037602 1316 * the sender's congestion window to grow.
fe8ab488
A
1317 */
1318 tp->t_flagsext |= TF_RCVUNACK_WAITSS;
1319 tp->rcv_waitforss = 0;
6d2010ae
A
1320}
1321
39236c6e 1322/*
39037602 1323 * The last packet was a retransmission, check if this ack
39236c6e 1324 * indicates that the retransmission was spurious.
39037602 1325 *
39236c6e
A
1326 * If the connection supports timestamps, we could use it to
1327 * detect if the last retransmit was not needed. Otherwise,
39037602 1328 * we check if the ACK arrived within RTT/2 window, then it
39236c6e
A
1329 * was a mistake to do the retransmit in the first place.
1330 *
39037602
A
1331 * This function will return 1 if it is a spurious retransmit,
1332 * 0 otherwise.
39236c6e 1333 */
fe8ab488 1334int
39037602 1335tcp_detect_bad_rexmt(struct tcpcb *tp, struct tcphdr *th,
0a7de745 1336 struct tcpopt *to, u_int32_t rxtime)
39236c6e
A
1337{
1338 int32_t tdiff, bad_rexmt_win;
39236c6e
A
1339 bad_rexmt_win = (tp->t_srtt >> (TCP_RTT_SHIFT + 1));
1340
fe8ab488 1341 /* If the ack has ECN CE bit, then cwnd has to be adjusted */
0a7de745
A
1342 if (TCP_ECN_ENABLED(tp) && (th->th_flags & TH_ECE)) {
1343 return 0;
1344 }
fe8ab488 1345 if (TSTMP_SUPPORTED(tp)) {
f427ee49
A
1346 if (rxtime > 0 && (to->to_flags & TOF_TS) && to->to_tsecr != 0 &&
1347 TSTMP_LT(to->to_tsecr, rxtime)) {
0a7de745
A
1348 return 1;
1349 }
fe8ab488 1350 } else {
f427ee49
A
1351 if ((tp->t_rxtshift == 1 || (tp->t_flagsext & TF_SENT_TLPROBE)) &&
1352 rxtime > 0) {
fe8ab488 1353 tdiff = (int32_t)(tcp_now - rxtime);
0a7de745
A
1354 if (tdiff < bad_rexmt_win) {
1355 return 1;
1356 }
fe8ab488 1357 }
39236c6e 1358 }
0a7de745 1359 return 0;
39236c6e
A
1360}
1361
1362
1363/*
1364 * Restore congestion window state if a spurious timeout
1365 * was detected.
1366 */
1367static void
1368tcp_bad_rexmt_restore_state(struct tcpcb *tp, struct tcphdr *th)
1369{
1370 if (TSTMP_SUPPORTED(tp)) {
1371 u_int32_t fsize, acked;
1372 fsize = tp->snd_max - th->th_ack;
1373 acked = BYTES_ACKED(th, tp);
1374
1375 /*
1376 * Implement bad retransmit recovery as
1377 * described in RFC 4015.
1378 */
1379 tp->snd_ssthresh = tp->snd_ssthresh_prev;
1380
1381 /* Initialize cwnd to the initial window */
0a7de745 1382 if (CC_ALGO(tp)->cwnd_init != NULL) {
39236c6e 1383 CC_ALGO(tp)->cwnd_init(tp);
0a7de745 1384 }
39236c6e
A
1385
1386 tp->snd_cwnd = fsize + min(acked, tp->snd_cwnd);
39236c6e
A
1387 } else {
1388 tp->snd_cwnd = tp->snd_cwnd_prev;
1389 tp->snd_ssthresh = tp->snd_ssthresh_prev;
0a7de745 1390 if (tp->t_flags & TF_WASFRECOVERY) {
39236c6e 1391 ENTER_FASTRECOVERY(tp);
0a7de745 1392 }
3e170ce0
A
1393
1394 /* Do not use the loss flight size in this case */
1395 tp->t_lossflightsize = 0;
39236c6e 1396 }
f427ee49 1397 tp->snd_cwnd = max(tp->snd_cwnd, tcp_initial_cwnd(tp));
39236c6e
A
1398 tp->snd_recover = tp->snd_recover_prev;
1399 tp->snd_nxt = tp->snd_max;
39236c6e
A
1400
1401 /* Fix send socket buffer to reflect the change in cwnd */
1402 tcp_bad_rexmt_fix_sndbuf(tp);
1403
1404 /*
39037602 1405 * This RTT might reflect the extra delay induced
39236c6e
A
1406 * by the network. Skip using this sample for RTO
1407 * calculation and mark the connection so we can
1408 * recompute RTT when the next eligible sample is
1409 * found.
1410 */
1411 tp->t_flagsext |= TF_RECOMPUTE_RTT;
1412 tp->t_badrexmt_time = tcp_now;
1413 tp->t_rtttime = 0;
1414}
1415
fe8ab488
A
1416/*
1417 * If the previous packet was sent in retransmission timer, and it was
1418 * not needed, then restore the congestion window to the state before that
1419 * transmission.
1420 *
1421 * If the last packet was sent in tail loss probe timeout, check if that
1422 * recovered the last packet. If so, that will indicate a real loss and
1423 * the congestion window needs to be lowered.
1424 */
1425static void
1426tcp_bad_rexmt_check(struct tcpcb *tp, struct tcphdr *th, struct tcpopt *to)
1427{
1428 if (tp->t_rxtshift > 0 &&
1429 tcp_detect_bad_rexmt(tp, th, to, tp->t_rxtstart)) {
1430 ++tcpstat.tcps_sndrexmitbad;
1431 tcp_bad_rexmt_restore_state(tp, th);
1432 tcp_ccdbg_trace(tp, th, TCP_CC_BAD_REXMT_RECOVERY);
f427ee49
A
1433 } else if ((tp->t_flagsext & TF_SENT_TLPROBE) && tp->t_tlphighrxt > 0 &&
1434 SEQ_GEQ(th->th_ack, tp->t_tlphighrxt) &&
1435 !tcp_detect_bad_rexmt(tp, th, to, tp->t_tlpstart)) {
3e170ce0
A
1436 /*
1437 * check DSACK information also to make sure that
1438 * the TLP was indeed needed
1439 */
1440 if (tcp_rxtseg_dsack_for_tlp(tp)) {
1441 /*
1442 * received a DSACK to indicate that TLP was
1443 * not needed
1444 */
1445 tcp_rxtseg_clean(tp);
1446 goto out;
1447 }
1448
fe8ab488 1449 /*
39037602 1450 * The tail loss probe recovered the last packet and
fe8ab488
A
1451 * we need to adjust the congestion window to take
1452 * this loss into account.
1453 */
1454 ++tcpstat.tcps_tlp_recoverlastpkt;
1455 if (!IN_FASTRECOVERY(tp)) {
1456 tcp_reduce_congestion_window(tp);
1457 EXIT_FASTRECOVERY(tp);
1458 }
1459 tcp_ccdbg_trace(tp, th, TCP_CC_TLP_RECOVER_LASTPACKET);
3e170ce0
A
1460 } else if (tcp_rxtseg_detect_bad_rexmt(tp, th->th_ack)) {
1461 /*
1462 * All of the retransmitted segments were duplicated, this
1463 * can be an indication of bad fast retransmit.
1464 */
1465 tcpstat.tcps_dsack_badrexmt++;
1466 tcp_bad_rexmt_restore_state(tp, th);
1467 tcp_ccdbg_trace(tp, th, TCP_CC_DSACK_BAD_REXMT);
1468 tcp_rxtseg_clean(tp);
fe8ab488 1469 }
3e170ce0 1470out:
fe8ab488
A
1471 tp->t_flagsext &= ~(TF_SENT_TLPROBE);
1472 tp->t_tlphighrxt = 0;
1473 tp->t_tlpstart = 0;
1474
1475 /*
1476 * check if the latest ack was for a segment sent during PMTU
1477 * blackhole detection. If the timestamp on the ack is before
1478 * PMTU blackhole detection, then revert the size of the max
1479 * segment to previous size.
1480 */
1481 if (tp->t_rxtshift > 0 && (tp->t_flags & TF_BLACKHOLE) &&
1482 tp->t_pmtud_start_ts > 0 && TSTMP_SUPPORTED(tp)) {
39037602 1483 if ((to->to_flags & TOF_TS) && to->to_tsecr != 0
fe8ab488
A
1484 && TSTMP_LT(to->to_tsecr, tp->t_pmtud_start_ts)) {
1485 tcp_pmtud_revert_segment_size(tp);
1486 }
1487 }
0a7de745 1488 if (tp->t_pmtud_start_ts > 0) {
fe8ab488 1489 tp->t_pmtud_start_ts = 0;
0a7de745 1490 }
f427ee49
A
1491
1492 tp->t_pmtud_lastseg_size = 0;
fe8ab488
A
1493}
1494
1495/*
1496 * Check if early retransmit can be attempted according to RFC 5827.
1497 *
1498 * If packet reordering is detected on a connection, fast recovery will
1499 * be delayed until it is clear that the packet was lost and not reordered.
1500 * But reordering detection is done only when SACK is enabled.
1501 *
1502 * On connections that do not support SACK, there is a limit on the number
1503 * of early retransmits that can be done per minute. This limit is needed
1504 * to make sure that too many packets are not retransmitted when there is
1505 * packet reordering.
1506 */
1507static void
0a7de745 1508tcp_early_rexmt_check(struct tcpcb *tp, struct tcphdr *th)
fe8ab488
A
1509{
1510 u_int32_t obytes, snd_off;
1511 int32_t snd_len;
1512 struct socket *so = tp->t_inpcb->inp_socket;
1513
f427ee49 1514 if ((SACK_ENABLED(tp) || tp->t_early_rexmt_count < TCP_EARLY_REXMT_LIMIT) &&
fe8ab488 1515 SEQ_GT(tp->snd_max, tp->snd_una) &&
f427ee49 1516 (tp->t_dupacks == 1 || (SACK_ENABLED(tp) && !TAILQ_EMPTY(&tp->snd_holes)))) {
fe8ab488 1517 /*
39037602 1518 * If there are only a few outstanding
fe8ab488
A
1519 * segments on the connection, we might need
1520 * to lower the retransmit threshold. This
39037602 1521 * will allow us to do Early Retransmit as
fe8ab488
A
1522 * described in RFC 5827.
1523 */
39037602 1524 if (SACK_ENABLED(tp) &&
fe8ab488
A
1525 !TAILQ_EMPTY(&tp->snd_holes)) {
1526 obytes = (tp->snd_max - tp->snd_fack) +
0a7de745 1527 tp->sackhint.sack_bytes_rexmit;
fe8ab488 1528 } else {
39037602 1529 obytes = (tp->snd_max - tp->snd_una);
fe8ab488
A
1530 }
1531
1532 /*
39037602 1533 * In order to lower retransmit threshold the
fe8ab488 1534 * following two conditions must be met.
39037602 1535 * 1. the amount of outstanding data is less
fe8ab488 1536 * than 4*SMSS bytes
39037602
A
1537 * 2. there is no unsent data ready for
1538 * transmission or the advertised window
fe8ab488
A
1539 * will limit sending new segments.
1540 */
1541 snd_off = tp->snd_max - tp->snd_una;
1542 snd_len = min(so->so_snd.sb_cc, tp->snd_wnd) - snd_off;
39037602 1543 if (obytes < (tp->t_maxseg << 2) &&
fe8ab488
A
1544 snd_len <= 0) {
1545 u_int32_t osegs;
1546
1547 osegs = obytes / tp->t_maxseg;
0a7de745 1548 if ((osegs * tp->t_maxseg) < obytes) {
fe8ab488 1549 osegs++;
0a7de745 1550 }
fe8ab488 1551
39037602
A
1552 /*
1553 * Since the connection might have already
fe8ab488
A
1554 * received some dupacks, we add them to
1555 * to the outstanding segments count to get
1556 * the correct retransmit threshold.
1557 *
39037602 1558 * By checking for early retransmit after
fe8ab488 1559 * receiving some duplicate acks when SACK
39037602
A
1560 * is supported, the connection will
1561 * enter fast recovery even if multiple
fe8ab488
A
1562 * segments are lost in the same window.
1563 */
1564 osegs += tp->t_dupacks;
1565 if (osegs < 4) {
39037602 1566 tp->t_rexmtthresh =
fe8ab488
A
1567 ((osegs - 1) > 1) ? (osegs - 1) : 1;
1568 tp->t_rexmtthresh =
1569 min(tp->t_rexmtthresh, tcprexmtthresh);
1570 tp->t_rexmtthresh =
1571 max(tp->t_rexmtthresh, tp->t_dupacks);
1572
0a7de745 1573 if (tp->t_early_rexmt_count == 0) {
fe8ab488 1574 tp->t_early_rexmt_win = tcp_now;
0a7de745 1575 }
fe8ab488
A
1576
1577 if (tp->t_flagsext & TF_SENT_TLPROBE) {
1578 tcpstat.tcps_tlp_recovery++;
1579 tcp_ccdbg_trace(tp, th,
1580 TCP_CC_TLP_RECOVERY);
1581 } else {
1582 tcpstat.tcps_early_rexmt++;
1583 tp->t_early_rexmt_count++;
1584 tcp_ccdbg_trace(tp, th,
1585 TCP_CC_EARLY_RETRANSMIT);
1586 }
1587 }
1588 }
1589 }
1590
1591 /*
1592 * If we ever sent a TLP probe, the acknowledgement will trigger
1593 * early retransmit because the value of snd_fack will be close
1594 * to snd_max. This will take care of adjustments to the
1595 * congestion window. So we can reset TF_SENT_PROBE flag.
1596 */
1597 tp->t_flagsext &= ~(TF_SENT_TLPROBE);
1598 tp->t_tlphighrxt = 0;
1599 tp->t_tlpstart = 0;
1600}
1601
3e170ce0 1602static boolean_t
39037602 1603tcp_tfo_syn(struct tcpcb *tp, struct tcpopt *to)
3e170ce0
A
1604{
1605 u_char out[CCAES_BLOCK_SIZE];
1606 unsigned char len;
1607
1608 if (!(to->to_flags & (TOF_TFO | TOF_TFOREQ)) ||
0a7de745
A
1609 !(tcp_fastopen & TCP_FASTOPEN_SERVER)) {
1610 return FALSE;
1611 }
3e170ce0
A
1612
1613 if ((to->to_flags & TOF_TFOREQ)) {
1614 tp->t_tfo_flags |= TFO_F_OFFER_COOKIE;
1615
1616 tp->t_tfo_stats |= TFO_S_COOKIEREQ_RECV;
1617 tcpstat.tcps_tfo_cookie_req_rcv++;
0a7de745 1618 return FALSE;
3e170ce0
A
1619 }
1620
1621 /* Ok, then it must be an offered cookie. We need to check that ... */
1622 tcp_tfo_gen_cookie(tp->t_inpcb, out, sizeof(out));
1623
1624 len = *to->to_tfo - TCPOLEN_FASTOPEN_REQ;
1625 to->to_tfo++;
1626 if (memcmp(out, to->to_tfo, len)) {
1627 /* Cookies are different! Let's return and offer a new cookie */
1628 tp->t_tfo_flags |= TFO_F_OFFER_COOKIE;
1629
1630 tp->t_tfo_stats |= TFO_S_COOKIE_INVALID;
1631 tcpstat.tcps_tfo_cookie_invalid++;
0a7de745 1632 return FALSE;
3e170ce0
A
1633 }
1634
1635 if (OSIncrementAtomic(&tcp_tfo_halfcnt) >= tcp_tfo_backlog) {
1636 /* Need to decrement again as we just increased it... */
1637 OSDecrementAtomic(&tcp_tfo_halfcnt);
0a7de745 1638 return FALSE;
3e170ce0
A
1639 }
1640
1641 tp->t_tfo_flags |= TFO_F_COOKIE_VALID;
1642
1643 tp->t_tfo_stats |= TFO_S_SYNDATA_RCV;
1644 tcpstat.tcps_tfo_syn_data_rcv++;
1645
0a7de745 1646 return TRUE;
3e170ce0
A
1647}
1648
1649static void
39037602 1650tcp_tfo_synack(struct tcpcb *tp, struct tcpopt *to)
3e170ce0
A
1651{
1652 if (to->to_flags & TOF_TFO) {
1653 unsigned char len = *to->to_tfo - TCPOLEN_FASTOPEN_REQ;
1654
1655 /*
1656 * If this happens, things have gone terribly wrong. len should
4bd07ac2 1657 * have been checked in tcp_dooptions.
3e170ce0
A
1658 */
1659 VERIFY(len <= TFO_COOKIE_LEN_MAX);
1660
1661 to->to_tfo++;
1662
1663 tcp_cache_set_cookie(tp, to->to_tfo, len);
1664 tcp_heuristic_tfo_success(tp);
1665
1666 tp->t_tfo_stats |= TFO_S_COOKIE_RCV;
1667 tcpstat.tcps_tfo_cookie_rcv++;
39037602
A
1668 if (tp->t_tfo_flags & TFO_F_COOKIE_SENT) {
1669 tcpstat.tcps_tfo_cookie_wrong++;
1670 tp->t_tfo_stats |= TFO_S_COOKIE_WRONG;
1671 }
3e170ce0
A
1672 } else {
1673 /*
1674 * Thus, no cookie in the response, but we either asked for one
1675 * or sent SYN+DATA. Now, we need to check whether we had to
1676 * rexmit the SYN. If that's the case, it's better to start
1677 * backing of TFO-cookie requests.
1678 */
cb323159
A
1679 if (!(tp->t_flagsext & TF_FASTOPEN_FORCE_ENABLE) &&
1680 tp->t_tfo_flags & TFO_F_SYN_LOSS) {
39037602
A
1681 tp->t_tfo_stats |= TFO_S_SYN_LOSS;
1682 tcpstat.tcps_tfo_syn_loss++;
1683
1684 tcp_heuristic_tfo_loss(tp);
1685 } else {
1686 if (tp->t_tfo_flags & TFO_F_COOKIE_REQ) {
1687 tp->t_tfo_stats |= TFO_S_NO_COOKIE_RCV;
1688 tcpstat.tcps_tfo_no_cookie_rcv++;
1689 }
1690
1691 tcp_heuristic_tfo_success(tp);
1692 }
3e170ce0
A
1693 }
1694}
1695
1696static void
1697tcp_tfo_rcv_probe(struct tcpcb *tp, int tlen)
1698{
0a7de745 1699 if (tlen != 0) {
5ba3f43e 1700 return;
0a7de745 1701 }
3e170ce0 1702
5ba3f43e
A
1703 tp->t_tfo_probe_state = TFO_PROBE_PROBING;
1704
1705 /*
1706 * We send the probe out rather quickly (after one RTO). It does not
1707 * really hurt that much, it's only one additional segment on the wire.
1708 */
1709 tp->t_timer[TCPT_KEEP] = OFFSET_FROM_START(tp, (TCP_REXMTVAL(tp)));
3e170ce0
A
1710}
1711
1712static void
1713tcp_tfo_rcv_data(struct tcpcb *tp)
1714{
1715 /* Transition from PROBING to NONE as data has been received */
0a7de745 1716 if (tp->t_tfo_probe_state >= TFO_PROBE_PROBING) {
3e170ce0 1717 tp->t_tfo_probe_state = TFO_PROBE_NONE;
0a7de745 1718 }
3e170ce0
A
1719}
1720
1721static void
1722tcp_tfo_rcv_ack(struct tcpcb *tp, struct tcphdr *th)
1723{
1724 if (tp->t_tfo_probe_state == TFO_PROBE_PROBING &&
1725 tp->t_tfo_probes > 0) {
1726 if (th->th_seq == tp->rcv_nxt) {
1727 /* No hole, so stop probing */
1728 tp->t_tfo_probe_state = TFO_PROBE_NONE;
1729 } else if (SEQ_GT(th->th_seq, tp->rcv_nxt)) {
1730 /* There is a hole! Wait a bit for data... */
1731 tp->t_tfo_probe_state = TFO_PROBE_WAIT_DATA;
1732 tp->t_timer[TCPT_KEEP] = OFFSET_FROM_START(tp,
1733 TCP_REXMTVAL(tp));
1734 }
1735 }
1736}
1737
39037602
A
1738/*
1739 * Update snd_wnd information.
1740 */
1741static inline bool
1742tcp_update_window(struct tcpcb *tp, int thflags, struct tcphdr * th,
1743 u_int32_t tiwin, int tlen)
1744{
1745 /* Don't look at the window if there is no ACK flag */
1746 if ((thflags & TH_ACK) &&
1747 (SEQ_LT(tp->snd_wl1, th->th_seq) ||
1748 (tp->snd_wl1 == th->th_seq && (SEQ_LT(tp->snd_wl2, th->th_ack) ||
1749 (tp->snd_wl2 == th->th_ack && tiwin > tp->snd_wnd))))) {
1750 /* keep track of pure window updates */
1751 if (tlen == 0 &&
0a7de745 1752 tp->snd_wl2 == th->th_ack && tiwin > tp->snd_wnd) {
39037602 1753 tcpstat.tcps_rcvwinupd++;
0a7de745 1754 }
39037602
A
1755 tp->snd_wnd = tiwin;
1756 tp->snd_wl1 = th->th_seq;
1757 tp->snd_wl2 = th->th_ack;
0a7de745 1758 if (tp->snd_wnd > tp->max_sndwnd) {
39037602 1759 tp->max_sndwnd = tp->snd_wnd;
0a7de745 1760 }
5ba3f43e 1761
0a7de745 1762 if (tp->t_inpcb->inp_socket->so_flags & SOF_MP_SUBFLOW) {
d9a64523 1763 mptcp_update_window_wakeup(tp);
0a7de745
A
1764 }
1765 return true;
39037602 1766 }
0a7de745 1767 return false;
39037602
A
1768}
1769
cb323159
A
1770static void
1771tcp_handle_wakeup(struct socket *so, int read_wakeup, int write_wakeup)
1772{
1773 if (read_wakeup != 0) {
1774 sorwakeup(so);
1775 }
1776 if (write_wakeup != 0) {
1777 sowwakeup(so);
1778 }
1779}
1780
f427ee49
A
1781static void
1782tcp_update_snd_una(struct tcpcb *tp, uint32_t ack)
1783{
1784 tp->snd_una = ack;
1785 if (SACK_ENABLED(tp) && SEQ_LT(tp->send_highest_sack, tp->snd_una)) {
1786 tp->send_highest_sack = tp->snd_una;
1787
1788 /* If we move our marker, we need to start fresh */
1789 tp->t_new_dupacks = 0;
1790 }
1791}
1792
1793static bool
1794tcp_syn_data_valid(struct tcpcb *tp, struct tcphdr *tcp_hdr, int tlen)
1795{
1796 /* No data? */
1797 if (tlen <= 0) {
1798 return false;
1799 }
1800
1801 /* Not the right sequence-number? */
1802 if (tcp_hdr->th_seq != tp->irs) {
1803 return false;
1804 }
1805
1806 /* We could have wrapped around, check that */
1807 if (tp->t_inpcb->inp_stat->rxbytes > INT32_MAX) {
1808 return false;
1809 }
1810
1811 return true;
1812}
1813
1c79356b 1814void
39037602 1815tcp_input(struct mbuf *m, int off0)
1c79356b 1816{
f427ee49 1817 int exiting_fr = 0;
39037602
A
1818 struct tcphdr *th;
1819 struct ip *ip = NULL;
1820 struct inpcb *inp;
1c79356b
A
1821 u_char *optp = NULL;
1822 int optlen = 0;
39236c6e 1823 int tlen, off;
9bccf70c 1824 int drop_hdrlen;
39037602
A
1825 struct tcpcb *tp = 0;
1826 int thflags;
1c79356b
A
1827 struct socket *so = 0;
1828 int todrop, acked, ourfinisacked, needoutput = 0;
cb323159
A
1829 int read_wakeup = 0;
1830 int write_wakeup = 0;
1c79356b 1831 struct in_addr laddr;
1c79356b 1832 struct in6_addr laddr6;
1c79356b 1833 int dropsocket = 0;
39037602 1834 int iss = 0, nosock = 0;
f427ee49 1835 u_int32_t tiwin, sack_bytes_acked = 0, sack_bytes_newly_acked = 0;
0a7de745 1836 struct tcpopt to; /* options in this segment */
1c79356b
A
1837#if TCPDEBUG
1838 short ostate = 0;
1839#endif
2d21ac55 1840 u_char ip_ecn = IPTOS_ECN_NOTECT;
fe8ab488 1841 unsigned int ifscope;
6d2010ae 1842 uint8_t isconnected, isdisconnected;
39236c6e 1843 struct ifnet *ifp = m->m_pkthdr.rcvif;
f427ee49
A
1844 int segment_count = m->m_pkthdr.seg_cnt ? : 1;
1845 int win;
1846 u_int16_t pf_tag = 0;
39236c6e
A
1847#if MPTCP
1848 struct mptcb *mp_tp = NULL;
39236c6e
A
1849#endif /* MPTCP */
1850 boolean_t cell = IFNET_IS_CELLULAR(ifp);
1851 boolean_t wifi = (!cell && IFNET_IS_WIFI(ifp));
fe8ab488 1852 boolean_t wired = (!wifi && IFNET_IS_WIRED(ifp));
3e170ce0 1853 boolean_t recvd_dsack = FALSE;
fe8ab488 1854 struct tcp_respond_args tra;
cb323159
A
1855 int prev_t_state;
1856 boolean_t check_cfil = cfil_filter_present();
0a7de745 1857 bool findpcb_iterated = false;
cb323159
A
1858 /*
1859 * The mbuf may be freed after it has been added to the receive socket
1860 * buffer or the reassembly queue, so we reinitialize th to point to a
1861 * safe copy of the TCP header
1862 */
1863 struct tcphdr saved_tcphdr = {};
1864 /*
1865 * Save copy of the IPv4/IPv6 header.
1866 * Note: use array of uint32_t to silence compiler warning when casting
1867 * to a struct ip6_hdr pointer.
1868 */
1869#define MAX_IPWORDS ((sizeof(struct ip) + MAX_IPOPTLEN) / sizeof(uint32_t))
1870 uint32_t saved_hdr[MAX_IPWORDS];
39236c6e 1871
0a7de745
A
1872#define TCP_INC_VAR(stat, npkts) do { \
1873 stat += npkts; \
316670eb 1874} while (0)
c910b4d9 1875
f427ee49
A
1876 if (tcp_ack_strategy == TCP_ACK_STRATEGY_LEGACY) {
1877 segment_count = 1;
b0d623f7 1878 }
f427ee49 1879 TCP_INC_VAR(tcpstat.tcps_rcvtotal, segment_count);
39236c6e 1880
1c79356b 1881 struct ip6_hdr *ip6 = NULL;
9bccf70c 1882 int isipv6;
f427ee49 1883 struct proc *kernel_proc = current_proc();
39236c6e 1884
0a7de745 1885 KERNEL_DEBUG(DBG_FNC_TCP_INPUT | DBG_FUNC_START, 0, 0, 0, 0, 0);
1c79356b 1886
9bccf70c 1887 isipv6 = (mtod(m, struct ip *)->ip_v == 6) ? 1 : 0;
1c79356b
A
1888 bzero((char *)&to, sizeof(to));
1889
f427ee49
A
1890 if (m->m_flags & M_PKTHDR) {
1891 pf_tag = m_pftag(m)->pftag_tag;
1892 }
1893
1c79356b 1894 if (isipv6) {
39037602
A
1895 /*
1896 * Expect 32-bit aligned data pointer on
1897 * strict-align platforms
39236c6e 1898 */
316670eb
A
1899 MBUF_STRICT_DATA_ALIGNMENT_CHECK_32(m);
1900
9bccf70c 1901 /* IP6_EXTHDR_CHECK() is already done at tcp6_input() */
1c79356b 1902 ip6 = mtod(m, struct ip6_hdr *);
9bccf70c 1903 tlen = sizeof(*ip6) + ntohs(ip6->ip6_plen) - off0;
316670eb 1904 th = (struct tcphdr *)(void *)((caddr_t)ip6 + off0);
9bccf70c 1905
0a7de745 1906 if (tcp_input_checksum(AF_INET6, m, th, off0, tlen)) {
cb323159 1907 TCP_LOG_DROP_PKT(ip6, th, ifp, "IPv6 bad tcp checksum");
39236c6e 1908 goto dropnosock;
0a7de745 1909 }
6d2010ae 1910
9bccf70c 1911 KERNEL_DEBUG(DBG_LAYER_BEG, ((th->th_dport << 16) | th->th_sport),
0a7de745
A
1912 (((ip6->ip6_src.s6_addr16[0]) << 16) | (ip6->ip6_dst.s6_addr16[0])),
1913 th->th_seq, th->th_ack, th->th_win);
1c79356b 1914 /*
9bccf70c
A
1915 * Be proactive about unspecified IPv6 address in source.
1916 * As we use all-zero to indicate unbounded/unconnected pcb,
1917 * unspecified IPv6 address can be used to confuse us.
1918 *
1919 * Note that packets with unspecified IPv6 destination is
1920 * already dropped in ip6_input.
1c79356b 1921 */
9bccf70c
A
1922 if (IN6_IS_ADDR_UNSPECIFIED(&ip6->ip6_src)) {
1923 /* XXX stat */
39236c6e 1924 IF_TCP_STATINC(ifp, unspecv6);
cb323159 1925 TCP_LOG_DROP_PKT(ip6, th, ifp, "src IPv6 address unspecified");
91447636 1926 goto dropnosock;
1c79356b 1927 }
39236c6e 1928 DTRACE_TCP5(receive, struct mbuf *, m, struct inpcb *, NULL,
0a7de745
A
1929 struct ip6_hdr *, ip6, struct tcpcb *, NULL,
1930 struct tcphdr *, th);
39236c6e
A
1931
1932 ip_ecn = (ntohl(ip6->ip6_flow) >> 20) & IPTOS_ECN_MASK;
f427ee49 1933 } else {
0a7de745
A
1934 /*
1935 * Get IP and TCP header together in first mbuf.
1936 * Note: IP leaves IP header in first mbuf.
1937 */
1938 if (off0 > sizeof(struct ip)) {
1939 ip_stripoptions(m);
1940 off0 = sizeof(struct ip);
1941 }
1942 if (m->m_len < sizeof(struct tcpiphdr)) {
1943 if ((m = m_pullup(m, sizeof(struct tcpiphdr))) == 0) {
1944 tcpstat.tcps_rcvshort++;
1945 return;
1946 }
0b4e3aa0 1947 }
316670eb 1948
0a7de745
A
1949 /* Expect 32-bit aligned data pointer on strict-align platforms */
1950 MBUF_STRICT_DATA_ALIGNMENT_CHECK_32(m);
316670eb 1951
0a7de745
A
1952 ip = mtod(m, struct ip *);
1953 th = (struct tcphdr *)(void *)((caddr_t)ip + off0);
1954 tlen = ip->ip_len;
0b4e3aa0 1955
0a7de745 1956 if (tcp_input_checksum(AF_INET, m, th, off0, tlen)) {
cb323159 1957 TCP_LOG_DROP_PKT(ip, th, ifp, "IPv4 bad tcp checksum");
0a7de745
A
1958 goto dropnosock;
1959 }
39236c6e 1960
0a7de745
A
1961 /* Re-initialization for later version check */
1962 ip->ip_v = IPVERSION;
0a7de745 1963 ip_ecn = (ip->ip_tos & IPTOS_ECN_MASK);
316670eb 1964
0a7de745
A
1965 DTRACE_TCP5(receive, struct mbuf *, m, struct inpcb *, NULL,
1966 struct ip *, ip, struct tcpcb *, NULL, struct tcphdr *, th);
316670eb 1967
0a7de745
A
1968 KERNEL_DEBUG(DBG_LAYER_BEG, ((th->th_dport << 16) | th->th_sport),
1969 (((ip->ip_src.s_addr & 0xffff) << 16) | (ip->ip_dst.s_addr & 0xffff)),
1970 th->th_seq, th->th_ack, th->th_win);
ac5ea4a9 1971 }
1c79356b 1972
cb323159
A
1973#define TCP_LOG_HDR (isipv6 ? (void *)ip6 : (void *)ip)
1974
1c79356b
A
1975 /*
1976 * Check that TCP offset makes sense,
39037602 1977 * pull out TCP options and adjust length.
1c79356b 1978 */
9bccf70c 1979 off = th->th_off << 2;
0a7de745 1980 if (off < sizeof(struct tcphdr) || off > tlen) {
1c79356b 1981 tcpstat.tcps_rcvbadoff++;
39236c6e 1982 IF_TCP_STATINC(ifp, badformat);
cb323159 1983 TCP_LOG_DROP_PKT(TCP_LOG_HDR, th, ifp, "bad tcp offset");
91447636 1984 goto dropnosock;
1c79356b 1985 }
0a7de745
A
1986 tlen -= off; /* tlen is used instead of ti->ti_len */
1987 if (off > sizeof(struct tcphdr)) {
1c79356b 1988 if (isipv6) {
0a7de745 1989 IP6_EXTHDR_CHECK(m, off0, off, return );
1c79356b 1990 ip6 = mtod(m, struct ip6_hdr *);
316670eb 1991 th = (struct tcphdr *)(void *)((caddr_t)ip6 + off0);
f427ee49 1992 } else {
2d21ac55 1993 if (m->m_len < sizeof(struct ip) + off) {
0a7de745 1994 if ((m = m_pullup(m, sizeof(struct ip) + off)) == 0) {
2d21ac55
A
1995 tcpstat.tcps_rcvshort++;
1996 return;
1997 }
1998 ip = mtod(m, struct ip *);
316670eb 1999 th = (struct tcphdr *)(void *)((caddr_t)ip + off0);
1c79356b
A
2000 }
2001 }
0a7de745 2002 optlen = off - sizeof(struct tcphdr);
1c79356b 2003 optp = (u_char *)(th + 1);
39037602 2004 /*
1c79356b
A
2005 * Do quick retrieval of timestamp options ("options
2006 * prediction?"). If timestamp is the only option and it's
2007 * formatted as recommended in RFC 1323 appendix A, we
2008 * quickly get the values now and not bother calling
2009 * tcp_dooptions(), etc.
2010 */
2011 if ((optlen == TCPOLEN_TSTAMP_APPA ||
0a7de745
A
2012 (optlen > TCPOLEN_TSTAMP_APPA &&
2013 optp[TCPOLEN_TSTAMP_APPA] == TCPOPT_EOL)) &&
2014 *(u_int32_t *)(void *)optp == htonl(TCPOPT_TSTAMP_HDR) &&
2015 (th->th_flags & TH_SYN) == 0) {
8ad349bb 2016 to.to_flags |= TOF_TS;
316670eb
A
2017 to.to_tsval = ntohl(*(u_int32_t *)(void *)(optp + 4));
2018 to.to_tsecr = ntohl(*(u_int32_t *)(void *)(optp + 8));
0a7de745 2019 optp = NULL; /* we've parsed the options */
1c79356b
A
2020 }
2021 }
2022 thflags = th->th_flags;
2023
9bccf70c 2024 /*
f427ee49
A
2025 * Drop all packets with both the SYN and FIN bits set.
2026 * This prevents e.g. nmap from identifying the TCP/IP stack.
9bccf70c 2027 *
8ad349bb 2028 * This is a violation of the TCP specification.
9bccf70c 2029 */
f427ee49 2030 if ((thflags & (TH_SYN | TH_FIN)) == (TH_SYN | TH_FIN)) {
39236c6e 2031 IF_TCP_STATINC(ifp, synfin);
cb323159 2032 TCP_LOG_DROP_PKT(TCP_LOG_HDR, th, ifp, "drop SYN FIN");
91447636 2033 goto dropnosock;
316670eb 2034 }
1c79356b
A
2035
2036 /*
8ad349bb 2037 * Delay dropping TCP, IP headers, IPv6 ext headers, and TCP options,
9bccf70c
A
2038 * until after ip6_savecontrol() is called and before other functions
2039 * which don't want those proto headers.
2040 * Because ip6_savecontrol() is going to parse the mbuf to
2041 * search for data to be passed up to user-land, it wants mbuf
2042 * parameters to be unchanged.
1c79356b 2043 */
9bccf70c 2044 drop_hdrlen = off0 + off;
39037602 2045
316670eb
A
2046 /* Since this is an entry point for input processing of tcp packets, we
2047 * can update the tcp clock here.
2048 */
2049 calculate_tcp_clock();
2050
2051 /*
39236c6e
A
2052 * Record the interface where this segment arrived on; this does not
2053 * affect normal data output (for non-detached TCP) as it provides a
2054 * hint about which route and interface to use for sending in the
2055 * absence of a PCB, when scoped routing (and thus source interface
2056 * selection) are enabled.
2057 */
0a7de745 2058 if ((m->m_pkthdr.pkt_flags & PKTF_LOOP) || m->m_pkthdr.rcvif == NULL) {
39236c6e 2059 ifscope = IFSCOPE_NONE;
0a7de745 2060 } else {
39236c6e 2061 ifscope = m->m_pkthdr.rcvif->if_index;
0a7de745 2062 }
316670eb 2063
0a7de745
A
2064 /*
2065 * Convert TCP protocol specific fields to host format.
2066 */
316670eb
A
2067
2068#if BYTE_ORDER != BIG_ENDIAN
0a7de745
A
2069 NTOHL(th->th_seq);
2070 NTOHL(th->th_ack);
2071 NTOHS(th->th_win);
2072 NTOHS(th->th_urp);
316670eb 2073#endif
1c79356b
A
2074
2075 /*
2076 * Locate pcb for segment.
2077 */
2078findpcb:
6d2010ae
A
2079
2080 isconnected = FALSE;
2081 isdisconnected = FALSE;
2082
f427ee49
A
2083 if (isipv6) {
2084 inp = in6_pcblookup_hash(&tcbinfo, &ip6->ip6_src, th->th_sport,
2085 &ip6->ip6_dst, th->th_dport, 1,
2086 m->m_pkthdr.rcvif);
2087 } else {
0a7de745
A
2088 inp = in_pcblookup_hash(&tcbinfo, ip->ip_src, th->th_sport,
2089 ip->ip_dst, th->th_dport, 1, m->m_pkthdr.rcvif);
2090 }
1c79356b 2091
c910b4d9
A
2092 /*
2093 * Use the interface scope information from the PCB for outbound
2094 * segments. If the PCB isn't present and if scoped routing is
2095 * enabled, tcp_respond will use the scope of the interface where
2096 * the segment arrived on.
2097 */
0a7de745 2098 if (inp != NULL && (inp->inp_flags & INP_BOUND_IF)) {
316670eb 2099 ifscope = inp->inp_boundifp->if_index;
0a7de745 2100 }
1c79356b
A
2101
2102 /*
2103 * If the state is CLOSED (i.e., TCB does not exist) then
2104 * all data in the incoming segment is discarded.
2105 * If the TCB exists but is in CLOSED state, it is embryonic,
2106 * but should either do a listen or a connect soon.
2107 */
2108 if (inp == NULL) {
9bccf70c 2109 if (log_in_vain) {
91447636 2110 char dbuf[MAX_IPv6_STR_LEN], sbuf[MAX_IPv6_STR_LEN];
1c79356b 2111
1c79356b 2112 if (isipv6) {
91447636
A
2113 inet_ntop(AF_INET6, &ip6->ip6_dst, dbuf, sizeof(dbuf));
2114 inet_ntop(AF_INET6, &ip6->ip6_src, sbuf, sizeof(sbuf));
f427ee49 2115 } else {
91447636
A
2116 inet_ntop(AF_INET, &ip->ip_dst, dbuf, sizeof(dbuf));
2117 inet_ntop(AF_INET, &ip->ip_src, sbuf, sizeof(sbuf));
2118 }
9bccf70c
A
2119 switch (log_in_vain) {
2120 case 1:
0a7de745 2121 if (thflags & TH_SYN) {
9bccf70c 2122 log(LOG_INFO,
0a7de745
A
2123 "Connection attempt to TCP %s:%d from %s:%d\n",
2124 dbuf, ntohs(th->th_dport),
2125 sbuf,
2126 ntohs(th->th_sport));
2127 }
9bccf70c
A
2128 break;
2129 case 2:
2130 log(LOG_INFO,
0a7de745
A
2131 "Connection attempt to TCP %s:%d from %s:%d flags:0x%x\n",
2132 dbuf, ntohs(th->th_dport), sbuf,
2133 ntohs(th->th_sport), thflags);
91447636
A
2134 break;
2135 case 3:
39236c6e 2136 case 4:
316670eb 2137 if ((thflags & TH_SYN) && !(thflags & TH_ACK) &&
0a7de745 2138 !(m->m_flags & (M_BCAST | M_MCAST)) &&
0a7de745 2139 ((isipv6 && !IN6_ARE_ADDR_EQUAL(&ip6->ip6_dst, &ip6->ip6_src)) ||
f427ee49 2140 (!isipv6 && ip->ip_dst.s_addr != ip->ip_src.s_addr))) {
91447636 2141 log_in_vain_log((LOG_INFO,
0a7de745
A
2142 "Stealth Mode connection attempt to TCP %s:%d from %s:%d\n",
2143 dbuf, ntohs(th->th_dport),
2144 sbuf,
2145 ntohs(th->th_sport)));
2146 }
9bccf70c
A
2147 break;
2148 default:
2149 break;
1c79356b 2150 }
1c79356b 2151 }
39037602 2152 if (blackhole) {
0a7de745 2153 if (m->m_pkthdr.rcvif && m->m_pkthdr.rcvif->if_type != IFT_LOOP) {
91447636
A
2154 switch (blackhole) {
2155 case 1:
0a7de745 2156 if (thflags & TH_SYN) {
cb323159 2157 TCP_LOG_DROP_PKT(TCP_LOG_HDR, th, ifp, "blackhole 1 syn for closed port");
91447636 2158 goto dropnosock;
0a7de745 2159 }
91447636
A
2160 break;
2161 case 2:
cb323159 2162 TCP_LOG_DROP_PKT(TCP_LOG_HDR, th, ifp, "blackhole 2 closed port");
91447636
A
2163 goto dropnosock;
2164 default:
cb323159 2165 TCP_LOG_DROP_PKT(TCP_LOG_HDR, th, ifp, "blackhole closed port");
91447636
A
2166 goto dropnosock;
2167 }
0a7de745 2168 }
9bccf70c 2169 }
39236c6e 2170 IF_TCP_STATINC(ifp, noconnnolist);
cb323159 2171 TCP_LOG_DROP_PKT(TCP_LOG_HDR, th, ifp, "closed port");
91447636
A
2172 goto dropwithresetnosock;
2173 }
2174 so = inp->inp_socket;
2175 if (so == NULL) {
b0d623f7
A
2176 /* This case shouldn't happen as the socket shouldn't be null
2177 * if inp_state isn't set to INPCB_STATE_DEAD
2178 * But just in case, we pretend we didn't find the socket if we hit this case
2179 * as this isn't cause for a panic (the socket might be leaked however)...
2180 */
2181 inp = NULL;
91447636 2182#if TEMPDEBUG
b0d623f7 2183 printf("tcp_input: no more socket for inp=%x. This shouldn't happen\n", inp);
91447636 2184#endif
cb323159 2185 TCP_LOG_DROP_PKT(TCP_LOG_HDR, th, ifp, "inp_socket NULL");
91447636 2186 goto dropnosock;
1c79356b 2187 }
8ad349bb 2188
5ba3f43e 2189 socket_lock(so, 1);
91447636 2190 if (in_pcb_checkstate(inp, WNT_RELEASE, 1) == WNT_STOPUSING) {
5ba3f43e 2191 socket_unlock(so, 1);
0a7de745 2192 inp = NULL; // pretend we didn't find it
cb323159 2193 TCP_LOG_DROP_PKT(TCP_LOG_HDR, th, ifp, "inp state WNT_STOPUSING");
91447636
A
2194 goto dropnosock;
2195 }
2196
0a7de745
A
2197 if (!isipv6 && inp->inp_faddr.s_addr != INADDR_ANY) {
2198 if (inp->inp_faddr.s_addr != ip->ip_src.s_addr ||
2199 inp->inp_laddr.s_addr != ip->ip_dst.s_addr ||
2200 inp->inp_fport != th->th_sport ||
2201 inp->inp_lport != th->th_dport) {
2202 os_log_error(OS_LOG_DEFAULT, "%s 5-tuple does not match: %u:%u %u:%u\n",
2203 __func__,
2204 ntohs(inp->inp_fport), ntohs(th->th_sport),
2205 ntohs(inp->inp_lport), ntohs(th->th_dport));
2206 if (findpcb_iterated) {
2207 goto drop;
2208 }
2209 findpcb_iterated = true;
2210 socket_unlock(so, 1);
2211 inp = NULL;
2212 goto findpcb;
2213 }
2214 } else if (isipv6 && !IN6_IS_ADDR_UNSPECIFIED(&inp->in6p_faddr)) {
2215 if (!IN6_ARE_ADDR_EQUAL(&inp->in6p_faddr, &ip6->ip6_src) ||
2216 !IN6_ARE_ADDR_EQUAL(&inp->in6p_laddr, &ip6->ip6_dst) ||
2217 inp->inp_fport != th->th_sport ||
2218 inp->inp_lport != th->th_dport) {
2219 os_log_error(OS_LOG_DEFAULT, "%s 5-tuple does not match: %u:%u %u:%u\n",
2220 __func__,
2221 ntohs(inp->inp_fport), ntohs(th->th_sport),
2222 ntohs(inp->inp_lport), ntohs(th->th_dport));
2223 if (findpcb_iterated) {
2224 goto drop;
2225 }
2226 findpcb_iterated = true;
2227 socket_unlock(so, 1);
2228 inp = NULL;
2229 goto findpcb;
2230 }
2231 }
2232
cb323159
A
2233 tp = intotcpcb(inp);
2234 if (tp == NULL) {
cb323159
A
2235 IF_TCP_STATINC(ifp, noconnlist);
2236 TCP_LOG_DROP_PKT(TCP_LOG_HDR, th, ifp, "tp is NULL");
2237 goto dropwithreset;
2238 }
2239
2240 TCP_LOG_TH_FLAGS(TCP_LOG_HDR, th, tp, false, ifp);
2241
2242 if (tp->t_state == TCPS_CLOSED) {
2243 TCP_LOG_DROP_PCB(TCP_LOG_HDR, th, tp, false, "tp state TCPS_CLOSED");
2244 goto drop;
2245 }
2246
3e170ce0 2247#if NECP
5ba3f43e
A
2248 if (so->so_state & SS_ISCONNECTED) {
2249 // Connected TCP sockets have a fully-bound local and remote,
2250 // so the policy check doesn't need to override addresses
f427ee49 2251 if (!necp_socket_is_allowed_to_send_recv(inp, ifp, pf_tag, NULL, NULL, NULL, NULL)) {
cb323159 2252 TCP_LOG_DROP_NECP(TCP_LOG_HDR, th, intotcpcb(inp), false);
5ba3f43e 2253 IF_TCP_STATINC(ifp, badformat);
3e170ce0
A
2254 goto drop;
2255 }
5ba3f43e 2256 } else {
cb323159
A
2257 /*
2258 * If the proc_uuid_policy table has been updated since the last use
2259 * of the listening socket (i.e., the proc_uuid_policy_table_gencount
2260 * has been updated), the flags in the socket may be out of date.
2261 * If INP2_WANT_APP_POLICY is stale, inbound packets may
2262 * be dropped by NECP if the socket should now match a per-app
2263 * exception policy.
2264 * In order to avoid this refresh the proc_uuid_policy state to
2265 * potentially recalculate the socket's flags before checking
2266 * with NECP.
2267 */
2268 (void) inp_update_policy(inp);
f427ee49 2269
5ba3f43e
A
2270 if (isipv6) {
2271 if (!necp_socket_is_allowed_to_send_recv_v6(inp,
0a7de745 2272 th->th_dport, th->th_sport, &ip6->ip6_dst,
f427ee49 2273 &ip6->ip6_src, ifp, pf_tag, NULL, NULL, NULL, NULL)) {
cb323159 2274 TCP_LOG_DROP_NECP(TCP_LOG_HDR, th, intotcpcb(inp), false);
5ba3f43e
A
2275 IF_TCP_STATINC(ifp, badformat);
2276 goto drop;
2277 }
f427ee49 2278 } else {
5ba3f43e 2279 if (!necp_socket_is_allowed_to_send_recv_v4(inp,
0a7de745 2280 th->th_dport, th->th_sport, &ip->ip_dst, &ip->ip_src,
f427ee49 2281 ifp, pf_tag, NULL, NULL, NULL, NULL)) {
cb323159 2282 TCP_LOG_DROP_NECP(TCP_LOG_HDR, th, intotcpcb(inp), false);
5ba3f43e
A
2283 IF_TCP_STATINC(ifp, badformat);
2284 goto drop;
2285 }
3e170ce0
A
2286 }
2287 }
2288#endif /* NECP */
2289
cb323159 2290 prev_t_state = tp->t_state;
9bccf70c 2291
d9a64523 2292 /* If none of the FIN|SYN|RST|ACK flag is set, drop */
f427ee49 2293 if ((thflags & TH_ACCEPT) == 0) {
cb323159 2294 TCP_LOG_DROP_PCB(TCP_LOG_HDR, th, tp, false, "rfc5961 TH_ACCEPT == 0");
d9a64523 2295 goto drop;
0a7de745 2296 }
d9a64523 2297
1c79356b 2298 /* Unscale the window into a 32-bit value. */
0a7de745 2299 if ((thflags & TH_SYN) == 0) {
1c79356b 2300 tiwin = th->th_win << tp->snd_scale;
0a7de745 2301 } else {
1c79356b 2302 tiwin = th->th_win;
0a7de745 2303 }
1c79356b 2304
39236c6e 2305 /* Avoid processing packets while closing a listen socket */
39037602 2306 if (tp->t_state == TCPS_LISTEN &&
0a7de745 2307 (so->so_options & SO_ACCEPTCONN) == 0) {
cb323159 2308 TCP_LOG_DROP_PCB(TCP_LOG_HDR, th, tp, false, "closing a listening socket");
b7266188 2309 goto drop;
0a7de745 2310 }
b7266188 2311
0a7de745 2312 if (so->so_options & (SO_DEBUG | SO_ACCEPTCONN)) {
1c79356b
A
2313#if TCPDEBUG
2314 if (so->so_options & SO_DEBUG) {
2315 ostate = tp->t_state;
0a7de745 2316 if (isipv6) {
9bccf70c 2317 bcopy((char *)ip6, (char *)tcp_saveipgen,
0a7de745 2318 sizeof(*ip6));
f427ee49
A
2319 } else {
2320 bcopy((char *)ip, (char *)tcp_saveipgen, sizeof(*ip));
2321 }
1c79356b
A
2322 tcp_savetcp = *th;
2323 }
2324#endif
2325 if (so->so_options & SO_ACCEPTCONN) {
39037602 2326 struct tcpcb *tp0 = tp;
1c79356b 2327 struct socket *so2;
1c79356b 2328 struct socket *oso;
91447636 2329 struct sockaddr_storage from;
cb323159 2330 struct sockaddr_storage to2;
1c79356b 2331 struct inpcb *oinp = sotoinpcb(so);
316670eb 2332 struct ifnet *head_ifscope;
fe8ab488 2333 unsigned int head_nocell, head_recvanyif,
0a7de745 2334 head_noexpensive, head_awdl_unrestricted,
cb323159
A
2335 head_intcoproc_allowed, head_external_port,
2336 head_noconstrained;
c910b4d9
A
2337
2338 /* Get listener's bound-to-interface, if any */
2339 head_ifscope = (inp->inp_flags & INP_BOUND_IF) ?
316670eb 2340 inp->inp_boundifp : NULL;
6d2010ae 2341 /* Get listener's no-cellular information, if any */
fe8ab488 2342 head_nocell = INP_NO_CELLULAR(inp);
316670eb
A
2343 /* Get listener's recv-any-interface, if any */
2344 head_recvanyif = (inp->inp_flags & INP_RECV_ANYIF);
fe8ab488
A
2345 /* Get listener's no-expensive information, if any */
2346 head_noexpensive = INP_NO_EXPENSIVE(inp);
cb323159 2347 head_noconstrained = INP_NO_CONSTRAINED(inp);
fe8ab488 2348 head_awdl_unrestricted = INP_AWDL_UNRESTRICTED(inp);
39037602 2349 head_intcoproc_allowed = INP_INTCOPROC_ALLOWED(inp);
cb323159 2350 head_external_port = (inp->inp_flags2 & INP2_EXTERNAL_PORT);
1c79356b 2351
9bccf70c 2352 /*
7e4a7d39
A
2353 * If the state is LISTEN then ignore segment if it contains an RST.
2354 * If the segment contains an ACK then it is bad and send a RST.
2355 * If it does not contain a SYN then it is not interesting; drop it.
2356 * If it is from this socket, drop it, it must be forged.
9bccf70c 2357 */
0a7de745 2358 if ((thflags & (TH_RST | TH_ACK | TH_SYN)) != TH_SYN) {
39236c6e
A
2359 IF_TCP_STATINC(ifp, listbadsyn);
2360
7e4a7d39 2361 if (thflags & TH_RST) {
cb323159 2362 TCP_LOG_DROP_PCB(TCP_LOG_HDR, th, tp, false, "SYN with RST");
7e4a7d39
A
2363 goto drop;
2364 }
1c79356b 2365 if (thflags & TH_ACK) {
cb323159 2366 TCP_LOG_DROP_PCB(TCP_LOG_HDR, th, tp, false, "SYN with ACK");
7e4a7d39 2367 tp = NULL;
1c79356b
A
2368 tcpstat.tcps_badsyn++;
2369 goto dropwithreset;
2370 }
7e4a7d39
A
2371
2372 /* We come here if there is no SYN set */
2373 tcpstat.tcps_badsyn++;
cb323159 2374 TCP_LOG_DROP_PCB(TCP_LOG_HDR, th, tp, false, "bad SYN");
1c79356b
A
2375 goto drop;
2376 }
0a7de745 2377 KERNEL_DEBUG(DBG_FNC_TCP_NEWCONN | DBG_FUNC_START, 0, 0, 0, 0, 0);
39037602 2378 if (th->th_dport == th->th_sport) {
7e4a7d39
A
2379 if (isipv6) {
2380 if (IN6_ARE_ADDR_EQUAL(&ip6->ip6_dst,
0a7de745 2381 &ip6->ip6_src)) {
cb323159 2382 TCP_LOG_DROP_PCB(TCP_LOG_HDR, th, tp, false, "bad tuple same port");
7e4a7d39 2383 goto drop;
0a7de745 2384 }
f427ee49 2385 } else if (ip->ip_dst.s_addr == ip->ip_src.s_addr) {
cb323159 2386 TCP_LOG_DROP_PCB(TCP_LOG_HDR, th, tp, false, "bad tuple same IPv4 address");
0a7de745
A
2387 goto drop;
2388 }
7e4a7d39
A
2389 }
2390 /*
2391 * RFC1122 4.2.3.10, p. 104: discard bcast/mcast SYN
2392 * in_broadcast() should never return true on a received
2393 * packet with M_BCAST not set.
2394 *
2395 * Packets with a multicast source address should also
2396 * be discarded.
2397 */
0a7de745 2398 if (m->m_flags & (M_BCAST | M_MCAST)) {
cb323159 2399 TCP_LOG_DROP_PCB(TCP_LOG_HDR, th, tp, false, "mbuf M_BCAST | M_MCAST");
7e4a7d39 2400 goto drop;
0a7de745 2401 }
7e4a7d39
A
2402 if (isipv6) {
2403 if (IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst) ||
0a7de745 2404 IN6_IS_ADDR_MULTICAST(&ip6->ip6_src)) {
cb323159 2405 TCP_LOG_DROP_PCB(TCP_LOG_HDR, th, tp, false, "IN6_IS_ADDR_MULTICAST");
7e4a7d39 2406 goto drop;
0a7de745 2407 }
f427ee49 2408 } else if (IN_MULTICAST(ntohl(ip->ip_dst.s_addr)) ||
0a7de745
A
2409 IN_MULTICAST(ntohl(ip->ip_src.s_addr)) ||
2410 ip->ip_src.s_addr == htonl(INADDR_BROADCAST) ||
2411 in_broadcast(ip->ip_dst, m->m_pkthdr.rcvif)) {
cb323159 2412 TCP_LOG_DROP_PCB(TCP_LOG_HDR, th, tp, false, "multicast or broadcast address");
7e4a7d39 2413 goto drop;
0a7de745 2414 }
7e4a7d39 2415
1c79356b 2416
9bccf70c
A
2417 /*
2418 * If deprecated address is forbidden,
2419 * we do not accept SYN to deprecated interface
2420 * address to prevent any new inbound connection from
2421 * getting established.
2422 * When we do not accept SYN, we send a TCP RST,
2423 * with deprecated source address (instead of dropping
2424 * it). We compromise it as it is much better for peer
2425 * to send a RST, and RST will be the final packet
2426 * for the exchange.
2427 *
2428 * If we do not forbid deprecated addresses, we accept
39236c6e
A
2429 * the SYN packet. RFC 4862 forbids dropping SYN in
2430 * this case.
9bccf70c
A
2431 */
2432 if (isipv6 && !ip6_use_deprecated) {
39236c6e
A
2433 uint32_t ia6_flags;
2434
2435 if (ip6_getdstifaddr_info(m, NULL,
2436 &ia6_flags) == 0) {
2437 if (ia6_flags & IN6_IFF_DEPRECATED) {
6d2010ae 2438 tp = NULL;
39236c6e 2439 IF_TCP_STATINC(ifp, deprecate6);
cb323159 2440 TCP_LOG_DROP_PCB(TCP_LOG_HDR, th, tp, false, "deprecated IPv6 address");
6d2010ae
A
2441 goto dropwithreset;
2442 }
9bccf70c
A
2443 }
2444 }
cb323159 2445 if (so->so_filt || check_cfil) {
91447636 2446 if (isipv6) {
0a7de745 2447 struct sockaddr_in6 *sin6 = (struct sockaddr_in6*)&from;
39037602 2448
91447636
A
2449 sin6->sin6_len = sizeof(*sin6);
2450 sin6->sin6_family = AF_INET6;
2451 sin6->sin6_port = th->th_sport;
2452 sin6->sin6_flowinfo = 0;
2453 sin6->sin6_addr = ip6->ip6_src;
2454 sin6->sin6_scope_id = 0;
cb323159
A
2455
2456 sin6 = (struct sockaddr_in6*)&to2;
2457
2458 sin6->sin6_len = sizeof(struct sockaddr_in6);
2459 sin6->sin6_family = AF_INET6;
2460 sin6->sin6_port = th->th_dport;
2461 sin6->sin6_flowinfo = 0;
2462 sin6->sin6_addr = ip6->ip6_dst;
2463 sin6->sin6_scope_id = 0;
f427ee49 2464 } else {
91447636 2465 struct sockaddr_in *sin = (struct sockaddr_in*)&from;
39037602 2466
91447636
A
2467 sin->sin_len = sizeof(*sin);
2468 sin->sin_family = AF_INET;
2469 sin->sin_port = th->th_sport;
2470 sin->sin_addr = ip->ip_src;
cb323159
A
2471
2472 sin = (struct sockaddr_in*)&to2;
2473
2474 sin->sin_len = sizeof(struct sockaddr_in);
2475 sin->sin_family = AF_INET;
2476 sin->sin_port = th->th_dport;
2477 sin->sin_addr = ip->ip_dst;
91447636 2478 }
cb323159
A
2479 }
2480
2481 if (so->so_filt) {
91447636
A
2482 so2 = sonewconn(so, 0, (struct sockaddr*)&from);
2483 } else {
2484 so2 = sonewconn(so, 0, NULL);
2485 }
1c79356b
A
2486 if (so2 == 0) {
2487 tcpstat.tcps_listendrop++;
2d21ac55 2488 if (tcp_dropdropablreq(so)) {
0a7de745 2489 if (so->so_filt) {
91447636 2490 so2 = sonewconn(so, 0, (struct sockaddr*)&from);
0a7de745 2491 } else {
91447636 2492 so2 = sonewconn(so, 0, NULL);
0a7de745 2493 }
1c79356b 2494 }
0a7de745 2495 if (!so2) {
cb323159 2496 TCP_LOG_DROP_PCB(TCP_LOG_HDR, th, tp, false, " listen drop");
1c79356b 2497 goto drop;
0a7de745 2498 }
1c79356b 2499 }
b0d623f7
A
2500
2501 /* Point "inp" and "tp" in tandem to new socket */
2502 inp = (struct inpcb *)so2->so_pcb;
2503 tp = intotcpcb(inp);
91447636 2504
1c79356b 2505 oso = so;
5ba3f43e 2506 socket_unlock(so, 0); /* Unlock but keep a reference on listener for now */
91447636 2507
1c79356b 2508 so = so2;
5ba3f43e 2509 socket_lock(so, 1);
1c79356b 2510 /*
1c79356b
A
2511 * Mark socket as temporary until we're
2512 * committed to keeping it. The code at
2513 * ``drop'' and ``dropwithreset'' check the
2514 * flag dropsocket to see if the temporary
2515 * socket created here should be discarded.
2516 * We mark the socket as discardable until
2517 * we're committed to it below in TCPS_LISTEN.
7e4a7d39
A
2518 * There are some error conditions in which we
2519 * have to drop the temporary socket.
1c79356b
A
2520 */
2521 dropsocket++;
c910b4d9
A
2522 /*
2523 * Inherit INP_BOUND_IF from listener; testing if
316670eb 2524 * head_ifscope is non-NULL is sufficient, since it
c910b4d9
A
2525 * can only be set to a non-zero value earlier if
2526 * the listener has such a flag set.
2527 */
316670eb 2528 if (head_ifscope != NULL) {
c910b4d9 2529 inp->inp_flags |= INP_BOUND_IF;
316670eb
A
2530 inp->inp_boundifp = head_ifscope;
2531 } else {
2532 inp->inp_flags &= ~INP_BOUND_IF;
c910b4d9 2533 }
6d2010ae 2534 /*
fe8ab488 2535 * Inherit restrictions from listener.
6d2010ae 2536 */
0a7de745 2537 if (head_nocell) {
fe8ab488 2538 inp_set_nocellular(inp);
0a7de745
A
2539 }
2540 if (head_noexpensive) {
fe8ab488 2541 inp_set_noexpensive(inp);
0a7de745 2542 }
cb323159
A
2543 if (head_noconstrained) {
2544 inp_set_noconstrained(inp);
2545 }
0a7de745 2546 if (head_awdl_unrestricted) {
fe8ab488 2547 inp_set_awdl_unrestricted(inp);
0a7de745
A
2548 }
2549 if (head_intcoproc_allowed) {
39037602 2550 inp_set_intcoproc_allowed(inp);
0a7de745 2551 }
316670eb
A
2552 /*
2553 * Inherit {IN,IN6}_RECV_ANYIF from listener.
2554 */
0a7de745 2555 if (head_recvanyif) {
316670eb 2556 inp->inp_flags |= INP_RECV_ANYIF;
0a7de745 2557 } else {
316670eb 2558 inp->inp_flags &= ~INP_RECV_ANYIF;
0a7de745 2559 }
cb323159
A
2560
2561 if (head_external_port) {
2562 inp->inp_flags2 |= INP2_EXTERNAL_PORT;
2563 }
0a7de745 2564 if (isipv6) {
1c79356b 2565 inp->in6p_laddr = ip6->ip6_dst;
0a7de745 2566 } else {
9bccf70c
A
2567 inp->inp_vflag &= ~INP_IPV6;
2568 inp->inp_vflag |= INP_IPV4;
f427ee49
A
2569 inp->inp_laddr = ip->ip_dst;
2570 }
1c79356b 2571 inp->inp_lport = th->th_dport;
91447636 2572 if (in_pcbinshash(inp, 0) != 0) {
1c79356b 2573 /*
9bccf70c
A
2574 * Undo the assignments above if we failed to
2575 * put the PCB on the hash lists.
1c79356b 2576 */
0a7de745 2577 if (isipv6) {
1c79356b 2578 inp->in6p_laddr = in6addr_any;
f427ee49
A
2579 } else {
2580 inp->inp_laddr.s_addr = INADDR_ANY;
2581 }
1c79356b 2582 inp->inp_lport = 0;
0a7de745 2583 socket_lock(oso, 0); /* release ref on parent */
5ba3f43e 2584 socket_unlock(oso, 1);
cb323159 2585 TCP_LOG_DROP_PCB(TCP_LOG_HDR, th, tp, false, " in_pcbinshash failed");
1c79356b
A
2586 goto drop;
2587 }
4ba76501 2588 socket_lock(oso, 0);
1c79356b 2589 if (isipv6) {
5ba3f43e
A
2590 /*
2591 * Inherit socket options from the listening
2592 * socket.
2593 * Note that in6p_inputopts are not (even
2594 * should not be) copied, since it stores
1c79356b 2595 * previously received options and is used to
5ba3f43e
A
2596 * detect if each new option is different than
2597 * the previous one and hence should be passed
2598 * to a user.
2599 * If we copied in6p_inputopts, a user would
2600 * not be able to receive options just after
2601 * calling the accept system call.
2602 */
1c79356b 2603 inp->inp_flags |=
0a7de745
A
2604 oinp->inp_flags & INP_CONTROLOPTS;
2605 if (oinp->in6p_outputopts) {
5ba3f43e 2606 inp->in6p_outputopts =
0a7de745
A
2607 ip6_copypktopts(oinp->in6p_outputopts,
2608 M_NOWAIT);
2609 }
f427ee49 2610 } else {
316670eb 2611 inp->inp_options = ip_srcroute();
3e170ce0
A
2612 inp->inp_ip_tos = oinp->inp_ip_tos;
2613 }
1c79356b
A
2614#if IPSEC
2615 /* copy old policy into new socket's */
0a7de745 2616 if (sotoinpcb(oso)->inp_sp) {
9bccf70c
A
2617 int error = 0;
2618 /* Is it a security hole here to silently fail to copy the policy? */
0a7de745 2619 if (inp->inp_sp != NULL) {
9bccf70c 2620 error = ipsec_init_policy(so, &inp->inp_sp);
0a7de745
A
2621 }
2622 if (error != 0 || ipsec_copy_policy(sotoinpcb(oso)->inp_sp, inp->inp_sp)) {
9bccf70c 2623 printf("tcp_input: could not copy policy\n");
0a7de745 2624 }
9bccf70c 2625 }
1c79356b 2626#endif
b0d623f7 2627 /* inherit states from the listener */
6d2010ae 2628 DTRACE_TCP4(state__change, void, NULL, struct inpcb *, inp,
0a7de745 2629 struct tcpcb *, tp, int32_t, TCPS_LISTEN);
1c79356b 2630 tp->t_state = TCPS_LISTEN;
0a7de745
A
2631 tp->t_flags |= tp0->t_flags & (TF_NOPUSH | TF_NOOPT | TF_NODELAY);
2632 tp->t_flagsext |= (tp0->t_flagsext & (TF_RXTFINDROP | TF_NOTIMEWAIT | TF_FASTOPEN));
b0d623f7 2633 tp->t_keepinit = tp0->t_keepinit;
39236c6e
A
2634 tp->t_keepcnt = tp0->t_keepcnt;
2635 tp->t_keepintvl = tp0->t_keepintvl;
2636 tp->t_adaptive_wtimo = tp0->t_adaptive_wtimo;
2637 tp->t_adaptive_rtimo = tp0->t_adaptive_rtimo;
91447636 2638 tp->t_inpcb->inp_ip_ttl = tp0->t_inpcb->inp_ip_ttl;
0a7de745 2639 if ((so->so_flags & SOF_NOTSENT_LOWAT) != 0) {
316670eb 2640 tp->t_notsent_lowat = tp0->t_notsent_lowat;
0a7de745 2641 }
39037602
A
2642 tp->t_inpcb->inp_flags2 |=
2643 tp0->t_inpcb->inp_flags2 & INP2_KEEPALIVE_OFFLOAD;
b0d623f7
A
2644
2645 /* now drop the reference on the listener */
5ba3f43e 2646 socket_unlock(oso, 1);
b0d623f7 2647
f427ee49 2648 tcp_set_max_rwinscale(tp, so);
1c79356b 2649
cb323159
A
2650#if CONTENT_FILTER
2651 if (check_cfil) {
2652 int error = cfil_sock_attach(so2, (struct sockaddr*)&to2, (struct sockaddr*)&from,
2653 CFS_CONNECTION_DIR_IN);
2654 if (error != 0) {
2655 TCP_LOG_DROP_PCB(TCP_LOG_HDR, th, tp, false, " cfil_sock_attach failed");
2656 goto drop;
2657 }
2658 }
2659#endif /* CONTENT_FILTER */
2660
0a7de745 2661 KERNEL_DEBUG(DBG_FNC_TCP_NEWCONN | DBG_FUNC_END, 0, 0, 0, 0, 0);
1c79356b
A
2662 }
2663 }
5ba3f43e 2664 socket_lock_assert_owned(so);
6d2010ae 2665
cb323159
A
2666 if (net_mpklog_enabled && (m->m_pkthdr.rcvif->if_xflags & IFXF_MPK_LOG)) {
2667 MPKL_TCP_INPUT(tcp_mpkl_log_object,
2668 ntohs(tp->t_inpcb->inp_lport), ntohs(tp->t_inpcb->inp_fport),
2669 th->th_seq, th->th_ack, tlen, thflags,
2670 so->last_pid, so->so_log_seqn++);
2671 }
2672
743b1565 2673 if (tp->t_state == TCPS_ESTABLISHED && tlen > 0) {
39037602
A
2674 /*
2675 * Evaluate the rate of arrival of packets to see if the
2676 * receiver can reduce the ack traffic. The algorithm to
2677 * stretch acks will be enabled if the connection meets
6d2010ae
A
2678 * certain criteria defined in tcp_stretch_ack_enable function.
2679 */
2680 if ((tp->t_flagsext & TF_RCVUNACK_WAITSS) != 0) {
f427ee49 2681 TCP_INC_VAR(tp->rcv_waitforss, segment_count);
6d2010ae 2682 }
39037602 2683 if (tcp_stretch_ack_enable(tp, thflags)) {
6d2010ae
A
2684 tp->t_flags |= TF_STRETCHACK;
2685 tp->t_flagsext &= ~(TF_RCVUNACK_WAITSS);
2686 tp->rcv_waitforss = 0;
2687 } else {
2688 tp->t_flags &= ~(TF_STRETCHACK);
2689 }
cb323159
A
2690 if (TSTMP_GT(tp->rcv_unackwin - (tcp_rcvunackwin >> 1), tcp_now)) {
2691 tp->rcv_by_unackhalfwin += (tlen + off);
6d2010ae
A
2692 tp->rcv_by_unackwin += (tlen + off);
2693 } else {
2694 tp->rcv_unackwin = tcp_now + tcp_rcvunackwin;
cb323159
A
2695 tp->rcv_by_unackwin = tp->rcv_by_unackhalfwin + tlen + off;
2696 tp->rcv_by_unackhalfwin = tlen + off;
6d2010ae 2697 }
91447636 2698 }
316670eb 2699
39037602 2700 /*
f427ee49
A
2701 * Clear TE_SENDECE if TH_CWR is set. This is harmless, so we don't
2702 * bother doing extensive checks for state and whatnot.
316670eb 2703 */
f427ee49
A
2704 if (thflags & TH_CWR) {
2705 tp->ecn_flags &= ~TE_SENDECE;
2706 tp->t_ecn_recv_cwr++;
316670eb 2707 }
f427ee49 2708
2d21ac55 2709 /*
39236c6e 2710 * Explicit Congestion Notification - Flag that we need to send ECT if
cb323159
A
2711 * + The IP Congestion experienced flag was set.
2712 * + Socket is in established state
2713 * + We negotiated ECN in the TCP setup
2714 * + This isn't a pure ack (tlen > 0)
2715 * + The data is in the valid window
39236c6e 2716 *
cb323159 2717 * TE_SENDECE will be cleared when we receive a packet with TH_CWR set.
2d21ac55
A
2718 */
2719 if (ip_ecn == IPTOS_ECN_CE && tp->t_state == TCPS_ESTABLISHED &&
3e170ce0
A
2720 TCP_ECN_ENABLED(tp) && tlen > 0 &&
2721 SEQ_GEQ(th->th_seq, tp->last_ack_sent) &&
2722 SEQ_LT(th->th_seq, tp->last_ack_sent + tp->rcv_wnd)) {
4bd07ac2 2723 tp->t_ecn_recv_ce++;
3e170ce0 2724 tcpstat.tcps_ecn_recv_ce++;
4bd07ac2 2725 INP_INC_IFNET_STAT(inp, ecn_recv_ce);
3e170ce0
A
2726 /* Mark this connection as it received CE from network */
2727 tp->ecn_flags |= TE_RECV_ECN_CE;
2d21ac55
A
2728 tp->ecn_flags |= TE_SENDECE;
2729 }
4bd07ac2 2730
39037602
A
2731 /*
2732 * If we received an explicit notification of congestion in
6d2010ae 2733 * ip tos ecn bits or by the CWR bit in TCP header flags, reset
f427ee49 2734 * the ack-stretching state. We need to handle ECN notification if
fe8ab488 2735 * an ECN setup SYN was sent even once.
6d2010ae 2736 */
f427ee49
A
2737 if (tp->t_state == TCPS_ESTABLISHED &&
2738 (tp->ecn_flags & TE_SETUPSENT) &&
2739 (ip_ecn == IPTOS_ECN_CE || (thflags & TH_CWR))) {
6d2010ae 2740 tcp_reset_stretch_ack(tp);
f427ee49 2741 tp->t_forced_acks = TCP_FORCED_ACKS_COUNT;
3e170ce0
A
2742 CLEAR_IAJ_STATE(tp);
2743 }
316670eb 2744
4bd07ac2
A
2745 if (ip_ecn == IPTOS_ECN_CE && tp->t_state == TCPS_ESTABLISHED &&
2746 !TCP_ECN_ENABLED(tp) && !(tp->ecn_flags & TE_CEHEURI_SET)) {
2747 tcpstat.tcps_ecn_fallback_ce++;
2748 tcp_heuristic_ecn_aggressive(tp);
2749 tp->ecn_flags |= TE_CEHEURI_SET;
2750 }
2751
2752 if (tp->t_state == TCPS_ESTABLISHED && TCP_ECN_ENABLED(tp) &&
2753 ip_ecn == IPTOS_ECN_CE && !(tp->ecn_flags & TE_CEHEURI_SET)) {
2754 if (inp->inp_stat->rxpackets < ECN_MIN_CE_PROBES) {
2755 tp->t_ecn_recv_ce_pkt++;
2756 } else if (tp->t_ecn_recv_ce_pkt > ECN_MAX_CE_RATIO) {
2757 tcpstat.tcps_ecn_fallback_ce++;
2758 tcp_heuristic_ecn_aggressive(tp);
2759 tp->ecn_flags |= TE_CEHEURI_SET;
0a7de745 2760 INP_INC_IFNET_STAT(inp, ecn_fallback_ce);
4bd07ac2
A
2761 } else {
2762 /* We tracked the first ECN_MIN_CE_PROBES segments, we
2763 * now know that the path is good.
2764 */
2765 tp->ecn_flags |= TE_CEHEURI_SET;
2766 }
2767 }
2768
39236c6e
A
2769 /* Update rcvtime as a new segment was received on the connection */
2770 tp->t_rcvtime = tcp_now;
2771
1c79356b
A
2772 /*
2773 * Segment received on connection.
2774 * Reset idle time and keep-alive timer.
2775 */
5ba3f43e 2776 if (TCPS_HAVEESTABLISHED(tp->t_state)) {
39236c6e 2777 tcp_keepalive_reset(tp);
1c79356b 2778
0a7de745 2779 if (tp->t_mpsub) {
5ba3f43e 2780 mptcp_reset_keepalive(tp);
0a7de745 2781 }
5ba3f43e
A
2782 }
2783
1c79356b
A
2784 /*
2785 * Process options if not in LISTEN state,
2786 * else do it below (after getting remote address).
2787 */
39236c6e 2788 if (tp->t_state != TCPS_LISTEN && optp) {
3e170ce0 2789 tcp_dooptions(tp, optp, optlen, th, &to);
5c9f4661 2790 }
39236c6e 2791#if MPTCP
5c9f4661
A
2792 if (tp->t_state != TCPS_LISTEN && (so->so_flags & SOF_MP_SUBFLOW) &&
2793 mptcp_input_preproc(tp, m, th, drop_hdrlen) != 0) {
2794 tp->t_flags |= TF_ACKNOW;
2795 (void) tcp_output(tp);
2796 tcp_check_timer_state(tp);
2797 socket_unlock(so, 1);
5c9f4661 2798 return;
39236c6e 2799 }
5c9f4661 2800#endif /* MPTCP */
39236c6e 2801 if (tp->t_state == TCPS_SYN_SENT && (thflags & TH_SYN)) {
3e170ce0
A
2802 if (!(thflags & TH_ACK) ||
2803 (SEQ_GT(th->th_ack, tp->iss) &&
0a7de745 2804 SEQ_LEQ(th->th_ack, tp->snd_max))) {
3e170ce0 2805 tcp_finalize_options(tp, &to, ifscope);
0a7de745 2806 }
8ad349bb
A
2807 }
2808
6d2010ae 2809#if TRAFFIC_MGT
3e170ce0
A
2810 /*
2811 * Compute inter-packet arrival jitter. According to RFC 3550,
2812 * inter-packet arrival jitter is defined as the difference in
2813 * packet spacing at the receiver compared to the sender for a
2814 * pair of packets. When two packets of maximum segment size come
2815 * one after the other with consecutive sequence numbers, we
2816 * consider them as packets sent together at the sender and use
2817 * them as a pair to compute inter-packet arrival jitter. This
2818 * metric indicates the delay induced by the network components due
6d2010ae
A
2819 * to queuing in edge/access routers.
2820 */
2821 if (tp->t_state == TCPS_ESTABLISHED &&
0a7de745 2822 (thflags & (TH_SYN | TH_FIN | TH_RST | TH_URG | TH_ACK | TH_ECE | TH_PUSH)) == TH_ACK &&
f427ee49 2823 ((tp->t_flags & TF_NEEDFIN) == 0) &&
6d2010ae 2824 ((to.to_flags & TOF_TS) == 0 ||
0a7de745 2825 TSTMP_GEQ(to.to_tsval, tp->ts_recent)) &&
39037602 2826 th->th_seq == tp->rcv_nxt && LIST_EMPTY(&tp->t_segq)) {
316670eb 2827 int seg_size = tlen;
6d2010ae 2828 if (tp->iaj_pktcnt <= IAJ_IGNORE_PKTCNT) {
f427ee49 2829 TCP_INC_VAR(tp->iaj_pktcnt, segment_count);
6d2010ae
A
2830 }
2831
0a7de745
A
2832 if (tp->iaj_size == 0 || seg_size > tp->iaj_size ||
2833 (seg_size == tp->iaj_size && tp->iaj_rcv_ts == 0)) {
3e170ce0
A
2834 /*
2835 * State related to inter-arrival jitter is
2836 * uninitialized or we are trying to find a good
2837 * first packet to start computing the metric
6d2010ae 2838 */
316670eb 2839 update_iaj_state(tp, seg_size, 0);
6d2010ae 2840 } else {
316670eb 2841 if (seg_size == tp->iaj_size) {
3e170ce0
A
2842 /*
2843 * Compute inter-arrival jitter taking
2844 * this packet as the second packet
6d2010ae 2845 */
f427ee49 2846 compute_iaj(tp);
39037602 2847 }
0a7de745 2848 if (seg_size < tp->iaj_size) {
3e170ce0
A
2849 /*
2850 * There is a smaller packet in the stream.
2851 * Some times the maximum size supported
2852 * on a path can change if there is a new
2853 * link with smaller MTU. The receiver will
2854 * not know about this change. If there
2855 * are too many packets smaller than
2856 * iaj_size, we try to learn the iaj_size
2857 * again.
6d2010ae 2858 */
f427ee49 2859 TCP_INC_VAR(tp->iaj_small_pkt, segment_count);
6d2010ae 2860 if (tp->iaj_small_pkt > RESET_IAJ_SIZE_THRESH) {
316670eb 2861 update_iaj_state(tp, seg_size, 1);
6d2010ae 2862 } else {
316670eb 2863 CLEAR_IAJ_STATE(tp);
6d2010ae
A
2864 }
2865 } else {
316670eb 2866 update_iaj_state(tp, seg_size, 0);
6d2010ae
A
2867 }
2868 }
2869 } else {
316670eb 2870 CLEAR_IAJ_STATE(tp);
6d2010ae
A
2871 }
2872#endif /* TRAFFIC_MGT */
2873
1c79356b
A
2874 /*
2875 * Header prediction: check for the two common cases
2876 * of a uni-directional data xfer. If the packet has
2877 * no control flags, is in-sequence, the window didn't
2878 * change and we're not retransmitting, it's a
2879 * candidate. If the length is zero and the ack moved
2880 * forward, we're the sender side of the xfer. Just
2881 * free the data acked & wake any higher level process
2882 * that was blocked waiting for space. If the length
2883 * is non-zero and the ack didn't move, we're the
2884 * receiver side. If we're getting packets in-order
2885 * (the reassembly queue is empty), add the data to
2886 * the socket buffer and note that we need a delayed ack.
2887 * Make sure that the hidden state-flags are also off.
2888 * Since we check for TCPS_ESTABLISHED above, it can only
2889 * be TH_NEEDSYN.
2890 */
2891 if (tp->t_state == TCPS_ESTABLISHED &&
0a7de745 2892 (thflags & (TH_SYN | TH_FIN | TH_RST | TH_URG | TH_ACK | TH_ECE | TH_CWR)) == TH_ACK &&
f427ee49 2893 ((tp->t_flags & TF_NEEDFIN) == 0) &&
8ad349bb 2894 ((to.to_flags & TOF_TS) == 0 ||
0a7de745 2895 TSTMP_GEQ(to.to_tsval, tp->ts_recent)) &&
1c79356b
A
2896 th->th_seq == tp->rcv_nxt &&
2897 tiwin && tiwin == tp->snd_wnd &&
2898 tp->snd_nxt == tp->snd_max) {
1c79356b
A
2899 /*
2900 * If last ACK falls within this segment's sequence numbers,
2901 * record the timestamp.
2902 * NOTE that the test is modified according to the latest
2903 * proposal of the tcplw@cray.com list (Braden 1993/04/26).
2904 */
8ad349bb 2905 if ((to.to_flags & TOF_TS) != 0 &&
0a7de745 2906 SEQ_LEQ(th->th_seq, tp->last_ack_sent)) {
1c79356b
A
2907 tp->ts_recent_age = tcp_now;
2908 tp->ts_recent = to.to_tsval;
2909 }
2910
9bccf70c 2911 if (tlen == 0) {
1c79356b
A
2912 if (SEQ_GT(th->th_ack, tp->snd_una) &&
2913 SEQ_LEQ(th->th_ack, tp->snd_max) &&
2d21ac55 2914 tp->snd_cwnd >= tp->snd_ssthresh &&
39037602
A
2915 (!IN_FASTRECOVERY(tp) &&
2916 ((!(SACK_ENABLED(tp)) &&
fe8ab488
A
2917 tp->t_dupacks < tp->t_rexmtthresh) ||
2918 (SACK_ENABLED(tp) && to.to_nsacks == 0 &&
2919 TAILQ_EMPTY(&tp->snd_holes))))) {
1c79356b
A
2920 /*
2921 * this is a pure ack for outstanding data.
2922 */
2923 ++tcpstat.tcps_predack;
39236c6e 2924
39037602 2925 tcp_bad_rexmt_check(tp, th, &to);
39236c6e
A
2926
2927 /* Recalculate the RTT */
2928 tcp_compute_rtt(tp, &to, th);
2929
3e170ce0 2930 VERIFY(SEQ_GEQ(th->th_ack, tp->snd_una));
39236c6e 2931 acked = BYTES_ACKED(th, tp);
1c79356b
A
2932 tcpstat.tcps_rcvackpack++;
2933 tcpstat.tcps_rcvackbyte += acked;
39037602 2934
3e170ce0
A
2935 /*
2936 * Handle an ack that is in sequence during
2937 * congestion avoidance phase. The
2938 * calculations in this function
39037602 2939 * assume that snd_una is not updated yet.
2d21ac55 2940 */
0a7de745 2941 if (CC_ALGO(tp)->congestion_avd != NULL) {
fe8ab488 2942 CC_ALGO(tp)->congestion_avd(tp, th);
0a7de745 2943 }
fe8ab488 2944 tcp_ccdbg_trace(tp, th, TCP_CC_INSEQ_ACK_RCVD);
1c79356b 2945 sbdrop(&so->so_snd, acked);
316670eb
A
2946 tcp_sbsnd_trim(&so->so_snd);
2947
8ad349bb 2948 if (SEQ_GT(tp->snd_una, tp->snd_recover) &&
0a7de745 2949 SEQ_LEQ(th->th_ack, tp->snd_recover)) {
8ad349bb 2950 tp->snd_recover = th->th_ack - 1;
0a7de745 2951 }
f427ee49
A
2952
2953 tcp_update_snd_una(tp, th->th_ack);
316670eb 2954
39037602
A
2955 TCP_RESET_REXMT_STATE(tp);
2956
8ad349bb
A
2957 /*
2958 * pull snd_wl2 up to prevent seq wrap relative
2959 * to th_ack.
2960 */
2961 tp->snd_wl2 = th->th_ack;
39236c6e
A
2962
2963 if (tp->t_dupacks > 0) {
2964 tp->t_dupacks = 0;
2965 tp->t_rexmtthresh = tcprexmtthresh;
f427ee49 2966 tp->t_new_dupacks = 0;
39236c6e
A
2967 }
2968
f427ee49
A
2969 tp->sackhint.sack_bytes_acked = 0;
2970
1c79356b
A
2971 /*
2972 * If all outstanding data are acked, stop
2973 * retransmit timer, otherwise restart timer
2974 * using current (possibly backed-off) value.
2975 * If process is waiting for space,
2976 * wakeup/selwakeup/signal. If data
2977 * are ready to send, let tcp_output
2978 * decide between more output or persist.
2979 */
fe8ab488 2980 if (tp->snd_una == tp->snd_max) {
1c79356b 2981 tp->t_timer[TCPT_REXMT] = 0;
fe8ab488
A
2982 tp->t_timer[TCPT_PTO] = 0;
2983 } else if (tp->t_timer[TCPT_PERSIST] == 0) {
f427ee49 2984 tp->t_timer[TCPT_REXMT] = OFFSET_FROM_START(tp, tp->t_rxtcur);
fe8ab488 2985 }
3e170ce0
A
2986 if (!SLIST_EMPTY(&tp->t_rxt_segments) &&
2987 !TCP_DSACK_SEQ_IN_WINDOW(tp,
0a7de745 2988 tp->t_dsack_lastuna, tp->snd_una)) {
3e170ce0 2989 tcp_rxtseg_clean(tp);
0a7de745 2990 }
1c79356b 2991
316670eb 2992 if ((tp->t_flagsext & TF_MEASURESNDBW) != 0 &&
0a7de745 2993 tp->t_bwmeas != NULL) {
316670eb 2994 tcp_bwmeas_check(tp);
0a7de745 2995 }
39037602 2996
cb323159 2997 write_wakeup = 1;
0a7de745 2998 if (!SLIST_EMPTY(&tp->t_notify_ack)) {
39037602 2999 tcp_notify_acknowledgement(tp, so);
0a7de745 3000 }
39037602 3001
2d21ac55 3002 if ((so->so_snd.sb_cc) || (tp->t_flags & TF_ACKNOW)) {
1c79356b 3003 (void) tcp_output(tp);
2d21ac55 3004 }
6d2010ae 3005
3e170ce0
A
3006 tcp_tfo_rcv_ack(tp, th);
3007
4ba76501
A
3008 m_freem(m);
3009
6d2010ae 3010 tcp_check_timer_state(tp);
cb323159
A
3011
3012 tcp_handle_wakeup(so, read_wakeup, write_wakeup);
3013
5ba3f43e 3014 socket_unlock(so, 1);
0a7de745 3015 KERNEL_DEBUG(DBG_FNC_TCP_INPUT | DBG_FUNC_END, 0, 0, 0, 0, 0);
1c79356b
A
3016 return;
3017 }
f427ee49 3018 } else if (th->th_ack == tp->snd_una && LIST_EMPTY(&tp->t_segq) &&
2d21ac55 3019 tlen <= tcp_sbspace(tp)) {
1c79356b
A
3020 /*
3021 * this is a pure, in-sequence data packet
3022 * with nothing on the reassembly queue and
3023 * we have enough buffer space to take it.
3024 */
316670eb 3025
8ad349bb 3026 /* Clean receiver SACK report if present */
0a7de745 3027 if (SACK_ENABLED(tp) && tp->rcv_numsacks) {
8ad349bb 3028 tcp_clean_sackreport(tp);
0a7de745 3029 }
1c79356b 3030 ++tcpstat.tcps_preddat;
9bccf70c 3031 tp->rcv_nxt += tlen;
8ad349bb
A
3032 /*
3033 * Pull snd_wl1 up to prevent seq wrap relative to
3034 * th_seq.
3035 */
3036 tp->snd_wl1 = th->th_seq;
3037 /*
3038 * Pull rcv_up up to prevent seq wrap relative to
3039 * rcv_nxt.
3040 */
3041 tp->rcv_up = tp->rcv_nxt;
f427ee49 3042 TCP_INC_VAR(tcpstat.tcps_rcvpack, segment_count);
9bccf70c 3043 tcpstat.tcps_rcvbyte += tlen;
6d2010ae 3044 if (nstat_collect) {
f427ee49
A
3045 INP_ADD_STAT(inp, cell, wifi, wired,
3046 rxpackets, 1);
0a7de745 3047 INP_ADD_STAT(inp, cell, wifi, wired, rxbytes,
fe8ab488 3048 tlen);
5ba3f43e 3049 inp_set_activity_bitmap(inp);
6d2010ae 3050 }
39236c6e
A
3051
3052 /*
39037602
A
3053 * Calculate the RTT on the receiver only if the
3054 * connection is in streaming mode and the last
39236c6e
A
3055 * packet was not an end-of-write
3056 */
0a7de745 3057 if (tp->t_flags & TF_STREAMING_ON) {
39236c6e 3058 tcp_compute_rtt(tp, &to, th);
0a7de745 3059 }
316670eb 3060
f427ee49 3061 tcp_sbrcv_grow(tp, &so->so_rcv, &to, tlen);
39037602 3062
9bccf70c
A
3063 /*
3064 * Add data to socket buffer.
3065 */
6d2010ae 3066 so_recv_data_stat(so, m, 0);
0a7de745 3067 m_adj(m, drop_hdrlen); /* delayed header drop */
39037602 3068
39236c6e 3069 /*
39037602 3070 * If message delivery (SOF_ENABLE_MSGS) is enabled on
39236c6e
A
3071 * this socket, deliver the packet received as an
3072 * in-order message with sequence number attached to it.
3073 */
cb323159
A
3074 if (isipv6) {
3075 memcpy(&saved_hdr, ip6, sizeof(struct ip6_hdr));
3076 ip6 = (struct ip6_hdr *)&saved_hdr[0];
3077 } else {
3078 memcpy(&saved_hdr, ip, ip->ip_hl << 2);
3079 ip = (struct ip *)&saved_hdr[0];
3080 }
3081 memcpy(&saved_tcphdr, th, sizeof(struct tcphdr));
f427ee49
A
3082
3083 if (th->th_flags & TH_PUSH) {
3084 tp->t_flagsext |= TF_LAST_IS_PSH;
3085 } else {
3086 tp->t_flagsext &= ~TF_LAST_IS_PSH;
3087 }
3088
3089 if (sbappendstream_rcvdemux(so, m)) {
cb323159
A
3090 mptcp_handle_input(so);
3091 read_wakeup = 1;
39037602 3092 }
cb323159
A
3093 th = &saved_tcphdr;
3094
9bccf70c
A
3095 if (isipv6) {
3096 KERNEL_DEBUG(DBG_LAYER_END, ((th->th_dport << 16) | th->th_sport),
0a7de745
A
3097 (((ip6->ip6_src.s6_addr16[0]) << 16) | (ip6->ip6_dst.s6_addr16[0])),
3098 th->th_seq, th->th_ack, th->th_win);
f427ee49 3099 } else {
9bccf70c 3100 KERNEL_DEBUG(DBG_LAYER_END, ((th->th_dport << 16) | th->th_sport),
0a7de745
A
3101 (((ip->ip_src.s_addr & 0xffff) << 16) | (ip->ip_dst.s_addr & 0xffff)),
3102 th->th_seq, th->th_ack, th->th_win);
9bccf70c 3103 }
f427ee49 3104 TCP_INC_VAR(tp->t_unacksegs, segment_count);
0a7de745 3105 if (DELAY_ACK(tp, th)) {
6d2010ae 3106 if ((tp->t_flags & TF_DELACK) == 0) {
0a7de745 3107 tp->t_flags |= TF_DELACK;
6d2010ae
A
3108 tp->t_timer[TCPT_DELACK] = OFFSET_FROM_START(tp, tcp_delack);
3109 }
1c79356b
A
3110 } else {
3111 tp->t_flags |= TF_ACKNOW;
3112 tcp_output(tp);
3113 }
39236c6e
A
3114
3115 tcp_adaptive_rwtimo_check(tp, tlen);
3116
0a7de745 3117 if (tlen > 0) {
3e170ce0 3118 tcp_tfo_rcv_data(tp);
0a7de745 3119 }
3e170ce0 3120
6d2010ae 3121 tcp_check_timer_state(tp);
cb323159
A
3122
3123 tcp_handle_wakeup(so, read_wakeup, write_wakeup);
3124
5ba3f43e 3125 socket_unlock(so, 1);
0a7de745 3126 KERNEL_DEBUG(DBG_FNC_TCP_INPUT | DBG_FUNC_END, 0, 0, 0, 0, 0);
1c79356b
A
3127 return;
3128 }
3129 }
3130
3131 /*
3132 * Calculate amount of space in receive window,
3133 * and then do TCP input processing.
3134 * Receive window is amount of space in rcv queue,
3135 * but not less than advertised window.
3136 */
5ba3f43e 3137 socket_lock_assert_owned(so);
2d21ac55 3138 win = tcp_sbspace(tp);
0a7de745 3139 if (win < 0) {
1c79356b 3140 win = 0;
0a7de745
A
3141 } else { /* clip rcv window to 4K for modems */
3142 if (tp->t_flags & TF_SLOWLINK && slowlink_wsize > 0) {
d12e1678 3143 win = min(win, slowlink_wsize);
0a7de745 3144 }
d12e1678 3145 }
1c79356b 3146 tp->rcv_wnd = imax(win, (int)(tp->rcv_adv - tp->rcv_nxt));
39236c6e
A
3147#if MPTCP
3148 /*
3149 * Ensure that the subflow receive window isn't greater
3150 * than the connection level receive window.
3151 */
f427ee49 3152 if ((tp->t_mpflags & TMPF_MPTCP_TRUE) && (mp_tp = tptomptp(tp))) {
cb323159 3153 socket_lock_assert_owned(mptetoso(mp_tp->mpt_mpte));
f427ee49 3154 int64_t recwin_conn = (int64_t)(mp_tp->mpt_rcvadv - mp_tp->mpt_rcvnxt);
cb323159 3155
f427ee49
A
3156 VERIFY(recwin_conn < INT32_MAX && recwin_conn > INT32_MIN);
3157 if (recwin_conn > 0 && tp->rcv_wnd > (uint32_t)recwin_conn) {
3158 tp->rcv_wnd = (uint32_t)recwin_conn;
39236c6e
A
3159 tcpstat.tcps_mp_reducedwin++;
3160 }
1c79356b 3161 }
39236c6e 3162#endif /* MPTCP */
1c79356b
A
3163
3164 switch (tp->t_state) {
1c79356b 3165 /*
7e4a7d39 3166 * Initialize tp->rcv_nxt, and tp->irs, select an initial
1c79356b 3167 * tp->iss, and send a segment:
f427ee49 3168 * <SEQ=ISS><ACK=RCV_NXT><CTL=SYN,ACK>
1c79356b
A
3169 * Also initialize tp->snd_nxt to tp->iss+1 and tp->snd_una to tp->iss.
3170 * Fill in remote peer address fields if not previously specified.
3171 * Enter SYN_RECEIVED state, and process any other fields of this
3172 * segment in this state.
3173 */
3174 case TCPS_LISTEN: {
39037602 3175 struct sockaddr_in *sin;
39037602 3176 struct sockaddr_in6 *sin6;
1c79356b 3177
5ba3f43e 3178 socket_lock_assert_owned(so);
cb323159
A
3179
3180 /* Clear the logging flags inherited from the listening socket */
3181 tp->t_log_flags = 0;
3182 tp->t_flagsext &= ~TF_LOGGED_CONN_SUMMARY;
3183
9bccf70c 3184 if (isipv6) {
1c79356b 3185 MALLOC(sin6, struct sockaddr_in6 *, sizeof *sin6,
0a7de745
A
3186 M_SONAME, M_NOWAIT);
3187 if (sin6 == NULL) {
cb323159 3188 TCP_LOG_DROP_PCB(TCP_LOG_HDR, th, tp, false, "LISTEN malloc M_SONAME failed");
1c79356b 3189 goto drop;
0a7de745 3190 }
1c79356b
A
3191 bzero(sin6, sizeof(*sin6));
3192 sin6->sin6_family = AF_INET6;
3193 sin6->sin6_len = sizeof(*sin6);
3194 sin6->sin6_addr = ip6->ip6_src;
3195 sin6->sin6_port = th->th_sport;
3196 laddr6 = inp->in6p_laddr;
0a7de745 3197 if (IN6_IS_ADDR_UNSPECIFIED(&inp->in6p_laddr)) {
1c79356b 3198 inp->in6p_laddr = ip6->ip6_dst;
0a7de745 3199 }
1c79356b 3200 if (in6_pcbconnect(inp, (struct sockaddr *)sin6,
f427ee49 3201 kernel_proc)) {
1c79356b
A
3202 inp->in6p_laddr = laddr6;
3203 FREE(sin6, M_SONAME);
cb323159 3204 TCP_LOG_DROP_PCB(TCP_LOG_HDR, th, tp, false, " LISTEN in6_pcbconnect failed");
1c79356b
A
3205 goto drop;
3206 }
3207 FREE(sin6, M_SONAME);
f427ee49 3208 } else {
5ba3f43e 3209 socket_lock_assert_owned(so);
1c79356b 3210 MALLOC(sin, struct sockaddr_in *, sizeof *sin, M_SONAME,
5ba3f43e 3211 M_NOWAIT);
0a7de745 3212 if (sin == NULL) {
cb323159 3213 TCP_LOG_DROP_PCB(TCP_LOG_HDR, th, tp, false, "LISTEN malloc M_SONAME failed");
1c79356b 3214 goto drop;
0a7de745 3215 }
1c79356b
A
3216 sin->sin_family = AF_INET;
3217 sin->sin_len = sizeof(*sin);
3218 sin->sin_addr = ip->ip_src;
3219 sin->sin_port = th->th_sport;
3220 bzero((caddr_t)sin->sin_zero, sizeof(sin->sin_zero));
3221 laddr = inp->inp_laddr;
0a7de745 3222 if (inp->inp_laddr.s_addr == INADDR_ANY) {
1c79356b 3223 inp->inp_laddr = ip->ip_dst;
0a7de745 3224 }
f427ee49 3225 if (in_pcbconnect(inp, (struct sockaddr *)sin, kernel_proc,
39236c6e 3226 IFSCOPE_NONE, NULL)) {
1c79356b
A
3227 inp->inp_laddr = laddr;
3228 FREE(sin, M_SONAME);
cb323159 3229 TCP_LOG_DROP_PCB(TCP_LOG_HDR, th, tp, false, " LISTEN in_pcbconnect failed");
1c79356b
A
3230 goto drop;
3231 }
3232 FREE(sin, M_SONAME);
1c79356b 3233 }
8ad349bb 3234
3e170ce0
A
3235 tcp_dooptions(tp, optp, optlen, th, &to);
3236 tcp_finalize_options(tp, &to, ifscope);
3237
0a7de745 3238 if (tfo_enabled(tp) && tcp_tfo_syn(tp, &to)) {
3e170ce0 3239 isconnected = TRUE;
0a7de745 3240 }
8ad349bb 3241
0a7de745 3242 if (iss) {
1c79356b 3243 tp->iss = iss;
0a7de745 3244 } else {
9bccf70c 3245 tp->iss = tcp_new_isn(tp);
0a7de745 3246 }
1c79356b
A
3247 tp->irs = th->th_seq;
3248 tcp_sendseqinit(tp);
3249 tcp_rcvseqinit(tp);
9bccf70c 3250 tp->snd_recover = tp->snd_una;
1c79356b
A
3251 /*
3252 * Initialization of the tcpcb for transaction;
3253 * set SND.WND = SEG.WND,
3254 * initialize CCsend and CCrecv.
3255 */
0a7de745 3256 tp->snd_wnd = tiwin; /* initial send-window */
d9a64523 3257 tp->max_sndwnd = tp->snd_wnd;
1c79356b 3258 tp->t_flags |= TF_ACKNOW;
2d21ac55 3259 tp->t_unacksegs = 0;
6d2010ae 3260 DTRACE_TCP4(state__change, void, NULL, struct inpcb *, inp,
0a7de745 3261 struct tcpcb *, tp, int32_t, TCPS_SYN_RECEIVED);
1c79356b 3262 tp->t_state = TCPS_SYN_RECEIVED;
39037602 3263 tp->t_timer[TCPT_KEEP] = OFFSET_FROM_START(tp,
0a7de745 3264 TCP_CONN_KEEPINIT(tp));
cb323159 3265 tp->t_connect_time = tcp_now;
0a7de745 3266 dropsocket = 0; /* committed to socket */
6d2010ae 3267
0a7de745 3268 if (inp->inp_flowhash == 0) {
316670eb 3269 inp->inp_flowhash = inp_calc_flowhash(inp);
0a7de745 3270 }
39236c6e
A
3271 /* update flowinfo - RFC 6437 */
3272 if (inp->inp_flow == 0 &&
3273 inp->in6p_flags & IN6P_AUTOFLOWLABEL) {
3274 inp->inp_flow &= ~IPV6_FLOWLABEL_MASK;
3275 inp->inp_flow |=
a991bd8d 3276 (htonl(ip6_randomflowlabel()) & IPV6_FLOWLABEL_MASK);
39236c6e 3277 }
316670eb 3278
6d2010ae
A
3279 /* reset the incomp processing flag */
3280 so->so_flags &= ~(SOF_INCOMP_INPROGRESS);
1c79356b 3281 tcpstat.tcps_accepts++;
2d21ac55
A
3282 if ((thflags & (TH_ECE | TH_CWR)) == (TH_ECE | TH_CWR)) {
3283 /* ECN-setup SYN */
3284 tp->ecn_flags |= (TE_SETUPRECEIVED | TE_SENDIPECT);
3285 }
316670eb 3286
cb323159
A
3287 /*
3288 * The address and connection state are finalized
3289 */
3290 TCP_LOG_CONNECT(tp, false, 0);
3291
f427ee49
A
3292 tcp_add_fsw_flow(tp, ifp);
3293
1c79356b 3294 goto trimthenstep6;
0a7de745 3295 }
1c79356b
A
3296
3297 /*
3e170ce0
A
3298 * If the state is SYN_RECEIVED and the seg contains an ACK,
3299 * but not for our SYN/ACK, send a RST.
1c79356b
A
3300 */
3301 case TCPS_SYN_RECEIVED:
3302 if ((thflags & TH_ACK) &&
3303 (SEQ_LEQ(th->th_ack, tp->snd_una) ||
0a7de745 3304 SEQ_GT(th->th_ack, tp->snd_max))) {
0a7de745 3305 IF_TCP_STATINC(ifp, ooopacket);
cb323159 3306 TCP_LOG_DROP_PCB(TCP_LOG_HDR, th, tp, false, "SYN_RECEIVED bad ACK");
0a7de745 3307 goto dropwithreset;
9bccf70c 3308 }
39236c6e
A
3309
3310 /*
3311 * In SYN_RECEIVED state, if we recv some SYNS with
3312 * window scale and others without, window scaling should
3313 * be disabled. Otherwise the window advertised will be
3314 * lower if we assume scaling and the other end does not.
3315 */
3316 if ((thflags & TH_SYN) &&
3e170ce0 3317 (tp->irs == th->th_seq) &&
0a7de745 3318 !(to.to_flags & TOF_SCALE)) {
39236c6e 3319 tp->t_flags &= ~TF_RCVD_SCALE;
0a7de745 3320 }
1c79356b
A
3321 break;
3322
3323 /*
3324 * If the state is SYN_SENT:
3325 * if seg contains an ACK, but not for our SYN, drop the input.
3326 * if seg contains a RST, then drop the connection.
3327 * if seg does not contain SYN, then drop it.
3328 * Otherwise this is an acceptable SYN segment
3329 * initialize tp->rcv_nxt and tp->irs
3330 * if seg contains ack then advance tp->snd_una
3331 * if SYN has been acked change to ESTABLISHED else SYN_RCVD state
3332 * arrange for segment to be acked (eventually)
3333 * continue processing rest of data/controls, beginning with URG
3334 */
3335 case TCPS_SYN_SENT:
1c79356b
A
3336 if ((thflags & TH_ACK) &&
3337 (SEQ_LEQ(th->th_ack, tp->iss) ||
0a7de745 3338 SEQ_GT(th->th_ack, tp->snd_max))) {
39236c6e 3339 IF_TCP_STATINC(ifp, ooopacket);
cb323159 3340 TCP_LOG_DROP_PCB(TCP_LOG_HDR, th, tp, false, "SYN_SENT bad ACK");
8ad349bb 3341 goto dropwithreset;
1c79356b
A
3342 }
3343 if (thflags & TH_RST) {
2d21ac55 3344 if ((thflags & TH_ACK) != 0) {
cb323159
A
3345 if (tfo_enabled(tp) &&
3346 !(tp->t_flagsext & TF_FASTOPEN_FORCE_ENABLE)) {
5ba3f43e 3347 tcp_heuristic_tfo_rst(tp);
0a7de745 3348 }
5ba3f43e
A
3349 if ((tp->ecn_flags & (TE_SETUPSENT | TE_RCVD_SYN_RST)) == TE_SETUPSENT) {
3350 /*
3351 * On local connections, send
3352 * non-ECN syn one time before
3353 * dropping the connection
3354 */
3355 if (tp->t_flags & TF_LOCAL) {
3356 tp->ecn_flags |= TE_RCVD_SYN_RST;
3357 goto drop;
3358 } else {
3359 tcp_heuristic_ecn_synrst(tp);
3360 }
fe8ab488 3361 }
39037602 3362 soevent(so,
316670eb
A
3363 (SO_FILT_HINT_LOCKED |
3364 SO_FILT_HINT_CONNRESET));
1c79356b 3365 tp = tcp_drop(tp, ECONNREFUSED);
2d21ac55 3366 }
cb323159 3367 TCP_LOG_DROP_PCB(TCP_LOG_HDR, th, tp, false, "SYN_SENT got RST");
1c79356b
A
3368 goto drop;
3369 }
0a7de745 3370 if ((thflags & TH_SYN) == 0) {
cb323159 3371 TCP_LOG_DROP_PCB(TCP_LOG_HDR, th, tp, false, "SYN_SENT no SYN");
1c79356b 3372 goto drop;
0a7de745
A
3373 }
3374 tp->snd_wnd = th->th_win; /* initial send window */
d9a64523 3375 tp->max_sndwnd = tp->snd_wnd;
1c79356b
A
3376
3377 tp->irs = th->th_seq;
3378 tcp_rcvseqinit(tp);
3379 if (thflags & TH_ACK) {
1c79356b 3380 tcpstat.tcps_connects++;
39037602 3381
2d21ac55
A
3382 if ((thflags & (TH_ECE | TH_CWR)) == (TH_ECE)) {
3383 /* ECN-setup SYN-ACK */
3384 tp->ecn_flags |= TE_SETUPRECEIVED;
4bd07ac2 3385 if (TCP_ECN_ENABLED(tp)) {
39037602 3386 tcp_heuristic_ecn_success(tp);
3e170ce0 3387 tcpstat.tcps_ecn_client_success++;
4bd07ac2 3388 }
3e170ce0
A
3389 } else {
3390 if (tp->ecn_flags & TE_SETUPSENT &&
4bd07ac2 3391 tp->t_rxtshift == 0) {
39037602 3392 tcp_heuristic_ecn_success(tp);
3e170ce0 3393 tcpstat.tcps_ecn_not_supported++;
4bd07ac2
A
3394 }
3395 if (tp->ecn_flags & TE_SETUPSENT &&
0a7de745 3396 tp->t_rxtshift > 0) {
39037602 3397 tcp_heuristic_ecn_loss(tp);
0a7de745 3398 }
4bd07ac2 3399
2d21ac55
A
3400 /* non-ECN-setup SYN-ACK */
3401 tp->ecn_flags &= ~TE_SENDIPECT;
3402 }
39037602 3403
1c79356b 3404 /* Do window scaling on this connection? */
3e170ce0 3405 if (TCP_WINDOW_SCALE_ENABLED(tp)) {
1c79356b
A
3406 tp->snd_scale = tp->requested_s_scale;
3407 tp->rcv_scale = tp->request_r_scale;
3408 }
3e170ce0 3409
316670eb 3410 tp->rcv_adv += min(tp->rcv_wnd, TCP_MAXWIN << tp->rcv_scale);
0a7de745
A
3411 tp->snd_una++; /* SYN is acked */
3412 if (SEQ_LT(tp->snd_nxt, tp->snd_una)) {
3e170ce0 3413 tp->snd_nxt = tp->snd_una;
0a7de745 3414 }
3e170ce0
A
3415
3416 /*
3417 * We have sent more in the SYN than what is being
3418 * acked. (e.g., TFO)
3419 * We should restart the sending from what the receiver
3420 * has acknowledged immediately.
3421 */
5ba3f43e
A
3422 if (SEQ_GT(tp->snd_nxt, th->th_ack)) {
3423 /*
3424 * rdar://problem/33214601
3425 * There is a middlebox that acks all but one
3426 * byte and still drops the data.
3427 */
cb323159
A
3428 if (!(tp->t_flagsext & TF_FASTOPEN_FORCE_ENABLE) &&
3429 (tp->t_tfo_stats & TFO_S_SYN_DATA_SENT) &&
5ba3f43e
A
3430 tp->snd_max == th->th_ack + 1 &&
3431 tp->snd_max > tp->snd_una + 1) {
3432 tcp_heuristic_tfo_middlebox(tp);
3433
3434 so->so_error = ENODATA;
cb323159
A
3435 soevent(so,
3436 (SO_FILT_HINT_LOCKED | SO_FILT_HINT_MP_SUB_ERROR));
5ba3f43e
A
3437
3438 tp->t_tfo_stats |= TFO_S_ONE_BYTE_PROXY;
3439 }
3440
490019cf 3441 tp->snd_max = tp->snd_nxt = th->th_ack;
5ba3f43e 3442 }
3e170ce0 3443
1c79356b
A
3444 /*
3445 * If there's data, delay ACK; if there's also a FIN
3446 * ACKNOW will be turned on later.
3447 */
f427ee49 3448 TCP_INC_VAR(tp->t_unacksegs, segment_count);
0a7de745 3449 if (DELAY_ACK(tp, th) && tlen != 0) {
6d2010ae
A
3450 if ((tp->t_flags & TF_DELACK) == 0) {
3451 tp->t_flags |= TF_DELACK;
3452 tp->t_timer[TCPT_DELACK] = OFFSET_FROM_START(tp, tcp_delack);
3453 }
0a7de745 3454 } else {
1c79356b 3455 tp->t_flags |= TF_ACKNOW;
91447636 3456 }
1c79356b
A
3457 /*
3458 * Received <SYN,ACK> in SYN_SENT[*] state.
3459 * Transitions:
3460 * SYN_SENT --> ESTABLISHED
3461 * SYN_SENT* --> FIN_WAIT_1
3462 */
6d2010ae 3463 tp->t_starttime = tcp_now;
316670eb 3464 tcp_sbrcv_tstmp_check(tp);
1c79356b 3465 if (tp->t_flags & TF_NEEDFIN) {
3e170ce0
A
3466 DTRACE_TCP4(state__change, void, NULL,
3467 struct inpcb *, inp,
3468 struct tcpcb *, tp, int32_t,
3469 TCPS_FIN_WAIT_1);
1c79356b
A
3470 tp->t_state = TCPS_FIN_WAIT_1;
3471 tp->t_flags &= ~TF_NEEDFIN;
3472 thflags &= ~TH_SYN;
cb323159
A
3473
3474 TCP_LOG_CONNECTION_SUMMARY(tp);
1c79356b 3475 } else {
3e170ce0
A
3476 DTRACE_TCP4(state__change, void, NULL,
3477 struct inpcb *, inp, struct tcpcb *,
3478 tp, int32_t, TCPS_ESTABLISHED);
1c79356b 3479 tp->t_state = TCPS_ESTABLISHED;
3e170ce0
A
3480 tp->t_timer[TCPT_KEEP] =
3481 OFFSET_FROM_START(tp,
3482 TCP_CONN_KEEPIDLE(tp));
0a7de745 3483 if (nstat_collect) {
3e170ce0 3484 nstat_route_connect_success(
0a7de745
A
3485 inp->inp_route.ro_rt);
3486 }
39037602
A
3487 /*
3488 * The SYN is acknowledged but una is not
3489 * updated yet. So pass the value of
3490 * ack to compute sndbytes correctly
3491 */
3492 inp_count_sndbytes(inp, th->th_ack);
1c79356b 3493 }
f427ee49 3494 tp->t_forced_acks = TCP_FORCED_ACKS_COUNT;
39236c6e
A
3495#if MPTCP
3496 /*
3497 * Do not send the connect notification for additional
3498 * subflows until ACK for 3-way handshake arrives.
3499 */
3500 if ((!(tp->t_mpflags & TMPF_MPTCP_TRUE)) &&
3501 (tp->t_mpflags & TMPF_SENT_JOIN)) {
3502 isconnected = FALSE;
3503 } else
3504#endif /* MPTCP */
0a7de745 3505 isconnected = TRUE;
3e170ce0 3506
813fb2f6
A
3507 if ((tp->t_tfo_flags & (TFO_F_COOKIE_REQ | TFO_F_COOKIE_SENT)) ||
3508 (tp->t_tfo_stats & TFO_S_SYN_DATA_SENT)) {
3e170ce0
A
3509 tcp_tfo_synack(tp, &to);
3510
3511 if ((tp->t_tfo_stats & TFO_S_SYN_DATA_SENT) &&
3512 SEQ_LT(tp->snd_una, th->th_ack)) {
3513 tp->t_tfo_stats |= TFO_S_SYN_DATA_ACKED;
3514 tcpstat.tcps_tfo_syn_data_acked++;
490019cf 3515#if MPTCP
0a7de745 3516 if (so->so_flags & SOF_MP_SUBFLOW) {
490019cf 3517 so->so_flags1 |= SOF1_TFO_REWIND;
0a7de745 3518 }
490019cf 3519#endif
5ba3f43e 3520 tcp_tfo_rcv_probe(tp, tlen);
3e170ce0
A
3521 }
3522 }
1c79356b 3523 } else {
6d2010ae
A
3524 /*
3525 * Received initial SYN in SYN-SENT[*] state => simul-
f427ee49
A
3526 * taneous open.
3527 * Do 3-way handshake:
6d2010ae
A
3528 * SYN-SENT -> SYN-RECEIVED
3529 * SYN-SENT* -> SYN-RECEIVED*
3530 */
1c79356b
A
3531 tp->t_flags |= TF_ACKNOW;
3532 tp->t_timer[TCPT_REXMT] = 0;
6d2010ae 3533 DTRACE_TCP4(state__change, void, NULL, struct inpcb *, inp,
0a7de745 3534 struct tcpcb *, tp, int32_t, TCPS_SYN_RECEIVED);
8ad349bb
A
3535 tp->t_state = TCPS_SYN_RECEIVED;
3536
3e170ce0
A
3537 /*
3538 * During simultaneous open, TFO should not be used.
3539 * So, we disable it here, to prevent that data gets
3540 * sent on the SYN/ACK.
3541 */
3542 tcp_disable_tfo(tp);
1c79356b
A
3543 }
3544
3545trimthenstep6:
3546 /*
3547 * Advance th->th_seq to correspond to first data byte.
3548 * If data, trim to stay within window,
3549 * dropping FIN if necessary.
3550 */
3551 th->th_seq++;
9bccf70c
A
3552 if (tlen > tp->rcv_wnd) {
3553 todrop = tlen - tp->rcv_wnd;
1c79356b 3554 m_adj(m, -todrop);
9bccf70c 3555 tlen = tp->rcv_wnd;
1c79356b
A
3556 thflags &= ~TH_FIN;
3557 tcpstat.tcps_rcvpackafterwin++;
3558 tcpstat.tcps_rcvbyteafterwin += todrop;
3559 }
3560 tp->snd_wl1 = th->th_seq - 1;
3561 tp->rcv_up = th->th_seq;
3562 /*
3563 * Client side of transaction: already sent SYN and data.
3564 * If the remote host used T/TCP to validate the SYN,
3565 * our data will be ACK'd; if so, enter normal data segment
3566 * processing in the middle of step 5, ack processing.
3567 * Otherwise, goto step 6.
3568 */
0a7de745 3569 if (thflags & TH_ACK) {
1c79356b 3570 goto process_ACK;
0a7de745 3571 }
1c79356b
A
3572 goto step6;
3573 /*
3574 * If the state is LAST_ACK or CLOSING or TIME_WAIT:
8ad349bb 3575 * do normal processing.
1c79356b 3576 *
8ad349bb 3577 * NB: Leftover from RFC1644 T/TCP. Cases to be reused later.
1c79356b
A
3578 */
3579 case TCPS_LAST_ACK:
3580 case TCPS_CLOSING:
3581 case TCPS_TIME_WAIT:
0a7de745 3582 break; /* continue normal processing */
55e303ae
A
3583
3584 /* Received a SYN while connection is already established.
3585 * This is a "half open connection and other anomalies" described
3586 * in RFC793 page 34, send an ACK so the remote reset the connection
d9a64523
A
3587 * or recovers by adjusting its sequence numbering. Sending an ACK is
3588 * in accordance with RFC 5961 Section 4.2
55e303ae
A
3589 */
3590 case TCPS_ESTABLISHED:
f427ee49 3591 if (thflags & TH_SYN && tlen <= 0) {
d9a64523 3592 /* Drop the packet silently if we have reached the limit */
f427ee49 3593 if (tcp_is_ack_ratelimited(tp)) {
cb323159 3594 TCP_LOG_DROP_PCB(TCP_LOG_HDR, th, tp, false, "ESTABLISHED rfc5961 rate limited");
d9a64523
A
3595 goto drop;
3596 } else {
3597 /* Send challenge ACK */
3598 tcpstat.tcps_synchallenge++;
cb323159 3599 TCP_LOG_DROP_PCB(TCP_LOG_HDR, th, tp, false, "ESTABLISHED rfc5961 challenge ACK");
d9a64523
A
3600 goto dropafterack;
3601 }
3602 }
55e303ae 3603 break;
1c79356b
A
3604 }
3605
3606 /*
3607 * States other than LISTEN or SYN_SENT.
3608 * First check the RST flag and sequence number since reset segments
3609 * are exempt from the timestamp and connection count tests. This
3610 * fixes a bug introduced by the Stevens, vol. 2, p. 960 bugfix
3611 * below which allowed reset segments in half the sequence space
3612 * to fall though and be processed (which gives forged reset
3613 * segments with a random sequence number a 50 percent chance of
3614 * killing a connection).
3615 * Then check timestamp, if present.
3616 * Then check the connection count, if present.
3617 * Then check that at least some bytes of segment are within
3618 * receive window. If segment begins before rcv_nxt,
3619 * drop leading data (and SYN); if nothing left, just ack.
3620 *
3621 *
3622 * If the RST bit is set, check the sequence number to see
3623 * if this is a valid reset segment.
3624 * RFC 793 page 37:
3625 * In all states except SYN-SENT, all reset (RST) segments
3626 * are validated by checking their SEQ-fields. A reset is
3627 * valid if its sequence number is in the window.
3628 * Note: this does not take into account delayed ACKs, so
3629 * we should test against last_ack_sent instead of rcv_nxt.
9bccf70c
A
3630 * The sequence number in the reset segment is normally an
3631 * echo of our outgoing acknowlegement numbers, but some hosts
3632 * send a reset with the sequence number at the rightmost edge
3633 * of our receive window, and we have to handle this case.
8ad349bb
A
3634 * Note 2: Paul Watson's paper "Slipping in the Window" has shown
3635 * that brute force RST attacks are possible. To combat this,
3636 * we use a much stricter check while in the ESTABLISHED state,
3637 * only accepting RSTs where the sequence number is equal to
3638 * last_ack_sent. In all other states (the states in which a
3639 * RST is more likely), the more permissive check is used.
d9a64523
A
3640 * RFC 5961 Section 3.2: if the RST bit is set, sequence # is
3641 * within the receive window and last_ack_sent == seq,
3642 * then reset the connection. Otherwise if the seq doesn't
3643 * match last_ack_sent, TCP must send challenge ACK. Perform
3644 * rate limitation when sending the challenge ACK.
1c79356b
A
3645 * If we have multiple segments in flight, the intial reset
3646 * segment sequence numbers will be to the left of last_ack_sent,
3647 * but they will eventually catch up.
3648 * In any case, it never made sense to trim reset segments to
3649 * fit the receive window since RFC 1122 says:
3650 * 4.2.2.12 RST Segment: RFC-793 Section 3.4
3651 *
3652 * A TCP SHOULD allow a received RST segment to include data.
3653 *
3654 * DISCUSSION
3655 * It has been suggested that a RST segment could contain
3656 * ASCII text that encoded and explained the cause of the
3657 * RST. No standard has yet been established for such
3658 * data.
3659 *
3660 * If the reset segment passes the sequence number test examine
3661 * the state:
3662 * SYN_RECEIVED STATE:
3663 * If passive open, return to LISTEN state.
3664 * If active open, inform user that connection was refused.
8ad349bb 3665 * ESTABLISHED, FIN_WAIT_1, FIN_WAIT_2, CLOSE_WAIT STATES:
1c79356b 3666 * Inform user that connection was reset, and close tcb.
9bccf70c 3667 * CLOSING, LAST_ACK STATES:
1c79356b 3668 * Close the tcb.
9bccf70c 3669 * TIME_WAIT STATE:
1c79356b
A
3670 * Drop the segment - see Stevens, vol. 2, p. 964 and
3671 * RFC 1337.
0c530ab8 3672 *
2d21ac55
A
3673 * Radar 4803931: Allows for the case where we ACKed the FIN but
3674 * there is already a RST in flight from the peer.
3675 * In that case, accept the RST for non-established
3676 * state if it's one off from last_ack_sent.
0a7de745 3677 *
1c79356b
A
3678 */
3679 if (thflags & TH_RST) {
8ad349bb
A
3680 if ((SEQ_GEQ(th->th_seq, tp->last_ack_sent) &&
3681 SEQ_LT(th->th_seq, tp->last_ack_sent + tp->rcv_wnd)) ||
39037602
A
3682 (tp->rcv_wnd == 0 &&
3683 ((tp->last_ack_sent == th->th_seq) ||
0a7de745 3684 ((tp->last_ack_sent - 1) == th->th_seq)))) {
f427ee49 3685 if (tp->last_ack_sent == th->th_seq) {
d9a64523 3686 switch (tp->t_state) {
d9a64523
A
3687 case TCPS_SYN_RECEIVED:
3688 IF_TCP_STATINC(ifp, rstinsynrcv);
3689 so->so_error = ECONNREFUSED;
3690 goto close;
1c79356b 3691
d9a64523 3692 case TCPS_ESTABLISHED:
d9a64523
A
3693 if (TCP_ECN_ENABLED(tp) &&
3694 tp->snd_una == tp->iss + 1 &&
3695 SEQ_GT(tp->snd_max, tp->snd_una)) {
3696 /*
3697 * If the first data packet on an
3698 * ECN connection, receives a RST
3699 * increment the heuristic
3700 */
3701 tcp_heuristic_ecn_droprst(tp);
3702 }
f427ee49 3703 OS_FALLTHROUGH;
d9a64523
A
3704 case TCPS_FIN_WAIT_1:
3705 case TCPS_CLOSE_WAIT:
d9a64523
A
3706 case TCPS_FIN_WAIT_2:
3707 so->so_error = ECONNRESET;
0a7de745 3708close:
d9a64523
A
3709 soevent(so,
3710 (SO_FILT_HINT_LOCKED |
3711 SO_FILT_HINT_CONNRESET));
3712
3713 tcpstat.tcps_drops++;
3714 tp = tcp_close(tp);
3715 break;
1c79356b 3716
d9a64523
A
3717 case TCPS_CLOSING:
3718 case TCPS_LAST_ACK:
3719 tp = tcp_close(tp);
3720 break;
1c79356b 3721
d9a64523
A
3722 case TCPS_TIME_WAIT:
3723 break;
3724 }
f427ee49 3725 } else {
d9a64523
A
3726 tcpstat.tcps_badrst++;
3727 /* Drop if we have reached the ACK limit */
3728 if (tcp_is_ack_ratelimited(tp)) {
cb323159 3729 TCP_LOG_DROP_PCB(TCP_LOG_HDR, th, tp, false, "ESTABLISHED rfc5961 rate limited");
d9a64523
A
3730 goto drop;
3731 } else {
3732 /* Send challenge ACK */
3733 tcpstat.tcps_rstchallenge++;
cb323159 3734 TCP_LOG_DROP_PCB(TCP_LOG_HDR, th, tp, false, "ESTABLISHED rfc5961 challenge ACK");
d9a64523
A
3735 goto dropafterack;
3736 }
1c79356b
A
3737 }
3738 }
3739 goto drop;
3740 }
3741
3742 /*
3743 * RFC 1323 PAWS: If we have a timestamp reply on this segment
3744 * and it's less than ts_recent, drop it.
3745 */
8ad349bb 3746 if ((to.to_flags & TOF_TS) != 0 && tp->ts_recent &&
1c79356b 3747 TSTMP_LT(to.to_tsval, tp->ts_recent)) {
1c79356b
A
3748 /* Check to see if ts_recent is over 24 days old. */
3749 if ((int)(tcp_now - tp->ts_recent_age) > TCP_PAWS_IDLE) {
3750 /*
3751 * Invalidate ts_recent. If this segment updates
3752 * ts_recent, the age will be reset later and ts_recent
3753 * will get a valid value. If it does not, setting
3754 * ts_recent to zero will at least satisfy the
3755 * requirement that zero be placed in the timestamp
3756 * echo reply when ts_recent isn't valid. The
3757 * age isn't reset until we get a valid ts_recent
3758 * because we don't want out-of-order segments to be
3759 * dropped when ts_recent is old.
3760 */
3761 tp->ts_recent = 0;
3762 } else {
3763 tcpstat.tcps_rcvduppack++;
9bccf70c 3764 tcpstat.tcps_rcvdupbyte += tlen;
4bd07ac2 3765 tp->t_pawsdrop++;
1c79356b 3766 tcpstat.tcps_pawsdrop++;
4bd07ac2
A
3767
3768 /*
3769 * PAWS-drop when ECN is being used? That indicates
3770 * that ECT-marked packets take a different path, with
3771 * different congestion-characteristics.
3772 *
3773 * Only fallback when we did send less than 2GB as PAWS
3774 * really has no reason to kick in earlier.
3775 */
3776 if (TCP_ECN_ENABLED(tp) &&
3777 inp->inp_stat->rxbytes < 2147483648) {
3778 INP_INC_IFNET_STAT(inp, ecn_fallback_reorder);
3779 tcpstat.tcps_ecn_fallback_reorder++;
3780 tcp_heuristic_ecn_aggressive(tp);
3781 }
3782
6d2010ae 3783 if (nstat_collect) {
39037602 3784 nstat_route_rx(tp->t_inpcb->inp_route.ro_rt,
0a7de745 3785 1, tlen, NSTAT_RX_FLAG_DUPLICATE);
fe8ab488
A
3786 INP_ADD_STAT(inp, cell, wifi, wired,
3787 rxpackets, 1);
3788 INP_ADD_STAT(inp, cell, wifi, wired,
3789 rxbytes, tlen);
6d2010ae 3790 tp->t_stat.rxduplicatebytes += tlen;
5ba3f43e 3791 inp_set_activity_bitmap(inp);
6d2010ae 3792 }
0a7de745 3793 if (tlen > 0) {
8ad349bb 3794 goto dropafterack;
0a7de745 3795 }
8ad349bb 3796 goto drop;
1c79356b
A
3797 }
3798 }
3799
1c79356b
A
3800 /*
3801 * In the SYN-RECEIVED state, validate that the packet belongs to
3802 * this connection before trimming the data to fit the receive
3803 * window. Check the sequence number versus IRS since we know
3804 * the sequence numbers haven't wrapped. This is a partial fix
3805 * for the "LAND" DoS attack.
3806 */
9bccf70c 3807 if (tp->t_state == TCPS_SYN_RECEIVED && SEQ_LT(th->th_seq, tp->irs)) {
39236c6e 3808 IF_TCP_STATINC(ifp, dospacket);
cb323159 3809 TCP_LOG_DROP_PCB(TCP_LOG_HDR, th, tp, false, "SYN_RECEIVED bad SEQ");
1c79356b 3810 goto dropwithreset;
9bccf70c 3811 }
1c79356b 3812
d9a64523
A
3813 /*
3814 * Check if there is old data at the beginning of the window
3815 * i.e. the sequence number is before rcv_nxt
3816 */
1c79356b
A
3817 todrop = tp->rcv_nxt - th->th_seq;
3818 if (todrop > 0) {
d9a64523
A
3819 boolean_t is_syn_set = FALSE;
3820
1c79356b 3821 if (thflags & TH_SYN) {
d9a64523 3822 is_syn_set = TRUE;
1c79356b
A
3823 thflags &= ~TH_SYN;
3824 th->th_seq++;
0a7de745 3825 if (th->th_urp > 1) {
1c79356b 3826 th->th_urp--;
0a7de745 3827 } else {
1c79356b 3828 thflags &= ~TH_URG;
0a7de745 3829 }
1c79356b
A
3830 todrop--;
3831 }
3832 /*
3833 * Following if statement from Stevens, vol. 2, p. 960.
d9a64523
A
3834 * The amount of duplicate data is greater than or equal
3835 * to the size of the segment - entire segment is duplicate
1c79356b 3836 */
9bccf70c
A
3837 if (todrop > tlen
3838 || (todrop == tlen && (thflags & TH_FIN) == 0)) {
1c79356b
A
3839 /*
3840 * Any valid FIN must be to the left of the window.
3841 * At this point the FIN must be a duplicate or out
3842 * of sequence; drop it.
3843 */
3844 thflags &= ~TH_FIN;
3845
3846 /*
3847 * Send an ACK to resynchronize and drop any data.
3848 * But keep on processing for RST or ACK.
d9a64523
A
3849 *
3850 * If the SYN bit was originally set, then only send
3851 * an ACK if we are not rate-limiting this connection.
1c79356b 3852 */
f427ee49 3853 if (is_syn_set) {
d9a64523
A
3854 if (!tcp_is_ack_ratelimited(tp)) {
3855 tcpstat.tcps_synchallenge++;
3856 tp->t_flags |= TF_ACKNOW;
3857 }
3858 } else {
3859 tp->t_flags |= TF_ACKNOW;
3860 }
3861
316670eb
A
3862 if (todrop == 1) {
3863 /* This could be a keepalive */
3864 soevent(so, SO_FILT_HINT_LOCKED |
0a7de745 3865 SO_FILT_HINT_KEEPALIVE);
316670eb 3866 }
9bccf70c 3867 todrop = tlen;
1c79356b 3868 tcpstat.tcps_rcvduppack++;
39037602 3869 tcpstat.tcps_rcvdupbyte += todrop;
1c79356b
A
3870 } else {
3871 tcpstat.tcps_rcvpartduppack++;
3872 tcpstat.tcps_rcvpartdupbyte += todrop;
3873 }
3e170ce0 3874
f427ee49 3875 if (todrop > 1) {
3e170ce0
A
3876 /*
3877 * Note the duplicate data sequence space so that
3878 * it can be reported in DSACK option.
3879 */
3880 tp->t_dsack_lseq = th->th_seq;
3881 tp->t_dsack_rseq = th->th_seq + todrop;
3882 tp->t_flags |= TF_ACKNOW;
3883 }
6d2010ae 3884 if (nstat_collect) {
39037602 3885 nstat_route_rx(tp->t_inpcb->inp_route.ro_rt, 1,
0a7de745 3886 todrop, NSTAT_RX_FLAG_DUPLICATE);
fe8ab488
A
3887 INP_ADD_STAT(inp, cell, wifi, wired, rxpackets, 1);
3888 INP_ADD_STAT(inp, cell, wifi, wired, rxbytes, todrop);
6d2010ae 3889 tp->t_stat.rxduplicatebytes += todrop;
5ba3f43e 3890 inp_set_activity_bitmap(inp);
6d2010ae 3891 }
0a7de745 3892 drop_hdrlen += todrop; /* drop from the top afterwards */
1c79356b 3893 th->th_seq += todrop;
9bccf70c 3894 tlen -= todrop;
0a7de745 3895 if (th->th_urp > todrop) {
1c79356b 3896 th->th_urp -= todrop;
0a7de745 3897 } else {
1c79356b
A
3898 thflags &= ~TH_URG;
3899 th->th_urp = 0;
3900 }
3901 }
3902
3903 /*
3e170ce0
A
3904 * If new data are received on a connection after the user
3905 * processes are gone, then RST the other end.
3906 * Send also a RST when we received a data segment after we've
3907 * sent our FIN when the socket is defunct.
3908 * Note that an MPTCP subflow socket would have SS_NOFDREF set
5ba3f43e
A
3909 * by default. So, if it's an MPTCP-subflow we rather check the
3910 * MPTCP-level's socket state for SS_NOFDREF.
1c79356b 3911 */
5ba3f43e
A
3912 if (tlen) {
3913 boolean_t close_it = FALSE;
3914
3915 if (!(so->so_flags & SOF_MP_SUBFLOW) && (so->so_state & SS_NOFDREF) &&
0a7de745 3916 tp->t_state > TCPS_CLOSE_WAIT) {
cb323159 3917 TCP_LOG_DROP_PCB(TCP_LOG_HDR, th, tp, false, "SS_NOFDREF");
5ba3f43e 3918 close_it = TRUE;
0a7de745 3919 }
5ba3f43e
A
3920
3921 if ((so->so_flags & SOF_MP_SUBFLOW) && (mptetoso(tptomptp(tp)->mpt_mpte)->so_state & SS_NOFDREF) &&
0a7de745 3922 tp->t_state > TCPS_CLOSE_WAIT) {
cb323159 3923 TCP_LOG_DROP_PCB(TCP_LOG_HDR, th, tp, false, "SOF_MP_SUBFLOW SS_NOFDREF");
5ba3f43e 3924 close_it = TRUE;
0a7de745 3925 }
5ba3f43e 3926
0a7de745 3927 if ((so->so_flags & SOF_DEFUNCT) && tp->t_state > TCPS_FIN_WAIT_1) {
cb323159 3928 TCP_LOG_DROP_PCB(TCP_LOG_HDR, th, tp, false, "SOF_DEFUNCT");
5ba3f43e 3929 close_it = TRUE;
0a7de745 3930 }
5ba3f43e
A
3931
3932 if (close_it) {
3933 tp = tcp_close(tp);
3934 tcpstat.tcps_rcvafterclose++;
5ba3f43e
A
3935 IF_TCP_STATINC(ifp, cleanup);
3936 goto dropwithreset;
3937 }
1c79356b
A
3938 }
3939
3940 /*
3941 * If segment ends after window, drop trailing data
3942 * (and PUSH and FIN); if nothing left, just ACK.
3943 */
0a7de745 3944 todrop = (th->th_seq + tlen) - (tp->rcv_nxt + tp->rcv_wnd);
1c79356b
A
3945 if (todrop > 0) {
3946 tcpstat.tcps_rcvpackafterwin++;
9bccf70c
A
3947 if (todrop >= tlen) {
3948 tcpstat.tcps_rcvbyteafterwin += tlen;
1c79356b
A
3949 /*
3950 * If a new connection request is received
3951 * while in TIME_WAIT, drop the old connection
3952 * and start over if the sequence numbers
3953 * are above the previous ones.
3954 */
3955 if (thflags & TH_SYN &&
3956 tp->t_state == TCPS_TIME_WAIT &&
3957 SEQ_GT(th->th_seq, tp->rcv_nxt)) {
9bccf70c 3958 iss = tcp_new_isn(tp);
1c79356b 3959 tp = tcp_close(tp);
5ba3f43e 3960 socket_unlock(so, 1);
1c79356b
A
3961 goto findpcb;
3962 }
3963 /*
3964 * If window is closed can only take segments at
3965 * window edge, and have to drop data and PUSH from
3966 * incoming segments. Continue processing, but
3967 * remember to ack. Otherwise, drop segment
3968 * and ack.
3969 */
3970 if (tp->rcv_wnd == 0 && th->th_seq == tp->rcv_nxt) {
3971 tp->t_flags |= TF_ACKNOW;
3972 tcpstat.tcps_rcvwinprobe++;
0a7de745 3973 } else {
1c79356b 3974 goto dropafterack;
0a7de745
A
3975 }
3976 } else {
1c79356b 3977 tcpstat.tcps_rcvbyteafterwin += todrop;
0a7de745 3978 }
1c79356b 3979 m_adj(m, -todrop);
9bccf70c 3980 tlen -= todrop;
0a7de745 3981 thflags &= ~(TH_PUSH | TH_FIN);
1c79356b
A
3982 }
3983
3984 /*
3985 * If last ACK falls within this segment's sequence numbers,
3986 * record its timestamp.
39037602 3987 * NOTE:
8ad349bb
A
3988 * 1) That the test incorporates suggestions from the latest
3989 * proposal of the tcplw@cray.com list (Braden 1993/04/26).
3990 * 2) That updating only on newer timestamps interferes with
3991 * our earlier PAWS tests, so this check should be solely
3992 * predicated on the sequence space of this segment.
39037602
A
3993 * 3) That we modify the segment boundary check to be
3994 * Last.ACK.Sent <= SEG.SEQ + SEG.Len
8ad349bb
A
3995 * instead of RFC1323's
3996 * Last.ACK.Sent < SEG.SEQ + SEG.Len,
3997 * This modified check allows us to overcome RFC1323's
3998 * limitations as described in Stevens TCP/IP Illustrated
3999 * Vol. 2 p.869. In such cases, we can still calculate the
4000 * RTT correctly when RCV.NXT == Last.ACK.Sent.
1c79356b 4001 */
8ad349bb
A
4002 if ((to.to_flags & TOF_TS) != 0 &&
4003 SEQ_LEQ(th->th_seq, tp->last_ack_sent) &&
4004 SEQ_LEQ(tp->last_ack_sent, th->th_seq + tlen +
0a7de745 4005 ((thflags & (TH_SYN | TH_FIN)) != 0))) {
1c79356b
A
4006 tp->ts_recent_age = tcp_now;
4007 tp->ts_recent = to.to_tsval;
4008 }
4009
4010 /*
d9a64523 4011 * Stevens: If a SYN is in the window, then this is an
1c79356b 4012 * error and we send an RST and drop the connection.
d9a64523
A
4013 *
4014 * RFC 5961 Section 4.2
4015 * Send challenge ACK for any SYN in synchronized state
4016 * Perform rate limitation in doing so.
1c79356b
A
4017 */
4018 if (thflags & TH_SYN) {
f427ee49 4019 if (!tcp_syn_data_valid(tp, th, tlen)) {
d9a64523
A
4020 tcpstat.tcps_badsyn++;
4021 /* Drop if we have reached ACK limit */
4022 if (tcp_is_ack_ratelimited(tp)) {
cb323159 4023 TCP_LOG_DROP_PCB(TCP_LOG_HDR, th, tp, false, "rfc5961 bad SYN rate limited");
d9a64523
A
4024 goto drop;
4025 } else {
4026 /* Send challenge ACK */
4027 tcpstat.tcps_synchallenge++;
cb323159 4028 TCP_LOG_DROP_PCB(TCP_LOG_HDR, th, tp, false, "rfc5961 bad SYN challenge ack");
d9a64523
A
4029 goto dropafterack;
4030 }
4031 } else {
f427ee49
A
4032 /*
4033 * Received SYN (/ACK) with data.
4034 * Move sequence number along to process the data.
4035 */
4036 th->th_seq++;
4037 thflags &= ~TH_SYN;
d9a64523 4038 }
1c79356b
A
4039 }
4040
4041 /*
4042 * If the ACK bit is off: if in SYN-RECEIVED state or SENDSYN
4043 * flag is on (half-synchronized state), then queue data for
4044 * later processing; else drop segment and return.
4045 */
4046 if ((thflags & TH_ACK) == 0) {
f427ee49 4047 if (tp->t_state == TCPS_SYN_RECEIVED) {
3e170ce0
A
4048 if ((tfo_enabled(tp))) {
4049 /*
4050 * So, we received a valid segment while in
f427ee49 4051 * SYN-RECEIVED.
3e170ce0
A
4052 * As this cannot be an RST (see that if a bit
4053 * higher), and it does not have the ACK-flag
4054 * set, we want to retransmit the SYN/ACK.
4055 * Thus, we have to reset snd_nxt to snd_una to
4056 * trigger the going back to sending of the
4057 * SYN/ACK. This is more consistent with the
4058 * behavior of tcp_output(), which expects
4059 * to send the segment that is pointed to by
4060 * snd_nxt.
4061 */
4062 tp->snd_nxt = tp->snd_una;
4063
4064 /*
4065 * We need to make absolutely sure that we are
4066 * going to reply upon a duplicate SYN-segment.
4067 */
0a7de745 4068 if (th->th_flags & TH_SYN) {
3e170ce0 4069 needoutput = 1;
0a7de745 4070 }
3e170ce0
A
4071 }
4072
1c79356b 4073 goto step6;
0a7de745 4074 } else if (tp->t_flags & TF_ACKNOW) {
cb323159 4075 TCP_LOG_DROP_PCB(TCP_LOG_HDR, th, tp, false, "bad ACK");
2d21ac55 4076 goto dropafterack;
0a7de745 4077 } else {
cb323159 4078 TCP_LOG_DROP_PCB(TCP_LOG_HDR, th, tp, false, "bad ACK");
1c79356b 4079 goto drop;
0a7de745 4080 }
1c79356b
A
4081 }
4082
4083 /*
4084 * Ack processing.
4085 */
39236c6e 4086
1c79356b 4087 switch (tp->t_state) {
1c79356b
A
4088 /*
4089 * In SYN_RECEIVED state, the ack ACKs our SYN, so enter
4090 * ESTABLISHED state and continue processing.
4091 * The ACK was checked above.
4092 */
4093 case TCPS_SYN_RECEIVED:
4094
4095 tcpstat.tcps_connects++;
1c79356b
A
4096
4097 /* Do window scaling? */
3e170ce0 4098 if (TCP_WINDOW_SCALE_ENABLED(tp)) {
1c79356b
A
4099 tp->snd_scale = tp->requested_s_scale;
4100 tp->rcv_scale = tp->request_r_scale;
6d2010ae 4101 tp->snd_wnd = th->th_win << tp->snd_scale;
d9a64523 4102 tp->max_sndwnd = tp->snd_wnd;
6d2010ae 4103 tiwin = tp->snd_wnd;
1c79356b 4104 }
1c79356b
A
4105 /*
4106 * Make transitions:
4107 * SYN-RECEIVED -> ESTABLISHED
4108 * SYN-RECEIVED* -> FIN-WAIT-1
4109 */
6d2010ae 4110 tp->t_starttime = tcp_now;
316670eb 4111 tcp_sbrcv_tstmp_check(tp);
1c79356b 4112 if (tp->t_flags & TF_NEEDFIN) {
3e170ce0
A
4113 DTRACE_TCP4(state__change, void, NULL,
4114 struct inpcb *, inp,
4115 struct tcpcb *, tp, int32_t, TCPS_FIN_WAIT_1);
1c79356b
A
4116 tp->t_state = TCPS_FIN_WAIT_1;
4117 tp->t_flags &= ~TF_NEEDFIN;
cb323159
A
4118
4119 TCP_LOG_CONNECTION_SUMMARY(tp);
1c79356b 4120 } else {
3e170ce0
A
4121 DTRACE_TCP4(state__change, void, NULL,
4122 struct inpcb *, inp,
4123 struct tcpcb *, tp, int32_t, TCPS_ESTABLISHED);
1c79356b 4124 tp->t_state = TCPS_ESTABLISHED;
39236c6e 4125 tp->t_timer[TCPT_KEEP] = OFFSET_FROM_START(tp,
0a7de745
A
4126 TCP_CONN_KEEPIDLE(tp));
4127 if (nstat_collect) {
3e170ce0 4128 nstat_route_connect_success(
0a7de745
A
4129 tp->t_inpcb->inp_route.ro_rt);
4130 }
f427ee49 4131
39037602
A
4132 /*
4133 * The SYN is acknowledged but una is not updated
4134 * yet. So pass the value of ack to compute
4135 * sndbytes correctly
4136 */
4137 inp_count_sndbytes(inp, th->th_ack);
1c79356b 4138 }
f427ee49 4139 tp->t_forced_acks = TCP_FORCED_ACKS_COUNT;
1c79356b
A
4140 /*
4141 * If segment contains data or ACK, will call tcp_reass()
4142 * later; if not, do so now to pass queued data to user.
4143 */
0a7de745 4144 if (tlen == 0 && (thflags & TH_FIN) == 0) {
cb323159
A
4145 if (isipv6) {
4146 memcpy(&saved_hdr, ip6, sizeof(struct ip6_hdr));
4147 ip6 = (struct ip6_hdr *)&saved_hdr[0];
4148 } else {
4149 memcpy(&saved_hdr, ip, ip->ip_hl << 2);
4150 ip = (struct ip *)&saved_hdr[0];
4151 }
4152 memcpy(&saved_tcphdr, th, sizeof(struct tcphdr));
2d21ac55 4153 (void) tcp_reass(tp, (struct tcphdr *)0, &tlen,
cb323159
A
4154 NULL, ifp, &read_wakeup);
4155 th = &saved_tcphdr;
0a7de745 4156 }
1c79356b 4157 tp->snd_wl1 = th->th_seq - 1;
4a3eedf9 4158
39236c6e
A
4159#if MPTCP
4160 /*
4161 * Do not send the connect notification for additional subflows
4162 * until ACK for 3-way handshake arrives.
4163 */
4164 if ((!(tp->t_mpflags & TMPF_MPTCP_TRUE)) &&
4165 (tp->t_mpflags & TMPF_SENT_JOIN)) {
4166 isconnected = FALSE;
4167 } else
4168#endif /* MPTCP */
0a7de745 4169 isconnected = TRUE;
3e170ce0
A
4170 if ((tp->t_tfo_flags & TFO_F_COOKIE_VALID)) {
4171 /* Done this when receiving the SYN */
4172 isconnected = FALSE;
4173
4174 OSDecrementAtomic(&tcp_tfo_halfcnt);
4175
4176 /* Panic if something has gone terribly wrong. */
4177 VERIFY(tcp_tfo_halfcnt >= 0);
4178
4179 tp->t_tfo_flags &= ~TFO_F_COOKIE_VALID;
4180 }
4181
4182 /*
4183 * In case there is data in the send-queue (e.g., TFO is being
4184 * used, or connectx+data has been done), then if we would
4185 * "FALLTHROUGH", we would handle this ACK as if data has been
4186 * acknowledged. But, we have to prevent this. And this
4187 * can be prevented by increasing snd_una by 1, so that the
4188 * SYN is not considered as data (snd_una++ is actually also
4189 * done in SYN_SENT-state as part of the regular TCP stack).
4190 *
4191 * In case there is data on this ack as well, the data will be
4192 * handled by the label "dodata" right after step6.
4193 */
4194 if (so->so_snd.sb_cc) {
0a7de745
A
4195 tp->snd_una++; /* SYN is acked */
4196 if (SEQ_LT(tp->snd_nxt, tp->snd_una)) {
3e170ce0 4197 tp->snd_nxt = tp->snd_una;
0a7de745 4198 }
3e170ce0
A
4199
4200 /*
4201 * No duplicate-ACK handling is needed. So, we
4202 * directly advance to processing the ACK (aka,
4203 * updating the RTT estimation,...)
4204 *
4205 * But, we first need to handle eventual SACKs,
4206 * because TFO will start sending data with the
4207 * SYN/ACK, so it might be that the client
4208 * includes a SACK with its ACK.
4209 */
4210 if (SACK_ENABLED(tp) &&
f427ee49
A
4211 (to.to_nsacks > 0 || !TAILQ_EMPTY(&tp->snd_holes))) {
4212 tcp_sack_doack(tp, &to, th, &sack_bytes_acked, &sack_bytes_newly_acked);
0a7de745 4213 }
3e170ce0
A
4214
4215 goto process_ACK;
4216 }
4217
f427ee49 4218 OS_FALLTHROUGH;
4a3eedf9 4219
1c79356b
A
4220 /*
4221 * In ESTABLISHED state: drop duplicate ACKs; ACK out of range
4222 * ACKs. If the ack is in the range
4223 * tp->snd_una < th->th_ack <= tp->snd_max
4224 * then advance tp->snd_una to th->th_ack and drop
4225 * data from the retransmission queue. If this ACK reflects
4226 * more up to date window information we update our window information.
4227 */
4228 case TCPS_ESTABLISHED:
4229 case TCPS_FIN_WAIT_1:
4230 case TCPS_FIN_WAIT_2:
4231 case TCPS_CLOSE_WAIT:
4232 case TCPS_CLOSING:
4233 case TCPS_LAST_ACK:
4234 case TCPS_TIME_WAIT:
8ad349bb
A
4235 if (SEQ_GT(th->th_ack, tp->snd_max)) {
4236 tcpstat.tcps_rcvacktoomuch++;
f427ee49 4237 if (tcp_is_ack_ratelimited(tp)) {
cb323159 4238 TCP_LOG_DROP_PCB(TCP_LOG_HDR, th, tp, false, "rfc5961 rcvacktoomuch");
d9a64523
A
4239 goto drop;
4240 } else {
4241 goto dropafterack;
4242 }
4243 }
f427ee49 4244 if (SEQ_LT(th->th_ack, tp->snd_una - tp->max_sndwnd)) {
d9a64523 4245 if (tcp_is_ack_ratelimited(tp)) {
cb323159 4246 TCP_LOG_DROP_PCB(TCP_LOG_HDR, th, tp, false, "rfc5961 bad ACK");
d9a64523
A
4247 goto drop;
4248 } else {
4249 goto dropafterack;
4250 }
8ad349bb 4251 }
3e170ce0
A
4252 if (SACK_ENABLED(tp) && to.to_nsacks > 0) {
4253 recvd_dsack = tcp_sack_process_dsack(tp, &to, th);
4254 /*
4255 * If DSACK is received and this packet has no
4256 * other SACK information, it can be dropped.
4257 * We do not want to treat it as a duplicate ack.
4258 */
4259 if (recvd_dsack &&
4260 SEQ_LEQ(th->th_ack, tp->snd_una) &&
4261 to.to_nsacks == 0) {
4262 tcp_bad_rexmt_check(tp, th, &to);
4263 goto drop;
4264 }
4265 }
4266
39236c6e 4267 if (SACK_ENABLED(tp) &&
0a7de745 4268 (to.to_nsacks > 0 || !TAILQ_EMPTY(&tp->snd_holes))) {
f427ee49 4269 tcp_sack_doack(tp, &to, th, &sack_bytes_acked, &sack_bytes_newly_acked);
0a7de745 4270 }
fe8ab488 4271
39236c6e 4272#if MPTCP
5ba3f43e 4273 if (tp->t_mpuna && SEQ_GEQ(th->th_ack, tp->t_mpuna)) {
39236c6e
A
4274 if (tp->t_mpflags & TMPF_PREESTABLISHED) {
4275 /* MP TCP establishment succeeded */
4276 tp->t_mpuna = 0;
4277 if (tp->t_mpflags & TMPF_JOINED_FLOW) {
4278 if (tp->t_mpflags & TMPF_SENT_JOIN) {
4279 tp->t_mpflags &=
4280 ~TMPF_PREESTABLISHED;
4281 tp->t_mpflags |=
4282 TMPF_MPTCP_TRUE;
3e170ce0 4283
39236c6e
A
4284 tp->t_timer[TCPT_JACK_RXMT] = 0;
4285 tp->t_mprxtshift = 0;
4286 isconnected = TRUE;
4287 } else {
4288 isconnected = FALSE;
4289 }
4290 } else {
4291 isconnected = TRUE;
39236c6e
A
4292 }
4293 }
4294 }
4295#endif /* MPTCP */
3e170ce0
A
4296
4297 tcp_tfo_rcv_ack(tp, th);
4298
39236c6e
A
4299 /*
4300 * If we have outstanding data (other than
4301 * a window probe), this is a completely
39037602
A
4302 * duplicate ack and the ack is the biggest we've seen.
4303 *
4304 * Need to accommodate a change in window on duplicate acks
4305 * to allow operating systems that update window during
4306 * recovery with SACK
4307 */
1c79356b 4308 if (SEQ_LEQ(th->th_ack, tp->snd_una)) {
39037602
A
4309 if (tlen == 0 && (tiwin == tp->snd_wnd ||
4310 (to.to_nsacks > 0 && sack_bytes_acked > 0))) {
f427ee49 4311 uint32_t old_dupacks;
8a3053a0
A
4312 /*
4313 * If both ends send FIN at the same time,
4314 * then the ack will be a duplicate ack
4315 * but we have to process the FIN. Check
4316 * for this condition and process the FIN
4317 * instead of the dupack
39037602 4318 */
8a3053a0 4319 if ((thflags & TH_FIN) &&
0a7de745 4320 !TCPS_HAVERCVDFIN(tp->t_state)) {
8a3053a0 4321 break;
0a7de745 4322 }
39236c6e 4323process_dupack:
f427ee49 4324 old_dupacks = tp->t_dupacks;
39236c6e
A
4325#if MPTCP
4326 /*
4327 * MPTCP options that are ignored must
4328 * not be treated as duplicate ACKs.
4329 */
4330 if (to.to_flags & TOF_MPTCP) {
4331 goto drop;
4332 }
fe8ab488
A
4333
4334 if ((isconnected) && (tp->t_mpflags & TMPF_JOINED_FLOW)) {
3e170ce0
A
4335 mptcplog((LOG_DEBUG, "MPTCP "
4336 "Sockets: bypass ack recovery\n"),
39037602 4337 MPTCP_SOCKET_DBG,
3e170ce0 4338 MPTCP_LOGLVL_VERBOSE);
fe8ab488
A
4339 break;
4340 }
39236c6e 4341#endif /* MPTCP */
fe8ab488
A
4342 /*
4343 * If a duplicate acknowledgement was seen
4344 * after ECN, it indicates packet loss in
4345 * addition to ECN. Reset INRECOVERY flag
4346 * so that we can process partial acks
4347 * correctly
4348 */
0a7de745 4349 if (tp->ecn_flags & TE_INRECOVERY) {
fe8ab488 4350 tp->ecn_flags &= ~TE_INRECOVERY;
0a7de745 4351 }
fe8ab488 4352
1c79356b 4353 tcpstat.tcps_rcvdupack++;
f427ee49
A
4354 if (SACK_ENABLED(tp) && tcp_do_better_lr) {
4355 tp->t_dupacks += max(1, sack_bytes_acked / tp->t_maxseg);
4356 } else {
4357 ++tp->t_dupacks;
4358 }
4359
4360 tp->sackhint.sack_bytes_acked += sack_bytes_acked;
4361
4362 if (SACK_ENABLED(tp) && tcp_do_better_lr) {
4363 tp->t_new_dupacks += (sack_bytes_newly_acked / tp->t_maxseg);
4364
4365 if (tp->t_new_dupacks >= tp->t_rexmtthresh && IN_FASTRECOVERY(tp)) {
4366 /* Let's restart the retransmission */
4367 tcp_sack_lost_rexmit(tp);
4368
4369 /*
4370 * If the current tcp cc module has
4371 * defined a hook for tasks to run
4372 * before entering FR, call it
4373 */
4374 if (CC_ALGO(tp)->pre_fr != NULL) {
4375 CC_ALGO(tp)->pre_fr(tp);
4376 }
4377
4378 ENTER_FASTRECOVERY(tp);
4379
4380 if (tp->t_flags & TF_SENTFIN) {
4381 tp->snd_recover = tp->snd_max - 1;
4382 } else {
4383 tp->snd_recover = tp->snd_max;
4384 }
4385 tp->t_rtttime = 0;
4386
4387 if (TCP_ECN_ENABLED(tp)) {
4388 tp->ecn_flags |= TE_SENDCWR;
4389 }
4390
4391 if (tp->t_flagsext & TF_CWND_NONVALIDATED) {
4392 tcp_cc_adjust_nonvalidated_cwnd(tp);
4393 } else {
4394 tp->snd_cwnd = tp->snd_ssthresh;
4395 }
4396 }
4397 }
fe8ab488
A
4398
4399 /*
4400 * Check if we need to reset the limit on
4401 * early retransmit
39236c6e 4402 */
fe8ab488
A
4403 if (tp->t_early_rexmt_count > 0 &&
4404 TSTMP_GEQ(tcp_now,
4405 (tp->t_early_rexmt_win +
0a7de745 4406 TCP_EARLY_REXMT_WIN))) {
39236c6e 4407 tp->t_early_rexmt_count = 0;
0a7de745 4408 }
39236c6e 4409
39037602 4410 /*
39236c6e
A
4411 * Is early retransmit needed? We check for
4412 * this when the connection is waiting for
fe8ab488 4413 * duplicate acks to enter fast recovery.
39236c6e 4414 */
0a7de745 4415 if (!IN_FASTRECOVERY(tp)) {
fe8ab488 4416 tcp_early_rexmt_check(tp, th);
0a7de745 4417 }
39236c6e 4418
1c79356b 4419 /*
39037602 4420 * If we've seen exactly rexmt threshold
39236c6e 4421 * of duplicate acks, assume a packet
1c79356b
A
4422 * has been dropped and retransmit it.
4423 * Kludge snd_nxt & the congestion
4424 * window so we send only this one
4425 * packet.
4426 *
4427 * We know we're losing at the current
4428 * window size so do congestion avoidance
4429 * (set ssthresh to half the current window
4430 * and pull our congestion window back to
4431 * the new ssthresh).
4432 *
4433 * Dup acks mean that packets have left the
4434 * network (they're now cached at the receiver)
4435 * so bump cwnd by the amount in the receiver
4436 * to keep a constant cwnd packets in the
4437 * network.
4438 */
4439 if (tp->t_timer[TCPT_REXMT] == 0 ||
f427ee49 4440 (th->th_ack != tp->snd_una && sack_bytes_acked == 0)) {
1c79356b 4441 tp->t_dupacks = 0;
39236c6e 4442 tp->t_rexmtthresh = tcprexmtthresh;
f427ee49
A
4443 tp->t_new_dupacks = 0;
4444 } else if ((tp->t_dupacks > tp->t_rexmtthresh && (!tcp_do_better_lr || old_dupacks >= tp->t_rexmtthresh)) ||
0a7de745 4445 IN_FASTRECOVERY(tp)) {
fe8ab488
A
4446 /*
4447 * If this connection was seeing packet
4448 * reordering, then recovery might be
4449 * delayed to disambiguate between
4450 * reordering and loss
4451 */
4452 if (SACK_ENABLED(tp) && !IN_FASTRECOVERY(tp) &&
39037602 4453 (tp->t_flagsext &
0a7de745
A
4454 (TF_PKTS_REORDERED | TF_DELAY_RECOVERY)) ==
4455 (TF_PKTS_REORDERED | TF_DELAY_RECOVERY)) {
fe8ab488
A
4456 /*
4457 * Since the SACK information is already
4458 * updated, this ACK will be dropped
4459 */
4460 break;
4461 }
4462
f427ee49
A
4463 /*
4464 * Dup acks mean that packets have left the
4465 * network (they're now cached at the receiver)
4466 * so bump cwnd by the amount in the receiver
4467 * to keep a constant cwnd packets in the
4468 * network.
4469 */
4470 if (SACK_ENABLED(tp) && IN_FASTRECOVERY(tp)) {
8ad349bb 4471 int awnd;
39037602 4472
8ad349bb
A
4473 /*
4474 * Compute the amount of data in flight first.
39037602 4475 * We can inject new data into the pipe iff
f427ee49
A
4476 * we have less than snd_ssthres worth of data in
4477 * flight.
9bccf70c 4478 */
f427ee49 4479 awnd = (tp->snd_nxt - tp->snd_fack) + tp->sackhint.sack_bytes_rexmit;
8ad349bb
A
4480 if (awnd < tp->snd_ssthresh) {
4481 tp->snd_cwnd += tp->t_maxseg;
0a7de745 4482 if (tp->snd_cwnd > tp->snd_ssthresh) {
8ad349bb 4483 tp->snd_cwnd = tp->snd_ssthresh;
0a7de745 4484 }
8ad349bb 4485 }
39037602 4486 } else {
9bccf70c 4487 tp->snd_cwnd += tp->t_maxseg;
39037602 4488 }
6d2010ae 4489
39037602 4490 /* Process any window updates */
0a7de745 4491 if (tiwin > tp->snd_wnd) {
39037602
A
4492 tcp_update_window(tp, thflags,
4493 th, tiwin, tlen);
0a7de745 4494 }
39037602
A
4495 tcp_ccdbg_trace(tp, th,
4496 TCP_CC_IN_FASTRECOVERY);
6d2010ae 4497
8ad349bb 4498 (void) tcp_output(tp);
39037602 4499
8ad349bb 4500 goto drop;
f427ee49
A
4501 } else if ((!tcp_do_better_lr && tp->t_dupacks == tp->t_rexmtthresh) ||
4502 (tcp_do_better_lr && tp->t_dupacks >= tp->t_rexmtthresh)) {
8ad349bb 4503 tcp_seq onxt = tp->snd_nxt;
8ad349bb
A
4504
4505 /*
4506 * If we're doing sack, check to
4507 * see if we're already in sack
4508 * recovery. If we're not doing sack,
4509 * check to see if we're in newreno
4510 * recovery.
4511 */
39236c6e 4512 if (SACK_ENABLED(tp)) {
8ad349bb
A
4513 if (IN_FASTRECOVERY(tp)) {
4514 tp->t_dupacks = 0;
4515 break;
fe8ab488
A
4516 } else if (tp->t_flagsext & TF_DELAY_RECOVERY) {
4517 break;
8ad349bb 4518 }
6d2010ae 4519 } else {
f427ee49 4520 if (SEQ_LEQ(th->th_ack, tp->snd_recover)) {
8ad349bb
A
4521 tp->t_dupacks = 0;
4522 break;
4523 }
9bccf70c 4524 }
0a7de745 4525 if (tp->t_flags & TF_SENTFIN) {
3e170ce0 4526 tp->snd_recover = tp->snd_max - 1;
0a7de745 4527 } else {
3e170ce0 4528 tp->snd_recover = tp->snd_max;
0a7de745 4529 }
fe8ab488
A
4530 tp->t_timer[TCPT_PTO] = 0;
4531 tp->t_rtttime = 0;
4532
4533 /*
4534 * If the connection has seen pkt
4535 * reordering, delay recovery until
4536 * it is clear that the packet
4537 * was lost.
4538 */
4539 if (SACK_ENABLED(tp) &&
4540 (tp->t_flagsext &
0a7de745 4541 (TF_PKTS_REORDERED | TF_DELAY_RECOVERY))
fe8ab488
A
4542 == TF_PKTS_REORDERED &&
4543 !IN_FASTRECOVERY(tp) &&
4544 tp->t_reorderwin > 0 &&
3e170ce0
A
4545 (tp->t_state == TCPS_ESTABLISHED ||
4546 tp->t_state == TCPS_FIN_WAIT_1)) {
fe8ab488
A
4547 tp->t_timer[TCPT_DELAYFR] =
4548 OFFSET_FROM_START(tp,
4549 tp->t_reorderwin);
4550 tp->t_flagsext |= TF_DELAY_RECOVERY;
4551 tcpstat.tcps_delay_recovery++;
4552 tcp_ccdbg_trace(tp, th,
4553 TCP_CC_DELAY_FASTRECOVERY);
4554 break;
4555 }
4556
3e170ce0 4557 tcp_rexmt_save_state(tp);
6d2010ae 4558 /*
39037602 4559 * If the current tcp cc module has
6d2010ae
A
4560 * defined a hook for tasks to run
4561 * before entering FR, call it
4562 */
0a7de745 4563 if (CC_ALGO(tp)->pre_fr != NULL) {
316670eb 4564 CC_ALGO(tp)->pre_fr(tp);
0a7de745 4565 }
8ad349bb 4566 ENTER_FASTRECOVERY(tp);
1c79356b 4567 tp->t_timer[TCPT_REXMT] = 0;
0a7de745 4568 if (TCP_ECN_ENABLED(tp)) {
316670eb 4569 tp->ecn_flags |= TE_SENDCWR;
0a7de745 4570 }
fe8ab488 4571
39236c6e 4572 if (SACK_ENABLED(tp)) {
8ad349bb 4573 tcpstat.tcps_sack_recovery_episode++;
4bd07ac2 4574 tp->t_sack_recovery_episode++;
8ad349bb 4575 tp->sack_newdata = tp->snd_nxt;
f427ee49
A
4576 if (tcp_do_better_lr) {
4577 tp->snd_cwnd = tp->snd_ssthresh;
4578 } else {
4579 tp->snd_cwnd = tp->t_maxseg;
4580 }
4581 tp->t_flagsext &= ~TF_CWND_NONVALIDATED;
39037602
A
4582
4583 /* Process any window updates */
0a7de745 4584 if (tiwin > tp->snd_wnd) {
f427ee49 4585 tcp_update_window(tp, thflags, th, tiwin, tlen);
0a7de745 4586 }
39037602 4587
f427ee49 4588 tcp_ccdbg_trace(tp, th, TCP_CC_ENTER_FASTRECOVERY);
8ad349bb
A
4589 (void) tcp_output(tp);
4590 goto drop;
4591 }
1c79356b
A
4592 tp->snd_nxt = th->th_ack;
4593 tp->snd_cwnd = tp->t_maxseg;
39037602
A
4594
4595 /* Process any window updates */
0a7de745 4596 if (tiwin > tp->snd_wnd) {
f427ee49 4597 tcp_update_window(tp, thflags, th, tiwin, tlen);
0a7de745 4598 }
39037602 4599
1c79356b 4600 (void) tcp_output(tp);
3e170ce0
A
4601 if (tp->t_flagsext & TF_CWND_NONVALIDATED) {
4602 tcp_cc_adjust_nonvalidated_cwnd(tp);
4603 } else {
f427ee49 4604 tp->snd_cwnd = tp->snd_ssthresh + tp->t_maxseg * tp->t_dupacks;
3e170ce0 4605 }
0a7de745 4606 if (SEQ_GT(onxt, tp->snd_nxt)) {
1c79356b 4607 tp->snd_nxt = onxt;
0a7de745 4608 }
39037602 4609
f427ee49 4610 tcp_ccdbg_trace(tp, th, TCP_CC_ENTER_FASTRECOVERY);
1c79356b 4611 goto drop;
f427ee49 4612 } else if (ALLOW_LIMITED_TRANSMIT(tp) &&
0a7de745
A
4613 (!(SACK_ENABLED(tp)) || sack_bytes_acked > 0) &&
4614 (so->so_snd.sb_cc - (tp->snd_max - tp->snd_una)) > 0) {
39236c6e
A
4615 u_int32_t incr = (tp->t_maxseg * tp->t_dupacks);
4616
4617 /* Use Limited Transmit algorithm on the first two
4618 * duplicate acks when there is new data to transmit
4619 */
4620 tp->snd_cwnd += incr;
4621 tcpstat.tcps_limited_txt++;
4622 (void) tcp_output(tp);
4623
fe8ab488 4624 tcp_ccdbg_trace(tp, th, TCP_CC_LIMITED_TRANSMIT);
39037602 4625
39236c6e
A
4626 /* Reset snd_cwnd back to normal */
4627 tp->snd_cwnd -= incr;
1c79356b 4628 }
39236c6e 4629 }
1c79356b
A
4630 break;
4631 }
b0d623f7
A
4632 /*
4633 * If the congestion window was inflated to account
4634 * for the other side's cached packets, retract it.
4635 */
6d2010ae
A
4636 if (IN_FASTRECOVERY(tp)) {
4637 if (SEQ_LT(th->th_ack, tp->snd_recover)) {
fe8ab488 4638 /*
39037602 4639 * If we received an ECE and entered
fe8ab488
A
4640 * recovery, the subsequent ACKs should
4641 * not be treated as partial acks.
4642 */
0a7de745 4643 if (tp->ecn_flags & TE_INRECOVERY) {
fe8ab488 4644 goto process_ACK;
0a7de745 4645 }
fe8ab488 4646
0a7de745 4647 if (SACK_ENABLED(tp)) {
6d2010ae 4648 tcp_sack_partialack(tp, th);
0a7de745 4649 } else {
39037602 4650 tcp_newreno_partial_ack(tp, th);
0a7de745 4651 }
fe8ab488 4652 tcp_ccdbg_trace(tp, th, TCP_CC_PARTIAL_ACK);
6d2010ae 4653 } else {
f427ee49
A
4654 if (tcp_cubic_minor_fixes) {
4655 exiting_fr = 1;
4656 }
6d2010ae 4657 EXIT_FASTRECOVERY(tp);
0a7de745 4658 if (CC_ALGO(tp)->post_fr != NULL) {
6d2010ae 4659 CC_ALGO(tp)->post_fr(tp, th);
0a7de745 4660 }
3e170ce0
A
4661 tp->t_pipeack = 0;
4662 tcp_clear_pipeack_state(tp);
fe8ab488
A
4663 tcp_ccdbg_trace(tp, th,
4664 TCP_CC_EXIT_FASTRECOVERY);
4665 }
39037602 4666 } else if ((tp->t_flagsext &
0a7de745
A
4667 (TF_PKTS_REORDERED | TF_DELAY_RECOVERY))
4668 == (TF_PKTS_REORDERED | TF_DELAY_RECOVERY)) {
fe8ab488
A
4669 /*
4670 * If the ack acknowledges upto snd_recover or if
4671 * it acknowledges all the snd holes, exit
4672 * recovery and cancel the timer. Otherwise,
4673 * this is a partial ack. Wait for recovery timer
4674 * to enter recovery. The snd_holes have already
4675 * been updated.
4676 */
4677 if (SEQ_GEQ(th->th_ack, tp->snd_recover) ||
4678 TAILQ_EMPTY(&tp->snd_holes)) {
4679 tp->t_timer[TCPT_DELAYFR] = 0;
4680 tp->t_flagsext &= ~TF_DELAY_RECOVERY;
4681 EXIT_FASTRECOVERY(tp);
4682 tcp_ccdbg_trace(tp, th,
4683 TCP_CC_EXIT_FASTRECOVERY);
6d2010ae
A
4684 }
4685 } else {
593a1d5f 4686 /*
fe8ab488
A
4687 * We were not in fast recovery. Reset the
4688 * duplicate ack counter.
593a1d5f
A
4689 */
4690 tp->t_dupacks = 0;
39236c6e 4691 tp->t_rexmtthresh = tcprexmtthresh;
f427ee49 4692 tp->t_new_dupacks = 0;
1c79356b
A
4693 }
4694
4695process_ACK:
3e170ce0 4696 VERIFY(SEQ_GEQ(th->th_ack, tp->snd_una));
39236c6e 4697 acked = BYTES_ACKED(th, tp);
1c79356b
A
4698 tcpstat.tcps_rcvackpack++;
4699 tcpstat.tcps_rcvackbyte += acked;
4700
9bccf70c 4701 /*
39236c6e
A
4702 * If the last packet was a retransmit, make sure
4703 * it was not spurious.
4704 *
fe8ab488
A
4705 * This will also take care of congestion window
4706 * adjustment if a last packet was recovered due to a
4707 * tail loss probe.
9bccf70c 4708 */
fe8ab488 4709 tcp_bad_rexmt_check(tp, th, &to);
9bccf70c 4710
39236c6e
A
4711 /* Recalculate the RTT */
4712 tcp_compute_rtt(tp, &to, th);
1c79356b
A
4713
4714 /*
4715 * If all outstanding data is acked, stop retransmit
4716 * timer and remember to restart (more output or persist).
4717 * If there is more data to be acked, restart retransmit
4718 * timer, using current (possibly backed-off) value.
4719 */
39037602
A
4720 TCP_RESET_REXMT_STATE(tp);
4721 TCPT_RANGESET(tp->t_rxtcur, TCP_REXMTVAL(tp),
4722 tp->t_rttmin, TCPTV_REXMTMAX,
4723 TCP_ADD_REXMTSLOP(tp));
1c79356b
A
4724 if (th->th_ack == tp->snd_max) {
4725 tp->t_timer[TCPT_REXMT] = 0;
fe8ab488 4726 tp->t_timer[TCPT_PTO] = 0;
1c79356b 4727 needoutput = 1;
0a7de745 4728 } else if (tp->t_timer[TCPT_PERSIST] == 0) {
fe8ab488
A
4729 tp->t_timer[TCPT_REXMT] = OFFSET_FROM_START(tp,
4730 tp->t_rxtcur);
0a7de745 4731 }
1c79356b 4732
cb323159
A
4733 if ((prev_t_state == TCPS_SYN_SENT ||
4734 prev_t_state == TCPS_SYN_RECEIVED) &&
4735 tp->t_state == TCPS_ESTABLISHED) {
4736 TCP_LOG_RTT_INFO(tp);
4737 }
4738
1c79356b 4739 /*
fe8ab488
A
4740 * If no data (only SYN) was ACK'd, skip rest of ACK
4741 * processing.
1c79356b 4742 */
0a7de745 4743 if (acked == 0) {
1c79356b 4744 goto step6;
0a7de745 4745 }
1c79356b 4746
3e170ce0
A
4747 /*
4748 * When outgoing data has been acked (except the SYN+data), we
4749 * mark this connection as "sending good" for TFO.
4750 */
4751 if ((tp->t_tfo_stats & TFO_S_SYN_DATA_SENT) &&
4752 !(tp->t_tfo_flags & TFO_F_NO_SNDPROBING) &&
0a7de745 4753 !(th->th_flags & TH_SYN)) {
5ba3f43e 4754 tp->t_tfo_flags |= TFO_F_NO_SNDPROBING;
0a7de745 4755 }
fe8ab488 4756
3e170ce0
A
4757 /*
4758 * If TH_ECE is received, make sure that ECN is enabled
4759 * on that connection and we have sent ECT on data packets.
4760 */
4761 if ((thflags & TH_ECE) != 0 && TCP_ECN_ENABLED(tp) &&
4762 (tp->ecn_flags & TE_SENDIPECT)) {
2d21ac55 4763 /*
fe8ab488
A
4764 * Reduce the congestion window if we haven't
4765 * done so.
2d21ac55 4766 */
fe8ab488 4767 if (!IN_FASTRECOVERY(tp)) {
316670eb 4768 tcp_reduce_congestion_window(tp);
0a7de745 4769 tp->ecn_flags |= (TE_INRECOVERY | TE_SENDCWR);
3e170ce0
A
4770 /*
4771 * Also note that the connection received
4772 * ECE atleast once
4773 */
4774 tp->ecn_flags |= TE_RECV_ECN_ECE;
4bd07ac2 4775 INP_INC_IFNET_STAT(inp, ecn_recv_ece);
3e170ce0 4776 tcpstat.tcps_ecn_recv_ece++;
fe8ab488 4777 tcp_ccdbg_trace(tp, th, TCP_CC_ECN_RCVD);
2d21ac55 4778 }
6d2010ae 4779 }
b0d623f7 4780
6d2010ae
A
4781 /*
4782 * When new data is acked, open the congestion window.
4783 * The specifics of how this is achieved are up to the
4784 * congestion control algorithm in use for this connection.
4785 *
4786 * The calculations in this function assume that snd_una is
4787 * not updated yet.
4788 */
f427ee49 4789 if (!IN_FASTRECOVERY(tp) && !exiting_fr) {
0a7de745 4790 if (CC_ALGO(tp)->ack_rcvd != NULL) {
6d2010ae 4791 CC_ALGO(tp)->ack_rcvd(tp, th);
0a7de745 4792 }
fe8ab488 4793 tcp_ccdbg_trace(tp, th, TCP_CC_ACK_RCVD);
1c79356b
A
4794 }
4795 if (acked > so->so_snd.sb_cc) {
4796 tp->snd_wnd -= so->so_snd.sb_cc;
4797 sbdrop(&so->so_snd, (int)so->so_snd.sb_cc);
4798 ourfinisacked = 1;
4799 } else {
4800 sbdrop(&so->so_snd, acked);
316670eb 4801 tcp_sbsnd_trim(&so->so_snd);
1c79356b
A
4802 tp->snd_wnd -= acked;
4803 ourfinisacked = 0;
4804 }
91447636 4805 /* detect una wraparound */
0a7de745 4806 if (!IN_FASTRECOVERY(tp) &&
8ad349bb 4807 SEQ_GT(tp->snd_una, tp->snd_recover) &&
0a7de745 4808 SEQ_LEQ(th->th_ack, tp->snd_recover)) {
8ad349bb 4809 tp->snd_recover = th->th_ack - 1;
0a7de745 4810 }
6d2010ae
A
4811
4812 if (IN_FASTRECOVERY(tp) &&
0a7de745 4813 SEQ_GEQ(th->th_ack, tp->snd_recover)) {
8ad349bb 4814 EXIT_FASTRECOVERY(tp);
0a7de745 4815 }
6d2010ae 4816
f427ee49 4817 tcp_update_snd_una(tp, th->th_ack);
39037602 4818
39236c6e 4819 if (SACK_ENABLED(tp)) {
0a7de745 4820 if (SEQ_GT(tp->snd_una, tp->snd_recover)) {
8ad349bb 4821 tp->snd_recover = tp->snd_una;
0a7de745 4822 }
8ad349bb 4823 }
0a7de745 4824 if (SEQ_LT(tp->snd_nxt, tp->snd_una)) {
1c79356b 4825 tp->snd_nxt = tp->snd_una;
0a7de745 4826 }
3e170ce0
A
4827 if (!SLIST_EMPTY(&tp->t_rxt_segments) &&
4828 !TCP_DSACK_SEQ_IN_WINDOW(tp, tp->t_dsack_lastuna,
0a7de745 4829 tp->snd_una)) {
3e170ce0 4830 tcp_rxtseg_clean(tp);
0a7de745 4831 }
316670eb 4832 if ((tp->t_flagsext & TF_MEASURESNDBW) != 0 &&
0a7de745 4833 tp->t_bwmeas != NULL) {
316670eb 4834 tcp_bwmeas_check(tp);
0a7de745 4835 }
316670eb 4836
cb323159 4837 write_wakeup = 1;
1c79356b 4838
0a7de745 4839 if (!SLIST_EMPTY(&tp->t_notify_ack)) {
39037602 4840 tcp_notify_acknowledgement(tp, so);
0a7de745 4841 }
39037602 4842
1c79356b 4843 switch (tp->t_state) {
1c79356b
A
4844 /*
4845 * In FIN_WAIT_1 STATE in addition to the processing
4846 * for the ESTABLISHED state if our FIN is now acknowledged
4847 * then enter FIN_WAIT_2.
4848 */
4849 case TCPS_FIN_WAIT_1:
4850 if (ourfinisacked) {
4851 /*
4852 * If we can't receive any more
4853 * data, then closing user can proceed.
39236c6e 4854 * Starting the TCPT_2MSL timer is contrary to the
1c79356b
A
4855 * specification, but if we don't get a FIN
4856 * we'll hang forever.
4857 */
4858 if (so->so_state & SS_CANTRCVMORE) {
39236c6e 4859 tp->t_timer[TCPT_2MSL] = OFFSET_FROM_START(tp,
0a7de745 4860 TCP_CONN_MAXIDLE(tp));
6d2010ae
A
4861 isconnected = FALSE;
4862 isdisconnected = TRUE;
1c79356b 4863 }
39037602 4864 DTRACE_TCP4(state__change, void, NULL,
0a7de745
A
4865 struct inpcb *, inp,
4866 struct tcpcb *, tp,
4867 int32_t, TCPS_FIN_WAIT_2);
1c79356b 4868 tp->t_state = TCPS_FIN_WAIT_2;
39037602
A
4869 /* fall through and make sure we also recognize
4870 * data ACKed with the FIN
39236c6e 4871 */
1c79356b
A
4872 }
4873 break;
4874
0a7de745 4875 /*
1c79356b
A
4876 * In CLOSING STATE in addition to the processing for
4877 * the ESTABLISHED state if the ACK acknowledges our FIN
4878 * then enter the TIME-WAIT state, otherwise ignore
4879 * the segment.
4880 */
4881 case TCPS_CLOSING:
4882 if (ourfinisacked) {
39037602 4883 DTRACE_TCP4(state__change, void, NULL,
0a7de745
A
4884 struct inpcb *, inp,
4885 struct tcpcb *, tp,
4886 int32_t, TCPS_TIME_WAIT);
1c79356b
A
4887 tp->t_state = TCPS_TIME_WAIT;
4888 tcp_canceltimers(tp);
fe8ab488
A
4889 if (tp->t_flagsext & TF_NOTIMEWAIT) {
4890 tp->t_flags |= TF_CLOSING;
4891 } else {
4892 add_to_time_wait(tp, 2 * tcp_msl);
4893 }
6d2010ae
A
4894 isconnected = FALSE;
4895 isdisconnected = TRUE;
1c79356b
A
4896 }
4897 break;
4898
4899 /*
4900 * In LAST_ACK, we may still be waiting for data to drain
4901 * and/or to be acked, as well as for the ack of our FIN.
4902 * If our FIN is now acknowledged, delete the TCB,
4903 * enter the closed state and return.
4904 */
4905 case TCPS_LAST_ACK:
4906 if (ourfinisacked) {
4907 tp = tcp_close(tp);
4908 goto drop;
4909 }
4910 break;
4911
4912 /*
4913 * In TIME_WAIT state the only thing that should arrive
4914 * is a retransmission of the remote FIN. Acknowledge
4915 * it and restart the finack timer.
4916 */
4917 case TCPS_TIME_WAIT:
6d2010ae 4918 add_to_time_wait(tp, 2 * tcp_msl);
1c79356b
A
4919 goto dropafterack;
4920 }
39236c6e
A
4921
4922 /*
39037602 4923 * If there is a SACK option on the ACK and we
39236c6e
A
4924 * haven't seen any duplicate acks before, count
4925 * it as a duplicate ack even if the cumulative
4926 * ack is advanced. If the receiver delayed an
4927 * ack and detected loss afterwards, then the ack
39037602 4928 * will advance cumulative ack and will also have
39236c6e
A
4929 * a SACK option. So counting it as one duplicate
4930 * ack is ok.
39037602 4931 */
f427ee49 4932 if (tp->t_state == TCPS_ESTABLISHED &&
39037602 4933 SACK_ENABLED(tp) && sack_bytes_acked > 0 &&
fe8ab488
A
4934 to.to_nsacks > 0 && tp->t_dupacks == 0 &&
4935 SEQ_LEQ(th->th_ack, tp->snd_una) && tlen == 0 &&
4936 !(tp->t_flagsext & TF_PKTS_REORDERED)) {
39236c6e
A
4937 tcpstat.tcps_sack_ackadv++;
4938 goto process_dupack;
4939 }
1c79356b
A
4940 }
4941
4942step6:
4943 /*
4944 * Update window information.
1c79356b 4945 */
0a7de745 4946 if (tcp_update_window(tp, thflags, th, tiwin, tlen)) {
1c79356b 4947 needoutput = 1;
0a7de745 4948 }
1c79356b
A
4949
4950 /*
4951 * Process segments with URG.
4952 */
4953 if ((thflags & TH_URG) && th->th_urp &&
4954 TCPS_HAVERCVDFIN(tp->t_state) == 0) {
4955 /*
4956 * This is a kludge, but if we receive and accept
4957 * random urgent pointers, we'll crash in
4958 * soreceive. It's hard to imagine someone
4959 * actually wanting to send this much urgent data.
4960 */
4961 if (th->th_urp + so->so_rcv.sb_cc > sb_max) {
0a7de745
A
4962 th->th_urp = 0; /* XXX */
4963 thflags &= ~TH_URG; /* XXX */
4964 goto dodata; /* XXX */
1c79356b
A
4965 }
4966 /*
4967 * If this segment advances the known urgent pointer,
4968 * then mark the data stream. This should not happen
4969 * in CLOSE_WAIT, CLOSING, LAST_ACK or TIME_WAIT STATES since
4970 * a FIN has been received from the remote side.
4971 * In these states we ignore the URG.
4972 *
4973 * According to RFC961 (Assigned Protocols),
4974 * the urgent pointer points to the last octet
4975 * of urgent data. We continue, however,
4976 * to consider it to indicate the first octet
4977 * of data past the urgent section as the original
4978 * spec states (in one of two places).
4979 */
0a7de745 4980 if (SEQ_GT(th->th_seq + th->th_urp, tp->rcv_up)) {
1c79356b
A
4981 tp->rcv_up = th->th_seq + th->th_urp;
4982 so->so_oobmark = so->so_rcv.sb_cc +
4983 (tp->rcv_up - tp->rcv_nxt) - 1;
4984 if (so->so_oobmark == 0) {
4985 so->so_state |= SS_RCVATMARK;
1c79356b
A
4986 }
4987 sohasoutofband(so);
4988 tp->t_oobflags &= ~(TCPOOB_HAVEDATA | TCPOOB_HADDATA);
4989 }
4990 /*
4991 * Remove out of band data so doesn't get presented to user.
4992 * This can happen independent of advancing the URG pointer,
4993 * but if two URG's are pending at once, some out-of-band
4994 * data may creep in... ick.
4995 */
b0d623f7 4996 if (th->th_urp <= (u_int32_t)tlen
1c79356b 4997#if SO_OOBINLINE
0a7de745 4998 && (so->so_options & SO_OOBINLINE) == 0
1c79356b 4999#endif
0a7de745 5000 ) {
9bccf70c 5001 tcp_pulloutofband(so, th, m,
0a7de745
A
5002 drop_hdrlen); /* hdr drop is delayed */
5003 }
6d2010ae 5004 } else {
1c79356b
A
5005 /*
5006 * If no out of band data is expected,
5007 * pull receive urgent pointer along
5008 * with the receive window.
5009 */
0a7de745 5010 if (SEQ_GT(tp->rcv_nxt, tp->rcv_up)) {
1c79356b 5011 tp->rcv_up = tp->rcv_nxt;
0a7de745 5012 }
6d2010ae
A
5013 }
5014dodata:
1c79356b 5015
6d2010ae
A
5016 /* Set socket's connect or disconnect state correcly before doing data.
5017 * The following might unlock the socket if there is an upcall or a socket
5018 * filter.
5019 */
5020 if (isconnected) {
5021 soisconnected(so);
5022 } else if (isdisconnected) {
5023 soisdisconnected(so);
5024 }
5025
39037602 5026 /* Let's check the state of pcb just to make sure that it did not get closed
6d2010ae
A
5027 * when we unlocked above
5028 */
5029 if (inp->inp_state == INPCB_STATE_DEAD) {
5030 /* Just drop the packet that we are processing and return */
cb323159 5031 TCP_LOG_DROP_PCB(TCP_LOG_HDR, th, tp, false, "INPCB_STATE_DEAD");
6d2010ae
A
5032 goto drop;
5033 }
39037602 5034
1c79356b
A
5035 /*
5036 * Process the segment text, merging it into the TCP sequencing queue,
5037 * and arranging for acknowledgment of receipt if necessary.
5038 * This process logically involves adjusting tp->rcv_wnd as data
5039 * is presented to the user (this happens in tcp_usrreq.c,
5040 * case PRU_RCVD). If a FIN has already been received on this
5041 * connection then we just ignore the text.
3e170ce0
A
5042 *
5043 * If we are in SYN-received state and got a valid TFO cookie, we want
5044 * to process the data.
1c79356b 5045 */
c910b4d9 5046 if ((tlen || (thflags & TH_FIN)) &&
3e170ce0
A
5047 TCPS_HAVERCVDFIN(tp->t_state) == 0 &&
5048 (TCPS_HAVEESTABLISHED(tp->t_state) ||
0a7de745
A
5049 (tp->t_state == TCPS_SYN_RECEIVED &&
5050 (tp->t_tfo_flags & TFO_F_COOKIE_VALID)))) {
8ad349bb
A
5051 tcp_seq save_start = th->th_seq;
5052 tcp_seq save_end = th->th_seq + tlen;
0a7de745 5053 m_adj(m, drop_hdrlen); /* delayed header drop */
9bccf70c 5054 /*
8ad349bb
A
5055 * Insert segment which includes th into TCP reassembly queue
5056 * with control block tp. Set thflags to whether reassembly now
5057 * includes a segment with FIN. This handles the common case
5058 * inline (segment is the next to be received on an established
5059 * connection, and the queue is empty), avoiding linkage into
5060 * and removal from the queue and repetition of various
5061 * conversions.
5062 * Set DELACK for segments received in order, but ack
5063 * immediately when segments are out of order (so
5064 * fast retransmit can work).
9bccf70c 5065 */
3e170ce0 5066 if (th->th_seq == tp->rcv_nxt && LIST_EMPTY(&tp->t_segq)) {
f427ee49 5067 TCP_INC_VAR(tp->t_unacksegs, segment_count);
39236c6e 5068 /*
39037602
A
5069 * Calculate the RTT on the receiver only if the
5070 * connection is in streaming mode and the last
39236c6e
A
5071 * packet was not an end-of-write
5072 */
0a7de745 5073 if (tp->t_flags & TF_STREAMING_ON) {
39236c6e 5074 tcp_compute_rtt(tp, &to, th);
0a7de745 5075 }
39037602
A
5076
5077 if (DELAY_ACK(tp, th) &&
0a7de745 5078 ((tp->t_flags & TF_ACKNOW) == 0)) {
6d2010ae
A
5079 if ((tp->t_flags & TF_DELACK) == 0) {
5080 tp->t_flags |= TF_DELACK;
39037602 5081 tp->t_timer[TCPT_DELACK] =
0a7de745 5082 OFFSET_FROM_START(tp, tcp_delack);
6d2010ae 5083 }
0a7de745 5084 } else {
9bccf70c 5085 tp->t_flags |= TF_ACKNOW;
91447636 5086 }
9bccf70c
A
5087 tp->rcv_nxt += tlen;
5088 thflags = th->th_flags & TH_FIN;
f427ee49 5089 TCP_INC_VAR(tcpstat.tcps_rcvpack, segment_count);
9bccf70c 5090 tcpstat.tcps_rcvbyte += tlen;
6d2010ae 5091 if (nstat_collect) {
f427ee49
A
5092 INP_ADD_STAT(inp, cell, wifi, wired,
5093 rxpackets, 1);
fe8ab488
A
5094 INP_ADD_STAT(inp, cell, wifi, wired,
5095 rxbytes, tlen);
5ba3f43e 5096 inp_set_activity_bitmap(inp);
6d2010ae 5097 }
f427ee49 5098 tcp_sbrcv_grow(tp, &so->so_rcv, &to, tlen);
6d2010ae 5099 so_recv_data_stat(so, m, drop_hdrlen);
39037602 5100
cb323159
A
5101 if (isipv6) {
5102 memcpy(&saved_hdr, ip6, sizeof(struct ip6_hdr));
5103 ip6 = (struct ip6_hdr *)&saved_hdr[0];
5104 } else {
5105 memcpy(&saved_hdr, ip, ip->ip_hl << 2);
5106 ip = (struct ip *)&saved_hdr[0];
5107 }
5108 memcpy(&saved_tcphdr, th, sizeof(struct tcphdr));
f427ee49
A
5109
5110 if (th->th_flags & TH_PUSH) {
5111 tp->t_flagsext |= TF_LAST_IS_PSH;
5112 } else {
5113 tp->t_flagsext &= ~TF_LAST_IS_PSH;
5114 }
5115
5116 if (sbappendstream_rcvdemux(so, m)) {
cb323159 5117 read_wakeup = 1;
39236c6e 5118 }
cb323159 5119 th = &saved_tcphdr;
9bccf70c 5120 } else {
cb323159
A
5121 if (isipv6) {
5122 memcpy(&saved_hdr, ip6, sizeof(struct ip6_hdr));
5123 ip6 = (struct ip6_hdr *)&saved_hdr[0];
5124 } else {
5125 memcpy(&saved_hdr, ip, ip->ip_hl << 2);
5126 ip = (struct ip *)&saved_hdr[0];
5127 }
ea3f0419
A
5128
5129 if (tcp_autotune_reorder) {
f427ee49 5130 tcp_sbrcv_grow(tp, &so->so_rcv, &to, tlen);
ea3f0419
A
5131 }
5132
cb323159
A
5133 memcpy(&saved_tcphdr, th, sizeof(struct tcphdr));
5134 thflags = tcp_reass(tp, th, &tlen, m, ifp, &read_wakeup);
5135 th = &saved_tcphdr;
9bccf70c
A
5136 tp->t_flags |= TF_ACKNOW;
5137 }
1c79356b 5138
39037602 5139 if ((tlen > 0 || (th->th_flags & TH_FIN)) && SACK_ENABLED(tp)) {
0a7de745 5140 if (th->th_flags & TH_FIN) {
39037602 5141 save_end++;
0a7de745 5142 }
8ad349bb 5143 tcp_update_sack_list(tp, save_start, save_end);
39037602 5144 }
8ad349bb 5145
39236c6e
A
5146 tcp_adaptive_rwtimo_check(tp, tlen);
5147
0a7de745 5148 if (tlen > 0) {
3e170ce0 5149 tcp_tfo_rcv_data(tp);
0a7de745 5150 }
3e170ce0 5151
0a7de745 5152 if (tp->t_flags & TF_DELACK) {
9bccf70c
A
5153 if (isipv6) {
5154 KERNEL_DEBUG(DBG_LAYER_END, ((th->th_dport << 16) | th->th_sport),
0a7de745
A
5155 (((ip6->ip6_src.s6_addr16[0]) << 16) | (ip6->ip6_dst.s6_addr16[0])),
5156 th->th_seq, th->th_ack, th->th_win);
f427ee49 5157 } else {
9bccf70c 5158 KERNEL_DEBUG(DBG_LAYER_END, ((th->th_dport << 16) | th->th_sport),
0a7de745
A
5159 (((ip->ip_src.s_addr & 0xffff) << 16) | (ip->ip_dst.s_addr & 0xffff)),
5160 th->th_seq, th->th_ack, th->th_win);
9bccf70c 5161 }
1c79356b 5162 }
1c79356b 5163 } else {
5c9f4661 5164 if ((so->so_flags & SOF_MP_SUBFLOW) && tlen == 0 &&
a39ff7e2
A
5165 (m->m_pkthdr.pkt_flags & PKTF_MPTCP_DFIN) &&
5166 (m->m_pkthdr.pkt_flags & PKTF_MPTCP)) {
0a7de745 5167 m_adj(m, drop_hdrlen); /* delayed header drop */
5c9f4661
A
5168 mptcp_input(tptomptp(tp)->mpt_mpte, m);
5169 tp->t_flags |= TF_ACKNOW;
5170 } else {
5171 m_freem(m);
5172 }
1c79356b
A
5173 thflags &= ~TH_FIN;
5174 }
5175
5176 /*
5177 * If FIN is received ACK the FIN and let the user know
5178 * that the connection is closing.
5179 */
5180 if (thflags & TH_FIN) {
5181 if (TCPS_HAVERCVDFIN(tp->t_state) == 0) {
5182 socantrcvmore(so);
1c79356b 5183 /*
8ad349bb
A
5184 * If connection is half-synchronized
5185 * (ie NEEDSYN flag on) then delay ACK,
5186 * so it may be piggybacked when SYN is sent.
5187 * Otherwise, since we received a FIN then no
5188 * more input can be expected, send ACK now.
1c79356b 5189 */
f427ee49
A
5190 TCP_INC_VAR(tp->t_unacksegs, segment_count);
5191 tp->t_flags |= TF_ACKNOW;
1c79356b
A
5192 tp->rcv_nxt++;
5193 }
5194 switch (tp->t_state) {
0a7de745 5195 /*
1c79356b
A
5196 * In SYN_RECEIVED and ESTABLISHED STATES
5197 * enter the CLOSE_WAIT state.
5198 */
5199 case TCPS_SYN_RECEIVED:
6d2010ae 5200 tp->t_starttime = tcp_now;
f427ee49 5201 OS_FALLTHROUGH;
1c79356b 5202 case TCPS_ESTABLISHED:
6d2010ae 5203 DTRACE_TCP4(state__change, void, NULL, struct inpcb *, inp,
0a7de745 5204 struct tcpcb *, tp, int32_t, TCPS_CLOSE_WAIT);
1c79356b
A
5205 tp->t_state = TCPS_CLOSE_WAIT;
5206 break;
5207
0a7de745 5208 /*
1c79356b
A
5209 * If still in FIN_WAIT_1 STATE FIN has not been acked so
5210 * enter the CLOSING state.
5211 */
5212 case TCPS_FIN_WAIT_1:
6d2010ae 5213 DTRACE_TCP4(state__change, void, NULL, struct inpcb *, inp,
0a7de745 5214 struct tcpcb *, tp, int32_t, TCPS_CLOSING);
1c79356b
A
5215 tp->t_state = TCPS_CLOSING;
5216 break;
5217
0a7de745 5218 /*
1c79356b
A
5219 * In FIN_WAIT_2 state enter the TIME_WAIT state,
5220 * starting the time-wait timer, turning off the other
5221 * standard timers.
5222 */
5223 case TCPS_FIN_WAIT_2:
39037602 5224 DTRACE_TCP4(state__change, void, NULL,
0a7de745
A
5225 struct inpcb *, inp,
5226 struct tcpcb *, tp,
5227 int32_t, TCPS_TIME_WAIT);
1c79356b
A
5228 tp->t_state = TCPS_TIME_WAIT;
5229 tcp_canceltimers(tp);
fe8ab488
A
5230 tp->t_flags |= TF_ACKNOW;
5231 if (tp->t_flagsext & TF_NOTIMEWAIT) {
5232 tp->t_flags |= TF_CLOSING;
5233 } else {
5234 add_to_time_wait(tp, 2 * tcp_msl);
1c79356b 5235 }
1c79356b
A
5236 soisdisconnected(so);
5237 break;
5238
5239 /*
5240 * In TIME_WAIT state restart the 2 MSL time_wait timer.
5241 */
5242 case TCPS_TIME_WAIT:
6d2010ae 5243 add_to_time_wait(tp, 2 * tcp_msl);
1c79356b
A
5244 break;
5245 }
5246 }
5247#if TCPDEBUG
0a7de745 5248 if (so->so_options & SO_DEBUG) {
9bccf70c 5249 tcp_trace(TA_INPUT, ostate, tp, (void *)tcp_saveipgen,
0a7de745
A
5250 &tcp_savetcp, 0);
5251 }
1c79356b
A
5252#endif
5253
cb323159
A
5254 if (read_wakeup) {
5255 mptcp_handle_input(so);
5256 }
5257
1c79356b
A
5258 /*
5259 * Return any desired output.
5260 */
2d21ac55 5261 if (needoutput || (tp->t_flags & TF_ACKNOW)) {
1c79356b 5262 (void) tcp_output(tp);
2d21ac55 5263 }
6d2010ae
A
5264
5265 tcp_check_timer_state(tp);
5266
cb323159 5267 tcp_handle_wakeup(so, read_wakeup, write_wakeup);
39037602 5268
5ba3f43e 5269 socket_unlock(so, 1);
0a7de745 5270 KERNEL_DEBUG(DBG_FNC_TCP_INPUT | DBG_FUNC_END, 0, 0, 0, 0, 0);
1c79356b
A
5271 return;
5272
5273dropafterack:
5274 /*
5275 * Generate an ACK dropping incoming segment if it occupies
5276 * sequence space, where the ACK reflects our state.
5277 *
5278 * We can now skip the test for the RST flag since all
5279 * paths to this code happen after packets containing
5280 * RST have been dropped.
5281 *
5282 * In the SYN-RECEIVED state, don't send an ACK unless the
5283 * segment we received passes the SYN-RECEIVED ACK test.
5284 * If it fails send a RST. This breaks the loop in the
5285 * "LAND" DoS attack, and also prevents an ACK storm
5286 * between two listening ports that have been sent forged
5287 * SYN segments, each with the source address of the other.
5288 */
5289 if (tp->t_state == TCPS_SYN_RECEIVED && (thflags & TH_ACK) &&
5290 (SEQ_GT(tp->snd_una, th->th_ack) ||
0a7de745 5291 SEQ_GT(th->th_ack, tp->snd_max))) {
39236c6e 5292 IF_TCP_STATINC(ifp, dospacket);
1c79356b 5293 goto dropwithreset;
9bccf70c 5294 }
1c79356b 5295#if TCPDEBUG
0a7de745 5296 if (so->so_options & SO_DEBUG) {
9bccf70c 5297 tcp_trace(TA_DROP, ostate, tp, (void *)tcp_saveipgen,
0a7de745
A
5298 &tcp_savetcp, 0);
5299 }
1c79356b
A
5300#endif
5301 m_freem(m);
5302 tp->t_flags |= TF_ACKNOW;
cb323159 5303
1c79356b 5304 (void) tcp_output(tp);
6d2010ae 5305
cb323159
A
5306 tcp_handle_wakeup(so, read_wakeup, write_wakeup);
5307
6d2010ae 5308 /* Don't need to check timer state as we should have done it during tcp_output */
5ba3f43e 5309 socket_unlock(so, 1);
0a7de745 5310 KERNEL_DEBUG(DBG_FNC_TCP_INPUT | DBG_FUNC_END, 0, 0, 0, 0, 0);
1c79356b 5311 return;
91447636
A
5312dropwithresetnosock:
5313 nosock = 1;
1c79356b
A
5314dropwithreset:
5315 /*
5316 * Generate a RST, dropping incoming segment.
5317 * Make ACK acceptable to originator of segment.
5318 * Don't bother to respond if destination was broadcast/multicast.
5319 */
0a7de745 5320 if ((thflags & TH_RST) || m->m_flags & (M_BCAST | M_MCAST)) {
1c79356b 5321 goto drop;
0a7de745 5322 }
1c79356b 5323 if (isipv6) {
9bccf70c 5324 if (IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst) ||
0a7de745 5325 IN6_IS_ADDR_MULTICAST(&ip6->ip6_src)) {
9bccf70c 5326 goto drop;
0a7de745 5327 }
f427ee49 5328 } else if (IN_MULTICAST(ntohl(ip->ip_dst.s_addr)) ||
14353aa8
A
5329 IN_MULTICAST(ntohl(ip->ip_src.s_addr)) ||
5330 ip->ip_src.s_addr == htonl(INADDR_BROADCAST) ||
0a7de745 5331 in_broadcast(ip->ip_dst, m->m_pkthdr.rcvif)) {
1c79356b 5332 goto drop;
0a7de745 5333 }
9bccf70c
A
5334 /* IPv6 anycast check is done at tcp6_input() */
5335
1c79356b 5336#if TCPDEBUG
0a7de745 5337 if (tp == 0 || (tp->t_inpcb->inp_socket->so_options & SO_DEBUG)) {
9bccf70c 5338 tcp_trace(TA_DROP, ostate, tp, (void *)tcp_saveipgen,
0a7de745
A
5339 &tcp_savetcp, 0);
5340 }
1c79356b 5341#endif
fe8ab488
A
5342 bzero(&tra, sizeof(tra));
5343 tra.ifscope = ifscope;
5344 tra.awdl_unrestricted = 1;
39037602 5345 tra.intcoproc_allowed = 1;
0a7de745 5346 if (thflags & TH_ACK) {
9bccf70c
A
5347 /* mtod() below is safe as long as hdr dropping is delayed */
5348 tcp_respond(tp, mtod(m, void *), th, m, (tcp_seq)0, th->th_ack,
fe8ab488 5349 TH_RST, &tra);
0a7de745
A
5350 } else {
5351 if (thflags & TH_SYN) {
9bccf70c 5352 tlen++;
0a7de745 5353 }
9bccf70c 5354 /* mtod() below is safe as long as hdr dropping is delayed */
0a7de745
A
5355 tcp_respond(tp, mtod(m, void *), th, m, th->th_seq + tlen,
5356 (tcp_seq)0, TH_RST | TH_ACK, &tra);
1c79356b
A
5357 }
5358 /* destroy temporarily created socket */
91447636 5359 if (dropsocket) {
39037602 5360 (void) soabort(so);
5ba3f43e 5361 socket_unlock(so, 1);
39236c6e 5362 } else if ((inp != NULL) && (nosock == 0)) {
cb323159
A
5363 tcp_handle_wakeup(so, read_wakeup, write_wakeup);
5364
5ba3f43e 5365 socket_unlock(so, 1);
6d2010ae 5366 }
0a7de745 5367 KERNEL_DEBUG(DBG_FNC_TCP_INPUT | DBG_FUNC_END, 0, 0, 0, 0, 0);
1c79356b 5368 return;
91447636
A
5369dropnosock:
5370 nosock = 1;
1c79356b
A
5371drop:
5372 /*
5373 * Drop space held by incoming segment and return.
5374 */
5375#if TCPDEBUG
0a7de745 5376 if (tp == 0 || (tp->t_inpcb->inp_socket->so_options & SO_DEBUG)) {
9bccf70c 5377 tcp_trace(TA_DROP, ostate, tp, (void *)tcp_saveipgen,
0a7de745
A
5378 &tcp_savetcp, 0);
5379 }
1c79356b
A
5380#endif
5381 m_freem(m);
1c79356b 5382 /* destroy temporarily created socket */
91447636 5383 if (dropsocket) {
39037602 5384 (void) soabort(so);
5ba3f43e 5385 socket_unlock(so, 1);
0a7de745 5386 } else if (nosock == 0) {
cb323159
A
5387 tcp_handle_wakeup(so, read_wakeup, write_wakeup);
5388
5ba3f43e 5389 socket_unlock(so, 1);
6d2010ae 5390 }
0a7de745 5391 KERNEL_DEBUG(DBG_FNC_TCP_INPUT | DBG_FUNC_END, 0, 0, 0, 0, 0);
1c79356b
A
5392 return;
5393}
5394
8ad349bb
A
5395/*
5396 * Parse TCP options and place in tcpopt.
5397 */
3e170ce0
A
5398static void
5399tcp_dooptions(struct tcpcb *tp, u_char *cp, int cnt, struct tcphdr *th,
5400 struct tcpopt *to)
1c79356b
A
5401{
5402 u_short mss = 0;
5403 int opt, optlen;
5404
5405 for (; cnt > 0; cnt -= optlen, cp += optlen) {
5406 opt = cp[0];
0a7de745 5407 if (opt == TCPOPT_EOL) {
1c79356b 5408 break;
0a7de745
A
5409 }
5410 if (opt == TCPOPT_NOP) {
1c79356b 5411 optlen = 1;
0a7de745
A
5412 } else {
5413 if (cnt < 2) {
9bccf70c 5414 break;
0a7de745 5415 }
1c79356b 5416 optlen = cp[1];
0a7de745 5417 if (optlen < 2 || optlen > cnt) {
1c79356b 5418 break;
0a7de745 5419 }
1c79356b
A
5420 }
5421 switch (opt) {
1c79356b
A
5422 default:
5423 continue;
5424
5425 case TCPOPT_MAXSEG:
0a7de745 5426 if (optlen != TCPOLEN_MAXSEG) {
1c79356b 5427 continue;
0a7de745
A
5428 }
5429 if (!(th->th_flags & TH_SYN)) {
1c79356b 5430 continue;
0a7de745 5431 }
1c79356b 5432 bcopy((char *) cp + 2, (char *) &mss, sizeof(mss));
9bccf70c 5433 NTOHS(mss);
3e170ce0
A
5434 to->to_mss = mss;
5435 to->to_flags |= TOF_MSS;
1c79356b
A
5436 break;
5437
5438 case TCPOPT_WINDOW:
0a7de745 5439 if (optlen != TCPOLEN_WINDOW) {
1c79356b 5440 continue;
0a7de745
A
5441 }
5442 if (!(th->th_flags & TH_SYN)) {
1c79356b 5443 continue;
0a7de745 5444 }
39236c6e 5445 to->to_flags |= TOF_SCALE;
3e170ce0 5446 to->to_requested_s_scale = min(cp[2], TCP_MAX_WINSHIFT);
1c79356b
A
5447 break;
5448
5449 case TCPOPT_TIMESTAMP:
0a7de745 5450 if (optlen != TCPOLEN_TIMESTAMP) {
1c79356b 5451 continue;
0a7de745 5452 }
8ad349bb 5453 to->to_flags |= TOF_TS;
1c79356b
A
5454 bcopy((char *)cp + 2,
5455 (char *)&to->to_tsval, sizeof(to->to_tsval));
5456 NTOHL(to->to_tsval);
5457 bcopy((char *)cp + 6,
5458 (char *)&to->to_tsecr, sizeof(to->to_tsecr));
5459 NTOHL(to->to_tsecr);
3e170ce0 5460 /* Re-enable sending Timestamps if we received them */
f427ee49 5461 if (!(tp->t_flags & TF_REQ_TSTMP)) {
3e170ce0 5462 tp->t_flags |= TF_REQ_TSTMP;
0a7de745 5463 }
1c79356b 5464 break;
8ad349bb 5465 case TCPOPT_SACK_PERMITTED:
f427ee49 5466 if (optlen != TCPOLEN_SACK_PERMITTED) {
1c79356b 5467 continue;
0a7de745
A
5468 }
5469 if (th->th_flags & TH_SYN) {
8ad349bb 5470 to->to_flags |= TOF_SACK;
0a7de745 5471 }
1c79356b 5472 break;
8ad349bb 5473 case TCPOPT_SACK:
0a7de745 5474 if (optlen <= 2 || (optlen - 2) % TCPOLEN_SACK != 0) {
1c79356b 5475 continue;
0a7de745 5476 }
8ad349bb
A
5477 to->to_nsacks = (optlen - 2) / TCPOLEN_SACK;
5478 to->to_sacks = cp + 2;
5479 tcpstat.tcps_sack_rcv_blocks++;
5480
1c79356b 5481 break;
3e170ce0
A
5482 case TCPOPT_FASTOPEN:
5483 if (optlen == TCPOLEN_FASTOPEN_REQ) {
0a7de745 5484 if (tp->t_state != TCPS_LISTEN) {
3e170ce0 5485 continue;
0a7de745 5486 }
3e170ce0
A
5487
5488 to->to_flags |= TOF_TFOREQ;
5489 } else {
5490 if (optlen < TCPOLEN_FASTOPEN_REQ ||
5491 (optlen - TCPOLEN_FASTOPEN_REQ) > TFO_COOKIE_LEN_MAX ||
0a7de745 5492 (optlen - TCPOLEN_FASTOPEN_REQ) < TFO_COOKIE_LEN_MIN) {
3e170ce0 5493 continue;
0a7de745 5494 }
3e170ce0 5495 if (tp->t_state != TCPS_LISTEN &&
0a7de745 5496 tp->t_state != TCPS_SYN_SENT) {
3e170ce0 5497 continue;
0a7de745 5498 }
3e170ce0
A
5499
5500 to->to_flags |= TOF_TFO;
5501 to->to_tfo = cp + 1;
5502 }
5503
5504 break;
39236c6e
A
5505#if MPTCP
5506 case TCPOPT_MULTIPATH:
5507 tcp_do_mptcp_options(tp, cp, th, to, optlen);
5508 break;
5509#endif /* MPTCP */
1c79356b
A
5510 }
5511 }
3e170ce0
A
5512}
5513
5514static void
5515tcp_finalize_options(struct tcpcb *tp, struct tcpopt *to, unsigned int ifscope)
5516{
5517 if (to->to_flags & TOF_TS) {
5518 tp->t_flags |= TF_RCVD_TSTMP;
5519 tp->ts_recent = to->to_tsval;
5520 tp->ts_recent_age = tcp_now;
3e170ce0 5521 }
0a7de745 5522 if (to->to_flags & TOF_MSS) {
3e170ce0 5523 tcp_mss(tp, to->to_mss, ifscope);
0a7de745 5524 }
3e170ce0 5525 if (SACK_ENABLED(tp)) {
0a7de745 5526 if (!(to->to_flags & TOF_SACK)) {
3e170ce0 5527 tp->t_flagsext &= ~(TF_SACK_ENABLE);
0a7de745 5528 } else {
3e170ce0 5529 tp->t_flags |= TF_SACK_PERMIT;
0a7de745 5530 }
3e170ce0
A
5531 }
5532 if (to->to_flags & TOF_SCALE) {
5533 tp->t_flags |= TF_RCVD_SCALE;
5534 tp->requested_s_scale = to->to_requested_s_scale;
5535
5536 /* Re-enable window scaling, if the option is received */
0a7de745 5537 if (tp->request_r_scale > 0) {
3e170ce0 5538 tp->t_flags |= TF_REQ_SCALE;
0a7de745 5539 }
3e170ce0 5540 }
1c79356b
A
5541}
5542
5543/*
5544 * Pull out of band byte out of a segment so
5545 * it doesn't appear in the user's data queue.
5546 * It is still reflected in the segment length for
5547 * sequencing purposes.
39037602
A
5548 *
5549 * @param off delayed to be droped hdrlen
1c79356b
A
5550 */
5551static void
39037602 5552tcp_pulloutofband(struct socket *so, struct tcphdr *th, struct mbuf *m, int off)
1c79356b 5553{
9bccf70c 5554 int cnt = off + th->th_urp - 1;
1c79356b
A
5555
5556 while (cnt >= 0) {
5557 if (m->m_len > cnt) {
5558 char *cp = mtod(m, caddr_t) + cnt;
5559 struct tcpcb *tp = sototcpcb(so);
5560
5561 tp->t_iobc = *cp;
5562 tp->t_oobflags |= TCPOOB_HAVEDATA;
0a7de745 5563 bcopy(cp + 1, cp, (unsigned)(m->m_len - cnt - 1));
1c79356b 5564 m->m_len--;
0a7de745 5565 if (m->m_flags & M_PKTHDR) {
9bccf70c 5566 m->m_pkthdr.len--;
0a7de745 5567 }
1c79356b
A
5568 return;
5569 }
5570 cnt -= m->m_len;
5571 m = m->m_next;
0a7de745 5572 if (m == 0) {
1c79356b 5573 break;
0a7de745 5574 }
1c79356b
A
5575 }
5576 panic("tcp_pulloutofband");
5577}
5578
6d2010ae 5579uint32_t
39037602 5580get_base_rtt(struct tcpcb *tp)
6d2010ae 5581{
ecc0ceb4 5582 struct rtentry *rt = tp->t_inpcb->inp_route.ro_rt;
0a7de745 5583 return (rt == NULL) ? 0 : rt->rtt_min;
6d2010ae
A
5584}
5585
5586/* Each value of RTT base represents the minimum RTT seen in a minute.
5587 * We keep upto N_RTT_BASE minutes worth of history.
5588 */
5589void
5590update_base_rtt(struct tcpcb *tp, uint32_t rtt)
5591{
39037602 5592 u_int32_t base_rtt, i;
ecc0ceb4 5593 struct rtentry *rt;
39236c6e 5594
0a7de745 5595 if ((rt = tp->t_inpcb->inp_route.ro_rt) == NULL) {
ecc0ceb4 5596 return;
0a7de745 5597 }
ecc0ceb4
A
5598 if (rt->rtt_expire_ts == 0) {
5599 RT_LOCK_SPIN(rt);
ecc0ceb4
A
5600 if (rt->rtt_expire_ts != 0) {
5601 RT_UNLOCK(rt);
5602 goto update;
5603 }
5604 rt->rtt_expire_ts = tcp_now;
5605 rt->rtt_index = 0;
5606 rt->rtt_hist[0] = rtt;
39037602 5607 rt->rtt_min = rtt;
ecc0ceb4
A
5608 RT_UNLOCK(rt);
5609 return;
5610 }
5611update:
39236c6e 5612#if TRAFFIC_MGT
ecc0ceb4
A
5613 /*
5614 * If the recv side is being throttled, check if the
5615 * current RTT is closer to the base RTT seen in
5616 * first (recent) two slots. If so, unthrottle the stream.
5617 */
5618 if ((tp->t_flagsext & TF_RECV_THROTTLE) &&
5619 (int)(tcp_now - tp->t_recv_throttle_ts) >= TCP_RECV_THROTTLE_WIN) {
39037602 5620 base_rtt = rt->rtt_min;
ecc0ceb4
A
5621 if (tp->t_rttcur <= (base_rtt + target_qdelay)) {
5622 tp->t_flagsext &= ~TF_RECV_THROTTLE;
5623 tp->t_recv_throttle_ts = 0;
39236c6e 5624 }
ecc0ceb4 5625 }
39236c6e 5626#endif /* TRAFFIC_MGT */
ecc0ceb4
A
5627 if ((int)(tcp_now - rt->rtt_expire_ts) >=
5628 TCP_RTT_HISTORY_EXPIRE_TIME) {
5629 RT_LOCK_SPIN(rt);
5630 /* check the condition again to avoid race */
5631 if ((int)(tcp_now - rt->rtt_expire_ts) >=
5632 TCP_RTT_HISTORY_EXPIRE_TIME) {
5633 rt->rtt_index++;
0a7de745 5634 if (rt->rtt_index >= NRTT_HIST) {
ecc0ceb4 5635 rt->rtt_index = 0;
0a7de745 5636 }
ecc0ceb4
A
5637 rt->rtt_hist[rt->rtt_index] = rtt;
5638 rt->rtt_expire_ts = tcp_now;
5639 } else {
5640 rt->rtt_hist[rt->rtt_index] =
5641 min(rt->rtt_hist[rt->rtt_index], rtt);
6d2010ae 5642 }
39037602
A
5643 /* forget the old value and update minimum */
5644 rt->rtt_min = 0;
5645 for (i = 0; i < NRTT_HIST; ++i) {
5646 if (rt->rtt_hist[i] != 0 &&
5647 (rt->rtt_min == 0 ||
0a7de745 5648 rt->rtt_hist[i] < rt->rtt_min)) {
39037602 5649 rt->rtt_min = rt->rtt_hist[i];
0a7de745 5650 }
39037602 5651 }
ecc0ceb4 5652 RT_UNLOCK(rt);
6d2010ae 5653 } else {
ecc0ceb4
A
5654 rt->rtt_hist[rt->rtt_index] =
5655 min(rt->rtt_hist[rt->rtt_index], rtt);
0a7de745 5656 if (rt->rtt_min == 0) {
39037602 5657 rt->rtt_min = rtt;
0a7de745 5658 } else {
39037602 5659 rt->rtt_min = min(rt->rtt_min, rtt);
0a7de745 5660 }
6d2010ae
A
5661 }
5662}
5663
39236c6e
A
5664/*
5665 * If we have a timestamp reply, update smoothed RTT. If no timestamp is
39037602
A
5666 * present but transmit timer is running and timed sequence number was
5667 * acked, update smoothed RTT.
39236c6e
A
5668 *
5669 * If timestamps are supported, a receiver can update RTT even if
5670 * there is no outstanding data.
5671 *
5672 * Some boxes send broken timestamp replies during the SYN+ACK phase,
39037602 5673 * ignore timestamps of 0or we could calculate a huge RTT and blow up
39236c6e
A
5674 * the retransmit timer.
5675 */
5676static void
5677tcp_compute_rtt(struct tcpcb *tp, struct tcpopt *to, struct tcphdr *th)
5678{
3e170ce0 5679 int rtt = 0;
39236c6e 5680 VERIFY(to != NULL && th != NULL);
3e170ce0
A
5681 if (tp->t_rtttime != 0 && SEQ_GT(th->th_ack, tp->t_rtseq)) {
5682 u_int32_t pipe_ack_val;
5683 rtt = tcp_now - tp->t_rtttime;
5684 /*
5685 * Compute pipe ack -- the amount of data acknowledged
5686 * in the last RTT
5687 */
5688 if (SEQ_GT(th->th_ack, tp->t_pipeack_lastuna)) {
5689 pipe_ack_val = th->th_ack - tp->t_pipeack_lastuna;
5690 /* Update the sample */
5691 tp->t_pipeack_sample[tp->t_pipeack_ind++] =
5692 pipe_ack_val;
5693 tp->t_pipeack_ind %= TCP_PIPEACK_SAMPLE_COUNT;
5694
5695 /* Compute the max of the pipeack samples */
5696 pipe_ack_val = tcp_get_max_pipeack(tp);
5697 tp->t_pipeack = (pipe_ack_val >
f427ee49 5698 tcp_initial_cwnd(tp)) ?
0a7de745 5699 pipe_ack_val : 0;
3e170ce0
A
5700 }
5701 /* start another measurement */
5702 tp->t_rtttime = 0;
5703 }
39037602 5704 if (((to->to_flags & TOF_TS) != 0) &&
0a7de745
A
5705 (to->to_tsecr != 0) &&
5706 TSTMP_GEQ(tcp_now, to->to_tsecr)) {
3e170ce0 5707 tcp_xmit_timer(tp, (tcp_now - to->to_tsecr),
0a7de745 5708 to->to_tsecr, th->th_ack);
3e170ce0
A
5709 } else if (rtt > 0) {
5710 tcp_xmit_timer(tp, rtt, 0, th->th_ack);
39236c6e
A
5711 }
5712}
5713
1c79356b 5714/*
d190cdc3
A
5715 * Collect new round-trip time estimate and update averages and
5716 * current timeout.
1c79356b
A
5717 */
5718static void
39037602 5719tcp_xmit_timer(struct tcpcb *tp, int rtt,
0a7de745 5720 u_int32_t tsecr, tcp_seq th_ack)
1c79356b 5721{
39037602 5722 int delta;
cb323159
A
5723 int old_srtt = tp->t_srtt;
5724 int old_rttvar = tp->t_rttvar;
5725 bool log_rtt = false;
1c79356b 5726
d190cdc3
A
5727 /*
5728 * On AWDL interface, the initial RTT measurement on SYN
5729 * can be wrong due to peer caching. Avoid the first RTT
5730 * measurement as it might skew up the RTO.
5731 * <rdar://problem/28739046>
5732 */
5733 if (tp->t_inpcb->inp_last_outifp != NULL &&
5734 (tp->t_inpcb->inp_last_outifp->if_eflags & IFEF_AWDL) &&
0a7de745 5735 th_ack == tp->iss + 1) {
d190cdc3 5736 return;
0a7de745 5737 }
d190cdc3 5738
39236c6e
A
5739 if (tp->t_flagsext & TF_RECOMPUTE_RTT) {
5740 if (SEQ_GT(th_ack, tp->snd_una) &&
5741 SEQ_LEQ(th_ack, tp->snd_max) &&
5742 (tsecr == 0 ||
5743 TSTMP_GEQ(tsecr, tp->t_badrexmt_time))) {
5744 /*
f427ee49 5745 * We received a new ACK after a
39037602 5746 * spurious timeout. Adapt retransmission
39236c6e
A
5747 * timer as described in rfc 4015.
5748 */
5749 tp->t_flagsext &= ~(TF_RECOMPUTE_RTT);
5750 tp->t_badrexmt_time = 0;
5751 tp->t_srtt = max(tp->t_srtt_prev, rtt);
5752 tp->t_srtt = tp->t_srtt << TCP_RTT_SHIFT;
5753 tp->t_rttvar = max(tp->t_rttvar_prev, (rtt >> 1));
5754 tp->t_rttvar = tp->t_rttvar << TCP_RTTVAR_SHIFT;
5755
0a7de745 5756 if (tp->t_rttbest > (tp->t_srtt + tp->t_rttvar)) {
39236c6e 5757 tp->t_rttbest = tp->t_srtt + tp->t_rttvar;
0a7de745 5758 }
39236c6e
A
5759
5760 goto compute_rto;
5761 } else {
5762 return;
5763 }
5764 }
5765
1c79356b
A
5766 tcpstat.tcps_rttupdated++;
5767 tp->t_rttupdated++;
6d2010ae
A
5768
5769 if (rtt > 0) {
5770 tp->t_rttcur = rtt;
5771 update_base_rtt(tp, rtt);
5772 }
5773
1c79356b
A
5774 if (tp->t_srtt != 0) {
5775 /*
5776 * srtt is stored as fixed point with 5 bits after the
6d2010ae 5777 * binary point (i.e., scaled by 32). The following magic
1c79356b
A
5778 * is equivalent to the smoothing algorithm in rfc793 with
5779 * an alpha of .875 (srtt = rtt/8 + srtt*7/8 in fixed
6d2010ae
A
5780 * point).
5781 *
39037602
A
5782 * Freebsd adjusts rtt to origin 0 by subtracting 1
5783 * from the provided rtt value. This was required because
5784 * of the way t_rtttime was initiailised to 1 before.
39236c6e 5785 * Since we changed t_rtttime to be based on
6d2010ae 5786 * tcp_now, this extra adjustment is not needed.
1c79356b 5787 */
6d2010ae 5788 delta = (rtt << TCP_DELTA_SHIFT)
0a7de745 5789 - (tp->t_srtt >> (TCP_RTT_SHIFT - TCP_DELTA_SHIFT));
1c79356b 5790
0a7de745 5791 if ((tp->t_srtt += delta) <= 0) {
1c79356b 5792 tp->t_srtt = 1;
0a7de745 5793 }
1c79356b
A
5794
5795 /*
5796 * We accumulate a smoothed rtt variance (actually, a
5797 * smoothed mean difference), then set the retransmit
5798 * timer to smoothed rtt + 4 times the smoothed variance.
5799 * rttvar is stored as fixed point with 4 bits after the
5800 * binary point (scaled by 16). The following is
5801 * equivalent to rfc793 smoothing with an alpha of .75
5802 * (rttvar = rttvar*3/4 + |delta| / 4). This replaces
5803 * rfc793's wired-in beta.
5804 */
0a7de745 5805 if (delta < 0) {
1c79356b 5806 delta = -delta;
0a7de745 5807 }
1c79356b 5808 delta -= tp->t_rttvar >> (TCP_RTTVAR_SHIFT - TCP_DELTA_SHIFT);
0a7de745 5809 if ((tp->t_rttvar += delta) <= 0) {
1c79356b 5810 tp->t_rttvar = 1;
0a7de745
A
5811 }
5812 if (tp->t_rttbest == 0 ||
5813 tp->t_rttbest > (tp->t_srtt + tp->t_rttvar)) {
316670eb 5814 tp->t_rttbest = tp->t_srtt + tp->t_rttvar;
0a7de745 5815 }
1c79356b
A
5816 } else {
5817 /*
5818 * No rtt measurement yet - use the unsmoothed rtt.
5819 * Set the variance to half the rtt (so our first
5820 * retransmit happens at 3*rtt).
5821 */
5822 tp->t_srtt = rtt << TCP_RTT_SHIFT;
5823 tp->t_rttvar = rtt << (TCP_RTTVAR_SHIFT - 1);
f427ee49 5824 tp->t_rttbest = tp->t_srtt + tp->t_rttvar;
1c79356b 5825 }
39236c6e
A
5826
5827compute_rto:
39037602 5828 nstat_route_rtt(tp->t_inpcb->inp_route.ro_rt, tp->t_srtt,
0a7de745 5829 tp->t_rttvar);
1c79356b
A
5830
5831 /*
5832 * the retransmit should happen at rtt + 4 * rttvar.
5833 * Because of the way we do the smoothing, srtt and rttvar
5834 * will each average +1/2 tick of bias. When we compute
5835 * the retransmit timer, we want 1/2 tick of rounding and
5836 * 1 extra tick because of +-1/2 tick uncertainty in the
5837 * firing of the timer. The bias will give us exactly the
5838 * 1.5 tick we need. But, because the bias is
5839 * statistical, we have to test that we don't drop below
5840 * the minimum feasible timer (which is 2 ticks).
5841 */
5842 TCPT_RANGESET(tp->t_rxtcur, TCP_REXMTVAL(tp),
0a7de745
A
5843 max(tp->t_rttmin, rtt + 2), TCPTV_REXMTMAX,
5844 TCP_ADD_REXMTSLOP(tp));
1c79356b
A
5845
5846 /*
5847 * We received an ack for a packet that wasn't retransmitted;
5848 * it is probably safe to discard any error indications we've
5849 * received recently. This isn't quite right, but close enough
5850 * for now (a route might have failed after we sent a segment,
5851 * and the return path might not be symmetrical).
5852 */
5853 tp->t_softerror = 0;
cb323159
A
5854
5855 if (log_rtt) {
5856 TCP_LOG_RTT_INFO(tp);
5857 }
5858
5859 TCP_LOG_RTT_CHANGE(tp, old_srtt, old_rttvar);
1c79356b
A
5860}
5861
2d21ac55
A
5862static inline unsigned int
5863tcp_maxmtu(struct rtentry *rt)
5864{
5865 unsigned int maxmtu;
d9a64523 5866 int interface_mtu = 0;
2d21ac55 5867
b0d623f7 5868 RT_LOCK_ASSERT_HELD(rt);
d9a64523
A
5869 interface_mtu = rt->rt_ifp->if_mtu;
5870
5871 if (rt_key(rt)->sa_family == AF_INET &&
5872 INTF_ADJUST_MTU_FOR_CLAT46(rt->rt_ifp)) {
5873 interface_mtu = IN6_LINKMTU(rt->rt_ifp);
5874 /* Further adjust the size for CLAT46 expansion */
5875 interface_mtu -= CLAT46_HDR_EXPANSION_OVERHD;
5876 }
5877
0a7de745 5878 if (rt->rt_rmx.rmx_mtu == 0) {
d9a64523 5879 maxmtu = interface_mtu;
0a7de745 5880 } else {
d9a64523 5881 maxmtu = MIN(rt->rt_rmx.rmx_mtu, interface_mtu);
0a7de745 5882 }
2d21ac55 5883
0a7de745 5884 return maxmtu;
2d21ac55
A
5885}
5886
2d21ac55
A
5887static inline unsigned int
5888tcp_maxmtu6(struct rtentry *rt)
5889{
5890 unsigned int maxmtu;
3e170ce0 5891 struct nd_ifinfo *ndi = NULL;
2d21ac55 5892
b0d623f7 5893 RT_LOCK_ASSERT_HELD(rt);
0a7de745 5894 if ((ndi = ND_IFINFO(rt->rt_ifp)) != NULL && !ndi->initialized) {
316670eb 5895 ndi = NULL;
0a7de745
A
5896 }
5897 if (ndi != NULL) {
316670eb 5898 lck_mtx_lock(&ndi->lock);
0a7de745
A
5899 }
5900 if (rt->rt_rmx.rmx_mtu == 0) {
2d21ac55 5901 maxmtu = IN6_LINKMTU(rt->rt_ifp);
0a7de745 5902 } else {
2d21ac55 5903 maxmtu = MIN(rt->rt_rmx.rmx_mtu, IN6_LINKMTU(rt->rt_ifp));
0a7de745
A
5904 }
5905 if (ndi != NULL) {
316670eb 5906 lck_mtx_unlock(&ndi->lock);
0a7de745 5907 }
2d21ac55 5908
0a7de745 5909 return maxmtu;
2d21ac55 5910}
2d21ac55 5911
5ba3f43e
A
5912unsigned int
5913get_maxmtu(struct rtentry *rt)
5914{
5915 unsigned int maxmtu = 0;
5916
5917 RT_LOCK_ASSERT_NOTHELD(rt);
5918
5919 RT_LOCK(rt);
5920
5921 if (rt_key(rt)->sa_family == AF_INET6) {
5922 maxmtu = tcp_maxmtu6(rt);
5923 } else {
5924 maxmtu = tcp_maxmtu(rt);
5925 }
5926
5927 RT_UNLOCK(rt);
5928
0a7de745 5929 return maxmtu;
5ba3f43e
A
5930}
5931
1c79356b
A
5932/*
5933 * Determine a reasonable value for maxseg size.
5934 * If the route is known, check route for mtu.
5935 * If none, use an mss that can be handled on the outgoing
5936 * interface without forcing IP to fragment; if bigger than
5937 * an mbuf cluster (MCLBYTES), round down to nearest multiple of MCLBYTES
5938 * to utilize large mbufs. If no route is found, route has no mtu,
5939 * or the destination isn't local, use a default, hopefully conservative
5940 * size (usually 512 or the default IP max size, but no more than the mtu
5941 * of the interface), as we can't discover anything about intervening
5942 * gateways or networks. We also initialize the congestion/slow start
39037602
A
5943 * window. While looking at the routing entry, we also initialize
5944 * other path-dependent parameters from pre-set or cached values
fe8ab488 5945 * in the routing entry.
1c79356b
A
5946 *
5947 * Also take into account the space needed for options that we
5948 * send regularly. Make maxseg shorter by that amount to assure
5949 * that we can send maxseg amount of data even when the options
5950 * are present. Store the upper limit of the length of options plus
5951 * data in maxopd.
5952 *
5953 * NOTE that this routine is only called when we process an incoming
5954 * segment, for outgoing segments only tcp_mssopt is called.
5955 *
1c79356b
A
5956 */
5957void
39037602 5958tcp_mss(struct tcpcb *tp, int offer, unsigned int input_ifscope)
1c79356b 5959{
ecc0ceb4 5960 struct rtentry *rt;
1c79356b 5961 struct ifnet *ifp;
ecc0ceb4 5962 int rtt, mss;
b0d623f7 5963 u_int32_t bufsize;
1c79356b
A
5964 struct inpcb *inp;
5965 struct socket *so;
1c79356b 5966 int origoffer = offer;
b0d623f7 5967 u_int32_t sb_max_corrected;
2d21ac55 5968 int isnetlocal = 0;
9bccf70c
A
5969 int isipv6;
5970 int min_protoh;
1c79356b
A
5971
5972 inp = tp->t_inpcb;
cb323159
A
5973
5974 so = inp->inp_socket;
5975 /*
5976 * Nothing left to send after the socket is defunct or TCP is in the closed state
5977 */
5978 if ((so->so_state & SS_DEFUNCT) || tp->t_state == TCPS_CLOSED) {
5979 return;
5980 }
5981
9bccf70c 5982 isipv6 = ((inp->inp_vflag & INP_IPV6) != 0) ? 1 : 0;
0a7de745
A
5983 min_protoh = isipv6 ? sizeof(struct ip6_hdr) + sizeof(struct tcphdr)
5984 : sizeof(struct tcpiphdr);
b0d623f7 5985
2d21ac55 5986 if (isipv6) {
6d2010ae 5987 rt = tcp_rtlookup6(inp, input_ifscope);
f427ee49 5988 } else {
c910b4d9 5989 rt = tcp_rtlookup(inp, input_ifscope);
2d21ac55 5990 }
6d2010ae
A
5991 isnetlocal = (tp->t_flags & TF_LOCAL);
5992
1c79356b 5993 if (rt == NULL) {
f427ee49 5994 tp->t_maxopd = tp->t_maxseg = isipv6 ? tcp_v6mssdflt : tcp_mssdflt;
1c79356b
A
5995 return;
5996 }
5997 ifp = rt->rt_ifp;
d12e1678
A
5998 /*
5999 * Slower link window correction:
fe8ab488
A
6000 * If a value is specificied for slowlink_wsize use it for
6001 * PPP links believed to be on a serial modem (speed <128Kbps).
6002 * Excludes 9600bps as it is the default value adversized
6003 * by pseudo-devices over ppp.
d12e1678 6004 */
39037602 6005 if (ifp->if_type == IFT_PPP && slowlink_wsize > 0 &&
d12e1678
A
6006 ifp->if_baudrate > 9600 && ifp->if_baudrate <= 128000) {
6007 tp->t_flags |= TF_SLOWLINK;
6008 }
1c79356b 6009
1c79356b 6010 /*
f427ee49 6011 * Offer == -1 means that we didn't receive SYN yet. Use 0 then.
1c79356b 6012 */
0a7de745 6013 if (offer == -1) {
f427ee49 6014 offer = rt->rt_rmx.rmx_filler[0];
0a7de745 6015 }
1c79356b
A
6016 /*
6017 * Offer == 0 means that there was no MSS on the SYN segment,
6018 * in this case we use tcp_mssdflt.
6019 */
0a7de745 6020 if (offer == 0) {
f427ee49 6021 offer = isipv6 ? tcp_v6mssdflt : tcp_mssdflt;
0a7de745 6022 } else {
e5568f75
A
6023 /*
6024 * Prevent DoS attack with too small MSS. Round up
6025 * to at least minmss.
6026 */
6027 offer = max(offer, tcp_minmss);
1c79356b
A
6028 /*
6029 * Sanity check: make sure that maxopd will be large
6030 * enough to allow some data on segments even is the
6031 * all the option space is used (40bytes). Otherwise
6032 * funny things may happen in tcp_output.
6033 */
6034 offer = max(offer, 64);
e5568f75 6035 }
f427ee49 6036 rt->rt_rmx.rmx_filler[0] = offer;
1c79356b
A
6037
6038 /*
6039 * While we're here, check if there's an initial rtt
6040 * or rttvar. Convert from the route-table units
6041 * to scaled multiples of the slow timeout timer.
6042 */
316670eb
A
6043 if (tp->t_srtt == 0 && (rtt = rt->rt_rmx.rmx_rtt) != 0) {
6044 tcp_getrt_rtt(tp, rt);
6045 } else {
6d2010ae 6046 tp->t_rttmin = isnetlocal ? tcp_TCPTV_MIN : TCPTV_REXMTMIN;
316670eb 6047 }
2d21ac55 6048
2d21ac55 6049 mss = (isipv6 ? tcp_maxmtu6(rt) : tcp_maxmtu(rt));
3e170ce0
A
6050
6051#if NECP
6052 // At this point, the mss is just the MTU. Adjust if necessary.
6053 mss = necp_socket_get_effective_mtu(inp, mss);
6054#endif /* NECP */
6055
2d21ac55
A
6056 mss -= min_protoh;
6057
6058 if (rt->rt_rmx.rmx_mtu == 0) {
1c79356b 6059 if (isipv6) {
0a7de745 6060 if (!isnetlocal) {
1c79356b 6061 mss = min(mss, tcp_v6mssdflt);
0a7de745 6062 }
f427ee49 6063 } else if (!isnetlocal) {
1c79356b 6064 mss = min(mss, tcp_mssdflt);
0a7de745 6065 }
1c79356b 6066 }
2d21ac55 6067
1c79356b
A
6068 mss = min(mss, offer);
6069 /*
6070 * maxopd stores the maximum length of data AND options
6071 * in a segment; maxseg is the amount of data in a normal
6072 * segment. We need to store this value (maxopd) apart
6073 * from maxseg, because now every segment carries options
6074 * and thus we normally have somewhat less data in segments.
6075 */
6076 tp->t_maxopd = mss;
6077
6078 /*
8ad349bb
A
6079 * origoffer==-1 indicates, that no segments were received yet.
6080 * In this case we just guess.
1c79356b 6081 */
0a7de745 6082 if ((tp->t_flags & (TF_REQ_TSTMP | TF_NOOPT)) == TF_REQ_TSTMP &&
1c79356b 6083 (origoffer == -1 ||
0a7de745 6084 (tp->t_flags & TF_RCVD_TSTMP) == TF_RCVD_TSTMP)) {
1c79356b 6085 mss -= TCPOLEN_TSTAMP_APPA;
0a7de745 6086 }
1c79356b 6087
39236c6e
A
6088#if MPTCP
6089 mss -= mptcp_adj_mss(tp, FALSE);
6090#endif /* MPTCP */
6091 tp->t_maxseg = mss;
39037602 6092
2d21ac55
A
6093 /*
6094 * Calculate corrected value for sb_max; ensure to upgrade the
6095 * numerator for large sb_max values else it will overflow.
6096 */
6097 sb_max_corrected = (sb_max * (u_int64_t)MCLBYTES) / (MSIZE + MCLBYTES);
6098
1c79356b 6099 /*
55e303ae
A
6100 * If there's a pipesize (ie loopback), change the socket
6101 * buffer to that size only if it's bigger than the current
6102 * sockbuf size. Make the socket buffers an integral
1c79356b
A
6103 * number of mss units; if the mss is larger than
6104 * the socket buffer, decrease the mss.
6105 */
6106#if RTV_SPIPE
55e303ae
A
6107 bufsize = rt->rt_rmx.rmx_sendpipe;
6108 if (bufsize < so->so_snd.sb_hiwat)
1c79356b 6109#endif
0a7de745
A
6110 bufsize = so->so_snd.sb_hiwat;
6111 if (bufsize < mss) {
1c79356b 6112 mss = bufsize;
0a7de745 6113 } else {
2d21ac55 6114 bufsize = (((bufsize + (u_int64_t)mss - 1) / (u_int64_t)mss) * (u_int64_t)mss);
0a7de745 6115 if (bufsize > sb_max_corrected) {
2d21ac55 6116 bufsize = sb_max_corrected;
0a7de745 6117 }
1c79356b
A
6118 (void)sbreserve(&so->so_snd, bufsize);
6119 }
6120 tp->t_maxseg = mss;
6121
a39ff7e2
A
6122 ASSERT(tp->t_maxseg);
6123
39037602
A
6124 /*
6125 * Update MSS using recommendation from link status report. This is
6126 * temporary
6127 */
6128 tcp_update_mss_locked(so, ifp);
6129
1c79356b 6130#if RTV_RPIPE
55e303ae
A
6131 bufsize = rt->rt_rmx.rmx_recvpipe;
6132 if (bufsize < so->so_rcv.sb_hiwat)
1c79356b 6133#endif
0a7de745 6134 bufsize = so->so_rcv.sb_hiwat;
1c79356b 6135 if (bufsize > mss) {
2d21ac55 6136 bufsize = (((bufsize + (u_int64_t)mss - 1) / (u_int64_t)mss) * (u_int64_t)mss);
0a7de745 6137 if (bufsize > sb_max_corrected) {
2d21ac55 6138 bufsize = sb_max_corrected;
0a7de745 6139 }
1c79356b
A
6140 (void)sbreserve(&so->so_rcv, bufsize);
6141 }
9bccf70c 6142
6d2010ae 6143 set_tcp_stream_priority(so);
1c79356b
A
6144
6145 if (rt->rt_rmx.rmx_ssthresh) {
6146 /*
6147 * There's some sort of gateway or interface
6148 * buffer limit on the path. Use this to set
fe8ab488
A
6149 * slow-start threshold, but set the threshold to
6150 * no less than 2*mss.
1c79356b
A
6151 */
6152 tp->snd_ssthresh = max(2 * mss, rt->rt_rmx.rmx_ssthresh);
6153 tcpstat.tcps_usedssthresh++;
b0d623f7 6154 } else {
cf7d32b8 6155 tp->snd_ssthresh = TCP_MAXWIN << TCP_MAX_WINSHIFT;
b0d623f7 6156 }
cf7d32b8 6157
6d2010ae
A
6158 /*
6159 * Set the slow-start flight size depending on whether this
6160 * is a local network or not.
6161 */
0a7de745 6162 if (CC_ALGO(tp)->cwnd_init != NULL) {
6d2010ae 6163 CC_ALGO(tp)->cwnd_init(tp);
0a7de745 6164 }
6d2010ae 6165
fe8ab488 6166 tcp_ccdbg_trace(tp, NULL, TCP_CC_CWND_INIT);
6d2010ae 6167
b0d623f7
A
6168 /* Route locked during lookup above */
6169 RT_UNLOCK(rt);
1c79356b
A
6170}
6171
6172/*
6173 * Determine the MSS option to send on an outgoing SYN.
6174 */
6175int
39037602 6176tcp_mssopt(struct tcpcb *tp)
1c79356b
A
6177{
6178 struct rtentry *rt;
8ad349bb 6179 int mss;
9bccf70c
A
6180 int isipv6;
6181 int min_protoh;
1c79356b 6182
9bccf70c 6183 isipv6 = ((tp->t_inpcb->inp_vflag & INP_IPV6) != 0) ? 1 : 0;
0a7de745
A
6184 min_protoh = isipv6 ? sizeof(struct ip6_hdr) + sizeof(struct tcphdr)
6185 : sizeof(struct tcpiphdr);
b0d623f7 6186
0a7de745 6187 if (isipv6) {
6d2010ae 6188 rt = tcp_rtlookup6(tp->t_inpcb, IFSCOPE_NONE);
f427ee49
A
6189 } else {
6190 rt = tcp_rtlookup(tp->t_inpcb, IFSCOPE_NONE);
6191 }
2d21ac55 6192 if (rt == NULL) {
f427ee49 6193 return isipv6 ? tcp_v6mssdflt : tcp_mssdflt;
2d21ac55 6194 }
d12e1678
A
6195 /*
6196 * Slower link window correction:
6197 * If a value is specificied for slowlink_wsize use it for PPP links
6198 * believed to be on a serial modem (speed <128Kbps). Excludes 9600bps as
6199 * it is the default value adversized by pseudo-devices over ppp.
6200 */
39037602 6201 if (rt->rt_ifp->if_type == IFT_PPP && slowlink_wsize > 0 &&
d12e1678
A
6202 rt->rt_ifp->if_baudrate > 9600 && rt->rt_ifp->if_baudrate <= 128000) {
6203 tp->t_flags |= TF_SLOWLINK;
6204 }
1c79356b 6205
2d21ac55 6206 mss = (isipv6 ? tcp_maxmtu6(rt) : tcp_maxmtu(rt));
b0d623f7
A
6207 /* Route locked during lookup above */
6208 RT_UNLOCK(rt);
3e170ce0
A
6209
6210#if NECP
6211 // At this point, the mss is just the MTU. Adjust if necessary.
6212 mss = necp_socket_get_effective_mtu(tp->t_inpcb, mss);
6213#endif /* NECP */
6214
0a7de745 6215 return mss - min_protoh;
9bccf70c
A
6216}
6217
9bccf70c 6218/*
8ad349bb
A
6219 * On a partial ack arrives, force the retransmission of the
6220 * next unacknowledged segment. Do not clear tp->t_dupacks.
6d2010ae 6221 * By setting snd_nxt to th_ack, this forces retransmission timer to
8ad349bb 6222 * be started again.
9bccf70c 6223 */
8ad349bb 6224static void
39037602 6225tcp_newreno_partial_ack(struct tcpcb *tp, struct tcphdr *th)
9bccf70c 6226{
0a7de745
A
6227 tcp_seq onxt = tp->snd_nxt;
6228 u_int32_t ocwnd = tp->snd_cwnd;
6229 tp->t_timer[TCPT_REXMT] = 0;
6230 tp->t_timer[TCPT_PTO] = 0;
6231 tp->t_rtttime = 0;
6232 tp->snd_nxt = th->th_ack;
6233 /*
6234 * Set snd_cwnd to one segment beyond acknowledged offset
6235 * (tp->snd_una has not yet been updated when this function
6236 * is called)
6237 */
6238 tp->snd_cwnd = tp->t_maxseg + BYTES_ACKED(th, tp);
0a7de745
A
6239 (void) tcp_output(tp);
6240 tp->snd_cwnd = ocwnd;
6241 if (SEQ_GT(onxt, tp->snd_nxt)) {
6242 tp->snd_nxt = onxt;
6243 }
6244 /*
6245 * Partial window deflation. Relies on fact that tp->snd_una
6246 * not updated yet.
6247 */
6248 if (tp->snd_cwnd > BYTES_ACKED(th, tp)) {
6249 tp->snd_cwnd -= BYTES_ACKED(th, tp);
6250 } else {
6251 tp->snd_cwnd = 0;
6252 }
6253 tp->snd_cwnd += tp->t_maxseg;
1c79356b 6254}
91447636
A
6255
6256/*
6257 * Drop a random TCP connection that hasn't been serviced yet and
6258 * is eligible for discard. There is a one in qlen chance that
6259 * we will return a null, saying that there are no dropable
6260 * requests. In this case, the protocol specific code should drop
6261 * the new request. This insures fairness.
6262 *
6263 * The listening TCP socket "head" must be locked
6264 */
6265static int
2d21ac55 6266tcp_dropdropablreq(struct socket *head)
91447636 6267{
2d21ac55 6268 struct socket *so, *sonext;
91447636 6269 unsigned int i, j, qlen;
39236c6e
A
6270 static u_int32_t rnd = 0;
6271 static u_int64_t old_runtime;
91447636 6272 static unsigned int cur_cnt, old_cnt;
39236c6e 6273 u_int64_t now_sec;
91447636 6274 struct inpcb *inp = NULL;
3a60a9f5 6275 struct tcpcb *tp;
2d21ac55 6276
0a7de745
A
6277 if ((head->so_options & SO_ACCEPTCONN) == 0) {
6278 return 0;
6279 }
39236c6e 6280
0a7de745
A
6281 if (TAILQ_EMPTY(&head->so_incomp)) {
6282 return 0;
6283 }
39236c6e 6284
813fb2f6 6285 so_acquire_accept_list(head, NULL);
5ba3f43e 6286 socket_unlock(head, 0);
813fb2f6 6287
39037602 6288 /*
39236c6e
A
6289 * Check if there is any socket in the incomp queue
6290 * that is closed because of a reset from the peer and is
6291 * waiting to be garbage collected. If so, pick that as
6292 * the victim
6293 */
6294 TAILQ_FOREACH_SAFE(so, &head->so_incomp, so_list, sonext) {
6295 inp = sotoinpcb(so);
6296 tp = intotcpcb(inp);
6297 if (tp != NULL && tp->t_state == TCPS_CLOSED &&
6298 so->so_head != NULL &&
0a7de745
A
6299 (so->so_state & (SS_INCOMP | SS_CANTSENDMORE | SS_CANTRCVMORE)) ==
6300 (SS_INCOMP | SS_CANTSENDMORE | SS_CANTRCVMORE)) {
39037602
A
6301 /*
6302 * The listen socket is already locked but we
39236c6e
A
6303 * can lock this socket here without lock ordering
6304 * issues because it is in the incomp queue and
6305 * is not visible to others.
6306 */
5ba3f43e 6307 if (socket_try_lock(so)) {
39236c6e
A
6308 so->so_usecount++;
6309 goto found_victim;
6310 } else {
6311 continue;
6312 }
6313 }
6314 }
2d21ac55
A
6315
6316 so = TAILQ_FIRST(&head->so_incomp);
2d21ac55 6317
39236c6e
A
6318 now_sec = net_uptime();
6319 if ((i = (now_sec - old_runtime)) != 0) {
6320 old_runtime = now_sec;
91447636
A
6321 old_cnt = cur_cnt / i;
6322 cur_cnt = 0;
6323 }
39037602 6324
91447636 6325 qlen = head->so_incqlen;
0a7de745 6326 if (rnd == 0) {
39236c6e 6327 rnd = RandomULong();
0a7de745 6328 }
39236c6e 6329
91447636
A
6330 if (++cur_cnt > qlen || old_cnt > qlen) {
6331 rnd = (314159 * rnd + 66329) & 0xffff;
6332 j = ((qlen + 1) * rnd) >> 16;
6333
0a7de745 6334 while (j-- && so) {
91447636 6335 so = TAILQ_NEXT(so, so_list);
0a7de745 6336 }
91447636 6337 }
2d21ac55 6338 /* Find a connection that is not already closing (or being served) */
91447636
A
6339 while (so) {
6340 inp = (struct inpcb *)so->so_pcb;
39037602 6341
2d21ac55
A
6342 sonext = TAILQ_NEXT(so, so_list);
6343
5ba3f43e 6344 if (in_pcb_checkstate(inp, WNT_ACQUIRE, 0) != WNT_STOPUSING) {
39037602 6345 /*
39236c6e 6346 * Avoid the issue of a socket being accepted
39037602
A
6347 * by one input thread and being dropped by
6348 * another input thread. If we can't get a hold
6349 * on this mutex, then grab the next socket in
39236c6e 6350 * line.
2d21ac55 6351 */
5ba3f43e 6352 if (socket_try_lock(so)) {
2d21ac55 6353 so->so_usecount++;
39037602 6354 if ((so->so_usecount == 2) &&
39236c6e 6355 (so->so_state & SS_INCOMP) &&
0a7de745 6356 !(so->so_flags & SOF_INCOMP_INPROGRESS)) {
2d21ac55 6357 break;
39236c6e 6358 } else {
39037602
A
6359 /*
6360 * don't use if being accepted or
39236c6e
A
6361 * used in any other way
6362 */
2d21ac55 6363 in_pcb_checkstate(inp, WNT_RELEASE, 1);
5ba3f43e 6364 socket_unlock(so, 1);
2d21ac55 6365 }
39236c6e 6366 } else {
39037602
A
6367 /*
6368 * do not try to lock the inp in
6369 * in_pcb_checkstate because the lock
39236c6e 6370 * is already held in some other thread.
b0d623f7
A
6371 * Only drop the inp_wntcnt reference.
6372 */
6373 in_pcb_checkstate(inp, WNT_RELEASE, 1);
6374 }
2d21ac55
A
6375 }
6376 so = sonext;
91447636 6377 }
39236c6e 6378 if (so == NULL) {
813fb2f6
A
6379 socket_lock(head, 0);
6380 so_release_accept_list(head);
0a7de745 6381 return 0;
39236c6e 6382 }
2d21ac55 6383
2d21ac55
A
6384 /* Makes sure socket is still in the right state to be discarded */
6385
91447636 6386 if (in_pcb_checkstate(inp, WNT_RELEASE, 1) == WNT_STOPUSING) {
5ba3f43e 6387 socket_unlock(so, 1);
813fb2f6
A
6388 socket_lock(head, 0);
6389 so_release_accept_list(head);
0a7de745 6390 return 0;
91447636 6391 }
2d21ac55 6392
39236c6e 6393found_victim:
2d21ac55 6394 if (so->so_usecount != 2 || !(so->so_state & SS_INCOMP)) {
6d2010ae 6395 /* do not discard: that socket is being accepted */
5ba3f43e 6396 socket_unlock(so, 1);
813fb2f6
A
6397 socket_lock(head, 0);
6398 so_release_accept_list(head);
0a7de745 6399 return 0;
2d21ac55
A
6400 }
6401
813fb2f6 6402 socket_lock(head, 0);
6d2010ae 6403 TAILQ_REMOVE(&head->so_incomp, so, so_list);
d190cdc3
A
6404 head->so_incqlen--;
6405 head->so_qlen--;
6406 so->so_state &= ~SS_INCOMP;
6407 so->so_flags |= SOF_OVERFLOW;
6408 so->so_head = NULL;
813fb2f6 6409 so_release_accept_list(head);
5ba3f43e 6410 socket_unlock(head, 0);
91447636 6411
5ba3f43e 6412 socket_lock_assert_owned(so);
3a60a9f5 6413 tp = sototcpcb(so);
6d2010ae
A
6414
6415 tcp_close(tp);
6d2010ae 6416 if (inp->inp_wantcnt > 0 && inp->inp_wantcnt != WNT_STOPUSING) {
39037602 6417 /*
39236c6e 6418 * Some one has a wantcnt on this pcb. Since WNT_ACQUIRE
6d2010ae
A
6419 * doesn't require a lock, it could have happened while
6420 * we are holding the lock. This pcb will have to
6421 * be garbage collected later.
6422 * Release the reference held for so_incomp queue
6423 */
d190cdc3 6424 VERIFY(so->so_usecount > 0);
6d2010ae 6425 so->so_usecount--;
5ba3f43e 6426 socket_unlock(so, 1);
6d2010ae 6427 } else {
39037602
A
6428 /*
6429 * Unlock this socket and leave the reference on.
6430 * We need to acquire the pcbinfo lock in order to
6431 * fully dispose it off
6d2010ae 6432 */
5ba3f43e 6433 socket_unlock(so, 0);
6d2010ae 6434
39236c6e 6435 lck_rw_lock_exclusive(tcbinfo.ipi_lock);
6d2010ae 6436
5ba3f43e 6437 socket_lock(so, 0);
6d2010ae 6438 /* Release the reference held for so_incomp queue */
d190cdc3 6439 VERIFY(so->so_usecount > 0);
6d2010ae
A
6440 so->so_usecount--;
6441
39037602
A
6442 if (so->so_usecount != 1 ||
6443 (inp->inp_wantcnt > 0 &&
39236c6e 6444 inp->inp_wantcnt != WNT_STOPUSING)) {
39037602
A
6445 /*
6446 * There is an extra wantcount or usecount
6447 * that must have been added when the socket
6448 * was unlocked. This socket will have to be
39236c6e 6449 * garbage collected later
6d2010ae 6450 */
5ba3f43e 6451 socket_unlock(so, 1);
6d2010ae 6452 } else {
6d2010ae 6453 /* Drop the reference held for this function */
d190cdc3 6454 VERIFY(so->so_usecount > 0);
6d2010ae
A
6455 so->so_usecount--;
6456
6457 in_pcbdispose(inp);
6458 }
39236c6e 6459 lck_rw_done(tcbinfo.ipi_lock);
6d2010ae 6460 }
3a60a9f5 6461 tcpstat.tcps_drops++;
6d2010ae 6462
5ba3f43e 6463 socket_lock(head, 0);
0a7de745 6464 return 1;
6d2010ae
A
6465}
6466
6467/* Set background congestion control on a socket */
6468void
6469tcp_set_background_cc(struct socket *so)
6470{
6471 tcp_set_new_cc(so, TCP_CC_ALGO_BACKGROUND_INDEX);
6472}
6473
6474/* Set foreground congestion control on a socket */
6475void
6476tcp_set_foreground_cc(struct socket *so)
6477{
0a7de745 6478 if (tcp_use_newreno) {
fe8ab488 6479 tcp_set_new_cc(so, TCP_CC_ALGO_NEWRENO_INDEX);
0a7de745 6480 } else {
fe8ab488 6481 tcp_set_new_cc(so, TCP_CC_ALGO_CUBIC_INDEX);
0a7de745 6482 }
6d2010ae
A
6483}
6484
6485static void
6486tcp_set_new_cc(struct socket *so, uint16_t cc_index)
6487{
6488 struct inpcb *inp = sotoinpcb(so);
6489 struct tcpcb *tp = intotcpcb(inp);
39236c6e 6490 u_char old_cc_index = 0;
6d2010ae 6491 if (tp->tcp_cc_index != cc_index) {
6d2010ae
A
6492 old_cc_index = tp->tcp_cc_index;
6493
0a7de745 6494 if (CC_ALGO(tp)->cleanup != NULL) {
6d2010ae 6495 CC_ALGO(tp)->cleanup(tp);
0a7de745 6496 }
6d2010ae
A
6497 tp->tcp_cc_index = cc_index;
6498
fe8ab488
A
6499 tcp_cc_allocate_state(tp);
6500
0a7de745 6501 if (CC_ALGO(tp)->switch_to != NULL) {
fe8ab488 6502 CC_ALGO(tp)->switch_to(tp, old_cc_index);
0a7de745 6503 }
fe8ab488
A
6504
6505 tcp_ccdbg_trace(tp, NULL, TCP_CC_CHANGE_ALGO);
6d2010ae 6506 }
91447636
A
6507}
6508
316670eb
A
6509void
6510tcp_set_recv_bg(struct socket *so)
6511{
0a7de745 6512 if (!IS_TCP_RECV_BG(so)) {
39037602 6513 so->so_flags1 |= SOF1_TRAFFIC_MGT_TCP_RECVBG;
0a7de745 6514 }
316670eb
A
6515}
6516
6517void
6518tcp_clear_recv_bg(struct socket *so)
6519{
0a7de745 6520 if (IS_TCP_RECV_BG(so)) {
39037602 6521 so->so_flags1 &= ~(SOF1_TRAFFIC_MGT_TCP_RECVBG);
0a7de745 6522 }
f427ee49
A
6523}
6524
6525void
6526inp_fc_throttle_tcp(struct inpcb *inp)
6527{
6528 struct tcpcb *tp = inp->inp_ppcb;
6529
6530 if (!tcp_flow_control_response) {
6531 return;
6532 }
39236c6e 6533
39037602 6534 /*
f427ee49
A
6535 * Back off the slow-start threshold and enter
6536 * congestion avoidance phase
39236c6e 6537 */
f427ee49
A
6538 if (CC_ALGO(tp)->pre_fr != NULL) {
6539 CC_ALGO(tp)->pre_fr(tp);
6540 }
316670eb
A
6541}
6542
6543void
6544inp_fc_unthrottle_tcp(struct inpcb *inp)
6545{
6546 struct tcpcb *tp = inp->inp_ppcb;
f427ee49
A
6547
6548 if (tcp_flow_control_response) {
6549 if (CC_ALGO(tp)->post_fr != NULL) {
6550 CC_ALGO(tp)->post_fr(tp, NULL);
6551 }
6552
6553 tp->t_bytes_acked = 0;
6554
6555 /*
6556 * Reset retransmit shift as we know that the reason
6557 * for delay in sending a packet is due to flow
6558 * control on the outgoing interface. There is no need
6559 * to backoff retransmit timer.
6560 */
6561 TCP_RESET_REXMT_STATE(tp);
6562
6563 tp->t_flagsext &= ~TF_CWND_NONVALIDATED;
6564
6565 /*
6566 * Start the output stream again. Since we are
6567 * not retransmitting data, do not reset the
6568 * retransmit timer or rtt calculation.
6569 */
6570 tcp_output(tp);
6571 return;
6572 }
6573
316670eb
A
6574 /*
6575 * Back off the slow-start threshold and enter
6576 * congestion avoidance phase
6577 */
0a7de745 6578 if (CC_ALGO(tp)->pre_fr != NULL) {
316670eb 6579 CC_ALGO(tp)->pre_fr(tp);
0a7de745 6580 }
316670eb
A
6581
6582 tp->snd_cwnd = tp->snd_ssthresh;
3e170ce0 6583 tp->t_flagsext &= ~TF_CWND_NONVALIDATED;
316670eb
A
6584 /*
6585 * Restart counting for ABC as we changed the
6586 * congestion window just now.
6587 */
6588 tp->t_bytes_acked = 0;
6589
6590 /* Reset retransmit shift as we know that the reason
39037602 6591 * for delay in sending a packet is due to flow
316670eb
A
6592 * control on the outgoing interface. There is no need
6593 * to backoff retransmit timer.
6594 */
39037602 6595 TCP_RESET_REXMT_STATE(tp);
316670eb
A
6596
6597 /*
6598 * Start the output stream again. Since we are
6599 * not retransmitting data, do not reset the
6600 * retransmit timer or rtt calculation.
6601 */
6602 tcp_output(tp);
6603}
39037602 6604
8ad349bb
A
6605static int
6606tcp_getstat SYSCTL_HANDLER_ARGS
6607{
2d21ac55 6608#pragma unused(oidp, arg1, arg2)
8ad349bb
A
6609
6610 int error;
5ba3f43e
A
6611 struct tcpstat *stat;
6612 stat = &tcpstat;
f427ee49 6613#if XNU_TARGET_OS_OSX
5ba3f43e 6614 struct tcpstat zero_stat;
cb323159 6615
5ba3f43e
A
6616 if (tcp_disable_access_to_stats &&
6617 !kauth_cred_issuser(kauth_cred_get())) {
6618 bzero(&zero_stat, sizeof(zero_stat));
6619 stat = &zero_stat;
6620 }
6621
f427ee49 6622#endif /* XNU_TARGET_OS_OSX */
39236c6e 6623
8ad349bb 6624 if (req->oldptr == 0) {
0a7de745 6625 req->oldlen = (size_t)sizeof(struct tcpstat);
8ad349bb
A
6626 }
6627
0a7de745 6628 error = SYSCTL_OUT(req, stat, MIN(sizeof(tcpstat), req->oldlen));
8ad349bb 6629
0a7de745 6630 return error;
8ad349bb
A
6631}
6632
39236c6e
A
6633/*
6634 * Checksum extended TCP header and data.
6635 */
6636int
6637tcp_input_checksum(int af, struct mbuf *m, struct tcphdr *th, int off, int tlen)
6638{
6639 struct ifnet *ifp = m->m_pkthdr.rcvif;
6640
6641 switch (af) {
6642 case AF_INET: {
6643 struct ip *ip = mtod(m, struct ip *);
6644 struct ipovly *ipov = (struct ipovly *)ip;
6645
5ba3f43e 6646 /* ip_stripoptions() must have been called before we get here */
0a7de745 6647 ASSERT((ip->ip_hl << 2) == sizeof(*ip));
5ba3f43e 6648
39236c6e
A
6649 if ((hwcksum_rx || (ifp->if_flags & IFF_LOOPBACK) ||
6650 (m->m_pkthdr.pkt_flags & PKTF_LOOP)) &&
6651 (m->m_pkthdr.csum_flags & CSUM_DATA_VALID)) {
6652 if (m->m_pkthdr.csum_flags & CSUM_PSEUDO_HDR) {
6653 th->th_sum = m->m_pkthdr.csum_rx_val;
6654 } else {
5ba3f43e
A
6655 uint32_t sum = m->m_pkthdr.csum_rx_val;
6656 uint32_t start = m->m_pkthdr.csum_rx_start;
6657 int32_t trailer = (m_pktlen(m) - (off + tlen));
39236c6e
A
6658
6659 /*
6660 * Perform 1's complement adjustment of octets
6661 * that got included/excluded in the hardware-
6662 * calculated checksum value. Ignore cases
5ba3f43e
A
6663 * where the value already includes the entire
6664 * IP header span, as the sum for those octets
6665 * would already be 0 by the time we get here;
6666 * IP has already performed its header checksum
6667 * checks. If we do need to adjust, restore
6668 * the original fields in the IP header when
6669 * computing the adjustment value. Also take
6670 * care of any trailing bytes and subtract out
6671 * their partial sum.
39236c6e 6672 */
5ba3f43e 6673 ASSERT(trailer >= 0);
39236c6e 6674 if ((m->m_pkthdr.csum_flags & CSUM_PARTIAL) &&
5ba3f43e
A
6675 ((start != 0 && start != off) || trailer)) {
6676 uint32_t swbytes = (uint32_t)trailer;
6677
39236c6e 6678 if (start < off) {
0a7de745 6679 ip->ip_len += sizeof(*ip);
5ba3f43e 6680#if BYTE_ORDER != BIG_ENDIAN
39236c6e
A
6681 HTONS(ip->ip_len);
6682 HTONS(ip->ip_off);
5ba3f43e 6683#endif /* BYTE_ORDER != BIG_ENDIAN */
39236c6e 6684 }
39236c6e 6685 /* callee folds in sum */
5ba3f43e
A
6686 sum = m_adj_sum16(m, start, off,
6687 tlen, sum);
0a7de745 6688 if (off > start) {
5ba3f43e 6689 swbytes += (off - start);
0a7de745 6690 } else {
5ba3f43e 6691 swbytes += (start - off);
0a7de745 6692 }
5ba3f43e 6693
39236c6e 6694 if (start < off) {
5ba3f43e 6695#if BYTE_ORDER != BIG_ENDIAN
39236c6e
A
6696 NTOHS(ip->ip_off);
6697 NTOHS(ip->ip_len);
5ba3f43e 6698#endif /* BYTE_ORDER != BIG_ENDIAN */
0a7de745 6699 ip->ip_len -= sizeof(*ip);
39236c6e 6700 }
5ba3f43e 6701
0a7de745 6702 if (swbytes != 0) {
5ba3f43e 6703 tcp_in_cksum_stats(swbytes);
0a7de745
A
6704 }
6705 if (trailer != 0) {
5ba3f43e 6706 m_adj(m, -trailer);
0a7de745 6707 }
39236c6e
A
6708 }
6709
6710 /* callee folds in sum */
6711 th->th_sum = in_pseudo(ip->ip_src.s_addr,
6712 ip->ip_dst.s_addr,
6713 sum + htonl(tlen + IPPROTO_TCP));
6714 }
6715 th->th_sum ^= 0xffff;
6716 } else {
6717 uint16_t ip_sum;
6718 int len;
6719 char b[9];
6720
0a7de745
A
6721 bcopy(ipov->ih_x1, b, sizeof(ipov->ih_x1));
6722 bzero(ipov->ih_x1, sizeof(ipov->ih_x1));
39236c6e
A
6723 ip_sum = ipov->ih_len;
6724 ipov->ih_len = (u_short)tlen;
6725#if BYTE_ORDER != BIG_ENDIAN
6726 HTONS(ipov->ih_len);
6727#endif
0a7de745 6728 len = sizeof(struct ip) + tlen;
39236c6e 6729 th->th_sum = in_cksum(m, len);
0a7de745 6730 bcopy(b, ipov->ih_x1, sizeof(ipov->ih_x1));
39236c6e
A
6731 ipov->ih_len = ip_sum;
6732
6733 tcp_in_cksum_stats(len);
6734 }
6735 break;
6736 }
39236c6e
A
6737 case AF_INET6: {
6738 struct ip6_hdr *ip6 = mtod(m, struct ip6_hdr *);
6739
39236c6e
A
6740 if ((hwcksum_rx || (ifp->if_flags & IFF_LOOPBACK) ||
6741 (m->m_pkthdr.pkt_flags & PKTF_LOOP)) &&
6742 (m->m_pkthdr.csum_flags & CSUM_DATA_VALID)) {
6743 if (m->m_pkthdr.csum_flags & CSUM_PSEUDO_HDR) {
6744 th->th_sum = m->m_pkthdr.csum_rx_val;
6745 } else {
5ba3f43e
A
6746 uint32_t sum = m->m_pkthdr.csum_rx_val;
6747 uint32_t start = m->m_pkthdr.csum_rx_start;
6748 int32_t trailer = (m_pktlen(m) - (off + tlen));
39236c6e
A
6749
6750 /*
6751 * Perform 1's complement adjustment of octets
6752 * that got included/excluded in the hardware-
5ba3f43e
A
6753 * calculated checksum value. Also take care
6754 * of any trailing bytes and subtract out their
6755 * partial sum.
39236c6e 6756 */
5ba3f43e 6757 ASSERT(trailer >= 0);
39236c6e 6758 if ((m->m_pkthdr.csum_flags & CSUM_PARTIAL) &&
5ba3f43e
A
6759 (start != off || trailer != 0)) {
6760 uint16_t s = 0, d = 0;
6761 uint32_t swbytes = (uint32_t)trailer;
39236c6e
A
6762
6763 if (IN6_IS_SCOPE_EMBED(&ip6->ip6_src)) {
6764 s = ip6->ip6_src.s6_addr16[1];
0a7de745 6765 ip6->ip6_src.s6_addr16[1] = 0;
39236c6e
A
6766 }
6767 if (IN6_IS_SCOPE_EMBED(&ip6->ip6_dst)) {
6768 d = ip6->ip6_dst.s6_addr16[1];
6769 ip6->ip6_dst.s6_addr16[1] = 0;
6770 }
6771
6772 /* callee folds in sum */
5ba3f43e
A
6773 sum = m_adj_sum16(m, start, off,
6774 tlen, sum);
0a7de745 6775 if (off > start) {
5ba3f43e 6776 swbytes += (off - start);
0a7de745 6777 } else {
5ba3f43e 6778 swbytes += (start - off);
0a7de745 6779 }
39236c6e 6780
0a7de745 6781 if (IN6_IS_SCOPE_EMBED(&ip6->ip6_src)) {
39236c6e 6782 ip6->ip6_src.s6_addr16[1] = s;
0a7de745
A
6783 }
6784 if (IN6_IS_SCOPE_EMBED(&ip6->ip6_dst)) {
39236c6e 6785 ip6->ip6_dst.s6_addr16[1] = d;
0a7de745 6786 }
5ba3f43e 6787
0a7de745 6788 if (swbytes != 0) {
5ba3f43e 6789 tcp_in6_cksum_stats(swbytes);
0a7de745
A
6790 }
6791 if (trailer != 0) {
5ba3f43e 6792 m_adj(m, -trailer);
0a7de745 6793 }
39236c6e
A
6794 }
6795
6796 th->th_sum = in6_pseudo(
0a7de745
A
6797 &ip6->ip6_src, &ip6->ip6_dst,
6798 sum + htonl(tlen + IPPROTO_TCP));
39236c6e
A
6799 }
6800 th->th_sum ^= 0xffff;
6801 } else {
6802 tcp_in6_cksum_stats(tlen);
6803 th->th_sum = in6_cksum(m, IPPROTO_TCP, off, tlen);
6804 }
6805 break;
6806 }
39236c6e
A
6807 default:
6808 VERIFY(0);
6809 /* NOTREACHED */
6810 }
6811
6812 if (th->th_sum != 0) {
6813 tcpstat.tcps_rcvbadsum++;
6814 IF_TCP_STATINC(ifp, badformat);
0a7de745 6815 return -1;
39236c6e
A
6816 }
6817
0a7de745 6818 return 0;
39236c6e
A
6819}
6820
d9a64523 6821
fe8ab488 6822SYSCTL_PROC(_net_inet_tcp, TCPCTL_STATS, stats,
3e170ce0
A
6823 CTLTYPE_STRUCT | CTLFLAG_RD | CTLFLAG_LOCKED, 0, 0, tcp_getstat,
6824 "S,tcpstat", "TCP statistics (struct tcpstat, netinet/tcp_var.h)");
8ad349bb 6825
2d21ac55
A
6826static int
6827sysctl_rexmtthresh SYSCTL_HANDLER_ARGS
6828{
6829#pragma unused(arg1, arg2)
6830
6831 int error, val = tcprexmtthresh;
6832
6833 error = sysctl_handle_int(oidp, &val, 0, req);
0a7de745
A
6834 if (error || !req->newptr) {
6835 return error;
6836 }
2d21ac55
A
6837
6838 /*
6839 * Constrain the number of duplicate ACKs
39037602 6840 * to consider for TCP fast retransmit
2d21ac55
A
6841 * to either 2 or 3
6842 */
6843
0a7de745
A
6844 if (val < 2 || val > 3) {
6845 return EINVAL;
6846 }
2d21ac55 6847
0a7de745 6848 tcprexmtthresh = val;
2d21ac55 6849
0a7de745 6850 return 0;
2d21ac55 6851}
91447636 6852
3e170ce0 6853SYSCTL_PROC(_net_inet_tcp, OID_AUTO, rexmt_thresh, CTLTYPE_INT | CTLFLAG_RW |
0a7de745
A
6854 CTLFLAG_LOCKED, &tcprexmtthresh, 0, &sysctl_rexmtthresh, "I",
6855 "Duplicate ACK Threshold for Fast Retransmit");