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