blob: df864e6922679140d5b7c8c3aadd65a92906e9e3 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
David Howells17926a72007-04-26 15:48:28 -07002/* 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)
David Howells17926a72007-04-26 15:48:28 -07006 */
7
Joe Perches9b6d5392016-06-02 12:08:52 -07008#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
9
David Howells17926a72007-04-26 15:48:28 -070010#include <linux/module.h>
11#include <linux/circ_buf.h>
12#include <linux/net.h>
13#include <linux/skbuff.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
David Howells17926a72007-04-26 15:48:28 -070015#include <linux/udp.h>
16#include <net/sock.h>
17#include <net/af_rxrpc.h>
18#include "ar-internal.h"
19
David Howells5873c082014-02-07 18:58:44 +000020/*
David Howellsa5af7e12016-10-06 08:11:49 +010021 * 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 {
David Howellsa158bdd2017-11-24 10:18:41 +000031 unsigned long now = jiffies;
32 unsigned long ping_at = now + rxrpc_idle_ack_delay;
David Howellsa5af7e12016-10-06 08:11:49 +010033
David Howellsa158bdd2017-11-24 10:18:41 +000034 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);
David Howellsa5af7e12016-10-06 08:11:49 +010038 }
39 }
40}
41
42/*
David Howells17926a72007-04-26 15:48:28 -070043 * propose an ACK be sent
44 */
David Howells248f2192016-09-08 11:10:12 +010045static void __rxrpc_propose_ACK(struct rxrpc_call *call, u8 ack_reason,
David Howellse8c3af62019-08-09 15:20:41 +010046 u32 serial, bool immediate, bool background,
David Howells9c7ad432016-09-23 13:50:40 +010047 enum rxrpc_propose_ack_trace why)
David Howells17926a72007-04-26 15:48:28 -070048{
David Howells9c7ad432016-09-23 13:50:40 +010049 enum rxrpc_propose_ack_outcome outcome = rxrpc_propose_ack_use;
David Howellsbeb8e5e2017-11-24 10:18:41 +000050 unsigned long expiry = rxrpc_soft_ack_delay;
David Howells17926a72007-04-26 15:48:28 -070051 s8 prior = rxrpc_ack_priority[ack_reason];
52
David Howellsa5af7e12016-10-06 08:11:49 +010053 /* 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
David Howells248f2192016-09-08 11:10:12 +010061 /* 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)) {
David Howells9c7ad432016-09-23 13:50:40 +010069 outcome = rxrpc_propose_ack_update;
David Howells17926a72007-04-26 15:48:28 -070070 call->ackr_serial = serial;
David Howells563ea7d2016-08-23 15:27:25 +010071 }
David Howells248f2192016-09-08 11:10:12 +010072 if (!immediate)
David Howells9c7ad432016-09-23 13:50:40 +010073 goto trace;
David Howells248f2192016-09-08 11:10:12 +010074 } else if (prior > rxrpc_ack_priority[call->ackr_reason]) {
75 call->ackr_reason = ack_reason;
76 call->ackr_serial = serial;
David Howells9c7ad432016-09-23 13:50:40 +010077 } else {
78 outcome = rxrpc_propose_ack_subsume;
David Howells17926a72007-04-26 15:48:28 -070079 }
80
David Howells17926a72007-04-26 15:48:28 -070081 switch (ack_reason) {
David Howells248f2192016-09-08 11:10:12 +010082 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
David Howells17926a72007-04-26 15:48:28 -070089 case RXRPC_ACK_DELAY:
David Howells248f2192016-09-08 11:10:12 +010090 if (rxrpc_soft_ack_delay < expiry)
91 expiry = rxrpc_soft_ack_delay;
92 break;
David Howells17926a72007-04-26 15:48:28 -070093
94 case RXRPC_ACK_IDLE:
David Howells91c2c7b2016-09-13 22:36:21 +010095 if (rxrpc_idle_ack_delay < expiry)
David Howells5873c082014-02-07 18:58:44 +000096 expiry = rxrpc_idle_ack_delay;
David Howells248f2192016-09-08 11:10:12 +010097 break;
David Howells17926a72007-04-26 15:48:28 -070098
99 default:
David Howells248f2192016-09-08 11:10:12 +0100100 immediate = true;
101 break;
David Howells17926a72007-04-26 15:48:28 -0700102 }
103
David Howells248f2192016-09-08 11:10:12 +0100104 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 {
David Howellsbeb8e5e2017-11-24 10:18:41 +0000112 unsigned long now = jiffies, ack_at;
113
David Howellsc410bf012020-05-11 14:54:34 +0100114 if (call->peer->srtt_us != 0)
115 ack_at = usecs_to_jiffies(call->peer->srtt_us >> 3);
David Howellsbeb8e5e2017-11-24 10:18:41 +0000116 else
117 ack_at = expiry;
118
David Howellsc7e86ac2018-11-01 13:39:53 +0000119 ack_at += READ_ONCE(call->tx_backoff);
Gustavo A. R. Silva282ef472017-11-28 11:28:52 -0600120 ack_at += now;
David Howellsa158bdd2017-11-24 10:18:41 +0000121 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);
David Howells248f2192016-09-08 11:10:12 +0100125 }
126 }
David Howells9c7ad432016-09-23 13:50:40 +0100127
128trace:
129 trace_rxrpc_propose_ack(call, why, ack_reason, serial, immediate,
130 background, outcome);
David Howells17926a72007-04-26 15:48:28 -0700131}
132
133/*
134 * propose an ACK be sent, locking the call structure
135 */
David Howells4e36a952009-09-16 00:01:13 -0700136void rxrpc_propose_ACK(struct rxrpc_call *call, u8 ack_reason,
David Howellse8c3af62019-08-09 15:20:41 +0100137 u32 serial, bool immediate, bool background,
David Howells9c7ad432016-09-23 13:50:40 +0100138 enum rxrpc_propose_ack_trace why)
David Howells17926a72007-04-26 15:48:28 -0700139{
David Howells248f2192016-09-08 11:10:12 +0100140 spin_lock_bh(&call->lock);
David Howellse8c3af62019-08-09 15:20:41 +0100141 __rxrpc_propose_ACK(call, ack_reason, serial,
David Howells9c7ad432016-09-23 13:50:40 +0100142 immediate, background, why);
David Howells248f2192016-09-08 11:10:12 +0100143 spin_unlock_bh(&call->lock);
David Howells17926a72007-04-26 15:48:28 -0700144}
145
146/*
David Howells57494342016-09-24 18:05:27 +0100147 * 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/*
David Howells248f2192016-09-08 11:10:12 +0100155 * Perform retransmission of NAK'd and unack'd packets.
David Howells17926a72007-04-26 15:48:28 -0700156 */
David Howellsa158bdd2017-11-24 10:18:41 +0000157static void rxrpc_resend(struct rxrpc_call *call, unsigned long now_j)
David Howells17926a72007-04-26 15:48:28 -0700158{
David Howells17926a72007-04-26 15:48:28 -0700159 struct sk_buff *skb;
David Howells2c13c052022-01-21 23:12:58 +0000160 unsigned long resend_at;
David Howells248f2192016-09-08 11:10:12 +0100161 rxrpc_seq_t cursor, seq, top;
David Howellsc410bf012020-05-11 14:54:34 +0100162 ktime_t now, max_age, oldest, ack_ts;
David Howells248f2192016-09-08 11:10:12 +0100163 int ix;
David Howells57494342016-09-24 18:05:27 +0100164 u8 annotation, anno_type, retrans = 0, unacked = 0;
David Howells17926a72007-04-26 15:48:28 -0700165
David Howells248f2192016-09-08 11:10:12 +0100166 _enter("{%d,%d}", call->tx_hard_ack, call->tx_top);
David Howells17926a72007-04-26 15:48:28 -0700167
David Howellsa158bdd2017-11-24 10:18:41 +0000168 now = ktime_get_real();
David Howells2c13c052022-01-21 23:12:58 +0000169 max_age = ktime_sub(now, jiffies_to_usecs(call->peer->rto_j));
David Howells50235c42016-09-22 00:29:31 +0100170
David Howells17926a72007-04-26 15:48:28 -0700171 spin_lock_bh(&call->lock);
172
David Howells248f2192016-09-08 11:10:12 +0100173 cursor = call->tx_hard_ack;
174 top = call->tx_top;
175 ASSERT(before_eq(cursor, top));
176 if (cursor == top)
177 goto out_unlock;
David Howells17926a72007-04-26 15:48:28 -0700178
David Howells248f2192016-09-08 11:10:12 +0100179 /* Scan the packet list without dropping the lock and decide which of
180 * the packets in the Tx buffer we're going to resend and what the new
181 * resend timeout will be.
182 */
David Howells827efed2018-03-27 23:02:47 +0100183 trace_rxrpc_resend(call, (cursor + 1) & RXRPC_RXTX_BUFF_MASK);
David Howells50235c42016-09-22 00:29:31 +0100184 oldest = now;
David Howellsdfa7d922016-09-17 10:49:12 +0100185 for (seq = cursor + 1; before_eq(seq, top); seq++) {
David Howells248f2192016-09-08 11:10:12 +0100186 ix = seq & RXRPC_RXTX_BUFF_MASK;
187 annotation = call->rxtx_annotations[ix];
David Howellsf07373e2016-09-22 00:29:32 +0100188 anno_type = annotation & RXRPC_TX_ANNO_MASK;
189 annotation &= ~RXRPC_TX_ANNO_MASK;
190 if (anno_type == RXRPC_TX_ANNO_ACK)
David Howells248f2192016-09-08 11:10:12 +0100191 continue;
192
193 skb = call->rxtx_buffer[ix];
David Howells987db9f2019-08-19 09:25:38 +0100194 rxrpc_see_skb(skb, rxrpc_skb_seen);
David Howells17926a72007-04-26 15:48:28 -0700195
David Howellsf07373e2016-09-22 00:29:32 +0100196 if (anno_type == RXRPC_TX_ANNO_UNACK) {
David Howells50235c42016-09-22 00:29:31 +0100197 if (ktime_after(skb->tstamp, max_age)) {
198 if (ktime_before(skb->tstamp, oldest))
199 oldest = skb->tstamp;
David Howells248f2192016-09-08 11:10:12 +0100200 continue;
201 }
David Howells57494342016-09-24 18:05:27 +0100202 if (!(annotation & RXRPC_TX_ANNO_RESENT))
203 unacked++;
David Howells17926a72007-04-26 15:48:28 -0700204 }
David Howells17926a72007-04-26 15:48:28 -0700205
David Howells248f2192016-09-08 11:10:12 +0100206 /* Okay, we need to retransmit a packet. */
David Howellsf07373e2016-09-22 00:29:32 +0100207 call->rxtx_annotations[ix] = RXRPC_TX_ANNO_RETRANS | annotation;
David Howells57494342016-09-24 18:05:27 +0100208 retrans++;
David Howellsc6672e32016-09-23 13:58:55 +0100209 trace_rxrpc_retransmit(call, seq, annotation | anno_type,
210 ktime_to_ns(ktime_sub(skb->tstamp, max_age)));
David Howellsdfa7d922016-09-17 10:49:12 +0100211 }
David Howells17926a72007-04-26 15:48:28 -0700212
Marc Dionne59299aa2018-03-30 21:04:44 +0100213 resend_at = nsecs_to_jiffies(ktime_to_ns(ktime_sub(now, oldest)));
David Howells2c13c052022-01-21 23:12:58 +0000214 resend_at += jiffies + rxrpc_get_rto_backoff(call->peer, retrans);
David Howellsa158bdd2017-11-24 10:18:41 +0000215 WRITE_ONCE(call->resend_at, resend_at);
David Howells17926a72007-04-26 15:48:28 -0700216
David Howells57494342016-09-24 18:05:27 +0100217 if (unacked)
218 rxrpc_congestion_timeout(call);
219
220 /* If there was nothing that needed retransmission then it's likely
221 * that an ACK got lost somewhere. Send a ping to find out instead of
222 * retransmitting data.
223 */
224 if (!retrans) {
David Howellsf82eb882018-03-30 21:04:43 +0100225 rxrpc_reduce_call_timer(call, resend_at, now_j,
David Howellsa158bdd2017-11-24 10:18:41 +0000226 rxrpc_timer_set_for_resend);
David Howells57494342016-09-24 18:05:27 +0100227 spin_unlock_bh(&call->lock);
228 ack_ts = ktime_sub(now, call->acks_latest_ts);
David Howellsc410bf012020-05-11 14:54:34 +0100229 if (ktime_to_us(ack_ts) < (call->peer->srtt_us >> 3))
David Howells57494342016-09-24 18:05:27 +0100230 goto out;
David Howellse8c3af62019-08-09 15:20:41 +0100231 rxrpc_propose_ACK(call, RXRPC_ACK_PING, 0, true, false,
David Howells57494342016-09-24 18:05:27 +0100232 rxrpc_propose_ack_ping_for_lost_ack);
David Howellsbd1fdf82017-11-24 10:18:42 +0000233 rxrpc_send_ack_packet(call, true, NULL);
David Howells57494342016-09-24 18:05:27 +0100234 goto out;
235 }
236
David Howells248f2192016-09-08 11:10:12 +0100237 /* Now go through the Tx window and perform the retransmissions. We
238 * have to drop the lock for each send. If an ACK comes in whilst the
239 * lock is dropped, it may clear some of the retransmission markers for
240 * packets that it soft-ACKs.
241 */
David Howellsdfa7d922016-09-17 10:49:12 +0100242 for (seq = cursor + 1; before_eq(seq, top); seq++) {
David Howells248f2192016-09-08 11:10:12 +0100243 ix = seq & RXRPC_RXTX_BUFF_MASK;
244 annotation = call->rxtx_annotations[ix];
David Howellsf07373e2016-09-22 00:29:32 +0100245 anno_type = annotation & RXRPC_TX_ANNO_MASK;
246 if (anno_type != RXRPC_TX_ANNO_RETRANS)
David Howells248f2192016-09-08 11:10:12 +0100247 continue;
David Howells17926a72007-04-26 15:48:28 -0700248
David Howells2ad66912020-06-11 21:57:00 +0100249 /* We need to reset the retransmission state, but we need to do
250 * so before we drop the lock as a new ACK/NAK may come in and
251 * confuse things
252 */
253 annotation &= ~RXRPC_TX_ANNO_MASK;
David Howells02c28df2020-06-17 15:46:33 +0100254 annotation |= RXRPC_TX_ANNO_UNACK | RXRPC_TX_ANNO_RESENT;
David Howells2ad66912020-06-11 21:57:00 +0100255 call->rxtx_annotations[ix] = annotation;
256
David Howells248f2192016-09-08 11:10:12 +0100257 skb = call->rxtx_buffer[ix];
David Howells2ad66912020-06-11 21:57:00 +0100258 if (!skb)
259 continue;
260
David Howells987db9f2019-08-19 09:25:38 +0100261 rxrpc_get_skb(skb, rxrpc_skb_got);
David Howells248f2192016-09-08 11:10:12 +0100262 spin_unlock_bh(&call->lock);
David Howells248f2192016-09-08 11:10:12 +0100263
David Howellsa1767072016-09-29 22:37:15 +0100264 if (rxrpc_send_data_packet(call, skb, true) < 0) {
David Howells987db9f2019-08-19 09:25:38 +0100265 rxrpc_free_skb(skb, rxrpc_skb_freed);
David Howells248f2192016-09-08 11:10:12 +0100266 return;
267 }
268
269 if (rxrpc_is_client_call(call))
270 rxrpc_expose_client_call(call);
David Howells248f2192016-09-08 11:10:12 +0100271
David Howells987db9f2019-08-19 09:25:38 +0100272 rxrpc_free_skb(skb, rxrpc_skb_freed);
David Howells17926a72007-04-26 15:48:28 -0700273 spin_lock_bh(&call->lock);
David Howells248f2192016-09-08 11:10:12 +0100274 if (after(call->tx_hard_ack, seq))
275 seq = call->tx_hard_ack;
David Howellsdfa7d922016-09-17 10:49:12 +0100276 }
David Howells248f2192016-09-08 11:10:12 +0100277
278out_unlock:
279 spin_unlock_bh(&call->lock);
David Howells57494342016-09-24 18:05:27 +0100280out:
David Howells248f2192016-09-08 11:10:12 +0100281 _leave("");
David Howells17926a72007-04-26 15:48:28 -0700282}
283
284/*
David Howells248f2192016-09-08 11:10:12 +0100285 * Handle retransmission and deferred ACK/abort generation.
David Howells17926a72007-04-26 15:48:28 -0700286 */
287void rxrpc_process_call(struct work_struct *work)
288{
289 struct rxrpc_call *call =
290 container_of(work, struct rxrpc_call, processor);
David Howellsbd1fdf82017-11-24 10:18:42 +0000291 rxrpc_serial_t *send_ack;
David Howellsa158bdd2017-11-24 10:18:41 +0000292 unsigned long now, next, t;
David Howellsc7e86ac2018-11-01 13:39:53 +0000293 unsigned int iterations = 0;
David Howells17926a72007-04-26 15:48:28 -0700294
David Howellse34d4232016-08-30 09:49:29 +0100295 rxrpc_see_call(call);
296
David Howells17926a72007-04-26 15:48:28 -0700297 //printk("\n--------------------\n");
David Howells248f2192016-09-08 11:10:12 +0100298 _enter("{%d,%s,%lx}",
299 call->debug_id, rxrpc_call_states[call->state], call->events);
David Howells17926a72007-04-26 15:48:28 -0700300
David Howells248f2192016-09-08 11:10:12 +0100301recheck_state:
David Howellsc7e86ac2018-11-01 13:39:53 +0000302 /* Limit the number of times we do this before returning to the manager */
303 iterations++;
304 if (iterations > 5)
305 goto requeue;
306
David Howells248f2192016-09-08 11:10:12 +0100307 if (test_and_clear_bit(RXRPC_CALL_EV_ABORT, &call->events)) {
David Howells26cb02a2016-10-06 08:11:49 +0100308 rxrpc_send_abort_packet(call);
David Howells248f2192016-09-08 11:10:12 +0100309 goto recheck_state;
David Howells8d94aa32016-09-07 09:19:31 +0100310 }
311
David Howells248f2192016-09-08 11:10:12 +0100312 if (call->state == RXRPC_CALL_COMPLETE) {
313 del_timer_sync(&call->timer);
314 goto out_put;
David Howells17926a72007-04-26 15:48:28 -0700315 }
316
David Howellsa158bdd2017-11-24 10:18:41 +0000317 /* Work out if any timeouts tripped */
318 now = jiffies;
319 t = READ_ONCE(call->expect_rx_by);
320 if (time_after_eq(now, t)) {
321 trace_rxrpc_timer(call, rxrpc_timer_exp_normal, now);
322 set_bit(RXRPC_CALL_EV_EXPIRED, &call->events);
323 }
324
325 t = READ_ONCE(call->expect_req_by);
326 if (call->state == RXRPC_CALL_SERVER_RECV_REQUEST &&
327 time_after_eq(now, t)) {
328 trace_rxrpc_timer(call, rxrpc_timer_exp_idle, now);
329 set_bit(RXRPC_CALL_EV_EXPIRED, &call->events);
330 }
331
332 t = READ_ONCE(call->expect_term_by);
333 if (time_after_eq(now, t)) {
334 trace_rxrpc_timer(call, rxrpc_timer_exp_hard, now);
335 set_bit(RXRPC_CALL_EV_EXPIRED, &call->events);
336 }
337
338 t = READ_ONCE(call->ack_at);
339 if (time_after_eq(now, t)) {
340 trace_rxrpc_timer(call, rxrpc_timer_exp_ack, now);
341 cmpxchg(&call->ack_at, t, now + MAX_JIFFY_OFFSET);
342 set_bit(RXRPC_CALL_EV_ACK, &call->events);
343 }
344
David Howellsbd1fdf82017-11-24 10:18:42 +0000345 t = READ_ONCE(call->ack_lost_at);
346 if (time_after_eq(now, t)) {
347 trace_rxrpc_timer(call, rxrpc_timer_exp_lost_ack, now);
348 cmpxchg(&call->ack_lost_at, t, now + MAX_JIFFY_OFFSET);
349 set_bit(RXRPC_CALL_EV_ACK_LOST, &call->events);
350 }
351
David Howells415f44e2017-11-24 10:18:42 +0000352 t = READ_ONCE(call->keepalive_at);
353 if (time_after_eq(now, t)) {
354 trace_rxrpc_timer(call, rxrpc_timer_exp_keepalive, now);
355 cmpxchg(&call->keepalive_at, t, now + MAX_JIFFY_OFFSET);
David Howellse8c3af62019-08-09 15:20:41 +0100356 rxrpc_propose_ACK(call, RXRPC_ACK_PING, 0, true, true,
David Howells415f44e2017-11-24 10:18:42 +0000357 rxrpc_propose_ack_ping_for_keepalive);
358 set_bit(RXRPC_CALL_EV_PING, &call->events);
359 }
360
David Howellsa158bdd2017-11-24 10:18:41 +0000361 t = READ_ONCE(call->ping_at);
362 if (time_after_eq(now, t)) {
363 trace_rxrpc_timer(call, rxrpc_timer_exp_ping, now);
364 cmpxchg(&call->ping_at, t, now + MAX_JIFFY_OFFSET);
365 set_bit(RXRPC_CALL_EV_PING, &call->events);
366 }
367
368 t = READ_ONCE(call->resend_at);
369 if (time_after_eq(now, t)) {
370 trace_rxrpc_timer(call, rxrpc_timer_exp_resend, now);
371 cmpxchg(&call->resend_at, t, now + MAX_JIFFY_OFFSET);
372 set_bit(RXRPC_CALL_EV_RESEND, &call->events);
373 }
374
375 /* Process events */
376 if (test_and_clear_bit(RXRPC_CALL_EV_EXPIRED, &call->events)) {
David Howells1a025022018-06-03 02:17:39 +0100377 if (test_bit(RXRPC_CALL_RX_HEARD, &call->flags) &&
378 (int)call->conn->hi_serial - (int)call->rx_serial > 0) {
379 trace_rxrpc_call_reset(call);
380 rxrpc_abort_call("EXP", call, 0, RX_USER_ABORT, -ECONNRESET);
381 } else {
382 rxrpc_abort_call("EXP", call, 0, RX_USER_ABORT, -ETIME);
383 }
David Howells248f2192016-09-08 11:10:12 +0100384 set_bit(RXRPC_CALL_EV_ABORT, &call->events);
David Howells57494342016-09-24 18:05:27 +0100385 goto recheck_state;
David Howells17926a72007-04-26 15:48:28 -0700386 }
387
David Howellsbd1fdf82017-11-24 10:18:42 +0000388 send_ack = NULL;
389 if (test_and_clear_bit(RXRPC_CALL_EV_ACK_LOST, &call->events)) {
390 call->acks_lost_top = call->tx_top;
David Howellse8c3af62019-08-09 15:20:41 +0100391 rxrpc_propose_ACK(call, RXRPC_ACK_PING, 0, true, false,
David Howellsbd1fdf82017-11-24 10:18:42 +0000392 rxrpc_propose_ack_ping_for_lost_ack);
393 send_ack = &call->acks_lost_ping;
394 }
395
396 if (test_and_clear_bit(RXRPC_CALL_EV_ACK, &call->events) ||
397 send_ack) {
David Howells248f2192016-09-08 11:10:12 +0100398 if (call->ackr_reason) {
David Howellsbd1fdf82017-11-24 10:18:42 +0000399 rxrpc_send_ack_packet(call, false, send_ack);
David Howells248f2192016-09-08 11:10:12 +0100400 goto recheck_state;
David Howells17926a72007-04-26 15:48:28 -0700401 }
402 }
403
David Howellsa5af7e12016-10-06 08:11:49 +0100404 if (test_and_clear_bit(RXRPC_CALL_EV_PING, &call->events)) {
David Howellsbd1fdf82017-11-24 10:18:42 +0000405 rxrpc_send_ack_packet(call, true, NULL);
David Howellsa5af7e12016-10-06 08:11:49 +0100406 goto recheck_state;
407 }
408
David Howells405dea12016-09-30 09:13:50 +0100409 if (test_and_clear_bit(RXRPC_CALL_EV_RESEND, &call->events)) {
David Howellsdf0adc72016-09-26 22:12:49 +0100410 rxrpc_resend(call, now);
David Howells248f2192016-09-08 11:10:12 +0100411 goto recheck_state;
David Howells17926a72007-04-26 15:48:28 -0700412 }
413
David Howellsa158bdd2017-11-24 10:18:41 +0000414 /* Make sure the timer is restarted */
415 next = call->expect_rx_by;
416
417#define set(T) { t = READ_ONCE(T); if (time_before(t, next)) next = t; }
David Howells3d7682a2017-11-29 14:25:50 +0000418
David Howellsa158bdd2017-11-24 10:18:41 +0000419 set(call->expect_req_by);
420 set(call->expect_term_by);
421 set(call->ack_at);
David Howellsbd1fdf82017-11-24 10:18:42 +0000422 set(call->ack_lost_at);
David Howellsa158bdd2017-11-24 10:18:41 +0000423 set(call->resend_at);
David Howells415f44e2017-11-24 10:18:42 +0000424 set(call->keepalive_at);
David Howellsa158bdd2017-11-24 10:18:41 +0000425 set(call->ping_at);
426
427 now = jiffies;
428 if (time_after_eq(now, next))
429 goto recheck_state;
430
431 rxrpc_reduce_call_timer(call, next, now, rxrpc_timer_restart);
David Howells17926a72007-04-26 15:48:28 -0700432
433 /* other events may have been raised since we started checking */
David Howellsc7e86ac2018-11-01 13:39:53 +0000434 if (call->events && call->state < RXRPC_CALL_COMPLETE)
435 goto requeue;
David Howells17926a72007-04-26 15:48:28 -0700436
David Howells248f2192016-09-08 11:10:12 +0100437out_put:
438 rxrpc_put_call(call, rxrpc_call_put);
439out:
David Howells17926a72007-04-26 15:48:28 -0700440 _leave("");
David Howellsc7e86ac2018-11-01 13:39:53 +0000441 return;
442
443requeue:
444 __rxrpc_queue_call(call);
445 goto out;
David Howells17926a72007-04-26 15:48:28 -0700446}