blob: 9ff85ee8337cdac304419e6f4e7e3cf3f8a35a5b [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001// SPDX-License-Identifier: GPL-2.0-or-later
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002/* Management of Tx window, Tx resend, ACKs and out-of-sequence reception
3 *
4 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
5 * Written by David Howells (dhowells@redhat.com)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00006 */
7
8#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
9
10#include <linux/module.h>
11#include <linux/circ_buf.h>
12#include <linux/net.h>
13#include <linux/skbuff.h>
14#include <linux/slab.h>
15#include <linux/udp.h>
16#include <net/sock.h>
17#include <net/af_rxrpc.h>
18#include "ar-internal.h"
19
20/*
21 * Propose a PING ACK be sent.
22 */
23static void rxrpc_propose_ping(struct rxrpc_call *call,
24 bool immediate, bool background)
25{
26 if (immediate) {
27 if (background &&
28 !test_and_set_bit(RXRPC_CALL_EV_PING, &call->events))
29 rxrpc_queue_call(call);
30 } else {
31 unsigned long now = jiffies;
32 unsigned long ping_at = now + rxrpc_idle_ack_delay;
33
34 if (time_before(ping_at, call->ping_at)) {
35 WRITE_ONCE(call->ping_at, ping_at);
36 rxrpc_reduce_call_timer(call, ping_at, now,
37 rxrpc_timer_set_for_ping);
38 }
39 }
40}
41
42/*
43 * propose an ACK be sent
44 */
45static void __rxrpc_propose_ACK(struct rxrpc_call *call, u8 ack_reason,
David Brazdil0f672f62019-12-10 10:32:29 +000046 u32 serial, bool immediate, bool background,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000047 enum rxrpc_propose_ack_trace why)
48{
49 enum rxrpc_propose_ack_outcome outcome = rxrpc_propose_ack_use;
50 unsigned long expiry = rxrpc_soft_ack_delay;
51 s8 prior = rxrpc_ack_priority[ack_reason];
52
53 /* Pings are handled specially because we don't want to accidentally
54 * lose a ping response by subsuming it into a ping.
55 */
56 if (ack_reason == RXRPC_ACK_PING) {
57 rxrpc_propose_ping(call, immediate, background);
58 goto trace;
59 }
60
61 /* Update DELAY, IDLE, REQUESTED and PING_RESPONSE ACK serial
62 * numbers, but we don't alter the timeout.
63 */
64 _debug("prior %u %u vs %u %u",
65 ack_reason, prior,
66 call->ackr_reason, rxrpc_ack_priority[call->ackr_reason]);
67 if (ack_reason == call->ackr_reason) {
68 if (RXRPC_ACK_UPDATEABLE & (1 << ack_reason)) {
69 outcome = rxrpc_propose_ack_update;
70 call->ackr_serial = serial;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000071 }
72 if (!immediate)
73 goto trace;
74 } else if (prior > rxrpc_ack_priority[call->ackr_reason]) {
75 call->ackr_reason = ack_reason;
76 call->ackr_serial = serial;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000077 } else {
78 outcome = rxrpc_propose_ack_subsume;
79 }
80
81 switch (ack_reason) {
82 case RXRPC_ACK_REQUESTED:
83 if (rxrpc_requested_ack_delay < expiry)
84 expiry = rxrpc_requested_ack_delay;
85 if (serial == 1)
86 immediate = false;
87 break;
88
89 case RXRPC_ACK_DELAY:
90 if (rxrpc_soft_ack_delay < expiry)
91 expiry = rxrpc_soft_ack_delay;
92 break;
93
94 case RXRPC_ACK_IDLE:
95 if (rxrpc_idle_ack_delay < expiry)
96 expiry = rxrpc_idle_ack_delay;
97 break;
98
99 default:
100 immediate = true;
101 break;
102 }
103
104 if (test_bit(RXRPC_CALL_EV_ACK, &call->events)) {
105 _debug("already scheduled");
106 } else if (immediate || expiry == 0) {
107 _debug("immediate ACK %lx", call->events);
108 if (!test_and_set_bit(RXRPC_CALL_EV_ACK, &call->events) &&
109 background)
110 rxrpc_queue_call(call);
111 } else {
112 unsigned long now = jiffies, ack_at;
113
Olivier Deprez0e641232021-09-23 10:07:05 +0200114 if (call->peer->srtt_us != 0)
115 ack_at = usecs_to_jiffies(call->peer->srtt_us >> 3);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000116 else
117 ack_at = expiry;
118
119 ack_at += READ_ONCE(call->tx_backoff);
120 ack_at += now;
121 if (time_before(ack_at, call->ack_at)) {
122 WRITE_ONCE(call->ack_at, ack_at);
123 rxrpc_reduce_call_timer(call, ack_at, now,
124 rxrpc_timer_set_for_ack);
125 }
126 }
127
128trace:
129 trace_rxrpc_propose_ack(call, why, ack_reason, serial, immediate,
130 background, outcome);
131}
132
133/*
134 * propose an ACK be sent, locking the call structure
135 */
136void rxrpc_propose_ACK(struct rxrpc_call *call, u8 ack_reason,
David Brazdil0f672f62019-12-10 10:32:29 +0000137 u32 serial, bool immediate, bool background,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000138 enum rxrpc_propose_ack_trace why)
139{
140 spin_lock_bh(&call->lock);
David Brazdil0f672f62019-12-10 10:32:29 +0000141 __rxrpc_propose_ACK(call, ack_reason, serial,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000142 immediate, background, why);
143 spin_unlock_bh(&call->lock);
144}
145
146/*
147 * Handle congestion being detected by the retransmit timeout.
148 */
149static void rxrpc_congestion_timeout(struct rxrpc_call *call)
150{
151 set_bit(RXRPC_CALL_RETRANS_TIMEOUT, &call->flags);
152}
153
154/*
155 * Perform retransmission of NAK'd and unack'd packets.
156 */
157static void rxrpc_resend(struct rxrpc_call *call, unsigned long now_j)
158{
159 struct sk_buff *skb;
Olivier Deprez0e641232021-09-23 10:07:05 +0200160 unsigned long resend_at, rto_j;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000161 rxrpc_seq_t cursor, seq, top;
Olivier Deprez0e641232021-09-23 10:07:05 +0200162 ktime_t now, max_age, oldest, ack_ts;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000163 int ix;
164 u8 annotation, anno_type, retrans = 0, unacked = 0;
165
166 _enter("{%d,%d}", call->tx_hard_ack, call->tx_top);
167
Olivier Deprez0e641232021-09-23 10:07:05 +0200168 rto_j = call->peer->rto_j;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000169
170 now = ktime_get_real();
Olivier Deprez0e641232021-09-23 10:07:05 +0200171 max_age = ktime_sub(now, jiffies_to_usecs(rto_j));
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000172
173 spin_lock_bh(&call->lock);
174
175 cursor = call->tx_hard_ack;
176 top = call->tx_top;
177 ASSERT(before_eq(cursor, top));
178 if (cursor == top)
179 goto out_unlock;
180
181 /* Scan the packet list without dropping the lock and decide which of
182 * the packets in the Tx buffer we're going to resend and what the new
183 * resend timeout will be.
184 */
185 trace_rxrpc_resend(call, (cursor + 1) & RXRPC_RXTX_BUFF_MASK);
186 oldest = now;
187 for (seq = cursor + 1; before_eq(seq, top); seq++) {
188 ix = seq & RXRPC_RXTX_BUFF_MASK;
189 annotation = call->rxtx_annotations[ix];
190 anno_type = annotation & RXRPC_TX_ANNO_MASK;
191 annotation &= ~RXRPC_TX_ANNO_MASK;
192 if (anno_type == RXRPC_TX_ANNO_ACK)
193 continue;
194
195 skb = call->rxtx_buffer[ix];
David Brazdil0f672f62019-12-10 10:32:29 +0000196 rxrpc_see_skb(skb, rxrpc_skb_seen);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000197
198 if (anno_type == RXRPC_TX_ANNO_UNACK) {
199 if (ktime_after(skb->tstamp, max_age)) {
200 if (ktime_before(skb->tstamp, oldest))
201 oldest = skb->tstamp;
202 continue;
203 }
204 if (!(annotation & RXRPC_TX_ANNO_RESENT))
205 unacked++;
206 }
207
208 /* Okay, we need to retransmit a packet. */
209 call->rxtx_annotations[ix] = RXRPC_TX_ANNO_RETRANS | annotation;
210 retrans++;
211 trace_rxrpc_retransmit(call, seq, annotation | anno_type,
212 ktime_to_ns(ktime_sub(skb->tstamp, max_age)));
213 }
214
215 resend_at = nsecs_to_jiffies(ktime_to_ns(ktime_sub(now, oldest)));
Olivier Deprez0e641232021-09-23 10:07:05 +0200216 resend_at += jiffies + rto_j;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000217 WRITE_ONCE(call->resend_at, resend_at);
218
219 if (unacked)
220 rxrpc_congestion_timeout(call);
221
222 /* If there was nothing that needed retransmission then it's likely
223 * that an ACK got lost somewhere. Send a ping to find out instead of
224 * retransmitting data.
225 */
226 if (!retrans) {
227 rxrpc_reduce_call_timer(call, resend_at, now_j,
228 rxrpc_timer_set_for_resend);
229 spin_unlock_bh(&call->lock);
230 ack_ts = ktime_sub(now, call->acks_latest_ts);
Olivier Deprez0e641232021-09-23 10:07:05 +0200231 if (ktime_to_us(ack_ts) < (call->peer->srtt_us >> 3))
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000232 goto out;
David Brazdil0f672f62019-12-10 10:32:29 +0000233 rxrpc_propose_ACK(call, RXRPC_ACK_PING, 0, true, false,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000234 rxrpc_propose_ack_ping_for_lost_ack);
235 rxrpc_send_ack_packet(call, true, NULL);
236 goto out;
237 }
238
239 /* Now go through the Tx window and perform the retransmissions. We
240 * have to drop the lock for each send. If an ACK comes in whilst the
241 * lock is dropped, it may clear some of the retransmission markers for
242 * packets that it soft-ACKs.
243 */
244 for (seq = cursor + 1; before_eq(seq, top); seq++) {
245 ix = seq & RXRPC_RXTX_BUFF_MASK;
246 annotation = call->rxtx_annotations[ix];
247 anno_type = annotation & RXRPC_TX_ANNO_MASK;
248 if (anno_type != RXRPC_TX_ANNO_RETRANS)
249 continue;
250
Olivier Deprez0e641232021-09-23 10:07:05 +0200251 /* We need to reset the retransmission state, but we need to do
252 * so before we drop the lock as a new ACK/NAK may come in and
253 * confuse things
254 */
255 annotation &= ~RXRPC_TX_ANNO_MASK;
256 annotation |= RXRPC_TX_ANNO_UNACK | RXRPC_TX_ANNO_RESENT;
257 call->rxtx_annotations[ix] = annotation;
258
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000259 skb = call->rxtx_buffer[ix];
Olivier Deprez0e641232021-09-23 10:07:05 +0200260 if (!skb)
261 continue;
262
David Brazdil0f672f62019-12-10 10:32:29 +0000263 rxrpc_get_skb(skb, rxrpc_skb_got);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000264 spin_unlock_bh(&call->lock);
265
266 if (rxrpc_send_data_packet(call, skb, true) < 0) {
David Brazdil0f672f62019-12-10 10:32:29 +0000267 rxrpc_free_skb(skb, rxrpc_skb_freed);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000268 return;
269 }
270
271 if (rxrpc_is_client_call(call))
272 rxrpc_expose_client_call(call);
273
David Brazdil0f672f62019-12-10 10:32:29 +0000274 rxrpc_free_skb(skb, rxrpc_skb_freed);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000275 spin_lock_bh(&call->lock);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000276 if (after(call->tx_hard_ack, seq))
277 seq = call->tx_hard_ack;
278 }
279
280out_unlock:
281 spin_unlock_bh(&call->lock);
282out:
283 _leave("");
284}
285
286/*
287 * Handle retransmission and deferred ACK/abort generation.
288 */
289void rxrpc_process_call(struct work_struct *work)
290{
291 struct rxrpc_call *call =
292 container_of(work, struct rxrpc_call, processor);
293 rxrpc_serial_t *send_ack;
294 unsigned long now, next, t;
295 unsigned int iterations = 0;
296
297 rxrpc_see_call(call);
298
299 //printk("\n--------------------\n");
300 _enter("{%d,%s,%lx}",
301 call->debug_id, rxrpc_call_states[call->state], call->events);
302
303recheck_state:
304 /* Limit the number of times we do this before returning to the manager */
305 iterations++;
306 if (iterations > 5)
307 goto requeue;
308
309 if (test_and_clear_bit(RXRPC_CALL_EV_ABORT, &call->events)) {
310 rxrpc_send_abort_packet(call);
311 goto recheck_state;
312 }
313
314 if (call->state == RXRPC_CALL_COMPLETE) {
315 del_timer_sync(&call->timer);
316 rxrpc_notify_socket(call);
317 goto out_put;
318 }
319
320 /* Work out if any timeouts tripped */
321 now = jiffies;
322 t = READ_ONCE(call->expect_rx_by);
323 if (time_after_eq(now, t)) {
324 trace_rxrpc_timer(call, rxrpc_timer_exp_normal, now);
325 set_bit(RXRPC_CALL_EV_EXPIRED, &call->events);
326 }
327
328 t = READ_ONCE(call->expect_req_by);
329 if (call->state == RXRPC_CALL_SERVER_RECV_REQUEST &&
330 time_after_eq(now, t)) {
331 trace_rxrpc_timer(call, rxrpc_timer_exp_idle, now);
332 set_bit(RXRPC_CALL_EV_EXPIRED, &call->events);
333 }
334
335 t = READ_ONCE(call->expect_term_by);
336 if (time_after_eq(now, t)) {
337 trace_rxrpc_timer(call, rxrpc_timer_exp_hard, now);
338 set_bit(RXRPC_CALL_EV_EXPIRED, &call->events);
339 }
340
341 t = READ_ONCE(call->ack_at);
342 if (time_after_eq(now, t)) {
343 trace_rxrpc_timer(call, rxrpc_timer_exp_ack, now);
344 cmpxchg(&call->ack_at, t, now + MAX_JIFFY_OFFSET);
345 set_bit(RXRPC_CALL_EV_ACK, &call->events);
346 }
347
348 t = READ_ONCE(call->ack_lost_at);
349 if (time_after_eq(now, t)) {
350 trace_rxrpc_timer(call, rxrpc_timer_exp_lost_ack, now);
351 cmpxchg(&call->ack_lost_at, t, now + MAX_JIFFY_OFFSET);
352 set_bit(RXRPC_CALL_EV_ACK_LOST, &call->events);
353 }
354
355 t = READ_ONCE(call->keepalive_at);
356 if (time_after_eq(now, t)) {
357 trace_rxrpc_timer(call, rxrpc_timer_exp_keepalive, now);
358 cmpxchg(&call->keepalive_at, t, now + MAX_JIFFY_OFFSET);
David Brazdil0f672f62019-12-10 10:32:29 +0000359 rxrpc_propose_ACK(call, RXRPC_ACK_PING, 0, true, true,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000360 rxrpc_propose_ack_ping_for_keepalive);
361 set_bit(RXRPC_CALL_EV_PING, &call->events);
362 }
363
364 t = READ_ONCE(call->ping_at);
365 if (time_after_eq(now, t)) {
366 trace_rxrpc_timer(call, rxrpc_timer_exp_ping, now);
367 cmpxchg(&call->ping_at, t, now + MAX_JIFFY_OFFSET);
368 set_bit(RXRPC_CALL_EV_PING, &call->events);
369 }
370
371 t = READ_ONCE(call->resend_at);
372 if (time_after_eq(now, t)) {
373 trace_rxrpc_timer(call, rxrpc_timer_exp_resend, now);
374 cmpxchg(&call->resend_at, t, now + MAX_JIFFY_OFFSET);
375 set_bit(RXRPC_CALL_EV_RESEND, &call->events);
376 }
377
378 /* Process events */
379 if (test_and_clear_bit(RXRPC_CALL_EV_EXPIRED, &call->events)) {
380 if (test_bit(RXRPC_CALL_RX_HEARD, &call->flags) &&
381 (int)call->conn->hi_serial - (int)call->rx_serial > 0) {
382 trace_rxrpc_call_reset(call);
383 rxrpc_abort_call("EXP", call, 0, RX_USER_ABORT, -ECONNRESET);
384 } else {
385 rxrpc_abort_call("EXP", call, 0, RX_USER_ABORT, -ETIME);
386 }
387 set_bit(RXRPC_CALL_EV_ABORT, &call->events);
388 goto recheck_state;
389 }
390
391 send_ack = NULL;
392 if (test_and_clear_bit(RXRPC_CALL_EV_ACK_LOST, &call->events)) {
393 call->acks_lost_top = call->tx_top;
David Brazdil0f672f62019-12-10 10:32:29 +0000394 rxrpc_propose_ACK(call, RXRPC_ACK_PING, 0, true, false,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000395 rxrpc_propose_ack_ping_for_lost_ack);
396 send_ack = &call->acks_lost_ping;
397 }
398
399 if (test_and_clear_bit(RXRPC_CALL_EV_ACK, &call->events) ||
400 send_ack) {
401 if (call->ackr_reason) {
402 rxrpc_send_ack_packet(call, false, send_ack);
403 goto recheck_state;
404 }
405 }
406
407 if (test_and_clear_bit(RXRPC_CALL_EV_PING, &call->events)) {
408 rxrpc_send_ack_packet(call, true, NULL);
409 goto recheck_state;
410 }
411
412 if (test_and_clear_bit(RXRPC_CALL_EV_RESEND, &call->events)) {
413 rxrpc_resend(call, now);
414 goto recheck_state;
415 }
416
417 /* Make sure the timer is restarted */
418 next = call->expect_rx_by;
419
420#define set(T) { t = READ_ONCE(T); if (time_before(t, next)) next = t; }
421
422 set(call->expect_req_by);
423 set(call->expect_term_by);
424 set(call->ack_at);
425 set(call->ack_lost_at);
426 set(call->resend_at);
427 set(call->keepalive_at);
428 set(call->ping_at);
429
430 now = jiffies;
431 if (time_after_eq(now, next))
432 goto recheck_state;
433
434 rxrpc_reduce_call_timer(call, next, now, rxrpc_timer_restart);
435
436 /* other events may have been raised since we started checking */
437 if (call->events && call->state < RXRPC_CALL_COMPLETE)
438 goto requeue;
439
440out_put:
441 rxrpc_put_call(call, rxrpc_call_put);
442out:
443 _leave("");
444 return;
445
446requeue:
447 __rxrpc_queue_call(call);
448 goto out;
449}