xref: /freebsd/sys/netinet/tcp_subr.c (revision 790b5264886e581e995fc3b8fa45ca4ab4ffd31c)
1 /*-
2  * SPDX-License-Identifier: BSD-3-Clause
3  *
4  * Copyright (c) 1982, 1986, 1988, 1990, 1993, 1995
5  *	The Regents of the University of California.  All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. Neither the name of the University nor the names of its contributors
16  *    may be used to endorse or promote products derived from this software
17  *    without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29  * SUCH DAMAGE.
30  *
31  *	@(#)tcp_subr.c	8.2 (Berkeley) 5/24/95
32  */
33 
34 #include <sys/cdefs.h>
35 __FBSDID("$FreeBSD$");
36 
37 #include "opt_inet.h"
38 #include "opt_inet6.h"
39 #include "opt_ipsec.h"
40 #include "opt_kern_tls.h"
41 #include "opt_tcpdebug.h"
42 
43 #include <sys/param.h>
44 #include <sys/systm.h>
45 #include <sys/arb.h>
46 #include <sys/callout.h>
47 #include <sys/eventhandler.h>
48 #ifdef TCP_HHOOK
49 #include <sys/hhook.h>
50 #endif
51 #include <sys/kernel.h>
52 #ifdef TCP_HHOOK
53 #include <sys/khelp.h>
54 #endif
55 #ifdef KERN_TLS
56 #include <sys/ktls.h>
57 #endif
58 #include <sys/qmath.h>
59 #include <sys/stats.h>
60 #include <sys/sysctl.h>
61 #include <sys/jail.h>
62 #include <sys/malloc.h>
63 #include <sys/refcount.h>
64 #include <sys/mbuf.h>
65 #ifdef INET6
66 #include <sys/domain.h>
67 #endif
68 #include <sys/priv.h>
69 #include <sys/proc.h>
70 #include <sys/sdt.h>
71 #include <sys/socket.h>
72 #include <sys/socketvar.h>
73 #include <sys/protosw.h>
74 #include <sys/random.h>
75 
76 #include <vm/uma.h>
77 
78 #include <net/route.h>
79 #include <net/route/nhop.h>
80 #include <net/if.h>
81 #include <net/if_var.h>
82 #include <net/vnet.h>
83 
84 #include <netinet/in.h>
85 #include <netinet/in_fib.h>
86 #include <netinet/in_kdtrace.h>
87 #include <netinet/in_pcb.h>
88 #include <netinet/in_systm.h>
89 #include <netinet/in_var.h>
90 #include <netinet/ip.h>
91 #include <netinet/ip_icmp.h>
92 #include <netinet/ip_var.h>
93 #ifdef INET6
94 #include <netinet/icmp6.h>
95 #include <netinet/ip6.h>
96 #include <netinet6/in6_fib.h>
97 #include <netinet6/in6_pcb.h>
98 #include <netinet6/ip6_var.h>
99 #include <netinet6/scope6_var.h>
100 #include <netinet6/nd6.h>
101 #endif
102 
103 #include <netinet/tcp.h>
104 #include <netinet/tcp_fsm.h>
105 #include <netinet/tcp_seq.h>
106 #include <netinet/tcp_timer.h>
107 #include <netinet/tcp_var.h>
108 #include <netinet/tcp_log_buf.h>
109 #include <netinet/tcp_syncache.h>
110 #include <netinet/tcp_hpts.h>
111 #include <netinet/cc/cc.h>
112 #ifdef INET6
113 #include <netinet6/tcp6_var.h>
114 #endif
115 #include <netinet/tcpip.h>
116 #include <netinet/tcp_fastopen.h>
117 #ifdef TCPPCAP
118 #include <netinet/tcp_pcap.h>
119 #endif
120 #ifdef TCPDEBUG
121 #include <netinet/tcp_debug.h>
122 #endif
123 #ifdef INET6
124 #include <netinet6/ip6protosw.h>
125 #endif
126 #ifdef TCP_OFFLOAD
127 #include <netinet/tcp_offload.h>
128 #endif
129 #include <netinet/udp.h>
130 #include <netinet/udp_var.h>
131 
132 #include <netipsec/ipsec_support.h>
133 
134 #include <machine/in_cksum.h>
135 #include <crypto/siphash/siphash.h>
136 
137 #include <security/mac/mac_framework.h>
138 
139 VNET_DEFINE(int, tcp_mssdflt) = TCP_MSS;
140 #ifdef INET6
141 VNET_DEFINE(int, tcp_v6mssdflt) = TCP6_MSS;
142 #endif
143 
144 #ifdef NETFLIX_EXP_DETECTION
145 /*  Sack attack detection thresholds and such */
146 SYSCTL_NODE(_net_inet_tcp, OID_AUTO, sack_attack,
147     CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
148     "Sack Attack detection thresholds");
149 int32_t tcp_force_detection = 0;
150 SYSCTL_INT(_net_inet_tcp_sack_attack, OID_AUTO, force_detection,
151     CTLFLAG_RW,
152     &tcp_force_detection, 0,
153     "Do we force detection even if the INP has it off?");
154 int32_t tcp_sack_to_ack_thresh = 700;	/* 70 % */
155 SYSCTL_INT(_net_inet_tcp_sack_attack, OID_AUTO, sack_to_ack_thresh,
156     CTLFLAG_RW,
157     &tcp_sack_to_ack_thresh, 700,
158     "Percentage of sacks to acks we must see above (10.1 percent is 101)?");
159 int32_t tcp_sack_to_move_thresh = 600;	/* 60 % */
160 SYSCTL_INT(_net_inet_tcp_sack_attack, OID_AUTO, move_thresh,
161     CTLFLAG_RW,
162     &tcp_sack_to_move_thresh, 600,
163     "Percentage of sack moves we must see above (10.1 percent is 101)");
164 int32_t tcp_restoral_thresh = 650;	/* 65 % (sack:2:ack -5%) */
165 SYSCTL_INT(_net_inet_tcp_sack_attack, OID_AUTO, restore_thresh,
166     CTLFLAG_RW,
167     &tcp_restoral_thresh, 550,
168     "Percentage of sack to ack percentage we must see below to restore(10.1 percent is 101)");
169 int32_t tcp_sad_decay_val = 800;
170 SYSCTL_INT(_net_inet_tcp_sack_attack, OID_AUTO, decay_per,
171     CTLFLAG_RW,
172     &tcp_sad_decay_val, 800,
173     "The decay percentage (10.1 percent equals 101 )");
174 int32_t tcp_map_minimum = 500;
175 SYSCTL_INT(_net_inet_tcp_sack_attack, OID_AUTO, nummaps,
176     CTLFLAG_RW,
177     &tcp_map_minimum, 500,
178     "Number of Map enteries before we start detection");
179 int32_t tcp_attack_on_turns_on_logging = 0;
180 SYSCTL_INT(_net_inet_tcp_sack_attack, OID_AUTO, attacks_logged,
181     CTLFLAG_RW,
182     &tcp_attack_on_turns_on_logging, 0,
183    "When we have a positive hit on attack, do we turn on logging?");
184 int32_t tcp_sad_pacing_interval = 2000;
185 SYSCTL_INT(_net_inet_tcp_sack_attack, OID_AUTO, sad_pacing_int,
186     CTLFLAG_RW,
187     &tcp_sad_pacing_interval, 2000,
188     "What is the minimum pacing interval for a classified attacker?");
189 
190 int32_t tcp_sad_low_pps = 100;
191 SYSCTL_INT(_net_inet_tcp_sack_attack, OID_AUTO, sad_low_pps,
192     CTLFLAG_RW,
193     &tcp_sad_low_pps, 100,
194     "What is the input pps that below which we do not decay?");
195 #endif
196 uint32_t tcp_ack_war_time_window = 1000;
197 SYSCTL_UINT(_net_inet_tcp, OID_AUTO, ack_war_timewindow,
198     CTLFLAG_RW,
199     &tcp_ack_war_time_window, 1000,
200    "If the tcp_stack does ack-war prevention how many milliseconds are in its time window?");
201 uint32_t tcp_ack_war_cnt = 5;
202 SYSCTL_UINT(_net_inet_tcp, OID_AUTO, ack_war_cnt,
203     CTLFLAG_RW,
204     &tcp_ack_war_cnt, 5,
205    "If the tcp_stack does ack-war prevention how many acks can be sent in its time window?");
206 
207 struct rwlock tcp_function_lock;
208 
209 static int
210 sysctl_net_inet_tcp_mss_check(SYSCTL_HANDLER_ARGS)
211 {
212 	int error, new;
213 
214 	new = V_tcp_mssdflt;
215 	error = sysctl_handle_int(oidp, &new, 0, req);
216 	if (error == 0 && req->newptr) {
217 		if (new < TCP_MINMSS)
218 			error = EINVAL;
219 		else
220 			V_tcp_mssdflt = new;
221 	}
222 	return (error);
223 }
224 
225 SYSCTL_PROC(_net_inet_tcp, TCPCTL_MSSDFLT, mssdflt,
226     CTLFLAG_VNET | CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_NEEDGIANT,
227     &VNET_NAME(tcp_mssdflt), 0, &sysctl_net_inet_tcp_mss_check, "I",
228     "Default TCP Maximum Segment Size");
229 
230 #ifdef INET6
231 static int
232 sysctl_net_inet_tcp_mss_v6_check(SYSCTL_HANDLER_ARGS)
233 {
234 	int error, new;
235 
236 	new = V_tcp_v6mssdflt;
237 	error = sysctl_handle_int(oidp, &new, 0, req);
238 	if (error == 0 && req->newptr) {
239 		if (new < TCP_MINMSS)
240 			error = EINVAL;
241 		else
242 			V_tcp_v6mssdflt = new;
243 	}
244 	return (error);
245 }
246 
247 SYSCTL_PROC(_net_inet_tcp, TCPCTL_V6MSSDFLT, v6mssdflt,
248     CTLFLAG_VNET | CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_NEEDGIANT,
249     &VNET_NAME(tcp_v6mssdflt), 0, &sysctl_net_inet_tcp_mss_v6_check, "I",
250    "Default TCP Maximum Segment Size for IPv6");
251 #endif /* INET6 */
252 
253 /*
254  * Minimum MSS we accept and use. This prevents DoS attacks where
255  * we are forced to a ridiculous low MSS like 20 and send hundreds
256  * of packets instead of one. The effect scales with the available
257  * bandwidth and quickly saturates the CPU and network interface
258  * with packet generation and sending. Set to zero to disable MINMSS
259  * checking. This setting prevents us from sending too small packets.
260  */
261 VNET_DEFINE(int, tcp_minmss) = TCP_MINMSS;
262 SYSCTL_INT(_net_inet_tcp, OID_AUTO, minmss, CTLFLAG_VNET | CTLFLAG_RW,
263      &VNET_NAME(tcp_minmss), 0,
264     "Minimum TCP Maximum Segment Size");
265 
266 VNET_DEFINE(int, tcp_do_rfc1323) = 1;
267 SYSCTL_INT(_net_inet_tcp, TCPCTL_DO_RFC1323, rfc1323, CTLFLAG_VNET | CTLFLAG_RW,
268     &VNET_NAME(tcp_do_rfc1323), 0,
269     "Enable rfc1323 (high performance TCP) extensions");
270 
271 /*
272  * As of June 2021, several TCP stacks violate RFC 7323 from September 2014.
273  * Some stacks negotiate TS, but never send them after connection setup. Some
274  * stacks negotiate TS, but don't send them when sending keep-alive segments.
275  * These include modern widely deployed TCP stacks.
276  * Therefore tolerating violations for now...
277  */
278 VNET_DEFINE(int, tcp_tolerate_missing_ts) = 1;
279 SYSCTL_INT(_net_inet_tcp, OID_AUTO, tolerate_missing_ts, CTLFLAG_VNET | CTLFLAG_RW,
280     &VNET_NAME(tcp_tolerate_missing_ts), 0,
281     "Tolerate missing TCP timestamps");
282 
283 VNET_DEFINE(int, tcp_ts_offset_per_conn) = 1;
284 SYSCTL_INT(_net_inet_tcp, OID_AUTO, ts_offset_per_conn, CTLFLAG_VNET | CTLFLAG_RW,
285     &VNET_NAME(tcp_ts_offset_per_conn), 0,
286     "Initialize TCP timestamps per connection instead of per host pair");
287 
288 /* How many connections are pacing */
289 static volatile uint32_t number_of_tcp_connections_pacing = 0;
290 static uint32_t shadow_num_connections = 0;
291 
292 static int tcp_pacing_limit = 10000;
293 SYSCTL_INT(_net_inet_tcp, OID_AUTO, pacing_limit, CTLFLAG_RW,
294     &tcp_pacing_limit, 1000,
295     "If the TCP stack does pacing, is there a limit (-1 = no, 0 = no pacing N = number of connections)");
296 
297 SYSCTL_UINT(_net_inet_tcp, OID_AUTO, pacing_count, CTLFLAG_RD,
298     &shadow_num_connections, 0, "Number of TCP connections being paced");
299 
300 static int	tcp_log_debug = 0;
301 SYSCTL_INT(_net_inet_tcp, OID_AUTO, log_debug, CTLFLAG_RW,
302     &tcp_log_debug, 0, "Log errors caused by incoming TCP segments");
303 
304 static int	tcp_tcbhashsize;
305 SYSCTL_INT(_net_inet_tcp, OID_AUTO, tcbhashsize, CTLFLAG_RDTUN | CTLFLAG_NOFETCH,
306     &tcp_tcbhashsize, 0, "Size of TCP control-block hashtable");
307 
308 static int	do_tcpdrain = 1;
309 SYSCTL_INT(_net_inet_tcp, OID_AUTO, do_tcpdrain, CTLFLAG_RW, &do_tcpdrain, 0,
310     "Enable tcp_drain routine for extra help when low on mbufs");
311 
312 SYSCTL_UINT(_net_inet_tcp, OID_AUTO, pcbcount, CTLFLAG_VNET | CTLFLAG_RD,
313     &VNET_NAME(tcbinfo.ipi_count), 0, "Number of active PCBs");
314 
315 VNET_DEFINE_STATIC(int, icmp_may_rst) = 1;
316 #define	V_icmp_may_rst			VNET(icmp_may_rst)
317 SYSCTL_INT(_net_inet_tcp, OID_AUTO, icmp_may_rst, CTLFLAG_VNET | CTLFLAG_RW,
318     &VNET_NAME(icmp_may_rst), 0,
319     "Certain ICMP unreachable messages may abort connections in SYN_SENT");
320 
321 VNET_DEFINE_STATIC(int, tcp_isn_reseed_interval) = 0;
322 #define	V_tcp_isn_reseed_interval	VNET(tcp_isn_reseed_interval)
323 SYSCTL_INT(_net_inet_tcp, OID_AUTO, isn_reseed_interval, CTLFLAG_VNET | CTLFLAG_RW,
324     &VNET_NAME(tcp_isn_reseed_interval), 0,
325     "Seconds between reseeding of ISN secret");
326 
327 static int	tcp_soreceive_stream;
328 SYSCTL_INT(_net_inet_tcp, OID_AUTO, soreceive_stream, CTLFLAG_RDTUN,
329     &tcp_soreceive_stream, 0, "Using soreceive_stream for TCP sockets");
330 
331 VNET_DEFINE(uma_zone_t, sack_hole_zone);
332 #define	V_sack_hole_zone		VNET(sack_hole_zone)
333 VNET_DEFINE(uint32_t, tcp_map_entries_limit) = 0;	/* unlimited */
334 static int
335 sysctl_net_inet_tcp_map_limit_check(SYSCTL_HANDLER_ARGS)
336 {
337 	int error;
338 	uint32_t new;
339 
340 	new = V_tcp_map_entries_limit;
341 	error = sysctl_handle_int(oidp, &new, 0, req);
342 	if (error == 0 && req->newptr) {
343 		/* only allow "0" and value > minimum */
344 		if (new > 0 && new < TCP_MIN_MAP_ENTRIES_LIMIT)
345 			error = EINVAL;
346 		else
347 			V_tcp_map_entries_limit = new;
348 	}
349 	return (error);
350 }
351 SYSCTL_PROC(_net_inet_tcp, OID_AUTO, map_limit,
352     CTLFLAG_VNET | CTLTYPE_UINT | CTLFLAG_RW | CTLFLAG_NEEDGIANT,
353     &VNET_NAME(tcp_map_entries_limit), 0,
354     &sysctl_net_inet_tcp_map_limit_check, "IU",
355     "Total sendmap entries limit");
356 
357 VNET_DEFINE(uint32_t, tcp_map_split_limit) = 0;	/* unlimited */
358 SYSCTL_UINT(_net_inet_tcp, OID_AUTO, split_limit, CTLFLAG_VNET | CTLFLAG_RW,
359      &VNET_NAME(tcp_map_split_limit), 0,
360     "Total sendmap split entries limit");
361 
362 #ifdef TCP_HHOOK
363 VNET_DEFINE(struct hhook_head *, tcp_hhh[HHOOK_TCP_LAST+1]);
364 #endif
365 
366 #define TS_OFFSET_SECRET_LENGTH SIPHASH_KEY_LENGTH
367 VNET_DEFINE_STATIC(u_char, ts_offset_secret[TS_OFFSET_SECRET_LENGTH]);
368 #define	V_ts_offset_secret	VNET(ts_offset_secret)
369 
370 static int	tcp_default_fb_init(struct tcpcb *tp);
371 static void	tcp_default_fb_fini(struct tcpcb *tp, int tcb_is_purged);
372 static int	tcp_default_handoff_ok(struct tcpcb *tp);
373 static struct inpcb *tcp_notify(struct inpcb *, int);
374 static struct inpcb *tcp_mtudisc_notify(struct inpcb *, int);
375 static void tcp_mtudisc(struct inpcb *, int);
376 static char *	tcp_log_addr(struct in_conninfo *inc, struct tcphdr *th,
377 		    void *ip4hdr, const void *ip6hdr);
378 
379 static struct tcp_function_block tcp_def_funcblk = {
380 	.tfb_tcp_block_name = "freebsd",
381 	.tfb_tcp_output = tcp_output,
382 	.tfb_tcp_do_segment = tcp_do_segment,
383 	.tfb_tcp_ctloutput = tcp_default_ctloutput,
384 	.tfb_tcp_handoff_ok = tcp_default_handoff_ok,
385 	.tfb_tcp_fb_init = tcp_default_fb_init,
386 	.tfb_tcp_fb_fini = tcp_default_fb_fini,
387 };
388 
389 static int tcp_fb_cnt = 0;
390 struct tcp_funchead t_functions;
391 static struct tcp_function_block *tcp_func_set_ptr = &tcp_def_funcblk;
392 
393 void
394 tcp_record_dsack(struct tcpcb *tp, tcp_seq start, tcp_seq end, int tlp)
395 {
396 	TCPSTAT_INC(tcps_dsack_count);
397 	tp->t_dsack_pack++;
398 	if (tlp == 0) {
399 		if (SEQ_GT(end, start)) {
400 			tp->t_dsack_bytes += (end - start);
401 			TCPSTAT_ADD(tcps_dsack_bytes, (end - start));
402 		} else {
403 			tp->t_dsack_tlp_bytes += (start - end);
404 			TCPSTAT_ADD(tcps_dsack_bytes, (start - end));
405 		}
406 	} else {
407 		if (SEQ_GT(end, start)) {
408 			tp->t_dsack_bytes += (end - start);
409 			TCPSTAT_ADD(tcps_dsack_tlp_bytes, (end - start));
410 		} else {
411 			tp->t_dsack_tlp_bytes += (start - end);
412 			TCPSTAT_ADD(tcps_dsack_tlp_bytes, (start - end));
413 		}
414 	}
415 }
416 
417 static struct tcp_function_block *
418 find_tcp_functions_locked(struct tcp_function_set *fs)
419 {
420 	struct tcp_function *f;
421 	struct tcp_function_block *blk=NULL;
422 
423 	TAILQ_FOREACH(f, &t_functions, tf_next) {
424 		if (strcmp(f->tf_name, fs->function_set_name) == 0) {
425 			blk = f->tf_fb;
426 			break;
427 		}
428 	}
429 	return(blk);
430 }
431 
432 static struct tcp_function_block *
433 find_tcp_fb_locked(struct tcp_function_block *blk, struct tcp_function **s)
434 {
435 	struct tcp_function_block *rblk=NULL;
436 	struct tcp_function *f;
437 
438 	TAILQ_FOREACH(f, &t_functions, tf_next) {
439 		if (f->tf_fb == blk) {
440 			rblk = blk;
441 			if (s) {
442 				*s = f;
443 			}
444 			break;
445 		}
446 	}
447 	return (rblk);
448 }
449 
450 struct tcp_function_block *
451 find_and_ref_tcp_functions(struct tcp_function_set *fs)
452 {
453 	struct tcp_function_block *blk;
454 
455 	rw_rlock(&tcp_function_lock);
456 	blk = find_tcp_functions_locked(fs);
457 	if (blk)
458 		refcount_acquire(&blk->tfb_refcnt);
459 	rw_runlock(&tcp_function_lock);
460 	return(blk);
461 }
462 
463 struct tcp_function_block *
464 find_and_ref_tcp_fb(struct tcp_function_block *blk)
465 {
466 	struct tcp_function_block *rblk;
467 
468 	rw_rlock(&tcp_function_lock);
469 	rblk = find_tcp_fb_locked(blk, NULL);
470 	if (rblk)
471 		refcount_acquire(&rblk->tfb_refcnt);
472 	rw_runlock(&tcp_function_lock);
473 	return(rblk);
474 }
475 
476 static struct tcp_function_block *
477 find_and_ref_tcp_default_fb(void)
478 {
479 	struct tcp_function_block *rblk;
480 
481 	rw_rlock(&tcp_function_lock);
482 	rblk = tcp_func_set_ptr;
483 	refcount_acquire(&rblk->tfb_refcnt);
484 	rw_runlock(&tcp_function_lock);
485 	return (rblk);
486 }
487 
488 void
489 tcp_switch_back_to_default(struct tcpcb *tp)
490 {
491 	struct tcp_function_block *tfb;
492 
493 	KASSERT(tp->t_fb != &tcp_def_funcblk,
494 	    ("%s: called by the built-in default stack", __func__));
495 
496 	/*
497 	 * Release the old stack. This function will either find a new one
498 	 * or panic.
499 	 */
500 	if (tp->t_fb->tfb_tcp_fb_fini != NULL)
501 		(*tp->t_fb->tfb_tcp_fb_fini)(tp, 0);
502 	refcount_release(&tp->t_fb->tfb_refcnt);
503 
504 	/*
505 	 * Now, we'll find a new function block to use.
506 	 * Start by trying the current user-selected
507 	 * default, unless this stack is the user-selected
508 	 * default.
509 	 */
510 	tfb = find_and_ref_tcp_default_fb();
511 	if (tfb == tp->t_fb) {
512 		refcount_release(&tfb->tfb_refcnt);
513 		tfb = NULL;
514 	}
515 	/* Does the stack accept this connection? */
516 	if (tfb != NULL && tfb->tfb_tcp_handoff_ok != NULL &&
517 	    (*tfb->tfb_tcp_handoff_ok)(tp)) {
518 		refcount_release(&tfb->tfb_refcnt);
519 		tfb = NULL;
520 	}
521 	/* Try to use that stack. */
522 	if (tfb != NULL) {
523 		/* Initialize the new stack. If it succeeds, we are done. */
524 		tp->t_fb = tfb;
525 		if (tp->t_fb->tfb_tcp_fb_init == NULL ||
526 		    (*tp->t_fb->tfb_tcp_fb_init)(tp) == 0)
527 			return;
528 
529 		/*
530 		 * Initialization failed. Release the reference count on
531 		 * the stack.
532 		 */
533 		refcount_release(&tfb->tfb_refcnt);
534 	}
535 
536 	/*
537 	 * If that wasn't feasible, use the built-in default
538 	 * stack which is not allowed to reject anyone.
539 	 */
540 	tfb = find_and_ref_tcp_fb(&tcp_def_funcblk);
541 	if (tfb == NULL) {
542 		/* there always should be a default */
543 		panic("Can't refer to tcp_def_funcblk");
544 	}
545 	if (tfb->tfb_tcp_handoff_ok != NULL) {
546 		if ((*tfb->tfb_tcp_handoff_ok) (tp)) {
547 			/* The default stack cannot say no */
548 			panic("Default stack rejects a new session?");
549 		}
550 	}
551 	tp->t_fb = tfb;
552 	if (tp->t_fb->tfb_tcp_fb_init != NULL &&
553 	    (*tp->t_fb->tfb_tcp_fb_init)(tp)) {
554 		/* The default stack cannot fail */
555 		panic("Default stack initialization failed");
556 	}
557 }
558 
559 static void
560 tcp_recv_udp_tunneled_packet(struct mbuf *m, int off, struct inpcb *inp,
561     const struct sockaddr *sa, void *ctx)
562 {
563 	struct ip *iph;
564 #ifdef INET6
565 	struct ip6_hdr *ip6;
566 #endif
567 	struct udphdr *uh;
568 	struct tcphdr *th;
569 	int thlen;
570 	uint16_t port;
571 
572 	TCPSTAT_INC(tcps_tunneled_pkts);
573 	if ((m->m_flags & M_PKTHDR) == 0) {
574 		/* Can't handle one that is not a pkt hdr */
575 		TCPSTAT_INC(tcps_tunneled_errs);
576 		goto out;
577 	}
578 	thlen = sizeof(struct tcphdr);
579 	if (m->m_len < off + sizeof(struct udphdr) + thlen &&
580 	    (m =  m_pullup(m, off + sizeof(struct udphdr) + thlen)) == NULL) {
581 		TCPSTAT_INC(tcps_tunneled_errs);
582 		goto out;
583 	}
584 	iph = mtod(m, struct ip *);
585 	uh = (struct udphdr *)((caddr_t)iph + off);
586 	th = (struct tcphdr *)(uh + 1);
587 	thlen = th->th_off << 2;
588 	if (m->m_len < off + sizeof(struct udphdr) + thlen) {
589 		m =  m_pullup(m, off + sizeof(struct udphdr) + thlen);
590 		if (m == NULL) {
591 			TCPSTAT_INC(tcps_tunneled_errs);
592 			goto out;
593 		} else {
594 			iph = mtod(m, struct ip *);
595 			uh = (struct udphdr *)((caddr_t)iph + off);
596 			th = (struct tcphdr *)(uh + 1);
597 		}
598 	}
599 	m->m_pkthdr.tcp_tun_port = port = uh->uh_sport;
600 	bcopy(th, uh, m->m_len - off);
601 	m->m_len -= sizeof(struct udphdr);
602 	m->m_pkthdr.len -= sizeof(struct udphdr);
603 	/*
604 	 * We use the same algorithm for
605 	 * both UDP and TCP for c-sum. So
606 	 * the code in tcp_input will skip
607 	 * the checksum. So we do nothing
608 	 * with the flag (m->m_pkthdr.csum_flags).
609 	 */
610 	switch (iph->ip_v) {
611 #ifdef INET
612 	case IPVERSION:
613 		iph->ip_len = htons(ntohs(iph->ip_len) - sizeof(struct udphdr));
614 		tcp_input_with_port(&m, &off, IPPROTO_TCP, port);
615 		break;
616 #endif
617 #ifdef INET6
618 	case IPV6_VERSION >> 4:
619 		ip6 = mtod(m, struct ip6_hdr *);
620 		ip6->ip6_plen = htons(ntohs(ip6->ip6_plen) - sizeof(struct udphdr));
621 		tcp6_input_with_port(&m, &off, IPPROTO_TCP, port);
622 		break;
623 #endif
624 	default:
625 		goto out;
626 		break;
627 	}
628 	return;
629 out:
630 	m_freem(m);
631 }
632 
633 static int
634 sysctl_net_inet_default_tcp_functions(SYSCTL_HANDLER_ARGS)
635 {
636 	int error=ENOENT;
637 	struct tcp_function_set fs;
638 	struct tcp_function_block *blk;
639 
640 	memset(&fs, 0, sizeof(fs));
641 	rw_rlock(&tcp_function_lock);
642 	blk = find_tcp_fb_locked(tcp_func_set_ptr, NULL);
643 	if (blk) {
644 		/* Found him */
645 		strcpy(fs.function_set_name, blk->tfb_tcp_block_name);
646 		fs.pcbcnt = blk->tfb_refcnt;
647 	}
648 	rw_runlock(&tcp_function_lock);
649 	error = sysctl_handle_string(oidp, fs.function_set_name,
650 				     sizeof(fs.function_set_name), req);
651 
652 	/* Check for error or no change */
653 	if (error != 0 || req->newptr == NULL)
654 		return(error);
655 
656 	rw_wlock(&tcp_function_lock);
657 	blk = find_tcp_functions_locked(&fs);
658 	if ((blk == NULL) ||
659 	    (blk->tfb_flags & TCP_FUNC_BEING_REMOVED)) {
660 		error = ENOENT;
661 		goto done;
662 	}
663 	tcp_func_set_ptr = blk;
664 done:
665 	rw_wunlock(&tcp_function_lock);
666 	return (error);
667 }
668 
669 SYSCTL_PROC(_net_inet_tcp, OID_AUTO, functions_default,
670     CTLTYPE_STRING | CTLFLAG_RW | CTLFLAG_NEEDGIANT,
671     NULL, 0, sysctl_net_inet_default_tcp_functions, "A",
672     "Set/get the default TCP functions");
673 
674 static int
675 sysctl_net_inet_list_available(SYSCTL_HANDLER_ARGS)
676 {
677 	int error, cnt, linesz;
678 	struct tcp_function *f;
679 	char *buffer, *cp;
680 	size_t bufsz, outsz;
681 	bool alias;
682 
683 	cnt = 0;
684 	rw_rlock(&tcp_function_lock);
685 	TAILQ_FOREACH(f, &t_functions, tf_next) {
686 		cnt++;
687 	}
688 	rw_runlock(&tcp_function_lock);
689 
690 	bufsz = (cnt+2) * ((TCP_FUNCTION_NAME_LEN_MAX * 2) + 13) + 1;
691 	buffer = malloc(bufsz, M_TEMP, M_WAITOK);
692 
693 	error = 0;
694 	cp = buffer;
695 
696 	linesz = snprintf(cp, bufsz, "\n%-32s%c %-32s %s\n", "Stack", 'D',
697 	    "Alias", "PCB count");
698 	cp += linesz;
699 	bufsz -= linesz;
700 	outsz = linesz;
701 
702 	rw_rlock(&tcp_function_lock);
703 	TAILQ_FOREACH(f, &t_functions, tf_next) {
704 		alias = (f->tf_name != f->tf_fb->tfb_tcp_block_name);
705 		linesz = snprintf(cp, bufsz, "%-32s%c %-32s %u\n",
706 		    f->tf_fb->tfb_tcp_block_name,
707 		    (f->tf_fb == tcp_func_set_ptr) ? '*' : ' ',
708 		    alias ? f->tf_name : "-",
709 		    f->tf_fb->tfb_refcnt);
710 		if (linesz >= bufsz) {
711 			error = EOVERFLOW;
712 			break;
713 		}
714 		cp += linesz;
715 		bufsz -= linesz;
716 		outsz += linesz;
717 	}
718 	rw_runlock(&tcp_function_lock);
719 	if (error == 0)
720 		error = sysctl_handle_string(oidp, buffer, outsz + 1, req);
721 	free(buffer, M_TEMP);
722 	return (error);
723 }
724 
725 SYSCTL_PROC(_net_inet_tcp, OID_AUTO, functions_available,
726     CTLTYPE_STRING | CTLFLAG_RD | CTLFLAG_NEEDGIANT,
727     NULL, 0, sysctl_net_inet_list_available, "A",
728     "list available TCP Function sets");
729 
730 VNET_DEFINE(int, tcp_udp_tunneling_port) = TCP_TUNNELING_PORT_DEFAULT;
731 
732 #ifdef INET
733 VNET_DEFINE(struct socket *, udp4_tun_socket) = NULL;
734 #define	V_udp4_tun_socket	VNET(udp4_tun_socket)
735 #endif
736 #ifdef INET6
737 VNET_DEFINE(struct socket *, udp6_tun_socket) = NULL;
738 #define	V_udp6_tun_socket	VNET(udp6_tun_socket)
739 #endif
740 
741 static void
742 tcp_over_udp_stop(void)
743 {
744 	/*
745 	 * This function assumes sysctl caller holds inp_rinfo_lock()
746 	 * for writting!
747 	 */
748 #ifdef INET
749 	if (V_udp4_tun_socket != NULL) {
750 		soclose(V_udp4_tun_socket);
751 		V_udp4_tun_socket = NULL;
752 	}
753 #endif
754 #ifdef INET6
755 	if (V_udp6_tun_socket != NULL) {
756 		soclose(V_udp6_tun_socket);
757 		V_udp6_tun_socket = NULL;
758 	}
759 #endif
760 }
761 
762 static int
763 tcp_over_udp_start(void)
764 {
765 	uint16_t port;
766 	int ret;
767 #ifdef INET
768 	struct sockaddr_in sin;
769 #endif
770 #ifdef INET6
771 	struct sockaddr_in6 sin6;
772 #endif
773 	/*
774 	 * This function assumes sysctl caller holds inp_info_rlock()
775 	 * for writting!
776 	 */
777 	port = V_tcp_udp_tunneling_port;
778 	if (ntohs(port) == 0) {
779 		/* Must have a port set */
780 		return (EINVAL);
781 	}
782 #ifdef INET
783 	if (V_udp4_tun_socket != NULL) {
784 		/* Already running -- must stop first */
785 		return (EALREADY);
786 	}
787 #endif
788 #ifdef INET6
789 	if (V_udp6_tun_socket != NULL) {
790 		/* Already running -- must stop first */
791 		return (EALREADY);
792 	}
793 #endif
794 #ifdef INET
795 	if ((ret = socreate(PF_INET, &V_udp4_tun_socket,
796 	    SOCK_DGRAM, IPPROTO_UDP,
797 	    curthread->td_ucred, curthread))) {
798 		tcp_over_udp_stop();
799 		return (ret);
800 	}
801 	/* Call the special UDP hook. */
802 	if ((ret = udp_set_kernel_tunneling(V_udp4_tun_socket,
803 	    tcp_recv_udp_tunneled_packet,
804 	    tcp_ctlinput_viaudp,
805 	    NULL))) {
806 		tcp_over_udp_stop();
807 		return (ret);
808 	}
809 	/* Ok, we have a socket, bind it to the port. */
810 	memset(&sin, 0, sizeof(struct sockaddr_in));
811 	sin.sin_len = sizeof(struct sockaddr_in);
812 	sin.sin_family = AF_INET;
813 	sin.sin_port = htons(port);
814 	if ((ret = sobind(V_udp4_tun_socket,
815 	    (struct sockaddr *)&sin, curthread))) {
816 		tcp_over_udp_stop();
817 		return (ret);
818 	}
819 #endif
820 #ifdef INET6
821 	if ((ret = socreate(PF_INET6, &V_udp6_tun_socket,
822 	    SOCK_DGRAM, IPPROTO_UDP,
823 	    curthread->td_ucred, curthread))) {
824 		tcp_over_udp_stop();
825 		return (ret);
826 	}
827 	/* Call the special UDP hook. */
828 	if ((ret = udp_set_kernel_tunneling(V_udp6_tun_socket,
829 	    tcp_recv_udp_tunneled_packet,
830 	    tcp6_ctlinput_viaudp,
831 	    NULL))) {
832 		tcp_over_udp_stop();
833 		return (ret);
834 	}
835 	/* Ok, we have a socket, bind it to the port. */
836 	memset(&sin6, 0, sizeof(struct sockaddr_in6));
837 	sin6.sin6_len = sizeof(struct sockaddr_in6);
838 	sin6.sin6_family = AF_INET6;
839 	sin6.sin6_port = htons(port);
840 	if ((ret = sobind(V_udp6_tun_socket,
841 	    (struct sockaddr *)&sin6, curthread))) {
842 		tcp_over_udp_stop();
843 		return (ret);
844 	}
845 #endif
846 	return (0);
847 }
848 
849 static int
850 sysctl_net_inet_tcp_udp_tunneling_port_check(SYSCTL_HANDLER_ARGS)
851 {
852 	int error;
853 	uint32_t old, new;
854 
855 	old = V_tcp_udp_tunneling_port;
856 	new = old;
857 	error = sysctl_handle_int(oidp, &new, 0, req);
858 	if ((error == 0) &&
859 	    (req->newptr != NULL)) {
860 		if ((new < TCP_TUNNELING_PORT_MIN) ||
861 		    (new > TCP_TUNNELING_PORT_MAX)) {
862 			error = EINVAL;
863 		} else {
864 			V_tcp_udp_tunneling_port = new;
865 			if (old != 0) {
866 				tcp_over_udp_stop();
867 			}
868 			if (new != 0) {
869 				error = tcp_over_udp_start();
870 			}
871 		}
872 	}
873 	return (error);
874 }
875 
876 SYSCTL_PROC(_net_inet_tcp, OID_AUTO, udp_tunneling_port,
877     CTLFLAG_VNET | CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_MPSAFE,
878     &VNET_NAME(tcp_udp_tunneling_port),
879     0, &sysctl_net_inet_tcp_udp_tunneling_port_check, "IU",
880     "Tunneling port for tcp over udp");
881 
882 VNET_DEFINE(int, tcp_udp_tunneling_overhead) = TCP_TUNNELING_OVERHEAD_DEFAULT;
883 
884 static int
885 sysctl_net_inet_tcp_udp_tunneling_overhead_check(SYSCTL_HANDLER_ARGS)
886 {
887 	int error, new;
888 
889 	new = V_tcp_udp_tunneling_overhead;
890 	error = sysctl_handle_int(oidp, &new, 0, req);
891 	if (error == 0 && req->newptr) {
892 		if ((new < TCP_TUNNELING_OVERHEAD_MIN) ||
893 		    (new > TCP_TUNNELING_OVERHEAD_MAX))
894 			error = EINVAL;
895 		else
896 			V_tcp_udp_tunneling_overhead = new;
897 	}
898 	return (error);
899 }
900 
901 SYSCTL_PROC(_net_inet_tcp, OID_AUTO, udp_tunneling_overhead,
902     CTLFLAG_VNET | CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_MPSAFE,
903     &VNET_NAME(tcp_udp_tunneling_overhead),
904     0, &sysctl_net_inet_tcp_udp_tunneling_overhead_check, "IU",
905     "MSS reduction when using tcp over udp");
906 
907 /*
908  * Exports one (struct tcp_function_info) for each alias/name.
909  */
910 static int
911 sysctl_net_inet_list_func_info(SYSCTL_HANDLER_ARGS)
912 {
913 	int cnt, error;
914 	struct tcp_function *f;
915 	struct tcp_function_info tfi;
916 
917 	/*
918 	 * We don't allow writes.
919 	 */
920 	if (req->newptr != NULL)
921 		return (EINVAL);
922 
923 	/*
924 	 * Wire the old buffer so we can directly copy the functions to
925 	 * user space without dropping the lock.
926 	 */
927 	if (req->oldptr != NULL) {
928 		error = sysctl_wire_old_buffer(req, 0);
929 		if (error)
930 			return (error);
931 	}
932 
933 	/*
934 	 * Walk the list and copy out matching entries. If INVARIANTS
935 	 * is compiled in, also walk the list to verify the length of
936 	 * the list matches what we have recorded.
937 	 */
938 	rw_rlock(&tcp_function_lock);
939 
940 	cnt = 0;
941 #ifndef INVARIANTS
942 	if (req->oldptr == NULL) {
943 		cnt = tcp_fb_cnt;
944 		goto skip_loop;
945 	}
946 #endif
947 	TAILQ_FOREACH(f, &t_functions, tf_next) {
948 #ifdef INVARIANTS
949 		cnt++;
950 #endif
951 		if (req->oldptr != NULL) {
952 			bzero(&tfi, sizeof(tfi));
953 			tfi.tfi_refcnt = f->tf_fb->tfb_refcnt;
954 			tfi.tfi_id = f->tf_fb->tfb_id;
955 			(void)strlcpy(tfi.tfi_alias, f->tf_name,
956 			    sizeof(tfi.tfi_alias));
957 			(void)strlcpy(tfi.tfi_name,
958 			    f->tf_fb->tfb_tcp_block_name, sizeof(tfi.tfi_name));
959 			error = SYSCTL_OUT(req, &tfi, sizeof(tfi));
960 			/*
961 			 * Don't stop on error, as that is the
962 			 * mechanism we use to accumulate length
963 			 * information if the buffer was too short.
964 			 */
965 		}
966 	}
967 	KASSERT(cnt == tcp_fb_cnt,
968 	    ("%s: cnt (%d) != tcp_fb_cnt (%d)", __func__, cnt, tcp_fb_cnt));
969 #ifndef INVARIANTS
970 skip_loop:
971 #endif
972 	rw_runlock(&tcp_function_lock);
973 	if (req->oldptr == NULL)
974 		error = SYSCTL_OUT(req, NULL,
975 		    (cnt + 1) * sizeof(struct tcp_function_info));
976 
977 	return (error);
978 }
979 
980 SYSCTL_PROC(_net_inet_tcp, OID_AUTO, function_info,
981 	    CTLTYPE_OPAQUE | CTLFLAG_SKIP | CTLFLAG_RD | CTLFLAG_MPSAFE,
982 	    NULL, 0, sysctl_net_inet_list_func_info, "S,tcp_function_info",
983 	    "List TCP function block name-to-ID mappings");
984 
985 /*
986  * tfb_tcp_handoff_ok() function for the default stack.
987  * Note that we'll basically try to take all comers.
988  */
989 static int
990 tcp_default_handoff_ok(struct tcpcb *tp)
991 {
992 
993 	return (0);
994 }
995 
996 /*
997  * tfb_tcp_fb_init() function for the default stack.
998  *
999  * This handles making sure we have appropriate timers set if you are
1000  * transitioning a socket that has some amount of setup done.
1001  *
1002  * The init() fuction from the default can *never* return non-zero i.e.
1003  * it is required to always succeed since it is the stack of last resort!
1004  */
1005 static int
1006 tcp_default_fb_init(struct tcpcb *tp)
1007 {
1008 
1009 	struct socket *so;
1010 
1011 	INP_WLOCK_ASSERT(tp->t_inpcb);
1012 
1013 	KASSERT(tp->t_state >= 0 && tp->t_state < TCPS_TIME_WAIT,
1014 	    ("%s: connection %p in unexpected state %d", __func__, tp,
1015 	    tp->t_state));
1016 
1017 	/*
1018 	 * Nothing to do for ESTABLISHED or LISTEN states. And, we don't
1019 	 * know what to do for unexpected states (which includes TIME_WAIT).
1020 	 */
1021 	if (tp->t_state <= TCPS_LISTEN || tp->t_state >= TCPS_TIME_WAIT)
1022 		return (0);
1023 
1024 	/*
1025 	 * Make sure some kind of transmission timer is set if there is
1026 	 * outstanding data.
1027 	 */
1028 	so = tp->t_inpcb->inp_socket;
1029 	if ((!TCPS_HAVEESTABLISHED(tp->t_state) || sbavail(&so->so_snd) ||
1030 	    tp->snd_una != tp->snd_max) && !(tcp_timer_active(tp, TT_REXMT) ||
1031 	    tcp_timer_active(tp, TT_PERSIST))) {
1032 		/*
1033 		 * If the session has established and it looks like it should
1034 		 * be in the persist state, set the persist timer. Otherwise,
1035 		 * set the retransmit timer.
1036 		 */
1037 		if (TCPS_HAVEESTABLISHED(tp->t_state) && tp->snd_wnd == 0 &&
1038 		    (int32_t)(tp->snd_nxt - tp->snd_una) <
1039 		    (int32_t)sbavail(&so->so_snd))
1040 			tcp_setpersist(tp);
1041 		else
1042 			tcp_timer_activate(tp, TT_REXMT, tp->t_rxtcur);
1043 	}
1044 
1045 	/* All non-embryonic sessions get a keepalive timer. */
1046 	if (!tcp_timer_active(tp, TT_KEEP))
1047 		tcp_timer_activate(tp, TT_KEEP,
1048 		    TCPS_HAVEESTABLISHED(tp->t_state) ? TP_KEEPIDLE(tp) :
1049 		    TP_KEEPINIT(tp));
1050 
1051 	/*
1052 	 * Make sure critical variables are initialized
1053 	 * if transitioning while in Recovery.
1054 	 */
1055 	if IN_FASTRECOVERY(tp->t_flags) {
1056 		if (tp->sackhint.recover_fs == 0)
1057 			tp->sackhint.recover_fs = max(1,
1058 			    tp->snd_nxt - tp->snd_una);
1059 	}
1060 
1061 	return (0);
1062 }
1063 
1064 /*
1065  * tfb_tcp_fb_fini() function for the default stack.
1066  *
1067  * This changes state as necessary (or prudent) to prepare for another stack
1068  * to assume responsibility for the connection.
1069  */
1070 static void
1071 tcp_default_fb_fini(struct tcpcb *tp, int tcb_is_purged)
1072 {
1073 
1074 	INP_WLOCK_ASSERT(tp->t_inpcb);
1075 	return;
1076 }
1077 
1078 /*
1079  * Target size of TCP PCB hash tables. Must be a power of two.
1080  *
1081  * Note that this can be overridden by the kernel environment
1082  * variable net.inet.tcp.tcbhashsize
1083  */
1084 #ifndef TCBHASHSIZE
1085 #define TCBHASHSIZE	0
1086 #endif
1087 
1088 /*
1089  * XXX
1090  * Callouts should be moved into struct tcp directly.  They are currently
1091  * separate because the tcpcb structure is exported to userland for sysctl
1092  * parsing purposes, which do not know about callouts.
1093  */
1094 struct tcpcb_mem {
1095 	struct	tcpcb		tcb;
1096 	struct	tcp_timer	tt;
1097 	struct	cc_var		ccv;
1098 #ifdef TCP_HHOOK
1099 	struct	osd		osd;
1100 #endif
1101 };
1102 
1103 VNET_DEFINE_STATIC(uma_zone_t, tcpcb_zone);
1104 #define	V_tcpcb_zone			VNET(tcpcb_zone)
1105 
1106 MALLOC_DEFINE(M_TCPLOG, "tcplog", "TCP address and flags print buffers");
1107 MALLOC_DEFINE(M_TCPFUNCTIONS, "tcpfunc", "TCP function set memory");
1108 
1109 static struct mtx isn_mtx;
1110 
1111 #define	ISN_LOCK_INIT()	mtx_init(&isn_mtx, "isn_mtx", NULL, MTX_DEF)
1112 #define	ISN_LOCK()	mtx_lock(&isn_mtx)
1113 #define	ISN_UNLOCK()	mtx_unlock(&isn_mtx)
1114 
1115 /*
1116  * TCP initialization.
1117  */
1118 static void
1119 tcp_zone_change(void *tag)
1120 {
1121 
1122 	uma_zone_set_max(V_tcbinfo.ipi_zone, maxsockets);
1123 	uma_zone_set_max(V_tcpcb_zone, maxsockets);
1124 	tcp_tw_zone_change();
1125 }
1126 
1127 static int
1128 tcp_inpcb_init(void *mem, int size, int flags)
1129 {
1130 	struct inpcb *inp = mem;
1131 
1132 	INP_LOCK_INIT(inp, "inp", "tcpinp");
1133 	return (0);
1134 }
1135 
1136 /*
1137  * Take a value and get the next power of 2 that doesn't overflow.
1138  * Used to size the tcp_inpcb hash buckets.
1139  */
1140 static int
1141 maketcp_hashsize(int size)
1142 {
1143 	int hashsize;
1144 
1145 	/*
1146 	 * auto tune.
1147 	 * get the next power of 2 higher than maxsockets.
1148 	 */
1149 	hashsize = 1 << fls(size);
1150 	/* catch overflow, and just go one power of 2 smaller */
1151 	if (hashsize < size) {
1152 		hashsize = 1 << (fls(size) - 1);
1153 	}
1154 	return (hashsize);
1155 }
1156 
1157 static volatile int next_tcp_stack_id = 1;
1158 
1159 /*
1160  * Register a TCP function block with the name provided in the names
1161  * array.  (Note that this function does NOT automatically register
1162  * blk->tfb_tcp_block_name as a stack name.  Therefore, you should
1163  * explicitly include blk->tfb_tcp_block_name in the list of names if
1164  * you wish to register the stack with that name.)
1165  *
1166  * Either all name registrations will succeed or all will fail.  If
1167  * a name registration fails, the function will update the num_names
1168  * argument to point to the array index of the name that encountered
1169  * the failure.
1170  *
1171  * Returns 0 on success, or an error code on failure.
1172  */
1173 int
1174 register_tcp_functions_as_names(struct tcp_function_block *blk, int wait,
1175     const char *names[], int *num_names)
1176 {
1177 	struct tcp_function *n;
1178 	struct tcp_function_set fs;
1179 	int error, i;
1180 
1181 	KASSERT(names != NULL && *num_names > 0,
1182 	    ("%s: Called with 0-length name list", __func__));
1183 	KASSERT(names != NULL, ("%s: Called with NULL name list", __func__));
1184 	KASSERT(rw_initialized(&tcp_function_lock),
1185 	    ("%s: called too early", __func__));
1186 
1187 	if ((blk->tfb_tcp_output == NULL) ||
1188 	    (blk->tfb_tcp_do_segment == NULL) ||
1189 	    (blk->tfb_tcp_ctloutput == NULL) ||
1190 	    (strlen(blk->tfb_tcp_block_name) == 0)) {
1191 		/*
1192 		 * These functions are required and you
1193 		 * need a name.
1194 		 */
1195 		*num_names = 0;
1196 		return (EINVAL);
1197 	}
1198 	if (blk->tfb_tcp_timer_stop_all ||
1199 	    blk->tfb_tcp_timer_activate ||
1200 	    blk->tfb_tcp_timer_active ||
1201 	    blk->tfb_tcp_timer_stop) {
1202 		/*
1203 		 * If you define one timer function you
1204 		 * must have them all.
1205 		 */
1206 		if ((blk->tfb_tcp_timer_stop_all == NULL) ||
1207 		    (blk->tfb_tcp_timer_activate == NULL) ||
1208 		    (blk->tfb_tcp_timer_active == NULL) ||
1209 		    (blk->tfb_tcp_timer_stop == NULL)) {
1210 			*num_names = 0;
1211 			return (EINVAL);
1212 		}
1213 	}
1214 
1215 	if (blk->tfb_flags & TCP_FUNC_BEING_REMOVED) {
1216 		*num_names = 0;
1217 		return (EINVAL);
1218 	}
1219 
1220 	refcount_init(&blk->tfb_refcnt, 0);
1221 	blk->tfb_id = atomic_fetchadd_int(&next_tcp_stack_id, 1);
1222 	for (i = 0; i < *num_names; i++) {
1223 		n = malloc(sizeof(struct tcp_function), M_TCPFUNCTIONS, wait);
1224 		if (n == NULL) {
1225 			error = ENOMEM;
1226 			goto cleanup;
1227 		}
1228 		n->tf_fb = blk;
1229 
1230 		(void)strlcpy(fs.function_set_name, names[i],
1231 		    sizeof(fs.function_set_name));
1232 		rw_wlock(&tcp_function_lock);
1233 		if (find_tcp_functions_locked(&fs) != NULL) {
1234 			/* Duplicate name space not allowed */
1235 			rw_wunlock(&tcp_function_lock);
1236 			free(n, M_TCPFUNCTIONS);
1237 			error = EALREADY;
1238 			goto cleanup;
1239 		}
1240 		(void)strlcpy(n->tf_name, names[i], sizeof(n->tf_name));
1241 		TAILQ_INSERT_TAIL(&t_functions, n, tf_next);
1242 		tcp_fb_cnt++;
1243 		rw_wunlock(&tcp_function_lock);
1244 	}
1245 	return(0);
1246 
1247 cleanup:
1248 	/*
1249 	 * Deregister the names we just added. Because registration failed
1250 	 * for names[i], we don't need to deregister that name.
1251 	 */
1252 	*num_names = i;
1253 	rw_wlock(&tcp_function_lock);
1254 	while (--i >= 0) {
1255 		TAILQ_FOREACH(n, &t_functions, tf_next) {
1256 			if (!strncmp(n->tf_name, names[i],
1257 			    TCP_FUNCTION_NAME_LEN_MAX)) {
1258 				TAILQ_REMOVE(&t_functions, n, tf_next);
1259 				tcp_fb_cnt--;
1260 				n->tf_fb = NULL;
1261 				free(n, M_TCPFUNCTIONS);
1262 				break;
1263 			}
1264 		}
1265 	}
1266 	rw_wunlock(&tcp_function_lock);
1267 	return (error);
1268 }
1269 
1270 /*
1271  * Register a TCP function block using the name provided in the name
1272  * argument.
1273  *
1274  * Returns 0 on success, or an error code on failure.
1275  */
1276 int
1277 register_tcp_functions_as_name(struct tcp_function_block *blk, const char *name,
1278     int wait)
1279 {
1280 	const char *name_list[1];
1281 	int num_names, rv;
1282 
1283 	num_names = 1;
1284 	if (name != NULL)
1285 		name_list[0] = name;
1286 	else
1287 		name_list[0] = blk->tfb_tcp_block_name;
1288 	rv = register_tcp_functions_as_names(blk, wait, name_list, &num_names);
1289 	return (rv);
1290 }
1291 
1292 /*
1293  * Register a TCP function block using the name defined in
1294  * blk->tfb_tcp_block_name.
1295  *
1296  * Returns 0 on success, or an error code on failure.
1297  */
1298 int
1299 register_tcp_functions(struct tcp_function_block *blk, int wait)
1300 {
1301 
1302 	return (register_tcp_functions_as_name(blk, NULL, wait));
1303 }
1304 
1305 /*
1306  * Deregister all names associated with a function block. This
1307  * functionally removes the function block from use within the system.
1308  *
1309  * When called with a true quiesce argument, mark the function block
1310  * as being removed so no more stacks will use it and determine
1311  * whether the removal would succeed.
1312  *
1313  * When called with a false quiesce argument, actually attempt the
1314  * removal.
1315  *
1316  * When called with a force argument, attempt to switch all TCBs to
1317  * use the default stack instead of returning EBUSY.
1318  *
1319  * Returns 0 on success (or if the removal would succeed, or an error
1320  * code on failure.
1321  */
1322 int
1323 deregister_tcp_functions(struct tcp_function_block *blk, bool quiesce,
1324     bool force)
1325 {
1326 	struct tcp_function *f;
1327 
1328 	if (blk == &tcp_def_funcblk) {
1329 		/* You can't un-register the default */
1330 		return (EPERM);
1331 	}
1332 	rw_wlock(&tcp_function_lock);
1333 	if (blk == tcp_func_set_ptr) {
1334 		/* You can't free the current default */
1335 		rw_wunlock(&tcp_function_lock);
1336 		return (EBUSY);
1337 	}
1338 	/* Mark the block so no more stacks can use it. */
1339 	blk->tfb_flags |= TCP_FUNC_BEING_REMOVED;
1340 	/*
1341 	 * If TCBs are still attached to the stack, attempt to switch them
1342 	 * to the default stack.
1343 	 */
1344 	if (force && blk->tfb_refcnt) {
1345 		struct inpcb *inp;
1346 		struct tcpcb *tp;
1347 		VNET_ITERATOR_DECL(vnet_iter);
1348 
1349 		rw_wunlock(&tcp_function_lock);
1350 
1351 		VNET_LIST_RLOCK();
1352 		VNET_FOREACH(vnet_iter) {
1353 			CURVNET_SET(vnet_iter);
1354 			INP_INFO_WLOCK(&V_tcbinfo);
1355 			CK_LIST_FOREACH(inp, V_tcbinfo.ipi_listhead, inp_list) {
1356 				INP_WLOCK(inp);
1357 				if (inp->inp_flags & INP_TIMEWAIT) {
1358 					INP_WUNLOCK(inp);
1359 					continue;
1360 				}
1361 				tp = intotcpcb(inp);
1362 				if (tp == NULL || tp->t_fb != blk) {
1363 					INP_WUNLOCK(inp);
1364 					continue;
1365 				}
1366 				tcp_switch_back_to_default(tp);
1367 				INP_WUNLOCK(inp);
1368 			}
1369 			INP_INFO_WUNLOCK(&V_tcbinfo);
1370 			CURVNET_RESTORE();
1371 		}
1372 		VNET_LIST_RUNLOCK();
1373 
1374 		rw_wlock(&tcp_function_lock);
1375 	}
1376 	if (blk->tfb_refcnt) {
1377 		/* TCBs still attached. */
1378 		rw_wunlock(&tcp_function_lock);
1379 		return (EBUSY);
1380 	}
1381 	if (quiesce) {
1382 		/* Skip removal. */
1383 		rw_wunlock(&tcp_function_lock);
1384 		return (0);
1385 	}
1386 	/* Remove any function names that map to this function block. */
1387 	while (find_tcp_fb_locked(blk, &f) != NULL) {
1388 		TAILQ_REMOVE(&t_functions, f, tf_next);
1389 		tcp_fb_cnt--;
1390 		f->tf_fb = NULL;
1391 		free(f, M_TCPFUNCTIONS);
1392 	}
1393 	rw_wunlock(&tcp_function_lock);
1394 	return (0);
1395 }
1396 
1397 void
1398 tcp_init(void)
1399 {
1400 	const char *tcbhash_tuneable;
1401 	int hashsize;
1402 
1403 	tcbhash_tuneable = "net.inet.tcp.tcbhashsize";
1404 
1405 #ifdef TCP_HHOOK
1406 	if (hhook_head_register(HHOOK_TYPE_TCP, HHOOK_TCP_EST_IN,
1407 	    &V_tcp_hhh[HHOOK_TCP_EST_IN], HHOOK_NOWAIT|HHOOK_HEADISINVNET) != 0)
1408 		printf("%s: WARNING: unable to register helper hook\n", __func__);
1409 	if (hhook_head_register(HHOOK_TYPE_TCP, HHOOK_TCP_EST_OUT,
1410 	    &V_tcp_hhh[HHOOK_TCP_EST_OUT], HHOOK_NOWAIT|HHOOK_HEADISINVNET) != 0)
1411 		printf("%s: WARNING: unable to register helper hook\n", __func__);
1412 #endif
1413 #ifdef STATS
1414 	if (tcp_stats_init())
1415 		printf("%s: WARNING: unable to initialise TCP stats\n",
1416 		    __func__);
1417 #endif
1418 	hashsize = TCBHASHSIZE;
1419 	TUNABLE_INT_FETCH(tcbhash_tuneable, &hashsize);
1420 	if (hashsize == 0) {
1421 		/*
1422 		 * Auto tune the hash size based on maxsockets.
1423 		 * A perfect hash would have a 1:1 mapping
1424 		 * (hashsize = maxsockets) however it's been
1425 		 * suggested that O(2) average is better.
1426 		 */
1427 		hashsize = maketcp_hashsize(maxsockets / 4);
1428 		/*
1429 		 * Our historical default is 512,
1430 		 * do not autotune lower than this.
1431 		 */
1432 		if (hashsize < 512)
1433 			hashsize = 512;
1434 		if (bootverbose && IS_DEFAULT_VNET(curvnet))
1435 			printf("%s: %s auto tuned to %d\n", __func__,
1436 			    tcbhash_tuneable, hashsize);
1437 	}
1438 	/*
1439 	 * We require a hashsize to be a power of two.
1440 	 * Previously if it was not a power of two we would just reset it
1441 	 * back to 512, which could be a nasty surprise if you did not notice
1442 	 * the error message.
1443 	 * Instead what we do is clip it to the closest power of two lower
1444 	 * than the specified hash value.
1445 	 */
1446 	if (!powerof2(hashsize)) {
1447 		int oldhashsize = hashsize;
1448 
1449 		hashsize = maketcp_hashsize(hashsize);
1450 		/* prevent absurdly low value */
1451 		if (hashsize < 16)
1452 			hashsize = 16;
1453 		printf("%s: WARNING: TCB hash size not a power of 2, "
1454 		    "clipped from %d to %d.\n", __func__, oldhashsize,
1455 		    hashsize);
1456 	}
1457 	in_pcbinfo_init(&V_tcbinfo, "tcp", &V_tcb, hashsize, hashsize,
1458 	    "tcp_inpcb", tcp_inpcb_init, IPI_HASHFIELDS_4TUPLE);
1459 
1460 	/*
1461 	 * These have to be type stable for the benefit of the timers.
1462 	 */
1463 	V_tcpcb_zone = uma_zcreate("tcpcb", sizeof(struct tcpcb_mem),
1464 	    NULL, NULL, NULL, NULL, UMA_ALIGN_PTR, 0);
1465 	uma_zone_set_max(V_tcpcb_zone, maxsockets);
1466 	uma_zone_set_warning(V_tcpcb_zone, "kern.ipc.maxsockets limit reached");
1467 
1468 	tcp_tw_init();
1469 	syncache_init();
1470 	tcp_hc_init();
1471 
1472 	TUNABLE_INT_FETCH("net.inet.tcp.sack.enable", &V_tcp_do_sack);
1473 	V_sack_hole_zone = uma_zcreate("sackhole", sizeof(struct sackhole),
1474 	    NULL, NULL, NULL, NULL, UMA_ALIGN_PTR, 0);
1475 
1476 	tcp_fastopen_init();
1477 
1478 	/* Skip initialization of globals for non-default instances. */
1479 	if (!IS_DEFAULT_VNET(curvnet))
1480 		return;
1481 
1482 	tcp_reass_global_init();
1483 
1484 	/* XXX virtualize those bellow? */
1485 	tcp_delacktime = TCPTV_DELACK;
1486 	tcp_keepinit = TCPTV_KEEP_INIT;
1487 	tcp_keepidle = TCPTV_KEEP_IDLE;
1488 	tcp_keepintvl = TCPTV_KEEPINTVL;
1489 	tcp_maxpersistidle = TCPTV_KEEP_IDLE;
1490 	tcp_msl = TCPTV_MSL;
1491 	tcp_rexmit_initial = TCPTV_RTOBASE;
1492 	if (tcp_rexmit_initial < 1)
1493 		tcp_rexmit_initial = 1;
1494 	tcp_rexmit_min = TCPTV_MIN;
1495 	if (tcp_rexmit_min < 1)
1496 		tcp_rexmit_min = 1;
1497 	tcp_persmin = TCPTV_PERSMIN;
1498 	tcp_persmax = TCPTV_PERSMAX;
1499 	tcp_rexmit_slop = TCPTV_CPU_VAR;
1500 	tcp_finwait2_timeout = TCPTV_FINWAIT2_TIMEOUT;
1501 	tcp_tcbhashsize = hashsize;
1502 
1503 	/* Setup the tcp function block list */
1504 	TAILQ_INIT(&t_functions);
1505 	rw_init(&tcp_function_lock, "tcp_func_lock");
1506 	register_tcp_functions(&tcp_def_funcblk, M_WAITOK);
1507 #ifdef TCP_BLACKBOX
1508 	/* Initialize the TCP logging data. */
1509 	tcp_log_init();
1510 #endif
1511 	arc4rand(&V_ts_offset_secret, sizeof(V_ts_offset_secret), 0);
1512 
1513 	if (tcp_soreceive_stream) {
1514 #ifdef INET
1515 		tcp_usrreqs.pru_soreceive = soreceive_stream;
1516 #endif
1517 #ifdef INET6
1518 		tcp6_usrreqs.pru_soreceive = soreceive_stream;
1519 #endif /* INET6 */
1520 	}
1521 
1522 #ifdef INET6
1523 #define TCP_MINPROTOHDR (sizeof(struct ip6_hdr) + sizeof(struct tcphdr))
1524 #else /* INET6 */
1525 #define TCP_MINPROTOHDR (sizeof(struct tcpiphdr))
1526 #endif /* INET6 */
1527 	if (max_protohdr < TCP_MINPROTOHDR)
1528 		max_protohdr = TCP_MINPROTOHDR;
1529 	if (max_linkhdr + TCP_MINPROTOHDR > MHLEN)
1530 		panic("tcp_init");
1531 #undef TCP_MINPROTOHDR
1532 
1533 	ISN_LOCK_INIT();
1534 	EVENTHANDLER_REGISTER(shutdown_pre_sync, tcp_fini, NULL,
1535 		SHUTDOWN_PRI_DEFAULT);
1536 	EVENTHANDLER_REGISTER(maxsockets_change, tcp_zone_change, NULL,
1537 		EVENTHANDLER_PRI_ANY);
1538 
1539 	tcp_inp_lro_direct_queue = counter_u64_alloc(M_WAITOK);
1540 	tcp_inp_lro_wokeup_queue = counter_u64_alloc(M_WAITOK);
1541 	tcp_inp_lro_compressed = counter_u64_alloc(M_WAITOK);
1542 	tcp_inp_lro_locks_taken = counter_u64_alloc(M_WAITOK);
1543 	tcp_extra_mbuf = counter_u64_alloc(M_WAITOK);
1544 	tcp_would_have_but = counter_u64_alloc(M_WAITOK);
1545 	tcp_comp_total = counter_u64_alloc(M_WAITOK);
1546 	tcp_uncomp_total = counter_u64_alloc(M_WAITOK);
1547 	tcp_bad_csums = counter_u64_alloc(M_WAITOK);
1548 #ifdef TCPPCAP
1549 	tcp_pcap_init();
1550 #endif
1551 }
1552 
1553 #ifdef VIMAGE
1554 static void
1555 tcp_destroy(void *unused __unused)
1556 {
1557 	int n;
1558 #ifdef TCP_HHOOK
1559 	int error;
1560 #endif
1561 
1562 	/*
1563 	 * All our processes are gone, all our sockets should be cleaned
1564 	 * up, which means, we should be past the tcp_discardcb() calls.
1565 	 * Sleep to let all tcpcb timers really disappear and cleanup.
1566 	 */
1567 	for (;;) {
1568 		INP_LIST_RLOCK(&V_tcbinfo);
1569 		n = V_tcbinfo.ipi_count;
1570 		INP_LIST_RUNLOCK(&V_tcbinfo);
1571 		if (n == 0)
1572 			break;
1573 		pause("tcpdes", hz / 10);
1574 	}
1575 	tcp_hc_destroy();
1576 	syncache_destroy();
1577 	tcp_tw_destroy();
1578 	in_pcbinfo_destroy(&V_tcbinfo);
1579 	/* tcp_discardcb() clears the sack_holes up. */
1580 	uma_zdestroy(V_sack_hole_zone);
1581 	uma_zdestroy(V_tcpcb_zone);
1582 
1583 	/*
1584 	 * Cannot free the zone until all tcpcbs are released as we attach
1585 	 * the allocations to them.
1586 	 */
1587 	tcp_fastopen_destroy();
1588 
1589 #ifdef TCP_HHOOK
1590 	error = hhook_head_deregister(V_tcp_hhh[HHOOK_TCP_EST_IN]);
1591 	if (error != 0) {
1592 		printf("%s: WARNING: unable to deregister helper hook "
1593 		    "type=%d, id=%d: error %d returned\n", __func__,
1594 		    HHOOK_TYPE_TCP, HHOOK_TCP_EST_IN, error);
1595 	}
1596 	error = hhook_head_deregister(V_tcp_hhh[HHOOK_TCP_EST_OUT]);
1597 	if (error != 0) {
1598 		printf("%s: WARNING: unable to deregister helper hook "
1599 		    "type=%d, id=%d: error %d returned\n", __func__,
1600 		    HHOOK_TYPE_TCP, HHOOK_TCP_EST_OUT, error);
1601 	}
1602 #endif
1603 }
1604 VNET_SYSUNINIT(tcp, SI_SUB_PROTO_DOMAIN, SI_ORDER_FOURTH, tcp_destroy, NULL);
1605 #endif
1606 
1607 void
1608 tcp_fini(void *xtp)
1609 {
1610 
1611 }
1612 
1613 /*
1614  * Fill in the IP and TCP headers for an outgoing packet, given the tcpcb.
1615  * tcp_template used to store this data in mbufs, but we now recopy it out
1616  * of the tcpcb each time to conserve mbufs.
1617  */
1618 void
1619 tcpip_fillheaders(struct inpcb *inp, uint16_t port, void *ip_ptr, void *tcp_ptr)
1620 {
1621 	struct tcphdr *th = (struct tcphdr *)tcp_ptr;
1622 
1623 	INP_WLOCK_ASSERT(inp);
1624 
1625 #ifdef INET6
1626 	if ((inp->inp_vflag & INP_IPV6) != 0) {
1627 		struct ip6_hdr *ip6;
1628 
1629 		ip6 = (struct ip6_hdr *)ip_ptr;
1630 		ip6->ip6_flow = (ip6->ip6_flow & ~IPV6_FLOWINFO_MASK) |
1631 			(inp->inp_flow & IPV6_FLOWINFO_MASK);
1632 		ip6->ip6_vfc = (ip6->ip6_vfc & ~IPV6_VERSION_MASK) |
1633 			(IPV6_VERSION & IPV6_VERSION_MASK);
1634 		if (port == 0)
1635 			ip6->ip6_nxt = IPPROTO_TCP;
1636 		else
1637 			ip6->ip6_nxt = IPPROTO_UDP;
1638 		ip6->ip6_plen = htons(sizeof(struct tcphdr));
1639 		ip6->ip6_src = inp->in6p_laddr;
1640 		ip6->ip6_dst = inp->in6p_faddr;
1641 	}
1642 #endif /* INET6 */
1643 #if defined(INET6) && defined(INET)
1644 	else
1645 #endif
1646 #ifdef INET
1647 	{
1648 		struct ip *ip;
1649 
1650 		ip = (struct ip *)ip_ptr;
1651 		ip->ip_v = IPVERSION;
1652 		ip->ip_hl = 5;
1653 		ip->ip_tos = inp->inp_ip_tos;
1654 		ip->ip_len = 0;
1655 		ip->ip_id = 0;
1656 		ip->ip_off = 0;
1657 		ip->ip_ttl = inp->inp_ip_ttl;
1658 		ip->ip_sum = 0;
1659 		if (port == 0)
1660 			ip->ip_p = IPPROTO_TCP;
1661 		else
1662 			ip->ip_p = IPPROTO_UDP;
1663 		ip->ip_src = inp->inp_laddr;
1664 		ip->ip_dst = inp->inp_faddr;
1665 	}
1666 #endif /* INET */
1667 	th->th_sport = inp->inp_lport;
1668 	th->th_dport = inp->inp_fport;
1669 	th->th_seq = 0;
1670 	th->th_ack = 0;
1671 	th->th_x2 = 0;
1672 	th->th_off = 5;
1673 	th->th_flags = 0;
1674 	th->th_win = 0;
1675 	th->th_urp = 0;
1676 	th->th_sum = 0;		/* in_pseudo() is called later for ipv4 */
1677 }
1678 
1679 /*
1680  * Create template to be used to send tcp packets on a connection.
1681  * Allocates an mbuf and fills in a skeletal tcp/ip header.  The only
1682  * use for this function is in keepalives, which use tcp_respond.
1683  */
1684 struct tcptemp *
1685 tcpip_maketemplate(struct inpcb *inp)
1686 {
1687 	struct tcptemp *t;
1688 
1689 	t = malloc(sizeof(*t), M_TEMP, M_NOWAIT);
1690 	if (t == NULL)
1691 		return (NULL);
1692 	tcpip_fillheaders(inp, 0, (void *)&t->tt_ipgen, (void *)&t->tt_t);
1693 	return (t);
1694 }
1695 
1696 /*
1697  * Send a single message to the TCP at address specified by
1698  * the given TCP/IP header.  If m == NULL, then we make a copy
1699  * of the tcpiphdr at th and send directly to the addressed host.
1700  * This is used to force keep alive messages out using the TCP
1701  * template for a connection.  If flags are given then we send
1702  * a message back to the TCP which originated the segment th,
1703  * and discard the mbuf containing it and any other attached mbufs.
1704  *
1705  * In any case the ack and sequence number of the transmitted
1706  * segment are as specified by the parameters.
1707  *
1708  * NOTE: If m != NULL, then th must point to *inside* the mbuf.
1709  */
1710 void
1711 tcp_respond(struct tcpcb *tp, void *ipgen, struct tcphdr *th, struct mbuf *m,
1712     tcp_seq ack, tcp_seq seq, int flags)
1713 {
1714 	struct tcpopt to;
1715 	struct inpcb *inp;
1716 	struct ip *ip;
1717 	struct mbuf *optm;
1718 	struct udphdr *uh = NULL;
1719 	struct tcphdr *nth;
1720 	u_char *optp;
1721 #ifdef INET6
1722 	struct ip6_hdr *ip6;
1723 	int isipv6;
1724 #endif /* INET6 */
1725 	int optlen, tlen, win, ulen;
1726 	bool incl_opts;
1727 	uint16_t port;
1728 
1729 	KASSERT(tp != NULL || m != NULL, ("tcp_respond: tp and m both NULL"));
1730 	NET_EPOCH_ASSERT();
1731 
1732 #ifdef INET6
1733 	isipv6 = ((struct ip *)ipgen)->ip_v == (IPV6_VERSION >> 4);
1734 	ip6 = ipgen;
1735 #endif /* INET6 */
1736 	ip = ipgen;
1737 
1738 	if (tp != NULL) {
1739 		inp = tp->t_inpcb;
1740 		KASSERT(inp != NULL, ("tcp control block w/o inpcb"));
1741 		INP_LOCK_ASSERT(inp);
1742 	} else
1743 		inp = NULL;
1744 
1745 	if (m != NULL) {
1746 #ifdef INET6
1747 		if (isipv6 && ip6 && (ip6->ip6_nxt == IPPROTO_UDP))
1748 			port = m->m_pkthdr.tcp_tun_port;
1749 		else
1750 #endif
1751 		if (ip && (ip->ip_p == IPPROTO_UDP))
1752 			port = m->m_pkthdr.tcp_tun_port;
1753 		else
1754 			port = 0;
1755 	} else
1756 		port = tp->t_port;
1757 
1758 	incl_opts = false;
1759 	win = 0;
1760 	if (tp != NULL) {
1761 		if (!(flags & TH_RST)) {
1762 			win = sbspace(&inp->inp_socket->so_rcv);
1763 			if (win > TCP_MAXWIN << tp->rcv_scale)
1764 				win = TCP_MAXWIN << tp->rcv_scale;
1765 		}
1766 		if ((tp->t_flags & TF_NOOPT) == 0)
1767 			incl_opts = true;
1768 	}
1769 	if (m == NULL) {
1770 		m = m_gethdr(M_NOWAIT, MT_DATA);
1771 		if (m == NULL)
1772 			return;
1773 		m->m_data += max_linkhdr;
1774 #ifdef INET6
1775 		if (isipv6) {
1776 			bcopy((caddr_t)ip6, mtod(m, caddr_t),
1777 			      sizeof(struct ip6_hdr));
1778 			ip6 = mtod(m, struct ip6_hdr *);
1779 			nth = (struct tcphdr *)(ip6 + 1);
1780 			if (port) {
1781 				/* Insert a UDP header */
1782 				uh = (struct udphdr *)nth;
1783 				uh->uh_sport = htons(V_tcp_udp_tunneling_port);
1784 				uh->uh_dport = port;
1785 				nth = (struct tcphdr *)(uh + 1);
1786 			}
1787 		} else
1788 #endif /* INET6 */
1789 		{
1790 			bcopy((caddr_t)ip, mtod(m, caddr_t), sizeof(struct ip));
1791 			ip = mtod(m, struct ip *);
1792 			nth = (struct tcphdr *)(ip + 1);
1793 			if (port) {
1794 				/* Insert a UDP header */
1795 				uh = (struct udphdr *)nth;
1796 				uh->uh_sport = htons(V_tcp_udp_tunneling_port);
1797 				uh->uh_dport = port;
1798 				nth = (struct tcphdr *)(uh + 1);
1799 			}
1800 		}
1801 		bcopy((caddr_t)th, (caddr_t)nth, sizeof(struct tcphdr));
1802 		flags = TH_ACK;
1803 	} else if ((!M_WRITABLE(m)) || (port != 0)) {
1804 		struct mbuf *n;
1805 
1806 		/* Can't reuse 'm', allocate a new mbuf. */
1807 		n = m_gethdr(M_NOWAIT, MT_DATA);
1808 		if (n == NULL) {
1809 			m_freem(m);
1810 			return;
1811 		}
1812 
1813 		if (!m_dup_pkthdr(n, m, M_NOWAIT)) {
1814 			m_freem(m);
1815 			m_freem(n);
1816 			return;
1817 		}
1818 
1819 		n->m_data += max_linkhdr;
1820 		/* m_len is set later */
1821 #define xchg(a,b,type) { type t; t=a; a=b; b=t; }
1822 #ifdef INET6
1823 		if (isipv6) {
1824 			bcopy((caddr_t)ip6, mtod(n, caddr_t),
1825 			      sizeof(struct ip6_hdr));
1826 			ip6 = mtod(n, struct ip6_hdr *);
1827 			xchg(ip6->ip6_dst, ip6->ip6_src, struct in6_addr);
1828 			nth = (struct tcphdr *)(ip6 + 1);
1829 			if (port) {
1830 				/* Insert a UDP header */
1831 				uh = (struct udphdr *)nth;
1832 				uh->uh_sport = htons(V_tcp_udp_tunneling_port);
1833 				uh->uh_dport = port;
1834 				nth = (struct tcphdr *)(uh + 1);
1835 			}
1836 		} else
1837 #endif /* INET6 */
1838 		{
1839 			bcopy((caddr_t)ip, mtod(n, caddr_t), sizeof(struct ip));
1840 			ip = mtod(n, struct ip *);
1841 			xchg(ip->ip_dst.s_addr, ip->ip_src.s_addr, uint32_t);
1842 			nth = (struct tcphdr *)(ip + 1);
1843 			if (port) {
1844 				/* Insert a UDP header */
1845 				uh = (struct udphdr *)nth;
1846 				uh->uh_sport = htons(V_tcp_udp_tunneling_port);
1847 				uh->uh_dport = port;
1848 				nth = (struct tcphdr *)(uh + 1);
1849 			}
1850 		}
1851 		bcopy((caddr_t)th, (caddr_t)nth, sizeof(struct tcphdr));
1852 		xchg(nth->th_dport, nth->th_sport, uint16_t);
1853 		th = nth;
1854 		m_freem(m);
1855 		m = n;
1856 	} else {
1857 		/*
1858 		 *  reuse the mbuf.
1859 		 * XXX MRT We inherit the FIB, which is lucky.
1860 		 */
1861 		m_freem(m->m_next);
1862 		m->m_next = NULL;
1863 		m->m_data = (caddr_t)ipgen;
1864 		/* m_len is set later */
1865 #ifdef INET6
1866 		if (isipv6) {
1867 			xchg(ip6->ip6_dst, ip6->ip6_src, struct in6_addr);
1868 			nth = (struct tcphdr *)(ip6 + 1);
1869 		} else
1870 #endif /* INET6 */
1871 		{
1872 			xchg(ip->ip_dst.s_addr, ip->ip_src.s_addr, uint32_t);
1873 			nth = (struct tcphdr *)(ip + 1);
1874 		}
1875 		if (th != nth) {
1876 			/*
1877 			 * this is usually a case when an extension header
1878 			 * exists between the IPv6 header and the
1879 			 * TCP header.
1880 			 */
1881 			nth->th_sport = th->th_sport;
1882 			nth->th_dport = th->th_dport;
1883 		}
1884 		xchg(nth->th_dport, nth->th_sport, uint16_t);
1885 #undef xchg
1886 	}
1887 	tlen = 0;
1888 #ifdef INET6
1889 	if (isipv6)
1890 		tlen = sizeof (struct ip6_hdr) + sizeof (struct tcphdr);
1891 #endif
1892 #if defined(INET) && defined(INET6)
1893 	else
1894 #endif
1895 #ifdef INET
1896 		tlen = sizeof (struct tcpiphdr);
1897 #endif
1898 	if (port)
1899 		tlen += sizeof (struct udphdr);
1900 #ifdef INVARIANTS
1901 	m->m_len = 0;
1902 	KASSERT(M_TRAILINGSPACE(m) >= tlen,
1903 	    ("Not enough trailing space for message (m=%p, need=%d, have=%ld)",
1904 	    m, tlen, (long)M_TRAILINGSPACE(m)));
1905 #endif
1906 	m->m_len = tlen;
1907 	to.to_flags = 0;
1908 	if (incl_opts) {
1909 		/* Make sure we have room. */
1910 		if (M_TRAILINGSPACE(m) < TCP_MAXOLEN) {
1911 			m->m_next = m_get(M_NOWAIT, MT_DATA);
1912 			if (m->m_next) {
1913 				optp = mtod(m->m_next, u_char *);
1914 				optm = m->m_next;
1915 			} else
1916 				incl_opts = false;
1917 		} else {
1918 			optp = (u_char *) (nth + 1);
1919 			optm = m;
1920 		}
1921 	}
1922 	if (incl_opts) {
1923 		/* Timestamps. */
1924 		if (tp->t_flags & TF_RCVD_TSTMP) {
1925 			to.to_tsval = tcp_ts_getticks() + tp->ts_offset;
1926 			to.to_tsecr = tp->ts_recent;
1927 			to.to_flags |= TOF_TS;
1928 		}
1929 #if defined(IPSEC_SUPPORT) || defined(TCP_SIGNATURE)
1930 		/* TCP-MD5 (RFC2385). */
1931 		if (tp->t_flags & TF_SIGNATURE)
1932 			to.to_flags |= TOF_SIGNATURE;
1933 #endif
1934 		/* Add the options. */
1935 		tlen += optlen = tcp_addoptions(&to, optp);
1936 
1937 		/* Update m_len in the correct mbuf. */
1938 		optm->m_len += optlen;
1939 	} else
1940 		optlen = 0;
1941 #ifdef INET6
1942 	if (isipv6) {
1943 		if (uh) {
1944 			ulen = tlen - sizeof(struct ip6_hdr);
1945 			uh->uh_ulen = htons(ulen);
1946 		}
1947 		ip6->ip6_flow = 0;
1948 		ip6->ip6_vfc = IPV6_VERSION;
1949 		if (port)
1950 			ip6->ip6_nxt = IPPROTO_UDP;
1951 		else
1952 			ip6->ip6_nxt = IPPROTO_TCP;
1953 		ip6->ip6_plen = htons(tlen - sizeof(*ip6));
1954 	}
1955 #endif
1956 #if defined(INET) && defined(INET6)
1957 	else
1958 #endif
1959 #ifdef INET
1960 	{
1961 		if (uh) {
1962 			ulen = tlen - sizeof(struct ip);
1963 			uh->uh_ulen = htons(ulen);
1964 		}
1965 		ip->ip_len = htons(tlen);
1966 		ip->ip_ttl = V_ip_defttl;
1967 		if (port) {
1968 			ip->ip_p = IPPROTO_UDP;
1969 		} else {
1970 			ip->ip_p = IPPROTO_TCP;
1971 		}
1972 		if (V_path_mtu_discovery)
1973 			ip->ip_off |= htons(IP_DF);
1974 	}
1975 #endif
1976 	m->m_pkthdr.len = tlen;
1977 	m->m_pkthdr.rcvif = NULL;
1978 #ifdef MAC
1979 	if (inp != NULL) {
1980 		/*
1981 		 * Packet is associated with a socket, so allow the
1982 		 * label of the response to reflect the socket label.
1983 		 */
1984 		INP_LOCK_ASSERT(inp);
1985 		mac_inpcb_create_mbuf(inp, m);
1986 	} else {
1987 		/*
1988 		 * Packet is not associated with a socket, so possibly
1989 		 * update the label in place.
1990 		 */
1991 		mac_netinet_tcp_reply(m);
1992 	}
1993 #endif
1994 	nth->th_seq = htonl(seq);
1995 	nth->th_ack = htonl(ack);
1996 	nth->th_x2 = 0;
1997 	nth->th_off = (sizeof (struct tcphdr) + optlen) >> 2;
1998 	nth->th_flags = flags;
1999 	if (tp != NULL)
2000 		nth->th_win = htons((u_short) (win >> tp->rcv_scale));
2001 	else
2002 		nth->th_win = htons((u_short)win);
2003 	nth->th_urp = 0;
2004 
2005 #if defined(IPSEC_SUPPORT) || defined(TCP_SIGNATURE)
2006 	if (to.to_flags & TOF_SIGNATURE) {
2007 		if (!TCPMD5_ENABLED() ||
2008 		    TCPMD5_OUTPUT(m, nth, to.to_signature) != 0) {
2009 			m_freem(m);
2010 			return;
2011 		}
2012 	}
2013 #endif
2014 
2015 #ifdef INET6
2016 	if (isipv6) {
2017 		if (port) {
2018 			m->m_pkthdr.csum_flags = CSUM_UDP_IPV6;
2019 			m->m_pkthdr.csum_data = offsetof(struct udphdr, uh_sum);
2020 			uh->uh_sum = in6_cksum_pseudo(ip6, ulen, IPPROTO_UDP, 0);
2021 			nth->th_sum = 0;
2022 		} else {
2023 			m->m_pkthdr.csum_flags = CSUM_TCP_IPV6;
2024 			m->m_pkthdr.csum_data = offsetof(struct tcphdr, th_sum);
2025 			nth->th_sum = in6_cksum_pseudo(ip6,
2026 			    tlen - sizeof(struct ip6_hdr), IPPROTO_TCP, 0);
2027 		}
2028 		ip6->ip6_hlim = in6_selecthlim(tp != NULL ? tp->t_inpcb :
2029 		    NULL, NULL);
2030 	}
2031 #endif /* INET6 */
2032 #if defined(INET6) && defined(INET)
2033 	else
2034 #endif
2035 #ifdef INET
2036 	{
2037 		if (port) {
2038 			uh->uh_sum = in_pseudo(ip->ip_src.s_addr, ip->ip_dst.s_addr,
2039 			    htons(ulen + IPPROTO_UDP));
2040 			m->m_pkthdr.csum_flags = CSUM_UDP;
2041 			m->m_pkthdr.csum_data = offsetof(struct udphdr, uh_sum);
2042 			nth->th_sum = 0;
2043 		} else {
2044 			m->m_pkthdr.csum_flags = CSUM_TCP;
2045 			m->m_pkthdr.csum_data = offsetof(struct tcphdr, th_sum);
2046 			nth->th_sum = in_pseudo(ip->ip_src.s_addr, ip->ip_dst.s_addr,
2047 			    htons((u_short)(tlen - sizeof(struct ip) + ip->ip_p)));
2048 		}
2049 	}
2050 #endif /* INET */
2051 #ifdef TCPDEBUG
2052 	if (tp == NULL || (inp->inp_socket->so_options & SO_DEBUG))
2053 		tcp_trace(TA_OUTPUT, 0, tp, mtod(m, void *), th, 0);
2054 #endif
2055 	TCP_PROBE3(debug__output, tp, th, m);
2056 	if (flags & TH_RST)
2057 		TCP_PROBE5(accept__refused, NULL, NULL, m, tp, nth);
2058 
2059 #ifdef INET6
2060 	if (isipv6) {
2061 		TCP_PROBE5(send, NULL, tp, ip6, tp, nth);
2062 		(void)ip6_output(m, NULL, NULL, 0, NULL, NULL, inp);
2063 	}
2064 #endif /* INET6 */
2065 #if defined(INET) && defined(INET6)
2066 	else
2067 #endif
2068 #ifdef INET
2069 	{
2070 		TCP_PROBE5(send, NULL, tp, ip, tp, nth);
2071 		(void)ip_output(m, NULL, NULL, 0, NULL, inp);
2072 	}
2073 #endif
2074 }
2075 
2076 /*
2077  * Create a new TCP control block, making an
2078  * empty reassembly queue and hooking it to the argument
2079  * protocol control block.  The `inp' parameter must have
2080  * come from the zone allocator set up in tcp_init().
2081  */
2082 struct tcpcb *
2083 tcp_newtcpcb(struct inpcb *inp)
2084 {
2085 	struct tcpcb_mem *tm;
2086 	struct tcpcb *tp;
2087 #ifdef INET6
2088 	int isipv6 = (inp->inp_vflag & INP_IPV6) != 0;
2089 #endif /* INET6 */
2090 
2091 	tm = uma_zalloc(V_tcpcb_zone, M_NOWAIT | M_ZERO);
2092 	if (tm == NULL)
2093 		return (NULL);
2094 	tp = &tm->tcb;
2095 
2096 	/* Initialise cc_var struct for this tcpcb. */
2097 	tp->ccv = &tm->ccv;
2098 	tp->ccv->type = IPPROTO_TCP;
2099 	tp->ccv->ccvc.tcp = tp;
2100 	rw_rlock(&tcp_function_lock);
2101 	tp->t_fb = tcp_func_set_ptr;
2102 	refcount_acquire(&tp->t_fb->tfb_refcnt);
2103 	rw_runlock(&tcp_function_lock);
2104 	/*
2105 	 * Use the current system default CC algorithm.
2106 	 */
2107 	CC_LIST_RLOCK();
2108 	KASSERT(!STAILQ_EMPTY(&cc_list), ("cc_list is empty!"));
2109 	CC_ALGO(tp) = CC_DEFAULT();
2110 	CC_LIST_RUNLOCK();
2111 	/*
2112 	 * The tcpcb will hold a reference on its inpcb until tcp_discardcb()
2113 	 * is called.
2114 	 */
2115 	in_pcbref(inp);	/* Reference for tcpcb */
2116 	tp->t_inpcb = inp;
2117 
2118 	if (CC_ALGO(tp)->cb_init != NULL)
2119 		if (CC_ALGO(tp)->cb_init(tp->ccv) > 0) {
2120 			if (tp->t_fb->tfb_tcp_fb_fini)
2121 				(*tp->t_fb->tfb_tcp_fb_fini)(tp, 1);
2122 			in_pcbrele_wlocked(inp);
2123 			refcount_release(&tp->t_fb->tfb_refcnt);
2124 			uma_zfree(V_tcpcb_zone, tm);
2125 			return (NULL);
2126 		}
2127 
2128 #ifdef TCP_HHOOK
2129 	tp->osd = &tm->osd;
2130 	if (khelp_init_osd(HELPER_CLASS_TCP, tp->osd)) {
2131 		if (tp->t_fb->tfb_tcp_fb_fini)
2132 			(*tp->t_fb->tfb_tcp_fb_fini)(tp, 1);
2133 		in_pcbrele_wlocked(inp);
2134 		refcount_release(&tp->t_fb->tfb_refcnt);
2135 		uma_zfree(V_tcpcb_zone, tm);
2136 		return (NULL);
2137 	}
2138 #endif
2139 
2140 #ifdef VIMAGE
2141 	tp->t_vnet = inp->inp_vnet;
2142 #endif
2143 	tp->t_timers = &tm->tt;
2144 	TAILQ_INIT(&tp->t_segq);
2145 	tp->t_maxseg =
2146 #ifdef INET6
2147 		isipv6 ? V_tcp_v6mssdflt :
2148 #endif /* INET6 */
2149 		V_tcp_mssdflt;
2150 
2151 	/* Set up our timeouts. */
2152 	callout_init(&tp->t_timers->tt_rexmt, 1);
2153 	callout_init(&tp->t_timers->tt_persist, 1);
2154 	callout_init(&tp->t_timers->tt_keep, 1);
2155 	callout_init(&tp->t_timers->tt_2msl, 1);
2156 	callout_init(&tp->t_timers->tt_delack, 1);
2157 
2158 	if (V_tcp_do_rfc1323)
2159 		tp->t_flags = (TF_REQ_SCALE|TF_REQ_TSTMP);
2160 	if (V_tcp_do_sack)
2161 		tp->t_flags |= TF_SACK_PERMIT;
2162 	TAILQ_INIT(&tp->snd_holes);
2163 
2164 	/*
2165 	 * Init srtt to TCPTV_SRTTBASE (0), so we can tell that we have no
2166 	 * rtt estimate.  Set rttvar so that srtt + 4 * rttvar gives
2167 	 * reasonable initial retransmit time.
2168 	 */
2169 	tp->t_srtt = TCPTV_SRTTBASE;
2170 	tp->t_rttvar = ((tcp_rexmit_initial - TCPTV_SRTTBASE) << TCP_RTTVAR_SHIFT) / 4;
2171 	tp->t_rttmin = tcp_rexmit_min;
2172 	tp->t_rxtcur = tcp_rexmit_initial;
2173 	tp->snd_cwnd = TCP_MAXWIN << TCP_MAX_WINSHIFT;
2174 	tp->snd_ssthresh = TCP_MAXWIN << TCP_MAX_WINSHIFT;
2175 	tp->t_rcvtime = ticks;
2176 	/*
2177 	 * IPv4 TTL initialization is necessary for an IPv6 socket as well,
2178 	 * because the socket may be bound to an IPv6 wildcard address,
2179 	 * which may match an IPv4-mapped IPv6 address.
2180 	 */
2181 	inp->inp_ip_ttl = V_ip_defttl;
2182 	inp->inp_ppcb = tp;
2183 #ifdef TCPPCAP
2184 	/*
2185 	 * Init the TCP PCAP queues.
2186 	 */
2187 	tcp_pcap_tcpcb_init(tp);
2188 #endif
2189 #ifdef TCP_BLACKBOX
2190 	/* Initialize the per-TCPCB log data. */
2191 	tcp_log_tcpcbinit(tp);
2192 #endif
2193 	tp->t_pacing_rate = -1;
2194 	if (tp->t_fb->tfb_tcp_fb_init) {
2195 		if ((*tp->t_fb->tfb_tcp_fb_init)(tp)) {
2196 			refcount_release(&tp->t_fb->tfb_refcnt);
2197 			in_pcbrele_wlocked(inp);
2198 			uma_zfree(V_tcpcb_zone, tm);
2199 			return (NULL);
2200 		}
2201 	}
2202 #ifdef STATS
2203 	if (V_tcp_perconn_stats_enable == 1)
2204 		tp->t_stats = stats_blob_alloc(V_tcp_perconn_stats_dflt_tpl, 0);
2205 #endif
2206 	if (V_tcp_do_lrd)
2207 		tp->t_flags |= TF_LRD;
2208 	return (tp);		/* XXX */
2209 }
2210 
2211 /*
2212  * Switch the congestion control algorithm back to NewReno for any active
2213  * control blocks using an algorithm which is about to go away.
2214  * This ensures the CC framework can allow the unload to proceed without leaving
2215  * any dangling pointers which would trigger a panic.
2216  * Returning non-zero would inform the CC framework that something went wrong
2217  * and it would be unsafe to allow the unload to proceed. However, there is no
2218  * way for this to occur with this implementation so we always return zero.
2219  */
2220 int
2221 tcp_ccalgounload(struct cc_algo *unload_algo)
2222 {
2223 	struct cc_algo *tmpalgo;
2224 	struct inpcb *inp;
2225 	struct tcpcb *tp;
2226 	VNET_ITERATOR_DECL(vnet_iter);
2227 
2228 	/*
2229 	 * Check all active control blocks across all network stacks and change
2230 	 * any that are using "unload_algo" back to NewReno. If "unload_algo"
2231 	 * requires cleanup code to be run, call it.
2232 	 */
2233 	VNET_LIST_RLOCK();
2234 	VNET_FOREACH(vnet_iter) {
2235 		CURVNET_SET(vnet_iter);
2236 		INP_INFO_WLOCK(&V_tcbinfo);
2237 		/*
2238 		 * New connections already part way through being initialised
2239 		 * with the CC algo we're removing will not race with this code
2240 		 * because the INP_INFO_WLOCK is held during initialisation. We
2241 		 * therefore don't enter the loop below until the connection
2242 		 * list has stabilised.
2243 		 */
2244 		CK_LIST_FOREACH(inp, &V_tcb, inp_list) {
2245 			INP_WLOCK(inp);
2246 			/* Important to skip tcptw structs. */
2247 			if (!(inp->inp_flags & INP_TIMEWAIT) &&
2248 			    (tp = intotcpcb(inp)) != NULL) {
2249 				/*
2250 				 * By holding INP_WLOCK here, we are assured
2251 				 * that the connection is not currently
2252 				 * executing inside the CC module's functions
2253 				 * i.e. it is safe to make the switch back to
2254 				 * NewReno.
2255 				 */
2256 				if (CC_ALGO(tp) == unload_algo) {
2257 					tmpalgo = CC_ALGO(tp);
2258 					if (tmpalgo->cb_destroy != NULL)
2259 						tmpalgo->cb_destroy(tp->ccv);
2260 					CC_DATA(tp) = NULL;
2261 					/*
2262 					 * NewReno may allocate memory on
2263 					 * demand for certain stateful
2264 					 * configuration as needed, but is
2265 					 * coded to never fail on memory
2266 					 * allocation failure so it is a safe
2267 					 * fallback.
2268 					 */
2269 					CC_ALGO(tp) = &newreno_cc_algo;
2270 				}
2271 			}
2272 			INP_WUNLOCK(inp);
2273 		}
2274 		INP_INFO_WUNLOCK(&V_tcbinfo);
2275 		CURVNET_RESTORE();
2276 	}
2277 	VNET_LIST_RUNLOCK();
2278 
2279 	return (0);
2280 }
2281 
2282 /*
2283  * Drop a TCP connection, reporting
2284  * the specified error.  If connection is synchronized,
2285  * then send a RST to peer.
2286  */
2287 struct tcpcb *
2288 tcp_drop(struct tcpcb *tp, int errno)
2289 {
2290 	struct socket *so = tp->t_inpcb->inp_socket;
2291 
2292 	NET_EPOCH_ASSERT();
2293 	INP_INFO_LOCK_ASSERT(&V_tcbinfo);
2294 	INP_WLOCK_ASSERT(tp->t_inpcb);
2295 
2296 	if (TCPS_HAVERCVDSYN(tp->t_state)) {
2297 		tcp_state_change(tp, TCPS_CLOSED);
2298 		(void) tp->t_fb->tfb_tcp_output(tp);
2299 		TCPSTAT_INC(tcps_drops);
2300 	} else
2301 		TCPSTAT_INC(tcps_conndrops);
2302 	if (errno == ETIMEDOUT && tp->t_softerror)
2303 		errno = tp->t_softerror;
2304 	so->so_error = errno;
2305 	return (tcp_close(tp));
2306 }
2307 
2308 void
2309 tcp_discardcb(struct tcpcb *tp)
2310 {
2311 	struct inpcb *inp = tp->t_inpcb;
2312 	struct socket *so = inp->inp_socket;
2313 #ifdef INET6
2314 	int isipv6 = (inp->inp_vflag & INP_IPV6) != 0;
2315 #endif /* INET6 */
2316 	int released __unused;
2317 
2318 	INP_WLOCK_ASSERT(inp);
2319 
2320 	/*
2321 	 * Make sure that all of our timers are stopped before we delete the
2322 	 * PCB.
2323 	 *
2324 	 * If stopping a timer fails, we schedule a discard function in same
2325 	 * callout, and the last discard function called will take care of
2326 	 * deleting the tcpcb.
2327 	 */
2328 	tp->t_timers->tt_draincnt = 0;
2329 	tcp_timer_stop(tp, TT_REXMT);
2330 	tcp_timer_stop(tp, TT_PERSIST);
2331 	tcp_timer_stop(tp, TT_KEEP);
2332 	tcp_timer_stop(tp, TT_2MSL);
2333 	tcp_timer_stop(tp, TT_DELACK);
2334 	if (tp->t_fb->tfb_tcp_timer_stop_all) {
2335 		/*
2336 		 * Call the stop-all function of the methods,
2337 		 * this function should call the tcp_timer_stop()
2338 		 * method with each of the function specific timeouts.
2339 		 * That stop will be called via the tfb_tcp_timer_stop()
2340 		 * which should use the async drain function of the
2341 		 * callout system (see tcp_var.h).
2342 		 */
2343 		tp->t_fb->tfb_tcp_timer_stop_all(tp);
2344 	}
2345 
2346 	/* free the reassembly queue, if any */
2347 	tcp_reass_flush(tp);
2348 
2349 #ifdef TCP_OFFLOAD
2350 	/* Disconnect offload device, if any. */
2351 	if (tp->t_flags & TF_TOE)
2352 		tcp_offload_detach(tp);
2353 #endif
2354 
2355 	tcp_free_sackholes(tp);
2356 
2357 #ifdef TCPPCAP
2358 	/* Free the TCP PCAP queues. */
2359 	tcp_pcap_drain(&(tp->t_inpkts));
2360 	tcp_pcap_drain(&(tp->t_outpkts));
2361 #endif
2362 
2363 	/* Allow the CC algorithm to clean up after itself. */
2364 	if (CC_ALGO(tp)->cb_destroy != NULL)
2365 		CC_ALGO(tp)->cb_destroy(tp->ccv);
2366 	CC_DATA(tp) = NULL;
2367 
2368 #ifdef TCP_HHOOK
2369 	khelp_destroy_osd(tp->osd);
2370 #endif
2371 #ifdef STATS
2372 	stats_blob_destroy(tp->t_stats);
2373 #endif
2374 
2375 	CC_ALGO(tp) = NULL;
2376 	inp->inp_ppcb = NULL;
2377 	if (tp->t_timers->tt_draincnt == 0) {
2378 		/* We own the last reference on tcpcb, let's free it. */
2379 #ifdef TCP_BLACKBOX
2380 		tcp_log_tcpcbfini(tp);
2381 #endif
2382 		TCPSTATES_DEC(tp->t_state);
2383 		if (tp->t_fb->tfb_tcp_fb_fini)
2384 			(*tp->t_fb->tfb_tcp_fb_fini)(tp, 1);
2385 
2386 		/*
2387 		 * If we got enough samples through the srtt filter,
2388 		 * save the rtt and rttvar in the routing entry.
2389 		 * 'Enough' is arbitrarily defined as 4 rtt samples.
2390 		 * 4 samples is enough for the srtt filter to converge
2391 		 * to within enough % of the correct value; fewer samples
2392 		 * and we could save a bogus rtt. The danger is not high
2393 		 * as tcp quickly recovers from everything.
2394 		 * XXX: Works very well but needs some more statistics!
2395 		 *
2396 		 * XXXRRS: Updating must be after the stack fini() since
2397 		 * that may be converting some internal representation of
2398 		 * say srtt etc into the general one used by other stacks.
2399 		 * Lets also at least protect against the so being NULL
2400 		 * as RW stated below.
2401 		 */
2402 		if ((tp->t_rttupdated >= 4) && (so != NULL)) {
2403 			struct hc_metrics_lite metrics;
2404 			uint32_t ssthresh;
2405 
2406 			bzero(&metrics, sizeof(metrics));
2407 			/*
2408 			 * Update the ssthresh always when the conditions below
2409 			 * are satisfied. This gives us better new start value
2410 			 * for the congestion avoidance for new connections.
2411 			 * ssthresh is only set if packet loss occurred on a session.
2412 			 *
2413 			 * XXXRW: 'so' may be NULL here, and/or socket buffer may be
2414 			 * being torn down.  Ideally this code would not use 'so'.
2415 			 */
2416 			ssthresh = tp->snd_ssthresh;
2417 			if (ssthresh != 0 && ssthresh < so->so_snd.sb_hiwat / 2) {
2418 				/*
2419 				 * convert the limit from user data bytes to
2420 				 * packets then to packet data bytes.
2421 				 */
2422 				ssthresh = (ssthresh + tp->t_maxseg / 2) / tp->t_maxseg;
2423 				if (ssthresh < 2)
2424 					ssthresh = 2;
2425 				ssthresh *= (tp->t_maxseg +
2426 #ifdef INET6
2427 					     (isipv6 ? sizeof (struct ip6_hdr) +
2428 					      sizeof (struct tcphdr) :
2429 #endif
2430 					      sizeof (struct tcpiphdr)
2431 #ifdef INET6
2432 						     )
2433 #endif
2434 					);
2435 			} else
2436 				ssthresh = 0;
2437 			metrics.rmx_ssthresh = ssthresh;
2438 
2439 			metrics.rmx_rtt = tp->t_srtt;
2440 			metrics.rmx_rttvar = tp->t_rttvar;
2441 			metrics.rmx_cwnd = tp->snd_cwnd;
2442 			metrics.rmx_sendpipe = 0;
2443 			metrics.rmx_recvpipe = 0;
2444 
2445 			tcp_hc_update(&inp->inp_inc, &metrics);
2446 		}
2447 		refcount_release(&tp->t_fb->tfb_refcnt);
2448 		tp->t_inpcb = NULL;
2449 		uma_zfree(V_tcpcb_zone, tp);
2450 		released = in_pcbrele_wlocked(inp);
2451 		KASSERT(!released, ("%s: inp %p should not have been released "
2452 			"here", __func__, inp));
2453 	}
2454 }
2455 
2456 void
2457 tcp_timer_discard(void *ptp)
2458 {
2459 	struct inpcb *inp;
2460 	struct tcpcb *tp;
2461 	struct epoch_tracker et;
2462 
2463 	tp = (struct tcpcb *)ptp;
2464 	CURVNET_SET(tp->t_vnet);
2465 	NET_EPOCH_ENTER(et);
2466 	inp = tp->t_inpcb;
2467 	KASSERT(inp != NULL, ("%s: tp %p tp->t_inpcb == NULL",
2468 		__func__, tp));
2469 	INP_WLOCK(inp);
2470 	KASSERT((tp->t_timers->tt_flags & TT_STOPPED) != 0,
2471 		("%s: tcpcb has to be stopped here", __func__));
2472 	tp->t_timers->tt_draincnt--;
2473 	if (tp->t_timers->tt_draincnt == 0) {
2474 		/* We own the last reference on this tcpcb, let's free it. */
2475 #ifdef TCP_BLACKBOX
2476 		tcp_log_tcpcbfini(tp);
2477 #endif
2478 		TCPSTATES_DEC(tp->t_state);
2479 		if (tp->t_fb->tfb_tcp_fb_fini)
2480 			(*tp->t_fb->tfb_tcp_fb_fini)(tp, 1);
2481 		refcount_release(&tp->t_fb->tfb_refcnt);
2482 		tp->t_inpcb = NULL;
2483 		uma_zfree(V_tcpcb_zone, tp);
2484 		if (in_pcbrele_wlocked(inp)) {
2485 			NET_EPOCH_EXIT(et);
2486 			CURVNET_RESTORE();
2487 			return;
2488 		}
2489 	}
2490 	INP_WUNLOCK(inp);
2491 	NET_EPOCH_EXIT(et);
2492 	CURVNET_RESTORE();
2493 }
2494 
2495 /*
2496  * Attempt to close a TCP control block, marking it as dropped, and freeing
2497  * the socket if we hold the only reference.
2498  */
2499 struct tcpcb *
2500 tcp_close(struct tcpcb *tp)
2501 {
2502 	struct inpcb *inp = tp->t_inpcb;
2503 	struct socket *so;
2504 
2505 	INP_INFO_LOCK_ASSERT(&V_tcbinfo);
2506 	INP_WLOCK_ASSERT(inp);
2507 
2508 #ifdef TCP_OFFLOAD
2509 	if (tp->t_state == TCPS_LISTEN)
2510 		tcp_offload_listen_stop(tp);
2511 #endif
2512 	/*
2513 	 * This releases the TFO pending counter resource for TFO listen
2514 	 * sockets as well as passively-created TFO sockets that transition
2515 	 * from SYN_RECEIVED to CLOSED.
2516 	 */
2517 	if (tp->t_tfo_pending) {
2518 		tcp_fastopen_decrement_counter(tp->t_tfo_pending);
2519 		tp->t_tfo_pending = NULL;
2520 	}
2521 	in_pcbdrop(inp);
2522 	TCPSTAT_INC(tcps_closed);
2523 	if (tp->t_state != TCPS_CLOSED)
2524 		tcp_state_change(tp, TCPS_CLOSED);
2525 	KASSERT(inp->inp_socket != NULL, ("tcp_close: inp_socket NULL"));
2526 	so = inp->inp_socket;
2527 	soisdisconnected(so);
2528 	if (inp->inp_flags & INP_SOCKREF) {
2529 		KASSERT(so->so_state & SS_PROTOREF,
2530 		    ("tcp_close: !SS_PROTOREF"));
2531 		inp->inp_flags &= ~INP_SOCKREF;
2532 		INP_WUNLOCK(inp);
2533 		SOCK_LOCK(so);
2534 		so->so_state &= ~SS_PROTOREF;
2535 		sofree(so);
2536 		return (NULL);
2537 	}
2538 	return (tp);
2539 }
2540 
2541 void
2542 tcp_drain(void)
2543 {
2544 	VNET_ITERATOR_DECL(vnet_iter);
2545 
2546 	if (!do_tcpdrain)
2547 		return;
2548 
2549 	VNET_LIST_RLOCK_NOSLEEP();
2550 	VNET_FOREACH(vnet_iter) {
2551 		CURVNET_SET(vnet_iter);
2552 		struct inpcb *inpb;
2553 		struct tcpcb *tcpb;
2554 
2555 	/*
2556 	 * Walk the tcpbs, if existing, and flush the reassembly queue,
2557 	 * if there is one...
2558 	 * XXX: The "Net/3" implementation doesn't imply that the TCP
2559 	 *      reassembly queue should be flushed, but in a situation
2560 	 *	where we're really low on mbufs, this is potentially
2561 	 *	useful.
2562 	 */
2563 		INP_INFO_WLOCK(&V_tcbinfo);
2564 		CK_LIST_FOREACH(inpb, V_tcbinfo.ipi_listhead, inp_list) {
2565 			INP_WLOCK(inpb);
2566 			if (inpb->inp_flags & INP_TIMEWAIT) {
2567 				INP_WUNLOCK(inpb);
2568 				continue;
2569 			}
2570 			if ((tcpb = intotcpcb(inpb)) != NULL) {
2571 				tcp_reass_flush(tcpb);
2572 				tcp_clean_sackreport(tcpb);
2573 #ifdef TCP_BLACKBOX
2574 				tcp_log_drain(tcpb);
2575 #endif
2576 #ifdef TCPPCAP
2577 				if (tcp_pcap_aggressive_free) {
2578 					/* Free the TCP PCAP queues. */
2579 					tcp_pcap_drain(&(tcpb->t_inpkts));
2580 					tcp_pcap_drain(&(tcpb->t_outpkts));
2581 				}
2582 #endif
2583 			}
2584 			INP_WUNLOCK(inpb);
2585 		}
2586 		INP_INFO_WUNLOCK(&V_tcbinfo);
2587 		CURVNET_RESTORE();
2588 	}
2589 	VNET_LIST_RUNLOCK_NOSLEEP();
2590 }
2591 
2592 /*
2593  * Notify a tcp user of an asynchronous error;
2594  * store error as soft error, but wake up user
2595  * (for now, won't do anything until can select for soft error).
2596  *
2597  * Do not wake up user since there currently is no mechanism for
2598  * reporting soft errors (yet - a kqueue filter may be added).
2599  */
2600 static struct inpcb *
2601 tcp_notify(struct inpcb *inp, int error)
2602 {
2603 	struct tcpcb *tp;
2604 
2605 	INP_INFO_LOCK_ASSERT(&V_tcbinfo);
2606 	INP_WLOCK_ASSERT(inp);
2607 
2608 	if ((inp->inp_flags & INP_TIMEWAIT) ||
2609 	    (inp->inp_flags & INP_DROPPED))
2610 		return (inp);
2611 
2612 	tp = intotcpcb(inp);
2613 	KASSERT(tp != NULL, ("tcp_notify: tp == NULL"));
2614 
2615 	/*
2616 	 * Ignore some errors if we are hooked up.
2617 	 * If connection hasn't completed, has retransmitted several times,
2618 	 * and receives a second error, give up now.  This is better
2619 	 * than waiting a long time to establish a connection that
2620 	 * can never complete.
2621 	 */
2622 	if (tp->t_state == TCPS_ESTABLISHED &&
2623 	    (error == EHOSTUNREACH || error == ENETUNREACH ||
2624 	     error == EHOSTDOWN)) {
2625 		if (inp->inp_route.ro_nh) {
2626 			NH_FREE(inp->inp_route.ro_nh);
2627 			inp->inp_route.ro_nh = (struct nhop_object *)NULL;
2628 		}
2629 		return (inp);
2630 	} else if (tp->t_state < TCPS_ESTABLISHED && tp->t_rxtshift > 3 &&
2631 	    tp->t_softerror) {
2632 		tp = tcp_drop(tp, error);
2633 		if (tp != NULL)
2634 			return (inp);
2635 		else
2636 			return (NULL);
2637 	} else {
2638 		tp->t_softerror = error;
2639 		return (inp);
2640 	}
2641 #if 0
2642 	wakeup( &so->so_timeo);
2643 	sorwakeup(so);
2644 	sowwakeup(so);
2645 #endif
2646 }
2647 
2648 static int
2649 tcp_pcblist(SYSCTL_HANDLER_ARGS)
2650 {
2651 	struct epoch_tracker et;
2652 	struct inpcb *inp;
2653 	struct xinpgen xig;
2654 	int error;
2655 
2656 	if (req->newptr != NULL)
2657 		return (EPERM);
2658 
2659 	if (req->oldptr == NULL) {
2660 		int n;
2661 
2662 		n = V_tcbinfo.ipi_count +
2663 		    counter_u64_fetch(V_tcps_states[TCPS_SYN_RECEIVED]);
2664 		n += imax(n / 8, 10);
2665 		req->oldidx = 2 * (sizeof xig) + n * sizeof(struct xtcpcb);
2666 		return (0);
2667 	}
2668 
2669 	if ((error = sysctl_wire_old_buffer(req, 0)) != 0)
2670 		return (error);
2671 
2672 	bzero(&xig, sizeof(xig));
2673 	xig.xig_len = sizeof xig;
2674 	xig.xig_count = V_tcbinfo.ipi_count +
2675 	    counter_u64_fetch(V_tcps_states[TCPS_SYN_RECEIVED]);
2676 	xig.xig_gen = V_tcbinfo.ipi_gencnt;
2677 	xig.xig_sogen = so_gencnt;
2678 	error = SYSCTL_OUT(req, &xig, sizeof xig);
2679 	if (error)
2680 		return (error);
2681 
2682 	error = syncache_pcblist(req);
2683 	if (error)
2684 		return (error);
2685 
2686 	NET_EPOCH_ENTER(et);
2687 	for (inp = CK_LIST_FIRST(V_tcbinfo.ipi_listhead);
2688 	    inp != NULL;
2689 	    inp = CK_LIST_NEXT(inp, inp_list)) {
2690 		INP_RLOCK(inp);
2691 		if (inp->inp_gencnt <= xig.xig_gen) {
2692 			int crerr;
2693 
2694 			/*
2695 			 * XXX: This use of cr_cansee(), introduced with
2696 			 * TCP state changes, is not quite right, but for
2697 			 * now, better than nothing.
2698 			 */
2699 			if (inp->inp_flags & INP_TIMEWAIT) {
2700 				if (intotw(inp) != NULL)
2701 					crerr = cr_cansee(req->td->td_ucred,
2702 					    intotw(inp)->tw_cred);
2703 				else
2704 					crerr = EINVAL;	/* Skip this inp. */
2705 			} else
2706 				crerr = cr_canseeinpcb(req->td->td_ucred, inp);
2707 			if (crerr == 0) {
2708 				struct xtcpcb xt;
2709 
2710 				tcp_inptoxtp(inp, &xt);
2711 				INP_RUNLOCK(inp);
2712 				error = SYSCTL_OUT(req, &xt, sizeof xt);
2713 				if (error)
2714 					break;
2715 				else
2716 					continue;
2717 			}
2718 		}
2719 		INP_RUNLOCK(inp);
2720 	}
2721 	NET_EPOCH_EXIT(et);
2722 
2723 	if (!error) {
2724 		/*
2725 		 * Give the user an updated idea of our state.
2726 		 * If the generation differs from what we told
2727 		 * her before, she knows that something happened
2728 		 * while we were processing this request, and it
2729 		 * might be necessary to retry.
2730 		 */
2731 		xig.xig_gen = V_tcbinfo.ipi_gencnt;
2732 		xig.xig_sogen = so_gencnt;
2733 		xig.xig_count = V_tcbinfo.ipi_count +
2734 		    counter_u64_fetch(V_tcps_states[TCPS_SYN_RECEIVED]);
2735 		error = SYSCTL_OUT(req, &xig, sizeof xig);
2736 	}
2737 
2738 	return (error);
2739 }
2740 
2741 SYSCTL_PROC(_net_inet_tcp, TCPCTL_PCBLIST, pcblist,
2742     CTLTYPE_OPAQUE | CTLFLAG_RD | CTLFLAG_NEEDGIANT,
2743     NULL, 0, tcp_pcblist, "S,xtcpcb",
2744     "List of active TCP connections");
2745 
2746 #ifdef INET
2747 static int
2748 tcp_getcred(SYSCTL_HANDLER_ARGS)
2749 {
2750 	struct xucred xuc;
2751 	struct sockaddr_in addrs[2];
2752 	struct epoch_tracker et;
2753 	struct inpcb *inp;
2754 	int error;
2755 
2756 	error = priv_check(req->td, PRIV_NETINET_GETCRED);
2757 	if (error)
2758 		return (error);
2759 	error = SYSCTL_IN(req, addrs, sizeof(addrs));
2760 	if (error)
2761 		return (error);
2762 	NET_EPOCH_ENTER(et);
2763 	inp = in_pcblookup(&V_tcbinfo, addrs[1].sin_addr, addrs[1].sin_port,
2764 	    addrs[0].sin_addr, addrs[0].sin_port, INPLOOKUP_RLOCKPCB, NULL);
2765 	NET_EPOCH_EXIT(et);
2766 	if (inp != NULL) {
2767 		if (inp->inp_socket == NULL)
2768 			error = ENOENT;
2769 		if (error == 0)
2770 			error = cr_canseeinpcb(req->td->td_ucred, inp);
2771 		if (error == 0)
2772 			cru2x(inp->inp_cred, &xuc);
2773 		INP_RUNLOCK(inp);
2774 	} else
2775 		error = ENOENT;
2776 	if (error == 0)
2777 		error = SYSCTL_OUT(req, &xuc, sizeof(struct xucred));
2778 	return (error);
2779 }
2780 
2781 SYSCTL_PROC(_net_inet_tcp, OID_AUTO, getcred,
2782     CTLTYPE_OPAQUE | CTLFLAG_RW | CTLFLAG_PRISON | CTLFLAG_NEEDGIANT,
2783     0, 0, tcp_getcred, "S,xucred",
2784     "Get the xucred of a TCP connection");
2785 #endif /* INET */
2786 
2787 #ifdef INET6
2788 static int
2789 tcp6_getcred(SYSCTL_HANDLER_ARGS)
2790 {
2791 	struct epoch_tracker et;
2792 	struct xucred xuc;
2793 	struct sockaddr_in6 addrs[2];
2794 	struct inpcb *inp;
2795 	int error;
2796 #ifdef INET
2797 	int mapped = 0;
2798 #endif
2799 
2800 	error = priv_check(req->td, PRIV_NETINET_GETCRED);
2801 	if (error)
2802 		return (error);
2803 	error = SYSCTL_IN(req, addrs, sizeof(addrs));
2804 	if (error)
2805 		return (error);
2806 	if ((error = sa6_embedscope(&addrs[0], V_ip6_use_defzone)) != 0 ||
2807 	    (error = sa6_embedscope(&addrs[1], V_ip6_use_defzone)) != 0) {
2808 		return (error);
2809 	}
2810 	if (IN6_IS_ADDR_V4MAPPED(&addrs[0].sin6_addr)) {
2811 #ifdef INET
2812 		if (IN6_IS_ADDR_V4MAPPED(&addrs[1].sin6_addr))
2813 			mapped = 1;
2814 		else
2815 #endif
2816 			return (EINVAL);
2817 	}
2818 
2819 	NET_EPOCH_ENTER(et);
2820 #ifdef INET
2821 	if (mapped == 1)
2822 		inp = in_pcblookup(&V_tcbinfo,
2823 			*(struct in_addr *)&addrs[1].sin6_addr.s6_addr[12],
2824 			addrs[1].sin6_port,
2825 			*(struct in_addr *)&addrs[0].sin6_addr.s6_addr[12],
2826 			addrs[0].sin6_port, INPLOOKUP_RLOCKPCB, NULL);
2827 	else
2828 #endif
2829 		inp = in6_pcblookup(&V_tcbinfo,
2830 			&addrs[1].sin6_addr, addrs[1].sin6_port,
2831 			&addrs[0].sin6_addr, addrs[0].sin6_port,
2832 			INPLOOKUP_RLOCKPCB, NULL);
2833 	NET_EPOCH_EXIT(et);
2834 	if (inp != NULL) {
2835 		if (inp->inp_socket == NULL)
2836 			error = ENOENT;
2837 		if (error == 0)
2838 			error = cr_canseeinpcb(req->td->td_ucred, inp);
2839 		if (error == 0)
2840 			cru2x(inp->inp_cred, &xuc);
2841 		INP_RUNLOCK(inp);
2842 	} else
2843 		error = ENOENT;
2844 	if (error == 0)
2845 		error = SYSCTL_OUT(req, &xuc, sizeof(struct xucred));
2846 	return (error);
2847 }
2848 
2849 SYSCTL_PROC(_net_inet6_tcp6, OID_AUTO, getcred,
2850     CTLTYPE_OPAQUE | CTLFLAG_RW | CTLFLAG_PRISON | CTLFLAG_NEEDGIANT,
2851     0, 0, tcp6_getcred, "S,xucred",
2852     "Get the xucred of a TCP6 connection");
2853 #endif /* INET6 */
2854 
2855 #ifdef INET
2856 /* Path MTU to try next when a fragmentation-needed message is received. */
2857 static inline int
2858 tcp_next_pmtu(const struct icmp *icp, const struct ip *ip)
2859 {
2860 	int mtu = ntohs(icp->icmp_nextmtu);
2861 
2862 	/* If no alternative MTU was proposed, try the next smaller one. */
2863 	if (!mtu)
2864 		mtu = ip_next_mtu(ntohs(ip->ip_len), 1);
2865 	if (mtu < V_tcp_minmss + sizeof(struct tcpiphdr))
2866 		mtu = V_tcp_minmss + sizeof(struct tcpiphdr);
2867 
2868 	return (mtu);
2869 }
2870 
2871 static void
2872 tcp_ctlinput_with_port(int cmd, struct sockaddr *sa, void *vip, uint16_t port)
2873 {
2874 	struct ip *ip = vip;
2875 	struct tcphdr *th;
2876 	struct in_addr faddr;
2877 	struct inpcb *inp;
2878 	struct tcpcb *tp;
2879 	struct inpcb *(*notify)(struct inpcb *, int) = tcp_notify;
2880 	struct icmp *icp;
2881 	struct in_conninfo inc;
2882 	tcp_seq icmp_tcp_seq;
2883 	int mtu;
2884 
2885 	faddr = ((struct sockaddr_in *)sa)->sin_addr;
2886 	if (sa->sa_family != AF_INET || faddr.s_addr == INADDR_ANY)
2887 		return;
2888 
2889 	if (cmd == PRC_MSGSIZE)
2890 		notify = tcp_mtudisc_notify;
2891 	else if (V_icmp_may_rst && (cmd == PRC_UNREACH_ADMIN_PROHIB ||
2892 		cmd == PRC_UNREACH_PORT || cmd == PRC_UNREACH_PROTOCOL ||
2893 		cmd == PRC_TIMXCEED_INTRANS) && ip)
2894 		notify = tcp_drop_syn_sent;
2895 
2896 	/*
2897 	 * Hostdead is ugly because it goes linearly through all PCBs.
2898 	 * XXX: We never get this from ICMP, otherwise it makes an
2899 	 * excellent DoS attack on machines with many connections.
2900 	 */
2901 	else if (cmd == PRC_HOSTDEAD)
2902 		ip = NULL;
2903 	else if ((unsigned)cmd >= PRC_NCMDS || inetctlerrmap[cmd] == 0)
2904 		return;
2905 
2906 	if (ip == NULL) {
2907 		in_pcbnotifyall(&V_tcbinfo, faddr, inetctlerrmap[cmd], notify);
2908 		return;
2909 	}
2910 
2911 	icp = (struct icmp *)((caddr_t)ip - offsetof(struct icmp, icmp_ip));
2912 	th = (struct tcphdr *)((caddr_t)ip + (ip->ip_hl << 2));
2913 	inp = in_pcblookup(&V_tcbinfo, faddr, th->th_dport, ip->ip_src,
2914 	    th->th_sport, INPLOOKUP_WLOCKPCB, NULL);
2915 	if (inp != NULL && PRC_IS_REDIRECT(cmd)) {
2916 		/* signal EHOSTDOWN, as it flushes the cached route */
2917 		inp = (*notify)(inp, EHOSTDOWN);
2918 		goto out;
2919 	}
2920 	icmp_tcp_seq = th->th_seq;
2921 	if (inp != NULL)  {
2922 		if (!(inp->inp_flags & INP_TIMEWAIT) &&
2923 		    !(inp->inp_flags & INP_DROPPED) &&
2924 		    !(inp->inp_socket == NULL)) {
2925 			tp = intotcpcb(inp);
2926 #ifdef TCP_OFFLOAD
2927 			if (tp->t_flags & TF_TOE && cmd == PRC_MSGSIZE) {
2928 				/*
2929 				 * MTU discovery for offloaded connections.  Let
2930 				 * the TOE driver verify seq# and process it.
2931 				 */
2932 				mtu = tcp_next_pmtu(icp, ip);
2933 				tcp_offload_pmtu_update(tp, icmp_tcp_seq, mtu);
2934 				goto out;
2935 			}
2936 #endif
2937 			if (tp->t_port != port) {
2938 				goto out;
2939 			}
2940 			if (SEQ_GEQ(ntohl(icmp_tcp_seq), tp->snd_una) &&
2941 			    SEQ_LT(ntohl(icmp_tcp_seq), tp->snd_max)) {
2942 				if (cmd == PRC_MSGSIZE) {
2943 					/*
2944 					 * MTU discovery: we got a needfrag and
2945 					 * will potentially try a lower MTU.
2946 					 */
2947 					mtu = tcp_next_pmtu(icp, ip);
2948 
2949 					/*
2950 					 * Only process the offered MTU if it
2951 					 * is smaller than the current one.
2952 					 */
2953 					if (mtu < tp->t_maxseg +
2954 					    sizeof(struct tcpiphdr)) {
2955 						bzero(&inc, sizeof(inc));
2956 						inc.inc_faddr = faddr;
2957 						inc.inc_fibnum =
2958 						    inp->inp_inc.inc_fibnum;
2959 						tcp_hc_updatemtu(&inc, mtu);
2960 						tcp_mtudisc(inp, mtu);
2961 					}
2962 				} else
2963 					inp = (*notify)(inp,
2964 					    inetctlerrmap[cmd]);
2965 			}
2966 		}
2967 	} else {
2968 		bzero(&inc, sizeof(inc));
2969 		inc.inc_fport = th->th_dport;
2970 		inc.inc_lport = th->th_sport;
2971 		inc.inc_faddr = faddr;
2972 		inc.inc_laddr = ip->ip_src;
2973 		syncache_unreach(&inc, icmp_tcp_seq, port);
2974 	}
2975 out:
2976 	if (inp != NULL)
2977 		INP_WUNLOCK(inp);
2978 }
2979 
2980 void
2981 tcp_ctlinput(int cmd, struct sockaddr *sa, void *vip)
2982 {
2983 	tcp_ctlinput_with_port(cmd, sa, vip, htons(0));
2984 }
2985 
2986 void
2987 tcp_ctlinput_viaudp(int cmd, struct sockaddr *sa, void *vip, void *unused)
2988 {
2989 	/* Its a tunneled TCP over UDP icmp */
2990 	struct ip *outer_ip, *inner_ip;
2991 	struct icmp *icmp;
2992 	struct udphdr *udp;
2993 	struct tcphdr *th, ttemp;
2994 	int i_hlen, o_len;
2995 	uint16_t port;
2996 
2997 	inner_ip = (struct ip *)vip;
2998 	icmp = (struct icmp *)((caddr_t)inner_ip -
2999 	    (sizeof(struct icmp) - sizeof(struct ip)));
3000 	outer_ip = (struct ip *)((caddr_t)icmp - sizeof(struct ip));
3001 	i_hlen = inner_ip->ip_hl << 2;
3002 	o_len = ntohs(outer_ip->ip_len);
3003 	if (o_len <
3004 	    (sizeof(struct ip) + 8 + i_hlen + sizeof(struct udphdr) + offsetof(struct tcphdr, th_ack))) {
3005 		/* Not enough data present */
3006 		return;
3007 	}
3008 	/* Ok lets strip out the inner udphdr header by copying up on top of it the tcp hdr */
3009 	udp = (struct udphdr *)(((caddr_t)inner_ip) + i_hlen);
3010 	if (ntohs(udp->uh_sport) != V_tcp_udp_tunneling_port) {
3011 		return;
3012 	}
3013 	port = udp->uh_dport;
3014 	th = (struct tcphdr *)(udp + 1);
3015 	memcpy(&ttemp, th, sizeof(struct tcphdr));
3016 	memcpy(udp, &ttemp, sizeof(struct tcphdr));
3017 	/* Now adjust down the size of the outer IP header */
3018 	o_len -= sizeof(struct udphdr);
3019 	outer_ip->ip_len = htons(o_len);
3020 	/* Now call in to the normal handling code */
3021 	tcp_ctlinput_with_port(cmd, sa, vip, port);
3022 }
3023 #endif /* INET */
3024 
3025 #ifdef INET6
3026 static inline int
3027 tcp6_next_pmtu(const struct icmp6_hdr *icmp6)
3028 {
3029 	int mtu = ntohl(icmp6->icmp6_mtu);
3030 
3031 	/*
3032 	 * If no alternative MTU was proposed, or the proposed MTU was too
3033 	 * small, set to the min.
3034 	 */
3035 	if (mtu < IPV6_MMTU)
3036 		mtu = IPV6_MMTU - 8;	/* XXXNP: what is the adjustment for? */
3037 	return (mtu);
3038 }
3039 
3040 static void
3041 tcp6_ctlinput_with_port(int cmd, struct sockaddr *sa, void *d, uint16_t port)
3042 {
3043 	struct in6_addr *dst;
3044 	struct inpcb *(*notify)(struct inpcb *, int) = tcp_notify;
3045 	struct ip6_hdr *ip6;
3046 	struct mbuf *m;
3047 	struct inpcb *inp;
3048 	struct tcpcb *tp;
3049 	struct icmp6_hdr *icmp6;
3050 	struct ip6ctlparam *ip6cp = NULL;
3051 	const struct sockaddr_in6 *sa6_src = NULL;
3052 	struct in_conninfo inc;
3053 	struct tcp_ports {
3054 		uint16_t th_sport;
3055 		uint16_t th_dport;
3056 	} t_ports;
3057 	tcp_seq icmp_tcp_seq;
3058 	unsigned int mtu;
3059 	unsigned int off;
3060 
3061 	if (sa->sa_family != AF_INET6 ||
3062 	    sa->sa_len != sizeof(struct sockaddr_in6))
3063 		return;
3064 
3065 	/* if the parameter is from icmp6, decode it. */
3066 	if (d != NULL) {
3067 		ip6cp = (struct ip6ctlparam *)d;
3068 		icmp6 = ip6cp->ip6c_icmp6;
3069 		m = ip6cp->ip6c_m;
3070 		ip6 = ip6cp->ip6c_ip6;
3071 		off = ip6cp->ip6c_off;
3072 		sa6_src = ip6cp->ip6c_src;
3073 		dst = ip6cp->ip6c_finaldst;
3074 	} else {
3075 		m = NULL;
3076 		ip6 = NULL;
3077 		off = 0;	/* fool gcc */
3078 		sa6_src = &sa6_any;
3079 		dst = NULL;
3080 	}
3081 
3082 	if (cmd == PRC_MSGSIZE)
3083 		notify = tcp_mtudisc_notify;
3084 	else if (V_icmp_may_rst && (cmd == PRC_UNREACH_ADMIN_PROHIB ||
3085 		cmd == PRC_UNREACH_PORT || cmd == PRC_UNREACH_PROTOCOL ||
3086 		cmd == PRC_TIMXCEED_INTRANS) && ip6 != NULL)
3087 		notify = tcp_drop_syn_sent;
3088 
3089 	/*
3090 	 * Hostdead is ugly because it goes linearly through all PCBs.
3091 	 * XXX: We never get this from ICMP, otherwise it makes an
3092 	 * excellent DoS attack on machines with many connections.
3093 	 */
3094 	else if (cmd == PRC_HOSTDEAD)
3095 		ip6 = NULL;
3096 	else if ((unsigned)cmd >= PRC_NCMDS || inet6ctlerrmap[cmd] == 0)
3097 		return;
3098 
3099 	if (ip6 == NULL) {
3100 		in6_pcbnotify(&V_tcbinfo, sa, 0,
3101 			      (const struct sockaddr *)sa6_src,
3102 			      0, cmd, NULL, notify);
3103 		return;
3104 	}
3105 
3106 	/* Check if we can safely get the ports from the tcp hdr */
3107 	if (m == NULL ||
3108 	    (m->m_pkthdr.len <
3109 		(int32_t) (off + sizeof(struct tcp_ports)))) {
3110 		return;
3111 	}
3112 	bzero(&t_ports, sizeof(struct tcp_ports));
3113 	m_copydata(m, off, sizeof(struct tcp_ports), (caddr_t)&t_ports);
3114 	inp = in6_pcblookup(&V_tcbinfo, &ip6->ip6_dst, t_ports.th_dport,
3115 	    &ip6->ip6_src, t_ports.th_sport, INPLOOKUP_WLOCKPCB, NULL);
3116 	if (inp != NULL && PRC_IS_REDIRECT(cmd)) {
3117 		/* signal EHOSTDOWN, as it flushes the cached route */
3118 		inp = (*notify)(inp, EHOSTDOWN);
3119 		goto out;
3120 	}
3121 	off += sizeof(struct tcp_ports);
3122 	if (m->m_pkthdr.len < (int32_t) (off + sizeof(tcp_seq))) {
3123 		goto out;
3124 	}
3125 	m_copydata(m, off, sizeof(tcp_seq), (caddr_t)&icmp_tcp_seq);
3126 	if (inp != NULL)  {
3127 		if (!(inp->inp_flags & INP_TIMEWAIT) &&
3128 		    !(inp->inp_flags & INP_DROPPED) &&
3129 		    !(inp->inp_socket == NULL)) {
3130 			tp = intotcpcb(inp);
3131 #ifdef TCP_OFFLOAD
3132 			if (tp->t_flags & TF_TOE && cmd == PRC_MSGSIZE) {
3133 				/* MTU discovery for offloaded connections. */
3134 				mtu = tcp6_next_pmtu(icmp6);
3135 				tcp_offload_pmtu_update(tp, icmp_tcp_seq, mtu);
3136 				goto out;
3137 			}
3138 #endif
3139 			if (tp->t_port != port) {
3140 				goto out;
3141 			}
3142 			if (SEQ_GEQ(ntohl(icmp_tcp_seq), tp->snd_una) &&
3143 			    SEQ_LT(ntohl(icmp_tcp_seq), tp->snd_max)) {
3144 				if (cmd == PRC_MSGSIZE) {
3145 					/*
3146 					 * MTU discovery:
3147 					 * If we got a needfrag set the MTU
3148 					 * in the route to the suggested new
3149 					 * value (if given) and then notify.
3150 					 */
3151 					mtu = tcp6_next_pmtu(icmp6);
3152 
3153 					bzero(&inc, sizeof(inc));
3154 					inc.inc_fibnum = M_GETFIB(m);
3155 					inc.inc_flags |= INC_ISIPV6;
3156 					inc.inc6_faddr = *dst;
3157 					if (in6_setscope(&inc.inc6_faddr,
3158 						m->m_pkthdr.rcvif, NULL))
3159 						goto out;
3160 					/*
3161 					 * Only process the offered MTU if it
3162 					 * is smaller than the current one.
3163 					 */
3164 					if (mtu < tp->t_maxseg +
3165 					    sizeof (struct tcphdr) +
3166 					    sizeof (struct ip6_hdr)) {
3167 						tcp_hc_updatemtu(&inc, mtu);
3168 						tcp_mtudisc(inp, mtu);
3169 						ICMP6STAT_INC(icp6s_pmtuchg);
3170 					}
3171 				} else
3172 					inp = (*notify)(inp,
3173 					    inet6ctlerrmap[cmd]);
3174 			}
3175 		}
3176 	} else {
3177 		bzero(&inc, sizeof(inc));
3178 		inc.inc_fibnum = M_GETFIB(m);
3179 		inc.inc_flags |= INC_ISIPV6;
3180 		inc.inc_fport = t_ports.th_dport;
3181 		inc.inc_lport = t_ports.th_sport;
3182 		inc.inc6_faddr = *dst;
3183 		inc.inc6_laddr = ip6->ip6_src;
3184 		syncache_unreach(&inc, icmp_tcp_seq, port);
3185 	}
3186 out:
3187 	if (inp != NULL)
3188 		INP_WUNLOCK(inp);
3189 }
3190 
3191 void
3192 tcp6_ctlinput(int cmd, struct sockaddr *sa, void *d)
3193 {
3194 	tcp6_ctlinput_with_port(cmd, sa, d, htons(0));
3195 }
3196 
3197 void
3198 tcp6_ctlinput_viaudp(int cmd, struct sockaddr *sa, void *d, void *unused)
3199 {
3200 	struct ip6ctlparam *ip6cp;
3201 	struct mbuf *m;
3202 	struct udphdr *udp;
3203 	uint16_t port;
3204 
3205 	ip6cp = (struct ip6ctlparam *)d;
3206 	m = m_pulldown(ip6cp->ip6c_m, ip6cp->ip6c_off, sizeof(struct udphdr), NULL);
3207 	if (m == NULL) {
3208 		return;
3209 	}
3210 	udp = mtod(m, struct udphdr *);
3211 	if (ntohs(udp->uh_sport) != V_tcp_udp_tunneling_port) {
3212 		return;
3213 	}
3214 	port = udp->uh_dport;
3215 	m_adj(m, sizeof(struct udphdr));
3216 	if ((m->m_flags & M_PKTHDR) == 0) {
3217 		ip6cp->ip6c_m->m_pkthdr.len -= sizeof(struct udphdr);
3218 	}
3219 	/* Now call in to the normal handling code */
3220 	tcp6_ctlinput_with_port(cmd, sa, d, port);
3221 }
3222 
3223 #endif /* INET6 */
3224 
3225 static uint32_t
3226 tcp_keyed_hash(struct in_conninfo *inc, u_char *key, u_int len)
3227 {
3228 	SIPHASH_CTX ctx;
3229 	uint32_t hash[2];
3230 
3231 	KASSERT(len >= SIPHASH_KEY_LENGTH,
3232 	    ("%s: keylen %u too short ", __func__, len));
3233 	SipHash24_Init(&ctx);
3234 	SipHash_SetKey(&ctx, (uint8_t *)key);
3235 	SipHash_Update(&ctx, &inc->inc_fport, sizeof(uint16_t));
3236 	SipHash_Update(&ctx, &inc->inc_lport, sizeof(uint16_t));
3237 	switch (inc->inc_flags & INC_ISIPV6) {
3238 #ifdef INET
3239 	case 0:
3240 		SipHash_Update(&ctx, &inc->inc_faddr, sizeof(struct in_addr));
3241 		SipHash_Update(&ctx, &inc->inc_laddr, sizeof(struct in_addr));
3242 		break;
3243 #endif
3244 #ifdef INET6
3245 	case INC_ISIPV6:
3246 		SipHash_Update(&ctx, &inc->inc6_faddr, sizeof(struct in6_addr));
3247 		SipHash_Update(&ctx, &inc->inc6_laddr, sizeof(struct in6_addr));
3248 		break;
3249 #endif
3250 	}
3251 	SipHash_Final((uint8_t *)hash, &ctx);
3252 
3253 	return (hash[0] ^ hash[1]);
3254 }
3255 
3256 uint32_t
3257 tcp_new_ts_offset(struct in_conninfo *inc)
3258 {
3259 	struct in_conninfo inc_store, *local_inc;
3260 
3261 	if (!V_tcp_ts_offset_per_conn) {
3262 		memcpy(&inc_store, inc, sizeof(struct in_conninfo));
3263 		inc_store.inc_lport = 0;
3264 		inc_store.inc_fport = 0;
3265 		local_inc = &inc_store;
3266 	} else {
3267 		local_inc = inc;
3268 	}
3269 	return (tcp_keyed_hash(local_inc, V_ts_offset_secret,
3270 	    sizeof(V_ts_offset_secret)));
3271 }
3272 
3273 /*
3274  * Following is where TCP initial sequence number generation occurs.
3275  *
3276  * There are two places where we must use initial sequence numbers:
3277  * 1.  In SYN-ACK packets.
3278  * 2.  In SYN packets.
3279  *
3280  * All ISNs for SYN-ACK packets are generated by the syncache.  See
3281  * tcp_syncache.c for details.
3282  *
3283  * The ISNs in SYN packets must be monotonic; TIME_WAIT recycling
3284  * depends on this property.  In addition, these ISNs should be
3285  * unguessable so as to prevent connection hijacking.  To satisfy
3286  * the requirements of this situation, the algorithm outlined in
3287  * RFC 1948 is used, with only small modifications.
3288  *
3289  * Implementation details:
3290  *
3291  * Time is based off the system timer, and is corrected so that it
3292  * increases by one megabyte per second.  This allows for proper
3293  * recycling on high speed LANs while still leaving over an hour
3294  * before rollover.
3295  *
3296  * As reading the *exact* system time is too expensive to be done
3297  * whenever setting up a TCP connection, we increment the time
3298  * offset in two ways.  First, a small random positive increment
3299  * is added to isn_offset for each connection that is set up.
3300  * Second, the function tcp_isn_tick fires once per clock tick
3301  * and increments isn_offset as necessary so that sequence numbers
3302  * are incremented at approximately ISN_BYTES_PER_SECOND.  The
3303  * random positive increments serve only to ensure that the same
3304  * exact sequence number is never sent out twice (as could otherwise
3305  * happen when a port is recycled in less than the system tick
3306  * interval.)
3307  *
3308  * net.inet.tcp.isn_reseed_interval controls the number of seconds
3309  * between seeding of isn_secret.  This is normally set to zero,
3310  * as reseeding should not be necessary.
3311  *
3312  * Locking of the global variables isn_secret, isn_last_reseed, isn_offset,
3313  * isn_offset_old, and isn_ctx is performed using the ISN lock.  In
3314  * general, this means holding an exclusive (write) lock.
3315  */
3316 
3317 #define ISN_BYTES_PER_SECOND 1048576
3318 #define ISN_STATIC_INCREMENT 4096
3319 #define ISN_RANDOM_INCREMENT (4096 - 1)
3320 #define ISN_SECRET_LENGTH    SIPHASH_KEY_LENGTH
3321 
3322 VNET_DEFINE_STATIC(u_char, isn_secret[ISN_SECRET_LENGTH]);
3323 VNET_DEFINE_STATIC(int, isn_last);
3324 VNET_DEFINE_STATIC(int, isn_last_reseed);
3325 VNET_DEFINE_STATIC(u_int32_t, isn_offset);
3326 VNET_DEFINE_STATIC(u_int32_t, isn_offset_old);
3327 
3328 #define	V_isn_secret			VNET(isn_secret)
3329 #define	V_isn_last			VNET(isn_last)
3330 #define	V_isn_last_reseed		VNET(isn_last_reseed)
3331 #define	V_isn_offset			VNET(isn_offset)
3332 #define	V_isn_offset_old		VNET(isn_offset_old)
3333 
3334 tcp_seq
3335 tcp_new_isn(struct in_conninfo *inc)
3336 {
3337 	tcp_seq new_isn;
3338 	u_int32_t projected_offset;
3339 
3340 	ISN_LOCK();
3341 	/* Seed if this is the first use, reseed if requested. */
3342 	if ((V_isn_last_reseed == 0) || ((V_tcp_isn_reseed_interval > 0) &&
3343 	     (((u_int)V_isn_last_reseed + (u_int)V_tcp_isn_reseed_interval*hz)
3344 		< (u_int)ticks))) {
3345 		arc4rand(&V_isn_secret, sizeof(V_isn_secret), 0);
3346 		V_isn_last_reseed = ticks;
3347 	}
3348 
3349 	/* Compute the hash and return the ISN. */
3350 	new_isn = (tcp_seq)tcp_keyed_hash(inc, V_isn_secret,
3351 	    sizeof(V_isn_secret));
3352 	V_isn_offset += ISN_STATIC_INCREMENT +
3353 		(arc4random() & ISN_RANDOM_INCREMENT);
3354 	if (ticks != V_isn_last) {
3355 		projected_offset = V_isn_offset_old +
3356 		    ISN_BYTES_PER_SECOND / hz * (ticks - V_isn_last);
3357 		if (SEQ_GT(projected_offset, V_isn_offset))
3358 			V_isn_offset = projected_offset;
3359 		V_isn_offset_old = V_isn_offset;
3360 		V_isn_last = ticks;
3361 	}
3362 	new_isn += V_isn_offset;
3363 	ISN_UNLOCK();
3364 	return (new_isn);
3365 }
3366 
3367 /*
3368  * When a specific ICMP unreachable message is received and the
3369  * connection state is SYN-SENT, drop the connection.  This behavior
3370  * is controlled by the icmp_may_rst sysctl.
3371  */
3372 struct inpcb *
3373 tcp_drop_syn_sent(struct inpcb *inp, int errno)
3374 {
3375 	struct tcpcb *tp;
3376 
3377 	NET_EPOCH_ASSERT();
3378 	INP_WLOCK_ASSERT(inp);
3379 
3380 	if ((inp->inp_flags & INP_TIMEWAIT) ||
3381 	    (inp->inp_flags & INP_DROPPED))
3382 		return (inp);
3383 
3384 	tp = intotcpcb(inp);
3385 	if (tp->t_state != TCPS_SYN_SENT)
3386 		return (inp);
3387 
3388 	if (IS_FASTOPEN(tp->t_flags))
3389 		tcp_fastopen_disable_path(tp);
3390 
3391 	tp = tcp_drop(tp, errno);
3392 	if (tp != NULL)
3393 		return (inp);
3394 	else
3395 		return (NULL);
3396 }
3397 
3398 /*
3399  * When `need fragmentation' ICMP is received, update our idea of the MSS
3400  * based on the new value. Also nudge TCP to send something, since we
3401  * know the packet we just sent was dropped.
3402  * This duplicates some code in the tcp_mss() function in tcp_input.c.
3403  */
3404 static struct inpcb *
3405 tcp_mtudisc_notify(struct inpcb *inp, int error)
3406 {
3407 
3408 	tcp_mtudisc(inp, -1);
3409 	return (inp);
3410 }
3411 
3412 static void
3413 tcp_mtudisc(struct inpcb *inp, int mtuoffer)
3414 {
3415 	struct tcpcb *tp;
3416 	struct socket *so;
3417 
3418 	INP_WLOCK_ASSERT(inp);
3419 	if ((inp->inp_flags & INP_TIMEWAIT) ||
3420 	    (inp->inp_flags & INP_DROPPED))
3421 		return;
3422 
3423 	tp = intotcpcb(inp);
3424 	KASSERT(tp != NULL, ("tcp_mtudisc: tp == NULL"));
3425 
3426 	tcp_mss_update(tp, -1, mtuoffer, NULL, NULL);
3427 
3428 	so = inp->inp_socket;
3429 	SOCKBUF_LOCK(&so->so_snd);
3430 	/* If the mss is larger than the socket buffer, decrease the mss. */
3431 	if (so->so_snd.sb_hiwat < tp->t_maxseg)
3432 		tp->t_maxseg = so->so_snd.sb_hiwat;
3433 	SOCKBUF_UNLOCK(&so->so_snd);
3434 
3435 	TCPSTAT_INC(tcps_mturesent);
3436 	tp->t_rtttime = 0;
3437 	tp->snd_nxt = tp->snd_una;
3438 	tcp_free_sackholes(tp);
3439 	tp->snd_recover = tp->snd_max;
3440 	if (tp->t_flags & TF_SACK_PERMIT)
3441 		EXIT_FASTRECOVERY(tp->t_flags);
3442 	if (tp->t_fb->tfb_tcp_mtu_chg != NULL) {
3443 		/*
3444 		 * Conceptually the snd_nxt setting
3445 		 * and freeing sack holes should
3446 		 * be done by the default stacks
3447 		 * own tfb_tcp_mtu_chg().
3448 		 */
3449 		tp->t_fb->tfb_tcp_mtu_chg(tp);
3450 	}
3451 	tp->t_fb->tfb_tcp_output(tp);
3452 }
3453 
3454 #ifdef INET
3455 /*
3456  * Look-up the routing entry to the peer of this inpcb.  If no route
3457  * is found and it cannot be allocated, then return 0.  This routine
3458  * is called by TCP routines that access the rmx structure and by
3459  * tcp_mss_update to get the peer/interface MTU.
3460  */
3461 uint32_t
3462 tcp_maxmtu(struct in_conninfo *inc, struct tcp_ifcap *cap)
3463 {
3464 	struct nhop_object *nh;
3465 	struct ifnet *ifp;
3466 	uint32_t maxmtu = 0;
3467 
3468 	KASSERT(inc != NULL, ("tcp_maxmtu with NULL in_conninfo pointer"));
3469 
3470 	if (inc->inc_faddr.s_addr != INADDR_ANY) {
3471 		nh = fib4_lookup(inc->inc_fibnum, inc->inc_faddr, 0, NHR_NONE, 0);
3472 		if (nh == NULL)
3473 			return (0);
3474 
3475 		ifp = nh->nh_ifp;
3476 		maxmtu = nh->nh_mtu;
3477 
3478 		/* Report additional interface capabilities. */
3479 		if (cap != NULL) {
3480 			if (ifp->if_capenable & IFCAP_TSO4 &&
3481 			    ifp->if_hwassist & CSUM_TSO) {
3482 				cap->ifcap |= CSUM_TSO;
3483 				cap->tsomax = ifp->if_hw_tsomax;
3484 				cap->tsomaxsegcount = ifp->if_hw_tsomaxsegcount;
3485 				cap->tsomaxsegsize = ifp->if_hw_tsomaxsegsize;
3486 			}
3487 		}
3488 	}
3489 	return (maxmtu);
3490 }
3491 #endif /* INET */
3492 
3493 #ifdef INET6
3494 uint32_t
3495 tcp_maxmtu6(struct in_conninfo *inc, struct tcp_ifcap *cap)
3496 {
3497 	struct nhop_object *nh;
3498 	struct in6_addr dst6;
3499 	uint32_t scopeid;
3500 	struct ifnet *ifp;
3501 	uint32_t maxmtu = 0;
3502 
3503 	KASSERT(inc != NULL, ("tcp_maxmtu6 with NULL in_conninfo pointer"));
3504 
3505 	if (inc->inc_flags & INC_IPV6MINMTU)
3506 		return (IPV6_MMTU);
3507 
3508 	if (!IN6_IS_ADDR_UNSPECIFIED(&inc->inc6_faddr)) {
3509 		in6_splitscope(&inc->inc6_faddr, &dst6, &scopeid);
3510 		nh = fib6_lookup(inc->inc_fibnum, &dst6, scopeid, NHR_NONE, 0);
3511 		if (nh == NULL)
3512 			return (0);
3513 
3514 		ifp = nh->nh_ifp;
3515 		maxmtu = nh->nh_mtu;
3516 
3517 		/* Report additional interface capabilities. */
3518 		if (cap != NULL) {
3519 			if (ifp->if_capenable & IFCAP_TSO6 &&
3520 			    ifp->if_hwassist & CSUM_TSO) {
3521 				cap->ifcap |= CSUM_TSO;
3522 				cap->tsomax = ifp->if_hw_tsomax;
3523 				cap->tsomaxsegcount = ifp->if_hw_tsomaxsegcount;
3524 				cap->tsomaxsegsize = ifp->if_hw_tsomaxsegsize;
3525 			}
3526 		}
3527 	}
3528 
3529 	return (maxmtu);
3530 }
3531 #endif /* INET6 */
3532 
3533 /*
3534  * Calculate effective SMSS per RFC5681 definition for a given TCP
3535  * connection at its current state, taking into account SACK and etc.
3536  */
3537 u_int
3538 tcp_maxseg(const struct tcpcb *tp)
3539 {
3540 	u_int optlen;
3541 
3542 	if (tp->t_flags & TF_NOOPT)
3543 		return (tp->t_maxseg);
3544 
3545 	/*
3546 	 * Here we have a simplified code from tcp_addoptions(),
3547 	 * without a proper loop, and having most of paddings hardcoded.
3548 	 * We might make mistakes with padding here in some edge cases,
3549 	 * but this is harmless, since result of tcp_maxseg() is used
3550 	 * only in cwnd and ssthresh estimations.
3551 	 */
3552 	if (TCPS_HAVEESTABLISHED(tp->t_state)) {
3553 		if (tp->t_flags & TF_RCVD_TSTMP)
3554 			optlen = TCPOLEN_TSTAMP_APPA;
3555 		else
3556 			optlen = 0;
3557 #if defined(IPSEC_SUPPORT) || defined(TCP_SIGNATURE)
3558 		if (tp->t_flags & TF_SIGNATURE)
3559 			optlen += PADTCPOLEN(TCPOLEN_SIGNATURE);
3560 #endif
3561 		if ((tp->t_flags & TF_SACK_PERMIT) && tp->rcv_numsacks > 0) {
3562 			optlen += TCPOLEN_SACKHDR;
3563 			optlen += tp->rcv_numsacks * TCPOLEN_SACK;
3564 			optlen = PADTCPOLEN(optlen);
3565 		}
3566 	} else {
3567 		if (tp->t_flags & TF_REQ_TSTMP)
3568 			optlen = TCPOLEN_TSTAMP_APPA;
3569 		else
3570 			optlen = PADTCPOLEN(TCPOLEN_MAXSEG);
3571 		if (tp->t_flags & TF_REQ_SCALE)
3572 			optlen += PADTCPOLEN(TCPOLEN_WINDOW);
3573 #if defined(IPSEC_SUPPORT) || defined(TCP_SIGNATURE)
3574 		if (tp->t_flags & TF_SIGNATURE)
3575 			optlen += PADTCPOLEN(TCPOLEN_SIGNATURE);
3576 #endif
3577 		if (tp->t_flags & TF_SACK_PERMIT)
3578 			optlen += PADTCPOLEN(TCPOLEN_SACK_PERMITTED);
3579 	}
3580 #undef PAD
3581 	optlen = min(optlen, TCP_MAXOLEN);
3582 	return (tp->t_maxseg - optlen);
3583 }
3584 
3585 
3586 u_int
3587 tcp_fixed_maxseg(const struct tcpcb *tp)
3588 {
3589 	int optlen;
3590 
3591 	if (tp->t_flags & TF_NOOPT)
3592 		return (tp->t_maxseg);
3593 
3594 	/*
3595 	 * Here we have a simplified code from tcp_addoptions(),
3596 	 * without a proper loop, and having most of paddings hardcoded.
3597 	 * We only consider fixed options that we would send every
3598 	 * time I.e. SACK is not considered. This is important
3599 	 * for cc modules to figure out what the modulo of the
3600 	 * cwnd should be.
3601 	 */
3602 #define	PAD(len)	((((len) / 4) + !!((len) % 4)) * 4)
3603 	if (TCPS_HAVEESTABLISHED(tp->t_state)) {
3604 		if (tp->t_flags & TF_RCVD_TSTMP)
3605 			optlen = TCPOLEN_TSTAMP_APPA;
3606 		else
3607 			optlen = 0;
3608 #if defined(IPSEC_SUPPORT) || defined(TCP_SIGNATURE)
3609 		if (tp->t_flags & TF_SIGNATURE)
3610 			optlen += PAD(TCPOLEN_SIGNATURE);
3611 #endif
3612 	} else {
3613 		if (tp->t_flags & TF_REQ_TSTMP)
3614 			optlen = TCPOLEN_TSTAMP_APPA;
3615 		else
3616 			optlen = PAD(TCPOLEN_MAXSEG);
3617 		if (tp->t_flags & TF_REQ_SCALE)
3618 			optlen += PAD(TCPOLEN_WINDOW);
3619 #if defined(IPSEC_SUPPORT) || defined(TCP_SIGNATURE)
3620 		if (tp->t_flags & TF_SIGNATURE)
3621 			optlen += PAD(TCPOLEN_SIGNATURE);
3622 #endif
3623 		if (tp->t_flags & TF_SACK_PERMIT)
3624 			optlen += PAD(TCPOLEN_SACK_PERMITTED);
3625 	}
3626 #undef PAD
3627 	optlen = min(optlen, TCP_MAXOLEN);
3628 	return (tp->t_maxseg - optlen);
3629 }
3630 
3631 
3632 
3633 static int
3634 sysctl_drop(SYSCTL_HANDLER_ARGS)
3635 {
3636 	/* addrs[0] is a foreign socket, addrs[1] is a local one. */
3637 	struct sockaddr_storage addrs[2];
3638 	struct inpcb *inp;
3639 	struct tcpcb *tp;
3640 	struct tcptw *tw;
3641 	struct sockaddr_in *fin, *lin;
3642 	struct epoch_tracker et;
3643 #ifdef INET6
3644 	struct sockaddr_in6 *fin6, *lin6;
3645 #endif
3646 	int error;
3647 
3648 	inp = NULL;
3649 	fin = lin = NULL;
3650 #ifdef INET6
3651 	fin6 = lin6 = NULL;
3652 #endif
3653 	error = 0;
3654 
3655 	if (req->oldptr != NULL || req->oldlen != 0)
3656 		return (EINVAL);
3657 	if (req->newptr == NULL)
3658 		return (EPERM);
3659 	if (req->newlen < sizeof(addrs))
3660 		return (ENOMEM);
3661 	error = SYSCTL_IN(req, &addrs, sizeof(addrs));
3662 	if (error)
3663 		return (error);
3664 
3665 	switch (addrs[0].ss_family) {
3666 #ifdef INET6
3667 	case AF_INET6:
3668 		fin6 = (struct sockaddr_in6 *)&addrs[0];
3669 		lin6 = (struct sockaddr_in6 *)&addrs[1];
3670 		if (fin6->sin6_len != sizeof(struct sockaddr_in6) ||
3671 		    lin6->sin6_len != sizeof(struct sockaddr_in6))
3672 			return (EINVAL);
3673 		if (IN6_IS_ADDR_V4MAPPED(&fin6->sin6_addr)) {
3674 			if (!IN6_IS_ADDR_V4MAPPED(&lin6->sin6_addr))
3675 				return (EINVAL);
3676 			in6_sin6_2_sin_in_sock((struct sockaddr *)&addrs[0]);
3677 			in6_sin6_2_sin_in_sock((struct sockaddr *)&addrs[1]);
3678 			fin = (struct sockaddr_in *)&addrs[0];
3679 			lin = (struct sockaddr_in *)&addrs[1];
3680 			break;
3681 		}
3682 		error = sa6_embedscope(fin6, V_ip6_use_defzone);
3683 		if (error)
3684 			return (error);
3685 		error = sa6_embedscope(lin6, V_ip6_use_defzone);
3686 		if (error)
3687 			return (error);
3688 		break;
3689 #endif
3690 #ifdef INET
3691 	case AF_INET:
3692 		fin = (struct sockaddr_in *)&addrs[0];
3693 		lin = (struct sockaddr_in *)&addrs[1];
3694 		if (fin->sin_len != sizeof(struct sockaddr_in) ||
3695 		    lin->sin_len != sizeof(struct sockaddr_in))
3696 			return (EINVAL);
3697 		break;
3698 #endif
3699 	default:
3700 		return (EINVAL);
3701 	}
3702 	NET_EPOCH_ENTER(et);
3703 	switch (addrs[0].ss_family) {
3704 #ifdef INET6
3705 	case AF_INET6:
3706 		inp = in6_pcblookup(&V_tcbinfo, &fin6->sin6_addr,
3707 		    fin6->sin6_port, &lin6->sin6_addr, lin6->sin6_port,
3708 		    INPLOOKUP_WLOCKPCB, NULL);
3709 		break;
3710 #endif
3711 #ifdef INET
3712 	case AF_INET:
3713 		inp = in_pcblookup(&V_tcbinfo, fin->sin_addr, fin->sin_port,
3714 		    lin->sin_addr, lin->sin_port, INPLOOKUP_WLOCKPCB, NULL);
3715 		break;
3716 #endif
3717 	}
3718 	if (inp != NULL) {
3719 		if (inp->inp_flags & INP_TIMEWAIT) {
3720 			/*
3721 			 * XXXRW: There currently exists a state where an
3722 			 * inpcb is present, but its timewait state has been
3723 			 * discarded.  For now, don't allow dropping of this
3724 			 * type of inpcb.
3725 			 */
3726 			tw = intotw(inp);
3727 			if (tw != NULL)
3728 				tcp_twclose(tw, 0);
3729 			else
3730 				INP_WUNLOCK(inp);
3731 		} else if ((inp->inp_flags & INP_DROPPED) == 0 &&
3732 		    !SOLISTENING(inp->inp_socket)) {
3733 			tp = intotcpcb(inp);
3734 			tp = tcp_drop(tp, ECONNABORTED);
3735 			if (tp != NULL)
3736 				INP_WUNLOCK(inp);
3737 		} else
3738 			INP_WUNLOCK(inp);
3739 	} else
3740 		error = ESRCH;
3741 	NET_EPOCH_EXIT(et);
3742 	return (error);
3743 }
3744 
3745 SYSCTL_PROC(_net_inet_tcp, TCPCTL_DROP, drop,
3746     CTLFLAG_VNET | CTLTYPE_STRUCT | CTLFLAG_WR | CTLFLAG_SKIP |
3747     CTLFLAG_NEEDGIANT, NULL, 0, sysctl_drop, "",
3748     "Drop TCP connection");
3749 
3750 #ifdef KERN_TLS
3751 static int
3752 sysctl_switch_tls(SYSCTL_HANDLER_ARGS)
3753 {
3754 	/* addrs[0] is a foreign socket, addrs[1] is a local one. */
3755 	struct sockaddr_storage addrs[2];
3756 	struct inpcb *inp;
3757 	struct sockaddr_in *fin, *lin;
3758 	struct epoch_tracker et;
3759 #ifdef INET6
3760 	struct sockaddr_in6 *fin6, *lin6;
3761 #endif
3762 	int error;
3763 
3764 	inp = NULL;
3765 	fin = lin = NULL;
3766 #ifdef INET6
3767 	fin6 = lin6 = NULL;
3768 #endif
3769 	error = 0;
3770 
3771 	if (req->oldptr != NULL || req->oldlen != 0)
3772 		return (EINVAL);
3773 	if (req->newptr == NULL)
3774 		return (EPERM);
3775 	if (req->newlen < sizeof(addrs))
3776 		return (ENOMEM);
3777 	error = SYSCTL_IN(req, &addrs, sizeof(addrs));
3778 	if (error)
3779 		return (error);
3780 
3781 	switch (addrs[0].ss_family) {
3782 #ifdef INET6
3783 	case AF_INET6:
3784 		fin6 = (struct sockaddr_in6 *)&addrs[0];
3785 		lin6 = (struct sockaddr_in6 *)&addrs[1];
3786 		if (fin6->sin6_len != sizeof(struct sockaddr_in6) ||
3787 		    lin6->sin6_len != sizeof(struct sockaddr_in6))
3788 			return (EINVAL);
3789 		if (IN6_IS_ADDR_V4MAPPED(&fin6->sin6_addr)) {
3790 			if (!IN6_IS_ADDR_V4MAPPED(&lin6->sin6_addr))
3791 				return (EINVAL);
3792 			in6_sin6_2_sin_in_sock((struct sockaddr *)&addrs[0]);
3793 			in6_sin6_2_sin_in_sock((struct sockaddr *)&addrs[1]);
3794 			fin = (struct sockaddr_in *)&addrs[0];
3795 			lin = (struct sockaddr_in *)&addrs[1];
3796 			break;
3797 		}
3798 		error = sa6_embedscope(fin6, V_ip6_use_defzone);
3799 		if (error)
3800 			return (error);
3801 		error = sa6_embedscope(lin6, V_ip6_use_defzone);
3802 		if (error)
3803 			return (error);
3804 		break;
3805 #endif
3806 #ifdef INET
3807 	case AF_INET:
3808 		fin = (struct sockaddr_in *)&addrs[0];
3809 		lin = (struct sockaddr_in *)&addrs[1];
3810 		if (fin->sin_len != sizeof(struct sockaddr_in) ||
3811 		    lin->sin_len != sizeof(struct sockaddr_in))
3812 			return (EINVAL);
3813 		break;
3814 #endif
3815 	default:
3816 		return (EINVAL);
3817 	}
3818 	NET_EPOCH_ENTER(et);
3819 	switch (addrs[0].ss_family) {
3820 #ifdef INET6
3821 	case AF_INET6:
3822 		inp = in6_pcblookup(&V_tcbinfo, &fin6->sin6_addr,
3823 		    fin6->sin6_port, &lin6->sin6_addr, lin6->sin6_port,
3824 		    INPLOOKUP_WLOCKPCB, NULL);
3825 		break;
3826 #endif
3827 #ifdef INET
3828 	case AF_INET:
3829 		inp = in_pcblookup(&V_tcbinfo, fin->sin_addr, fin->sin_port,
3830 		    lin->sin_addr, lin->sin_port, INPLOOKUP_WLOCKPCB, NULL);
3831 		break;
3832 #endif
3833 	}
3834 	NET_EPOCH_EXIT(et);
3835 	if (inp != NULL) {
3836 		if ((inp->inp_flags & (INP_TIMEWAIT | INP_DROPPED)) != 0 ||
3837 		    inp->inp_socket == NULL) {
3838 			error = ECONNRESET;
3839 			INP_WUNLOCK(inp);
3840 		} else {
3841 			struct socket *so;
3842 
3843 			so = inp->inp_socket;
3844 			soref(so);
3845 			error = ktls_set_tx_mode(so,
3846 			    arg2 == 0 ? TCP_TLS_MODE_SW : TCP_TLS_MODE_IFNET);
3847 			INP_WUNLOCK(inp);
3848 			SOCK_LOCK(so);
3849 			sorele(so);
3850 		}
3851 	} else
3852 		error = ESRCH;
3853 	return (error);
3854 }
3855 
3856 SYSCTL_PROC(_net_inet_tcp, OID_AUTO, switch_to_sw_tls,
3857     CTLFLAG_VNET | CTLTYPE_STRUCT | CTLFLAG_WR | CTLFLAG_SKIP |
3858     CTLFLAG_NEEDGIANT, NULL, 0, sysctl_switch_tls, "",
3859     "Switch TCP connection to SW TLS");
3860 SYSCTL_PROC(_net_inet_tcp, OID_AUTO, switch_to_ifnet_tls,
3861     CTLFLAG_VNET | CTLTYPE_STRUCT | CTLFLAG_WR | CTLFLAG_SKIP |
3862     CTLFLAG_NEEDGIANT, NULL, 1, sysctl_switch_tls, "",
3863     "Switch TCP connection to ifnet TLS");
3864 #endif
3865 
3866 /*
3867  * Generate a standardized TCP log line for use throughout the
3868  * tcp subsystem.  Memory allocation is done with M_NOWAIT to
3869  * allow use in the interrupt context.
3870  *
3871  * NB: The caller MUST free(s, M_TCPLOG) the returned string.
3872  * NB: The function may return NULL if memory allocation failed.
3873  *
3874  * Due to header inclusion and ordering limitations the struct ip
3875  * and ip6_hdr pointers have to be passed as void pointers.
3876  */
3877 char *
3878 tcp_log_vain(struct in_conninfo *inc, struct tcphdr *th, void *ip4hdr,
3879     const void *ip6hdr)
3880 {
3881 
3882 	/* Is logging enabled? */
3883 	if (V_tcp_log_in_vain == 0)
3884 		return (NULL);
3885 
3886 	return (tcp_log_addr(inc, th, ip4hdr, ip6hdr));
3887 }
3888 
3889 char *
3890 tcp_log_addrs(struct in_conninfo *inc, struct tcphdr *th, void *ip4hdr,
3891     const void *ip6hdr)
3892 {
3893 
3894 	/* Is logging enabled? */
3895 	if (tcp_log_debug == 0)
3896 		return (NULL);
3897 
3898 	return (tcp_log_addr(inc, th, ip4hdr, ip6hdr));
3899 }
3900 
3901 static char *
3902 tcp_log_addr(struct in_conninfo *inc, struct tcphdr *th, void *ip4hdr,
3903     const void *ip6hdr)
3904 {
3905 	char *s, *sp;
3906 	size_t size;
3907 	struct ip *ip;
3908 #ifdef INET6
3909 	const struct ip6_hdr *ip6;
3910 
3911 	ip6 = (const struct ip6_hdr *)ip6hdr;
3912 #endif /* INET6 */
3913 	ip = (struct ip *)ip4hdr;
3914 
3915 	/*
3916 	 * The log line looks like this:
3917 	 * "TCP: [1.2.3.4]:50332 to [1.2.3.4]:80 tcpflags 0x2<SYN>"
3918 	 */
3919 	size = sizeof("TCP: []:12345 to []:12345 tcpflags 0x2<>") +
3920 	    sizeof(PRINT_TH_FLAGS) + 1 +
3921 #ifdef INET6
3922 	    2 * INET6_ADDRSTRLEN;
3923 #else
3924 	    2 * INET_ADDRSTRLEN;
3925 #endif /* INET6 */
3926 
3927 	s = malloc(size, M_TCPLOG, M_ZERO|M_NOWAIT);
3928 	if (s == NULL)
3929 		return (NULL);
3930 
3931 	strcat(s, "TCP: [");
3932 	sp = s + strlen(s);
3933 
3934 	if (inc && ((inc->inc_flags & INC_ISIPV6) == 0)) {
3935 		inet_ntoa_r(inc->inc_faddr, sp);
3936 		sp = s + strlen(s);
3937 		sprintf(sp, "]:%i to [", ntohs(inc->inc_fport));
3938 		sp = s + strlen(s);
3939 		inet_ntoa_r(inc->inc_laddr, sp);
3940 		sp = s + strlen(s);
3941 		sprintf(sp, "]:%i", ntohs(inc->inc_lport));
3942 #ifdef INET6
3943 	} else if (inc) {
3944 		ip6_sprintf(sp, &inc->inc6_faddr);
3945 		sp = s + strlen(s);
3946 		sprintf(sp, "]:%i to [", ntohs(inc->inc_fport));
3947 		sp = s + strlen(s);
3948 		ip6_sprintf(sp, &inc->inc6_laddr);
3949 		sp = s + strlen(s);
3950 		sprintf(sp, "]:%i", ntohs(inc->inc_lport));
3951 	} else if (ip6 && th) {
3952 		ip6_sprintf(sp, &ip6->ip6_src);
3953 		sp = s + strlen(s);
3954 		sprintf(sp, "]:%i to [", ntohs(th->th_sport));
3955 		sp = s + strlen(s);
3956 		ip6_sprintf(sp, &ip6->ip6_dst);
3957 		sp = s + strlen(s);
3958 		sprintf(sp, "]:%i", ntohs(th->th_dport));
3959 #endif /* INET6 */
3960 #ifdef INET
3961 	} else if (ip && th) {
3962 		inet_ntoa_r(ip->ip_src, sp);
3963 		sp = s + strlen(s);
3964 		sprintf(sp, "]:%i to [", ntohs(th->th_sport));
3965 		sp = s + strlen(s);
3966 		inet_ntoa_r(ip->ip_dst, sp);
3967 		sp = s + strlen(s);
3968 		sprintf(sp, "]:%i", ntohs(th->th_dport));
3969 #endif /* INET */
3970 	} else {
3971 		free(s, M_TCPLOG);
3972 		return (NULL);
3973 	}
3974 	sp = s + strlen(s);
3975 	if (th)
3976 		sprintf(sp, " tcpflags 0x%b", th->th_flags, PRINT_TH_FLAGS);
3977 	if (*(s + size - 1) != '\0')
3978 		panic("%s: string too long", __func__);
3979 	return (s);
3980 }
3981 
3982 /*
3983  * A subroutine which makes it easy to track TCP state changes with DTrace.
3984  * This function shouldn't be called for t_state initializations that don't
3985  * correspond to actual TCP state transitions.
3986  */
3987 void
3988 tcp_state_change(struct tcpcb *tp, int newstate)
3989 {
3990 #if defined(KDTRACE_HOOKS)
3991 	int pstate = tp->t_state;
3992 #endif
3993 
3994 	TCPSTATES_DEC(tp->t_state);
3995 	TCPSTATES_INC(newstate);
3996 	tp->t_state = newstate;
3997 	TCP_PROBE6(state__change, NULL, tp, NULL, tp, NULL, pstate);
3998 }
3999 
4000 /*
4001  * Create an external-format (``xtcpcb'') structure using the information in
4002  * the kernel-format tcpcb structure pointed to by tp.  This is done to
4003  * reduce the spew of irrelevant information over this interface, to isolate
4004  * user code from changes in the kernel structure, and potentially to provide
4005  * information-hiding if we decide that some of this information should be
4006  * hidden from users.
4007  */
4008 void
4009 tcp_inptoxtp(const struct inpcb *inp, struct xtcpcb *xt)
4010 {
4011 	struct tcpcb *tp = intotcpcb(inp);
4012 	struct tcptw *tw = intotw(inp);
4013 	sbintime_t now;
4014 
4015 	bzero(xt, sizeof(*xt));
4016 	if (inp->inp_flags & INP_TIMEWAIT) {
4017 		xt->t_state = TCPS_TIME_WAIT;
4018 		xt->xt_encaps_port = tw->t_port;
4019 	} else {
4020 		xt->t_state = tp->t_state;
4021 		xt->t_logstate = tp->t_logstate;
4022 		xt->t_flags = tp->t_flags;
4023 		xt->t_sndzerowin = tp->t_sndzerowin;
4024 		xt->t_sndrexmitpack = tp->t_sndrexmitpack;
4025 		xt->t_rcvoopack = tp->t_rcvoopack;
4026 		xt->t_rcv_wnd = tp->rcv_wnd;
4027 		xt->t_snd_wnd = tp->snd_wnd;
4028 		xt->t_snd_cwnd = tp->snd_cwnd;
4029 		xt->t_snd_ssthresh = tp->snd_ssthresh;
4030 		xt->t_dsack_bytes = tp->t_dsack_bytes;
4031 		xt->t_dsack_tlp_bytes = tp->t_dsack_tlp_bytes;
4032 		xt->t_dsack_pack = tp->t_dsack_pack;
4033 		xt->t_maxseg = tp->t_maxseg;
4034 		xt->xt_ecn = (tp->t_flags2 & TF2_ECN_PERMIT) ? 1 : 0 +
4035 			     (tp->t_flags2 & TF2_ACE_PERMIT) ? 2 : 0;
4036 
4037 		now = getsbinuptime();
4038 #define	COPYTIMER(ttt)	do {						\
4039 		if (callout_active(&tp->t_timers->ttt))			\
4040 			xt->ttt = (tp->t_timers->ttt.c_time - now) /	\
4041 			    SBT_1MS;					\
4042 		else							\
4043 			xt->ttt = 0;					\
4044 } while (0)
4045 		COPYTIMER(tt_delack);
4046 		COPYTIMER(tt_rexmt);
4047 		COPYTIMER(tt_persist);
4048 		COPYTIMER(tt_keep);
4049 		COPYTIMER(tt_2msl);
4050 #undef COPYTIMER
4051 		xt->t_rcvtime = 1000 * (ticks - tp->t_rcvtime) / hz;
4052 
4053 		xt->xt_encaps_port = tp->t_port;
4054 		bcopy(tp->t_fb->tfb_tcp_block_name, xt->xt_stack,
4055 		    TCP_FUNCTION_NAME_LEN_MAX);
4056 		bcopy(CC_ALGO(tp)->name, xt->xt_cc,
4057 		    TCP_CA_NAME_MAX);
4058 #ifdef TCP_BLACKBOX
4059 		(void)tcp_log_get_id(tp, xt->xt_logid);
4060 #endif
4061 	}
4062 
4063 	xt->xt_len = sizeof(struct xtcpcb);
4064 	in_pcbtoxinpcb(inp, &xt->xt_inp);
4065 	if (inp->inp_socket == NULL)
4066 		xt->xt_inp.xi_socket.xso_protocol = IPPROTO_TCP;
4067 }
4068 
4069 void
4070 tcp_log_end_status(struct tcpcb *tp, uint8_t status)
4071 {
4072 	uint32_t bit, i;
4073 
4074 	if ((tp == NULL) ||
4075 	    (status > TCP_EI_STATUS_MAX_VALUE) ||
4076 	    (status == 0)) {
4077 		/* Invalid */
4078 		return;
4079 	}
4080 	if (status > (sizeof(uint32_t) * 8)) {
4081 		/* Should this be a KASSERT? */
4082 		return;
4083 	}
4084 	bit = 1U << (status - 1);
4085 	if (bit & tp->t_end_info_status) {
4086 		/* already logged */
4087 		return;
4088 	}
4089 	for (i = 0; i < TCP_END_BYTE_INFO; i++) {
4090 		if (tp->t_end_info_bytes[i] == TCP_EI_EMPTY_SLOT) {
4091 			tp->t_end_info_bytes[i] = status;
4092 			tp->t_end_info_status |= bit;
4093 			break;
4094 		}
4095 	}
4096 }
4097 
4098 int
4099 tcp_can_enable_pacing(void)
4100 {
4101 
4102 	if ((tcp_pacing_limit == -1) ||
4103 	    (tcp_pacing_limit > number_of_tcp_connections_pacing)) {
4104 		atomic_fetchadd_int(&number_of_tcp_connections_pacing, 1);
4105 		shadow_num_connections = number_of_tcp_connections_pacing;
4106 		return (1);
4107 	} else {
4108 		return (0);
4109 	}
4110 }
4111 
4112 static uint8_t tcp_pacing_warning = 0;
4113 
4114 void
4115 tcp_decrement_paced_conn(void)
4116 {
4117 	uint32_t ret;
4118 
4119 	ret = atomic_fetchadd_int(&number_of_tcp_connections_pacing, -1);
4120 	shadow_num_connections = number_of_tcp_connections_pacing;
4121 	KASSERT(ret != 0, ("tcp_paced_connection_exits -1 would cause wrap?"));
4122 	if (ret == 0) {
4123 		if (tcp_pacing_limit != -1) {
4124 			printf("Warning all pacing is now disabled, count decrements invalidly!\n");
4125 			tcp_pacing_limit = 0;
4126 		} else if (tcp_pacing_warning == 0) {
4127 			printf("Warning pacing count is invalid, invalid decrement\n");
4128 			tcp_pacing_warning = 1;
4129 		}
4130 	}
4131 }
4132