blob: bda0af639ae43d6608550f904d72a10968226dcd [file] [log] [blame]
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001/*
2 * net/dccp/timer.c
3 *
4 * An implementation of the DCCP protocol
5 * Arnaldo Carvalho de Melo <acme@conectiva.com.br>
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 */
12
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -070013#include <linux/dccp.h>
14#include <linux/skbuff.h>
15
16#include "dccp.h"
17
18static void dccp_write_timer(unsigned long data);
19static void dccp_keepalive_timer(unsigned long data);
20static void dccp_delack_timer(unsigned long data);
21
22void dccp_init_xmit_timers(struct sock *sk)
23{
24 inet_csk_init_xmit_timers(sk, &dccp_write_timer, &dccp_delack_timer,
25 &dccp_keepalive_timer);
26}
27
28static void dccp_write_err(struct sock *sk)
29{
30 sk->sk_err = sk->sk_err_soft ? : ETIMEDOUT;
31 sk->sk_error_report(sk);
32
Arnaldo Carvalho de Melo017487d2006-03-20 19:25:24 -080033 dccp_send_reset(sk, DCCP_RESET_CODE_ABORTED);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -070034 dccp_done(sk);
35 DCCP_INC_STATS_BH(DCCP_MIB_ABORTONTIMEOUT);
36}
37
38/* A write timeout has occurred. Process the after effects. */
39static int dccp_write_timeout(struct sock *sk)
40{
41 const struct inet_connection_sock *icsk = inet_csk(sk);
42 int retry_until;
43
44 if (sk->sk_state == DCCP_REQUESTING || sk->sk_state == DCCP_PARTOPEN) {
45 if (icsk->icsk_retransmits != 0)
46 dst_negative_advice(&sk->sk_dst_cache);
Arnaldo Carvalho de Melo7690af32005-08-13 20:34:54 -030047 retry_until = icsk->icsk_syn_retries ? :
48 /* FIXME! */ 3 /* FIXME! sysctl_tcp_syn_retries */;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -070049 } else {
Arnaldo Carvalho de Melo7690af32005-08-13 20:34:54 -030050 if (icsk->icsk_retransmits >=
51 /* FIXME! sysctl_tcp_retries1 */ 5 /* FIXME! */) {
52 /* NOTE. draft-ietf-tcpimpl-pmtud-01.txt requires pmtu
53 black hole detection. :-(
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -070054
55 It is place to make it. It is not made. I do not want
56 to make it. It is disguisting. It does not work in any
57 case. Let me to cite the same draft, which requires for
58 us to implement this:
59
60 "The one security concern raised by this memo is that ICMP black holes
61 are often caused by over-zealous security administrators who block
62 all ICMP messages. It is vitally important that those who design and
63 deploy security systems understand the impact of strict filtering on
64 upper-layer protocols. The safest web site in the world is worthless
65 if most TCP implementations cannot transfer data from it. It would
66 be far nicer to have all of the black holes fixed rather than fixing
67 all of the TCP implementations."
68
69 Golden words :-).
70 */
71
72 dst_negative_advice(&sk->sk_dst_cache);
73 }
74
75 retry_until = /* FIXME! */ 15 /* FIXME! sysctl_tcp_retries2 */;
76 /*
77 * FIXME: see tcp_write_timout and tcp_out_of_resources
78 */
79 }
80
81 if (icsk->icsk_retransmits >= retry_until) {
82 /* Has it gone just too far? */
83 dccp_write_err(sk);
84 return 1;
85 }
86 return 0;
87}
88
89/* This is the same as tcp_delack_timer, sans prequeue & mem_reclaim stuff */
90static void dccp_delack_timer(unsigned long data)
91{
92 struct sock *sk = (struct sock *)data;
93 struct inet_connection_sock *icsk = inet_csk(sk);
94
95 bh_lock_sock(sk);
96 if (sock_owned_by_user(sk)) {
97 /* Try again later. */
98 icsk->icsk_ack.blocked = 1;
99 NET_INC_STATS_BH(LINUX_MIB_DELAYEDACKLOCKED);
Arnaldo Carvalho de Melo7690af32005-08-13 20:34:54 -0300100 sk_reset_timer(sk, &icsk->icsk_delack_timer,
101 jiffies + TCP_DELACK_MIN);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700102 goto out;
103 }
104
Arnaldo Carvalho de Melo7690af32005-08-13 20:34:54 -0300105 if (sk->sk_state == DCCP_CLOSED ||
106 !(icsk->icsk_ack.pending & ICSK_ACK_TIMER))
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700107 goto out;
108 if (time_after(icsk->icsk_ack.timeout, jiffies)) {
Arnaldo Carvalho de Melo7690af32005-08-13 20:34:54 -0300109 sk_reset_timer(sk, &icsk->icsk_delack_timer,
110 icsk->icsk_ack.timeout);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700111 goto out;
112 }
113
114 icsk->icsk_ack.pending &= ~ICSK_ACK_TIMER;
115
116 if (inet_csk_ack_scheduled(sk)) {
117 if (!icsk->icsk_ack.pingpong) {
118 /* Delayed ACK missed: inflate ATO. */
Arnaldo Carvalho de Melo7690af32005-08-13 20:34:54 -0300119 icsk->icsk_ack.ato = min(icsk->icsk_ack.ato << 1,
120 icsk->icsk_rto);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700121 } else {
122 /* Delayed ACK missed: leave pingpong mode and
123 * deflate ATO.
124 */
125 icsk->icsk_ack.pingpong = 0;
126 icsk->icsk_ack.ato = TCP_ATO_MIN;
127 }
128 dccp_send_ack(sk);
129 NET_INC_STATS_BH(LINUX_MIB_DELAYEDACKS);
130 }
131out:
132 bh_unlock_sock(sk);
133 sock_put(sk);
134}
135
136/*
137 * The DCCP retransmit timer.
138 */
139static void dccp_retransmit_timer(struct sock *sk)
140{
141 struct inet_connection_sock *icsk = inet_csk(sk);
142
Andrea Bittauafe00252006-03-20 17:43:56 -0800143 /* retransmit timer is used for feature negotiation throughout
144 * connection. In this case, no packet is re-transmitted, but rather an
Gerrit Renker08a29e42006-11-13 13:07:51 -0200145 * ack is generated and pending changes are placed into its options.
Andrea Bittauafe00252006-03-20 17:43:56 -0800146 */
147 if (sk->sk_send_head == NULL) {
148 dccp_pr_debug("feat negotiation retransmit timeout %p\n", sk);
149 if (sk->sk_state == DCCP_OPEN)
150 dccp_send_ack(sk);
151 goto backoff;
152 }
153
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700154 /*
155 * sk->sk_send_head has to have one skb with
156 * DCCP_SKB_CB(skb)->dccpd_type set to one of the retransmittable DCCP
Gerrit Renker08a29e42006-11-13 13:07:51 -0200157 * packet types. The only packets eligible for retransmission are:
158 * -- Requests in client-REQUEST state (sec. 8.1.1)
159 * -- Acks in client-PARTOPEN state (sec. 8.1.5)
160 * -- CloseReq in server-CLOSEREQ state (sec. 8.3)
161 * -- Close in node-CLOSING state (sec. 8.3) */
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700162 BUG_TRAP(sk->sk_send_head != NULL);
163
164 /*
165 * More than than 4MSL (8 minutes) has passed, a RESET(aborted) was
166 * sent, no need to retransmit, this sock is dead.
167 */
168 if (dccp_write_timeout(sk))
169 goto out;
170
171 /*
172 * We want to know the number of packets retransmitted, not the
173 * total number of retransmissions of clones of original packets.
174 */
175 if (icsk->icsk_retransmits == 0)
176 DCCP_INC_STATS_BH(DCCP_MIB_TIMEOUTS);
177
178 if (dccp_retransmit_skb(sk, sk->sk_send_head) < 0) {
179 /*
180 * Retransmission failed because of local congestion,
181 * do not backoff.
182 */
183 if (icsk->icsk_retransmits == 0)
184 icsk->icsk_retransmits = 1;
185 inet_csk_reset_xmit_timer(sk, ICSK_TIME_RETRANS,
186 min(icsk->icsk_rto,
187 TCP_RESOURCE_PROBE_INTERVAL),
Arnaldo Carvalho de Melo7690af32005-08-13 20:34:54 -0300188 DCCP_RTO_MAX);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700189 goto out;
190 }
191
Andrea Bittauafe00252006-03-20 17:43:56 -0800192backoff:
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700193 icsk->icsk_backoff++;
194 icsk->icsk_retransmits++;
195
196 icsk->icsk_rto = min(icsk->icsk_rto << 1, DCCP_RTO_MAX);
Arnaldo Carvalho de Melo7690af32005-08-13 20:34:54 -0300197 inet_csk_reset_xmit_timer(sk, ICSK_TIME_RETRANS, icsk->icsk_rto,
198 DCCP_RTO_MAX);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700199 if (icsk->icsk_retransmits > 3 /* FIXME: sysctl_dccp_retries1 */)
200 __sk_dst_reset(sk);
201out:;
202}
203
204static void dccp_write_timer(unsigned long data)
205{
206 struct sock *sk = (struct sock *)data;
207 struct inet_connection_sock *icsk = inet_csk(sk);
208 int event = 0;
209
210 bh_lock_sock(sk);
211 if (sock_owned_by_user(sk)) {
212 /* Try again later */
Arnaldo Carvalho de Melo7690af32005-08-13 20:34:54 -0300213 sk_reset_timer(sk, &icsk->icsk_retransmit_timer,
214 jiffies + (HZ / 20));
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700215 goto out;
216 }
217
218 if (sk->sk_state == DCCP_CLOSED || !icsk->icsk_pending)
219 goto out;
220
221 if (time_after(icsk->icsk_timeout, jiffies)) {
Arnaldo Carvalho de Melo7690af32005-08-13 20:34:54 -0300222 sk_reset_timer(sk, &icsk->icsk_retransmit_timer,
223 icsk->icsk_timeout);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700224 goto out;
225 }
226
227 event = icsk->icsk_pending;
228 icsk->icsk_pending = 0;
229
230 switch (event) {
231 case ICSK_TIME_RETRANS:
232 dccp_retransmit_timer(sk);
233 break;
234 }
235out:
236 bh_unlock_sock(sk);
237 sock_put(sk);
238}
239
240/*
241 * Timer for listening sockets
242 */
243static void dccp_response_timer(struct sock *sk)
244{
Arnaldo Carvalho de Melo7690af32005-08-13 20:34:54 -0300245 inet_csk_reqsk_queue_prune(sk, TCP_SYNQ_INTERVAL, DCCP_TIMEOUT_INIT,
246 DCCP_RTO_MAX);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700247}
248
249static void dccp_keepalive_timer(unsigned long data)
250{
251 struct sock *sk = (struct sock *)data;
252
253 /* Only process if socket is not in use. */
254 bh_lock_sock(sk);
255 if (sock_owned_by_user(sk)) {
256 /* Try again later. */
257 inet_csk_reset_keepalive_timer(sk, HZ / 20);
258 goto out;
259 }
260
261 if (sk->sk_state == DCCP_LISTEN) {
262 dccp_response_timer(sk);
263 goto out;
264 }
265out:
266 bh_unlock_sock(sk);
267 sock_put(sk);
268}