blob: 948e3fe249ec905208dc6966e7ff56f994ae0bac [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 Howells248f2192016-09-08 11:10:12 +010090 pkt->ack.maxSkew = htons(call->ackr_skew);
91 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 Howells26cb02a2016-10-06 08:11:49 +0100127 * Send an ACK call packet.
David Howells8d94aa32016-09-07 09:19:31 +0100128 */
David Howellsbd1fdf82017-11-24 10:18:42 +0000129int rxrpc_send_ack_packet(struct rxrpc_call *call, bool ping,
130 rxrpc_serial_t *_serial)
David Howells8d94aa32016-09-07 09:19:31 +0100131{
132 struct rxrpc_connection *conn = NULL;
David Howells26cb02a2016-10-06 08:11:49 +0100133 struct rxrpc_ack_buffer *pkt;
David Howells8d94aa32016-09-07 09:19:31 +0100134 struct msghdr msg;
135 struct kvec iov[2];
136 rxrpc_serial_t serial;
David Howells805b21b2016-09-24 18:05:26 +0100137 rxrpc_seq_t hard_ack, top;
David Howells8d94aa32016-09-07 09:19:31 +0100138 size_t len, n;
David Howells26cb02a2016-10-06 08:11:49 +0100139 int ret;
David Howellsa5af7e12016-10-06 08:11:49 +0100140 u8 reason;
David Howells8d94aa32016-09-07 09:19:31 +0100141
142 spin_lock_bh(&call->lock);
143 if (call->conn)
144 conn = rxrpc_get_connection_maybe(call->conn);
145 spin_unlock_bh(&call->lock);
146 if (!conn)
147 return -ECONNRESET;
148
149 pkt = kzalloc(sizeof(*pkt), GFP_KERNEL);
150 if (!pkt) {
151 rxrpc_put_connection(conn);
152 return -ENOMEM;
153 }
154
David Howells8d94aa32016-09-07 09:19:31 +0100155 msg.msg_name = &call->peer->srx.transport;
156 msg.msg_namelen = call->peer->srx.transport_len;
157 msg.msg_control = NULL;
158 msg.msg_controllen = 0;
159 msg.msg_flags = 0;
160
161 pkt->whdr.epoch = htonl(conn->proto.epoch);
162 pkt->whdr.cid = htonl(call->cid);
163 pkt->whdr.callNumber = htonl(call->call_id);
164 pkt->whdr.seq = 0;
David Howells26cb02a2016-10-06 08:11:49 +0100165 pkt->whdr.type = RXRPC_PACKET_TYPE_ACK;
166 pkt->whdr.flags = RXRPC_SLOW_START_OK | conn->out_clientflag;
David Howells8d94aa32016-09-07 09:19:31 +0100167 pkt->whdr.userStatus = 0;
168 pkt->whdr.securityIndex = call->security_ix;
169 pkt->whdr._rsvd = 0;
170 pkt->whdr.serviceId = htons(call->service_id);
171
David Howells26cb02a2016-10-06 08:11:49 +0100172 spin_lock_bh(&call->lock);
David Howellsa5af7e12016-10-06 08:11:49 +0100173 if (ping) {
174 reason = RXRPC_ACK_PING;
175 } else {
176 reason = call->ackr_reason;
177 if (!call->ackr_reason) {
178 spin_unlock_bh(&call->lock);
179 ret = 0;
180 goto out;
181 }
182 call->ackr_reason = 0;
David Howells8d94aa32016-09-07 09:19:31 +0100183 }
David Howells1457cc42017-11-02 15:06:55 +0000184 n = rxrpc_fill_out_ack(conn, call, pkt, &hard_ack, &top, reason);
David Howells26cb02a2016-10-06 08:11:49 +0100185
186 spin_unlock_bh(&call->lock);
187
188 iov[0].iov_base = pkt;
189 iov[0].iov_len = sizeof(pkt->whdr) + sizeof(pkt->ack) + n;
190 iov[1].iov_base = &pkt->ackinfo;
191 iov[1].iov_len = sizeof(pkt->ackinfo);
192 len = iov[0].iov_len + iov[1].iov_len;
David Howells8d94aa32016-09-07 09:19:31 +0100193
David Howellsb86e2182016-09-23 15:08:48 +0100194 serial = atomic_inc_return(&conn->serial);
195 pkt->whdr.serial = htonl(serial);
David Howells4764c0d2018-07-23 17:18:37 +0100196 trace_rxrpc_tx_ack(call->debug_id, serial,
David Howells26cb02a2016-10-06 08:11:49 +0100197 ntohl(pkt->ack.firstPacket),
198 ntohl(pkt->ack.serial),
199 pkt->ack.reason, pkt->ack.nAcks);
David Howellsbd1fdf82017-11-24 10:18:42 +0000200 if (_serial)
201 *_serial = serial;
David Howellsb86e2182016-09-23 15:08:48 +0100202
David Howells8e831342016-09-22 00:29:31 +0100203 if (ping) {
David Howellsa5af7e12016-10-06 08:11:49 +0100204 call->ping_serial = serial;
David Howells8e831342016-09-22 00:29:31 +0100205 smp_wmb();
206 /* We need to stick a time in before we send the packet in case
207 * the reply gets back before kernel_sendmsg() completes - but
208 * asking UDP to send the packet can take a relatively long
David Howellsb604dd92018-09-27 15:13:08 +0100209 * time.
David Howells8e831342016-09-22 00:29:31 +0100210 */
David Howellsa5af7e12016-10-06 08:11:49 +0100211 call->ping_time = ktime_get_real();
David Howells8e831342016-09-22 00:29:31 +0100212 set_bit(RXRPC_CALL_PINGING, &call->flags);
213 trace_rxrpc_rtt_tx(call, rxrpc_rtt_tx_ping, serial);
214 }
David Howells26cb02a2016-10-06 08:11:49 +0100215
216 ret = kernel_sendmsg(conn->params.local->socket, &msg, iov, 2, len);
David Howells330bdcf2018-08-08 11:30:02 +0100217 conn->params.peer->last_tx_at = ktime_get_seconds();
David Howells6b47fe12018-05-10 23:26:01 +0100218 if (ret < 0)
219 trace_rxrpc_tx_fail(call->debug_id, serial, ret,
David Howells4764c0d2018-07-23 17:18:37 +0100220 rxrpc_tx_point_call_ack);
221 else
222 trace_rxrpc_tx_packet(call->debug_id, &pkt->whdr,
223 rxrpc_tx_point_call_ack);
David Howellsc7e86ac2018-11-01 13:39:53 +0000224 rxrpc_tx_backoff(call, ret);
David Howells8d94aa32016-09-07 09:19:31 +0100225
David Howells26cb02a2016-10-06 08:11:49 +0100226 if (call->state < RXRPC_CALL_COMPLETE) {
David Howells805b21b2016-09-24 18:05:26 +0100227 if (ret < 0) {
David Howellsa5af7e12016-10-06 08:11:49 +0100228 if (ping)
229 clear_bit(RXRPC_CALL_PINGING, &call->flags);
David Howells248f2192016-09-08 11:10:12 +0100230 rxrpc_propose_ACK(call, pkt->ack.reason,
231 ntohs(pkt->ack.maxSkew),
232 ntohl(pkt->ack.serial),
David Howellsc7e86ac2018-11-01 13:39:53 +0000233 false, true,
David Howells9c7ad432016-09-23 13:50:40 +0100234 rxrpc_propose_ack_retry_tx);
David Howells805b21b2016-09-24 18:05:26 +0100235 } else {
236 spin_lock_bh(&call->lock);
237 if (after(hard_ack, call->ackr_consumed))
238 call->ackr_consumed = hard_ack;
239 if (after(top, call->ackr_seen))
240 call->ackr_seen = top;
241 spin_unlock_bh(&call->lock);
David Howells248f2192016-09-08 11:10:12 +0100242 }
David Howells415f44e2017-11-24 10:18:42 +0000243
244 rxrpc_set_keepalive(call);
David Howells248f2192016-09-08 11:10:12 +0100245 }
246
David Howells8d94aa32016-09-07 09:19:31 +0100247out:
248 rxrpc_put_connection(conn);
249 kfree(pkt);
250 return ret;
251}
252
David Howells5873c082014-02-07 18:58:44 +0000253/*
David Howells26cb02a2016-10-06 08:11:49 +0100254 * Send an ABORT call packet.
255 */
256int rxrpc_send_abort_packet(struct rxrpc_call *call)
257{
258 struct rxrpc_connection *conn = NULL;
259 struct rxrpc_abort_buffer pkt;
260 struct msghdr msg;
261 struct kvec iov[1];
262 rxrpc_serial_t serial;
263 int ret;
264
David Howellsdcbefc32017-11-02 15:06:26 +0000265 /* Don't bother sending aborts for a client call once the server has
266 * hard-ACK'd all of its request data. After that point, we're not
267 * going to stop the operation proceeding, and whilst we might limit
268 * the reply, it's not worth it if we can send a new call on the same
269 * channel instead, thereby closing off this call.
270 */
271 if (rxrpc_is_client_call(call) &&
272 test_bit(RXRPC_CALL_TX_LAST, &call->flags))
273 return 0;
274
David Howells26cb02a2016-10-06 08:11:49 +0100275 spin_lock_bh(&call->lock);
276 if (call->conn)
277 conn = rxrpc_get_connection_maybe(call->conn);
278 spin_unlock_bh(&call->lock);
279 if (!conn)
280 return -ECONNRESET;
281
282 msg.msg_name = &call->peer->srx.transport;
283 msg.msg_namelen = call->peer->srx.transport_len;
284 msg.msg_control = NULL;
285 msg.msg_controllen = 0;
286 msg.msg_flags = 0;
287
288 pkt.whdr.epoch = htonl(conn->proto.epoch);
289 pkt.whdr.cid = htonl(call->cid);
290 pkt.whdr.callNumber = htonl(call->call_id);
291 pkt.whdr.seq = 0;
292 pkt.whdr.type = RXRPC_PACKET_TYPE_ABORT;
293 pkt.whdr.flags = conn->out_clientflag;
294 pkt.whdr.userStatus = 0;
295 pkt.whdr.securityIndex = call->security_ix;
296 pkt.whdr._rsvd = 0;
297 pkt.whdr.serviceId = htons(call->service_id);
298 pkt.abort_code = htonl(call->abort_code);
299
300 iov[0].iov_base = &pkt;
301 iov[0].iov_len = sizeof(pkt);
302
303 serial = atomic_inc_return(&conn->serial);
304 pkt.whdr.serial = htonl(serial);
305
306 ret = kernel_sendmsg(conn->params.local->socket,
307 &msg, iov, 1, sizeof(pkt));
David Howells330bdcf2018-08-08 11:30:02 +0100308 conn->params.peer->last_tx_at = ktime_get_seconds();
David Howells6b47fe12018-05-10 23:26:01 +0100309 if (ret < 0)
310 trace_rxrpc_tx_fail(call->debug_id, serial, ret,
David Howells4764c0d2018-07-23 17:18:37 +0100311 rxrpc_tx_point_call_abort);
312 else
313 trace_rxrpc_tx_packet(call->debug_id, &pkt.whdr,
314 rxrpc_tx_point_call_abort);
David Howellsc7e86ac2018-11-01 13:39:53 +0000315 rxrpc_tx_backoff(call, ret);
David Howells26cb02a2016-10-06 08:11:49 +0100316
317 rxrpc_put_connection(conn);
318 return ret;
319}
320
321/*
David Howells17926a72007-04-26 15:48:28 -0700322 * send a packet through the transport endpoint
323 */
David Howellsa1767072016-09-29 22:37:15 +0100324int rxrpc_send_data_packet(struct rxrpc_call *call, struct sk_buff *skb,
325 bool retrans)
David Howells17926a72007-04-26 15:48:28 -0700326{
David Howells5a924b82016-09-22 00:29:31 +0100327 struct rxrpc_connection *conn = call->conn;
328 struct rxrpc_wire_header whdr;
329 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
David Howells17926a72007-04-26 15:48:28 -0700330 struct msghdr msg;
David Howells5a924b82016-09-22 00:29:31 +0100331 struct kvec iov[2];
332 rxrpc_serial_t serial;
333 size_t len;
David Howells17926a72007-04-26 15:48:28 -0700334 int ret, opt;
335
336 _enter(",{%d}", skb->len);
337
David Howells5a924b82016-09-22 00:29:31 +0100338 /* Each transmission of a Tx packet needs a new serial number */
339 serial = atomic_inc_return(&conn->serial);
David Howells17926a72007-04-26 15:48:28 -0700340
David Howells5a924b82016-09-22 00:29:31 +0100341 whdr.epoch = htonl(conn->proto.epoch);
342 whdr.cid = htonl(call->cid);
343 whdr.callNumber = htonl(call->call_id);
344 whdr.seq = htonl(sp->hdr.seq);
345 whdr.serial = htonl(serial);
346 whdr.type = RXRPC_PACKET_TYPE_DATA;
347 whdr.flags = sp->hdr.flags;
348 whdr.userStatus = 0;
349 whdr.securityIndex = call->security_ix;
350 whdr._rsvd = htons(sp->hdr._rsvd);
351 whdr.serviceId = htons(call->service_id);
352
David Howells4e255722017-06-05 14:30:49 +0100353 if (test_bit(RXRPC_CONN_PROBING_FOR_UPGRADE, &conn->flags) &&
354 sp->hdr.seq == 1)
355 whdr.userStatus = RXRPC_USERSTATUS_SERVICE_UPGRADE;
356
David Howells5a924b82016-09-22 00:29:31 +0100357 iov[0].iov_base = &whdr;
358 iov[0].iov_len = sizeof(whdr);
359 iov[1].iov_base = skb->head;
360 iov[1].iov_len = skb->len;
361 len = iov[0].iov_len + iov[1].iov_len;
362
363 msg.msg_name = &call->peer->srx.transport;
364 msg.msg_namelen = call->peer->srx.transport_len;
David Howells17926a72007-04-26 15:48:28 -0700365 msg.msg_control = NULL;
366 msg.msg_controllen = 0;
367 msg.msg_flags = 0;
368
David Howells57494342016-09-24 18:05:27 +0100369 /* If our RTT cache needs working on, request an ACK. Also request
370 * ACKs if a DATA packet appears to have been lost.
David Howellsb604dd92018-09-27 15:13:08 +0100371 *
372 * However, we mustn't request an ACK on the last reply packet of a
373 * service call, lest OpenAFS incorrectly send us an ACK with some
374 * soft-ACKs in it and then never follow up with a proper hard ACK.
David Howells57494342016-09-24 18:05:27 +0100375 */
David Howellsb604dd92018-09-27 15:13:08 +0100376 if ((!(sp->hdr.flags & RXRPC_LAST_PACKET) ||
377 rxrpc_to_server(sp)
378 ) &&
David Howellsbd1fdf82017-11-24 10:18:42 +0000379 (test_and_clear_bit(RXRPC_CALL_EV_ACK_LOST, &call->events) ||
380 retrans ||
David Howellsbf7d6202016-10-06 08:11:51 +0100381 call->cong_mode == RXRPC_CALL_SLOW_START ||
382 (call->peer->rtt_usage < 3 && sp->hdr.seq & 1) ||
383 ktime_before(ktime_add_ms(call->peer->rtt_last_req, 1000),
384 ktime_get_real())))
David Howells0d4b1032016-09-22 00:29:31 +0100385 whdr.flags |= RXRPC_REQUEST_ACK;
386
David Howells8a681c362016-09-17 10:49:15 +0100387 if (IS_ENABLED(CONFIG_AF_RXRPC_INJECT_LOSS)) {
388 static int lose;
389 if ((lose++ & 7) == 7) {
David Howellsa1767072016-09-29 22:37:15 +0100390 ret = 0;
Arnd Bergmann526949e2019-03-22 15:18:43 +0100391 trace_rxrpc_tx_data(call, sp->hdr.seq, serial,
392 whdr.flags, retrans, true);
393 goto done;
David Howells8a681c362016-09-17 10:49:15 +0100394 }
395 }
396
Arnd Bergmann526949e2019-03-22 15:18:43 +0100397 trace_rxrpc_tx_data(call, sp->hdr.seq, serial, whdr.flags, retrans,
398 false);
David Howells5a924b82016-09-22 00:29:31 +0100399
David Howells17926a72007-04-26 15:48:28 -0700400 /* send the packet with the don't fragment bit set if we currently
401 * think it's small enough */
David Howells5a924b82016-09-22 00:29:31 +0100402 if (iov[1].iov_len >= call->peer->maxdata)
403 goto send_fragmentable;
David Howells17926a72007-04-26 15:48:28 -0700404
David Howells5a924b82016-09-22 00:29:31 +0100405 down_read(&conn->params.local->defrag_sem);
David Howellsb604dd92018-09-27 15:13:08 +0100406
407 sp->hdr.serial = serial;
408 smp_wmb(); /* Set serial before timestamp */
409 skb->tstamp = ktime_get_real();
410
David Howells5a924b82016-09-22 00:29:31 +0100411 /* send the packet by UDP
412 * - returns -EMSGSIZE if UDP would have to fragment the packet
413 * to go out of the interface
414 * - in which case, we'll have processed the ICMP error
415 * message and update the peer record
416 */
417 ret = kernel_sendmsg(conn->params.local->socket, &msg, iov, 2, len);
David Howells330bdcf2018-08-08 11:30:02 +0100418 conn->params.peer->last_tx_at = ktime_get_seconds();
David Howells17926a72007-04-26 15:48:28 -0700419
David Howells5a924b82016-09-22 00:29:31 +0100420 up_read(&conn->params.local->defrag_sem);
David Howells6b47fe12018-05-10 23:26:01 +0100421 if (ret < 0)
422 trace_rxrpc_tx_fail(call->debug_id, serial, ret,
David Howells4764c0d2018-07-23 17:18:37 +0100423 rxrpc_tx_point_call_data_nofrag);
424 else
425 trace_rxrpc_tx_packet(call->debug_id, &whdr,
426 rxrpc_tx_point_call_data_nofrag);
David Howellsc7e86ac2018-11-01 13:39:53 +0000427 rxrpc_tx_backoff(call, ret);
David Howells5a924b82016-09-22 00:29:31 +0100428 if (ret == -EMSGSIZE)
429 goto send_fragmentable;
430
431done:
David Howells50235c42016-09-22 00:29:31 +0100432 if (ret >= 0) {
David Howells0d4b1032016-09-22 00:29:31 +0100433 if (whdr.flags & RXRPC_REQUEST_ACK) {
David Howellsb604dd92018-09-27 15:13:08 +0100434 call->peer->rtt_last_req = skb->tstamp;
David Howells50235c42016-09-22 00:29:31 +0100435 trace_rxrpc_rtt_tx(call, rxrpc_rtt_tx_data, serial);
David Howellsbd1fdf82017-11-24 10:18:42 +0000436 if (call->peer->rtt_usage > 1) {
437 unsigned long nowj = jiffies, ack_lost_at;
438
439 ack_lost_at = nsecs_to_jiffies(2 * call->peer->rtt);
440 if (ack_lost_at < 1)
441 ack_lost_at = 1;
442
443 ack_lost_at += nowj;
444 WRITE_ONCE(call->ack_lost_at, ack_lost_at);
445 rxrpc_reduce_call_timer(call, ack_lost_at, nowj,
446 rxrpc_timer_set_for_lost_ack);
447 }
David Howells0d4b1032016-09-22 00:29:31 +0100448 }
David Howellsc54e43d2018-05-10 23:26:00 +0100449
450 if (sp->hdr.seq == 1 &&
451 !test_and_set_bit(RXRPC_CALL_BEGAN_RX_TIMER,
452 &call->flags)) {
453 unsigned long nowj = jiffies, expect_rx_by;
454
455 expect_rx_by = nowj + call->next_rx_timo;
456 WRITE_ONCE(call->expect_rx_by, expect_rx_by);
457 rxrpc_reduce_call_timer(call, expect_rx_by, nowj,
458 rxrpc_timer_set_for_normal);
459 }
David Howells415f44e2017-11-24 10:18:42 +0000460
David Howellsc7e86ac2018-11-01 13:39:53 +0000461 rxrpc_set_keepalive(call);
462 } else {
463 /* Cancel the call if the initial transmission fails,
464 * particularly if that's due to network routing issues that
465 * aren't going away anytime soon. The layer above can arrange
466 * the retransmission.
467 */
468 if (!test_and_set_bit(RXRPC_CALL_BEGAN_RX_TIMER, &call->flags))
469 rxrpc_set_call_completion(call, RXRPC_CALL_LOCAL_ERROR,
470 RX_USER_ABORT, ret);
471 }
David Howells415f44e2017-11-24 10:18:42 +0000472
David Howells5a924b82016-09-22 00:29:31 +0100473 _leave(" = %d [%u]", ret, call->peer->maxdata);
474 return ret;
David Howells17926a72007-04-26 15:48:28 -0700475
476send_fragmentable:
477 /* attempt to send this message with fragmentation enabled */
478 _debug("send fragment");
479
David Howells985a5c82016-06-17 11:53:37 +0100480 down_write(&conn->params.local->defrag_sem);
David Howells17926a72007-04-26 15:48:28 -0700481
David Howellsb604dd92018-09-27 15:13:08 +0100482 sp->hdr.serial = serial;
483 smp_wmb(); /* Set serial before timestamp */
484 skb->tstamp = ktime_get_real();
485
David Howells985a5c82016-06-17 11:53:37 +0100486 switch (conn->params.local->srx.transport.family) {
487 case AF_INET:
488 opt = IP_PMTUDISC_DONT;
489 ret = kernel_setsockopt(conn->params.local->socket,
490 SOL_IP, IP_MTU_DISCOVER,
491 (char *)&opt, sizeof(opt));
492 if (ret == 0) {
David Howells5a924b82016-09-22 00:29:31 +0100493 ret = kernel_sendmsg(conn->params.local->socket, &msg,
494 iov, 2, len);
David Howells330bdcf2018-08-08 11:30:02 +0100495 conn->params.peer->last_tx_at = ktime_get_seconds();
David Howells985a5c82016-06-17 11:53:37 +0100496
497 opt = IP_PMTUDISC_DO;
498 kernel_setsockopt(conn->params.local->socket, SOL_IP,
499 IP_MTU_DISCOVER,
500 (char *)&opt, sizeof(opt));
501 }
502 break;
David Howells75b54cb2016-09-13 08:49:05 +0100503
David Howellsd1912742016-09-17 07:26:01 +0100504#ifdef CONFIG_AF_RXRPC_IPV6
David Howells75b54cb2016-09-13 08:49:05 +0100505 case AF_INET6:
506 opt = IPV6_PMTUDISC_DONT;
507 ret = kernel_setsockopt(conn->params.local->socket,
508 SOL_IPV6, IPV6_MTU_DISCOVER,
509 (char *)&opt, sizeof(opt));
510 if (ret == 0) {
511 ret = kernel_sendmsg(conn->params.local->socket, &msg,
David Howells93c62c42018-02-22 14:38:14 +0000512 iov, 2, len);
David Howells330bdcf2018-08-08 11:30:02 +0100513 conn->params.peer->last_tx_at = ktime_get_seconds();
David Howells75b54cb2016-09-13 08:49:05 +0100514
515 opt = IPV6_PMTUDISC_DO;
516 kernel_setsockopt(conn->params.local->socket,
517 SOL_IPV6, IPV6_MTU_DISCOVER,
518 (char *)&opt, sizeof(opt));
519 }
520 break;
David Howellsd1912742016-09-17 07:26:01 +0100521#endif
David Howells3427beb2019-07-02 15:55:28 +0100522
523 default:
524 BUG();
David Howells17926a72007-04-26 15:48:28 -0700525 }
526
David Howells6b47fe12018-05-10 23:26:01 +0100527 if (ret < 0)
528 trace_rxrpc_tx_fail(call->debug_id, serial, ret,
David Howells4764c0d2018-07-23 17:18:37 +0100529 rxrpc_tx_point_call_data_frag);
530 else
531 trace_rxrpc_tx_packet(call->debug_id, &whdr,
532 rxrpc_tx_point_call_data_frag);
David Howellsc7e86ac2018-11-01 13:39:53 +0000533 rxrpc_tx_backoff(call, ret);
David Howells6b47fe12018-05-10 23:26:01 +0100534
David Howells985a5c82016-06-17 11:53:37 +0100535 up_write(&conn->params.local->defrag_sem);
David Howells5a924b82016-09-22 00:29:31 +0100536 goto done;
David Howells17926a72007-04-26 15:48:28 -0700537}
David Howells248f2192016-09-08 11:10:12 +0100538
539/*
540 * reject packets through the local endpoint
541 */
542void rxrpc_reject_packets(struct rxrpc_local *local)
543{
David Howells1c2bc7b2016-09-13 08:49:05 +0100544 struct sockaddr_rxrpc srx;
David Howells248f2192016-09-08 11:10:12 +0100545 struct rxrpc_skb_priv *sp;
546 struct rxrpc_wire_header whdr;
547 struct sk_buff *skb;
548 struct msghdr msg;
549 struct kvec iov[2];
550 size_t size;
551 __be32 code;
David Howellsece64fe2018-09-27 15:13:08 +0100552 int ret, ioc;
David Howells248f2192016-09-08 11:10:12 +0100553
554 _enter("%d", local->debug_id);
555
556 iov[0].iov_base = &whdr;
557 iov[0].iov_len = sizeof(whdr);
558 iov[1].iov_base = &code;
559 iov[1].iov_len = sizeof(code);
David Howells248f2192016-09-08 11:10:12 +0100560
David Howells1c2bc7b2016-09-13 08:49:05 +0100561 msg.msg_name = &srx.transport;
David Howells248f2192016-09-08 11:10:12 +0100562 msg.msg_control = NULL;
563 msg.msg_controllen = 0;
564 msg.msg_flags = 0;
565
David Howells248f2192016-09-08 11:10:12 +0100566 memset(&whdr, 0, sizeof(whdr));
David Howells248f2192016-09-08 11:10:12 +0100567
568 while ((skb = skb_dequeue(&local->reject_queue))) {
David Howells71f3ca42016-09-17 10:49:14 +0100569 rxrpc_see_skb(skb, rxrpc_skb_rx_seen);
David Howells248f2192016-09-08 11:10:12 +0100570 sp = rxrpc_skb(skb);
David Howells1c2bc7b2016-09-13 08:49:05 +0100571
David Howellsece64fe2018-09-27 15:13:08 +0100572 switch (skb->mark) {
573 case RXRPC_SKB_MARK_REJECT_BUSY:
574 whdr.type = RXRPC_PACKET_TYPE_BUSY;
575 size = sizeof(whdr);
576 ioc = 1;
577 break;
578 case RXRPC_SKB_MARK_REJECT_ABORT:
579 whdr.type = RXRPC_PACKET_TYPE_ABORT;
580 code = htonl(skb->priority);
581 size = sizeof(whdr) + sizeof(code);
582 ioc = 2;
583 break;
584 default:
585 rxrpc_free_skb(skb, rxrpc_skb_rx_freed);
586 continue;
587 }
588
David Howells5a790b72018-10-04 09:32:28 +0100589 if (rxrpc_extract_addr_from_skb(&srx, skb) == 0) {
David Howells1c2bc7b2016-09-13 08:49:05 +0100590 msg.msg_namelen = srx.transport_len;
591
David Howells248f2192016-09-08 11:10:12 +0100592 whdr.epoch = htonl(sp->hdr.epoch);
593 whdr.cid = htonl(sp->hdr.cid);
594 whdr.callNumber = htonl(sp->hdr.callNumber);
595 whdr.serviceId = htons(sp->hdr.serviceId);
596 whdr.flags = sp->hdr.flags;
597 whdr.flags ^= RXRPC_CLIENT_INITIATED;
598 whdr.flags &= RXRPC_CLIENT_INITIATED;
599
YueHaibingd6672a52018-10-11 22:32:39 +0100600 ret = kernel_sendmsg(local->socket, &msg,
601 iov, ioc, size);
David Howells6b47fe12018-05-10 23:26:01 +0100602 if (ret < 0)
603 trace_rxrpc_tx_fail(local->debug_id, 0, ret,
David Howells4764c0d2018-07-23 17:18:37 +0100604 rxrpc_tx_point_reject);
605 else
606 trace_rxrpc_tx_packet(local->debug_id, &whdr,
607 rxrpc_tx_point_reject);
David Howells248f2192016-09-08 11:10:12 +0100608 }
609
David Howells71f3ca42016-09-17 10:49:14 +0100610 rxrpc_free_skb(skb, rxrpc_skb_rx_freed);
David Howells248f2192016-09-08 11:10:12 +0100611 }
612
613 _leave("");
614}
David Howellsace45be2018-03-30 21:04:43 +0100615
616/*
617 * Send a VERSION reply to a peer as a keepalive.
618 */
619void rxrpc_send_keepalive(struct rxrpc_peer *peer)
620{
621 struct rxrpc_wire_header whdr;
622 struct msghdr msg;
623 struct kvec iov[2];
624 size_t len;
625 int ret;
626
627 _enter("");
628
629 msg.msg_name = &peer->srx.transport;
630 msg.msg_namelen = peer->srx.transport_len;
631 msg.msg_control = NULL;
632 msg.msg_controllen = 0;
633 msg.msg_flags = 0;
634
635 whdr.epoch = htonl(peer->local->rxnet->epoch);
636 whdr.cid = 0;
637 whdr.callNumber = 0;
638 whdr.seq = 0;
639 whdr.serial = 0;
640 whdr.type = RXRPC_PACKET_TYPE_VERSION; /* Not client-initiated */
641 whdr.flags = RXRPC_LAST_PACKET;
642 whdr.userStatus = 0;
643 whdr.securityIndex = 0;
644 whdr._rsvd = 0;
645 whdr.serviceId = 0;
646
647 iov[0].iov_base = &whdr;
648 iov[0].iov_len = sizeof(whdr);
649 iov[1].iov_base = (char *)rxrpc_keepalive_string;
650 iov[1].iov_len = sizeof(rxrpc_keepalive_string);
651
652 len = iov[0].iov_len + iov[1].iov_len;
653
654 _proto("Tx VERSION (keepalive)");
655
656 ret = kernel_sendmsg(peer->local->socket, &msg, iov, 2, len);
657 if (ret < 0)
David Howells6b47fe12018-05-10 23:26:01 +0100658 trace_rxrpc_tx_fail(peer->debug_id, 0, ret,
David Howells4764c0d2018-07-23 17:18:37 +0100659 rxrpc_tx_point_version_keepalive);
660 else
661 trace_rxrpc_tx_packet(peer->debug_id, &whdr,
662 rxrpc_tx_point_version_keepalive);
David Howellsace45be2018-03-30 21:04:43 +0100663
David Howells330bdcf2018-08-08 11:30:02 +0100664 peer->last_tx_at = ktime_get_seconds();
David Howellsace45be2018-03-30 21:04:43 +0100665 _leave("");
666}