tcp_timewait.c revision 169608
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 * $FreeBSD: head/sys/netinet/tcp_timewait.c 169608 2007-05-16 17:14:25Z andre $
31 */
32
33#include "opt_inet.h"
34#include "opt_inet6.h"
35#include "opt_mac.h"
36#include "opt_tcpdebug.h"
37
38#include <sys/param.h>
39#include <sys/systm.h>
40#include <sys/callout.h>
41#include <sys/kernel.h>
42#include <sys/sysctl.h>
43#include <sys/malloc.h>
44#include <sys/mbuf.h>
45#include <sys/priv.h>
46#include <sys/proc.h>
47#include <sys/socket.h>
48#include <sys/socketvar.h>
49#include <sys/protosw.h>
50#include <sys/random.h>
51
52#include <vm/uma.h>
53
54#include <net/route.h>
55#include <net/if.h>
56
57#include <netinet/in.h>
58#include <netinet/in_systm.h>
59#include <netinet/ip.h>
60#ifdef INET6
61#include <netinet/ip6.h>
62#endif
63#include <netinet/in_pcb.h>
64#ifdef INET6
65#include <netinet6/in6_pcb.h>
66#endif
67#include <netinet/in_var.h>
68#include <netinet/ip_var.h>
69#ifdef INET6
70#include <netinet6/ip6_var.h>
71#include <netinet6/scope6_var.h>
72#include <netinet6/nd6.h>
73#endif
74#include <netinet/ip_icmp.h>
75#include <netinet/tcp.h>
76#include <netinet/tcp_fsm.h>
77#include <netinet/tcp_seq.h>
78#include <netinet/tcp_timer.h>
79#include <netinet/tcp_var.h>
80#ifdef INET6
81#include <netinet6/tcp6_var.h>
82#endif
83#include <netinet/tcpip.h>
84#ifdef TCPDEBUG
85#include <netinet/tcp_debug.h>
86#endif
87#include <netinet6/ip6protosw.h>
88
89#include <machine/in_cksum.h>
90
91#include <security/mac/mac_framework.h>
92
93static uma_zone_t tcptw_zone;
94static int	maxtcptw;
95
96/*
97 * The timed wait queue contains references to each of the TCP sessions
98 * currently in the TIME_WAIT state.  The queue pointers, including the
99 * queue pointers in each tcptw structure, are protected using the global
100 * tcbinfo lock, which must be held over queue iteration and modification.
101 */
102static TAILQ_HEAD(, tcptw)	twq_2msl;
103
104static void	tcp_tw_2msl_reset(struct tcptw *, int);
105static void	tcp_tw_2msl_stop(struct tcptw *);
106
107static int
108tcptw_auto_size(void)
109{
110	int halfrange;
111
112	/*
113	 * Max out at half the ephemeral port range so that TIME_WAIT
114	 * sockets don't tie up too many ephemeral ports.
115	 */
116	if (ipport_lastauto > ipport_firstauto)
117		halfrange = (ipport_lastauto - ipport_firstauto) / 2;
118	else
119		halfrange = (ipport_firstauto - ipport_lastauto) / 2;
120	/* Protect against goofy port ranges smaller than 32. */
121	return (imin(imax(halfrange, 32), maxsockets / 5));
122}
123
124static int
125sysctl_maxtcptw(SYSCTL_HANDLER_ARGS)
126{
127	int error, new;
128
129	if (maxtcptw == 0)
130		new = tcptw_auto_size();
131	else
132		new = maxtcptw;
133	error = sysctl_handle_int(oidp, &new, sizeof(int), req);
134	if (error == 0 && req->newptr)
135		if (new >= 32) {
136			maxtcptw = new;
137			uma_zone_set_max(tcptw_zone, maxtcptw);
138		}
139	return (error);
140}
141
142SYSCTL_PROC(_net_inet_tcp, OID_AUTO, maxtcptw, CTLTYPE_INT|CTLFLAG_RW,
143    &maxtcptw, 0, sysctl_maxtcptw, "IU",
144    "Maximum number of compressed TCP TIME_WAIT entries");
145
146static int	nolocaltimewait = 0;
147SYSCTL_INT(_net_inet_tcp, OID_AUTO, nolocaltimewait, CTLFLAG_RW,
148    &nolocaltimewait, 0,
149    "Do not create compressed TCP TIME_WAIT entries for local connections");
150
151void
152tcp_tw_zone_change(void)
153{
154
155	if (maxtcptw == 0)
156		uma_zone_set_max(tcptw_zone, tcptw_auto_size());
157}
158
159void
160tcp_tw_init(void)
161{
162
163	tcptw_zone = uma_zcreate("tcptw", sizeof(struct tcptw),
164	    NULL, NULL, NULL, NULL, UMA_ALIGN_PTR, UMA_ZONE_NOFREE);
165	TUNABLE_INT_FETCH("net.inet.tcp.maxtcptw", &maxtcptw);
166	if (maxtcptw == 0)
167		uma_zone_set_max(tcptw_zone, tcptw_auto_size());
168	else
169		uma_zone_set_max(tcptw_zone, maxtcptw);
170	TAILQ_INIT(&twq_2msl);
171}
172
173/*
174 * Move a TCP connection into TIME_WAIT state.
175 *    tcbinfo is locked.
176 *    inp is locked, and is unlocked before returning.
177 */
178void
179tcp_twstart(struct tcpcb *tp)
180{
181	struct tcptw *tw;
182	struct inpcb *inp = tp->t_inpcb;
183	int acknow;
184	struct socket *so;
185
186	INP_INFO_WLOCK_ASSERT(&tcbinfo);	/* tcp_tw_2msl_reset(). */
187	INP_LOCK_ASSERT(inp);
188
189	if (nolocaltimewait && in_localip(inp->inp_faddr)) {
190		tp = tcp_close(tp);
191		if (tp != NULL)
192			INP_UNLOCK(inp);
193		return;
194	}
195
196	tw = uma_zalloc(tcptw_zone, M_NOWAIT);
197	if (tw == NULL) {
198		tw = tcp_tw_2msl_scan(1);
199		if (tw == NULL) {
200			tp = tcp_close(tp);
201			if (tp != NULL)
202				INP_UNLOCK(inp);
203			return;
204		}
205	}
206	tw->tw_inpcb = inp;
207
208	/*
209	 * Recover last window size sent.
210	 */
211	tw->last_win = (tp->rcv_adv - tp->rcv_nxt) >> tp->rcv_scale;
212
213	/*
214	 * Set t_recent if timestamps are used on the connection.
215	 */
216	if ((tp->t_flags & (TF_REQ_TSTMP|TF_RCVD_TSTMP|TF_NOOPT)) ==
217	    (TF_REQ_TSTMP|TF_RCVD_TSTMP)) {
218		tw->t_recent = tp->ts_recent;
219		tw->ts_offset = tp->ts_offset;
220	} else {
221		tw->t_recent = 0;
222		tw->ts_offset = 0;
223	}
224
225	tw->snd_nxt = tp->snd_nxt;
226	tw->rcv_nxt = tp->rcv_nxt;
227	tw->iss     = tp->iss;
228	tw->irs     = tp->irs;
229	tw->t_starttime = tp->t_starttime;
230	tw->tw_time = 0;
231
232/* XXX
233 * If this code will
234 * be used for fin-wait-2 state also, then we may need
235 * a ts_recent from the last segment.
236 */
237	acknow = tp->t_flags & TF_ACKNOW;
238
239	/*
240	 * First, discard tcpcb state, which includes stopping its timers and
241	 * freeing it.  tcp_discardcb() used to also release the inpcb, but
242	 * that work is now done in the caller.
243	 *
244	 * Note: soisdisconnected() call used to be made in tcp_discardcb(),
245	 * and might not be needed here any longer.
246	 */
247	tcp_discardcb(tp);
248	so = inp->inp_socket;
249	soisdisconnected(so);
250	tw->tw_cred = crhold(so->so_cred);
251	SOCK_LOCK(so);
252	tw->tw_so_options = so->so_options;
253	SOCK_UNLOCK(so);
254	if (acknow)
255		tcp_twrespond(tw, TH_ACK);
256	inp->inp_ppcb = tw;
257	inp->inp_vflag |= INP_TIMEWAIT;
258	tcp_tw_2msl_reset(tw, 0);
259
260	/*
261	 * If the inpcb owns the sole reference to the socket, then we can
262	 * detach and free the socket as it is not needed in time wait.
263	 */
264	if (inp->inp_vflag & INP_SOCKREF) {
265		KASSERT(so->so_state & SS_PROTOREF,
266		    ("tcp_twstart: !SS_PROTOREF"));
267		inp->inp_vflag &= ~INP_SOCKREF;
268		INP_UNLOCK(inp);
269		ACCEPT_LOCK();
270		SOCK_LOCK(so);
271		so->so_state &= ~SS_PROTOREF;
272		sofree(so);
273	} else
274		INP_UNLOCK(inp);
275}
276
277#if 0
278/*
279 * The appromixate rate of ISN increase of Microsoft TCP stacks;
280 * the actual rate is slightly higher due to the addition of
281 * random positive increments.
282 *
283 * Most other new OSes use semi-randomized ISN values, so we
284 * do not need to worry about them.
285 */
286#define MS_ISN_BYTES_PER_SECOND		250000
287
288/*
289 * Determine if the ISN we will generate has advanced beyond the last
290 * sequence number used by the previous connection.  If so, indicate
291 * that it is safe to recycle this tw socket by returning 1.
292 */
293int
294tcp_twrecycleable(struct tcptw *tw)
295{
296	tcp_seq new_iss = tw->iss;
297	tcp_seq new_irs = tw->irs;
298
299	INP_INFO_WLOCK_ASSERT(&tcbinfo);
300	new_iss += (ticks - tw->t_starttime) * (ISN_BYTES_PER_SECOND / hz);
301	new_irs += (ticks - tw->t_starttime) * (MS_ISN_BYTES_PER_SECOND / hz);
302
303	if (SEQ_GT(new_iss, tw->snd_nxt) && SEQ_GT(new_irs, tw->rcv_nxt))
304		return (1);
305	else
306		return (0);
307}
308#endif
309
310/*
311 * Returns 1 if the TIME_WAIT state was killed and we should start over,
312 * looking for a pcb in the listen state.  Returns 0 otherwise.
313 */
314int
315tcp_twcheck(struct inpcb *inp, struct tcpopt *to, struct tcphdr *th,
316    struct mbuf *m, int tlen)
317{
318	struct tcptw *tw;
319	int thflags;
320	tcp_seq seq;
321#ifdef INET6
322	int isipv6 = (mtod(m, struct ip *)->ip_v == 6) ? 1 : 0;
323#else
324	const int isipv6 = 0;
325#endif
326
327	/* tcbinfo lock required for tcp_twclose(), tcp_tw_2msl_reset(). */
328	INP_INFO_WLOCK_ASSERT(&tcbinfo);
329	INP_LOCK_ASSERT(inp);
330
331	/*
332	 * XXXRW: Time wait state for inpcb has been recycled, but inpcb is
333	 * still present.  This is undesirable, but temporarily necessary
334	 * until we work out how to handle inpcb's who's timewait state has
335	 * been removed.
336	 */
337	tw = intotw(inp);
338	if (tw == NULL)
339		goto drop;
340
341	thflags = th->th_flags;
342
343	/*
344	 * NOTE: for FIN_WAIT_2 (to be added later),
345	 * must validate sequence number before accepting RST
346	 */
347
348	/*
349	 * If the segment contains RST:
350	 *	Drop the segment - see Stevens, vol. 2, p. 964 and
351	 *      RFC 1337.
352	 */
353	if (thflags & TH_RST)
354		goto drop;
355
356#if 0
357/* PAWS not needed at the moment */
358	/*
359	 * RFC 1323 PAWS: If we have a timestamp reply on this segment
360	 * and it's less than ts_recent, drop it.
361	 */
362	if ((to.to_flags & TOF_TS) != 0 && tp->ts_recent &&
363	    TSTMP_LT(to.to_tsval, tp->ts_recent)) {
364		if ((thflags & TH_ACK) == 0)
365			goto drop;
366		goto ack;
367	}
368	/*
369	 * ts_recent is never updated because we never accept new segments.
370	 */
371#endif
372
373	/*
374	 * If a new connection request is received
375	 * while in TIME_WAIT, drop the old connection
376	 * and start over if the sequence numbers
377	 * are above the previous ones.
378	 */
379	if ((thflags & TH_SYN) && SEQ_GT(th->th_seq, tw->rcv_nxt)) {
380		tcp_twclose(tw, 0);
381		return (1);
382	}
383
384	/*
385	 * Drop the the segment if it does not contain an ACK.
386	 */
387	if ((thflags & TH_ACK) == 0)
388		goto drop;
389
390	/*
391	 * Reset the 2MSL timer if this is a duplicate FIN.
392	 */
393	if (thflags & TH_FIN) {
394		seq = th->th_seq + tlen + (thflags & TH_SYN ? 1 : 0);
395		if (seq + 1 == tw->rcv_nxt)
396			tcp_tw_2msl_reset(tw, 1);
397	}
398
399	/*
400	 * Acknowledge the segment if it has data or is not a duplicate ACK.
401	 */
402	if (thflags != TH_ACK || tlen != 0 ||
403	    th->th_seq != tw->rcv_nxt || th->th_ack != tw->snd_nxt)
404		tcp_twrespond(tw, TH_ACK);
405	goto drop;
406
407	/*
408	 * Generate a RST, dropping incoming segment.
409	 * Make ACK acceptable to originator of segment.
410	 * Don't bother to respond if destination was broadcast/multicast.
411	 */
412	if (m->m_flags & (M_BCAST|M_MCAST))
413		goto drop;
414	if (isipv6) {
415		struct ip6_hdr *ip6;
416
417		/* IPv6 anycast check is done at tcp6_input() */
418		ip6 = mtod(m, struct ip6_hdr *);
419		if (IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst) ||
420		    IN6_IS_ADDR_MULTICAST(&ip6->ip6_src))
421			goto drop;
422	} else {
423		struct ip *ip;
424
425		ip = mtod(m, struct ip *);
426		if (IN_MULTICAST(ntohl(ip->ip_dst.s_addr)) ||
427		    IN_MULTICAST(ntohl(ip->ip_src.s_addr)) ||
428		    ip->ip_src.s_addr == htonl(INADDR_BROADCAST) ||
429		    in_broadcast(ip->ip_dst, m->m_pkthdr.rcvif))
430			goto drop;
431	}
432	if (thflags & TH_ACK) {
433		tcp_respond(NULL,
434		    mtod(m, void *), th, m, 0, th->th_ack, TH_RST);
435	} else {
436		seq = th->th_seq + (thflags & TH_SYN ? 1 : 0);
437		tcp_respond(NULL,
438		    mtod(m, void *), th, m, seq, 0, TH_RST|TH_ACK);
439	}
440	INP_UNLOCK(inp);
441	return (0);
442
443drop:
444	INP_UNLOCK(inp);
445	m_freem(m);
446	return (0);
447}
448
449void
450tcp_twclose(struct tcptw *tw, int reuse)
451{
452	struct socket *so;
453	struct inpcb *inp;
454
455	/*
456	 * At this point, we are in one of two situations:
457	 *
458	 * (1) We have no socket, just an inpcb<->twtcp pair.  We can free
459	 *     all state.
460	 *
461	 * (2) We have a socket -- if we own a reference, release it and
462	 *     notify the socket layer.
463	 */
464	inp = tw->tw_inpcb;
465	KASSERT((inp->inp_vflag & INP_TIMEWAIT), ("tcp_twclose: !timewait"));
466	KASSERT(intotw(inp) == tw, ("tcp_twclose: inp_ppcb != tw"));
467	INP_INFO_WLOCK_ASSERT(&tcbinfo);	/* tcp_tw_2msl_stop(). */
468	INP_LOCK_ASSERT(inp);
469
470	tw->tw_inpcb = NULL;
471	tcp_tw_2msl_stop(tw);
472	inp->inp_ppcb = NULL;
473	in_pcbdrop(inp);
474
475	so = inp->inp_socket;
476	if (so != NULL) {
477		/*
478		 * If there's a socket, handle two cases: first, we own a
479		 * strong reference, which we will now release, or we don't
480		 * in which case another reference exists (XXXRW: think
481		 * about this more), and we don't need to take action.
482		 */
483		if (inp->inp_vflag & INP_SOCKREF) {
484			inp->inp_vflag &= ~INP_SOCKREF;
485			INP_UNLOCK(inp);
486			ACCEPT_LOCK();
487			SOCK_LOCK(so);
488			KASSERT(so->so_state & SS_PROTOREF,
489			    ("tcp_twclose: INP_SOCKREF && !SS_PROTOREF"));
490			so->so_state &= ~SS_PROTOREF;
491			sofree(so);
492		} else {
493			/*
494			 * If we don't own the only reference, the socket and
495			 * inpcb need to be left around to be handled by
496			 * tcp_usr_detach() later.
497			 */
498			INP_UNLOCK(inp);
499		}
500	} else {
501#ifdef INET6
502		if (inp->inp_vflag & INP_IPV6PROTO)
503			in6_pcbfree(inp);
504		else
505#endif
506			in_pcbfree(inp);
507	}
508	tcpstat.tcps_closed++;
509	crfree(tw->tw_cred);
510	tw->tw_cred = NULL;
511	if (reuse)
512		return;
513	uma_zfree(tcptw_zone, tw);
514}
515
516int
517tcp_twrespond(struct tcptw *tw, int flags)
518{
519	struct inpcb *inp = tw->tw_inpcb;
520	struct tcphdr *th;
521	struct mbuf *m;
522	struct ip *ip = NULL;
523	u_int hdrlen, optlen;
524	int error;
525	struct tcpopt to;
526#ifdef INET6
527	struct ip6_hdr *ip6 = NULL;
528	int isipv6 = inp->inp_inc.inc_isipv6;
529#endif
530
531	INP_LOCK_ASSERT(inp);
532
533	m = m_gethdr(M_DONTWAIT, MT_DATA);
534	if (m == NULL)
535		return (ENOBUFS);
536	m->m_data += max_linkhdr;
537
538#ifdef MAC
539	mac_create_mbuf_from_inpcb(inp, m);
540#endif
541
542#ifdef INET6
543	if (isipv6) {
544		hdrlen = sizeof(struct ip6_hdr) + sizeof(struct tcphdr);
545		ip6 = mtod(m, struct ip6_hdr *);
546		th = (struct tcphdr *)(ip6 + 1);
547		tcpip_fillheaders(inp, ip6, th);
548	} else
549#endif
550	{
551		hdrlen = sizeof(struct tcpiphdr);
552		ip = mtod(m, struct ip *);
553		th = (struct tcphdr *)(ip + 1);
554		tcpip_fillheaders(inp, ip, th);
555	}
556	to.to_flags = 0;
557
558	/*
559	 * Send a timestamp and echo-reply if both our side and our peer
560	 * have sent timestamps in our SYN's and this is not a RST.
561	 */
562	if (tw->t_recent && flags == TH_ACK) {
563		to.to_flags |= TOF_TS;
564		to.to_tsval = ticks + tw->ts_offset;
565		to.to_tsecr = tw->t_recent;
566	}
567	optlen = tcp_addoptions(&to, (u_char *)(th + 1));
568
569	m->m_len = hdrlen + optlen;
570	m->m_pkthdr.len = m->m_len;
571
572	KASSERT(max_linkhdr + m->m_len <= MHLEN, ("tcptw: mbuf too small"));
573
574	th->th_seq = htonl(tw->snd_nxt);
575	th->th_ack = htonl(tw->rcv_nxt);
576	th->th_off = (sizeof(struct tcphdr) + optlen) >> 2;
577	th->th_flags = flags;
578	th->th_win = htons(tw->last_win);
579
580#ifdef INET6
581	if (isipv6) {
582		th->th_sum = in6_cksum(m, IPPROTO_TCP, sizeof(struct ip6_hdr),
583		    sizeof(struct tcphdr) + optlen);
584		ip6->ip6_hlim = in6_selecthlim(inp, NULL);
585		error = ip6_output(m, inp->in6p_outputopts, NULL,
586		    (tw->tw_so_options & SO_DONTROUTE), NULL, NULL, inp);
587	} else
588#endif
589	{
590		th->th_sum = in_pseudo(ip->ip_src.s_addr, ip->ip_dst.s_addr,
591		    htons(sizeof(struct tcphdr) + optlen + IPPROTO_TCP));
592		m->m_pkthdr.csum_flags = CSUM_TCP;
593		m->m_pkthdr.csum_data = offsetof(struct tcphdr, th_sum);
594		ip->ip_len = m->m_pkthdr.len;
595		if (path_mtu_discovery)
596			ip->ip_off |= IP_DF;
597		error = ip_output(m, inp->inp_options, NULL,
598		    ((tw->tw_so_options & SO_DONTROUTE) ? IP_ROUTETOIF : 0),
599		    NULL, inp);
600	}
601	if (flags & TH_ACK)
602		tcpstat.tcps_sndacks++;
603	else
604		tcpstat.tcps_sndctrl++;
605	tcpstat.tcps_sndtotal++;
606	return (error);
607}
608
609static void
610tcp_tw_2msl_reset(struct tcptw *tw, int rearm)
611{
612
613	INP_INFO_WLOCK_ASSERT(&tcbinfo);
614	INP_LOCK_ASSERT(tw->tw_inpcb);
615	if (rearm)
616		TAILQ_REMOVE(&twq_2msl, tw, tw_2msl);
617	tw->tw_time = ticks + 2 * tcp_msl;
618	TAILQ_INSERT_TAIL(&twq_2msl, tw, tw_2msl);
619}
620
621static void
622tcp_tw_2msl_stop(struct tcptw *tw)
623{
624
625	INP_INFO_WLOCK_ASSERT(&tcbinfo);
626	TAILQ_REMOVE(&twq_2msl, tw, tw_2msl);
627}
628
629struct tcptw *
630tcp_tw_2msl_scan(int reuse)
631{
632	struct tcptw *tw;
633
634	INP_INFO_WLOCK_ASSERT(&tcbinfo);
635	for (;;) {
636		tw = TAILQ_FIRST(&twq_2msl);
637		if (tw == NULL || (!reuse && tw->tw_time > ticks))
638			break;
639		INP_LOCK(tw->tw_inpcb);
640		tcp_twclose(tw, reuse);
641		if (reuse)
642			return (tw);
643	}
644	return (NULL);
645}
646