xref: /csrg-svn/sys/netinet/tcp_timer.c (revision 57433)
123194Smckusick /*
244379Skarels  * Copyright (c) 1982, 1986, 1988, 1990 Regents of the University of California.
332789Sbostic  * All rights reserved.
423194Smckusick  *
544489Sbostic  * %sccs.include.redist.c%
632789Sbostic  *
7*57433Sandrew  *	@(#)tcp_timer.c	7.20 (Berkeley) 01/08/93
823194Smckusick  */
95069Swnj 
1056531Sbostic #include <sys/param.h>
1156531Sbostic #include <sys/systm.h>
1256531Sbostic #include <sys/malloc.h>
1356531Sbostic #include <sys/mbuf.h>
1456531Sbostic #include <sys/socket.h>
1556531Sbostic #include <sys/socketvar.h>
1656531Sbostic #include <sys/protosw.h>
1756531Sbostic #include <sys/errno.h>
188697Sroot 
1956531Sbostic #include <net/if.h>
2056531Sbostic #include <net/route.h>
2110896Ssam 
2256531Sbostic #include <netinet/in.h>
2356531Sbostic #include <netinet/in_systm.h>
2456531Sbostic #include <netinet/ip.h>
2556531Sbostic #include <netinet/in_pcb.h>
2656531Sbostic #include <netinet/ip_var.h>
2756531Sbostic #include <netinet/tcp.h>
2856531Sbostic #include <netinet/tcp_fsm.h>
2956531Sbostic #include <netinet/tcp_seq.h>
3056531Sbostic #include <netinet/tcp_timer.h>
3156531Sbostic #include <netinet/tcp_var.h>
3256531Sbostic #include <netinet/tcpip.h>
335069Swnj 
3433746Skarels int	tcp_keepidle = TCPTV_KEEP_IDLE;
3533746Skarels int	tcp_keepintvl = TCPTV_KEEPINTVL;
3633746Skarels int	tcp_maxidle;
375069Swnj /*
385069Swnj  * Fast timeout routine for processing delayed acks
395069Swnj  */
405069Swnj tcp_fasttimo()
415069Swnj {
425284Sroot 	register struct inpcb *inp;
435284Sroot 	register struct tcpcb *tp;
445284Sroot 	int s = splnet();
455069Swnj 
465691Swnj 	inp = tcb.inp_next;
475691Swnj 	if (inp)
485691Swnj 	for (; inp != &tcb; inp = inp->inp_next)
495284Sroot 		if ((tp = (struct tcpcb *)inp->inp_ppcb) &&
505284Sroot 		    (tp->t_flags & TF_DELACK)) {
515284Sroot 			tp->t_flags &= ~TF_DELACK;
525284Sroot 			tp->t_flags |= TF_ACKNOW;
5330524Skarels 			tcpstat.tcps_delack++;
545284Sroot 			(void) tcp_output(tp);
555284Sroot 		}
565284Sroot 	splx(s);
575069Swnj }
585069Swnj 
595069Swnj /*
605069Swnj  * Tcp protocol timeout routine called every 500 ms.
615069Swnj  * Updates the timers in all active tcb's and
625069Swnj  * causes finite state machine actions if timers expire.
635069Swnj  */
645069Swnj tcp_slowtimo()
655069Swnj {
666212Swnj 	register struct inpcb *ip, *ipnxt;
675069Swnj 	register struct tcpcb *tp;
685069Swnj 	int s = splnet();
695069Swnj 	register int i;
705069Swnj 
7133746Skarels 	tcp_maxidle = TCPTV_KEEPCNT * tcp_keepintvl;
725069Swnj 	/*
735069Swnj 	 * Search through tcb's and update active timers.
745069Swnj 	 */
755245Sroot 	ip = tcb.inp_next;
765245Sroot 	if (ip == 0) {
775245Sroot 		splx(s);
785245Sroot 		return;
795245Sroot 	}
8017315Skarels 	for (; ip != &tcb; ip = ipnxt) {
8117315Skarels 		ipnxt = ip->inp_next;
825069Swnj 		tp = intotcpcb(ip);
835260Swnj 		if (tp == 0)
845260Swnj 			continue;
855075Swnj 		for (i = 0; i < TCPT_NTIMERS; i++) {
866212Swnj 			if (tp->t_timer[i] && --tp->t_timer[i] == 0) {
875069Swnj 				(void) tcp_usrreq(tp->t_inpcb->inp_socket,
885069Swnj 				    PRU_SLOWTIMO, (struct mbuf *)0,
8912764Ssam 				    (struct mbuf *)i, (struct mbuf *)0);
906212Swnj 				if (ipnxt->inp_prev != ip)
916212Swnj 					goto tpgone;
926212Swnj 			}
935069Swnj 		}
945165Swnj 		tp->t_idle++;
955165Swnj 		if (tp->t_rtt)
965165Swnj 			tp->t_rtt++;
976212Swnj tpgone:
9817315Skarels 		;
995069Swnj 	}
1005075Swnj 	tcp_iss += TCP_ISSINCR/PR_SLOWHZ;		/* increment iss */
10127059Skarels #ifdef TCP_COMPAT_42
10226118Skarels 	if ((int)tcp_iss < 0)
10326118Skarels 		tcp_iss = 0;				/* XXX */
10426118Skarels #endif
105*57433Sandrew 	tcp_now++;					/* for timestamps */
1065069Swnj 	splx(s);
1075069Swnj }
1085069Swnj 
1095069Swnj /*
1105075Swnj  * Cancel all timers for TCP tp.
1115069Swnj  */
1125089Swnj tcp_canceltimers(tp)
1135069Swnj 	struct tcpcb *tp;
1145069Swnj {
1155069Swnj 	register int i;
1165069Swnj 
1175075Swnj 	for (i = 0; i < TCPT_NTIMERS; i++)
1185075Swnj 		tp->t_timer[i] = 0;
1195069Swnj }
1205069Swnj 
12132034Skarels int	tcp_backoff[TCP_MAXRXTSHIFT + 1] =
12232034Skarels     { 1, 2, 4, 8, 16, 32, 64, 64, 64, 64, 64, 64, 64 };
12330762Skarels 
1245069Swnj /*
1255165Swnj  * TCP timer processing.
1265069Swnj  */
12710396Ssam struct tcpcb *
1285075Swnj tcp_timers(tp, timer)
1295069Swnj 	register struct tcpcb *tp;
1305075Swnj 	int timer;
1315069Swnj {
13225888Skarels 	register int rexmt;
1335069Swnj 
1345089Swnj 	switch (timer) {
1355069Swnj 
1365165Swnj 	/*
13724819Skarels 	 * 2 MSL timeout in shutdown went off.  If we're closed but
13824819Skarels 	 * still waiting for peer to close and connection has been idle
13924819Skarels 	 * too long, or if 2MSL time is up from TIME_WAIT, delete connection
14024819Skarels 	 * control block.  Otherwise, check again in a bit.
1415165Swnj 	 */
1425075Swnj 	case TCPT_2MSL:
14324819Skarels 		if (tp->t_state != TCPS_TIME_WAIT &&
14433746Skarels 		    tp->t_idle <= tcp_maxidle)
14533746Skarels 			tp->t_timer[TCPT_2MSL] = tcp_keepintvl;
14624819Skarels 		else
14724819Skarels 			tp = tcp_close(tp);
14810396Ssam 		break;
1495069Swnj 
1505165Swnj 	/*
1515165Swnj 	 * Retransmission timer went off.  Message has not
1525165Swnj 	 * been acked within retransmit interval.  Back off
15317362Skarels 	 * to a longer retransmit interval and retransmit one segment.
1545165Swnj 	 */
1555075Swnj 	case TCPT_REXMT:
15632034Skarels 		if (++tp->t_rxtshift > TCP_MAXRXTSHIFT) {
15732034Skarels 			tp->t_rxtshift = TCP_MAXRXTSHIFT;
15830524Skarels 			tcpstat.tcps_timeoutdrop++;
15944379Skarels 			tp = tcp_drop(tp, tp->t_softerror ?
16044379Skarels 			    tp->t_softerror : ETIMEDOUT);
16110396Ssam 			break;
1625691Swnj 		}
16330524Skarels 		tcpstat.tcps_rexmttimeo++;
16444379Skarels 		rexmt = TCP_REXMTVAL(tp) * tcp_backoff[tp->t_rxtshift];
16544379Skarels 		TCPT_RANGESET(tp->t_rxtcur, rexmt,
16644379Skarels 		    tp->t_rttmin, TCPTV_REXMTMAX);
16732034Skarels 		tp->t_timer[TCPT_REXMT] = tp->t_rxtcur;
16826989Skarels 		/*
16932034Skarels 		 * If losing, let the lower level know and try for
17032034Skarels 		 * a better route.  Also, if we backed off this far,
17132034Skarels 		 * our srtt estimate is probably bogus.  Clobber it
17232034Skarels 		 * so we'll take the next rtt measurement as our srtt;
17332034Skarels 		 * move the current srtt into rttvar to keep the current
17432034Skarels 		 * retransmit times until then.
17526989Skarels 		 */
17632034Skarels 		if (tp->t_rxtshift > TCP_MAXRXTSHIFT / 4) {
17726989Skarels 			in_losing(tp->t_inpcb);
17844379Skarels 			tp->t_rttvar += (tp->t_srtt >> TCP_RTT_SHIFT);
17932034Skarels 			tp->t_srtt = 0;
18032034Skarels 		}
1815165Swnj 		tp->snd_nxt = tp->snd_una;
18217314Skarels 		/*
18331726Skarels 		 * If timing a segment in this window, stop the timer.
18417314Skarels 		 */
18531726Skarels 		tp->t_rtt = 0;
18631442Skarels 		/*
18731442Skarels 		 * Close the congestion window down to one segment
18831442Skarels 		 * (we'll open it by one segment for each ack we get).
18931442Skarels 		 * Since we probably have a window's worth of unacked
19031442Skarels 		 * data accumulated, this "slow start" keeps us from
19131442Skarels 		 * dumping all that data as back-to-back packets (which
19231442Skarels 		 * might overwhelm an intermediate gateway).
19332100Skarels 		 *
19432100Skarels 		 * There are two phases to the opening: Initially we
19532100Skarels 		 * open by one mss on each ack.  This makes the window
19632100Skarels 		 * size increase exponentially with time.  If the
19732100Skarels 		 * window is larger than the path can handle, this
19832100Skarels 		 * exponential growth results in dropped packet(s)
19932100Skarels 		 * almost immediately.  To get more time between
20032100Skarels 		 * drops but still "push" the network to take advantage
20132100Skarels 		 * of improving conditions, we switch from exponential
20232100Skarels 		 * to linear window opening at some threshhold size.
20332100Skarels 		 * For a threshhold, we use half the current window
20432100Skarels 		 * size, truncated to a multiple of the mss.
20532100Skarels 		 *
20632100Skarels 		 * (the minimum cwnd that will give us exponential
20732100Skarels 		 * growth is 2 mss.  We don't allow the threshhold
20832100Skarels 		 * to go below this.)
20931442Skarels 		 */
21032100Skarels 		{
21144379Skarels 		u_int win = min(tp->snd_wnd, tp->snd_cwnd) / 2 / tp->t_maxseg;
21232100Skarels 		if (win < 2)
21332100Skarels 			win = 2;
21431442Skarels 		tp->snd_cwnd = tp->t_maxseg;
21532100Skarels 		tp->snd_ssthresh = win * tp->t_maxseg;
21644379Skarels 		tp->t_dupacks = 0;
21732100Skarels 		}
2185165Swnj 		(void) tcp_output(tp);
21910396Ssam 		break;
2205069Swnj 
2215165Swnj 	/*
2225165Swnj 	 * Persistance timer into zero window.
2235165Swnj 	 * Force a byte to be output, if possible.
2245165Swnj 	 */
2255075Swnj 	case TCPT_PERSIST:
22630524Skarels 		tcpstat.tcps_persisttimeo++;
2277156Swnj 		tcp_setpersist(tp);
2285165Swnj 		tp->t_force = 1;
2295165Swnj 		(void) tcp_output(tp);
2305165Swnj 		tp->t_force = 0;
23110396Ssam 		break;
2325069Swnj 
2335165Swnj 	/*
2345165Swnj 	 * Keep-alive timer went off; send something
2355165Swnj 	 * or drop connection if idle for too long.
2365165Swnj 	 */
2375075Swnj 	case TCPT_KEEP:
23830524Skarels 		tcpstat.tcps_keeptimeo++;
2396304Sroot 		if (tp->t_state < TCPS_ESTABLISHED)
2406304Sroot 			goto dropit;
24127193Skarels 		if (tp->t_inpcb->inp_socket->so_options & SO_KEEPALIVE &&
24227193Skarels 		    tp->t_state <= TCPS_CLOSE_WAIT) {
24333746Skarels 		    	if (tp->t_idle >= tcp_keepidle + tcp_maxidle)
2446304Sroot 				goto dropit;
2456267Sroot 			/*
24630524Skarels 			 * Send a packet designed to force a response
24730524Skarels 			 * if the peer is up and reachable:
24830524Skarels 			 * either an ACK if the connection is still alive,
24930524Skarels 			 * or an RST if the peer has closed the connection
25030524Skarels 			 * due to timeout or reboot.
25130524Skarels 			 * Using sequence number tp->snd_una-1
25230524Skarels 			 * causes the transmitted zero-length segment
25330524Skarels 			 * to lie outside the receive window;
25430524Skarels 			 * by the protocol spec, this requires the
25530524Skarels 			 * correspondent TCP to respond.
2566267Sroot 			 */
25730524Skarels 			tcpstat.tcps_keepprobe++;
25831727Skarels #ifdef TCP_COMPAT_42
25931727Skarels 			/*
26031727Skarels 			 * The keepalive packet must have nonzero length
26131727Skarels 			 * to get a 4.2 host to respond.
26231727Skarels 			 */
26337321Skarels 			tcp_respond(tp, tp->t_template, (struct mbuf *)NULL,
26431727Skarels 			    tp->rcv_nxt - 1, tp->snd_una - 1, 0);
26531727Skarels #else
26637321Skarels 			tcp_respond(tp, tp->t_template, (struct mbuf *)NULL,
26731727Skarels 			    tp->rcv_nxt, tp->snd_una - 1, 0);
26831727Skarels #endif
26933746Skarels 			tp->t_timer[TCPT_KEEP] = tcp_keepintvl;
27033746Skarels 		} else
27133746Skarels 			tp->t_timer[TCPT_KEEP] = tcp_keepidle;
27210396Ssam 		break;
2736304Sroot 	dropit:
27430524Skarels 		tcpstat.tcps_keepdrops++;
27510396Ssam 		tp = tcp_drop(tp, ETIMEDOUT);
27610396Ssam 		break;
2775069Swnj 	}
27810396Ssam 	return (tp);
2795069Swnj }
280