1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /* Management of Tx window, Tx resend, ACKs and out-of-sequence reception
4 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
5 * Written by David Howells (dhowells@redhat.com)
8 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
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>
17 #include <net/af_rxrpc.h>
18 #include "ar-internal.h"
21 * Propose a PING ACK be sent.
23 void rxrpc_propose_ping(struct rxrpc_call *call, u32 serial,
24 enum rxrpc_propose_ack_trace why)
26 unsigned long now = jiffies;
27 unsigned long ping_at = now + rxrpc_idle_ack_delay;
29 if (time_before(ping_at, call->ping_at)) {
30 WRITE_ONCE(call->ping_at, ping_at);
31 rxrpc_reduce_call_timer(call, ping_at, now,
32 rxrpc_timer_set_for_ping);
33 trace_rxrpc_propose_ack(call, why, RXRPC_ACK_PING, serial);
38 * Propose a DELAY ACK be sent in the future.
40 void rxrpc_propose_delay_ACK(struct rxrpc_call *call, rxrpc_serial_t serial,
41 enum rxrpc_propose_ack_trace why)
43 unsigned long expiry = rxrpc_soft_ack_delay;
44 unsigned long now = jiffies, ack_at;
46 call->ackr_serial = serial;
48 if (rxrpc_soft_ack_delay < expiry)
49 expiry = rxrpc_soft_ack_delay;
50 if (call->peer->srtt_us != 0)
51 ack_at = usecs_to_jiffies(call->peer->srtt_us >> 3);
55 ack_at += READ_ONCE(call->tx_backoff);
57 if (time_before(ack_at, call->delay_ack_at)) {
58 WRITE_ONCE(call->delay_ack_at, ack_at);
59 rxrpc_reduce_call_timer(call, ack_at, now,
60 rxrpc_timer_set_for_ack);
63 trace_rxrpc_propose_ack(call, why, RXRPC_ACK_DELAY, serial);
67 * Queue an ACK for immediate transmission.
69 void rxrpc_send_ACK(struct rxrpc_call *call, u8 ack_reason,
70 rxrpc_serial_t serial, enum rxrpc_propose_ack_trace why)
72 struct rxrpc_local *local = call->conn->local;
73 struct rxrpc_txbuf *txb;
75 if (test_bit(RXRPC_CALL_DISCONNECTED, &call->flags))
78 rxrpc_inc_stat(call->rxnet, stat_tx_acks[ack_reason]);
80 txb = rxrpc_alloc_txbuf(call, RXRPC_PACKET_TYPE_ACK,
81 rcu_read_lock_held() ? GFP_ATOMIC | __GFP_NOWARN : GFP_NOFS);
89 txb->wire.type = RXRPC_PACKET_TYPE_ACK;
90 txb->wire.flags |= RXRPC_SLOW_START_OK;
91 txb->ack.bufferSpace = 0;
93 txb->ack.firstPacket = 0;
94 txb->ack.previousPacket = 0;
95 txb->ack.serial = htonl(serial);
96 txb->ack.reason = ack_reason;
99 if (!rxrpc_try_get_call(call, rxrpc_call_get_send_ack)) {
100 rxrpc_put_txbuf(txb, rxrpc_txbuf_put_nomem);
104 spin_lock(&local->ack_tx_lock);
105 list_add_tail(&txb->tx_link, &local->ack_tx_queue);
106 spin_unlock(&local->ack_tx_lock);
107 trace_rxrpc_send_ack(call, why, ack_reason, serial);
109 rxrpc_wake_up_io_thread(local);
113 * Handle congestion being detected by the retransmit timeout.
115 static void rxrpc_congestion_timeout(struct rxrpc_call *call)
117 set_bit(RXRPC_CALL_RETRANS_TIMEOUT, &call->flags);
121 * Perform retransmission of NAK'd and unack'd packets.
123 void rxrpc_resend(struct rxrpc_call *call, struct sk_buff *ack_skb)
125 struct rxrpc_ackpacket *ack = NULL;
126 struct rxrpc_txbuf *txb;
127 unsigned long resend_at;
128 rxrpc_seq_t transmitted = READ_ONCE(call->tx_transmitted);
129 ktime_t now, max_age, oldest, ack_ts;
130 bool unacked = false;
132 LIST_HEAD(retrans_queue);
134 _enter("{%d,%d}", call->acks_hard_ack, call->tx_top);
136 now = ktime_get_real();
137 max_age = ktime_sub_us(now, jiffies_to_usecs(call->peer->rto_j));
140 if (list_empty(&call->tx_buffer))
143 if (list_empty(&call->tx_buffer))
144 goto no_further_resend;
146 trace_rxrpc_resend(call, ack_skb);
147 txb = list_first_entry(&call->tx_buffer, struct rxrpc_txbuf, call_link);
149 /* Scan the soft ACK table without dropping the lock and resend any
150 * explicitly NAK'd packets.
153 ack = (void *)ack_skb->data + sizeof(struct rxrpc_wire_header);
155 for (i = 0; i < ack->nAcks; i++) {
158 if (ack->acks[i] & 1)
160 seq = ntohl(ack->firstPacket) + i;
161 if (after(txb->seq, transmitted))
163 if (after(txb->seq, seq))
164 continue; /* A new hard ACK probably came in */
165 list_for_each_entry_from(txb, &call->tx_buffer, call_link) {
169 goto no_further_resend;
172 if (after(ntohl(txb->wire.serial), call->acks_highest_serial))
173 continue; /* Ack point not yet reached */
175 rxrpc_see_txbuf(txb, rxrpc_txbuf_see_unacked);
177 if (list_empty(&txb->tx_link)) {
178 list_add_tail(&txb->tx_link, &retrans_queue);
179 set_bit(RXRPC_TXBUF_RESENT, &txb->flags);
182 trace_rxrpc_retransmit(call, txb->seq,
183 ktime_to_ns(ktime_sub(txb->last_sent,
186 if (list_is_last(&txb->call_link, &call->tx_buffer))
187 goto no_further_resend;
188 txb = list_next_entry(txb, call_link);
192 /* Fast-forward through the Tx queue to the point the peer says it has
193 * seen. Anything between the soft-ACK table and that point will get
194 * ACK'd or NACK'd in due course, so don't worry about it here; here we
195 * need to consider retransmitting anything beyond that point.
197 * Note that ACK for a packet can beat the update of tx_transmitted.
199 if (after_eq(READ_ONCE(call->acks_prev_seq), READ_ONCE(call->tx_transmitted)))
200 goto no_further_resend;
202 list_for_each_entry_from(txb, &call->tx_buffer, call_link) {
203 if (before_eq(txb->seq, READ_ONCE(call->acks_prev_seq)))
205 if (after(txb->seq, READ_ONCE(call->tx_transmitted)))
206 break; /* Not transmitted yet */
208 if (ack && ack->reason == RXRPC_ACK_PING_RESPONSE &&
209 before(ntohl(txb->wire.serial), ntohl(ack->serial)))
210 goto do_resend; /* Wasn't accounted for by a more recent ping. */
212 if (ktime_after(txb->last_sent, max_age)) {
213 if (ktime_before(txb->last_sent, oldest))
214 oldest = txb->last_sent;
220 if (list_empty(&txb->tx_link)) {
221 list_add_tail(&txb->tx_link, &retrans_queue);
222 set_bit(RXRPC_TXBUF_RESENT, &txb->flags);
223 rxrpc_inc_stat(call->rxnet, stat_tx_data_retrans);
229 resend_at = nsecs_to_jiffies(ktime_to_ns(ktime_sub(now, oldest)));
230 resend_at += jiffies + rxrpc_get_rto_backoff(call->peer,
231 !list_empty(&retrans_queue));
232 WRITE_ONCE(call->resend_at, resend_at);
235 rxrpc_congestion_timeout(call);
237 /* If there was nothing that needed retransmission then it's likely
238 * that an ACK got lost somewhere. Send a ping to find out instead of
239 * retransmitting data.
241 if (list_empty(&retrans_queue)) {
242 rxrpc_reduce_call_timer(call, resend_at, jiffies,
243 rxrpc_timer_set_for_resend);
244 ack_ts = ktime_sub(now, call->acks_latest_ts);
245 if (ktime_to_us(ack_ts) < (call->peer->srtt_us >> 3))
247 rxrpc_send_ACK(call, RXRPC_ACK_PING, 0,
248 rxrpc_propose_ack_ping_for_lost_ack);
252 /* Retransmit the queue */
253 while ((txb = list_first_entry_or_null(&retrans_queue,
254 struct rxrpc_txbuf, tx_link))) {
255 list_del_init(&txb->tx_link);
256 rxrpc_transmit_one(call, txb);
263 static bool rxrpc_tx_window_has_space(struct rxrpc_call *call)
265 unsigned int winsize = min_t(unsigned int, call->tx_winsize,
266 call->cong_cwnd + call->cong_extra);
267 rxrpc_seq_t window = call->acks_hard_ack, wtop = window + winsize;
268 rxrpc_seq_t tx_top = call->tx_top;
271 space = wtop - tx_top;
276 * Decant some if the sendmsg prepared queue into the transmission buffer.
278 static void rxrpc_decant_prepared_tx(struct rxrpc_call *call)
280 struct rxrpc_txbuf *txb;
282 if (rxrpc_is_client_call(call) &&
283 !test_bit(RXRPC_CALL_EXPOSED, &call->flags))
284 rxrpc_expose_client_call(call);
286 while ((txb = list_first_entry_or_null(&call->tx_sendmsg,
287 struct rxrpc_txbuf, call_link))) {
288 spin_lock(&call->tx_lock);
289 list_del(&txb->call_link);
290 spin_unlock(&call->tx_lock);
292 call->tx_top = txb->seq;
293 list_add_tail(&txb->call_link, &call->tx_buffer);
295 rxrpc_transmit_one(call, txb);
297 // TODO: Drain the transmission buffers. Do this somewhere better
298 if (after(call->acks_hard_ack, call->tx_bottom + 16))
299 rxrpc_shrink_call_tx_buffer(call);
301 if (!rxrpc_tx_window_has_space(call))
306 static void rxrpc_transmit_some_data(struct rxrpc_call *call)
308 switch (call->state) {
309 case RXRPC_CALL_SERVER_ACK_REQUEST:
310 if (list_empty(&call->tx_sendmsg))
314 case RXRPC_CALL_SERVER_SEND_REPLY:
315 case RXRPC_CALL_SERVER_AWAIT_ACK:
316 case RXRPC_CALL_CLIENT_SEND_REQUEST:
317 case RXRPC_CALL_CLIENT_AWAIT_REPLY:
318 if (!rxrpc_tx_window_has_space(call))
320 if (list_empty(&call->tx_sendmsg))
322 rxrpc_decant_prepared_tx(call);
330 * Ping the other end to fill our RTT cache and to retrieve the rwind
331 * and MTU parameters.
333 static void rxrpc_send_initial_ping(struct rxrpc_call *call)
335 if (call->peer->rtt_count < 3 ||
336 ktime_before(ktime_add_ms(call->peer->rtt_last_req, 1000),
338 rxrpc_send_ACK(call, RXRPC_ACK_PING, 0,
339 rxrpc_propose_ack_ping_for_params);
343 * Handle retransmission and deferred ACK/abort generation.
345 void rxrpc_input_call_event(struct rxrpc_call *call, struct sk_buff *skb)
347 unsigned long now, next, t;
348 rxrpc_serial_t ackr_serial;
349 bool resend = false, expired = false;
351 rxrpc_see_call(call, rxrpc_call_see_input);
353 //printk("\n--------------------\n");
354 _enter("{%d,%s,%lx}",
355 call->debug_id, rxrpc_call_states[call->state], call->events);
357 if (call->state == RXRPC_CALL_COMPLETE)
360 if (skb && skb->mark == RXRPC_SKB_MARK_ERROR)
363 /* If we see our async-event poke, check for timeout trippage. */
365 t = READ_ONCE(call->expect_rx_by);
366 if (time_after_eq(now, t)) {
367 trace_rxrpc_timer(call, rxrpc_timer_exp_normal, now);
371 t = READ_ONCE(call->expect_req_by);
372 if (call->state == RXRPC_CALL_SERVER_RECV_REQUEST &&
373 time_after_eq(now, t)) {
374 trace_rxrpc_timer(call, rxrpc_timer_exp_idle, now);
378 t = READ_ONCE(call->expect_term_by);
379 if (time_after_eq(now, t)) {
380 trace_rxrpc_timer(call, rxrpc_timer_exp_hard, now);
384 t = READ_ONCE(call->delay_ack_at);
385 if (time_after_eq(now, t)) {
386 trace_rxrpc_timer(call, rxrpc_timer_exp_ack, now);
387 cmpxchg(&call->delay_ack_at, t, now + MAX_JIFFY_OFFSET);
388 ackr_serial = xchg(&call->ackr_serial, 0);
389 rxrpc_send_ACK(call, RXRPC_ACK_DELAY, ackr_serial,
390 rxrpc_propose_ack_ping_for_lost_ack);
393 t = READ_ONCE(call->ack_lost_at);
394 if (time_after_eq(now, t)) {
395 trace_rxrpc_timer(call, rxrpc_timer_exp_lost_ack, now);
396 cmpxchg(&call->ack_lost_at, t, now + MAX_JIFFY_OFFSET);
397 set_bit(RXRPC_CALL_EV_ACK_LOST, &call->events);
400 t = READ_ONCE(call->keepalive_at);
401 if (time_after_eq(now, t)) {
402 trace_rxrpc_timer(call, rxrpc_timer_exp_keepalive, now);
403 cmpxchg(&call->keepalive_at, t, now + MAX_JIFFY_OFFSET);
404 rxrpc_send_ACK(call, RXRPC_ACK_PING, 0,
405 rxrpc_propose_ack_ping_for_keepalive);
408 t = READ_ONCE(call->ping_at);
409 if (time_after_eq(now, t)) {
410 trace_rxrpc_timer(call, rxrpc_timer_exp_ping, now);
411 cmpxchg(&call->ping_at, t, now + MAX_JIFFY_OFFSET);
412 rxrpc_send_ACK(call, RXRPC_ACK_PING, 0,
413 rxrpc_propose_ack_ping_for_keepalive);
416 t = READ_ONCE(call->resend_at);
417 if (time_after_eq(now, t)) {
418 trace_rxrpc_timer(call, rxrpc_timer_exp_resend, now);
419 cmpxchg(&call->resend_at, t, now + MAX_JIFFY_OFFSET);
424 rxrpc_input_call_packet(call, skb);
426 rxrpc_transmit_some_data(call);
428 if (test_and_clear_bit(RXRPC_CALL_EV_INITIAL_PING, &call->events))
429 rxrpc_send_initial_ping(call);
433 if (test_bit(RXRPC_CALL_RX_HEARD, &call->flags) &&
434 (int)call->conn->hi_serial - (int)call->rx_serial > 0) {
435 trace_rxrpc_call_reset(call);
436 rxrpc_abort_call("EXP", call, 0, RX_CALL_DEAD, -ECONNRESET);
438 rxrpc_abort_call("EXP", call, 0, RX_CALL_TIMEOUT, -ETIME);
440 rxrpc_send_abort_packet(call);
444 if (test_and_clear_bit(RXRPC_CALL_EV_ACK_LOST, &call->events))
445 rxrpc_send_ACK(call, RXRPC_ACK_PING, 0,
446 rxrpc_propose_ack_ping_for_lost_ack);
448 if (resend && call->state != RXRPC_CALL_CLIENT_RECV_REPLY)
449 rxrpc_resend(call, NULL);
451 if (test_and_clear_bit(RXRPC_CALL_RX_IS_IDLE, &call->flags))
452 rxrpc_send_ACK(call, RXRPC_ACK_IDLE, 0,
453 rxrpc_propose_ack_rx_idle);
455 if (atomic_read(&call->ackr_nr_unacked) > 2)
456 rxrpc_send_ACK(call, RXRPC_ACK_IDLE, 0,
457 rxrpc_propose_ack_input_data);
459 /* Make sure the timer is restarted */
460 if (call->state != RXRPC_CALL_COMPLETE) {
461 next = call->expect_rx_by;
463 #define set(T) { t = READ_ONCE(T); if (time_before(t, next)) next = t; }
465 set(call->expect_req_by);
466 set(call->expect_term_by);
467 set(call->delay_ack_at);
468 set(call->ack_lost_at);
469 set(call->resend_at);
470 set(call->keepalive_at);
474 if (time_after_eq(now, next))
475 rxrpc_poke_call(call, rxrpc_call_poke_timer_now);
477 rxrpc_reduce_call_timer(call, next, now, rxrpc_timer_restart);
481 if (call->state == RXRPC_CALL_COMPLETE)
482 del_timer_sync(&call->timer);
483 if (call->acks_hard_ack != call->tx_bottom)
484 rxrpc_shrink_call_tx_buffer(call);