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