blob: b1dfae1074310299fb92a205483ba9437d639af2 [file] [log] [blame]
David Howells17926a72007-04-26 15:48:28 -07001/* connection-level event handling
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>
David Howells17926a72007-04-26 15:48:28 -070018#include <net/sock.h>
19#include <net/af_rxrpc.h>
20#include <net/ip.h>
21#include "ar-internal.h"
22
23/*
David Howells18bfeba2016-08-23 15:27:25 +010024 * Retransmit terminal ACK or ABORT of the previous call.
25 */
David Howellsf5c17aa2016-08-30 09:49:28 +010026static void rxrpc_conn_retransmit_call(struct rxrpc_connection *conn,
David Howells3136ef42017-11-24 10:18:41 +000027 struct sk_buff *skb,
28 unsigned int channel)
David Howells18bfeba2016-08-23 15:27:25 +010029{
David Howells3136ef42017-11-24 10:18:41 +000030 struct rxrpc_skb_priv *sp = skb ? rxrpc_skb(skb) : NULL;
David Howells18bfeba2016-08-23 15:27:25 +010031 struct rxrpc_channel *chan;
32 struct msghdr msg;
David Howells5fc62f62017-11-29 14:40:41 +000033 struct kvec iov[3];
David Howells18bfeba2016-08-23 15:27:25 +010034 struct {
35 struct rxrpc_wire_header whdr;
36 union {
David Howells5fc62f62017-11-29 14:40:41 +000037 __be32 abort_code;
38 struct rxrpc_ackpacket ack;
David Howells18bfeba2016-08-23 15:27:25 +010039 };
40 } __attribute__((packed)) pkt;
David Howells5fc62f62017-11-29 14:40:41 +000041 struct rxrpc_ackinfo ack_info;
David Howells18bfeba2016-08-23 15:27:25 +010042 size_t len;
David Howells5fc62f62017-11-29 14:40:41 +000043 int ioc;
44 u32 serial, mtu, call_id, padding;
David Howells18bfeba2016-08-23 15:27:25 +010045
46 _enter("%d", conn->debug_id);
47
David Howells3136ef42017-11-24 10:18:41 +000048 chan = &conn->channels[channel];
David Howells18bfeba2016-08-23 15:27:25 +010049
50 /* If the last call got moved on whilst we were waiting to run, just
51 * ignore this packet.
52 */
53 call_id = READ_ONCE(chan->last_call);
54 /* Sync with __rxrpc_disconnect_call() */
55 smp_rmb();
David Howells3136ef42017-11-24 10:18:41 +000056 if (skb && call_id != sp->hdr.callNumber)
David Howells18bfeba2016-08-23 15:27:25 +010057 return;
58
59 msg.msg_name = &conn->params.peer->srx.transport;
60 msg.msg_namelen = conn->params.peer->srx.transport_len;
61 msg.msg_control = NULL;
62 msg.msg_controllen = 0;
63 msg.msg_flags = 0;
64
David Howells5fc62f62017-11-29 14:40:41 +000065 iov[0].iov_base = &pkt;
66 iov[0].iov_len = sizeof(pkt.whdr);
67 iov[1].iov_base = &padding;
68 iov[1].iov_len = 3;
69 iov[2].iov_base = &ack_info;
70 iov[2].iov_len = sizeof(ack_info);
71
David Howells3136ef42017-11-24 10:18:41 +000072 pkt.whdr.epoch = htonl(conn->proto.epoch);
73 pkt.whdr.cid = htonl(conn->proto.cid);
74 pkt.whdr.callNumber = htonl(call_id);
David Howells18bfeba2016-08-23 15:27:25 +010075 pkt.whdr.seq = 0;
76 pkt.whdr.type = chan->last_type;
77 pkt.whdr.flags = conn->out_clientflag;
78 pkt.whdr.userStatus = 0;
79 pkt.whdr.securityIndex = conn->security_ix;
80 pkt.whdr._rsvd = 0;
David Howells68d6d1a2017-06-05 14:30:49 +010081 pkt.whdr.serviceId = htons(conn->service_id);
David Howells18bfeba2016-08-23 15:27:25 +010082
83 len = sizeof(pkt.whdr);
84 switch (chan->last_type) {
85 case RXRPC_PACKET_TYPE_ABORT:
David Howells5fc62f62017-11-29 14:40:41 +000086 pkt.abort_code = htonl(chan->last_abort);
87 iov[0].iov_len += sizeof(pkt.abort_code);
88 len += sizeof(pkt.abort_code);
89 ioc = 1;
David Howells18bfeba2016-08-23 15:27:25 +010090 break;
91
92 case RXRPC_PACKET_TYPE_ACK:
93 mtu = conn->params.peer->if_mtu;
94 mtu -= conn->params.peer->hdrsize;
95 pkt.ack.bufferSpace = 0;
David Howells3136ef42017-11-24 10:18:41 +000096 pkt.ack.maxSkew = htons(skb ? skb->priority : 0);
97 pkt.ack.firstPacket = htonl(chan->last_seq + 1);
98 pkt.ack.previousPacket = htonl(chan->last_seq);
99 pkt.ack.serial = htonl(skb ? sp->hdr.serial : 0);
100 pkt.ack.reason = skb ? RXRPC_ACK_DUPLICATE : RXRPC_ACK_IDLE;
David Howells18bfeba2016-08-23 15:27:25 +0100101 pkt.ack.nAcks = 0;
David Howells5fc62f62017-11-29 14:40:41 +0000102 ack_info.rxMTU = htonl(rxrpc_rx_mtu);
103 ack_info.maxMTU = htonl(mtu);
104 ack_info.rwind = htonl(rxrpc_rx_window_size);
105 ack_info.jumbo_max = htonl(rxrpc_rx_jumbo_max);
David Howells57494342016-09-24 18:05:27 +0100106 pkt.whdr.flags |= RXRPC_SLOW_START_OK;
David Howells5fc62f62017-11-29 14:40:41 +0000107 padding = 0;
108 iov[0].iov_len += sizeof(pkt.ack);
109 len += sizeof(pkt.ack) + 3 + sizeof(ack_info);
110 ioc = 3;
David Howells18bfeba2016-08-23 15:27:25 +0100111 break;
David Howells5fc62f62017-11-29 14:40:41 +0000112
113 default:
114 return;
David Howells18bfeba2016-08-23 15:27:25 +0100115 }
116
117 /* Resync with __rxrpc_disconnect_call() and check that the last call
118 * didn't get advanced whilst we were filling out the packets.
119 */
120 smp_rmb();
121 if (READ_ONCE(chan->last_call) != call_id)
122 return;
123
David Howells18bfeba2016-08-23 15:27:25 +0100124 serial = atomic_inc_return(&conn->serial);
125 pkt.whdr.serial = htonl(serial);
126
127 switch (chan->last_type) {
128 case RXRPC_PACKET_TYPE_ABORT:
129 _proto("Tx ABORT %%%u { %d } [re]", serial, conn->local_abort);
130 break;
131 case RXRPC_PACKET_TYPE_ACK:
David Howellsbe832ae2016-09-23 12:39:22 +0100132 trace_rxrpc_tx_ack(NULL, serial, chan->last_seq, 0,
133 RXRPC_ACK_DUPLICATE, 0);
David Howells18bfeba2016-08-23 15:27:25 +0100134 _proto("Tx ACK %%%u [re]", serial);
135 break;
136 }
137
David Howells5fc62f62017-11-29 14:40:41 +0000138 kernel_sendmsg(conn->params.local->socket, &msg, iov, ioc, len);
David Howells18bfeba2016-08-23 15:27:25 +0100139 _leave("");
140 return;
141}
142
143/*
David Howells17926a72007-04-26 15:48:28 -0700144 * pass a connection-level abort onto all calls on that connection
145 */
David Howellsf5c17aa2016-08-30 09:49:28 +0100146static void rxrpc_abort_calls(struct rxrpc_connection *conn,
147 enum rxrpc_call_completion compl,
148 u32 abort_code, int error)
David Howells17926a72007-04-26 15:48:28 -0700149{
150 struct rxrpc_call *call;
David Howells248f2192016-09-08 11:10:12 +0100151 int i;
David Howells17926a72007-04-26 15:48:28 -0700152
153 _enter("{%d},%x", conn->debug_id, abort_code);
154
David Howellsa1399f82016-06-27 14:39:44 +0100155 spin_lock(&conn->channel_lock);
David Howells17926a72007-04-26 15:48:28 -0700156
David Howellsa1399f82016-06-27 14:39:44 +0100157 for (i = 0; i < RXRPC_MAXCALLS; i++) {
158 call = rcu_dereference_protected(
159 conn->channels[i].call,
160 lockdep_is_held(&conn->channel_lock));
David Howellsccbd3db2016-08-30 09:49:28 +0100161 if (call) {
David Howells5a429762016-09-06 22:19:51 +0100162 if (compl == RXRPC_CALL_LOCALLY_ABORTED)
163 trace_rxrpc_abort("CON", call->cid,
164 call->call_id, 0,
165 abort_code, error);
David Howells248f2192016-09-08 11:10:12 +0100166 if (rxrpc_set_call_completion(call, compl,
167 abort_code, error))
168 rxrpc_notify_socket(call);
David Howells17926a72007-04-26 15:48:28 -0700169 }
David Howells17926a72007-04-26 15:48:28 -0700170 }
171
David Howellsa1399f82016-06-27 14:39:44 +0100172 spin_unlock(&conn->channel_lock);
David Howells17926a72007-04-26 15:48:28 -0700173 _leave("");
174}
175
176/*
177 * generate a connection-level abort
178 */
179static int rxrpc_abort_connection(struct rxrpc_connection *conn,
David Howells3a927892017-04-06 10:11:56 +0100180 int error, u32 abort_code)
David Howells17926a72007-04-26 15:48:28 -0700181{
David Howells0d12f8a2016-03-04 15:53:46 +0000182 struct rxrpc_wire_header whdr;
David Howells17926a72007-04-26 15:48:28 -0700183 struct msghdr msg;
184 struct kvec iov[2];
185 __be32 word;
186 size_t len;
David Howells0d12f8a2016-03-04 15:53:46 +0000187 u32 serial;
David Howells17926a72007-04-26 15:48:28 -0700188 int ret;
189
190 _enter("%d,,%u,%u", conn->debug_id, error, abort_code);
191
192 /* generate a connection-level abort */
193 spin_lock_bh(&conn->state_lock);
David Howellsf5c17aa2016-08-30 09:49:28 +0100194 if (conn->state >= RXRPC_CONN_REMOTELY_ABORTED) {
David Howells17926a72007-04-26 15:48:28 -0700195 spin_unlock_bh(&conn->state_lock);
196 _leave(" = 0 [already dead]");
197 return 0;
198 }
199
David Howellsf5c17aa2016-08-30 09:49:28 +0100200 conn->state = RXRPC_CONN_LOCALLY_ABORTED;
201 spin_unlock_bh(&conn->state_lock);
202
203 rxrpc_abort_calls(conn, RXRPC_CALL_LOCALLY_ABORTED, abort_code, error);
David Howells17926a72007-04-26 15:48:28 -0700204
David Howells85f32272016-04-04 14:00:36 +0100205 msg.msg_name = &conn->params.peer->srx.transport;
206 msg.msg_namelen = conn->params.peer->srx.transport_len;
David Howells17926a72007-04-26 15:48:28 -0700207 msg.msg_control = NULL;
208 msg.msg_controllen = 0;
209 msg.msg_flags = 0;
210
David Howells19ffa012016-04-04 14:00:36 +0100211 whdr.epoch = htonl(conn->proto.epoch);
212 whdr.cid = htonl(conn->proto.cid);
David Howells0d12f8a2016-03-04 15:53:46 +0000213 whdr.callNumber = 0;
214 whdr.seq = 0;
215 whdr.type = RXRPC_PACKET_TYPE_ABORT;
216 whdr.flags = conn->out_clientflag;
217 whdr.userStatus = 0;
218 whdr.securityIndex = conn->security_ix;
219 whdr._rsvd = 0;
David Howells68d6d1a2017-06-05 14:30:49 +0100220 whdr.serviceId = htons(conn->service_id);
David Howells17926a72007-04-26 15:48:28 -0700221
David Howellsdc44b3a2016-04-07 17:23:30 +0100222 word = htonl(conn->local_abort);
David Howells17926a72007-04-26 15:48:28 -0700223
David Howells0d12f8a2016-03-04 15:53:46 +0000224 iov[0].iov_base = &whdr;
225 iov[0].iov_len = sizeof(whdr);
David Howells17926a72007-04-26 15:48:28 -0700226 iov[1].iov_base = &word;
227 iov[1].iov_len = sizeof(word);
228
229 len = iov[0].iov_len + iov[1].iov_len;
230
David Howells0d12f8a2016-03-04 15:53:46 +0000231 serial = atomic_inc_return(&conn->serial);
232 whdr.serial = htonl(serial);
David Howellsdc44b3a2016-04-07 17:23:30 +0100233 _proto("Tx CONN ABORT %%%u { %d }", serial, conn->local_abort);
David Howells17926a72007-04-26 15:48:28 -0700234
David Howells85f32272016-04-04 14:00:36 +0100235 ret = kernel_sendmsg(conn->params.local->socket, &msg, iov, 2, len);
David Howells17926a72007-04-26 15:48:28 -0700236 if (ret < 0) {
237 _debug("sendmsg failed: %d", ret);
238 return -EAGAIN;
239 }
240
241 _leave(" = 0");
242 return 0;
243}
244
245/*
246 * mark a call as being on a now-secured channel
David Howells248f2192016-09-08 11:10:12 +0100247 * - must be called with BH's disabled.
David Howells17926a72007-04-26 15:48:28 -0700248 */
Roel Kluin5eaa65b2008-12-10 15:18:31 -0800249static void rxrpc_call_is_secure(struct rxrpc_call *call)
David Howells17926a72007-04-26 15:48:28 -0700250{
251 _enter("%p", call);
252 if (call) {
David Howells248f2192016-09-08 11:10:12 +0100253 write_lock_bh(&call->state_lock);
254 if (call->state == RXRPC_CALL_SERVER_SECURING) {
255 call->state = RXRPC_CALL_SERVER_ACCEPTING;
256 rxrpc_notify_socket(call);
257 }
258 write_unlock_bh(&call->state_lock);
David Howells17926a72007-04-26 15:48:28 -0700259 }
260}
261
262/*
263 * connection-level Rx packet processor
264 */
265static int rxrpc_process_event(struct rxrpc_connection *conn,
266 struct sk_buff *skb,
267 u32 *_abort_code)
268{
269 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
David Howells0d12f8a2016-03-04 15:53:46 +0000270 __be32 wtmp;
271 u32 abort_code;
David Howells17926a72007-04-26 15:48:28 -0700272 int loop, ret;
273
David Howells519d2562009-06-16 21:36:44 +0100274 if (conn->state >= RXRPC_CONN_REMOTELY_ABORTED) {
David Howells248f2192016-09-08 11:10:12 +0100275 _leave(" = -ECONNABORTED [%u]", conn->state);
David Howells17926a72007-04-26 15:48:28 -0700276 return -ECONNABORTED;
David Howells519d2562009-06-16 21:36:44 +0100277 }
David Howells17926a72007-04-26 15:48:28 -0700278
David Howells0d12f8a2016-03-04 15:53:46 +0000279 _enter("{%d},{%u,%%%u},", conn->debug_id, sp->hdr.type, sp->hdr.serial);
David Howells519d2562009-06-16 21:36:44 +0100280
David Howells17926a72007-04-26 15:48:28 -0700281 switch (sp->hdr.type) {
David Howells18bfeba2016-08-23 15:27:25 +0100282 case RXRPC_PACKET_TYPE_DATA:
283 case RXRPC_PACKET_TYPE_ACK:
David Howells3136ef42017-11-24 10:18:41 +0000284 rxrpc_conn_retransmit_call(conn, skb,
285 sp->hdr.cid & RXRPC_CHANNELMASK);
David Howells18bfeba2016-08-23 15:27:25 +0100286 return 0;
287
David Howells4d4a6ac2017-03-16 16:27:10 +0000288 case RXRPC_PACKET_TYPE_BUSY:
289 /* Just ignore BUSY packets for now. */
290 return 0;
291
David Howells17926a72007-04-26 15:48:28 -0700292 case RXRPC_PACKET_TYPE_ABORT:
David Howells775e5b72016-09-30 13:26:03 +0100293 if (skb_copy_bits(skb, sizeof(struct rxrpc_wire_header),
David Howellsfb46f6e2017-04-06 10:12:00 +0100294 &wtmp, sizeof(wtmp)) < 0) {
295 trace_rxrpc_rx_eproto(NULL, sp->hdr.serial,
296 tracepoint_string("bad_abort"));
David Howells17926a72007-04-26 15:48:28 -0700297 return -EPROTO;
David Howellsfb46f6e2017-04-06 10:12:00 +0100298 }
David Howells0d12f8a2016-03-04 15:53:46 +0000299 abort_code = ntohl(wtmp);
300 _proto("Rx ABORT %%%u { ac=%d }", sp->hdr.serial, abort_code);
David Howells17926a72007-04-26 15:48:28 -0700301
302 conn->state = RXRPC_CONN_REMOTELY_ABORTED;
David Howells248f2192016-09-08 11:10:12 +0100303 rxrpc_abort_calls(conn, RXRPC_CALL_REMOTELY_ABORTED,
David Howells3a927892017-04-06 10:11:56 +0100304 abort_code, -ECONNABORTED);
David Howells17926a72007-04-26 15:48:28 -0700305 return -ECONNABORTED;
306
307 case RXRPC_PACKET_TYPE_CHALLENGE:
David Howellse0e4d822016-04-07 17:23:58 +0100308 return conn->security->respond_to_challenge(conn, skb,
309 _abort_code);
David Howells17926a72007-04-26 15:48:28 -0700310
311 case RXRPC_PACKET_TYPE_RESPONSE:
David Howells17926a72007-04-26 15:48:28 -0700312 ret = conn->security->verify_response(conn, skb, _abort_code);
313 if (ret < 0)
314 return ret;
315
316 ret = conn->security->init_connection_security(conn);
317 if (ret < 0)
318 return ret;
319
Herbert Xua2636292016-06-26 14:55:24 -0700320 ret = conn->security->prime_packet_security(conn);
321 if (ret < 0)
322 return ret;
323
David Howellsa1399f82016-06-27 14:39:44 +0100324 spin_lock(&conn->channel_lock);
David Howells17926a72007-04-26 15:48:28 -0700325 spin_lock(&conn->state_lock);
326
David Howellsbba304d2016-06-27 10:32:02 +0100327 if (conn->state == RXRPC_CONN_SERVICE_CHALLENGING) {
328 conn->state = RXRPC_CONN_SERVICE;
David Howells248f2192016-09-08 11:10:12 +0100329 spin_unlock(&conn->state_lock);
David Howells17926a72007-04-26 15:48:28 -0700330 for (loop = 0; loop < RXRPC_MAXCALLS; loop++)
David Howellsdee46362016-06-27 17:11:19 +0100331 rxrpc_call_is_secure(
332 rcu_dereference_protected(
David Howellsa1399f82016-06-27 14:39:44 +0100333 conn->channels[loop].call,
334 lockdep_is_held(&conn->channel_lock)));
David Howells248f2192016-09-08 11:10:12 +0100335 } else {
336 spin_unlock(&conn->state_lock);
David Howells17926a72007-04-26 15:48:28 -0700337 }
338
David Howellsa1399f82016-06-27 14:39:44 +0100339 spin_unlock(&conn->channel_lock);
David Howells17926a72007-04-26 15:48:28 -0700340 return 0;
341
342 default:
David Howellsfb46f6e2017-04-06 10:12:00 +0100343 trace_rxrpc_rx_eproto(NULL, sp->hdr.serial,
344 tracepoint_string("bad_conn_pkt"));
David Howells17926a72007-04-26 15:48:28 -0700345 return -EPROTO;
346 }
347}
348
349/*
350 * set up security and issue a challenge
351 */
352static void rxrpc_secure_connection(struct rxrpc_connection *conn)
353{
354 u32 abort_code;
355 int ret;
356
357 _enter("{%d}", conn->debug_id);
358
359 ASSERT(conn->security_ix != 0);
360
David Howells19ffa012016-04-04 14:00:36 +0100361 if (!conn->params.key) {
David Howells17926a72007-04-26 15:48:28 -0700362 _debug("set up security");
363 ret = rxrpc_init_server_conn_security(conn);
364 switch (ret) {
365 case 0:
366 break;
367 case -ENOENT:
368 abort_code = RX_CALL_DEAD;
369 goto abort;
370 default:
371 abort_code = RXKADNOAUTH;
372 goto abort;
373 }
374 }
375
David Howells17926a72007-04-26 15:48:28 -0700376 if (conn->security->issue_challenge(conn) < 0) {
377 abort_code = RX_CALL_DEAD;
378 ret = -ENOMEM;
379 goto abort;
380 }
381
382 _leave("");
383 return;
384
385abort:
386 _debug("abort %d, %d", ret, abort_code);
David Howells3a927892017-04-06 10:11:56 +0100387 rxrpc_abort_connection(conn, ret, abort_code);
David Howells17926a72007-04-26 15:48:28 -0700388 _leave(" [aborted]");
389}
390
391/*
David Howells3136ef42017-11-24 10:18:41 +0000392 * Process delayed final ACKs that we haven't subsumed into a subsequent call.
393 */
394static void rxrpc_process_delayed_final_acks(struct rxrpc_connection *conn)
395{
396 unsigned long j = jiffies, next_j;
397 unsigned int channel;
398 bool set;
399
400again:
401 next_j = j + LONG_MAX;
402 set = false;
403 for (channel = 0; channel < RXRPC_MAXCALLS; channel++) {
404 struct rxrpc_channel *chan = &conn->channels[channel];
405 unsigned long ack_at;
406
407 if (!test_bit(RXRPC_CONN_FINAL_ACK_0 + channel, &conn->flags))
408 continue;
409
410 smp_rmb(); /* vs rxrpc_disconnect_client_call */
411 ack_at = READ_ONCE(chan->final_ack_at);
412
413 if (time_before(j, ack_at)) {
414 if (time_before(ack_at, next_j)) {
415 next_j = ack_at;
416 set = true;
417 }
418 continue;
419 }
420
421 if (test_and_clear_bit(RXRPC_CONN_FINAL_ACK_0 + channel,
422 &conn->flags))
423 rxrpc_conn_retransmit_call(conn, NULL, channel);
424 }
425
426 j = jiffies;
427 if (time_before_eq(next_j, j))
428 goto again;
429 if (set)
430 rxrpc_reduce_conn_timer(conn, next_j);
431}
432
433/*
David Howells17926a72007-04-26 15:48:28 -0700434 * connection-level event processor
435 */
436void rxrpc_process_connection(struct work_struct *work)
437{
438 struct rxrpc_connection *conn =
439 container_of(work, struct rxrpc_connection, processor);
David Howells17926a72007-04-26 15:48:28 -0700440 struct sk_buff *skb;
441 u32 abort_code = RX_PROTOCOL_ERROR;
442 int ret;
443
David Howells363deea2016-09-17 10:49:14 +0100444 rxrpc_see_connection(conn);
David Howells17926a72007-04-26 15:48:28 -0700445
David Howells2c4579e2016-06-27 10:32:03 +0100446 if (test_and_clear_bit(RXRPC_CONN_EV_CHALLENGE, &conn->events))
David Howells17926a72007-04-26 15:48:28 -0700447 rxrpc_secure_connection(conn);
David Howells17926a72007-04-26 15:48:28 -0700448
David Howells3136ef42017-11-24 10:18:41 +0000449 /* Process delayed ACKs whose time has come. */
450 if (conn->flags & RXRPC_CONN_FINAL_ACK_MASK)
451 rxrpc_process_delayed_final_acks(conn);
452
David Howells17926a72007-04-26 15:48:28 -0700453 /* go through the conn-level event packets, releasing the ref on this
454 * connection that each one has when we've finished with it */
455 while ((skb = skb_dequeue(&conn->rx_queue))) {
David Howells71f3ca42016-09-17 10:49:14 +0100456 rxrpc_see_skb(skb, rxrpc_skb_rx_seen);
David Howells17926a72007-04-26 15:48:28 -0700457 ret = rxrpc_process_event(conn, skb, &abort_code);
458 switch (ret) {
459 case -EPROTO:
460 case -EKEYEXPIRED:
461 case -EKEYREJECTED:
462 goto protocol_error;
David Howells8c2f8262018-02-08 15:59:07 +0000463 case -ENOMEM:
David Howells17926a72007-04-26 15:48:28 -0700464 case -EAGAIN:
465 goto requeue_and_leave;
466 case -ECONNABORTED:
467 default:
David Howells71f3ca42016-09-17 10:49:14 +0100468 rxrpc_free_skb(skb, rxrpc_skb_rx_freed);
David Howells17926a72007-04-26 15:48:28 -0700469 break;
470 }
471 }
472
473out:
474 rxrpc_put_connection(conn);
475 _leave("");
476 return;
477
478requeue_and_leave:
479 skb_queue_head(&conn->rx_queue, skb);
480 goto out;
481
482protocol_error:
David Howells3a927892017-04-06 10:11:56 +0100483 if (rxrpc_abort_connection(conn, ret, abort_code) < 0)
David Howells17926a72007-04-26 15:48:28 -0700484 goto requeue_and_leave;
David Howells71f3ca42016-09-17 10:49:14 +0100485 rxrpc_free_skb(skb, rxrpc_skb_rx_freed);
David Howells17926a72007-04-26 15:48:28 -0700486 goto out;
487}