tcp_input.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:109k
源码类别:

Linux/Unix编程

开发平台:

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