blob: a45c83f22236e2648c2fa4f97ebebb088361a071 [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/* RxRPC packet transmission
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/net.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090011#include <linux/gfp.h>
David Howells17926a72007-04-26 15:48:28 -070012#include <linux/skbuff.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040013#include <linux/export.h>
David Howells17926a72007-04-26 15:48:28 -070014#include <net/sock.h>
15#include <net/af_rxrpc.h>
16#include "ar-internal.h"
17
David Howells26cb02a2016-10-06 08:11:49 +010018struct rxrpc_ack_buffer {
David Howells8d94aa32016-09-07 09:19:31 +010019 struct rxrpc_wire_header whdr;
David Howells26cb02a2016-10-06 08:11:49 +010020 struct rxrpc_ackpacket ack;
21 u8 acks[255];
22 u8 pad[3];
David Howells8d94aa32016-09-07 09:19:31 +010023 struct rxrpc_ackinfo ackinfo;
24};
25
David Howells26cb02a2016-10-06 08:11:49 +010026struct rxrpc_abort_buffer {
27 struct rxrpc_wire_header whdr;
28 __be32 abort_code;
29};
30
David Howellsace45be2018-03-30 21:04:43 +010031static const char rxrpc_keepalive_string[] = "";
32
David Howells8d94aa32016-09-07 09:19:31 +010033/*
David Howellsc7e86ac2018-11-01 13:39:53 +000034 * Increase Tx backoff on transmission failure and clear it on success.
35 */
36static void rxrpc_tx_backoff(struct rxrpc_call *call, int ret)
37{
38 if (ret < 0) {
39 u16 tx_backoff = READ_ONCE(call->tx_backoff);
40
41 if (tx_backoff < HZ)
42 WRITE_ONCE(call->tx_backoff, tx_backoff + 1);
43 } else {
44 WRITE_ONCE(call->tx_backoff, 0);
45 }
46}
47
48/*
David Howells415f44e2017-11-24 10:18:42 +000049 * Arrange for a keepalive ping a certain time after we last transmitted. This
50 * lets the far side know we're still interested in this call and helps keep
51 * the route through any intervening firewall open.
52 *
53 * Receiving a response to the ping will prevent the ->expect_rx_by timer from
54 * expiring.
55 */
56static void rxrpc_set_keepalive(struct rxrpc_call *call)
57{
58 unsigned long now = jiffies, keepalive_at = call->next_rx_timo / 6;
59
60 keepalive_at += now;
61 WRITE_ONCE(call->keepalive_at, keepalive_at);
62 rxrpc_reduce_call_timer(call, keepalive_at, now,
63 rxrpc_timer_set_for_keepalive);
64}
65
66/*
David Howells8d94aa32016-09-07 09:19:31 +010067 * Fill out an ACK packet.
68 */
David Howells1457cc42017-11-02 15:06:55 +000069static size_t rxrpc_fill_out_ack(struct rxrpc_connection *conn,
70 struct rxrpc_call *call,
David Howells26cb02a2016-10-06 08:11:49 +010071 struct rxrpc_ack_buffer *pkt,
David Howells805b21b2016-09-24 18:05:26 +010072 rxrpc_seq_t *_hard_ack,
David Howellsa5af7e12016-10-06 08:11:49 +010073 rxrpc_seq_t *_top,
74 u8 reason)
David Howells8d94aa32016-09-07 09:19:31 +010075{
David Howellsf3639df2016-09-17 10:49:13 +010076 rxrpc_serial_t serial;
David Howells248f2192016-09-08 11:10:12 +010077 rxrpc_seq_t hard_ack, top, seq;
78 int ix;
David Howells8d94aa32016-09-07 09:19:31 +010079 u32 mtu, jmax;
80 u8 *ackp = pkt->acks;
81
David Howells248f2192016-09-08 11:10:12 +010082 /* Barrier against rxrpc_input_data(). */
David Howellsf3639df2016-09-17 10:49:13 +010083 serial = call->ackr_serial;
David Howells248f2192016-09-08 11:10:12 +010084 hard_ack = READ_ONCE(call->rx_hard_ack);
85 top = smp_load_acquire(&call->rx_top);
David Howells805b21b2016-09-24 18:05:26 +010086 *_hard_ack = hard_ack;
87 *_top = top;
David Howells248f2192016-09-08 11:10:12 +010088
David Howells8d94aa32016-09-07 09:19:31 +010089 pkt->ack.bufferSpace = htons(8);
David Howellse8c3af62019-08-09 15:20:41 +010090 pkt->ack.maxSkew = htons(0);
David Howells248f2192016-09-08 11:10:12 +010091 pkt->ack.firstPacket = htonl(hard_ack + 1);
David Howells8d94aa32016-09-07 09:19:31 +010092 pkt->ack.previousPacket = htonl(call->ackr_prev_seq);
David Howellsf3639df2016-09-17 10:49:13 +010093 pkt->ack.serial = htonl(serial);
David Howellsa5af7e12016-10-06 08:11:49 +010094 pkt->ack.reason = reason;
David Howells248f2192016-09-08 11:10:12 +010095 pkt->ack.nAcks = top - hard_ack;
David Howells8d94aa32016-09-07 09:19:31 +010096
David Howellsa5af7e12016-10-06 08:11:49 +010097 if (reason == RXRPC_ACK_PING)
David Howells8e831342016-09-22 00:29:31 +010098 pkt->whdr.flags |= RXRPC_REQUEST_ACK;
99
David Howells248f2192016-09-08 11:10:12 +0100100 if (after(top, hard_ack)) {
101 seq = hard_ack + 1;
102 do {
103 ix = seq & RXRPC_RXTX_BUFF_MASK;
104 if (call->rxtx_buffer[ix])
105 *ackp++ = RXRPC_ACK_TYPE_ACK;
106 else
107 *ackp++ = RXRPC_ACK_TYPE_NACK;
108 seq++;
109 } while (before_eq(seq, top));
110 }
111
David Howells1457cc42017-11-02 15:06:55 +0000112 mtu = conn->params.peer->if_mtu;
113 mtu -= conn->params.peer->hdrsize;
David Howells75e42122016-09-13 22:36:22 +0100114 jmax = (call->nr_jumbo_bad > 3) ? 1 : rxrpc_rx_jumbo_max;
David Howells8d94aa32016-09-07 09:19:31 +0100115 pkt->ackinfo.rxMTU = htonl(rxrpc_rx_mtu);
116 pkt->ackinfo.maxMTU = htonl(mtu);
David Howells75e42122016-09-13 22:36:22 +0100117 pkt->ackinfo.rwind = htonl(call->rx_winsize);
David Howells8d94aa32016-09-07 09:19:31 +0100118 pkt->ackinfo.jumbo_max = htonl(jmax);
119
120 *ackp++ = 0;
121 *ackp++ = 0;
122 *ackp++ = 0;
David Howells248f2192016-09-08 11:10:12 +0100123 return top - hard_ack + 3;
David Howells8d94aa32016-09-07 09:19:31 +0100124}
125
126/*
David Howells4700c4d2020-08-19 23:29:16 +0100127 * Record the beginning of an RTT probe.
128 */
129static int rxrpc_begin_rtt_probe(struct rxrpc_call *call, rxrpc_serial_t serial,
130 enum rxrpc_rtt_tx_trace why)
131{
132 unsigned long avail = call->rtt_avail;
133 int rtt_slot = 9;
134
135 if (!(avail & RXRPC_CALL_RTT_AVAIL_MASK))
136 goto no_slot;
137
138 rtt_slot = __ffs(avail & RXRPC_CALL_RTT_AVAIL_MASK);
139 if (!test_and_clear_bit(rtt_slot, &call->rtt_avail))
140 goto no_slot;
141
142 call->rtt_serial[rtt_slot] = serial;
143 call->rtt_sent_at[rtt_slot] = ktime_get_real();
144 smp_wmb(); /* Write data before avail bit */
145 set_bit(rtt_slot + RXRPC_CALL_RTT_PEND_SHIFT, &call->rtt_avail);
146
147 trace_rxrpc_rtt_tx(call, why, rtt_slot, serial);
148 return rtt_slot;
149
150no_slot:
151 trace_rxrpc_rtt_tx(call, rxrpc_rtt_tx_no_slot, rtt_slot, serial);
152 return -1;
153}
154
155/*
156 * Cancel an RTT probe.
157 */
158static void rxrpc_cancel_rtt_probe(struct rxrpc_call *call,
159 rxrpc_serial_t serial, int rtt_slot)
160{
161 if (rtt_slot != -1) {
162 clear_bit(rtt_slot + RXRPC_CALL_RTT_PEND_SHIFT, &call->rtt_avail);
163 smp_wmb(); /* Clear pending bit before setting slot */
164 set_bit(rtt_slot, &call->rtt_avail);
165 trace_rxrpc_rtt_tx(call, rxrpc_rtt_tx_cancel, rtt_slot, serial);
166 }
167}
168
169/*
David Howells26cb02a2016-10-06 08:11:49 +0100170 * Send an ACK call packet.
David Howells8d94aa32016-09-07 09:19:31 +0100171 */
David Howellsbd1fdf82017-11-24 10:18:42 +0000172int rxrpc_send_ack_packet(struct rxrpc_call *call, bool ping,
173 rxrpc_serial_t *_serial)
David Howells8d94aa32016-09-07 09:19:31 +0100174{
David Howells5273a192020-01-30 21:50:36 +0000175 struct rxrpc_connection *conn;
David Howells26cb02a2016-10-06 08:11:49 +0100176 struct rxrpc_ack_buffer *pkt;
David Howells8d94aa32016-09-07 09:19:31 +0100177 struct msghdr msg;
178 struct kvec iov[2];
179 rxrpc_serial_t serial;
David Howells805b21b2016-09-24 18:05:26 +0100180 rxrpc_seq_t hard_ack, top;
David Howells8d94aa32016-09-07 09:19:31 +0100181 size_t len, n;
David Howells4700c4d2020-08-19 23:29:16 +0100182 int ret, rtt_slot = -1;
David Howellsa5af7e12016-10-06 08:11:49 +0100183 u8 reason;
David Howells8d94aa32016-09-07 09:19:31 +0100184
David Howells5273a192020-01-30 21:50:36 +0000185 if (test_bit(RXRPC_CALL_DISCONNECTED, &call->flags))
David Howells8d94aa32016-09-07 09:19:31 +0100186 return -ECONNRESET;
187
188 pkt = kzalloc(sizeof(*pkt), GFP_KERNEL);
David Howells5273a192020-01-30 21:50:36 +0000189 if (!pkt)
David Howells8d94aa32016-09-07 09:19:31 +0100190 return -ENOMEM;
David Howells5273a192020-01-30 21:50:36 +0000191
192 conn = call->conn;
David Howells8d94aa32016-09-07 09:19:31 +0100193
David Howells8d94aa32016-09-07 09:19:31 +0100194 msg.msg_name = &call->peer->srx.transport;
195 msg.msg_namelen = call->peer->srx.transport_len;
196 msg.msg_control = NULL;
197 msg.msg_controllen = 0;
198 msg.msg_flags = 0;
199
200 pkt->whdr.epoch = htonl(conn->proto.epoch);
201 pkt->whdr.cid = htonl(call->cid);
202 pkt->whdr.callNumber = htonl(call->call_id);
203 pkt->whdr.seq = 0;
David Howells26cb02a2016-10-06 08:11:49 +0100204 pkt->whdr.type = RXRPC_PACKET_TYPE_ACK;
205 pkt->whdr.flags = RXRPC_SLOW_START_OK | conn->out_clientflag;
David Howells8d94aa32016-09-07 09:19:31 +0100206 pkt->whdr.userStatus = 0;
207 pkt->whdr.securityIndex = call->security_ix;
208 pkt->whdr._rsvd = 0;
209 pkt->whdr.serviceId = htons(call->service_id);
210
David Howells26cb02a2016-10-06 08:11:49 +0100211 spin_lock_bh(&call->lock);
David Howellsa5af7e12016-10-06 08:11:49 +0100212 if (ping) {
213 reason = RXRPC_ACK_PING;
214 } else {
215 reason = call->ackr_reason;
216 if (!call->ackr_reason) {
217 spin_unlock_bh(&call->lock);
218 ret = 0;
219 goto out;
220 }
221 call->ackr_reason = 0;
David Howells8d94aa32016-09-07 09:19:31 +0100222 }
David Howells1457cc42017-11-02 15:06:55 +0000223 n = rxrpc_fill_out_ack(conn, call, pkt, &hard_ack, &top, reason);
David Howells26cb02a2016-10-06 08:11:49 +0100224
225 spin_unlock_bh(&call->lock);
226
227 iov[0].iov_base = pkt;
228 iov[0].iov_len = sizeof(pkt->whdr) + sizeof(pkt->ack) + n;
229 iov[1].iov_base = &pkt->ackinfo;
230 iov[1].iov_len = sizeof(pkt->ackinfo);
231 len = iov[0].iov_len + iov[1].iov_len;
David Howells8d94aa32016-09-07 09:19:31 +0100232
David Howellsb86e2182016-09-23 15:08:48 +0100233 serial = atomic_inc_return(&conn->serial);
234 pkt->whdr.serial = htonl(serial);
David Howells4764c0d2018-07-23 17:18:37 +0100235 trace_rxrpc_tx_ack(call->debug_id, serial,
David Howells26cb02a2016-10-06 08:11:49 +0100236 ntohl(pkt->ack.firstPacket),
237 ntohl(pkt->ack.serial),
238 pkt->ack.reason, pkt->ack.nAcks);
David Howellsbd1fdf82017-11-24 10:18:42 +0000239 if (_serial)
240 *_serial = serial;
David Howellsb86e2182016-09-23 15:08:48 +0100241
David Howells4700c4d2020-08-19 23:29:16 +0100242 if (ping)
243 rtt_slot = rxrpc_begin_rtt_probe(call, serial, rxrpc_rtt_tx_ping);
David Howells26cb02a2016-10-06 08:11:49 +0100244
245 ret = kernel_sendmsg(conn->params.local->socket, &msg, iov, 2, len);
David Howells330bdcf2018-08-08 11:30:02 +0100246 conn->params.peer->last_tx_at = ktime_get_seconds();
David Howells6b47fe12018-05-10 23:26:01 +0100247 if (ret < 0)
248 trace_rxrpc_tx_fail(call->debug_id, serial, ret,
David Howells4764c0d2018-07-23 17:18:37 +0100249 rxrpc_tx_point_call_ack);
250 else
251 trace_rxrpc_tx_packet(call->debug_id, &pkt->whdr,
252 rxrpc_tx_point_call_ack);
David Howellsc7e86ac2018-11-01 13:39:53 +0000253 rxrpc_tx_backoff(call, ret);
David Howells8d94aa32016-09-07 09:19:31 +0100254
David Howells26cb02a2016-10-06 08:11:49 +0100255 if (call->state < RXRPC_CALL_COMPLETE) {
David Howells805b21b2016-09-24 18:05:26 +0100256 if (ret < 0) {
David Howells4700c4d2020-08-19 23:29:16 +0100257 rxrpc_cancel_rtt_probe(call, serial, rtt_slot);
David Howells248f2192016-09-08 11:10:12 +0100258 rxrpc_propose_ACK(call, pkt->ack.reason,
David Howells248f2192016-09-08 11:10:12 +0100259 ntohl(pkt->ack.serial),
David Howellsc7e86ac2018-11-01 13:39:53 +0000260 false, true,
David Howells9c7ad432016-09-23 13:50:40 +0100261 rxrpc_propose_ack_retry_tx);
David Howells805b21b2016-09-24 18:05:26 +0100262 } else {
263 spin_lock_bh(&call->lock);
264 if (after(hard_ack, call->ackr_consumed))
265 call->ackr_consumed = hard_ack;
266 if (after(top, call->ackr_seen))
267 call->ackr_seen = top;
268 spin_unlock_bh(&call->lock);
David Howells248f2192016-09-08 11:10:12 +0100269 }
David Howells415f44e2017-11-24 10:18:42 +0000270
271 rxrpc_set_keepalive(call);
David Howells248f2192016-09-08 11:10:12 +0100272 }
273
David Howells8d94aa32016-09-07 09:19:31 +0100274out:
David Howells8d94aa32016-09-07 09:19:31 +0100275 kfree(pkt);
276 return ret;
277}
278
David Howells5873c082014-02-07 18:58:44 +0000279/*
David Howells26cb02a2016-10-06 08:11:49 +0100280 * Send an ABORT call packet.
281 */
282int rxrpc_send_abort_packet(struct rxrpc_call *call)
283{
David Howells5273a192020-01-30 21:50:36 +0000284 struct rxrpc_connection *conn;
David Howells26cb02a2016-10-06 08:11:49 +0100285 struct rxrpc_abort_buffer pkt;
286 struct msghdr msg;
287 struct kvec iov[1];
288 rxrpc_serial_t serial;
289 int ret;
290
David Howellsdcbefc32017-11-02 15:06:26 +0000291 /* Don't bother sending aborts for a client call once the server has
292 * hard-ACK'd all of its request data. After that point, we're not
293 * going to stop the operation proceeding, and whilst we might limit
294 * the reply, it's not worth it if we can send a new call on the same
295 * channel instead, thereby closing off this call.
296 */
297 if (rxrpc_is_client_call(call) &&
298 test_bit(RXRPC_CALL_TX_LAST, &call->flags))
299 return 0;
300
David Howells5273a192020-01-30 21:50:36 +0000301 if (test_bit(RXRPC_CALL_DISCONNECTED, &call->flags))
David Howells26cb02a2016-10-06 08:11:49 +0100302 return -ECONNRESET;
303
David Howells5273a192020-01-30 21:50:36 +0000304 conn = call->conn;
305
David Howells26cb02a2016-10-06 08:11:49 +0100306 msg.msg_name = &call->peer->srx.transport;
307 msg.msg_namelen = call->peer->srx.transport_len;
308 msg.msg_control = NULL;
309 msg.msg_controllen = 0;
310 msg.msg_flags = 0;
311
312 pkt.whdr.epoch = htonl(conn->proto.epoch);
313 pkt.whdr.cid = htonl(call->cid);
314 pkt.whdr.callNumber = htonl(call->call_id);
315 pkt.whdr.seq = 0;
316 pkt.whdr.type = RXRPC_PACKET_TYPE_ABORT;
317 pkt.whdr.flags = conn->out_clientflag;
318 pkt.whdr.userStatus = 0;
319 pkt.whdr.securityIndex = call->security_ix;
320 pkt.whdr._rsvd = 0;
321 pkt.whdr.serviceId = htons(call->service_id);
322 pkt.abort_code = htonl(call->abort_code);
323
324 iov[0].iov_base = &pkt;
325 iov[0].iov_len = sizeof(pkt);
326
327 serial = atomic_inc_return(&conn->serial);
328 pkt.whdr.serial = htonl(serial);
329
330 ret = kernel_sendmsg(conn->params.local->socket,
331 &msg, iov, 1, sizeof(pkt));
David Howells330bdcf2018-08-08 11:30:02 +0100332 conn->params.peer->last_tx_at = ktime_get_seconds();
David Howells6b47fe12018-05-10 23:26:01 +0100333 if (ret < 0)
334 trace_rxrpc_tx_fail(call->debug_id, serial, ret,
David Howells4764c0d2018-07-23 17:18:37 +0100335 rxrpc_tx_point_call_abort);
336 else
337 trace_rxrpc_tx_packet(call->debug_id, &pkt.whdr,
338 rxrpc_tx_point_call_abort);
David Howellsc7e86ac2018-11-01 13:39:53 +0000339 rxrpc_tx_backoff(call, ret);
David Howells26cb02a2016-10-06 08:11:49 +0100340 return ret;
341}
342
343/*
David Howells17926a72007-04-26 15:48:28 -0700344 * send a packet through the transport endpoint
345 */
David Howellsa1767072016-09-29 22:37:15 +0100346int rxrpc_send_data_packet(struct rxrpc_call *call, struct sk_buff *skb,
347 bool retrans)
David Howells17926a72007-04-26 15:48:28 -0700348{
David Howells5a924b82016-09-22 00:29:31 +0100349 struct rxrpc_connection *conn = call->conn;
350 struct rxrpc_wire_header whdr;
351 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
David Howells17926a72007-04-26 15:48:28 -0700352 struct msghdr msg;
David Howells5a924b82016-09-22 00:29:31 +0100353 struct kvec iov[2];
354 rxrpc_serial_t serial;
355 size_t len;
David Howells4700c4d2020-08-19 23:29:16 +0100356 int ret, rtt_slot = -1;
David Howells17926a72007-04-26 15:48:28 -0700357
358 _enter(",{%d}", skb->len);
359
David Howells245500d2020-07-01 11:15:32 +0100360 if (hlist_unhashed(&call->error_link)) {
361 spin_lock_bh(&call->peer->lock);
362 hlist_add_head_rcu(&call->error_link, &call->peer->error_targets);
363 spin_unlock_bh(&call->peer->lock);
364 }
365
David Howells5a924b82016-09-22 00:29:31 +0100366 /* Each transmission of a Tx packet needs a new serial number */
367 serial = atomic_inc_return(&conn->serial);
David Howells17926a72007-04-26 15:48:28 -0700368
David Howells5a924b82016-09-22 00:29:31 +0100369 whdr.epoch = htonl(conn->proto.epoch);
370 whdr.cid = htonl(call->cid);
371 whdr.callNumber = htonl(call->call_id);
372 whdr.seq = htonl(sp->hdr.seq);
373 whdr.serial = htonl(serial);
374 whdr.type = RXRPC_PACKET_TYPE_DATA;
375 whdr.flags = sp->hdr.flags;
376 whdr.userStatus = 0;
377 whdr.securityIndex = call->security_ix;
378 whdr._rsvd = htons(sp->hdr._rsvd);
379 whdr.serviceId = htons(call->service_id);
380
David Howells4e255722017-06-05 14:30:49 +0100381 if (test_bit(RXRPC_CONN_PROBING_FOR_UPGRADE, &conn->flags) &&
382 sp->hdr.seq == 1)
383 whdr.userStatus = RXRPC_USERSTATUS_SERVICE_UPGRADE;
384
David Howells5a924b82016-09-22 00:29:31 +0100385 iov[0].iov_base = &whdr;
386 iov[0].iov_len = sizeof(whdr);
387 iov[1].iov_base = skb->head;
388 iov[1].iov_len = skb->len;
389 len = iov[0].iov_len + iov[1].iov_len;
390
391 msg.msg_name = &call->peer->srx.transport;
392 msg.msg_namelen = call->peer->srx.transport_len;
David Howells17926a72007-04-26 15:48:28 -0700393 msg.msg_control = NULL;
394 msg.msg_controllen = 0;
395 msg.msg_flags = 0;
396
David Howells57494342016-09-24 18:05:27 +0100397 /* If our RTT cache needs working on, request an ACK. Also request
398 * ACKs if a DATA packet appears to have been lost.
David Howellsb604dd92018-09-27 15:13:08 +0100399 *
400 * However, we mustn't request an ACK on the last reply packet of a
401 * service call, lest OpenAFS incorrectly send us an ACK with some
402 * soft-ACKs in it and then never follow up with a proper hard ACK.
David Howells57494342016-09-24 18:05:27 +0100403 */
David Howellsb604dd92018-09-27 15:13:08 +0100404 if ((!(sp->hdr.flags & RXRPC_LAST_PACKET) ||
405 rxrpc_to_server(sp)
406 ) &&
David Howellsbd1fdf82017-11-24 10:18:42 +0000407 (test_and_clear_bit(RXRPC_CALL_EV_ACK_LOST, &call->events) ||
408 retrans ||
David Howellsbf7d6202016-10-06 08:11:51 +0100409 call->cong_mode == RXRPC_CALL_SLOW_START ||
David Howellsc410bf012020-05-11 14:54:34 +0100410 (call->peer->rtt_count < 3 && sp->hdr.seq & 1) ||
David Howellsbf7d6202016-10-06 08:11:51 +0100411 ktime_before(ktime_add_ms(call->peer->rtt_last_req, 1000),
412 ktime_get_real())))
David Howells0d4b1032016-09-22 00:29:31 +0100413 whdr.flags |= RXRPC_REQUEST_ACK;
414
David Howells8a681c362016-09-17 10:49:15 +0100415 if (IS_ENABLED(CONFIG_AF_RXRPC_INJECT_LOSS)) {
416 static int lose;
417 if ((lose++ & 7) == 7) {
David Howellsa1767072016-09-29 22:37:15 +0100418 ret = 0;
Arnd Bergmann526949e2019-03-22 15:18:43 +0100419 trace_rxrpc_tx_data(call, sp->hdr.seq, serial,
420 whdr.flags, retrans, true);
421 goto done;
David Howells8a681c362016-09-17 10:49:15 +0100422 }
423 }
424
Arnd Bergmann526949e2019-03-22 15:18:43 +0100425 trace_rxrpc_tx_data(call, sp->hdr.seq, serial, whdr.flags, retrans,
426 false);
David Howells5a924b82016-09-22 00:29:31 +0100427
David Howells17926a72007-04-26 15:48:28 -0700428 /* send the packet with the don't fragment bit set if we currently
429 * think it's small enough */
David Howells5a924b82016-09-22 00:29:31 +0100430 if (iov[1].iov_len >= call->peer->maxdata)
431 goto send_fragmentable;
David Howells17926a72007-04-26 15:48:28 -0700432
David Howells5a924b82016-09-22 00:29:31 +0100433 down_read(&conn->params.local->defrag_sem);
David Howellsb604dd92018-09-27 15:13:08 +0100434
435 sp->hdr.serial = serial;
436 smp_wmb(); /* Set serial before timestamp */
437 skb->tstamp = ktime_get_real();
David Howells4700c4d2020-08-19 23:29:16 +0100438 if (whdr.flags & RXRPC_REQUEST_ACK)
439 rtt_slot = rxrpc_begin_rtt_probe(call, serial, rxrpc_rtt_tx_data);
David Howellsb604dd92018-09-27 15:13:08 +0100440
David Howells5a924b82016-09-22 00:29:31 +0100441 /* send the packet by UDP
442 * - returns -EMSGSIZE if UDP would have to fragment the packet
443 * to go out of the interface
444 * - in which case, we'll have processed the ICMP error
445 * message and update the peer record
446 */
447 ret = kernel_sendmsg(conn->params.local->socket, &msg, iov, 2, len);
David Howells330bdcf2018-08-08 11:30:02 +0100448 conn->params.peer->last_tx_at = ktime_get_seconds();
David Howells17926a72007-04-26 15:48:28 -0700449
David Howells5a924b82016-09-22 00:29:31 +0100450 up_read(&conn->params.local->defrag_sem);
David Howells4700c4d2020-08-19 23:29:16 +0100451 if (ret < 0) {
452 rxrpc_cancel_rtt_probe(call, serial, rtt_slot);
David Howells6b47fe12018-05-10 23:26:01 +0100453 trace_rxrpc_tx_fail(call->debug_id, serial, ret,
David Howells4764c0d2018-07-23 17:18:37 +0100454 rxrpc_tx_point_call_data_nofrag);
David Howells4700c4d2020-08-19 23:29:16 +0100455 } else {
David Howells4764c0d2018-07-23 17:18:37 +0100456 trace_rxrpc_tx_packet(call->debug_id, &whdr,
457 rxrpc_tx_point_call_data_nofrag);
David Howells4700c4d2020-08-19 23:29:16 +0100458 }
459
David Howellsc7e86ac2018-11-01 13:39:53 +0000460 rxrpc_tx_backoff(call, ret);
David Howells5a924b82016-09-22 00:29:31 +0100461 if (ret == -EMSGSIZE)
462 goto send_fragmentable;
463
464done:
David Howells50235c42016-09-22 00:29:31 +0100465 if (ret >= 0) {
David Howells0d4b1032016-09-22 00:29:31 +0100466 if (whdr.flags & RXRPC_REQUEST_ACK) {
David Howellsb604dd92018-09-27 15:13:08 +0100467 call->peer->rtt_last_req = skb->tstamp;
David Howellsc410bf012020-05-11 14:54:34 +0100468 if (call->peer->rtt_count > 1) {
David Howellsbd1fdf82017-11-24 10:18:42 +0000469 unsigned long nowj = jiffies, ack_lost_at;
470
David Howells2c13c052022-01-21 23:12:58 +0000471 ack_lost_at = rxrpc_get_rto_backoff(call->peer, false);
David Howellsbd1fdf82017-11-24 10:18:42 +0000472 ack_lost_at += nowj;
473 WRITE_ONCE(call->ack_lost_at, ack_lost_at);
474 rxrpc_reduce_call_timer(call, ack_lost_at, nowj,
475 rxrpc_timer_set_for_lost_ack);
476 }
David Howells0d4b1032016-09-22 00:29:31 +0100477 }
David Howellsc54e43d2018-05-10 23:26:00 +0100478
479 if (sp->hdr.seq == 1 &&
480 !test_and_set_bit(RXRPC_CALL_BEGAN_RX_TIMER,
481 &call->flags)) {
482 unsigned long nowj = jiffies, expect_rx_by;
483
484 expect_rx_by = nowj + call->next_rx_timo;
485 WRITE_ONCE(call->expect_rx_by, expect_rx_by);
486 rxrpc_reduce_call_timer(call, expect_rx_by, nowj,
487 rxrpc_timer_set_for_normal);
488 }
David Howells415f44e2017-11-24 10:18:42 +0000489
David Howellsc7e86ac2018-11-01 13:39:53 +0000490 rxrpc_set_keepalive(call);
491 } else {
492 /* Cancel the call if the initial transmission fails,
493 * particularly if that's due to network routing issues that
494 * aren't going away anytime soon. The layer above can arrange
495 * the retransmission.
496 */
497 if (!test_and_set_bit(RXRPC_CALL_BEGAN_RX_TIMER, &call->flags))
498 rxrpc_set_call_completion(call, RXRPC_CALL_LOCAL_ERROR,
499 RX_USER_ABORT, ret);
500 }
David Howells415f44e2017-11-24 10:18:42 +0000501
David Howells5a924b82016-09-22 00:29:31 +0100502 _leave(" = %d [%u]", ret, call->peer->maxdata);
503 return ret;
David Howells17926a72007-04-26 15:48:28 -0700504
505send_fragmentable:
506 /* attempt to send this message with fragmentation enabled */
507 _debug("send fragment");
508
David Howells985a5c82016-06-17 11:53:37 +0100509 down_write(&conn->params.local->defrag_sem);
David Howells17926a72007-04-26 15:48:28 -0700510
David Howellsb604dd92018-09-27 15:13:08 +0100511 sp->hdr.serial = serial;
512 smp_wmb(); /* Set serial before timestamp */
513 skb->tstamp = ktime_get_real();
David Howells4700c4d2020-08-19 23:29:16 +0100514 if (whdr.flags & RXRPC_REQUEST_ACK)
515 rtt_slot = rxrpc_begin_rtt_probe(call, serial, rxrpc_rtt_tx_data);
David Howellsb604dd92018-09-27 15:13:08 +0100516
David Howells985a5c82016-06-17 11:53:37 +0100517 switch (conn->params.local->srx.transport.family) {
David Howells0e631ee2020-04-13 13:57:14 +0100518 case AF_INET6:
David Howells985a5c82016-06-17 11:53:37 +0100519 case AF_INET:
Christoph Hellwig2de569b2020-05-28 07:12:29 +0200520 ip_sock_set_mtu_discover(conn->params.local->socket->sk,
521 IP_PMTUDISC_DONT);
David Howells0e631ee2020-04-13 13:57:14 +0100522 ret = kernel_sendmsg(conn->params.local->socket, &msg,
523 iov, 2, len);
524 conn->params.peer->last_tx_at = ktime_get_seconds();
David Howells985a5c82016-06-17 11:53:37 +0100525
Christoph Hellwig2de569b2020-05-28 07:12:29 +0200526 ip_sock_set_mtu_discover(conn->params.local->socket->sk,
527 IP_PMTUDISC_DO);
David Howells985a5c82016-06-17 11:53:37 +0100528 break;
David Howells75b54cb2016-09-13 08:49:05 +0100529
David Howells3427beb2019-07-02 15:55:28 +0100530 default:
531 BUG();
David Howells17926a72007-04-26 15:48:28 -0700532 }
533
David Howells4700c4d2020-08-19 23:29:16 +0100534 if (ret < 0) {
535 rxrpc_cancel_rtt_probe(call, serial, rtt_slot);
David Howells6b47fe12018-05-10 23:26:01 +0100536 trace_rxrpc_tx_fail(call->debug_id, serial, ret,
David Howells4764c0d2018-07-23 17:18:37 +0100537 rxrpc_tx_point_call_data_frag);
David Howells4700c4d2020-08-19 23:29:16 +0100538 } else {
David Howells4764c0d2018-07-23 17:18:37 +0100539 trace_rxrpc_tx_packet(call->debug_id, &whdr,
540 rxrpc_tx_point_call_data_frag);
David Howells4700c4d2020-08-19 23:29:16 +0100541 }
David Howellsc7e86ac2018-11-01 13:39:53 +0000542 rxrpc_tx_backoff(call, ret);
David Howells6b47fe12018-05-10 23:26:01 +0100543
David Howells985a5c82016-06-17 11:53:37 +0100544 up_write(&conn->params.local->defrag_sem);
David Howells5a924b82016-09-22 00:29:31 +0100545 goto done;
David Howells17926a72007-04-26 15:48:28 -0700546}
David Howells248f2192016-09-08 11:10:12 +0100547
548/*
549 * reject packets through the local endpoint
550 */
551void rxrpc_reject_packets(struct rxrpc_local *local)
552{
David Howells1c2bc7b2016-09-13 08:49:05 +0100553 struct sockaddr_rxrpc srx;
David Howells248f2192016-09-08 11:10:12 +0100554 struct rxrpc_skb_priv *sp;
555 struct rxrpc_wire_header whdr;
556 struct sk_buff *skb;
557 struct msghdr msg;
558 struct kvec iov[2];
559 size_t size;
560 __be32 code;
David Howellsece64fe2018-09-27 15:13:08 +0100561 int ret, ioc;
David Howells248f2192016-09-08 11:10:12 +0100562
563 _enter("%d", local->debug_id);
564
565 iov[0].iov_base = &whdr;
566 iov[0].iov_len = sizeof(whdr);
567 iov[1].iov_base = &code;
568 iov[1].iov_len = sizeof(code);
David Howells248f2192016-09-08 11:10:12 +0100569
David Howells1c2bc7b2016-09-13 08:49:05 +0100570 msg.msg_name = &srx.transport;
David Howells248f2192016-09-08 11:10:12 +0100571 msg.msg_control = NULL;
572 msg.msg_controllen = 0;
573 msg.msg_flags = 0;
574
David Howells248f2192016-09-08 11:10:12 +0100575 memset(&whdr, 0, sizeof(whdr));
David Howells248f2192016-09-08 11:10:12 +0100576
577 while ((skb = skb_dequeue(&local->reject_queue))) {
David Howells987db9f2019-08-19 09:25:38 +0100578 rxrpc_see_skb(skb, rxrpc_skb_seen);
David Howells248f2192016-09-08 11:10:12 +0100579 sp = rxrpc_skb(skb);
David Howells1c2bc7b2016-09-13 08:49:05 +0100580
David Howellsece64fe2018-09-27 15:13:08 +0100581 switch (skb->mark) {
582 case RXRPC_SKB_MARK_REJECT_BUSY:
583 whdr.type = RXRPC_PACKET_TYPE_BUSY;
584 size = sizeof(whdr);
585 ioc = 1;
586 break;
587 case RXRPC_SKB_MARK_REJECT_ABORT:
588 whdr.type = RXRPC_PACKET_TYPE_ABORT;
589 code = htonl(skb->priority);
590 size = sizeof(whdr) + sizeof(code);
591 ioc = 2;
592 break;
593 default:
David Howells987db9f2019-08-19 09:25:38 +0100594 rxrpc_free_skb(skb, rxrpc_skb_freed);
David Howellsece64fe2018-09-27 15:13:08 +0100595 continue;
596 }
597
David Howells5a790b72018-10-04 09:32:28 +0100598 if (rxrpc_extract_addr_from_skb(&srx, skb) == 0) {
David Howells1c2bc7b2016-09-13 08:49:05 +0100599 msg.msg_namelen = srx.transport_len;
600
David Howells248f2192016-09-08 11:10:12 +0100601 whdr.epoch = htonl(sp->hdr.epoch);
602 whdr.cid = htonl(sp->hdr.cid);
603 whdr.callNumber = htonl(sp->hdr.callNumber);
604 whdr.serviceId = htons(sp->hdr.serviceId);
605 whdr.flags = sp->hdr.flags;
606 whdr.flags ^= RXRPC_CLIENT_INITIATED;
607 whdr.flags &= RXRPC_CLIENT_INITIATED;
608
YueHaibingd6672a52018-10-11 22:32:39 +0100609 ret = kernel_sendmsg(local->socket, &msg,
610 iov, ioc, size);
David Howells6b47fe12018-05-10 23:26:01 +0100611 if (ret < 0)
612 trace_rxrpc_tx_fail(local->debug_id, 0, ret,
David Howells4764c0d2018-07-23 17:18:37 +0100613 rxrpc_tx_point_reject);
614 else
615 trace_rxrpc_tx_packet(local->debug_id, &whdr,
616 rxrpc_tx_point_reject);
David Howells248f2192016-09-08 11:10:12 +0100617 }
618
David Howells987db9f2019-08-19 09:25:38 +0100619 rxrpc_free_skb(skb, rxrpc_skb_freed);
David Howells248f2192016-09-08 11:10:12 +0100620 }
621
622 _leave("");
623}
David Howellsace45be2018-03-30 21:04:43 +0100624
625/*
626 * Send a VERSION reply to a peer as a keepalive.
627 */
628void rxrpc_send_keepalive(struct rxrpc_peer *peer)
629{
630 struct rxrpc_wire_header whdr;
631 struct msghdr msg;
632 struct kvec iov[2];
633 size_t len;
634 int ret;
635
636 _enter("");
637
638 msg.msg_name = &peer->srx.transport;
639 msg.msg_namelen = peer->srx.transport_len;
640 msg.msg_control = NULL;
641 msg.msg_controllen = 0;
642 msg.msg_flags = 0;
643
644 whdr.epoch = htonl(peer->local->rxnet->epoch);
645 whdr.cid = 0;
646 whdr.callNumber = 0;
647 whdr.seq = 0;
648 whdr.serial = 0;
649 whdr.type = RXRPC_PACKET_TYPE_VERSION; /* Not client-initiated */
650 whdr.flags = RXRPC_LAST_PACKET;
651 whdr.userStatus = 0;
652 whdr.securityIndex = 0;
653 whdr._rsvd = 0;
654 whdr.serviceId = 0;
655
656 iov[0].iov_base = &whdr;
657 iov[0].iov_len = sizeof(whdr);
658 iov[1].iov_base = (char *)rxrpc_keepalive_string;
659 iov[1].iov_len = sizeof(rxrpc_keepalive_string);
660
661 len = iov[0].iov_len + iov[1].iov_len;
662
663 _proto("Tx VERSION (keepalive)");
664
665 ret = kernel_sendmsg(peer->local->socket, &msg, iov, 2, len);
666 if (ret < 0)
David Howells6b47fe12018-05-10 23:26:01 +0100667 trace_rxrpc_tx_fail(peer->debug_id, 0, ret,
David Howells4764c0d2018-07-23 17:18:37 +0100668 rxrpc_tx_point_version_keepalive);
669 else
670 trace_rxrpc_tx_packet(peer->debug_id, &whdr,
671 rxrpc_tx_point_version_keepalive);
David Howellsace45be2018-03-30 21:04:43 +0100672
David Howells330bdcf2018-08-08 11:30:02 +0100673 peer->last_tx_at = ktime_get_seconds();
David Howellsace45be2018-03-30 21:04:43 +0100674 _leave("");
675}