blob: 70bb77818deab9393b79a6499dcf0f42ecbd29e6 [file] [log] [blame]
David Howells17926a72007-04-26 15:48:28 -07001/* RxRPC packet reception
2 *
3 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
Joe Perches9b6d5392016-06-02 12:08:52 -070012#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13
David Howells17926a72007-04-26 15:48:28 -070014#include <linux/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 Howells17926a72007-04-26 15:48:28 -070030/*
31 * queue a packet for recvmsg to pass to userspace
32 * - the caller must hold a lock on call->lock
33 * - must not be called with interrupts disabled (sk_filter() disables BH's)
34 * - eats the packet whether successful or not
35 * - there must be just one reference to the packet, which the caller passes to
36 * this function
37 */
38int rxrpc_queue_rcv_skb(struct rxrpc_call *call, struct sk_buff *skb,
39 bool force, bool terminal)
40{
41 struct rxrpc_skb_priv *sp;
David Howells651350d2007-04-26 15:50:17 -070042 struct rxrpc_sock *rx = call->socket;
David Howells17926a72007-04-26 15:48:28 -070043 struct sock *sk;
Eric Dumazet884cf702014-08-22 20:30:12 -070044 int ret;
David Howells17926a72007-04-26 15:48:28 -070045
46 _enter(",,%d,%d", force, terminal);
47
48 ASSERT(!irqs_disabled());
49
50 sp = rxrpc_skb(skb);
51 ASSERTCMP(sp->call, ==, call);
52
53 /* if we've already posted the terminal message for a call, then we
54 * don't post any more */
55 if (test_bit(RXRPC_CALL_TERMINAL_MSG, &call->flags)) {
56 _debug("already terminated");
57 ASSERTCMP(call->state, >=, RXRPC_CALL_COMPLETE);
David Howells17926a72007-04-26 15:48:28 -070058 rxrpc_free_skb(skb);
59 return 0;
60 }
61
David Howells651350d2007-04-26 15:50:17 -070062 sk = &rx->sk;
David Howells17926a72007-04-26 15:48:28 -070063
64 if (!force) {
65 /* cast skb->rcvbuf to unsigned... It's pointless, but
66 * reduces number of warnings when compiling with -W
67 * --ANK */
68// ret = -ENOBUFS;
69// if (atomic_read(&sk->sk_rmem_alloc) + skb->truesize >=
Eric Dumazet95c96172012-04-15 05:58:06 +000070// (unsigned int) sk->sk_rcvbuf)
David Howells17926a72007-04-26 15:48:28 -070071// goto out;
72
73 ret = sk_filter(sk, skb);
74 if (ret < 0)
75 goto out;
76 }
77
78 spin_lock_bh(&sk->sk_receive_queue.lock);
79 if (!test_bit(RXRPC_CALL_TERMINAL_MSG, &call->flags) &&
80 !test_bit(RXRPC_CALL_RELEASED, &call->flags) &&
81 call->socket->sk.sk_state != RXRPC_CLOSE) {
82 skb->destructor = rxrpc_packet_destructor;
83 skb->dev = NULL;
84 skb->sk = sk;
85 atomic_add(skb->truesize, &sk->sk_rmem_alloc);
86
David Howells17926a72007-04-26 15:48:28 -070087 if (terminal) {
88 _debug("<<<< TERMINAL MESSAGE >>>>");
89 set_bit(RXRPC_CALL_TERMINAL_MSG, &call->flags);
90 }
91
David Howells651350d2007-04-26 15:50:17 -070092 /* allow interception by a kernel service */
93 if (rx->interceptor) {
94 rx->interceptor(sk, call->user_call_ID, skb);
95 spin_unlock_bh(&sk->sk_receive_queue.lock);
96 } else {
David Howells651350d2007-04-26 15:50:17 -070097 _net("post skb %p", skb);
98 __skb_queue_tail(&sk->sk_receive_queue, skb);
99 spin_unlock_bh(&sk->sk_receive_queue.lock);
100
101 if (!sock_flag(sk, SOCK_DEAD))
David S. Miller676d2362014-04-11 16:15:36 -0400102 sk->sk_data_ready(sk);
David Howells651350d2007-04-26 15:50:17 -0700103 }
David Howells17926a72007-04-26 15:48:28 -0700104 skb = NULL;
105 } else {
106 spin_unlock_bh(&sk->sk_receive_queue.lock);
107 }
108 ret = 0;
109
110out:
David Howells372ee162016-08-03 14:11:40 +0100111 rxrpc_free_skb(skb);
David Howells17926a72007-04-26 15:48:28 -0700112
113 _leave(" = %d", ret);
114 return ret;
115}
116
117/*
118 * process a DATA packet, posting the packet to the appropriate queue
119 * - eats the packet if successful
120 */
121static int rxrpc_fast_process_data(struct rxrpc_call *call,
122 struct sk_buff *skb, u32 seq)
123{
124 struct rxrpc_skb_priv *sp;
125 bool terminal;
126 int ret, ackbit, ack;
David Howells50fd85a2016-08-09 11:30:43 +0100127 u32 serial;
128 u8 flags;
David Howells17926a72007-04-26 15:48:28 -0700129
130 _enter("{%u,%u},,{%u}", call->rx_data_post, call->rx_first_oos, seq);
131
132 sp = rxrpc_skb(skb);
133 ASSERTCMP(sp->call, ==, NULL);
David Howells50fd85a2016-08-09 11:30:43 +0100134 flags = sp->hdr.flags;
135 serial = sp->hdr.serial;
David Howells17926a72007-04-26 15:48:28 -0700136
137 spin_lock(&call->lock);
138
139 if (call->state > RXRPC_CALL_COMPLETE)
140 goto discard;
141
142 ASSERTCMP(call->rx_data_expect, >=, call->rx_data_post);
143 ASSERTCMP(call->rx_data_post, >=, call->rx_data_recv);
144 ASSERTCMP(call->rx_data_recv, >=, call->rx_data_eaten);
145
146 if (seq < call->rx_data_post) {
147 _debug("dup #%u [-%u]", seq, call->rx_data_post);
148 ack = RXRPC_ACK_DUPLICATE;
149 ret = -ENOBUFS;
150 goto discard_and_ack;
151 }
152
153 /* we may already have the packet in the out of sequence queue */
154 ackbit = seq - (call->rx_data_eaten + 1);
155 ASSERTCMP(ackbit, >=, 0);
David S. Miller68c708f2007-04-26 20:20:21 -0700156 if (__test_and_set_bit(ackbit, call->ackr_window)) {
David Howells17926a72007-04-26 15:48:28 -0700157 _debug("dup oos #%u [%u,%u]",
158 seq, call->rx_data_eaten, call->rx_data_post);
159 ack = RXRPC_ACK_DUPLICATE;
160 goto discard_and_ack;
161 }
162
163 if (seq >= call->ackr_win_top) {
164 _debug("exceed #%u [%u]", seq, call->ackr_win_top);
David S. Miller68c708f2007-04-26 20:20:21 -0700165 __clear_bit(ackbit, call->ackr_window);
David Howells17926a72007-04-26 15:48:28 -0700166 ack = RXRPC_ACK_EXCEEDS_WINDOW;
167 goto discard_and_ack;
168 }
169
170 if (seq == call->rx_data_expect) {
171 clear_bit(RXRPC_CALL_EXPECT_OOS, &call->flags);
172 call->rx_data_expect++;
173 } else if (seq > call->rx_data_expect) {
174 _debug("oos #%u [%u]", seq, call->rx_data_expect);
175 call->rx_data_expect = seq + 1;
176 if (test_and_set_bit(RXRPC_CALL_EXPECT_OOS, &call->flags)) {
177 ack = RXRPC_ACK_OUT_OF_SEQUENCE;
178 goto enqueue_and_ack;
179 }
180 goto enqueue_packet;
181 }
182
183 if (seq != call->rx_data_post) {
184 _debug("ahead #%u [%u]", seq, call->rx_data_post);
185 goto enqueue_packet;
186 }
187
188 if (test_bit(RXRPC_CALL_RCVD_LAST, &call->flags))
189 goto protocol_error;
190
191 /* if the packet need security things doing to it, then it goes down
192 * the slow path */
David Howellse0e4d822016-04-07 17:23:58 +0100193 if (call->conn->security_ix)
David Howells17926a72007-04-26 15:48:28 -0700194 goto enqueue_packet;
195
196 sp->call = call;
197 rxrpc_get_call(call);
David Howells372ee162016-08-03 14:11:40 +0100198 atomic_inc(&call->skb_count);
David Howells50fd85a2016-08-09 11:30:43 +0100199 terminal = ((flags & RXRPC_LAST_PACKET) &&
200 !(flags & RXRPC_CLIENT_INITIATED));
David Howells17926a72007-04-26 15:48:28 -0700201 ret = rxrpc_queue_rcv_skb(call, skb, false, terminal);
202 if (ret < 0) {
203 if (ret == -ENOMEM || ret == -ENOBUFS) {
David S. Miller68c708f2007-04-26 20:20:21 -0700204 __clear_bit(ackbit, call->ackr_window);
David Howells17926a72007-04-26 15:48:28 -0700205 ack = RXRPC_ACK_NOSPACE;
206 goto discard_and_ack;
207 }
208 goto out;
209 }
210
211 skb = NULL;
David Howells50fd85a2016-08-09 11:30:43 +0100212 sp = NULL;
David Howells17926a72007-04-26 15:48:28 -0700213
214 _debug("post #%u", seq);
215 ASSERTCMP(call->rx_data_post, ==, seq);
216 call->rx_data_post++;
217
David Howells50fd85a2016-08-09 11:30:43 +0100218 if (flags & RXRPC_LAST_PACKET)
David Howells17926a72007-04-26 15:48:28 -0700219 set_bit(RXRPC_CALL_RCVD_LAST, &call->flags);
220
221 /* if we've reached an out of sequence packet then we need to drain
222 * that queue into the socket Rx queue now */
223 if (call->rx_data_post == call->rx_first_oos) {
224 _debug("drain rx oos now");
225 read_lock(&call->state_lock);
226 if (call->state < RXRPC_CALL_COMPLETE &&
David Howells4c198ad2016-03-04 15:53:46 +0000227 !test_and_set_bit(RXRPC_CALL_EV_DRAIN_RX_OOS, &call->events))
David Howells651350d2007-04-26 15:50:17 -0700228 rxrpc_queue_call(call);
David Howells17926a72007-04-26 15:48:28 -0700229 read_unlock(&call->state_lock);
230 }
231
232 spin_unlock(&call->lock);
233 atomic_inc(&call->ackr_not_idle);
David Howells50fd85a2016-08-09 11:30:43 +0100234 rxrpc_propose_ACK(call, RXRPC_ACK_DELAY, serial, false);
David Howells17926a72007-04-26 15:48:28 -0700235 _leave(" = 0 [posted]");
236 return 0;
237
238protocol_error:
239 ret = -EBADMSG;
240out:
241 spin_unlock(&call->lock);
242 _leave(" = %d", ret);
243 return ret;
244
245discard_and_ack:
246 _debug("discard and ACK packet %p", skb);
David Howells50fd85a2016-08-09 11:30:43 +0100247 __rxrpc_propose_ACK(call, ack, serial, true);
David Howells17926a72007-04-26 15:48:28 -0700248discard:
249 spin_unlock(&call->lock);
250 rxrpc_free_skb(skb);
251 _leave(" = 0 [discarded]");
252 return 0;
253
254enqueue_and_ack:
David Howells50fd85a2016-08-09 11:30:43 +0100255 __rxrpc_propose_ACK(call, ack, serial, true);
David Howells17926a72007-04-26 15:48:28 -0700256enqueue_packet:
257 _net("defer skb %p", skb);
258 spin_unlock(&call->lock);
259 skb_queue_tail(&call->rx_queue, skb);
260 atomic_inc(&call->ackr_not_idle);
261 read_lock(&call->state_lock);
262 if (call->state < RXRPC_CALL_DEAD)
David Howells651350d2007-04-26 15:50:17 -0700263 rxrpc_queue_call(call);
David Howells17926a72007-04-26 15:48:28 -0700264 read_unlock(&call->state_lock);
265 _leave(" = 0 [queued]");
266 return 0;
267}
268
269/*
270 * assume an implicit ACKALL of the transmission phase of a client socket upon
271 * reception of the first reply packet
272 */
273static void rxrpc_assume_implicit_ackall(struct rxrpc_call *call, u32 serial)
274{
275 write_lock_bh(&call->state_lock);
276
277 switch (call->state) {
278 case RXRPC_CALL_CLIENT_AWAIT_REPLY:
279 call->state = RXRPC_CALL_CLIENT_RECV_REPLY;
280 call->acks_latest = serial;
281
282 _debug("implicit ACKALL %%%u", call->acks_latest);
David Howells4c198ad2016-03-04 15:53:46 +0000283 set_bit(RXRPC_CALL_EV_RCVD_ACKALL, &call->events);
David Howells17926a72007-04-26 15:48:28 -0700284 write_unlock_bh(&call->state_lock);
285
286 if (try_to_del_timer_sync(&call->resend_timer) >= 0) {
David Howells4c198ad2016-03-04 15:53:46 +0000287 clear_bit(RXRPC_CALL_EV_RESEND_TIMER, &call->events);
288 clear_bit(RXRPC_CALL_EV_RESEND, &call->events);
David Howells17926a72007-04-26 15:48:28 -0700289 clear_bit(RXRPC_CALL_RUN_RTIMER, &call->flags);
290 }
291 break;
292
293 default:
294 write_unlock_bh(&call->state_lock);
295 break;
296 }
297}
298
299/*
300 * post an incoming packet to the nominated call to deal with
301 * - must get rid of the sk_buff, either by freeing it or by queuing it
302 */
303void rxrpc_fast_process_packet(struct rxrpc_call *call, struct sk_buff *skb)
304{
305 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
David Howells0d12f8a2016-03-04 15:53:46 +0000306 __be32 wtmp;
307 u32 hi_serial, abort_code;
David Howells17926a72007-04-26 15:48:28 -0700308
309 _enter("%p,%p", call, skb);
310
311 ASSERT(!irqs_disabled());
312
313#if 0 // INJECT RX ERROR
314 if (sp->hdr.type == RXRPC_PACKET_TYPE_DATA) {
315 static int skip = 0;
316 if (++skip == 3) {
317 printk("DROPPED 3RD PACKET!!!!!!!!!!!!!\n");
318 skip = 0;
319 goto free_packet;
320 }
321 }
322#endif
323
324 /* track the latest serial number on this connection for ACK packet
325 * information */
David Howells17926a72007-04-26 15:48:28 -0700326 hi_serial = atomic_read(&call->conn->hi_serial);
David Howells0d12f8a2016-03-04 15:53:46 +0000327 while (sp->hdr.serial > hi_serial)
David Howells17926a72007-04-26 15:48:28 -0700328 hi_serial = atomic_cmpxchg(&call->conn->hi_serial, hi_serial,
David Howells0d12f8a2016-03-04 15:53:46 +0000329 sp->hdr.serial);
David Howells17926a72007-04-26 15:48:28 -0700330
331 /* request ACK generation for any ACK or DATA packet that requests
332 * it */
333 if (sp->hdr.flags & RXRPC_REQUEST_ACK) {
David Howells0d12f8a2016-03-04 15:53:46 +0000334 _proto("ACK Requested on %%%u", sp->hdr.serial);
David Howells9823f392014-02-07 18:58:45 +0000335 rxrpc_propose_ACK(call, RXRPC_ACK_REQUESTED, sp->hdr.serial, false);
David Howells17926a72007-04-26 15:48:28 -0700336 }
337
338 switch (sp->hdr.type) {
339 case RXRPC_PACKET_TYPE_ABORT:
340 _debug("abort");
341
David Howells0d12f8a2016-03-04 15:53:46 +0000342 if (skb_copy_bits(skb, 0, &wtmp, sizeof(wtmp)) < 0)
David Howells17926a72007-04-26 15:48:28 -0700343 goto protocol_error;
344
David Howells0d12f8a2016-03-04 15:53:46 +0000345 abort_code = ntohl(wtmp);
346 _proto("Rx ABORT %%%u { %x }", sp->hdr.serial, abort_code);
David Howells17926a72007-04-26 15:48:28 -0700347
348 write_lock_bh(&call->state_lock);
349 if (call->state < RXRPC_CALL_COMPLETE) {
350 call->state = RXRPC_CALL_REMOTELY_ABORTED;
David Howellsdc44b3a2016-04-07 17:23:30 +0100351 call->remote_abort = abort_code;
David Howells4c198ad2016-03-04 15:53:46 +0000352 set_bit(RXRPC_CALL_EV_RCVD_ABORT, &call->events);
David Howells651350d2007-04-26 15:50:17 -0700353 rxrpc_queue_call(call);
David Howells17926a72007-04-26 15:48:28 -0700354 }
355 goto free_packet_unlock;
356
357 case RXRPC_PACKET_TYPE_BUSY:
David Howells0d12f8a2016-03-04 15:53:46 +0000358 _proto("Rx BUSY %%%u", sp->hdr.serial);
David Howells17926a72007-04-26 15:48:28 -0700359
David Howells19ffa012016-04-04 14:00:36 +0100360 if (rxrpc_conn_is_service(call->conn))
David Howells17926a72007-04-26 15:48:28 -0700361 goto protocol_error;
362
363 write_lock_bh(&call->state_lock);
364 switch (call->state) {
365 case RXRPC_CALL_CLIENT_SEND_REQUEST:
366 call->state = RXRPC_CALL_SERVER_BUSY;
David Howells4c198ad2016-03-04 15:53:46 +0000367 set_bit(RXRPC_CALL_EV_RCVD_BUSY, &call->events);
David Howells651350d2007-04-26 15:50:17 -0700368 rxrpc_queue_call(call);
David Howells17926a72007-04-26 15:48:28 -0700369 case RXRPC_CALL_SERVER_BUSY:
370 goto free_packet_unlock;
371 default:
372 goto protocol_error_locked;
373 }
374
375 default:
David Howells0d12f8a2016-03-04 15:53:46 +0000376 _proto("Rx %s %%%u", rxrpc_pkts[sp->hdr.type], sp->hdr.serial);
David Howells17926a72007-04-26 15:48:28 -0700377 goto protocol_error;
378
379 case RXRPC_PACKET_TYPE_DATA:
David Howells0d12f8a2016-03-04 15:53:46 +0000380 _proto("Rx DATA %%%u { #%u }", sp->hdr.serial, sp->hdr.seq);
David Howells17926a72007-04-26 15:48:28 -0700381
David Howells0d12f8a2016-03-04 15:53:46 +0000382 if (sp->hdr.seq == 0)
David Howells17926a72007-04-26 15:48:28 -0700383 goto protocol_error;
384
385 call->ackr_prev_seq = sp->hdr.seq;
386
387 /* received data implicitly ACKs all of the request packets we
388 * sent when we're acting as a client */
389 if (call->state == RXRPC_CALL_CLIENT_AWAIT_REPLY)
David Howells0d12f8a2016-03-04 15:53:46 +0000390 rxrpc_assume_implicit_ackall(call, sp->hdr.serial);
David Howells17926a72007-04-26 15:48:28 -0700391
David Howells0d12f8a2016-03-04 15:53:46 +0000392 switch (rxrpc_fast_process_data(call, skb, sp->hdr.seq)) {
David Howells17926a72007-04-26 15:48:28 -0700393 case 0:
394 skb = NULL;
395 goto done;
396
397 default:
398 BUG();
399
400 /* data packet received beyond the last packet */
401 case -EBADMSG:
402 goto protocol_error;
403 }
404
David Howells10003452011-02-28 03:27:43 +0000405 case RXRPC_PACKET_TYPE_ACKALL:
David Howells17926a72007-04-26 15:48:28 -0700406 case RXRPC_PACKET_TYPE_ACK:
407 /* ACK processing is done in process context */
408 read_lock_bh(&call->state_lock);
409 if (call->state < RXRPC_CALL_DEAD) {
410 skb_queue_tail(&call->rx_queue, skb);
David Howells651350d2007-04-26 15:50:17 -0700411 rxrpc_queue_call(call);
David Howells17926a72007-04-26 15:48:28 -0700412 skb = NULL;
413 }
414 read_unlock_bh(&call->state_lock);
415 goto free_packet;
416 }
417
418protocol_error:
419 _debug("protocol error");
420 write_lock_bh(&call->state_lock);
421protocol_error_locked:
422 if (call->state <= RXRPC_CALL_COMPLETE) {
423 call->state = RXRPC_CALL_LOCALLY_ABORTED;
David Howellsdc44b3a2016-04-07 17:23:30 +0100424 call->local_abort = RX_PROTOCOL_ERROR;
David Howells4c198ad2016-03-04 15:53:46 +0000425 set_bit(RXRPC_CALL_EV_ABORT, &call->events);
David Howells651350d2007-04-26 15:50:17 -0700426 rxrpc_queue_call(call);
David Howells17926a72007-04-26 15:48:28 -0700427 }
428free_packet_unlock:
429 write_unlock_bh(&call->state_lock);
430free_packet:
431 rxrpc_free_skb(skb);
432done:
433 _leave("");
434}
435
436/*
437 * split up a jumbo data packet
438 */
439static void rxrpc_process_jumbo_packet(struct rxrpc_call *call,
440 struct sk_buff *jumbo)
441{
442 struct rxrpc_jumbo_header jhdr;
443 struct rxrpc_skb_priv *sp;
444 struct sk_buff *part;
445
446 _enter(",{%u,%u}", jumbo->data_len, jumbo->len);
447
448 sp = rxrpc_skb(jumbo);
449
450 do {
451 sp->hdr.flags &= ~RXRPC_JUMBO_PACKET;
452
453 /* make a clone to represent the first subpacket in what's left
454 * of the jumbo packet */
455 part = skb_clone(jumbo, GFP_ATOMIC);
456 if (!part) {
457 /* simply ditch the tail in the event of ENOMEM */
458 pskb_trim(jumbo, RXRPC_JUMBO_DATALEN);
459 break;
460 }
461 rxrpc_new_skb(part);
462
463 pskb_trim(part, RXRPC_JUMBO_DATALEN);
464
465 if (!pskb_pull(jumbo, RXRPC_JUMBO_DATALEN))
466 goto protocol_error;
467
468 if (skb_copy_bits(jumbo, 0, &jhdr, sizeof(jhdr)) < 0)
469 goto protocol_error;
470 if (!pskb_pull(jumbo, sizeof(jhdr)))
471 BUG();
472
David Howells0d12f8a2016-03-04 15:53:46 +0000473 sp->hdr.seq += 1;
474 sp->hdr.serial += 1;
David Howells17926a72007-04-26 15:48:28 -0700475 sp->hdr.flags = jhdr.flags;
David Howellsac5d2682016-07-01 08:35:02 +0100476 sp->hdr._rsvd = ntohs(jhdr._rsvd);
David Howells17926a72007-04-26 15:48:28 -0700477
David Howells0d12f8a2016-03-04 15:53:46 +0000478 _proto("Rx DATA Jumbo %%%u", sp->hdr.serial - 1);
David Howells17926a72007-04-26 15:48:28 -0700479
480 rxrpc_fast_process_packet(call, part);
481 part = NULL;
482
483 } while (sp->hdr.flags & RXRPC_JUMBO_PACKET);
484
485 rxrpc_fast_process_packet(call, jumbo);
486 _leave("");
487 return;
488
489protocol_error:
490 _debug("protocol error");
491 rxrpc_free_skb(part);
492 rxrpc_free_skb(jumbo);
493 write_lock_bh(&call->state_lock);
494 if (call->state <= RXRPC_CALL_COMPLETE) {
495 call->state = RXRPC_CALL_LOCALLY_ABORTED;
David Howellsdc44b3a2016-04-07 17:23:30 +0100496 call->local_abort = RX_PROTOCOL_ERROR;
David Howells4c198ad2016-03-04 15:53:46 +0000497 set_bit(RXRPC_CALL_EV_ABORT, &call->events);
David Howells651350d2007-04-26 15:50:17 -0700498 rxrpc_queue_call(call);
David Howells17926a72007-04-26 15:48:28 -0700499 }
500 write_unlock_bh(&call->state_lock);
501 _leave("");
502}
503
504/*
505 * post an incoming packet to the appropriate call/socket to deal with
506 * - must get rid of the sk_buff, either by freeing it or by queuing it
507 */
Tim Smith77276402014-03-03 23:04:45 +0000508static void rxrpc_post_packet_to_call(struct rxrpc_call *call,
David Howells17926a72007-04-26 15:48:28 -0700509 struct sk_buff *skb)
510{
511 struct rxrpc_skb_priv *sp;
David Howells17926a72007-04-26 15:48:28 -0700512
Tim Smith77276402014-03-03 23:04:45 +0000513 _enter("%p,%p", call, skb);
David Howells17926a72007-04-26 15:48:28 -0700514
515 sp = rxrpc_skb(skb);
516
David Howells17926a72007-04-26 15:48:28 -0700517 _debug("extant call [%d]", call->state);
David Howells17926a72007-04-26 15:48:28 -0700518
519 read_lock(&call->state_lock);
520 switch (call->state) {
521 case RXRPC_CALL_LOCALLY_ABORTED:
David Howells4c198ad2016-03-04 15:53:46 +0000522 if (!test_and_set_bit(RXRPC_CALL_EV_ABORT, &call->events)) {
David Howells651350d2007-04-26 15:50:17 -0700523 rxrpc_queue_call(call);
Tim Smith77276402014-03-03 23:04:45 +0000524 goto free_unlock;
525 }
David Howells17926a72007-04-26 15:48:28 -0700526 case RXRPC_CALL_REMOTELY_ABORTED:
527 case RXRPC_CALL_NETWORK_ERROR:
528 case RXRPC_CALL_DEAD:
Tim Smith77276402014-03-03 23:04:45 +0000529 goto dead_call;
530 case RXRPC_CALL_COMPLETE:
531 case RXRPC_CALL_CLIENT_FINAL_ACK:
532 /* complete server call */
David Howells19ffa012016-04-04 14:00:36 +0100533 if (rxrpc_conn_is_service(call->conn))
Tim Smith77276402014-03-03 23:04:45 +0000534 goto dead_call;
535 /* resend last packet of a completed call */
536 _debug("final ack again");
537 rxrpc_get_call(call);
David Howells4c198ad2016-03-04 15:53:46 +0000538 set_bit(RXRPC_CALL_EV_ACK_FINAL, &call->events);
Tim Smith77276402014-03-03 23:04:45 +0000539 rxrpc_queue_call(call);
David Howells17926a72007-04-26 15:48:28 -0700540 goto free_unlock;
541 default:
542 break;
543 }
544
545 read_unlock(&call->state_lock);
546 rxrpc_get_call(call);
David Howells17926a72007-04-26 15:48:28 -0700547
548 if (sp->hdr.type == RXRPC_PACKET_TYPE_DATA &&
549 sp->hdr.flags & RXRPC_JUMBO_PACKET)
550 rxrpc_process_jumbo_packet(call, skb);
551 else
552 rxrpc_fast_process_packet(call, skb);
553
554 rxrpc_put_call(call);
555 goto done;
556
David Howells17926a72007-04-26 15:48:28 -0700557dead_call:
Tim Smithb6f3a402014-02-07 18:58:43 +0000558 if (sp->hdr.type != RXRPC_PACKET_TYPE_ABORT) {
559 skb->priority = RX_CALL_DEAD;
David Howells85f32272016-04-04 14:00:36 +0100560 rxrpc_reject_packet(call->conn->params.local, skb);
Tim Smith77276402014-03-03 23:04:45 +0000561 goto unlock;
Tim Smithb6f3a402014-02-07 18:58:43 +0000562 }
David Howells17926a72007-04-26 15:48:28 -0700563free_unlock:
David Howells17926a72007-04-26 15:48:28 -0700564 rxrpc_free_skb(skb);
Tim Smith77276402014-03-03 23:04:45 +0000565unlock:
566 read_unlock(&call->state_lock);
David Howells17926a72007-04-26 15:48:28 -0700567done:
568 _leave("");
569}
570
571/*
572 * post connection-level events to the connection
573 * - this includes challenges, responses and some aborts
574 */
David Howells2e7e9752016-08-09 10:11:48 +0100575static void rxrpc_post_packet_to_conn(struct rxrpc_connection *conn,
David Howells17926a72007-04-26 15:48:28 -0700576 struct sk_buff *skb)
577{
578 _enter("%p,%p", conn, skb);
579
David Howells17926a72007-04-26 15:48:28 -0700580 skb_queue_tail(&conn->rx_queue, skb);
David Howells2e7e9752016-08-09 10:11:48 +0100581 rxrpc_queue_conn(conn);
David Howells17926a72007-04-26 15:48:28 -0700582}
583
David Howells44ba0692015-04-01 16:31:26 +0100584/*
585 * post endpoint-level events to the local endpoint
586 * - this includes debug and version messages
587 */
588static void rxrpc_post_packet_to_local(struct rxrpc_local *local,
589 struct sk_buff *skb)
590{
591 _enter("%p,%p", local, skb);
592
David Howells44ba0692015-04-01 16:31:26 +0100593 skb_queue_tail(&local->event_queue, skb);
David Howells5acbee42016-06-27 10:32:02 +0100594 rxrpc_queue_local(local);
David Howells44ba0692015-04-01 16:31:26 +0100595}
596
David Howells0d12f8a2016-03-04 15:53:46 +0000597/*
598 * Extract the wire header from a packet and translate the byte order.
599 */
600static noinline
601int rxrpc_extract_header(struct rxrpc_skb_priv *sp, struct sk_buff *skb)
602{
603 struct rxrpc_wire_header whdr;
604
605 /* dig out the RxRPC connection details */
Willem de Bruijn4d0fc732016-04-07 11:44:59 -0400606 if (skb_copy_bits(skb, 0, &whdr, sizeof(whdr)) < 0)
David Howells0d12f8a2016-03-04 15:53:46 +0000607 return -EBADMSG;
Willem de Bruijn4d0fc732016-04-07 11:44:59 -0400608 if (!pskb_pull(skb, sizeof(whdr)))
David Howells0d12f8a2016-03-04 15:53:46 +0000609 BUG();
610
611 memset(sp, 0, sizeof(*sp));
612 sp->hdr.epoch = ntohl(whdr.epoch);
613 sp->hdr.cid = ntohl(whdr.cid);
614 sp->hdr.callNumber = ntohl(whdr.callNumber);
615 sp->hdr.seq = ntohl(whdr.seq);
616 sp->hdr.serial = ntohl(whdr.serial);
617 sp->hdr.flags = whdr.flags;
618 sp->hdr.type = whdr.type;
619 sp->hdr.userStatus = whdr.userStatus;
620 sp->hdr.securityIndex = whdr.securityIndex;
621 sp->hdr._rsvd = ntohs(whdr._rsvd);
622 sp->hdr.serviceId = ntohs(whdr.serviceId);
623 return 0;
624}
625
David Howells17926a72007-04-26 15:48:28 -0700626/*
627 * handle data received on the local endpoint
628 * - may be called in interrupt context
David Howells4f95dd72016-04-04 14:00:35 +0100629 *
630 * The socket is locked by the caller and this prevents the socket from being
631 * shut down and the local endpoint from going away, thus sk_user_data will not
632 * be cleared until this function returns.
David Howells17926a72007-04-26 15:48:28 -0700633 */
David S. Miller676d2362014-04-11 16:15:36 -0400634void rxrpc_data_ready(struct sock *sk)
David Howells17926a72007-04-26 15:48:28 -0700635{
David Howells8496af52016-07-01 07:51:50 +0100636 struct rxrpc_connection *conn;
David Howells17926a72007-04-26 15:48:28 -0700637 struct rxrpc_skb_priv *sp;
David Howells4f95dd72016-04-04 14:00:35 +0100638 struct rxrpc_local *local = sk->sk_user_data;
David Howells17926a72007-04-26 15:48:28 -0700639 struct sk_buff *skb;
640 int ret;
641
David S. Miller676d2362014-04-11 16:15:36 -0400642 _enter("%p", sk);
David Howells17926a72007-04-26 15:48:28 -0700643
644 ASSERT(!irqs_disabled());
645
David Howells17926a72007-04-26 15:48:28 -0700646 skb = skb_recv_datagram(sk, 0, 1, &ret);
647 if (!skb) {
David Howells17926a72007-04-26 15:48:28 -0700648 if (ret == -EAGAIN)
649 return;
650 _debug("UDP socket error %d", ret);
651 return;
652 }
653
654 rxrpc_new_skb(skb);
655
656 _net("recv skb %p", skb);
657
658 /* we'll probably need to checksum it (didn't call sock_recvmsg) */
659 if (skb_checksum_complete(skb)) {
660 rxrpc_free_skb(skb);
Eric Dumazet02c22342016-04-27 16:44:30 -0700661 __UDP_INC_STATS(&init_net, UDP_MIB_INERRORS, 0);
David Howells17926a72007-04-26 15:48:28 -0700662 _leave(" [CSUM failed]");
663 return;
664 }
665
Eric Dumazet02c22342016-04-27 16:44:30 -0700666 __UDP_INC_STATS(&init_net, UDP_MIB_INDATAGRAMS, 0);
Herbert Xu1781f7f2007-12-11 11:30:32 -0800667
David Howells0d12f8a2016-03-04 15:53:46 +0000668 /* The socket buffer we have is owned by UDP, with UDP's data all over
669 * it, but we really want our own data there.
670 */
David Howells17926a72007-04-26 15:48:28 -0700671 skb_orphan(skb);
672 sp = rxrpc_skb(skb);
David Howells17926a72007-04-26 15:48:28 -0700673
674 _net("Rx UDP packet from %08x:%04hu",
675 ntohl(ip_hdr(skb)->saddr), ntohs(udp_hdr(skb)->source));
676
677 /* dig out the RxRPC connection details */
David Howells0d12f8a2016-03-04 15:53:46 +0000678 if (rxrpc_extract_header(sp, skb) < 0)
David Howells17926a72007-04-26 15:48:28 -0700679 goto bad_message;
David Howells17926a72007-04-26 15:48:28 -0700680
681 _net("Rx RxRPC %s ep=%x call=%x:%x",
682 sp->hdr.flags & RXRPC_CLIENT_INITIATED ? "ToServer" : "ToClient",
David Howells0d12f8a2016-03-04 15:53:46 +0000683 sp->hdr.epoch, sp->hdr.cid, sp->hdr.callNumber);
David Howells17926a72007-04-26 15:48:28 -0700684
David Howells351c1e62016-03-04 15:56:06 +0000685 if (sp->hdr.type >= RXRPC_N_PACKET_TYPES ||
686 !((RXRPC_SUPPORTED_PACKET_TYPES >> sp->hdr.type) & 1)) {
David Howells17926a72007-04-26 15:48:28 -0700687 _proto("Rx Bad Packet Type %u", sp->hdr.type);
688 goto bad_message;
689 }
690
David Howells44ba0692015-04-01 16:31:26 +0100691 if (sp->hdr.type == RXRPC_PACKET_TYPE_VERSION) {
692 rxrpc_post_packet_to_local(local, skb);
693 goto out;
694 }
David Howellsbc6e1ea2016-06-10 22:30:27 +0100695
David Howells17926a72007-04-26 15:48:28 -0700696 if (sp->hdr.type == RXRPC_PACKET_TYPE_DATA &&
697 (sp->hdr.callNumber == 0 || sp->hdr.seq == 0))
698 goto bad_message;
699
David Howells8496af52016-07-01 07:51:50 +0100700 rcu_read_lock();
701
David Howells8496af52016-07-01 07:51:50 +0100702 conn = rxrpc_find_connection_rcu(local, skb);
703 if (!conn)
704 goto cant_route_call;
705
Tim Smith77276402014-03-03 23:04:45 +0000706 if (sp->hdr.callNumber == 0) {
David Howells8496af52016-07-01 07:51:50 +0100707 /* Connection-level packet */
Tim Smith77276402014-03-03 23:04:45 +0000708 _debug("CONN %p {%d}", conn, conn->debug_id);
David Howells2e7e9752016-08-09 10:11:48 +0100709 rxrpc_post_packet_to_conn(conn, skb);
Tim Smith77276402014-03-03 23:04:45 +0000710 } else {
David Howells8496af52016-07-01 07:51:50 +0100711 /* Call-bound packets are routed by connection channel. */
712 unsigned int channel = sp->hdr.cid & RXRPC_CHANNELMASK;
713 struct rxrpc_channel *chan = &conn->channels[channel];
714 struct rxrpc_call *call = rcu_dereference(chan->call);
Tim Smith77276402014-03-03 23:04:45 +0000715
David Howells8496af52016-07-01 07:51:50 +0100716 if (!call || atomic_read(&call->usage) == 0)
Tim Smith77276402014-03-03 23:04:45 +0000717 goto cant_route_call;
David Howells8496af52016-07-01 07:51:50 +0100718
719 rxrpc_post_packet_to_call(call, skb);
Tim Smith77276402014-03-03 23:04:45 +0000720 }
David Howells44ba0692015-04-01 16:31:26 +0100721
David Howells8496af52016-07-01 07:51:50 +0100722 rcu_read_unlock();
David Howells44ba0692015-04-01 16:31:26 +0100723out:
David Howells17926a72007-04-26 15:48:28 -0700724 return;
725
726cant_route_call:
David Howells8496af52016-07-01 07:51:50 +0100727 rcu_read_unlock();
728
David Howells17926a72007-04-26 15:48:28 -0700729 _debug("can't route call");
730 if (sp->hdr.flags & RXRPC_CLIENT_INITIATED &&
731 sp->hdr.type == RXRPC_PACKET_TYPE_DATA) {
David Howells0d12f8a2016-03-04 15:53:46 +0000732 if (sp->hdr.seq == 1) {
David Howells17926a72007-04-26 15:48:28 -0700733 _debug("first packet");
734 skb_queue_tail(&local->accept_queue, skb);
David Howells4f95dd72016-04-04 14:00:35 +0100735 rxrpc_queue_work(&local->processor);
David Howells17926a72007-04-26 15:48:28 -0700736 _leave(" [incoming]");
737 return;
738 }
739 skb->priority = RX_INVALID_OPERATION;
740 } else {
741 skb->priority = RX_CALL_DEAD;
742 }
743
Tim Smithb6f3a402014-02-07 18:58:43 +0000744 if (sp->hdr.type != RXRPC_PACKET_TYPE_ABORT) {
745 _debug("reject type %d",sp->hdr.type);
746 rxrpc_reject_packet(local, skb);
David Howells992c2732016-08-09 16:58:42 +0100747 } else {
748 rxrpc_free_skb(skb);
Tim Smithb6f3a402014-02-07 18:58:43 +0000749 }
David Howells17926a72007-04-26 15:48:28 -0700750 _leave(" [no call]");
751 return;
752
753bad_message:
754 skb->priority = RX_PROTOCOL_ERROR;
755 rxrpc_reject_packet(local, skb);
David Howells17926a72007-04-26 15:48:28 -0700756 _leave(" [badmsg]");
757}