]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/netinet/tcp_usrreq.c
Fix kernel memory disclosure in tcp_ctloutput
[FreeBSD/FreeBSD.git] / sys / netinet / tcp_usrreq.c
1 /*-
2  * SPDX-License-Identifier: BSD-3-Clause
3  *
4  * Copyright (c) 1982, 1986, 1988, 1993
5  *      The Regents of the University of California.
6  * Copyright (c) 2006-2007 Robert N. M. Watson
7  * Copyright (c) 2010-2011 Juniper Networks, Inc.
8  * All rights reserved.
9  *
10  * Portions of this software were developed by Robert N. M. Watson under
11  * contract to Juniper Networks, Inc.
12  *
13  * Redistribution and use in source and binary forms, with or without
14  * modification, are permitted provided that the following conditions
15  * are met:
16  * 1. Redistributions of source code must retain the above copyright
17  *    notice, this list of conditions and the following disclaimer.
18  * 2. Redistributions in binary form must reproduce the above copyright
19  *    notice, this list of conditions and the following disclaimer in the
20  *    documentation and/or other materials provided with the distribution.
21  * 3. Neither the name of the University nor the names of its contributors
22  *    may be used to endorse or promote products derived from this software
23  *    without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
26  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35  * SUCH DAMAGE.
36  *
37  *      From: @(#)tcp_usrreq.c  8.2 (Berkeley) 1/3/94
38  */
39
40 #include <sys/cdefs.h>
41 __FBSDID("$FreeBSD$");
42
43 #include "opt_ddb.h"
44 #include "opt_inet.h"
45 #include "opt_inet6.h"
46 #include "opt_ipsec.h"
47 #include "opt_tcpdebug.h"
48
49 #include <sys/param.h>
50 #include <sys/systm.h>
51 #include <sys/limits.h>
52 #include <sys/malloc.h>
53 #include <sys/refcount.h>
54 #include <sys/kernel.h>
55 #include <sys/sysctl.h>
56 #include <sys/mbuf.h>
57 #ifdef INET6
58 #include <sys/domain.h>
59 #endif /* INET6 */
60 #include <sys/socket.h>
61 #include <sys/socketvar.h>
62 #include <sys/protosw.h>
63 #include <sys/proc.h>
64 #include <sys/jail.h>
65 #include <sys/syslog.h>
66
67 #ifdef DDB
68 #include <ddb/ddb.h>
69 #endif
70
71 #include <net/if.h>
72 #include <net/if_var.h>
73 #include <net/route.h>
74 #include <net/vnet.h>
75
76 #include <netinet/in.h>
77 #include <netinet/in_kdtrace.h>
78 #include <netinet/in_pcb.h>
79 #include <netinet/in_systm.h>
80 #include <netinet/in_var.h>
81 #include <netinet/ip_var.h>
82 #ifdef INET6
83 #include <netinet/ip6.h>
84 #include <netinet6/in6_pcb.h>
85 #include <netinet6/ip6_var.h>
86 #include <netinet6/scope6_var.h>
87 #endif
88 #include <netinet/tcp.h>
89 #include <netinet/tcp_fsm.h>
90 #include <netinet/tcp_seq.h>
91 #include <netinet/tcp_timer.h>
92 #include <netinet/tcp_var.h>
93 #include <netinet/tcp_log_buf.h>
94 #include <netinet/tcpip.h>
95 #include <netinet/cc/cc.h>
96 #include <netinet/tcp_fastopen.h>
97 #ifdef TCPPCAP
98 #include <netinet/tcp_pcap.h>
99 #endif
100 #ifdef TCPDEBUG
101 #include <netinet/tcp_debug.h>
102 #endif
103 #ifdef TCP_OFFLOAD
104 #include <netinet/tcp_offload.h>
105 #endif
106 #include <netipsec/ipsec_support.h>
107
108 /*
109  * TCP protocol interface to socket abstraction.
110  */
111 static int      tcp_attach(struct socket *);
112 #ifdef INET
113 static int      tcp_connect(struct tcpcb *, struct sockaddr *,
114                     struct thread *td);
115 #endif /* INET */
116 #ifdef INET6
117 static int      tcp6_connect(struct tcpcb *, struct sockaddr *,
118                     struct thread *td);
119 #endif /* INET6 */
120 static void     tcp_disconnect(struct tcpcb *);
121 static void     tcp_usrclosed(struct tcpcb *);
122 static void     tcp_fill_info(struct tcpcb *, struct tcp_info *);
123
124 #ifdef TCPDEBUG
125 #define TCPDEBUG0       int ostate = 0
126 #define TCPDEBUG1()     ostate = tp ? tp->t_state : 0
127 #define TCPDEBUG2(req)  if (tp && (so->so_options & SO_DEBUG)) \
128                                 tcp_trace(TA_USER, ostate, tp, 0, 0, req)
129 #else
130 #define TCPDEBUG0
131 #define TCPDEBUG1()
132 #define TCPDEBUG2(req)
133 #endif
134
135 /*
136  * TCP attaches to socket via pru_attach(), reserving space,
137  * and an internet control block.
138  */
139 static int
140 tcp_usr_attach(struct socket *so, int proto, struct thread *td)
141 {
142         struct inpcb *inp;
143         struct tcpcb *tp = NULL;
144         int error;
145         TCPDEBUG0;
146
147         inp = sotoinpcb(so);
148         KASSERT(inp == NULL, ("tcp_usr_attach: inp != NULL"));
149         TCPDEBUG1();
150
151         error = tcp_attach(so);
152         if (error)
153                 goto out;
154
155         if ((so->so_options & SO_LINGER) && so->so_linger == 0)
156                 so->so_linger = TCP_LINGERTIME;
157
158         inp = sotoinpcb(so);
159         tp = intotcpcb(inp);
160 out:
161         TCPDEBUG2(PRU_ATTACH);
162         TCP_PROBE2(debug__user, tp, PRU_ATTACH);
163         return error;
164 }
165
166 /*
167  * tcp_detach is called when the socket layer loses its final reference
168  * to the socket, be it a file descriptor reference, a reference from TCP,
169  * etc.  At this point, there is only one case in which we will keep around
170  * inpcb state: time wait.
171  *
172  * This function can probably be re-absorbed back into tcp_usr_detach() now
173  * that there is a single detach path.
174  */
175 static void
176 tcp_detach(struct socket *so, struct inpcb *inp)
177 {
178         struct tcpcb *tp;
179
180         INP_INFO_LOCK_ASSERT(&V_tcbinfo);
181         INP_WLOCK_ASSERT(inp);
182
183         KASSERT(so->so_pcb == inp, ("tcp_detach: so_pcb != inp"));
184         KASSERT(inp->inp_socket == so, ("tcp_detach: inp_socket != so"));
185
186         tp = intotcpcb(inp);
187
188         if (inp->inp_flags & INP_TIMEWAIT) {
189                 /*
190                  * There are two cases to handle: one in which the time wait
191                  * state is being discarded (INP_DROPPED), and one in which
192                  * this connection will remain in timewait.  In the former,
193                  * it is time to discard all state (except tcptw, which has
194                  * already been discarded by the timewait close code, which
195                  * should be further up the call stack somewhere).  In the
196                  * latter case, we detach from the socket, but leave the pcb
197                  * present until timewait ends.
198                  *
199                  * XXXRW: Would it be cleaner to free the tcptw here?
200                  *
201                  * Astute question indeed, from twtcp perspective there are
202                  * four cases to consider:
203                  *
204                  * #1 tcp_detach is called at tcptw creation time by
205                  *  tcp_twstart, then do not discard the newly created tcptw
206                  *  and leave inpcb present until timewait ends
207                  * #2 tcp_detach is called at tcptw creation time by
208                  *  tcp_twstart, but connection is local and tw will be
209                  *  discarded immediately
210                  * #3 tcp_detach is called at timewait end (or reuse) by
211                  *  tcp_twclose, then the tcptw has already been discarded
212                  *  (or reused) and inpcb is freed here
213                  * #4 tcp_detach is called() after timewait ends (or reuse)
214                  *  (e.g. by soclose), then tcptw has already been discarded
215                  *  (or reused) and inpcb is freed here
216                  *
217                  *  In all three cases the tcptw should not be freed here.
218                  */
219                 if (inp->inp_flags & INP_DROPPED) {
220                         in_pcbdetach(inp);
221                         if (__predict_true(tp == NULL)) {
222                                 in_pcbfree(inp);
223                         } else {
224                                 /*
225                                  * This case should not happen as in TIMEWAIT
226                                  * state the inp should not be destroyed before
227                                  * its tcptw.  If INVARIANTS is defined, panic.
228                                  */
229 #ifdef INVARIANTS
230                                 panic("%s: Panic before an inp double-free: "
231                                     "INP_TIMEWAIT && INP_DROPPED && tp != NULL"
232                                     , __func__);
233 #else
234                                 log(LOG_ERR, "%s: Avoid an inp double-free: "
235                                     "INP_TIMEWAIT && INP_DROPPED && tp != NULL"
236                                     , __func__);
237 #endif
238                                 INP_WUNLOCK(inp);
239                         }
240                 } else {
241                         in_pcbdetach(inp);
242                         INP_WUNLOCK(inp);
243                 }
244         } else {
245                 /*
246                  * If the connection is not in timewait, we consider two
247                  * two conditions: one in which no further processing is
248                  * necessary (dropped || embryonic), and one in which TCP is
249                  * not yet done, but no longer requires the socket, so the
250                  * pcb will persist for the time being.
251                  *
252                  * XXXRW: Does the second case still occur?
253                  */
254                 if (inp->inp_flags & INP_DROPPED ||
255                     tp->t_state < TCPS_SYN_SENT) {
256                         tcp_discardcb(tp);
257                         in_pcbdetach(inp);
258                         in_pcbfree(inp);
259                 } else {
260                         in_pcbdetach(inp);
261                         INP_WUNLOCK(inp);
262                 }
263         }
264 }
265
266 /*
267  * pru_detach() detaches the TCP protocol from the socket.
268  * If the protocol state is non-embryonic, then can't
269  * do this directly: have to initiate a pru_disconnect(),
270  * which may finish later; embryonic TCB's can just
271  * be discarded here.
272  */
273 static void
274 tcp_usr_detach(struct socket *so)
275 {
276         struct inpcb *inp;
277         int rlock = 0;
278
279         inp = sotoinpcb(so);
280         KASSERT(inp != NULL, ("tcp_usr_detach: inp == NULL"));
281         if (!INP_INFO_WLOCKED(&V_tcbinfo)) {
282                 INP_INFO_RLOCK(&V_tcbinfo);
283                 rlock = 1;
284         }
285         INP_WLOCK(inp);
286         KASSERT(inp->inp_socket != NULL,
287             ("tcp_usr_detach: inp_socket == NULL"));
288         tcp_detach(so, inp);
289         if (rlock)
290                 INP_INFO_RUNLOCK(&V_tcbinfo);
291 }
292
293 #ifdef INET
294 /*
295  * Give the socket an address.
296  */
297 static int
298 tcp_usr_bind(struct socket *so, struct sockaddr *nam, struct thread *td)
299 {
300         int error = 0;
301         struct inpcb *inp;
302         struct tcpcb *tp = NULL;
303         struct sockaddr_in *sinp;
304
305         sinp = (struct sockaddr_in *)nam;
306         if (nam->sa_len != sizeof (*sinp))
307                 return (EINVAL);
308         /*
309          * Must check for multicast addresses and disallow binding
310          * to them.
311          */
312         if (sinp->sin_family == AF_INET &&
313             IN_MULTICAST(ntohl(sinp->sin_addr.s_addr)))
314                 return (EAFNOSUPPORT);
315
316         TCPDEBUG0;
317         inp = sotoinpcb(so);
318         KASSERT(inp != NULL, ("tcp_usr_bind: inp == NULL"));
319         INP_WLOCK(inp);
320         if (inp->inp_flags & (INP_TIMEWAIT | INP_DROPPED)) {
321                 error = EINVAL;
322                 goto out;
323         }
324         tp = intotcpcb(inp);
325         TCPDEBUG1();
326         INP_HASH_WLOCK(&V_tcbinfo);
327         error = in_pcbbind(inp, nam, td->td_ucred);
328         INP_HASH_WUNLOCK(&V_tcbinfo);
329 out:
330         TCPDEBUG2(PRU_BIND);
331         TCP_PROBE2(debug__user, tp, PRU_BIND);
332         INP_WUNLOCK(inp);
333
334         return (error);
335 }
336 #endif /* INET */
337
338 #ifdef INET6
339 static int
340 tcp6_usr_bind(struct socket *so, struct sockaddr *nam, struct thread *td)
341 {
342         int error = 0;
343         struct inpcb *inp;
344         struct tcpcb *tp = NULL;
345         struct sockaddr_in6 *sin6p;
346
347         sin6p = (struct sockaddr_in6 *)nam;
348         if (nam->sa_len != sizeof (*sin6p))
349                 return (EINVAL);
350         /*
351          * Must check for multicast addresses and disallow binding
352          * to them.
353          */
354         if (sin6p->sin6_family == AF_INET6 &&
355             IN6_IS_ADDR_MULTICAST(&sin6p->sin6_addr))
356                 return (EAFNOSUPPORT);
357
358         TCPDEBUG0;
359         inp = sotoinpcb(so);
360         KASSERT(inp != NULL, ("tcp6_usr_bind: inp == NULL"));
361         INP_WLOCK(inp);
362         if (inp->inp_flags & (INP_TIMEWAIT | INP_DROPPED)) {
363                 error = EINVAL;
364                 goto out;
365         }
366         tp = intotcpcb(inp);
367         TCPDEBUG1();
368         INP_HASH_WLOCK(&V_tcbinfo);
369         inp->inp_vflag &= ~INP_IPV4;
370         inp->inp_vflag |= INP_IPV6;
371 #ifdef INET
372         if ((inp->inp_flags & IN6P_IPV6_V6ONLY) == 0) {
373                 if (IN6_IS_ADDR_UNSPECIFIED(&sin6p->sin6_addr))
374                         inp->inp_vflag |= INP_IPV4;
375                 else if (IN6_IS_ADDR_V4MAPPED(&sin6p->sin6_addr)) {
376                         struct sockaddr_in sin;
377
378                         in6_sin6_2_sin(&sin, sin6p);
379                         inp->inp_vflag |= INP_IPV4;
380                         inp->inp_vflag &= ~INP_IPV6;
381                         error = in_pcbbind(inp, (struct sockaddr *)&sin,
382                             td->td_ucred);
383                         INP_HASH_WUNLOCK(&V_tcbinfo);
384                         goto out;
385                 }
386         }
387 #endif
388         error = in6_pcbbind(inp, nam, td->td_ucred);
389         INP_HASH_WUNLOCK(&V_tcbinfo);
390 out:
391         TCPDEBUG2(PRU_BIND);
392         TCP_PROBE2(debug__user, tp, PRU_BIND);
393         INP_WUNLOCK(inp);
394         return (error);
395 }
396 #endif /* INET6 */
397
398 #ifdef INET
399 /*
400  * Prepare to accept connections.
401  */
402 static int
403 tcp_usr_listen(struct socket *so, int backlog, struct thread *td)
404 {
405         int error = 0;
406         struct inpcb *inp;
407         struct tcpcb *tp = NULL;
408
409         TCPDEBUG0;
410         inp = sotoinpcb(so);
411         KASSERT(inp != NULL, ("tcp_usr_listen: inp == NULL"));
412         INP_WLOCK(inp);
413         if (inp->inp_flags & (INP_TIMEWAIT | INP_DROPPED)) {
414                 error = EINVAL;
415                 goto out;
416         }
417         tp = intotcpcb(inp);
418         TCPDEBUG1();
419         SOCK_LOCK(so);
420         error = solisten_proto_check(so);
421         INP_HASH_WLOCK(&V_tcbinfo);
422         if (error == 0 && inp->inp_lport == 0)
423                 error = in_pcbbind(inp, (struct sockaddr *)0, td->td_ucred);
424         INP_HASH_WUNLOCK(&V_tcbinfo);
425         if (error == 0) {
426                 tcp_state_change(tp, TCPS_LISTEN);
427                 solisten_proto(so, backlog);
428 #ifdef TCP_OFFLOAD
429                 if ((so->so_options & SO_NO_OFFLOAD) == 0)
430                         tcp_offload_listen_start(tp);
431 #endif
432         }
433         SOCK_UNLOCK(so);
434
435         if (IS_FASTOPEN(tp->t_flags))
436                 tp->t_tfo_pending = tcp_fastopen_alloc_counter();
437
438 out:
439         TCPDEBUG2(PRU_LISTEN);
440         TCP_PROBE2(debug__user, tp, PRU_LISTEN);
441         INP_WUNLOCK(inp);
442         return (error);
443 }
444 #endif /* INET */
445
446 #ifdef INET6
447 static int
448 tcp6_usr_listen(struct socket *so, int backlog, struct thread *td)
449 {
450         int error = 0;
451         struct inpcb *inp;
452         struct tcpcb *tp = NULL;
453
454         TCPDEBUG0;
455         inp = sotoinpcb(so);
456         KASSERT(inp != NULL, ("tcp6_usr_listen: inp == NULL"));
457         INP_WLOCK(inp);
458         if (inp->inp_flags & (INP_TIMEWAIT | INP_DROPPED)) {
459                 error = EINVAL;
460                 goto out;
461         }
462         tp = intotcpcb(inp);
463         TCPDEBUG1();
464         SOCK_LOCK(so);
465         error = solisten_proto_check(so);
466         INP_HASH_WLOCK(&V_tcbinfo);
467         if (error == 0 && inp->inp_lport == 0) {
468                 inp->inp_vflag &= ~INP_IPV4;
469                 if ((inp->inp_flags & IN6P_IPV6_V6ONLY) == 0)
470                         inp->inp_vflag |= INP_IPV4;
471                 error = in6_pcbbind(inp, (struct sockaddr *)0, td->td_ucred);
472         }
473         INP_HASH_WUNLOCK(&V_tcbinfo);
474         if (error == 0) {
475                 tcp_state_change(tp, TCPS_LISTEN);
476                 solisten_proto(so, backlog);
477 #ifdef TCP_OFFLOAD
478                 if ((so->so_options & SO_NO_OFFLOAD) == 0)
479                         tcp_offload_listen_start(tp);
480 #endif
481         }
482         SOCK_UNLOCK(so);
483
484         if (IS_FASTOPEN(tp->t_flags))
485                 tp->t_tfo_pending = tcp_fastopen_alloc_counter();
486
487 out:
488         TCPDEBUG2(PRU_LISTEN);
489         TCP_PROBE2(debug__user, tp, PRU_LISTEN);
490         INP_WUNLOCK(inp);
491         return (error);
492 }
493 #endif /* INET6 */
494
495 #ifdef INET
496 /*
497  * Initiate connection to peer.
498  * Create a template for use in transmissions on this connection.
499  * Enter SYN_SENT state, and mark socket as connecting.
500  * Start keep-alive timer, and seed output sequence space.
501  * Send initial segment on connection.
502  */
503 static int
504 tcp_usr_connect(struct socket *so, struct sockaddr *nam, struct thread *td)
505 {
506         int error = 0;
507         struct inpcb *inp;
508         struct tcpcb *tp = NULL;
509         struct sockaddr_in *sinp;
510
511         sinp = (struct sockaddr_in *)nam;
512         if (nam->sa_len != sizeof (*sinp))
513                 return (EINVAL);
514         /*
515          * Must disallow TCP ``connections'' to multicast addresses.
516          */
517         if (sinp->sin_family == AF_INET
518             && IN_MULTICAST(ntohl(sinp->sin_addr.s_addr)))
519                 return (EAFNOSUPPORT);
520         if ((error = prison_remote_ip4(td->td_ucred, &sinp->sin_addr)) != 0)
521                 return (error);
522
523         TCPDEBUG0;
524         inp = sotoinpcb(so);
525         KASSERT(inp != NULL, ("tcp_usr_connect: inp == NULL"));
526         INP_WLOCK(inp);
527         if (inp->inp_flags & INP_TIMEWAIT) {
528                 error = EADDRINUSE;
529                 goto out;
530         }
531         if (inp->inp_flags & INP_DROPPED) {
532                 error = ECONNREFUSED;
533                 goto out;
534         }
535         tp = intotcpcb(inp);
536         TCPDEBUG1();
537         if ((error = tcp_connect(tp, nam, td)) != 0)
538                 goto out;
539 #ifdef TCP_OFFLOAD
540         if (registered_toedevs > 0 &&
541             (so->so_options & SO_NO_OFFLOAD) == 0 &&
542             (error = tcp_offload_connect(so, nam)) == 0)
543                 goto out;
544 #endif
545         tcp_timer_activate(tp, TT_KEEP, TP_KEEPINIT(tp));
546         error = tp->t_fb->tfb_tcp_output(tp);
547 out:
548         TCPDEBUG2(PRU_CONNECT);
549         TCP_PROBE2(debug__user, tp, PRU_CONNECT);
550         INP_WUNLOCK(inp);
551         return (error);
552 }
553 #endif /* INET */
554
555 #ifdef INET6
556 static int
557 tcp6_usr_connect(struct socket *so, struct sockaddr *nam, struct thread *td)
558 {
559         int error = 0;
560         struct inpcb *inp;
561         struct tcpcb *tp = NULL;
562         struct sockaddr_in6 *sin6p;
563
564         TCPDEBUG0;
565
566         sin6p = (struct sockaddr_in6 *)nam;
567         if (nam->sa_len != sizeof (*sin6p))
568                 return (EINVAL);
569         /*
570          * Must disallow TCP ``connections'' to multicast addresses.
571          */
572         if (sin6p->sin6_family == AF_INET6
573             && IN6_IS_ADDR_MULTICAST(&sin6p->sin6_addr))
574                 return (EAFNOSUPPORT);
575
576         inp = sotoinpcb(so);
577         KASSERT(inp != NULL, ("tcp6_usr_connect: inp == NULL"));
578         INP_WLOCK(inp);
579         if (inp->inp_flags & INP_TIMEWAIT) {
580                 error = EADDRINUSE;
581                 goto out;
582         }
583         if (inp->inp_flags & INP_DROPPED) {
584                 error = ECONNREFUSED;
585                 goto out;
586         }
587         tp = intotcpcb(inp);
588         TCPDEBUG1();
589 #ifdef INET
590         /*
591          * XXXRW: Some confusion: V4/V6 flags relate to binding, and
592          * therefore probably require the hash lock, which isn't held here.
593          * Is this a significant problem?
594          */
595         if (IN6_IS_ADDR_V4MAPPED(&sin6p->sin6_addr)) {
596                 struct sockaddr_in sin;
597
598                 if ((inp->inp_flags & IN6P_IPV6_V6ONLY) != 0) {
599                         error = EINVAL;
600                         goto out;
601                 }
602                 if ((inp->inp_vflag & INP_IPV4) == 0) {
603                         error = EAFNOSUPPORT;
604                         goto out;
605                 }
606
607                 in6_sin6_2_sin(&sin, sin6p);
608                 inp->inp_vflag |= INP_IPV4;
609                 inp->inp_vflag &= ~INP_IPV6;
610                 if ((error = prison_remote_ip4(td->td_ucred,
611                     &sin.sin_addr)) != 0)
612                         goto out;
613                 if ((error = tcp_connect(tp, (struct sockaddr *)&sin, td)) != 0)
614                         goto out;
615 #ifdef TCP_OFFLOAD
616                 if (registered_toedevs > 0 &&
617                     (so->so_options & SO_NO_OFFLOAD) == 0 &&
618                     (error = tcp_offload_connect(so, nam)) == 0)
619                         goto out;
620 #endif
621                 error = tp->t_fb->tfb_tcp_output(tp);
622                 goto out;
623         } else {
624                 if ((inp->inp_vflag & INP_IPV6) == 0) {
625                         error = EAFNOSUPPORT;
626                         goto out;
627                 }
628         }
629 #endif
630         inp->inp_vflag &= ~INP_IPV4;
631         inp->inp_vflag |= INP_IPV6;
632         inp->inp_inc.inc_flags |= INC_ISIPV6;
633         if ((error = prison_remote_ip6(td->td_ucred, &sin6p->sin6_addr)) != 0)
634                 goto out;
635         if ((error = tcp6_connect(tp, nam, td)) != 0)
636                 goto out;
637 #ifdef TCP_OFFLOAD
638         if (registered_toedevs > 0 &&
639             (so->so_options & SO_NO_OFFLOAD) == 0 &&
640             (error = tcp_offload_connect(so, nam)) == 0)
641                 goto out;
642 #endif
643         tcp_timer_activate(tp, TT_KEEP, TP_KEEPINIT(tp));
644         error = tp->t_fb->tfb_tcp_output(tp);
645
646 out:
647         TCPDEBUG2(PRU_CONNECT);
648         TCP_PROBE2(debug__user, tp, PRU_CONNECT);
649         INP_WUNLOCK(inp);
650         return (error);
651 }
652 #endif /* INET6 */
653
654 /*
655  * Initiate disconnect from peer.
656  * If connection never passed embryonic stage, just drop;
657  * else if don't need to let data drain, then can just drop anyways,
658  * else have to begin TCP shutdown process: mark socket disconnecting,
659  * drain unread data, state switch to reflect user close, and
660  * send segment (e.g. FIN) to peer.  Socket will be really disconnected
661  * when peer sends FIN and acks ours.
662  *
663  * SHOULD IMPLEMENT LATER PRU_CONNECT VIA REALLOC TCPCB.
664  */
665 static int
666 tcp_usr_disconnect(struct socket *so)
667 {
668         struct inpcb *inp;
669         struct tcpcb *tp = NULL;
670         int error = 0;
671
672         TCPDEBUG0;
673         INP_INFO_RLOCK(&V_tcbinfo);
674         inp = sotoinpcb(so);
675         KASSERT(inp != NULL, ("tcp_usr_disconnect: inp == NULL"));
676         INP_WLOCK(inp);
677         if (inp->inp_flags & INP_TIMEWAIT)
678                 goto out;
679         if (inp->inp_flags & INP_DROPPED) {
680                 error = ECONNRESET;
681                 goto out;
682         }
683         tp = intotcpcb(inp);
684         TCPDEBUG1();
685         tcp_disconnect(tp);
686 out:
687         TCPDEBUG2(PRU_DISCONNECT);
688         TCP_PROBE2(debug__user, tp, PRU_DISCONNECT);
689         INP_WUNLOCK(inp);
690         INP_INFO_RUNLOCK(&V_tcbinfo);
691         return (error);
692 }
693
694 #ifdef INET
695 /*
696  * Accept a connection.  Essentially all the work is done at higher levels;
697  * just return the address of the peer, storing through addr.
698  */
699 static int
700 tcp_usr_accept(struct socket *so, struct sockaddr **nam)
701 {
702         int error = 0;
703         struct inpcb *inp = NULL;
704         struct tcpcb *tp = NULL;
705         struct in_addr addr;
706         in_port_t port = 0;
707         TCPDEBUG0;
708
709         if (so->so_state & SS_ISDISCONNECTED)
710                 return (ECONNABORTED);
711
712         inp = sotoinpcb(so);
713         KASSERT(inp != NULL, ("tcp_usr_accept: inp == NULL"));
714         INP_WLOCK(inp);
715         if (inp->inp_flags & (INP_TIMEWAIT | INP_DROPPED)) {
716                 error = ECONNABORTED;
717                 goto out;
718         }
719         tp = intotcpcb(inp);
720         TCPDEBUG1();
721
722         /*
723          * We inline in_getpeeraddr and COMMON_END here, so that we can
724          * copy the data of interest and defer the malloc until after we
725          * release the lock.
726          */
727         port = inp->inp_fport;
728         addr = inp->inp_faddr;
729
730 out:
731         TCPDEBUG2(PRU_ACCEPT);
732         TCP_PROBE2(debug__user, tp, PRU_ACCEPT);
733         INP_WUNLOCK(inp);
734         if (error == 0)
735                 *nam = in_sockaddr(port, &addr);
736         return error;
737 }
738 #endif /* INET */
739
740 #ifdef INET6
741 static int
742 tcp6_usr_accept(struct socket *so, struct sockaddr **nam)
743 {
744         struct inpcb *inp = NULL;
745         int error = 0;
746         struct tcpcb *tp = NULL;
747         struct in_addr addr;
748         struct in6_addr addr6;
749         in_port_t port = 0;
750         int v4 = 0;
751         TCPDEBUG0;
752
753         if (so->so_state & SS_ISDISCONNECTED)
754                 return (ECONNABORTED);
755
756         inp = sotoinpcb(so);
757         KASSERT(inp != NULL, ("tcp6_usr_accept: inp == NULL"));
758         INP_INFO_RLOCK(&V_tcbinfo);
759         INP_WLOCK(inp);
760         if (inp->inp_flags & (INP_TIMEWAIT | INP_DROPPED)) {
761                 error = ECONNABORTED;
762                 goto out;
763         }
764         tp = intotcpcb(inp);
765         TCPDEBUG1();
766
767         /*
768          * We inline in6_mapped_peeraddr and COMMON_END here, so that we can
769          * copy the data of interest and defer the malloc until after we
770          * release the lock.
771          */
772         if (inp->inp_vflag & INP_IPV4) {
773                 v4 = 1;
774                 port = inp->inp_fport;
775                 addr = inp->inp_faddr;
776         } else {
777                 port = inp->inp_fport;
778                 addr6 = inp->in6p_faddr;
779         }
780
781 out:
782         TCPDEBUG2(PRU_ACCEPT);
783         TCP_PROBE2(debug__user, tp, PRU_ACCEPT);
784         INP_WUNLOCK(inp);
785         INP_INFO_RUNLOCK(&V_tcbinfo);
786         if (error == 0) {
787                 if (v4)
788                         *nam = in6_v4mapsin6_sockaddr(port, &addr);
789                 else
790                         *nam = in6_sockaddr(port, &addr6);
791         }
792         return error;
793 }
794 #endif /* INET6 */
795
796 /*
797  * Mark the connection as being incapable of further output.
798  */
799 static int
800 tcp_usr_shutdown(struct socket *so)
801 {
802         int error = 0;
803         struct inpcb *inp;
804         struct tcpcb *tp = NULL;
805
806         TCPDEBUG0;
807         INP_INFO_RLOCK(&V_tcbinfo);
808         inp = sotoinpcb(so);
809         KASSERT(inp != NULL, ("inp == NULL"));
810         INP_WLOCK(inp);
811         if (inp->inp_flags & (INP_TIMEWAIT | INP_DROPPED)) {
812                 error = ECONNRESET;
813                 goto out;
814         }
815         tp = intotcpcb(inp);
816         TCPDEBUG1();
817         socantsendmore(so);
818         tcp_usrclosed(tp);
819         if (!(inp->inp_flags & INP_DROPPED))
820                 error = tp->t_fb->tfb_tcp_output(tp);
821
822 out:
823         TCPDEBUG2(PRU_SHUTDOWN);
824         TCP_PROBE2(debug__user, tp, PRU_SHUTDOWN);
825         INP_WUNLOCK(inp);
826         INP_INFO_RUNLOCK(&V_tcbinfo);
827
828         return (error);
829 }
830
831 /*
832  * After a receive, possibly send window update to peer.
833  */
834 static int
835 tcp_usr_rcvd(struct socket *so, int flags)
836 {
837         struct inpcb *inp;
838         struct tcpcb *tp = NULL;
839         int error = 0;
840
841         TCPDEBUG0;
842         inp = sotoinpcb(so);
843         KASSERT(inp != NULL, ("tcp_usr_rcvd: inp == NULL"));
844         INP_WLOCK(inp);
845         if (inp->inp_flags & (INP_TIMEWAIT | INP_DROPPED)) {
846                 error = ECONNRESET;
847                 goto out;
848         }
849         tp = intotcpcb(inp);
850         TCPDEBUG1();
851         /*
852          * For passively-created TFO connections, don't attempt a window
853          * update while still in SYN_RECEIVED as this may trigger an early
854          * SYN|ACK.  It is preferable to have the SYN|ACK be sent along with
855          * application response data, or failing that, when the DELACK timer
856          * expires.
857          */
858         if (IS_FASTOPEN(tp->t_flags) &&
859             (tp->t_state == TCPS_SYN_RECEIVED))
860                 goto out;
861 #ifdef TCP_OFFLOAD
862         if (tp->t_flags & TF_TOE)
863                 tcp_offload_rcvd(tp);
864         else
865 #endif
866         tp->t_fb->tfb_tcp_output(tp);
867
868 out:
869         TCPDEBUG2(PRU_RCVD);
870         TCP_PROBE2(debug__user, tp, PRU_RCVD);
871         INP_WUNLOCK(inp);
872         return (error);
873 }
874
875 /*
876  * Do a send by putting data in output queue and updating urgent
877  * marker if URG set.  Possibly send more data.  Unlike the other
878  * pru_*() routines, the mbuf chains are our responsibility.  We
879  * must either enqueue them or free them.  The other pru_* routines
880  * generally are caller-frees.
881  */
882 static int
883 tcp_usr_send(struct socket *so, int flags, struct mbuf *m,
884     struct sockaddr *nam, struct mbuf *control, struct thread *td)
885 {
886         int error = 0;
887         struct inpcb *inp;
888         struct tcpcb *tp = NULL;
889 #ifdef INET6
890         int isipv6;
891 #endif
892         TCPDEBUG0;
893
894         /*
895          * We require the pcbinfo lock if we will close the socket as part of
896          * this call.
897          */
898         if (flags & PRUS_EOF)
899                 INP_INFO_RLOCK(&V_tcbinfo);
900         inp = sotoinpcb(so);
901         KASSERT(inp != NULL, ("tcp_usr_send: inp == NULL"));
902         INP_WLOCK(inp);
903         if (inp->inp_flags & (INP_TIMEWAIT | INP_DROPPED)) {
904                 if (control)
905                         m_freem(control);
906                 /*
907                  * In case of PRUS_NOTREADY, tcp_usr_ready() is responsible
908                  * for freeing memory.
909                  */
910                 if (m && (flags & PRUS_NOTREADY) == 0)
911                         m_freem(m);
912                 error = ECONNRESET;
913                 goto out;
914         }
915 #ifdef INET6
916         isipv6 = nam && nam->sa_family == AF_INET6;
917 #endif /* INET6 */
918         tp = intotcpcb(inp);
919         TCPDEBUG1();
920         if (control) {
921                 /* TCP doesn't do control messages (rights, creds, etc) */
922                 if (control->m_len) {
923                         m_freem(control);
924                         if (m)
925                                 m_freem(m);
926                         error = EINVAL;
927                         goto out;
928                 }
929                 m_freem(control);       /* empty control, just free it */
930         }
931         if (!(flags & PRUS_OOB)) {
932                 sbappendstream(&so->so_snd, m, flags);
933                 if (nam && tp->t_state < TCPS_SYN_SENT) {
934                         /*
935                          * Do implied connect if not yet connected,
936                          * initialize window to default value, and
937                          * initialize maxseg using peer's cached MSS.
938                          */
939 #ifdef INET6
940                         if (isipv6)
941                                 error = tcp6_connect(tp, nam, td);
942 #endif /* INET6 */
943 #if defined(INET6) && defined(INET)
944                         else
945 #endif
946 #ifdef INET
947                                 error = tcp_connect(tp, nam, td);
948 #endif
949                         if (error)
950                                 goto out;
951                         if (IS_FASTOPEN(tp->t_flags))
952                                 tcp_fastopen_connect(tp);
953                         else {
954                                 tp->snd_wnd = TTCP_CLIENT_SND_WND;
955                                 tcp_mss(tp, -1);
956                         }
957                 }
958                 if (flags & PRUS_EOF) {
959                         /*
960                          * Close the send side of the connection after
961                          * the data is sent.
962                          */
963                         INP_INFO_RLOCK_ASSERT(&V_tcbinfo);
964                         socantsendmore(so);
965                         tcp_usrclosed(tp);
966                 }
967                 if (!(inp->inp_flags & INP_DROPPED) &&
968                     !(flags & PRUS_NOTREADY)) {
969                         if (flags & PRUS_MORETOCOME)
970                                 tp->t_flags |= TF_MORETOCOME;
971                         error = tp->t_fb->tfb_tcp_output(tp);
972                         if (flags & PRUS_MORETOCOME)
973                                 tp->t_flags &= ~TF_MORETOCOME;
974                 }
975         } else {
976                 /*
977                  * XXXRW: PRUS_EOF not implemented with PRUS_OOB?
978                  */
979                 SOCKBUF_LOCK(&so->so_snd);
980                 if (sbspace(&so->so_snd) < -512) {
981                         SOCKBUF_UNLOCK(&so->so_snd);
982                         m_freem(m);
983                         error = ENOBUFS;
984                         goto out;
985                 }
986                 /*
987                  * According to RFC961 (Assigned Protocols),
988                  * the urgent pointer points to the last octet
989                  * of urgent data.  We continue, however,
990                  * to consider it to indicate the first octet
991                  * of data past the urgent section.
992                  * Otherwise, snd_up should be one lower.
993                  */
994                 sbappendstream_locked(&so->so_snd, m, flags);
995                 SOCKBUF_UNLOCK(&so->so_snd);
996                 if (nam && tp->t_state < TCPS_SYN_SENT) {
997                         /*
998                          * Do implied connect if not yet connected,
999                          * initialize window to default value, and
1000                          * initialize maxseg using peer's cached MSS.
1001                          */
1002
1003                         /*
1004                          * Not going to contemplate SYN|URG
1005                          */
1006                         if (IS_FASTOPEN(tp->t_flags))
1007                                 tp->t_flags &= ~TF_FASTOPEN;
1008 #ifdef INET6
1009                         if (isipv6)
1010                                 error = tcp6_connect(tp, nam, td);
1011 #endif /* INET6 */
1012 #if defined(INET6) && defined(INET)
1013                         else
1014 #endif
1015 #ifdef INET
1016                                 error = tcp_connect(tp, nam, td);
1017 #endif
1018                         if (error)
1019                                 goto out;
1020                         tp->snd_wnd = TTCP_CLIENT_SND_WND;
1021                         tcp_mss(tp, -1);
1022                 }
1023                 tp->snd_up = tp->snd_una + sbavail(&so->so_snd);
1024                 if (!(flags & PRUS_NOTREADY)) {
1025                         tp->t_flags |= TF_FORCEDATA;
1026                         error = tp->t_fb->tfb_tcp_output(tp);
1027                         tp->t_flags &= ~TF_FORCEDATA;
1028                 }
1029         }
1030         TCP_LOG_EVENT(tp, NULL,
1031             &inp->inp_socket->so_rcv,
1032             &inp->inp_socket->so_snd,
1033             TCP_LOG_USERSEND, error,
1034             0, NULL, false);
1035 out:
1036         TCPDEBUG2((flags & PRUS_OOB) ? PRU_SENDOOB :
1037                   ((flags & PRUS_EOF) ? PRU_SEND_EOF : PRU_SEND));
1038         TCP_PROBE2(debug__user, tp, (flags & PRUS_OOB) ? PRU_SENDOOB :
1039                    ((flags & PRUS_EOF) ? PRU_SEND_EOF : PRU_SEND));
1040         INP_WUNLOCK(inp);
1041         if (flags & PRUS_EOF)
1042                 INP_INFO_RUNLOCK(&V_tcbinfo);
1043         return (error);
1044 }
1045
1046 static int
1047 tcp_usr_ready(struct socket *so, struct mbuf *m, int count)
1048 {
1049         struct inpcb *inp;
1050         struct tcpcb *tp;
1051         int error;
1052
1053         inp = sotoinpcb(so);
1054         INP_WLOCK(inp);
1055         if (inp->inp_flags & (INP_TIMEWAIT | INP_DROPPED)) {
1056                 INP_WUNLOCK(inp);
1057                 for (int i = 0; i < count; i++)
1058                         m = m_free(m);
1059                 return (ECONNRESET);
1060         }
1061         tp = intotcpcb(inp);
1062
1063         SOCKBUF_LOCK(&so->so_snd);
1064         error = sbready(&so->so_snd, m, count);
1065         SOCKBUF_UNLOCK(&so->so_snd);
1066         if (error == 0)
1067                 error = tp->t_fb->tfb_tcp_output(tp);
1068         INP_WUNLOCK(inp);
1069
1070         return (error);
1071 }
1072
1073 /*
1074  * Abort the TCP.  Drop the connection abruptly.
1075  */
1076 static void
1077 tcp_usr_abort(struct socket *so)
1078 {
1079         struct inpcb *inp;
1080         struct tcpcb *tp = NULL;
1081         TCPDEBUG0;
1082
1083         inp = sotoinpcb(so);
1084         KASSERT(inp != NULL, ("tcp_usr_abort: inp == NULL"));
1085
1086         INP_INFO_RLOCK(&V_tcbinfo);
1087         INP_WLOCK(inp);
1088         KASSERT(inp->inp_socket != NULL,
1089             ("tcp_usr_abort: inp_socket == NULL"));
1090
1091         /*
1092          * If we still have full TCP state, and we're not dropped, drop.
1093          */
1094         if (!(inp->inp_flags & INP_TIMEWAIT) &&
1095             !(inp->inp_flags & INP_DROPPED)) {
1096                 tp = intotcpcb(inp);
1097                 TCPDEBUG1();
1098                 tcp_drop(tp, ECONNABORTED);
1099                 TCPDEBUG2(PRU_ABORT);
1100                 TCP_PROBE2(debug__user, tp, PRU_ABORT);
1101         }
1102         if (!(inp->inp_flags & INP_DROPPED)) {
1103                 SOCK_LOCK(so);
1104                 so->so_state |= SS_PROTOREF;
1105                 SOCK_UNLOCK(so);
1106                 inp->inp_flags |= INP_SOCKREF;
1107         }
1108         INP_WUNLOCK(inp);
1109         INP_INFO_RUNLOCK(&V_tcbinfo);
1110 }
1111
1112 /*
1113  * TCP socket is closed.  Start friendly disconnect.
1114  */
1115 static void
1116 tcp_usr_close(struct socket *so)
1117 {
1118         struct inpcb *inp;
1119         struct tcpcb *tp = NULL;
1120         TCPDEBUG0;
1121
1122         inp = sotoinpcb(so);
1123         KASSERT(inp != NULL, ("tcp_usr_close: inp == NULL"));
1124
1125         INP_INFO_RLOCK(&V_tcbinfo);
1126         INP_WLOCK(inp);
1127         KASSERT(inp->inp_socket != NULL,
1128             ("tcp_usr_close: inp_socket == NULL"));
1129
1130         /*
1131          * If we still have full TCP state, and we're not dropped, initiate
1132          * a disconnect.
1133          */
1134         if (!(inp->inp_flags & INP_TIMEWAIT) &&
1135             !(inp->inp_flags & INP_DROPPED)) {
1136                 tp = intotcpcb(inp);
1137                 TCPDEBUG1();
1138                 tcp_disconnect(tp);
1139                 TCPDEBUG2(PRU_CLOSE);
1140                 TCP_PROBE2(debug__user, tp, PRU_CLOSE);
1141         }
1142         if (!(inp->inp_flags & INP_DROPPED)) {
1143                 SOCK_LOCK(so);
1144                 so->so_state |= SS_PROTOREF;
1145                 SOCK_UNLOCK(so);
1146                 inp->inp_flags |= INP_SOCKREF;
1147         }
1148         INP_WUNLOCK(inp);
1149         INP_INFO_RUNLOCK(&V_tcbinfo);
1150 }
1151
1152 /*
1153  * Receive out-of-band data.
1154  */
1155 static int
1156 tcp_usr_rcvoob(struct socket *so, struct mbuf *m, int flags)
1157 {
1158         int error = 0;
1159         struct inpcb *inp;
1160         struct tcpcb *tp = NULL;
1161
1162         TCPDEBUG0;
1163         inp = sotoinpcb(so);
1164         KASSERT(inp != NULL, ("tcp_usr_rcvoob: inp == NULL"));
1165         INP_WLOCK(inp);
1166         if (inp->inp_flags & (INP_TIMEWAIT | INP_DROPPED)) {
1167                 error = ECONNRESET;
1168                 goto out;
1169         }
1170         tp = intotcpcb(inp);
1171         TCPDEBUG1();
1172         if ((so->so_oobmark == 0 &&
1173              (so->so_rcv.sb_state & SBS_RCVATMARK) == 0) ||
1174             so->so_options & SO_OOBINLINE ||
1175             tp->t_oobflags & TCPOOB_HADDATA) {
1176                 error = EINVAL;
1177                 goto out;
1178         }
1179         if ((tp->t_oobflags & TCPOOB_HAVEDATA) == 0) {
1180                 error = EWOULDBLOCK;
1181                 goto out;
1182         }
1183         m->m_len = 1;
1184         *mtod(m, caddr_t) = tp->t_iobc;
1185         if ((flags & MSG_PEEK) == 0)
1186                 tp->t_oobflags ^= (TCPOOB_HAVEDATA | TCPOOB_HADDATA);
1187
1188 out:
1189         TCPDEBUG2(PRU_RCVOOB);
1190         TCP_PROBE2(debug__user, tp, PRU_RCVOOB);
1191         INP_WUNLOCK(inp);
1192         return (error);
1193 }
1194
1195 #ifdef INET
1196 struct pr_usrreqs tcp_usrreqs = {
1197         .pru_abort =            tcp_usr_abort,
1198         .pru_accept =           tcp_usr_accept,
1199         .pru_attach =           tcp_usr_attach,
1200         .pru_bind =             tcp_usr_bind,
1201         .pru_connect =          tcp_usr_connect,
1202         .pru_control =          in_control,
1203         .pru_detach =           tcp_usr_detach,
1204         .pru_disconnect =       tcp_usr_disconnect,
1205         .pru_listen =           tcp_usr_listen,
1206         .pru_peeraddr =         in_getpeeraddr,
1207         .pru_rcvd =             tcp_usr_rcvd,
1208         .pru_rcvoob =           tcp_usr_rcvoob,
1209         .pru_send =             tcp_usr_send,
1210         .pru_ready =            tcp_usr_ready,
1211         .pru_shutdown =         tcp_usr_shutdown,
1212         .pru_sockaddr =         in_getsockaddr,
1213         .pru_sosetlabel =       in_pcbsosetlabel,
1214         .pru_close =            tcp_usr_close,
1215 };
1216 #endif /* INET */
1217
1218 #ifdef INET6
1219 struct pr_usrreqs tcp6_usrreqs = {
1220         .pru_abort =            tcp_usr_abort,
1221         .pru_accept =           tcp6_usr_accept,
1222         .pru_attach =           tcp_usr_attach,
1223         .pru_bind =             tcp6_usr_bind,
1224         .pru_connect =          tcp6_usr_connect,
1225         .pru_control =          in6_control,
1226         .pru_detach =           tcp_usr_detach,
1227         .pru_disconnect =       tcp_usr_disconnect,
1228         .pru_listen =           tcp6_usr_listen,
1229         .pru_peeraddr =         in6_mapped_peeraddr,
1230         .pru_rcvd =             tcp_usr_rcvd,
1231         .pru_rcvoob =           tcp_usr_rcvoob,
1232         .pru_send =             tcp_usr_send,
1233         .pru_ready =            tcp_usr_ready,
1234         .pru_shutdown =         tcp_usr_shutdown,
1235         .pru_sockaddr =         in6_mapped_sockaddr,
1236         .pru_sosetlabel =       in_pcbsosetlabel,
1237         .pru_close =            tcp_usr_close,
1238 };
1239 #endif /* INET6 */
1240
1241 #ifdef INET
1242 /*
1243  * Common subroutine to open a TCP connection to remote host specified
1244  * by struct sockaddr_in in mbuf *nam.  Call in_pcbbind to assign a local
1245  * port number if needed.  Call in_pcbconnect_setup to do the routing and
1246  * to choose a local host address (interface).  If there is an existing
1247  * incarnation of the same connection in TIME-WAIT state and if the remote
1248  * host was sending CC options and if the connection duration was < MSL, then
1249  * truncate the previous TIME-WAIT state and proceed.
1250  * Initialize connection parameters and enter SYN-SENT state.
1251  */
1252 static int
1253 tcp_connect(struct tcpcb *tp, struct sockaddr *nam, struct thread *td)
1254 {
1255         struct inpcb *inp = tp->t_inpcb, *oinp;
1256         struct socket *so = inp->inp_socket;
1257         struct in_addr laddr;
1258         u_short lport;
1259         int error;
1260
1261         INP_WLOCK_ASSERT(inp);
1262         INP_HASH_WLOCK(&V_tcbinfo);
1263
1264         if (inp->inp_lport == 0) {
1265                 error = in_pcbbind(inp, (struct sockaddr *)0, td->td_ucred);
1266                 if (error)
1267                         goto out;
1268         }
1269
1270         /*
1271          * Cannot simply call in_pcbconnect, because there might be an
1272          * earlier incarnation of this same connection still in
1273          * TIME_WAIT state, creating an ADDRINUSE error.
1274          */
1275         laddr = inp->inp_laddr;
1276         lport = inp->inp_lport;
1277         error = in_pcbconnect_setup(inp, nam, &laddr.s_addr, &lport,
1278             &inp->inp_faddr.s_addr, &inp->inp_fport, &oinp, td->td_ucred);
1279         if (error && oinp == NULL)
1280                 goto out;
1281         if (oinp) {
1282                 error = EADDRINUSE;
1283                 goto out;
1284         }
1285         inp->inp_laddr = laddr;
1286         in_pcbrehash(inp);
1287         INP_HASH_WUNLOCK(&V_tcbinfo);
1288
1289         /*
1290          * Compute window scaling to request:
1291          * Scale to fit into sweet spot.  See tcp_syncache.c.
1292          * XXX: This should move to tcp_output().
1293          */
1294         while (tp->request_r_scale < TCP_MAX_WINSHIFT &&
1295             (TCP_MAXWIN << tp->request_r_scale) < sb_max)
1296                 tp->request_r_scale++;
1297
1298         soisconnecting(so);
1299         TCPSTAT_INC(tcps_connattempt);
1300         tcp_state_change(tp, TCPS_SYN_SENT);
1301         tp->iss = tcp_new_isn(tp);
1302         tcp_sendseqinit(tp);
1303
1304         return 0;
1305
1306 out:
1307         INP_HASH_WUNLOCK(&V_tcbinfo);
1308         return (error);
1309 }
1310 #endif /* INET */
1311
1312 #ifdef INET6
1313 static int
1314 tcp6_connect(struct tcpcb *tp, struct sockaddr *nam, struct thread *td)
1315 {
1316         struct inpcb *inp = tp->t_inpcb;
1317         int error;
1318
1319         INP_WLOCK_ASSERT(inp);
1320         INP_HASH_WLOCK(&V_tcbinfo);
1321
1322         if (inp->inp_lport == 0) {
1323                 error = in6_pcbbind(inp, (struct sockaddr *)0, td->td_ucred);
1324                 if (error)
1325                         goto out;
1326         }
1327         error = in6_pcbconnect(inp, nam, td->td_ucred);
1328         if (error != 0)
1329                 goto out;
1330         INP_HASH_WUNLOCK(&V_tcbinfo);
1331
1332         /* Compute window scaling to request.  */
1333         while (tp->request_r_scale < TCP_MAX_WINSHIFT &&
1334             (TCP_MAXWIN << tp->request_r_scale) < sb_max)
1335                 tp->request_r_scale++;
1336
1337         soisconnecting(inp->inp_socket);
1338         TCPSTAT_INC(tcps_connattempt);
1339         tcp_state_change(tp, TCPS_SYN_SENT);
1340         tp->iss = tcp_new_isn(tp);
1341         tcp_sendseqinit(tp);
1342
1343         return 0;
1344
1345 out:
1346         INP_HASH_WUNLOCK(&V_tcbinfo);
1347         return error;
1348 }
1349 #endif /* INET6 */
1350
1351 /*
1352  * Export TCP internal state information via a struct tcp_info, based on the
1353  * Linux 2.6 API.  Not ABI compatible as our constants are mapped differently
1354  * (TCP state machine, etc).  We export all information using FreeBSD-native
1355  * constants -- for example, the numeric values for tcpi_state will differ
1356  * from Linux.
1357  */
1358 static void
1359 tcp_fill_info(struct tcpcb *tp, struct tcp_info *ti)
1360 {
1361
1362         INP_WLOCK_ASSERT(tp->t_inpcb);
1363         bzero(ti, sizeof(*ti));
1364
1365         ti->tcpi_state = tp->t_state;
1366         if ((tp->t_flags & TF_REQ_TSTMP) && (tp->t_flags & TF_RCVD_TSTMP))
1367                 ti->tcpi_options |= TCPI_OPT_TIMESTAMPS;
1368         if (tp->t_flags & TF_SACK_PERMIT)
1369                 ti->tcpi_options |= TCPI_OPT_SACK;
1370         if ((tp->t_flags & TF_REQ_SCALE) && (tp->t_flags & TF_RCVD_SCALE)) {
1371                 ti->tcpi_options |= TCPI_OPT_WSCALE;
1372                 ti->tcpi_snd_wscale = tp->snd_scale;
1373                 ti->tcpi_rcv_wscale = tp->rcv_scale;
1374         }
1375         if (tp->t_flags & TF_ECN_PERMIT)
1376                 ti->tcpi_options |= TCPI_OPT_ECN;
1377
1378         ti->tcpi_rto = tp->t_rxtcur * tick;
1379         ti->tcpi_last_data_recv = ((uint32_t)ticks - tp->t_rcvtime) * tick;
1380         ti->tcpi_rtt = ((u_int64_t)tp->t_srtt * tick) >> TCP_RTT_SHIFT;
1381         ti->tcpi_rttvar = ((u_int64_t)tp->t_rttvar * tick) >> TCP_RTTVAR_SHIFT;
1382
1383         ti->tcpi_snd_ssthresh = tp->snd_ssthresh;
1384         ti->tcpi_snd_cwnd = tp->snd_cwnd;
1385
1386         /*
1387          * FreeBSD-specific extension fields for tcp_info.
1388          */
1389         ti->tcpi_rcv_space = tp->rcv_wnd;
1390         ti->tcpi_rcv_nxt = tp->rcv_nxt;
1391         ti->tcpi_snd_wnd = tp->snd_wnd;
1392         ti->tcpi_snd_bwnd = 0;          /* Unused, kept for compat. */
1393         ti->tcpi_snd_nxt = tp->snd_nxt;
1394         ti->tcpi_snd_mss = tp->t_maxseg;
1395         ti->tcpi_rcv_mss = tp->t_maxseg;
1396         ti->tcpi_snd_rexmitpack = tp->t_sndrexmitpack;
1397         ti->tcpi_rcv_ooopack = tp->t_rcvoopack;
1398         ti->tcpi_snd_zerowin = tp->t_sndzerowin;
1399 #ifdef TCP_OFFLOAD
1400         if (tp->t_flags & TF_TOE) {
1401                 ti->tcpi_options |= TCPI_OPT_TOE;
1402                 tcp_offload_tcp_info(tp, ti);
1403         }
1404 #endif
1405 }
1406
1407 /*
1408  * tcp_ctloutput() must drop the inpcb lock before performing copyin on
1409  * socket option arguments.  When it re-acquires the lock after the copy, it
1410  * has to revalidate that the connection is still valid for the socket
1411  * option.
1412  */
1413 #define INP_WLOCK_RECHECK_CLEANUP(inp, cleanup) do {                    \
1414         INP_WLOCK(inp);                                                 \
1415         if (inp->inp_flags & (INP_TIMEWAIT | INP_DROPPED)) {            \
1416                 INP_WUNLOCK(inp);                                       \
1417                 cleanup;                                                \
1418                 return (ECONNRESET);                                    \
1419         }                                                               \
1420         tp = intotcpcb(inp);                                            \
1421 } while(0)
1422 #define INP_WLOCK_RECHECK(inp) INP_WLOCK_RECHECK_CLEANUP((inp), /* noop */)
1423
1424 int
1425 tcp_ctloutput(struct socket *so, struct sockopt *sopt)
1426 {
1427         int     error;
1428         struct  inpcb *inp;
1429         struct  tcpcb *tp;
1430         struct tcp_function_block *blk;
1431         struct tcp_function_set fsn;
1432
1433         error = 0;
1434         inp = sotoinpcb(so);
1435         KASSERT(inp != NULL, ("tcp_ctloutput: inp == NULL"));
1436         INP_WLOCK(inp);
1437         if (sopt->sopt_level != IPPROTO_TCP) {
1438 #ifdef INET6
1439                 if (inp->inp_vflag & INP_IPV6PROTO) {
1440                         INP_WUNLOCK(inp);
1441                         error = ip6_ctloutput(so, sopt);
1442                 }
1443 #endif /* INET6 */
1444 #if defined(INET6) && defined(INET)
1445                 else
1446 #endif
1447 #ifdef INET
1448                 {
1449                         INP_WUNLOCK(inp);
1450                         error = ip_ctloutput(so, sopt);
1451                 }
1452 #endif
1453                 return (error);
1454         }
1455         if (inp->inp_flags & (INP_TIMEWAIT | INP_DROPPED)) {
1456                 INP_WUNLOCK(inp);
1457                 return (ECONNRESET);
1458         }
1459         tp = intotcpcb(inp);
1460         /*
1461          * Protect the TCP option TCP_FUNCTION_BLK so
1462          * that a sub-function can *never* overwrite this.
1463          */
1464         if ((sopt->sopt_dir == SOPT_SET) && 
1465             (sopt->sopt_name == TCP_FUNCTION_BLK)) {
1466                 INP_WUNLOCK(inp);
1467                 error = sooptcopyin(sopt, &fsn, sizeof fsn,
1468                     sizeof fsn);
1469                 if (error)
1470                         return (error);
1471                 INP_WLOCK_RECHECK(inp);
1472                 blk = find_and_ref_tcp_functions(&fsn);
1473                 if (blk == NULL) {
1474                         INP_WUNLOCK(inp);
1475                         return (ENOENT);
1476                 }
1477                 if (tp->t_fb == blk) {
1478                         /* You already have this */
1479                         refcount_release(&blk->tfb_refcnt);
1480                         INP_WUNLOCK(inp);
1481                         return (0);
1482                 }
1483                 if (tp->t_state != TCPS_CLOSED) {
1484                         int error=EINVAL;
1485                         /* 
1486                          * The user has advanced the state
1487                          * past the initial point, we may not
1488                          * be able to switch. 
1489                          */
1490                         if (blk->tfb_tcp_handoff_ok != NULL) {
1491                                 /* 
1492                                  * Does the stack provide a
1493                                  * query mechanism, if so it may
1494                                  * still be possible?
1495                                  */
1496                                 error = (*blk->tfb_tcp_handoff_ok)(tp);
1497                         }
1498                         if (error) {
1499                                 refcount_release(&blk->tfb_refcnt);
1500                                 INP_WUNLOCK(inp);
1501                                 return(error);
1502                         }
1503                 }
1504                 if (blk->tfb_flags & TCP_FUNC_BEING_REMOVED) {
1505                         refcount_release(&blk->tfb_refcnt);
1506                         INP_WUNLOCK(inp);
1507                         return (ENOENT);
1508                 }
1509                 /* 
1510                  * Release the old refcnt, the
1511                  * lookup acquired a ref on the
1512                  * new one already.
1513                  */
1514                 if (tp->t_fb->tfb_tcp_fb_fini) {
1515                         /* 
1516                          * Tell the stack to cleanup with 0 i.e.
1517                          * the tcb is not going away.
1518                          */
1519                         (*tp->t_fb->tfb_tcp_fb_fini)(tp, 0);
1520                 }
1521                 refcount_release(&tp->t_fb->tfb_refcnt);
1522                 tp->t_fb = blk;
1523                 if (tp->t_fb->tfb_tcp_fb_init) {
1524                         (*tp->t_fb->tfb_tcp_fb_init)(tp);
1525                 }
1526 #ifdef TCP_OFFLOAD
1527                 if (tp->t_flags & TF_TOE) {
1528                         tcp_offload_ctloutput(tp, sopt->sopt_dir,
1529                              sopt->sopt_name);
1530                 }
1531 #endif
1532                 INP_WUNLOCK(inp);
1533                 return (error);
1534         } else if ((sopt->sopt_dir == SOPT_GET) && 
1535             (sopt->sopt_name == TCP_FUNCTION_BLK)) {
1536                 strncpy(fsn.function_set_name, tp->t_fb->tfb_tcp_block_name,
1537                     TCP_FUNCTION_NAME_LEN_MAX);
1538                 fsn.function_set_name[TCP_FUNCTION_NAME_LEN_MAX - 1] = '\0';
1539                 fsn.pcbcnt = tp->t_fb->tfb_refcnt;
1540                 INP_WUNLOCK(inp);
1541                 error = sooptcopyout(sopt, &fsn, sizeof fsn);
1542                 return (error);
1543         }
1544         /* Pass in the INP locked, called must unlock it */
1545         return (tp->t_fb->tfb_tcp_ctloutput(so, sopt, inp, tp));
1546 }
1547
1548 /*
1549  * If this assert becomes untrue, we need to change the size of the buf
1550  * variable in tcp_default_ctloutput().
1551  */
1552 #ifdef CTASSERT
1553 CTASSERT(TCP_CA_NAME_MAX <= TCP_LOG_ID_LEN);
1554 CTASSERT(TCP_LOG_REASON_LEN <= TCP_LOG_ID_LEN);
1555 #endif
1556
1557 int
1558 tcp_default_ctloutput(struct socket *so, struct sockopt *sopt, struct inpcb *inp, struct tcpcb *tp)
1559 {
1560         int     error, opt, optval;
1561         u_int   ui;
1562         struct  tcp_info ti;
1563         struct cc_algo *algo;
1564         char    *pbuf, buf[TCP_LOG_ID_LEN];
1565         size_t  len;
1566
1567         /*
1568          * For TCP_CCALGOOPT forward the control to CC module, for both
1569          * SOPT_SET and SOPT_GET.
1570          */
1571         switch (sopt->sopt_name) {
1572         case TCP_CCALGOOPT:
1573                 INP_WUNLOCK(inp);
1574                 pbuf = malloc(sopt->sopt_valsize, M_TEMP, M_WAITOK | M_ZERO);
1575                 error = sooptcopyin(sopt, pbuf, sopt->sopt_valsize,
1576                     sopt->sopt_valsize);
1577                 if (error) {
1578                         free(pbuf, M_TEMP);
1579                         return (error);
1580                 }
1581                 INP_WLOCK_RECHECK_CLEANUP(inp, free(pbuf, M_TEMP));
1582                 if (CC_ALGO(tp)->ctl_output != NULL)
1583                         error = CC_ALGO(tp)->ctl_output(tp->ccv, sopt, pbuf);
1584                 else
1585                         error = ENOENT;
1586                 INP_WUNLOCK(inp);
1587                 if (error == 0 && sopt->sopt_dir == SOPT_GET)
1588                         error = sooptcopyout(sopt, pbuf, sopt->sopt_valsize);
1589                 free(pbuf, M_TEMP);
1590                 return (error);
1591         }
1592
1593         switch (sopt->sopt_dir) {
1594         case SOPT_SET:
1595                 switch (sopt->sopt_name) {
1596 #if defined(IPSEC_SUPPORT) || defined(TCP_SIGNATURE)
1597                 case TCP_MD5SIG:
1598                         if (!TCPMD5_ENABLED()) {
1599                                 INP_WUNLOCK(inp);
1600                                 return (ENOPROTOOPT);
1601                         }
1602                         error = TCPMD5_PCBCTL(inp, sopt);
1603                         if (error)
1604                                 return (error);
1605                         goto unlock_and_done;
1606 #endif /* IPSEC */
1607
1608                 case TCP_NODELAY:
1609                 case TCP_NOOPT:
1610                         INP_WUNLOCK(inp);
1611                         error = sooptcopyin(sopt, &optval, sizeof optval,
1612                             sizeof optval);
1613                         if (error)
1614                                 return (error);
1615
1616                         INP_WLOCK_RECHECK(inp);
1617                         switch (sopt->sopt_name) {
1618                         case TCP_NODELAY:
1619                                 opt = TF_NODELAY;
1620                                 break;
1621                         case TCP_NOOPT:
1622                                 opt = TF_NOOPT;
1623                                 break;
1624                         default:
1625                                 opt = 0; /* dead code to fool gcc */
1626                                 break;
1627                         }
1628
1629                         if (optval)
1630                                 tp->t_flags |= opt;
1631                         else
1632                                 tp->t_flags &= ~opt;
1633 unlock_and_done:
1634 #ifdef TCP_OFFLOAD
1635                         if (tp->t_flags & TF_TOE) {
1636                                 tcp_offload_ctloutput(tp, sopt->sopt_dir,
1637                                     sopt->sopt_name);
1638                         }
1639 #endif
1640                         INP_WUNLOCK(inp);
1641                         break;
1642
1643                 case TCP_NOPUSH:
1644                         INP_WUNLOCK(inp);
1645                         error = sooptcopyin(sopt, &optval, sizeof optval,
1646                             sizeof optval);
1647                         if (error)
1648                                 return (error);
1649
1650                         INP_WLOCK_RECHECK(inp);
1651                         if (optval)
1652                                 tp->t_flags |= TF_NOPUSH;
1653                         else if (tp->t_flags & TF_NOPUSH) {
1654                                 tp->t_flags &= ~TF_NOPUSH;
1655                                 if (TCPS_HAVEESTABLISHED(tp->t_state))
1656                                         error = tp->t_fb->tfb_tcp_output(tp);
1657                         }
1658                         goto unlock_and_done;
1659
1660                 case TCP_MAXSEG:
1661                         INP_WUNLOCK(inp);
1662                         error = sooptcopyin(sopt, &optval, sizeof optval,
1663                             sizeof optval);
1664                         if (error)
1665                                 return (error);
1666
1667                         INP_WLOCK_RECHECK(inp);
1668                         if (optval > 0 && optval <= tp->t_maxseg &&
1669                             optval + 40 >= V_tcp_minmss)
1670                                 tp->t_maxseg = optval;
1671                         else
1672                                 error = EINVAL;
1673                         goto unlock_and_done;
1674
1675                 case TCP_INFO:
1676                         INP_WUNLOCK(inp);
1677                         error = EINVAL;
1678                         break;
1679
1680                 case TCP_CONGESTION:
1681                         INP_WUNLOCK(inp);
1682                         error = sooptcopyin(sopt, buf, TCP_CA_NAME_MAX - 1, 1);
1683                         if (error)
1684                                 break;
1685                         buf[sopt->sopt_valsize] = '\0';
1686                         INP_WLOCK_RECHECK(inp);
1687                         CC_LIST_RLOCK();
1688                         STAILQ_FOREACH(algo, &cc_list, entries)
1689                                 if (strncmp(buf, algo->name,
1690                                     TCP_CA_NAME_MAX) == 0)
1691                                         break;
1692                         CC_LIST_RUNLOCK();
1693                         if (algo == NULL) {
1694                                 INP_WUNLOCK(inp);
1695                                 error = EINVAL;
1696                                 break;
1697                         }
1698                         /*
1699                          * We hold a write lock over the tcb so it's safe to
1700                          * do these things without ordering concerns.
1701                          */
1702                         if (CC_ALGO(tp)->cb_destroy != NULL)
1703                                 CC_ALGO(tp)->cb_destroy(tp->ccv);
1704                         CC_ALGO(tp) = algo;
1705                         /*
1706                          * If something goes pear shaped initialising the new
1707                          * algo, fall back to newreno (which does not
1708                          * require initialisation).
1709                          */
1710                         if (algo->cb_init != NULL &&
1711                             algo->cb_init(tp->ccv) != 0) {
1712                                 CC_ALGO(tp) = &newreno_cc_algo;
1713                                 /*
1714                                  * The only reason init should fail is
1715                                  * because of malloc.
1716                                  */
1717                                 error = ENOMEM;
1718                         }
1719                         INP_WUNLOCK(inp);
1720                         break;
1721
1722                 case TCP_KEEPIDLE:
1723                 case TCP_KEEPINTVL:
1724                 case TCP_KEEPINIT:
1725                         INP_WUNLOCK(inp);
1726                         error = sooptcopyin(sopt, &ui, sizeof(ui), sizeof(ui));
1727                         if (error)
1728                                 return (error);
1729
1730                         if (ui > (UINT_MAX / hz)) {
1731                                 error = EINVAL;
1732                                 break;
1733                         }
1734                         ui *= hz;
1735
1736                         INP_WLOCK_RECHECK(inp);
1737                         switch (sopt->sopt_name) {
1738                         case TCP_KEEPIDLE:
1739                                 tp->t_keepidle = ui;
1740                                 /*
1741                                  * XXX: better check current remaining
1742                                  * timeout and "merge" it with new value.
1743                                  */
1744                                 if ((tp->t_state > TCPS_LISTEN) &&
1745                                     (tp->t_state <= TCPS_CLOSING))
1746                                         tcp_timer_activate(tp, TT_KEEP,
1747                                             TP_KEEPIDLE(tp));
1748                                 break;
1749                         case TCP_KEEPINTVL:
1750                                 tp->t_keepintvl = ui;
1751                                 if ((tp->t_state == TCPS_FIN_WAIT_2) &&
1752                                     (TP_MAXIDLE(tp) > 0))
1753                                         tcp_timer_activate(tp, TT_2MSL,
1754                                             TP_MAXIDLE(tp));
1755                                 break;
1756                         case TCP_KEEPINIT:
1757                                 tp->t_keepinit = ui;
1758                                 if (tp->t_state == TCPS_SYN_RECEIVED ||
1759                                     tp->t_state == TCPS_SYN_SENT)
1760                                         tcp_timer_activate(tp, TT_KEEP,
1761                                             TP_KEEPINIT(tp));
1762                                 break;
1763                         }
1764                         goto unlock_and_done;
1765
1766                 case TCP_KEEPCNT:
1767                         INP_WUNLOCK(inp);
1768                         error = sooptcopyin(sopt, &ui, sizeof(ui), sizeof(ui));
1769                         if (error)
1770                                 return (error);
1771
1772                         INP_WLOCK_RECHECK(inp);
1773                         tp->t_keepcnt = ui;
1774                         if ((tp->t_state == TCPS_FIN_WAIT_2) &&
1775                             (TP_MAXIDLE(tp) > 0))
1776                                 tcp_timer_activate(tp, TT_2MSL,
1777                                     TP_MAXIDLE(tp));
1778                         goto unlock_and_done;
1779
1780 #ifdef TCPPCAP
1781                 case TCP_PCAP_OUT:
1782                 case TCP_PCAP_IN:
1783                         INP_WUNLOCK(inp);
1784                         error = sooptcopyin(sopt, &optval, sizeof optval,
1785                             sizeof optval);
1786                         if (error)
1787                                 return (error);
1788
1789                         INP_WLOCK_RECHECK(inp);
1790                         if (optval >= 0)
1791                                 tcp_pcap_set_sock_max(TCP_PCAP_OUT ?
1792                                         &(tp->t_outpkts) : &(tp->t_inpkts),
1793                                         optval);
1794                         else
1795                                 error = EINVAL;
1796                         goto unlock_and_done;
1797 #endif
1798
1799                 case TCP_FASTOPEN: {
1800                         struct tcp_fastopen tfo_optval;
1801
1802                         INP_WUNLOCK(inp);
1803                         if (!V_tcp_fastopen_client_enable &&
1804                             !V_tcp_fastopen_server_enable)
1805                                 return (EPERM);
1806
1807                         error = sooptcopyin(sopt, &tfo_optval,
1808                                     sizeof(tfo_optval), sizeof(int));
1809                         if (error)
1810                                 return (error);
1811
1812                         INP_WLOCK_RECHECK(inp);
1813                         if (tfo_optval.enable) {
1814                                 if (tp->t_state == TCPS_LISTEN) {
1815                                         if (!V_tcp_fastopen_server_enable) {
1816                                                 error = EPERM;
1817                                                 goto unlock_and_done;
1818                                         }
1819
1820                                         tp->t_flags |= TF_FASTOPEN;
1821                                         if (tp->t_tfo_pending == NULL)
1822                                                 tp->t_tfo_pending =
1823                                                     tcp_fastopen_alloc_counter();
1824                                 } else {
1825                                         /*
1826                                          * If a pre-shared key was provided,
1827                                          * stash it in the client cookie
1828                                          * field of the tcpcb for use during
1829                                          * connect.
1830                                          */
1831                                         if (sopt->sopt_valsize ==
1832                                             sizeof(tfo_optval)) {
1833                                                 memcpy(tp->t_tfo_cookie.client,
1834                                                        tfo_optval.psk,
1835                                                        TCP_FASTOPEN_PSK_LEN);
1836                                                 tp->t_tfo_client_cookie_len =
1837                                                     TCP_FASTOPEN_PSK_LEN;
1838                                         }
1839                                         tp->t_flags |= TF_FASTOPEN;
1840                                 }
1841                         } else
1842                                 tp->t_flags &= ~TF_FASTOPEN;
1843                         goto unlock_and_done;
1844                 }
1845
1846 #ifdef TCP_BLACKBOX
1847                 case TCP_LOG:
1848                         INP_WUNLOCK(inp);
1849                         error = sooptcopyin(sopt, &optval, sizeof optval,
1850                             sizeof optval);
1851                         if (error)
1852                                 return (error);
1853
1854                         INP_WLOCK_RECHECK(inp);
1855                         error = tcp_log_state_change(tp, optval);
1856                         goto unlock_and_done;
1857
1858                 case TCP_LOGBUF:
1859                         INP_WUNLOCK(inp);
1860                         error = EINVAL;
1861                         break;
1862
1863                 case TCP_LOGID:
1864                         INP_WUNLOCK(inp);
1865                         error = sooptcopyin(sopt, buf, TCP_LOG_ID_LEN - 1, 0);
1866                         if (error)
1867                                 break;
1868                         buf[sopt->sopt_valsize] = '\0';
1869                         INP_WLOCK_RECHECK(inp);
1870                         error = tcp_log_set_id(tp, buf);
1871                         /* tcp_log_set_id() unlocks the INP. */
1872                         break;
1873
1874                 case TCP_LOGDUMP:
1875                 case TCP_LOGDUMPID:
1876                         INP_WUNLOCK(inp);
1877                         error =
1878                             sooptcopyin(sopt, buf, TCP_LOG_REASON_LEN - 1, 0);
1879                         if (error)
1880                                 break;
1881                         buf[sopt->sopt_valsize] = '\0';
1882                         INP_WLOCK_RECHECK(inp);
1883                         if (sopt->sopt_name == TCP_LOGDUMP) {
1884                                 error = tcp_log_dump_tp_logbuf(tp, buf,
1885                                     M_WAITOK, true);
1886                                 INP_WUNLOCK(inp);
1887                         } else {
1888                                 tcp_log_dump_tp_bucket_logbufs(tp, buf);
1889                                 /*
1890                                  * tcp_log_dump_tp_bucket_logbufs() drops the
1891                                  * INP lock.
1892                                  */
1893                         }
1894                         break;
1895 #endif
1896
1897                 default:
1898                         INP_WUNLOCK(inp);
1899                         error = ENOPROTOOPT;
1900                         break;
1901                 }
1902                 break;
1903
1904         case SOPT_GET:
1905                 tp = intotcpcb(inp);
1906                 switch (sopt->sopt_name) {
1907 #if defined(IPSEC_SUPPORT) || defined(TCP_SIGNATURE)
1908                 case TCP_MD5SIG:
1909                         if (!TCPMD5_ENABLED()) {
1910                                 INP_WUNLOCK(inp);
1911                                 return (ENOPROTOOPT);
1912                         }
1913                         error = TCPMD5_PCBCTL(inp, sopt);
1914                         break;
1915 #endif
1916
1917                 case TCP_NODELAY:
1918                         optval = tp->t_flags & TF_NODELAY;
1919                         INP_WUNLOCK(inp);
1920                         error = sooptcopyout(sopt, &optval, sizeof optval);
1921                         break;
1922                 case TCP_MAXSEG:
1923                         optval = tp->t_maxseg;
1924                         INP_WUNLOCK(inp);
1925                         error = sooptcopyout(sopt, &optval, sizeof optval);
1926                         break;
1927                 case TCP_NOOPT:
1928                         optval = tp->t_flags & TF_NOOPT;
1929                         INP_WUNLOCK(inp);
1930                         error = sooptcopyout(sopt, &optval, sizeof optval);
1931                         break;
1932                 case TCP_NOPUSH:
1933                         optval = tp->t_flags & TF_NOPUSH;
1934                         INP_WUNLOCK(inp);
1935                         error = sooptcopyout(sopt, &optval, sizeof optval);
1936                         break;
1937                 case TCP_INFO:
1938                         tcp_fill_info(tp, &ti);
1939                         INP_WUNLOCK(inp);
1940                         error = sooptcopyout(sopt, &ti, sizeof ti);
1941                         break;
1942                 case TCP_CONGESTION:
1943                         len = strlcpy(buf, CC_ALGO(tp)->name, TCP_CA_NAME_MAX);
1944                         INP_WUNLOCK(inp);
1945                         error = sooptcopyout(sopt, buf, len + 1);
1946                         break;
1947                 case TCP_KEEPIDLE:
1948                 case TCP_KEEPINTVL:
1949                 case TCP_KEEPINIT:
1950                 case TCP_KEEPCNT:
1951                         switch (sopt->sopt_name) {
1952                         case TCP_KEEPIDLE:
1953                                 ui = TP_KEEPIDLE(tp) / hz;
1954                                 break;
1955                         case TCP_KEEPINTVL:
1956                                 ui = TP_KEEPINTVL(tp) / hz;
1957                                 break;
1958                         case TCP_KEEPINIT:
1959                                 ui = TP_KEEPINIT(tp) / hz;
1960                                 break;
1961                         case TCP_KEEPCNT:
1962                                 ui = TP_KEEPCNT(tp);
1963                                 break;
1964                         }
1965                         INP_WUNLOCK(inp);
1966                         error = sooptcopyout(sopt, &ui, sizeof(ui));
1967                         break;
1968 #ifdef TCPPCAP
1969                 case TCP_PCAP_OUT:
1970                 case TCP_PCAP_IN:
1971                         optval = tcp_pcap_get_sock_max(TCP_PCAP_OUT ?
1972                                         &(tp->t_outpkts) : &(tp->t_inpkts));
1973                         INP_WUNLOCK(inp);
1974                         error = sooptcopyout(sopt, &optval, sizeof optval);
1975                         break;
1976 #endif
1977                 case TCP_FASTOPEN:
1978                         optval = tp->t_flags & TF_FASTOPEN;
1979                         INP_WUNLOCK(inp);
1980                         error = sooptcopyout(sopt, &optval, sizeof optval);
1981                         break;
1982 #ifdef TCP_BLACKBOX
1983                 case TCP_LOG:
1984                         optval = tp->t_logstate;
1985                         INP_WUNLOCK(inp);
1986                         error = sooptcopyout(sopt, &optval, sizeof(optval));
1987                         break;
1988                 case TCP_LOGBUF:
1989                         /* tcp_log_getlogbuf() does INP_WUNLOCK(inp) */
1990                         error = tcp_log_getlogbuf(sopt, tp);
1991                         break;
1992                 case TCP_LOGID:
1993                         len = tcp_log_get_id(tp, buf);
1994                         INP_WUNLOCK(inp);
1995                         error = sooptcopyout(sopt, buf, len + 1);
1996                         break;
1997                 case TCP_LOGDUMP:
1998                 case TCP_LOGDUMPID:
1999                         INP_WUNLOCK(inp);
2000                         error = EINVAL;
2001                         break;
2002 #endif
2003                 default:
2004                         INP_WUNLOCK(inp);
2005                         error = ENOPROTOOPT;
2006                         break;
2007                 }
2008                 break;
2009         }
2010         return (error);
2011 }
2012 #undef INP_WLOCK_RECHECK
2013 #undef INP_WLOCK_RECHECK_CLEANUP
2014
2015 /*
2016  * Attach TCP protocol to socket, allocating
2017  * internet protocol control block, tcp control block,
2018  * bufer space, and entering LISTEN state if to accept connections.
2019  */
2020 static int
2021 tcp_attach(struct socket *so)
2022 {
2023         struct tcpcb *tp;
2024         struct inpcb *inp;
2025         int error;
2026
2027         if (so->so_snd.sb_hiwat == 0 || so->so_rcv.sb_hiwat == 0) {
2028                 error = soreserve(so, V_tcp_sendspace, V_tcp_recvspace);
2029                 if (error)
2030                         return (error);
2031         }
2032         so->so_rcv.sb_flags |= SB_AUTOSIZE;
2033         so->so_snd.sb_flags |= SB_AUTOSIZE;
2034         INP_INFO_RLOCK(&V_tcbinfo);
2035         error = in_pcballoc(so, &V_tcbinfo);
2036         if (error) {
2037                 INP_INFO_RUNLOCK(&V_tcbinfo);
2038                 return (error);
2039         }
2040         inp = sotoinpcb(so);
2041 #ifdef INET6
2042         if (inp->inp_vflag & INP_IPV6PROTO) {
2043                 inp->inp_vflag |= INP_IPV6;
2044                 if ((inp->inp_flags & IN6P_IPV6_V6ONLY) == 0)
2045                         inp->inp_vflag |= INP_IPV4;
2046                 inp->in6p_hops = -1;    /* use kernel default */
2047         }
2048         else
2049 #endif
2050         inp->inp_vflag |= INP_IPV4;
2051         tp = tcp_newtcpcb(inp);
2052         if (tp == NULL) {
2053                 in_pcbdetach(inp);
2054                 in_pcbfree(inp);
2055                 INP_INFO_RUNLOCK(&V_tcbinfo);
2056                 return (ENOBUFS);
2057         }
2058         tp->t_state = TCPS_CLOSED;
2059         INP_WUNLOCK(inp);
2060         INP_INFO_RUNLOCK(&V_tcbinfo);
2061         TCPSTATES_INC(TCPS_CLOSED);
2062         return (0);
2063 }
2064
2065 /*
2066  * Initiate (or continue) disconnect.
2067  * If embryonic state, just send reset (once).
2068  * If in ``let data drain'' option and linger null, just drop.
2069  * Otherwise (hard), mark socket disconnecting and drop
2070  * current input data; switch states based on user close, and
2071  * send segment to peer (with FIN).
2072  */
2073 static void
2074 tcp_disconnect(struct tcpcb *tp)
2075 {
2076         struct inpcb *inp = tp->t_inpcb;
2077         struct socket *so = inp->inp_socket;
2078
2079         INP_INFO_RLOCK_ASSERT(&V_tcbinfo);
2080         INP_WLOCK_ASSERT(inp);
2081
2082         /*
2083          * Neither tcp_close() nor tcp_drop() should return NULL, as the
2084          * socket is still open.
2085          */
2086         if (tp->t_state < TCPS_ESTABLISHED) {
2087                 tp = tcp_close(tp);
2088                 KASSERT(tp != NULL,
2089                     ("tcp_disconnect: tcp_close() returned NULL"));
2090         } else if ((so->so_options & SO_LINGER) && so->so_linger == 0) {
2091                 tp = tcp_drop(tp, 0);
2092                 KASSERT(tp != NULL,
2093                     ("tcp_disconnect: tcp_drop() returned NULL"));
2094         } else {
2095                 soisdisconnecting(so);
2096                 sbflush(&so->so_rcv);
2097                 tcp_usrclosed(tp);
2098                 if (!(inp->inp_flags & INP_DROPPED))
2099                         tp->t_fb->tfb_tcp_output(tp);
2100         }
2101 }
2102
2103 /*
2104  * User issued close, and wish to trail through shutdown states:
2105  * if never received SYN, just forget it.  If got a SYN from peer,
2106  * but haven't sent FIN, then go to FIN_WAIT_1 state to send peer a FIN.
2107  * If already got a FIN from peer, then almost done; go to LAST_ACK
2108  * state.  In all other cases, have already sent FIN to peer (e.g.
2109  * after PRU_SHUTDOWN), and just have to play tedious game waiting
2110  * for peer to send FIN or not respond to keep-alives, etc.
2111  * We can let the user exit from the close as soon as the FIN is acked.
2112  */
2113 static void
2114 tcp_usrclosed(struct tcpcb *tp)
2115 {
2116
2117         INP_INFO_RLOCK_ASSERT(&V_tcbinfo);
2118         INP_WLOCK_ASSERT(tp->t_inpcb);
2119
2120         switch (tp->t_state) {
2121         case TCPS_LISTEN:
2122 #ifdef TCP_OFFLOAD
2123                 tcp_offload_listen_stop(tp);
2124 #endif
2125                 tcp_state_change(tp, TCPS_CLOSED);
2126                 /* FALLTHROUGH */
2127         case TCPS_CLOSED:
2128                 tp = tcp_close(tp);
2129                 /*
2130                  * tcp_close() should never return NULL here as the socket is
2131                  * still open.
2132                  */
2133                 KASSERT(tp != NULL,
2134                     ("tcp_usrclosed: tcp_close() returned NULL"));
2135                 break;
2136
2137         case TCPS_SYN_SENT:
2138         case TCPS_SYN_RECEIVED:
2139                 tp->t_flags |= TF_NEEDFIN;
2140                 break;
2141
2142         case TCPS_ESTABLISHED:
2143                 tcp_state_change(tp, TCPS_FIN_WAIT_1);
2144                 break;
2145
2146         case TCPS_CLOSE_WAIT:
2147                 tcp_state_change(tp, TCPS_LAST_ACK);
2148                 break;
2149         }
2150         if (tp->t_state >= TCPS_FIN_WAIT_2) {
2151                 soisdisconnected(tp->t_inpcb->inp_socket);
2152                 /* Prevent the connection hanging in FIN_WAIT_2 forever. */
2153                 if (tp->t_state == TCPS_FIN_WAIT_2) {
2154                         int timeout;
2155
2156                         timeout = (tcp_fast_finwait2_recycle) ? 
2157                             tcp_finwait2_timeout : TP_MAXIDLE(tp);
2158                         tcp_timer_activate(tp, TT_2MSL, timeout);
2159                 }
2160         }
2161 }
2162
2163 #ifdef DDB
2164 static void
2165 db_print_indent(int indent)
2166 {
2167         int i;
2168
2169         for (i = 0; i < indent; i++)
2170                 db_printf(" ");
2171 }
2172
2173 static void
2174 db_print_tstate(int t_state)
2175 {
2176
2177         switch (t_state) {
2178         case TCPS_CLOSED:
2179                 db_printf("TCPS_CLOSED");
2180                 return;
2181
2182         case TCPS_LISTEN:
2183                 db_printf("TCPS_LISTEN");
2184                 return;
2185
2186         case TCPS_SYN_SENT:
2187                 db_printf("TCPS_SYN_SENT");
2188                 return;
2189
2190         case TCPS_SYN_RECEIVED:
2191                 db_printf("TCPS_SYN_RECEIVED");
2192                 return;
2193
2194         case TCPS_ESTABLISHED:
2195                 db_printf("TCPS_ESTABLISHED");
2196                 return;
2197
2198         case TCPS_CLOSE_WAIT:
2199                 db_printf("TCPS_CLOSE_WAIT");
2200                 return;
2201
2202         case TCPS_FIN_WAIT_1:
2203                 db_printf("TCPS_FIN_WAIT_1");
2204                 return;
2205
2206         case TCPS_CLOSING:
2207                 db_printf("TCPS_CLOSING");
2208                 return;
2209
2210         case TCPS_LAST_ACK:
2211                 db_printf("TCPS_LAST_ACK");
2212                 return;
2213
2214         case TCPS_FIN_WAIT_2:
2215                 db_printf("TCPS_FIN_WAIT_2");
2216                 return;
2217
2218         case TCPS_TIME_WAIT:
2219                 db_printf("TCPS_TIME_WAIT");
2220                 return;
2221
2222         default:
2223                 db_printf("unknown");
2224                 return;
2225         }
2226 }
2227
2228 static void
2229 db_print_tflags(u_int t_flags)
2230 {
2231         int comma;
2232
2233         comma = 0;
2234         if (t_flags & TF_ACKNOW) {
2235                 db_printf("%sTF_ACKNOW", comma ? ", " : "");
2236                 comma = 1;
2237         }
2238         if (t_flags & TF_DELACK) {
2239                 db_printf("%sTF_DELACK", comma ? ", " : "");
2240                 comma = 1;
2241         }
2242         if (t_flags & TF_NODELAY) {
2243                 db_printf("%sTF_NODELAY", comma ? ", " : "");
2244                 comma = 1;
2245         }
2246         if (t_flags & TF_NOOPT) {
2247                 db_printf("%sTF_NOOPT", comma ? ", " : "");
2248                 comma = 1;
2249         }
2250         if (t_flags & TF_SENTFIN) {
2251                 db_printf("%sTF_SENTFIN", comma ? ", " : "");
2252                 comma = 1;
2253         }
2254         if (t_flags & TF_REQ_SCALE) {
2255                 db_printf("%sTF_REQ_SCALE", comma ? ", " : "");
2256                 comma = 1;
2257         }
2258         if (t_flags & TF_RCVD_SCALE) {
2259                 db_printf("%sTF_RECVD_SCALE", comma ? ", " : "");
2260                 comma = 1;
2261         }
2262         if (t_flags & TF_REQ_TSTMP) {
2263                 db_printf("%sTF_REQ_TSTMP", comma ? ", " : "");
2264                 comma = 1;
2265         }
2266         if (t_flags & TF_RCVD_TSTMP) {
2267                 db_printf("%sTF_RCVD_TSTMP", comma ? ", " : "");
2268                 comma = 1;
2269         }
2270         if (t_flags & TF_SACK_PERMIT) {
2271                 db_printf("%sTF_SACK_PERMIT", comma ? ", " : "");
2272                 comma = 1;
2273         }
2274         if (t_flags & TF_NEEDSYN) {
2275                 db_printf("%sTF_NEEDSYN", comma ? ", " : "");
2276                 comma = 1;
2277         }
2278         if (t_flags & TF_NEEDFIN) {
2279                 db_printf("%sTF_NEEDFIN", comma ? ", " : "");
2280                 comma = 1;
2281         }
2282         if (t_flags & TF_NOPUSH) {
2283                 db_printf("%sTF_NOPUSH", comma ? ", " : "");
2284                 comma = 1;
2285         }
2286         if (t_flags & TF_MORETOCOME) {
2287                 db_printf("%sTF_MORETOCOME", comma ? ", " : "");
2288                 comma = 1;
2289         }
2290         if (t_flags & TF_LQ_OVERFLOW) {
2291                 db_printf("%sTF_LQ_OVERFLOW", comma ? ", " : "");
2292                 comma = 1;
2293         }
2294         if (t_flags & TF_LASTIDLE) {
2295                 db_printf("%sTF_LASTIDLE", comma ? ", " : "");
2296                 comma = 1;
2297         }
2298         if (t_flags & TF_RXWIN0SENT) {
2299                 db_printf("%sTF_RXWIN0SENT", comma ? ", " : "");
2300                 comma = 1;
2301         }
2302         if (t_flags & TF_FASTRECOVERY) {
2303                 db_printf("%sTF_FASTRECOVERY", comma ? ", " : "");
2304                 comma = 1;
2305         }
2306         if (t_flags & TF_CONGRECOVERY) {
2307                 db_printf("%sTF_CONGRECOVERY", comma ? ", " : "");
2308                 comma = 1;
2309         }
2310         if (t_flags & TF_WASFRECOVERY) {
2311                 db_printf("%sTF_WASFRECOVERY", comma ? ", " : "");
2312                 comma = 1;
2313         }
2314         if (t_flags & TF_SIGNATURE) {
2315                 db_printf("%sTF_SIGNATURE", comma ? ", " : "");
2316                 comma = 1;
2317         }
2318         if (t_flags & TF_FORCEDATA) {
2319                 db_printf("%sTF_FORCEDATA", comma ? ", " : "");
2320                 comma = 1;
2321         }
2322         if (t_flags & TF_TSO) {
2323                 db_printf("%sTF_TSO", comma ? ", " : "");
2324                 comma = 1;
2325         }
2326         if (t_flags & TF_ECN_PERMIT) {
2327                 db_printf("%sTF_ECN_PERMIT", comma ? ", " : "");
2328                 comma = 1;
2329         }
2330         if (t_flags & TF_FASTOPEN) {
2331                 db_printf("%sTF_FASTOPEN", comma ? ", " : "");
2332                 comma = 1;
2333         }
2334 }
2335
2336 static void
2337 db_print_toobflags(char t_oobflags)
2338 {
2339         int comma;
2340
2341         comma = 0;
2342         if (t_oobflags & TCPOOB_HAVEDATA) {
2343                 db_printf("%sTCPOOB_HAVEDATA", comma ? ", " : "");
2344                 comma = 1;
2345         }
2346         if (t_oobflags & TCPOOB_HADDATA) {
2347                 db_printf("%sTCPOOB_HADDATA", comma ? ", " : "");
2348                 comma = 1;
2349         }
2350 }
2351
2352 static void
2353 db_print_tcpcb(struct tcpcb *tp, const char *name, int indent)
2354 {
2355
2356         db_print_indent(indent);
2357         db_printf("%s at %p\n", name, tp);
2358
2359         indent += 2;
2360
2361         db_print_indent(indent);
2362         db_printf("t_segq first: %p   t_segqlen: %d   t_dupacks: %d\n",
2363            LIST_FIRST(&tp->t_segq), tp->t_segqlen, tp->t_dupacks);
2364
2365         db_print_indent(indent);
2366         db_printf("tt_rexmt: %p   tt_persist: %p   tt_keep: %p\n",
2367             &tp->t_timers->tt_rexmt, &tp->t_timers->tt_persist, &tp->t_timers->tt_keep);
2368
2369         db_print_indent(indent);
2370         db_printf("tt_2msl: %p   tt_delack: %p   t_inpcb: %p\n", &tp->t_timers->tt_2msl,
2371             &tp->t_timers->tt_delack, tp->t_inpcb);
2372
2373         db_print_indent(indent);
2374         db_printf("t_state: %d (", tp->t_state);
2375         db_print_tstate(tp->t_state);
2376         db_printf(")\n");
2377
2378         db_print_indent(indent);
2379         db_printf("t_flags: 0x%x (", tp->t_flags);
2380         db_print_tflags(tp->t_flags);
2381         db_printf(")\n");
2382
2383         db_print_indent(indent);
2384         db_printf("snd_una: 0x%08x   snd_max: 0x%08x   snd_nxt: x0%08x\n",
2385             tp->snd_una, tp->snd_max, tp->snd_nxt);
2386
2387         db_print_indent(indent);
2388         db_printf("snd_up: 0x%08x   snd_wl1: 0x%08x   snd_wl2: 0x%08x\n",
2389            tp->snd_up, tp->snd_wl1, tp->snd_wl2);
2390
2391         db_print_indent(indent);
2392         db_printf("iss: 0x%08x   irs: 0x%08x   rcv_nxt: 0x%08x\n",
2393             tp->iss, tp->irs, tp->rcv_nxt);
2394
2395         db_print_indent(indent);
2396         db_printf("rcv_adv: 0x%08x   rcv_wnd: %u   rcv_up: 0x%08x\n",
2397             tp->rcv_adv, tp->rcv_wnd, tp->rcv_up);
2398
2399         db_print_indent(indent);
2400         db_printf("snd_wnd: %u   snd_cwnd: %u\n",
2401            tp->snd_wnd, tp->snd_cwnd);
2402
2403         db_print_indent(indent);
2404         db_printf("snd_ssthresh: %u   snd_recover: "
2405             "0x%08x\n", tp->snd_ssthresh, tp->snd_recover);
2406
2407         db_print_indent(indent);
2408         db_printf("t_rcvtime: %u   t_startime: %u\n",
2409             tp->t_rcvtime, tp->t_starttime);
2410
2411         db_print_indent(indent);
2412         db_printf("t_rttime: %u   t_rtsq: 0x%08x\n",
2413             tp->t_rtttime, tp->t_rtseq);
2414
2415         db_print_indent(indent);
2416         db_printf("t_rxtcur: %d   t_maxseg: %u   t_srtt: %d\n",
2417             tp->t_rxtcur, tp->t_maxseg, tp->t_srtt);
2418
2419         db_print_indent(indent);
2420         db_printf("t_rttvar: %d   t_rxtshift: %d   t_rttmin: %u   "
2421             "t_rttbest: %u\n", tp->t_rttvar, tp->t_rxtshift, tp->t_rttmin,
2422             tp->t_rttbest);
2423
2424         db_print_indent(indent);
2425         db_printf("t_rttupdated: %lu   max_sndwnd: %u   t_softerror: %d\n",
2426             tp->t_rttupdated, tp->max_sndwnd, tp->t_softerror);
2427
2428         db_print_indent(indent);
2429         db_printf("t_oobflags: 0x%x (", tp->t_oobflags);
2430         db_print_toobflags(tp->t_oobflags);
2431         db_printf(")   t_iobc: 0x%02x\n", tp->t_iobc);
2432
2433         db_print_indent(indent);
2434         db_printf("snd_scale: %u   rcv_scale: %u   request_r_scale: %u\n",
2435             tp->snd_scale, tp->rcv_scale, tp->request_r_scale);
2436
2437         db_print_indent(indent);
2438         db_printf("ts_recent: %u   ts_recent_age: %u\n",
2439             tp->ts_recent, tp->ts_recent_age);
2440
2441         db_print_indent(indent);
2442         db_printf("ts_offset: %u   last_ack_sent: 0x%08x   snd_cwnd_prev: "
2443             "%u\n", tp->ts_offset, tp->last_ack_sent, tp->snd_cwnd_prev);
2444
2445         db_print_indent(indent);
2446         db_printf("snd_ssthresh_prev: %u   snd_recover_prev: 0x%08x   "
2447             "t_badrxtwin: %u\n", tp->snd_ssthresh_prev,
2448             tp->snd_recover_prev, tp->t_badrxtwin);
2449
2450         db_print_indent(indent);
2451         db_printf("snd_numholes: %d  snd_holes first: %p\n",
2452             tp->snd_numholes, TAILQ_FIRST(&tp->snd_holes));
2453
2454         db_print_indent(indent);
2455         db_printf("snd_fack: 0x%08x   rcv_numsacks: %d   sack_newdata: "
2456             "0x%08x\n", tp->snd_fack, tp->rcv_numsacks, tp->sack_newdata);
2457
2458         /* Skip sackblks, sackhint. */
2459
2460         db_print_indent(indent);
2461         db_printf("t_rttlow: %d   rfbuf_ts: %u   rfbuf_cnt: %d\n",
2462             tp->t_rttlow, tp->rfbuf_ts, tp->rfbuf_cnt);
2463 }
2464
2465 DB_SHOW_COMMAND(tcpcb, db_show_tcpcb)
2466 {
2467         struct tcpcb *tp;
2468
2469         if (!have_addr) {
2470                 db_printf("usage: show tcpcb <addr>\n");
2471                 return;
2472         }
2473         tp = (struct tcpcb *)addr;
2474
2475         db_print_tcpcb(tp, "tcpcb", 0);
2476 }
2477 #endif