Merge tag 'sound-5.3-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai...
[linux-2.6-block.git] / net / rxrpc / input.c
CommitLineData
2874c5fd 1// SPDX-License-Identifier: GPL-2.0-or-later
17926a79
DH
2/* RxRPC packet reception
3 *
248f219c 4 * Copyright (C) 2007, 2016 Red Hat, Inc. All Rights Reserved.
17926a79 5 * Written by David Howells (dhowells@redhat.com)
17926a79
DH
6 */
7
9b6d5398
JP
8#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
9
17926a79
DH
10#include <linux/module.h>
11#include <linux/net.h>
12#include <linux/skbuff.h>
13#include <linux/errqueue.h>
14#include <linux/udp.h>
15#include <linux/in.h>
16#include <linux/in6.h>
17#include <linux/icmp.h>
5a0e3ad6 18#include <linux/gfp.h>
17926a79
DH
19#include <net/sock.h>
20#include <net/af_rxrpc.h>
21#include <net/ip.h>
1781f7f5 22#include <net/udp.h>
0283328e 23#include <net/net_namespace.h>
17926a79
DH
24#include "ar-internal.h"
25
248f219c
DH
26static void rxrpc_proto_abort(const char *why,
27 struct rxrpc_call *call, rxrpc_seq_t seq)
28{
3a92789a 29 if (rxrpc_abort_call(why, call, seq, RX_PROTOCOL_ERROR, -EBADMSG)) {
248f219c
DH
30 set_bit(RXRPC_CALL_EV_ABORT, &call->events);
31 rxrpc_queue_call(call);
32 }
33}
34
57494343
DH
35/*
36 * Do TCP-style congestion management [RFC 5681].
37 */
38static void rxrpc_congestion_management(struct rxrpc_call *call,
39 struct sk_buff *skb,
ed1e8679
DH
40 struct rxrpc_ack_summary *summary,
41 rxrpc_serial_t acked_serial)
57494343
DH
42{
43 enum rxrpc_congest_change change = rxrpc_cong_no_change;
57494343
DH
44 unsigned int cumulative_acks = call->cong_cumul_acks;
45 unsigned int cwnd = call->cong_cwnd;
46 bool resend = false;
47
48 summary->flight_size =
49 (call->tx_top - call->tx_hard_ack) - summary->nr_acks;
50
51 if (test_and_clear_bit(RXRPC_CALL_RETRANS_TIMEOUT, &call->flags)) {
52 summary->retrans_timeo = true;
53 call->cong_ssthresh = max_t(unsigned int,
54 summary->flight_size / 2, 2);
55 cwnd = 1;
8782def2 56 if (cwnd >= call->cong_ssthresh &&
57494343
DH
57 call->cong_mode == RXRPC_CALL_SLOW_START) {
58 call->cong_mode = RXRPC_CALL_CONGEST_AVOIDANCE;
59 call->cong_tstamp = skb->tstamp;
60 cumulative_acks = 0;
61 }
62 }
63
64 cumulative_acks += summary->nr_new_acks;
65 cumulative_acks += summary->nr_rot_new_acks;
66 if (cumulative_acks > 255)
67 cumulative_acks = 255;
68
69 summary->mode = call->cong_mode;
70 summary->cwnd = call->cong_cwnd;
71 summary->ssthresh = call->cong_ssthresh;
72 summary->cumulative_acks = cumulative_acks;
73 summary->dup_acks = call->cong_dup_acks;
74
75 switch (call->cong_mode) {
76 case RXRPC_CALL_SLOW_START:
77 if (summary->nr_nacks > 0)
78 goto packet_loss_detected;
79 if (summary->cumulative_acks > 0)
80 cwnd += 1;
8782def2 81 if (cwnd >= call->cong_ssthresh) {
57494343
DH
82 call->cong_mode = RXRPC_CALL_CONGEST_AVOIDANCE;
83 call->cong_tstamp = skb->tstamp;
84 }
85 goto out;
86
87 case RXRPC_CALL_CONGEST_AVOIDANCE:
88 if (summary->nr_nacks > 0)
89 goto packet_loss_detected;
90
91 /* We analyse the number of packets that get ACK'd per RTT
92 * period and increase the window if we managed to fill it.
93 */
94 if (call->peer->rtt_usage == 0)
95 goto out;
96 if (ktime_before(skb->tstamp,
97 ktime_add_ns(call->cong_tstamp,
98 call->peer->rtt)))
99 goto out_no_clear_ca;
100 change = rxrpc_cong_rtt_window_end;
101 call->cong_tstamp = skb->tstamp;
102 if (cumulative_acks >= cwnd)
103 cwnd++;
104 goto out;
105
106 case RXRPC_CALL_PACKET_LOSS:
107 if (summary->nr_nacks == 0)
108 goto resume_normality;
109
110 if (summary->new_low_nack) {
111 change = rxrpc_cong_new_low_nack;
112 call->cong_dup_acks = 1;
113 if (call->cong_extra > 1)
114 call->cong_extra = 1;
115 goto send_extra_data;
116 }
117
118 call->cong_dup_acks++;
119 if (call->cong_dup_acks < 3)
120 goto send_extra_data;
121
122 change = rxrpc_cong_begin_retransmission;
123 call->cong_mode = RXRPC_CALL_FAST_RETRANSMIT;
124 call->cong_ssthresh = max_t(unsigned int,
125 summary->flight_size / 2, 2);
126 cwnd = call->cong_ssthresh + 3;
127 call->cong_extra = 0;
128 call->cong_dup_acks = 0;
129 resend = true;
130 goto out;
131
132 case RXRPC_CALL_FAST_RETRANSMIT:
133 if (!summary->new_low_nack) {
134 if (summary->nr_new_acks == 0)
135 cwnd += 1;
136 call->cong_dup_acks++;
137 if (call->cong_dup_acks == 2) {
138 change = rxrpc_cong_retransmit_again;
139 call->cong_dup_acks = 0;
140 resend = true;
141 }
142 } else {
143 change = rxrpc_cong_progress;
144 cwnd = call->cong_ssthresh;
145 if (summary->nr_nacks == 0)
146 goto resume_normality;
147 }
148 goto out;
149
150 default:
151 BUG();
152 goto out;
153 }
154
155resume_normality:
156 change = rxrpc_cong_cleared_nacks;
157 call->cong_dup_acks = 0;
158 call->cong_extra = 0;
159 call->cong_tstamp = skb->tstamp;
8782def2 160 if (cwnd < call->cong_ssthresh)
57494343
DH
161 call->cong_mode = RXRPC_CALL_SLOW_START;
162 else
163 call->cong_mode = RXRPC_CALL_CONGEST_AVOIDANCE;
164out:
165 cumulative_acks = 0;
166out_no_clear_ca:
167 if (cwnd >= RXRPC_RXTX_BUFF_SIZE - 1)
168 cwnd = RXRPC_RXTX_BUFF_SIZE - 1;
169 call->cong_cwnd = cwnd;
170 call->cong_cumul_acks = cumulative_acks;
ed1e8679 171 trace_rxrpc_congest(call, summary, acked_serial, change);
57494343
DH
172 if (resend && !test_and_set_bit(RXRPC_CALL_EV_RESEND, &call->events))
173 rxrpc_queue_call(call);
174 return;
175
176packet_loss_detected:
177 change = rxrpc_cong_saw_nack;
178 call->cong_mode = RXRPC_CALL_PACKET_LOSS;
179 call->cong_dup_acks = 0;
180 goto send_extra_data;
181
182send_extra_data:
183 /* Send some previously unsent DATA if we have some to advance the ACK
184 * state.
185 */
186 if (call->rxtx_annotations[call->tx_top & RXRPC_RXTX_BUFF_MASK] &
187 RXRPC_TX_ANNO_LAST ||
188 summary->nr_acks != call->tx_top - call->tx_hard_ack) {
189 call->cong_extra++;
190 wake_up(&call->waitq);
191 }
192 goto out_no_clear_ca;
193}
194
8e83134d
DH
195/*
196 * Ping the other end to fill our RTT cache and to retrieve the rwind
197 * and MTU parameters.
198 */
199static void rxrpc_send_ping(struct rxrpc_call *call, struct sk_buff *skb,
200 int skew)
201{
202 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
fc943f67 203 ktime_t now = skb->tstamp;
8e83134d 204
fc943f67
DH
205 if (call->peer->rtt_usage < 3 ||
206 ktime_before(ktime_add_ms(call->peer->rtt_last_req, 1000), now))
207 rxrpc_propose_ACK(call, RXRPC_ACK_PING, skew, sp->hdr.serial,
9c7ad434
DH
208 true, true,
209 rxrpc_propose_ack_ping_for_params);
8e83134d
DH
210}
211
17926a79 212/*
248f219c 213 * Apply a hard ACK by advancing the Tx window.
17926a79 214 */
c479d5f2 215static bool rxrpc_rotate_tx_window(struct rxrpc_call *call, rxrpc_seq_t to,
31a1b989 216 struct rxrpc_ack_summary *summary)
17926a79 217{
248f219c 218 struct sk_buff *skb, *list = NULL;
c479d5f2 219 bool rot_last = false;
248f219c 220 int ix;
70790dbe 221 u8 annotation;
17926a79 222
31a1b989
DH
223 if (call->acks_lowest_nak == call->tx_hard_ack) {
224 call->acks_lowest_nak = to;
225 } else if (before_eq(call->acks_lowest_nak, to)) {
226 summary->new_low_nack = true;
227 call->acks_lowest_nak = to;
228 }
229
248f219c 230 spin_lock(&call->lock);
17926a79 231
248f219c
DH
232 while (before(call->tx_hard_ack, to)) {
233 call->tx_hard_ack++;
234 ix = call->tx_hard_ack & RXRPC_RXTX_BUFF_MASK;
235 skb = call->rxtx_buffer[ix];
70790dbe 236 annotation = call->rxtx_annotations[ix];
71f3ca40 237 rxrpc_see_skb(skb, rxrpc_skb_tx_rotated);
248f219c
DH
238 call->rxtx_buffer[ix] = NULL;
239 call->rxtx_annotations[ix] = 0;
240 skb->next = list;
241 list = skb;
70790dbe 242
c479d5f2 243 if (annotation & RXRPC_TX_ANNO_LAST) {
70790dbe 244 set_bit(RXRPC_CALL_TX_LAST, &call->flags);
c479d5f2
DH
245 rot_last = true;
246 }
31a1b989
DH
247 if ((annotation & RXRPC_TX_ANNO_MASK) != RXRPC_TX_ANNO_ACK)
248 summary->nr_rot_new_acks++;
248f219c 249 }
17926a79 250
248f219c 251 spin_unlock(&call->lock);
17926a79 252
c479d5f2 253 trace_rxrpc_transmit(call, (rot_last ?
70790dbe
DH
254 rxrpc_transmit_rotate_last :
255 rxrpc_transmit_rotate));
bc4abfcf
DH
256 wake_up(&call->waitq);
257
248f219c
DH
258 while (list) {
259 skb = list;
260 list = skb->next;
a8305bff 261 skb_mark_not_on_list(skb);
71f3ca40 262 rxrpc_free_skb(skb, rxrpc_skb_tx_freed);
17926a79 263 }
c479d5f2
DH
264
265 return rot_last;
248f219c 266}
17926a79 267
248f219c
DH
268/*
269 * End the transmission phase of a call.
270 *
271 * This occurs when we get an ACKALL packet, the first DATA packet of a reply,
272 * or a final ACK packet.
273 */
70790dbe
DH
274static bool rxrpc_end_tx_phase(struct rxrpc_call *call, bool reply_begun,
275 const char *abort_why)
248f219c 276{
dfe99522 277 unsigned int state;
17926a79 278
70790dbe 279 ASSERT(test_bit(RXRPC_CALL_TX_LAST, &call->flags));
17926a79 280
248f219c 281 write_lock(&call->state_lock);
651350d1 282
dfe99522
DH
283 state = call->state;
284 switch (state) {
70790dbe 285 case RXRPC_CALL_CLIENT_SEND_REQUEST:
248f219c 286 case RXRPC_CALL_CLIENT_AWAIT_REPLY:
70790dbe 287 if (reply_begun)
dfe99522 288 call->state = state = RXRPC_CALL_CLIENT_RECV_REPLY;
70790dbe 289 else
dfe99522 290 call->state = state = RXRPC_CALL_CLIENT_AWAIT_REPLY;
248f219c 291 break;
70790dbe 292
248f219c
DH
293 case RXRPC_CALL_SERVER_AWAIT_ACK:
294 __rxrpc_call_completed(call);
295 rxrpc_notify_socket(call);
dfe99522 296 state = call->state;
248f219c 297 break;
70790dbe
DH
298
299 default:
300 goto bad_state;
17926a79 301 }
17926a79 302
248f219c 303 write_unlock(&call->state_lock);
dfe99522 304 if (state == RXRPC_CALL_CLIENT_AWAIT_REPLY)
70790dbe 305 trace_rxrpc_transmit(call, rxrpc_transmit_await_reply);
dfe99522 306 else
70790dbe 307 trace_rxrpc_transmit(call, rxrpc_transmit_end);
248f219c
DH
308 _leave(" = ok");
309 return true;
70790dbe
DH
310
311bad_state:
312 write_unlock(&call->state_lock);
313 kdebug("end_tx %s", rxrpc_call_states[call->state]);
314 rxrpc_proto_abort(abort_why, call, call->tx_top);
315 return false;
316}
317
318/*
319 * Begin the reply reception phase of a call.
320 */
321static bool rxrpc_receiving_reply(struct rxrpc_call *call)
322{
31a1b989 323 struct rxrpc_ack_summary summary = { 0 };
a158bdd3 324 unsigned long now, timo;
70790dbe
DH
325 rxrpc_seq_t top = READ_ONCE(call->tx_top);
326
dd7c1ee5
DH
327 if (call->ackr_reason) {
328 spin_lock_bh(&call->lock);
329 call->ackr_reason = 0;
dd7c1ee5 330 spin_unlock_bh(&call->lock);
a158bdd3
DH
331 now = jiffies;
332 timo = now + MAX_JIFFY_OFFSET;
333 WRITE_ONCE(call->resend_at, timo);
334 WRITE_ONCE(call->ack_at, timo);
335 trace_rxrpc_timer(call, rxrpc_timer_init_for_reply, now);
dd7c1ee5
DH
336 }
337
70790dbe 338 if (!test_bit(RXRPC_CALL_TX_LAST, &call->flags)) {
c479d5f2
DH
339 if (!rxrpc_rotate_tx_window(call, top, &summary)) {
340 rxrpc_proto_abort("TXL", call, top);
341 return false;
342 }
70790dbe
DH
343 }
344 if (!rxrpc_end_tx_phase(call, true, "ETD"))
345 return false;
346 call->tx_phase = false;
347 return true;
248f219c
DH
348}
349
350/*
351 * Scan a jumbo packet to validate its structure and to work out how many
352 * subpackets it contains.
353 *
354 * A jumbo packet is a collection of consecutive packets glued together with
355 * little headers between that indicate how to change the initial header for
356 * each subpacket.
357 *
358 * RXRPC_JUMBO_PACKET must be set on all but the last subpacket - and all but
359 * the last are RXRPC_JUMBO_DATALEN in size. The last subpacket may be of any
360 * size.
361 */
362static bool rxrpc_validate_jumbo(struct sk_buff *skb)
363{
364 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
775e5b71 365 unsigned int offset = sizeof(struct rxrpc_wire_header);
89a80ed4 366 unsigned int len = skb->len;
248f219c
DH
367 int nr_jumbo = 1;
368 u8 flags = sp->hdr.flags;
369
370 do {
371 nr_jumbo++;
372 if (len - offset < RXRPC_JUMBO_SUBPKTLEN)
373 goto protocol_error;
374 if (flags & RXRPC_LAST_PACKET)
375 goto protocol_error;
376 offset += RXRPC_JUMBO_DATALEN;
377 if (skb_copy_bits(skb, offset, &flags, 1) < 0)
378 goto protocol_error;
379 offset += sizeof(struct rxrpc_jumbo_header);
380 } while (flags & RXRPC_JUMBO_PACKET);
381
382 sp->nr_jumbo = nr_jumbo;
383 return true;
17926a79 384
248f219c
DH
385protocol_error:
386 return false;
17926a79
DH
387}
388
389/*
248f219c
DH
390 * Handle reception of a duplicate packet.
391 *
392 * We have to take care to avoid an attack here whereby we're given a series of
393 * jumbograms, each with a sequence number one before the preceding one and
394 * filled up to maximum UDP size. If they never send us the first packet in
395 * the sequence, they can cause us to have to hold on to around 2MiB of kernel
396 * space until the call times out.
397 *
398 * We limit the space usage by only accepting three duplicate jumbo packets per
399 * call. After that, we tell the other side we're no longer accepting jumbos
400 * (that information is encoded in the ACK packet).
17926a79 401 */
248f219c 402static void rxrpc_input_dup_data(struct rxrpc_call *call, rxrpc_seq_t seq,
75e42126 403 u8 annotation, bool *_jumbo_bad)
17926a79 404{
248f219c
DH
405 /* Discard normal packets that are duplicates. */
406 if (annotation == 0)
407 return;
17926a79 408
248f219c
DH
409 /* Skip jumbo subpackets that are duplicates. When we've had three or
410 * more partially duplicate jumbo packets, we refuse to take any more
411 * jumbos for this call.
412 */
75e42126
DH
413 if (!*_jumbo_bad) {
414 call->nr_jumbo_bad++;
415 *_jumbo_bad = true;
248f219c
DH
416 }
417}
17926a79 418
248f219c
DH
419/*
420 * Process a DATA packet, adding the packet to the Rx ring.
421 */
422static void rxrpc_input_data(struct rxrpc_call *call, struct sk_buff *skb,
423 u16 skew)
424{
425 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
146d8fef 426 enum rxrpc_call_state state;
775e5b71 427 unsigned int offset = sizeof(struct rxrpc_wire_header);
248f219c
DH
428 unsigned int ix;
429 rxrpc_serial_t serial = sp->hdr.serial, ack_serial = 0;
430 rxrpc_seq_t seq = sp->hdr.seq, hard_ack;
75e42126 431 bool immediate_ack = false, jumbo_bad = false, queued;
248f219c
DH
432 u16 len;
433 u8 ack = 0, flags, annotation = 0;
17926a79 434
248f219c 435 _enter("{%u,%u},{%u,%u}",
89a80ed4 436 call->rx_hard_ack, call->rx_top, skb->len, seq);
17926a79 437
248f219c
DH
438 _proto("Rx DATA %%%u { #%u f=%02x }",
439 sp->hdr.serial, seq, sp->hdr.flags);
17926a79 440
146d8fef
DH
441 state = READ_ONCE(call->state);
442 if (state >= RXRPC_CALL_COMPLETE)
248f219c 443 return;
17926a79 444
a158bdd3
DH
445 if (call->state == RXRPC_CALL_SERVER_RECV_REQUEST) {
446 unsigned long timo = READ_ONCE(call->next_req_timo);
447 unsigned long now, expect_req_by;
448
449 if (timo) {
450 now = jiffies;
451 expect_req_by = now + timo;
452 WRITE_ONCE(call->expect_req_by, expect_req_by);
453 rxrpc_reduce_call_timer(call, expect_req_by, now,
454 rxrpc_timer_set_for_idle);
455 }
456 }
457
c1e15b49
DH
458 spin_lock(&call->input_lock);
459
248f219c
DH
460 /* Received data implicitly ACKs all of the request packets we sent
461 * when we're acting as a client.
462 */
146d8fef
DH
463 if ((state == RXRPC_CALL_CLIENT_SEND_REQUEST ||
464 state == RXRPC_CALL_CLIENT_AWAIT_REPLY) &&
70790dbe 465 !rxrpc_receiving_reply(call))
c1e15b49 466 goto unlock;
17926a79 467
248f219c 468 call->ackr_prev_seq = seq;
17926a79 469
248f219c
DH
470 hard_ack = READ_ONCE(call->rx_hard_ack);
471 if (after(seq, hard_ack + call->rx_winsize)) {
17926a79 472 ack = RXRPC_ACK_EXCEEDS_WINDOW;
248f219c
DH
473 ack_serial = serial;
474 goto ack;
17926a79
DH
475 }
476
248f219c
DH
477 flags = sp->hdr.flags;
478 if (flags & RXRPC_JUMBO_PACKET) {
75e42126 479 if (call->nr_jumbo_bad > 3) {
248f219c
DH
480 ack = RXRPC_ACK_NOSPACE;
481 ack_serial = serial;
482 goto ack;
17926a79 483 }
248f219c 484 annotation = 1;
17926a79
DH
485 }
486
248f219c
DH
487next_subpacket:
488 queued = false;
489 ix = seq & RXRPC_RXTX_BUFF_MASK;
89a80ed4 490 len = skb->len;
248f219c
DH
491 if (flags & RXRPC_JUMBO_PACKET)
492 len = RXRPC_JUMBO_DATALEN;
493
494 if (flags & RXRPC_LAST_PACKET) {
816c9fce 495 if (test_bit(RXRPC_CALL_RX_LAST, &call->flags) &&
c1e15b49
DH
496 seq != call->rx_top) {
497 rxrpc_proto_abort("LSN", call, seq);
498 goto unlock;
499 }
248f219c
DH
500 } else {
501 if (test_bit(RXRPC_CALL_RX_LAST, &call->flags) &&
c1e15b49
DH
502 after_eq(seq, call->rx_top)) {
503 rxrpc_proto_abort("LSA", call, seq);
504 goto unlock;
505 }
17926a79
DH
506 }
507
4764c0da 508 trace_rxrpc_rx_data(call->debug_id, seq, serial, flags, annotation);
248f219c
DH
509 if (before_eq(seq, hard_ack)) {
510 ack = RXRPC_ACK_DUPLICATE;
511 ack_serial = serial;
512 goto skip;
513 }
514
515 if (flags & RXRPC_REQUEST_ACK && !ack) {
516 ack = RXRPC_ACK_REQUESTED;
517 ack_serial = serial;
518 }
519
520 if (call->rxtx_buffer[ix]) {
75e42126 521 rxrpc_input_dup_data(call, seq, annotation, &jumbo_bad);
248f219c
DH
522 if (ack != RXRPC_ACK_DUPLICATE) {
523 ack = RXRPC_ACK_DUPLICATE;
524 ack_serial = serial;
17926a79 525 }
248f219c
DH
526 immediate_ack = true;
527 goto skip;
17926a79
DH
528 }
529
248f219c
DH
530 /* Queue the packet. We use a couple of memory barriers here as need
531 * to make sure that rx_top is perceived to be set after the buffer
532 * pointer and that the buffer pointer is set after the annotation and
533 * the skb data.
534 *
535 * Barriers against rxrpc_recvmsg_data() and rxrpc_rotate_rx_window()
536 * and also rxrpc_fill_out_ack().
537 */
71f3ca40 538 rxrpc_get_skb(skb, rxrpc_skb_rx_got);
248f219c
DH
539 call->rxtx_annotations[ix] = annotation;
540 smp_wmb();
541 call->rxtx_buffer[ix] = skb;
a7056c5b 542 if (after(seq, call->rx_top)) {
248f219c 543 smp_store_release(&call->rx_top, seq);
a7056c5b
DH
544 } else if (before(seq, call->rx_top)) {
545 /* Send an immediate ACK if we fill in a hole */
546 if (!ack) {
547 ack = RXRPC_ACK_DELAY;
548 ack_serial = serial;
549 }
550 immediate_ack = true;
551 }
58dc63c9 552 if (flags & RXRPC_LAST_PACKET) {
816c9fce 553 set_bit(RXRPC_CALL_RX_LAST, &call->flags);
58dc63c9
DH
554 trace_rxrpc_receive(call, rxrpc_receive_queue_last, serial, seq);
555 } else {
556 trace_rxrpc_receive(call, rxrpc_receive_queue, serial, seq);
557 }
248f219c
DH
558 queued = true;
559
560 if (after_eq(seq, call->rx_expect_next)) {
561 if (after(seq, call->rx_expect_next)) {
562 _net("OOS %u > %u", seq, call->rx_expect_next);
563 ack = RXRPC_ACK_OUT_OF_SEQUENCE;
564 ack_serial = serial;
565 }
566 call->rx_expect_next = seq + 1;
17926a79
DH
567 }
568
248f219c
DH
569skip:
570 offset += len;
571 if (flags & RXRPC_JUMBO_PACKET) {
c1e15b49
DH
572 if (skb_copy_bits(skb, offset, &flags, 1) < 0) {
573 rxrpc_proto_abort("XJF", call, seq);
574 goto unlock;
575 }
248f219c
DH
576 offset += sizeof(struct rxrpc_jumbo_header);
577 seq++;
578 serial++;
579 annotation++;
580 if (flags & RXRPC_JUMBO_PACKET)
581 annotation |= RXRPC_RX_ANNO_JLAST;
75e42126
DH
582 if (after(seq, hard_ack + call->rx_winsize)) {
583 ack = RXRPC_ACK_EXCEEDS_WINDOW;
584 ack_serial = serial;
585 if (!jumbo_bad) {
586 call->nr_jumbo_bad++;
587 jumbo_bad = true;
588 }
589 goto ack;
590 }
248f219c
DH
591
592 _proto("Rx DATA Jumbo %%%u", serial);
593 goto next_subpacket;
594 }
17926a79 595
248f219c
DH
596 if (queued && flags & RXRPC_LAST_PACKET && !ack) {
597 ack = RXRPC_ACK_DELAY;
598 ack_serial = serial;
599 }
17926a79 600
248f219c
DH
601ack:
602 if (ack)
603 rxrpc_propose_ACK(call, ack, skew, ack_serial,
9c7ad434
DH
604 immediate_ack, true,
605 rxrpc_propose_ack_input_data);
4764c0da
DH
606 else
607 rxrpc_propose_ACK(call, RXRPC_ACK_DELAY, skew, serial,
608 false, true,
609 rxrpc_propose_ack_input_data);
17926a79 610
4272d303
DH
611 if (sp->hdr.seq == READ_ONCE(call->rx_hard_ack) + 1) {
612 trace_rxrpc_notify_socket(call->debug_id, serial);
248f219c 613 rxrpc_notify_socket(call);
4272d303 614 }
c1e15b49
DH
615
616unlock:
617 spin_unlock(&call->input_lock);
248f219c 618 _leave(" [queued]");
17926a79
DH
619}
620
50235c4b
DH
621/*
622 * Process a requested ACK.
623 */
624static void rxrpc_input_requested_ack(struct rxrpc_call *call,
625 ktime_t resp_time,
626 rxrpc_serial_t orig_serial,
627 rxrpc_serial_t ack_serial)
628{
629 struct rxrpc_skb_priv *sp;
630 struct sk_buff *skb;
631 ktime_t sent_at;
632 int ix;
633
634 for (ix = 0; ix < RXRPC_RXTX_BUFF_SIZE; ix++) {
635 skb = call->rxtx_buffer[ix];
636 if (!skb)
637 continue;
638
b604dd98
DH
639 sent_at = skb->tstamp;
640 smp_rmb(); /* Read timestamp before serial. */
50235c4b
DH
641 sp = rxrpc_skb(skb);
642 if (sp->hdr.serial != orig_serial)
643 continue;
50235c4b
DH
644 goto found;
645 }
b604dd98 646
50235c4b
DH
647 return;
648
649found:
650 rxrpc_peer_add_rtt(call, rxrpc_rtt_rx_requested_ack,
651 orig_serial, ack_serial, sent_at, resp_time);
652}
653
bd1fdf8c
DH
654/*
655 * Process the response to a ping that we sent to find out if we lost an ACK.
656 *
657 * If we got back a ping response that indicates a lower tx_top than what we
658 * had at the time of the ping transmission, we adjudge all the DATA packets
659 * sent between the response tx_top and the ping-time tx_top to have been lost.
660 */
661static void rxrpc_input_check_for_lost_ack(struct rxrpc_call *call)
662{
663 rxrpc_seq_t top, bottom, seq;
664 bool resend = false;
665
666 spin_lock_bh(&call->lock);
667
668 bottom = call->tx_hard_ack + 1;
669 top = call->acks_lost_top;
670 if (before(bottom, top)) {
671 for (seq = bottom; before_eq(seq, top); seq++) {
672 int ix = seq & RXRPC_RXTX_BUFF_MASK;
673 u8 annotation = call->rxtx_annotations[ix];
674 u8 anno_type = annotation & RXRPC_TX_ANNO_MASK;
675
676 if (anno_type != RXRPC_TX_ANNO_UNACK)
677 continue;
678 annotation &= ~RXRPC_TX_ANNO_MASK;
679 annotation |= RXRPC_TX_ANNO_RETRANS;
680 call->rxtx_annotations[ix] = annotation;
681 resend = true;
682 }
683 }
684
685 spin_unlock_bh(&call->lock);
686
687 if (resend && !test_and_set_bit(RXRPC_CALL_EV_RESEND, &call->events))
688 rxrpc_queue_call(call);
689}
690
8e83134d
DH
691/*
692 * Process a ping response.
693 */
694static void rxrpc_input_ping_response(struct rxrpc_call *call,
695 ktime_t resp_time,
696 rxrpc_serial_t orig_serial,
697 rxrpc_serial_t ack_serial)
698{
699 rxrpc_serial_t ping_serial;
700 ktime_t ping_time;
701
a5af7e1f 702 ping_time = call->ping_time;
8e83134d 703 smp_rmb();
c1e15b49 704 ping_serial = READ_ONCE(call->ping_serial);
8e83134d 705
bd1fdf8c
DH
706 if (orig_serial == call->acks_lost_ping)
707 rxrpc_input_check_for_lost_ack(call);
708
c1e15b49
DH
709 if (before(orig_serial, ping_serial) ||
710 !test_and_clear_bit(RXRPC_CALL_PINGING, &call->flags))
8e83134d 711 return;
8e83134d
DH
712 if (after(orig_serial, ping_serial))
713 return;
714
715 rxrpc_peer_add_rtt(call, rxrpc_rtt_rx_ping_response,
716 orig_serial, ack_serial, ping_time, resp_time);
717}
718
17926a79 719/*
248f219c 720 * Process the extra information that may be appended to an ACK packet
17926a79 721 */
248f219c
DH
722static void rxrpc_input_ackinfo(struct rxrpc_call *call, struct sk_buff *skb,
723 struct rxrpc_ackinfo *ackinfo)
17926a79 724{
248f219c
DH
725 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
726 struct rxrpc_peer *peer;
727 unsigned int mtu;
702f2ac8 728 bool wake = false;
01fd0742 729 u32 rwind = ntohl(ackinfo->rwind);
248f219c
DH
730
731 _proto("Rx ACK %%%u Info { rx=%u max=%u rwin=%u jm=%u }",
732 sp->hdr.serial,
733 ntohl(ackinfo->rxMTU), ntohl(ackinfo->maxMTU),
01fd0742 734 rwind, ntohl(ackinfo->jumbo_max));
248f219c 735
702f2ac8
DH
736 if (call->tx_winsize != rwind) {
737 if (rwind > RXRPC_RXTX_BUFF_SIZE - 1)
738 rwind = RXRPC_RXTX_BUFF_SIZE - 1;
739 if (rwind > call->tx_winsize)
740 wake = true;
740586d2
DH
741 trace_rxrpc_rx_rwind_change(call, sp->hdr.serial,
742 ntohl(ackinfo->rwind), wake);
702f2ac8
DH
743 call->tx_winsize = rwind;
744 }
745
08511150
DH
746 if (call->cong_ssthresh > rwind)
747 call->cong_ssthresh = rwind;
248f219c
DH
748
749 mtu = min(ntohl(ackinfo->rxMTU), ntohl(ackinfo->maxMTU));
750
751 peer = call->peer;
752 if (mtu < peer->maxdata) {
753 spin_lock_bh(&peer->lock);
754 peer->maxdata = mtu;
755 peer->mtu = mtu + peer->hdrsize;
756 spin_unlock_bh(&peer->lock);
757 _net("Net MTU %u (maxdata %u)", peer->mtu, peer->maxdata);
758 }
702f2ac8
DH
759
760 if (wake)
761 wake_up(&call->waitq);
248f219c 762}
17926a79 763
248f219c
DH
764/*
765 * Process individual soft ACKs.
766 *
767 * Each ACK in the array corresponds to one packet and can be either an ACK or
768 * a NAK. If we get find an explicitly NAK'd packet we resend immediately;
769 * packets that lie beyond the end of the ACK list are scheduled for resend by
770 * the timer on the basis that the peer might just not have processed them at
771 * the time the ACK was sent.
772 */
773static void rxrpc_input_soft_acks(struct rxrpc_call *call, u8 *acks,
31a1b989
DH
774 rxrpc_seq_t seq, int nr_acks,
775 struct rxrpc_ack_summary *summary)
248f219c 776{
248f219c 777 int ix;
f07373ea 778 u8 annotation, anno_type;
248f219c
DH
779
780 for (; nr_acks > 0; nr_acks--, seq++) {
781 ix = seq & RXRPC_RXTX_BUFF_MASK;
f07373ea
DH
782 annotation = call->rxtx_annotations[ix];
783 anno_type = annotation & RXRPC_TX_ANNO_MASK;
784 annotation &= ~RXRPC_TX_ANNO_MASK;
d01dc4c3 785 switch (*acks++) {
248f219c 786 case RXRPC_ACK_TYPE_ACK:
31a1b989 787 summary->nr_acks++;
f07373ea
DH
788 if (anno_type == RXRPC_TX_ANNO_ACK)
789 continue;
31a1b989 790 summary->nr_new_acks++;
f07373ea
DH
791 call->rxtx_annotations[ix] =
792 RXRPC_TX_ANNO_ACK | annotation;
248f219c
DH
793 break;
794 case RXRPC_ACK_TYPE_NACK:
31a1b989
DH
795 if (!summary->nr_nacks &&
796 call->acks_lowest_nak != seq) {
797 call->acks_lowest_nak = seq;
798 summary->new_low_nack = true;
799 }
800 summary->nr_nacks++;
f07373ea 801 if (anno_type == RXRPC_TX_ANNO_NAK)
248f219c 802 continue;
31a1b989 803 summary->nr_new_nacks++;
be8aa338
DH
804 if (anno_type == RXRPC_TX_ANNO_RETRANS)
805 continue;
f07373ea
DH
806 call->rxtx_annotations[ix] =
807 RXRPC_TX_ANNO_NAK | annotation;
248f219c
DH
808 break;
809 default:
810 return rxrpc_proto_abort("SFT", call, 0);
17926a79 811 }
17926a79
DH
812 }
813}
814
815/*
248f219c
DH
816 * Process an ACK packet.
817 *
818 * ack.firstPacket is the sequence number of the first soft-ACK'd/NAK'd packet
819 * in the ACK array. Anything before that is hard-ACK'd and may be discarded.
820 *
821 * A hard-ACK means that a packet has been processed and may be discarded; a
822 * soft-ACK means that the packet may be discarded and retransmission
823 * requested. A phase is complete when all packets are hard-ACK'd.
17926a79 824 */
248f219c
DH
825static void rxrpc_input_ack(struct rxrpc_call *call, struct sk_buff *skb,
826 u16 skew)
17926a79 827{
31a1b989 828 struct rxrpc_ack_summary summary = { 0 };
17926a79 829 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
248f219c
DH
830 union {
831 struct rxrpc_ackpacket ack;
832 struct rxrpc_ackinfo info;
833 u8 acks[RXRPC_MAXACKS];
834 } buf;
8e83134d 835 rxrpc_serial_t acked_serial;
1a2391c3 836 rxrpc_seq_t first_soft_ack, hard_ack, prev_pkt;
775e5b71 837 int nr_acks, offset, ioffset;
248f219c
DH
838
839 _enter("");
840
775e5b71
DH
841 offset = sizeof(struct rxrpc_wire_header);
842 if (skb_copy_bits(skb, offset, &buf.ack, sizeof(buf.ack)) < 0) {
248f219c
DH
843 _debug("extraction failure");
844 return rxrpc_proto_abort("XAK", call, 0);
17926a79 845 }
775e5b71 846 offset += sizeof(buf.ack);
248f219c 847
8e83134d 848 acked_serial = ntohl(buf.ack.serial);
248f219c 849 first_soft_ack = ntohl(buf.ack.firstPacket);
1a2391c3 850 prev_pkt = ntohl(buf.ack.previousPacket);
248f219c
DH
851 hard_ack = first_soft_ack - 1;
852 nr_acks = buf.ack.nAcks;
31a1b989
DH
853 summary.ack_reason = (buf.ack.reason < RXRPC_ACK__INVALID ?
854 buf.ack.reason : RXRPC_ACK__INVALID);
248f219c 855
b1d9f7fd 856 trace_rxrpc_rx_ack(call, sp->hdr.serial, acked_serial,
1a2391c3 857 first_soft_ack, prev_pkt,
b1d9f7fd 858 summary.ack_reason, nr_acks);
ec71eb9a 859
8e83134d
DH
860 if (buf.ack.reason == RXRPC_ACK_PING_RESPONSE)
861 rxrpc_input_ping_response(call, skb->tstamp, acked_serial,
862 sp->hdr.serial);
50235c4b
DH
863 if (buf.ack.reason == RXRPC_ACK_REQUESTED)
864 rxrpc_input_requested_ack(call, skb->tstamp, acked_serial,
865 sp->hdr.serial);
8e83134d 866
248f219c
DH
867 if (buf.ack.reason == RXRPC_ACK_PING) {
868 _proto("Rx ACK %%%u PING Request", sp->hdr.serial);
869 rxrpc_propose_ACK(call, RXRPC_ACK_PING_RESPONSE,
9c7ad434
DH
870 skew, sp->hdr.serial, true, true,
871 rxrpc_propose_ack_respond_to_ping);
248f219c 872 } else if (sp->hdr.flags & RXRPC_REQUEST_ACK) {
563ea7d5 873 rxrpc_propose_ACK(call, RXRPC_ACK_REQUESTED,
9c7ad434
DH
874 skew, sp->hdr.serial, true, true,
875 rxrpc_propose_ack_respond_to_ack);
17926a79
DH
876 }
877
1a2391c3
JA
878 /* Discard any out-of-order or duplicate ACKs (outside lock). */
879 if (before(first_soft_ack, call->ackr_first_seq) ||
880 before(prev_pkt, call->ackr_prev_seq))
298bc15b 881 return;
c1e15b49
DH
882
883 buf.info.rxMTU = 0;
775e5b71 884 ioffset = offset + nr_acks + 3;
c1e15b49
DH
885 if (skb->len >= ioffset + sizeof(buf.info) &&
886 skb_copy_bits(skb, ioffset, &buf.info, sizeof(buf.info)) < 0)
887 return rxrpc_proto_abort("XAI", call, 0);
888
889 spin_lock(&call->input_lock);
890
1a2391c3
JA
891 /* Discard any out-of-order or duplicate ACKs (inside lock). */
892 if (before(first_soft_ack, call->ackr_first_seq) ||
893 before(prev_pkt, call->ackr_prev_seq))
c1e15b49 894 goto out;
298bc15b
DH
895 call->acks_latest_ts = skb->tstamp;
896 call->acks_latest = sp->hdr.serial;
897
1a2391c3
JA
898 call->ackr_first_seq = first_soft_ack;
899 call->ackr_prev_seq = prev_pkt;
900
298bc15b 901 /* Parse rwind and mtu sizes if provided. */
c1e15b49 902 if (buf.info.rxMTU)
248f219c 903 rxrpc_input_ackinfo(call, skb, &buf.info);
17926a79 904
c1e15b49
DH
905 if (first_soft_ack == 0) {
906 rxrpc_proto_abort("AK0", call, 0);
907 goto out;
908 }
17926a79 909
248f219c 910 /* Ignore ACKs unless we are or have just been transmitting. */
146d8fef 911 switch (READ_ONCE(call->state)) {
248f219c
DH
912 case RXRPC_CALL_CLIENT_SEND_REQUEST:
913 case RXRPC_CALL_CLIENT_AWAIT_REPLY:
914 case RXRPC_CALL_SERVER_SEND_REPLY:
915 case RXRPC_CALL_SERVER_AWAIT_ACK:
916 break;
17926a79 917 default:
c1e15b49 918 goto out;
248f219c 919 }
17926a79 920
248f219c 921 if (before(hard_ack, call->tx_hard_ack) ||
c1e15b49
DH
922 after(hard_ack, call->tx_top)) {
923 rxrpc_proto_abort("AKW", call, 0);
924 goto out;
925 }
926 if (nr_acks > call->tx_top - hard_ack) {
927 rxrpc_proto_abort("AKN", call, 0);
928 goto out;
929 }
17926a79 930
c479d5f2
DH
931 if (after(hard_ack, call->tx_hard_ack)) {
932 if (rxrpc_rotate_tx_window(call, hard_ack, &summary)) {
933 rxrpc_end_tx_phase(call, false, "ETA");
c1e15b49 934 goto out;
c479d5f2
DH
935 }
936 }
17926a79 937
70790dbe 938 if (nr_acks > 0) {
c1e15b49
DH
939 if (skb_copy_bits(skb, offset, buf.acks, nr_acks) < 0) {
940 rxrpc_proto_abort("XSA", call, 0);
941 goto out;
942 }
31a1b989
DH
943 rxrpc_input_soft_acks(call, buf.acks, first_soft_ack, nr_acks,
944 &summary);
70790dbe
DH
945 }
946
0d967960
DH
947 if (call->rxtx_annotations[call->tx_top & RXRPC_RXTX_BUFF_MASK] &
948 RXRPC_TX_ANNO_LAST &&
a9f312d9
DH
949 summary.nr_acks == call->tx_top - hard_ack &&
950 rxrpc_is_client_call(call))
0d967960
DH
951 rxrpc_propose_ACK(call, RXRPC_ACK_PING, skew, sp->hdr.serial,
952 false, true,
953 rxrpc_propose_ack_ping_for_lost_reply);
57494343 954
c1e15b49
DH
955 rxrpc_congestion_management(call, skb, &summary, acked_serial);
956out:
957 spin_unlock(&call->input_lock);
17926a79
DH
958}
959
960/*
248f219c 961 * Process an ACKALL packet.
17926a79 962 */
248f219c 963static void rxrpc_input_ackall(struct rxrpc_call *call, struct sk_buff *skb)
17926a79 964{
31a1b989 965 struct rxrpc_ack_summary summary = { 0 };
248f219c 966 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
17926a79 967
248f219c 968 _proto("Rx ACKALL %%%u", sp->hdr.serial);
17926a79 969
c1e15b49
DH
970 spin_lock(&call->input_lock);
971
c479d5f2 972 if (rxrpc_rotate_tx_window(call, call->tx_top, &summary))
70790dbe 973 rxrpc_end_tx_phase(call, false, "ETL");
c1e15b49
DH
974
975 spin_unlock(&call->input_lock);
248f219c 976}
17926a79 977
248f219c 978/*
005ede28 979 * Process an ABORT packet directed at a call.
248f219c
DH
980 */
981static void rxrpc_input_abort(struct rxrpc_call *call, struct sk_buff *skb)
982{
983 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
984 __be32 wtmp;
985 u32 abort_code = RX_CALL_DEAD;
17926a79 986
248f219c 987 _enter("");
17926a79 988
248f219c 989 if (skb->len >= 4 &&
775e5b71
DH
990 skb_copy_bits(skb, sizeof(struct rxrpc_wire_header),
991 &wtmp, sizeof(wtmp)) >= 0)
248f219c 992 abort_code = ntohl(wtmp);
17926a79 993
005ede28
DH
994 trace_rxrpc_rx_abort(call, sp->hdr.serial, abort_code);
995
248f219c 996 _proto("Rx ABORT %%%u { %x }", sp->hdr.serial, abort_code);
17926a79 997
248f219c 998 if (rxrpc_set_call_completion(call, RXRPC_CALL_REMOTELY_ABORTED,
3a92789a 999 abort_code, -ECONNABORTED))
248f219c 1000 rxrpc_notify_socket(call);
17926a79
DH
1001}
1002
1003/*
248f219c 1004 * Process an incoming call packet.
17926a79 1005 */
248f219c
DH
1006static void rxrpc_input_call_packet(struct rxrpc_call *call,
1007 struct sk_buff *skb, u16 skew)
17926a79 1008{
248f219c 1009 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
a158bdd3 1010 unsigned long timo;
17926a79 1011
7727640c 1012 _enter("%p,%p", call, skb);
17926a79 1013
a158bdd3
DH
1014 timo = READ_ONCE(call->next_rx_timo);
1015 if (timo) {
1016 unsigned long now = jiffies, expect_rx_by;
1017
c54e43d7 1018 expect_rx_by = now + timo;
a158bdd3
DH
1019 WRITE_ONCE(call->expect_rx_by, expect_rx_by);
1020 rxrpc_reduce_call_timer(call, expect_rx_by, now,
1021 rxrpc_timer_set_for_normal);
1022 }
3d7682af 1023
248f219c
DH
1024 switch (sp->hdr.type) {
1025 case RXRPC_PACKET_TYPE_DATA:
1026 rxrpc_input_data(call, skb, skew);
1027 break;
f5c17aae 1028
248f219c
DH
1029 case RXRPC_PACKET_TYPE_ACK:
1030 rxrpc_input_ack(call, skb, skew);
17926a79 1031 break;
17926a79 1032
248f219c
DH
1033 case RXRPC_PACKET_TYPE_BUSY:
1034 _proto("Rx BUSY %%%u", sp->hdr.serial);
17926a79 1035
248f219c
DH
1036 /* Just ignore BUSY packets from the server; the retry and
1037 * lifespan timers will take care of business. BUSY packets
1038 * from the client don't make sense.
1039 */
1040 break;
17926a79 1041
248f219c
DH
1042 case RXRPC_PACKET_TYPE_ABORT:
1043 rxrpc_input_abort(call, skb);
1044 break;
17926a79 1045
248f219c
DH
1046 case RXRPC_PACKET_TYPE_ACKALL:
1047 rxrpc_input_ackall(call, skb);
1048 break;
f5c17aae 1049
248f219c 1050 default:
248f219c 1051 break;
17926a79 1052 }
248f219c 1053
17926a79
DH
1054 _leave("");
1055}
1056
b3156274 1057/*
c1e15b49
DH
1058 * Handle a new service call on a channel implicitly completing the preceding
1059 * call on that channel. This does not apply to client conns.
b3156274
DH
1060 *
1061 * TODO: If callNumber > call_id + 1, renegotiate security.
1062 */
c1e15b49
DH
1063static void rxrpc_input_implicit_end_call(struct rxrpc_sock *rx,
1064 struct rxrpc_connection *conn,
b3156274
DH
1065 struct rxrpc_call *call)
1066{
146d8fef 1067 switch (READ_ONCE(call->state)) {
b3156274
DH
1068 case RXRPC_CALL_SERVER_AWAIT_ACK:
1069 rxrpc_call_completed(call);
c1e15b49 1070 /* Fall through */
b3156274
DH
1071 case RXRPC_CALL_COMPLETE:
1072 break;
1073 default:
3a92789a 1074 if (rxrpc_abort_call("IMP", call, 0, RX_CALL_DEAD, -ESHUTDOWN)) {
b3156274
DH
1075 set_bit(RXRPC_CALL_EV_ABORT, &call->events);
1076 rxrpc_queue_call(call);
1077 }
c1e15b49 1078 trace_rxrpc_improper_term(call);
b3156274
DH
1079 break;
1080 }
1081
c1e15b49 1082 spin_lock(&rx->incoming_lock);
b3156274 1083 __rxrpc_disconnect_call(conn, call);
c1e15b49 1084 spin_unlock(&rx->incoming_lock);
b3156274
DH
1085 rxrpc_notify_socket(call);
1086}
1087
17926a79
DH
1088/*
1089 * post connection-level events to the connection
18bfeba5
DH
1090 * - this includes challenges, responses, some aborts and call terminal packet
1091 * retransmission.
17926a79 1092 */
2e7e9758 1093static void rxrpc_post_packet_to_conn(struct rxrpc_connection *conn,
17926a79
DH
1094 struct sk_buff *skb)
1095{
1096 _enter("%p,%p", conn, skb);
1097
17926a79 1098 skb_queue_tail(&conn->rx_queue, skb);
2e7e9758 1099 rxrpc_queue_conn(conn);
17926a79
DH
1100}
1101
44ba0698
DH
1102/*
1103 * post endpoint-level events to the local endpoint
1104 * - this includes debug and version messages
1105 */
1106static void rxrpc_post_packet_to_local(struct rxrpc_local *local,
1107 struct sk_buff *skb)
1108{
1109 _enter("%p,%p", local, skb);
1110
44ba0698 1111 skb_queue_tail(&local->event_queue, skb);
5acbee46 1112 rxrpc_queue_local(local);
44ba0698
DH
1113}
1114
248f219c
DH
1115/*
1116 * put a packet up for transport-level abort
1117 */
1118static void rxrpc_reject_packet(struct rxrpc_local *local, struct sk_buff *skb)
1119{
1120 CHECK_SLAB_OKAY(&local->usage);
1121
1122 skb_queue_tail(&local->reject_queue, skb);
1123 rxrpc_queue_local(local);
1124}
1125
0d12f8a4
DH
1126/*
1127 * Extract the wire header from a packet and translate the byte order.
1128 */
1129static noinline
1130int rxrpc_extract_header(struct rxrpc_skb_priv *sp, struct sk_buff *skb)
1131{
1132 struct rxrpc_wire_header whdr;
1133
1134 /* dig out the RxRPC connection details */
fb46f6ee
DH
1135 if (skb_copy_bits(skb, 0, &whdr, sizeof(whdr)) < 0) {
1136 trace_rxrpc_rx_eproto(NULL, sp->hdr.serial,
1137 tracepoint_string("bad_hdr"));
0d12f8a4 1138 return -EBADMSG;
fb46f6ee 1139 }
0d12f8a4
DH
1140
1141 memset(sp, 0, sizeof(*sp));
1142 sp->hdr.epoch = ntohl(whdr.epoch);
1143 sp->hdr.cid = ntohl(whdr.cid);
1144 sp->hdr.callNumber = ntohl(whdr.callNumber);
1145 sp->hdr.seq = ntohl(whdr.seq);
1146 sp->hdr.serial = ntohl(whdr.serial);
1147 sp->hdr.flags = whdr.flags;
1148 sp->hdr.type = whdr.type;
1149 sp->hdr.userStatus = whdr.userStatus;
1150 sp->hdr.securityIndex = whdr.securityIndex;
1151 sp->hdr._rsvd = ntohs(whdr._rsvd);
1152 sp->hdr.serviceId = ntohs(whdr.serviceId);
1153 return 0;
1154}
1155
17926a79
DH
1156/*
1157 * handle data received on the local endpoint
1158 * - may be called in interrupt context
4f95dd78 1159 *
032be5f1
ED
1160 * [!] Note that as this is called from the encap_rcv hook, the socket is not
1161 * held locked by the caller and nothing prevents sk_user_data on the UDP from
1162 * being cleared in the middle of processing this function.
bfd28211
DH
1163 *
1164 * Called with the RCU read lock held from the IP layer via UDP.
17926a79 1165 */
5271953c 1166int rxrpc_input_packet(struct sock *udp_sk, struct sk_buff *skb)
17926a79 1167{
032be5f1 1168 struct rxrpc_local *local = rcu_dereference_sk_user_data(udp_sk);
8496af50 1169 struct rxrpc_connection *conn;
248f219c 1170 struct rxrpc_channel *chan;
403fc2a1 1171 struct rxrpc_call *call = NULL;
17926a79 1172 struct rxrpc_skb_priv *sp;
0099dc58
DH
1173 struct rxrpc_peer *peer = NULL;
1174 struct rxrpc_sock *rx = NULL;
248f219c 1175 unsigned int channel;
2cfa2271 1176 int skew = 0;
17926a79 1177
248f219c 1178 _enter("%p", udp_sk);
17926a79 1179
032be5f1
ED
1180 if (unlikely(!local)) {
1181 kfree_skb(skb);
1182 return 0;
1183 }
b604dd98
DH
1184 if (skb->tstamp == 0)
1185 skb->tstamp = ktime_get_real();
1186
71f3ca40 1187 rxrpc_new_skb(skb, rxrpc_skb_rx_received);
17926a79 1188
5271953c 1189 skb_pull(skb, sizeof(struct udphdr));
1781f7f5 1190
7c13f97f
PA
1191 /* The UDP protocol already released all skb resources;
1192 * we are free to add our own data there.
0d12f8a4 1193 */
17926a79 1194 sp = rxrpc_skb(skb);
17926a79 1195
89b475ab
DH
1196 /* dig out the RxRPC connection details */
1197 if (rxrpc_extract_header(sp, skb) < 0)
1198 goto bad_message;
1199
8a681c36
DH
1200 if (IS_ENABLED(CONFIG_AF_RXRPC_INJECT_LOSS)) {
1201 static int lose;
1202 if ((lose++ & 7) == 7) {
89b475ab 1203 trace_rxrpc_rx_lose(sp);
d2944b1c 1204 rxrpc_free_skb(skb, rxrpc_skb_rx_lost);
5271953c 1205 return 0;
8a681c36
DH
1206 }
1207 }
1208
2cfa2271
DH
1209 if (skb->tstamp == 0)
1210 skb->tstamp = ktime_get_real();
49e19ec7 1211 trace_rxrpc_rx_packet(sp);
17926a79 1212
248f219c
DH
1213 switch (sp->hdr.type) {
1214 case RXRPC_PACKET_TYPE_VERSION:
dc71db34 1215 if (rxrpc_to_client(sp))
ace45bec 1216 goto discard;
44ba0698
DH
1217 rxrpc_post_packet_to_local(local, skb);
1218 goto out;
bc6e1ea3 1219
248f219c 1220 case RXRPC_PACKET_TYPE_BUSY:
dc71db34 1221 if (rxrpc_to_server(sp))
248f219c 1222 goto discard;
e3cf3970 1223 /* Fall through */
403fc2a1
DH
1224 case RXRPC_PACKET_TYPE_ACK:
1225 case RXRPC_PACKET_TYPE_ACKALL:
1226 if (sp->hdr.callNumber == 0)
1227 goto bad_message;
1228 /* Fall through */
1229 case RXRPC_PACKET_TYPE_ABORT:
1230 break;
248f219c
DH
1231
1232 case RXRPC_PACKET_TYPE_DATA:
403fc2a1
DH
1233 if (sp->hdr.callNumber == 0 ||
1234 sp->hdr.seq == 0)
248f219c
DH
1235 goto bad_message;
1236 if (sp->hdr.flags & RXRPC_JUMBO_PACKET &&
1237 !rxrpc_validate_jumbo(skb))
1238 goto bad_message;
1239 break;
b41d7cfe 1240
403fc2a1
DH
1241 case RXRPC_PACKET_TYPE_CHALLENGE:
1242 if (rxrpc_to_server(sp))
1243 goto discard;
1244 break;
1245 case RXRPC_PACKET_TYPE_RESPONSE:
1246 if (rxrpc_to_client(sp))
1247 goto discard;
1248 break;
1249
b41d7cfe
DH
1250 /* Packet types 9-11 should just be ignored. */
1251 case RXRPC_PACKET_TYPE_PARAMS:
1252 case RXRPC_PACKET_TYPE_10:
1253 case RXRPC_PACKET_TYPE_11:
1254 goto discard;
403fc2a1
DH
1255
1256 default:
1257 _proto("Rx Bad Packet Type %u", sp->hdr.type);
1258 goto bad_message;
248f219c 1259 }
17926a79 1260
403fc2a1
DH
1261 if (sp->hdr.serviceId == 0)
1262 goto bad_message;
1263
403fc2a1
DH
1264 if (rxrpc_to_server(sp)) {
1265 /* Weed out packets to services we're not offering. Packets
1266 * that would begin a call are explicitly rejected and the rest
1267 * are just discarded.
1268 */
1269 rx = rcu_dereference(local->service);
1270 if (!rx || (sp->hdr.serviceId != rx->srx.srx_service &&
1271 sp->hdr.serviceId != rx->second_service)) {
1272 if (sp->hdr.type == RXRPC_PACKET_TYPE_DATA &&
1273 sp->hdr.seq == 1)
1274 goto unsupported_service;
bfd28211 1275 goto discard;
403fc2a1
DH
1276 }
1277 }
1278
0099dc58 1279 conn = rxrpc_find_connection_rcu(local, skb, &peer);
248f219c
DH
1280 if (conn) {
1281 if (sp->hdr.securityIndex != conn->security_ix)
1282 goto wrong_security;
563ea7d5 1283
4e255721 1284 if (sp->hdr.serviceId != conn->service_id) {
c1e15b49
DH
1285 int old_id;
1286
1287 if (!test_bit(RXRPC_CONN_PROBING_FOR_UPGRADE, &conn->flags))
1288 goto reupgrade;
1289 old_id = cmpxchg(&conn->service_id, conn->params.service_id,
1290 sp->hdr.serviceId);
1291
1292 if (old_id != conn->params.service_id &&
1293 old_id != sp->hdr.serviceId)
4e255721 1294 goto reupgrade;
4e255721 1295 }
3d7682af 1296
248f219c
DH
1297 if (sp->hdr.callNumber == 0) {
1298 /* Connection-level packet */
1299 _debug("CONN %p {%d}", conn, conn->debug_id);
1300 rxrpc_post_packet_to_conn(conn, skb);
bfd28211 1301 goto out;
248f219c
DH
1302 }
1303
1304 /* Note the serial number skew here */
1305 skew = (int)sp->hdr.serial - (int)conn->hi_serial;
1306 if (skew >= 0) {
1307 if (skew > 0)
1308 conn->hi_serial = sp->hdr.serial;
1309 } else {
1310 skew = -skew;
1311 skew = min(skew, 65535);
1312 }
17926a79 1313
8496af50 1314 /* Call-bound packets are routed by connection channel. */
248f219c
DH
1315 channel = sp->hdr.cid & RXRPC_CHANNELMASK;
1316 chan = &conn->channels[channel];
18bfeba5
DH
1317
1318 /* Ignore really old calls */
1319 if (sp->hdr.callNumber < chan->last_call)
bfd28211 1320 goto discard;
18bfeba5
DH
1321
1322 if (sp->hdr.callNumber == chan->last_call) {
57b0c9d4
DH
1323 if (chan->call ||
1324 sp->hdr.type == RXRPC_PACKET_TYPE_ABORT)
bfd28211 1325 goto discard;
57b0c9d4
DH
1326
1327 /* For the previous service call, if completed
1328 * successfully, we discard all further packets.
18bfeba5 1329 */
2266ffde 1330 if (rxrpc_conn_is_service(conn) &&
57b0c9d4 1331 chan->last_type == RXRPC_PACKET_TYPE_ACK)
bfd28211 1332 goto discard;
18bfeba5 1333
57b0c9d4
DH
1334 /* But otherwise we need to retransmit the final packet
1335 * from data cached in the connection record.
18bfeba5 1336 */
4764c0da
DH
1337 if (sp->hdr.type == RXRPC_PACKET_TYPE_DATA)
1338 trace_rxrpc_rx_data(chan->call_debug_id,
1339 sp->hdr.seq,
1340 sp->hdr.serial,
1341 sp->hdr.flags, 0);
18bfeba5 1342 rxrpc_post_packet_to_conn(conn, skb);
bfd28211 1343 goto out;
18bfeba5 1344 }
0d12f8a4 1345
18bfeba5 1346 call = rcu_dereference(chan->call);
b3156274
DH
1347
1348 if (sp->hdr.callNumber > chan->call_id) {
bfd28211 1349 if (rxrpc_to_client(sp))
b3156274 1350 goto reject_packet;
b3156274 1351 if (call)
c1e15b49 1352 rxrpc_input_implicit_end_call(rx, conn, call);
b3156274
DH
1353 call = NULL;
1354 }
4e255721 1355
1a025028
DH
1356 if (call) {
1357 if (sp->hdr.serviceId != call->service_id)
1358 call->service_id = sp->hdr.serviceId;
1359 if ((int)sp->hdr.serial - (int)call->rx_serial > 0)
1360 call->rx_serial = sp->hdr.serial;
1361 if (!test_bit(RXRPC_CALL_RX_HEARD, &call->flags))
1362 set_bit(RXRPC_CALL_RX_HEARD, &call->flags);
1363 }
248f219c 1364 }
8496af50 1365
248f219c 1366 if (!call || atomic_read(&call->usage) == 0) {
dc71db34 1367 if (rxrpc_to_client(sp) ||
248f219c 1368 sp->hdr.type != RXRPC_PACKET_TYPE_DATA)
bfd28211 1369 goto bad_message;
248f219c 1370 if (sp->hdr.seq != 1)
bfd28211 1371 goto discard;
c1e15b49 1372 call = rxrpc_new_incoming_call(local, rx, skb);
bfd28211 1373 if (!call)
248f219c 1374 goto reject_packet;
8e83134d 1375 rxrpc_send_ping(call, skb, skew);
540b1c48 1376 mutex_unlock(&call->user_mutex);
7727640c 1377 }
44ba0698 1378
248f219c 1379 rxrpc_input_call_packet(call, skb, skew);
bfd28211 1380 goto discard;
248f219c 1381
248f219c 1382discard:
71f3ca40 1383 rxrpc_free_skb(skb, rxrpc_skb_rx_freed);
44ba0698 1384out:
49e19ec7 1385 trace_rxrpc_rx_done(0, 0);
5271953c 1386 return 0;
8496af50 1387
248f219c 1388wrong_security:
a25e21f0 1389 trace_rxrpc_abort(0, "SEC", sp->hdr.cid, sp->hdr.callNumber, sp->hdr.seq,
248f219c
DH
1390 RXKADINCONSISTENCY, EBADMSG);
1391 skb->priority = RXKADINCONSISTENCY;
1392 goto post_abort;
17926a79 1393
403fc2a1 1394unsupported_service:
403fc2a1
DH
1395 trace_rxrpc_abort(0, "INV", sp->hdr.cid, sp->hdr.callNumber, sp->hdr.seq,
1396 RX_INVALID_OPERATION, EOPNOTSUPP);
1397 skb->priority = RX_INVALID_OPERATION;
1398 goto post_abort;
1399
4e255721 1400reupgrade:
a25e21f0 1401 trace_rxrpc_abort(0, "UPG", sp->hdr.cid, sp->hdr.callNumber, sp->hdr.seq,
4e255721
DH
1402 RX_PROTOCOL_ERROR, EBADMSG);
1403 goto protocol_error;
1404
17926a79 1405bad_message:
a25e21f0 1406 trace_rxrpc_abort(0, "BAD", sp->hdr.cid, sp->hdr.callNumber, sp->hdr.seq,
248f219c 1407 RX_PROTOCOL_ERROR, EBADMSG);
4e255721 1408protocol_error:
17926a79 1409 skb->priority = RX_PROTOCOL_ERROR;
248f219c 1410post_abort:
ece64fec 1411 skb->mark = RXRPC_SKB_MARK_REJECT_ABORT;
49e19ec7
DH
1412reject_packet:
1413 trace_rxrpc_rx_done(skb->mark, skb->priority);
17926a79 1414 rxrpc_reject_packet(local, skb);
17926a79 1415 _leave(" [badmsg]");
5271953c 1416 return 0;
17926a79 1417}