blob: c717152070dff2906d15aa53bd1c488bd42cf2c8 [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 Howellsace45be2018-03-30 21:04:43 +0100139 conn->params.peer->last_tx_at = ktime_get_real();
David Howells18bfeba2016-08-23 15:27:25 +0100140 _leave("");
141 return;
142}
143
144/*
David Howells17926a72007-04-26 15:48:28 -0700145 * pass a connection-level abort onto all calls on that connection
146 */
David Howellsf5c17aa2016-08-30 09:49:28 +0100147static void rxrpc_abort_calls(struct rxrpc_connection *conn,
148 enum rxrpc_call_completion compl,
149 u32 abort_code, int error)
David Howells17926a72007-04-26 15:48:28 -0700150{
151 struct rxrpc_call *call;
David Howells248f2192016-09-08 11:10:12 +0100152 int i;
David Howells17926a72007-04-26 15:48:28 -0700153
154 _enter("{%d},%x", conn->debug_id, abort_code);
155
David Howellsa1399f82016-06-27 14:39:44 +0100156 spin_lock(&conn->channel_lock);
David Howells17926a72007-04-26 15:48:28 -0700157
David Howellsa1399f82016-06-27 14:39:44 +0100158 for (i = 0; i < RXRPC_MAXCALLS; i++) {
159 call = rcu_dereference_protected(
160 conn->channels[i].call,
161 lockdep_is_held(&conn->channel_lock));
David Howellsccbd3db2016-08-30 09:49:28 +0100162 if (call) {
David Howells5a429762016-09-06 22:19:51 +0100163 if (compl == RXRPC_CALL_LOCALLY_ABORTED)
David Howellsa25e21f2018-03-27 23:03:00 +0100164 trace_rxrpc_abort(call->debug_id,
165 "CON", call->cid,
David Howells5a429762016-09-06 22:19:51 +0100166 call->call_id, 0,
167 abort_code, error);
David Howells248f2192016-09-08 11:10:12 +0100168 if (rxrpc_set_call_completion(call, compl,
169 abort_code, error))
170 rxrpc_notify_socket(call);
David Howells17926a72007-04-26 15:48:28 -0700171 }
David Howells17926a72007-04-26 15:48:28 -0700172 }
173
David Howellsa1399f82016-06-27 14:39:44 +0100174 spin_unlock(&conn->channel_lock);
David Howells17926a72007-04-26 15:48:28 -0700175 _leave("");
176}
177
178/*
179 * generate a connection-level abort
180 */
181static int rxrpc_abort_connection(struct rxrpc_connection *conn,
David Howells3a927892017-04-06 10:11:56 +0100182 int error, u32 abort_code)
David Howells17926a72007-04-26 15:48:28 -0700183{
David Howells0d12f8a2016-03-04 15:53:46 +0000184 struct rxrpc_wire_header whdr;
David Howells17926a72007-04-26 15:48:28 -0700185 struct msghdr msg;
186 struct kvec iov[2];
187 __be32 word;
188 size_t len;
David Howells0d12f8a2016-03-04 15:53:46 +0000189 u32 serial;
David Howells17926a72007-04-26 15:48:28 -0700190 int ret;
191
192 _enter("%d,,%u,%u", conn->debug_id, error, abort_code);
193
194 /* generate a connection-level abort */
195 spin_lock_bh(&conn->state_lock);
David Howellsf5c17aa2016-08-30 09:49:28 +0100196 if (conn->state >= RXRPC_CONN_REMOTELY_ABORTED) {
David Howells17926a72007-04-26 15:48:28 -0700197 spin_unlock_bh(&conn->state_lock);
198 _leave(" = 0 [already dead]");
199 return 0;
200 }
201
David Howellsf5c17aa2016-08-30 09:49:28 +0100202 conn->state = RXRPC_CONN_LOCALLY_ABORTED;
203 spin_unlock_bh(&conn->state_lock);
204
205 rxrpc_abort_calls(conn, RXRPC_CALL_LOCALLY_ABORTED, abort_code, error);
David Howells17926a72007-04-26 15:48:28 -0700206
David Howells85f32272016-04-04 14:00:36 +0100207 msg.msg_name = &conn->params.peer->srx.transport;
208 msg.msg_namelen = conn->params.peer->srx.transport_len;
David Howells17926a72007-04-26 15:48:28 -0700209 msg.msg_control = NULL;
210 msg.msg_controllen = 0;
211 msg.msg_flags = 0;
212
David Howells19ffa012016-04-04 14:00:36 +0100213 whdr.epoch = htonl(conn->proto.epoch);
214 whdr.cid = htonl(conn->proto.cid);
David Howells0d12f8a2016-03-04 15:53:46 +0000215 whdr.callNumber = 0;
216 whdr.seq = 0;
217 whdr.type = RXRPC_PACKET_TYPE_ABORT;
218 whdr.flags = conn->out_clientflag;
219 whdr.userStatus = 0;
220 whdr.securityIndex = conn->security_ix;
221 whdr._rsvd = 0;
David Howells68d6d1a2017-06-05 14:30:49 +0100222 whdr.serviceId = htons(conn->service_id);
David Howells17926a72007-04-26 15:48:28 -0700223
David Howellsdc44b3a2016-04-07 17:23:30 +0100224 word = htonl(conn->local_abort);
David Howells17926a72007-04-26 15:48:28 -0700225
David Howells0d12f8a2016-03-04 15:53:46 +0000226 iov[0].iov_base = &whdr;
227 iov[0].iov_len = sizeof(whdr);
David Howells17926a72007-04-26 15:48:28 -0700228 iov[1].iov_base = &word;
229 iov[1].iov_len = sizeof(word);
230
231 len = iov[0].iov_len + iov[1].iov_len;
232
David Howells0d12f8a2016-03-04 15:53:46 +0000233 serial = atomic_inc_return(&conn->serial);
234 whdr.serial = htonl(serial);
David Howellsdc44b3a2016-04-07 17:23:30 +0100235 _proto("Tx CONN ABORT %%%u { %d }", serial, conn->local_abort);
David Howells17926a72007-04-26 15:48:28 -0700236
David Howells85f32272016-04-04 14:00:36 +0100237 ret = kernel_sendmsg(conn->params.local->socket, &msg, iov, 2, len);
David Howells17926a72007-04-26 15:48:28 -0700238 if (ret < 0) {
239 _debug("sendmsg failed: %d", ret);
240 return -EAGAIN;
241 }
242
David Howellsace45be2018-03-30 21:04:43 +0100243 conn->params.peer->last_tx_at = ktime_get_real();
244
David Howells17926a72007-04-26 15:48:28 -0700245 _leave(" = 0");
246 return 0;
247}
248
249/*
250 * mark a call as being on a now-secured channel
David Howells248f2192016-09-08 11:10:12 +0100251 * - must be called with BH's disabled.
David Howells17926a72007-04-26 15:48:28 -0700252 */
Roel Kluin5eaa65b2008-12-10 15:18:31 -0800253static void rxrpc_call_is_secure(struct rxrpc_call *call)
David Howells17926a72007-04-26 15:48:28 -0700254{
255 _enter("%p", call);
256 if (call) {
David Howells248f2192016-09-08 11:10:12 +0100257 write_lock_bh(&call->state_lock);
258 if (call->state == RXRPC_CALL_SERVER_SECURING) {
259 call->state = RXRPC_CALL_SERVER_ACCEPTING;
260 rxrpc_notify_socket(call);
261 }
262 write_unlock_bh(&call->state_lock);
David Howells17926a72007-04-26 15:48:28 -0700263 }
264}
265
266/*
267 * connection-level Rx packet processor
268 */
269static int rxrpc_process_event(struct rxrpc_connection *conn,
270 struct sk_buff *skb,
271 u32 *_abort_code)
272{
273 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
David Howells0d12f8a2016-03-04 15:53:46 +0000274 __be32 wtmp;
275 u32 abort_code;
David Howells17926a72007-04-26 15:48:28 -0700276 int loop, ret;
277
David Howells519d2562009-06-16 21:36:44 +0100278 if (conn->state >= RXRPC_CONN_REMOTELY_ABORTED) {
David Howells248f2192016-09-08 11:10:12 +0100279 _leave(" = -ECONNABORTED [%u]", conn->state);
David Howells17926a72007-04-26 15:48:28 -0700280 return -ECONNABORTED;
David Howells519d2562009-06-16 21:36:44 +0100281 }
David Howells17926a72007-04-26 15:48:28 -0700282
David Howells0d12f8a2016-03-04 15:53:46 +0000283 _enter("{%d},{%u,%%%u},", conn->debug_id, sp->hdr.type, sp->hdr.serial);
David Howells519d2562009-06-16 21:36:44 +0100284
David Howells17926a72007-04-26 15:48:28 -0700285 switch (sp->hdr.type) {
David Howells18bfeba2016-08-23 15:27:25 +0100286 case RXRPC_PACKET_TYPE_DATA:
287 case RXRPC_PACKET_TYPE_ACK:
David Howells3136ef42017-11-24 10:18:41 +0000288 rxrpc_conn_retransmit_call(conn, skb,
289 sp->hdr.cid & RXRPC_CHANNELMASK);
David Howells18bfeba2016-08-23 15:27:25 +0100290 return 0;
291
David Howells4d4a6ac2017-03-16 16:27:10 +0000292 case RXRPC_PACKET_TYPE_BUSY:
293 /* Just ignore BUSY packets for now. */
294 return 0;
295
David Howells17926a72007-04-26 15:48:28 -0700296 case RXRPC_PACKET_TYPE_ABORT:
David Howells775e5b72016-09-30 13:26:03 +0100297 if (skb_copy_bits(skb, sizeof(struct rxrpc_wire_header),
David Howellsfb46f6e2017-04-06 10:12:00 +0100298 &wtmp, sizeof(wtmp)) < 0) {
299 trace_rxrpc_rx_eproto(NULL, sp->hdr.serial,
300 tracepoint_string("bad_abort"));
David Howells17926a72007-04-26 15:48:28 -0700301 return -EPROTO;
David Howellsfb46f6e2017-04-06 10:12:00 +0100302 }
David Howells0d12f8a2016-03-04 15:53:46 +0000303 abort_code = ntohl(wtmp);
304 _proto("Rx ABORT %%%u { ac=%d }", sp->hdr.serial, abort_code);
David Howells17926a72007-04-26 15:48:28 -0700305
306 conn->state = RXRPC_CONN_REMOTELY_ABORTED;
David Howells248f2192016-09-08 11:10:12 +0100307 rxrpc_abort_calls(conn, RXRPC_CALL_REMOTELY_ABORTED,
David Howells3a927892017-04-06 10:11:56 +0100308 abort_code, -ECONNABORTED);
David Howells17926a72007-04-26 15:48:28 -0700309 return -ECONNABORTED;
310
311 case RXRPC_PACKET_TYPE_CHALLENGE:
David Howellse0e4d822016-04-07 17:23:58 +0100312 return conn->security->respond_to_challenge(conn, skb,
313 _abort_code);
David Howells17926a72007-04-26 15:48:28 -0700314
315 case RXRPC_PACKET_TYPE_RESPONSE:
David Howells17926a72007-04-26 15:48:28 -0700316 ret = conn->security->verify_response(conn, skb, _abort_code);
317 if (ret < 0)
318 return ret;
319
320 ret = conn->security->init_connection_security(conn);
321 if (ret < 0)
322 return ret;
323
Herbert Xua2636292016-06-26 14:55:24 -0700324 ret = conn->security->prime_packet_security(conn);
325 if (ret < 0)
326 return ret;
327
David Howellsa1399f82016-06-27 14:39:44 +0100328 spin_lock(&conn->channel_lock);
David Howells17926a72007-04-26 15:48:28 -0700329 spin_lock(&conn->state_lock);
330
David Howellsbba304d2016-06-27 10:32:02 +0100331 if (conn->state == RXRPC_CONN_SERVICE_CHALLENGING) {
332 conn->state = RXRPC_CONN_SERVICE;
David Howells248f2192016-09-08 11:10:12 +0100333 spin_unlock(&conn->state_lock);
David Howells17926a72007-04-26 15:48:28 -0700334 for (loop = 0; loop < RXRPC_MAXCALLS; loop++)
David Howellsdee46362016-06-27 17:11:19 +0100335 rxrpc_call_is_secure(
336 rcu_dereference_protected(
David Howellsa1399f82016-06-27 14:39:44 +0100337 conn->channels[loop].call,
338 lockdep_is_held(&conn->channel_lock)));
David Howells248f2192016-09-08 11:10:12 +0100339 } else {
340 spin_unlock(&conn->state_lock);
David Howells17926a72007-04-26 15:48:28 -0700341 }
342
David Howellsa1399f82016-06-27 14:39:44 +0100343 spin_unlock(&conn->channel_lock);
David Howells17926a72007-04-26 15:48:28 -0700344 return 0;
345
346 default:
David Howellsfb46f6e2017-04-06 10:12:00 +0100347 trace_rxrpc_rx_eproto(NULL, sp->hdr.serial,
348 tracepoint_string("bad_conn_pkt"));
David Howells17926a72007-04-26 15:48:28 -0700349 return -EPROTO;
350 }
351}
352
353/*
354 * set up security and issue a challenge
355 */
356static void rxrpc_secure_connection(struct rxrpc_connection *conn)
357{
358 u32 abort_code;
359 int ret;
360
361 _enter("{%d}", conn->debug_id);
362
363 ASSERT(conn->security_ix != 0);
364
David Howells19ffa012016-04-04 14:00:36 +0100365 if (!conn->params.key) {
David Howells17926a72007-04-26 15:48:28 -0700366 _debug("set up security");
367 ret = rxrpc_init_server_conn_security(conn);
368 switch (ret) {
369 case 0:
370 break;
371 case -ENOENT:
372 abort_code = RX_CALL_DEAD;
373 goto abort;
374 default:
375 abort_code = RXKADNOAUTH;
376 goto abort;
377 }
378 }
379
David Howells17926a72007-04-26 15:48:28 -0700380 if (conn->security->issue_challenge(conn) < 0) {
381 abort_code = RX_CALL_DEAD;
382 ret = -ENOMEM;
383 goto abort;
384 }
385
386 _leave("");
387 return;
388
389abort:
390 _debug("abort %d, %d", ret, abort_code);
David Howells3a927892017-04-06 10:11:56 +0100391 rxrpc_abort_connection(conn, ret, abort_code);
David Howells17926a72007-04-26 15:48:28 -0700392 _leave(" [aborted]");
393}
394
395/*
David Howells3136ef42017-11-24 10:18:41 +0000396 * Process delayed final ACKs that we haven't subsumed into a subsequent call.
397 */
398static void rxrpc_process_delayed_final_acks(struct rxrpc_connection *conn)
399{
400 unsigned long j = jiffies, next_j;
401 unsigned int channel;
402 bool set;
403
404again:
405 next_j = j + LONG_MAX;
406 set = false;
407 for (channel = 0; channel < RXRPC_MAXCALLS; channel++) {
408 struct rxrpc_channel *chan = &conn->channels[channel];
409 unsigned long ack_at;
410
411 if (!test_bit(RXRPC_CONN_FINAL_ACK_0 + channel, &conn->flags))
412 continue;
413
414 smp_rmb(); /* vs rxrpc_disconnect_client_call */
415 ack_at = READ_ONCE(chan->final_ack_at);
416
417 if (time_before(j, ack_at)) {
418 if (time_before(ack_at, next_j)) {
419 next_j = ack_at;
420 set = true;
421 }
422 continue;
423 }
424
425 if (test_and_clear_bit(RXRPC_CONN_FINAL_ACK_0 + channel,
426 &conn->flags))
427 rxrpc_conn_retransmit_call(conn, NULL, channel);
428 }
429
430 j = jiffies;
431 if (time_before_eq(next_j, j))
432 goto again;
433 if (set)
434 rxrpc_reduce_conn_timer(conn, next_j);
435}
436
437/*
David Howells17926a72007-04-26 15:48:28 -0700438 * connection-level event processor
439 */
440void rxrpc_process_connection(struct work_struct *work)
441{
442 struct rxrpc_connection *conn =
443 container_of(work, struct rxrpc_connection, processor);
David Howells17926a72007-04-26 15:48:28 -0700444 struct sk_buff *skb;
445 u32 abort_code = RX_PROTOCOL_ERROR;
446 int ret;
447
David Howells363deea2016-09-17 10:49:14 +0100448 rxrpc_see_connection(conn);
David Howells17926a72007-04-26 15:48:28 -0700449
David Howells2c4579e2016-06-27 10:32:03 +0100450 if (test_and_clear_bit(RXRPC_CONN_EV_CHALLENGE, &conn->events))
David Howells17926a72007-04-26 15:48:28 -0700451 rxrpc_secure_connection(conn);
David Howells17926a72007-04-26 15:48:28 -0700452
David Howells3136ef42017-11-24 10:18:41 +0000453 /* Process delayed ACKs whose time has come. */
454 if (conn->flags & RXRPC_CONN_FINAL_ACK_MASK)
455 rxrpc_process_delayed_final_acks(conn);
456
David Howells17926a72007-04-26 15:48:28 -0700457 /* go through the conn-level event packets, releasing the ref on this
458 * connection that each one has when we've finished with it */
459 while ((skb = skb_dequeue(&conn->rx_queue))) {
David Howells71f3ca42016-09-17 10:49:14 +0100460 rxrpc_see_skb(skb, rxrpc_skb_rx_seen);
David Howells17926a72007-04-26 15:48:28 -0700461 ret = rxrpc_process_event(conn, skb, &abort_code);
462 switch (ret) {
463 case -EPROTO:
464 case -EKEYEXPIRED:
465 case -EKEYREJECTED:
466 goto protocol_error;
David Howells8c2f8262018-02-08 15:59:07 +0000467 case -ENOMEM:
David Howells17926a72007-04-26 15:48:28 -0700468 case -EAGAIN:
469 goto requeue_and_leave;
470 case -ECONNABORTED:
471 default:
David Howells71f3ca42016-09-17 10:49:14 +0100472 rxrpc_free_skb(skb, rxrpc_skb_rx_freed);
David Howells17926a72007-04-26 15:48:28 -0700473 break;
474 }
475 }
476
477out:
478 rxrpc_put_connection(conn);
479 _leave("");
480 return;
481
482requeue_and_leave:
483 skb_queue_head(&conn->rx_queue, skb);
484 goto out;
485
486protocol_error:
David Howells3a927892017-04-06 10:11:56 +0100487 if (rxrpc_abort_connection(conn, ret, abort_code) < 0)
David Howells17926a72007-04-26 15:48:28 -0700488 goto requeue_and_leave;
David Howells71f3ca42016-09-17 10:49:14 +0100489 rxrpc_free_skb(skb, rxrpc_skb_rx_freed);
David Howells17926a72007-04-26 15:48:28 -0700490 goto out;
491}