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