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: stable/12/sys/netinet/tcp_subr.c 373249 2023-10-16 15:52:10Z zlei $");
36
37 #include "opt_inet.h"
38 #include "opt_inet6.h"
39 #include "opt_ipsec.h"
40 #include "opt_tcpdebug.h"
41
42 #include <sys/param.h>
43 #include <sys/systm.h>
44 #include <sys/callout.h>
45 #include <sys/eventhandler.h>
46 #ifdef TCP_HHOOK
47 #include <sys/hhook.h>
48 #endif
49 #include <sys/kernel.h>
50 #ifdef TCP_HHOOK
51 #include <sys/khelp.h>
52 #endif
53 #include <sys/sysctl.h>
54 #include <sys/jail.h>
55 #include <sys/malloc.h>
56 #include <sys/refcount.h>
57 #include <sys/mbuf.h>
58 #ifdef INET6
59 #include <sys/domain.h>
60 #endif
61 #include <sys/priv.h>
62 #include <sys/proc.h>
63 #include <sys/sdt.h>
64 #include <sys/socket.h>
65 #include <sys/socketvar.h>
66 #include <sys/protosw.h>
67 #include <sys/random.h>
68
69 #include <vm/uma.h>
70
71 #include <net/route.h>
72 #include <net/if.h>
73 #include <net/if_var.h>
74 #include <net/vnet.h>
75
76 #include <netinet/in.h>
77 #include <netinet/in_fib.h>
78 #include <netinet/in_kdtrace.h>
79 #include <netinet/in_pcb.h>
80 #include <netinet/in_systm.h>
81 #include <netinet/in_var.h>
82 #include <netinet/ip.h>
83 #include <netinet/ip_icmp.h>
84 #include <netinet/ip_var.h>
85 #ifdef INET6
86 #include <netinet/icmp6.h>
87 #include <netinet/ip6.h>
88 #include <netinet6/in6_fib.h>
89 #include <netinet6/in6_pcb.h>
90 #include <netinet6/ip6_var.h>
91 #include <netinet6/scope6_var.h>
92 #include <netinet6/nd6.h>
93 #endif
94
95 #include <netinet/tcp.h>
96 #include <netinet/tcp_fsm.h>
97 #include <netinet/tcp_seq.h>
98 #include <netinet/tcp_timer.h>
99 #include <netinet/tcp_var.h>
100 #include <netinet/tcp_log_buf.h>
101 #include <netinet/tcp_syncache.h>
102 #include <netinet/tcp_hpts.h>
103 #include <netinet/cc/cc.h>
104 #ifdef INET6
105 #include <netinet6/tcp6_var.h>
106 #endif
107 #include <netinet/tcpip.h>
108 #include <netinet/tcp_fastopen.h>
109 #ifdef TCPPCAP
110 #include <netinet/tcp_pcap.h>
111 #endif
112 #ifdef TCPDEBUG
113 #include <netinet/tcp_debug.h>
114 #endif
115 #ifdef INET6
116 #include <netinet6/ip6protosw.h>
117 #endif
118 #ifdef TCP_OFFLOAD
119 #include <netinet/tcp_offload.h>
120 #endif
121
122 #include <netipsec/ipsec_support.h>
123
124 #include <machine/in_cksum.h>
125 #include <sys/md5.h>
126
127 #include <security/mac/mac_framework.h>
128
129 VNET_DEFINE(int, tcp_mssdflt) = TCP_MSS;
130 #ifdef INET6
131 VNET_DEFINE(int, tcp_v6mssdflt) = TCP6_MSS;
132 #endif
133
134 struct rwlock tcp_function_lock;
135
136 static int
sysctl_net_inet_tcp_mss_check(SYSCTL_HANDLER_ARGS)137 sysctl_net_inet_tcp_mss_check(SYSCTL_HANDLER_ARGS)
138 {
139 int error, new;
140
141 new = V_tcp_mssdflt;
142 error = sysctl_handle_int(oidp, &new, 0, req);
143 if (error == 0 && req->newptr) {
144 if (new < TCP_MINMSS)
145 error = EINVAL;
146 else
147 V_tcp_mssdflt = new;
148 }
149 return (error);
150 }
151
152 SYSCTL_PROC(_net_inet_tcp, TCPCTL_MSSDFLT, mssdflt,
153 CTLFLAG_VNET | CTLTYPE_INT | CTLFLAG_RW, &VNET_NAME(tcp_mssdflt), 0,
154 &sysctl_net_inet_tcp_mss_check, "I",
155 "Default TCP Maximum Segment Size");
156
157 #ifdef INET6
158 static int
sysctl_net_inet_tcp_mss_v6_check(SYSCTL_HANDLER_ARGS)159 sysctl_net_inet_tcp_mss_v6_check(SYSCTL_HANDLER_ARGS)
160 {
161 int error, new;
162
163 new = V_tcp_v6mssdflt;
164 error = sysctl_handle_int(oidp, &new, 0, req);
165 if (error == 0 && req->newptr) {
166 if (new < TCP_MINMSS)
167 error = EINVAL;
168 else
169 V_tcp_v6mssdflt = new;
170 }
171 return (error);
172 }
173
174 SYSCTL_PROC(_net_inet_tcp, TCPCTL_V6MSSDFLT, v6mssdflt,
175 CTLFLAG_VNET | CTLTYPE_INT | CTLFLAG_RW, &VNET_NAME(tcp_v6mssdflt), 0,
176 &sysctl_net_inet_tcp_mss_v6_check, "I",
177 "Default TCP Maximum Segment Size for IPv6");
178 #endif /* INET6 */
179
180 /*
181 * Minimum MSS we accept and use. This prevents DoS attacks where
182 * we are forced to a ridiculous low MSS like 20 and send hundreds
183 * of packets instead of one. The effect scales with the available
184 * bandwidth and quickly saturates the CPU and network interface
185 * with packet generation and sending. Set to zero to disable MINMSS
186 * checking. This setting prevents us from sending too small packets.
187 */
188 VNET_DEFINE(int, tcp_minmss) = TCP_MINMSS;
189 SYSCTL_INT(_net_inet_tcp, OID_AUTO, minmss, CTLFLAG_VNET | CTLFLAG_RW,
190 &VNET_NAME(tcp_minmss), 0,
191 "Minimum TCP Maximum Segment Size");
192
193 VNET_DEFINE(int, tcp_do_rfc1323) = 1;
194 SYSCTL_INT(_net_inet_tcp, TCPCTL_DO_RFC1323, rfc1323, CTLFLAG_VNET | CTLFLAG_RW,
195 &VNET_NAME(tcp_do_rfc1323), 0,
196 "Enable rfc1323 (high performance TCP) extensions");
197
198 /*
199 * As of June 2021, several TCP stacks violate RFC 7323 from September 2014.
200 * Some stacks negotiate TS, but never send them after connection setup. Some
201 * stacks negotiate TS, but don't send them when sending keep-alive segments.
202 * These include modern widely deployed TCP stacks.
203 * Therefore tolerating violations for now...
204 */
205 VNET_DEFINE(int, tcp_tolerate_missing_ts) = 1;
206 SYSCTL_INT(_net_inet_tcp, OID_AUTO, tolerate_missing_ts, CTLFLAG_VNET | CTLFLAG_RW,
207 &VNET_NAME(tcp_tolerate_missing_ts), 0,
208 "Tolerate missing TCP timestamps");
209
210 VNET_DEFINE(int, tcp_ts_offset_per_conn) = 1;
211 SYSCTL_INT(_net_inet_tcp, OID_AUTO, ts_offset_per_conn, CTLFLAG_VNET | CTLFLAG_RW,
212 &VNET_NAME(tcp_ts_offset_per_conn), 0,
213 "Initialize TCP timestamps per connection instead of per host pair");
214
215 static int tcp_log_debug = 0;
216 SYSCTL_INT(_net_inet_tcp, OID_AUTO, log_debug, CTLFLAG_RW,
217 &tcp_log_debug, 0, "Log errors caused by incoming TCP segments");
218
219 /*
220 * Target size of TCP PCB hash tables. Must be a power of two.
221 *
222 * Note that this can be overridden by the kernel environment
223 * variable net.inet.tcp.tcbhashsize
224 */
225 #ifndef TCBHASHSIZE
226 #define TCBHASHSIZE 0
227 #endif
228 static int tcp_tcbhashsize = TCBHASHSIZE;
229 SYSCTL_INT(_net_inet_tcp, OID_AUTO, tcbhashsize, CTLFLAG_RDTUN,
230 &tcp_tcbhashsize, 0, "Size of TCP control-block hashtable");
231
232 static int do_tcpdrain = 1;
233 SYSCTL_INT(_net_inet_tcp, OID_AUTO, do_tcpdrain, CTLFLAG_RW, &do_tcpdrain, 0,
234 "Enable tcp_drain routine for extra help when low on mbufs");
235
236 SYSCTL_UINT(_net_inet_tcp, OID_AUTO, pcbcount, CTLFLAG_VNET | CTLFLAG_RD,
237 &VNET_NAME(tcbinfo.ipi_count), 0, "Number of active PCBs");
238
239 VNET_DEFINE_STATIC(int, icmp_may_rst) = 1;
240 #define V_icmp_may_rst VNET(icmp_may_rst)
241 SYSCTL_INT(_net_inet_tcp, OID_AUTO, icmp_may_rst, CTLFLAG_VNET | CTLFLAG_RW,
242 &VNET_NAME(icmp_may_rst), 0,
243 "Certain ICMP unreachable messages may abort connections in SYN_SENT");
244
245 VNET_DEFINE_STATIC(int, tcp_isn_reseed_interval) = 0;
246 #define V_tcp_isn_reseed_interval VNET(tcp_isn_reseed_interval)
247 SYSCTL_INT(_net_inet_tcp, OID_AUTO, isn_reseed_interval, CTLFLAG_VNET | CTLFLAG_RW,
248 &VNET_NAME(tcp_isn_reseed_interval), 0,
249 "Seconds between reseeding of ISN secret");
250
251 static int tcp_soreceive_stream;
252 SYSCTL_INT(_net_inet_tcp, OID_AUTO, soreceive_stream, CTLFLAG_RDTUN,
253 &tcp_soreceive_stream, 0, "Using soreceive_stream for TCP sockets");
254
255 VNET_DEFINE(uma_zone_t, sack_hole_zone);
256 #define V_sack_hole_zone VNET(sack_hole_zone)
257
258 #ifdef TCP_HHOOK
259 VNET_DEFINE(struct hhook_head *, tcp_hhh[HHOOK_TCP_LAST+1]);
260 #endif
261
262 #define TS_OFFSET_SECRET_LENGTH 32
263 VNET_DEFINE_STATIC(u_char, ts_offset_secret[TS_OFFSET_SECRET_LENGTH]);
264 #define V_ts_offset_secret VNET(ts_offset_secret)
265
266 static int tcp_default_fb_init(struct tcpcb *tp);
267 static void tcp_default_fb_fini(struct tcpcb *tp, int tcb_is_purged);
268 static int tcp_default_handoff_ok(struct tcpcb *tp);
269 static struct inpcb *tcp_notify(struct inpcb *, int);
270 static struct inpcb *tcp_mtudisc_notify(struct inpcb *, int);
271 static void tcp_mtudisc(struct inpcb *, int);
272 static char * tcp_log_addr(struct in_conninfo *inc, struct tcphdr *th,
273 void *ip4hdr, const void *ip6hdr);
274
275
276 static struct tcp_function_block tcp_def_funcblk = {
277 .tfb_tcp_block_name = "freebsd",
278 .tfb_tcp_output = tcp_output,
279 .tfb_tcp_do_segment = tcp_do_segment,
280 .tfb_tcp_ctloutput = tcp_default_ctloutput,
281 .tfb_tcp_handoff_ok = tcp_default_handoff_ok,
282 .tfb_tcp_fb_init = tcp_default_fb_init,
283 .tfb_tcp_fb_fini = tcp_default_fb_fini,
284 };
285
286 int t_functions_inited = 0;
287 static int tcp_fb_cnt = 0;
288 struct tcp_funchead t_functions;
289 static struct tcp_function_block *tcp_func_set_ptr = &tcp_def_funcblk;
290
291 static void
init_tcp_functions(void)292 init_tcp_functions(void)
293 {
294 if (t_functions_inited == 0) {
295 TAILQ_INIT(&t_functions);
296 rw_init_flags(&tcp_function_lock, "tcp_func_lock" , 0);
297 t_functions_inited = 1;
298 }
299 }
300
301 static struct tcp_function_block *
find_tcp_functions_locked(struct tcp_function_set * fs)302 find_tcp_functions_locked(struct tcp_function_set *fs)
303 {
304 struct tcp_function *f;
305 struct tcp_function_block *blk=NULL;
306
307 TAILQ_FOREACH(f, &t_functions, tf_next) {
308 if (strcmp(f->tf_name, fs->function_set_name) == 0) {
309 blk = f->tf_fb;
310 break;
311 }
312 }
313 return(blk);
314 }
315
316 static struct tcp_function_block *
find_tcp_fb_locked(struct tcp_function_block * blk,struct tcp_function ** s)317 find_tcp_fb_locked(struct tcp_function_block *blk, struct tcp_function **s)
318 {
319 struct tcp_function_block *rblk=NULL;
320 struct tcp_function *f;
321
322 TAILQ_FOREACH(f, &t_functions, tf_next) {
323 if (f->tf_fb == blk) {
324 rblk = blk;
325 if (s) {
326 *s = f;
327 }
328 break;
329 }
330 }
331 return (rblk);
332 }
333
334 struct tcp_function_block *
find_and_ref_tcp_functions(struct tcp_function_set * fs)335 find_and_ref_tcp_functions(struct tcp_function_set *fs)
336 {
337 struct tcp_function_block *blk;
338
339 rw_rlock(&tcp_function_lock);
340 blk = find_tcp_functions_locked(fs);
341 if (blk)
342 refcount_acquire(&blk->tfb_refcnt);
343 rw_runlock(&tcp_function_lock);
344 return(blk);
345 }
346
347 struct tcp_function_block *
find_and_ref_tcp_fb(struct tcp_function_block * blk)348 find_and_ref_tcp_fb(struct tcp_function_block *blk)
349 {
350 struct tcp_function_block *rblk;
351
352 rw_rlock(&tcp_function_lock);
353 rblk = find_tcp_fb_locked(blk, NULL);
354 if (rblk)
355 refcount_acquire(&rblk->tfb_refcnt);
356 rw_runlock(&tcp_function_lock);
357 return(rblk);
358 }
359
360 static struct tcp_function_block *
find_and_ref_tcp_default_fb(void)361 find_and_ref_tcp_default_fb(void)
362 {
363 struct tcp_function_block *rblk;
364
365 rw_rlock(&tcp_function_lock);
366 rblk = tcp_func_set_ptr;
367 refcount_acquire(&rblk->tfb_refcnt);
368 rw_runlock(&tcp_function_lock);
369 return (rblk);
370 }
371
372 void
tcp_switch_back_to_default(struct tcpcb * tp)373 tcp_switch_back_to_default(struct tcpcb *tp)
374 {
375 struct tcp_function_block *tfb;
376
377 KASSERT(tp->t_fb != &tcp_def_funcblk,
378 ("%s: called by the built-in default stack", __func__));
379
380 /*
381 * Release the old stack. This function will either find a new one
382 * or panic.
383 */
384 if (tp->t_fb->tfb_tcp_fb_fini != NULL)
385 (*tp->t_fb->tfb_tcp_fb_fini)(tp, 0);
386 refcount_release(&tp->t_fb->tfb_refcnt);
387
388 /*
389 * Now, we'll find a new function block to use.
390 * Start by trying the current user-selected
391 * default, unless this stack is the user-selected
392 * default.
393 */
394 tfb = find_and_ref_tcp_default_fb();
395 if (tfb == tp->t_fb) {
396 refcount_release(&tfb->tfb_refcnt);
397 tfb = NULL;
398 }
399 /* Does the stack accept this connection? */
400 if (tfb != NULL && tfb->tfb_tcp_handoff_ok != NULL &&
401 (*tfb->tfb_tcp_handoff_ok)(tp)) {
402 refcount_release(&tfb->tfb_refcnt);
403 tfb = NULL;
404 }
405 /* Try to use that stack. */
406 if (tfb != NULL) {
407 /* Initialize the new stack. If it succeeds, we are done. */
408 tp->t_fb = tfb;
409 if (tp->t_fb->tfb_tcp_fb_init == NULL ||
410 (*tp->t_fb->tfb_tcp_fb_init)(tp) == 0)
411 return;
412
413 /*
414 * Initialization failed. Release the reference count on
415 * the stack.
416 */
417 refcount_release(&tfb->tfb_refcnt);
418 }
419
420 /*
421 * If that wasn't feasible, use the built-in default
422 * stack which is not allowed to reject anyone.
423 */
424 tfb = find_and_ref_tcp_fb(&tcp_def_funcblk);
425 if (tfb == NULL) {
426 /* there always should be a default */
427 panic("Can't refer to tcp_def_funcblk");
428 }
429 if (tfb->tfb_tcp_handoff_ok != NULL) {
430 if ((*tfb->tfb_tcp_handoff_ok) (tp)) {
431 /* The default stack cannot say no */
432 panic("Default stack rejects a new session?");
433 }
434 }
435 tp->t_fb = tfb;
436 if (tp->t_fb->tfb_tcp_fb_init != NULL &&
437 (*tp->t_fb->tfb_tcp_fb_init)(tp)) {
438 /* The default stack cannot fail */
439 panic("Default stack initialization failed");
440 }
441 }
442
443 static int
sysctl_net_inet_default_tcp_functions(SYSCTL_HANDLER_ARGS)444 sysctl_net_inet_default_tcp_functions(SYSCTL_HANDLER_ARGS)
445 {
446 int error=ENOENT;
447 struct tcp_function_set fs;
448 struct tcp_function_block *blk;
449
450 memset(&fs, 0, sizeof(fs));
451 rw_rlock(&tcp_function_lock);
452 blk = find_tcp_fb_locked(tcp_func_set_ptr, NULL);
453 if (blk) {
454 /* Found him */
455 strcpy(fs.function_set_name, blk->tfb_tcp_block_name);
456 fs.pcbcnt = blk->tfb_refcnt;
457 }
458 rw_runlock(&tcp_function_lock);
459 error = sysctl_handle_string(oidp, fs.function_set_name,
460 sizeof(fs.function_set_name), req);
461
462 /* Check for error or no change */
463 if (error != 0 || req->newptr == NULL)
464 return(error);
465
466 rw_wlock(&tcp_function_lock);
467 blk = find_tcp_functions_locked(&fs);
468 if ((blk == NULL) ||
469 (blk->tfb_flags & TCP_FUNC_BEING_REMOVED)) {
470 error = ENOENT;
471 goto done;
472 }
473 tcp_func_set_ptr = blk;
474 done:
475 rw_wunlock(&tcp_function_lock);
476 return (error);
477 }
478
479 SYSCTL_PROC(_net_inet_tcp, OID_AUTO, functions_default,
480 CTLTYPE_STRING | CTLFLAG_RW,
481 NULL, 0, sysctl_net_inet_default_tcp_functions, "A",
482 "Set/get the default TCP functions");
483
484 static int
sysctl_net_inet_list_available(SYSCTL_HANDLER_ARGS)485 sysctl_net_inet_list_available(SYSCTL_HANDLER_ARGS)
486 {
487 int error, cnt, linesz;
488 struct tcp_function *f;
489 char *buffer, *cp;
490 size_t bufsz, outsz;
491 bool alias;
492
493 cnt = 0;
494 rw_rlock(&tcp_function_lock);
495 TAILQ_FOREACH(f, &t_functions, tf_next) {
496 cnt++;
497 }
498 rw_runlock(&tcp_function_lock);
499
500 bufsz = (cnt+2) * ((TCP_FUNCTION_NAME_LEN_MAX * 2) + 13) + 1;
501 buffer = malloc(bufsz, M_TEMP, M_WAITOK);
502
503 error = 0;
504 cp = buffer;
505
506 linesz = snprintf(cp, bufsz, "\n%-32s%c %-32s %s\n", "Stack", 'D',
507 "Alias", "PCB count");
508 cp += linesz;
509 bufsz -= linesz;
510 outsz = linesz;
511
512 rw_rlock(&tcp_function_lock);
513 TAILQ_FOREACH(f, &t_functions, tf_next) {
514 alias = (f->tf_name != f->tf_fb->tfb_tcp_block_name);
515 linesz = snprintf(cp, bufsz, "%-32s%c %-32s %u\n",
516 f->tf_fb->tfb_tcp_block_name,
517 (f->tf_fb == tcp_func_set_ptr) ? '*' : ' ',
518 alias ? f->tf_name : "-",
519 f->tf_fb->tfb_refcnt);
520 if (linesz >= bufsz) {
521 error = EOVERFLOW;
522 break;
523 }
524 cp += linesz;
525 bufsz -= linesz;
526 outsz += linesz;
527 }
528 rw_runlock(&tcp_function_lock);
529 if (error == 0)
530 error = sysctl_handle_string(oidp, buffer, outsz + 1, req);
531 free(buffer, M_TEMP);
532 return (error);
533 }
534
535 SYSCTL_PROC(_net_inet_tcp, OID_AUTO, functions_available,
536 CTLTYPE_STRING|CTLFLAG_RD,
537 NULL, 0, sysctl_net_inet_list_available, "A",
538 "list available TCP Function sets");
539
540 /*
541 * Exports one (struct tcp_function_info) for each alias/name.
542 */
543 static int
sysctl_net_inet_list_func_info(SYSCTL_HANDLER_ARGS)544 sysctl_net_inet_list_func_info(SYSCTL_HANDLER_ARGS)
545 {
546 int cnt, error;
547 struct tcp_function *f;
548 struct tcp_function_info tfi;
549
550 /*
551 * We don't allow writes.
552 */
553 if (req->newptr != NULL)
554 return (EINVAL);
555
556 /*
557 * Wire the old buffer so we can directly copy the functions to
558 * user space without dropping the lock.
559 */
560 if (req->oldptr != NULL) {
561 error = sysctl_wire_old_buffer(req, 0);
562 if (error)
563 return (error);
564 }
565
566 /*
567 * Walk the list and copy out matching entries. If INVARIANTS
568 * is compiled in, also walk the list to verify the length of
569 * the list matches what we have recorded.
570 */
571 rw_rlock(&tcp_function_lock);
572
573 cnt = 0;
574 #ifndef INVARIANTS
575 if (req->oldptr == NULL) {
576 cnt = tcp_fb_cnt;
577 goto skip_loop;
578 }
579 #endif
580 TAILQ_FOREACH(f, &t_functions, tf_next) {
581 #ifdef INVARIANTS
582 cnt++;
583 #endif
584 if (req->oldptr != NULL) {
585 bzero(&tfi, sizeof(tfi));
586 tfi.tfi_refcnt = f->tf_fb->tfb_refcnt;
587 tfi.tfi_id = f->tf_fb->tfb_id;
588 (void)strncpy(tfi.tfi_alias, f->tf_name,
589 TCP_FUNCTION_NAME_LEN_MAX);
590 tfi.tfi_alias[TCP_FUNCTION_NAME_LEN_MAX - 1] = '\0';
591 (void)strncpy(tfi.tfi_name,
592 f->tf_fb->tfb_tcp_block_name,
593 TCP_FUNCTION_NAME_LEN_MAX);
594 tfi.tfi_name[TCP_FUNCTION_NAME_LEN_MAX - 1] = '\0';
595 error = SYSCTL_OUT(req, &tfi, sizeof(tfi));
596 /*
597 * Don't stop on error, as that is the
598 * mechanism we use to accumulate length
599 * information if the buffer was too short.
600 */
601 }
602 }
603 KASSERT(cnt == tcp_fb_cnt,
604 ("%s: cnt (%d) != tcp_fb_cnt (%d)", __func__, cnt, tcp_fb_cnt));
605 #ifndef INVARIANTS
606 skip_loop:
607 #endif
608 rw_runlock(&tcp_function_lock);
609 if (req->oldptr == NULL)
610 error = SYSCTL_OUT(req, NULL,
611 (cnt + 1) * sizeof(struct tcp_function_info));
612
613 return (error);
614 }
615
616 SYSCTL_PROC(_net_inet_tcp, OID_AUTO, function_info,
617 CTLTYPE_OPAQUE | CTLFLAG_SKIP | CTLFLAG_RD | CTLFLAG_MPSAFE,
618 NULL, 0, sysctl_net_inet_list_func_info, "S,tcp_function_info",
619 "List TCP function block name-to-ID mappings");
620
621 /*
622 * tfb_tcp_handoff_ok() function for the default stack.
623 * Note that we'll basically try to take all comers.
624 */
625 static int
tcp_default_handoff_ok(struct tcpcb * tp)626 tcp_default_handoff_ok(struct tcpcb *tp)
627 {
628
629 return (0);
630 }
631
632 /*
633 * tfb_tcp_fb_init() function for the default stack.
634 *
635 * This handles making sure we have appropriate timers set if you are
636 * transitioning a socket that has some amount of setup done.
637 *
638 * The init() fuction from the default can *never* return non-zero i.e.
639 * it is required to always succeed since it is the stack of last resort!
640 */
641 static int
tcp_default_fb_init(struct tcpcb * tp)642 tcp_default_fb_init(struct tcpcb *tp)
643 {
644
645 struct socket *so;
646
647 INP_WLOCK_ASSERT(tp->t_inpcb);
648
649 KASSERT(tp->t_state >= 0 && tp->t_state < TCPS_TIME_WAIT,
650 ("%s: connection %p in unexpected state %d", __func__, tp,
651 tp->t_state));
652
653 /*
654 * Nothing to do for ESTABLISHED or LISTEN states. And, we don't
655 * know what to do for unexpected states (which includes TIME_WAIT).
656 */
657 if (tp->t_state <= TCPS_LISTEN || tp->t_state >= TCPS_TIME_WAIT)
658 return (0);
659
660 /*
661 * Make sure some kind of transmission timer is set if there is
662 * outstanding data.
663 */
664 so = tp->t_inpcb->inp_socket;
665 if ((!TCPS_HAVEESTABLISHED(tp->t_state) || sbavail(&so->so_snd) ||
666 tp->snd_una != tp->snd_max) && !(tcp_timer_active(tp, TT_REXMT) ||
667 tcp_timer_active(tp, TT_PERSIST))) {
668 /*
669 * If the session has established and it looks like it should
670 * be in the persist state, set the persist timer. Otherwise,
671 * set the retransmit timer.
672 */
673 if (TCPS_HAVEESTABLISHED(tp->t_state) && tp->snd_wnd == 0 &&
674 (int32_t)(tp->snd_nxt - tp->snd_una) <
675 (int32_t)sbavail(&so->so_snd))
676 tcp_setpersist(tp);
677 else
678 tcp_timer_activate(tp, TT_REXMT, tp->t_rxtcur);
679 }
680
681 /* All non-embryonic sessions get a keepalive timer. */
682 if (!tcp_timer_active(tp, TT_KEEP))
683 tcp_timer_activate(tp, TT_KEEP,
684 TCPS_HAVEESTABLISHED(tp->t_state) ? TP_KEEPIDLE(tp) :
685 TP_KEEPINIT(tp));
686
687 return (0);
688 }
689
690 /*
691 * tfb_tcp_fb_fini() function for the default stack.
692 *
693 * This changes state as necessary (or prudent) to prepare for another stack
694 * to assume responsibility for the connection.
695 */
696 static void
tcp_default_fb_fini(struct tcpcb * tp,int tcb_is_purged)697 tcp_default_fb_fini(struct tcpcb *tp, int tcb_is_purged)
698 {
699
700 INP_WLOCK_ASSERT(tp->t_inpcb);
701 return;
702 }
703
704 /*
705 * XXX
706 * Callouts should be moved into struct tcp directly. They are currently
707 * separate because the tcpcb structure is exported to userland for sysctl
708 * parsing purposes, which do not know about callouts.
709 */
710 struct tcpcb_mem {
711 struct tcpcb tcb;
712 struct tcp_timer tt;
713 struct cc_var ccv;
714 #ifdef TCP_HHOOK
715 struct osd osd;
716 #endif
717 };
718
719 VNET_DEFINE_STATIC(uma_zone_t, tcpcb_zone);
720 #define V_tcpcb_zone VNET(tcpcb_zone)
721
722 MALLOC_DEFINE(M_TCPLOG, "tcplog", "TCP address and flags print buffers");
723 MALLOC_DEFINE(M_TCPFUNCTIONS, "tcpfunc", "TCP function set memory");
724
725 static struct mtx isn_mtx;
726
727 #define ISN_LOCK_INIT() mtx_init(&isn_mtx, "isn_mtx", NULL, MTX_DEF)
728 #define ISN_LOCK() mtx_lock(&isn_mtx)
729 #define ISN_UNLOCK() mtx_unlock(&isn_mtx)
730
731 /*
732 * TCP initialization.
733 */
734 static void
tcp_zone_change(void * tag)735 tcp_zone_change(void *tag)
736 {
737
738 uma_zone_set_max(V_tcbinfo.ipi_zone, maxsockets);
739 uma_zone_set_max(V_tcpcb_zone, maxsockets);
740 tcp_tw_zone_change();
741 }
742
743 static int
tcp_inpcb_init(void * mem,int size,int flags)744 tcp_inpcb_init(void *mem, int size, int flags)
745 {
746 struct inpcb *inp = mem;
747
748 INP_LOCK_INIT(inp, "inp", "tcpinp");
749 return (0);
750 }
751
752 /*
753 * Take a value and get the next power of 2 that doesn't overflow.
754 * Used to size the tcp_inpcb hash buckets.
755 */
756 static int
maketcp_hashsize(int size)757 maketcp_hashsize(int size)
758 {
759 int hashsize;
760
761 /*
762 * auto tune.
763 * get the next power of 2 higher than maxsockets.
764 */
765 hashsize = 1 << fls(size);
766 /* catch overflow, and just go one power of 2 smaller */
767 if (hashsize < size) {
768 hashsize = 1 << (fls(size) - 1);
769 }
770 return (hashsize);
771 }
772
773 static volatile int next_tcp_stack_id = 1;
774
775 /*
776 * Register a TCP function block with the name provided in the names
777 * array. (Note that this function does NOT automatically register
778 * blk->tfb_tcp_block_name as a stack name. Therefore, you should
779 * explicitly include blk->tfb_tcp_block_name in the list of names if
780 * you wish to register the stack with that name.)
781 *
782 * Either all name registrations will succeed or all will fail. If
783 * a name registration fails, the function will update the num_names
784 * argument to point to the array index of the name that encountered
785 * the failure.
786 *
787 * Returns 0 on success, or an error code on failure.
788 */
789 int
register_tcp_functions_as_names(struct tcp_function_block * blk,int wait,const char * names[],int * num_names)790 register_tcp_functions_as_names(struct tcp_function_block *blk, int wait,
791 const char *names[], int *num_names)
792 {
793 struct tcp_function *n;
794 struct tcp_function_set fs;
795 int error, i;
796
797 KASSERT(names != NULL && *num_names > 0,
798 ("%s: Called with 0-length name list", __func__));
799 KASSERT(names != NULL, ("%s: Called with NULL name list", __func__));
800
801 if (t_functions_inited == 0) {
802 init_tcp_functions();
803 }
804 if ((blk->tfb_tcp_output == NULL) ||
805 (blk->tfb_tcp_do_segment == NULL) ||
806 (blk->tfb_tcp_ctloutput == NULL) ||
807 (strlen(blk->tfb_tcp_block_name) == 0)) {
808 /*
809 * These functions are required and you
810 * need a name.
811 */
812 *num_names = 0;
813 return (EINVAL);
814 }
815 if (blk->tfb_tcp_timer_stop_all ||
816 blk->tfb_tcp_timer_activate ||
817 blk->tfb_tcp_timer_active ||
818 blk->tfb_tcp_timer_stop) {
819 /*
820 * If you define one timer function you
821 * must have them all.
822 */
823 if ((blk->tfb_tcp_timer_stop_all == NULL) ||
824 (blk->tfb_tcp_timer_activate == NULL) ||
825 (blk->tfb_tcp_timer_active == NULL) ||
826 (blk->tfb_tcp_timer_stop == NULL)) {
827 *num_names = 0;
828 return (EINVAL);
829 }
830 }
831
832 if (blk->tfb_flags & TCP_FUNC_BEING_REMOVED) {
833 *num_names = 0;
834 return (EINVAL);
835 }
836
837 refcount_init(&blk->tfb_refcnt, 0);
838 blk->tfb_id = atomic_fetchadd_int(&next_tcp_stack_id, 1);
839 for (i = 0; i < *num_names; i++) {
840 n = malloc(sizeof(struct tcp_function), M_TCPFUNCTIONS, wait);
841 if (n == NULL) {
842 error = ENOMEM;
843 goto cleanup;
844 }
845 n->tf_fb = blk;
846
847 (void)strncpy(fs.function_set_name, names[i],
848 TCP_FUNCTION_NAME_LEN_MAX);
849 fs.function_set_name[TCP_FUNCTION_NAME_LEN_MAX - 1] = '\0';
850 rw_wlock(&tcp_function_lock);
851 if (find_tcp_functions_locked(&fs) != NULL) {
852 /* Duplicate name space not allowed */
853 rw_wunlock(&tcp_function_lock);
854 free(n, M_TCPFUNCTIONS);
855 error = EALREADY;
856 goto cleanup;
857 }
858 (void)strncpy(n->tf_name, names[i], TCP_FUNCTION_NAME_LEN_MAX);
859 n->tf_name[TCP_FUNCTION_NAME_LEN_MAX - 1] = '\0';
860 TAILQ_INSERT_TAIL(&t_functions, n, tf_next);
861 tcp_fb_cnt++;
862 rw_wunlock(&tcp_function_lock);
863 }
864 return(0);
865
866 cleanup:
867 /*
868 * Deregister the names we just added. Because registration failed
869 * for names[i], we don't need to deregister that name.
870 */
871 *num_names = i;
872 rw_wlock(&tcp_function_lock);
873 while (--i >= 0) {
874 TAILQ_FOREACH(n, &t_functions, tf_next) {
875 if (!strncmp(n->tf_name, names[i],
876 TCP_FUNCTION_NAME_LEN_MAX)) {
877 TAILQ_REMOVE(&t_functions, n, tf_next);
878 tcp_fb_cnt--;
879 n->tf_fb = NULL;
880 free(n, M_TCPFUNCTIONS);
881 break;
882 }
883 }
884 }
885 rw_wunlock(&tcp_function_lock);
886 return (error);
887 }
888
889 /*
890 * Register a TCP function block using the name provided in the name
891 * argument.
892 *
893 * Returns 0 on success, or an error code on failure.
894 */
895 int
register_tcp_functions_as_name(struct tcp_function_block * blk,const char * name,int wait)896 register_tcp_functions_as_name(struct tcp_function_block *blk, const char *name,
897 int wait)
898 {
899 const char *name_list[1];
900 int num_names, rv;
901
902 num_names = 1;
903 if (name != NULL)
904 name_list[0] = name;
905 else
906 name_list[0] = blk->tfb_tcp_block_name;
907 rv = register_tcp_functions_as_names(blk, wait, name_list, &num_names);
908 return (rv);
909 }
910
911 /*
912 * Register a TCP function block using the name defined in
913 * blk->tfb_tcp_block_name.
914 *
915 * Returns 0 on success, or an error code on failure.
916 */
917 int
register_tcp_functions(struct tcp_function_block * blk,int wait)918 register_tcp_functions(struct tcp_function_block *blk, int wait)
919 {
920
921 return (register_tcp_functions_as_name(blk, NULL, wait));
922 }
923
924 /*
925 * Deregister all names associated with a function block. This
926 * functionally removes the function block from use within the system.
927 *
928 * When called with a true quiesce argument, mark the function block
929 * as being removed so no more stacks will use it and determine
930 * whether the removal would succeed.
931 *
932 * When called with a false quiesce argument, actually attempt the
933 * removal.
934 *
935 * When called with a force argument, attempt to switch all TCBs to
936 * use the default stack instead of returning EBUSY.
937 *
938 * Returns 0 on success (or if the removal would succeed, or an error
939 * code on failure.
940 */
941 int
deregister_tcp_functions(struct tcp_function_block * blk,bool quiesce,bool force)942 deregister_tcp_functions(struct tcp_function_block *blk, bool quiesce,
943 bool force)
944 {
945 struct tcp_function *f;
946
947 if (strcmp(blk->tfb_tcp_block_name, "default") == 0) {
948 /* You can't un-register the default */
949 return (EPERM);
950 }
951 rw_wlock(&tcp_function_lock);
952 if (blk == tcp_func_set_ptr) {
953 /* You can't free the current default */
954 rw_wunlock(&tcp_function_lock);
955 return (EBUSY);
956 }
957 /* Mark the block so no more stacks can use it. */
958 blk->tfb_flags |= TCP_FUNC_BEING_REMOVED;
959 /*
960 * If TCBs are still attached to the stack, attempt to switch them
961 * to the default stack.
962 */
963 if (force && blk->tfb_refcnt) {
964 struct inpcb *inp;
965 struct tcpcb *tp;
966 VNET_ITERATOR_DECL(vnet_iter);
967
968 rw_wunlock(&tcp_function_lock);
969
970 VNET_LIST_RLOCK();
971 VNET_FOREACH(vnet_iter) {
972 CURVNET_SET(vnet_iter);
973 INP_INFO_WLOCK(&V_tcbinfo);
974 CK_LIST_FOREACH(inp, V_tcbinfo.ipi_listhead, inp_list) {
975 INP_WLOCK(inp);
976 if (inp->inp_flags & INP_TIMEWAIT) {
977 INP_WUNLOCK(inp);
978 continue;
979 }
980 tp = intotcpcb(inp);
981 if (tp == NULL || tp->t_fb != blk) {
982 INP_WUNLOCK(inp);
983 continue;
984 }
985 tcp_switch_back_to_default(tp);
986 INP_WUNLOCK(inp);
987 }
988 INP_INFO_WUNLOCK(&V_tcbinfo);
989 CURVNET_RESTORE();
990 }
991 VNET_LIST_RUNLOCK();
992
993 rw_wlock(&tcp_function_lock);
994 }
995 if (blk->tfb_refcnt) {
996 /* TCBs still attached. */
997 rw_wunlock(&tcp_function_lock);
998 return (EBUSY);
999 }
1000 if (quiesce) {
1001 /* Skip removal. */
1002 rw_wunlock(&tcp_function_lock);
1003 return (0);
1004 }
1005 /* Remove any function names that map to this function block. */
1006 while (find_tcp_fb_locked(blk, &f) != NULL) {
1007 TAILQ_REMOVE(&t_functions, f, tf_next);
1008 tcp_fb_cnt--;
1009 f->tf_fb = NULL;
1010 free(f, M_TCPFUNCTIONS);
1011 }
1012 rw_wunlock(&tcp_function_lock);
1013 return (0);
1014 }
1015
1016 void
tcp_init(void)1017 tcp_init(void)
1018 {
1019 int hashsize;
1020
1021 #ifdef TCP_HHOOK
1022 if (hhook_head_register(HHOOK_TYPE_TCP, HHOOK_TCP_EST_IN,
1023 &V_tcp_hhh[HHOOK_TCP_EST_IN], HHOOK_NOWAIT|HHOOK_HEADISINVNET) != 0)
1024 printf("%s: WARNING: unable to register helper hook\n", __func__);
1025 if (hhook_head_register(HHOOK_TYPE_TCP, HHOOK_TCP_EST_OUT,
1026 &V_tcp_hhh[HHOOK_TCP_EST_OUT], HHOOK_NOWAIT|HHOOK_HEADISINVNET) != 0)
1027 printf("%s: WARNING: unable to register helper hook\n", __func__);
1028 #endif
1029 hashsize = tcp_tcbhashsize;
1030 if (hashsize == 0) {
1031 /*
1032 * Auto tune the hash size based on maxsockets.
1033 * A perfect hash would have a 1:1 mapping
1034 * (hashsize = maxsockets) however it's been
1035 * suggested that O(2) average is better.
1036 */
1037 hashsize = maketcp_hashsize(maxsockets / 4);
1038 /*
1039 * Our historical default is 512,
1040 * do not autotune lower than this.
1041 */
1042 if (hashsize < 512)
1043 hashsize = 512;
1044 if (bootverbose && IS_DEFAULT_VNET(curvnet))
1045 printf("%s: %s auto tuned to %d\n", __func__,
1046 "net.inet.tcp.tcbhashsize", hashsize);
1047 }
1048 /*
1049 * We require a hashsize to be a power of two.
1050 * Previously if it was not a power of two we would just reset it
1051 * back to 512, which could be a nasty surprise if you did not notice
1052 * the error message.
1053 * Instead what we do is clip it to the closest power of two lower
1054 * than the specified hash value.
1055 */
1056 if (!powerof2(hashsize)) {
1057 int oldhashsize = hashsize;
1058
1059 hashsize = maketcp_hashsize(hashsize);
1060 /* prevent absurdly low value */
1061 if (hashsize < 16)
1062 hashsize = 16;
1063 printf("%s: WARNING: TCB hash size not a power of 2, "
1064 "clipped from %d to %d.\n", __func__, oldhashsize,
1065 hashsize);
1066 }
1067 in_pcbinfo_init(&V_tcbinfo, "tcp", &V_tcb, hashsize, hashsize,
1068 "tcp_inpcb", tcp_inpcb_init, IPI_HASHFIELDS_4TUPLE);
1069
1070 /*
1071 * These have to be type stable for the benefit of the timers.
1072 */
1073 V_tcpcb_zone = uma_zcreate("tcpcb", sizeof(struct tcpcb_mem),
1074 NULL, NULL, NULL, NULL, UMA_ALIGN_PTR, 0);
1075 uma_zone_set_max(V_tcpcb_zone, maxsockets);
1076 uma_zone_set_warning(V_tcpcb_zone, "kern.ipc.maxsockets limit reached");
1077
1078 tcp_tw_init();
1079 syncache_init();
1080 tcp_hc_init();
1081
1082 TUNABLE_INT_FETCH("net.inet.tcp.sack.enable", &V_tcp_do_sack);
1083 V_sack_hole_zone = uma_zcreate("sackhole", sizeof(struct sackhole),
1084 NULL, NULL, NULL, NULL, UMA_ALIGN_PTR, 0);
1085
1086 tcp_fastopen_init();
1087
1088 /* Skip initialization of globals for non-default instances. */
1089 if (!IS_DEFAULT_VNET(curvnet))
1090 return;
1091
1092 tcp_reass_global_init();
1093
1094 /* XXX virtualize those bellow? */
1095 tcp_delacktime = TCPTV_DELACK;
1096 tcp_keepinit = TCPTV_KEEP_INIT;
1097 tcp_keepidle = TCPTV_KEEP_IDLE;
1098 tcp_keepintvl = TCPTV_KEEPINTVL;
1099 tcp_maxpersistidle = TCPTV_KEEP_IDLE;
1100 tcp_msl = TCPTV_MSL;
1101 tcp_rexmit_initial = TCPTV_RTOBASE;
1102 if (tcp_rexmit_initial < 1)
1103 tcp_rexmit_initial = 1;
1104 tcp_rexmit_min = TCPTV_MIN;
1105 if (tcp_rexmit_min < 1)
1106 tcp_rexmit_min = 1;
1107 tcp_persmin = TCPTV_PERSMIN;
1108 tcp_persmax = TCPTV_PERSMAX;
1109 tcp_rexmit_slop = TCPTV_CPU_VAR;
1110 tcp_finwait2_timeout = TCPTV_FINWAIT2_TIMEOUT;
1111 tcp_tcbhashsize = hashsize;
1112 /* Setup the tcp function block list */
1113 init_tcp_functions();
1114 register_tcp_functions(&tcp_def_funcblk, M_WAITOK);
1115 #ifdef TCP_BLACKBOX
1116 /* Initialize the TCP logging data. */
1117 tcp_log_init();
1118 #endif
1119 arc4rand(&V_ts_offset_secret, sizeof(V_ts_offset_secret), 0);
1120
1121 if (tcp_soreceive_stream) {
1122 #ifdef INET
1123 tcp_usrreqs.pru_soreceive = soreceive_stream;
1124 #endif
1125 #ifdef INET6
1126 tcp6_usrreqs.pru_soreceive = soreceive_stream;
1127 #endif /* INET6 */
1128 }
1129
1130 #ifdef INET6
1131 #define TCP_MINPROTOHDR (sizeof(struct ip6_hdr) + sizeof(struct tcphdr))
1132 #else /* INET6 */
1133 #define TCP_MINPROTOHDR (sizeof(struct tcpiphdr))
1134 #endif /* INET6 */
1135 if (max_protohdr < TCP_MINPROTOHDR)
1136 max_protohdr = TCP_MINPROTOHDR;
1137 if (max_linkhdr + TCP_MINPROTOHDR > MHLEN)
1138 panic("tcp_init");
1139 #undef TCP_MINPROTOHDR
1140
1141 ISN_LOCK_INIT();
1142 EVENTHANDLER_REGISTER(shutdown_pre_sync, tcp_fini, NULL,
1143 SHUTDOWN_PRI_DEFAULT);
1144 EVENTHANDLER_REGISTER(maxsockets_change, tcp_zone_change, NULL,
1145 EVENTHANDLER_PRI_ANY);
1146 #ifdef TCPPCAP
1147 tcp_pcap_init();
1148 #endif
1149 }
1150
1151 #ifdef VIMAGE
1152 static void
tcp_destroy(void * unused __unused)1153 tcp_destroy(void *unused __unused)
1154 {
1155 int n;
1156 #ifdef TCP_HHOOK
1157 int error;
1158 #endif
1159
1160 /*
1161 * All our processes are gone, all our sockets should be cleaned
1162 * up, which means, we should be past the tcp_discardcb() calls.
1163 * Sleep to let all tcpcb timers really disappear and cleanup.
1164 */
1165 for (;;) {
1166 INP_LIST_RLOCK(&V_tcbinfo);
1167 n = V_tcbinfo.ipi_count;
1168 INP_LIST_RUNLOCK(&V_tcbinfo);
1169 if (n == 0)
1170 break;
1171 pause("tcpdes", hz / 10);
1172 }
1173 tcp_hc_destroy();
1174 syncache_destroy();
1175 tcp_tw_destroy();
1176 in_pcbinfo_destroy(&V_tcbinfo);
1177 /* tcp_discardcb() clears the sack_holes up. */
1178 uma_zdestroy(V_sack_hole_zone);
1179 uma_zdestroy(V_tcpcb_zone);
1180
1181 /*
1182 * Cannot free the zone until all tcpcbs are released as we attach
1183 * the allocations to them.
1184 */
1185 tcp_fastopen_destroy();
1186
1187 #ifdef TCP_HHOOK
1188 error = hhook_head_deregister(V_tcp_hhh[HHOOK_TCP_EST_IN]);
1189 if (error != 0) {
1190 printf("%s: WARNING: unable to deregister helper hook "
1191 "type=%d, id=%d: error %d returned\n", __func__,
1192 HHOOK_TYPE_TCP, HHOOK_TCP_EST_IN, error);
1193 }
1194 error = hhook_head_deregister(V_tcp_hhh[HHOOK_TCP_EST_OUT]);
1195 if (error != 0) {
1196 printf("%s: WARNING: unable to deregister helper hook "
1197 "type=%d, id=%d: error %d returned\n", __func__,
1198 HHOOK_TYPE_TCP, HHOOK_TCP_EST_OUT, error);
1199 }
1200 #endif
1201 }
1202 VNET_SYSUNINIT(tcp, SI_SUB_PROTO_DOMAIN, SI_ORDER_FOURTH, tcp_destroy, NULL);
1203 #endif
1204
1205 void
tcp_fini(void * xtp)1206 tcp_fini(void *xtp)
1207 {
1208
1209 }
1210
1211 /*
1212 * Fill in the IP and TCP headers for an outgoing packet, given the tcpcb.
1213 * tcp_template used to store this data in mbufs, but we now recopy it out
1214 * of the tcpcb each time to conserve mbufs.
1215 */
1216 void
tcpip_fillheaders(struct inpcb * inp,void * ip_ptr,void * tcp_ptr)1217 tcpip_fillheaders(struct inpcb *inp, void *ip_ptr, void *tcp_ptr)
1218 {
1219 struct tcphdr *th = (struct tcphdr *)tcp_ptr;
1220
1221 INP_WLOCK_ASSERT(inp);
1222
1223 #ifdef INET6
1224 if ((inp->inp_vflag & INP_IPV6) != 0) {
1225 struct ip6_hdr *ip6;
1226
1227 ip6 = (struct ip6_hdr *)ip_ptr;
1228 ip6->ip6_flow = (ip6->ip6_flow & ~IPV6_FLOWINFO_MASK) |
1229 (inp->inp_flow & IPV6_FLOWINFO_MASK);
1230 ip6->ip6_vfc = (ip6->ip6_vfc & ~IPV6_VERSION_MASK) |
1231 (IPV6_VERSION & IPV6_VERSION_MASK);
1232 ip6->ip6_nxt = IPPROTO_TCP;
1233 ip6->ip6_plen = htons(sizeof(struct tcphdr));
1234 ip6->ip6_src = inp->in6p_laddr;
1235 ip6->ip6_dst = inp->in6p_faddr;
1236 }
1237 #endif /* INET6 */
1238 #if defined(INET6) && defined(INET)
1239 else
1240 #endif
1241 #ifdef INET
1242 {
1243 struct ip *ip;
1244
1245 ip = (struct ip *)ip_ptr;
1246 ip->ip_v = IPVERSION;
1247 ip->ip_hl = 5;
1248 ip->ip_tos = inp->inp_ip_tos;
1249 ip->ip_len = 0;
1250 ip->ip_id = 0;
1251 ip->ip_off = 0;
1252 ip->ip_ttl = inp->inp_ip_ttl;
1253 ip->ip_sum = 0;
1254 ip->ip_p = IPPROTO_TCP;
1255 ip->ip_src = inp->inp_laddr;
1256 ip->ip_dst = inp->inp_faddr;
1257 }
1258 #endif /* INET */
1259 th->th_sport = inp->inp_lport;
1260 th->th_dport = inp->inp_fport;
1261 th->th_seq = 0;
1262 th->th_ack = 0;
1263 th->th_x2 = 0;
1264 th->th_off = 5;
1265 th->th_flags = 0;
1266 th->th_win = 0;
1267 th->th_urp = 0;
1268 th->th_sum = 0; /* in_pseudo() is called later for ipv4 */
1269 }
1270
1271 /*
1272 * Create template to be used to send tcp packets on a connection.
1273 * Allocates an mbuf and fills in a skeletal tcp/ip header. The only
1274 * use for this function is in keepalives, which use tcp_respond.
1275 */
1276 struct tcptemp *
tcpip_maketemplate(struct inpcb * inp)1277 tcpip_maketemplate(struct inpcb *inp)
1278 {
1279 struct tcptemp *t;
1280
1281 t = malloc(sizeof(*t), M_TEMP, M_NOWAIT);
1282 if (t == NULL)
1283 return (NULL);
1284 tcpip_fillheaders(inp, (void *)&t->tt_ipgen, (void *)&t->tt_t);
1285 return (t);
1286 }
1287
1288 /*
1289 * Send a single message to the TCP at address specified by
1290 * the given TCP/IP header. If m == NULL, then we make a copy
1291 * of the tcpiphdr at th and send directly to the addressed host.
1292 * This is used to force keep alive messages out using the TCP
1293 * template for a connection. If flags are given then we send
1294 * a message back to the TCP which originated the segment th,
1295 * and discard the mbuf containing it and any other attached mbufs.
1296 *
1297 * In any case the ack and sequence number of the transmitted
1298 * segment are as specified by the parameters.
1299 *
1300 * NOTE: If m != NULL, then th must point to *inside* the mbuf.
1301 */
1302 void
tcp_respond(struct tcpcb * tp,void * ipgen,struct tcphdr * th,struct mbuf * m,tcp_seq ack,tcp_seq seq,int flags)1303 tcp_respond(struct tcpcb *tp, void *ipgen, struct tcphdr *th, struct mbuf *m,
1304 tcp_seq ack, tcp_seq seq, int flags)
1305 {
1306 struct tcpopt to;
1307 struct inpcb *inp;
1308 struct ip *ip;
1309 struct mbuf *optm;
1310 struct tcphdr *nth;
1311 u_char *optp;
1312 #ifdef INET6
1313 struct ip6_hdr *ip6;
1314 int isipv6;
1315 #endif /* INET6 */
1316 int optlen, tlen, win;
1317 bool incl_opts;
1318
1319 KASSERT(tp != NULL || m != NULL, ("tcp_respond: tp and m both NULL"));
1320
1321 #ifdef INET6
1322 isipv6 = ((struct ip *)ipgen)->ip_v == (IPV6_VERSION >> 4);
1323 ip6 = ipgen;
1324 #endif /* INET6 */
1325 ip = ipgen;
1326
1327 if (tp != NULL) {
1328 inp = tp->t_inpcb;
1329 KASSERT(inp != NULL, ("tcp control block w/o inpcb"));
1330 INP_WLOCK_ASSERT(inp);
1331 } else
1332 inp = NULL;
1333
1334 incl_opts = false;
1335 win = 0;
1336 if (tp != NULL) {
1337 if (!(flags & TH_RST)) {
1338 win = sbspace(&inp->inp_socket->so_rcv);
1339 if (win > TCP_MAXWIN << tp->rcv_scale)
1340 win = TCP_MAXWIN << tp->rcv_scale;
1341 }
1342 if ((tp->t_flags & TF_NOOPT) == 0)
1343 incl_opts = true;
1344 }
1345 if (m == NULL) {
1346 m = m_gethdr(M_NOWAIT, MT_DATA);
1347 if (m == NULL)
1348 return;
1349 m->m_data += max_linkhdr;
1350 #ifdef INET6
1351 if (isipv6) {
1352 bcopy((caddr_t)ip6, mtod(m, caddr_t),
1353 sizeof(struct ip6_hdr));
1354 ip6 = mtod(m, struct ip6_hdr *);
1355 nth = (struct tcphdr *)(ip6 + 1);
1356 } else
1357 #endif /* INET6 */
1358 {
1359 bcopy((caddr_t)ip, mtod(m, caddr_t), sizeof(struct ip));
1360 ip = mtod(m, struct ip *);
1361 nth = (struct tcphdr *)(ip + 1);
1362 }
1363 bcopy((caddr_t)th, (caddr_t)nth, sizeof(struct tcphdr));
1364 flags = TH_ACK;
1365 } else if (!M_WRITABLE(m)) {
1366 struct mbuf *n;
1367
1368 /* Can't reuse 'm', allocate a new mbuf. */
1369 n = m_gethdr(M_NOWAIT, MT_DATA);
1370 if (n == NULL) {
1371 m_freem(m);
1372 return;
1373 }
1374
1375 if (!m_dup_pkthdr(n, m, M_NOWAIT)) {
1376 m_freem(m);
1377 m_freem(n);
1378 return;
1379 }
1380
1381 n->m_data += max_linkhdr;
1382 /* m_len is set later */
1383 #define xchg(a,b,type) { type t; t=a; a=b; b=t; }
1384 #ifdef INET6
1385 if (isipv6) {
1386 bcopy((caddr_t)ip6, mtod(n, caddr_t),
1387 sizeof(struct ip6_hdr));
1388 ip6 = mtod(n, struct ip6_hdr *);
1389 xchg(ip6->ip6_dst, ip6->ip6_src, struct in6_addr);
1390 nth = (struct tcphdr *)(ip6 + 1);
1391 } else
1392 #endif /* INET6 */
1393 {
1394 bcopy((caddr_t)ip, mtod(n, caddr_t), sizeof(struct ip));
1395 ip = mtod(n, struct ip *);
1396 xchg(ip->ip_dst.s_addr, ip->ip_src.s_addr, uint32_t);
1397 nth = (struct tcphdr *)(ip + 1);
1398 }
1399 bcopy((caddr_t)th, (caddr_t)nth, sizeof(struct tcphdr));
1400 xchg(nth->th_dport, nth->th_sport, uint16_t);
1401 th = nth;
1402 m_freem(m);
1403 m = n;
1404 } else {
1405 /*
1406 * reuse the mbuf.
1407 * XXX MRT We inherit the FIB, which is lucky.
1408 */
1409 m_freem(m->m_next);
1410 m->m_next = NULL;
1411 m->m_data = (caddr_t)ipgen;
1412 /* m_len is set later */
1413 #ifdef INET6
1414 if (isipv6) {
1415 xchg(ip6->ip6_dst, ip6->ip6_src, struct in6_addr);
1416 nth = (struct tcphdr *)(ip6 + 1);
1417 } else
1418 #endif /* INET6 */
1419 {
1420 xchg(ip->ip_dst.s_addr, ip->ip_src.s_addr, uint32_t);
1421 nth = (struct tcphdr *)(ip + 1);
1422 }
1423 if (th != nth) {
1424 /*
1425 * this is usually a case when an extension header
1426 * exists between the IPv6 header and the
1427 * TCP header.
1428 */
1429 nth->th_sport = th->th_sport;
1430 nth->th_dport = th->th_dport;
1431 }
1432 xchg(nth->th_dport, nth->th_sport, uint16_t);
1433 #undef xchg
1434 }
1435 tlen = 0;
1436 #ifdef INET6
1437 if (isipv6)
1438 tlen = sizeof (struct ip6_hdr) + sizeof (struct tcphdr);
1439 #endif
1440 #if defined(INET) && defined(INET6)
1441 else
1442 #endif
1443 #ifdef INET
1444 tlen = sizeof (struct tcpiphdr);
1445 #endif
1446 #ifdef INVARIANTS
1447 m->m_len = 0;
1448 KASSERT(M_TRAILINGSPACE(m) >= tlen,
1449 ("Not enough trailing space for message (m=%p, need=%d, have=%ld)",
1450 m, tlen, (long)M_TRAILINGSPACE(m)));
1451 #endif
1452 m->m_len = tlen;
1453 to.to_flags = 0;
1454 if (incl_opts) {
1455 /* Make sure we have room. */
1456 if (M_TRAILINGSPACE(m) < TCP_MAXOLEN) {
1457 m->m_next = m_get(M_NOWAIT, MT_DATA);
1458 if (m->m_next) {
1459 optp = mtod(m->m_next, u_char *);
1460 optm = m->m_next;
1461 } else
1462 incl_opts = false;
1463 } else {
1464 optp = (u_char *) (nth + 1);
1465 optm = m;
1466 }
1467 }
1468 if (incl_opts) {
1469 /* Timestamps. */
1470 if (tp->t_flags & TF_RCVD_TSTMP) {
1471 to.to_tsval = tcp_ts_getticks() + tp->ts_offset;
1472 to.to_tsecr = tp->ts_recent;
1473 to.to_flags |= TOF_TS;
1474 }
1475 #if defined(IPSEC_SUPPORT) || defined(TCP_SIGNATURE)
1476 /* TCP-MD5 (RFC2385). */
1477 if (tp->t_flags & TF_SIGNATURE)
1478 to.to_flags |= TOF_SIGNATURE;
1479 #endif
1480 /* Add the options. */
1481 tlen += optlen = tcp_addoptions(&to, optp);
1482
1483 /* Update m_len in the correct mbuf. */
1484 optm->m_len += optlen;
1485 } else
1486 optlen = 0;
1487 #ifdef INET6
1488 if (isipv6) {
1489 ip6->ip6_flow = 0;
1490 ip6->ip6_vfc = IPV6_VERSION;
1491 ip6->ip6_nxt = IPPROTO_TCP;
1492 ip6->ip6_plen = htons(tlen - sizeof(*ip6));
1493 }
1494 #endif
1495 #if defined(INET) && defined(INET6)
1496 else
1497 #endif
1498 #ifdef INET
1499 {
1500 ip->ip_len = htons(tlen);
1501 ip->ip_ttl = V_ip_defttl;
1502 if (V_path_mtu_discovery)
1503 ip->ip_off |= htons(IP_DF);
1504 }
1505 #endif
1506 m->m_pkthdr.len = tlen;
1507 m->m_pkthdr.rcvif = NULL;
1508 #ifdef MAC
1509 if (inp != NULL) {
1510 /*
1511 * Packet is associated with a socket, so allow the
1512 * label of the response to reflect the socket label.
1513 */
1514 INP_WLOCK_ASSERT(inp);
1515 mac_inpcb_create_mbuf(inp, m);
1516 } else {
1517 /*
1518 * Packet is not associated with a socket, so possibly
1519 * update the label in place.
1520 */
1521 mac_netinet_tcp_reply(m);
1522 }
1523 #endif
1524 nth->th_seq = htonl(seq);
1525 nth->th_ack = htonl(ack);
1526 nth->th_x2 = 0;
1527 nth->th_off = (sizeof (struct tcphdr) + optlen) >> 2;
1528 nth->th_flags = flags;
1529 if (tp != NULL)
1530 nth->th_win = htons((u_short) (win >> tp->rcv_scale));
1531 else
1532 nth->th_win = htons((u_short)win);
1533 nth->th_urp = 0;
1534
1535 #if defined(IPSEC_SUPPORT) || defined(TCP_SIGNATURE)
1536 if (to.to_flags & TOF_SIGNATURE) {
1537 if (!TCPMD5_ENABLED() ||
1538 TCPMD5_OUTPUT(m, nth, to.to_signature) != 0) {
1539 m_freem(m);
1540 return;
1541 }
1542 }
1543 #endif
1544
1545 m->m_pkthdr.csum_data = offsetof(struct tcphdr, th_sum);
1546 #ifdef INET6
1547 if (isipv6) {
1548 m->m_pkthdr.csum_flags = CSUM_TCP_IPV6;
1549 nth->th_sum = in6_cksum_pseudo(ip6,
1550 tlen - sizeof(struct ip6_hdr), IPPROTO_TCP, 0);
1551 ip6->ip6_hlim = in6_selecthlim(tp != NULL ? tp->t_inpcb :
1552 NULL, NULL);
1553 }
1554 #endif /* INET6 */
1555 #if defined(INET6) && defined(INET)
1556 else
1557 #endif
1558 #ifdef INET
1559 {
1560 m->m_pkthdr.csum_flags = CSUM_TCP;
1561 nth->th_sum = in_pseudo(ip->ip_src.s_addr, ip->ip_dst.s_addr,
1562 htons((u_short)(tlen - sizeof(struct ip) + ip->ip_p)));
1563 }
1564 #endif /* INET */
1565 #ifdef TCPDEBUG
1566 if (tp == NULL || (inp->inp_socket->so_options & SO_DEBUG))
1567 tcp_trace(TA_OUTPUT, 0, tp, mtod(m, void *), th, 0);
1568 #endif
1569 TCP_PROBE3(debug__output, tp, th, m);
1570 if (flags & TH_RST)
1571 TCP_PROBE5(accept__refused, NULL, NULL, m, tp, nth);
1572
1573 #ifdef INET6
1574 if (isipv6) {
1575 TCP_PROBE5(send, NULL, tp, ip6, tp, nth);
1576 (void)ip6_output(m, NULL, NULL, 0, NULL, NULL, inp);
1577 }
1578 #endif /* INET6 */
1579 #if defined(INET) && defined(INET6)
1580 else
1581 #endif
1582 #ifdef INET
1583 {
1584 TCP_PROBE5(send, NULL, tp, ip, tp, nth);
1585 (void)ip_output(m, NULL, NULL, 0, NULL, inp);
1586 }
1587 #endif
1588 }
1589
1590 /*
1591 * Create a new TCP control block, making an
1592 * empty reassembly queue and hooking it to the argument
1593 * protocol control block. The `inp' parameter must have
1594 * come from the zone allocator set up in tcp_init().
1595 */
1596 struct tcpcb *
tcp_newtcpcb(struct inpcb * inp)1597 tcp_newtcpcb(struct inpcb *inp)
1598 {
1599 struct tcpcb_mem *tm;
1600 struct tcpcb *tp;
1601 #ifdef INET6
1602 int isipv6 = (inp->inp_vflag & INP_IPV6) != 0;
1603 #endif /* INET6 */
1604
1605 tm = uma_zalloc(V_tcpcb_zone, M_NOWAIT | M_ZERO);
1606 if (tm == NULL)
1607 return (NULL);
1608 tp = &tm->tcb;
1609
1610 /* Initialise cc_var struct for this tcpcb. */
1611 tp->ccv = &tm->ccv;
1612 tp->ccv->type = IPPROTO_TCP;
1613 tp->ccv->ccvc.tcp = tp;
1614 rw_rlock(&tcp_function_lock);
1615 tp->t_fb = tcp_func_set_ptr;
1616 refcount_acquire(&tp->t_fb->tfb_refcnt);
1617 rw_runlock(&tcp_function_lock);
1618 /*
1619 * Use the current system default CC algorithm.
1620 */
1621 CC_LIST_RLOCK();
1622 KASSERT(!STAILQ_EMPTY(&cc_list), ("cc_list is empty!"));
1623 CC_ALGO(tp) = CC_DEFAULT();
1624 CC_LIST_RUNLOCK();
1625 /*
1626 * The tcpcb will hold a reference on its inpcb until tcp_discardcb()
1627 * is called.
1628 */
1629 in_pcbref(inp); /* Reference for tcpcb */
1630 tp->t_inpcb = inp;
1631
1632 if (CC_ALGO(tp)->cb_init != NULL)
1633 if (CC_ALGO(tp)->cb_init(tp->ccv) > 0) {
1634 if (tp->t_fb->tfb_tcp_fb_fini)
1635 (*tp->t_fb->tfb_tcp_fb_fini)(tp, 1);
1636 refcount_release(&tp->t_fb->tfb_refcnt);
1637 uma_zfree(V_tcpcb_zone, tm);
1638 return (NULL);
1639 }
1640
1641 #ifdef TCP_HHOOK
1642 tp->osd = &tm->osd;
1643 if (khelp_init_osd(HELPER_CLASS_TCP, tp->osd)) {
1644 if (tp->t_fb->tfb_tcp_fb_fini)
1645 (*tp->t_fb->tfb_tcp_fb_fini)(tp, 1);
1646 refcount_release(&tp->t_fb->tfb_refcnt);
1647 uma_zfree(V_tcpcb_zone, tm);
1648 return (NULL);
1649 }
1650 #endif
1651
1652 #ifdef VIMAGE
1653 tp->t_vnet = inp->inp_vnet;
1654 #endif
1655 tp->t_timers = &tm->tt;
1656 TAILQ_INIT(&tp->t_segq);
1657 tp->t_maxseg =
1658 #ifdef INET6
1659 isipv6 ? V_tcp_v6mssdflt :
1660 #endif /* INET6 */
1661 V_tcp_mssdflt;
1662
1663 /* Set up our timeouts. */
1664 callout_init(&tp->t_timers->tt_rexmt, 1);
1665 callout_init(&tp->t_timers->tt_persist, 1);
1666 callout_init(&tp->t_timers->tt_keep, 1);
1667 callout_init(&tp->t_timers->tt_2msl, 1);
1668 callout_init(&tp->t_timers->tt_delack, 1);
1669
1670 if (V_tcp_do_rfc1323)
1671 tp->t_flags = (TF_REQ_SCALE|TF_REQ_TSTMP);
1672 if (V_tcp_do_sack)
1673 tp->t_flags |= TF_SACK_PERMIT;
1674 TAILQ_INIT(&tp->snd_holes);
1675
1676 /*
1677 * Init srtt to TCPTV_SRTTBASE (0), so we can tell that we have no
1678 * rtt estimate. Set rttvar so that srtt + 4 * rttvar gives
1679 * reasonable initial retransmit time.
1680 */
1681 tp->t_srtt = TCPTV_SRTTBASE;
1682 tp->t_rttvar = ((tcp_rexmit_initial - TCPTV_SRTTBASE) << TCP_RTTVAR_SHIFT) / 4;
1683 tp->t_rttmin = tcp_rexmit_min;
1684 tp->t_rxtcur = tcp_rexmit_initial;
1685 tp->snd_cwnd = TCP_MAXWIN << TCP_MAX_WINSHIFT;
1686 tp->snd_ssthresh = TCP_MAXWIN << TCP_MAX_WINSHIFT;
1687 tp->t_rcvtime = ticks;
1688 /*
1689 * IPv4 TTL initialization is necessary for an IPv6 socket as well,
1690 * because the socket may be bound to an IPv6 wildcard address,
1691 * which may match an IPv4-mapped IPv6 address.
1692 */
1693 inp->inp_ip_ttl = V_ip_defttl;
1694 inp->inp_ppcb = tp;
1695 #ifdef TCPPCAP
1696 /*
1697 * Init the TCP PCAP queues.
1698 */
1699 tcp_pcap_tcpcb_init(tp);
1700 #endif
1701 #ifdef TCP_BLACKBOX
1702 /* Initialize the per-TCPCB log data. */
1703 tcp_log_tcpcbinit(tp);
1704 #endif
1705 if (tp->t_fb->tfb_tcp_fb_init) {
1706 (*tp->t_fb->tfb_tcp_fb_init)(tp);
1707 }
1708 return (tp); /* XXX */
1709 }
1710
1711 /*
1712 * Switch the congestion control algorithm back to NewReno for any active
1713 * control blocks using an algorithm which is about to go away.
1714 * This ensures the CC framework can allow the unload to proceed without leaving
1715 * any dangling pointers which would trigger a panic.
1716 * Returning non-zero would inform the CC framework that something went wrong
1717 * and it would be unsafe to allow the unload to proceed. However, there is no
1718 * way for this to occur with this implementation so we always return zero.
1719 */
1720 int
tcp_ccalgounload(struct cc_algo * unload_algo)1721 tcp_ccalgounload(struct cc_algo *unload_algo)
1722 {
1723 struct cc_algo *tmpalgo;
1724 struct inpcb *inp;
1725 struct tcpcb *tp;
1726 VNET_ITERATOR_DECL(vnet_iter);
1727
1728 /*
1729 * Check all active control blocks across all network stacks and change
1730 * any that are using "unload_algo" back to NewReno. If "unload_algo"
1731 * requires cleanup code to be run, call it.
1732 */
1733 VNET_LIST_RLOCK();
1734 VNET_FOREACH(vnet_iter) {
1735 CURVNET_SET(vnet_iter);
1736 INP_INFO_WLOCK(&V_tcbinfo);
1737 /*
1738 * New connections already part way through being initialised
1739 * with the CC algo we're removing will not race with this code
1740 * because the INP_INFO_WLOCK is held during initialisation. We
1741 * therefore don't enter the loop below until the connection
1742 * list has stabilised.
1743 */
1744 CK_LIST_FOREACH(inp, &V_tcb, inp_list) {
1745 INP_WLOCK(inp);
1746 /* Important to skip tcptw structs. */
1747 if (!(inp->inp_flags & INP_TIMEWAIT) &&
1748 (tp = intotcpcb(inp)) != NULL) {
1749 /*
1750 * By holding INP_WLOCK here, we are assured
1751 * that the connection is not currently
1752 * executing inside the CC module's functions
1753 * i.e. it is safe to make the switch back to
1754 * NewReno.
1755 */
1756 if (CC_ALGO(tp) == unload_algo) {
1757 tmpalgo = CC_ALGO(tp);
1758 if (tmpalgo->cb_destroy != NULL)
1759 tmpalgo->cb_destroy(tp->ccv);
1760 CC_DATA(tp) = NULL;
1761 /*
1762 * NewReno may allocate memory on
1763 * demand for certain stateful
1764 * configuration as needed, but is
1765 * coded to never fail on memory
1766 * allocation failure so it is a safe
1767 * fallback.
1768 */
1769 CC_ALGO(tp) = &newreno_cc_algo;
1770 }
1771 }
1772 INP_WUNLOCK(inp);
1773 }
1774 INP_INFO_WUNLOCK(&V_tcbinfo);
1775 CURVNET_RESTORE();
1776 }
1777 VNET_LIST_RUNLOCK();
1778
1779 return (0);
1780 }
1781
1782 /*
1783 * Drop a TCP connection, reporting
1784 * the specified error. If connection is synchronized,
1785 * then send a RST to peer.
1786 */
1787 struct tcpcb *
tcp_drop(struct tcpcb * tp,int errno)1788 tcp_drop(struct tcpcb *tp, int errno)
1789 {
1790 struct socket *so = tp->t_inpcb->inp_socket;
1791
1792 INP_INFO_LOCK_ASSERT(&V_tcbinfo);
1793 INP_WLOCK_ASSERT(tp->t_inpcb);
1794
1795 if (TCPS_HAVERCVDSYN(tp->t_state)) {
1796 tcp_state_change(tp, TCPS_CLOSED);
1797 (void) tp->t_fb->tfb_tcp_output(tp);
1798 TCPSTAT_INC(tcps_drops);
1799 } else
1800 TCPSTAT_INC(tcps_conndrops);
1801 if (errno == ETIMEDOUT && tp->t_softerror)
1802 errno = tp->t_softerror;
1803 so->so_error = errno;
1804 return (tcp_close(tp));
1805 }
1806
1807 void
tcp_discardcb(struct tcpcb * tp)1808 tcp_discardcb(struct tcpcb *tp)
1809 {
1810 struct inpcb *inp = tp->t_inpcb;
1811 struct socket *so = inp->inp_socket;
1812 #ifdef INET6
1813 int isipv6 = (inp->inp_vflag & INP_IPV6) != 0;
1814 #endif /* INET6 */
1815 int released __unused;
1816
1817 INP_WLOCK_ASSERT(inp);
1818
1819 /*
1820 * Make sure that all of our timers are stopped before we delete the
1821 * PCB.
1822 *
1823 * If stopping a timer fails, we schedule a discard function in same
1824 * callout, and the last discard function called will take care of
1825 * deleting the tcpcb.
1826 */
1827 tp->t_timers->tt_draincnt = 0;
1828 tcp_timer_stop(tp, TT_REXMT);
1829 tcp_timer_stop(tp, TT_PERSIST);
1830 tcp_timer_stop(tp, TT_KEEP);
1831 tcp_timer_stop(tp, TT_2MSL);
1832 tcp_timer_stop(tp, TT_DELACK);
1833 if (tp->t_fb->tfb_tcp_timer_stop_all) {
1834 /*
1835 * Call the stop-all function of the methods,
1836 * this function should call the tcp_timer_stop()
1837 * method with each of the function specific timeouts.
1838 * That stop will be called via the tfb_tcp_timer_stop()
1839 * which should use the async drain function of the
1840 * callout system (see tcp_var.h).
1841 */
1842 tp->t_fb->tfb_tcp_timer_stop_all(tp);
1843 }
1844
1845 /*
1846 * If we got enough samples through the srtt filter,
1847 * save the rtt and rttvar in the routing entry.
1848 * 'Enough' is arbitrarily defined as 4 rtt samples.
1849 * 4 samples is enough for the srtt filter to converge
1850 * to within enough % of the correct value; fewer samples
1851 * and we could save a bogus rtt. The danger is not high
1852 * as tcp quickly recovers from everything.
1853 * XXX: Works very well but needs some more statistics!
1854 */
1855 if (tp->t_rttupdated >= 4) {
1856 struct hc_metrics_lite metrics;
1857 uint32_t ssthresh;
1858
1859 bzero(&metrics, sizeof(metrics));
1860 /*
1861 * Update the ssthresh always when the conditions below
1862 * are satisfied. This gives us better new start value
1863 * for the congestion avoidance for new connections.
1864 * ssthresh is only set if packet loss occurred on a session.
1865 *
1866 * XXXRW: 'so' may be NULL here, and/or socket buffer may be
1867 * being torn down. Ideally this code would not use 'so'.
1868 */
1869 ssthresh = tp->snd_ssthresh;
1870 if (ssthresh != 0 && ssthresh < so->so_snd.sb_hiwat / 2) {
1871 /*
1872 * convert the limit from user data bytes to
1873 * packets then to packet data bytes.
1874 */
1875 ssthresh = (ssthresh + tp->t_maxseg / 2) / tp->t_maxseg;
1876 if (ssthresh < 2)
1877 ssthresh = 2;
1878 ssthresh *= (tp->t_maxseg +
1879 #ifdef INET6
1880 (isipv6 ? sizeof (struct ip6_hdr) +
1881 sizeof (struct tcphdr) :
1882 #endif
1883 sizeof (struct tcpiphdr)
1884 #ifdef INET6
1885 )
1886 #endif
1887 );
1888 } else
1889 ssthresh = 0;
1890 metrics.rmx_ssthresh = ssthresh;
1891
1892 metrics.rmx_rtt = tp->t_srtt;
1893 metrics.rmx_rttvar = tp->t_rttvar;
1894 metrics.rmx_cwnd = tp->snd_cwnd;
1895 metrics.rmx_sendpipe = 0;
1896 metrics.rmx_recvpipe = 0;
1897
1898 tcp_hc_update(&inp->inp_inc, &metrics);
1899 }
1900
1901 /* free the reassembly queue, if any */
1902 tcp_reass_flush(tp);
1903
1904 #ifdef TCP_OFFLOAD
1905 /* Disconnect offload device, if any. */
1906 if (tp->t_flags & TF_TOE)
1907 tcp_offload_detach(tp);
1908 #endif
1909
1910 tcp_free_sackholes(tp);
1911
1912 #ifdef TCPPCAP
1913 /* Free the TCP PCAP queues. */
1914 tcp_pcap_drain(&(tp->t_inpkts));
1915 tcp_pcap_drain(&(tp->t_outpkts));
1916 #endif
1917
1918 /* Allow the CC algorithm to clean up after itself. */
1919 if (CC_ALGO(tp)->cb_destroy != NULL)
1920 CC_ALGO(tp)->cb_destroy(tp->ccv);
1921 CC_DATA(tp) = NULL;
1922
1923 #ifdef TCP_HHOOK
1924 khelp_destroy_osd(tp->osd);
1925 #endif
1926
1927 CC_ALGO(tp) = NULL;
1928 inp->inp_ppcb = NULL;
1929 if (tp->t_timers->tt_draincnt == 0) {
1930 /* We own the last reference on tcpcb, let's free it. */
1931 #ifdef TCP_BLACKBOX
1932 tcp_log_tcpcbfini(tp);
1933 #endif
1934 TCPSTATES_DEC(tp->t_state);
1935 if (tp->t_fb->tfb_tcp_fb_fini)
1936 (*tp->t_fb->tfb_tcp_fb_fini)(tp, 1);
1937 refcount_release(&tp->t_fb->tfb_refcnt);
1938 tp->t_inpcb = NULL;
1939 uma_zfree(V_tcpcb_zone, tp);
1940 released = in_pcbrele_wlocked(inp);
1941 KASSERT(!released, ("%s: inp %p should not have been released "
1942 "here", __func__, inp));
1943 }
1944 }
1945
1946 void
tcp_timer_discard(void * ptp)1947 tcp_timer_discard(void *ptp)
1948 {
1949 struct inpcb *inp;
1950 struct tcpcb *tp;
1951 struct epoch_tracker et;
1952
1953 tp = (struct tcpcb *)ptp;
1954 CURVNET_SET(tp->t_vnet);
1955 INP_INFO_RLOCK_ET(&V_tcbinfo, et);
1956 inp = tp->t_inpcb;
1957 KASSERT(inp != NULL, ("%s: tp %p tp->t_inpcb == NULL",
1958 __func__, tp));
1959 INP_WLOCK(inp);
1960 KASSERT((tp->t_timers->tt_flags & TT_STOPPED) != 0,
1961 ("%s: tcpcb has to be stopped here", __func__));
1962 tp->t_timers->tt_draincnt--;
1963 if (tp->t_timers->tt_draincnt == 0) {
1964 /* We own the last reference on this tcpcb, let's free it. */
1965 #ifdef TCP_BLACKBOX
1966 tcp_log_tcpcbfini(tp);
1967 #endif
1968 TCPSTATES_DEC(tp->t_state);
1969 if (tp->t_fb->tfb_tcp_fb_fini)
1970 (*tp->t_fb->tfb_tcp_fb_fini)(tp, 1);
1971 refcount_release(&tp->t_fb->tfb_refcnt);
1972 tp->t_inpcb = NULL;
1973 uma_zfree(V_tcpcb_zone, tp);
1974 if (in_pcbrele_wlocked(inp)) {
1975 INP_INFO_RUNLOCK_ET(&V_tcbinfo, et);
1976 CURVNET_RESTORE();
1977 return;
1978 }
1979 }
1980 INP_WUNLOCK(inp);
1981 INP_INFO_RUNLOCK_ET(&V_tcbinfo, et);
1982 CURVNET_RESTORE();
1983 }
1984
1985 /*
1986 * Attempt to close a TCP control block, marking it as dropped, and freeing
1987 * the socket if we hold the only reference.
1988 */
1989 struct tcpcb *
tcp_close(struct tcpcb * tp)1990 tcp_close(struct tcpcb *tp)
1991 {
1992 struct inpcb *inp = tp->t_inpcb;
1993 struct socket *so;
1994
1995 INP_INFO_LOCK_ASSERT(&V_tcbinfo);
1996 INP_WLOCK_ASSERT(inp);
1997
1998 #ifdef TCP_OFFLOAD
1999 if (tp->t_state == TCPS_LISTEN)
2000 tcp_offload_listen_stop(tp);
2001 #endif
2002 /*
2003 * This releases the TFO pending counter resource for TFO listen
2004 * sockets as well as passively-created TFO sockets that transition
2005 * from SYN_RECEIVED to CLOSED.
2006 */
2007 if (tp->t_tfo_pending) {
2008 tcp_fastopen_decrement_counter(tp->t_tfo_pending);
2009 tp->t_tfo_pending = NULL;
2010 }
2011 in_pcbdrop(inp);
2012 TCPSTAT_INC(tcps_closed);
2013 if (tp->t_state != TCPS_CLOSED)
2014 tcp_state_change(tp, TCPS_CLOSED);
2015 KASSERT(inp->inp_socket != NULL, ("tcp_close: inp_socket NULL"));
2016 so = inp->inp_socket;
2017 soisdisconnected(so);
2018 if (inp->inp_flags & INP_SOCKREF) {
2019 KASSERT(so->so_state & SS_PROTOREF,
2020 ("tcp_close: !SS_PROTOREF"));
2021 inp->inp_flags &= ~INP_SOCKREF;
2022 INP_WUNLOCK(inp);
2023 SOCK_LOCK(so);
2024 so->so_state &= ~SS_PROTOREF;
2025 sofree(so);
2026 return (NULL);
2027 }
2028 return (tp);
2029 }
2030
2031 void
tcp_drain(void)2032 tcp_drain(void)
2033 {
2034 VNET_ITERATOR_DECL(vnet_iter);
2035
2036 if (!do_tcpdrain)
2037 return;
2038
2039 VNET_LIST_RLOCK_NOSLEEP();
2040 VNET_FOREACH(vnet_iter) {
2041 CURVNET_SET(vnet_iter);
2042 struct inpcb *inpb;
2043 struct tcpcb *tcpb;
2044
2045 /*
2046 * Walk the tcpbs, if existing, and flush the reassembly queue,
2047 * if there is one...
2048 * XXX: The "Net/3" implementation doesn't imply that the TCP
2049 * reassembly queue should be flushed, but in a situation
2050 * where we're really low on mbufs, this is potentially
2051 * useful.
2052 */
2053 INP_INFO_WLOCK(&V_tcbinfo);
2054 CK_LIST_FOREACH(inpb, V_tcbinfo.ipi_listhead, inp_list) {
2055 INP_WLOCK(inpb);
2056 if (inpb->inp_flags & INP_TIMEWAIT) {
2057 INP_WUNLOCK(inpb);
2058 continue;
2059 }
2060 if ((tcpb = intotcpcb(inpb)) != NULL) {
2061 tcp_reass_flush(tcpb);
2062 tcp_clean_sackreport(tcpb);
2063 #ifdef TCP_BLACKBOX
2064 tcp_log_drain(tcpb);
2065 #endif
2066 #ifdef TCPPCAP
2067 if (tcp_pcap_aggressive_free) {
2068 /* Free the TCP PCAP queues. */
2069 tcp_pcap_drain(&(tcpb->t_inpkts));
2070 tcp_pcap_drain(&(tcpb->t_outpkts));
2071 }
2072 #endif
2073 }
2074 INP_WUNLOCK(inpb);
2075 }
2076 INP_INFO_WUNLOCK(&V_tcbinfo);
2077 CURVNET_RESTORE();
2078 }
2079 VNET_LIST_RUNLOCK_NOSLEEP();
2080 }
2081
2082 /*
2083 * Notify a tcp user of an asynchronous error;
2084 * store error as soft error, but wake up user
2085 * (for now, won't do anything until can select for soft error).
2086 *
2087 * Do not wake up user since there currently is no mechanism for
2088 * reporting soft errors (yet - a kqueue filter may be added).
2089 */
2090 static struct inpcb *
tcp_notify(struct inpcb * inp,int error)2091 tcp_notify(struct inpcb *inp, int error)
2092 {
2093 struct tcpcb *tp;
2094
2095 INP_INFO_LOCK_ASSERT(&V_tcbinfo);
2096 INP_WLOCK_ASSERT(inp);
2097
2098 if ((inp->inp_flags & INP_TIMEWAIT) ||
2099 (inp->inp_flags & INP_DROPPED))
2100 return (inp);
2101
2102 tp = intotcpcb(inp);
2103 KASSERT(tp != NULL, ("tcp_notify: tp == NULL"));
2104
2105 /*
2106 * Ignore some errors if we are hooked up.
2107 * If connection hasn't completed, has retransmitted several times,
2108 * and receives a second error, give up now. This is better
2109 * than waiting a long time to establish a connection that
2110 * can never complete.
2111 */
2112 if (tp->t_state == TCPS_ESTABLISHED &&
2113 (error == EHOSTUNREACH || error == ENETUNREACH ||
2114 error == EHOSTDOWN)) {
2115 if (inp->inp_route.ro_rt) {
2116 RTFREE(inp->inp_route.ro_rt);
2117 inp->inp_route.ro_rt = (struct rtentry *)NULL;
2118 }
2119 return (inp);
2120 } else if (tp->t_state < TCPS_ESTABLISHED && tp->t_rxtshift > 3 &&
2121 tp->t_softerror) {
2122 tp = tcp_drop(tp, error);
2123 if (tp != NULL)
2124 return (inp);
2125 else
2126 return (NULL);
2127 } else {
2128 tp->t_softerror = error;
2129 return (inp);
2130 }
2131 #if 0
2132 wakeup( &so->so_timeo);
2133 sorwakeup(so);
2134 sowwakeup(so);
2135 #endif
2136 }
2137
2138 static int
tcp_pcblist(SYSCTL_HANDLER_ARGS)2139 tcp_pcblist(SYSCTL_HANDLER_ARGS)
2140 {
2141 int error, i, m, n, pcb_count;
2142 struct inpcb *inp, **inp_list;
2143 inp_gen_t gencnt;
2144 struct xinpgen xig;
2145 struct epoch_tracker et;
2146
2147 /*
2148 * The process of preparing the TCB list is too time-consuming and
2149 * resource-intensive to repeat twice on every request.
2150 */
2151 if (req->oldptr == NULL) {
2152 n = V_tcbinfo.ipi_count +
2153 counter_u64_fetch(V_tcps_states[TCPS_SYN_RECEIVED]);
2154 n += imax(n / 8, 10);
2155 req->oldidx = 2 * (sizeof xig) + n * sizeof(struct xtcpcb);
2156 return (0);
2157 }
2158
2159 if (req->newptr != NULL)
2160 return (EPERM);
2161
2162 /*
2163 * OK, now we're committed to doing something.
2164 */
2165 INP_LIST_RLOCK(&V_tcbinfo);
2166 gencnt = V_tcbinfo.ipi_gencnt;
2167 n = V_tcbinfo.ipi_count;
2168 INP_LIST_RUNLOCK(&V_tcbinfo);
2169
2170 m = counter_u64_fetch(V_tcps_states[TCPS_SYN_RECEIVED]);
2171
2172 error = sysctl_wire_old_buffer(req, 2 * (sizeof xig)
2173 + (n + m) * sizeof(struct xtcpcb));
2174 if (error != 0)
2175 return (error);
2176
2177 bzero(&xig, sizeof(xig));
2178 xig.xig_len = sizeof xig;
2179 xig.xig_count = n + m;
2180 xig.xig_gen = gencnt;
2181 xig.xig_sogen = so_gencnt;
2182 error = SYSCTL_OUT(req, &xig, sizeof xig);
2183 if (error)
2184 return (error);
2185
2186 error = syncache_pcblist(req, m, &pcb_count);
2187 if (error)
2188 return (error);
2189
2190 inp_list = malloc(n * sizeof *inp_list, M_TEMP, M_WAITOK);
2191
2192 INP_INFO_WLOCK(&V_tcbinfo);
2193 for (inp = CK_LIST_FIRST(V_tcbinfo.ipi_listhead), i = 0;
2194 inp != NULL && i < n; inp = CK_LIST_NEXT(inp, inp_list)) {
2195 INP_WLOCK(inp);
2196 if (inp->inp_gencnt <= gencnt) {
2197 /*
2198 * XXX: This use of cr_cansee(), introduced with
2199 * TCP state changes, is not quite right, but for
2200 * now, better than nothing.
2201 */
2202 if (inp->inp_flags & INP_TIMEWAIT) {
2203 if (intotw(inp) != NULL)
2204 error = cr_cansee(req->td->td_ucred,
2205 intotw(inp)->tw_cred);
2206 else
2207 error = EINVAL; /* Skip this inp. */
2208 } else
2209 error = cr_canseeinpcb(req->td->td_ucred, inp);
2210 if (error == 0) {
2211 in_pcbref(inp);
2212 inp_list[i++] = inp;
2213 }
2214 }
2215 INP_WUNLOCK(inp);
2216 }
2217 INP_INFO_WUNLOCK(&V_tcbinfo);
2218 n = i;
2219
2220 error = 0;
2221 for (i = 0; i < n; i++) {
2222 inp = inp_list[i];
2223 INP_RLOCK(inp);
2224 if (inp->inp_gencnt <= gencnt) {
2225 struct xtcpcb xt;
2226
2227 tcp_inptoxtp(inp, &xt);
2228 INP_RUNLOCK(inp);
2229 error = SYSCTL_OUT(req, &xt, sizeof xt);
2230 } else
2231 INP_RUNLOCK(inp);
2232 }
2233 INP_INFO_RLOCK_ET(&V_tcbinfo, et);
2234 for (i = 0; i < n; i++) {
2235 inp = inp_list[i];
2236 INP_RLOCK(inp);
2237 if (!in_pcbrele_rlocked(inp))
2238 INP_RUNLOCK(inp);
2239 }
2240 INP_INFO_RUNLOCK_ET(&V_tcbinfo, et);
2241
2242 if (!error) {
2243 /*
2244 * Give the user an updated idea of our state.
2245 * If the generation differs from what we told
2246 * her before, she knows that something happened
2247 * while we were processing this request, and it
2248 * might be necessary to retry.
2249 */
2250 INP_LIST_RLOCK(&V_tcbinfo);
2251 xig.xig_gen = V_tcbinfo.ipi_gencnt;
2252 xig.xig_sogen = so_gencnt;
2253 xig.xig_count = V_tcbinfo.ipi_count + pcb_count;
2254 INP_LIST_RUNLOCK(&V_tcbinfo);
2255 error = SYSCTL_OUT(req, &xig, sizeof xig);
2256 }
2257 free(inp_list, M_TEMP);
2258 return (error);
2259 }
2260
2261 SYSCTL_PROC(_net_inet_tcp, TCPCTL_PCBLIST, pcblist,
2262 CTLTYPE_OPAQUE | CTLFLAG_RD, NULL, 0,
2263 tcp_pcblist, "S,xtcpcb", "List of active TCP connections");
2264
2265 #ifdef INET
2266 static int
tcp_getcred(SYSCTL_HANDLER_ARGS)2267 tcp_getcred(SYSCTL_HANDLER_ARGS)
2268 {
2269 struct xucred xuc;
2270 struct sockaddr_in addrs[2];
2271 struct inpcb *inp;
2272 int error;
2273
2274 error = priv_check(req->td, PRIV_NETINET_GETCRED);
2275 if (error)
2276 return (error);
2277 error = SYSCTL_IN(req, addrs, sizeof(addrs));
2278 if (error)
2279 return (error);
2280 inp = in_pcblookup(&V_tcbinfo, addrs[1].sin_addr, addrs[1].sin_port,
2281 addrs[0].sin_addr, addrs[0].sin_port, INPLOOKUP_RLOCKPCB, NULL);
2282 if (inp != NULL) {
2283 if (inp->inp_socket == NULL)
2284 error = ENOENT;
2285 if (error == 0)
2286 error = cr_canseeinpcb(req->td->td_ucred, inp);
2287 if (error == 0)
2288 cru2x(inp->inp_cred, &xuc);
2289 INP_RUNLOCK(inp);
2290 } else
2291 error = ENOENT;
2292 if (error == 0)
2293 error = SYSCTL_OUT(req, &xuc, sizeof(struct xucred));
2294 return (error);
2295 }
2296
2297 SYSCTL_PROC(_net_inet_tcp, OID_AUTO, getcred,
2298 CTLTYPE_OPAQUE|CTLFLAG_RW|CTLFLAG_PRISON, 0, 0,
2299 tcp_getcred, "S,xucred", "Get the xucred of a TCP connection");
2300 #endif /* INET */
2301
2302 #ifdef INET6
2303 static int
tcp6_getcred(SYSCTL_HANDLER_ARGS)2304 tcp6_getcred(SYSCTL_HANDLER_ARGS)
2305 {
2306 struct xucred xuc;
2307 struct sockaddr_in6 addrs[2];
2308 struct inpcb *inp;
2309 int error;
2310 #ifdef INET
2311 int mapped = 0;
2312 #endif
2313
2314 error = priv_check(req->td, PRIV_NETINET_GETCRED);
2315 if (error)
2316 return (error);
2317 error = SYSCTL_IN(req, addrs, sizeof(addrs));
2318 if (error)
2319 return (error);
2320 if ((error = sa6_embedscope(&addrs[0], V_ip6_use_defzone)) != 0 ||
2321 (error = sa6_embedscope(&addrs[1], V_ip6_use_defzone)) != 0) {
2322 return (error);
2323 }
2324 if (IN6_IS_ADDR_V4MAPPED(&addrs[0].sin6_addr)) {
2325 #ifdef INET
2326 if (IN6_IS_ADDR_V4MAPPED(&addrs[1].sin6_addr))
2327 mapped = 1;
2328 else
2329 #endif
2330 return (EINVAL);
2331 }
2332
2333 #ifdef INET
2334 if (mapped == 1)
2335 inp = in_pcblookup(&V_tcbinfo,
2336 *(struct in_addr *)&addrs[1].sin6_addr.s6_addr[12],
2337 addrs[1].sin6_port,
2338 *(struct in_addr *)&addrs[0].sin6_addr.s6_addr[12],
2339 addrs[0].sin6_port, INPLOOKUP_RLOCKPCB, NULL);
2340 else
2341 #endif
2342 inp = in6_pcblookup(&V_tcbinfo,
2343 &addrs[1].sin6_addr, addrs[1].sin6_port,
2344 &addrs[0].sin6_addr, addrs[0].sin6_port,
2345 INPLOOKUP_RLOCKPCB, NULL);
2346 if (inp != NULL) {
2347 if (inp->inp_socket == NULL)
2348 error = ENOENT;
2349 if (error == 0)
2350 error = cr_canseeinpcb(req->td->td_ucred, inp);
2351 if (error == 0)
2352 cru2x(inp->inp_cred, &xuc);
2353 INP_RUNLOCK(inp);
2354 } else
2355 error = ENOENT;
2356 if (error == 0)
2357 error = SYSCTL_OUT(req, &xuc, sizeof(struct xucred));
2358 return (error);
2359 }
2360
2361 SYSCTL_PROC(_net_inet6_tcp6, OID_AUTO, getcred,
2362 CTLTYPE_OPAQUE|CTLFLAG_RW|CTLFLAG_PRISON, 0, 0,
2363 tcp6_getcred, "S,xucred", "Get the xucred of a TCP6 connection");
2364 #endif /* INET6 */
2365
2366
2367 #ifdef INET
2368 void
tcp_ctlinput(int cmd,struct sockaddr * sa,void * vip)2369 tcp_ctlinput(int cmd, struct sockaddr *sa, void *vip)
2370 {
2371 struct ip *ip = vip;
2372 struct tcphdr *th;
2373 struct in_addr faddr;
2374 struct inpcb *inp;
2375 struct tcpcb *tp;
2376 struct inpcb *(*notify)(struct inpcb *, int) = tcp_notify;
2377 struct icmp *icp;
2378 struct in_conninfo inc;
2379 struct epoch_tracker et;
2380 tcp_seq icmp_tcp_seq;
2381 int mtu;
2382
2383 faddr = ((struct sockaddr_in *)sa)->sin_addr;
2384 if (sa->sa_family != AF_INET || faddr.s_addr == INADDR_ANY)
2385 return;
2386
2387 if (cmd == PRC_MSGSIZE)
2388 notify = tcp_mtudisc_notify;
2389 else if (V_icmp_may_rst && (cmd == PRC_UNREACH_ADMIN_PROHIB ||
2390 cmd == PRC_UNREACH_PORT || cmd == PRC_UNREACH_PROTOCOL ||
2391 cmd == PRC_TIMXCEED_INTRANS) && ip)
2392 notify = tcp_drop_syn_sent;
2393
2394 /*
2395 * Hostdead is ugly because it goes linearly through all PCBs.
2396 * XXX: We never get this from ICMP, otherwise it makes an
2397 * excellent DoS attack on machines with many connections.
2398 */
2399 else if (cmd == PRC_HOSTDEAD)
2400 ip = NULL;
2401 else if ((unsigned)cmd >= PRC_NCMDS || inetctlerrmap[cmd] == 0)
2402 return;
2403
2404 if (ip == NULL) {
2405 in_pcbnotifyall(&V_tcbinfo, faddr, inetctlerrmap[cmd], notify);
2406 return;
2407 }
2408
2409 icp = (struct icmp *)((caddr_t)ip - offsetof(struct icmp, icmp_ip));
2410 th = (struct tcphdr *)((caddr_t)ip + (ip->ip_hl << 2));
2411 INP_INFO_RLOCK_ET(&V_tcbinfo, et);
2412 inp = in_pcblookup(&V_tcbinfo, faddr, th->th_dport, ip->ip_src,
2413 th->th_sport, INPLOOKUP_WLOCKPCB, NULL);
2414 if (inp != NULL && PRC_IS_REDIRECT(cmd)) {
2415 /* signal EHOSTDOWN, as it flushes the cached route */
2416 inp = (*notify)(inp, EHOSTDOWN);
2417 goto out;
2418 }
2419 icmp_tcp_seq = th->th_seq;
2420 if (inp != NULL) {
2421 if (!(inp->inp_flags & INP_TIMEWAIT) &&
2422 !(inp->inp_flags & INP_DROPPED) &&
2423 !(inp->inp_socket == NULL)) {
2424 tp = intotcpcb(inp);
2425 if (SEQ_GEQ(ntohl(icmp_tcp_seq), tp->snd_una) &&
2426 SEQ_LT(ntohl(icmp_tcp_seq), tp->snd_max)) {
2427 if (cmd == PRC_MSGSIZE) {
2428 /*
2429 * MTU discovery:
2430 * If we got a needfrag set the MTU
2431 * in the route to the suggested new
2432 * value (if given) and then notify.
2433 */
2434 mtu = ntohs(icp->icmp_nextmtu);
2435 /*
2436 * If no alternative MTU was
2437 * proposed, try the next smaller
2438 * one.
2439 */
2440 if (!mtu)
2441 mtu = ip_next_mtu(
2442 ntohs(ip->ip_len), 1);
2443 if (mtu < V_tcp_minmss +
2444 sizeof(struct tcpiphdr))
2445 mtu = V_tcp_minmss +
2446 sizeof(struct tcpiphdr);
2447 /*
2448 * Only process the offered MTU if it
2449 * is smaller than the current one.
2450 */
2451 if (mtu < tp->t_maxseg +
2452 sizeof(struct tcpiphdr)) {
2453 bzero(&inc, sizeof(inc));
2454 inc.inc_faddr = faddr;
2455 inc.inc_fibnum =
2456 inp->inp_inc.inc_fibnum;
2457 tcp_hc_updatemtu(&inc, mtu);
2458 tcp_mtudisc(inp, mtu);
2459 }
2460 } else
2461 inp = (*notify)(inp,
2462 inetctlerrmap[cmd]);
2463 }
2464 }
2465 } else {
2466 bzero(&inc, sizeof(inc));
2467 inc.inc_fport = th->th_dport;
2468 inc.inc_lport = th->th_sport;
2469 inc.inc_faddr = faddr;
2470 inc.inc_laddr = ip->ip_src;
2471 syncache_unreach(&inc, icmp_tcp_seq);
2472 }
2473 out:
2474 if (inp != NULL)
2475 INP_WUNLOCK(inp);
2476 INP_INFO_RUNLOCK_ET(&V_tcbinfo, et);
2477 }
2478 #endif /* INET */
2479
2480 #ifdef INET6
2481 void
tcp6_ctlinput(int cmd,struct sockaddr * sa,void * d)2482 tcp6_ctlinput(int cmd, struct sockaddr *sa, void *d)
2483 {
2484 struct in6_addr *dst;
2485 struct inpcb *(*notify)(struct inpcb *, int) = tcp_notify;
2486 struct ip6_hdr *ip6;
2487 struct mbuf *m;
2488 struct inpcb *inp;
2489 struct tcpcb *tp;
2490 struct icmp6_hdr *icmp6;
2491 struct ip6ctlparam *ip6cp = NULL;
2492 const struct sockaddr_in6 *sa6_src = NULL;
2493 struct in_conninfo inc;
2494 struct epoch_tracker et;
2495 struct tcp_ports {
2496 uint16_t th_sport;
2497 uint16_t th_dport;
2498 } t_ports;
2499 tcp_seq icmp_tcp_seq;
2500 unsigned int mtu;
2501 unsigned int off;
2502
2503 if (sa->sa_family != AF_INET6 ||
2504 sa->sa_len != sizeof(struct sockaddr_in6))
2505 return;
2506
2507 /* if the parameter is from icmp6, decode it. */
2508 if (d != NULL) {
2509 ip6cp = (struct ip6ctlparam *)d;
2510 icmp6 = ip6cp->ip6c_icmp6;
2511 m = ip6cp->ip6c_m;
2512 ip6 = ip6cp->ip6c_ip6;
2513 off = ip6cp->ip6c_off;
2514 sa6_src = ip6cp->ip6c_src;
2515 dst = ip6cp->ip6c_finaldst;
2516 } else {
2517 m = NULL;
2518 ip6 = NULL;
2519 off = 0; /* fool gcc */
2520 sa6_src = &sa6_any;
2521 dst = NULL;
2522 }
2523
2524 if (cmd == PRC_MSGSIZE)
2525 notify = tcp_mtudisc_notify;
2526 else if (V_icmp_may_rst && (cmd == PRC_UNREACH_ADMIN_PROHIB ||
2527 cmd == PRC_UNREACH_PORT || cmd == PRC_UNREACH_PROTOCOL ||
2528 cmd == PRC_TIMXCEED_INTRANS) && ip6 != NULL)
2529 notify = tcp_drop_syn_sent;
2530
2531 /*
2532 * Hostdead is ugly because it goes linearly through all PCBs.
2533 * XXX: We never get this from ICMP, otherwise it makes an
2534 * excellent DoS attack on machines with many connections.
2535 */
2536 else if (cmd == PRC_HOSTDEAD)
2537 ip6 = NULL;
2538 else if ((unsigned)cmd >= PRC_NCMDS || inet6ctlerrmap[cmd] == 0)
2539 return;
2540
2541 if (ip6 == NULL) {
2542 in6_pcbnotify(&V_tcbinfo, sa, 0,
2543 (const struct sockaddr *)sa6_src,
2544 0, cmd, NULL, notify);
2545 return;
2546 }
2547
2548 /* Check if we can safely get the ports from the tcp hdr */
2549 if (m == NULL ||
2550 (m->m_pkthdr.len <
2551 (int32_t) (off + sizeof(struct tcp_ports)))) {
2552 return;
2553 }
2554 bzero(&t_ports, sizeof(struct tcp_ports));
2555 m_copydata(m, off, sizeof(struct tcp_ports), (caddr_t)&t_ports);
2556 INP_INFO_RLOCK_ET(&V_tcbinfo, et);
2557 inp = in6_pcblookup(&V_tcbinfo, &ip6->ip6_dst, t_ports.th_dport,
2558 &ip6->ip6_src, t_ports.th_sport, INPLOOKUP_WLOCKPCB, NULL);
2559 if (inp != NULL && PRC_IS_REDIRECT(cmd)) {
2560 /* signal EHOSTDOWN, as it flushes the cached route */
2561 inp = (*notify)(inp, EHOSTDOWN);
2562 goto out;
2563 }
2564 off += sizeof(struct tcp_ports);
2565 if (m->m_pkthdr.len < (int32_t) (off + sizeof(tcp_seq))) {
2566 goto out;
2567 }
2568 m_copydata(m, off, sizeof(tcp_seq), (caddr_t)&icmp_tcp_seq);
2569 if (inp != NULL) {
2570 if (!(inp->inp_flags & INP_TIMEWAIT) &&
2571 !(inp->inp_flags & INP_DROPPED) &&
2572 !(inp->inp_socket == NULL)) {
2573 tp = intotcpcb(inp);
2574 if (SEQ_GEQ(ntohl(icmp_tcp_seq), tp->snd_una) &&
2575 SEQ_LT(ntohl(icmp_tcp_seq), tp->snd_max)) {
2576 if (cmd == PRC_MSGSIZE) {
2577 /*
2578 * MTU discovery:
2579 * If we got a needfrag set the MTU
2580 * in the route to the suggested new
2581 * value (if given) and then notify.
2582 */
2583 mtu = ntohl(icmp6->icmp6_mtu);
2584 /*
2585 * If no alternative MTU was
2586 * proposed, or the proposed
2587 * MTU was too small, set to
2588 * the min.
2589 */
2590 if (mtu < IPV6_MMTU)
2591 mtu = IPV6_MMTU - 8;
2592 bzero(&inc, sizeof(inc));
2593 inc.inc_fibnum = M_GETFIB(m);
2594 inc.inc_flags |= INC_ISIPV6;
2595 inc.inc6_faddr = *dst;
2596 if (in6_setscope(&inc.inc6_faddr,
2597 m->m_pkthdr.rcvif, NULL))
2598 goto out;
2599 /*
2600 * Only process the offered MTU if it
2601 * is smaller than the current one.
2602 */
2603 if (mtu < tp->t_maxseg +
2604 sizeof (struct tcphdr) +
2605 sizeof (struct ip6_hdr)) {
2606 tcp_hc_updatemtu(&inc, mtu);
2607 tcp_mtudisc(inp, mtu);
2608 ICMP6STAT_INC(icp6s_pmtuchg);
2609 }
2610 } else
2611 inp = (*notify)(inp,
2612 inet6ctlerrmap[cmd]);
2613 }
2614 }
2615 } else {
2616 bzero(&inc, sizeof(inc));
2617 inc.inc_fibnum = M_GETFIB(m);
2618 inc.inc_flags |= INC_ISIPV6;
2619 inc.inc_fport = t_ports.th_dport;
2620 inc.inc_lport = t_ports.th_sport;
2621 inc.inc6_faddr = *dst;
2622 inc.inc6_laddr = ip6->ip6_src;
2623 syncache_unreach(&inc, icmp_tcp_seq);
2624 }
2625 out:
2626 if (inp != NULL)
2627 INP_WUNLOCK(inp);
2628 INP_INFO_RUNLOCK_ET(&V_tcbinfo, et);
2629 }
2630 #endif /* INET6 */
2631
2632 static uint32_t
tcp_keyed_hash(struct in_conninfo * inc,u_char * key,u_int len)2633 tcp_keyed_hash(struct in_conninfo *inc, u_char *key, u_int len)
2634 {
2635 MD5_CTX ctx;
2636 uint32_t hash[4];
2637
2638 MD5Init(&ctx);
2639 MD5Update(&ctx, &inc->inc_fport, sizeof(uint16_t));
2640 MD5Update(&ctx, &inc->inc_lport, sizeof(uint16_t));
2641 switch (inc->inc_flags & INC_ISIPV6) {
2642 #ifdef INET
2643 case 0:
2644 MD5Update(&ctx, &inc->inc_faddr, sizeof(struct in_addr));
2645 MD5Update(&ctx, &inc->inc_laddr, sizeof(struct in_addr));
2646 break;
2647 #endif
2648 #ifdef INET6
2649 case INC_ISIPV6:
2650 MD5Update(&ctx, &inc->inc6_faddr, sizeof(struct in6_addr));
2651 MD5Update(&ctx, &inc->inc6_laddr, sizeof(struct in6_addr));
2652 break;
2653 #endif
2654 }
2655 MD5Update(&ctx, key, len);
2656 MD5Final((unsigned char *)hash, &ctx);
2657
2658 return (hash[0]);
2659 }
2660
2661 uint32_t
tcp_new_ts_offset(struct in_conninfo * inc)2662 tcp_new_ts_offset(struct in_conninfo *inc)
2663 {
2664 struct in_conninfo inc_store, *local_inc;
2665
2666 if (!V_tcp_ts_offset_per_conn) {
2667 memcpy(&inc_store, inc, sizeof(struct in_conninfo));
2668 inc_store.inc_lport = 0;
2669 inc_store.inc_fport = 0;
2670 local_inc = &inc_store;
2671 } else {
2672 local_inc = inc;
2673 }
2674 return (tcp_keyed_hash(local_inc, V_ts_offset_secret,
2675 sizeof(V_ts_offset_secret)));
2676 }
2677
2678 /*
2679 * Following is where TCP initial sequence number generation occurs.
2680 *
2681 * There are two places where we must use initial sequence numbers:
2682 * 1. In SYN-ACK packets.
2683 * 2. In SYN packets.
2684 *
2685 * All ISNs for SYN-ACK packets are generated by the syncache. See
2686 * tcp_syncache.c for details.
2687 *
2688 * The ISNs in SYN packets must be monotonic; TIME_WAIT recycling
2689 * depends on this property. In addition, these ISNs should be
2690 * unguessable so as to prevent connection hijacking. To satisfy
2691 * the requirements of this situation, the algorithm outlined in
2692 * RFC 1948 is used, with only small modifications.
2693 *
2694 * Implementation details:
2695 *
2696 * Time is based off the system timer, and is corrected so that it
2697 * increases by one megabyte per second. This allows for proper
2698 * recycling on high speed LANs while still leaving over an hour
2699 * before rollover.
2700 *
2701 * As reading the *exact* system time is too expensive to be done
2702 * whenever setting up a TCP connection, we increment the time
2703 * offset in two ways. First, a small random positive increment
2704 * is added to isn_offset for each connection that is set up.
2705 * Second, the function tcp_isn_tick fires once per clock tick
2706 * and increments isn_offset as necessary so that sequence numbers
2707 * are incremented at approximately ISN_BYTES_PER_SECOND. The
2708 * random positive increments serve only to ensure that the same
2709 * exact sequence number is never sent out twice (as could otherwise
2710 * happen when a port is recycled in less than the system tick
2711 * interval.)
2712 *
2713 * net.inet.tcp.isn_reseed_interval controls the number of seconds
2714 * between seeding of isn_secret. This is normally set to zero,
2715 * as reseeding should not be necessary.
2716 *
2717 * Locking of the global variables isn_secret, isn_last_reseed, isn_offset,
2718 * isn_offset_old, and isn_ctx is performed using the ISN lock. In
2719 * general, this means holding an exclusive (write) lock.
2720 */
2721
2722 #define ISN_BYTES_PER_SECOND 1048576
2723 #define ISN_STATIC_INCREMENT 4096
2724 #define ISN_RANDOM_INCREMENT (4096 - 1)
2725 #define ISN_SECRET_LENGTH 32
2726
2727 VNET_DEFINE_STATIC(u_char, isn_secret[ISN_SECRET_LENGTH]);
2728 VNET_DEFINE_STATIC(int, isn_last);
2729 VNET_DEFINE_STATIC(int, isn_last_reseed);
2730 VNET_DEFINE_STATIC(u_int32_t, isn_offset);
2731 VNET_DEFINE_STATIC(u_int32_t, isn_offset_old);
2732
2733 #define V_isn_secret VNET(isn_secret)
2734 #define V_isn_last VNET(isn_last)
2735 #define V_isn_last_reseed VNET(isn_last_reseed)
2736 #define V_isn_offset VNET(isn_offset)
2737 #define V_isn_offset_old VNET(isn_offset_old)
2738
2739 tcp_seq
tcp_new_isn(struct in_conninfo * inc)2740 tcp_new_isn(struct in_conninfo *inc)
2741 {
2742 tcp_seq new_isn;
2743 u_int32_t projected_offset;
2744
2745 ISN_LOCK();
2746 /* Seed if this is the first use, reseed if requested. */
2747 if ((V_isn_last_reseed == 0) || ((V_tcp_isn_reseed_interval > 0) &&
2748 (((u_int)V_isn_last_reseed + (u_int)V_tcp_isn_reseed_interval*hz)
2749 < (u_int)ticks))) {
2750 arc4rand(&V_isn_secret, sizeof(V_isn_secret), 0);
2751 V_isn_last_reseed = ticks;
2752 }
2753
2754 /* Compute the md5 hash and return the ISN. */
2755 new_isn = (tcp_seq)tcp_keyed_hash(inc, V_isn_secret,
2756 sizeof(V_isn_secret));
2757 V_isn_offset += ISN_STATIC_INCREMENT +
2758 (arc4random() & ISN_RANDOM_INCREMENT);
2759 if (ticks != V_isn_last) {
2760 projected_offset = V_isn_offset_old +
2761 ISN_BYTES_PER_SECOND / hz * (ticks - V_isn_last);
2762 if (SEQ_GT(projected_offset, V_isn_offset))
2763 V_isn_offset = projected_offset;
2764 V_isn_offset_old = V_isn_offset;
2765 V_isn_last = ticks;
2766 }
2767 new_isn += V_isn_offset;
2768 ISN_UNLOCK();
2769 return (new_isn);
2770 }
2771
2772 /*
2773 * When a specific ICMP unreachable message is received and the
2774 * connection state is SYN-SENT, drop the connection. This behavior
2775 * is controlled by the icmp_may_rst sysctl.
2776 */
2777 struct inpcb *
tcp_drop_syn_sent(struct inpcb * inp,int errno)2778 tcp_drop_syn_sent(struct inpcb *inp, int errno)
2779 {
2780 struct tcpcb *tp;
2781
2782 INP_INFO_RLOCK_ASSERT(&V_tcbinfo);
2783 INP_WLOCK_ASSERT(inp);
2784
2785 if ((inp->inp_flags & INP_TIMEWAIT) ||
2786 (inp->inp_flags & INP_DROPPED))
2787 return (inp);
2788
2789 tp = intotcpcb(inp);
2790 if (tp->t_state != TCPS_SYN_SENT)
2791 return (inp);
2792
2793 if (IS_FASTOPEN(tp->t_flags))
2794 tcp_fastopen_disable_path(tp);
2795
2796 tp = tcp_drop(tp, errno);
2797 if (tp != NULL)
2798 return (inp);
2799 else
2800 return (NULL);
2801 }
2802
2803 /*
2804 * When `need fragmentation' ICMP is received, update our idea of the MSS
2805 * based on the new value. Also nudge TCP to send something, since we
2806 * know the packet we just sent was dropped.
2807 * This duplicates some code in the tcp_mss() function in tcp_input.c.
2808 */
2809 static struct inpcb *
tcp_mtudisc_notify(struct inpcb * inp,int error)2810 tcp_mtudisc_notify(struct inpcb *inp, int error)
2811 {
2812
2813 tcp_mtudisc(inp, -1);
2814 return (inp);
2815 }
2816
2817 static void
tcp_mtudisc(struct inpcb * inp,int mtuoffer)2818 tcp_mtudisc(struct inpcb *inp, int mtuoffer)
2819 {
2820 struct tcpcb *tp;
2821 struct socket *so;
2822
2823 INP_WLOCK_ASSERT(inp);
2824 if ((inp->inp_flags & INP_TIMEWAIT) ||
2825 (inp->inp_flags & INP_DROPPED))
2826 return;
2827
2828 tp = intotcpcb(inp);
2829 KASSERT(tp != NULL, ("tcp_mtudisc: tp == NULL"));
2830
2831 tcp_mss_update(tp, -1, mtuoffer, NULL, NULL);
2832
2833 so = inp->inp_socket;
2834 SOCKBUF_LOCK(&so->so_snd);
2835 /* If the mss is larger than the socket buffer, decrease the mss. */
2836 if (so->so_snd.sb_hiwat < tp->t_maxseg)
2837 tp->t_maxseg = so->so_snd.sb_hiwat;
2838 SOCKBUF_UNLOCK(&so->so_snd);
2839
2840 TCPSTAT_INC(tcps_mturesent);
2841 tp->t_rtttime = 0;
2842 tp->snd_nxt = tp->snd_una;
2843 tcp_free_sackholes(tp);
2844 tp->snd_recover = tp->snd_max;
2845 if (tp->t_flags & TF_SACK_PERMIT)
2846 EXIT_FASTRECOVERY(tp->t_flags);
2847 tp->t_fb->tfb_tcp_output(tp);
2848 }
2849
2850 #ifdef INET
2851 /*
2852 * Look-up the routing entry to the peer of this inpcb. If no route
2853 * is found and it cannot be allocated, then return 0. This routine
2854 * is called by TCP routines that access the rmx structure and by
2855 * tcp_mss_update to get the peer/interface MTU.
2856 */
2857 uint32_t
tcp_maxmtu(struct in_conninfo * inc,struct tcp_ifcap * cap)2858 tcp_maxmtu(struct in_conninfo *inc, struct tcp_ifcap *cap)
2859 {
2860 struct nhop4_extended nh4;
2861 struct ifnet *ifp;
2862 uint32_t maxmtu = 0;
2863
2864 KASSERT(inc != NULL, ("tcp_maxmtu with NULL in_conninfo pointer"));
2865
2866 if (inc->inc_faddr.s_addr != INADDR_ANY) {
2867
2868 if (fib4_lookup_nh_ext(inc->inc_fibnum, inc->inc_faddr,
2869 NHR_REF, 0, &nh4) != 0)
2870 return (0);
2871
2872 ifp = nh4.nh_ifp;
2873 maxmtu = nh4.nh_mtu;
2874
2875 /* Report additional interface capabilities. */
2876 if (cap != NULL) {
2877 if (ifp->if_capenable & IFCAP_TSO4 &&
2878 ifp->if_hwassist & CSUM_TSO) {
2879 cap->ifcap |= CSUM_TSO;
2880 cap->tsomax = ifp->if_hw_tsomax;
2881 cap->tsomaxsegcount = ifp->if_hw_tsomaxsegcount;
2882 cap->tsomaxsegsize = ifp->if_hw_tsomaxsegsize;
2883 }
2884 }
2885 fib4_free_nh_ext(inc->inc_fibnum, &nh4);
2886 }
2887 return (maxmtu);
2888 }
2889 #endif /* INET */
2890
2891 #ifdef INET6
2892 uint32_t
tcp_maxmtu6(struct in_conninfo * inc,struct tcp_ifcap * cap)2893 tcp_maxmtu6(struct in_conninfo *inc, struct tcp_ifcap *cap)
2894 {
2895 struct nhop6_extended nh6;
2896 struct in6_addr dst6;
2897 uint32_t scopeid;
2898 struct ifnet *ifp;
2899 uint32_t maxmtu = 0;
2900
2901 KASSERT(inc != NULL, ("tcp_maxmtu6 with NULL in_conninfo pointer"));
2902
2903 if (inc->inc_flags & INC_IPV6MINMTU)
2904 return (IPV6_MMTU);
2905
2906 if (!IN6_IS_ADDR_UNSPECIFIED(&inc->inc6_faddr)) {
2907 in6_splitscope(&inc->inc6_faddr, &dst6, &scopeid);
2908 if (fib6_lookup_nh_ext(inc->inc_fibnum, &dst6, scopeid, 0,
2909 0, &nh6) != 0)
2910 return (0);
2911
2912 ifp = nh6.nh_ifp;
2913 maxmtu = nh6.nh_mtu;
2914
2915 /* Report additional interface capabilities. */
2916 if (cap != NULL) {
2917 if (ifp->if_capenable & IFCAP_TSO6 &&
2918 ifp->if_hwassist & CSUM_TSO) {
2919 cap->ifcap |= CSUM_TSO;
2920 cap->tsomax = ifp->if_hw_tsomax;
2921 cap->tsomaxsegcount = ifp->if_hw_tsomaxsegcount;
2922 cap->tsomaxsegsize = ifp->if_hw_tsomaxsegsize;
2923 }
2924 }
2925 fib6_free_nh_ext(inc->inc_fibnum, &nh6);
2926 }
2927
2928 return (maxmtu);
2929 }
2930 #endif /* INET6 */
2931
2932 /*
2933 * Calculate effective SMSS per RFC5681 definition for a given TCP
2934 * connection at its current state, taking into account SACK and etc.
2935 */
2936 u_int
tcp_maxseg(const struct tcpcb * tp)2937 tcp_maxseg(const struct tcpcb *tp)
2938 {
2939 u_int optlen;
2940
2941 if (tp->t_flags & TF_NOOPT)
2942 return (tp->t_maxseg);
2943
2944 /*
2945 * Here we have a simplified code from tcp_addoptions(),
2946 * without a proper loop, and having most of paddings hardcoded.
2947 * We might make mistakes with padding here in some edge cases,
2948 * but this is harmless, since result of tcp_maxseg() is used
2949 * only in cwnd and ssthresh estimations.
2950 */
2951 if (TCPS_HAVEESTABLISHED(tp->t_state)) {
2952 if (tp->t_flags & TF_RCVD_TSTMP)
2953 optlen = TCPOLEN_TSTAMP_APPA;
2954 else
2955 optlen = 0;
2956 #if defined(IPSEC_SUPPORT) || defined(TCP_SIGNATURE)
2957 if (tp->t_flags & TF_SIGNATURE)
2958 optlen += PADTCPOLEN(TCPOLEN_SIGNATURE);
2959 #endif
2960 if ((tp->t_flags & TF_SACK_PERMIT) && tp->rcv_numsacks > 0) {
2961 optlen += TCPOLEN_SACKHDR;
2962 optlen += tp->rcv_numsacks * TCPOLEN_SACK;
2963 optlen = PADTCPOLEN(optlen);
2964 }
2965 } else {
2966 if (tp->t_flags & TF_REQ_TSTMP)
2967 optlen = TCPOLEN_TSTAMP_APPA;
2968 else
2969 optlen = PADTCPOLEN(TCPOLEN_MAXSEG);
2970 if (tp->t_flags & TF_REQ_SCALE)
2971 optlen += PADTCPOLEN(TCPOLEN_WINDOW);
2972 #if defined(IPSEC_SUPPORT) || defined(TCP_SIGNATURE)
2973 if (tp->t_flags & TF_SIGNATURE)
2974 optlen += PADTCPOLEN(TCPOLEN_SIGNATURE);
2975 #endif
2976 if (tp->t_flags & TF_SACK_PERMIT)
2977 optlen += PADTCPOLEN(TCPOLEN_SACK_PERMITTED);
2978 }
2979 #undef PAD
2980 optlen = min(optlen, TCP_MAXOLEN);
2981 return (tp->t_maxseg - optlen);
2982 }
2983
2984 static int
sysctl_drop(SYSCTL_HANDLER_ARGS)2985 sysctl_drop(SYSCTL_HANDLER_ARGS)
2986 {
2987 /* addrs[0] is a foreign socket, addrs[1] is a local one. */
2988 struct sockaddr_storage addrs[2];
2989 struct inpcb *inp;
2990 struct tcpcb *tp;
2991 struct tcptw *tw;
2992 struct sockaddr_in *fin, *lin;
2993 struct epoch_tracker et;
2994 #ifdef INET6
2995 struct sockaddr_in6 *fin6, *lin6;
2996 #endif
2997 int error;
2998
2999 inp = NULL;
3000 fin = lin = NULL;
3001 #ifdef INET6
3002 fin6 = lin6 = NULL;
3003 #endif
3004 error = 0;
3005
3006 if (req->oldptr != NULL || req->oldlen != 0)
3007 return (EINVAL);
3008 if (req->newptr == NULL)
3009 return (EPERM);
3010 if (req->newlen < sizeof(addrs))
3011 return (ENOMEM);
3012 error = SYSCTL_IN(req, &addrs, sizeof(addrs));
3013 if (error)
3014 return (error);
3015
3016 switch (addrs[0].ss_family) {
3017 #ifdef INET6
3018 case AF_INET6:
3019 fin6 = (struct sockaddr_in6 *)&addrs[0];
3020 lin6 = (struct sockaddr_in6 *)&addrs[1];
3021 if (fin6->sin6_len != sizeof(struct sockaddr_in6) ||
3022 lin6->sin6_len != sizeof(struct sockaddr_in6))
3023 return (EINVAL);
3024 if (IN6_IS_ADDR_V4MAPPED(&fin6->sin6_addr)) {
3025 if (!IN6_IS_ADDR_V4MAPPED(&lin6->sin6_addr))
3026 return (EINVAL);
3027 in6_sin6_2_sin_in_sock((struct sockaddr *)&addrs[0]);
3028 in6_sin6_2_sin_in_sock((struct sockaddr *)&addrs[1]);
3029 fin = (struct sockaddr_in *)&addrs[0];
3030 lin = (struct sockaddr_in *)&addrs[1];
3031 break;
3032 }
3033 error = sa6_embedscope(fin6, V_ip6_use_defzone);
3034 if (error)
3035 return (error);
3036 error = sa6_embedscope(lin6, V_ip6_use_defzone);
3037 if (error)
3038 return (error);
3039 break;
3040 #endif
3041 #ifdef INET
3042 case AF_INET:
3043 fin = (struct sockaddr_in *)&addrs[0];
3044 lin = (struct sockaddr_in *)&addrs[1];
3045 if (fin->sin_len != sizeof(struct sockaddr_in) ||
3046 lin->sin_len != sizeof(struct sockaddr_in))
3047 return (EINVAL);
3048 break;
3049 #endif
3050 default:
3051 return (EINVAL);
3052 }
3053 INP_INFO_RLOCK_ET(&V_tcbinfo, et);
3054 switch (addrs[0].ss_family) {
3055 #ifdef INET6
3056 case AF_INET6:
3057 inp = in6_pcblookup(&V_tcbinfo, &fin6->sin6_addr,
3058 fin6->sin6_port, &lin6->sin6_addr, lin6->sin6_port,
3059 INPLOOKUP_WLOCKPCB, NULL);
3060 break;
3061 #endif
3062 #ifdef INET
3063 case AF_INET:
3064 inp = in_pcblookup(&V_tcbinfo, fin->sin_addr, fin->sin_port,
3065 lin->sin_addr, lin->sin_port, INPLOOKUP_WLOCKPCB, NULL);
3066 break;
3067 #endif
3068 }
3069 if (inp != NULL) {
3070 if (inp->inp_flags & INP_TIMEWAIT) {
3071 /*
3072 * XXXRW: There currently exists a state where an
3073 * inpcb is present, but its timewait state has been
3074 * discarded. For now, don't allow dropping of this
3075 * type of inpcb.
3076 */
3077 tw = intotw(inp);
3078 if (tw != NULL)
3079 tcp_twclose(tw, 0);
3080 else
3081 INP_WUNLOCK(inp);
3082 } else if (!(inp->inp_flags & INP_DROPPED) &&
3083 !(inp->inp_socket->so_options & SO_ACCEPTCONN)) {
3084 tp = intotcpcb(inp);
3085 tp = tcp_drop(tp, ECONNABORTED);
3086 if (tp != NULL)
3087 INP_WUNLOCK(inp);
3088 } else
3089 INP_WUNLOCK(inp);
3090 } else
3091 error = ESRCH;
3092 INP_INFO_RUNLOCK_ET(&V_tcbinfo, et);
3093 return (error);
3094 }
3095
3096 SYSCTL_PROC(_net_inet_tcp, TCPCTL_DROP, drop,
3097 CTLFLAG_VNET | CTLTYPE_STRUCT | CTLFLAG_WR | CTLFLAG_SKIP, NULL,
3098 0, sysctl_drop, "", "Drop TCP connection");
3099
3100 /*
3101 * Generate a standardized TCP log line for use throughout the
3102 * tcp subsystem. Memory allocation is done with M_NOWAIT to
3103 * allow use in the interrupt context.
3104 *
3105 * NB: The caller MUST free(s, M_TCPLOG) the returned string.
3106 * NB: The function may return NULL if memory allocation failed.
3107 *
3108 * Due to header inclusion and ordering limitations the struct ip
3109 * and ip6_hdr pointers have to be passed as void pointers.
3110 */
3111 char *
tcp_log_vain(struct in_conninfo * inc,struct tcphdr * th,void * ip4hdr,const void * ip6hdr)3112 tcp_log_vain(struct in_conninfo *inc, struct tcphdr *th, void *ip4hdr,
3113 const void *ip6hdr)
3114 {
3115
3116 /* Is logging enabled? */
3117 if (V_tcp_log_in_vain == 0)
3118 return (NULL);
3119
3120 return (tcp_log_addr(inc, th, ip4hdr, ip6hdr));
3121 }
3122
3123 char *
tcp_log_addrs(struct in_conninfo * inc,struct tcphdr * th,void * ip4hdr,const void * ip6hdr)3124 tcp_log_addrs(struct in_conninfo *inc, struct tcphdr *th, void *ip4hdr,
3125 const void *ip6hdr)
3126 {
3127
3128 /* Is logging enabled? */
3129 if (tcp_log_debug == 0)
3130 return (NULL);
3131
3132 return (tcp_log_addr(inc, th, ip4hdr, ip6hdr));
3133 }
3134
3135 static char *
tcp_log_addr(struct in_conninfo * inc,struct tcphdr * th,void * ip4hdr,const void * ip6hdr)3136 tcp_log_addr(struct in_conninfo *inc, struct tcphdr *th, void *ip4hdr,
3137 const void *ip6hdr)
3138 {
3139 char *s, *sp;
3140 size_t size;
3141 struct ip *ip;
3142 #ifdef INET6
3143 const struct ip6_hdr *ip6;
3144
3145 ip6 = (const struct ip6_hdr *)ip6hdr;
3146 #endif /* INET6 */
3147 ip = (struct ip *)ip4hdr;
3148
3149 /*
3150 * The log line looks like this:
3151 * "TCP: [1.2.3.4]:50332 to [1.2.3.4]:80 tcpflags 0x2<SYN>"
3152 */
3153 size = sizeof("TCP: []:12345 to []:12345 tcpflags 0x2<>") +
3154 sizeof(PRINT_TH_FLAGS) + 1 +
3155 #ifdef INET6
3156 2 * INET6_ADDRSTRLEN;
3157 #else
3158 2 * INET_ADDRSTRLEN;
3159 #endif /* INET6 */
3160
3161 s = malloc(size, M_TCPLOG, M_ZERO|M_NOWAIT);
3162 if (s == NULL)
3163 return (NULL);
3164
3165 strcat(s, "TCP: [");
3166 sp = s + strlen(s);
3167
3168 if (inc && ((inc->inc_flags & INC_ISIPV6) == 0)) {
3169 inet_ntoa_r(inc->inc_faddr, sp);
3170 sp = s + strlen(s);
3171 sprintf(sp, "]:%i to [", ntohs(inc->inc_fport));
3172 sp = s + strlen(s);
3173 inet_ntoa_r(inc->inc_laddr, sp);
3174 sp = s + strlen(s);
3175 sprintf(sp, "]:%i", ntohs(inc->inc_lport));
3176 #ifdef INET6
3177 } else if (inc) {
3178 ip6_sprintf(sp, &inc->inc6_faddr);
3179 sp = s + strlen(s);
3180 sprintf(sp, "]:%i to [", ntohs(inc->inc_fport));
3181 sp = s + strlen(s);
3182 ip6_sprintf(sp, &inc->inc6_laddr);
3183 sp = s + strlen(s);
3184 sprintf(sp, "]:%i", ntohs(inc->inc_lport));
3185 } else if (ip6 && th) {
3186 ip6_sprintf(sp, &ip6->ip6_src);
3187 sp = s + strlen(s);
3188 sprintf(sp, "]:%i to [", ntohs(th->th_sport));
3189 sp = s + strlen(s);
3190 ip6_sprintf(sp, &ip6->ip6_dst);
3191 sp = s + strlen(s);
3192 sprintf(sp, "]:%i", ntohs(th->th_dport));
3193 #endif /* INET6 */
3194 #ifdef INET
3195 } else if (ip && th) {
3196 inet_ntoa_r(ip->ip_src, sp);
3197 sp = s + strlen(s);
3198 sprintf(sp, "]:%i to [", ntohs(th->th_sport));
3199 sp = s + strlen(s);
3200 inet_ntoa_r(ip->ip_dst, sp);
3201 sp = s + strlen(s);
3202 sprintf(sp, "]:%i", ntohs(th->th_dport));
3203 #endif /* INET */
3204 } else {
3205 free(s, M_TCPLOG);
3206 return (NULL);
3207 }
3208 sp = s + strlen(s);
3209 if (th)
3210 sprintf(sp, " tcpflags 0x%b", th->th_flags, PRINT_TH_FLAGS);
3211 if (*(s + size - 1) != '\0')
3212 panic("%s: string too long", __func__);
3213 return (s);
3214 }
3215
3216 /*
3217 * A subroutine which makes it easy to track TCP state changes with DTrace.
3218 * This function shouldn't be called for t_state initializations that don't
3219 * correspond to actual TCP state transitions.
3220 */
3221 void
tcp_state_change(struct tcpcb * tp,int newstate)3222 tcp_state_change(struct tcpcb *tp, int newstate)
3223 {
3224 #if defined(KDTRACE_HOOKS)
3225 int pstate = tp->t_state;
3226 #endif
3227
3228 TCPSTATES_DEC(tp->t_state);
3229 TCPSTATES_INC(newstate);
3230 tp->t_state = newstate;
3231 TCP_PROBE6(state__change, NULL, tp, NULL, tp, NULL, pstate);
3232 }
3233
3234 /*
3235 * Create an external-format (``xtcpcb'') structure using the information in
3236 * the kernel-format tcpcb structure pointed to by tp. This is done to
3237 * reduce the spew of irrelevant information over this interface, to isolate
3238 * user code from changes in the kernel structure, and potentially to provide
3239 * information-hiding if we decide that some of this information should be
3240 * hidden from users.
3241 */
3242 void
tcp_inptoxtp(const struct inpcb * inp,struct xtcpcb * xt)3243 tcp_inptoxtp(const struct inpcb *inp, struct xtcpcb *xt)
3244 {
3245 struct tcpcb *tp = intotcpcb(inp);
3246 sbintime_t now;
3247
3248 bzero(xt, sizeof(*xt));
3249 if (inp->inp_flags & INP_TIMEWAIT) {
3250 xt->t_state = TCPS_TIME_WAIT;
3251 } else {
3252 xt->t_state = tp->t_state;
3253 xt->t_logstate = tp->t_logstate;
3254 xt->t_flags = tp->t_flags;
3255 xt->t_sndzerowin = tp->t_sndzerowin;
3256 xt->t_sndrexmitpack = tp->t_sndrexmitpack;
3257 xt->t_rcvoopack = tp->t_rcvoopack;
3258 xt->t_rcv_wnd = tp->rcv_wnd;
3259 xt->t_snd_wnd = tp->snd_wnd;
3260 xt->t_snd_cwnd = tp->snd_cwnd;
3261 xt->t_snd_ssthresh = tp->snd_ssthresh;
3262 xt->t_maxseg = tp->t_maxseg;
3263 xt->xt_ecn = (tp->t_flags & TF_ECN_PERMIT) ? 1 : 0;
3264
3265 now = getsbinuptime();
3266 #define COPYTIMER(ttt) do { \
3267 if (callout_active(&tp->t_timers->ttt)) \
3268 xt->ttt = (tp->t_timers->ttt.c_time - now) / \
3269 SBT_1MS; \
3270 else \
3271 xt->ttt = 0; \
3272 } while (0)
3273 COPYTIMER(tt_delack);
3274 COPYTIMER(tt_rexmt);
3275 COPYTIMER(tt_persist);
3276 COPYTIMER(tt_keep);
3277 COPYTIMER(tt_2msl);
3278 #undef COPYTIMER
3279 xt->t_rcvtime = 1000 * (ticks - tp->t_rcvtime) / hz;
3280
3281 bcopy(tp->t_fb->tfb_tcp_block_name, xt->xt_stack,
3282 TCP_FUNCTION_NAME_LEN_MAX);
3283 bcopy(CC_ALGO(tp)->name, xt->xt_cc,
3284 TCP_CA_NAME_MAX);
3285 #ifdef TCP_BLACKBOX
3286 (void)tcp_log_get_id(tp, xt->xt_logid);
3287 #endif
3288 }
3289
3290 xt->xt_len = sizeof(struct xtcpcb);
3291 in_pcbtoxinpcb(inp, &xt->xt_inp);
3292 if (inp->inp_socket == NULL)
3293 xt->xt_inp.xi_socket.xso_protocol = IPPROTO_TCP;
3294 }
3295