blob: 757c16f033a074d8c7a23a2d287d21833b322710 [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 Howells8e831342016-09-22 00:29:31 +010040 * Ping the other end to fill our RTT cache and to retrieve the rwind
41 * and MTU parameters.
42 */
43static void rxrpc_send_ping(struct rxrpc_call *call, struct sk_buff *skb,
44 int skew)
45{
46 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
David Howellsfc943f62016-09-22 00:29:32 +010047 ktime_t now = skb->tstamp;
David Howells8e831342016-09-22 00:29:31 +010048
David Howellsfc943f62016-09-22 00:29:32 +010049 if (call->peer->rtt_usage < 3 ||
50 ktime_before(ktime_add_ms(call->peer->rtt_last_req, 1000), now))
51 rxrpc_propose_ACK(call, RXRPC_ACK_PING, skew, sp->hdr.serial,
David Howells9c7ad432016-09-23 13:50:40 +010052 true, true,
53 rxrpc_propose_ack_ping_for_params);
David Howells8e831342016-09-22 00:29:31 +010054}
55
56/*
David Howells248f2192016-09-08 11:10:12 +010057 * Apply a hard ACK by advancing the Tx window.
David Howells17926a72007-04-26 15:48:28 -070058 */
David Howells248f2192016-09-08 11:10:12 +010059static void rxrpc_rotate_tx_window(struct rxrpc_call *call, rxrpc_seq_t to)
David Howells17926a72007-04-26 15:48:28 -070060{
David Howells248f2192016-09-08 11:10:12 +010061 struct sk_buff *skb, *list = NULL;
62 int ix;
David Howells70790db2016-09-23 12:39:22 +010063 u8 annotation;
David Howells17926a72007-04-26 15:48:28 -070064
65 spin_lock(&call->lock);
66
David Howells248f2192016-09-08 11:10:12 +010067 while (before(call->tx_hard_ack, to)) {
68 call->tx_hard_ack++;
69 ix = call->tx_hard_ack & RXRPC_RXTX_BUFF_MASK;
70 skb = call->rxtx_buffer[ix];
David Howells70790db2016-09-23 12:39:22 +010071 annotation = call->rxtx_annotations[ix];
David Howells71f3ca42016-09-17 10:49:14 +010072 rxrpc_see_skb(skb, rxrpc_skb_tx_rotated);
David Howells248f2192016-09-08 11:10:12 +010073 call->rxtx_buffer[ix] = NULL;
74 call->rxtx_annotations[ix] = 0;
75 skb->next = list;
76 list = skb;
David Howells70790db2016-09-23 12:39:22 +010077
78 if (annotation & RXRPC_TX_ANNO_LAST)
79 set_bit(RXRPC_CALL_TX_LAST, &call->flags);
David Howells17926a72007-04-26 15:48:28 -070080 }
81
82 spin_unlock(&call->lock);
David Howells17926a72007-04-26 15:48:28 -070083
David Howells70790db2016-09-23 12:39:22 +010084 trace_rxrpc_transmit(call, (test_bit(RXRPC_CALL_TX_LAST, &call->flags) ?
85 rxrpc_transmit_rotate_last :
86 rxrpc_transmit_rotate));
David Howellsbc4abfc2016-09-13 22:36:21 +010087 wake_up(&call->waitq);
88
David Howells248f2192016-09-08 11:10:12 +010089 while (list) {
90 skb = list;
91 list = skb->next;
92 skb->next = NULL;
David Howells71f3ca42016-09-17 10:49:14 +010093 rxrpc_free_skb(skb, rxrpc_skb_tx_freed);
David Howells248f2192016-09-08 11:10:12 +010094 }
David Howells17926a72007-04-26 15:48:28 -070095}
96
97/*
David Howells248f2192016-09-08 11:10:12 +010098 * End the transmission phase of a call.
99 *
100 * This occurs when we get an ACKALL packet, the first DATA packet of a reply,
101 * or a final ACK packet.
David Howells17926a72007-04-26 15:48:28 -0700102 */
David Howells70790db2016-09-23 12:39:22 +0100103static bool rxrpc_end_tx_phase(struct rxrpc_call *call, bool reply_begun,
104 const char *abort_why)
David Howells17926a72007-04-26 15:48:28 -0700105{
David Howells17926a72007-04-26 15:48:28 -0700106
David Howells70790db2016-09-23 12:39:22 +0100107 ASSERT(test_bit(RXRPC_CALL_TX_LAST, &call->flags));
David Howells248f2192016-09-08 11:10:12 +0100108
109 write_lock(&call->state_lock);
110
111 switch (call->state) {
David Howells70790db2016-09-23 12:39:22 +0100112 case RXRPC_CALL_CLIENT_SEND_REQUEST:
David Howells17926a72007-04-26 15:48:28 -0700113 case RXRPC_CALL_CLIENT_AWAIT_REPLY:
David Howells70790db2016-09-23 12:39:22 +0100114 if (reply_begun)
115 call->state = RXRPC_CALL_CLIENT_RECV_REPLY;
116 else
117 call->state = RXRPC_CALL_CLIENT_AWAIT_REPLY;
David Howells17926a72007-04-26 15:48:28 -0700118 break;
David Howells70790db2016-09-23 12:39:22 +0100119
David Howells248f2192016-09-08 11:10:12 +0100120 case RXRPC_CALL_SERVER_AWAIT_ACK:
121 __rxrpc_call_completed(call);
122 rxrpc_notify_socket(call);
David Howells17926a72007-04-26 15:48:28 -0700123 break;
David Howells70790db2016-09-23 12:39:22 +0100124
125 default:
126 goto bad_state;
David Howells17926a72007-04-26 15:48:28 -0700127 }
David Howells248f2192016-09-08 11:10:12 +0100128
129 write_unlock(&call->state_lock);
David Howells70790db2016-09-23 12:39:22 +0100130 if (call->state == RXRPC_CALL_CLIENT_AWAIT_REPLY) {
131 trace_rxrpc_transmit(call, rxrpc_transmit_await_reply);
132 } else {
133 trace_rxrpc_transmit(call, rxrpc_transmit_end);
134 }
David Howells248f2192016-09-08 11:10:12 +0100135 _leave(" = ok");
136 return true;
David Howells70790db2016-09-23 12:39:22 +0100137
138bad_state:
139 write_unlock(&call->state_lock);
140 kdebug("end_tx %s", rxrpc_call_states[call->state]);
141 rxrpc_proto_abort(abort_why, call, call->tx_top);
142 return false;
143}
144
145/*
146 * Begin the reply reception phase of a call.
147 */
148static bool rxrpc_receiving_reply(struct rxrpc_call *call)
149{
150 rxrpc_seq_t top = READ_ONCE(call->tx_top);
151
152 if (!test_bit(RXRPC_CALL_TX_LAST, &call->flags))
153 rxrpc_rotate_tx_window(call, top);
154 if (!test_bit(RXRPC_CALL_TX_LAST, &call->flags)) {
155 rxrpc_proto_abort("TXL", call, top);
156 return false;
157 }
158 if (!rxrpc_end_tx_phase(call, true, "ETD"))
159 return false;
160 call->tx_phase = false;
161 return true;
David Howells248f2192016-09-08 11:10:12 +0100162}
163
164/*
165 * Scan a jumbo packet to validate its structure and to work out how many
166 * subpackets it contains.
167 *
168 * A jumbo packet is a collection of consecutive packets glued together with
169 * little headers between that indicate how to change the initial header for
170 * each subpacket.
171 *
172 * RXRPC_JUMBO_PACKET must be set on all but the last subpacket - and all but
173 * the last are RXRPC_JUMBO_DATALEN in size. The last subpacket may be of any
174 * size.
175 */
176static bool rxrpc_validate_jumbo(struct sk_buff *skb)
177{
178 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
179 unsigned int offset = sp->offset;
David Howells89a80ed2016-09-13 22:36:22 +0100180 unsigned int len = skb->len;
David Howells248f2192016-09-08 11:10:12 +0100181 int nr_jumbo = 1;
182 u8 flags = sp->hdr.flags;
183
184 do {
185 nr_jumbo++;
186 if (len - offset < RXRPC_JUMBO_SUBPKTLEN)
187 goto protocol_error;
188 if (flags & RXRPC_LAST_PACKET)
189 goto protocol_error;
190 offset += RXRPC_JUMBO_DATALEN;
191 if (skb_copy_bits(skb, offset, &flags, 1) < 0)
192 goto protocol_error;
193 offset += sizeof(struct rxrpc_jumbo_header);
194 } while (flags & RXRPC_JUMBO_PACKET);
195
196 sp->nr_jumbo = nr_jumbo;
197 return true;
198
199protocol_error:
200 return false;
201}
202
203/*
204 * Handle reception of a duplicate packet.
205 *
206 * We have to take care to avoid an attack here whereby we're given a series of
207 * jumbograms, each with a sequence number one before the preceding one and
208 * filled up to maximum UDP size. If they never send us the first packet in
209 * the sequence, they can cause us to have to hold on to around 2MiB of kernel
210 * space until the call times out.
211 *
212 * We limit the space usage by only accepting three duplicate jumbo packets per
213 * call. After that, we tell the other side we're no longer accepting jumbos
214 * (that information is encoded in the ACK packet).
215 */
216static void rxrpc_input_dup_data(struct rxrpc_call *call, rxrpc_seq_t seq,
David Howells75e42122016-09-13 22:36:22 +0100217 u8 annotation, bool *_jumbo_bad)
David Howells248f2192016-09-08 11:10:12 +0100218{
219 /* Discard normal packets that are duplicates. */
220 if (annotation == 0)
221 return;
222
223 /* Skip jumbo subpackets that are duplicates. When we've had three or
224 * more partially duplicate jumbo packets, we refuse to take any more
225 * jumbos for this call.
226 */
David Howells75e42122016-09-13 22:36:22 +0100227 if (!*_jumbo_bad) {
228 call->nr_jumbo_bad++;
229 *_jumbo_bad = true;
David Howells248f2192016-09-08 11:10:12 +0100230 }
David Howells17926a72007-04-26 15:48:28 -0700231}
232
233/*
David Howells248f2192016-09-08 11:10:12 +0100234 * Process a DATA packet, adding the packet to the Rx ring.
David Howells17926a72007-04-26 15:48:28 -0700235 */
David Howells248f2192016-09-08 11:10:12 +0100236static void rxrpc_input_data(struct rxrpc_call *call, struct sk_buff *skb,
237 u16 skew)
238{
239 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
240 unsigned int offset = sp->offset;
241 unsigned int ix;
242 rxrpc_serial_t serial = sp->hdr.serial, ack_serial = 0;
243 rxrpc_seq_t seq = sp->hdr.seq, hard_ack;
David Howells75e42122016-09-13 22:36:22 +0100244 bool immediate_ack = false, jumbo_bad = false, queued;
David Howells248f2192016-09-08 11:10:12 +0100245 u16 len;
246 u8 ack = 0, flags, annotation = 0;
247
248 _enter("{%u,%u},{%u,%u}",
David Howells89a80ed2016-09-13 22:36:22 +0100249 call->rx_hard_ack, call->rx_top, skb->len, seq);
David Howells248f2192016-09-08 11:10:12 +0100250
251 _proto("Rx DATA %%%u { #%u f=%02x }",
252 sp->hdr.serial, seq, sp->hdr.flags);
253
254 if (call->state >= RXRPC_CALL_COMPLETE)
255 return;
256
257 /* Received data implicitly ACKs all of the request packets we sent
258 * when we're acting as a client.
259 */
David Howells70790db2016-09-23 12:39:22 +0100260 if ((call->state == RXRPC_CALL_CLIENT_SEND_REQUEST ||
261 call->state == RXRPC_CALL_CLIENT_AWAIT_REPLY) &&
262 !rxrpc_receiving_reply(call))
David Howells248f2192016-09-08 11:10:12 +0100263 return;
264
265 call->ackr_prev_seq = seq;
266
267 hard_ack = READ_ONCE(call->rx_hard_ack);
268 if (after(seq, hard_ack + call->rx_winsize)) {
269 ack = RXRPC_ACK_EXCEEDS_WINDOW;
270 ack_serial = serial;
271 goto ack;
272 }
273
274 flags = sp->hdr.flags;
275 if (flags & RXRPC_JUMBO_PACKET) {
David Howells75e42122016-09-13 22:36:22 +0100276 if (call->nr_jumbo_bad > 3) {
David Howells248f2192016-09-08 11:10:12 +0100277 ack = RXRPC_ACK_NOSPACE;
278 ack_serial = serial;
279 goto ack;
280 }
281 annotation = 1;
282 }
283
284next_subpacket:
285 queued = false;
286 ix = seq & RXRPC_RXTX_BUFF_MASK;
David Howells89a80ed2016-09-13 22:36:22 +0100287 len = skb->len;
David Howells248f2192016-09-08 11:10:12 +0100288 if (flags & RXRPC_JUMBO_PACKET)
289 len = RXRPC_JUMBO_DATALEN;
290
291 if (flags & RXRPC_LAST_PACKET) {
David Howells816c9fc2016-09-17 10:49:11 +0100292 if (test_bit(RXRPC_CALL_RX_LAST, &call->flags) &&
David Howells248f2192016-09-08 11:10:12 +0100293 seq != call->rx_top)
294 return rxrpc_proto_abort("LSN", call, seq);
295 } else {
296 if (test_bit(RXRPC_CALL_RX_LAST, &call->flags) &&
297 after_eq(seq, call->rx_top))
298 return rxrpc_proto_abort("LSA", call, seq);
299 }
300
301 if (before_eq(seq, hard_ack)) {
302 ack = RXRPC_ACK_DUPLICATE;
303 ack_serial = serial;
304 goto skip;
305 }
306
307 if (flags & RXRPC_REQUEST_ACK && !ack) {
308 ack = RXRPC_ACK_REQUESTED;
309 ack_serial = serial;
310 }
311
312 if (call->rxtx_buffer[ix]) {
David Howells75e42122016-09-13 22:36:22 +0100313 rxrpc_input_dup_data(call, seq, annotation, &jumbo_bad);
David Howells248f2192016-09-08 11:10:12 +0100314 if (ack != RXRPC_ACK_DUPLICATE) {
315 ack = RXRPC_ACK_DUPLICATE;
316 ack_serial = serial;
317 }
318 immediate_ack = true;
319 goto skip;
320 }
321
322 /* Queue the packet. We use a couple of memory barriers here as need
323 * to make sure that rx_top is perceived to be set after the buffer
324 * pointer and that the buffer pointer is set after the annotation and
325 * the skb data.
326 *
327 * Barriers against rxrpc_recvmsg_data() and rxrpc_rotate_rx_window()
328 * and also rxrpc_fill_out_ack().
329 */
David Howells71f3ca42016-09-17 10:49:14 +0100330 rxrpc_get_skb(skb, rxrpc_skb_rx_got);
David Howells248f2192016-09-08 11:10:12 +0100331 call->rxtx_annotations[ix] = annotation;
332 smp_wmb();
333 call->rxtx_buffer[ix] = skb;
David Howellsa7056c52016-09-24 18:05:27 +0100334 if (after(seq, call->rx_top)) {
David Howells248f2192016-09-08 11:10:12 +0100335 smp_store_release(&call->rx_top, seq);
David Howellsa7056c52016-09-24 18:05:27 +0100336 } else if (before(seq, call->rx_top)) {
337 /* Send an immediate ACK if we fill in a hole */
338 if (!ack) {
339 ack = RXRPC_ACK_DELAY;
340 ack_serial = serial;
341 }
342 immediate_ack = true;
343 }
David Howells58dc63c2016-09-17 10:49:13 +0100344 if (flags & RXRPC_LAST_PACKET) {
David Howells816c9fc2016-09-17 10:49:11 +0100345 set_bit(RXRPC_CALL_RX_LAST, &call->flags);
David Howells58dc63c2016-09-17 10:49:13 +0100346 trace_rxrpc_receive(call, rxrpc_receive_queue_last, serial, seq);
347 } else {
348 trace_rxrpc_receive(call, rxrpc_receive_queue, serial, seq);
349 }
David Howells248f2192016-09-08 11:10:12 +0100350 queued = true;
351
352 if (after_eq(seq, call->rx_expect_next)) {
353 if (after(seq, call->rx_expect_next)) {
354 _net("OOS %u > %u", seq, call->rx_expect_next);
355 ack = RXRPC_ACK_OUT_OF_SEQUENCE;
356 ack_serial = serial;
357 }
358 call->rx_expect_next = seq + 1;
359 }
360
361skip:
362 offset += len;
363 if (flags & RXRPC_JUMBO_PACKET) {
364 if (skb_copy_bits(skb, offset, &flags, 1) < 0)
365 return rxrpc_proto_abort("XJF", call, seq);
366 offset += sizeof(struct rxrpc_jumbo_header);
367 seq++;
368 serial++;
369 annotation++;
370 if (flags & RXRPC_JUMBO_PACKET)
371 annotation |= RXRPC_RX_ANNO_JLAST;
David Howells75e42122016-09-13 22:36:22 +0100372 if (after(seq, hard_ack + call->rx_winsize)) {
373 ack = RXRPC_ACK_EXCEEDS_WINDOW;
374 ack_serial = serial;
375 if (!jumbo_bad) {
376 call->nr_jumbo_bad++;
377 jumbo_bad = true;
378 }
379 goto ack;
380 }
David Howells248f2192016-09-08 11:10:12 +0100381
382 _proto("Rx DATA Jumbo %%%u", serial);
383 goto next_subpacket;
384 }
385
386 if (queued && flags & RXRPC_LAST_PACKET && !ack) {
387 ack = RXRPC_ACK_DELAY;
388 ack_serial = serial;
389 }
390
391ack:
392 if (ack)
393 rxrpc_propose_ACK(call, ack, skew, ack_serial,
David Howells9c7ad432016-09-23 13:50:40 +0100394 immediate_ack, true,
395 rxrpc_propose_ack_input_data);
David Howells248f2192016-09-08 11:10:12 +0100396
397 if (sp->hdr.seq == READ_ONCE(call->rx_hard_ack) + 1)
398 rxrpc_notify_socket(call);
399 _leave(" [queued]");
400}
401
402/*
David Howells50235c42016-09-22 00:29:31 +0100403 * Process a requested ACK.
404 */
405static void rxrpc_input_requested_ack(struct rxrpc_call *call,
406 ktime_t resp_time,
407 rxrpc_serial_t orig_serial,
408 rxrpc_serial_t ack_serial)
409{
410 struct rxrpc_skb_priv *sp;
411 struct sk_buff *skb;
412 ktime_t sent_at;
413 int ix;
414
415 for (ix = 0; ix < RXRPC_RXTX_BUFF_SIZE; ix++) {
416 skb = call->rxtx_buffer[ix];
417 if (!skb)
418 continue;
419
420 sp = rxrpc_skb(skb);
421 if (sp->hdr.serial != orig_serial)
422 continue;
423 smp_rmb();
424 sent_at = skb->tstamp;
425 goto found;
426 }
427 return;
428
429found:
430 rxrpc_peer_add_rtt(call, rxrpc_rtt_rx_requested_ack,
431 orig_serial, ack_serial, sent_at, resp_time);
432}
433
434/*
David Howells8e831342016-09-22 00:29:31 +0100435 * Process a ping response.
436 */
437static void rxrpc_input_ping_response(struct rxrpc_call *call,
438 ktime_t resp_time,
439 rxrpc_serial_t orig_serial,
440 rxrpc_serial_t ack_serial)
441{
442 rxrpc_serial_t ping_serial;
443 ktime_t ping_time;
444
445 ping_time = call->ackr_ping_time;
446 smp_rmb();
447 ping_serial = call->ackr_ping;
448
449 if (!test_bit(RXRPC_CALL_PINGING, &call->flags) ||
450 before(orig_serial, ping_serial))
451 return;
452 clear_bit(RXRPC_CALL_PINGING, &call->flags);
453 if (after(orig_serial, ping_serial))
454 return;
455
456 rxrpc_peer_add_rtt(call, rxrpc_rtt_rx_ping_response,
457 orig_serial, ack_serial, ping_time, resp_time);
458}
459
460/*
David Howells248f2192016-09-08 11:10:12 +0100461 * Process the extra information that may be appended to an ACK packet
462 */
463static void rxrpc_input_ackinfo(struct rxrpc_call *call, struct sk_buff *skb,
464 struct rxrpc_ackinfo *ackinfo)
465{
466 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
467 struct rxrpc_peer *peer;
468 unsigned int mtu;
David Howells01fd0742016-09-13 10:23:01 +0100469 u32 rwind = ntohl(ackinfo->rwind);
David Howells248f2192016-09-08 11:10:12 +0100470
471 _proto("Rx ACK %%%u Info { rx=%u max=%u rwin=%u jm=%u }",
472 sp->hdr.serial,
473 ntohl(ackinfo->rxMTU), ntohl(ackinfo->maxMTU),
David Howells01fd0742016-09-13 10:23:01 +0100474 rwind, ntohl(ackinfo->jumbo_max));
David Howells248f2192016-09-08 11:10:12 +0100475
David Howells01fd0742016-09-13 10:23:01 +0100476 if (rwind > RXRPC_RXTX_BUFF_SIZE - 1)
477 rwind = RXRPC_RXTX_BUFF_SIZE - 1;
478 call->tx_winsize = rwind;
David Howells248f2192016-09-08 11:10:12 +0100479
480 mtu = min(ntohl(ackinfo->rxMTU), ntohl(ackinfo->maxMTU));
481
482 peer = call->peer;
483 if (mtu < peer->maxdata) {
484 spin_lock_bh(&peer->lock);
485 peer->maxdata = mtu;
486 peer->mtu = mtu + peer->hdrsize;
487 spin_unlock_bh(&peer->lock);
488 _net("Net MTU %u (maxdata %u)", peer->mtu, peer->maxdata);
489 }
490}
491
492/*
493 * Process individual soft ACKs.
494 *
495 * Each ACK in the array corresponds to one packet and can be either an ACK or
496 * a NAK. If we get find an explicitly NAK'd packet we resend immediately;
497 * packets that lie beyond the end of the ACK list are scheduled for resend by
498 * the timer on the basis that the peer might just not have processed them at
499 * the time the ACK was sent.
500 */
501static void rxrpc_input_soft_acks(struct rxrpc_call *call, u8 *acks,
502 rxrpc_seq_t seq, int nr_acks)
503{
504 bool resend = false;
505 int ix;
David Howellsf07373e2016-09-22 00:29:32 +0100506 u8 annotation, anno_type;
David Howells248f2192016-09-08 11:10:12 +0100507
508 for (; nr_acks > 0; nr_acks--, seq++) {
509 ix = seq & RXRPC_RXTX_BUFF_MASK;
David Howellsf07373e2016-09-22 00:29:32 +0100510 annotation = call->rxtx_annotations[ix];
511 anno_type = annotation & RXRPC_TX_ANNO_MASK;
512 annotation &= ~RXRPC_TX_ANNO_MASK;
David Howellsd01dc4c2016-09-17 10:49:12 +0100513 switch (*acks++) {
David Howells248f2192016-09-08 11:10:12 +0100514 case RXRPC_ACK_TYPE_ACK:
David Howellsf07373e2016-09-22 00:29:32 +0100515 if (anno_type == RXRPC_TX_ANNO_ACK)
516 continue;
517 call->rxtx_annotations[ix] =
518 RXRPC_TX_ANNO_ACK | annotation;
David Howells248f2192016-09-08 11:10:12 +0100519 break;
520 case RXRPC_ACK_TYPE_NACK:
David Howellsf07373e2016-09-22 00:29:32 +0100521 if (anno_type == RXRPC_TX_ANNO_NAK)
David Howells248f2192016-09-08 11:10:12 +0100522 continue;
David Howellsbe8aa332016-09-23 12:39:23 +0100523 if (anno_type == RXRPC_TX_ANNO_RETRANS)
524 continue;
David Howellsf07373e2016-09-22 00:29:32 +0100525 call->rxtx_annotations[ix] =
526 RXRPC_TX_ANNO_NAK | annotation;
David Howells248f2192016-09-08 11:10:12 +0100527 resend = true;
528 break;
529 default:
530 return rxrpc_proto_abort("SFT", call, 0);
531 }
532 }
533
534 if (resend &&
535 !test_and_set_bit(RXRPC_CALL_EV_RESEND, &call->events))
536 rxrpc_queue_call(call);
537}
538
539/*
540 * Process an ACK packet.
541 *
542 * ack.firstPacket is the sequence number of the first soft-ACK'd/NAK'd packet
543 * in the ACK array. Anything before that is hard-ACK'd and may be discarded.
544 *
545 * A hard-ACK means that a packet has been processed and may be discarded; a
546 * soft-ACK means that the packet may be discarded and retransmission
547 * requested. A phase is complete when all packets are hard-ACK'd.
548 */
549static void rxrpc_input_ack(struct rxrpc_call *call, struct sk_buff *skb,
550 u16 skew)
551{
David Howells9c7ad432016-09-23 13:50:40 +0100552 u8 ack_reason;
David Howells248f2192016-09-08 11:10:12 +0100553 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
554 union {
555 struct rxrpc_ackpacket ack;
556 struct rxrpc_ackinfo info;
557 u8 acks[RXRPC_MAXACKS];
558 } buf;
David Howells8e831342016-09-22 00:29:31 +0100559 rxrpc_serial_t acked_serial;
David Howells248f2192016-09-08 11:10:12 +0100560 rxrpc_seq_t first_soft_ack, hard_ack;
561 int nr_acks, offset;
562
563 _enter("");
564
565 if (skb_copy_bits(skb, sp->offset, &buf.ack, sizeof(buf.ack)) < 0) {
566 _debug("extraction failure");
567 return rxrpc_proto_abort("XAK", call, 0);
568 }
569 sp->offset += sizeof(buf.ack);
570
David Howells8e831342016-09-22 00:29:31 +0100571 acked_serial = ntohl(buf.ack.serial);
David Howells248f2192016-09-08 11:10:12 +0100572 first_soft_ack = ntohl(buf.ack.firstPacket);
573 hard_ack = first_soft_ack - 1;
574 nr_acks = buf.ack.nAcks;
David Howells9c7ad432016-09-23 13:50:40 +0100575 ack_reason = (buf.ack.reason < RXRPC_ACK__INVALID ?
576 buf.ack.reason : RXRPC_ACK__INVALID);
David Howells248f2192016-09-08 11:10:12 +0100577
David Howells9c7ad432016-09-23 13:50:40 +0100578 trace_rxrpc_rx_ack(call, first_soft_ack, ack_reason, nr_acks);
David Howellsec71eb92016-09-17 10:49:13 +0100579
David Howells248f2192016-09-08 11:10:12 +0100580 _proto("Rx ACK %%%u { m=%hu f=#%u p=#%u s=%%%u r=%s n=%u }",
581 sp->hdr.serial,
582 ntohs(buf.ack.maxSkew),
583 first_soft_ack,
584 ntohl(buf.ack.previousPacket),
David Howells8e831342016-09-22 00:29:31 +0100585 acked_serial,
David Howells9c7ad432016-09-23 13:50:40 +0100586 rxrpc_ack_names[ack_reason],
David Howells248f2192016-09-08 11:10:12 +0100587 buf.ack.nAcks);
588
David Howells8e831342016-09-22 00:29:31 +0100589 if (buf.ack.reason == RXRPC_ACK_PING_RESPONSE)
590 rxrpc_input_ping_response(call, skb->tstamp, acked_serial,
591 sp->hdr.serial);
David Howells50235c42016-09-22 00:29:31 +0100592 if (buf.ack.reason == RXRPC_ACK_REQUESTED)
593 rxrpc_input_requested_ack(call, skb->tstamp, acked_serial,
594 sp->hdr.serial);
David Howells8e831342016-09-22 00:29:31 +0100595
David Howells248f2192016-09-08 11:10:12 +0100596 if (buf.ack.reason == RXRPC_ACK_PING) {
597 _proto("Rx ACK %%%u PING Request", sp->hdr.serial);
598 rxrpc_propose_ACK(call, RXRPC_ACK_PING_RESPONSE,
David Howells9c7ad432016-09-23 13:50:40 +0100599 skew, sp->hdr.serial, true, true,
600 rxrpc_propose_ack_respond_to_ping);
David Howells248f2192016-09-08 11:10:12 +0100601 } else if (sp->hdr.flags & RXRPC_REQUEST_ACK) {
602 rxrpc_propose_ACK(call, RXRPC_ACK_REQUESTED,
David Howells9c7ad432016-09-23 13:50:40 +0100603 skew, sp->hdr.serial, true, true,
604 rxrpc_propose_ack_respond_to_ack);
David Howells248f2192016-09-08 11:10:12 +0100605 }
606
607 offset = sp->offset + nr_acks + 3;
David Howells89a80ed2016-09-13 22:36:22 +0100608 if (skb->len >= offset + sizeof(buf.info)) {
David Howells248f2192016-09-08 11:10:12 +0100609 if (skb_copy_bits(skb, offset, &buf.info, sizeof(buf.info)) < 0)
610 return rxrpc_proto_abort("XAI", call, 0);
611 rxrpc_input_ackinfo(call, skb, &buf.info);
612 }
613
614 if (first_soft_ack == 0)
615 return rxrpc_proto_abort("AK0", call, 0);
616
617 /* Ignore ACKs unless we are or have just been transmitting. */
618 switch (call->state) {
619 case RXRPC_CALL_CLIENT_SEND_REQUEST:
620 case RXRPC_CALL_CLIENT_AWAIT_REPLY:
621 case RXRPC_CALL_SERVER_SEND_REPLY:
622 case RXRPC_CALL_SERVER_AWAIT_ACK:
623 break;
624 default:
625 return;
626 }
627
628 /* Discard any out-of-order or duplicate ACKs. */
David Howells98dafac2016-09-23 14:04:38 +0100629 if (before_eq(sp->hdr.serial, call->acks_latest)) {
David Howells248f2192016-09-08 11:10:12 +0100630 _debug("discard ACK %d <= %d",
631 sp->hdr.serial, call->acks_latest);
632 return;
633 }
634 call->acks_latest = sp->hdr.serial;
635
David Howells248f2192016-09-08 11:10:12 +0100636 if (before(hard_ack, call->tx_hard_ack) ||
637 after(hard_ack, call->tx_top))
638 return rxrpc_proto_abort("AKW", call, 0);
David Howells70790db2016-09-23 12:39:22 +0100639 if (nr_acks > call->tx_top - hard_ack)
640 return rxrpc_proto_abort("AKN", call, 0);
David Howells248f2192016-09-08 11:10:12 +0100641
642 if (after(hard_ack, call->tx_hard_ack))
643 rxrpc_rotate_tx_window(call, hard_ack);
644
David Howells70790db2016-09-23 12:39:22 +0100645 if (nr_acks > 0) {
646 if (skb_copy_bits(skb, sp->offset, buf.acks, nr_acks) < 0)
647 return rxrpc_proto_abort("XSA", call, 0);
648 rxrpc_input_soft_acks(call, buf.acks, first_soft_ack, nr_acks);
649 }
David Howells248f2192016-09-08 11:10:12 +0100650
David Howells70790db2016-09-23 12:39:22 +0100651 if (test_bit(RXRPC_CALL_TX_LAST, &call->flags)) {
652 rxrpc_end_tx_phase(call, false, "ETA");
653 return;
654 }
655
David Howells248f2192016-09-08 11:10:12 +0100656}
657
658/*
659 * Process an ACKALL packet.
660 */
661static void rxrpc_input_ackall(struct rxrpc_call *call, struct sk_buff *skb)
662{
663 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
664
665 _proto("Rx ACKALL %%%u", sp->hdr.serial);
666
David Howells70790db2016-09-23 12:39:22 +0100667 rxrpc_rotate_tx_window(call, call->tx_top);
668 if (test_bit(RXRPC_CALL_TX_LAST, &call->flags))
669 rxrpc_end_tx_phase(call, false, "ETL");
David Howells248f2192016-09-08 11:10:12 +0100670}
671
672/*
673 * Process an ABORT packet.
674 */
675static void rxrpc_input_abort(struct rxrpc_call *call, struct sk_buff *skb)
David Howells17926a72007-04-26 15:48:28 -0700676{
677 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
David Howells0d12f8a2016-03-04 15:53:46 +0000678 __be32 wtmp;
David Howells248f2192016-09-08 11:10:12 +0100679 u32 abort_code = RX_CALL_DEAD;
680
681 _enter("");
682
683 if (skb->len >= 4 &&
684 skb_copy_bits(skb, sp->offset, &wtmp, sizeof(wtmp)) >= 0)
685 abort_code = ntohl(wtmp);
686
687 _proto("Rx ABORT %%%u { %x }", sp->hdr.serial, abort_code);
688
689 if (rxrpc_set_call_completion(call, RXRPC_CALL_REMOTELY_ABORTED,
690 abort_code, ECONNABORTED))
691 rxrpc_notify_socket(call);
692}
693
694/*
695 * Process an incoming call packet.
696 */
697static void rxrpc_input_call_packet(struct rxrpc_call *call,
698 struct sk_buff *skb, u16 skew)
699{
700 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
David Howells17926a72007-04-26 15:48:28 -0700701
702 _enter("%p,%p", call, skb);
703
David Howells17926a72007-04-26 15:48:28 -0700704 switch (sp->hdr.type) {
David Howells248f2192016-09-08 11:10:12 +0100705 case RXRPC_PACKET_TYPE_DATA:
706 rxrpc_input_data(call, skb, skew);
707 break;
David Howells17926a72007-04-26 15:48:28 -0700708
David Howells248f2192016-09-08 11:10:12 +0100709 case RXRPC_PACKET_TYPE_ACK:
710 rxrpc_input_ack(call, skb, skew);
711 break;
David Howells17926a72007-04-26 15:48:28 -0700712
713 case RXRPC_PACKET_TYPE_BUSY:
David Howells0d12f8a2016-03-04 15:53:46 +0000714 _proto("Rx BUSY %%%u", sp->hdr.serial);
David Howells17926a72007-04-26 15:48:28 -0700715
David Howells248f2192016-09-08 11:10:12 +0100716 /* Just ignore BUSY packets from the server; the retry and
717 * lifespan timers will take care of business. BUSY packets
718 * from the client don't make sense.
719 */
720 break;
David Howells17926a72007-04-26 15:48:28 -0700721
David Howells248f2192016-09-08 11:10:12 +0100722 case RXRPC_PACKET_TYPE_ABORT:
723 rxrpc_input_abort(call, skb);
724 break;
725
726 case RXRPC_PACKET_TYPE_ACKALL:
727 rxrpc_input_ackall(call, skb);
728 break;
David Howells17926a72007-04-26 15:48:28 -0700729
730 default:
David Howells0d12f8a2016-03-04 15:53:46 +0000731 _proto("Rx %s %%%u", rxrpc_pkts[sp->hdr.type], sp->hdr.serial);
David Howells17926a72007-04-26 15:48:28 -0700732 break;
733 }
734
David Howells17926a72007-04-26 15:48:28 -0700735 _leave("");
736}
737
738/*
739 * post connection-level events to the connection
David Howells18bfeba2016-08-23 15:27:25 +0100740 * - this includes challenges, responses, some aborts and call terminal packet
741 * retransmission.
David Howells17926a72007-04-26 15:48:28 -0700742 */
David Howells2e7e9752016-08-09 10:11:48 +0100743static void rxrpc_post_packet_to_conn(struct rxrpc_connection *conn,
David Howells17926a72007-04-26 15:48:28 -0700744 struct sk_buff *skb)
745{
746 _enter("%p,%p", conn, skb);
747
David Howells17926a72007-04-26 15:48:28 -0700748 skb_queue_tail(&conn->rx_queue, skb);
David Howells2e7e9752016-08-09 10:11:48 +0100749 rxrpc_queue_conn(conn);
David Howells17926a72007-04-26 15:48:28 -0700750}
751
David Howells44ba0692015-04-01 16:31:26 +0100752/*
753 * post endpoint-level events to the local endpoint
754 * - this includes debug and version messages
755 */
756static void rxrpc_post_packet_to_local(struct rxrpc_local *local,
757 struct sk_buff *skb)
758{
759 _enter("%p,%p", local, skb);
760
David Howells44ba0692015-04-01 16:31:26 +0100761 skb_queue_tail(&local->event_queue, skb);
David Howells5acbee42016-06-27 10:32:02 +0100762 rxrpc_queue_local(local);
David Howells44ba0692015-04-01 16:31:26 +0100763}
764
David Howells0d12f8a2016-03-04 15:53:46 +0000765/*
David Howells248f2192016-09-08 11:10:12 +0100766 * put a packet up for transport-level abort
767 */
768static void rxrpc_reject_packet(struct rxrpc_local *local, struct sk_buff *skb)
769{
770 CHECK_SLAB_OKAY(&local->usage);
771
772 skb_queue_tail(&local->reject_queue, skb);
773 rxrpc_queue_local(local);
774}
775
776/*
David Howells0d12f8a2016-03-04 15:53:46 +0000777 * Extract the wire header from a packet and translate the byte order.
778 */
779static noinline
780int rxrpc_extract_header(struct rxrpc_skb_priv *sp, struct sk_buff *skb)
781{
782 struct rxrpc_wire_header whdr;
783
784 /* dig out the RxRPC connection details */
Willem de Bruijn4d0fc732016-04-07 11:44:59 -0400785 if (skb_copy_bits(skb, 0, &whdr, sizeof(whdr)) < 0)
David Howells0d12f8a2016-03-04 15:53:46 +0000786 return -EBADMSG;
David Howells0d12f8a2016-03-04 15:53:46 +0000787
788 memset(sp, 0, sizeof(*sp));
789 sp->hdr.epoch = ntohl(whdr.epoch);
790 sp->hdr.cid = ntohl(whdr.cid);
791 sp->hdr.callNumber = ntohl(whdr.callNumber);
792 sp->hdr.seq = ntohl(whdr.seq);
793 sp->hdr.serial = ntohl(whdr.serial);
794 sp->hdr.flags = whdr.flags;
795 sp->hdr.type = whdr.type;
796 sp->hdr.userStatus = whdr.userStatus;
797 sp->hdr.securityIndex = whdr.securityIndex;
798 sp->hdr._rsvd = ntohs(whdr._rsvd);
799 sp->hdr.serviceId = ntohs(whdr.serviceId);
David Howells248f2192016-09-08 11:10:12 +0100800 sp->offset = sizeof(whdr);
David Howells0d12f8a2016-03-04 15:53:46 +0000801 return 0;
802}
803
David Howells17926a72007-04-26 15:48:28 -0700804/*
805 * handle data received on the local endpoint
806 * - may be called in interrupt context
David Howells4f95dd72016-04-04 14:00:35 +0100807 *
808 * The socket is locked by the caller and this prevents the socket from being
809 * shut down and the local endpoint from going away, thus sk_user_data will not
810 * be cleared until this function returns.
David Howells17926a72007-04-26 15:48:28 -0700811 */
David Howells248f2192016-09-08 11:10:12 +0100812void rxrpc_data_ready(struct sock *udp_sk)
David Howells17926a72007-04-26 15:48:28 -0700813{
David Howells8496af52016-07-01 07:51:50 +0100814 struct rxrpc_connection *conn;
David Howells248f2192016-09-08 11:10:12 +0100815 struct rxrpc_channel *chan;
816 struct rxrpc_call *call;
David Howells17926a72007-04-26 15:48:28 -0700817 struct rxrpc_skb_priv *sp;
David Howells248f2192016-09-08 11:10:12 +0100818 struct rxrpc_local *local = udp_sk->sk_user_data;
David Howells17926a72007-04-26 15:48:28 -0700819 struct sk_buff *skb;
David Howells248f2192016-09-08 11:10:12 +0100820 unsigned int channel;
David Howells563ea7d2016-08-23 15:27:25 +0100821 int ret, skew;
David Howells17926a72007-04-26 15:48:28 -0700822
David Howells248f2192016-09-08 11:10:12 +0100823 _enter("%p", udp_sk);
David Howells17926a72007-04-26 15:48:28 -0700824
825 ASSERT(!irqs_disabled());
826
David Howells248f2192016-09-08 11:10:12 +0100827 skb = skb_recv_datagram(udp_sk, 0, 1, &ret);
David Howells17926a72007-04-26 15:48:28 -0700828 if (!skb) {
David Howells17926a72007-04-26 15:48:28 -0700829 if (ret == -EAGAIN)
830 return;
831 _debug("UDP socket error %d", ret);
832 return;
833 }
834
David Howells71f3ca42016-09-17 10:49:14 +0100835 rxrpc_new_skb(skb, rxrpc_skb_rx_received);
David Howells17926a72007-04-26 15:48:28 -0700836
837 _net("recv skb %p", skb);
838
839 /* we'll probably need to checksum it (didn't call sock_recvmsg) */
840 if (skb_checksum_complete(skb)) {
David Howells71f3ca42016-09-17 10:49:14 +0100841 rxrpc_free_skb(skb, rxrpc_skb_rx_freed);
Eric Dumazet02c22342016-04-27 16:44:30 -0700842 __UDP_INC_STATS(&init_net, UDP_MIB_INERRORS, 0);
David Howells17926a72007-04-26 15:48:28 -0700843 _leave(" [CSUM failed]");
844 return;
845 }
846
Eric Dumazet02c22342016-04-27 16:44:30 -0700847 __UDP_INC_STATS(&init_net, UDP_MIB_INDATAGRAMS, 0);
Herbert Xu1781f7f2007-12-11 11:30:32 -0800848
David Howells0d12f8a2016-03-04 15:53:46 +0000849 /* The socket buffer we have is owned by UDP, with UDP's data all over
850 * it, but we really want our own data there.
851 */
David Howells17926a72007-04-26 15:48:28 -0700852 skb_orphan(skb);
853 sp = rxrpc_skb(skb);
David Howells17926a72007-04-26 15:48:28 -0700854
David Howells89b475a2016-09-23 12:39:22 +0100855 /* dig out the RxRPC connection details */
856 if (rxrpc_extract_header(sp, skb) < 0)
857 goto bad_message;
858
David Howells8a681c362016-09-17 10:49:15 +0100859 if (IS_ENABLED(CONFIG_AF_RXRPC_INJECT_LOSS)) {
860 static int lose;
861 if ((lose++ & 7) == 7) {
David Howells89b475a2016-09-23 12:39:22 +0100862 trace_rxrpc_rx_lose(sp);
David Howells8a681c362016-09-17 10:49:15 +0100863 rxrpc_lose_skb(skb, rxrpc_skb_rx_lost);
864 return;
865 }
866 }
867
David Howells49e19ec2016-09-08 11:10:12 +0100868 trace_rxrpc_rx_packet(sp);
David Howells17926a72007-04-26 15:48:28 -0700869
870 _net("Rx RxRPC %s ep=%x call=%x:%x",
871 sp->hdr.flags & RXRPC_CLIENT_INITIATED ? "ToServer" : "ToClient",
David Howells0d12f8a2016-03-04 15:53:46 +0000872 sp->hdr.epoch, sp->hdr.cid, sp->hdr.callNumber);
David Howells17926a72007-04-26 15:48:28 -0700873
David Howells351c1e62016-03-04 15:56:06 +0000874 if (sp->hdr.type >= RXRPC_N_PACKET_TYPES ||
875 !((RXRPC_SUPPORTED_PACKET_TYPES >> sp->hdr.type) & 1)) {
David Howells17926a72007-04-26 15:48:28 -0700876 _proto("Rx Bad Packet Type %u", sp->hdr.type);
877 goto bad_message;
878 }
879
David Howells248f2192016-09-08 11:10:12 +0100880 switch (sp->hdr.type) {
881 case RXRPC_PACKET_TYPE_VERSION:
David Howells44ba0692015-04-01 16:31:26 +0100882 rxrpc_post_packet_to_local(local, skb);
883 goto out;
David Howellsbc6e1ea2016-06-10 22:30:27 +0100884
David Howells248f2192016-09-08 11:10:12 +0100885 case RXRPC_PACKET_TYPE_BUSY:
886 if (sp->hdr.flags & RXRPC_CLIENT_INITIATED)
887 goto discard;
888
889 case RXRPC_PACKET_TYPE_DATA:
890 if (sp->hdr.callNumber == 0)
891 goto bad_message;
892 if (sp->hdr.flags & RXRPC_JUMBO_PACKET &&
893 !rxrpc_validate_jumbo(skb))
894 goto bad_message;
895 break;
896 }
David Howells17926a72007-04-26 15:48:28 -0700897
David Howells8496af52016-07-01 07:51:50 +0100898 rcu_read_lock();
899
David Howells8496af52016-07-01 07:51:50 +0100900 conn = rxrpc_find_connection_rcu(local, skb);
David Howells248f2192016-09-08 11:10:12 +0100901 if (conn) {
902 if (sp->hdr.securityIndex != conn->security_ix)
903 goto wrong_security;
David Howells563ea7d2016-08-23 15:27:25 +0100904
David Howells248f2192016-09-08 11:10:12 +0100905 if (sp->hdr.callNumber == 0) {
906 /* Connection-level packet */
907 _debug("CONN %p {%d}", conn, conn->debug_id);
908 rxrpc_post_packet_to_conn(conn, skb);
909 goto out_unlock;
910 }
David Howells8496af52016-07-01 07:51:50 +0100911
David Howells248f2192016-09-08 11:10:12 +0100912 /* Note the serial number skew here */
913 skew = (int)sp->hdr.serial - (int)conn->hi_serial;
914 if (skew >= 0) {
915 if (skew > 0)
916 conn->hi_serial = sp->hdr.serial;
917 } else {
918 skew = -skew;
919 skew = min(skew, 65535);
920 }
921
David Howells8496af52016-07-01 07:51:50 +0100922 /* Call-bound packets are routed by connection channel. */
David Howells248f2192016-09-08 11:10:12 +0100923 channel = sp->hdr.cid & RXRPC_CHANNELMASK;
924 chan = &conn->channels[channel];
Tim Smith77276402014-03-03 23:04:45 +0000925
David Howells18bfeba2016-08-23 15:27:25 +0100926 /* Ignore really old calls */
927 if (sp->hdr.callNumber < chan->last_call)
928 goto discard_unlock;
929
930 if (sp->hdr.callNumber == chan->last_call) {
David Howells248f2192016-09-08 11:10:12 +0100931 /* For the previous service call, if completed successfully, we
932 * discard all further packets.
David Howells18bfeba2016-08-23 15:27:25 +0100933 */
David Howells2266ffd2016-08-24 13:06:14 +0100934 if (rxrpc_conn_is_service(conn) &&
David Howells18bfeba2016-08-23 15:27:25 +0100935 (chan->last_type == RXRPC_PACKET_TYPE_ACK ||
936 sp->hdr.type == RXRPC_PACKET_TYPE_ABORT))
937 goto discard_unlock;
938
David Howells248f2192016-09-08 11:10:12 +0100939 /* But otherwise we need to retransmit the final packet from
940 * data cached in the connection record.
David Howells18bfeba2016-08-23 15:27:25 +0100941 */
942 rxrpc_post_packet_to_conn(conn, skb);
943 goto out_unlock;
944 }
945
946 call = rcu_dereference(chan->call);
David Howells248f2192016-09-08 11:10:12 +0100947 } else {
948 skew = 0;
949 call = NULL;
Tim Smith77276402014-03-03 23:04:45 +0000950 }
David Howells44ba0692015-04-01 16:31:26 +0100951
David Howells248f2192016-09-08 11:10:12 +0100952 if (!call || atomic_read(&call->usage) == 0) {
953 if (!(sp->hdr.type & RXRPC_CLIENT_INITIATED) ||
954 sp->hdr.callNumber == 0 ||
955 sp->hdr.type != RXRPC_PACKET_TYPE_DATA)
956 goto bad_message_unlock;
957 if (sp->hdr.seq != 1)
958 goto discard_unlock;
959 call = rxrpc_new_incoming_call(local, conn, skb);
960 if (!call) {
961 rcu_read_unlock();
962 goto reject_packet;
963 }
David Howells8e831342016-09-22 00:29:31 +0100964 rxrpc_send_ping(call, skb, skew);
David Howells248f2192016-09-08 11:10:12 +0100965 }
966
967 rxrpc_input_call_packet(call, skb, skew);
968 goto discard_unlock;
969
David Howells18bfeba2016-08-23 15:27:25 +0100970discard_unlock:
David Howells8496af52016-07-01 07:51:50 +0100971 rcu_read_unlock();
David Howells248f2192016-09-08 11:10:12 +0100972discard:
David Howells71f3ca42016-09-17 10:49:14 +0100973 rxrpc_free_skb(skb, rxrpc_skb_rx_freed);
David Howells44ba0692015-04-01 16:31:26 +0100974out:
David Howells49e19ec2016-09-08 11:10:12 +0100975 trace_rxrpc_rx_done(0, 0);
David Howells17926a72007-04-26 15:48:28 -0700976 return;
977
David Howells248f2192016-09-08 11:10:12 +0100978out_unlock:
David Howells8496af52016-07-01 07:51:50 +0100979 rcu_read_unlock();
David Howells248f2192016-09-08 11:10:12 +0100980 goto out;
David Howells8496af52016-07-01 07:51:50 +0100981
David Howells248f2192016-09-08 11:10:12 +0100982wrong_security:
983 rcu_read_unlock();
984 trace_rxrpc_abort("SEC", sp->hdr.cid, sp->hdr.callNumber, sp->hdr.seq,
985 RXKADINCONSISTENCY, EBADMSG);
986 skb->priority = RXKADINCONSISTENCY;
987 goto post_abort;
David Howells17926a72007-04-26 15:48:28 -0700988
David Howells248f2192016-09-08 11:10:12 +0100989bad_message_unlock:
990 rcu_read_unlock();
David Howells17926a72007-04-26 15:48:28 -0700991bad_message:
David Howells248f2192016-09-08 11:10:12 +0100992 trace_rxrpc_abort("BAD", sp->hdr.cid, sp->hdr.callNumber, sp->hdr.seq,
993 RX_PROTOCOL_ERROR, EBADMSG);
David Howells17926a72007-04-26 15:48:28 -0700994 skb->priority = RX_PROTOCOL_ERROR;
David Howells248f2192016-09-08 11:10:12 +0100995post_abort:
996 skb->mark = RXRPC_SKB_MARK_LOCAL_ABORT;
David Howells49e19ec2016-09-08 11:10:12 +0100997reject_packet:
998 trace_rxrpc_rx_done(skb->mark, skb->priority);
David Howells17926a72007-04-26 15:48:28 -0700999 rxrpc_reject_packet(local, skb);
David Howells17926a72007-04-26 15:48:28 -07001000 _leave(" [badmsg]");
1001}