Thomas Gleixner | 2874c5f | 2019-05-27 08:55:01 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 2 | /* 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 Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 6 | */ |
| 7 | |
Joe Perches | 9b6d539 | 2016-06-02 12:08:52 -0700 | [diff] [blame] | 8 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 9 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 10 | #include <linux/module.h> |
| 11 | #include <linux/circ_buf.h> |
| 12 | #include <linux/net.h> |
| 13 | #include <linux/skbuff.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 14 | #include <linux/slab.h> |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 15 | #include <linux/udp.h> |
| 16 | #include <net/sock.h> |
| 17 | #include <net/af_rxrpc.h> |
| 18 | #include "ar-internal.h" |
| 19 | |
David Howells | 5873c08 | 2014-02-07 18:58:44 +0000 | [diff] [blame] | 20 | /* |
David Howells | a5af7e1 | 2016-10-06 08:11:49 +0100 | [diff] [blame] | 21 | * Propose a PING ACK be sent. |
| 22 | */ |
David Howells | 72f0c6f | 2020-01-30 21:48:13 +0000 | [diff] [blame] | 23 | void rxrpc_propose_ping(struct rxrpc_call *call, u32 serial, |
| 24 | enum rxrpc_propose_ack_trace why) |
David Howells | a5af7e1 | 2016-10-06 08:11:49 +0100 | [diff] [blame] | 25 | { |
David Howells | 153f90a | 2024-01-30 21:37:16 +0000 | [diff] [blame] | 26 | ktime_t delay = ms_to_ktime(READ_ONCE(rxrpc_idle_ack_delay)); |
| 27 | ktime_t now = ktime_get_real(); |
| 28 | ktime_t ping_at = ktime_add(now, delay); |
David Howells | a5af7e1 | 2016-10-06 08:11:49 +0100 | [diff] [blame] | 29 | |
David Howells | 153f90a | 2024-01-30 21:37:16 +0000 | [diff] [blame] | 30 | trace_rxrpc_propose_ack(call, why, RXRPC_ACK_PING, serial); |
| 31 | if (ktime_before(ping_at, call->ping_at)) { |
David Howells | d73f3a7 | 2024-01-30 16:39:15 +0000 | [diff] [blame] | 32 | call->ping_at = ping_at; |
David Howells | 153f90a | 2024-01-30 21:37:16 +0000 | [diff] [blame] | 33 | trace_rxrpc_timer_set(call, delay, rxrpc_timer_trace_ping); |
David Howells | a5af7e1 | 2016-10-06 08:11:49 +0100 | [diff] [blame] | 34 | } |
| 35 | } |
| 36 | |
| 37 | /* |
David Howells | 530403d | 2020-01-30 21:48:14 +0000 | [diff] [blame] | 38 | * Propose a DELAY ACK be sent in the future. |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 39 | */ |
David Howells | 4e76bd4 | 2022-05-06 16:13:13 +0100 | [diff] [blame] | 40 | void rxrpc_propose_delay_ACK(struct rxrpc_call *call, rxrpc_serial_t serial, |
| 41 | enum rxrpc_propose_ack_trace why) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 42 | { |
David Howells | 153f90a | 2024-01-30 21:37:16 +0000 | [diff] [blame] | 43 | ktime_t now = ktime_get_real(), delay; |
David Howells | 9c7ad43 | 2016-09-23 13:50:40 +0100 | [diff] [blame] | 44 | |
David Howells | 530403d | 2020-01-30 21:48:14 +0000 | [diff] [blame] | 45 | trace_rxrpc_propose_ack(call, why, RXRPC_ACK_DELAY, serial); |
David Howells | 153f90a | 2024-01-30 21:37:16 +0000 | [diff] [blame] | 46 | |
| 47 | if (call->peer->srtt_us) |
| 48 | delay = (call->peer->srtt_us >> 3) * NSEC_PER_USEC; |
| 49 | else |
| 50 | delay = ms_to_ktime(READ_ONCE(rxrpc_soft_ack_delay)); |
| 51 | ktime_add_ms(delay, call->tx_backoff); |
| 52 | |
| 53 | call->delay_ack_at = ktime_add(now, delay); |
| 54 | trace_rxrpc_timer_set(call, delay, rxrpc_timer_trace_delayed_ack); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 55 | } |
| 56 | |
| 57 | /* |
David Howells | 5749434 | 2016-09-24 18:05:27 +0100 | [diff] [blame] | 58 | * Handle congestion being detected by the retransmit timeout. |
| 59 | */ |
| 60 | static void rxrpc_congestion_timeout(struct rxrpc_call *call) |
| 61 | { |
| 62 | set_bit(RXRPC_CALL_RETRANS_TIMEOUT, &call->flags); |
| 63 | } |
| 64 | |
| 65 | /* |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 66 | * Perform retransmission of NAK'd and unack'd packets. |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 67 | */ |
David Howells | 5e6ef4f | 2020-01-23 13:13:41 +0000 | [diff] [blame] | 68 | void rxrpc_resend(struct rxrpc_call *call, struct sk_buff *ack_skb) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 69 | { |
David Howells | d57a3a1 | 2022-05-07 10:06:13 +0100 | [diff] [blame] | 70 | struct rxrpc_ackpacket *ack = NULL; |
David Howells | 41b7fa1 | 2024-02-02 15:19:16 +0000 | [diff] [blame] | 71 | struct rxrpc_skb_priv *sp; |
David Howells | a4ea4c4 | 2022-03-31 23:55:08 +0100 | [diff] [blame] | 72 | struct rxrpc_txbuf *txb; |
David Howells | 693f9c1 | 2024-01-29 22:29:58 +0000 | [diff] [blame] | 73 | rxrpc_seq_t transmitted = call->tx_transmitted; |
David Howells | 37473e4 | 2024-01-31 14:58:40 +0000 | [diff] [blame] | 74 | ktime_t next_resend = KTIME_MAX, rto = ns_to_ktime(call->peer->rto_us * NSEC_PER_USEC); |
| 75 | ktime_t resend_at = KTIME_MAX, now, delay; |
| 76 | bool unacked = false, did_send = false; |
David Howells | d57a3a1 | 2022-05-07 10:06:13 +0100 | [diff] [blame] | 77 | unsigned int i; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 78 | |
David Howells | a4ea4c4 | 2022-03-31 23:55:08 +0100 | [diff] [blame] | 79 | _enter("{%d,%d}", call->acks_hard_ack, call->tx_top); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 80 | |
David Howells | a158bdd | 2017-11-24 10:18:41 +0000 | [diff] [blame] | 81 | now = ktime_get_real(); |
David Howells | d57a3a1 | 2022-05-07 10:06:13 +0100 | [diff] [blame] | 82 | |
David Howells | d57a3a1 | 2022-05-07 10:06:13 +0100 | [diff] [blame] | 83 | if (list_empty(&call->tx_buffer)) |
| 84 | goto no_resend; |
David Howells | 50235c4 | 2016-09-22 00:29:31 +0100 | [diff] [blame] | 85 | |
David Howells | 5e6ef4f | 2020-01-23 13:13:41 +0000 | [diff] [blame] | 86 | trace_rxrpc_resend(call, ack_skb); |
David Howells | d57a3a1 | 2022-05-07 10:06:13 +0100 | [diff] [blame] | 87 | txb = list_first_entry(&call->tx_buffer, struct rxrpc_txbuf, call_link); |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 88 | |
David Howells | d57a3a1 | 2022-05-07 10:06:13 +0100 | [diff] [blame] | 89 | /* Scan the soft ACK table without dropping the lock and resend any |
| 90 | * explicitly NAK'd packets. |
| 91 | */ |
David Howells | 5e6ef4f | 2020-01-23 13:13:41 +0000 | [diff] [blame] | 92 | if (ack_skb) { |
David Howells | 41b7fa1 | 2024-02-02 15:19:16 +0000 | [diff] [blame] | 93 | sp = rxrpc_skb(ack_skb); |
David Howells | 5e6ef4f | 2020-01-23 13:13:41 +0000 | [diff] [blame] | 94 | ack = (void *)ack_skb->data + sizeof(struct rxrpc_wire_header); |
| 95 | |
David Howells | 4b68137 | 2024-02-01 10:29:36 +0000 | [diff] [blame^] | 96 | for (i = 0; i < sp->ack.nr_acks; i++) { |
David Howells | d57a3a1 | 2022-05-07 10:06:13 +0100 | [diff] [blame] | 97 | rxrpc_seq_t seq; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 98 | |
David Howells | d57a3a1 | 2022-05-07 10:06:13 +0100 | [diff] [blame] | 99 | if (ack->acks[i] & 1) |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 100 | continue; |
David Howells | 4b68137 | 2024-02-01 10:29:36 +0000 | [diff] [blame^] | 101 | seq = sp->ack.first_ack + i; |
David Howells | d57a3a1 | 2022-05-07 10:06:13 +0100 | [diff] [blame] | 102 | if (after(txb->seq, transmitted)) |
| 103 | break; |
| 104 | if (after(txb->seq, seq)) |
| 105 | continue; /* A new hard ACK probably came in */ |
| 106 | list_for_each_entry_from(txb, &call->tx_buffer, call_link) { |
| 107 | if (txb->seq == seq) |
| 108 | goto found_txb; |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 109 | } |
David Howells | d57a3a1 | 2022-05-07 10:06:13 +0100 | [diff] [blame] | 110 | goto no_further_resend; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 111 | |
David Howells | d57a3a1 | 2022-05-07 10:06:13 +0100 | [diff] [blame] | 112 | found_txb: |
David Howells | 37473e4 | 2024-01-31 14:58:40 +0000 | [diff] [blame] | 113 | resend_at = ktime_add(txb->last_sent, rto); |
| 114 | if (after(txb->serial, call->acks_highest_serial)) { |
| 115 | if (ktime_after(resend_at, now) && |
| 116 | ktime_before(resend_at, next_resend)) |
| 117 | next_resend = resend_at; |
David Howells | d57a3a1 | 2022-05-07 10:06:13 +0100 | [diff] [blame] | 118 | continue; /* Ack point not yet reached */ |
David Howells | 37473e4 | 2024-01-31 14:58:40 +0000 | [diff] [blame] | 119 | } |
David Howells | d57a3a1 | 2022-05-07 10:06:13 +0100 | [diff] [blame] | 120 | |
| 121 | rxrpc_see_txbuf(txb, rxrpc_txbuf_see_unacked); |
| 122 | |
David Howells | ba132d8 | 2024-01-29 13:51:30 +0000 | [diff] [blame] | 123 | trace_rxrpc_retransmit(call, txb->seq, txb->serial, |
David Howells | 37473e4 | 2024-01-31 14:58:40 +0000 | [diff] [blame] | 124 | ktime_sub(resend_at, now)); |
| 125 | |
| 126 | txb->flags |= RXRPC_TXBUF_RESENT; |
| 127 | rxrpc_transmit_one(call, txb); |
| 128 | did_send = true; |
| 129 | now = ktime_get_real(); |
David Howells | d57a3a1 | 2022-05-07 10:06:13 +0100 | [diff] [blame] | 130 | |
| 131 | if (list_is_last(&txb->call_link, &call->tx_buffer)) |
| 132 | goto no_further_resend; |
| 133 | txb = list_next_entry(txb, call_link); |
| 134 | } |
David Howells | dfa7d92 | 2016-09-17 10:49:12 +0100 | [diff] [blame] | 135 | } |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 136 | |
David Howells | d57a3a1 | 2022-05-07 10:06:13 +0100 | [diff] [blame] | 137 | /* Fast-forward through the Tx queue to the point the peer says it has |
| 138 | * seen. Anything between the soft-ACK table and that point will get |
| 139 | * ACK'd or NACK'd in due course, so don't worry about it here; here we |
| 140 | * need to consider retransmitting anything beyond that point. |
David Howells | d57a3a1 | 2022-05-07 10:06:13 +0100 | [diff] [blame] | 141 | */ |
David Howells | 693f9c1 | 2024-01-29 22:29:58 +0000 | [diff] [blame] | 142 | if (after_eq(call->acks_prev_seq, call->tx_transmitted)) |
David Howells | d57a3a1 | 2022-05-07 10:06:13 +0100 | [diff] [blame] | 143 | goto no_further_resend; |
| 144 | |
| 145 | list_for_each_entry_from(txb, &call->tx_buffer, call_link) { |
David Howells | 37473e4 | 2024-01-31 14:58:40 +0000 | [diff] [blame] | 146 | resend_at = ktime_add(txb->last_sent, rto); |
| 147 | |
David Howells | 693f9c1 | 2024-01-29 22:29:58 +0000 | [diff] [blame] | 148 | if (before_eq(txb->seq, call->acks_prev_seq)) |
David Howells | d57a3a1 | 2022-05-07 10:06:13 +0100 | [diff] [blame] | 149 | continue; |
David Howells | 693f9c1 | 2024-01-29 22:29:58 +0000 | [diff] [blame] | 150 | if (after(txb->seq, call->tx_transmitted)) |
David Howells | d57a3a1 | 2022-05-07 10:06:13 +0100 | [diff] [blame] | 151 | break; /* Not transmitted yet */ |
| 152 | |
| 153 | if (ack && ack->reason == RXRPC_ACK_PING_RESPONSE && |
David Howells | ba132d8 | 2024-01-29 13:51:30 +0000 | [diff] [blame] | 154 | before(txb->serial, ntohl(ack->serial))) |
David Howells | d57a3a1 | 2022-05-07 10:06:13 +0100 | [diff] [blame] | 155 | goto do_resend; /* Wasn't accounted for by a more recent ping. */ |
| 156 | |
David Howells | 37473e4 | 2024-01-31 14:58:40 +0000 | [diff] [blame] | 157 | if (ktime_after(resend_at, now)) { |
| 158 | if (ktime_before(resend_at, next_resend)) |
| 159 | next_resend = resend_at; |
David Howells | d57a3a1 | 2022-05-07 10:06:13 +0100 | [diff] [blame] | 160 | continue; |
| 161 | } |
| 162 | |
| 163 | do_resend: |
| 164 | unacked = true; |
David Howells | 37473e4 | 2024-01-31 14:58:40 +0000 | [diff] [blame] | 165 | |
| 166 | txb->flags |= RXRPC_TXBUF_RESENT; |
| 167 | rxrpc_transmit_one(call, txb); |
| 168 | did_send = true; |
| 169 | rxrpc_inc_stat(call->rxnet, stat_tx_data_retrans); |
| 170 | now = ktime_get_real(); |
David Howells | d57a3a1 | 2022-05-07 10:06:13 +0100 | [diff] [blame] | 171 | } |
| 172 | |
| 173 | no_further_resend: |
David Howells | d57a3a1 | 2022-05-07 10:06:13 +0100 | [diff] [blame] | 174 | no_resend: |
David Howells | 37473e4 | 2024-01-31 14:58:40 +0000 | [diff] [blame] | 175 | if (resend_at < KTIME_MAX) { |
| 176 | delay = rxrpc_get_rto_backoff(call->peer, did_send); |
| 177 | resend_at = ktime_add(resend_at, delay); |
| 178 | trace_rxrpc_timer_set(call, resend_at - now, rxrpc_timer_trace_resend_reset); |
| 179 | } |
| 180 | call->resend_at = resend_at; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 181 | |
David Howells | 5749434 | 2016-09-24 18:05:27 +0100 | [diff] [blame] | 182 | if (unacked) |
| 183 | rxrpc_congestion_timeout(call); |
| 184 | |
| 185 | /* If there was nothing that needed retransmission then it's likely |
| 186 | * that an ACK got lost somewhere. Send a ping to find out instead of |
| 187 | * retransmitting data. |
| 188 | */ |
David Howells | 37473e4 | 2024-01-31 14:58:40 +0000 | [diff] [blame] | 189 | if (!did_send) { |
| 190 | ktime_t next_ping = ktime_add_us(call->acks_latest_ts, |
| 191 | call->peer->srtt_us >> 3); |
| 192 | |
| 193 | if (ktime_sub(next_ping, now) <= 0) |
| 194 | rxrpc_send_ACK(call, RXRPC_ACK_PING, 0, |
| 195 | rxrpc_propose_ack_ping_for_0_retrans); |
David Howells | 5749434 | 2016-09-24 18:05:27 +0100 | [diff] [blame] | 196 | } |
| 197 | |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 198 | _leave(""); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 199 | } |
| 200 | |
David Howells | 2d68942 | 2022-11-11 08:35:36 +0000 | [diff] [blame] | 201 | /* |
| 202 | * Start transmitting the reply to a service. This cancels the need to ACK the |
| 203 | * request if we haven't yet done so. |
| 204 | */ |
| 205 | static void rxrpc_begin_service_reply(struct rxrpc_call *call) |
| 206 | { |
David Howells | 96b4059 | 2022-10-27 11:25:55 +0100 | [diff] [blame] | 207 | rxrpc_set_call_state(call, RXRPC_CALL_SERVER_SEND_REPLY); |
David Howells | 96b4059 | 2022-10-27 11:25:55 +0100 | [diff] [blame] | 208 | if (call->ackr_reason == RXRPC_ACK_DELAY) |
| 209 | call->ackr_reason = 0; |
David Howells | 153f90a | 2024-01-30 21:37:16 +0000 | [diff] [blame] | 210 | call->delay_ack_at = KTIME_MAX; |
| 211 | trace_rxrpc_timer_can(call, rxrpc_timer_trace_delayed_ack); |
David Howells | 2d68942 | 2022-11-11 08:35:36 +0000 | [diff] [blame] | 212 | } |
| 213 | |
| 214 | /* |
| 215 | * Close the transmission phase. After this point there is no more data to be |
| 216 | * transmitted in the call. |
| 217 | */ |
| 218 | static void rxrpc_close_tx_phase(struct rxrpc_call *call) |
| 219 | { |
| 220 | _debug("________awaiting reply/ACK__________"); |
| 221 | |
David Howells | 96b4059 | 2022-10-27 11:25:55 +0100 | [diff] [blame] | 222 | switch (__rxrpc_call_state(call)) { |
David Howells | 2d68942 | 2022-11-11 08:35:36 +0000 | [diff] [blame] | 223 | case RXRPC_CALL_CLIENT_SEND_REQUEST: |
David Howells | 96b4059 | 2022-10-27 11:25:55 +0100 | [diff] [blame] | 224 | rxrpc_set_call_state(call, RXRPC_CALL_CLIENT_AWAIT_REPLY); |
David Howells | 2d68942 | 2022-11-11 08:35:36 +0000 | [diff] [blame] | 225 | break; |
| 226 | case RXRPC_CALL_SERVER_SEND_REPLY: |
David Howells | 96b4059 | 2022-10-27 11:25:55 +0100 | [diff] [blame] | 227 | rxrpc_set_call_state(call, RXRPC_CALL_SERVER_AWAIT_ACK); |
David Howells | 2d68942 | 2022-11-11 08:35:36 +0000 | [diff] [blame] | 228 | break; |
| 229 | default: |
| 230 | break; |
| 231 | } |
David Howells | 2d68942 | 2022-11-11 08:35:36 +0000 | [diff] [blame] | 232 | } |
| 233 | |
David Howells | cf37b59 | 2022-03-31 23:55:08 +0100 | [diff] [blame] | 234 | static bool rxrpc_tx_window_has_space(struct rxrpc_call *call) |
| 235 | { |
| 236 | unsigned int winsize = min_t(unsigned int, call->tx_winsize, |
| 237 | call->cong_cwnd + call->cong_extra); |
| 238 | rxrpc_seq_t window = call->acks_hard_ack, wtop = window + winsize; |
| 239 | rxrpc_seq_t tx_top = call->tx_top; |
| 240 | int space; |
| 241 | |
| 242 | space = wtop - tx_top; |
| 243 | return space > 0; |
| 244 | } |
| 245 | |
| 246 | /* |
| 247 | * Decant some if the sendmsg prepared queue into the transmission buffer. |
| 248 | */ |
| 249 | static void rxrpc_decant_prepared_tx(struct rxrpc_call *call) |
| 250 | { |
| 251 | struct rxrpc_txbuf *txb; |
| 252 | |
David Howells | a343b17 | 2022-10-12 22:17:56 +0100 | [diff] [blame] | 253 | if (!test_bit(RXRPC_CALL_EXPOSED, &call->flags)) { |
| 254 | if (list_empty(&call->tx_sendmsg)) |
| 255 | return; |
David Howells | cf37b59 | 2022-03-31 23:55:08 +0100 | [diff] [blame] | 256 | rxrpc_expose_client_call(call); |
David Howells | a343b17 | 2022-10-12 22:17:56 +0100 | [diff] [blame] | 257 | } |
David Howells | cf37b59 | 2022-03-31 23:55:08 +0100 | [diff] [blame] | 258 | |
| 259 | while ((txb = list_first_entry_or_null(&call->tx_sendmsg, |
| 260 | struct rxrpc_txbuf, call_link))) { |
| 261 | spin_lock(&call->tx_lock); |
| 262 | list_del(&txb->call_link); |
| 263 | spin_unlock(&call->tx_lock); |
| 264 | |
| 265 | call->tx_top = txb->seq; |
| 266 | list_add_tail(&txb->call_link, &call->tx_buffer); |
| 267 | |
David Howells | 12bdff7 | 2024-01-29 15:01:10 +0000 | [diff] [blame] | 268 | if (txb->flags & RXRPC_LAST_PACKET) |
David Howells | 2d68942 | 2022-11-11 08:35:36 +0000 | [diff] [blame] | 269 | rxrpc_close_tx_phase(call); |
| 270 | |
David Howells | cf37b59 | 2022-03-31 23:55:08 +0100 | [diff] [blame] | 271 | rxrpc_transmit_one(call, txb); |
| 272 | |
David Howells | cf37b59 | 2022-03-31 23:55:08 +0100 | [diff] [blame] | 273 | if (!rxrpc_tx_window_has_space(call)) |
| 274 | break; |
| 275 | } |
| 276 | } |
| 277 | |
| 278 | static void rxrpc_transmit_some_data(struct rxrpc_call *call) |
| 279 | { |
David Howells | 96b4059 | 2022-10-27 11:25:55 +0100 | [diff] [blame] | 280 | switch (__rxrpc_call_state(call)) { |
David Howells | cf37b59 | 2022-03-31 23:55:08 +0100 | [diff] [blame] | 281 | case RXRPC_CALL_SERVER_ACK_REQUEST: |
| 282 | if (list_empty(&call->tx_sendmsg)) |
| 283 | return; |
David Howells | 2d68942 | 2022-11-11 08:35:36 +0000 | [diff] [blame] | 284 | rxrpc_begin_service_reply(call); |
David Howells | cf37b59 | 2022-03-31 23:55:08 +0100 | [diff] [blame] | 285 | fallthrough; |
| 286 | |
| 287 | case RXRPC_CALL_SERVER_SEND_REPLY: |
David Howells | cf37b59 | 2022-03-31 23:55:08 +0100 | [diff] [blame] | 288 | case RXRPC_CALL_CLIENT_SEND_REQUEST: |
David Howells | cf37b59 | 2022-03-31 23:55:08 +0100 | [diff] [blame] | 289 | if (!rxrpc_tx_window_has_space(call)) |
| 290 | return; |
David Howells | 32cf8ed | 2022-11-11 13:47:35 +0000 | [diff] [blame] | 291 | if (list_empty(&call->tx_sendmsg)) { |
| 292 | rxrpc_inc_stat(call->rxnet, stat_tx_data_underflow); |
David Howells | cf37b59 | 2022-03-31 23:55:08 +0100 | [diff] [blame] | 293 | return; |
David Howells | 32cf8ed | 2022-11-11 13:47:35 +0000 | [diff] [blame] | 294 | } |
David Howells | cf37b59 | 2022-03-31 23:55:08 +0100 | [diff] [blame] | 295 | rxrpc_decant_prepared_tx(call); |
| 296 | break; |
| 297 | default: |
| 298 | return; |
| 299 | } |
| 300 | } |
| 301 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 302 | /* |
David Howells | 5e6ef4f | 2020-01-23 13:13:41 +0000 | [diff] [blame] | 303 | * Ping the other end to fill our RTT cache and to retrieve the rwind |
| 304 | * and MTU parameters. |
| 305 | */ |
| 306 | static void rxrpc_send_initial_ping(struct rxrpc_call *call) |
| 307 | { |
| 308 | if (call->peer->rtt_count < 3 || |
| 309 | ktime_before(ktime_add_ms(call->peer->rtt_last_req, 1000), |
| 310 | ktime_get_real())) |
| 311 | rxrpc_send_ACK(call, RXRPC_ACK_PING, 0, |
| 312 | rxrpc_propose_ack_ping_for_params); |
| 313 | } |
| 314 | |
| 315 | /* |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 316 | * Handle retransmission and deferred ACK/abort generation. |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 317 | */ |
David Howells | 57af281 | 2022-10-06 21:45:42 +0100 | [diff] [blame] | 318 | bool rxrpc_input_call_event(struct rxrpc_call *call, struct sk_buff *skb) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 319 | { |
David Howells | 153f90a | 2024-01-30 21:37:16 +0000 | [diff] [blame] | 320 | ktime_t now, t; |
| 321 | bool resend = false; |
David Howells | a343b17 | 2022-10-12 22:17:56 +0100 | [diff] [blame] | 322 | s32 abort_code; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 323 | |
David Howells | cb0fc0c | 2022-10-21 14:39:26 +0100 | [diff] [blame] | 324 | rxrpc_see_call(call, rxrpc_call_see_input); |
David Howells | e34d423 | 2016-08-30 09:49:29 +0100 | [diff] [blame] | 325 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 326 | //printk("\n--------------------\n"); |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 327 | _enter("{%d,%s,%lx}", |
David Howells | 96b4059 | 2022-10-27 11:25:55 +0100 | [diff] [blame] | 328 | call->debug_id, rxrpc_call_states[__rxrpc_call_state(call)], |
| 329 | call->events); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 330 | |
David Howells | 96b4059 | 2022-10-27 11:25:55 +0100 | [diff] [blame] | 331 | if (__rxrpc_call_is_complete(call)) |
David Howells | 3feda9d | 2022-11-25 09:00:55 +0000 | [diff] [blame] | 332 | goto out; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 333 | |
David Howells | a343b17 | 2022-10-12 22:17:56 +0100 | [diff] [blame] | 334 | /* Handle abort request locklessly, vs rxrpc_propose_abort(). */ |
| 335 | abort_code = smp_load_acquire(&call->send_abort); |
| 336 | if (abort_code) { |
David Howells | 57af281 | 2022-10-06 21:45:42 +0100 | [diff] [blame] | 337 | rxrpc_abort_call(call, 0, call->send_abort, call->send_abort_err, |
| 338 | call->send_abort_why); |
David Howells | a343b17 | 2022-10-12 22:17:56 +0100 | [diff] [blame] | 339 | goto out; |
| 340 | } |
| 341 | |
David Howells | 5e6ef4f | 2020-01-23 13:13:41 +0000 | [diff] [blame] | 342 | if (skb && skb->mark == RXRPC_SKB_MARK_ERROR) |
| 343 | goto out; |
| 344 | |
David Howells | 3e0b83e | 2024-02-29 16:46:21 +0000 | [diff] [blame] | 345 | if (skb) |
| 346 | rxrpc_input_call_packet(call, skb); |
| 347 | |
David Howells | 5e6ef4f | 2020-01-23 13:13:41 +0000 | [diff] [blame] | 348 | /* If we see our async-event poke, check for timeout trippage. */ |
David Howells | 153f90a | 2024-01-30 21:37:16 +0000 | [diff] [blame] | 349 | now = ktime_get_real(); |
| 350 | t = ktime_sub(call->expect_rx_by, now); |
| 351 | if (t <= 0) { |
| 352 | trace_rxrpc_timer_exp(call, t, rxrpc_timer_trace_expect_rx); |
| 353 | goto expired; |
David Howells | a158bdd | 2017-11-24 10:18:41 +0000 | [diff] [blame] | 354 | } |
| 355 | |
David Howells | 153f90a | 2024-01-30 21:37:16 +0000 | [diff] [blame] | 356 | t = ktime_sub(call->expect_req_by, now); |
| 357 | if (t <= 0) { |
| 358 | call->expect_req_by = KTIME_MAX; |
| 359 | if (__rxrpc_call_state(call) == RXRPC_CALL_SERVER_RECV_REQUEST) { |
| 360 | trace_rxrpc_timer_exp(call, t, rxrpc_timer_trace_idle); |
| 361 | goto expired; |
| 362 | } |
David Howells | a158bdd | 2017-11-24 10:18:41 +0000 | [diff] [blame] | 363 | } |
| 364 | |
David Howells | 153f90a | 2024-01-30 21:37:16 +0000 | [diff] [blame] | 365 | t = ktime_sub(READ_ONCE(call->expect_term_by), now); |
| 366 | if (t <= 0) { |
| 367 | trace_rxrpc_timer_exp(call, t, rxrpc_timer_trace_hard); |
| 368 | goto expired; |
David Howells | a158bdd | 2017-11-24 10:18:41 +0000 | [diff] [blame] | 369 | } |
| 370 | |
David Howells | 153f90a | 2024-01-30 21:37:16 +0000 | [diff] [blame] | 371 | t = ktime_sub(call->delay_ack_at, now); |
| 372 | if (t <= 0) { |
| 373 | trace_rxrpc_timer_exp(call, t, rxrpc_timer_trace_delayed_ack); |
| 374 | call->delay_ack_at = KTIME_MAX; |
David Howells | e7870cf | 2024-02-02 15:19:14 +0000 | [diff] [blame] | 375 | rxrpc_send_ACK(call, RXRPC_ACK_DELAY, 0, |
David Howells | 12a66e7 | 2024-01-30 20:30:03 +0000 | [diff] [blame] | 376 | rxrpc_propose_ack_delayed_ack); |
David Howells | a158bdd | 2017-11-24 10:18:41 +0000 | [diff] [blame] | 377 | } |
| 378 | |
David Howells | 153f90a | 2024-01-30 21:37:16 +0000 | [diff] [blame] | 379 | t = ktime_sub(call->ack_lost_at, now); |
| 380 | if (t <= 0) { |
| 381 | trace_rxrpc_timer_exp(call, t, rxrpc_timer_trace_lost_ack); |
| 382 | call->ack_lost_at = KTIME_MAX; |
David Howells | bd1fdf8 | 2017-11-24 10:18:42 +0000 | [diff] [blame] | 383 | set_bit(RXRPC_CALL_EV_ACK_LOST, &call->events); |
| 384 | } |
| 385 | |
David Howells | 153f90a | 2024-01-30 21:37:16 +0000 | [diff] [blame] | 386 | t = ktime_sub(call->ping_at, now); |
| 387 | if (t <= 0) { |
| 388 | trace_rxrpc_timer_exp(call, t, rxrpc_timer_trace_ping); |
| 389 | call->ping_at = KTIME_MAX; |
David Howells | 72f0c6f | 2020-01-30 21:48:13 +0000 | [diff] [blame] | 390 | rxrpc_send_ACK(call, RXRPC_ACK_PING, 0, |
| 391 | rxrpc_propose_ack_ping_for_keepalive); |
David Howells | 415f44e | 2017-11-24 10:18:42 +0000 | [diff] [blame] | 392 | } |
| 393 | |
David Howells | 153f90a | 2024-01-30 21:37:16 +0000 | [diff] [blame] | 394 | t = ktime_sub(call->resend_at, now); |
| 395 | if (t <= 0) { |
| 396 | trace_rxrpc_timer_exp(call, t, rxrpc_timer_trace_resend); |
| 397 | call->resend_at = KTIME_MAX; |
David Howells | 5e6ef4f | 2020-01-23 13:13:41 +0000 | [diff] [blame] | 398 | resend = true; |
David Howells | a158bdd | 2017-11-24 10:18:41 +0000 | [diff] [blame] | 399 | } |
| 400 | |
David Howells | cf37b59 | 2022-03-31 23:55:08 +0100 | [diff] [blame] | 401 | rxrpc_transmit_some_data(call); |
| 402 | |
David Howells | 153f90a | 2024-01-30 21:37:16 +0000 | [diff] [blame] | 403 | now = ktime_get_real(); |
| 404 | t = ktime_sub(call->keepalive_at, now); |
| 405 | if (t <= 0) { |
| 406 | trace_rxrpc_timer_exp(call, t, rxrpc_timer_trace_keepalive); |
| 407 | call->keepalive_at = KTIME_MAX; |
| 408 | rxrpc_send_ACK(call, RXRPC_ACK_PING, 0, |
| 409 | rxrpc_propose_ack_ping_for_keepalive); |
| 410 | } |
| 411 | |
David Howells | 5086d9a | 2022-11-11 13:47:35 +0000 | [diff] [blame] | 412 | if (skb) { |
| 413 | struct rxrpc_skb_priv *sp = rxrpc_skb(skb); |
| 414 | |
| 415 | if (sp->hdr.type == RXRPC_PACKET_TYPE_ACK) |
| 416 | rxrpc_congestion_degrade(call); |
| 417 | } |
| 418 | |
David Howells | 5e6ef4f | 2020-01-23 13:13:41 +0000 | [diff] [blame] | 419 | if (test_and_clear_bit(RXRPC_CALL_EV_INITIAL_PING, &call->events)) |
| 420 | rxrpc_send_initial_ping(call); |
| 421 | |
David Howells | a158bdd | 2017-11-24 10:18:41 +0000 | [diff] [blame] | 422 | /* Process events */ |
David Howells | 5e6ef4f | 2020-01-23 13:13:41 +0000 | [diff] [blame] | 423 | if (test_and_clear_bit(RXRPC_CALL_EV_ACK_LOST, &call->events)) |
David Howells | 72f0c6f | 2020-01-30 21:48:13 +0000 | [diff] [blame] | 424 | rxrpc_send_ACK(call, RXRPC_ACK_PING, 0, |
| 425 | rxrpc_propose_ack_ping_for_lost_ack); |
David Howells | a5af7e1 | 2016-10-06 08:11:49 +0100 | [diff] [blame] | 426 | |
David Howells | a711d97 | 2024-02-29 16:50:52 +0000 | [diff] [blame] | 427 | if (resend && |
| 428 | __rxrpc_call_state(call) != RXRPC_CALL_CLIENT_RECV_REPLY && |
| 429 | !test_bit(RXRPC_CALL_TX_ALL_ACKED, &call->flags)) |
David Howells | 5e6ef4f | 2020-01-23 13:13:41 +0000 | [diff] [blame] | 430 | rxrpc_resend(call, NULL); |
| 431 | |
| 432 | if (test_and_clear_bit(RXRPC_CALL_RX_IS_IDLE, &call->flags)) |
| 433 | rxrpc_send_ACK(call, RXRPC_ACK_IDLE, 0, |
| 434 | rxrpc_propose_ack_rx_idle); |
| 435 | |
David Howells | 5bbf9533 | 2022-10-17 11:44:22 +0100 | [diff] [blame] | 436 | if (call->ackr_nr_unacked > 2) { |
David Howells | 84e28aa | 2022-10-17 10:55:41 +0100 | [diff] [blame] | 437 | if (call->peer->rtt_count < 3) |
| 438 | rxrpc_send_ACK(call, RXRPC_ACK_PING, 0, |
| 439 | rxrpc_propose_ack_ping_for_rtt); |
| 440 | else if (ktime_before(ktime_add_ms(call->peer->rtt_last_req, 1000), |
| 441 | ktime_get_real())) |
| 442 | rxrpc_send_ACK(call, RXRPC_ACK_PING, 0, |
| 443 | rxrpc_propose_ack_ping_for_old_rtt); |
| 444 | else |
| 445 | rxrpc_send_ACK(call, RXRPC_ACK_IDLE, 0, |
| 446 | rxrpc_propose_ack_input_data); |
| 447 | } |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 448 | |
David Howells | a158bdd | 2017-11-24 10:18:41 +0000 | [diff] [blame] | 449 | /* Make sure the timer is restarted */ |
David Howells | 96b4059 | 2022-10-27 11:25:55 +0100 | [diff] [blame] | 450 | if (!__rxrpc_call_is_complete(call)) { |
David Howells | 153f90a | 2024-01-30 21:37:16 +0000 | [diff] [blame] | 451 | ktime_t next = READ_ONCE(call->expect_term_by), delay; |
David Howells | a158bdd | 2017-11-24 10:18:41 +0000 | [diff] [blame] | 452 | |
David Howells | 153f90a | 2024-01-30 21:37:16 +0000 | [diff] [blame] | 453 | #define set(T) { ktime_t _t = (T); if (ktime_before(_t, next)) next = _t; } |
David Howells | 3d7682a | 2017-11-29 14:25:50 +0000 | [diff] [blame] | 454 | |
David Howells | 5e6ef4f | 2020-01-23 13:13:41 +0000 | [diff] [blame] | 455 | set(call->expect_req_by); |
David Howells | 153f90a | 2024-01-30 21:37:16 +0000 | [diff] [blame] | 456 | set(call->expect_rx_by); |
David Howells | 5e6ef4f | 2020-01-23 13:13:41 +0000 | [diff] [blame] | 457 | set(call->delay_ack_at); |
| 458 | set(call->ack_lost_at); |
| 459 | set(call->resend_at); |
| 460 | set(call->keepalive_at); |
| 461 | set(call->ping_at); |
David Howells | a158bdd | 2017-11-24 10:18:41 +0000 | [diff] [blame] | 462 | |
David Howells | 153f90a | 2024-01-30 21:37:16 +0000 | [diff] [blame] | 463 | now = ktime_get_real(); |
| 464 | delay = ktime_sub(next, now); |
| 465 | if (delay <= 0) { |
David Howells | 5e6ef4f | 2020-01-23 13:13:41 +0000 | [diff] [blame] | 466 | rxrpc_poke_call(call, rxrpc_call_poke_timer_now); |
David Howells | 153f90a | 2024-01-30 21:37:16 +0000 | [diff] [blame] | 467 | } else { |
| 468 | unsigned long nowj = jiffies, delayj, nextj; |
David Howells | a158bdd | 2017-11-24 10:18:41 +0000 | [diff] [blame] | 469 | |
David Howells | 153f90a | 2024-01-30 21:37:16 +0000 | [diff] [blame] | 470 | delayj = max(nsecs_to_jiffies(delay), 1); |
| 471 | nextj = nowj + delayj; |
| 472 | if (time_before(nextj, call->timer.expires) || |
| 473 | !timer_pending(&call->timer)) { |
| 474 | trace_rxrpc_timer_restart(call, delay, delayj); |
| 475 | timer_reduce(&call->timer, nextj); |
| 476 | } |
| 477 | } |
David Howells | 5e6ef4f | 2020-01-23 13:13:41 +0000 | [diff] [blame] | 478 | } |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 479 | |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 480 | out: |
David Howells | 96b4059 | 2022-10-27 11:25:55 +0100 | [diff] [blame] | 481 | if (__rxrpc_call_is_complete(call)) { |
David Howells | 5e6ef4f | 2020-01-23 13:13:41 +0000 | [diff] [blame] | 482 | del_timer_sync(&call->timer); |
David Howells | 03fc55a | 2022-10-12 17:01:25 +0100 | [diff] [blame] | 483 | if (!test_bit(RXRPC_CALL_DISCONNECTED, &call->flags)) |
| 484 | rxrpc_disconnect_call(call); |
| 485 | if (call->security) |
| 486 | call->security->free_call_crypto(call); |
| 487 | } |
David Howells | 5e6ef4f | 2020-01-23 13:13:41 +0000 | [diff] [blame] | 488 | if (call->acks_hard_ack != call->tx_bottom) |
| 489 | rxrpc_shrink_call_tx_buffer(call); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 490 | _leave(""); |
David Howells | 57af281 | 2022-10-06 21:45:42 +0100 | [diff] [blame] | 491 | return true; |
David Howells | 153f90a | 2024-01-30 21:37:16 +0000 | [diff] [blame] | 492 | |
| 493 | expired: |
| 494 | if (test_bit(RXRPC_CALL_RX_HEARD, &call->flags) && |
| 495 | (int)call->conn->hi_serial - (int)call->rx_serial > 0) { |
| 496 | trace_rxrpc_call_reset(call); |
| 497 | rxrpc_abort_call(call, 0, RX_CALL_DEAD, -ECONNRESET, |
| 498 | rxrpc_abort_call_reset); |
| 499 | } else { |
| 500 | rxrpc_abort_call(call, 0, RX_CALL_TIMEOUT, -ETIME, |
| 501 | rxrpc_abort_call_timeout); |
| 502 | } |
| 503 | goto out; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 504 | } |