tcp_input.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:108k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * INET An implementation of the TCP/IP protocol suite for the LINUX
  3.  * operating system.  INET is implemented using the  BSD Socket
  4.  * interface as the means of communication with the user level.
  5.  *
  6.  * Implementation of the Transmission Control Protocol(TCP).
  7.  *
  8.  * Version: $Id: tcp_input.c,v 1.241.2.1 2002/02/13 05:37:15 davem Exp $
  9.  *
  10.  * Authors: Ross Biro, <bir7@leland.Stanford.Edu>
  11.  * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
  12.  * Mark Evans, <evansmp@uhura.aston.ac.uk>
  13.  * Corey Minyard <wf-rch!minyard@relay.EU.net>
  14.  * Florian La Roche, <flla@stud.uni-sb.de>
  15.  * Charles Hedrick, <hedrick@klinzhai.rutgers.edu>
  16.  * Linus Torvalds, <torvalds@cs.helsinki.fi>
  17.  * Alan Cox, <gw4pts@gw4pts.ampr.org>
  18.  * Matthew Dillon, <dillon@apollo.west.oic.com>
  19.  * Arnt Gulbrandsen, <agulbra@nvg.unit.no>
  20.  * Jorge Cwik, <jorge@laser.satlink.net>
  21.  */
  22. /*
  23.  * Changes:
  24.  * Pedro Roque : Fast Retransmit/Recovery.
  25.  * Two receive queues.
  26.  * Retransmit queue handled by TCP.
  27.  * Better retransmit timer handling.
  28.  * New congestion avoidance.
  29.  * Header prediction.
  30.  * Variable renaming.
  31.  *
  32.  * Eric : Fast Retransmit.
  33.  * Randy Scott : MSS option defines.
  34.  * Eric Schenk : Fixes to slow start algorithm.
  35.  * Eric Schenk : Yet another double ACK bug.
  36.  * Eric Schenk : Delayed ACK bug fixes.
  37.  * Eric Schenk : Floyd style fast retrans war avoidance.
  38.  * David S. Miller : Don't allow zero congestion window.
  39.  * Eric Schenk : Fix retransmitter so that it sends
  40.  * next packet on ack of previous packet.
  41.  * Andi Kleen : Moved open_request checking here
  42.  * and process RSTs for open_requests.
  43.  * Andi Kleen : Better prune_queue, and other fixes.
  44.  * Andrey Savochkin: Fix RTT measurements in the presnce of
  45.  * timestamps.
  46.  * Andrey Savochkin: Check sequence numbers correctly when
  47.  * removing SACKs due to in sequence incoming
  48.  * data segments.
  49.  * Andi Kleen: Make sure we never ack data there is not
  50.  * enough room for. Also make this condition
  51.  * a fatal error if it might still happen.
  52.  * Andi Kleen: Add tcp_measure_rcv_mss to make 
  53.  * connections with MSS<min(MTU,ann. MSS)
  54.  * work without delayed acks. 
  55.  * Andi Kleen: Process packets with PSH set in the
  56.  * fast path.
  57.  * J Hadi Salim: ECN support
  58.  *   Andrei Gurtov,
  59.  * Pasi Sarolahti,
  60.  * Panu Kuhlberg: Experimental audit of TCP (re)transmission
  61.  * engine. Lots of bugs are found.
  62.  */
  63. #include <linux/config.h>
  64. #include <linux/mm.h>
  65. #include <linux/sysctl.h>
  66. #include <net/tcp.h>
  67. #include <net/inet_common.h>
  68. #include <linux/ipsec.h>
  69. int sysctl_tcp_timestamps = 1;
  70. int sysctl_tcp_window_scaling = 1;
  71. int sysctl_tcp_sack = 1;
  72. int sysctl_tcp_fack = 1;
  73. int sysctl_tcp_reordering = TCP_FASTRETRANS_THRESH;
  74. #ifdef CONFIG_INET_ECN
  75. int sysctl_tcp_ecn = 1;
  76. #else
  77. int sysctl_tcp_ecn = 0;
  78. #endif
  79. int sysctl_tcp_dsack = 1;
  80. int sysctl_tcp_app_win = 31;
  81. int sysctl_tcp_adv_win_scale = 2;
  82. int sysctl_tcp_stdurg = 0;
  83. int sysctl_tcp_rfc1337 = 0;
  84. int sysctl_tcp_max_orphans = NR_FILE;
  85. #define FLAG_DATA 0x01 /* Incoming frame contained data. */
  86. #define FLAG_WIN_UPDATE 0x02 /* Incoming ACK was a window update. */
  87. #define FLAG_DATA_ACKED 0x04 /* This ACK acknowledged new data. */
  88. #define FLAG_RETRANS_DATA_ACKED 0x08 /* "" "" some of which was retransmitted. */
  89. #define FLAG_SYN_ACKED 0x10 /* This ACK acknowledged SYN. */
  90. #define FLAG_DATA_SACKED 0x20 /* New SACK. */
  91. #define FLAG_ECE 0x40 /* ECE in this ACK */
  92. #define FLAG_DATA_LOST 0x80 /* SACK detected data lossage. */
  93. #define FLAG_SLOWPATH 0x100 /* Do not skip RFC checks for window update.*/
  94. #define FLAG_ACKED (FLAG_DATA_ACKED|FLAG_SYN_ACKED)
  95. #define FLAG_NOT_DUP (FLAG_DATA|FLAG_WIN_UPDATE|FLAG_ACKED)
  96. #define FLAG_CA_ALERT (FLAG_DATA_SACKED|FLAG_ECE)
  97. #define FLAG_FORWARD_PROGRESS (FLAG_ACKED|FLAG_DATA_SACKED)
  98. #define IsReno(tp) ((tp)->sack_ok == 0)
  99. #define IsFack(tp) ((tp)->sack_ok & 2)
  100. #define IsDSack(tp) ((tp)->sack_ok & 4)
  101. #define TCP_REMNANT (TCP_FLAG_FIN|TCP_FLAG_URG|TCP_FLAG_SYN|TCP_FLAG_PSH)
  102. /* Adapt the MSS value used to make delayed ack decision to the 
  103.  * real world.
  104.  */ 
  105. static __inline__ void tcp_measure_rcv_mss(struct tcp_opt *tp, struct sk_buff *skb)
  106. {
  107. unsigned int len, lss;
  108. lss = tp->ack.last_seg_size; 
  109. tp->ack.last_seg_size = 0; 
  110. /* skb->len may jitter because of SACKs, even if peer
  111.  * sends good full-sized frames.
  112.  */
  113. len = skb->len;
  114. if (len >= tp->ack.rcv_mss) {
  115. tp->ack.rcv_mss = len;
  116. /* Dubious? Rather, it is final cut. 8) */
  117. if (tcp_flag_word(skb->h.th)&TCP_REMNANT)
  118. tp->ack.pending |= TCP_ACK_PUSHED;
  119. } else {
  120. /* Otherwise, we make more careful check taking into account,
  121.  * that SACKs block is variable.
  122.  *
  123.  * "len" is invariant segment length, including TCP header.
  124.  */
  125. len += skb->data - skb->h.raw;
  126. if (len >= TCP_MIN_RCVMSS + sizeof(struct tcphdr) ||
  127.     /* If PSH is not set, packet should be
  128.      * full sized, provided peer TCP is not badly broken.
  129.      * This observation (if it is correct 8)) allows
  130.      * to handle super-low mtu links fairly.
  131.      */
  132.     (len >= TCP_MIN_MSS + sizeof(struct tcphdr) &&
  133.      !(tcp_flag_word(skb->h.th)&TCP_REMNANT))) {
  134. /* Subtract also invariant (if peer is RFC compliant),
  135.  * tcp header plus fixed timestamp option length.
  136.  * Resulting "len" is MSS free of SACK jitter.
  137.  */
  138. len -= tp->tcp_header_len;
  139. tp->ack.last_seg_size = len;
  140. if (len == lss) {
  141. tp->ack.rcv_mss = len;
  142. return;
  143. }
  144. }
  145. tp->ack.pending |= TCP_ACK_PUSHED;
  146. }
  147. }
  148. static void tcp_incr_quickack(struct tcp_opt *tp)
  149. {
  150. unsigned quickacks = tp->rcv_wnd/(2*tp->ack.rcv_mss);
  151. if (quickacks==0)
  152. quickacks=2;
  153. if (quickacks > tp->ack.quick)
  154. tp->ack.quick = min(quickacks, TCP_MAX_QUICKACKS);
  155. }
  156. void tcp_enter_quickack_mode(struct tcp_opt *tp)
  157. {
  158. tcp_incr_quickack(tp);
  159. tp->ack.pingpong = 0;
  160. tp->ack.ato = TCP_ATO_MIN;
  161. }
  162. /* Send ACKs quickly, if "quick" count is not exhausted
  163.  * and the session is not interactive.
  164.  */
  165. static __inline__ int tcp_in_quickack_mode(struct tcp_opt *tp)
  166. {
  167. return (tp->ack.quick && !tp->ack.pingpong);
  168. }
  169. /* Buffer size and advertised window tuning.
  170.  *
  171.  * 1. Tuning sk->sndbuf, when connection enters established state.
  172.  */
  173. static void tcp_fixup_sndbuf(struct sock *sk)
  174. {
  175. struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
  176. int sndmem = tp->mss_clamp+MAX_TCP_HEADER+16+sizeof(struct sk_buff);
  177. if (sk->sndbuf < 3*sndmem)
  178. sk->sndbuf = min(3*sndmem, sysctl_tcp_wmem[2]);
  179. }
  180. /* 2. Tuning advertised window (window_clamp, rcv_ssthresh)
  181.  *
  182.  * All tcp_full_space() is split to two parts: "network" buffer, allocated
  183.  * forward and advertised in receiver window (tp->rcv_wnd) and
  184.  * "application buffer", required to isolate scheduling/application
  185.  * latencies from network.
  186.  * window_clamp is maximal advertised window. It can be less than
  187.  * tcp_full_space(), in this case tcp_full_space() - window_clamp
  188.  * is reserved for "application" buffer. The less window_clamp is
  189.  * the smoother our behaviour from viewpoint of network, but the lower
  190.  * throughput and the higher sensitivity of the connection to losses. 8)
  191.  *
  192.  * rcv_ssthresh is more strict window_clamp used at "slow start"
  193.  * phase to predict further behaviour of this connection.
  194.  * It is used for two goals:
  195.  * - to enforce header prediction at sender, even when application
  196.  *   requires some significant "application buffer". It is check #1.
  197.  * - to prevent pruning of receive queue because of misprediction
  198.  *   of receiver window. Check #2.
  199.  *
  200.  * The scheme does not work when sender sends good segments opening
  201.  * window and then starts to feed us spagetti. But it should work
  202.  * in common situations. Otherwise, we have to rely on queue collapsing.
  203.  */
  204. /* Slow part of check#2. */
  205. static int
  206. __tcp_grow_window(struct sock *sk, struct tcp_opt *tp, struct sk_buff *skb)
  207. {
  208. /* Optimize this! */
  209. int truesize = tcp_win_from_space(skb->truesize)/2;
  210. int window = tcp_full_space(sk)/2;
  211. while (tp->rcv_ssthresh <= window) {
  212. if (truesize <= skb->len)
  213. return 2*tp->ack.rcv_mss;
  214. truesize >>= 1;
  215. window >>= 1;
  216. }
  217. return 0;
  218. }
  219. static __inline__ void
  220. tcp_grow_window(struct sock *sk, struct tcp_opt *tp, struct sk_buff *skb)
  221. {
  222. /* Check #1 */
  223. if (tp->rcv_ssthresh < tp->window_clamp &&
  224.     (int)tp->rcv_ssthresh < tcp_space(sk) &&
  225.     !tcp_memory_pressure) {
  226. int incr;
  227. /* Check #2. Increase window, if skb with such overhead
  228.  * will fit to rcvbuf in future.
  229.  */
  230. if (tcp_win_from_space(skb->truesize) <= skb->len)
  231. incr = 2*tp->advmss;
  232. else
  233. incr = __tcp_grow_window(sk, tp, skb);
  234. if (incr) {
  235. tp->rcv_ssthresh = min(tp->rcv_ssthresh + incr, tp->window_clamp);
  236. tp->ack.quick |= 1;
  237. }
  238. }
  239. }
  240. /* 3. Tuning rcvbuf, when connection enters established state. */
  241. static void tcp_fixup_rcvbuf(struct sock *sk)
  242. {
  243. struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
  244. int rcvmem = tp->advmss+MAX_TCP_HEADER+16+sizeof(struct sk_buff);
  245. /* Try to select rcvbuf so that 4 mss-sized segments
  246.  * will fit to window and correspoding skbs will fit to our rcvbuf.
  247.  * (was 3; 4 is minimum to allow fast retransmit to work.)
  248.  */
  249. while (tcp_win_from_space(rcvmem) < tp->advmss)
  250. rcvmem += 128;
  251. if (sk->rcvbuf < 4*rcvmem)
  252. sk->rcvbuf = min(4*rcvmem, sysctl_tcp_rmem[2]);
  253. }
  254. /* 4. Try to fixup all. It is made iimediately after connection enters
  255.  *    established state.
  256.  */
  257. static void tcp_init_buffer_space(struct sock *sk)
  258. {
  259. struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
  260. int maxwin;
  261. if (!(sk->userlocks&SOCK_RCVBUF_LOCK))
  262. tcp_fixup_rcvbuf(sk);
  263. if (!(sk->userlocks&SOCK_SNDBUF_LOCK))
  264. tcp_fixup_sndbuf(sk);
  265. maxwin = tcp_full_space(sk);
  266. if (tp->window_clamp >= maxwin) {
  267. tp->window_clamp = maxwin;
  268. if (sysctl_tcp_app_win && maxwin>4*tp->advmss)
  269. tp->window_clamp = max(maxwin-(maxwin>>sysctl_tcp_app_win), 4*tp->advmss);
  270. }
  271. /* Force reservation of one segment. */
  272. if (sysctl_tcp_app_win &&
  273.     tp->window_clamp > 2*tp->advmss &&
  274.     tp->window_clamp + tp->advmss > maxwin)
  275. tp->window_clamp = max(2*tp->advmss, maxwin-tp->advmss);
  276. tp->rcv_ssthresh = min(tp->rcv_ssthresh, tp->window_clamp);
  277. tp->snd_cwnd_stamp = tcp_time_stamp;
  278. }
  279. /* 5. Recalculate window clamp after socket hit its memory bounds. */
  280. static void tcp_clamp_window(struct sock *sk, struct tcp_opt *tp)
  281. {
  282. struct sk_buff *skb;
  283. unsigned int app_win = tp->rcv_nxt - tp->copied_seq;
  284. int ofo_win = 0;
  285. tp->ack.quick = 0;
  286. skb_queue_walk(&tp->out_of_order_queue, skb) {
  287. ofo_win += skb->len;
  288. }
  289. /* If overcommit is due to out of order segments,
  290.  * do not clamp window. Try to expand rcvbuf instead.
  291.  */
  292. if (ofo_win) {
  293. if (sk->rcvbuf < sysctl_tcp_rmem[2] &&
  294.     !(sk->userlocks&SOCK_RCVBUF_LOCK) &&
  295.     !tcp_memory_pressure &&
  296.     atomic_read(&tcp_memory_allocated) < sysctl_tcp_mem[0])
  297. sk->rcvbuf = min(atomic_read(&sk->rmem_alloc), sysctl_tcp_rmem[2]);
  298. }
  299. if (atomic_read(&sk->rmem_alloc) > sk->rcvbuf) {
  300. app_win += ofo_win;
  301. if (atomic_read(&sk->rmem_alloc) >= 2*sk->rcvbuf)
  302. app_win >>= 1;
  303. if (app_win > tp->ack.rcv_mss)
  304. app_win -= tp->ack.rcv_mss;
  305. app_win = max(app_win, 2U*tp->advmss);
  306. if (!ofo_win)
  307. tp->window_clamp = min(tp->window_clamp, app_win);
  308. tp->rcv_ssthresh = min(tp->window_clamp, 2U*tp->advmss);
  309. }
  310. }
  311. /* There is something which you must keep in mind when you analyze the
  312.  * behavior of the tp->ato delayed ack timeout interval.  When a
  313.  * connection starts up, we want to ack as quickly as possible.  The
  314.  * problem is that "good" TCP's do slow start at the beginning of data
  315.  * transmission.  The means that until we send the first few ACK's the
  316.  * sender will sit on his end and only queue most of his data, because
  317.  * he can only send snd_cwnd unacked packets at any given time.  For
  318.  * each ACK we send, he increments snd_cwnd and transmits more of his
  319.  * queue.  -DaveM
  320.  */
  321. static void tcp_event_data_recv(struct sock *sk, struct tcp_opt *tp, struct sk_buff *skb)
  322. {
  323. u32 now;
  324. tcp_schedule_ack(tp);
  325. tcp_measure_rcv_mss(tp, skb);
  326. now = tcp_time_stamp;
  327. if (!tp->ack.ato) {
  328. /* The _first_ data packet received, initialize
  329.  * delayed ACK engine.
  330.  */
  331. tcp_incr_quickack(tp);
  332. tp->ack.ato = TCP_ATO_MIN;
  333. } else {
  334. int m = now - tp->ack.lrcvtime;
  335. if (m <= TCP_ATO_MIN/2) {
  336. /* The fastest case is the first. */
  337. tp->ack.ato = (tp->ack.ato>>1) + TCP_ATO_MIN/2;
  338. } else if (m < tp->ack.ato) {
  339. tp->ack.ato = (tp->ack.ato>>1) + m;
  340. if (tp->ack.ato > tp->rto)
  341. tp->ack.ato = tp->rto;
  342. } else if (m > tp->rto) {
  343. /* Too long gap. Apparently sender falled to
  344.  * restart window, so that we send ACKs quickly.
  345.  */
  346. tcp_incr_quickack(tp);
  347. tcp_mem_reclaim(sk);
  348. }
  349. }
  350. tp->ack.lrcvtime = now;
  351. TCP_ECN_check_ce(tp, skb);
  352. if (skb->len >= 128)
  353. tcp_grow_window(sk, tp, skb);
  354. }
  355. /* Called to compute a smoothed rtt estimate. The data fed to this
  356.  * routine either comes from timestamps, or from segments that were
  357.  * known _not_ to have been retransmitted [see Karn/Partridge
  358.  * Proceedings SIGCOMM 87]. The algorithm is from the SIGCOMM 88
  359.  * piece by Van Jacobson.
  360.  * NOTE: the next three routines used to be one big routine.
  361.  * To save cycles in the RFC 1323 implementation it was better to break
  362.  * it up into three procedures. -- erics
  363.  */
  364. static __inline__ void tcp_rtt_estimator(struct tcp_opt *tp, __u32 mrtt)
  365. {
  366. long m = mrtt; /* RTT */
  367. /* The following amusing code comes from Jacobson's
  368.  * article in SIGCOMM '88.  Note that rtt and mdev
  369.  * are scaled versions of rtt and mean deviation.
  370.  * This is designed to be as fast as possible 
  371.  * m stands for "measurement".
  372.  *
  373.  * On a 1990 paper the rto value is changed to:
  374.  * RTO = rtt + 4 * mdev
  375.  *
  376.  * Funny. This algorithm seems to be very broken.
  377.  * These formulae increase RTO, when it should be decreased, increase
  378.  * too slowly, when it should be incresed fastly, decrease too fastly
  379.  * etc. I guess in BSD RTO takes ONE value, so that it is absolutely
  380.  * does not matter how to _calculate_ it. Seems, it was trap
  381.  * that VJ failed to avoid. 8)
  382.  */
  383. if(m == 0)
  384. m = 1;
  385. if (tp->srtt != 0) {
  386. m -= (tp->srtt >> 3); /* m is now error in rtt est */
  387. tp->srtt += m; /* rtt = 7/8 rtt + 1/8 new */
  388. if (m < 0) {
  389. m = -m; /* m is now abs(error) */
  390. m -= (tp->mdev >> 2);   /* similar update on mdev */
  391. /* This is similar to one of Eifel findings.
  392.  * Eifel blocks mdev updates when rtt decreases.
  393.  * This solution is a bit different: we use finer gain
  394.  * for mdev in this case (alpha*beta).
  395.  * Like Eifel it also prevents growth of rto,
  396.  * but also it limits too fast rto decreases,
  397.  * happening in pure Eifel.
  398.  */
  399. if (m > 0)
  400. m >>= 3;
  401. } else {
  402. m -= (tp->mdev >> 2);   /* similar update on mdev */
  403. }
  404. tp->mdev += m;      /* mdev = 3/4 mdev + 1/4 new */
  405. if (tp->mdev > tp->mdev_max) {
  406. tp->mdev_max = tp->mdev;
  407. if (tp->mdev_max > tp->rttvar)
  408. tp->rttvar = tp->mdev_max;
  409. }
  410. if (after(tp->snd_una, tp->rtt_seq)) {
  411. if (tp->mdev_max < tp->rttvar)
  412. tp->rttvar -= (tp->rttvar-tp->mdev_max)>>2;
  413. tp->rtt_seq = tp->snd_una;
  414. tp->mdev_max = TCP_RTO_MIN;
  415. }
  416. } else {
  417. /* no previous measure. */
  418. tp->srtt = m<<3; /* take the measured time to be rtt */
  419. tp->mdev = m<<2; /* make sure rto = 3*rtt */
  420. tp->mdev_max = tp->rttvar = max(tp->mdev, TCP_RTO_MIN);
  421. tp->rtt_seq = tp->snd_nxt;
  422. }
  423. }
  424. /* Calculate rto without backoff.  This is the second half of Van Jacobson's
  425.  * routine referred to above.
  426.  */
  427. static __inline__ void tcp_set_rto(struct tcp_opt *tp)
  428. {
  429. /* Old crap is replaced with new one. 8)
  430.  *
  431.  * More seriously:
  432.  * 1. If rtt variance happened to be less 50msec, it is hallucination.
  433.  *    It cannot be less due to utterly erratic ACK generation made
  434.  *    at least by solaris and freebsd. "Erratic ACKs" has _nothing_
  435.  *    to do with delayed acks, because at cwnd>2 true delack timeout
  436.  *    is invisible. Actually, Linux-2.4 also generates erratic
  437.  *    ACKs in some curcumstances.
  438.  */
  439. tp->rto = (tp->srtt >> 3) + tp->rttvar;
  440. /* 2. Fixups made earlier cannot be right.
  441.  *    If we do not estimate RTO correctly without them,
  442.  *    all the algo is pure shit and should be replaced
  443.  *    with correct one. It is exaclty, which we pretend to do.
  444.  */
  445. }
  446. /* NOTE: clamping at TCP_RTO_MIN is not required, current algo
  447.  * guarantees that rto is higher.
  448.  */
  449. static __inline__ void tcp_bound_rto(struct tcp_opt *tp)
  450. {
  451. if (tp->rto > TCP_RTO_MAX)
  452. tp->rto = TCP_RTO_MAX;
  453. }
  454. /* Save metrics learned by this TCP session.
  455.    This function is called only, when TCP finishes successfully
  456.    i.e. when it enters TIME-WAIT or goes from LAST-ACK to CLOSE.
  457.  */
  458. void tcp_update_metrics(struct sock *sk)
  459. {
  460. struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
  461. struct dst_entry *dst = __sk_dst_get(sk);
  462. dst_confirm(dst);
  463. if (dst && (dst->flags&DST_HOST)) {
  464. int m;
  465. if (tp->backoff || !tp->srtt) {
  466. /* This session failed to estimate rtt. Why?
  467.  * Probably, no packets returned in time.
  468.  * Reset our results.
  469.  */
  470. if (!(dst->mxlock&(1<<RTAX_RTT)))
  471. dst->rtt = 0;
  472. return;
  473. }
  474. m = dst->rtt - tp->srtt;
  475. /* If newly calculated rtt larger than stored one,
  476.  * store new one. Otherwise, use EWMA. Remember,
  477.  * rtt overestimation is always better than underestimation.
  478.  */
  479. if (!(dst->mxlock&(1<<RTAX_RTT))) {
  480. if (m <= 0)
  481. dst->rtt = tp->srtt;
  482. else
  483. dst->rtt -= (m>>3);
  484. }
  485. if (!(dst->mxlock&(1<<RTAX_RTTVAR))) {
  486. if (m < 0)
  487. m = -m;
  488. /* Scale deviation to rttvar fixed point */
  489. m >>= 1;
  490. if (m < tp->mdev)
  491. m = tp->mdev;
  492. if (m >= dst->rttvar)
  493. dst->rttvar = m;
  494. else
  495. dst->rttvar -= (dst->rttvar - m)>>2;
  496. }
  497. if (tp->snd_ssthresh >= 0xFFFF) {
  498. /* Slow start still did not finish. */
  499. if (dst->ssthresh &&
  500.     !(dst->mxlock&(1<<RTAX_SSTHRESH)) &&
  501.     (tp->snd_cwnd>>1) > dst->ssthresh)
  502. dst->ssthresh = (tp->snd_cwnd>>1);
  503. if (!(dst->mxlock&(1<<RTAX_CWND)) &&
  504.     tp->snd_cwnd > dst->cwnd)
  505. dst->cwnd = tp->snd_cwnd;
  506. } else if (tp->snd_cwnd > tp->snd_ssthresh &&
  507.    tp->ca_state == TCP_CA_Open) {
  508. /* Cong. avoidance phase, cwnd is reliable. */
  509. if (!(dst->mxlock&(1<<RTAX_SSTHRESH)))
  510. dst->ssthresh = max(tp->snd_cwnd>>1, tp->snd_ssthresh);
  511. if (!(dst->mxlock&(1<<RTAX_CWND)))
  512. dst->cwnd = (dst->cwnd + tp->snd_cwnd)>>1;
  513. } else {
  514. /* Else slow start did not finish, cwnd is non-sense,
  515.    ssthresh may be also invalid.
  516.  */
  517. if (!(dst->mxlock&(1<<RTAX_CWND)))
  518. dst->cwnd = (dst->cwnd + tp->snd_ssthresh)>>1;
  519. if (dst->ssthresh &&
  520.     !(dst->mxlock&(1<<RTAX_SSTHRESH)) &&
  521.     tp->snd_ssthresh > dst->ssthresh)
  522. dst->ssthresh = tp->snd_ssthresh;
  523. }
  524. if (!(dst->mxlock&(1<<RTAX_REORDERING))) {
  525. if (dst->reordering < tp->reordering &&
  526.     tp->reordering != sysctl_tcp_reordering)
  527. dst->reordering = tp->reordering;
  528. }
  529. }
  530. }
  531. /* Increase initial CWND conservatively: if estimated
  532.  * RTT is low enough (<20msec) or if we have some preset ssthresh.
  533.  *
  534.  * Numbers are taken from RFC2414.
  535.  */
  536. __u32 tcp_init_cwnd(struct tcp_opt *tp)
  537. {
  538. __u32 cwnd;
  539. if (tp->mss_cache > 1460)
  540. return 2;
  541. cwnd = (tp->mss_cache > 1095) ? 3 : 4;
  542. if (!tp->srtt || (tp->snd_ssthresh >= 0xFFFF && tp->srtt > ((HZ/50)<<3)))
  543. cwnd = 2;
  544. else if (cwnd > tp->snd_ssthresh)
  545. cwnd = tp->snd_ssthresh;
  546. return min_t(__u32, cwnd, tp->snd_cwnd_clamp);
  547. }
  548. /* Initialize metrics on socket. */
  549. static void tcp_init_metrics(struct sock *sk)
  550. {
  551. struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
  552. struct dst_entry *dst = __sk_dst_get(sk);
  553. if (dst == NULL)
  554. goto reset;
  555. dst_confirm(dst);
  556. if (dst->mxlock&(1<<RTAX_CWND))
  557. tp->snd_cwnd_clamp = dst->cwnd;
  558. if (dst->ssthresh) {
  559. tp->snd_ssthresh = dst->ssthresh;
  560. if (tp->snd_ssthresh > tp->snd_cwnd_clamp)
  561. tp->snd_ssthresh = tp->snd_cwnd_clamp;
  562. }
  563. if (dst->reordering && tp->reordering != dst->reordering) {
  564. tp->sack_ok &= ~2;
  565. tp->reordering = dst->reordering;
  566. }
  567. if (dst->rtt == 0)
  568. goto reset;
  569. if (!tp->srtt && dst->rtt < (TCP_TIMEOUT_INIT<<3))
  570. goto reset;
  571. /* Initial rtt is determined from SYN,SYN-ACK.
  572.  * The segment is small and rtt may appear much
  573.  * less than real one. Use per-dst memory
  574.  * to make it more realistic.
  575.  *
  576.  * A bit of theory. RTT is time passed after "normal" sized packet
  577.  * is sent until it is ACKed. In normal curcumstances sending small
  578.  * packets force peer to delay ACKs and calculation is correct too.
  579.  * The algorithm is adaptive and, provided we follow specs, it
  580.  * NEVER underestimate RTT. BUT! If peer tries to make some clever
  581.  * tricks sort of "quick acks" for time long enough to decrease RTT
  582.  * to low value, and then abruptly stops to do it and starts to delay
  583.  * ACKs, wait for troubles.
  584.  */
  585. if (dst->rtt > tp->srtt)
  586. tp->srtt = dst->rtt;
  587. if (dst->rttvar > tp->mdev) {
  588. tp->mdev = dst->rttvar;
  589. tp->mdev_max = tp->rttvar = max(tp->mdev, TCP_RTO_MIN);
  590. }
  591. tcp_set_rto(tp);
  592. tcp_bound_rto(tp);
  593. if (tp->rto < TCP_TIMEOUT_INIT && !tp->saw_tstamp)
  594. goto reset;
  595. tp->snd_cwnd = tcp_init_cwnd(tp);
  596. tp->snd_cwnd_stamp = tcp_time_stamp;
  597. return;
  598. reset:
  599. /* Play conservative. If timestamps are not
  600.  * supported, TCP will fail to recalculate correct
  601.  * rtt, if initial rto is too small. FORGET ALL AND RESET!
  602.  */
  603. if (!tp->saw_tstamp && tp->srtt) {
  604. tp->srtt = 0;
  605. tp->mdev = tp->mdev_max = tp->rttvar = TCP_TIMEOUT_INIT;
  606. tp->rto = TCP_TIMEOUT_INIT;
  607. }
  608. }
  609. static void tcp_update_reordering(struct tcp_opt *tp, int metric, int ts)
  610. {
  611. if (metric > tp->reordering) {
  612. tp->reordering = min(TCP_MAX_REORDERING, metric);
  613. /* This exciting event is worth to be remembered. 8) */
  614. if (ts)
  615. NET_INC_STATS_BH(TCPTSReorder);
  616. else if (IsReno(tp))
  617. NET_INC_STATS_BH(TCPRenoReorder);
  618. else if (IsFack(tp))
  619. NET_INC_STATS_BH(TCPFACKReorder);
  620. else
  621. NET_INC_STATS_BH(TCPSACKReorder);
  622. #if FASTRETRANS_DEBUG > 1
  623. printk(KERN_DEBUG "Disorder%d %d %u f%u s%u rr%dn",
  624.        tp->sack_ok, tp->ca_state,
  625.        tp->reordering, tp->fackets_out, tp->sacked_out,
  626.        tp->undo_marker ? tp->undo_retrans : 0);
  627. #endif
  628. /* Disable FACK yet. */
  629. tp->sack_ok &= ~2;
  630. }
  631. }
  632. /* This procedure tags the retransmission queue when SACKs arrive.
  633.  *
  634.  * We have three tag bits: SACKED(S), RETRANS(R) and LOST(L).
  635.  * Packets in queue with these bits set are counted in variables
  636.  * sacked_out, retrans_out and lost_out, correspondingly.
  637.  *
  638.  * Valid combinations are:
  639.  * Tag  InFlight Description
  640.  * 0 1 - orig segment is in flight.
  641.  * S 0 - nothing flies, orig reached receiver.
  642.  * L 0 - nothing flies, orig lost by net.
  643.  * R 2 - both orig and retransmit are in flight.
  644.  * L|R 1 - orig is lost, retransmit is in flight.
  645.  * S|R  1 - orig reached receiver, retrans is still in flight.
  646.  * (L|S|R is logically valid, it could occur when L|R is sacked,
  647.  *  but it is equivalent to plain S and code short-curcuits it to S.
  648.  *  L|S is logically invalid, it would mean -1 packet in flight 8))
  649.  *
  650.  * These 6 states form finite state machine, controlled by the following events:
  651.  * 1. New ACK (+SACK) arrives. (tcp_sacktag_write_queue())
  652.  * 2. Retransmission. (tcp_retransmit_skb(), tcp_xmit_retransmit_queue())
  653.  * 3. Loss detection event of one of three flavors:
  654.  * A. Scoreboard estimator decided the packet is lost.
  655.  *    A'. Reno "three dupacks" marks head of queue lost.
  656.  *    A''. Its FACK modfication, head until snd.fack is lost.
  657.  * B. SACK arrives sacking data transmitted after never retransmitted
  658.  *    hole was sent out.
  659.  * C. SACK arrives sacking SND.NXT at the moment, when the
  660.  *    segment was retransmitted.
  661.  * 4. D-SACK added new rule: D-SACK changes any tag to S.
  662.  *
  663.  * It is pleasant to note, that state diagram turns out to be commutative,
  664.  * so that we are allowed not to be bothered by order of our actions,
  665.  * when multiple events arrive simultaneously. (see the function below).
  666.  *
  667.  * Reordering detection.
  668.  * --------------------
  669.  * Reordering metric is maximal distance, which a packet can be displaced
  670.  * in packet stream. With SACKs we can estimate it:
  671.  *
  672.  * 1. SACK fills old hole and the corresponding segment was not
  673.  *    ever retransmitted -> reordering. Alas, we cannot use it
  674.  *    when segment was retransmitted.
  675.  * 2. The last flaw is solved with D-SACK. D-SACK arrives
  676.  *    for retransmitted and already SACKed segment -> reordering..
  677.  * Both of these heuristics are not used in Loss state, when we cannot
  678.  * account for retransmits accurately.
  679.  */
  680. static int
  681. tcp_sacktag_write_queue(struct sock *sk, struct sk_buff *ack_skb, u32 prior_snd_una)
  682. {
  683. struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
  684. unsigned char *ptr = ack_skb->h.raw + TCP_SKB_CB(ack_skb)->sacked;
  685. struct tcp_sack_block *sp = (struct tcp_sack_block *)(ptr+2);
  686. int num_sacks = (ptr[1] - TCPOLEN_SACK_BASE)>>3;
  687. int reord = tp->packets_out;
  688. int prior_fackets;
  689. u32 lost_retrans = 0;
  690. int flag = 0;
  691. int i;
  692. if (!tp->sacked_out)
  693. tp->fackets_out = 0;
  694. prior_fackets = tp->fackets_out;
  695. for (i=0; i<num_sacks; i++, sp++) {
  696. struct sk_buff *skb;
  697. __u32 start_seq = ntohl(sp->start_seq);
  698. __u32 end_seq = ntohl(sp->end_seq);
  699. int fack_count = 0;
  700. int dup_sack = 0;
  701. /* Check for D-SACK. */
  702. if (i == 0) {
  703. u32 ack = TCP_SKB_CB(ack_skb)->ack_seq;
  704. if (before(start_seq, ack)) {
  705. dup_sack = 1;
  706. tp->sack_ok |= 4;
  707. NET_INC_STATS_BH(TCPDSACKRecv);
  708. } else if (num_sacks > 1 &&
  709.    !after(end_seq, ntohl(sp[1].end_seq)) &&
  710.    !before(start_seq, ntohl(sp[1].start_seq))) {
  711. dup_sack = 1;
  712. tp->sack_ok |= 4;
  713. NET_INC_STATS_BH(TCPDSACKOfoRecv);
  714. }
  715. /* D-SACK for already forgotten data...
  716.  * Do dumb counting. */
  717. if (dup_sack &&
  718.     !after(end_seq, prior_snd_una) &&
  719.     after(end_seq, tp->undo_marker))
  720. tp->undo_retrans--;
  721. /* Eliminate too old ACKs, but take into
  722.  * account more or less fresh ones, they can
  723.  * contain valid SACK info.
  724.  */
  725. if (before(ack, prior_snd_una-tp->max_window))
  726. return 0;
  727. }
  728. /* Event "B" in the comment above. */
  729. if (after(end_seq, tp->high_seq))
  730. flag |= FLAG_DATA_LOST;
  731. for_retrans_queue(skb, sk, tp) {
  732. u8 sacked = TCP_SKB_CB(skb)->sacked;
  733. int in_sack;
  734. /* The retransmission queue is always in order, so
  735.  * we can short-circuit the walk early.
  736.  */
  737. if(!before(TCP_SKB_CB(skb)->seq, end_seq))
  738. break;
  739. fack_count++;
  740. in_sack = !after(start_seq, TCP_SKB_CB(skb)->seq) &&
  741. !before(end_seq, TCP_SKB_CB(skb)->end_seq);
  742. /* Account D-SACK for retransmitted packet. */
  743. if ((dup_sack && in_sack) &&
  744.     (sacked & TCPCB_RETRANS) &&
  745.     after(TCP_SKB_CB(skb)->end_seq, tp->undo_marker))
  746. tp->undo_retrans--;
  747. /* The frame is ACKed. */
  748. if (!after(TCP_SKB_CB(skb)->end_seq, tp->snd_una)) {
  749. if (sacked&TCPCB_RETRANS) {
  750. if ((dup_sack && in_sack) &&
  751.     (sacked&TCPCB_SACKED_ACKED))
  752. reord = min(fack_count, reord);
  753. } else {
  754. /* If it was in a hole, we detected reordering. */
  755. if (fack_count < prior_fackets &&
  756.     !(sacked&TCPCB_SACKED_ACKED))
  757. reord = min(fack_count, reord);
  758. }
  759. /* Nothing to do; acked frame is about to be dropped. */
  760. continue;
  761. }
  762. if ((sacked&TCPCB_SACKED_RETRANS) &&
  763.     after(end_seq, TCP_SKB_CB(skb)->ack_seq) &&
  764.     (!lost_retrans || after(end_seq, lost_retrans)))
  765. lost_retrans = end_seq;
  766. if (!in_sack)
  767. continue;
  768. if (!(sacked&TCPCB_SACKED_ACKED)) {
  769. if (sacked & TCPCB_SACKED_RETRANS) {
  770. /* If the segment is not tagged as lost,
  771.  * we do not clear RETRANS, believing
  772.  * that retransmission is still in flight.
  773.  */
  774. if (sacked & TCPCB_LOST) {
  775. TCP_SKB_CB(skb)->sacked &= ~(TCPCB_LOST|TCPCB_SACKED_RETRANS);
  776. tp->lost_out--;
  777. tp->retrans_out--;
  778. }
  779. } else {
  780. /* New sack for not retransmitted frame,
  781.  * which was in hole. It is reordering.
  782.  */
  783. if (!(sacked & TCPCB_RETRANS) &&
  784.     fack_count < prior_fackets)
  785. reord = min(fack_count, reord);
  786. if (sacked & TCPCB_LOST) {
  787. TCP_SKB_CB(skb)->sacked &= ~TCPCB_LOST;
  788. tp->lost_out--;
  789. }
  790. }
  791. TCP_SKB_CB(skb)->sacked |= TCPCB_SACKED_ACKED;
  792. flag |= FLAG_DATA_SACKED;
  793. tp->sacked_out++;
  794. if (fack_count > tp->fackets_out)
  795. tp->fackets_out = fack_count;
  796. } else {
  797. if (dup_sack && (sacked&TCPCB_RETRANS))
  798. reord = min(fack_count, reord);
  799. }
  800. /* D-SACK. We can detect redundant retransmission
  801.  * in S|R and plain R frames and clear it.
  802.  * undo_retrans is decreased above, L|R frames
  803.  * are accounted above as well.
  804.  */
  805. if (dup_sack &&
  806.     (TCP_SKB_CB(skb)->sacked&TCPCB_SACKED_RETRANS)) {
  807. TCP_SKB_CB(skb)->sacked &= ~TCPCB_SACKED_RETRANS;
  808. tp->retrans_out--;
  809. }
  810. }
  811. }
  812. /* Check for lost retransmit. This superb idea is
  813.  * borrowed from "ratehalving". Event "C".
  814.  * Later note: FACK people cheated me again 8),
  815.  * we have to account for reordering! Ugly,
  816.  * but should help.
  817.  */
  818. if (lost_retrans && tp->ca_state == TCP_CA_Recovery) {
  819. struct sk_buff *skb;
  820. for_retrans_queue(skb, sk, tp) {
  821. if (after(TCP_SKB_CB(skb)->seq, lost_retrans))
  822. break;
  823. if (!after(TCP_SKB_CB(skb)->end_seq, tp->snd_una))
  824. continue;
  825. if ((TCP_SKB_CB(skb)->sacked&TCPCB_SACKED_RETRANS) &&
  826.     after(lost_retrans, TCP_SKB_CB(skb)->ack_seq) &&
  827.     (IsFack(tp) ||
  828.      !before(lost_retrans, TCP_SKB_CB(skb)->ack_seq+tp->reordering*tp->mss_cache))) {
  829. TCP_SKB_CB(skb)->sacked &= ~TCPCB_SACKED_RETRANS;
  830. tp->retrans_out--;
  831. if (!(TCP_SKB_CB(skb)->sacked&(TCPCB_LOST|TCPCB_SACKED_ACKED))) {
  832. tp->lost_out++;
  833. TCP_SKB_CB(skb)->sacked |= TCPCB_LOST;
  834. flag |= FLAG_DATA_SACKED;
  835. NET_INC_STATS_BH(TCPLostRetransmit);
  836. }
  837. }
  838. }
  839. }
  840. tp->left_out = tp->sacked_out + tp->lost_out;
  841. if (reord < tp->fackets_out && tp->ca_state != TCP_CA_Loss)
  842. tcp_update_reordering(tp, (tp->fackets_out+1)-reord, 0);
  843. #if FASTRETRANS_DEBUG > 0
  844. BUG_TRAP((int)tp->sacked_out >= 0);
  845. BUG_TRAP((int)tp->lost_out >= 0);
  846. BUG_TRAP((int)tp->retrans_out >= 0);
  847. BUG_TRAP((int)tcp_packets_in_flight(tp) >= 0);
  848. #endif
  849. return flag;
  850. }
  851. void tcp_clear_retrans(struct tcp_opt *tp)
  852. {
  853. tp->left_out = 0;
  854. tp->retrans_out = 0;
  855. tp->fackets_out = 0;
  856. tp->sacked_out = 0;
  857. tp->lost_out = 0;
  858. tp->undo_marker = 0;
  859. tp->undo_retrans = 0;
  860. }
  861. /* Enter Loss state. If "how" is not zero, forget all SACK information
  862.  * and reset tags completely, otherwise preserve SACKs. If receiver
  863.  * dropped its ofo queue, we will know this due to reneging detection.
  864.  */
  865. void tcp_enter_loss(struct sock *sk, int how)
  866. {
  867. struct tcp_opt *tp = &sk->tp_pinfo.af_tcp;
  868. struct sk_buff *skb;
  869. int cnt = 0;
  870. /* Reduce ssthresh if it has not yet been made inside this window. */
  871. if (tp->ca_state <= TCP_CA_Disorder ||
  872.     tp->snd_una == tp->high_seq ||
  873.     (tp->ca_state == TCP_CA_Loss && !tp->retransmits)) {
  874. tp->prior_ssthresh = tcp_current_ssthresh(tp);
  875. tp->snd_ssthresh = tcp_recalc_ssthresh(tp);
  876. }
  877. tp->snd_cwnd = 1;
  878. tp->snd_cwnd_cnt = 0;
  879. tp->snd_cwnd_stamp = tcp_time_stamp;
  880. tcp_clear_retrans(tp);
  881. /* Push undo marker, if it was plain RTO and nothing
  882.  * was retransmitted. */
  883. if (!how)
  884. tp->undo_marker = tp->snd_una;
  885. for_retrans_queue(skb, sk, tp) {
  886. cnt++;
  887. if (TCP_SKB_CB(skb)->sacked&TCPCB_RETRANS)
  888. tp->undo_marker = 0;
  889. TCP_SKB_CB(skb)->sacked &= (~TCPCB_TAGBITS)|TCPCB_SACKED_ACKED;
  890. if (!(TCP_SKB_CB(skb)->sacked&TCPCB_SACKED_ACKED) || how) {
  891. TCP_SKB_CB(skb)->sacked &= ~TCPCB_SACKED_ACKED;
  892. TCP_SKB_CB(skb)->sacked |= TCPCB_LOST;
  893. tp->lost_out++;
  894. } else {
  895. tp->sacked_out++;
  896. tp->fackets_out = cnt;
  897. }
  898. }
  899. tcp_sync_left_out(tp);
  900. tp->reordering = min_t(unsigned int, tp->reordering, sysctl_tcp_reordering);
  901. tp->ca_state = TCP_CA_Loss;
  902. tp->high_seq = tp->snd_nxt;
  903. TCP_ECN_queue_cwr(tp);
  904. }
  905. static int tcp_check_sack_reneging(struct sock *sk, struct tcp_opt *tp)
  906. {
  907. struct sk_buff *skb;
  908. /* If ACK arrived pointing to a remembered SACK,
  909.  * it means that our remembered SACKs do not reflect
  910.  * real state of receiver i.e.
  911.  * receiver _host_ is heavily congested (or buggy).
  912.  * Do processing similar to RTO timeout.
  913.  */
  914. if ((skb = skb_peek(&sk->write_queue)) != NULL &&
  915.     (TCP_SKB_CB(skb)->sacked & TCPCB_SACKED_ACKED)) {
  916. NET_INC_STATS_BH(TCPSACKReneging);
  917. tcp_enter_loss(sk, 1);
  918. tp->retransmits++;
  919. tcp_retransmit_skb(sk, skb_peek(&sk->write_queue));
  920. tcp_reset_xmit_timer(sk, TCP_TIME_RETRANS, tp->rto);
  921. return 1;
  922. }
  923. return 0;
  924. }
  925. static inline int tcp_fackets_out(struct tcp_opt *tp)
  926. {
  927. return IsReno(tp) ? tp->sacked_out+1 : tp->fackets_out;
  928. }
  929. static inline int tcp_skb_timedout(struct tcp_opt *tp, struct sk_buff *skb)
  930. {
  931. return (tcp_time_stamp - TCP_SKB_CB(skb)->when > tp->rto);
  932. }
  933. static inline int tcp_head_timedout(struct sock *sk, struct tcp_opt *tp)
  934. {
  935. return tp->packets_out && tcp_skb_timedout(tp, skb_peek(&sk->write_queue));
  936. }
  937. /* Linux NewReno/SACK/FACK/ECN state machine.
  938.  * --------------------------------------
  939.  *
  940.  * "Open" Normal state, no dubious events, fast path.
  941.  * "Disorder"   In all the respects it is "Open",
  942.  * but requires a bit more attention. It is entered when
  943.  * we see some SACKs or dupacks. It is split of "Open"
  944.  * mainly to move some processing from fast path to slow one.
  945.  * "CWR" CWND was reduced due to some Congestion Notification event.
  946.  * It can be ECN, ICMP source quench, local device congestion.
  947.  * "Recovery" CWND was reduced, we are fast-retransmitting.
  948.  * "Loss" CWND was reduced due to RTO timeout or SACK reneging.
  949.  *
  950.  * tcp_fastretrans_alert() is entered:
  951.  * - each incoming ACK, if state is not "Open"
  952.  * - when arrived ACK is unusual, namely:
  953.  * * SACK
  954.  * * Duplicate ACK.
  955.  * * ECN ECE.
  956.  *
  957.  * Counting packets in flight is pretty simple.
  958.  *
  959.  * in_flight = packets_out - left_out + retrans_out
  960.  *
  961.  * packets_out is SND.NXT-SND.UNA counted in packets.
  962.  *
  963.  * retrans_out is number of retransmitted segments.
  964.  *
  965.  * left_out is number of segments left network, but not ACKed yet.
  966.  *
  967.  * left_out = sacked_out + lost_out
  968.  *
  969.  *     sacked_out: Packets, which arrived to receiver out of order
  970.  *    and hence not ACKed. With SACKs this number is simply
  971.  *    amount of SACKed data. Even without SACKs
  972.  *    it is easy to give pretty reliable estimate of this number,
  973.  *    counting duplicate ACKs.
  974.  *
  975.  *       lost_out: Packets lost by network. TCP has no explicit
  976.  *    "loss notification" feedback from network (for now).
  977.  *    It means that this number can be only _guessed_.
  978.  *    Actually, it is the heuristics to predict lossage that
  979.  *    distinguishes different algorithms.
  980.  *
  981.  * F.e. after RTO, when all the queue is considered as lost,
  982.  * lost_out = packets_out and in_flight = retrans_out.
  983.  *
  984.  * Essentially, we have now two algorithms counting
  985.  * lost packets.
  986.  *
  987.  * FACK: It is the simplest heuristics. As soon as we decided
  988.  * that something is lost, we decide that _all_ not SACKed
  989.  * packets until the most forward SACK are lost. I.e.
  990.  * lost_out = fackets_out - sacked_out and left_out = fackets_out.
  991.  * It is absolutely correct estimate, if network does not reorder
  992.  * packets. And it loses any connection to reality when reordering
  993.  * takes place. We use FACK by default until reordering
  994.  * is suspected on the path to this destination.
  995.  *
  996.  * NewReno: when Recovery is entered, we assume that one segment
  997.  * is lost (classic Reno). While we are in Recovery and
  998.  * a partial ACK arrives, we assume that one more packet
  999.  * is lost (NewReno). This heuristics are the same in NewReno
  1000.  * and SACK.
  1001.  *
  1002.  *  Imagine, that's all! Forget about all this shamanism about CWND inflation
  1003.  *  deflation etc. CWND is real congestion window, never inflated, changes
  1004.  *  only according to classic VJ rules.
  1005.  *
  1006.  * Really tricky (and requiring careful tuning) part of algorithm
  1007.  * is hidden in functions tcp_time_to_recover() and tcp_xmit_retransmit_queue().
  1008.  * The first determines the moment _when_ we should reduce CWND and,
  1009.  * hence, slow down forward transmission. In fact, it determines the moment
  1010.  * when we decide that hole is caused by loss, rather than by a reorder.
  1011.  *
  1012.  * tcp_xmit_retransmit_queue() decides, _what_ we should retransmit to fill
  1013.  * holes, caused by lost packets.
  1014.  *
  1015.  * And the most logically complicated part of algorithm is undo
  1016.  * heuristics. We detect false retransmits due to both too early
  1017.  * fast retransmit (reordering) and underestimated RTO, analyzing
  1018.  * timestamps and D-SACKs. When we detect that some segments were
  1019.  * retransmitted by mistake and CWND reduction was wrong, we undo
  1020.  * window reduction and abort recovery phase. This logic is hidden
  1021.  * inside several functions named tcp_try_undo_<something>.
  1022.  */
  1023. /* This function decides, when we should leave Disordered state
  1024.  * and enter Recovery phase, reducing congestion window.
  1025.  *
  1026.  * Main question: may we further continue forward transmission
  1027.  * with the same cwnd?
  1028.  */
  1029. static int
  1030. tcp_time_to_recover(struct sock *sk, struct tcp_opt *tp)
  1031. {
  1032. /* Trick#1: The loss is proven. */
  1033. if (tp->lost_out)
  1034. return 1;
  1035. /* Not-A-Trick#2 : Classic rule... */
  1036. if (tcp_fackets_out(tp) > tp->reordering)
  1037. return 1;
  1038. /* Trick#3 : when we use RFC2988 timer restart, fast
  1039.  * retransmit can be triggered by timeout of queue head.
  1040.  */
  1041. if (tcp_head_timedout(sk, tp))
  1042. return 1;
  1043. /* Trick#4: It is still not OK... But will it be useful to delay
  1044.  * recovery more?
  1045.  */
  1046. if (tp->packets_out <= tp->reordering &&
  1047.     tp->sacked_out >= max_t(__u32, tp->packets_out/2, sysctl_tcp_reordering) &&
  1048.     !tcp_may_send_now(sk, tp)) {
  1049. /* We have nothing to send. This connection is limited
  1050.  * either by receiver window or by application.
  1051.  */
  1052. return 1;
  1053. }
  1054. return 0;
  1055. }
  1056. /* If we receive more dupacks than we expected counting segments
  1057.  * in assumption of absent reordering, interpret this as reordering.
  1058.  * The only another reason could be bug in receiver TCP.
  1059.  */
  1060. static void tcp_check_reno_reordering(struct tcp_opt *tp, int addend)
  1061. {
  1062. u32 holes;
  1063. holes = max(tp->lost_out, 1U);
  1064. holes = min(holes, tp->packets_out);
  1065. if (tp->sacked_out + holes > tp->packets_out) {
  1066. tp->sacked_out = tp->packets_out - holes;
  1067. tcp_update_reordering(tp, tp->packets_out+addend, 0);
  1068. }
  1069. }
  1070. /* Emulate SACKs for SACKless connection: account for a new dupack. */
  1071. static void tcp_add_reno_sack(struct tcp_opt *tp)
  1072. {
  1073. ++tp->sacked_out;
  1074. tcp_check_reno_reordering(tp, 0);
  1075. tcp_sync_left_out(tp);
  1076. }
  1077. /* Account for ACK, ACKing some data in Reno Recovery phase. */
  1078. static void tcp_remove_reno_sacks(struct sock *sk, struct tcp_opt *tp, int acked)
  1079. {
  1080. if (acked > 0) {
  1081. /* One ACK acked hole. The rest eat duplicate ACKs. */
  1082. if (acked-1 >= tp->sacked_out)
  1083. tp->sacked_out = 0;
  1084. else
  1085. tp->sacked_out -= acked-1;
  1086. }
  1087. tcp_check_reno_reordering(tp, acked);
  1088. tcp_sync_left_out(tp);
  1089. }
  1090. static inline void tcp_reset_reno_sack(struct tcp_opt *tp)
  1091. {
  1092. tp->sacked_out = 0;
  1093. tp->left_out = tp->lost_out;
  1094. }
  1095. /* Mark head of queue up as lost. */
  1096. static void
  1097. tcp_mark_head_lost(struct sock *sk, struct tcp_opt *tp, int packets, u32 high_seq)
  1098. {
  1099. struct sk_buff *skb;
  1100. int cnt = packets;
  1101. BUG_TRAP(cnt <= tp->packets_out);
  1102. for_retrans_queue(skb, sk, tp) {
  1103. if (--cnt < 0 || after(TCP_SKB_CB(skb)->end_seq, high_seq))
  1104. break;
  1105. if (!(TCP_SKB_CB(skb)->sacked&TCPCB_TAGBITS)) {
  1106. TCP_SKB_CB(skb)->sacked |= TCPCB_LOST;
  1107. tp->lost_out++;
  1108. }
  1109. }
  1110. tcp_sync_left_out(tp);
  1111. }
  1112. /* Account newly detected lost packet(s) */
  1113. static void tcp_update_scoreboard(struct sock *sk, struct tcp_opt *tp)
  1114. {
  1115. if (IsFack(tp)) {
  1116. int lost = tp->fackets_out - tp->reordering;
  1117. if (lost <= 0)
  1118. lost = 1;
  1119. tcp_mark_head_lost(sk, tp, lost, tp->high_seq);
  1120. } else {
  1121. tcp_mark_head_lost(sk, tp, 1, tp->high_seq);
  1122. }
  1123. /* New heuristics: it is possible only after we switched
  1124.  * to restart timer each time when something is ACKed.
  1125.  * Hence, we can detect timed out packets during fast
  1126.  * retransmit without falling to slow start.
  1127.  */
  1128. if (tcp_head_timedout(sk, tp)) {
  1129. struct sk_buff *skb;
  1130. for_retrans_queue(skb, sk, tp) {
  1131. if (tcp_skb_timedout(tp, skb) &&
  1132.     !(TCP_SKB_CB(skb)->sacked&TCPCB_TAGBITS)) {
  1133. TCP_SKB_CB(skb)->sacked |= TCPCB_LOST;
  1134. tp->lost_out++;
  1135. }
  1136. }
  1137. tcp_sync_left_out(tp);
  1138. }
  1139. }
  1140. /* CWND moderation, preventing bursts due to too big ACKs
  1141.  * in dubious situations.
  1142.  */
  1143. static __inline__ void tcp_moderate_cwnd(struct tcp_opt *tp)
  1144. {
  1145. tp->snd_cwnd = min(tp->snd_cwnd,
  1146.    tcp_packets_in_flight(tp)+tcp_max_burst(tp));
  1147. tp->snd_cwnd_stamp = tcp_time_stamp;
  1148. }
  1149. /* Decrease cwnd each second ack. */
  1150. static void tcp_cwnd_down(struct tcp_opt *tp)
  1151. {
  1152. int decr = tp->snd_cwnd_cnt + 1;
  1153. tp->snd_cwnd_cnt = decr&1;
  1154. decr >>= 1;
  1155. if (decr && tp->snd_cwnd > tp->snd_ssthresh/2)
  1156. tp->snd_cwnd -= decr;
  1157. tp->snd_cwnd = min(tp->snd_cwnd, tcp_packets_in_flight(tp)+1);
  1158. tp->snd_cwnd_stamp = tcp_time_stamp;
  1159. }
  1160. /* Nothing was retransmitted or returned timestamp is less
  1161.  * than timestamp of the first retransmission.
  1162.  */
  1163. static __inline__ int tcp_packet_delayed(struct tcp_opt *tp)
  1164. {
  1165. return !tp->retrans_stamp ||
  1166. (tp->saw_tstamp && tp->rcv_tsecr &&
  1167.  (__s32)(tp->rcv_tsecr - tp->retrans_stamp) < 0);
  1168. }
  1169. /* Undo procedures. */
  1170. #if FASTRETRANS_DEBUG > 1
  1171. static void DBGUNDO(struct sock *sk, struct tcp_opt *tp, const char *msg)
  1172. {
  1173. printk(KERN_DEBUG "Undo %s %u.%u.%u.%u/%u c%u l%u ss%u/%u p%un",
  1174.        msg,
  1175.        NIPQUAD(sk->daddr), ntohs(sk->dport),
  1176.        tp->snd_cwnd, tp->left_out,
  1177.        tp->snd_ssthresh, tp->prior_ssthresh, tp->packets_out);
  1178. }
  1179. #else
  1180. #define DBGUNDO(x...) do { } while (0)
  1181. #endif
  1182. static void tcp_undo_cwr(struct tcp_opt *tp, int undo)
  1183. {
  1184. if (tp->prior_ssthresh) {
  1185. tp->snd_cwnd = max(tp->snd_cwnd, tp->snd_ssthresh<<1);
  1186. if (undo && tp->prior_ssthresh > tp->snd_ssthresh) {
  1187. tp->snd_ssthresh = tp->prior_ssthresh;
  1188. TCP_ECN_withdraw_cwr(tp);
  1189. }
  1190. } else {
  1191. tp->snd_cwnd = max(tp->snd_cwnd, tp->snd_ssthresh);
  1192. }
  1193. tcp_moderate_cwnd(tp);
  1194. tp->snd_cwnd_stamp = tcp_time_stamp;
  1195. }
  1196. static inline int tcp_may_undo(struct tcp_opt *tp)
  1197. {
  1198. return tp->undo_marker &&
  1199. (!tp->undo_retrans || tcp_packet_delayed(tp));
  1200. }
  1201. /* People celebrate: "We love our President!" */
  1202. static int tcp_try_undo_recovery(struct sock *sk, struct tcp_opt *tp)
  1203. {
  1204. if (tcp_may_undo(tp)) {
  1205. /* Happy end! We did not retransmit anything
  1206.  * or our original transmission succeeded.
  1207.  */
  1208. DBGUNDO(sk, tp, tp->ca_state == TCP_CA_Loss ? "loss" : "retrans");
  1209. tcp_undo_cwr(tp, 1);
  1210. if (tp->ca_state == TCP_CA_Loss)
  1211. NET_INC_STATS_BH(TCPLossUndo);
  1212. else
  1213. NET_INC_STATS_BH(TCPFullUndo);
  1214. tp->undo_marker = 0;
  1215. }
  1216. if (tp->snd_una == tp->high_seq && IsReno(tp)) {
  1217. /* Hold old state until something *above* high_seq
  1218.  * is ACKed. For Reno it is MUST to prevent false
  1219.  * fast retransmits (RFC2582). SACK TCP is safe. */
  1220. tcp_moderate_cwnd(tp);
  1221. return 1;
  1222. }
  1223. tp->ca_state = TCP_CA_Open;
  1224. return 0;
  1225. }
  1226. /* Try to undo cwnd reduction, because D-SACKs acked all retransmitted data */
  1227. static void tcp_try_undo_dsack(struct sock *sk, struct tcp_opt *tp)
  1228. {
  1229. if (tp->undo_marker && !tp->undo_retrans) {
  1230. DBGUNDO(sk, tp, "D-SACK");
  1231. tcp_undo_cwr(tp, 1);
  1232. tp->undo_marker = 0;
  1233. NET_INC_STATS_BH(TCPDSACKUndo);
  1234. }
  1235. }
  1236. /* Undo during fast recovery after partial ACK. */
  1237. static int tcp_try_undo_partial(struct sock *sk, struct tcp_opt *tp, int acked)
  1238. {
  1239. /* Partial ACK arrived. Force Hoe's retransmit. */
  1240. int failed = IsReno(tp) || tp->fackets_out>tp->reordering;
  1241. if (tcp_may_undo(tp)) {
  1242. /* Plain luck! Hole if filled with delayed
  1243.  * packet, rather than with a retransmit.
  1244.  */
  1245. if (tp->retrans_out == 0)
  1246. tp->retrans_stamp = 0;
  1247. tcp_update_reordering(tp, tcp_fackets_out(tp)+acked, 1);
  1248. DBGUNDO(sk, tp, "Hoe");
  1249. tcp_undo_cwr(tp, 0);
  1250. NET_INC_STATS_BH(TCPPartialUndo);
  1251. /* So... Do not make Hoe's retransmit yet.
  1252.  * If the first packet was delayed, the rest
  1253.  * ones are most probably delayed as well.
  1254.  */
  1255. failed = 0;
  1256. }
  1257. return failed;
  1258. }
  1259. /* Undo during loss recovery after partial ACK. */
  1260. static int tcp_try_undo_loss(struct sock *sk, struct tcp_opt *tp)
  1261. {
  1262. if (tcp_may_undo(tp)) {
  1263. struct sk_buff *skb;
  1264. for_retrans_queue(skb, sk, tp) {
  1265. TCP_SKB_CB(skb)->sacked &= ~TCPCB_LOST;
  1266. }
  1267. DBGUNDO(sk, tp, "partial loss");
  1268. tp->lost_out = 0;
  1269. tp->left_out = tp->sacked_out;
  1270. tcp_undo_cwr(tp, 1);
  1271. NET_INC_STATS_BH(TCPLossUndo);
  1272. tp->retransmits = 0;
  1273. tp->undo_marker = 0;
  1274. if (!IsReno(tp))
  1275. tp->ca_state = TCP_CA_Open;
  1276. return 1;
  1277. }
  1278. return 0;
  1279. }
  1280. static __inline__ void tcp_complete_cwr(struct tcp_opt *tp)
  1281. {
  1282. tp->snd_cwnd = min(tp->snd_cwnd, tp->snd_ssthresh);
  1283. tp->snd_cwnd_stamp = tcp_time_stamp;
  1284. }
  1285. static void tcp_try_to_open(struct sock *sk, struct tcp_opt *tp, int flag)
  1286. {
  1287. tp->left_out = tp->sacked_out;
  1288. if (tp->retrans_out == 0)
  1289. tp->retrans_stamp = 0;
  1290. if (flag&FLAG_ECE)
  1291. tcp_enter_cwr(tp);
  1292. if (tp->ca_state != TCP_CA_CWR) {
  1293. int state = TCP_CA_Open;
  1294. if (tp->left_out ||
  1295.     tp->retrans_out ||
  1296.     tp->undo_marker)
  1297. state = TCP_CA_Disorder;
  1298. if (tp->ca_state != state) {
  1299. tp->ca_state = state;
  1300. tp->high_seq = tp->snd_nxt;
  1301. }
  1302. tcp_moderate_cwnd(tp);
  1303. } else {
  1304. tcp_cwnd_down(tp);
  1305. }
  1306. }
  1307. /* Process an event, which can update packets-in-flight not trivially.
  1308.  * Main goal of this function is to calculate new estimate for left_out,
  1309.  * taking into account both packets sitting in receiver's buffer and
  1310.  * packets lost by network.
  1311.  *
  1312.  * Besides that it does CWND reduction, when packet loss is detected
  1313.  * and changes state of machine.
  1314.  *
  1315.  * It does _not_ decide what to send, it is made in function
  1316.  * tcp_xmit_retransmit_queue().
  1317.  */
  1318. static void
  1319. tcp_fastretrans_alert(struct sock *sk, u32 prior_snd_una,
  1320.       int prior_packets, int flag)
  1321. {
  1322. struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
  1323. int is_dupack = (tp->snd_una == prior_snd_una && !(flag&FLAG_NOT_DUP));
  1324. /* Some technical things:
  1325.  * 1. Reno does not count dupacks (sacked_out) automatically. */
  1326. if (!tp->packets_out)
  1327. tp->sacked_out = 0;
  1328.         /* 2. SACK counts snd_fack in packets inaccurately. */
  1329. if (tp->sacked_out == 0)
  1330. tp->fackets_out = 0;
  1331.         /* Now state machine starts.
  1332.  * A. ECE, hence prohibit cwnd undoing, the reduction is required. */
  1333. if (flag&FLAG_ECE)
  1334. tp->prior_ssthresh = 0;
  1335. /* B. In all the states check for reneging SACKs. */
  1336. if (tp->sacked_out && tcp_check_sack_reneging(sk, tp))
  1337. return;
  1338. /* C. Process data loss notification, provided it is valid. */
  1339. if ((flag&FLAG_DATA_LOST) &&
  1340.     before(tp->snd_una, tp->high_seq) &&
  1341.     tp->ca_state != TCP_CA_Open &&
  1342.     tp->fackets_out > tp->reordering) {
  1343. tcp_mark_head_lost(sk, tp, tp->fackets_out-tp->reordering, tp->high_seq);
  1344. NET_INC_STATS_BH(TCPLoss);
  1345. }
  1346. /* D. Synchronize left_out to current state. */
  1347. tcp_sync_left_out(tp);
  1348. /* E. Check state exit conditions. State can be terminated
  1349.  *    when high_seq is ACKed. */
  1350. if (tp->ca_state == TCP_CA_Open) {
  1351. BUG_TRAP(tp->retrans_out == 0);
  1352. tp->retrans_stamp = 0;
  1353. } else if (!before(tp->snd_una, tp->high_seq)) {
  1354. switch (tp->ca_state) {
  1355. case TCP_CA_Loss:
  1356. tp->retransmits = 0;
  1357. if (tcp_try_undo_recovery(sk, tp))
  1358. return;
  1359. break;
  1360. case TCP_CA_CWR:
  1361. /* CWR is to be held something *above* high_seq
  1362.  * is ACKed for CWR bit to reach receiver. */
  1363. if (tp->snd_una != tp->high_seq) {
  1364. tcp_complete_cwr(tp);
  1365. tp->ca_state = TCP_CA_Open;
  1366. }
  1367. break;
  1368. case TCP_CA_Disorder:
  1369. tcp_try_undo_dsack(sk, tp);
  1370. if (!tp->undo_marker ||
  1371.     /* For SACK case do not Open to allow to undo
  1372.      * catching for all duplicate ACKs. */
  1373.     IsReno(tp) || tp->snd_una != tp->high_seq) {
  1374. tp->undo_marker = 0;
  1375. tp->ca_state = TCP_CA_Open;
  1376. }
  1377. break;
  1378. case TCP_CA_Recovery:
  1379. if (IsReno(tp))
  1380. tcp_reset_reno_sack(tp);
  1381. if (tcp_try_undo_recovery(sk, tp))
  1382. return;
  1383. tcp_complete_cwr(tp);
  1384. break;
  1385. }
  1386. }
  1387. /* F. Process state. */
  1388. switch (tp->ca_state) {
  1389. case TCP_CA_Recovery:
  1390. if (prior_snd_una == tp->snd_una) {
  1391. if (IsReno(tp) && is_dupack)
  1392. tcp_add_reno_sack(tp);
  1393. } else {
  1394. int acked = prior_packets - tp->packets_out;
  1395. if (IsReno(tp))
  1396. tcp_remove_reno_sacks(sk, tp, acked);
  1397. is_dupack = tcp_try_undo_partial(sk, tp, acked);
  1398. }
  1399. break;
  1400. case TCP_CA_Loss:
  1401. if (flag&FLAG_DATA_ACKED)
  1402. tp->retransmits = 0;
  1403. if (!tcp_try_undo_loss(sk, tp)) {
  1404. tcp_moderate_cwnd(tp);
  1405. tcp_xmit_retransmit_queue(sk);
  1406. return;
  1407. }
  1408. if (tp->ca_state != TCP_CA_Open)
  1409. return;
  1410. /* Loss is undone; fall through to processing in Open state. */
  1411. default:
  1412. if (IsReno(tp)) {
  1413. if (tp->snd_una != prior_snd_una)
  1414. tcp_reset_reno_sack(tp);
  1415. if (is_dupack)
  1416. tcp_add_reno_sack(tp);
  1417. }
  1418. if (tp->ca_state == TCP_CA_Disorder)
  1419. tcp_try_undo_dsack(sk, tp);
  1420. if (!tcp_time_to_recover(sk, tp)) {
  1421. tcp_try_to_open(sk, tp, flag);
  1422. return;
  1423. }
  1424. /* Otherwise enter Recovery state */
  1425. if (IsReno(tp))
  1426. NET_INC_STATS_BH(TCPRenoRecovery);
  1427. else
  1428. NET_INC_STATS_BH(TCPSackRecovery);
  1429. tp->high_seq = tp->snd_nxt;
  1430. tp->prior_ssthresh = 0;
  1431. tp->undo_marker = tp->snd_una;
  1432. tp->undo_retrans = tp->retrans_out;
  1433. if (tp->ca_state < TCP_CA_CWR) {
  1434. if (!(flag&FLAG_ECE))
  1435. tp->prior_ssthresh = tcp_current_ssthresh(tp);
  1436. tp->snd_ssthresh = tcp_recalc_ssthresh(tp);
  1437. TCP_ECN_queue_cwr(tp);
  1438. }
  1439. tp->snd_cwnd_cnt = 0;
  1440. tp->ca_state = TCP_CA_Recovery;
  1441. }
  1442. if (is_dupack || tcp_head_timedout(sk, tp))
  1443. tcp_update_scoreboard(sk, tp);
  1444. tcp_cwnd_down(tp);
  1445. tcp_xmit_retransmit_queue(sk);
  1446. }
  1447. /* Read draft-ietf-tcplw-high-performance before mucking
  1448.  * with this code. (Superceeds RFC1323)
  1449.  */
  1450. static void tcp_ack_saw_tstamp(struct tcp_opt *tp, int flag)
  1451. {
  1452. __u32 seq_rtt;
  1453. /* RTTM Rule: A TSecr value received in a segment is used to
  1454.  * update the averaged RTT measurement only if the segment
  1455.  * acknowledges some new data, i.e., only if it advances the
  1456.  * left edge of the send window.
  1457.  *
  1458.  * See draft-ietf-tcplw-high-performance-00, section 3.3.
  1459.  * 1998/04/10 Andrey V. Savochkin <saw@msu.ru>
  1460.  *
  1461.  * Changed: reset backoff as soon as we see the first valid sample.
  1462.  * If we do not, we get strongly overstimated rto. With timestamps
  1463.  * samples are accepted even from very old segments: f.e., when rtt=1
  1464.  * increases to 8, we retransmit 5 times and after 8 seconds delayed
  1465.  * answer arrives rto becomes 120 seconds! If at least one of segments
  1466.  * in window is lost... Voila.   --ANK (010210)
  1467.  */
  1468. seq_rtt = tcp_time_stamp - tp->rcv_tsecr;
  1469. tcp_rtt_estimator(tp, seq_rtt);
  1470. tcp_set_rto(tp);
  1471. tp->backoff = 0;
  1472. tcp_bound_rto(tp);
  1473. }
  1474. static void tcp_ack_no_tstamp(struct tcp_opt *tp, u32 seq_rtt, int flag)
  1475. {
  1476. /* We don't have a timestamp. Can only use
  1477.  * packets that are not retransmitted to determine
  1478.  * rtt estimates. Also, we must not reset the
  1479.  * backoff for rto until we get a non-retransmitted
  1480.  * packet. This allows us to deal with a situation
  1481.  * where the network delay has increased suddenly.
  1482.  * I.e. Karn's algorithm. (SIGCOMM '87, p5.)
  1483.  */
  1484. if (flag & FLAG_RETRANS_DATA_ACKED)
  1485. return;
  1486. tcp_rtt_estimator(tp, seq_rtt);
  1487. tcp_set_rto(tp);
  1488. tp->backoff = 0;
  1489. tcp_bound_rto(tp);
  1490. }
  1491. static __inline__ void
  1492. tcp_ack_update_rtt(struct tcp_opt *tp, int flag, s32 seq_rtt)
  1493. {
  1494. /* Note that peer MAY send zero echo. In this case it is ignored. (rfc1323) */
  1495. if (tp->saw_tstamp && tp->rcv_tsecr)
  1496. tcp_ack_saw_tstamp(tp, flag);
  1497. else if (seq_rtt >= 0)
  1498. tcp_ack_no_tstamp(tp, seq_rtt, flag);
  1499. }
  1500. /* This is Jacobson's slow start and congestion avoidance. 
  1501.  * SIGCOMM '88, p. 328.
  1502.  */
  1503. static __inline__ void tcp_cong_avoid(struct tcp_opt *tp)
  1504. {
  1505.         if (tp->snd_cwnd <= tp->snd_ssthresh) {
  1506.                 /* In "safe" area, increase. */
  1507. if (tp->snd_cwnd < tp->snd_cwnd_clamp)
  1508. tp->snd_cwnd++;
  1509. } else {
  1510.                 /* In dangerous area, increase slowly.
  1511.  * In theory this is tp->snd_cwnd += 1 / tp->snd_cwnd
  1512.  */
  1513. if (tp->snd_cwnd_cnt >= tp->snd_cwnd) {
  1514. if (tp->snd_cwnd < tp->snd_cwnd_clamp)
  1515. tp->snd_cwnd++;
  1516. tp->snd_cwnd_cnt=0;
  1517. } else
  1518. tp->snd_cwnd_cnt++;
  1519.         }
  1520. tp->snd_cwnd_stamp = tcp_time_stamp;
  1521. }
  1522. /* Restart timer after forward progress on connection.
  1523.  * RFC2988 recommends to restart timer to now+rto.
  1524.  */
  1525. static __inline__ void tcp_ack_packets_out(struct sock *sk, struct tcp_opt *tp)
  1526. {
  1527. if (tp->packets_out==0) {
  1528. tcp_clear_xmit_timer(sk, TCP_TIME_RETRANS);
  1529. } else {
  1530. tcp_reset_xmit_timer(sk, TCP_TIME_RETRANS, tp->rto);
  1531. }
  1532. }
  1533. /* Remove acknowledged frames from the retransmission queue. */
  1534. static int tcp_clean_rtx_queue(struct sock *sk)
  1535. {
  1536. struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
  1537. struct sk_buff *skb;
  1538. __u32 now = tcp_time_stamp;
  1539. int acked = 0;
  1540. __s32 seq_rtt = -1;
  1541. while((skb=skb_peek(&sk->write_queue)) && (skb != tp->send_head)) {
  1542. struct tcp_skb_cb *scb = TCP_SKB_CB(skb); 
  1543. __u8 sacked = scb->sacked;
  1544. /* If our packet is before the ack sequence we can
  1545.  * discard it as it's confirmed to have arrived at
  1546.  * the other end.
  1547.  */
  1548. if (after(scb->end_seq, tp->snd_una))
  1549. break;
  1550. /* Initial outgoing SYN's get put onto the write_queue
  1551.  * just like anything else we transmit.  It is not
  1552.  * true data, and if we misinform our callers that
  1553.  * this ACK acks real data, we will erroneously exit
  1554.  * connection startup slow start one packet too
  1555.  * quickly.  This is severely frowned upon behavior.
  1556.  */
  1557. if(!(scb->flags & TCPCB_FLAG_SYN)) {
  1558. acked |= FLAG_DATA_ACKED;
  1559. } else {
  1560. acked |= FLAG_SYN_ACKED;
  1561. }
  1562. if (sacked) {
  1563. if(sacked & TCPCB_RETRANS) {
  1564. if(sacked & TCPCB_SACKED_RETRANS)
  1565. tp->retrans_out--;
  1566. acked |= FLAG_RETRANS_DATA_ACKED;
  1567. seq_rtt = -1;
  1568. } else if (seq_rtt < 0)
  1569. seq_rtt = now - scb->when;
  1570. if(sacked & TCPCB_SACKED_ACKED)
  1571. tp->sacked_out--;
  1572. if(sacked & TCPCB_LOST)
  1573. tp->lost_out--;
  1574. if(sacked & TCPCB_URG) {
  1575. if (tp->urg_mode &&
  1576.     !before(scb->end_seq, tp->snd_up))
  1577. tp->urg_mode = 0;
  1578. }
  1579. } else if (seq_rtt < 0)
  1580. seq_rtt = now - scb->when;
  1581. if(tp->fackets_out)
  1582. tp->fackets_out--;
  1583. tp->packets_out--;
  1584. __skb_unlink(skb, skb->list);
  1585. tcp_free_skb(sk, skb);
  1586. }
  1587. if (acked&FLAG_ACKED) {
  1588. tcp_ack_update_rtt(tp, acked, seq_rtt);
  1589. tcp_ack_packets_out(sk, tp);
  1590. }
  1591. #if FASTRETRANS_DEBUG > 0
  1592. BUG_TRAP((int)tp->sacked_out >= 0);
  1593. BUG_TRAP((int)tp->lost_out >= 0);
  1594. BUG_TRAP((int)tp->retrans_out >= 0);
  1595. if (tp->packets_out==0 && tp->sack_ok) {
  1596. if (tp->lost_out) {
  1597. printk(KERN_DEBUG "Leak l=%u %dn", tp->lost_out, tp->ca_state);
  1598. tp->lost_out = 0;
  1599. }
  1600. if (tp->sacked_out) {
  1601. printk(KERN_DEBUG "Leak s=%u %dn", tp->sacked_out, tp->ca_state);
  1602. tp->sacked_out = 0;
  1603. }
  1604. if (tp->retrans_out) {
  1605. printk(KERN_DEBUG "Leak r=%u %dn", tp->retrans_out, tp->ca_state);
  1606. tp->retrans_out = 0;
  1607. }
  1608. }
  1609. #endif
  1610. return acked;
  1611. }
  1612. static void tcp_ack_probe(struct sock *sk)
  1613. {
  1614. struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
  1615. /* Was it a usable window open? */
  1616. if (!after(TCP_SKB_CB(tp->send_head)->end_seq, tp->snd_una + tp->snd_wnd)) {
  1617. tp->backoff = 0;
  1618. tcp_clear_xmit_timer(sk, TCP_TIME_PROBE0);
  1619. /* Socket must be waked up by subsequent tcp_data_snd_check().
  1620.  * This function is not for random using!
  1621.  */
  1622. } else {
  1623. tcp_reset_xmit_timer(sk, TCP_TIME_PROBE0,
  1624.      min(tp->rto << tp->backoff, TCP_RTO_MAX));
  1625. }
  1626. }
  1627. static __inline__ int tcp_ack_is_dubious(struct tcp_opt *tp, int flag)
  1628. {
  1629. return (!(flag & FLAG_NOT_DUP) || (flag & FLAG_CA_ALERT) ||
  1630. tp->ca_state != TCP_CA_Open);
  1631. }
  1632. static __inline__ int tcp_may_raise_cwnd(struct tcp_opt *tp, int flag)
  1633. {
  1634. return (!(flag & FLAG_ECE) || tp->snd_cwnd < tp->snd_ssthresh) &&
  1635. !((1<<tp->ca_state)&(TCPF_CA_Recovery|TCPF_CA_CWR));
  1636. }
  1637. /* Check that window update is acceptable.
  1638.  * The function assumes that snd_una<=ack<=snd_next.
  1639.  */
  1640. static __inline__ int
  1641. tcp_may_update_window(struct tcp_opt *tp, u32 ack, u32 ack_seq, u32 nwin)
  1642. {
  1643. return (after(ack, tp->snd_una) ||
  1644. after(ack_seq, tp->snd_wl1) ||
  1645. (ack_seq == tp->snd_wl1 && nwin > tp->snd_wnd));
  1646. }
  1647. /* Update our send window.
  1648.  *
  1649.  * Window update algorithm, described in RFC793/RFC1122 (used in linux-2.2
  1650.  * and in FreeBSD. NetBSD's one is even worse.) is wrong.
  1651.  */
  1652. static int tcp_ack_update_window(struct sock *sk, struct tcp_opt *tp,
  1653.  struct sk_buff *skb, u32 ack, u32 ack_seq)
  1654. {
  1655. int flag = 0;
  1656. u32 nwin = ntohs(skb->h.th->window) << tp->snd_wscale;
  1657. if (tcp_may_update_window(tp, ack, ack_seq, nwin)) {
  1658. flag |= FLAG_WIN_UPDATE;
  1659. tcp_update_wl(tp, ack, ack_seq);
  1660. if (tp->snd_wnd != nwin) {
  1661. tp->snd_wnd = nwin;
  1662. /* Note, it is the only place, where
  1663.  * fast path is recovered for sending TCP.
  1664.  */
  1665. tcp_fast_path_check(sk, tp);
  1666. if (nwin > tp->max_window) {
  1667. tp->max_window = nwin;
  1668. tcp_sync_mss(sk, tp->pmtu_cookie);
  1669. }
  1670. }
  1671. }
  1672. tp->snd_una = ack;
  1673. return flag;
  1674. }
  1675. /* This routine deals with incoming acks, but not outgoing ones. */
  1676. static int tcp_ack(struct sock *sk, struct sk_buff *skb, int flag)
  1677. {
  1678. struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
  1679. u32 prior_snd_una = tp->snd_una;
  1680. u32 ack_seq = TCP_SKB_CB(skb)->seq;
  1681. u32 ack = TCP_SKB_CB(skb)->ack_seq;
  1682. u32 prior_in_flight;
  1683. int prior_packets;
  1684. /* If the ack is newer than sent or older than previous acks
  1685.  * then we can probably ignore it.
  1686.  */
  1687. if (after(ack, tp->snd_nxt))
  1688. goto uninteresting_ack;
  1689. if (before(ack, prior_snd_una))
  1690. goto old_ack;
  1691. if (!(flag&FLAG_SLOWPATH) && after(ack, prior_snd_una)) {
  1692. /* Window is constant, pure forward advance.
  1693.  * No more checks are required.
  1694.  * Note, we use the fact that SND.UNA>=SND.WL2.
  1695.  */
  1696. tcp_update_wl(tp, ack, ack_seq);
  1697. tp->snd_una = ack;
  1698. flag |= FLAG_WIN_UPDATE;
  1699. NET_INC_STATS_BH(TCPHPAcks);
  1700. } else {
  1701. if (ack_seq != TCP_SKB_CB(skb)->end_seq)
  1702. flag |= FLAG_DATA;
  1703. else
  1704. NET_INC_STATS_BH(TCPPureAcks);
  1705. flag |= tcp_ack_update_window(sk, tp, skb, ack, ack_seq);
  1706. if (TCP_SKB_CB(skb)->sacked)
  1707. flag |= tcp_sacktag_write_queue(sk, skb, prior_snd_una);
  1708. if (TCP_ECN_rcv_ecn_echo(tp, skb->h.th))
  1709. flag |= FLAG_ECE;
  1710. }
  1711. /* We passed data and got it acked, remove any soft error
  1712.  * log. Something worked...
  1713.  */
  1714. sk->err_soft = 0;
  1715. tp->rcv_tstamp = tcp_time_stamp;
  1716. if ((prior_packets = tp->packets_out) == 0)
  1717. goto no_queue;
  1718. prior_in_flight = tcp_packets_in_flight(tp);
  1719. /* See if we can take anything off of the retransmit queue. */
  1720. flag |= tcp_clean_rtx_queue(sk);
  1721. if (tcp_ack_is_dubious(tp, flag)) {
  1722. /* Advanve CWND, if state allows this. */
  1723. if ((flag&FLAG_DATA_ACKED) && prior_in_flight >= tp->snd_cwnd &&
  1724.     tcp_may_raise_cwnd(tp, flag))
  1725. tcp_cong_avoid(tp);
  1726. tcp_fastretrans_alert(sk, prior_snd_una, prior_packets, flag);
  1727. } else {
  1728. if ((flag&FLAG_DATA_ACKED) && prior_in_flight >= tp->snd_cwnd)
  1729. tcp_cong_avoid(tp);
  1730. }
  1731. if ((flag & FLAG_FORWARD_PROGRESS) || !(flag&FLAG_NOT_DUP))
  1732. dst_confirm(sk->dst_cache);
  1733. return 1;
  1734. no_queue:
  1735. tp->probes_out = 0;
  1736. /* If this ack opens up a zero window, clear backoff.  It was
  1737.  * being used to time the probes, and is probably far higher than
  1738.  * it needs to be for normal retransmission.
  1739.  */
  1740. if (tp->send_head)
  1741. tcp_ack_probe(sk);
  1742. return 1;
  1743. old_ack:
  1744. if (TCP_SKB_CB(skb)->sacked)
  1745. tcp_sacktag_write_queue(sk, skb, prior_snd_una);
  1746. uninteresting_ack:
  1747. SOCK_DEBUG(sk, "Ack %u out of %u:%un", ack, tp->snd_una, tp->snd_nxt);
  1748. return 0;
  1749. }
  1750. /* Look for tcp options. Normally only called on SYN and SYNACK packets.
  1751.  * But, this can also be called on packets in the established flow when
  1752.  * the fast version below fails.
  1753.  */
  1754. void tcp_parse_options(struct sk_buff *skb, struct tcp_opt *tp, int estab)
  1755. {
  1756. unsigned char *ptr;
  1757. struct tcphdr *th = skb->h.th;
  1758. int length=(th->doff*4)-sizeof(struct tcphdr);
  1759. ptr = (unsigned char *)(th + 1);
  1760. tp->saw_tstamp = 0;
  1761. while(length>0) {
  1762.    int opcode=*ptr++;
  1763. int opsize;
  1764. switch (opcode) {
  1765. case TCPOPT_EOL:
  1766. return;
  1767. case TCPOPT_NOP: /* Ref: RFC 793 section 3.1 */
  1768. length--;
  1769. continue;
  1770. default:
  1771. opsize=*ptr++;
  1772. if (opsize < 2) /* "silly options" */
  1773. return;
  1774. if (opsize > length)
  1775. return; /* don't parse partial options */
  1776.    switch(opcode) {
  1777. case TCPOPT_MSS:
  1778. if(opsize==TCPOLEN_MSS && th->syn && !estab) {
  1779. u16 in_mss = ntohs(*(__u16 *)ptr);
  1780. if (in_mss) {
  1781. if (tp->user_mss && tp->user_mss < in_mss)
  1782. in_mss = tp->user_mss;
  1783. tp->mss_clamp = in_mss;
  1784. }
  1785. }
  1786. break;
  1787. case TCPOPT_WINDOW:
  1788. if(opsize==TCPOLEN_WINDOW && th->syn && !estab)
  1789. if (sysctl_tcp_window_scaling) {
  1790. tp->wscale_ok = 1;
  1791. tp->snd_wscale = *(__u8 *)ptr;
  1792. if(tp->snd_wscale > 14) {
  1793. if(net_ratelimit())
  1794. printk("tcp_parse_options: Illegal window "
  1795.        "scaling value %d >14 received.",
  1796.        tp->snd_wscale);
  1797. tp->snd_wscale = 14;
  1798. }
  1799. }
  1800. break;
  1801. case TCPOPT_TIMESTAMP:
  1802. if(opsize==TCPOLEN_TIMESTAMP) {
  1803. if ((estab && tp->tstamp_ok) ||
  1804.     (!estab && sysctl_tcp_timestamps)) {
  1805. tp->saw_tstamp = 1;
  1806. tp->rcv_tsval = ntohl(*(__u32 *)ptr);
  1807. tp->rcv_tsecr = ntohl(*(__u32 *)(ptr+4));
  1808. }
  1809. }
  1810. break;
  1811. case TCPOPT_SACK_PERM:
  1812. if(opsize==TCPOLEN_SACK_PERM && th->syn && !estab) {
  1813. if (sysctl_tcp_sack) {
  1814. tp->sack_ok = 1;
  1815. tcp_sack_reset(tp);
  1816. }
  1817. }
  1818. break;
  1819. case TCPOPT_SACK:
  1820. if((opsize >= (TCPOLEN_SACK_BASE + TCPOLEN_SACK_PERBLOCK)) &&
  1821.    !((opsize - TCPOLEN_SACK_BASE) % TCPOLEN_SACK_PERBLOCK) &&
  1822.    tp->sack_ok) {
  1823. TCP_SKB_CB(skb)->sacked = (ptr - 2) - (unsigned char *)th;
  1824. }
  1825.    };
  1826.    ptr+=opsize-2;
  1827.    length-=opsize;
  1828.    };
  1829. }
  1830. }
  1831. /* Fast parse options. This hopes to only see timestamps.
  1832.  * If it is wrong it falls back on tcp_parse_options().
  1833.  */
  1834. static __inline__ int tcp_fast_parse_options(struct sk_buff *skb, struct tcphdr *th, struct tcp_opt *tp)
  1835. {
  1836. if (th->doff == sizeof(struct tcphdr)>>2) {
  1837. tp->saw_tstamp = 0;
  1838. return 0;
  1839. } else if (tp->tstamp_ok &&
  1840.    th->doff == (sizeof(struct tcphdr)>>2)+(TCPOLEN_TSTAMP_ALIGNED>>2)) {
  1841. __u32 *ptr = (__u32 *)(th + 1);
  1842. if (*ptr == __constant_ntohl((TCPOPT_NOP << 24) | (TCPOPT_NOP << 16)
  1843.      | (TCPOPT_TIMESTAMP << 8) | TCPOLEN_TIMESTAMP)) {
  1844. tp->saw_tstamp = 1;
  1845. ++ptr;
  1846. tp->rcv_tsval = ntohl(*ptr);
  1847. ++ptr;
  1848. tp->rcv_tsecr = ntohl(*ptr);
  1849. return 1;
  1850. }
  1851. }
  1852. tcp_parse_options(skb, tp, 1);
  1853. return 1;
  1854. }
  1855. extern __inline__ void
  1856. tcp_store_ts_recent(struct tcp_opt *tp)
  1857. {
  1858. tp->ts_recent = tp->rcv_tsval;
  1859. tp->ts_recent_stamp = xtime.tv_sec;
  1860. }
  1861. extern __inline__ void
  1862. tcp_replace_ts_recent(struct tcp_opt *tp, u32 seq)
  1863. {
  1864. if (tp->saw_tstamp && !after(seq, tp->rcv_wup)) {
  1865. /* PAWS bug workaround wrt. ACK frames, the PAWS discard
  1866.  * extra check below makes sure this can only happen
  1867.  * for pure ACK frames.  -DaveM
  1868.  *
  1869.  * Not only, also it occurs for expired timestamps.
  1870.  */
  1871. if((s32)(tp->rcv_tsval - tp->ts_recent) >= 0 ||
  1872.    xtime.tv_sec >= tp->ts_recent_stamp + TCP_PAWS_24DAYS)
  1873. tcp_store_ts_recent(tp);
  1874. }
  1875. }
  1876. /* Sorry, PAWS as specified is broken wrt. pure-ACKs -DaveM
  1877.  *
  1878.  * It is not fatal. If this ACK does _not_ change critical state (seqs, window)
  1879.  * it can pass through stack. So, the following predicate verifies that
  1880.  * this segment is not used for anything but congestion avoidance or
  1881.  * fast retransmit. Moreover, we even are able to eliminate most of such
  1882.  * second order effects, if we apply some small "replay" window (~RTO)
  1883.  * to timestamp space.
  1884.  *
  1885.  * All these measures still do not guarantee that we reject wrapped ACKs
  1886.  * on networks with high bandwidth, when sequence space is recycled fastly,
  1887.  * but it guarantees that such events will be very rare and do not affect
  1888.  * connection seriously. This doesn't look nice, but alas, PAWS is really
  1889.  * buggy extension.
  1890.  *
  1891.  * [ Later note. Even worse! It is buggy for segments _with_ data. RFC
  1892.  * states that events when retransmit arrives after original data are rare.
  1893.  * It is a blatant lie. VJ forgot about fast retransmit! 8)8) It is
  1894.  * the biggest problem on large power networks even with minor reordering.
  1895.  * OK, let's give it small replay window. If peer clock is even 1hz, it is safe
  1896.  * up to bandwidth of 18Gigabit/sec. 8) ]
  1897.  */
  1898. static int tcp_disordered_ack(struct tcp_opt *tp, struct sk_buff *skb)
  1899. {
  1900. struct tcphdr *th = skb->h.th;
  1901. u32 seq = TCP_SKB_CB(skb)->seq;
  1902. u32 ack = TCP_SKB_CB(skb)->ack_seq;
  1903. return (/* 1. Pure ACK with correct sequence number. */
  1904. (th->ack && seq == TCP_SKB_CB(skb)->end_seq && seq == tp->rcv_nxt) &&
  1905. /* 2. ... and duplicate ACK. */
  1906. ack == tp->snd_una &&
  1907. /* 3. ... and does not update window. */
  1908. !tcp_may_update_window(tp, ack, seq, ntohs(th->window)<<tp->snd_wscale) &&
  1909. /* 4. ... and sits in replay window. */
  1910. (s32)(tp->ts_recent - tp->rcv_tsval) <= (tp->rto*1024)/HZ);
  1911. }
  1912. extern __inline__ int tcp_paws_discard(struct tcp_opt *tp, struct sk_buff *skb)
  1913. {
  1914. return ((s32)(tp->ts_recent - tp->rcv_tsval) > TCP_PAWS_WINDOW &&
  1915. xtime.tv_sec < tp->ts_recent_stamp + TCP_PAWS_24DAYS &&
  1916. !tcp_disordered_ack(tp, skb));
  1917. }
  1918. /* Check segment sequence number for validity.
  1919.  *
  1920.  * Segment controls are considered valid, if the segment
  1921.  * fits to the window after truncation to the window. Acceptability
  1922.  * of data (and SYN, FIN, of course) is checked separately.
  1923.  * See tcp_data_queue(), for example.
  1924.  *
  1925.  * Also, controls (RST is main one) are accepted using RCV.WUP instead
  1926.  * of RCV.NXT. Peer still did not advance his SND.UNA when we
  1927.  * delayed ACK, so that hisSND.UNA<=ourRCV.WUP.
  1928.  * (borrowed from freebsd)
  1929.  */
  1930. static inline int tcp_sequence(struct tcp_opt *tp, u32 seq, u32 end_seq)
  1931. {
  1932. return !before(end_seq, tp->rcv_wup) &&
  1933. !after(seq, tp->rcv_nxt + tcp_receive_window(tp));
  1934. }
  1935. /* When we get a reset we do this. */
  1936. static void tcp_reset(struct sock *sk)
  1937. {
  1938. /* We want the right error as BSD sees it (and indeed as we do). */
  1939. switch (sk->state) {
  1940. case TCP_SYN_SENT:
  1941. sk->err = ECONNREFUSED;
  1942. break;
  1943. case TCP_CLOSE_WAIT:
  1944. sk->err = EPIPE;
  1945. break;
  1946. case TCP_CLOSE:
  1947. return;
  1948. default:
  1949. sk->err = ECONNRESET;
  1950. }
  1951. if (!sk->dead)
  1952. sk->error_report(sk);
  1953. tcp_done(sk);
  1954. }
  1955. /*
  1956.  *  Process the FIN bit. This now behaves as it is supposed to work
  1957.  * and the FIN takes effect when it is validly part of sequence
  1958.  * space. Not before when we get holes.
  1959.  *
  1960.  * If we are ESTABLISHED, a received fin moves us to CLOSE-WAIT
  1961.  * (and thence onto LAST-ACK and finally, CLOSE, we never enter
  1962.  * TIME-WAIT)
  1963.  *
  1964.  * If we are in FINWAIT-1, a received FIN indicates simultaneous
  1965.  * close and we go into CLOSING (and later onto TIME-WAIT)
  1966.  *
  1967.  * If we are in FINWAIT-2, a received FIN moves us to TIME-WAIT.
  1968.  */
  1969. static void tcp_fin(struct sk_buff *skb, struct sock *sk, struct tcphdr *th)
  1970. {
  1971. struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
  1972. tcp_schedule_ack(tp);
  1973. sk->shutdown |= RCV_SHUTDOWN;
  1974. sk->done = 1;
  1975. switch(sk->state) {
  1976. case TCP_SYN_RECV:
  1977. case TCP_ESTABLISHED:
  1978. /* Move to CLOSE_WAIT */
  1979. tcp_set_state(sk, TCP_CLOSE_WAIT);
  1980. tp->ack.pingpong = 1;
  1981. break;
  1982. case TCP_CLOSE_WAIT:
  1983. case TCP_CLOSING:
  1984. /* Received a retransmission of the FIN, do
  1985.  * nothing.
  1986.  */
  1987. break;
  1988. case TCP_LAST_ACK:
  1989. /* RFC793: Remain in the LAST-ACK state. */
  1990. break;
  1991. case TCP_FIN_WAIT1:
  1992. /* This case occurs when a simultaneous close
  1993.  * happens, we must ack the received FIN and
  1994.  * enter the CLOSING state.
  1995.  */
  1996. tcp_send_ack(sk);
  1997. tcp_set_state(sk, TCP_CLOSING);
  1998. break;
  1999. case TCP_FIN_WAIT2:
  2000. /* Received a FIN -- send ACK and enter TIME_WAIT. */
  2001. tcp_send_ack(sk);
  2002. tcp_time_wait(sk, TCP_TIME_WAIT, 0);
  2003. break;
  2004. default:
  2005. /* Only TCP_LISTEN and TCP_CLOSE are left, in these
  2006.  * cases we should never reach this piece of code.
  2007.  */
  2008. printk("tcp_fin: Impossible, sk->state=%dn", sk->state);
  2009. break;
  2010. };
  2011. /* It _is_ possible, that we have something out-of-order _after_ FIN.
  2012.  * Probably, we should reset in this case. For now drop them.
  2013.  */
  2014. __skb_queue_purge(&tp->out_of_order_queue);
  2015. if (tp->sack_ok)
  2016. tcp_sack_reset(tp);
  2017. tcp_mem_reclaim(sk);
  2018. if (!sk->dead) {
  2019. sk->state_change(sk);
  2020. /* Do not send POLL_HUP for half duplex close. */
  2021. if (sk->shutdown == SHUTDOWN_MASK || sk->state == TCP_CLOSE)
  2022. sk_wake_async(sk, 1, POLL_HUP);
  2023. else
  2024. sk_wake_async(sk, 1, POLL_IN);
  2025. }
  2026. }
  2027. static __inline__ int
  2028. tcp_sack_extend(struct tcp_sack_block *sp, u32 seq, u32 end_seq)
  2029. {
  2030. if (!after(seq, sp->end_seq) && !after(sp->start_seq, end_seq)) {
  2031. if (before(seq, sp->start_seq))
  2032. sp->start_seq = seq;
  2033. if (after(end_seq, sp->end_seq))
  2034. sp->end_seq = end_seq;
  2035. return 1;
  2036. }
  2037. return 0;
  2038. }
  2039. static __inline__ void tcp_dsack_set(struct tcp_opt *tp, u32 seq, u32 end_seq)
  2040. {
  2041. if (tp->sack_ok && sysctl_tcp_dsack) {
  2042. if (before(seq, tp->rcv_nxt))
  2043. NET_INC_STATS_BH(TCPDSACKOldSent);
  2044. else
  2045. NET_INC_STATS_BH(TCPDSACKOfoSent);
  2046. tp->dsack = 1;
  2047. tp->duplicate_sack[0].start_seq = seq;
  2048. tp->duplicate_sack[0].end_seq = end_seq;
  2049. tp->eff_sacks = min(tp->num_sacks+1, 4-tp->tstamp_ok);
  2050. }
  2051. }
  2052. static __inline__ void tcp_dsack_extend(struct tcp_opt *tp, u32 seq, u32 end_seq)
  2053. {
  2054. if (!tp->dsack)
  2055. tcp_dsack_set(tp, seq, end_seq);
  2056. else
  2057. tcp_sack_extend(tp->duplicate_sack, seq, end_seq);
  2058. }
  2059. static void tcp_send_dupack(struct sock *sk, struct sk_buff *skb)
  2060. {
  2061. struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
  2062. if (TCP_SKB_CB(skb)->end_seq != TCP_SKB_CB(skb)->seq &&
  2063.     before(TCP_SKB_CB(skb)->seq, tp->rcv_nxt)) {
  2064. NET_INC_STATS_BH(DelayedACKLost);
  2065. tcp_enter_quickack_mode(tp);
  2066. if (tp->sack_ok && sysctl_tcp_dsack) {
  2067. u32 end_seq = TCP_SKB_CB(skb)->end_seq;
  2068. if (after(TCP_SKB_CB(skb)->end_seq, tp->rcv_nxt))
  2069. end_seq = tp->rcv_nxt;
  2070. tcp_dsack_set(tp, TCP_SKB_CB(skb)->seq, end_seq);
  2071. }
  2072. }
  2073. tcp_send_ack(sk);
  2074. }
  2075. /* These routines update the SACK block as out-of-order packets arrive or
  2076.  * in-order packets close up the sequence space.
  2077.  */
  2078. static void tcp_sack_maybe_coalesce(struct tcp_opt *tp)
  2079. {
  2080. int this_sack;
  2081. struct tcp_sack_block *sp = &tp->selective_acks[0];
  2082. struct tcp_sack_block *swalk = sp+1;
  2083. /* See if the recent change to the first SACK eats into
  2084.  * or hits the sequence space of other SACK blocks, if so coalesce.
  2085.  */
  2086. for (this_sack = 1; this_sack < tp->num_sacks; ) {
  2087. if (tcp_sack_extend(sp, swalk->start_seq, swalk->end_seq)) {
  2088. int i;
  2089. /* Zap SWALK, by moving every further SACK up by one slot.
  2090.  * Decrease num_sacks.
  2091.  */
  2092. tp->num_sacks--;
  2093. tp->eff_sacks = min(tp->num_sacks+tp->dsack, 4-tp->tstamp_ok);
  2094. for(i=this_sack; i < tp->num_sacks; i++)
  2095. sp[i] = sp[i+1];
  2096. continue;
  2097. }
  2098. this_sack++, swalk++;
  2099. }
  2100. }
  2101. static __inline__ void tcp_sack_swap(struct tcp_sack_block *sack1, struct tcp_sack_block *sack2)
  2102. {
  2103. __u32 tmp;
  2104. tmp = sack1->start_seq;
  2105. sack1->start_seq = sack2->start_seq;
  2106. sack2->start_seq = tmp;
  2107. tmp = sack1->end_seq;
  2108. sack1->end_seq = sack2->end_seq;
  2109. sack2->end_seq = tmp;
  2110. }
  2111. static void tcp_sack_new_ofo_skb(struct sock *sk, u32 seq, u32 end_seq)
  2112. {
  2113. struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
  2114. struct tcp_sack_block *sp = &tp->selective_acks[0];
  2115. int cur_sacks = tp->num_sacks;
  2116. int this_sack;
  2117. if (!cur_sacks)
  2118. goto new_sack;
  2119. for (this_sack=0; this_sack<cur_sacks; this_sack++, sp++) {
  2120. if (tcp_sack_extend(sp, seq, end_seq)) {
  2121. /* Rotate this_sack to the first one. */
  2122. for (; this_sack>0; this_sack--, sp--)
  2123. tcp_sack_swap(sp, sp-1);
  2124. if (cur_sacks > 1)
  2125. tcp_sack_maybe_coalesce(tp);
  2126. return;
  2127. }
  2128. }
  2129. /* Could not find an adjacent existing SACK, build a new one,
  2130.  * put it at the front, and shift everyone else down.  We
  2131.  * always know there is at least one SACK present already here.
  2132.  *
  2133.  * If the sack array is full, forget about the last one.
  2134.  */
  2135. if (this_sack >= 4) {
  2136. this_sack--;
  2137. tp->num_sacks--;
  2138. sp--;
  2139. }
  2140. for(; this_sack > 0; this_sack--, sp--)
  2141. *sp = *(sp-1);
  2142. new_sack:
  2143. /* Build the new head SACK, and we're done. */
  2144. sp->start_seq = seq;
  2145. sp->end_seq = end_seq;
  2146. tp->num_sacks++;
  2147. tp->eff_sacks = min(tp->num_sacks+tp->dsack, 4-tp->tstamp_ok);
  2148. }
  2149. /* RCV.NXT advances, some SACKs should be eaten. */
  2150. static void tcp_sack_remove(struct tcp_opt *tp)
  2151. {
  2152. struct tcp_sack_block *sp = &tp->selective_acks[0];
  2153. int num_sacks = tp->num_sacks;
  2154. int this_sack;
  2155. /* Empty ofo queue, hence, all the SACKs are eaten. Clear. */
  2156. if (skb_queue_len(&tp->out_of_order_queue) == 0) {
  2157. tp->num_sacks = 0;
  2158. tp->eff_sacks = tp->dsack;
  2159. return;
  2160. }
  2161. for(this_sack = 0; this_sack < num_sacks; ) {
  2162. /* Check if the start of the sack is covered by RCV.NXT. */
  2163. if (!before(tp->rcv_nxt, sp->start_seq)) {
  2164. int i;
  2165. /* RCV.NXT must cover all the block! */
  2166. BUG_TRAP(!before(tp->rcv_nxt, sp->end_seq));
  2167. /* Zap this SACK, by moving forward any other SACKS. */
  2168. for (i=this_sack+1; i < num_sacks; i++)
  2169. tp->selective_acks[i-1] = tp->selective_acks[i];
  2170. num_sacks--;
  2171. continue;
  2172. }
  2173. this_sack++;
  2174. sp++;
  2175. }
  2176. if (num_sacks != tp->num_sacks) {
  2177. tp->num_sacks = num_sacks;
  2178. tp->eff_sacks = min(tp->num_sacks+tp->dsack, 4-tp->tstamp_ok);
  2179. }
  2180. }
  2181. /* This one checks to see if we can put data from the
  2182.  * out_of_order queue into the receive_queue.
  2183.  */
  2184. static void tcp_ofo_queue(struct sock *sk)
  2185. {
  2186. struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
  2187. __u32 dsack_high = tp->rcv_nxt;
  2188. struct sk_buff *skb;
  2189. while ((skb = skb_peek(&tp->out_of_order_queue)) != NULL) {
  2190. if (after(TCP_SKB_CB(skb)->seq, tp->rcv_nxt))
  2191. break;
  2192. if (before(TCP_SKB_CB(skb)->seq, dsack_high)) {
  2193. __u32 dsack = dsack_high;
  2194. if (before(TCP_SKB_CB(skb)->end_seq, dsack_high))
  2195. dsack_high = TCP_SKB_CB(skb)->end_seq;
  2196. tcp_dsack_extend(tp, TCP_SKB_CB(skb)->seq, dsack);
  2197. }
  2198. if (!after(TCP_SKB_CB(skb)->end_seq, tp->rcv_nxt)) {
  2199. SOCK_DEBUG(sk, "ofo packet was already received n");
  2200. __skb_unlink(skb, skb->list);
  2201. __kfree_skb(skb);
  2202. continue;
  2203. }
  2204. SOCK_DEBUG(sk, "ofo requeuing : rcv_next %X seq %X - %Xn",
  2205.    tp->rcv_nxt, TCP_SKB_CB(skb)->seq,
  2206.    TCP_SKB_CB(skb)->end_seq);
  2207. __skb_unlink(skb, skb->list);
  2208. __skb_queue_tail(&sk->receive_queue, skb);
  2209. tp->rcv_nxt = TCP_SKB_CB(skb)->end_seq;
  2210. if(skb->h.th->fin)
  2211. tcp_fin(skb, sk, skb->h.th);
  2212. }
  2213. }
  2214. static inline int tcp_rmem_schedule(struct sock *sk, struct sk_buff *skb)
  2215. {
  2216. return (int)skb->truesize <= sk->forward_alloc ||
  2217. tcp_mem_schedule(sk, skb->truesize, 1);
  2218. }
  2219. static int tcp_prune_queue(struct sock *sk);
  2220. static void tcp_data_queue(struct sock *sk, struct sk_buff *skb)
  2221. {
  2222. struct tcphdr *th = skb->h.th;
  2223. struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
  2224. int eaten = -1;
  2225. if (TCP_SKB_CB(skb)->seq == TCP_SKB_CB(skb)->end_seq)
  2226. goto drop;
  2227. th = skb->h.th;
  2228. __skb_pull(skb, th->doff*4);
  2229. TCP_ECN_accept_cwr(tp, skb);
  2230. if (tp->dsack) {
  2231. tp->dsack = 0;
  2232. tp->eff_sacks = min_t(unsigned int, tp->num_sacks, 4-tp->tstamp_ok);
  2233. }
  2234. /*  Queue data for delivery to the user.
  2235.  *  Packets in sequence go to the receive queue.
  2236.  *  Out of sequence packets to the out_of_order_queue.
  2237.  */
  2238. if (TCP_SKB_CB(skb)->seq == tp->rcv_nxt) {
  2239. if (tcp_receive_window(tp) == 0)
  2240. goto out_of_window;
  2241. /* Ok. In sequence. In window. */
  2242. if (tp->ucopy.task == current &&
  2243.     tp->copied_seq == tp->rcv_nxt &&
  2244.     tp->ucopy.len &&
  2245.     sk->lock.users &&
  2246.     !tp->urg_data) {
  2247. int chunk = min_t(unsigned int, skb->len, tp->ucopy.len);
  2248. __set_current_state(TASK_RUNNING);
  2249. local_bh_enable();
  2250. if (!skb_copy_datagram_iovec(skb, 0, tp->ucopy.iov, chunk)) {
  2251. tp->ucopy.len -= chunk;
  2252. tp->copied_seq += chunk;
  2253. eaten = (chunk == skb->len && !th->fin);
  2254. }
  2255. local_bh_disable();
  2256. }
  2257. if (eaten <= 0) {
  2258. queue_and_out:
  2259. if (eaten < 0 &&
  2260.     (atomic_read(&sk->rmem_alloc) > sk->rcvbuf ||
  2261.      !tcp_rmem_schedule(sk, skb))) {
  2262. if (tcp_prune_queue(sk) < 0 || !tcp_rmem_schedule(sk, skb))
  2263. goto drop;
  2264. }
  2265. tcp_set_owner_r(skb, sk);
  2266. __skb_queue_tail(&sk->receive_queue, skb);
  2267. }
  2268. tp->rcv_nxt = TCP_SKB_CB(skb)->end_seq;
  2269. if(skb->len)
  2270. tcp_event_data_recv(sk, tp, skb);
  2271. if(th->fin)
  2272. tcp_fin(skb, sk, th);
  2273. if (skb_queue_len(&tp->out_of_order_queue)) {
  2274. tcp_ofo_queue(sk);
  2275. /* RFC2581. 4.2. SHOULD send immediate ACK, when
  2276.  * gap in queue is filled.
  2277.  */
  2278. if (skb_queue_len(&tp->out_of_order_queue) == 0)
  2279. tp->ack.pingpong = 0;
  2280. }
  2281. if(tp->num_sacks)
  2282. tcp_sack_remove(tp);
  2283. tcp_fast_path_check(sk, tp);
  2284. if (eaten > 0) {
  2285. __kfree_skb(skb);
  2286. } else if (!sk->dead)
  2287. sk->data_ready(sk, 0);
  2288. return;
  2289. }
  2290. if (!after(TCP_SKB_CB(skb)->end_seq, tp->rcv_nxt)) {
  2291. /* A retransmit, 2nd most common case.  Force an immediate ack. */
  2292. NET_INC_STATS_BH(DelayedACKLost);
  2293. tcp_dsack_set(tp, TCP_SKB_CB(skb)->seq, TCP_SKB_CB(skb)->end_seq);
  2294. out_of_window:
  2295. tcp_enter_quickack_mode(tp);
  2296. tcp_schedule_ack(tp);
  2297. drop:
  2298. __kfree_skb(skb);
  2299. return;
  2300. }
  2301. /* Out of window. F.e. zero window probe. */
  2302. if (!before(TCP_SKB_CB(skb)->seq, tp->rcv_nxt+tcp_receive_window(tp)))
  2303. goto out_of_window;
  2304. tcp_enter_quickack_mode(tp);
  2305. if (before(TCP_SKB_CB(skb)->seq, tp->rcv_nxt)) {
  2306. /* Partial packet, seq < rcv_next < end_seq */
  2307. SOCK_DEBUG(sk, "partial packet: rcv_next %X seq %X - %Xn",
  2308.    tp->rcv_nxt, TCP_SKB_CB(skb)->seq,
  2309.    TCP_SKB_CB(skb)->end_seq);
  2310. tcp_dsack_set(tp, TCP_SKB_CB(skb)->seq, tp->rcv_nxt);
  2311. /* If window is closed, drop tail of packet. But after
  2312.  * remembering D-SACK for its head made in previous line.
  2313.  */
  2314. if (!tcp_receive_window(tp))
  2315. goto out_of_window;
  2316. goto queue_and_out;
  2317. }
  2318. TCP_ECN_check_ce(tp, skb);
  2319. if (atomic_read(&sk->rmem_alloc) > sk->rcvbuf ||
  2320.     !tcp_rmem_schedule(sk, skb)) {
  2321. if (tcp_prune_queue(sk) < 0 || !tcp_rmem_schedule(sk, skb))
  2322. goto drop;
  2323. }
  2324. /* Disable header prediction. */
  2325. tp->pred_flags = 0;
  2326. tcp_schedule_ack(tp);
  2327. SOCK_DEBUG(sk, "out of order segment: rcv_next %X seq %X - %Xn",
  2328.    tp->rcv_nxt, TCP_SKB_CB(skb)->seq, TCP_SKB_CB(skb)->end_seq);
  2329. tcp_set_owner_r(skb, sk);
  2330. if (skb_peek(&tp->out_of_order_queue) == NULL) {
  2331. /* Initial out of order segment, build 1 SACK. */
  2332. if(tp->sack_ok) {
  2333. tp->num_sacks = 1;
  2334. tp->dsack = 0;
  2335. tp->eff_sacks = 1;
  2336. tp->selective_acks[0].start_seq = TCP_SKB_CB(skb)->seq;
  2337. tp->selective_acks[0].end_seq = TCP_SKB_CB(skb)->end_seq;
  2338. }
  2339. __skb_queue_head(&tp->out_of_order_queue,skb);
  2340. } else {
  2341. struct sk_buff *skb1=tp->out_of_order_queue.prev;
  2342. u32 seq = TCP_SKB_CB(skb)->seq;
  2343. u32 end_seq = TCP_SKB_CB(skb)->end_seq;
  2344. if (seq == TCP_SKB_CB(skb1)->end_seq) {
  2345. __skb_append(skb1, skb);
  2346. if (tp->num_sacks == 0 ||
  2347.     tp->selective_acks[0].end_seq != seq)
  2348. goto add_sack;
  2349. /* Common case: data arrive in order after hole. */
  2350. tp->selective_acks[0].end_seq = end_seq;
  2351. return;
  2352. }
  2353. /* Find place to insert this segment. */
  2354. do {
  2355. if (!after(TCP_SKB_CB(skb1)->seq, seq))
  2356. break;
  2357. } while ((skb1=skb1->prev) != (struct sk_buff*)&tp->out_of_order_queue);
  2358. /* Do skb overlap to previous one? */
  2359. if (skb1 != (struct sk_buff*)&tp->out_of_order_queue &&
  2360.     before(seq, TCP_SKB_CB(skb1)->end_seq)) {
  2361. if (!after(end_seq, TCP_SKB_CB(skb1)->end_seq)) {
  2362. /* All the bits are present. Drop. */
  2363. __kfree_skb(skb);
  2364. tcp_dsack_set(tp, seq, end_seq);
  2365. goto add_sack;
  2366. }
  2367. if (after(seq, TCP_SKB_CB(skb1)->seq)) {
  2368. /* Partial overlap. */
  2369. tcp_dsack_set(tp, seq, TCP_SKB_CB(skb1)->end_seq);
  2370. } else {
  2371. skb1 = skb1->prev;
  2372. }
  2373. }
  2374. __skb_insert(skb, skb1, skb1->next, &tp->out_of_order_queue);
  2375. /* And clean segments covered by new one as whole. */
  2376. while ((skb1 = skb->next) != (struct sk_buff*)&tp->out_of_order_queue &&
  2377.        after(end_seq, TCP_SKB_CB(skb1)->seq)) {
  2378.        if (before(end_seq, TCP_SKB_CB(skb1)->end_seq)) {
  2379.        tcp_dsack_extend(tp, TCP_SKB_CB(skb1)->seq, end_seq);
  2380.        break;
  2381.        }
  2382.        __skb_unlink(skb1, skb1->list);
  2383.        tcp_dsack_extend(tp, TCP_SKB_CB(skb1)->seq, TCP_SKB_CB(skb1)->end_seq);
  2384.        __kfree_skb(skb1);
  2385. }
  2386. add_sack:
  2387. if (tp->sack_ok)
  2388. tcp_sack_new_ofo_skb(sk, seq, end_seq);
  2389. }
  2390. }
  2391. /* Collapse contiguous sequence of skbs head..tail with
  2392.  * sequence numbers start..end.
  2393.  * Segments with FIN/SYN are not collapsed (only because this
  2394.  * simplifies code)
  2395.  */
  2396. static void
  2397. tcp_collapse(struct sock *sk, struct sk_buff *head,
  2398.      struct sk_buff *tail, u32 start, u32 end)
  2399. {
  2400. struct sk_buff *skb;
  2401. /* First, check that queue is collapsable and find
  2402.  * the point where collapsing can be useful. */
  2403. for (skb = head; skb != tail; ) {
  2404. /* No new bits? It is possible on ofo queue. */
  2405. if (!before(start, TCP_SKB_CB(skb)->end_seq)) {
  2406. struct sk_buff *next = skb->next;
  2407. __skb_unlink(skb, skb->list);
  2408. __kfree_skb(skb);
  2409. NET_INC_STATS_BH(TCPRcvCollapsed);
  2410. skb = next;
  2411. continue;
  2412. }
  2413. /* The first skb to collapse is:
  2414.  * - not SYN/FIN and
  2415.  * - bloated or contains data before "start" or
  2416.  *   overlaps to the next one.
  2417.  */
  2418. if (!skb->h.th->syn && !skb->h.th->fin &&
  2419.     (tcp_win_from_space(skb->truesize) > skb->len ||
  2420.      before(TCP_SKB_CB(skb)->seq, start) ||
  2421.      (skb->next != tail &&
  2422.       TCP_SKB_CB(skb)->end_seq != TCP_SKB_CB(skb->next)->seq)))
  2423. break;
  2424. /* Decided to skip this, advance start seq. */
  2425. start = TCP_SKB_CB(skb)->end_seq;
  2426. skb = skb->next;
  2427. }
  2428. if (skb == tail || skb->h.th->syn || skb->h.th->fin)
  2429. return;
  2430. while (before(start, end)) {
  2431. struct sk_buff *nskb;
  2432. int header = skb_headroom(skb);
  2433. int copy = (PAGE_SIZE - sizeof(struct sk_buff) -
  2434.     sizeof(struct skb_shared_info) - header - 31)&~15;
  2435. /* Too big header? This can happen with IPv6. */
  2436. if (copy < 0)
  2437. return;
  2438. if (end-start < copy)
  2439. copy = end-start;
  2440. nskb = alloc_skb(copy+header, GFP_ATOMIC);
  2441. if (!nskb)
  2442. return;
  2443. skb_reserve(nskb, header);
  2444. memcpy(nskb->head, skb->head, header);
  2445. nskb->nh.raw = nskb->head + (skb->nh.raw-skb->head);
  2446. nskb->h.raw = nskb->head + (skb->h.raw-skb->head);
  2447. nskb->mac.raw = nskb->head + (skb->mac.raw-skb->head);
  2448. memcpy(nskb->cb, skb->cb, sizeof(skb->cb));
  2449. TCP_SKB_CB(nskb)->seq = TCP_SKB_CB(nskb)->end_seq = start;
  2450. __skb_insert(nskb, skb->prev, skb, skb->list);
  2451. tcp_set_owner_r(nskb, sk);
  2452. /* Copy data, releasing collapsed skbs. */
  2453. while (copy > 0) {
  2454. int offset = start - TCP_SKB_CB(skb)->seq;
  2455. int size = TCP_SKB_CB(skb)->end_seq - start;
  2456. if (offset < 0) BUG();
  2457. if (size > 0) {
  2458. size = min(copy, size);
  2459. if (skb_copy_bits(skb, offset, skb_put(nskb, size), size))
  2460. BUG();
  2461. TCP_SKB_CB(nskb)->end_seq += size;
  2462. copy -= size;
  2463. start += size;
  2464. }
  2465. if (!before(start, TCP_SKB_CB(skb)->end_seq)) {
  2466. struct sk_buff *next = skb->next;
  2467. __skb_unlink(skb, skb->list);
  2468. __kfree_skb(skb);
  2469. NET_INC_STATS_BH(TCPRcvCollapsed);
  2470. skb = next;
  2471. if (skb == tail || skb->h.th->syn || skb->h.th->fin)
  2472. return;
  2473. }
  2474. }
  2475. }
  2476. }
  2477. /* Collapse ofo queue. Algorithm: select contiguous sequence of skbs
  2478.  * and tcp_collapse() them until all the queue is collapsed.
  2479.  */
  2480. static void tcp_collapse_ofo_queue(struct sock *sk)
  2481. {
  2482. struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
  2483. struct sk_buff *skb = skb_peek(&tp->out_of_order_queue);
  2484. struct sk_buff *head;
  2485. u32 start, end;
  2486. if (skb == NULL)
  2487. return;
  2488. start = TCP_SKB_CB(skb)->seq;
  2489. end = TCP_SKB_CB(skb)->end_seq;
  2490. head = skb;
  2491. for (;;) {
  2492. skb = skb->next;
  2493. /* Segment is terminated when we see gap or when
  2494.  * we are at the end of all the queue. */
  2495. if (skb == (struct sk_buff *)&tp->out_of_order_queue ||
  2496.     after(TCP_SKB_CB(skb)->seq, end) ||
  2497.     before(TCP_SKB_CB(skb)->end_seq, start)) {
  2498. tcp_collapse(sk, head, skb, start, end);
  2499. head = skb;
  2500. if (skb == (struct sk_buff *)&tp->out_of_order_queue)
  2501. break;
  2502. /* Start new segment */
  2503. start = TCP_SKB_CB(skb)->seq;
  2504. end = TCP_SKB_CB(skb)->end_seq;
  2505. } else {
  2506. if (before(TCP_SKB_CB(skb)->seq, start))
  2507. start = TCP_SKB_CB(skb)->seq;
  2508. if (after(TCP_SKB_CB(skb)->end_seq, end))
  2509. end = TCP_SKB_CB(skb)->end_seq;
  2510. }
  2511. }
  2512. }
  2513. /* Reduce allocated memory if we can, trying to get
  2514.  * the socket within its memory limits again.
  2515.  *
  2516.  * Return less than zero if we should start dropping frames
  2517.  * until the socket owning process reads some of the data
  2518.  * to stabilize the situation.
  2519.  */
  2520. static int tcp_prune_queue(struct sock *sk)
  2521. {
  2522. struct tcp_opt *tp = &sk->tp_pinfo.af_tcp; 
  2523. SOCK_DEBUG(sk, "prune_queue: c=%xn", tp->copied_seq);
  2524. NET_INC_STATS_BH(PruneCalled);
  2525. if (atomic_read(&sk->rmem_alloc) >= sk->rcvbuf)
  2526. tcp_clamp_window(sk, tp);
  2527. else if (tcp_memory_pressure)
  2528. tp->rcv_ssthresh = min(tp->rcv_ssthresh, 4U*tp->advmss);
  2529. tcp_collapse_ofo_queue(sk);
  2530. tcp_collapse(sk, sk->receive_queue.next,
  2531.      (struct sk_buff*)&sk->receive_queue,
  2532.      tp->copied_seq, tp->rcv_nxt);
  2533. tcp_mem_reclaim(sk);
  2534. if (atomic_read(&sk->rmem_alloc) <= sk->rcvbuf)
  2535. return 0;
  2536. /* Collapsing did not help, destructive actions follow.
  2537.  * This must not ever occur. */
  2538. /* First, purge the out_of_order queue. */
  2539. if (skb_queue_len(&tp->out_of_order_queue)) {
  2540. net_statistics[smp_processor_id()*2].OfoPruned += skb_queue_len(&tp->out_of_order_queue);
  2541. __skb_queue_purge(&tp->out_of_order_queue);
  2542. /* Reset SACK state.  A conforming SACK implementation will
  2543.  * do the same at a timeout based retransmit.  When a connection
  2544.  * is in a sad state like this, we care only about integrity
  2545.  * of the connection not performance.
  2546.  */
  2547. if(tp->sack_ok)
  2548. tcp_sack_reset(tp);
  2549. tcp_mem_reclaim(sk);
  2550. }
  2551. if(atomic_read(&sk->rmem_alloc) <= sk->rcvbuf)
  2552. return 0;
  2553. /* If we are really being abused, tell the caller to silently
  2554.  * drop receive data on the floor.  It will get retransmitted
  2555.  * and hopefully then we'll have sufficient space.
  2556.  */
  2557. NET_INC_STATS_BH(RcvPruned);
  2558. /* Massive buffer overcommit. */
  2559. tp->pred_flags = 0;
  2560. return -1;
  2561. }
  2562. /* RFC2861, slow part. Adjust cwnd, after it was not full during one rto.
  2563.  * As additional protections, we do not touch cwnd in retransmission phases,
  2564.  * and if application hit its sndbuf limit recently.
  2565.  */
  2566. void tcp_cwnd_application_limited(struct sock *sk)
  2567. {
  2568. struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
  2569. if (tp->ca_state == TCP_CA_Open &&
  2570.     sk->socket && !test_bit(SOCK_NOSPACE, &sk->socket->flags)) {
  2571. /* Limited by application or receiver window. */
  2572. u32 win_used = max(tp->snd_cwnd_used, 2U);
  2573. if (win_used < tp->snd_cwnd) {
  2574. tp->snd_ssthresh = tcp_current_ssthresh(tp);
  2575. tp->snd_cwnd = (tp->snd_cwnd+win_used)>>1;
  2576. }
  2577. tp->snd_cwnd_used = 0;
  2578. }
  2579. tp->snd_cwnd_stamp = tcp_time_stamp;
  2580. }
  2581. /* When incoming ACK allowed to free some skb from write_queue,
  2582.  * we remember this event in flag tp->queue_shrunk and wake up socket
  2583.  * on the exit from tcp input handler.
  2584.  */
  2585. static void tcp_new_space(struct sock *sk)
  2586. {
  2587. struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
  2588. if (tp->packets_out < tp->snd_cwnd &&
  2589.     !(sk->userlocks&SOCK_SNDBUF_LOCK) &&
  2590.     !tcp_memory_pressure &&
  2591.     atomic_read(&tcp_memory_allocated) < sysctl_tcp_mem[0]) {
  2592. int sndmem, demanded;
  2593. sndmem = tp->mss_clamp+MAX_TCP_HEADER+16+sizeof(struct sk_buff);
  2594. demanded = max_t(unsigned int, tp->snd_cwnd, tp->reordering+1);
  2595. sndmem *= 2*demanded;
  2596. if (sndmem > sk->sndbuf)
  2597. sk->sndbuf = min(sndmem, sysctl_tcp_wmem[2]);
  2598. tp->snd_cwnd_stamp = tcp_time_stamp;
  2599. }
  2600. sk->write_space(sk);
  2601. }
  2602. static inline void tcp_check_space(struct sock *sk)
  2603. {
  2604. struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
  2605. if (tp->queue_shrunk) {
  2606. tp->queue_shrunk = 0;
  2607. if (sk->socket && test_bit(SOCK_NOSPACE, &sk->socket->flags))
  2608. tcp_new_space(sk);
  2609. }
  2610. }
  2611. static void __tcp_data_snd_check(struct sock *sk, struct sk_buff *skb)
  2612. {
  2613. struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
  2614. if (after(TCP_SKB_CB(skb)->end_seq, tp->snd_una + tp->snd_wnd) ||
  2615.     tcp_packets_in_flight(tp) >= tp->snd_cwnd ||
  2616.     tcp_write_xmit(sk, tp->nonagle))
  2617. tcp_check_probe_timer(sk, tp);
  2618. }
  2619. static __inline__ void tcp_data_snd_check(struct sock *sk)
  2620. {
  2621. struct sk_buff *skb = sk->tp_pinfo.af_tcp.send_head;
  2622. if (skb != NULL)
  2623. __tcp_data_snd_check(sk, skb);
  2624. tcp_check_space(sk);
  2625. }
  2626. /*
  2627.  * Check if sending an ack is needed.
  2628.  */
  2629. static __inline__ void __tcp_ack_snd_check(struct sock *sk, int ofo_possible)
  2630. {
  2631. struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
  2632.     /* More than one full frame received... */
  2633. if (((tp->rcv_nxt - tp->rcv_wup) > tp->ack.rcv_mss
  2634.      /* ... and right edge of window advances far enough.
  2635.       * (tcp_recvmsg() will send ACK otherwise). Or...
  2636.       */
  2637.      && __tcp_select_window(sk) >= tp->rcv_wnd) ||
  2638.     /* We ACK each frame or... */
  2639.     tcp_in_quickack_mode(tp) ||
  2640.     /* We have out of order data. */
  2641.     (ofo_possible &&
  2642.      skb_peek(&tp->out_of_order_queue) != NULL)) {
  2643. /* Then ack it now */
  2644. tcp_send_ack(sk);
  2645. } else {
  2646. /* Else, send delayed ack. */
  2647. tcp_send_delayed_ack(sk);
  2648. }
  2649. }
  2650. static __inline__ void tcp_ack_snd_check(struct sock *sk)
  2651. {
  2652. struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
  2653. if (!tcp_ack_scheduled(tp)) {
  2654. /* We sent a data segment already. */
  2655. return;
  2656. }
  2657. __tcp_ack_snd_check(sk, 1);
  2658. }
  2659. /*
  2660.  * This routine is only called when we have urgent data
  2661.  * signalled. Its the 'slow' part of tcp_urg. It could be
  2662.  * moved inline now as tcp_urg is only called from one
  2663.  * place. We handle URGent data wrong. We have to - as
  2664.  * BSD still doesn't use the correction from RFC961.
  2665.  * For 1003.1g we should support a new option TCP_STDURG to permit
  2666.  * either form (or just set the sysctl tcp_stdurg).
  2667.  */
  2668.  
  2669. static void tcp_check_urg(struct sock * sk, struct tcphdr * th)
  2670. {
  2671. struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
  2672. u32 ptr = ntohs(th->urg_ptr);
  2673. if (ptr && !sysctl_tcp_stdurg)
  2674. ptr--;
  2675. ptr += ntohl(th->seq);
  2676. /* Ignore urgent data that we've already seen and read. */
  2677. if (after(tp->copied_seq, ptr))
  2678. return;
  2679. /* Do not replay urg ptr.
  2680.  *
  2681.  * NOTE: interesting situation not covered by specs.
  2682.  * Misbehaving sender may send urg ptr, pointing to segment,
  2683.  * which we already have in ofo queue. We are not able to fetch
  2684.  * such data and will stay in TCP_URG_NOTYET until will be eaten
  2685.  * by recvmsg(). Seems, we are not obliged to handle such wicked
  2686.  * situations. But it is worth to think about possibility of some
  2687.  * DoSes using some hypothetical application level deadlock.
  2688.  */
  2689. if (before(ptr, tp->rcv_nxt))
  2690. return;
  2691. /* Do we already have a newer (or duplicate) urgent pointer? */
  2692. if (tp->urg_data && !after(ptr, tp->urg_seq))
  2693. return;
  2694. /* Tell the world about our new urgent pointer. */
  2695. if (sk->proc != 0) {
  2696. if (sk->proc > 0)
  2697. kill_proc(sk->proc, SIGURG, 1);
  2698. else
  2699. kill_pg(-sk->proc, SIGURG, 1);
  2700. sk_wake_async(sk, 3, POLL_PRI);
  2701. }
  2702. /* We may be adding urgent data when the last byte read was
  2703.  * urgent. To do this requires some care. We cannot just ignore
  2704.  * tp->copied_seq since we would read the last urgent byte again
  2705.  * as data, nor can we alter copied_seq until this data arrives
  2706.  * or we break the sematics of SIOCATMARK (and thus sockatmark())
  2707.  *
  2708.  * NOTE. Double Dutch. Rendering to plain English: author of comment
  2709.  * above did something sort of  send("A", MSG_OOB); send("B", MSG_OOB);
  2710.  * and expect that both A and B disappear from stream. This is _wrong_.
  2711.  * Though this happens in BSD with high probability, this is occasional.
  2712.  * Any application relying on this is buggy. Note also, that fix "works"
  2713.  * only in this artificial test. Insert some normal data between A and B and we will
  2714.  * decline of BSD again. Verdict: it is better to remove to trap
  2715.  * buggy users.
  2716.  */
  2717. if (tp->urg_seq == tp->copied_seq && tp->urg_data &&
  2718.     !sk->urginline &&
  2719.     tp->copied_seq != tp->rcv_nxt) {
  2720. struct sk_buff *skb = skb_peek(&sk->receive_queue);
  2721. tp->copied_seq++;
  2722. if (skb && !before(tp->copied_seq, TCP_SKB_CB(skb)->end_seq)) {
  2723. __skb_unlink(skb, skb->list);
  2724. __kfree_skb(skb);
  2725. }
  2726. }
  2727. tp->urg_data = TCP_URG_NOTYET;
  2728. tp->urg_seq = ptr;
  2729. /* Disable header prediction. */
  2730. tp->pred_flags = 0;
  2731. }
  2732. /* This is the 'fast' part of urgent handling. */
  2733. static inline void tcp_urg(struct sock *sk, struct sk_buff *skb, struct tcphdr *th)
  2734. {
  2735. struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
  2736. /* Check if we get a new urgent pointer - normally not. */
  2737. if (th->urg)
  2738. tcp_check_urg(sk,th);
  2739. /* Do we wait for any urgent data? - normally not... */
  2740. if (tp->urg_data == TCP_URG_NOTYET) {
  2741. u32 ptr = tp->urg_seq - ntohl(th->seq) + (th->doff*4) - th->syn;
  2742. /* Is the urgent pointer pointing into this packet? */  
  2743. if (ptr < skb->len) {
  2744. u8 tmp;
  2745. if (skb_copy_bits(skb, ptr, &tmp, 1))
  2746. BUG();
  2747. tp->urg_data = TCP_URG_VALID | tmp;
  2748. if (!sk->dead)
  2749. sk->data_ready(sk,0);
  2750. }
  2751. }
  2752. }
  2753. static int tcp_copy_to_iovec(struct sock *sk, struct sk_buff *skb, int hlen)
  2754. {
  2755. struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
  2756. int chunk = skb->len - hlen;
  2757. int err;
  2758. local_bh_enable();
  2759. if (skb->ip_summed==CHECKSUM_UNNECESSARY)
  2760. err = skb_copy_datagram_iovec(skb, hlen, tp->ucopy.iov, chunk);
  2761. else
  2762. err = skb_copy_and_csum_datagram_iovec(skb, hlen, tp->ucopy.iov);
  2763. if (!err) {
  2764. tp->ucopy.len -= chunk;
  2765. tp->copied_seq += chunk;
  2766. }
  2767. local_bh_disable();
  2768. return err;
  2769. }
  2770. static int __tcp_checksum_complete_user(struct sock *sk, struct sk_buff *skb)
  2771. {
  2772. int result;
  2773. if (sk->lock.users) {
  2774. local_bh_enable();
  2775. result = __tcp_checksum_complete(skb);
  2776. local_bh_disable();
  2777. } else {
  2778. result = __tcp_checksum_complete(skb);
  2779. }
  2780. return result;
  2781. }
  2782. static __inline__ int
  2783. tcp_checksum_complete_user(struct sock *sk, struct sk_buff *skb)
  2784. {
  2785. return skb->ip_summed != CHECKSUM_UNNECESSARY &&
  2786. __tcp_checksum_complete_user(sk, skb);
  2787. }
  2788. /*
  2789.  * TCP receive function for the ESTABLISHED state. 
  2790.  *
  2791.  * It is split into a fast path and a slow path. The fast path is 
  2792.  *  disabled when:
  2793.  * - A zero window was announced from us - zero window probing
  2794.  *        is only handled properly in the slow path. 
  2795.  * - Out of order segments arrived.
  2796.  * - Urgent data is expected.
  2797.  * - There is no buffer space left
  2798.  * - Unexpected TCP flags/window values/header lengths are received
  2799.  *   (detected by checking the TCP header against pred_flags) 
  2800.  * - Data is sent in both directions. Fast path only supports pure senders
  2801.  *   or pure receivers (this means either the sequence number or the ack
  2802.  *   value must stay constant)
  2803.  * - Unexpected TCP option.
  2804.  *
  2805.  * When these conditions are not satisfied it drops into a standard 
  2806.  * receive procedure patterned after RFC793 to handle all cases.
  2807.  * The first three cases are guaranteed by proper pred_flags setting,
  2808.  * the rest is checked inline. Fast processing is turned on in 
  2809.  * tcp_data_queue when everything is OK.
  2810.  */
  2811. int tcp_rcv_established(struct sock *sk, struct sk_buff *skb,
  2812. struct tcphdr *th, unsigned len)
  2813. {
  2814. struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
  2815. /*
  2816.  * Header prediction.
  2817.  * The code losely follows the one in the famous 
  2818.  * "30 instruction TCP receive" Van Jacobson mail.
  2819.  *
  2820.  * Van's trick is to deposit buffers into socket queue 
  2821.  * on a device interrupt, to call tcp_recv function
  2822.  * on the receive process context and checksum and copy
  2823.  * the buffer to user space. smart...
  2824.  *
  2825.  * Our current scheme is not silly either but we take the 
  2826.  * extra cost of the net_bh soft interrupt processing...
  2827.  * We do checksum and copy also but from device to kernel.
  2828.  */
  2829. tp->saw_tstamp = 0;
  2830. /* pred_flags is 0xS?10 << 16 + snd_wnd
  2831.  * if header_predition is to be made
  2832.  * 'S' will always be tp->tcp_header_len >> 2
  2833.  * '?' will be 0 for the fast path, otherwise pred_flags is 0 to
  2834.  *  turn it off (when there are holes in the receive 
  2835.  *  space for instance)
  2836.  * PSH flag is ignored.
  2837.  */
  2838. if ((tcp_flag_word(th) & TCP_HP_BITS) == tp->pred_flags &&
  2839. TCP_SKB_CB(skb)->seq == tp->rcv_nxt) {
  2840. int tcp_header_len = tp->tcp_header_len;
  2841. /* Timestamp header prediction: tcp_header_len
  2842.  * is automatically equal to th->doff*4 due to pred_flags
  2843.  * match.
  2844.  */
  2845. /* Check timestamp */
  2846. if (tcp_header_len == sizeof(struct tcphdr) + TCPOLEN_TSTAMP_ALIGNED) {
  2847. __u32 *ptr = (__u32 *)(th + 1);
  2848. /* No? Slow path! */
  2849. if (*ptr != __constant_ntohl((TCPOPT_NOP << 24) | (TCPOPT_NOP << 16)
  2850.      | (TCPOPT_TIMESTAMP << 8) | TCPOLEN_TIMESTAMP))
  2851. goto slow_path;
  2852. tp->saw_tstamp = 1;
  2853. ++ptr; 
  2854. tp->rcv_tsval = ntohl(*ptr);
  2855. ++ptr;
  2856. tp->rcv_tsecr = ntohl(*ptr);
  2857. /* If PAWS failed, check it more carefully in slow path */
  2858. if ((s32)(tp->rcv_tsval - tp->ts_recent) < 0)
  2859. goto slow_path;
  2860. /* Predicted packet is in window by definition.
  2861.  * seq == rcv_nxt and rcv_wup <= rcv_nxt.
  2862.  * Hence, check seq<=rcv_wup reduces to:
  2863.  */
  2864. if (tp->rcv_nxt == tp->rcv_wup)
  2865. tcp_store_ts_recent(tp);
  2866. }
  2867. if (len <= tcp_header_len) {
  2868. /* Bulk data transfer: sender */
  2869. if (len == tcp_header_len) {
  2870. /* We know that such packets are checksummed
  2871.  * on entry.
  2872.  */
  2873. tcp_ack(sk, skb, 0);
  2874. __kfree_skb(skb); 
  2875. tcp_data_snd_check(sk);
  2876. return 0;
  2877. } else { /* Header too small */
  2878. TCP_INC_STATS_BH(TcpInErrs);
  2879. goto discard;
  2880. }
  2881. } else {
  2882. int eaten = 0;
  2883. if (tp->ucopy.task == current &&
  2884.     tp->copied_seq == tp->rcv_nxt &&
  2885.     len - tcp_header_len <= tp->ucopy.len &&
  2886.     sk->lock.users) {
  2887. __set_current_state(TASK_RUNNING);
  2888. if (!tcp_copy_to_iovec(sk, skb, tcp_header_len)) {
  2889. __skb_pull(skb, tcp_header_len);
  2890. tp->rcv_nxt = TCP_SKB_CB(skb)->end_seq;
  2891. NET_INC_STATS_BH(TCPHPHitsToUser);
  2892. eaten = 1;
  2893. }
  2894. }
  2895. if (!eaten) {
  2896. if (tcp_checksum_complete_user(sk, skb))
  2897. goto csum_error;
  2898. if ((int)skb->truesize > sk->forward_alloc)
  2899. goto step5;
  2900. NET_INC_STATS_BH(TCPHPHits);
  2901. /* Bulk data transfer: receiver */
  2902. __skb_pull(skb,tcp_header_len);
  2903. __skb_queue_tail(&sk->receive_queue, skb);
  2904. tcp_set_owner_r(skb, sk);
  2905. tp->rcv_nxt = TCP_SKB_CB(skb)->end_seq;
  2906. }
  2907. tcp_event_data_recv(sk, tp, skb);
  2908. if (TCP_SKB_CB(skb)->ack_seq != tp->snd_una) {
  2909. /* Well, only one small jumplet in fast path... */
  2910. tcp_ack(sk, skb, FLAG_DATA);
  2911. tcp_data_snd_check(sk);
  2912. if (!tcp_ack_scheduled(tp))
  2913. goto no_ack;
  2914. }
  2915. if (eaten) {
  2916. if (tcp_in_quickack_mode(tp)) {
  2917. tcp_send_ack(sk);
  2918. } else {
  2919. tcp_send_delayed_ack(sk);
  2920. }
  2921. } else {
  2922. __tcp_ack_snd_check(sk, 0);
  2923. }
  2924. no_ack:
  2925. if (eaten)
  2926. __kfree_skb(skb);
  2927. else
  2928. sk->data_ready(sk, 0);
  2929. return 0;
  2930. }
  2931. }
  2932. slow_path:
  2933. if (len < (th->doff<<2) || tcp_checksum_complete_user(sk, skb))
  2934. goto csum_error;
  2935. /*
  2936.  * RFC1323: H1. Apply PAWS check first.
  2937.  */
  2938. if (tcp_fast_parse_options(skb, th, tp) && tp->saw_tstamp &&
  2939.     tcp_paws_discard(tp, skb)) {
  2940. if (!th->rst) {
  2941. NET_INC_STATS_BH(PAWSEstabRejected);
  2942. tcp_send_dupack(sk, skb);
  2943. goto discard;
  2944. }
  2945. /* Resets are accepted even if PAWS failed.
  2946.    ts_recent update must be made after we are sure
  2947.    that the packet is in window.
  2948.  */
  2949. }
  2950. /*
  2951.  * Standard slow path.
  2952.  */
  2953. if (!tcp_sequence(tp, TCP_SKB_CB(skb)->seq, TCP_SKB_CB(skb)->end_seq)) {
  2954. /* RFC793, page 37: "In all states except SYN-SENT, all reset
  2955.  * (RST) segments are validated by checking their SEQ-fields."
  2956.  * And page 69: "If an incoming segment is not acceptable,
  2957.  * an acknowledgment should be sent in reply (unless the RST bit
  2958.  * is set, if so drop the segment and return)".
  2959.  */
  2960. if (!th->rst)
  2961. tcp_send_dupack(sk, skb);
  2962. goto discard;
  2963. }
  2964. if(th->rst) {
  2965. tcp_reset(sk);
  2966. goto discard;
  2967. }
  2968. tcp_replace_ts_recent(tp, TCP_SKB_CB(skb)->seq);
  2969. if (th->syn && !before(TCP_SKB_CB(skb)->seq, tp->rcv_nxt)) {
  2970. TCP_INC_STATS_BH(TcpInErrs);
  2971. NET_INC_STATS_BH(TCPAbortOnSyn);
  2972. tcp_reset(sk);
  2973. return 1;
  2974. }
  2975. step5:
  2976. if(th->ack)
  2977. tcp_ack(sk, skb, FLAG_SLOWPATH);
  2978. /* Process urgent data. */
  2979. tcp_urg(sk, skb, th);
  2980. /* step 7: process the segment text */
  2981. tcp_data_queue(sk, skb);
  2982. tcp_data_snd_check(sk);
  2983. tcp_ack_snd_check(sk);
  2984. return 0;
  2985. csum_error:
  2986. TCP_INC_STATS_BH(TcpInErrs);
  2987. discard:
  2988. __kfree_skb(skb);
  2989. return 0;
  2990. }
  2991. static int tcp_rcv_synsent_state_process(struct sock *sk, struct sk_buff *skb,
  2992.  struct tcphdr *th, unsigned len)
  2993. {
  2994. struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
  2995. int saved_clamp = tp->mss_clamp;
  2996. tcp_parse_options(skb, tp, 0);
  2997. if (th->ack) {
  2998. /* rfc793:
  2999.  * "If the state is SYN-SENT then
  3000.  *    first check the ACK bit
  3001.  *      If the ACK bit is set
  3002.  *   If SEG.ACK =< ISS, or SEG.ACK > SND.NXT, send
  3003.  *        a reset (unless the RST bit is set, if so drop
  3004.  *        the segment and return)"
  3005.  *
  3006.  *  We do not send data with SYN, so that RFC-correct
  3007.  *  test reduces to:
  3008.  */
  3009. if (TCP_SKB_CB(skb)->ack_seq != tp->snd_nxt)
  3010. goto reset_and_undo;
  3011. if (tp->saw_tstamp && tp->rcv_tsecr &&
  3012.     !between(tp->rcv_tsecr, tp->retrans_stamp, tcp_time_stamp)) {
  3013. NET_INC_STATS_BH(PAWSActiveRejected);
  3014. goto reset_and_undo;
  3015. }
  3016. /* Now ACK is acceptable.
  3017.  *
  3018.  * "If the RST bit is set
  3019.  *    If the ACK was acceptable then signal the user "error:
  3020.  *    connection reset", drop the segment, enter CLOSED state,
  3021.  *    delete TCB, and return."
  3022.  */
  3023. if (th->rst) {
  3024. tcp_reset(sk);
  3025. goto discard;
  3026. }
  3027. /* rfc793:
  3028.  *   "fifth, if neither of the SYN or RST bits is set then
  3029.  *    drop the segment and return."
  3030.  *
  3031.  *    See note below!
  3032.  *                                        --ANK(990513)
  3033.  */
  3034. if (!th->syn)
  3035. goto discard_and_undo;
  3036. /* rfc793:
  3037.  *   "If the SYN bit is on ...
  3038.  *    are acceptable then ...
  3039.  *    (our SYN has been ACKed), change the connection
  3040.  *    state to ESTABLISHED..."
  3041.  */
  3042. TCP_ECN_rcv_synack(tp, th);
  3043. tp->snd_wl1 = TCP_SKB_CB(skb)->seq;
  3044. tcp_ack(sk, skb, FLAG_SLOWPATH);
  3045. /* Ok.. it's good. Set up sequence numbers and
  3046.  * move to established.
  3047.  */
  3048. tp->rcv_nxt = TCP_SKB_CB(skb)->seq+1;
  3049. tp->rcv_wup = TCP_SKB_CB(skb)->seq+1;
  3050. /* RFC1323: The window in SYN & SYN/ACK segments is
  3051.  * never scaled.
  3052.  */
  3053. tp->snd_wnd = ntohs(th->window);
  3054. tcp_init_wl(tp, TCP_SKB_CB(skb)->ack_seq, TCP_SKB_CB(skb)->seq);
  3055. if (tp->wscale_ok == 0) {
  3056. tp->snd_wscale = tp->rcv_wscale = 0;
  3057. tp->window_clamp = min(tp->window_clamp, 65535U);
  3058. }
  3059. if (tp->saw_tstamp) {
  3060. tp->tstamp_ok = 1;
  3061. tp->tcp_header_len =
  3062. sizeof(struct tcphdr) + TCPOLEN_TSTAMP_ALIGNED;
  3063. tp->advmss -= TCPOLEN_TSTAMP_ALIGNED;
  3064. tcp_store_ts_recent(tp);
  3065. } else {
  3066. tp->tcp_header_len = sizeof(struct tcphdr);
  3067. }
  3068. if (tp->sack_ok && sysctl_tcp_fack)
  3069. tp->sack_ok |= 2;
  3070. tcp_sync_mss(sk, tp->pmtu_cookie);
  3071. tcp_initialize_rcv_mss(sk);
  3072. tcp_init_metrics(sk);
  3073. tcp_init_buffer_space(sk);
  3074. if (sk->keepopen)
  3075. tcp_reset_keepalive_timer(sk, keepalive_time_when(tp));
  3076. if (tp->snd_wscale == 0)
  3077. __tcp_fast_path_on(tp, tp->snd_wnd);
  3078. else
  3079. tp->pred_flags = 0;
  3080. /* Remember, tcp_poll() does not lock socket!
  3081.  * Change state from SYN-SENT only after copied_seq
  3082.  * is initialized. */
  3083. tp->copied_seq = tp->rcv_nxt;
  3084. mb();
  3085. tcp_set_state(sk, TCP_ESTABLISHED);
  3086. if(!sk->dead) {
  3087. sk->state_change(sk);
  3088. sk_wake_async(sk, 0, POLL_OUT);
  3089. }
  3090. if (tp->write_pending || tp->defer_accept || tp->ack.pingpong) {
  3091. /* Save one ACK. Data will be ready after
  3092.  * several ticks, if write_pending is set.
  3093.  *
  3094.  * It may be deleted, but with this feature tcpdumps
  3095.  * look so _wonderfully_ clever, that I was not able
  3096.  * to stand against the temptation 8)     --ANK
  3097.  */
  3098. tcp_schedule_ack(tp);
  3099. tp->ack.lrcvtime = tcp_time_stamp;
  3100. tp->ack.ato = TCP_ATO_MIN;
  3101. tcp_incr_quickack(tp);
  3102. tcp_enter_quickack_mode(tp);
  3103. tcp_reset_xmit_timer(sk, TCP_TIME_DACK, TCP_DELACK_MAX);
  3104. discard:
  3105. __kfree_skb(skb);
  3106. return 0;
  3107. } else {
  3108. tcp_send_ack(sk);
  3109. }
  3110. return -1;
  3111. }
  3112. /* No ACK in the segment */
  3113. if (th->rst) {
  3114. /* rfc793:
  3115.  * "If the RST bit is set
  3116.  *
  3117.  *      Otherwise (no ACK) drop the segment and return."
  3118.  */
  3119. goto discard_and_undo;
  3120. }
  3121. /* PAWS check. */
  3122. if (tp->ts_recent_stamp && tp->saw_tstamp && tcp_paws_check(tp, 0))
  3123. goto discard_and_undo;
  3124. if (th->syn) {
  3125. /* We see SYN without ACK. It is attempt of
  3126.  * simultaneous connect with crossed SYNs.
  3127.  * Particularly, it can be connect to self.
  3128.  */
  3129. tcp_set_state(sk, TCP_SYN_RECV);
  3130. if (tp->saw_tstamp) {
  3131. tp->tstamp_ok = 1;
  3132. tcp_store_ts_recent(tp);
  3133. tp->tcp_header_len =
  3134. sizeof(struct tcphdr) + TCPOLEN_TSTAMP_ALIGNED;
  3135. } else {
  3136. tp->tcp_header_len = sizeof(struct tcphdr);
  3137. }
  3138. tp->rcv_nxt = TCP_SKB_CB(skb)->seq + 1;
  3139. tp->rcv_wup = TCP_SKB_CB(skb)->seq + 1;
  3140. /* RFC1323: The window in SYN & SYN/ACK segments is
  3141.  * never scaled.
  3142.  */
  3143. tp->snd_wnd = ntohs(th->window);
  3144. tp->snd_wl1 = TCP_SKB_CB(skb)->seq;
  3145. tp->max_window = tp->snd_wnd;
  3146. tcp_sync_mss(sk, tp->pmtu_cookie);
  3147. tcp_initialize_rcv_mss(sk);
  3148. TCP_ECN_rcv_syn(tp, th);
  3149. tcp_send_synack(sk);
  3150. #if 0
  3151. /* Note, we could accept data and URG from this segment.
  3152.  * There are no obstacles to make this.
  3153.  *
  3154.  * However, if we ignore data in ACKless segments sometimes,
  3155.  * we have no reasons to accept it sometimes.
  3156.  * Also, seems the code doing it in step6 of tcp_rcv_state_process
  3157.  * is not flawless. So, discard packet for sanity.
  3158.  * Uncomment this return to process the data.
  3159.  */
  3160. return -1;
  3161. #else
  3162. goto discard;
  3163. #endif
  3164. }
  3165. /* "fifth, if neither of the SYN or RST bits is set then
  3166.  * drop the segment and return."
  3167.  */
  3168. discard_and_undo:
  3169. tcp_clear_options(tp);
  3170. tp->mss_clamp = saved_clamp;
  3171. goto discard;
  3172. reset_and_undo:
  3173. tcp_clear_options(tp);
  3174. tp->mss_clamp = saved_clamp;
  3175. return 1;
  3176. }
  3177. /*
  3178.  * This function implements the receiving procedure of RFC 793 for
  3179.  * all states except ESTABLISHED and TIME_WAIT. 
  3180.  * It's called from both tcp_v4_rcv and tcp_v6_rcv and should be
  3181.  * address independent.
  3182.  */
  3183. int tcp_rcv_state_process(struct sock *sk, struct sk_buff *skb,
  3184.   struct tcphdr *th, unsigned len)
  3185. {
  3186. struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
  3187. int queued = 0;
  3188. tp->saw_tstamp = 0;
  3189. switch (sk->state) {
  3190. case TCP_CLOSE:
  3191. goto discard;
  3192. case TCP_LISTEN:
  3193. if(th->ack)
  3194. return 1;
  3195. if(th->syn) {
  3196. if(tp->af_specific->conn_request(sk, skb) < 0)
  3197. return 1;
  3198. /* Now we have several options: In theory there is 
  3199.  * nothing else in the frame. KA9Q has an option to 
  3200.  * send data with the syn, BSD accepts data with the
  3201.  * syn up to the [to be] advertised window and 
  3202.  * Solaris 2.1 gives you a protocol error. For now 
  3203.  * we just ignore it, that fits the spec precisely 
  3204.  * and avoids incompatibilities. It would be nice in
  3205.  * future to drop through and process the data.
  3206.  *
  3207.  * Now that TTCP is starting to be used we ought to 
  3208.  * queue this data.
  3209.  * But, this leaves one open to an easy denial of
  3210.    * service attack, and SYN cookies can't defend
  3211.  * against this problem. So, we drop the data
  3212.  * in the interest of security over speed.
  3213.  */
  3214. goto discard;
  3215. }
  3216. goto discard;
  3217. case TCP_SYN_SENT:
  3218. queued = tcp_rcv_synsent_state_process(sk, skb, th, len);
  3219. if (queued >= 0)
  3220. return queued;
  3221. /* Do step6 onward by hand. */
  3222. tcp_urg(sk, skb, th);
  3223. __kfree_skb(skb);
  3224. tcp_data_snd_check(sk);
  3225. return 0;
  3226. }
  3227. if (tcp_fast_parse_options(skb, th, tp) && tp->saw_tstamp &&
  3228.     tcp_paws_discard(tp, skb)) {
  3229. if (!th->rst) {
  3230. NET_INC_STATS_BH(PAWSEstabRejected);
  3231. tcp_send_dupack(sk, skb);
  3232. goto discard;
  3233. }
  3234. /* Reset is accepted even if it did not pass PAWS. */
  3235. }
  3236. /* step 1: check sequence number */
  3237. if (!tcp_sequence(tp, TCP_SKB_CB(skb)->seq, TCP_SKB_CB(skb)->end_seq)) {
  3238. if (!th->rst)
  3239. tcp_send_dupack(sk, skb);
  3240. goto discard;
  3241. }
  3242. /* step 2: check RST bit */
  3243. if(th->rst) {
  3244. tcp_reset(sk);
  3245. goto discard;
  3246. }
  3247. tcp_replace_ts_recent(tp, TCP_SKB_CB(skb)->seq);
  3248. /* step 3: check security and precedence [ignored] */
  3249. /* step 4:
  3250.  *
  3251.  * Check for a SYN in window.
  3252.  */
  3253. if (th->syn && !before(TCP_SKB_CB(skb)->seq, tp->rcv_nxt)) {
  3254. NET_INC_STATS_BH(TCPAbortOnSyn);
  3255. tcp_reset(sk);
  3256. return 1;
  3257. }
  3258. /* step 5: check the ACK field */
  3259. if (th->ack) {
  3260. int acceptable = tcp_ack(sk, skb, FLAG_SLOWPATH);
  3261. switch(sk->state) {
  3262. case TCP_SYN_RECV:
  3263. if (acceptable) {
  3264. tp->copied_seq = tp->rcv_nxt;
  3265. mb();
  3266. tcp_set_state(sk, TCP_ESTABLISHED);
  3267. sk->state_change(sk);
  3268. /* Note, that this wakeup is only for marginal
  3269.  * crossed SYN case. Passively open sockets
  3270.  * are not waked up, because sk->sleep == NULL
  3271.  * and sk->socket == NULL.
  3272.  */
  3273. if (sk->socket) {
  3274. sk_wake_async(sk,0,POLL_OUT);
  3275. }
  3276. tp->snd_una = TCP_SKB_CB(skb)->ack_seq;
  3277. tp->snd_wnd = ntohs(th->window) << tp->snd_wscale;
  3278. tcp_init_wl(tp, TCP_SKB_CB(skb)->ack_seq, TCP_SKB_CB(skb)->seq);
  3279. /* tcp_ack considers this ACK as duplicate
  3280.  * and does not calculate rtt.
  3281.  * Fix it at least with timestamps.
  3282.  */
  3283. if (tp->saw_tstamp && tp->rcv_tsecr && !tp->srtt)
  3284. tcp_ack_saw_tstamp(tp, 0);
  3285. if (tp->tstamp_ok)
  3286. tp->advmss -= TCPOLEN_TSTAMP_ALIGNED;
  3287. tcp_init_metrics(sk);
  3288. tcp_initialize_rcv_mss(sk);
  3289. tcp_init_buffer_space(sk);
  3290. tcp_fast_path_on(tp);
  3291. } else {
  3292. return 1;
  3293. }
  3294. break;
  3295. case TCP_FIN_WAIT1:
  3296. if (tp->snd_una == tp->write_seq) {
  3297. tcp_set_state(sk, TCP_FIN_WAIT2);
  3298. sk->shutdown |= SEND_SHUTDOWN;
  3299. dst_confirm(sk->dst_cache);
  3300. if (!sk->dead) {
  3301. /* Wake up lingering close() */
  3302. sk->state_change(sk);
  3303. } else {
  3304. int tmo;
  3305. if (tp->linger2 < 0 ||
  3306.     (TCP_SKB_CB(skb)->end_seq != TCP_SKB_CB(skb)->seq &&
  3307.      after(TCP_SKB_CB(skb)->end_seq - th->fin, tp->rcv_nxt))) {
  3308. tcp_done(sk);
  3309. NET_INC_STATS_BH(TCPAbortOnData);
  3310. return 1;
  3311. }
  3312. tmo = tcp_fin_time(tp);
  3313. if (tmo > TCP_TIMEWAIT_LEN) {
  3314. tcp_reset_keepalive_timer(sk, tmo - TCP_TIMEWAIT_LEN);
  3315. } else if (th->fin || sk->lock.users) {
  3316. /* Bad case. We could lose such FIN otherwise.
  3317.  * It is not a big problem, but it looks confusing
  3318.  * and not so rare event. We still can lose it now,
  3319.  * if it spins in bh_lock_sock(), but it is really
  3320.  * marginal case.
  3321.  */
  3322. tcp_reset_keepalive_timer(sk, tmo);
  3323. } else {
  3324. tcp_time_wait(sk, TCP_FIN_WAIT2, tmo);
  3325. goto discard;
  3326. }
  3327. }
  3328. }
  3329. break;
  3330. case TCP_CLOSING:
  3331. if (tp->snd_una == tp->write_seq) {
  3332. tcp_time_wait(sk, TCP_TIME_WAIT, 0);
  3333. goto discard;
  3334. }
  3335. break;
  3336. case TCP_LAST_ACK:
  3337. if (tp->snd_una == tp->write_seq) {
  3338. tcp_update_metrics(sk);
  3339. tcp_done(sk);
  3340. goto discard;
  3341. }
  3342. break;
  3343. }
  3344. } else
  3345. goto discard;
  3346. /* step 6: check the URG bit */
  3347. tcp_urg(sk, skb, th);
  3348. /* step 7: process the segment text */
  3349. switch (sk->state) {
  3350. case TCP_CLOSE_WAIT:
  3351. case TCP_CLOSING:
  3352. if (!before(TCP_SKB_CB(skb)->seq, tp->rcv_nxt))
  3353. break;
  3354. case TCP_FIN_WAIT1:
  3355. case TCP_FIN_WAIT2:
  3356. /* RFC 793 says to queue data in these states,
  3357.  * RFC 1122 says we MUST send a reset. 
  3358.  * BSD 4.4 also does reset.
  3359.  */
  3360. if (sk->shutdown & RCV_SHUTDOWN) {
  3361. if (TCP_SKB_CB(skb)->end_seq != TCP_SKB_CB(skb)->seq &&
  3362.     after(TCP_SKB_CB(skb)->end_seq - th->fin, tp->rcv_nxt)) {
  3363. NET_INC_STATS_BH(TCPAbortOnData);
  3364. tcp_reset(sk);
  3365. return 1;
  3366. }
  3367. }
  3368. /* Fall through */
  3369. case TCP_ESTABLISHED: 
  3370. tcp_data_queue(sk, skb);
  3371. queued = 1;
  3372. break;
  3373. }
  3374. /* tcp_data could move socket to TIME-WAIT */
  3375. if (sk->state != TCP_CLOSE) {
  3376. tcp_data_snd_check(sk);
  3377. tcp_ack_snd_check(sk);
  3378. }
  3379. if (!queued) { 
  3380. discard:
  3381. __kfree_skb(skb);
  3382. }
  3383. return 0;
  3384. }