blob: f03de1c59ba37678f36f3a5c0778f3f3f9274757 [file] [log] [blame]
David Howells17926a72007-04-26 15:48:28 -07001/* RxRPC packet transmission
2 *
3 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
Joe Perches9b6d5392016-06-02 12:08:52 -070012#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13
David Howells17926a72007-04-26 15:48:28 -070014#include <linux/net.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/gfp.h>
David Howells17926a72007-04-26 15:48:28 -070016#include <linux/skbuff.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040017#include <linux/export.h>
David Howells17926a72007-04-26 15:48:28 -070018#include <net/sock.h>
19#include <net/af_rxrpc.h>
20#include "ar-internal.h"
21
David Howells26cb02a2016-10-06 08:11:49 +010022struct rxrpc_ack_buffer {
David Howells8d94aa32016-09-07 09:19:31 +010023 struct rxrpc_wire_header whdr;
David Howells26cb02a2016-10-06 08:11:49 +010024 struct rxrpc_ackpacket ack;
25 u8 acks[255];
26 u8 pad[3];
David Howells8d94aa32016-09-07 09:19:31 +010027 struct rxrpc_ackinfo ackinfo;
28};
29
David Howells26cb02a2016-10-06 08:11:49 +010030struct rxrpc_abort_buffer {
31 struct rxrpc_wire_header whdr;
32 __be32 abort_code;
33};
34
David Howellsace45be2018-03-30 21:04:43 +010035static const char rxrpc_keepalive_string[] = "";
36
David Howells8d94aa32016-09-07 09:19:31 +010037/*
David Howells415f44e2017-11-24 10:18:42 +000038 * Arrange for a keepalive ping a certain time after we last transmitted. This
39 * lets the far side know we're still interested in this call and helps keep
40 * the route through any intervening firewall open.
41 *
42 * Receiving a response to the ping will prevent the ->expect_rx_by timer from
43 * expiring.
44 */
45static void rxrpc_set_keepalive(struct rxrpc_call *call)
46{
47 unsigned long now = jiffies, keepalive_at = call->next_rx_timo / 6;
48
49 keepalive_at += now;
50 WRITE_ONCE(call->keepalive_at, keepalive_at);
51 rxrpc_reduce_call_timer(call, keepalive_at, now,
52 rxrpc_timer_set_for_keepalive);
53}
54
55/*
David Howells8d94aa32016-09-07 09:19:31 +010056 * Fill out an ACK packet.
57 */
David Howells1457cc42017-11-02 15:06:55 +000058static size_t rxrpc_fill_out_ack(struct rxrpc_connection *conn,
59 struct rxrpc_call *call,
David Howells26cb02a2016-10-06 08:11:49 +010060 struct rxrpc_ack_buffer *pkt,
David Howells805b21b2016-09-24 18:05:26 +010061 rxrpc_seq_t *_hard_ack,
David Howellsa5af7e12016-10-06 08:11:49 +010062 rxrpc_seq_t *_top,
63 u8 reason)
David Howells8d94aa32016-09-07 09:19:31 +010064{
David Howellsf3639df2016-09-17 10:49:13 +010065 rxrpc_serial_t serial;
David Howells248f2192016-09-08 11:10:12 +010066 rxrpc_seq_t hard_ack, top, seq;
67 int ix;
David Howells8d94aa32016-09-07 09:19:31 +010068 u32 mtu, jmax;
69 u8 *ackp = pkt->acks;
70
David Howells248f2192016-09-08 11:10:12 +010071 /* Barrier against rxrpc_input_data(). */
David Howellsf3639df2016-09-17 10:49:13 +010072 serial = call->ackr_serial;
David Howells248f2192016-09-08 11:10:12 +010073 hard_ack = READ_ONCE(call->rx_hard_ack);
74 top = smp_load_acquire(&call->rx_top);
David Howells805b21b2016-09-24 18:05:26 +010075 *_hard_ack = hard_ack;
76 *_top = top;
David Howells248f2192016-09-08 11:10:12 +010077
David Howells8d94aa32016-09-07 09:19:31 +010078 pkt->ack.bufferSpace = htons(8);
David Howells248f2192016-09-08 11:10:12 +010079 pkt->ack.maxSkew = htons(call->ackr_skew);
80 pkt->ack.firstPacket = htonl(hard_ack + 1);
David Howells8d94aa32016-09-07 09:19:31 +010081 pkt->ack.previousPacket = htonl(call->ackr_prev_seq);
David Howellsf3639df2016-09-17 10:49:13 +010082 pkt->ack.serial = htonl(serial);
David Howellsa5af7e12016-10-06 08:11:49 +010083 pkt->ack.reason = reason;
David Howells248f2192016-09-08 11:10:12 +010084 pkt->ack.nAcks = top - hard_ack;
David Howells8d94aa32016-09-07 09:19:31 +010085
David Howellsa5af7e12016-10-06 08:11:49 +010086 if (reason == RXRPC_ACK_PING)
David Howells8e831342016-09-22 00:29:31 +010087 pkt->whdr.flags |= RXRPC_REQUEST_ACK;
88
David Howells248f2192016-09-08 11:10:12 +010089 if (after(top, hard_ack)) {
90 seq = hard_ack + 1;
91 do {
92 ix = seq & RXRPC_RXTX_BUFF_MASK;
93 if (call->rxtx_buffer[ix])
94 *ackp++ = RXRPC_ACK_TYPE_ACK;
95 else
96 *ackp++ = RXRPC_ACK_TYPE_NACK;
97 seq++;
98 } while (before_eq(seq, top));
99 }
100
David Howells1457cc42017-11-02 15:06:55 +0000101 mtu = conn->params.peer->if_mtu;
102 mtu -= conn->params.peer->hdrsize;
David Howells75e42122016-09-13 22:36:22 +0100103 jmax = (call->nr_jumbo_bad > 3) ? 1 : rxrpc_rx_jumbo_max;
David Howells8d94aa32016-09-07 09:19:31 +0100104 pkt->ackinfo.rxMTU = htonl(rxrpc_rx_mtu);
105 pkt->ackinfo.maxMTU = htonl(mtu);
David Howells75e42122016-09-13 22:36:22 +0100106 pkt->ackinfo.rwind = htonl(call->rx_winsize);
David Howells8d94aa32016-09-07 09:19:31 +0100107 pkt->ackinfo.jumbo_max = htonl(jmax);
108
109 *ackp++ = 0;
110 *ackp++ = 0;
111 *ackp++ = 0;
David Howells248f2192016-09-08 11:10:12 +0100112 return top - hard_ack + 3;
David Howells8d94aa32016-09-07 09:19:31 +0100113}
114
115/*
David Howells26cb02a2016-10-06 08:11:49 +0100116 * Send an ACK call packet.
David Howells8d94aa32016-09-07 09:19:31 +0100117 */
David Howellsbd1fdf82017-11-24 10:18:42 +0000118int rxrpc_send_ack_packet(struct rxrpc_call *call, bool ping,
119 rxrpc_serial_t *_serial)
David Howells8d94aa32016-09-07 09:19:31 +0100120{
121 struct rxrpc_connection *conn = NULL;
David Howells26cb02a2016-10-06 08:11:49 +0100122 struct rxrpc_ack_buffer *pkt;
David Howells8d94aa32016-09-07 09:19:31 +0100123 struct msghdr msg;
124 struct kvec iov[2];
125 rxrpc_serial_t serial;
David Howells805b21b2016-09-24 18:05:26 +0100126 rxrpc_seq_t hard_ack, top;
David Howellsace45be2018-03-30 21:04:43 +0100127 ktime_t now;
David Howells8d94aa32016-09-07 09:19:31 +0100128 size_t len, n;
David Howells26cb02a2016-10-06 08:11:49 +0100129 int ret;
David Howellsa5af7e12016-10-06 08:11:49 +0100130 u8 reason;
David Howells8d94aa32016-09-07 09:19:31 +0100131
132 spin_lock_bh(&call->lock);
133 if (call->conn)
134 conn = rxrpc_get_connection_maybe(call->conn);
135 spin_unlock_bh(&call->lock);
136 if (!conn)
137 return -ECONNRESET;
138
139 pkt = kzalloc(sizeof(*pkt), GFP_KERNEL);
140 if (!pkt) {
141 rxrpc_put_connection(conn);
142 return -ENOMEM;
143 }
144
David Howells8d94aa32016-09-07 09:19:31 +0100145 msg.msg_name = &call->peer->srx.transport;
146 msg.msg_namelen = call->peer->srx.transport_len;
147 msg.msg_control = NULL;
148 msg.msg_controllen = 0;
149 msg.msg_flags = 0;
150
151 pkt->whdr.epoch = htonl(conn->proto.epoch);
152 pkt->whdr.cid = htonl(call->cid);
153 pkt->whdr.callNumber = htonl(call->call_id);
154 pkt->whdr.seq = 0;
David Howells26cb02a2016-10-06 08:11:49 +0100155 pkt->whdr.type = RXRPC_PACKET_TYPE_ACK;
156 pkt->whdr.flags = RXRPC_SLOW_START_OK | conn->out_clientflag;
David Howells8d94aa32016-09-07 09:19:31 +0100157 pkt->whdr.userStatus = 0;
158 pkt->whdr.securityIndex = call->security_ix;
159 pkt->whdr._rsvd = 0;
160 pkt->whdr.serviceId = htons(call->service_id);
161
David Howells26cb02a2016-10-06 08:11:49 +0100162 spin_lock_bh(&call->lock);
David Howellsa5af7e12016-10-06 08:11:49 +0100163 if (ping) {
164 reason = RXRPC_ACK_PING;
165 } else {
166 reason = call->ackr_reason;
167 if (!call->ackr_reason) {
168 spin_unlock_bh(&call->lock);
169 ret = 0;
170 goto out;
171 }
172 call->ackr_reason = 0;
David Howells8d94aa32016-09-07 09:19:31 +0100173 }
David Howells1457cc42017-11-02 15:06:55 +0000174 n = rxrpc_fill_out_ack(conn, call, pkt, &hard_ack, &top, reason);
David Howells26cb02a2016-10-06 08:11:49 +0100175
176 spin_unlock_bh(&call->lock);
177
178 iov[0].iov_base = pkt;
179 iov[0].iov_len = sizeof(pkt->whdr) + sizeof(pkt->ack) + n;
180 iov[1].iov_base = &pkt->ackinfo;
181 iov[1].iov_len = sizeof(pkt->ackinfo);
182 len = iov[0].iov_len + iov[1].iov_len;
David Howells8d94aa32016-09-07 09:19:31 +0100183
David Howellsb86e2182016-09-23 15:08:48 +0100184 serial = atomic_inc_return(&conn->serial);
185 pkt->whdr.serial = htonl(serial);
David Howells26cb02a2016-10-06 08:11:49 +0100186 trace_rxrpc_tx_ack(call, serial,
187 ntohl(pkt->ack.firstPacket),
188 ntohl(pkt->ack.serial),
189 pkt->ack.reason, pkt->ack.nAcks);
David Howellsbd1fdf82017-11-24 10:18:42 +0000190 if (_serial)
191 *_serial = serial;
David Howellsb86e2182016-09-23 15:08:48 +0100192
David Howells8e831342016-09-22 00:29:31 +0100193 if (ping) {
David Howellsa5af7e12016-10-06 08:11:49 +0100194 call->ping_serial = serial;
David Howells8e831342016-09-22 00:29:31 +0100195 smp_wmb();
196 /* We need to stick a time in before we send the packet in case
197 * the reply gets back before kernel_sendmsg() completes - but
198 * asking UDP to send the packet can take a relatively long
199 * time, so we update the time after, on the assumption that
200 * the packet transmission is more likely to happen towards the
201 * end of the kernel_sendmsg() call.
202 */
David Howellsa5af7e12016-10-06 08:11:49 +0100203 call->ping_time = ktime_get_real();
David Howells8e831342016-09-22 00:29:31 +0100204 set_bit(RXRPC_CALL_PINGING, &call->flags);
205 trace_rxrpc_rtt_tx(call, rxrpc_rtt_tx_ping, serial);
206 }
David Howells26cb02a2016-10-06 08:11:49 +0100207
208 ret = kernel_sendmsg(conn->params.local->socket, &msg, iov, 2, len);
David Howellsace45be2018-03-30 21:04:43 +0100209 now = ktime_get_real();
David Howells8e831342016-09-22 00:29:31 +0100210 if (ping)
David Howellsace45be2018-03-30 21:04:43 +0100211 call->ping_time = now;
212 conn->params.peer->last_tx_at = ktime_get_real();
David Howells6b47fe12018-05-10 23:26:01 +0100213 if (ret < 0)
214 trace_rxrpc_tx_fail(call->debug_id, serial, ret,
215 rxrpc_tx_fail_call_ack);
David Howells8d94aa32016-09-07 09:19:31 +0100216
David Howells26cb02a2016-10-06 08:11:49 +0100217 if (call->state < RXRPC_CALL_COMPLETE) {
David Howells805b21b2016-09-24 18:05:26 +0100218 if (ret < 0) {
David Howellsa5af7e12016-10-06 08:11:49 +0100219 if (ping)
220 clear_bit(RXRPC_CALL_PINGING, &call->flags);
David Howells248f2192016-09-08 11:10:12 +0100221 rxrpc_propose_ACK(call, pkt->ack.reason,
222 ntohs(pkt->ack.maxSkew),
223 ntohl(pkt->ack.serial),
David Howells9c7ad432016-09-23 13:50:40 +0100224 true, true,
225 rxrpc_propose_ack_retry_tx);
David Howells805b21b2016-09-24 18:05:26 +0100226 } else {
227 spin_lock_bh(&call->lock);
228 if (after(hard_ack, call->ackr_consumed))
229 call->ackr_consumed = hard_ack;
230 if (after(top, call->ackr_seen))
231 call->ackr_seen = top;
232 spin_unlock_bh(&call->lock);
David Howells248f2192016-09-08 11:10:12 +0100233 }
David Howells415f44e2017-11-24 10:18:42 +0000234
235 rxrpc_set_keepalive(call);
David Howells248f2192016-09-08 11:10:12 +0100236 }
237
David Howells8d94aa32016-09-07 09:19:31 +0100238out:
239 rxrpc_put_connection(conn);
240 kfree(pkt);
241 return ret;
242}
243
David Howells5873c082014-02-07 18:58:44 +0000244/*
David Howells26cb02a2016-10-06 08:11:49 +0100245 * Send an ABORT call packet.
246 */
247int rxrpc_send_abort_packet(struct rxrpc_call *call)
248{
249 struct rxrpc_connection *conn = NULL;
250 struct rxrpc_abort_buffer pkt;
251 struct msghdr msg;
252 struct kvec iov[1];
253 rxrpc_serial_t serial;
254 int ret;
255
David Howellsdcbefc32017-11-02 15:06:26 +0000256 /* Don't bother sending aborts for a client call once the server has
257 * hard-ACK'd all of its request data. After that point, we're not
258 * going to stop the operation proceeding, and whilst we might limit
259 * the reply, it's not worth it if we can send a new call on the same
260 * channel instead, thereby closing off this call.
261 */
262 if (rxrpc_is_client_call(call) &&
263 test_bit(RXRPC_CALL_TX_LAST, &call->flags))
264 return 0;
265
David Howells26cb02a2016-10-06 08:11:49 +0100266 spin_lock_bh(&call->lock);
267 if (call->conn)
268 conn = rxrpc_get_connection_maybe(call->conn);
269 spin_unlock_bh(&call->lock);
270 if (!conn)
271 return -ECONNRESET;
272
273 msg.msg_name = &call->peer->srx.transport;
274 msg.msg_namelen = call->peer->srx.transport_len;
275 msg.msg_control = NULL;
276 msg.msg_controllen = 0;
277 msg.msg_flags = 0;
278
279 pkt.whdr.epoch = htonl(conn->proto.epoch);
280 pkt.whdr.cid = htonl(call->cid);
281 pkt.whdr.callNumber = htonl(call->call_id);
282 pkt.whdr.seq = 0;
283 pkt.whdr.type = RXRPC_PACKET_TYPE_ABORT;
284 pkt.whdr.flags = conn->out_clientflag;
285 pkt.whdr.userStatus = 0;
286 pkt.whdr.securityIndex = call->security_ix;
287 pkt.whdr._rsvd = 0;
288 pkt.whdr.serviceId = htons(call->service_id);
289 pkt.abort_code = htonl(call->abort_code);
290
291 iov[0].iov_base = &pkt;
292 iov[0].iov_len = sizeof(pkt);
293
294 serial = atomic_inc_return(&conn->serial);
295 pkt.whdr.serial = htonl(serial);
296
297 ret = kernel_sendmsg(conn->params.local->socket,
298 &msg, iov, 1, sizeof(pkt));
David Howellsace45be2018-03-30 21:04:43 +0100299 conn->params.peer->last_tx_at = ktime_get_real();
David Howells6b47fe12018-05-10 23:26:01 +0100300 if (ret < 0)
301 trace_rxrpc_tx_fail(call->debug_id, serial, ret,
302 rxrpc_tx_fail_call_abort);
303
David Howells26cb02a2016-10-06 08:11:49 +0100304
305 rxrpc_put_connection(conn);
306 return ret;
307}
308
309/*
David Howells17926a72007-04-26 15:48:28 -0700310 * send a packet through the transport endpoint
311 */
David Howellsa1767072016-09-29 22:37:15 +0100312int rxrpc_send_data_packet(struct rxrpc_call *call, struct sk_buff *skb,
313 bool retrans)
David Howells17926a72007-04-26 15:48:28 -0700314{
David Howells5a924b82016-09-22 00:29:31 +0100315 struct rxrpc_connection *conn = call->conn;
316 struct rxrpc_wire_header whdr;
317 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
David Howells17926a72007-04-26 15:48:28 -0700318 struct msghdr msg;
David Howells5a924b82016-09-22 00:29:31 +0100319 struct kvec iov[2];
320 rxrpc_serial_t serial;
321 size_t len;
David Howellsa1767072016-09-29 22:37:15 +0100322 bool lost = false;
David Howells17926a72007-04-26 15:48:28 -0700323 int ret, opt;
324
325 _enter(",{%d}", skb->len);
326
David Howells5a924b82016-09-22 00:29:31 +0100327 /* Each transmission of a Tx packet needs a new serial number */
328 serial = atomic_inc_return(&conn->serial);
David Howells17926a72007-04-26 15:48:28 -0700329
David Howells5a924b82016-09-22 00:29:31 +0100330 whdr.epoch = htonl(conn->proto.epoch);
331 whdr.cid = htonl(call->cid);
332 whdr.callNumber = htonl(call->call_id);
333 whdr.seq = htonl(sp->hdr.seq);
334 whdr.serial = htonl(serial);
335 whdr.type = RXRPC_PACKET_TYPE_DATA;
336 whdr.flags = sp->hdr.flags;
337 whdr.userStatus = 0;
338 whdr.securityIndex = call->security_ix;
339 whdr._rsvd = htons(sp->hdr._rsvd);
340 whdr.serviceId = htons(call->service_id);
341
David Howells4e255722017-06-05 14:30:49 +0100342 if (test_bit(RXRPC_CONN_PROBING_FOR_UPGRADE, &conn->flags) &&
343 sp->hdr.seq == 1)
344 whdr.userStatus = RXRPC_USERSTATUS_SERVICE_UPGRADE;
345
David Howells5a924b82016-09-22 00:29:31 +0100346 iov[0].iov_base = &whdr;
347 iov[0].iov_len = sizeof(whdr);
348 iov[1].iov_base = skb->head;
349 iov[1].iov_len = skb->len;
350 len = iov[0].iov_len + iov[1].iov_len;
351
352 msg.msg_name = &call->peer->srx.transport;
353 msg.msg_namelen = call->peer->srx.transport_len;
David Howells17926a72007-04-26 15:48:28 -0700354 msg.msg_control = NULL;
355 msg.msg_controllen = 0;
356 msg.msg_flags = 0;
357
David Howells57494342016-09-24 18:05:27 +0100358 /* If our RTT cache needs working on, request an ACK. Also request
359 * ACKs if a DATA packet appears to have been lost.
360 */
David Howellsbf7d6202016-10-06 08:11:51 +0100361 if (!(sp->hdr.flags & RXRPC_LAST_PACKET) &&
David Howellsbd1fdf82017-11-24 10:18:42 +0000362 (test_and_clear_bit(RXRPC_CALL_EV_ACK_LOST, &call->events) ||
363 retrans ||
David Howellsbf7d6202016-10-06 08:11:51 +0100364 call->cong_mode == RXRPC_CALL_SLOW_START ||
365 (call->peer->rtt_usage < 3 && sp->hdr.seq & 1) ||
366 ktime_before(ktime_add_ms(call->peer->rtt_last_req, 1000),
367 ktime_get_real())))
David Howells0d4b1032016-09-22 00:29:31 +0100368 whdr.flags |= RXRPC_REQUEST_ACK;
369
David Howells8a681c362016-09-17 10:49:15 +0100370 if (IS_ENABLED(CONFIG_AF_RXRPC_INJECT_LOSS)) {
371 static int lose;
372 if ((lose++ & 7) == 7) {
David Howellsa1767072016-09-29 22:37:15 +0100373 ret = 0;
374 lost = true;
375 goto done;
David Howells8a681c362016-09-17 10:49:15 +0100376 }
377 }
378
David Howells5a924b82016-09-22 00:29:31 +0100379 _proto("Tx DATA %%%u { #%u }", serial, sp->hdr.seq);
380
David Howells17926a72007-04-26 15:48:28 -0700381 /* send the packet with the don't fragment bit set if we currently
382 * think it's small enough */
David Howells5a924b82016-09-22 00:29:31 +0100383 if (iov[1].iov_len >= call->peer->maxdata)
384 goto send_fragmentable;
David Howells17926a72007-04-26 15:48:28 -0700385
David Howells5a924b82016-09-22 00:29:31 +0100386 down_read(&conn->params.local->defrag_sem);
387 /* send the packet by UDP
388 * - returns -EMSGSIZE if UDP would have to fragment the packet
389 * to go out of the interface
390 * - in which case, we'll have processed the ICMP error
391 * message and update the peer record
392 */
393 ret = kernel_sendmsg(conn->params.local->socket, &msg, iov, 2, len);
David Howellsace45be2018-03-30 21:04:43 +0100394 conn->params.peer->last_tx_at = ktime_get_real();
David Howells17926a72007-04-26 15:48:28 -0700395
David Howells5a924b82016-09-22 00:29:31 +0100396 up_read(&conn->params.local->defrag_sem);
David Howells6b47fe12018-05-10 23:26:01 +0100397 if (ret < 0)
398 trace_rxrpc_tx_fail(call->debug_id, serial, ret,
399 rxrpc_tx_fail_call_data_nofrag);
David Howells5a924b82016-09-22 00:29:31 +0100400 if (ret == -EMSGSIZE)
401 goto send_fragmentable;
402
403done:
David Howellsa1767072016-09-29 22:37:15 +0100404 trace_rxrpc_tx_data(call, sp->hdr.seq, serial, whdr.flags,
405 retrans, lost);
David Howells50235c42016-09-22 00:29:31 +0100406 if (ret >= 0) {
David Howells0d4b1032016-09-22 00:29:31 +0100407 ktime_t now = ktime_get_real();
408 skb->tstamp = now;
David Howells50235c42016-09-22 00:29:31 +0100409 smp_wmb();
David Howells5a924b82016-09-22 00:29:31 +0100410 sp->hdr.serial = serial;
David Howells0d4b1032016-09-22 00:29:31 +0100411 if (whdr.flags & RXRPC_REQUEST_ACK) {
412 call->peer->rtt_last_req = now;
David Howells50235c42016-09-22 00:29:31 +0100413 trace_rxrpc_rtt_tx(call, rxrpc_rtt_tx_data, serial);
David Howellsbd1fdf82017-11-24 10:18:42 +0000414 if (call->peer->rtt_usage > 1) {
415 unsigned long nowj = jiffies, ack_lost_at;
416
417 ack_lost_at = nsecs_to_jiffies(2 * call->peer->rtt);
418 if (ack_lost_at < 1)
419 ack_lost_at = 1;
420
421 ack_lost_at += nowj;
422 WRITE_ONCE(call->ack_lost_at, ack_lost_at);
423 rxrpc_reduce_call_timer(call, ack_lost_at, nowj,
424 rxrpc_timer_set_for_lost_ack);
425 }
David Howells0d4b1032016-09-22 00:29:31 +0100426 }
David Howellsc54e43d2018-05-10 23:26:00 +0100427
428 if (sp->hdr.seq == 1 &&
429 !test_and_set_bit(RXRPC_CALL_BEGAN_RX_TIMER,
430 &call->flags)) {
431 unsigned long nowj = jiffies, expect_rx_by;
432
433 expect_rx_by = nowj + call->next_rx_timo;
434 WRITE_ONCE(call->expect_rx_by, expect_rx_by);
435 rxrpc_reduce_call_timer(call, expect_rx_by, nowj,
436 rxrpc_timer_set_for_normal);
437 }
David Howells17926a72007-04-26 15:48:28 -0700438 }
David Howells415f44e2017-11-24 10:18:42 +0000439
440 rxrpc_set_keepalive(call);
441
David Howells5a924b82016-09-22 00:29:31 +0100442 _leave(" = %d [%u]", ret, call->peer->maxdata);
443 return ret;
David Howells17926a72007-04-26 15:48:28 -0700444
445send_fragmentable:
446 /* attempt to send this message with fragmentation enabled */
447 _debug("send fragment");
448
David Howells985a5c82016-06-17 11:53:37 +0100449 down_write(&conn->params.local->defrag_sem);
David Howells17926a72007-04-26 15:48:28 -0700450
David Howells985a5c82016-06-17 11:53:37 +0100451 switch (conn->params.local->srx.transport.family) {
452 case AF_INET:
453 opt = IP_PMTUDISC_DONT;
454 ret = kernel_setsockopt(conn->params.local->socket,
455 SOL_IP, IP_MTU_DISCOVER,
456 (char *)&opt, sizeof(opt));
457 if (ret == 0) {
David Howells5a924b82016-09-22 00:29:31 +0100458 ret = kernel_sendmsg(conn->params.local->socket, &msg,
459 iov, 2, len);
David Howellsace45be2018-03-30 21:04:43 +0100460 conn->params.peer->last_tx_at = ktime_get_real();
David Howells985a5c82016-06-17 11:53:37 +0100461
462 opt = IP_PMTUDISC_DO;
463 kernel_setsockopt(conn->params.local->socket, SOL_IP,
464 IP_MTU_DISCOVER,
465 (char *)&opt, sizeof(opt));
466 }
467 break;
David Howells75b54cb2016-09-13 08:49:05 +0100468
David Howellsd1912742016-09-17 07:26:01 +0100469#ifdef CONFIG_AF_RXRPC_IPV6
David Howells75b54cb2016-09-13 08:49:05 +0100470 case AF_INET6:
471 opt = IPV6_PMTUDISC_DONT;
472 ret = kernel_setsockopt(conn->params.local->socket,
473 SOL_IPV6, IPV6_MTU_DISCOVER,
474 (char *)&opt, sizeof(opt));
475 if (ret == 0) {
476 ret = kernel_sendmsg(conn->params.local->socket, &msg,
David Howells93c62c42018-02-22 14:38:14 +0000477 iov, 2, len);
David Howellsace45be2018-03-30 21:04:43 +0100478 conn->params.peer->last_tx_at = ktime_get_real();
David Howells75b54cb2016-09-13 08:49:05 +0100479
480 opt = IPV6_PMTUDISC_DO;
481 kernel_setsockopt(conn->params.local->socket,
482 SOL_IPV6, IPV6_MTU_DISCOVER,
483 (char *)&opt, sizeof(opt));
484 }
485 break;
David Howellsd1912742016-09-17 07:26:01 +0100486#endif
David Howells17926a72007-04-26 15:48:28 -0700487 }
488
David Howells6b47fe12018-05-10 23:26:01 +0100489 if (ret < 0)
490 trace_rxrpc_tx_fail(call->debug_id, serial, ret,
491 rxrpc_tx_fail_call_data_frag);
492
David Howells985a5c82016-06-17 11:53:37 +0100493 up_write(&conn->params.local->defrag_sem);
David Howells5a924b82016-09-22 00:29:31 +0100494 goto done;
David Howells17926a72007-04-26 15:48:28 -0700495}
David Howells248f2192016-09-08 11:10:12 +0100496
497/*
498 * reject packets through the local endpoint
499 */
500void rxrpc_reject_packets(struct rxrpc_local *local)
501{
David Howells1c2bc7b2016-09-13 08:49:05 +0100502 struct sockaddr_rxrpc srx;
David Howells248f2192016-09-08 11:10:12 +0100503 struct rxrpc_skb_priv *sp;
504 struct rxrpc_wire_header whdr;
505 struct sk_buff *skb;
506 struct msghdr msg;
507 struct kvec iov[2];
508 size_t size;
509 __be32 code;
David Howells6b47fe12018-05-10 23:26:01 +0100510 int ret;
David Howells248f2192016-09-08 11:10:12 +0100511
512 _enter("%d", local->debug_id);
513
514 iov[0].iov_base = &whdr;
515 iov[0].iov_len = sizeof(whdr);
516 iov[1].iov_base = &code;
517 iov[1].iov_len = sizeof(code);
518 size = sizeof(whdr) + sizeof(code);
519
David Howells1c2bc7b2016-09-13 08:49:05 +0100520 msg.msg_name = &srx.transport;
David Howells248f2192016-09-08 11:10:12 +0100521 msg.msg_control = NULL;
522 msg.msg_controllen = 0;
523 msg.msg_flags = 0;
524
David Howells248f2192016-09-08 11:10:12 +0100525 memset(&whdr, 0, sizeof(whdr));
526 whdr.type = RXRPC_PACKET_TYPE_ABORT;
527
528 while ((skb = skb_dequeue(&local->reject_queue))) {
David Howells71f3ca42016-09-17 10:49:14 +0100529 rxrpc_see_skb(skb, rxrpc_skb_rx_seen);
David Howells248f2192016-09-08 11:10:12 +0100530 sp = rxrpc_skb(skb);
David Howells1c2bc7b2016-09-13 08:49:05 +0100531
David Howells7b674e32017-08-29 10:18:37 +0100532 if (rxrpc_extract_addr_from_skb(local, &srx, skb) == 0) {
David Howells1c2bc7b2016-09-13 08:49:05 +0100533 msg.msg_namelen = srx.transport_len;
534
David Howells248f2192016-09-08 11:10:12 +0100535 code = htonl(skb->priority);
536
537 whdr.epoch = htonl(sp->hdr.epoch);
538 whdr.cid = htonl(sp->hdr.cid);
539 whdr.callNumber = htonl(sp->hdr.callNumber);
540 whdr.serviceId = htons(sp->hdr.serviceId);
541 whdr.flags = sp->hdr.flags;
542 whdr.flags ^= RXRPC_CLIENT_INITIATED;
543 whdr.flags &= RXRPC_CLIENT_INITIATED;
544
David Howells6b47fe12018-05-10 23:26:01 +0100545 ret = kernel_sendmsg(local->socket, &msg, iov, 2, size);
546 if (ret < 0)
547 trace_rxrpc_tx_fail(local->debug_id, 0, ret,
548 rxrpc_tx_fail_reject);
David Howells248f2192016-09-08 11:10:12 +0100549 }
550
David Howells71f3ca42016-09-17 10:49:14 +0100551 rxrpc_free_skb(skb, rxrpc_skb_rx_freed);
David Howells248f2192016-09-08 11:10:12 +0100552 }
553
554 _leave("");
555}
David Howellsace45be2018-03-30 21:04:43 +0100556
557/*
558 * Send a VERSION reply to a peer as a keepalive.
559 */
560void rxrpc_send_keepalive(struct rxrpc_peer *peer)
561{
562 struct rxrpc_wire_header whdr;
563 struct msghdr msg;
564 struct kvec iov[2];
565 size_t len;
566 int ret;
567
568 _enter("");
569
570 msg.msg_name = &peer->srx.transport;
571 msg.msg_namelen = peer->srx.transport_len;
572 msg.msg_control = NULL;
573 msg.msg_controllen = 0;
574 msg.msg_flags = 0;
575
576 whdr.epoch = htonl(peer->local->rxnet->epoch);
577 whdr.cid = 0;
578 whdr.callNumber = 0;
579 whdr.seq = 0;
580 whdr.serial = 0;
581 whdr.type = RXRPC_PACKET_TYPE_VERSION; /* Not client-initiated */
582 whdr.flags = RXRPC_LAST_PACKET;
583 whdr.userStatus = 0;
584 whdr.securityIndex = 0;
585 whdr._rsvd = 0;
586 whdr.serviceId = 0;
587
588 iov[0].iov_base = &whdr;
589 iov[0].iov_len = sizeof(whdr);
590 iov[1].iov_base = (char *)rxrpc_keepalive_string;
591 iov[1].iov_len = sizeof(rxrpc_keepalive_string);
592
593 len = iov[0].iov_len + iov[1].iov_len;
594
595 _proto("Tx VERSION (keepalive)");
596
597 ret = kernel_sendmsg(peer->local->socket, &msg, iov, 2, len);
598 if (ret < 0)
David Howells6b47fe12018-05-10 23:26:01 +0100599 trace_rxrpc_tx_fail(peer->debug_id, 0, ret,
600 rxrpc_tx_fail_version_keepalive);
David Howellsace45be2018-03-30 21:04:43 +0100601
602 peer->last_tx_at = ktime_get_real();
603 _leave("");
604}