blob: eaa8035dcb71cfa65b7c6a5480c539662907ad75 [file] [log] [blame]
David Howells17926a72007-04-26 15:48:28 -07001/* Management of Tx window, Tx resend, ACKs and out-of-sequence 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/circ_buf.h>
16#include <linux/net.h>
17#include <linux/skbuff.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.h>
David Howells17926a72007-04-26 15:48:28 -070019#include <linux/udp.h>
20#include <net/sock.h>
21#include <net/af_rxrpc.h>
22#include "ar-internal.h"
23
David Howells5873c082014-02-07 18:58:44 +000024/*
David Howells17926a72007-04-26 15:48:28 -070025 * propose an ACK be sent
26 */
David Howells4e36a952009-09-16 00:01:13 -070027void __rxrpc_propose_ACK(struct rxrpc_call *call, u8 ack_reason,
David Howells0d12f8a2016-03-04 15:53:46 +000028 u32 serial, bool immediate)
David Howells17926a72007-04-26 15:48:28 -070029{
30 unsigned long expiry;
31 s8 prior = rxrpc_ack_priority[ack_reason];
32
33 ASSERTCMP(prior, >, 0);
34
35 _enter("{%d},%s,%%%x,%u",
David Howells0d12f8a2016-03-04 15:53:46 +000036 call->debug_id, rxrpc_acks(ack_reason), serial, immediate);
David Howells17926a72007-04-26 15:48:28 -070037
38 if (prior < rxrpc_ack_priority[call->ackr_reason]) {
39 if (immediate)
40 goto cancel_timer;
41 return;
42 }
43
44 /* update DELAY, IDLE, REQUESTED and PING_RESPONSE ACK serial
45 * numbers */
46 if (prior == rxrpc_ack_priority[call->ackr_reason]) {
47 if (prior <= 4)
48 call->ackr_serial = serial;
49 if (immediate)
50 goto cancel_timer;
51 return;
52 }
53
54 call->ackr_reason = ack_reason;
55 call->ackr_serial = serial;
56
57 switch (ack_reason) {
58 case RXRPC_ACK_DELAY:
59 _debug("run delay timer");
David Howells5873c082014-02-07 18:58:44 +000060 expiry = rxrpc_soft_ack_delay;
61 goto run_timer;
David Howells17926a72007-04-26 15:48:28 -070062
63 case RXRPC_ACK_IDLE:
64 if (!immediate) {
65 _debug("run defer timer");
David Howells5873c082014-02-07 18:58:44 +000066 expiry = rxrpc_idle_ack_delay;
David Howells17926a72007-04-26 15:48:28 -070067 goto run_timer;
68 }
69 goto cancel_timer;
70
71 case RXRPC_ACK_REQUESTED:
David Howells5873c082014-02-07 18:58:44 +000072 expiry = rxrpc_requested_ack_delay;
73 if (!expiry)
David Howells17926a72007-04-26 15:48:28 -070074 goto cancel_timer;
David Howells0d12f8a2016-03-04 15:53:46 +000075 if (!immediate || serial == 1) {
David Howells17926a72007-04-26 15:48:28 -070076 _debug("run defer timer");
David Howells17926a72007-04-26 15:48:28 -070077 goto run_timer;
78 }
79
80 default:
81 _debug("immediate ACK");
82 goto cancel_timer;
83 }
84
85run_timer:
86 expiry += jiffies;
87 if (!timer_pending(&call->ack_timer) ||
88 time_after(call->ack_timer.expires, expiry))
89 mod_timer(&call->ack_timer, expiry);
90 return;
91
92cancel_timer:
David Howells0d12f8a2016-03-04 15:53:46 +000093 _debug("cancel timer %%%u", serial);
David Howells17926a72007-04-26 15:48:28 -070094 try_to_del_timer_sync(&call->ack_timer);
95 read_lock_bh(&call->state_lock);
96 if (call->state <= RXRPC_CALL_COMPLETE &&
David Howells4c198ad2016-03-04 15:53:46 +000097 !test_and_set_bit(RXRPC_CALL_EV_ACK, &call->events))
David Howells651350d2007-04-26 15:50:17 -070098 rxrpc_queue_call(call);
David Howells17926a72007-04-26 15:48:28 -070099 read_unlock_bh(&call->state_lock);
100}
101
102/*
103 * propose an ACK be sent, locking the call structure
104 */
David Howells4e36a952009-09-16 00:01:13 -0700105void rxrpc_propose_ACK(struct rxrpc_call *call, u8 ack_reason,
David Howells0d12f8a2016-03-04 15:53:46 +0000106 u32 serial, bool immediate)
David Howells17926a72007-04-26 15:48:28 -0700107{
108 s8 prior = rxrpc_ack_priority[ack_reason];
109
110 if (prior > rxrpc_ack_priority[call->ackr_reason]) {
111 spin_lock_bh(&call->lock);
112 __rxrpc_propose_ACK(call, ack_reason, serial, immediate);
113 spin_unlock_bh(&call->lock);
114 }
115}
116
117/*
118 * set the resend timer
119 */
120static void rxrpc_set_resend(struct rxrpc_call *call, u8 resend,
121 unsigned long resend_at)
122{
123 read_lock_bh(&call->state_lock);
124 if (call->state >= RXRPC_CALL_COMPLETE)
125 resend = 0;
126
127 if (resend & 1) {
128 _debug("SET RESEND");
David Howells4c198ad2016-03-04 15:53:46 +0000129 set_bit(RXRPC_CALL_EV_RESEND, &call->events);
David Howells17926a72007-04-26 15:48:28 -0700130 }
131
132 if (resend & 2) {
133 _debug("MODIFY RESEND TIMER");
134 set_bit(RXRPC_CALL_RUN_RTIMER, &call->flags);
135 mod_timer(&call->resend_timer, resend_at);
136 } else {
137 _debug("KILL RESEND TIMER");
138 del_timer_sync(&call->resend_timer);
David Howells4c198ad2016-03-04 15:53:46 +0000139 clear_bit(RXRPC_CALL_EV_RESEND_TIMER, &call->events);
David Howells17926a72007-04-26 15:48:28 -0700140 clear_bit(RXRPC_CALL_RUN_RTIMER, &call->flags);
141 }
142 read_unlock_bh(&call->state_lock);
143}
144
145/*
146 * resend packets
147 */
148static void rxrpc_resend(struct rxrpc_call *call)
149{
David Howells0d12f8a2016-03-04 15:53:46 +0000150 struct rxrpc_wire_header *whdr;
David Howells17926a72007-04-26 15:48:28 -0700151 struct rxrpc_skb_priv *sp;
David Howells17926a72007-04-26 15:48:28 -0700152 struct sk_buff *txb;
153 unsigned long *p_txb, resend_at;
Florian Westphalc03ae532015-02-28 11:51:36 +0100154 bool stop;
155 int loop;
David Howells17926a72007-04-26 15:48:28 -0700156 u8 resend;
157
158 _enter("{%d,%d,%d,%d},",
159 call->acks_hard, call->acks_unacked,
160 atomic_read(&call->sequence),
161 CIRC_CNT(call->acks_head, call->acks_tail, call->acks_winsz));
162
Florian Westphalc03ae532015-02-28 11:51:36 +0100163 stop = false;
David Howells17926a72007-04-26 15:48:28 -0700164 resend = 0;
165 resend_at = 0;
166
167 for (loop = call->acks_tail;
168 loop != call->acks_head || stop;
169 loop = (loop + 1) & (call->acks_winsz - 1)
170 ) {
171 p_txb = call->acks_window + loop;
172 smp_read_barrier_depends();
173 if (*p_txb & 1)
174 continue;
175
176 txb = (struct sk_buff *) *p_txb;
177 sp = rxrpc_skb(txb);
178
179 if (sp->need_resend) {
Rusty Russell3db1cd52011-12-19 13:56:45 +0000180 sp->need_resend = false;
David Howells17926a72007-04-26 15:48:28 -0700181
182 /* each Tx packet has a new serial number */
David Howells0d12f8a2016-03-04 15:53:46 +0000183 sp->hdr.serial = atomic_inc_return(&call->conn->serial);
David Howells17926a72007-04-26 15:48:28 -0700184
David Howells0d12f8a2016-03-04 15:53:46 +0000185 whdr = (struct rxrpc_wire_header *)txb->head;
186 whdr->serial = htonl(sp->hdr.serial);
David Howells17926a72007-04-26 15:48:28 -0700187
188 _proto("Tx DATA %%%u { #%d }",
David Howells0d12f8a2016-03-04 15:53:46 +0000189 sp->hdr.serial, sp->hdr.seq);
David Howells985a5c82016-06-17 11:53:37 +0100190 if (rxrpc_send_data_packet(call->conn, txb) < 0) {
Florian Westphalc03ae532015-02-28 11:51:36 +0100191 stop = true;
David Howells17926a72007-04-26 15:48:28 -0700192 sp->resend_at = jiffies + 3;
193 } else {
194 sp->resend_at =
Florian Westphal765dd3b2015-02-28 11:51:37 +0100195 jiffies + rxrpc_resend_timeout;
David Howells17926a72007-04-26 15:48:28 -0700196 }
197 }
198
199 if (time_after_eq(jiffies + 1, sp->resend_at)) {
Rusty Russell3db1cd52011-12-19 13:56:45 +0000200 sp->need_resend = true;
David Howells17926a72007-04-26 15:48:28 -0700201 resend |= 1;
202 } else if (resend & 2) {
203 if (time_before(sp->resend_at, resend_at))
204 resend_at = sp->resend_at;
205 } else {
206 resend_at = sp->resend_at;
207 resend |= 2;
208 }
209 }
210
211 rxrpc_set_resend(call, resend, resend_at);
212 _leave("");
213}
214
215/*
216 * handle resend timer expiry
217 */
218static void rxrpc_resend_timer(struct rxrpc_call *call)
219{
220 struct rxrpc_skb_priv *sp;
221 struct sk_buff *txb;
222 unsigned long *p_txb, resend_at;
223 int loop;
224 u8 resend;
225
226 _enter("%d,%d,%d",
227 call->acks_tail, call->acks_unacked, call->acks_head);
228
David Howells3b5bac22010-08-04 02:34:17 +0000229 if (call->state >= RXRPC_CALL_COMPLETE)
230 return;
231
David Howells17926a72007-04-26 15:48:28 -0700232 resend = 0;
233 resend_at = 0;
234
235 for (loop = call->acks_unacked;
236 loop != call->acks_head;
237 loop = (loop + 1) & (call->acks_winsz - 1)
238 ) {
239 p_txb = call->acks_window + loop;
240 smp_read_barrier_depends();
241 txb = (struct sk_buff *) (*p_txb & ~1);
242 sp = rxrpc_skb(txb);
243
244 ASSERT(!(*p_txb & 1));
245
246 if (sp->need_resend) {
247 ;
248 } else if (time_after_eq(jiffies + 1, sp->resend_at)) {
Rusty Russell3db1cd52011-12-19 13:56:45 +0000249 sp->need_resend = true;
David Howells17926a72007-04-26 15:48:28 -0700250 resend |= 1;
251 } else if (resend & 2) {
252 if (time_before(sp->resend_at, resend_at))
253 resend_at = sp->resend_at;
254 } else {
255 resend_at = sp->resend_at;
256 resend |= 2;
257 }
258 }
259
260 rxrpc_set_resend(call, resend, resend_at);
261 _leave("");
262}
263
264/*
265 * process soft ACKs of our transmitted packets
266 * - these indicate packets the peer has or has not received, but hasn't yet
267 * given to the consumer, and so can still be discarded and re-requested
268 */
269static int rxrpc_process_soft_ACKs(struct rxrpc_call *call,
270 struct rxrpc_ackpacket *ack,
271 struct sk_buff *skb)
272{
273 struct rxrpc_skb_priv *sp;
274 struct sk_buff *txb;
275 unsigned long *p_txb, resend_at;
276 int loop;
277 u8 sacks[RXRPC_MAXACKS], resend;
278
279 _enter("{%d,%d},{%d},",
280 call->acks_hard,
281 CIRC_CNT(call->acks_head, call->acks_tail, call->acks_winsz),
282 ack->nAcks);
283
284 if (skb_copy_bits(skb, 0, sacks, ack->nAcks) < 0)
285 goto protocol_error;
286
287 resend = 0;
288 resend_at = 0;
289 for (loop = 0; loop < ack->nAcks; loop++) {
290 p_txb = call->acks_window;
291 p_txb += (call->acks_tail + loop) & (call->acks_winsz - 1);
292 smp_read_barrier_depends();
293 txb = (struct sk_buff *) (*p_txb & ~1);
294 sp = rxrpc_skb(txb);
295
296 switch (sacks[loop]) {
297 case RXRPC_ACK_TYPE_ACK:
Rusty Russell3db1cd52011-12-19 13:56:45 +0000298 sp->need_resend = false;
David Howells17926a72007-04-26 15:48:28 -0700299 *p_txb |= 1;
300 break;
301 case RXRPC_ACK_TYPE_NACK:
Rusty Russell3db1cd52011-12-19 13:56:45 +0000302 sp->need_resend = true;
David Howells17926a72007-04-26 15:48:28 -0700303 *p_txb &= ~1;
304 resend = 1;
305 break;
306 default:
307 _debug("Unsupported ACK type %d", sacks[loop]);
308 goto protocol_error;
309 }
310 }
311
312 smp_mb();
313 call->acks_unacked = (call->acks_tail + loop) & (call->acks_winsz - 1);
314
315 /* anything not explicitly ACK'd is implicitly NACK'd, but may just not
316 * have been received or processed yet by the far end */
317 for (loop = call->acks_unacked;
318 loop != call->acks_head;
319 loop = (loop + 1) & (call->acks_winsz - 1)
320 ) {
321 p_txb = call->acks_window + loop;
322 smp_read_barrier_depends();
323 txb = (struct sk_buff *) (*p_txb & ~1);
324 sp = rxrpc_skb(txb);
325
326 if (*p_txb & 1) {
327 /* packet must have been discarded */
Rusty Russell3db1cd52011-12-19 13:56:45 +0000328 sp->need_resend = true;
David Howells17926a72007-04-26 15:48:28 -0700329 *p_txb &= ~1;
330 resend |= 1;
331 } else if (sp->need_resend) {
332 ;
333 } else if (time_after_eq(jiffies + 1, sp->resend_at)) {
Rusty Russell3db1cd52011-12-19 13:56:45 +0000334 sp->need_resend = true;
David Howells17926a72007-04-26 15:48:28 -0700335 resend |= 1;
336 } else if (resend & 2) {
337 if (time_before(sp->resend_at, resend_at))
338 resend_at = sp->resend_at;
339 } else {
340 resend_at = sp->resend_at;
341 resend |= 2;
342 }
343 }
344
345 rxrpc_set_resend(call, resend, resend_at);
346 _leave(" = 0");
347 return 0;
348
349protocol_error:
350 _leave(" = -EPROTO");
351 return -EPROTO;
352}
353
354/*
355 * discard hard-ACK'd packets from the Tx window
356 */
357static void rxrpc_rotate_tx_window(struct rxrpc_call *call, u32 hard)
358{
David Howells17926a72007-04-26 15:48:28 -0700359 unsigned long _skb;
360 int tail = call->acks_tail, old_tail;
361 int win = CIRC_CNT(call->acks_head, tail, call->acks_winsz);
362
David Howells8f7e6e72016-04-07 17:23:09 +0100363 _enter("{%u,%u},%u", call->acks_hard, win, hard);
David Howells17926a72007-04-26 15:48:28 -0700364
365 ASSERTCMP(hard - call->acks_hard, <=, win);
366
367 while (call->acks_hard < hard) {
368 smp_read_barrier_depends();
369 _skb = call->acks_window[tail] & ~1;
David Howells17926a72007-04-26 15:48:28 -0700370 rxrpc_free_skb((struct sk_buff *) _skb);
371 old_tail = tail;
372 tail = (tail + 1) & (call->acks_winsz - 1);
373 call->acks_tail = tail;
374 if (call->acks_unacked == old_tail)
375 call->acks_unacked = tail;
376 call->acks_hard++;
377 }
378
379 wake_up(&call->tx_waitq);
380}
381
382/*
383 * clear the Tx window in the event of a failure
384 */
385static void rxrpc_clear_tx_window(struct rxrpc_call *call)
386{
387 rxrpc_rotate_tx_window(call, atomic_read(&call->sequence));
388}
389
390/*
391 * drain the out of sequence received packet queue into the packet Rx queue
392 */
393static int rxrpc_drain_rx_oos_queue(struct rxrpc_call *call)
394{
395 struct rxrpc_skb_priv *sp;
396 struct sk_buff *skb;
397 bool terminal;
398 int ret;
399
400 _enter("{%d,%d}", call->rx_data_post, call->rx_first_oos);
401
402 spin_lock_bh(&call->lock);
403
404 ret = -ECONNRESET;
405 if (test_bit(RXRPC_CALL_RELEASED, &call->flags))
406 goto socket_unavailable;
407
408 skb = skb_dequeue(&call->rx_oos_queue);
409 if (skb) {
410 sp = rxrpc_skb(skb);
411
412 _debug("drain OOS packet %d [%d]",
David Howells0d12f8a2016-03-04 15:53:46 +0000413 sp->hdr.seq, call->rx_first_oos);
David Howells17926a72007-04-26 15:48:28 -0700414
David Howells0d12f8a2016-03-04 15:53:46 +0000415 if (sp->hdr.seq != call->rx_first_oos) {
David Howells17926a72007-04-26 15:48:28 -0700416 skb_queue_head(&call->rx_oos_queue, skb);
David Howells0d12f8a2016-03-04 15:53:46 +0000417 call->rx_first_oos = rxrpc_skb(skb)->hdr.seq;
David Howells17926a72007-04-26 15:48:28 -0700418 _debug("requeue %p {%u}", skb, call->rx_first_oos);
419 } else {
420 skb->mark = RXRPC_SKB_MARK_DATA;
421 terminal = ((sp->hdr.flags & RXRPC_LAST_PACKET) &&
422 !(sp->hdr.flags & RXRPC_CLIENT_INITIATED));
423 ret = rxrpc_queue_rcv_skb(call, skb, true, terminal);
424 BUG_ON(ret < 0);
425 _debug("drain #%u", call->rx_data_post);
426 call->rx_data_post++;
427
428 /* find out what the next packet is */
429 skb = skb_peek(&call->rx_oos_queue);
430 if (skb)
David Howells0d12f8a2016-03-04 15:53:46 +0000431 call->rx_first_oos = rxrpc_skb(skb)->hdr.seq;
David Howells17926a72007-04-26 15:48:28 -0700432 else
433 call->rx_first_oos = 0;
434 _debug("peek %p {%u}", skb, call->rx_first_oos);
435 }
436 }
437
438 ret = 0;
439socket_unavailable:
440 spin_unlock_bh(&call->lock);
441 _leave(" = %d", ret);
442 return ret;
443}
444
445/*
446 * insert an out of sequence packet into the buffer
447 */
448static void rxrpc_insert_oos_packet(struct rxrpc_call *call,
449 struct sk_buff *skb)
450{
451 struct rxrpc_skb_priv *sp, *psp;
452 struct sk_buff *p;
453 u32 seq;
454
455 sp = rxrpc_skb(skb);
David Howells0d12f8a2016-03-04 15:53:46 +0000456 seq = sp->hdr.seq;
David Howells17926a72007-04-26 15:48:28 -0700457 _enter(",,{%u}", seq);
458
459 skb->destructor = rxrpc_packet_destructor;
460 ASSERTCMP(sp->call, ==, NULL);
461 sp->call = call;
462 rxrpc_get_call(call);
David Howells372ee162016-08-03 14:11:40 +0100463 atomic_inc(&call->skb_count);
David Howells17926a72007-04-26 15:48:28 -0700464
465 /* insert into the buffer in sequence order */
466 spin_lock_bh(&call->lock);
467
468 skb_queue_walk(&call->rx_oos_queue, p) {
469 psp = rxrpc_skb(p);
David Howells0d12f8a2016-03-04 15:53:46 +0000470 if (psp->hdr.seq > seq) {
471 _debug("insert oos #%u before #%u", seq, psp->hdr.seq);
David Howells17926a72007-04-26 15:48:28 -0700472 skb_insert(p, skb, &call->rx_oos_queue);
473 goto inserted;
474 }
475 }
476
477 _debug("append oos #%u", seq);
478 skb_queue_tail(&call->rx_oos_queue, skb);
479inserted:
480
481 /* we might now have a new front to the queue */
482 if (call->rx_first_oos == 0 || seq < call->rx_first_oos)
483 call->rx_first_oos = seq;
484
485 read_lock(&call->state_lock);
486 if (call->state < RXRPC_CALL_COMPLETE &&
487 call->rx_data_post == call->rx_first_oos) {
488 _debug("drain rx oos now");
David Howells4c198ad2016-03-04 15:53:46 +0000489 set_bit(RXRPC_CALL_EV_DRAIN_RX_OOS, &call->events);
David Howells17926a72007-04-26 15:48:28 -0700490 }
491 read_unlock(&call->state_lock);
492
493 spin_unlock_bh(&call->lock);
494 _leave(" [stored #%u]", call->rx_first_oos);
495}
496
497/*
498 * clear the Tx window on final ACK reception
499 */
500static void rxrpc_zap_tx_window(struct rxrpc_call *call)
501{
502 struct rxrpc_skb_priv *sp;
503 struct sk_buff *skb;
504 unsigned long _skb, *acks_window;
David Howells4e36a952009-09-16 00:01:13 -0700505 u8 winsz = call->acks_winsz;
David Howells17926a72007-04-26 15:48:28 -0700506 int tail;
507
508 acks_window = call->acks_window;
509 call->acks_window = NULL;
510
511 while (CIRC_CNT(call->acks_head, call->acks_tail, winsz) > 0) {
512 tail = call->acks_tail;
513 smp_read_barrier_depends();
514 _skb = acks_window[tail] & ~1;
515 smp_mb();
516 call->acks_tail = (call->acks_tail + 1) & (winsz - 1);
517
518 skb = (struct sk_buff *) _skb;
519 sp = rxrpc_skb(skb);
David Howells0d12f8a2016-03-04 15:53:46 +0000520 _debug("+++ clear Tx %u", sp->hdr.seq);
David Howells17926a72007-04-26 15:48:28 -0700521 rxrpc_free_skb(skb);
522 }
523
524 kfree(acks_window);
525}
526
527/*
David Howells224711d2007-05-04 12:41:11 -0700528 * process the extra information that may be appended to an ACK packet
529 */
530static void rxrpc_extract_ackinfo(struct rxrpc_call *call, struct sk_buff *skb,
Eric Dumazet95c96172012-04-15 05:58:06 +0000531 unsigned int latest, int nAcks)
David Howells224711d2007-05-04 12:41:11 -0700532{
533 struct rxrpc_ackinfo ackinfo;
534 struct rxrpc_peer *peer;
Eric Dumazet95c96172012-04-15 05:58:06 +0000535 unsigned int mtu;
David Howells224711d2007-05-04 12:41:11 -0700536
537 if (skb_copy_bits(skb, nAcks + 3, &ackinfo, sizeof(ackinfo)) < 0) {
538 _leave(" [no ackinfo]");
539 return;
540 }
541
542 _proto("Rx ACK %%%u Info { rx=%u max=%u rwin=%u jm=%u }",
543 latest,
544 ntohl(ackinfo.rxMTU), ntohl(ackinfo.maxMTU),
545 ntohl(ackinfo.rwind), ntohl(ackinfo.jumbo_max));
546
547 mtu = min(ntohl(ackinfo.rxMTU), ntohl(ackinfo.maxMTU));
548
David Howells85f32272016-04-04 14:00:36 +0100549 peer = call->conn->params.peer;
David Howells224711d2007-05-04 12:41:11 -0700550 if (mtu < peer->maxdata) {
551 spin_lock_bh(&peer->lock);
552 peer->maxdata = mtu;
553 peer->mtu = mtu + peer->hdrsize;
554 spin_unlock_bh(&peer->lock);
555 _net("Net MTU %u (maxdata %u)", peer->mtu, peer->maxdata);
556 }
557}
558
559/*
David Howells17926a72007-04-26 15:48:28 -0700560 * process packets in the reception queue
561 */
562static int rxrpc_process_rx_queue(struct rxrpc_call *call,
563 u32 *_abort_code)
564{
565 struct rxrpc_ackpacket ack;
566 struct rxrpc_skb_priv *sp;
567 struct sk_buff *skb;
568 bool post_ACK;
569 int latest;
570 u32 hard, tx;
571
572 _enter("");
573
574process_further:
575 skb = skb_dequeue(&call->rx_queue);
576 if (!skb)
577 return -EAGAIN;
578
579 _net("deferred skb %p", skb);
580
581 sp = rxrpc_skb(skb);
582
583 _debug("process %s [st %d]", rxrpc_pkts[sp->hdr.type], call->state);
584
585 post_ACK = false;
586
587 switch (sp->hdr.type) {
588 /* data packets that wind up here have been received out of
589 * order, need security processing or are jumbo packets */
590 case RXRPC_PACKET_TYPE_DATA:
David Howells0d12f8a2016-03-04 15:53:46 +0000591 _proto("OOSQ DATA %%%u { #%u }", sp->hdr.serial, sp->hdr.seq);
David Howells17926a72007-04-26 15:48:28 -0700592
593 /* secured packets must be verified and possibly decrypted */
David Howellse0e4d822016-04-07 17:23:58 +0100594 if (call->conn->security->verify_packet(call, skb,
595 _abort_code) < 0)
David Howells17926a72007-04-26 15:48:28 -0700596 goto protocol_error;
597
598 rxrpc_insert_oos_packet(call, skb);
599 goto process_further;
600
601 /* partial ACK to process */
602 case RXRPC_PACKET_TYPE_ACK:
603 if (skb_copy_bits(skb, 0, &ack, sizeof(ack)) < 0) {
604 _debug("extraction failure");
605 goto protocol_error;
606 }
607 if (!skb_pull(skb, sizeof(ack)))
608 BUG();
609
David Howells0d12f8a2016-03-04 15:53:46 +0000610 latest = sp->hdr.serial;
David Howells17926a72007-04-26 15:48:28 -0700611 hard = ntohl(ack.firstPacket);
612 tx = atomic_read(&call->sequence);
613
614 _proto("Rx ACK %%%u { m=%hu f=#%u p=#%u s=%%%u r=%s n=%u }",
615 latest,
616 ntohs(ack.maxSkew),
617 hard,
618 ntohl(ack.previousPacket),
619 ntohl(ack.serial),
Dan Carpenter08d4d212014-01-20 13:28:59 +0300620 rxrpc_acks(ack.reason),
David Howells17926a72007-04-26 15:48:28 -0700621 ack.nAcks);
622
David Howells224711d2007-05-04 12:41:11 -0700623 rxrpc_extract_ackinfo(call, skb, latest, ack.nAcks);
624
David Howells17926a72007-04-26 15:48:28 -0700625 if (ack.reason == RXRPC_ACK_PING) {
626 _proto("Rx ACK %%%u PING Request", latest);
627 rxrpc_propose_ACK(call, RXRPC_ACK_PING_RESPONSE,
628 sp->hdr.serial, true);
629 }
630
631 /* discard any out-of-order or duplicate ACKs */
632 if (latest - call->acks_latest <= 0) {
633 _debug("discard ACK %d <= %d",
634 latest, call->acks_latest);
635 goto discard;
636 }
637 call->acks_latest = latest;
638
639 if (call->state != RXRPC_CALL_CLIENT_SEND_REQUEST &&
640 call->state != RXRPC_CALL_CLIENT_AWAIT_REPLY &&
641 call->state != RXRPC_CALL_SERVER_SEND_REPLY &&
642 call->state != RXRPC_CALL_SERVER_AWAIT_ACK)
643 goto discard;
644
645 _debug("Tx=%d H=%u S=%d", tx, call->acks_hard, call->state);
646
647 if (hard > 0) {
648 if (hard - 1 > tx) {
649 _debug("hard-ACK'd packet %d not transmitted"
650 " (%d top)",
651 hard - 1, tx);
652 goto protocol_error;
653 }
654
655 if ((call->state == RXRPC_CALL_CLIENT_AWAIT_REPLY ||
656 call->state == RXRPC_CALL_SERVER_AWAIT_ACK) &&
David Howells33c40e22015-11-24 14:41:59 +0000657 hard > tx) {
658 call->acks_hard = tx;
David Howells17926a72007-04-26 15:48:28 -0700659 goto all_acked;
David Howells33c40e22015-11-24 14:41:59 +0000660 }
David Howells17926a72007-04-26 15:48:28 -0700661
662 smp_rmb();
663 rxrpc_rotate_tx_window(call, hard - 1);
664 }
665
666 if (ack.nAcks > 0) {
667 if (hard - 1 + ack.nAcks > tx) {
668 _debug("soft-ACK'd packet %d+%d not"
669 " transmitted (%d top)",
670 hard - 1, ack.nAcks, tx);
671 goto protocol_error;
672 }
673
674 if (rxrpc_process_soft_ACKs(call, &ack, skb) < 0)
675 goto protocol_error;
676 }
677 goto discard;
678
679 /* complete ACK to process */
680 case RXRPC_PACKET_TYPE_ACKALL:
681 goto all_acked;
682
683 /* abort and busy are handled elsewhere */
684 case RXRPC_PACKET_TYPE_BUSY:
685 case RXRPC_PACKET_TYPE_ABORT:
686 BUG();
687
688 /* connection level events - also handled elsewhere */
689 case RXRPC_PACKET_TYPE_CHALLENGE:
690 case RXRPC_PACKET_TYPE_RESPONSE:
691 case RXRPC_PACKET_TYPE_DEBUG:
692 BUG();
693 }
694
695 /* if we've had a hard ACK that covers all the packets we've sent, then
696 * that ends that phase of the operation */
697all_acked:
698 write_lock_bh(&call->state_lock);
699 _debug("ack all %d", call->state);
700
701 switch (call->state) {
702 case RXRPC_CALL_CLIENT_AWAIT_REPLY:
703 call->state = RXRPC_CALL_CLIENT_RECV_REPLY;
704 break;
705 case RXRPC_CALL_SERVER_AWAIT_ACK:
706 _debug("srv complete");
707 call->state = RXRPC_CALL_COMPLETE;
708 post_ACK = true;
709 break;
710 case RXRPC_CALL_CLIENT_SEND_REQUEST:
711 case RXRPC_CALL_SERVER_RECV_REQUEST:
712 goto protocol_error_unlock; /* can't occur yet */
713 default:
714 write_unlock_bh(&call->state_lock);
715 goto discard; /* assume packet left over from earlier phase */
716 }
717
718 write_unlock_bh(&call->state_lock);
719
720 /* if all the packets we sent are hard-ACK'd, then we can discard
721 * whatever we've got left */
722 _debug("clear Tx %d",
723 CIRC_CNT(call->acks_head, call->acks_tail, call->acks_winsz));
724
725 del_timer_sync(&call->resend_timer);
726 clear_bit(RXRPC_CALL_RUN_RTIMER, &call->flags);
David Howells4c198ad2016-03-04 15:53:46 +0000727 clear_bit(RXRPC_CALL_EV_RESEND_TIMER, &call->events);
David Howells17926a72007-04-26 15:48:28 -0700728
729 if (call->acks_window)
730 rxrpc_zap_tx_window(call);
731
732 if (post_ACK) {
733 /* post the final ACK message for userspace to pick up */
734 _debug("post ACK");
735 skb->mark = RXRPC_SKB_MARK_FINAL_ACK;
736 sp->call = call;
737 rxrpc_get_call(call);
David Howells372ee162016-08-03 14:11:40 +0100738 atomic_inc(&call->skb_count);
David Howells17926a72007-04-26 15:48:28 -0700739 spin_lock_bh(&call->lock);
740 if (rxrpc_queue_rcv_skb(call, skb, true, true) < 0)
741 BUG();
742 spin_unlock_bh(&call->lock);
743 goto process_further;
744 }
745
746discard:
747 rxrpc_free_skb(skb);
748 goto process_further;
749
750protocol_error_unlock:
751 write_unlock_bh(&call->state_lock);
752protocol_error:
753 rxrpc_free_skb(skb);
754 _leave(" = -EPROTO");
755 return -EPROTO;
756}
757
758/*
759 * post a message to the socket Rx queue for recvmsg() to pick up
760 */
761static int rxrpc_post_message(struct rxrpc_call *call, u32 mark, u32 error,
762 bool fatal)
763{
764 struct rxrpc_skb_priv *sp;
765 struct sk_buff *skb;
766 int ret;
767
768 _enter("{%d,%lx},%u,%u,%d",
769 call->debug_id, call->flags, mark, error, fatal);
770
771 /* remove timers and things for fatal messages */
772 if (fatal) {
773 del_timer_sync(&call->resend_timer);
774 del_timer_sync(&call->ack_timer);
775 clear_bit(RXRPC_CALL_RUN_RTIMER, &call->flags);
776 }
777
778 if (mark != RXRPC_SKB_MARK_NEW_CALL &&
779 !test_bit(RXRPC_CALL_HAS_USERID, &call->flags)) {
780 _leave("[no userid]");
781 return 0;
782 }
783
784 if (!test_bit(RXRPC_CALL_TERMINAL_MSG, &call->flags)) {
785 skb = alloc_skb(0, GFP_NOFS);
786 if (!skb)
787 return -ENOMEM;
788
789 rxrpc_new_skb(skb);
790
791 skb->mark = mark;
792
793 sp = rxrpc_skb(skb);
794 memset(sp, 0, sizeof(*sp));
795 sp->error = error;
796 sp->call = call;
797 rxrpc_get_call(call);
David Howells372ee162016-08-03 14:11:40 +0100798 atomic_inc(&call->skb_count);
David Howells17926a72007-04-26 15:48:28 -0700799
800 spin_lock_bh(&call->lock);
801 ret = rxrpc_queue_rcv_skb(call, skb, true, fatal);
802 spin_unlock_bh(&call->lock);
Julia Lawall163e3cb2008-02-17 18:42:03 -0800803 BUG_ON(ret < 0);
David Howells17926a72007-04-26 15:48:28 -0700804 }
805
806 return 0;
807}
808
809/*
810 * handle background processing of incoming call packets and ACK / abort
811 * generation
812 */
813void rxrpc_process_call(struct work_struct *work)
814{
815 struct rxrpc_call *call =
816 container_of(work, struct rxrpc_call, processor);
David Howells0d12f8a2016-03-04 15:53:46 +0000817 struct rxrpc_wire_header whdr;
David Howells17926a72007-04-26 15:48:28 -0700818 struct rxrpc_ackpacket ack;
819 struct rxrpc_ackinfo ackinfo;
David Howells17926a72007-04-26 15:48:28 -0700820 struct msghdr msg;
821 struct kvec iov[5];
David Howells5b8848d2016-03-04 15:53:46 +0000822 enum rxrpc_call_event genbit;
David Howells17926a72007-04-26 15:48:28 -0700823 unsigned long bits;
David Howells224711d2007-05-04 12:41:11 -0700824 __be32 data, pad;
David Howells17926a72007-04-26 15:48:28 -0700825 size_t len;
David Howells5b8848d2016-03-04 15:53:46 +0000826 int loop, nbit, ioc, ret, mtu;
David Howells0d12f8a2016-03-04 15:53:46 +0000827 u32 serial, abort_code = RX_PROTOCOL_ERROR;
David Howells17926a72007-04-26 15:48:28 -0700828 u8 *acks = NULL;
829
830 //printk("\n--------------------\n");
831 _enter("{%d,%s,%lx} [%lu]",
832 call->debug_id, rxrpc_call_states[call->state], call->events,
833 (jiffies - call->creation_jif) / (HZ / 10));
834
David Howellsf9dc5752016-08-08 10:27:26 +0100835 if (!call->conn)
836 goto skip_msg_init;
837
David Howells17926a72007-04-26 15:48:28 -0700838 /* there's a good chance we're going to have to send a message, so set
839 * one up in advance */
David Howells85f32272016-04-04 14:00:36 +0100840 msg.msg_name = &call->conn->params.peer->srx.transport;
841 msg.msg_namelen = call->conn->params.peer->srx.transport_len;
David Howells17926a72007-04-26 15:48:28 -0700842 msg.msg_control = NULL;
843 msg.msg_controllen = 0;
844 msg.msg_flags = 0;
845
David Howells19ffa012016-04-04 14:00:36 +0100846 whdr.epoch = htonl(call->conn->proto.epoch);
David Howells0d12f8a2016-03-04 15:53:46 +0000847 whdr.cid = htonl(call->cid);
848 whdr.callNumber = htonl(call->call_id);
849 whdr.seq = 0;
850 whdr.type = RXRPC_PACKET_TYPE_ACK;
851 whdr.flags = call->conn->out_clientflag;
852 whdr.userStatus = 0;
853 whdr.securityIndex = call->conn->security_ix;
854 whdr._rsvd = 0;
855 whdr.serviceId = htons(call->service_id);
David Howells17926a72007-04-26 15:48:28 -0700856
857 memset(iov, 0, sizeof(iov));
David Howells0d12f8a2016-03-04 15:53:46 +0000858 iov[0].iov_base = &whdr;
859 iov[0].iov_len = sizeof(whdr);
David Howellsf9dc5752016-08-08 10:27:26 +0100860skip_msg_init:
David Howells17926a72007-04-26 15:48:28 -0700861
862 /* deal with events of a final nature */
David Howells4c198ad2016-03-04 15:53:46 +0000863 if (test_bit(RXRPC_CALL_EV_RCVD_ERROR, &call->events)) {
David Howellsf66d7492016-04-04 14:00:34 +0100864 enum rxrpc_skb_mark mark;
David Howells17926a72007-04-26 15:48:28 -0700865 int error;
866
David Howells4c198ad2016-03-04 15:53:46 +0000867 clear_bit(RXRPC_CALL_EV_CONN_ABORT, &call->events);
868 clear_bit(RXRPC_CALL_EV_REJECT_BUSY, &call->events);
869 clear_bit(RXRPC_CALL_EV_ABORT, &call->events);
David Howells17926a72007-04-26 15:48:28 -0700870
David Howellsf66d7492016-04-04 14:00:34 +0100871 error = call->error_report;
872 if (error < RXRPC_LOCAL_ERROR_OFFSET) {
873 mark = RXRPC_SKB_MARK_NET_ERROR;
874 _debug("post net error %d", error);
875 } else {
876 mark = RXRPC_SKB_MARK_LOCAL_ERROR;
877 error -= RXRPC_LOCAL_ERROR_OFFSET;
878 _debug("post net local error %d", error);
879 }
David Howells17926a72007-04-26 15:48:28 -0700880
David Howellsf66d7492016-04-04 14:00:34 +0100881 if (rxrpc_post_message(call, mark, error, true) < 0)
David Howells17926a72007-04-26 15:48:28 -0700882 goto no_mem;
David Howells4c198ad2016-03-04 15:53:46 +0000883 clear_bit(RXRPC_CALL_EV_RCVD_ERROR, &call->events);
David Howells17926a72007-04-26 15:48:28 -0700884 goto kill_ACKs;
885 }
886
David Howells4c198ad2016-03-04 15:53:46 +0000887 if (test_bit(RXRPC_CALL_EV_CONN_ABORT, &call->events)) {
David Howells17926a72007-04-26 15:48:28 -0700888 ASSERTCMP(call->state, >, RXRPC_CALL_COMPLETE);
889
David Howells4c198ad2016-03-04 15:53:46 +0000890 clear_bit(RXRPC_CALL_EV_REJECT_BUSY, &call->events);
891 clear_bit(RXRPC_CALL_EV_ABORT, &call->events);
David Howells17926a72007-04-26 15:48:28 -0700892
893 _debug("post conn abort");
894
895 if (rxrpc_post_message(call, RXRPC_SKB_MARK_LOCAL_ERROR,
896 call->conn->error, true) < 0)
897 goto no_mem;
David Howells4c198ad2016-03-04 15:53:46 +0000898 clear_bit(RXRPC_CALL_EV_CONN_ABORT, &call->events);
David Howells17926a72007-04-26 15:48:28 -0700899 goto kill_ACKs;
900 }
901
David Howells4c198ad2016-03-04 15:53:46 +0000902 if (test_bit(RXRPC_CALL_EV_REJECT_BUSY, &call->events)) {
David Howells0d12f8a2016-03-04 15:53:46 +0000903 whdr.type = RXRPC_PACKET_TYPE_BUSY;
David Howells4c198ad2016-03-04 15:53:46 +0000904 genbit = RXRPC_CALL_EV_REJECT_BUSY;
David Howells17926a72007-04-26 15:48:28 -0700905 goto send_message;
906 }
907
David Howells4c198ad2016-03-04 15:53:46 +0000908 if (test_bit(RXRPC_CALL_EV_ABORT, &call->events)) {
David Howells17926a72007-04-26 15:48:28 -0700909 ASSERTCMP(call->state, >, RXRPC_CALL_COMPLETE);
910
911 if (rxrpc_post_message(call, RXRPC_SKB_MARK_LOCAL_ERROR,
912 ECONNABORTED, true) < 0)
913 goto no_mem;
David Howells0d12f8a2016-03-04 15:53:46 +0000914 whdr.type = RXRPC_PACKET_TYPE_ABORT;
David Howellsdc44b3a2016-04-07 17:23:30 +0100915 data = htonl(call->local_abort);
David Howells17926a72007-04-26 15:48:28 -0700916 iov[1].iov_base = &data;
917 iov[1].iov_len = sizeof(data);
David Howells4c198ad2016-03-04 15:53:46 +0000918 genbit = RXRPC_CALL_EV_ABORT;
David Howells17926a72007-04-26 15:48:28 -0700919 goto send_message;
920 }
921
David Howells4c198ad2016-03-04 15:53:46 +0000922 if (test_bit(RXRPC_CALL_EV_ACK_FINAL, &call->events)) {
923 genbit = RXRPC_CALL_EV_ACK_FINAL;
David Howells224711d2007-05-04 12:41:11 -0700924
925 ack.bufferSpace = htons(8);
926 ack.maxSkew = 0;
927 ack.serial = 0;
928 ack.reason = RXRPC_ACK_IDLE;
929 ack.nAcks = 0;
930 call->ackr_reason = 0;
931
932 spin_lock_bh(&call->lock);
David Howells0d12f8a2016-03-04 15:53:46 +0000933 ack.serial = htonl(call->ackr_serial);
934 ack.previousPacket = htonl(call->ackr_prev_seq);
935 ack.firstPacket = htonl(call->rx_data_eaten + 1);
David Howells224711d2007-05-04 12:41:11 -0700936 spin_unlock_bh(&call->lock);
937
938 pad = 0;
939
940 iov[1].iov_base = &ack;
941 iov[1].iov_len = sizeof(ack);
942 iov[2].iov_base = &pad;
943 iov[2].iov_len = 3;
944 iov[3].iov_base = &ackinfo;
945 iov[3].iov_len = sizeof(ackinfo);
946 goto send_ACK;
David Howells17926a72007-04-26 15:48:28 -0700947 }
948
David Howells4c198ad2016-03-04 15:53:46 +0000949 if (call->events & ((1 << RXRPC_CALL_EV_RCVD_BUSY) |
950 (1 << RXRPC_CALL_EV_RCVD_ABORT))
David Howells17926a72007-04-26 15:48:28 -0700951 ) {
952 u32 mark;
953
David Howells4c198ad2016-03-04 15:53:46 +0000954 if (test_bit(RXRPC_CALL_EV_RCVD_ABORT, &call->events))
David Howells17926a72007-04-26 15:48:28 -0700955 mark = RXRPC_SKB_MARK_REMOTE_ABORT;
956 else
957 mark = RXRPC_SKB_MARK_BUSY;
958
959 _debug("post abort/busy");
960 rxrpc_clear_tx_window(call);
961 if (rxrpc_post_message(call, mark, ECONNABORTED, true) < 0)
962 goto no_mem;
963
David Howells4c198ad2016-03-04 15:53:46 +0000964 clear_bit(RXRPC_CALL_EV_RCVD_BUSY, &call->events);
965 clear_bit(RXRPC_CALL_EV_RCVD_ABORT, &call->events);
David Howells17926a72007-04-26 15:48:28 -0700966 goto kill_ACKs;
967 }
968
David Howells4c198ad2016-03-04 15:53:46 +0000969 if (test_and_clear_bit(RXRPC_CALL_EV_RCVD_ACKALL, &call->events)) {
David Howells17926a72007-04-26 15:48:28 -0700970 _debug("do implicit ackall");
971 rxrpc_clear_tx_window(call);
972 }
973
David Howells4c198ad2016-03-04 15:53:46 +0000974 if (test_bit(RXRPC_CALL_EV_LIFE_TIMER, &call->events)) {
David Howells17926a72007-04-26 15:48:28 -0700975 write_lock_bh(&call->state_lock);
976 if (call->state <= RXRPC_CALL_COMPLETE) {
977 call->state = RXRPC_CALL_LOCALLY_ABORTED;
David Howellsdc44b3a2016-04-07 17:23:30 +0100978 call->local_abort = RX_CALL_TIMEOUT;
David Howells4c198ad2016-03-04 15:53:46 +0000979 set_bit(RXRPC_CALL_EV_ABORT, &call->events);
David Howells17926a72007-04-26 15:48:28 -0700980 }
981 write_unlock_bh(&call->state_lock);
982
983 _debug("post timeout");
984 if (rxrpc_post_message(call, RXRPC_SKB_MARK_LOCAL_ERROR,
985 ETIME, true) < 0)
986 goto no_mem;
987
David Howells4c198ad2016-03-04 15:53:46 +0000988 clear_bit(RXRPC_CALL_EV_LIFE_TIMER, &call->events);
David Howells17926a72007-04-26 15:48:28 -0700989 goto kill_ACKs;
990 }
991
992 /* deal with assorted inbound messages */
993 if (!skb_queue_empty(&call->rx_queue)) {
994 switch (rxrpc_process_rx_queue(call, &abort_code)) {
995 case 0:
996 case -EAGAIN:
997 break;
998 case -ENOMEM:
999 goto no_mem;
1000 case -EKEYEXPIRED:
1001 case -EKEYREJECTED:
1002 case -EPROTO:
1003 rxrpc_abort_call(call, abort_code);
1004 goto kill_ACKs;
1005 }
1006 }
1007
1008 /* handle resending */
David Howells4c198ad2016-03-04 15:53:46 +00001009 if (test_and_clear_bit(RXRPC_CALL_EV_RESEND_TIMER, &call->events))
David Howells17926a72007-04-26 15:48:28 -07001010 rxrpc_resend_timer(call);
David Howells4c198ad2016-03-04 15:53:46 +00001011 if (test_and_clear_bit(RXRPC_CALL_EV_RESEND, &call->events))
David Howells17926a72007-04-26 15:48:28 -07001012 rxrpc_resend(call);
1013
1014 /* consider sending an ordinary ACK */
David Howells4c198ad2016-03-04 15:53:46 +00001015 if (test_bit(RXRPC_CALL_EV_ACK, &call->events)) {
David Howells17926a72007-04-26 15:48:28 -07001016 _debug("send ACK: window: %d - %d { %lx }",
1017 call->rx_data_eaten, call->ackr_win_top,
1018 call->ackr_window[0]);
1019
1020 if (call->state > RXRPC_CALL_SERVER_ACK_REQUEST &&
1021 call->ackr_reason != RXRPC_ACK_PING_RESPONSE) {
1022 /* ACK by sending reply DATA packet in this state */
David Howells4c198ad2016-03-04 15:53:46 +00001023 clear_bit(RXRPC_CALL_EV_ACK, &call->events);
David Howells17926a72007-04-26 15:48:28 -07001024 goto maybe_reschedule;
1025 }
1026
David Howells4c198ad2016-03-04 15:53:46 +00001027 genbit = RXRPC_CALL_EV_ACK;
David Howells17926a72007-04-26 15:48:28 -07001028
1029 acks = kzalloc(call->ackr_win_top - call->rx_data_eaten,
1030 GFP_NOFS);
1031 if (!acks)
1032 goto no_mem;
1033
1034 //hdr.flags = RXRPC_SLOW_START_OK;
1035 ack.bufferSpace = htons(8);
1036 ack.maxSkew = 0;
David Howells17926a72007-04-26 15:48:28 -07001037
David Howells17926a72007-04-26 15:48:28 -07001038 spin_lock_bh(&call->lock);
David Howells0d12f8a2016-03-04 15:53:46 +00001039 ack.reason = call->ackr_reason;
1040 ack.serial = htonl(call->ackr_serial);
1041 ack.previousPacket = htonl(call->ackr_prev_seq);
David Howells17926a72007-04-26 15:48:28 -07001042 ack.firstPacket = htonl(call->rx_data_eaten + 1);
1043
1044 ack.nAcks = 0;
1045 for (loop = 0; loop < RXRPC_ACKR_WINDOW_ASZ; loop++) {
1046 nbit = loop * BITS_PER_LONG;
1047 for (bits = call->ackr_window[loop]; bits; bits >>= 1
1048 ) {
1049 _debug("- l=%d n=%d b=%lx", loop, nbit, bits);
1050 if (bits & 1) {
1051 acks[nbit] = RXRPC_ACK_TYPE_ACK;
1052 ack.nAcks = nbit + 1;
1053 }
1054 nbit++;
1055 }
1056 }
1057 call->ackr_reason = 0;
1058 spin_unlock_bh(&call->lock);
1059
1060 pad = 0;
1061
1062 iov[1].iov_base = &ack;
1063 iov[1].iov_len = sizeof(ack);
1064 iov[2].iov_base = acks;
1065 iov[2].iov_len = ack.nAcks;
1066 iov[3].iov_base = &pad;
1067 iov[3].iov_len = 3;
1068 iov[4].iov_base = &ackinfo;
1069 iov[4].iov_len = sizeof(ackinfo);
1070
1071 switch (ack.reason) {
1072 case RXRPC_ACK_REQUESTED:
1073 case RXRPC_ACK_DUPLICATE:
1074 case RXRPC_ACK_OUT_OF_SEQUENCE:
1075 case RXRPC_ACK_EXCEEDS_WINDOW:
1076 case RXRPC_ACK_NOSPACE:
1077 case RXRPC_ACK_PING:
1078 case RXRPC_ACK_PING_RESPONSE:
1079 goto send_ACK_with_skew;
1080 case RXRPC_ACK_DELAY:
1081 case RXRPC_ACK_IDLE:
1082 goto send_ACK;
1083 }
1084 }
1085
1086 /* handle completion of security negotiations on an incoming
1087 * connection */
David Howells4c198ad2016-03-04 15:53:46 +00001088 if (test_and_clear_bit(RXRPC_CALL_EV_SECURED, &call->events)) {
David Howells17926a72007-04-26 15:48:28 -07001089 _debug("secured");
1090 spin_lock_bh(&call->lock);
1091
1092 if (call->state == RXRPC_CALL_SERVER_SECURING) {
1093 _debug("securing");
David Howells30b515f2016-06-28 16:58:36 +01001094 write_lock(&call->socket->call_lock);
David Howells17926a72007-04-26 15:48:28 -07001095 if (!test_bit(RXRPC_CALL_RELEASED, &call->flags) &&
David Howells4c198ad2016-03-04 15:53:46 +00001096 !test_bit(RXRPC_CALL_EV_RELEASE, &call->events)) {
David Howells17926a72007-04-26 15:48:28 -07001097 _debug("not released");
1098 call->state = RXRPC_CALL_SERVER_ACCEPTING;
1099 list_move_tail(&call->accept_link,
1100 &call->socket->acceptq);
1101 }
David Howells30b515f2016-06-28 16:58:36 +01001102 write_unlock(&call->socket->call_lock);
David Howells17926a72007-04-26 15:48:28 -07001103 read_lock(&call->state_lock);
1104 if (call->state < RXRPC_CALL_COMPLETE)
David Howells4c198ad2016-03-04 15:53:46 +00001105 set_bit(RXRPC_CALL_EV_POST_ACCEPT, &call->events);
David Howells17926a72007-04-26 15:48:28 -07001106 read_unlock(&call->state_lock);
1107 }
1108
1109 spin_unlock_bh(&call->lock);
David Howells4c198ad2016-03-04 15:53:46 +00001110 if (!test_bit(RXRPC_CALL_EV_POST_ACCEPT, &call->events))
David Howells17926a72007-04-26 15:48:28 -07001111 goto maybe_reschedule;
1112 }
1113
1114 /* post a notification of an acceptable connection to the app */
David Howells4c198ad2016-03-04 15:53:46 +00001115 if (test_bit(RXRPC_CALL_EV_POST_ACCEPT, &call->events)) {
David Howells17926a72007-04-26 15:48:28 -07001116 _debug("post accept");
1117 if (rxrpc_post_message(call, RXRPC_SKB_MARK_NEW_CALL,
1118 0, false) < 0)
1119 goto no_mem;
David Howells4c198ad2016-03-04 15:53:46 +00001120 clear_bit(RXRPC_CALL_EV_POST_ACCEPT, &call->events);
David Howells17926a72007-04-26 15:48:28 -07001121 goto maybe_reschedule;
1122 }
1123
1124 /* handle incoming call acceptance */
David Howells4c198ad2016-03-04 15:53:46 +00001125 if (test_and_clear_bit(RXRPC_CALL_EV_ACCEPTED, &call->events)) {
David Howells17926a72007-04-26 15:48:28 -07001126 _debug("accepted");
1127 ASSERTCMP(call->rx_data_post, ==, 0);
1128 call->rx_data_post = 1;
1129 read_lock_bh(&call->state_lock);
1130 if (call->state < RXRPC_CALL_COMPLETE)
David Howells4c198ad2016-03-04 15:53:46 +00001131 set_bit(RXRPC_CALL_EV_DRAIN_RX_OOS, &call->events);
David Howells17926a72007-04-26 15:48:28 -07001132 read_unlock_bh(&call->state_lock);
1133 }
1134
1135 /* drain the out of sequence received packet queue into the packet Rx
1136 * queue */
David Howells4c198ad2016-03-04 15:53:46 +00001137 if (test_and_clear_bit(RXRPC_CALL_EV_DRAIN_RX_OOS, &call->events)) {
David Howells17926a72007-04-26 15:48:28 -07001138 while (call->rx_data_post == call->rx_first_oos)
1139 if (rxrpc_drain_rx_oos_queue(call) < 0)
1140 break;
1141 goto maybe_reschedule;
1142 }
1143
David Howellse653cfe2016-04-04 14:00:38 +01001144 if (test_bit(RXRPC_CALL_EV_RELEASE, &call->events)) {
1145 rxrpc_release_call(call);
1146 clear_bit(RXRPC_CALL_EV_RELEASE, &call->events);
1147 }
1148
David Howells17926a72007-04-26 15:48:28 -07001149 /* other events may have been raised since we started checking */
1150 goto maybe_reschedule;
1151
1152send_ACK_with_skew:
1153 ack.maxSkew = htons(atomic_read(&call->conn->hi_serial) -
1154 ntohl(ack.serial));
1155send_ACK:
David Howells85f32272016-04-04 14:00:36 +01001156 mtu = call->conn->params.peer->if_mtu;
1157 mtu -= call->conn->params.peer->hdrsize;
David Howells224711d2007-05-04 12:41:11 -07001158 ackinfo.maxMTU = htonl(mtu);
David Howells817913d2014-02-07 18:10:30 +00001159 ackinfo.rwind = htonl(rxrpc_rx_window_size);
David Howells224711d2007-05-04 12:41:11 -07001160
1161 /* permit the peer to send us jumbo packets if it wants to */
David Howells817913d2014-02-07 18:10:30 +00001162 ackinfo.rxMTU = htonl(rxrpc_rx_mtu);
1163 ackinfo.jumbo_max = htonl(rxrpc_rx_jumbo_max);
David Howells224711d2007-05-04 12:41:11 -07001164
David Howells0d12f8a2016-03-04 15:53:46 +00001165 serial = atomic_inc_return(&call->conn->serial);
1166 whdr.serial = htonl(serial);
David Howells17926a72007-04-26 15:48:28 -07001167 _proto("Tx ACK %%%u { m=%hu f=#%u p=#%u s=%%%u r=%s n=%u }",
David Howells0d12f8a2016-03-04 15:53:46 +00001168 serial,
David Howells17926a72007-04-26 15:48:28 -07001169 ntohs(ack.maxSkew),
1170 ntohl(ack.firstPacket),
1171 ntohl(ack.previousPacket),
1172 ntohl(ack.serial),
Dan Carpenter08d4d212014-01-20 13:28:59 +03001173 rxrpc_acks(ack.reason),
David Howells17926a72007-04-26 15:48:28 -07001174 ack.nAcks);
1175
1176 del_timer_sync(&call->ack_timer);
1177 if (ack.nAcks > 0)
1178 set_bit(RXRPC_CALL_TX_SOFT_ACK, &call->flags);
1179 goto send_message_2;
1180
1181send_message:
1182 _debug("send message");
1183
David Howells0d12f8a2016-03-04 15:53:46 +00001184 serial = atomic_inc_return(&call->conn->serial);
1185 whdr.serial = htonl(serial);
1186 _proto("Tx %s %%%u", rxrpc_pkts[whdr.type], serial);
David Howells17926a72007-04-26 15:48:28 -07001187send_message_2:
1188
1189 len = iov[0].iov_len;
1190 ioc = 1;
1191 if (iov[4].iov_len) {
1192 ioc = 5;
1193 len += iov[4].iov_len;
1194 len += iov[3].iov_len;
1195 len += iov[2].iov_len;
1196 len += iov[1].iov_len;
1197 } else if (iov[3].iov_len) {
1198 ioc = 4;
1199 len += iov[3].iov_len;
1200 len += iov[2].iov_len;
1201 len += iov[1].iov_len;
1202 } else if (iov[2].iov_len) {
1203 ioc = 3;
1204 len += iov[2].iov_len;
1205 len += iov[1].iov_len;
1206 } else if (iov[1].iov_len) {
1207 ioc = 2;
1208 len += iov[1].iov_len;
1209 }
1210
David Howells85f32272016-04-04 14:00:36 +01001211 ret = kernel_sendmsg(call->conn->params.local->socket,
David Howells17926a72007-04-26 15:48:28 -07001212 &msg, iov, ioc, len);
1213 if (ret < 0) {
1214 _debug("sendmsg failed: %d", ret);
1215 read_lock_bh(&call->state_lock);
1216 if (call->state < RXRPC_CALL_DEAD)
David Howells651350d2007-04-26 15:50:17 -07001217 rxrpc_queue_call(call);
David Howells17926a72007-04-26 15:48:28 -07001218 read_unlock_bh(&call->state_lock);
1219 goto error;
1220 }
1221
1222 switch (genbit) {
David Howells4c198ad2016-03-04 15:53:46 +00001223 case RXRPC_CALL_EV_ABORT:
David Howells17926a72007-04-26 15:48:28 -07001224 clear_bit(genbit, &call->events);
David Howells4c198ad2016-03-04 15:53:46 +00001225 clear_bit(RXRPC_CALL_EV_RCVD_ABORT, &call->events);
David Howells17926a72007-04-26 15:48:28 -07001226 goto kill_ACKs;
1227
David Howells4c198ad2016-03-04 15:53:46 +00001228 case RXRPC_CALL_EV_ACK_FINAL:
David Howells17926a72007-04-26 15:48:28 -07001229 write_lock_bh(&call->state_lock);
1230 if (call->state == RXRPC_CALL_CLIENT_FINAL_ACK)
1231 call->state = RXRPC_CALL_COMPLETE;
1232 write_unlock_bh(&call->state_lock);
1233 goto kill_ACKs;
1234
1235 default:
1236 clear_bit(genbit, &call->events);
1237 switch (call->state) {
1238 case RXRPC_CALL_CLIENT_AWAIT_REPLY:
1239 case RXRPC_CALL_CLIENT_RECV_REPLY:
1240 case RXRPC_CALL_SERVER_RECV_REQUEST:
1241 case RXRPC_CALL_SERVER_ACK_REQUEST:
1242 _debug("start ACK timer");
1243 rxrpc_propose_ACK(call, RXRPC_ACK_DELAY,
1244 call->ackr_serial, false);
1245 default:
1246 break;
1247 }
1248 goto maybe_reschedule;
1249 }
1250
1251kill_ACKs:
1252 del_timer_sync(&call->ack_timer);
David Howells4c198ad2016-03-04 15:53:46 +00001253 if (test_and_clear_bit(RXRPC_CALL_EV_ACK_FINAL, &call->events))
David Howells17926a72007-04-26 15:48:28 -07001254 rxrpc_put_call(call);
David Howells4c198ad2016-03-04 15:53:46 +00001255 clear_bit(RXRPC_CALL_EV_ACK, &call->events);
David Howells17926a72007-04-26 15:48:28 -07001256
1257maybe_reschedule:
1258 if (call->events || !skb_queue_empty(&call->rx_queue)) {
1259 read_lock_bh(&call->state_lock);
1260 if (call->state < RXRPC_CALL_DEAD)
David Howells651350d2007-04-26 15:50:17 -07001261 rxrpc_queue_call(call);
David Howells17926a72007-04-26 15:48:28 -07001262 read_unlock_bh(&call->state_lock);
1263 }
1264
1265 /* don't leave aborted connections on the accept queue */
1266 if (call->state >= RXRPC_CALL_COMPLETE &&
1267 !list_empty(&call->accept_link)) {
1268 _debug("X unlinking once-pending call %p { e=%lx f=%lx c=%x }",
David Howells19ffa012016-04-04 14:00:36 +01001269 call, call->events, call->flags, call->conn->proto.cid);
David Howells17926a72007-04-26 15:48:28 -07001270
1271 read_lock_bh(&call->state_lock);
1272 if (!test_bit(RXRPC_CALL_RELEASED, &call->flags) &&
David Howells4c198ad2016-03-04 15:53:46 +00001273 !test_and_set_bit(RXRPC_CALL_EV_RELEASE, &call->events))
David Howells651350d2007-04-26 15:50:17 -07001274 rxrpc_queue_call(call);
David Howells17926a72007-04-26 15:48:28 -07001275 read_unlock_bh(&call->state_lock);
1276 }
1277
1278error:
David Howells17926a72007-04-26 15:48:28 -07001279 kfree(acks);
1280
1281 /* because we don't want two CPUs both processing the work item for one
1282 * call at the same time, we use a flag to note when it's busy; however
1283 * this means there's a race between clearing the flag and setting the
1284 * work pending bit and the work item being processed again */
1285 if (call->events && !work_pending(&call->processor)) {
David Howells19ffa012016-04-04 14:00:36 +01001286 _debug("jumpstart %x", call->conn->proto.cid);
David Howells651350d2007-04-26 15:50:17 -07001287 rxrpc_queue_call(call);
David Howells17926a72007-04-26 15:48:28 -07001288 }
1289
1290 _leave("");
1291 return;
1292
1293no_mem:
1294 _debug("out of memory");
1295 goto maybe_reschedule;
1296}