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