blob: a4380e182e6cda9c2415ac5ba03cf6b6c405aa93 [file] [log] [blame]
David Howells17926a72007-04-26 15:48:28 -07001/* RxRPC packet reception
2 *
David Howells248f2192016-09-08 11:10:12 +01003 * Copyright (C) 2007, 2016 Red Hat, Inc. All Rights Reserved.
David Howells17926a72007-04-26 15:48:28 -07004 * 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/module.h>
15#include <linux/net.h>
16#include <linux/skbuff.h>
17#include <linux/errqueue.h>
18#include <linux/udp.h>
19#include <linux/in.h>
20#include <linux/in6.h>
21#include <linux/icmp.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/gfp.h>
David Howells17926a72007-04-26 15:48:28 -070023#include <net/sock.h>
24#include <net/af_rxrpc.h>
25#include <net/ip.h>
Herbert Xu1781f7f2007-12-11 11:30:32 -080026#include <net/udp.h>
Pavel Emelyanov02833282008-07-05 21:18:48 -070027#include <net/net_namespace.h>
David Howells17926a72007-04-26 15:48:28 -070028#include "ar-internal.h"
29
David Howells248f2192016-09-08 11:10:12 +010030static void rxrpc_proto_abort(const char *why,
31 struct rxrpc_call *call, rxrpc_seq_t seq)
David Howells17926a72007-04-26 15:48:28 -070032{
David Howells248f2192016-09-08 11:10:12 +010033 if (rxrpc_abort_call(why, call, seq, RX_PROTOCOL_ERROR, EBADMSG)) {
34 set_bit(RXRPC_CALL_EV_ABORT, &call->events);
35 rxrpc_queue_call(call);
David Howells17926a72007-04-26 15:48:28 -070036 }
David Howells17926a72007-04-26 15:48:28 -070037}
38
39/*
David Howells57494342016-09-24 18:05:27 +010040 * Do TCP-style congestion management [RFC 5681].
41 */
42static void rxrpc_congestion_management(struct rxrpc_call *call,
43 struct sk_buff *skb,
David Howellsed1e8672016-09-29 22:37:16 +010044 struct rxrpc_ack_summary *summary,
45 rxrpc_serial_t acked_serial)
David Howells57494342016-09-24 18:05:27 +010046{
47 enum rxrpc_congest_change change = rxrpc_cong_no_change;
David Howells57494342016-09-24 18:05:27 +010048 unsigned int cumulative_acks = call->cong_cumul_acks;
49 unsigned int cwnd = call->cong_cwnd;
50 bool resend = false;
51
52 summary->flight_size =
53 (call->tx_top - call->tx_hard_ack) - summary->nr_acks;
54
55 if (test_and_clear_bit(RXRPC_CALL_RETRANS_TIMEOUT, &call->flags)) {
56 summary->retrans_timeo = true;
57 call->cong_ssthresh = max_t(unsigned int,
58 summary->flight_size / 2, 2);
59 cwnd = 1;
David Howells8782def2016-09-30 09:26:12 +010060 if (cwnd >= call->cong_ssthresh &&
David Howells57494342016-09-24 18:05:27 +010061 call->cong_mode == RXRPC_CALL_SLOW_START) {
62 call->cong_mode = RXRPC_CALL_CONGEST_AVOIDANCE;
63 call->cong_tstamp = skb->tstamp;
64 cumulative_acks = 0;
65 }
66 }
67
68 cumulative_acks += summary->nr_new_acks;
69 cumulative_acks += summary->nr_rot_new_acks;
70 if (cumulative_acks > 255)
71 cumulative_acks = 255;
72
73 summary->mode = call->cong_mode;
74 summary->cwnd = call->cong_cwnd;
75 summary->ssthresh = call->cong_ssthresh;
76 summary->cumulative_acks = cumulative_acks;
77 summary->dup_acks = call->cong_dup_acks;
78
79 switch (call->cong_mode) {
80 case RXRPC_CALL_SLOW_START:
81 if (summary->nr_nacks > 0)
82 goto packet_loss_detected;
83 if (summary->cumulative_acks > 0)
84 cwnd += 1;
David Howells8782def2016-09-30 09:26:12 +010085 if (cwnd >= call->cong_ssthresh) {
David Howells57494342016-09-24 18:05:27 +010086 call->cong_mode = RXRPC_CALL_CONGEST_AVOIDANCE;
87 call->cong_tstamp = skb->tstamp;
88 }
89 goto out;
90
91 case RXRPC_CALL_CONGEST_AVOIDANCE:
92 if (summary->nr_nacks > 0)
93 goto packet_loss_detected;
94
95 /* We analyse the number of packets that get ACK'd per RTT
96 * period and increase the window if we managed to fill it.
97 */
98 if (call->peer->rtt_usage == 0)
99 goto out;
100 if (ktime_before(skb->tstamp,
101 ktime_add_ns(call->cong_tstamp,
102 call->peer->rtt)))
103 goto out_no_clear_ca;
104 change = rxrpc_cong_rtt_window_end;
105 call->cong_tstamp = skb->tstamp;
106 if (cumulative_acks >= cwnd)
107 cwnd++;
108 goto out;
109
110 case RXRPC_CALL_PACKET_LOSS:
111 if (summary->nr_nacks == 0)
112 goto resume_normality;
113
114 if (summary->new_low_nack) {
115 change = rxrpc_cong_new_low_nack;
116 call->cong_dup_acks = 1;
117 if (call->cong_extra > 1)
118 call->cong_extra = 1;
119 goto send_extra_data;
120 }
121
122 call->cong_dup_acks++;
123 if (call->cong_dup_acks < 3)
124 goto send_extra_data;
125
126 change = rxrpc_cong_begin_retransmission;
127 call->cong_mode = RXRPC_CALL_FAST_RETRANSMIT;
128 call->cong_ssthresh = max_t(unsigned int,
129 summary->flight_size / 2, 2);
130 cwnd = call->cong_ssthresh + 3;
131 call->cong_extra = 0;
132 call->cong_dup_acks = 0;
133 resend = true;
134 goto out;
135
136 case RXRPC_CALL_FAST_RETRANSMIT:
137 if (!summary->new_low_nack) {
138 if (summary->nr_new_acks == 0)
139 cwnd += 1;
140 call->cong_dup_acks++;
141 if (call->cong_dup_acks == 2) {
142 change = rxrpc_cong_retransmit_again;
143 call->cong_dup_acks = 0;
144 resend = true;
145 }
146 } else {
147 change = rxrpc_cong_progress;
148 cwnd = call->cong_ssthresh;
149 if (summary->nr_nacks == 0)
150 goto resume_normality;
151 }
152 goto out;
153
154 default:
155 BUG();
156 goto out;
157 }
158
159resume_normality:
160 change = rxrpc_cong_cleared_nacks;
161 call->cong_dup_acks = 0;
162 call->cong_extra = 0;
163 call->cong_tstamp = skb->tstamp;
David Howells8782def2016-09-30 09:26:12 +0100164 if (cwnd < call->cong_ssthresh)
David Howells57494342016-09-24 18:05:27 +0100165 call->cong_mode = RXRPC_CALL_SLOW_START;
166 else
167 call->cong_mode = RXRPC_CALL_CONGEST_AVOIDANCE;
168out:
169 cumulative_acks = 0;
170out_no_clear_ca:
171 if (cwnd >= RXRPC_RXTX_BUFF_SIZE - 1)
172 cwnd = RXRPC_RXTX_BUFF_SIZE - 1;
173 call->cong_cwnd = cwnd;
174 call->cong_cumul_acks = cumulative_acks;
David Howellsed1e8672016-09-29 22:37:16 +0100175 trace_rxrpc_congest(call, summary, acked_serial, change);
David Howells57494342016-09-24 18:05:27 +0100176 if (resend && !test_and_set_bit(RXRPC_CALL_EV_RESEND, &call->events))
177 rxrpc_queue_call(call);
178 return;
179
180packet_loss_detected:
181 change = rxrpc_cong_saw_nack;
182 call->cong_mode = RXRPC_CALL_PACKET_LOSS;
183 call->cong_dup_acks = 0;
184 goto send_extra_data;
185
186send_extra_data:
187 /* Send some previously unsent DATA if we have some to advance the ACK
188 * state.
189 */
190 if (call->rxtx_annotations[call->tx_top & RXRPC_RXTX_BUFF_MASK] &
191 RXRPC_TX_ANNO_LAST ||
192 summary->nr_acks != call->tx_top - call->tx_hard_ack) {
193 call->cong_extra++;
194 wake_up(&call->waitq);
195 }
196 goto out_no_clear_ca;
197}
198
199/*
David Howells8e831342016-09-22 00:29:31 +0100200 * Ping the other end to fill our RTT cache and to retrieve the rwind
201 * and MTU parameters.
202 */
203static void rxrpc_send_ping(struct rxrpc_call *call, struct sk_buff *skb,
204 int skew)
205{
206 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
David Howellsfc943f62016-09-22 00:29:32 +0100207 ktime_t now = skb->tstamp;
David Howells8e831342016-09-22 00:29:31 +0100208
David Howellsfc943f62016-09-22 00:29:32 +0100209 if (call->peer->rtt_usage < 3 ||
210 ktime_before(ktime_add_ms(call->peer->rtt_last_req, 1000), now))
211 rxrpc_propose_ACK(call, RXRPC_ACK_PING, skew, sp->hdr.serial,
David Howells9c7ad432016-09-23 13:50:40 +0100212 true, true,
213 rxrpc_propose_ack_ping_for_params);
David Howells8e831342016-09-22 00:29:31 +0100214}
215
216/*
David Howells248f2192016-09-08 11:10:12 +0100217 * Apply a hard ACK by advancing the Tx window.
David Howells17926a72007-04-26 15:48:28 -0700218 */
David Howellsd9ec6612018-10-08 15:46:01 +0100219static bool rxrpc_rotate_tx_window(struct rxrpc_call *call, rxrpc_seq_t to,
David Howells31a1b982016-09-24 18:05:26 +0100220 struct rxrpc_ack_summary *summary)
David Howells17926a72007-04-26 15:48:28 -0700221{
David Howells248f2192016-09-08 11:10:12 +0100222 struct sk_buff *skb, *list = NULL;
David Howellsd9ec6612018-10-08 15:46:01 +0100223 bool rot_last = false;
David Howells248f2192016-09-08 11:10:12 +0100224 int ix;
David Howells70790db2016-09-23 12:39:22 +0100225 u8 annotation;
David Howells17926a72007-04-26 15:48:28 -0700226
David Howells31a1b982016-09-24 18:05:26 +0100227 if (call->acks_lowest_nak == call->tx_hard_ack) {
228 call->acks_lowest_nak = to;
229 } else if (before_eq(call->acks_lowest_nak, to)) {
230 summary->new_low_nack = true;
231 call->acks_lowest_nak = to;
232 }
233
David Howells17926a72007-04-26 15:48:28 -0700234 spin_lock(&call->lock);
235
David Howells248f2192016-09-08 11:10:12 +0100236 while (before(call->tx_hard_ack, to)) {
237 call->tx_hard_ack++;
238 ix = call->tx_hard_ack & RXRPC_RXTX_BUFF_MASK;
239 skb = call->rxtx_buffer[ix];
David Howells70790db2016-09-23 12:39:22 +0100240 annotation = call->rxtx_annotations[ix];
David Howells71f3ca42016-09-17 10:49:14 +0100241 rxrpc_see_skb(skb, rxrpc_skb_tx_rotated);
David Howells248f2192016-09-08 11:10:12 +0100242 call->rxtx_buffer[ix] = NULL;
243 call->rxtx_annotations[ix] = 0;
244 skb->next = list;
245 list = skb;
David Howells70790db2016-09-23 12:39:22 +0100246
David Howellsd9ec6612018-10-08 15:46:01 +0100247 if (annotation & RXRPC_TX_ANNO_LAST) {
David Howells70790db2016-09-23 12:39:22 +0100248 set_bit(RXRPC_CALL_TX_LAST, &call->flags);
David Howellsd9ec6612018-10-08 15:46:01 +0100249 rot_last = true;
250 }
David Howells31a1b982016-09-24 18:05:26 +0100251 if ((annotation & RXRPC_TX_ANNO_MASK) != RXRPC_TX_ANNO_ACK)
252 summary->nr_rot_new_acks++;
David Howells17926a72007-04-26 15:48:28 -0700253 }
254
255 spin_unlock(&call->lock);
David Howells17926a72007-04-26 15:48:28 -0700256
David Howellsd9ec6612018-10-08 15:46:01 +0100257 trace_rxrpc_transmit(call, (rot_last ?
David Howells70790db2016-09-23 12:39:22 +0100258 rxrpc_transmit_rotate_last :
259 rxrpc_transmit_rotate));
David Howellsbc4abfc2016-09-13 22:36:21 +0100260 wake_up(&call->waitq);
261
David Howells248f2192016-09-08 11:10:12 +0100262 while (list) {
263 skb = list;
264 list = skb->next;
265 skb->next = NULL;
David Howells71f3ca42016-09-17 10:49:14 +0100266 rxrpc_free_skb(skb, rxrpc_skb_tx_freed);
David Howells248f2192016-09-08 11:10:12 +0100267 }
David Howellsd9ec6612018-10-08 15:46:01 +0100268
269 return rot_last;
David Howells17926a72007-04-26 15:48:28 -0700270}
271
272/*
David Howells248f2192016-09-08 11:10:12 +0100273 * End the transmission phase of a call.
274 *
275 * This occurs when we get an ACKALL packet, the first DATA packet of a reply,
276 * or a final ACK packet.
David Howells17926a72007-04-26 15:48:28 -0700277 */
David Howells70790db2016-09-23 12:39:22 +0100278static bool rxrpc_end_tx_phase(struct rxrpc_call *call, bool reply_begun,
279 const char *abort_why)
David Howells17926a72007-04-26 15:48:28 -0700280{
David Howells17926a72007-04-26 15:48:28 -0700281
David Howells70790db2016-09-23 12:39:22 +0100282 ASSERT(test_bit(RXRPC_CALL_TX_LAST, &call->flags));
David Howells248f2192016-09-08 11:10:12 +0100283
284 write_lock(&call->state_lock);
285
286 switch (call->state) {
David Howells70790db2016-09-23 12:39:22 +0100287 case RXRPC_CALL_CLIENT_SEND_REQUEST:
David Howells17926a72007-04-26 15:48:28 -0700288 case RXRPC_CALL_CLIENT_AWAIT_REPLY:
David Howells70790db2016-09-23 12:39:22 +0100289 if (reply_begun)
290 call->state = RXRPC_CALL_CLIENT_RECV_REPLY;
291 else
292 call->state = RXRPC_CALL_CLIENT_AWAIT_REPLY;
David Howells17926a72007-04-26 15:48:28 -0700293 break;
David Howells70790db2016-09-23 12:39:22 +0100294
David Howells248f2192016-09-08 11:10:12 +0100295 case RXRPC_CALL_SERVER_AWAIT_ACK:
296 __rxrpc_call_completed(call);
297 rxrpc_notify_socket(call);
David Howells17926a72007-04-26 15:48:28 -0700298 break;
David Howells70790db2016-09-23 12:39:22 +0100299
300 default:
301 goto bad_state;
David Howells17926a72007-04-26 15:48:28 -0700302 }
David Howells248f2192016-09-08 11:10:12 +0100303
304 write_unlock(&call->state_lock);
David Howells70790db2016-09-23 12:39:22 +0100305 if (call->state == RXRPC_CALL_CLIENT_AWAIT_REPLY) {
David Howells0d967962016-09-24 18:05:27 +0100306 rxrpc_propose_ACK(call, RXRPC_ACK_IDLE, 0, 0, false, true,
307 rxrpc_propose_ack_client_tx_end);
David Howells70790db2016-09-23 12:39:22 +0100308 trace_rxrpc_transmit(call, rxrpc_transmit_await_reply);
309 } else {
310 trace_rxrpc_transmit(call, rxrpc_transmit_end);
311 }
David Howells248f2192016-09-08 11:10:12 +0100312 _leave(" = ok");
313 return true;
David Howells70790db2016-09-23 12:39:22 +0100314
315bad_state:
316 write_unlock(&call->state_lock);
317 kdebug("end_tx %s", rxrpc_call_states[call->state]);
318 rxrpc_proto_abort(abort_why, call, call->tx_top);
319 return false;
320}
321
322/*
323 * Begin the reply reception phase of a call.
324 */
325static bool rxrpc_receiving_reply(struct rxrpc_call *call)
326{
David Howells31a1b982016-09-24 18:05:26 +0100327 struct rxrpc_ack_summary summary = { 0 };
David Howells70790db2016-09-23 12:39:22 +0100328 rxrpc_seq_t top = READ_ONCE(call->tx_top);
329
David Howellsdd7c1ee2016-09-24 18:05:27 +0100330 if (call->ackr_reason) {
331 spin_lock_bh(&call->lock);
332 call->ackr_reason = 0;
333 call->resend_at = call->expire_at;
334 call->ack_at = call->expire_at;
335 spin_unlock_bh(&call->lock);
David Howellsdf0adc72016-09-26 22:12:49 +0100336 rxrpc_set_timer(call, rxrpc_timer_init_for_reply,
337 ktime_get_real());
David Howellsdd7c1ee2016-09-24 18:05:27 +0100338 }
339
David Howells70790db2016-09-23 12:39:22 +0100340 if (!test_bit(RXRPC_CALL_TX_LAST, &call->flags)) {
David Howellsd9ec6612018-10-08 15:46:01 +0100341 if (!rxrpc_rotate_tx_window(call, top, &summary)) {
342 rxrpc_proto_abort("TXL", call, top);
343 return false;
344 }
David Howells70790db2016-09-23 12:39:22 +0100345 }
346 if (!rxrpc_end_tx_phase(call, true, "ETD"))
347 return false;
348 call->tx_phase = false;
349 return true;
David Howells248f2192016-09-08 11:10:12 +0100350}
351
352/*
353 * Scan a jumbo packet to validate its structure and to work out how many
354 * subpackets it contains.
355 *
356 * A jumbo packet is a collection of consecutive packets glued together with
357 * little headers between that indicate how to change the initial header for
358 * each subpacket.
359 *
360 * RXRPC_JUMBO_PACKET must be set on all but the last subpacket - and all but
361 * the last are RXRPC_JUMBO_DATALEN in size. The last subpacket may be of any
362 * size.
363 */
364static bool rxrpc_validate_jumbo(struct sk_buff *skb)
365{
366 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
David Howells775e5b72016-09-30 13:26:03 +0100367 unsigned int offset = sizeof(struct rxrpc_wire_header);
David Howells89a80ed2016-09-13 22:36:22 +0100368 unsigned int len = skb->len;
David Howells248f2192016-09-08 11:10:12 +0100369 int nr_jumbo = 1;
370 u8 flags = sp->hdr.flags;
371
372 do {
373 nr_jumbo++;
374 if (len - offset < RXRPC_JUMBO_SUBPKTLEN)
375 goto protocol_error;
376 if (flags & RXRPC_LAST_PACKET)
377 goto protocol_error;
378 offset += RXRPC_JUMBO_DATALEN;
379 if (skb_copy_bits(skb, offset, &flags, 1) < 0)
380 goto protocol_error;
381 offset += sizeof(struct rxrpc_jumbo_header);
382 } while (flags & RXRPC_JUMBO_PACKET);
383
384 sp->nr_jumbo = nr_jumbo;
385 return true;
386
387protocol_error:
388 return false;
389}
390
391/*
392 * Handle reception of a duplicate packet.
393 *
394 * We have to take care to avoid an attack here whereby we're given a series of
395 * jumbograms, each with a sequence number one before the preceding one and
396 * filled up to maximum UDP size. If they never send us the first packet in
397 * the sequence, they can cause us to have to hold on to around 2MiB of kernel
398 * space until the call times out.
399 *
400 * We limit the space usage by only accepting three duplicate jumbo packets per
401 * call. After that, we tell the other side we're no longer accepting jumbos
402 * (that information is encoded in the ACK packet).
403 */
404static void rxrpc_input_dup_data(struct rxrpc_call *call, rxrpc_seq_t seq,
David Howells75e42122016-09-13 22:36:22 +0100405 u8 annotation, bool *_jumbo_bad)
David Howells248f2192016-09-08 11:10:12 +0100406{
407 /* Discard normal packets that are duplicates. */
408 if (annotation == 0)
409 return;
410
411 /* Skip jumbo subpackets that are duplicates. When we've had three or
412 * more partially duplicate jumbo packets, we refuse to take any more
413 * jumbos for this call.
414 */
David Howells75e42122016-09-13 22:36:22 +0100415 if (!*_jumbo_bad) {
416 call->nr_jumbo_bad++;
417 *_jumbo_bad = true;
David Howells248f2192016-09-08 11:10:12 +0100418 }
David Howells17926a72007-04-26 15:48:28 -0700419}
420
421/*
David Howells248f2192016-09-08 11:10:12 +0100422 * Process a DATA packet, adding the packet to the Rx ring.
David Howells17926a72007-04-26 15:48:28 -0700423 */
David Howells248f2192016-09-08 11:10:12 +0100424static void rxrpc_input_data(struct rxrpc_call *call, struct sk_buff *skb,
425 u16 skew)
426{
427 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
David Howells775e5b72016-09-30 13:26:03 +0100428 unsigned int offset = sizeof(struct rxrpc_wire_header);
David Howells248f2192016-09-08 11:10:12 +0100429 unsigned int ix;
430 rxrpc_serial_t serial = sp->hdr.serial, ack_serial = 0;
431 rxrpc_seq_t seq = sp->hdr.seq, hard_ack;
David Howells75e42122016-09-13 22:36:22 +0100432 bool immediate_ack = false, jumbo_bad = false, queued;
David Howells248f2192016-09-08 11:10:12 +0100433 u16 len;
434 u8 ack = 0, flags, annotation = 0;
435
436 _enter("{%u,%u},{%u,%u}",
David Howells89a80ed2016-09-13 22:36:22 +0100437 call->rx_hard_ack, call->rx_top, skb->len, seq);
David Howells248f2192016-09-08 11:10:12 +0100438
439 _proto("Rx DATA %%%u { #%u f=%02x }",
440 sp->hdr.serial, seq, sp->hdr.flags);
441
442 if (call->state >= RXRPC_CALL_COMPLETE)
443 return;
444
445 /* Received data implicitly ACKs all of the request packets we sent
446 * when we're acting as a client.
447 */
David Howells70790db2016-09-23 12:39:22 +0100448 if ((call->state == RXRPC_CALL_CLIENT_SEND_REQUEST ||
449 call->state == RXRPC_CALL_CLIENT_AWAIT_REPLY) &&
450 !rxrpc_receiving_reply(call))
David Howells248f2192016-09-08 11:10:12 +0100451 return;
452
453 call->ackr_prev_seq = seq;
454
455 hard_ack = READ_ONCE(call->rx_hard_ack);
456 if (after(seq, hard_ack + call->rx_winsize)) {
457 ack = RXRPC_ACK_EXCEEDS_WINDOW;
458 ack_serial = serial;
459 goto ack;
460 }
461
462 flags = sp->hdr.flags;
463 if (flags & RXRPC_JUMBO_PACKET) {
David Howells75e42122016-09-13 22:36:22 +0100464 if (call->nr_jumbo_bad > 3) {
David Howells248f2192016-09-08 11:10:12 +0100465 ack = RXRPC_ACK_NOSPACE;
466 ack_serial = serial;
467 goto ack;
468 }
469 annotation = 1;
470 }
471
472next_subpacket:
473 queued = false;
474 ix = seq & RXRPC_RXTX_BUFF_MASK;
David Howells89a80ed2016-09-13 22:36:22 +0100475 len = skb->len;
David Howells248f2192016-09-08 11:10:12 +0100476 if (flags & RXRPC_JUMBO_PACKET)
477 len = RXRPC_JUMBO_DATALEN;
478
479 if (flags & RXRPC_LAST_PACKET) {
David Howells816c9fc2016-09-17 10:49:11 +0100480 if (test_bit(RXRPC_CALL_RX_LAST, &call->flags) &&
David Howells248f2192016-09-08 11:10:12 +0100481 seq != call->rx_top)
482 return rxrpc_proto_abort("LSN", call, seq);
483 } else {
484 if (test_bit(RXRPC_CALL_RX_LAST, &call->flags) &&
485 after_eq(seq, call->rx_top))
486 return rxrpc_proto_abort("LSA", call, seq);
487 }
488
489 if (before_eq(seq, hard_ack)) {
490 ack = RXRPC_ACK_DUPLICATE;
491 ack_serial = serial;
492 goto skip;
493 }
494
495 if (flags & RXRPC_REQUEST_ACK && !ack) {
496 ack = RXRPC_ACK_REQUESTED;
497 ack_serial = serial;
498 }
499
500 if (call->rxtx_buffer[ix]) {
David Howells75e42122016-09-13 22:36:22 +0100501 rxrpc_input_dup_data(call, seq, annotation, &jumbo_bad);
David Howells248f2192016-09-08 11:10:12 +0100502 if (ack != RXRPC_ACK_DUPLICATE) {
503 ack = RXRPC_ACK_DUPLICATE;
504 ack_serial = serial;
505 }
506 immediate_ack = true;
507 goto skip;
508 }
509
510 /* Queue the packet. We use a couple of memory barriers here as need
511 * to make sure that rx_top is perceived to be set after the buffer
512 * pointer and that the buffer pointer is set after the annotation and
513 * the skb data.
514 *
515 * Barriers against rxrpc_recvmsg_data() and rxrpc_rotate_rx_window()
516 * and also rxrpc_fill_out_ack().
517 */
David Howells71f3ca42016-09-17 10:49:14 +0100518 rxrpc_get_skb(skb, rxrpc_skb_rx_got);
David Howells248f2192016-09-08 11:10:12 +0100519 call->rxtx_annotations[ix] = annotation;
520 smp_wmb();
521 call->rxtx_buffer[ix] = skb;
David Howellsa7056c52016-09-24 18:05:27 +0100522 if (after(seq, call->rx_top)) {
David Howells248f2192016-09-08 11:10:12 +0100523 smp_store_release(&call->rx_top, seq);
David Howellsa7056c52016-09-24 18:05:27 +0100524 } else if (before(seq, call->rx_top)) {
525 /* Send an immediate ACK if we fill in a hole */
526 if (!ack) {
527 ack = RXRPC_ACK_DELAY;
528 ack_serial = serial;
529 }
530 immediate_ack = true;
531 }
David Howells58dc63c2016-09-17 10:49:13 +0100532 if (flags & RXRPC_LAST_PACKET) {
David Howells816c9fc2016-09-17 10:49:11 +0100533 set_bit(RXRPC_CALL_RX_LAST, &call->flags);
David Howells58dc63c2016-09-17 10:49:13 +0100534 trace_rxrpc_receive(call, rxrpc_receive_queue_last, serial, seq);
535 } else {
536 trace_rxrpc_receive(call, rxrpc_receive_queue, serial, seq);
537 }
David Howells248f2192016-09-08 11:10:12 +0100538 queued = true;
539
540 if (after_eq(seq, call->rx_expect_next)) {
541 if (after(seq, call->rx_expect_next)) {
542 _net("OOS %u > %u", seq, call->rx_expect_next);
543 ack = RXRPC_ACK_OUT_OF_SEQUENCE;
544 ack_serial = serial;
545 }
546 call->rx_expect_next = seq + 1;
547 }
548
549skip:
550 offset += len;
551 if (flags & RXRPC_JUMBO_PACKET) {
552 if (skb_copy_bits(skb, offset, &flags, 1) < 0)
553 return rxrpc_proto_abort("XJF", call, seq);
554 offset += sizeof(struct rxrpc_jumbo_header);
555 seq++;
556 serial++;
557 annotation++;
558 if (flags & RXRPC_JUMBO_PACKET)
559 annotation |= RXRPC_RX_ANNO_JLAST;
David Howells75e42122016-09-13 22:36:22 +0100560 if (after(seq, hard_ack + call->rx_winsize)) {
561 ack = RXRPC_ACK_EXCEEDS_WINDOW;
562 ack_serial = serial;
563 if (!jumbo_bad) {
564 call->nr_jumbo_bad++;
565 jumbo_bad = true;
566 }
567 goto ack;
568 }
David Howells248f2192016-09-08 11:10:12 +0100569
570 _proto("Rx DATA Jumbo %%%u", serial);
571 goto next_subpacket;
572 }
573
574 if (queued && flags & RXRPC_LAST_PACKET && !ack) {
575 ack = RXRPC_ACK_DELAY;
576 ack_serial = serial;
577 }
578
579ack:
580 if (ack)
581 rxrpc_propose_ACK(call, ack, skew, ack_serial,
David Howells9c7ad432016-09-23 13:50:40 +0100582 immediate_ack, true,
583 rxrpc_propose_ack_input_data);
David Howells248f2192016-09-08 11:10:12 +0100584
585 if (sp->hdr.seq == READ_ONCE(call->rx_hard_ack) + 1)
586 rxrpc_notify_socket(call);
587 _leave(" [queued]");
588}
589
590/*
David Howells50235c42016-09-22 00:29:31 +0100591 * Process a requested ACK.
592 */
593static void rxrpc_input_requested_ack(struct rxrpc_call *call,
594 ktime_t resp_time,
595 rxrpc_serial_t orig_serial,
596 rxrpc_serial_t ack_serial)
597{
598 struct rxrpc_skb_priv *sp;
599 struct sk_buff *skb;
600 ktime_t sent_at;
601 int ix;
602
603 for (ix = 0; ix < RXRPC_RXTX_BUFF_SIZE; ix++) {
604 skb = call->rxtx_buffer[ix];
605 if (!skb)
606 continue;
607
608 sp = rxrpc_skb(skb);
609 if (sp->hdr.serial != orig_serial)
610 continue;
611 smp_rmb();
612 sent_at = skb->tstamp;
613 goto found;
614 }
615 return;
616
617found:
618 rxrpc_peer_add_rtt(call, rxrpc_rtt_rx_requested_ack,
619 orig_serial, ack_serial, sent_at, resp_time);
620}
621
622/*
David Howells8e831342016-09-22 00:29:31 +0100623 * Process a ping response.
624 */
625static void rxrpc_input_ping_response(struct rxrpc_call *call,
626 ktime_t resp_time,
627 rxrpc_serial_t orig_serial,
628 rxrpc_serial_t ack_serial)
629{
630 rxrpc_serial_t ping_serial;
631 ktime_t ping_time;
632
David Howellsa5af7e12016-10-06 08:11:49 +0100633 ping_time = call->ping_time;
David Howells8e831342016-09-22 00:29:31 +0100634 smp_rmb();
David Howellsa5af7e12016-10-06 08:11:49 +0100635 ping_serial = call->ping_serial;
David Howells8e831342016-09-22 00:29:31 +0100636
637 if (!test_bit(RXRPC_CALL_PINGING, &call->flags) ||
638 before(orig_serial, ping_serial))
639 return;
640 clear_bit(RXRPC_CALL_PINGING, &call->flags);
641 if (after(orig_serial, ping_serial))
642 return;
643
644 rxrpc_peer_add_rtt(call, rxrpc_rtt_rx_ping_response,
645 orig_serial, ack_serial, ping_time, resp_time);
646}
647
648/*
David Howells248f2192016-09-08 11:10:12 +0100649 * Process the extra information that may be appended to an ACK packet
650 */
651static void rxrpc_input_ackinfo(struct rxrpc_call *call, struct sk_buff *skb,
652 struct rxrpc_ackinfo *ackinfo)
653{
654 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
655 struct rxrpc_peer *peer;
656 unsigned int mtu;
David Howells515d78d2017-03-10 07:48:49 +0000657 bool wake = false;
David Howells01fd0742016-09-13 10:23:01 +0100658 u32 rwind = ntohl(ackinfo->rwind);
David Howells248f2192016-09-08 11:10:12 +0100659
660 _proto("Rx ACK %%%u Info { rx=%u max=%u rwin=%u jm=%u }",
661 sp->hdr.serial,
662 ntohl(ackinfo->rxMTU), ntohl(ackinfo->maxMTU),
David Howells01fd0742016-09-13 10:23:01 +0100663 rwind, ntohl(ackinfo->jumbo_max));
David Howells248f2192016-09-08 11:10:12 +0100664
David Howells515d78d2017-03-10 07:48:49 +0000665 if (call->tx_winsize != rwind) {
666 if (rwind > RXRPC_RXTX_BUFF_SIZE - 1)
667 rwind = RXRPC_RXTX_BUFF_SIZE - 1;
668 if (rwind > call->tx_winsize)
669 wake = true;
670 call->tx_winsize = rwind;
671 }
672
David Howells08511152016-09-30 09:33:27 +0100673 if (call->cong_ssthresh > rwind)
674 call->cong_ssthresh = rwind;
David Howells248f2192016-09-08 11:10:12 +0100675
676 mtu = min(ntohl(ackinfo->rxMTU), ntohl(ackinfo->maxMTU));
677
678 peer = call->peer;
679 if (mtu < peer->maxdata) {
680 spin_lock_bh(&peer->lock);
681 peer->maxdata = mtu;
682 peer->mtu = mtu + peer->hdrsize;
683 spin_unlock_bh(&peer->lock);
684 _net("Net MTU %u (maxdata %u)", peer->mtu, peer->maxdata);
685 }
David Howells515d78d2017-03-10 07:48:49 +0000686
687 if (wake)
688 wake_up(&call->waitq);
David Howells248f2192016-09-08 11:10:12 +0100689}
690
691/*
692 * Process individual soft ACKs.
693 *
694 * Each ACK in the array corresponds to one packet and can be either an ACK or
695 * a NAK. If we get find an explicitly NAK'd packet we resend immediately;
696 * packets that lie beyond the end of the ACK list are scheduled for resend by
697 * the timer on the basis that the peer might just not have processed them at
698 * the time the ACK was sent.
699 */
700static void rxrpc_input_soft_acks(struct rxrpc_call *call, u8 *acks,
David Howells31a1b982016-09-24 18:05:26 +0100701 rxrpc_seq_t seq, int nr_acks,
702 struct rxrpc_ack_summary *summary)
David Howells248f2192016-09-08 11:10:12 +0100703{
David Howells248f2192016-09-08 11:10:12 +0100704 int ix;
David Howellsf07373e2016-09-22 00:29:32 +0100705 u8 annotation, anno_type;
David Howells248f2192016-09-08 11:10:12 +0100706
707 for (; nr_acks > 0; nr_acks--, seq++) {
708 ix = seq & RXRPC_RXTX_BUFF_MASK;
David Howellsf07373e2016-09-22 00:29:32 +0100709 annotation = call->rxtx_annotations[ix];
710 anno_type = annotation & RXRPC_TX_ANNO_MASK;
711 annotation &= ~RXRPC_TX_ANNO_MASK;
David Howellsd01dc4c2016-09-17 10:49:12 +0100712 switch (*acks++) {
David Howells248f2192016-09-08 11:10:12 +0100713 case RXRPC_ACK_TYPE_ACK:
David Howells31a1b982016-09-24 18:05:26 +0100714 summary->nr_acks++;
David Howellsf07373e2016-09-22 00:29:32 +0100715 if (anno_type == RXRPC_TX_ANNO_ACK)
716 continue;
David Howells31a1b982016-09-24 18:05:26 +0100717 summary->nr_new_acks++;
David Howellsf07373e2016-09-22 00:29:32 +0100718 call->rxtx_annotations[ix] =
719 RXRPC_TX_ANNO_ACK | annotation;
David Howells248f2192016-09-08 11:10:12 +0100720 break;
721 case RXRPC_ACK_TYPE_NACK:
David Howells31a1b982016-09-24 18:05:26 +0100722 if (!summary->nr_nacks &&
723 call->acks_lowest_nak != seq) {
724 call->acks_lowest_nak = seq;
725 summary->new_low_nack = true;
726 }
727 summary->nr_nacks++;
David Howellsf07373e2016-09-22 00:29:32 +0100728 if (anno_type == RXRPC_TX_ANNO_NAK)
David Howells248f2192016-09-08 11:10:12 +0100729 continue;
David Howells31a1b982016-09-24 18:05:26 +0100730 summary->nr_new_nacks++;
David Howellsbe8aa332016-09-23 12:39:23 +0100731 if (anno_type == RXRPC_TX_ANNO_RETRANS)
732 continue;
David Howellsf07373e2016-09-22 00:29:32 +0100733 call->rxtx_annotations[ix] =
734 RXRPC_TX_ANNO_NAK | annotation;
David Howells248f2192016-09-08 11:10:12 +0100735 break;
736 default:
737 return rxrpc_proto_abort("SFT", call, 0);
738 }
739 }
David Howells248f2192016-09-08 11:10:12 +0100740}
741
742/*
743 * Process an ACK packet.
744 *
745 * ack.firstPacket is the sequence number of the first soft-ACK'd/NAK'd packet
746 * in the ACK array. Anything before that is hard-ACK'd and may be discarded.
747 *
748 * A hard-ACK means that a packet has been processed and may be discarded; a
749 * soft-ACK means that the packet may be discarded and retransmission
750 * requested. A phase is complete when all packets are hard-ACK'd.
751 */
752static void rxrpc_input_ack(struct rxrpc_call *call, struct sk_buff *skb,
753 u16 skew)
754{
David Howells31a1b982016-09-24 18:05:26 +0100755 struct rxrpc_ack_summary summary = { 0 };
David Howells248f2192016-09-08 11:10:12 +0100756 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
757 union {
758 struct rxrpc_ackpacket ack;
759 struct rxrpc_ackinfo info;
760 u8 acks[RXRPC_MAXACKS];
761 } buf;
David Howells8e831342016-09-22 00:29:31 +0100762 rxrpc_serial_t acked_serial;
David Howells248f2192016-09-08 11:10:12 +0100763 rxrpc_seq_t first_soft_ack, hard_ack;
David Howells775e5b72016-09-30 13:26:03 +0100764 int nr_acks, offset, ioffset;
David Howells248f2192016-09-08 11:10:12 +0100765
766 _enter("");
767
David Howells775e5b72016-09-30 13:26:03 +0100768 offset = sizeof(struct rxrpc_wire_header);
769 if (skb_copy_bits(skb, offset, &buf.ack, sizeof(buf.ack)) < 0) {
David Howells248f2192016-09-08 11:10:12 +0100770 _debug("extraction failure");
771 return rxrpc_proto_abort("XAK", call, 0);
772 }
David Howells775e5b72016-09-30 13:26:03 +0100773 offset += sizeof(buf.ack);
David Howells248f2192016-09-08 11:10:12 +0100774
David Howells8e831342016-09-22 00:29:31 +0100775 acked_serial = ntohl(buf.ack.serial);
David Howells248f2192016-09-08 11:10:12 +0100776 first_soft_ack = ntohl(buf.ack.firstPacket);
777 hard_ack = first_soft_ack - 1;
778 nr_acks = buf.ack.nAcks;
David Howells31a1b982016-09-24 18:05:26 +0100779 summary.ack_reason = (buf.ack.reason < RXRPC_ACK__INVALID ?
780 buf.ack.reason : RXRPC_ACK__INVALID);
David Howells248f2192016-09-08 11:10:12 +0100781
David Howells31a1b982016-09-24 18:05:26 +0100782 trace_rxrpc_rx_ack(call, first_soft_ack, summary.ack_reason, nr_acks);
David Howellsec71eb92016-09-17 10:49:13 +0100783
David Howells248f2192016-09-08 11:10:12 +0100784 _proto("Rx ACK %%%u { m=%hu f=#%u p=#%u s=%%%u r=%s n=%u }",
785 sp->hdr.serial,
786 ntohs(buf.ack.maxSkew),
787 first_soft_ack,
788 ntohl(buf.ack.previousPacket),
David Howells8e831342016-09-22 00:29:31 +0100789 acked_serial,
David Howells31a1b982016-09-24 18:05:26 +0100790 rxrpc_ack_names[summary.ack_reason],
David Howells248f2192016-09-08 11:10:12 +0100791 buf.ack.nAcks);
792
David Howells8e831342016-09-22 00:29:31 +0100793 if (buf.ack.reason == RXRPC_ACK_PING_RESPONSE)
794 rxrpc_input_ping_response(call, skb->tstamp, acked_serial,
795 sp->hdr.serial);
David Howells50235c42016-09-22 00:29:31 +0100796 if (buf.ack.reason == RXRPC_ACK_REQUESTED)
797 rxrpc_input_requested_ack(call, skb->tstamp, acked_serial,
798 sp->hdr.serial);
David Howells8e831342016-09-22 00:29:31 +0100799
David Howells248f2192016-09-08 11:10:12 +0100800 if (buf.ack.reason == RXRPC_ACK_PING) {
801 _proto("Rx ACK %%%u PING Request", sp->hdr.serial);
802 rxrpc_propose_ACK(call, RXRPC_ACK_PING_RESPONSE,
David Howells9c7ad432016-09-23 13:50:40 +0100803 skew, sp->hdr.serial, true, true,
804 rxrpc_propose_ack_respond_to_ping);
David Howells248f2192016-09-08 11:10:12 +0100805 } else if (sp->hdr.flags & RXRPC_REQUEST_ACK) {
806 rxrpc_propose_ACK(call, RXRPC_ACK_REQUESTED,
David Howells9c7ad432016-09-23 13:50:40 +0100807 skew, sp->hdr.serial, true, true,
808 rxrpc_propose_ack_respond_to_ack);
David Howells248f2192016-09-08 11:10:12 +0100809 }
810
David Howells2daa0b52018-10-08 15:46:11 +0100811 /* Discard any out-of-order or duplicate ACKs. */
812 if (before_eq(sp->hdr.serial, call->acks_latest)) {
813 _debug("discard ACK %d <= %d",
814 sp->hdr.serial, call->acks_latest);
815 return;
816 }
817 call->acks_latest_ts = skb->tstamp;
818 call->acks_latest = sp->hdr.serial;
819
820 /* Parse rwind and mtu sizes if provided. */
David Howells775e5b72016-09-30 13:26:03 +0100821 ioffset = offset + nr_acks + 3;
822 if (skb->len >= ioffset + sizeof(buf.info)) {
823 if (skb_copy_bits(skb, ioffset, &buf.info, sizeof(buf.info)) < 0)
David Howells248f2192016-09-08 11:10:12 +0100824 return rxrpc_proto_abort("XAI", call, 0);
825 rxrpc_input_ackinfo(call, skb, &buf.info);
826 }
827
828 if (first_soft_ack == 0)
829 return rxrpc_proto_abort("AK0", call, 0);
830
831 /* Ignore ACKs unless we are or have just been transmitting. */
832 switch (call->state) {
833 case RXRPC_CALL_CLIENT_SEND_REQUEST:
834 case RXRPC_CALL_CLIENT_AWAIT_REPLY:
835 case RXRPC_CALL_SERVER_SEND_REPLY:
836 case RXRPC_CALL_SERVER_AWAIT_ACK:
837 break;
838 default:
839 return;
840 }
841
David Howells248f2192016-09-08 11:10:12 +0100842 if (before(hard_ack, call->tx_hard_ack) ||
843 after(hard_ack, call->tx_top))
844 return rxrpc_proto_abort("AKW", call, 0);
David Howells70790db2016-09-23 12:39:22 +0100845 if (nr_acks > call->tx_top - hard_ack)
846 return rxrpc_proto_abort("AKN", call, 0);
David Howells248f2192016-09-08 11:10:12 +0100847
David Howellsd9ec6612018-10-08 15:46:01 +0100848 if (after(hard_ack, call->tx_hard_ack)) {
849 if (rxrpc_rotate_tx_window(call, hard_ack, &summary)) {
850 rxrpc_end_tx_phase(call, false, "ETA");
851 return;
852 }
853 }
David Howells248f2192016-09-08 11:10:12 +0100854
David Howells70790db2016-09-23 12:39:22 +0100855 if (nr_acks > 0) {
David Howells775e5b72016-09-30 13:26:03 +0100856 if (skb_copy_bits(skb, offset, buf.acks, nr_acks) < 0)
David Howells70790db2016-09-23 12:39:22 +0100857 return rxrpc_proto_abort("XSA", call, 0);
David Howells31a1b982016-09-24 18:05:26 +0100858 rxrpc_input_soft_acks(call, buf.acks, first_soft_ack, nr_acks,
859 &summary);
David Howells70790db2016-09-23 12:39:22 +0100860 }
David Howells248f2192016-09-08 11:10:12 +0100861
David Howells0d967962016-09-24 18:05:27 +0100862 if (call->rxtx_annotations[call->tx_top & RXRPC_RXTX_BUFF_MASK] &
863 RXRPC_TX_ANNO_LAST &&
David Howellsa9f312d2016-10-06 08:11:49 +0100864 summary.nr_acks == call->tx_top - hard_ack &&
865 rxrpc_is_client_call(call))
David Howells0d967962016-09-24 18:05:27 +0100866 rxrpc_propose_ACK(call, RXRPC_ACK_PING, skew, sp->hdr.serial,
867 false, true,
868 rxrpc_propose_ack_ping_for_lost_reply);
David Howells57494342016-09-24 18:05:27 +0100869
David Howellsed1e8672016-09-29 22:37:16 +0100870 return rxrpc_congestion_management(call, skb, &summary, acked_serial);
David Howells248f2192016-09-08 11:10:12 +0100871}
872
873/*
874 * Process an ACKALL packet.
875 */
876static void rxrpc_input_ackall(struct rxrpc_call *call, struct sk_buff *skb)
877{
David Howells31a1b982016-09-24 18:05:26 +0100878 struct rxrpc_ack_summary summary = { 0 };
David Howells248f2192016-09-08 11:10:12 +0100879 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
880
881 _proto("Rx ACKALL %%%u", sp->hdr.serial);
882
David Howellsd9ec6612018-10-08 15:46:01 +0100883 if (rxrpc_rotate_tx_window(call, call->tx_top, &summary))
David Howells70790db2016-09-23 12:39:22 +0100884 rxrpc_end_tx_phase(call, false, "ETL");
David Howells248f2192016-09-08 11:10:12 +0100885}
886
887/*
888 * Process an ABORT packet.
889 */
890static void rxrpc_input_abort(struct rxrpc_call *call, struct sk_buff *skb)
David Howells17926a72007-04-26 15:48:28 -0700891{
892 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
David Howells0d12f8a2016-03-04 15:53:46 +0000893 __be32 wtmp;
David Howells248f2192016-09-08 11:10:12 +0100894 u32 abort_code = RX_CALL_DEAD;
895
896 _enter("");
897
898 if (skb->len >= 4 &&
David Howells775e5b72016-09-30 13:26:03 +0100899 skb_copy_bits(skb, sizeof(struct rxrpc_wire_header),
900 &wtmp, sizeof(wtmp)) >= 0)
David Howells248f2192016-09-08 11:10:12 +0100901 abort_code = ntohl(wtmp);
902
903 _proto("Rx ABORT %%%u { %x }", sp->hdr.serial, abort_code);
904
905 if (rxrpc_set_call_completion(call, RXRPC_CALL_REMOTELY_ABORTED,
906 abort_code, ECONNABORTED))
907 rxrpc_notify_socket(call);
908}
909
910/*
911 * Process an incoming call packet.
912 */
913static void rxrpc_input_call_packet(struct rxrpc_call *call,
914 struct sk_buff *skb, u16 skew)
915{
916 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
David Howells17926a72007-04-26 15:48:28 -0700917
918 _enter("%p,%p", call, skb);
919
David Howells17926a72007-04-26 15:48:28 -0700920 switch (sp->hdr.type) {
David Howells248f2192016-09-08 11:10:12 +0100921 case RXRPC_PACKET_TYPE_DATA:
922 rxrpc_input_data(call, skb, skew);
923 break;
David Howells17926a72007-04-26 15:48:28 -0700924
David Howells248f2192016-09-08 11:10:12 +0100925 case RXRPC_PACKET_TYPE_ACK:
926 rxrpc_input_ack(call, skb, skew);
927 break;
David Howells17926a72007-04-26 15:48:28 -0700928
929 case RXRPC_PACKET_TYPE_BUSY:
David Howells0d12f8a2016-03-04 15:53:46 +0000930 _proto("Rx BUSY %%%u", sp->hdr.serial);
David Howells17926a72007-04-26 15:48:28 -0700931
David Howells248f2192016-09-08 11:10:12 +0100932 /* Just ignore BUSY packets from the server; the retry and
933 * lifespan timers will take care of business. BUSY packets
934 * from the client don't make sense.
935 */
936 break;
David Howells17926a72007-04-26 15:48:28 -0700937
David Howells248f2192016-09-08 11:10:12 +0100938 case RXRPC_PACKET_TYPE_ABORT:
939 rxrpc_input_abort(call, skb);
940 break;
941
942 case RXRPC_PACKET_TYPE_ACKALL:
943 rxrpc_input_ackall(call, skb);
944 break;
David Howells17926a72007-04-26 15:48:28 -0700945
946 default:
David Howells0d12f8a2016-03-04 15:53:46 +0000947 _proto("Rx %s %%%u", rxrpc_pkts[sp->hdr.type], sp->hdr.serial);
David Howells17926a72007-04-26 15:48:28 -0700948 break;
949 }
950
David Howells17926a72007-04-26 15:48:28 -0700951 _leave("");
952}
953
954/*
David Howellsb3156272016-10-06 08:11:49 +0100955 * Handle a new call on a channel implicitly completing the preceding call on
956 * that channel.
957 *
958 * TODO: If callNumber > call_id + 1, renegotiate security.
959 */
960static void rxrpc_input_implicit_end_call(struct rxrpc_connection *conn,
961 struct rxrpc_call *call)
962{
963 switch (call->state) {
964 case RXRPC_CALL_SERVER_AWAIT_ACK:
965 rxrpc_call_completed(call);
966 break;
967 case RXRPC_CALL_COMPLETE:
968 break;
969 default:
970 if (rxrpc_abort_call("IMP", call, 0, RX_CALL_DEAD, ESHUTDOWN)) {
971 set_bit(RXRPC_CALL_EV_ABORT, &call->events);
972 rxrpc_queue_call(call);
973 }
974 break;
975 }
976
977 __rxrpc_disconnect_call(conn, call);
978 rxrpc_notify_socket(call);
979}
980
981/*
David Howells17926a72007-04-26 15:48:28 -0700982 * post connection-level events to the connection
David Howells18bfeba2016-08-23 15:27:25 +0100983 * - this includes challenges, responses, some aborts and call terminal packet
984 * retransmission.
David Howells17926a72007-04-26 15:48:28 -0700985 */
David Howells2e7e9752016-08-09 10:11:48 +0100986static void rxrpc_post_packet_to_conn(struct rxrpc_connection *conn,
David Howells17926a72007-04-26 15:48:28 -0700987 struct sk_buff *skb)
988{
989 _enter("%p,%p", conn, skb);
990
David Howells17926a72007-04-26 15:48:28 -0700991 skb_queue_tail(&conn->rx_queue, skb);
David Howells2e7e9752016-08-09 10:11:48 +0100992 rxrpc_queue_conn(conn);
David Howells17926a72007-04-26 15:48:28 -0700993}
994
David Howells44ba0692015-04-01 16:31:26 +0100995/*
996 * post endpoint-level events to the local endpoint
997 * - this includes debug and version messages
998 */
999static void rxrpc_post_packet_to_local(struct rxrpc_local *local,
1000 struct sk_buff *skb)
1001{
1002 _enter("%p,%p", local, skb);
1003
David Howells44ba0692015-04-01 16:31:26 +01001004 skb_queue_tail(&local->event_queue, skb);
David Howells5acbee42016-06-27 10:32:02 +01001005 rxrpc_queue_local(local);
David Howells44ba0692015-04-01 16:31:26 +01001006}
1007
David Howells0d12f8a2016-03-04 15:53:46 +00001008/*
David Howells248f2192016-09-08 11:10:12 +01001009 * put a packet up for transport-level abort
1010 */
1011static void rxrpc_reject_packet(struct rxrpc_local *local, struct sk_buff *skb)
1012{
1013 CHECK_SLAB_OKAY(&local->usage);
1014
1015 skb_queue_tail(&local->reject_queue, skb);
1016 rxrpc_queue_local(local);
1017}
1018
1019/*
David Howells0d12f8a2016-03-04 15:53:46 +00001020 * Extract the wire header from a packet and translate the byte order.
1021 */
1022static noinline
1023int rxrpc_extract_header(struct rxrpc_skb_priv *sp, struct sk_buff *skb)
1024{
1025 struct rxrpc_wire_header whdr;
1026
1027 /* dig out the RxRPC connection details */
Willem de Bruijn4d0fc732016-04-07 11:44:59 -04001028 if (skb_copy_bits(skb, 0, &whdr, sizeof(whdr)) < 0)
David Howells0d12f8a2016-03-04 15:53:46 +00001029 return -EBADMSG;
David Howells0d12f8a2016-03-04 15:53:46 +00001030
1031 memset(sp, 0, sizeof(*sp));
1032 sp->hdr.epoch = ntohl(whdr.epoch);
1033 sp->hdr.cid = ntohl(whdr.cid);
1034 sp->hdr.callNumber = ntohl(whdr.callNumber);
1035 sp->hdr.seq = ntohl(whdr.seq);
1036 sp->hdr.serial = ntohl(whdr.serial);
1037 sp->hdr.flags = whdr.flags;
1038 sp->hdr.type = whdr.type;
1039 sp->hdr.userStatus = whdr.userStatus;
1040 sp->hdr.securityIndex = whdr.securityIndex;
1041 sp->hdr._rsvd = ntohs(whdr._rsvd);
1042 sp->hdr.serviceId = ntohs(whdr.serviceId);
1043 return 0;
1044}
1045
David Howells17926a72007-04-26 15:48:28 -07001046/*
1047 * handle data received on the local endpoint
1048 * - may be called in interrupt context
David Howells4f95dd72016-04-04 14:00:35 +01001049 *
1050 * The socket is locked by the caller and this prevents the socket from being
1051 * shut down and the local endpoint from going away, thus sk_user_data will not
1052 * be cleared until this function returns.
David Howells17926a72007-04-26 15:48:28 -07001053 */
David Howells248f2192016-09-08 11:10:12 +01001054void rxrpc_data_ready(struct sock *udp_sk)
David Howells17926a72007-04-26 15:48:28 -07001055{
David Howells8496af52016-07-01 07:51:50 +01001056 struct rxrpc_connection *conn;
David Howells248f2192016-09-08 11:10:12 +01001057 struct rxrpc_channel *chan;
1058 struct rxrpc_call *call;
David Howells17926a72007-04-26 15:48:28 -07001059 struct rxrpc_skb_priv *sp;
David Howells248f2192016-09-08 11:10:12 +01001060 struct rxrpc_local *local = udp_sk->sk_user_data;
David Howells17926a72007-04-26 15:48:28 -07001061 struct sk_buff *skb;
David Howells248f2192016-09-08 11:10:12 +01001062 unsigned int channel;
David Howells563ea7d2016-08-23 15:27:25 +01001063 int ret, skew;
David Howells17926a72007-04-26 15:48:28 -07001064
David Howells248f2192016-09-08 11:10:12 +01001065 _enter("%p", udp_sk);
David Howells17926a72007-04-26 15:48:28 -07001066
1067 ASSERT(!irqs_disabled());
1068
David Howells248f2192016-09-08 11:10:12 +01001069 skb = skb_recv_datagram(udp_sk, 0, 1, &ret);
David Howells17926a72007-04-26 15:48:28 -07001070 if (!skb) {
David Howells17926a72007-04-26 15:48:28 -07001071 if (ret == -EAGAIN)
1072 return;
1073 _debug("UDP socket error %d", ret);
1074 return;
1075 }
1076
David Howells71f3ca42016-09-17 10:49:14 +01001077 rxrpc_new_skb(skb, rxrpc_skb_rx_received);
David Howells17926a72007-04-26 15:48:28 -07001078
1079 _net("recv skb %p", skb);
1080
1081 /* we'll probably need to checksum it (didn't call sock_recvmsg) */
1082 if (skb_checksum_complete(skb)) {
David Howells71f3ca42016-09-17 10:49:14 +01001083 rxrpc_free_skb(skb, rxrpc_skb_rx_freed);
Eric Dumazet02c22342016-04-27 16:44:30 -07001084 __UDP_INC_STATS(&init_net, UDP_MIB_INERRORS, 0);
David Howells17926a72007-04-26 15:48:28 -07001085 _leave(" [CSUM failed]");
1086 return;
1087 }
1088
Eric Dumazet02c22342016-04-27 16:44:30 -07001089 __UDP_INC_STATS(&init_net, UDP_MIB_INDATAGRAMS, 0);
Herbert Xu1781f7f2007-12-11 11:30:32 -08001090
David Howells0d12f8a2016-03-04 15:53:46 +00001091 /* The socket buffer we have is owned by UDP, with UDP's data all over
1092 * it, but we really want our own data there.
1093 */
David Howells17926a72007-04-26 15:48:28 -07001094 skb_orphan(skb);
1095 sp = rxrpc_skb(skb);
David Howells17926a72007-04-26 15:48:28 -07001096
David Howells89b475a2016-09-23 12:39:22 +01001097 /* dig out the RxRPC connection details */
1098 if (rxrpc_extract_header(sp, skb) < 0)
1099 goto bad_message;
1100
David Howells8a681c362016-09-17 10:49:15 +01001101 if (IS_ENABLED(CONFIG_AF_RXRPC_INJECT_LOSS)) {
1102 static int lose;
1103 if ((lose++ & 7) == 7) {
David Howells89b475a2016-09-23 12:39:22 +01001104 trace_rxrpc_rx_lose(sp);
David Howells8a681c362016-09-17 10:49:15 +01001105 rxrpc_lose_skb(skb, rxrpc_skb_rx_lost);
1106 return;
1107 }
1108 }
1109
David Howells49e19ec2016-09-08 11:10:12 +01001110 trace_rxrpc_rx_packet(sp);
David Howells17926a72007-04-26 15:48:28 -07001111
1112 _net("Rx RxRPC %s ep=%x call=%x:%x",
1113 sp->hdr.flags & RXRPC_CLIENT_INITIATED ? "ToServer" : "ToClient",
David Howells0d12f8a2016-03-04 15:53:46 +00001114 sp->hdr.epoch, sp->hdr.cid, sp->hdr.callNumber);
David Howells17926a72007-04-26 15:48:28 -07001115
David Howells351c1e62016-03-04 15:56:06 +00001116 if (sp->hdr.type >= RXRPC_N_PACKET_TYPES ||
1117 !((RXRPC_SUPPORTED_PACKET_TYPES >> sp->hdr.type) & 1)) {
David Howells17926a72007-04-26 15:48:28 -07001118 _proto("Rx Bad Packet Type %u", sp->hdr.type);
1119 goto bad_message;
1120 }
1121
David Howells248f2192016-09-08 11:10:12 +01001122 switch (sp->hdr.type) {
1123 case RXRPC_PACKET_TYPE_VERSION:
David Howells44ba0692015-04-01 16:31:26 +01001124 rxrpc_post_packet_to_local(local, skb);
1125 goto out;
David Howellsbc6e1ea2016-06-10 22:30:27 +01001126
David Howells248f2192016-09-08 11:10:12 +01001127 case RXRPC_PACKET_TYPE_BUSY:
1128 if (sp->hdr.flags & RXRPC_CLIENT_INITIATED)
1129 goto discard;
1130
1131 case RXRPC_PACKET_TYPE_DATA:
1132 if (sp->hdr.callNumber == 0)
1133 goto bad_message;
1134 if (sp->hdr.flags & RXRPC_JUMBO_PACKET &&
1135 !rxrpc_validate_jumbo(skb))
1136 goto bad_message;
1137 break;
1138 }
David Howells17926a72007-04-26 15:48:28 -07001139
David Howells8496af52016-07-01 07:51:50 +01001140 rcu_read_lock();
1141
David Howells8496af52016-07-01 07:51:50 +01001142 conn = rxrpc_find_connection_rcu(local, skb);
David Howells248f2192016-09-08 11:10:12 +01001143 if (conn) {
1144 if (sp->hdr.securityIndex != conn->security_ix)
1145 goto wrong_security;
David Howells563ea7d2016-08-23 15:27:25 +01001146
David Howells248f2192016-09-08 11:10:12 +01001147 if (sp->hdr.callNumber == 0) {
1148 /* Connection-level packet */
1149 _debug("CONN %p {%d}", conn, conn->debug_id);
1150 rxrpc_post_packet_to_conn(conn, skb);
1151 goto out_unlock;
1152 }
David Howells8496af52016-07-01 07:51:50 +01001153
David Howells248f2192016-09-08 11:10:12 +01001154 /* Note the serial number skew here */
1155 skew = (int)sp->hdr.serial - (int)conn->hi_serial;
1156 if (skew >= 0) {
1157 if (skew > 0)
1158 conn->hi_serial = sp->hdr.serial;
1159 } else {
1160 skew = -skew;
1161 skew = min(skew, 65535);
1162 }
1163
David Howells8496af52016-07-01 07:51:50 +01001164 /* Call-bound packets are routed by connection channel. */
David Howells248f2192016-09-08 11:10:12 +01001165 channel = sp->hdr.cid & RXRPC_CHANNELMASK;
1166 chan = &conn->channels[channel];
Tim Smith77276402014-03-03 23:04:45 +00001167
David Howells18bfeba2016-08-23 15:27:25 +01001168 /* Ignore really old calls */
1169 if (sp->hdr.callNumber < chan->last_call)
1170 goto discard_unlock;
1171
1172 if (sp->hdr.callNumber == chan->last_call) {
David Howells34f05162018-03-30 21:04:44 +01001173 if (chan->call ||
1174 sp->hdr.type == RXRPC_PACKET_TYPE_ABORT)
David Howells18bfeba2016-08-23 15:27:25 +01001175 goto discard_unlock;
1176
David Howells34f05162018-03-30 21:04:44 +01001177 /* For the previous service call, if completed
1178 * successfully, we discard all further packets.
1179 */
1180 if (rxrpc_conn_is_service(conn) &&
1181 chan->last_type == RXRPC_PACKET_TYPE_ACK)
1182 goto discard_unlock;
1183
1184 /* But otherwise we need to retransmit the final packet
1185 * from data cached in the connection record.
David Howells18bfeba2016-08-23 15:27:25 +01001186 */
1187 rxrpc_post_packet_to_conn(conn, skb);
1188 goto out_unlock;
1189 }
1190
1191 call = rcu_dereference(chan->call);
David Howellsb3156272016-10-06 08:11:49 +01001192
1193 if (sp->hdr.callNumber > chan->call_id) {
1194 if (!(sp->hdr.flags & RXRPC_CLIENT_INITIATED)) {
1195 rcu_read_unlock();
1196 goto reject_packet;
1197 }
1198 if (call)
1199 rxrpc_input_implicit_end_call(conn, call);
1200 call = NULL;
1201 }
David Howells248f2192016-09-08 11:10:12 +01001202 } else {
1203 skew = 0;
1204 call = NULL;
Tim Smith77276402014-03-03 23:04:45 +00001205 }
David Howells44ba0692015-04-01 16:31:26 +01001206
David Howells248f2192016-09-08 11:10:12 +01001207 if (!call || atomic_read(&call->usage) == 0) {
1208 if (!(sp->hdr.type & RXRPC_CLIENT_INITIATED) ||
1209 sp->hdr.callNumber == 0 ||
1210 sp->hdr.type != RXRPC_PACKET_TYPE_DATA)
1211 goto bad_message_unlock;
1212 if (sp->hdr.seq != 1)
1213 goto discard_unlock;
1214 call = rxrpc_new_incoming_call(local, conn, skb);
1215 if (!call) {
1216 rcu_read_unlock();
1217 goto reject_packet;
1218 }
David Howells8e831342016-09-22 00:29:31 +01001219 rxrpc_send_ping(call, skb, skew);
David Howells248f2192016-09-08 11:10:12 +01001220 }
1221
1222 rxrpc_input_call_packet(call, skb, skew);
1223 goto discard_unlock;
1224
David Howells18bfeba2016-08-23 15:27:25 +01001225discard_unlock:
David Howells8496af52016-07-01 07:51:50 +01001226 rcu_read_unlock();
David Howells248f2192016-09-08 11:10:12 +01001227discard:
David Howells71f3ca42016-09-17 10:49:14 +01001228 rxrpc_free_skb(skb, rxrpc_skb_rx_freed);
David Howells44ba0692015-04-01 16:31:26 +01001229out:
David Howells49e19ec2016-09-08 11:10:12 +01001230 trace_rxrpc_rx_done(0, 0);
David Howells17926a72007-04-26 15:48:28 -07001231 return;
1232
David Howells248f2192016-09-08 11:10:12 +01001233out_unlock:
David Howells8496af52016-07-01 07:51:50 +01001234 rcu_read_unlock();
David Howells248f2192016-09-08 11:10:12 +01001235 goto out;
David Howells8496af52016-07-01 07:51:50 +01001236
David Howells248f2192016-09-08 11:10:12 +01001237wrong_security:
1238 rcu_read_unlock();
1239 trace_rxrpc_abort("SEC", sp->hdr.cid, sp->hdr.callNumber, sp->hdr.seq,
1240 RXKADINCONSISTENCY, EBADMSG);
1241 skb->priority = RXKADINCONSISTENCY;
1242 goto post_abort;
David Howells17926a72007-04-26 15:48:28 -07001243
David Howells248f2192016-09-08 11:10:12 +01001244bad_message_unlock:
1245 rcu_read_unlock();
David Howells17926a72007-04-26 15:48:28 -07001246bad_message:
David Howells248f2192016-09-08 11:10:12 +01001247 trace_rxrpc_abort("BAD", sp->hdr.cid, sp->hdr.callNumber, sp->hdr.seq,
1248 RX_PROTOCOL_ERROR, EBADMSG);
David Howells17926a72007-04-26 15:48:28 -07001249 skb->priority = RX_PROTOCOL_ERROR;
David Howells248f2192016-09-08 11:10:12 +01001250post_abort:
1251 skb->mark = RXRPC_SKB_MARK_LOCAL_ABORT;
David Howells49e19ec2016-09-08 11:10:12 +01001252reject_packet:
1253 trace_rxrpc_rx_done(skb->mark, skb->priority);
David Howells17926a72007-04-26 15:48:28 -07001254 rxrpc_reject_packet(local, skb);
David Howells17926a72007-04-26 15:48:28 -07001255 _leave(" [badmsg]");
1256}