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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * INET An implementation of the TCP/IP protocol suite for the LINUX
  3.  * operating system.  INET is implemented using the  BSD Socket
  4.  * interface as the means of communication with the user level.
  5.  *
  6.  * Implementation of the Transmission Control Protocol(TCP).
  7.  *
  8.  * Version: $Id: tcp_timer.c,v 1.87 2001/09/21 21:27:34 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. #include <net/tcp.h>
  23. int sysctl_tcp_syn_retries = TCP_SYN_RETRIES; 
  24. int sysctl_tcp_synack_retries = TCP_SYNACK_RETRIES; 
  25. int sysctl_tcp_keepalive_time = TCP_KEEPALIVE_TIME;
  26. int sysctl_tcp_keepalive_probes = TCP_KEEPALIVE_PROBES;
  27. int sysctl_tcp_keepalive_intvl = TCP_KEEPALIVE_INTVL;
  28. int sysctl_tcp_retries1 = TCP_RETR1;
  29. int sysctl_tcp_retries2 = TCP_RETR2;
  30. int sysctl_tcp_orphan_retries;
  31. static void tcp_write_timer(unsigned long);
  32. static void tcp_delack_timer(unsigned long);
  33. static void tcp_keepalive_timer (unsigned long data);
  34. const char timer_bug_msg[] = KERN_DEBUG "tcpbug: unknown timer valuen";
  35. /*
  36.  * Using different timers for retransmit, delayed acks and probes
  37.  * We may wish use just one timer maintaining a list of expire jiffies 
  38.  * to optimize.
  39.  */
  40. void tcp_init_xmit_timers(struct sock *sk)
  41. {
  42. struct tcp_opt *tp = &sk->tp_pinfo.af_tcp;
  43. init_timer(&tp->retransmit_timer);
  44. tp->retransmit_timer.function=&tcp_write_timer;
  45. tp->retransmit_timer.data = (unsigned long) sk;
  46. tp->pending = 0;
  47. init_timer(&tp->delack_timer);
  48. tp->delack_timer.function=&tcp_delack_timer;
  49. tp->delack_timer.data = (unsigned long) sk;
  50. tp->ack.pending = 0;
  51. init_timer(&sk->timer);
  52. sk->timer.function=&tcp_keepalive_timer;
  53. sk->timer.data = (unsigned long) sk;
  54. }
  55. void tcp_clear_xmit_timers(struct sock *sk)
  56. {
  57. struct tcp_opt *tp = &sk->tp_pinfo.af_tcp;
  58. tp->pending = 0;
  59. if (timer_pending(&tp->retransmit_timer) &&
  60.     del_timer(&tp->retransmit_timer))
  61. __sock_put(sk);
  62. tp->ack.pending = 0;
  63. tp->ack.blocked = 0;
  64. if (timer_pending(&tp->delack_timer) &&
  65.     del_timer(&tp->delack_timer))
  66. __sock_put(sk);
  67. if(timer_pending(&sk->timer) && del_timer(&sk->timer))
  68. __sock_put(sk);
  69. }
  70. static void tcp_write_err(struct sock *sk)
  71. {
  72. sk->err = sk->err_soft ? : ETIMEDOUT;
  73. sk->error_report(sk);
  74. tcp_done(sk);
  75. NET_INC_STATS_BH(TCPAbortOnTimeout);
  76. }
  77. /* Do not allow orphaned sockets to eat all our resources.
  78.  * This is direct violation of TCP specs, but it is required
  79.  * to prevent DoS attacks. It is called when a retransmission timeout
  80.  * or zero probe timeout occurs on orphaned socket.
  81.  *
  82.  * Criterium is still not confirmed experimentally and may change.
  83.  * We kill the socket, if:
  84.  * 1. If number of orphaned sockets exceeds an administratively configured
  85.  *    limit.
  86.  * 2. If we have strong memory pressure.
  87.  */
  88. static int tcp_out_of_resources(struct sock *sk, int do_reset)
  89. {
  90. struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
  91. int orphans = atomic_read(&tcp_orphan_count);
  92. /* If peer does not open window for long time, or did not transmit 
  93.  * anything for long time, penalize it. */
  94. if ((s32)(tcp_time_stamp - tp->lsndtime) > 2*TCP_RTO_MAX || !do_reset)
  95. orphans <<= 1;
  96. /* If some dubious ICMP arrived, penalize even more. */
  97. if (sk->err_soft)
  98. orphans <<= 1;
  99. if (orphans >= sysctl_tcp_max_orphans ||
  100.     (sk->wmem_queued > SOCK_MIN_SNDBUF &&
  101.      atomic_read(&tcp_memory_allocated) > sysctl_tcp_mem[2])) {
  102. if (net_ratelimit())
  103. printk(KERN_INFO "Out of socket memoryn");
  104. /* Catch exceptional cases, when connection requires reset.
  105.  *      1. Last segment was sent recently. */
  106. if ((s32)(tcp_time_stamp - tp->lsndtime) <= TCP_TIMEWAIT_LEN ||
  107.     /*  2. Window is closed. */
  108.     (!tp->snd_wnd && !tp->packets_out))
  109. do_reset = 1;
  110. if (do_reset)
  111. tcp_send_active_reset(sk, GFP_ATOMIC);
  112. tcp_done(sk);
  113. NET_INC_STATS_BH(TCPAbortOnMemory);
  114. return 1;
  115. }
  116. return 0;
  117. }
  118. /* Calculate maximal number or retries on an orphaned socket. */
  119. static int tcp_orphan_retries(struct sock *sk, int alive)
  120. {
  121. int retries = sysctl_tcp_orphan_retries; /* May be zero. */
  122. /* We know from an ICMP that something is wrong. */
  123. if (sk->err_soft && !alive)
  124. retries = 0;
  125. /* However, if socket sent something recently, select some safe
  126.  * number of retries. 8 corresponds to >100 seconds with minimal
  127.  * RTO of 200msec. */
  128. if (retries == 0 && alive)
  129. retries = 8;
  130. return retries;
  131. }
  132. /* A write timeout has occurred. Process the after effects. */
  133. static int tcp_write_timeout(struct sock *sk)
  134. {
  135. struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
  136. int retry_until;
  137. if ((1<<sk->state)&(TCPF_SYN_SENT|TCPF_SYN_RECV)) {
  138. if (tp->retransmits)
  139. dst_negative_advice(&sk->dst_cache);
  140. retry_until = tp->syn_retries ? : sysctl_tcp_syn_retries;
  141. } else {
  142. if (tp->retransmits >= sysctl_tcp_retries1) {
  143. /* NOTE. draft-ietf-tcpimpl-pmtud-01.txt requires pmtu black
  144.    hole detection. :-(
  145.    It is place to make it. It is not made. I do not want
  146.    to make it. It is disguisting. It does not work in any
  147.    case. Let me to cite the same draft, which requires for
  148.    us to implement this:
  149.    "The one security concern raised by this memo is that ICMP black holes
  150.    are often caused by over-zealous security administrators who block
  151.    all ICMP messages.  It is vitally important that those who design and
  152.    deploy security systems understand the impact of strict filtering on
  153.    upper-layer protocols.  The safest web site in the world is worthless
  154.    if most TCP implementations cannot transfer data from it.  It would
  155.    be far nicer to have all of the black holes fixed rather than fixing
  156.    all of the TCP implementations."
  157.                            Golden words :-).
  158.    */
  159. dst_negative_advice(&sk->dst_cache);
  160. }
  161. retry_until = sysctl_tcp_retries2;
  162. if (sk->dead) {
  163. int alive = (tp->rto < TCP_RTO_MAX);
  164.  
  165. retry_until = tcp_orphan_retries(sk, alive);
  166. if (tcp_out_of_resources(sk, alive || tp->retransmits < retry_until))
  167. return 1;
  168. }
  169. }
  170. if (tp->retransmits >= retry_until) {
  171. /* Has it gone just too far? */
  172. tcp_write_err(sk);
  173. return 1;
  174. }
  175. return 0;
  176. }
  177. static void tcp_delack_timer(unsigned long data)
  178. {
  179. struct sock *sk = (struct sock*)data;
  180. struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
  181. bh_lock_sock(sk);
  182. if (sk->lock.users) {
  183. /* Try again later. */
  184. tp->ack.blocked = 1;
  185. NET_INC_STATS_BH(DelayedACKLocked);
  186. if (!mod_timer(&tp->delack_timer, jiffies + TCP_DELACK_MIN))
  187. sock_hold(sk);
  188. goto out_unlock;
  189. }
  190. tcp_mem_reclaim(sk);
  191. if (sk->state == TCP_CLOSE || !(tp->ack.pending&TCP_ACK_TIMER))
  192. goto out;
  193. if ((long)(tp->ack.timeout - jiffies) > 0) {
  194. if (!mod_timer(&tp->delack_timer, tp->ack.timeout))
  195. sock_hold(sk);
  196. goto out;
  197. }
  198. tp->ack.pending &= ~TCP_ACK_TIMER;
  199. if (skb_queue_len(&tp->ucopy.prequeue)) {
  200. struct sk_buff *skb;
  201. net_statistics[smp_processor_id()*2].TCPSchedulerFailed += skb_queue_len(&tp->ucopy.prequeue);
  202. while ((skb = __skb_dequeue(&tp->ucopy.prequeue)) != NULL)
  203. sk->backlog_rcv(sk, skb);
  204. tp->ucopy.memory = 0;
  205. }
  206. if (tcp_ack_scheduled(tp)) {
  207. if (!tp->ack.pingpong) {
  208. /* Delayed ACK missed: inflate ATO. */
  209. tp->ack.ato = min(tp->ack.ato << 1, tp->rto);
  210. } else {
  211. /* Delayed ACK missed: leave pingpong mode and
  212.  * deflate ATO.
  213.  */
  214. tp->ack.pingpong = 0;
  215. tp->ack.ato = TCP_ATO_MIN;
  216. }
  217. tcp_send_ack(sk);
  218. NET_INC_STATS_BH(DelayedACKs);
  219. }
  220. TCP_CHECK_TIMER(sk);
  221. out:
  222. if (tcp_memory_pressure)
  223. tcp_mem_reclaim(sk);
  224. out_unlock:
  225. bh_unlock_sock(sk);
  226. sock_put(sk);
  227. }
  228. static void tcp_probe_timer(struct sock *sk)
  229. {
  230. struct tcp_opt *tp = &sk->tp_pinfo.af_tcp;
  231. int max_probes;
  232. if (tp->packets_out || !tp->send_head) {
  233. tp->probes_out = 0;
  234. return;
  235. }
  236. /* *WARNING* RFC 1122 forbids this
  237.  *
  238.  * It doesn't AFAIK, because we kill the retransmit timer -AK
  239.  *
  240.  * FIXME: We ought not to do it, Solaris 2.5 actually has fixing
  241.  * this behaviour in Solaris down as a bug fix. [AC]
  242.  *
  243.  * Let me to explain. probes_out is zeroed by incoming ACKs
  244.  * even if they advertise zero window. Hence, connection is killed only
  245.  * if we received no ACKs for normal connection timeout. It is not killed
  246.  * only because window stays zero for some time, window may be zero
  247.  * until armageddon and even later. We are in full accordance
  248.  * with RFCs, only probe timer combines both retransmission timeout
  249.  * and probe timeout in one bottle. --ANK
  250.  */
  251. max_probes = sysctl_tcp_retries2;
  252. if (sk->dead) {
  253. int alive = ((tp->rto<<tp->backoff) < TCP_RTO_MAX);
  254.  
  255. max_probes = tcp_orphan_retries(sk, alive);
  256. if (tcp_out_of_resources(sk, alive || tp->probes_out <= max_probes))
  257. return;
  258. }
  259. if (tp->probes_out > max_probes) {
  260. tcp_write_err(sk);
  261. } else {
  262. /* Only send another probe if we didn't close things up. */
  263. tcp_send_probe0(sk);
  264. }
  265. }
  266. /*
  267.  * The TCP retransmit timer.
  268.  */
  269. static void tcp_retransmit_timer(struct sock *sk)
  270. {
  271. struct tcp_opt *tp = &sk->tp_pinfo.af_tcp;
  272. if (tp->packets_out == 0)
  273. goto out;
  274. BUG_TRAP(!skb_queue_empty(&sk->write_queue));
  275. if (tp->snd_wnd == 0 && !sk->dead &&
  276.     !((1<<sk->state)&(TCPF_SYN_SENT|TCPF_SYN_RECV))) {
  277. /* Receiver dastardly shrinks window. Our retransmits
  278.  * become zero probes, but we should not timeout this
  279.  * connection. If the socket is an orphan, time it out,
  280.  * we cannot allow such beasts to hang infinitely.
  281.  */
  282. #ifdef TCP_DEBUG
  283. if (net_ratelimit())
  284. printk(KERN_DEBUG "TCP: Treason uncloaked! Peer %u.%u.%u.%u:%u/%u shrinks window %u:%u. Repaired.n",
  285.        NIPQUAD(sk->daddr), htons(sk->dport), sk->num,
  286.        tp->snd_una, tp->snd_nxt);
  287. #endif
  288. if (tcp_time_stamp - tp->rcv_tstamp > TCP_RTO_MAX) {
  289. tcp_write_err(sk);
  290. goto out;
  291. }
  292. tcp_enter_loss(sk, 0);
  293. tcp_retransmit_skb(sk, skb_peek(&sk->write_queue));
  294. __sk_dst_reset(sk);
  295. goto out_reset_timer;
  296. }
  297. if (tcp_write_timeout(sk))
  298. goto out;
  299. if (tp->retransmits == 0) {
  300. if (tp->ca_state == TCP_CA_Disorder || tp->ca_state == TCP_CA_Recovery) {
  301. if (tp->sack_ok) {
  302. if (tp->ca_state == TCP_CA_Recovery)
  303. NET_INC_STATS_BH(TCPSackRecoveryFail);
  304. else
  305. NET_INC_STATS_BH(TCPSackFailures);
  306. } else {
  307. if (tp->ca_state == TCP_CA_Recovery)
  308. NET_INC_STATS_BH(TCPRenoRecoveryFail);
  309. else
  310. NET_INC_STATS_BH(TCPRenoFailures);
  311. }
  312. } else if (tp->ca_state == TCP_CA_Loss) {
  313. NET_INC_STATS_BH(TCPLossFailures);
  314. } else {
  315. NET_INC_STATS_BH(TCPTimeouts);
  316. }
  317. }
  318. tcp_enter_loss(sk, 0);
  319. if (tcp_retransmit_skb(sk, skb_peek(&sk->write_queue)) > 0) {
  320. /* Retransmission failed because of local congestion,
  321.  * do not backoff.
  322.  */
  323. if (!tp->retransmits)
  324. tp->retransmits=1;
  325. tcp_reset_xmit_timer(sk, TCP_TIME_RETRANS,
  326.      min(tp->rto, TCP_RESOURCE_PROBE_INTERVAL));
  327. goto out;
  328. }
  329. /* Increase the timeout each time we retransmit.  Note that
  330.  * we do not increase the rtt estimate.  rto is initialized
  331.  * from rtt, but increases here.  Jacobson (SIGCOMM 88) suggests
  332.  * that doubling rto each time is the least we can get away with.
  333.  * In KA9Q, Karn uses this for the first few times, and then
  334.  * goes to quadratic.  netBSD doubles, but only goes up to *64,
  335.  * and clamps at 1 to 64 sec afterwards.  Note that 120 sec is
  336.  * defined in the protocol as the maximum possible RTT.  I guess
  337.  * we'll have to use something other than TCP to talk to the
  338.  * University of Mars.
  339.  *
  340.  * PAWS allows us longer timeouts and large windows, so once
  341.  * implemented ftp to mars will work nicely. We will have to fix
  342.  * the 120 second clamps though!
  343.  */
  344. tp->backoff++;
  345. tp->retransmits++;
  346. out_reset_timer:
  347. tp->rto = min(tp->rto << 1, TCP_RTO_MAX);
  348. tcp_reset_xmit_timer(sk, TCP_TIME_RETRANS, tp->rto);
  349. if (tp->retransmits > sysctl_tcp_retries1)
  350. __sk_dst_reset(sk);
  351. out:;
  352. }
  353. static void tcp_write_timer(unsigned long data)
  354. {
  355. struct sock *sk = (struct sock*)data;
  356. struct tcp_opt *tp = &sk->tp_pinfo.af_tcp;
  357. int event;
  358. bh_lock_sock(sk);
  359. if (sk->lock.users) {
  360. /* Try again later */
  361. if (!mod_timer(&tp->retransmit_timer, jiffies + (HZ/20)))
  362. sock_hold(sk);
  363. goto out_unlock;
  364. }
  365. if (sk->state == TCP_CLOSE || !tp->pending)
  366. goto out;
  367. if ((long)(tp->timeout - jiffies) > 0) {
  368. if (!mod_timer(&tp->retransmit_timer, tp->timeout))
  369. sock_hold(sk);
  370. goto out;
  371. }
  372. event = tp->pending;
  373. tp->pending = 0;
  374. switch (event) {
  375. case TCP_TIME_RETRANS:
  376. tcp_retransmit_timer(sk);
  377. break;
  378. case TCP_TIME_PROBE0:
  379. tcp_probe_timer(sk);
  380. break;
  381. }
  382. TCP_CHECK_TIMER(sk);
  383. out:
  384. tcp_mem_reclaim(sk);
  385. out_unlock:
  386. bh_unlock_sock(sk);
  387. sock_put(sk);
  388. }
  389. /*
  390.  * Timer for listening sockets
  391.  */
  392. static void tcp_synack_timer(struct sock *sk)
  393. {
  394. struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
  395. struct tcp_listen_opt *lopt = tp->listen_opt;
  396. int max_retries = tp->syn_retries ? : sysctl_tcp_synack_retries;
  397. int thresh = max_retries;
  398. unsigned long now = jiffies;
  399. struct open_request **reqp, *req;
  400. int i, budget;
  401. if (lopt == NULL || lopt->qlen == 0)
  402. return;
  403. /* Normally all the openreqs are young and become mature
  404.  * (i.e. converted to established socket) for first timeout.
  405.  * If synack was not acknowledged for 3 seconds, it means
  406.  * one of the following things: synack was lost, ack was lost,
  407.  * rtt is high or nobody planned to ack (i.e. synflood).
  408.  * When server is a bit loaded, queue is populated with old
  409.  * open requests, reducing effective size of queue.
  410.  * When server is well loaded, queue size reduces to zero
  411.  * after several minutes of work. It is not synflood,
  412.  * it is normal operation. The solution is pruning
  413.  * too old entries overriding normal timeout, when
  414.  * situation becomes dangerous.
  415.  *
  416.  * Essentially, we reserve half of room for young
  417.  * embrions; and abort old ones without pity, if old
  418.  * ones are about to clog our table.
  419.  */
  420. if (lopt->qlen>>(lopt->max_qlen_log-1)) {
  421. int young = (lopt->qlen_young<<1);
  422. while (thresh > 2) {
  423. if (lopt->qlen < young)
  424. break;
  425. thresh--;
  426. young <<= 1;
  427. }
  428. }
  429. if (tp->defer_accept)
  430. max_retries = tp->defer_accept;
  431. budget = 2*(TCP_SYNQ_HSIZE/(TCP_TIMEOUT_INIT/TCP_SYNQ_INTERVAL));
  432. i = lopt->clock_hand;
  433. do {
  434. reqp=&lopt->syn_table[i];
  435. while ((req = *reqp) != NULL) {
  436. if ((long)(now - req->expires) >= 0) {
  437. if ((req->retrans < thresh ||
  438.      (req->acked && req->retrans < max_retries))
  439.     && !req->class->rtx_syn_ack(sk, req, NULL)) {
  440. unsigned long timeo;
  441. if (req->retrans++ == 0)
  442. lopt->qlen_young--;
  443. timeo = min((TCP_TIMEOUT_INIT << req->retrans),
  444.     TCP_RTO_MAX);
  445. req->expires = now + timeo;
  446. reqp = &req->dl_next;
  447. continue;
  448. }
  449. /* Drop this request */
  450. write_lock(&tp->syn_wait_lock);
  451. *reqp = req->dl_next;
  452. write_unlock(&tp->syn_wait_lock);
  453. lopt->qlen--;
  454. if (req->retrans == 0)
  455. lopt->qlen_young--;
  456. tcp_openreq_free(req);
  457. continue;
  458. }
  459. reqp = &req->dl_next;
  460. }
  461. i = (i+1)&(TCP_SYNQ_HSIZE-1);
  462. } while (--budget > 0);
  463. lopt->clock_hand = i;
  464. if (lopt->qlen)
  465. tcp_reset_keepalive_timer(sk, TCP_SYNQ_INTERVAL);
  466. }
  467. void tcp_delete_keepalive_timer (struct sock *sk)
  468. {
  469. if (timer_pending(&sk->timer) && del_timer (&sk->timer))
  470. __sock_put(sk);
  471. }
  472. void tcp_reset_keepalive_timer (struct sock *sk, unsigned long len)
  473. {
  474. if (!mod_timer(&sk->timer, jiffies+len))
  475. sock_hold(sk);
  476. }
  477. void tcp_set_keepalive(struct sock *sk, int val)
  478. {
  479. if ((1<<sk->state)&(TCPF_CLOSE|TCPF_LISTEN))
  480. return;
  481. if (val && !sk->keepopen)
  482. tcp_reset_keepalive_timer(sk, keepalive_time_when(&sk->tp_pinfo.af_tcp));
  483. else if (!val)
  484. tcp_delete_keepalive_timer(sk);
  485. }
  486. static void tcp_keepalive_timer (unsigned long data)
  487. {
  488. struct sock *sk = (struct sock *) data;
  489. struct tcp_opt *tp = &sk->tp_pinfo.af_tcp;
  490. __u32 elapsed;
  491. /* Only process if socket is not in use. */
  492. bh_lock_sock(sk);
  493. if (sk->lock.users) {
  494. /* Try again later. */ 
  495. tcp_reset_keepalive_timer (sk, HZ/20);
  496. goto out;
  497. }
  498. if (sk->state == TCP_LISTEN) {
  499. tcp_synack_timer(sk);
  500. goto out;
  501. }
  502. if (sk->state == TCP_FIN_WAIT2 && sk->dead) {
  503. if (tp->linger2 >= 0) {
  504. int tmo = tcp_fin_time(tp) - TCP_TIMEWAIT_LEN;
  505. if (tmo > 0) {
  506. tcp_time_wait(sk, TCP_FIN_WAIT2, tmo);
  507. goto out;
  508. }
  509. }
  510. tcp_send_active_reset(sk, GFP_ATOMIC);
  511. goto death;
  512. }
  513. if (!sk->keepopen || sk->state == TCP_CLOSE)
  514. goto out;
  515. elapsed = keepalive_time_when(tp);
  516. /* It is alive without keepalive 8) */
  517. if (tp->packets_out || tp->send_head)
  518. goto resched;
  519. elapsed = tcp_time_stamp - tp->rcv_tstamp;
  520. if (elapsed >= keepalive_time_when(tp)) {
  521. if ((!tp->keepalive_probes && tp->probes_out >= sysctl_tcp_keepalive_probes) ||
  522.      (tp->keepalive_probes && tp->probes_out >= tp->keepalive_probes)) {
  523. tcp_send_active_reset(sk, GFP_ATOMIC);
  524. tcp_write_err(sk);
  525. goto out;
  526. }
  527. if (tcp_write_wakeup(sk) <= 0) {
  528. tp->probes_out++;
  529. elapsed = keepalive_intvl_when(tp);
  530. } else {
  531. /* If keepalive was lost due to local congestion,
  532.  * try harder.
  533.  */
  534. elapsed = TCP_RESOURCE_PROBE_INTERVAL;
  535. }
  536. } else {
  537. /* It is tp->rcv_tstamp + keepalive_time_when(tp) */
  538. elapsed = keepalive_time_when(tp) - elapsed;
  539. }
  540. TCP_CHECK_TIMER(sk);
  541. tcp_mem_reclaim(sk);
  542. resched:
  543. tcp_reset_keepalive_timer (sk, elapsed);
  544. goto out;
  545. death:
  546. tcp_done(sk);
  547. out:
  548. bh_unlock_sock(sk);
  549. sock_put(sk);
  550. }