]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - net/rxrpc/call_event.c
rxrpc: Use rxrpc_is_service_call() rather than rxrpc_conn_is_service()
[mirror_ubuntu-bionic-kernel.git] / net / rxrpc / call_event.c
CommitLineData
17926a79
DH
1/* 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
9b6d5398
JP
12#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13
17926a79
DH
14#include <linux/module.h>
15#include <linux/circ_buf.h>
16#include <linux/net.h>
17#include <linux/skbuff.h>
5a0e3ad6 18#include <linux/slab.h>
17926a79
DH
19#include <linux/udp.h>
20#include <net/sock.h>
21#include <net/af_rxrpc.h>
22#include "ar-internal.h"
23
17926a79
DH
24/*
25 * propose an ACK be sent
26 */
4e36a95e 27void __rxrpc_propose_ACK(struct rxrpc_call *call, u8 ack_reason,
563ea7d5 28 u16 skew, u32 serial, bool immediate)
17926a79
DH
29{
30 unsigned long expiry;
31 s8 prior = rxrpc_ack_priority[ack_reason];
32
33 ASSERTCMP(prior, >, 0);
34
35 _enter("{%d},%s,%%%x,%u",
0d12f8a4 36 call->debug_id, rxrpc_acks(ack_reason), serial, immediate);
17926a79
DH
37
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]) {
563ea7d5
DH
47 if (prior <= 4) {
48 call->ackr_skew = skew;
17926a79 49 call->ackr_serial = serial;
563ea7d5 50 }
17926a79
DH
51 if (immediate)
52 goto cancel_timer;
53 return;
54 }
55
56 call->ackr_reason = ack_reason;
57 call->ackr_serial = serial;
58
59 switch (ack_reason) {
60 case RXRPC_ACK_DELAY:
61 _debug("run delay timer");
5873c083
DH
62 expiry = rxrpc_soft_ack_delay;
63 goto run_timer;
17926a79
DH
64
65 case RXRPC_ACK_IDLE:
66 if (!immediate) {
67 _debug("run defer timer");
5873c083 68 expiry = rxrpc_idle_ack_delay;
17926a79
DH
69 goto run_timer;
70 }
71 goto cancel_timer;
72
73 case RXRPC_ACK_REQUESTED:
5873c083
DH
74 expiry = rxrpc_requested_ack_delay;
75 if (!expiry)
17926a79 76 goto cancel_timer;
0d12f8a4 77 if (!immediate || serial == 1) {
17926a79 78 _debug("run defer timer");
17926a79
DH
79 goto run_timer;
80 }
81
82 default:
83 _debug("immediate ACK");
84 goto cancel_timer;
85 }
86
87run_timer:
88 expiry += jiffies;
89 if (!timer_pending(&call->ack_timer) ||
90 time_after(call->ack_timer.expires, expiry))
91 mod_timer(&call->ack_timer, expiry);
92 return;
93
94cancel_timer:
0d12f8a4 95 _debug("cancel timer %%%u", serial);
17926a79
DH
96 try_to_del_timer_sync(&call->ack_timer);
97 read_lock_bh(&call->state_lock);
f5c17aae 98 if (call->state < RXRPC_CALL_COMPLETE &&
4c198ad1 99 !test_and_set_bit(RXRPC_CALL_EV_ACK, &call->events))
651350d1 100 rxrpc_queue_call(call);
17926a79
DH
101 read_unlock_bh(&call->state_lock);
102}
103
104/*
105 * propose an ACK be sent, locking the call structure
106 */
4e36a95e 107void rxrpc_propose_ACK(struct rxrpc_call *call, u8 ack_reason,
563ea7d5 108 u16 skew, u32 serial, bool immediate)
17926a79
DH
109{
110 s8 prior = rxrpc_ack_priority[ack_reason];
111
112 if (prior > rxrpc_ack_priority[call->ackr_reason]) {
113 spin_lock_bh(&call->lock);
563ea7d5 114 __rxrpc_propose_ACK(call, ack_reason, skew, serial, immediate);
17926a79
DH
115 spin_unlock_bh(&call->lock);
116 }
117}
118
119/*
120 * set the resend timer
121 */
122static void rxrpc_set_resend(struct rxrpc_call *call, u8 resend,
123 unsigned long resend_at)
124{
125 read_lock_bh(&call->state_lock);
f5c17aae 126 if (call->state == RXRPC_CALL_COMPLETE)
17926a79
DH
127 resend = 0;
128
129 if (resend & 1) {
130 _debug("SET RESEND");
4c198ad1 131 set_bit(RXRPC_CALL_EV_RESEND, &call->events);
17926a79
DH
132 }
133
134 if (resend & 2) {
135 _debug("MODIFY RESEND TIMER");
136 set_bit(RXRPC_CALL_RUN_RTIMER, &call->flags);
137 mod_timer(&call->resend_timer, resend_at);
138 } else {
139 _debug("KILL RESEND TIMER");
140 del_timer_sync(&call->resend_timer);
4c198ad1 141 clear_bit(RXRPC_CALL_EV_RESEND_TIMER, &call->events);
17926a79
DH
142 clear_bit(RXRPC_CALL_RUN_RTIMER, &call->flags);
143 }
144 read_unlock_bh(&call->state_lock);
145}
146
147/*
148 * resend packets
149 */
150static void rxrpc_resend(struct rxrpc_call *call)
151{
0d12f8a4 152 struct rxrpc_wire_header *whdr;
17926a79 153 struct rxrpc_skb_priv *sp;
17926a79
DH
154 struct sk_buff *txb;
155 unsigned long *p_txb, resend_at;
c03ae533
FW
156 bool stop;
157 int loop;
17926a79
DH
158 u8 resend;
159
160 _enter("{%d,%d,%d,%d},",
161 call->acks_hard, call->acks_unacked,
162 atomic_read(&call->sequence),
163 CIRC_CNT(call->acks_head, call->acks_tail, call->acks_winsz));
164
c03ae533 165 stop = false;
17926a79
DH
166 resend = 0;
167 resend_at = 0;
168
169 for (loop = call->acks_tail;
170 loop != call->acks_head || stop;
171 loop = (loop + 1) & (call->acks_winsz - 1)
172 ) {
173 p_txb = call->acks_window + loop;
174 smp_read_barrier_depends();
175 if (*p_txb & 1)
176 continue;
177
178 txb = (struct sk_buff *) *p_txb;
179 sp = rxrpc_skb(txb);
180
181 if (sp->need_resend) {
3db1cd5c 182 sp->need_resend = false;
17926a79
DH
183
184 /* each Tx packet has a new serial number */
0d12f8a4 185 sp->hdr.serial = atomic_inc_return(&call->conn->serial);
17926a79 186
0d12f8a4
DH
187 whdr = (struct rxrpc_wire_header *)txb->head;
188 whdr->serial = htonl(sp->hdr.serial);
17926a79
DH
189
190 _proto("Tx DATA %%%u { #%d }",
0d12f8a4 191 sp->hdr.serial, sp->hdr.seq);
985a5c82 192 if (rxrpc_send_data_packet(call->conn, txb) < 0) {
c03ae533 193 stop = true;
17926a79
DH
194 sp->resend_at = jiffies + 3;
195 } else {
45025bce
DH
196 if (rxrpc_is_client_call(call))
197 rxrpc_expose_client_call(call);
17926a79 198 sp->resend_at =
765dd3bb 199 jiffies + rxrpc_resend_timeout;
17926a79
DH
200 }
201 }
202
203 if (time_after_eq(jiffies + 1, sp->resend_at)) {
3db1cd5c 204 sp->need_resend = true;
17926a79
DH
205 resend |= 1;
206 } else if (resend & 2) {
207 if (time_before(sp->resend_at, resend_at))
208 resend_at = sp->resend_at;
209 } else {
210 resend_at = sp->resend_at;
211 resend |= 2;
212 }
213 }
214
215 rxrpc_set_resend(call, resend, resend_at);
216 _leave("");
217}
218
219/*
220 * handle resend timer expiry
221 */
222static void rxrpc_resend_timer(struct rxrpc_call *call)
223{
224 struct rxrpc_skb_priv *sp;
225 struct sk_buff *txb;
226 unsigned long *p_txb, resend_at;
227 int loop;
228 u8 resend;
229
230 _enter("%d,%d,%d",
231 call->acks_tail, call->acks_unacked, call->acks_head);
232
f5c17aae 233 if (call->state == RXRPC_CALL_COMPLETE)
3b5bac2b
DH
234 return;
235
17926a79
DH
236 resend = 0;
237 resend_at = 0;
238
239 for (loop = call->acks_unacked;
240 loop != call->acks_head;
241 loop = (loop + 1) & (call->acks_winsz - 1)
242 ) {
243 p_txb = call->acks_window + loop;
244 smp_read_barrier_depends();
245 txb = (struct sk_buff *) (*p_txb & ~1);
246 sp = rxrpc_skb(txb);
247
248 ASSERT(!(*p_txb & 1));
249
250 if (sp->need_resend) {
251 ;
252 } else if (time_after_eq(jiffies + 1, sp->resend_at)) {
3db1cd5c 253 sp->need_resend = true;
17926a79
DH
254 resend |= 1;
255 } else if (resend & 2) {
256 if (time_before(sp->resend_at, resend_at))
257 resend_at = sp->resend_at;
258 } else {
259 resend_at = sp->resend_at;
260 resend |= 2;
261 }
262 }
263
264 rxrpc_set_resend(call, resend, resend_at);
265 _leave("");
266}
267
268/*
269 * process soft ACKs of our transmitted packets
270 * - these indicate packets the peer has or has not received, but hasn't yet
271 * given to the consumer, and so can still be discarded and re-requested
272 */
273static int rxrpc_process_soft_ACKs(struct rxrpc_call *call,
274 struct rxrpc_ackpacket *ack,
275 struct sk_buff *skb)
276{
277 struct rxrpc_skb_priv *sp;
278 struct sk_buff *txb;
279 unsigned long *p_txb, resend_at;
280 int loop;
281 u8 sacks[RXRPC_MAXACKS], resend;
282
283 _enter("{%d,%d},{%d},",
284 call->acks_hard,
285 CIRC_CNT(call->acks_head, call->acks_tail, call->acks_winsz),
286 ack->nAcks);
287
288 if (skb_copy_bits(skb, 0, sacks, ack->nAcks) < 0)
289 goto protocol_error;
290
291 resend = 0;
292 resend_at = 0;
293 for (loop = 0; loop < ack->nAcks; loop++) {
294 p_txb = call->acks_window;
295 p_txb += (call->acks_tail + loop) & (call->acks_winsz - 1);
296 smp_read_barrier_depends();
297 txb = (struct sk_buff *) (*p_txb & ~1);
298 sp = rxrpc_skb(txb);
299
300 switch (sacks[loop]) {
301 case RXRPC_ACK_TYPE_ACK:
3db1cd5c 302 sp->need_resend = false;
17926a79
DH
303 *p_txb |= 1;
304 break;
305 case RXRPC_ACK_TYPE_NACK:
3db1cd5c 306 sp->need_resend = true;
17926a79
DH
307 *p_txb &= ~1;
308 resend = 1;
309 break;
310 default:
311 _debug("Unsupported ACK type %d", sacks[loop]);
312 goto protocol_error;
313 }
314 }
315
316 smp_mb();
317 call->acks_unacked = (call->acks_tail + loop) & (call->acks_winsz - 1);
318
319 /* anything not explicitly ACK'd is implicitly NACK'd, but may just not
320 * have been received or processed yet by the far end */
321 for (loop = call->acks_unacked;
322 loop != call->acks_head;
323 loop = (loop + 1) & (call->acks_winsz - 1)
324 ) {
325 p_txb = call->acks_window + loop;
326 smp_read_barrier_depends();
327 txb = (struct sk_buff *) (*p_txb & ~1);
328 sp = rxrpc_skb(txb);
329
330 if (*p_txb & 1) {
331 /* packet must have been discarded */
3db1cd5c 332 sp->need_resend = true;
17926a79
DH
333 *p_txb &= ~1;
334 resend |= 1;
335 } else if (sp->need_resend) {
336 ;
337 } else if (time_after_eq(jiffies + 1, sp->resend_at)) {
3db1cd5c 338 sp->need_resend = true;
17926a79
DH
339 resend |= 1;
340 } else if (resend & 2) {
341 if (time_before(sp->resend_at, resend_at))
342 resend_at = sp->resend_at;
343 } else {
344 resend_at = sp->resend_at;
345 resend |= 2;
346 }
347 }
348
349 rxrpc_set_resend(call, resend, resend_at);
350 _leave(" = 0");
351 return 0;
352
353protocol_error:
354 _leave(" = -EPROTO");
355 return -EPROTO;
356}
357
358/*
359 * discard hard-ACK'd packets from the Tx window
360 */
361static void rxrpc_rotate_tx_window(struct rxrpc_call *call, u32 hard)
362{
17926a79
DH
363 unsigned long _skb;
364 int tail = call->acks_tail, old_tail;
365 int win = CIRC_CNT(call->acks_head, tail, call->acks_winsz);
366
8f7e6e75 367 _enter("{%u,%u},%u", call->acks_hard, win, hard);
17926a79
DH
368
369 ASSERTCMP(hard - call->acks_hard, <=, win);
370
371 while (call->acks_hard < hard) {
372 smp_read_barrier_depends();
373 _skb = call->acks_window[tail] & ~1;
17926a79
DH
374 rxrpc_free_skb((struct sk_buff *) _skb);
375 old_tail = tail;
376 tail = (tail + 1) & (call->acks_winsz - 1);
377 call->acks_tail = tail;
378 if (call->acks_unacked == old_tail)
379 call->acks_unacked = tail;
380 call->acks_hard++;
381 }
382
45025bce 383 wake_up(&call->waitq);
17926a79
DH
384}
385
386/*
387 * clear the Tx window in the event of a failure
388 */
389static void rxrpc_clear_tx_window(struct rxrpc_call *call)
390{
391 rxrpc_rotate_tx_window(call, atomic_read(&call->sequence));
392}
393
394/*
395 * drain the out of sequence received packet queue into the packet Rx queue
396 */
397static int rxrpc_drain_rx_oos_queue(struct rxrpc_call *call)
398{
399 struct rxrpc_skb_priv *sp;
400 struct sk_buff *skb;
401 bool terminal;
402 int ret;
403
404 _enter("{%d,%d}", call->rx_data_post, call->rx_first_oos);
405
406 spin_lock_bh(&call->lock);
407
408 ret = -ECONNRESET;
409 if (test_bit(RXRPC_CALL_RELEASED, &call->flags))
410 goto socket_unavailable;
411
412 skb = skb_dequeue(&call->rx_oos_queue);
413 if (skb) {
df844fd4 414 rxrpc_see_skb(skb);
17926a79
DH
415 sp = rxrpc_skb(skb);
416
417 _debug("drain OOS packet %d [%d]",
0d12f8a4 418 sp->hdr.seq, call->rx_first_oos);
17926a79 419
0d12f8a4 420 if (sp->hdr.seq != call->rx_first_oos) {
17926a79 421 skb_queue_head(&call->rx_oos_queue, skb);
0d12f8a4 422 call->rx_first_oos = rxrpc_skb(skb)->hdr.seq;
17926a79
DH
423 _debug("requeue %p {%u}", skb, call->rx_first_oos);
424 } else {
425 skb->mark = RXRPC_SKB_MARK_DATA;
426 terminal = ((sp->hdr.flags & RXRPC_LAST_PACKET) &&
427 !(sp->hdr.flags & RXRPC_CLIENT_INITIATED));
428 ret = rxrpc_queue_rcv_skb(call, skb, true, terminal);
429 BUG_ON(ret < 0);
430 _debug("drain #%u", call->rx_data_post);
431 call->rx_data_post++;
432
433 /* find out what the next packet is */
434 skb = skb_peek(&call->rx_oos_queue);
df844fd4 435 rxrpc_see_skb(skb);
17926a79 436 if (skb)
0d12f8a4 437 call->rx_first_oos = rxrpc_skb(skb)->hdr.seq;
17926a79
DH
438 else
439 call->rx_first_oos = 0;
440 _debug("peek %p {%u}", skb, call->rx_first_oos);
441 }
442 }
443
444 ret = 0;
445socket_unavailable:
446 spin_unlock_bh(&call->lock);
447 _leave(" = %d", ret);
448 return ret;
449}
450
451/*
452 * insert an out of sequence packet into the buffer
453 */
454static void rxrpc_insert_oos_packet(struct rxrpc_call *call,
455 struct sk_buff *skb)
456{
457 struct rxrpc_skb_priv *sp, *psp;
458 struct sk_buff *p;
459 u32 seq;
460
461 sp = rxrpc_skb(skb);
0d12f8a4 462 seq = sp->hdr.seq;
17926a79
DH
463 _enter(",,{%u}", seq);
464
465 skb->destructor = rxrpc_packet_destructor;
466 ASSERTCMP(sp->call, ==, NULL);
467 sp->call = call;
e34d4234 468 rxrpc_get_call_for_skb(call, skb);
17926a79
DH
469
470 /* insert into the buffer in sequence order */
471 spin_lock_bh(&call->lock);
472
473 skb_queue_walk(&call->rx_oos_queue, p) {
474 psp = rxrpc_skb(p);
0d12f8a4
DH
475 if (psp->hdr.seq > seq) {
476 _debug("insert oos #%u before #%u", seq, psp->hdr.seq);
17926a79
DH
477 skb_insert(p, skb, &call->rx_oos_queue);
478 goto inserted;
479 }
480 }
481
482 _debug("append oos #%u", seq);
483 skb_queue_tail(&call->rx_oos_queue, skb);
484inserted:
485
486 /* we might now have a new front to the queue */
487 if (call->rx_first_oos == 0 || seq < call->rx_first_oos)
488 call->rx_first_oos = seq;
489
490 read_lock(&call->state_lock);
491 if (call->state < RXRPC_CALL_COMPLETE &&
492 call->rx_data_post == call->rx_first_oos) {
493 _debug("drain rx oos now");
4c198ad1 494 set_bit(RXRPC_CALL_EV_DRAIN_RX_OOS, &call->events);
17926a79
DH
495 }
496 read_unlock(&call->state_lock);
497
498 spin_unlock_bh(&call->lock);
499 _leave(" [stored #%u]", call->rx_first_oos);
500}
501
502/*
503 * clear the Tx window on final ACK reception
504 */
505static void rxrpc_zap_tx_window(struct rxrpc_call *call)
506{
507 struct rxrpc_skb_priv *sp;
508 struct sk_buff *skb;
509 unsigned long _skb, *acks_window;
4e36a95e 510 u8 winsz = call->acks_winsz;
17926a79
DH
511 int tail;
512
513 acks_window = call->acks_window;
514 call->acks_window = NULL;
515
516 while (CIRC_CNT(call->acks_head, call->acks_tail, winsz) > 0) {
517 tail = call->acks_tail;
518 smp_read_barrier_depends();
519 _skb = acks_window[tail] & ~1;
520 smp_mb();
521 call->acks_tail = (call->acks_tail + 1) & (winsz - 1);
522
523 skb = (struct sk_buff *) _skb;
524 sp = rxrpc_skb(skb);
0d12f8a4 525 _debug("+++ clear Tx %u", sp->hdr.seq);
17926a79
DH
526 rxrpc_free_skb(skb);
527 }
528
529 kfree(acks_window);
530}
531
224711df
DH
532/*
533 * process the extra information that may be appended to an ACK packet
534 */
535static void rxrpc_extract_ackinfo(struct rxrpc_call *call, struct sk_buff *skb,
95c96174 536 unsigned int latest, int nAcks)
224711df
DH
537{
538 struct rxrpc_ackinfo ackinfo;
539 struct rxrpc_peer *peer;
95c96174 540 unsigned int mtu;
224711df
DH
541
542 if (skb_copy_bits(skb, nAcks + 3, &ackinfo, sizeof(ackinfo)) < 0) {
543 _leave(" [no ackinfo]");
544 return;
545 }
546
547 _proto("Rx ACK %%%u Info { rx=%u max=%u rwin=%u jm=%u }",
548 latest,
549 ntohl(ackinfo.rxMTU), ntohl(ackinfo.maxMTU),
550 ntohl(ackinfo.rwind), ntohl(ackinfo.jumbo_max));
551
552 mtu = min(ntohl(ackinfo.rxMTU), ntohl(ackinfo.maxMTU));
553
ea82aaec 554 peer = call->peer;
224711df
DH
555 if (mtu < peer->maxdata) {
556 spin_lock_bh(&peer->lock);
557 peer->maxdata = mtu;
558 peer->mtu = mtu + peer->hdrsize;
559 spin_unlock_bh(&peer->lock);
560 _net("Net MTU %u (maxdata %u)", peer->mtu, peer->maxdata);
561 }
562}
563
17926a79
DH
564/*
565 * process packets in the reception queue
566 */
567static int rxrpc_process_rx_queue(struct rxrpc_call *call,
568 u32 *_abort_code)
569{
570 struct rxrpc_ackpacket ack;
571 struct rxrpc_skb_priv *sp;
572 struct sk_buff *skb;
573 bool post_ACK;
574 int latest;
575 u32 hard, tx;
576
577 _enter("");
578
579process_further:
580 skb = skb_dequeue(&call->rx_queue);
581 if (!skb)
582 return -EAGAIN;
583
df844fd4 584 rxrpc_see_skb(skb);
17926a79
DH
585 _net("deferred skb %p", skb);
586
587 sp = rxrpc_skb(skb);
588
589 _debug("process %s [st %d]", rxrpc_pkts[sp->hdr.type], call->state);
590
591 post_ACK = false;
592
593 switch (sp->hdr.type) {
594 /* data packets that wind up here have been received out of
595 * order, need security processing or are jumbo packets */
596 case RXRPC_PACKET_TYPE_DATA:
0d12f8a4 597 _proto("OOSQ DATA %%%u { #%u }", sp->hdr.serial, sp->hdr.seq);
17926a79
DH
598
599 /* secured packets must be verified and possibly decrypted */
e0e4d82f
DH
600 if (call->conn->security->verify_packet(call, skb,
601 _abort_code) < 0)
17926a79
DH
602 goto protocol_error;
603
604 rxrpc_insert_oos_packet(call, skb);
605 goto process_further;
606
607 /* partial ACK to process */
608 case RXRPC_PACKET_TYPE_ACK:
609 if (skb_copy_bits(skb, 0, &ack, sizeof(ack)) < 0) {
610 _debug("extraction failure");
611 goto protocol_error;
612 }
613 if (!skb_pull(skb, sizeof(ack)))
614 BUG();
615
0d12f8a4 616 latest = sp->hdr.serial;
17926a79
DH
617 hard = ntohl(ack.firstPacket);
618 tx = atomic_read(&call->sequence);
619
620 _proto("Rx ACK %%%u { m=%hu f=#%u p=#%u s=%%%u r=%s n=%u }",
621 latest,
622 ntohs(ack.maxSkew),
623 hard,
624 ntohl(ack.previousPacket),
625 ntohl(ack.serial),
08d4d217 626 rxrpc_acks(ack.reason),
17926a79
DH
627 ack.nAcks);
628
224711df
DH
629 rxrpc_extract_ackinfo(call, skb, latest, ack.nAcks);
630
17926a79
DH
631 if (ack.reason == RXRPC_ACK_PING) {
632 _proto("Rx ACK %%%u PING Request", latest);
633 rxrpc_propose_ACK(call, RXRPC_ACK_PING_RESPONSE,
563ea7d5 634 skb->priority, sp->hdr.serial, true);
17926a79
DH
635 }
636
637 /* discard any out-of-order or duplicate ACKs */
638 if (latest - call->acks_latest <= 0) {
639 _debug("discard ACK %d <= %d",
640 latest, call->acks_latest);
641 goto discard;
642 }
643 call->acks_latest = latest;
644
645 if (call->state != RXRPC_CALL_CLIENT_SEND_REQUEST &&
646 call->state != RXRPC_CALL_CLIENT_AWAIT_REPLY &&
647 call->state != RXRPC_CALL_SERVER_SEND_REPLY &&
648 call->state != RXRPC_CALL_SERVER_AWAIT_ACK)
649 goto discard;
650
651 _debug("Tx=%d H=%u S=%d", tx, call->acks_hard, call->state);
652
653 if (hard > 0) {
654 if (hard - 1 > tx) {
655 _debug("hard-ACK'd packet %d not transmitted"
656 " (%d top)",
657 hard - 1, tx);
658 goto protocol_error;
659 }
660
661 if ((call->state == RXRPC_CALL_CLIENT_AWAIT_REPLY ||
662 call->state == RXRPC_CALL_SERVER_AWAIT_ACK) &&
33c40e24
DH
663 hard > tx) {
664 call->acks_hard = tx;
17926a79 665 goto all_acked;
33c40e24 666 }
17926a79
DH
667
668 smp_rmb();
669 rxrpc_rotate_tx_window(call, hard - 1);
670 }
671
672 if (ack.nAcks > 0) {
673 if (hard - 1 + ack.nAcks > tx) {
674 _debug("soft-ACK'd packet %d+%d not"
675 " transmitted (%d top)",
676 hard - 1, ack.nAcks, tx);
677 goto protocol_error;
678 }
679
680 if (rxrpc_process_soft_ACKs(call, &ack, skb) < 0)
681 goto protocol_error;
682 }
683 goto discard;
684
685 /* complete ACK to process */
686 case RXRPC_PACKET_TYPE_ACKALL:
687 goto all_acked;
688
689 /* abort and busy are handled elsewhere */
690 case RXRPC_PACKET_TYPE_BUSY:
691 case RXRPC_PACKET_TYPE_ABORT:
692 BUG();
693
694 /* connection level events - also handled elsewhere */
695 case RXRPC_PACKET_TYPE_CHALLENGE:
696 case RXRPC_PACKET_TYPE_RESPONSE:
697 case RXRPC_PACKET_TYPE_DEBUG:
698 BUG();
699 }
700
701 /* if we've had a hard ACK that covers all the packets we've sent, then
702 * that ends that phase of the operation */
703all_acked:
704 write_lock_bh(&call->state_lock);
705 _debug("ack all %d", call->state);
706
707 switch (call->state) {
708 case RXRPC_CALL_CLIENT_AWAIT_REPLY:
709 call->state = RXRPC_CALL_CLIENT_RECV_REPLY;
710 break;
711 case RXRPC_CALL_SERVER_AWAIT_ACK:
712 _debug("srv complete");
f5c17aae 713 __rxrpc_call_completed(call);
17926a79
DH
714 post_ACK = true;
715 break;
716 case RXRPC_CALL_CLIENT_SEND_REQUEST:
717 case RXRPC_CALL_SERVER_RECV_REQUEST:
718 goto protocol_error_unlock; /* can't occur yet */
719 default:
720 write_unlock_bh(&call->state_lock);
721 goto discard; /* assume packet left over from earlier phase */
722 }
723
724 write_unlock_bh(&call->state_lock);
725
726 /* if all the packets we sent are hard-ACK'd, then we can discard
727 * whatever we've got left */
728 _debug("clear Tx %d",
729 CIRC_CNT(call->acks_head, call->acks_tail, call->acks_winsz));
730
731 del_timer_sync(&call->resend_timer);
732 clear_bit(RXRPC_CALL_RUN_RTIMER, &call->flags);
4c198ad1 733 clear_bit(RXRPC_CALL_EV_RESEND_TIMER, &call->events);
17926a79
DH
734
735 if (call->acks_window)
736 rxrpc_zap_tx_window(call);
737
738 if (post_ACK) {
739 /* post the final ACK message for userspace to pick up */
740 _debug("post ACK");
741 skb->mark = RXRPC_SKB_MARK_FINAL_ACK;
742 sp->call = call;
e34d4234 743 rxrpc_get_call_for_skb(call, skb);
17926a79
DH
744 spin_lock_bh(&call->lock);
745 if (rxrpc_queue_rcv_skb(call, skb, true, true) < 0)
746 BUG();
747 spin_unlock_bh(&call->lock);
748 goto process_further;
749 }
750
751discard:
752 rxrpc_free_skb(skb);
753 goto process_further;
754
755protocol_error_unlock:
756 write_unlock_bh(&call->state_lock);
757protocol_error:
758 rxrpc_free_skb(skb);
759 _leave(" = -EPROTO");
760 return -EPROTO;
761}
762
763/*
764 * post a message to the socket Rx queue for recvmsg() to pick up
765 */
766static int rxrpc_post_message(struct rxrpc_call *call, u32 mark, u32 error,
767 bool fatal)
768{
769 struct rxrpc_skb_priv *sp;
770 struct sk_buff *skb;
771 int ret;
772
773 _enter("{%d,%lx},%u,%u,%d",
774 call->debug_id, call->flags, mark, error, fatal);
775
776 /* remove timers and things for fatal messages */
777 if (fatal) {
778 del_timer_sync(&call->resend_timer);
779 del_timer_sync(&call->ack_timer);
780 clear_bit(RXRPC_CALL_RUN_RTIMER, &call->flags);
781 }
782
783 if (mark != RXRPC_SKB_MARK_NEW_CALL &&
784 !test_bit(RXRPC_CALL_HAS_USERID, &call->flags)) {
785 _leave("[no userid]");
786 return 0;
787 }
788
789 if (!test_bit(RXRPC_CALL_TERMINAL_MSG, &call->flags)) {
790 skb = alloc_skb(0, GFP_NOFS);
791 if (!skb)
792 return -ENOMEM;
793
794 rxrpc_new_skb(skb);
795
796 skb->mark = mark;
797
798 sp = rxrpc_skb(skb);
799 memset(sp, 0, sizeof(*sp));
800 sp->error = error;
801 sp->call = call;
e34d4234 802 rxrpc_get_call_for_skb(call, skb);
17926a79
DH
803
804 spin_lock_bh(&call->lock);
805 ret = rxrpc_queue_rcv_skb(call, skb, true, fatal);
806 spin_unlock_bh(&call->lock);
163e3cb7 807 BUG_ON(ret < 0);
17926a79
DH
808 }
809
810 return 0;
811}
812
813/*
814 * handle background processing of incoming call packets and ACK / abort
815 * generation
816 */
817void rxrpc_process_call(struct work_struct *work)
818{
819 struct rxrpc_call *call =
820 container_of(work, struct rxrpc_call, processor);
0d12f8a4 821 struct rxrpc_wire_header whdr;
17926a79
DH
822 struct rxrpc_ackpacket ack;
823 struct rxrpc_ackinfo ackinfo;
17926a79
DH
824 struct msghdr msg;
825 struct kvec iov[5];
5b8848d1 826 enum rxrpc_call_event genbit;
17926a79 827 unsigned long bits;
224711df 828 __be32 data, pad;
17926a79 829 size_t len;
5b8848d1 830 int loop, nbit, ioc, ret, mtu;
0d12f8a4 831 u32 serial, abort_code = RX_PROTOCOL_ERROR;
17926a79
DH
832 u8 *acks = NULL;
833
e34d4234
DH
834 rxrpc_see_call(call);
835
17926a79
DH
836 //printk("\n--------------------\n");
837 _enter("{%d,%s,%lx} [%lu]",
838 call->debug_id, rxrpc_call_states[call->state], call->events,
839 (jiffies - call->creation_jif) / (HZ / 10));
840
f9dc5757
DH
841 if (!call->conn)
842 goto skip_msg_init;
843
17926a79
DH
844 /* there's a good chance we're going to have to send a message, so set
845 * one up in advance */
ea82aaec
DH
846 msg.msg_name = &call->peer->srx.transport;
847 msg.msg_namelen = call->peer->srx.transport_len;
17926a79
DH
848 msg.msg_control = NULL;
849 msg.msg_controllen = 0;
850 msg.msg_flags = 0;
851
19ffa01c 852 whdr.epoch = htonl(call->conn->proto.epoch);
0d12f8a4
DH
853 whdr.cid = htonl(call->cid);
854 whdr.callNumber = htonl(call->call_id);
855 whdr.seq = 0;
856 whdr.type = RXRPC_PACKET_TYPE_ACK;
857 whdr.flags = call->conn->out_clientflag;
858 whdr.userStatus = 0;
859 whdr.securityIndex = call->conn->security_ix;
860 whdr._rsvd = 0;
861 whdr.serviceId = htons(call->service_id);
17926a79
DH
862
863 memset(iov, 0, sizeof(iov));
0d12f8a4
DH
864 iov[0].iov_base = &whdr;
865 iov[0].iov_len = sizeof(whdr);
f9dc5757 866skip_msg_init:
17926a79
DH
867
868 /* deal with events of a final nature */
4c198ad1 869 if (test_bit(RXRPC_CALL_EV_RCVD_ERROR, &call->events)) {
f66d7490 870 enum rxrpc_skb_mark mark;
17926a79 871
4c198ad1
DH
872 clear_bit(RXRPC_CALL_EV_CONN_ABORT, &call->events);
873 clear_bit(RXRPC_CALL_EV_REJECT_BUSY, &call->events);
874 clear_bit(RXRPC_CALL_EV_ABORT, &call->events);
17926a79 875
f5c17aae 876 if (call->completion == RXRPC_CALL_NETWORK_ERROR) {
f66d7490 877 mark = RXRPC_SKB_MARK_NET_ERROR;
00b5407e 878 _debug("post net error %d", call->error);
f66d7490
DH
879 } else {
880 mark = RXRPC_SKB_MARK_LOCAL_ERROR;
00b5407e 881 _debug("post net local error %d", call->error);
f66d7490 882 }
17926a79 883
f5c17aae 884 if (rxrpc_post_message(call, mark, call->error, true) < 0)
17926a79 885 goto no_mem;
4c198ad1 886 clear_bit(RXRPC_CALL_EV_RCVD_ERROR, &call->events);
17926a79
DH
887 goto kill_ACKs;
888 }
889
4c198ad1 890 if (test_bit(RXRPC_CALL_EV_CONN_ABORT, &call->events)) {
f5c17aae 891 ASSERTCMP(call->state, ==, RXRPC_CALL_COMPLETE);
17926a79 892
4c198ad1
DH
893 clear_bit(RXRPC_CALL_EV_REJECT_BUSY, &call->events);
894 clear_bit(RXRPC_CALL_EV_ABORT, &call->events);
17926a79
DH
895
896 _debug("post conn abort");
897
898 if (rxrpc_post_message(call, RXRPC_SKB_MARK_LOCAL_ERROR,
f5c17aae 899 call->error, true) < 0)
17926a79 900 goto no_mem;
4c198ad1 901 clear_bit(RXRPC_CALL_EV_CONN_ABORT, &call->events);
17926a79
DH
902 goto kill_ACKs;
903 }
904
4c198ad1 905 if (test_bit(RXRPC_CALL_EV_REJECT_BUSY, &call->events)) {
0d12f8a4 906 whdr.type = RXRPC_PACKET_TYPE_BUSY;
4c198ad1 907 genbit = RXRPC_CALL_EV_REJECT_BUSY;
17926a79
DH
908 goto send_message;
909 }
910
4c198ad1 911 if (test_bit(RXRPC_CALL_EV_ABORT, &call->events)) {
f5c17aae 912 ASSERTCMP(call->state, ==, RXRPC_CALL_COMPLETE);
17926a79
DH
913
914 if (rxrpc_post_message(call, RXRPC_SKB_MARK_LOCAL_ERROR,
f5c17aae 915 call->error, true) < 0)
17926a79 916 goto no_mem;
0d12f8a4 917 whdr.type = RXRPC_PACKET_TYPE_ABORT;
f5c17aae 918 data = htonl(call->abort_code);
17926a79
DH
919 iov[1].iov_base = &data;
920 iov[1].iov_len = sizeof(data);
4c198ad1 921 genbit = RXRPC_CALL_EV_ABORT;
17926a79
DH
922 goto send_message;
923 }
924
4c198ad1
DH
925 if (test_bit(RXRPC_CALL_EV_ACK_FINAL, &call->events)) {
926 genbit = RXRPC_CALL_EV_ACK_FINAL;
224711df
DH
927
928 ack.bufferSpace = htons(8);
929 ack.maxSkew = 0;
930 ack.serial = 0;
931 ack.reason = RXRPC_ACK_IDLE;
932 ack.nAcks = 0;
933 call->ackr_reason = 0;
934
935 spin_lock_bh(&call->lock);
0d12f8a4
DH
936 ack.serial = htonl(call->ackr_serial);
937 ack.previousPacket = htonl(call->ackr_prev_seq);
938 ack.firstPacket = htonl(call->rx_data_eaten + 1);
224711df
DH
939 spin_unlock_bh(&call->lock);
940
941 pad = 0;
942
943 iov[1].iov_base = &ack;
944 iov[1].iov_len = sizeof(ack);
945 iov[2].iov_base = &pad;
946 iov[2].iov_len = 3;
947 iov[3].iov_base = &ackinfo;
948 iov[3].iov_len = sizeof(ackinfo);
949 goto send_ACK;
17926a79
DH
950 }
951
4c198ad1
DH
952 if (call->events & ((1 << RXRPC_CALL_EV_RCVD_BUSY) |
953 (1 << RXRPC_CALL_EV_RCVD_ABORT))
17926a79
DH
954 ) {
955 u32 mark;
956
4c198ad1 957 if (test_bit(RXRPC_CALL_EV_RCVD_ABORT, &call->events))
17926a79
DH
958 mark = RXRPC_SKB_MARK_REMOTE_ABORT;
959 else
960 mark = RXRPC_SKB_MARK_BUSY;
961
962 _debug("post abort/busy");
963 rxrpc_clear_tx_window(call);
964 if (rxrpc_post_message(call, mark, ECONNABORTED, true) < 0)
965 goto no_mem;
966
4c198ad1
DH
967 clear_bit(RXRPC_CALL_EV_RCVD_BUSY, &call->events);
968 clear_bit(RXRPC_CALL_EV_RCVD_ABORT, &call->events);
17926a79
DH
969 goto kill_ACKs;
970 }
971
4c198ad1 972 if (test_and_clear_bit(RXRPC_CALL_EV_RCVD_ACKALL, &call->events)) {
17926a79
DH
973 _debug("do implicit ackall");
974 rxrpc_clear_tx_window(call);
975 }
976
4c198ad1 977 if (test_bit(RXRPC_CALL_EV_LIFE_TIMER, &call->events)) {
f5c17aae 978 rxrpc_abort_call(call, RX_CALL_TIMEOUT, ETIME);
17926a79
DH
979
980 _debug("post timeout");
981 if (rxrpc_post_message(call, RXRPC_SKB_MARK_LOCAL_ERROR,
982 ETIME, true) < 0)
983 goto no_mem;
984
4c198ad1 985 clear_bit(RXRPC_CALL_EV_LIFE_TIMER, &call->events);
17926a79
DH
986 goto kill_ACKs;
987 }
988
989 /* deal with assorted inbound messages */
990 if (!skb_queue_empty(&call->rx_queue)) {
f5c17aae
DH
991 ret = rxrpc_process_rx_queue(call, &abort_code);
992 switch (ret) {
17926a79
DH
993 case 0:
994 case -EAGAIN:
995 break;
996 case -ENOMEM:
997 goto no_mem;
998 case -EKEYEXPIRED:
999 case -EKEYREJECTED:
1000 case -EPROTO:
f5c17aae 1001 rxrpc_abort_call(call, abort_code, -ret);
17926a79
DH
1002 goto kill_ACKs;
1003 }
1004 }
1005
1006 /* handle resending */
4c198ad1 1007 if (test_and_clear_bit(RXRPC_CALL_EV_RESEND_TIMER, &call->events))
17926a79 1008 rxrpc_resend_timer(call);
4c198ad1 1009 if (test_and_clear_bit(RXRPC_CALL_EV_RESEND, &call->events))
17926a79
DH
1010 rxrpc_resend(call);
1011
1012 /* consider sending an ordinary ACK */
4c198ad1 1013 if (test_bit(RXRPC_CALL_EV_ACK, &call->events)) {
17926a79
DH
1014 _debug("send ACK: window: %d - %d { %lx }",
1015 call->rx_data_eaten, call->ackr_win_top,
1016 call->ackr_window[0]);
1017
1018 if (call->state > RXRPC_CALL_SERVER_ACK_REQUEST &&
1019 call->ackr_reason != RXRPC_ACK_PING_RESPONSE) {
1020 /* ACK by sending reply DATA packet in this state */
4c198ad1 1021 clear_bit(RXRPC_CALL_EV_ACK, &call->events);
17926a79
DH
1022 goto maybe_reschedule;
1023 }
1024
4c198ad1 1025 genbit = RXRPC_CALL_EV_ACK;
17926a79
DH
1026
1027 acks = kzalloc(call->ackr_win_top - call->rx_data_eaten,
1028 GFP_NOFS);
1029 if (!acks)
1030 goto no_mem;
1031
1032 //hdr.flags = RXRPC_SLOW_START_OK;
1033 ack.bufferSpace = htons(8);
1034 ack.maxSkew = 0;
17926a79 1035
17926a79 1036 spin_lock_bh(&call->lock);
0d12f8a4
DH
1037 ack.reason = call->ackr_reason;
1038 ack.serial = htonl(call->ackr_serial);
1039 ack.previousPacket = htonl(call->ackr_prev_seq);
17926a79
DH
1040 ack.firstPacket = htonl(call->rx_data_eaten + 1);
1041
1042 ack.nAcks = 0;
1043 for (loop = 0; loop < RXRPC_ACKR_WINDOW_ASZ; loop++) {
1044 nbit = loop * BITS_PER_LONG;
1045 for (bits = call->ackr_window[loop]; bits; bits >>= 1
1046 ) {
1047 _debug("- l=%d n=%d b=%lx", loop, nbit, bits);
1048 if (bits & 1) {
1049 acks[nbit] = RXRPC_ACK_TYPE_ACK;
1050 ack.nAcks = nbit + 1;
1051 }
1052 nbit++;
1053 }
1054 }
1055 call->ackr_reason = 0;
1056 spin_unlock_bh(&call->lock);
1057
1058 pad = 0;
1059
1060 iov[1].iov_base = &ack;
1061 iov[1].iov_len = sizeof(ack);
1062 iov[2].iov_base = acks;
1063 iov[2].iov_len = ack.nAcks;
1064 iov[3].iov_base = &pad;
1065 iov[3].iov_len = 3;
1066 iov[4].iov_base = &ackinfo;
1067 iov[4].iov_len = sizeof(ackinfo);
1068
1069 switch (ack.reason) {
1070 case RXRPC_ACK_REQUESTED:
1071 case RXRPC_ACK_DUPLICATE:
1072 case RXRPC_ACK_OUT_OF_SEQUENCE:
1073 case RXRPC_ACK_EXCEEDS_WINDOW:
1074 case RXRPC_ACK_NOSPACE:
1075 case RXRPC_ACK_PING:
1076 case RXRPC_ACK_PING_RESPONSE:
1077 goto send_ACK_with_skew;
1078 case RXRPC_ACK_DELAY:
1079 case RXRPC_ACK_IDLE:
1080 goto send_ACK;
1081 }
1082 }
1083
1084 /* handle completion of security negotiations on an incoming
1085 * connection */
4c198ad1 1086 if (test_and_clear_bit(RXRPC_CALL_EV_SECURED, &call->events)) {
17926a79
DH
1087 _debug("secured");
1088 spin_lock_bh(&call->lock);
1089
1090 if (call->state == RXRPC_CALL_SERVER_SECURING) {
1091 _debug("securing");
30b515f4 1092 write_lock(&call->socket->call_lock);
17926a79 1093 if (!test_bit(RXRPC_CALL_RELEASED, &call->flags) &&
4c198ad1 1094 !test_bit(RXRPC_CALL_EV_RELEASE, &call->events)) {
17926a79
DH
1095 _debug("not released");
1096 call->state = RXRPC_CALL_SERVER_ACCEPTING;
1097 list_move_tail(&call->accept_link,
1098 &call->socket->acceptq);
1099 }
30b515f4 1100 write_unlock(&call->socket->call_lock);
17926a79
DH
1101 read_lock(&call->state_lock);
1102 if (call->state < RXRPC_CALL_COMPLETE)
4c198ad1 1103 set_bit(RXRPC_CALL_EV_POST_ACCEPT, &call->events);
17926a79
DH
1104 read_unlock(&call->state_lock);
1105 }
1106
1107 spin_unlock_bh(&call->lock);
4c198ad1 1108 if (!test_bit(RXRPC_CALL_EV_POST_ACCEPT, &call->events))
17926a79
DH
1109 goto maybe_reschedule;
1110 }
1111
1112 /* post a notification of an acceptable connection to the app */
4c198ad1 1113 if (test_bit(RXRPC_CALL_EV_POST_ACCEPT, &call->events)) {
17926a79
DH
1114 _debug("post accept");
1115 if (rxrpc_post_message(call, RXRPC_SKB_MARK_NEW_CALL,
1116 0, false) < 0)
1117 goto no_mem;
4c198ad1 1118 clear_bit(RXRPC_CALL_EV_POST_ACCEPT, &call->events);
17926a79
DH
1119 goto maybe_reschedule;
1120 }
1121
1122 /* handle incoming call acceptance */
4c198ad1 1123 if (test_and_clear_bit(RXRPC_CALL_EV_ACCEPTED, &call->events)) {
17926a79
DH
1124 _debug("accepted");
1125 ASSERTCMP(call->rx_data_post, ==, 0);
1126 call->rx_data_post = 1;
1127 read_lock_bh(&call->state_lock);
1128 if (call->state < RXRPC_CALL_COMPLETE)
4c198ad1 1129 set_bit(RXRPC_CALL_EV_DRAIN_RX_OOS, &call->events);
17926a79
DH
1130 read_unlock_bh(&call->state_lock);
1131 }
1132
1133 /* drain the out of sequence received packet queue into the packet Rx
1134 * queue */
4c198ad1 1135 if (test_and_clear_bit(RXRPC_CALL_EV_DRAIN_RX_OOS, &call->events)) {
17926a79
DH
1136 while (call->rx_data_post == call->rx_first_oos)
1137 if (rxrpc_drain_rx_oos_queue(call) < 0)
1138 break;
1139 goto maybe_reschedule;
1140 }
1141
e653cfe4
DH
1142 if (test_bit(RXRPC_CALL_EV_RELEASE, &call->events)) {
1143 rxrpc_release_call(call);
1144 clear_bit(RXRPC_CALL_EV_RELEASE, &call->events);
1145 }
1146
17926a79
DH
1147 /* other events may have been raised since we started checking */
1148 goto maybe_reschedule;
1149
1150send_ACK_with_skew:
563ea7d5 1151 ack.maxSkew = htons(call->ackr_skew);
17926a79 1152send_ACK:
ea82aaec
DH
1153 mtu = call->peer->if_mtu;
1154 mtu -= call->peer->hdrsize;
224711df 1155 ackinfo.maxMTU = htonl(mtu);
817913d8 1156 ackinfo.rwind = htonl(rxrpc_rx_window_size);
224711df
DH
1157
1158 /* permit the peer to send us jumbo packets if it wants to */
817913d8
DH
1159 ackinfo.rxMTU = htonl(rxrpc_rx_mtu);
1160 ackinfo.jumbo_max = htonl(rxrpc_rx_jumbo_max);
224711df 1161
0d12f8a4
DH
1162 serial = atomic_inc_return(&call->conn->serial);
1163 whdr.serial = htonl(serial);
17926a79 1164 _proto("Tx ACK %%%u { m=%hu f=#%u p=#%u s=%%%u r=%s n=%u }",
0d12f8a4 1165 serial,
17926a79
DH
1166 ntohs(ack.maxSkew),
1167 ntohl(ack.firstPacket),
1168 ntohl(ack.previousPacket),
1169 ntohl(ack.serial),
08d4d217 1170 rxrpc_acks(ack.reason),
17926a79
DH
1171 ack.nAcks);
1172
1173 del_timer_sync(&call->ack_timer);
1174 if (ack.nAcks > 0)
1175 set_bit(RXRPC_CALL_TX_SOFT_ACK, &call->flags);
1176 goto send_message_2;
1177
1178send_message:
1179 _debug("send message");
1180
0d12f8a4
DH
1181 serial = atomic_inc_return(&call->conn->serial);
1182 whdr.serial = htonl(serial);
1183 _proto("Tx %s %%%u", rxrpc_pkts[whdr.type], serial);
17926a79
DH
1184send_message_2:
1185
1186 len = iov[0].iov_len;
1187 ioc = 1;
1188 if (iov[4].iov_len) {
1189 ioc = 5;
1190 len += iov[4].iov_len;
1191 len += iov[3].iov_len;
1192 len += iov[2].iov_len;
1193 len += iov[1].iov_len;
1194 } else if (iov[3].iov_len) {
1195 ioc = 4;
1196 len += iov[3].iov_len;
1197 len += iov[2].iov_len;
1198 len += iov[1].iov_len;
1199 } else if (iov[2].iov_len) {
1200 ioc = 3;
1201 len += iov[2].iov_len;
1202 len += iov[1].iov_len;
1203 } else if (iov[1].iov_len) {
1204 ioc = 2;
1205 len += iov[1].iov_len;
1206 }
1207
85f32278 1208 ret = kernel_sendmsg(call->conn->params.local->socket,
17926a79
DH
1209 &msg, iov, ioc, len);
1210 if (ret < 0) {
1211 _debug("sendmsg failed: %d", ret);
1212 read_lock_bh(&call->state_lock);
1213 if (call->state < RXRPC_CALL_DEAD)
651350d1 1214 rxrpc_queue_call(call);
17926a79
DH
1215 read_unlock_bh(&call->state_lock);
1216 goto error;
1217 }
1218
1219 switch (genbit) {
4c198ad1 1220 case RXRPC_CALL_EV_ABORT:
17926a79 1221 clear_bit(genbit, &call->events);
4c198ad1 1222 clear_bit(RXRPC_CALL_EV_RCVD_ABORT, &call->events);
17926a79
DH
1223 goto kill_ACKs;
1224
4c198ad1 1225 case RXRPC_CALL_EV_ACK_FINAL:
f5c17aae 1226 rxrpc_call_completed(call);
17926a79
DH
1227 goto kill_ACKs;
1228
1229 default:
1230 clear_bit(genbit, &call->events);
1231 switch (call->state) {
1232 case RXRPC_CALL_CLIENT_AWAIT_REPLY:
1233 case RXRPC_CALL_CLIENT_RECV_REPLY:
1234 case RXRPC_CALL_SERVER_RECV_REQUEST:
1235 case RXRPC_CALL_SERVER_ACK_REQUEST:
1236 _debug("start ACK timer");
1237 rxrpc_propose_ACK(call, RXRPC_ACK_DELAY,
563ea7d5
DH
1238 call->ackr_skew, call->ackr_serial,
1239 false);
17926a79
DH
1240 default:
1241 break;
1242 }
1243 goto maybe_reschedule;
1244 }
1245
1246kill_ACKs:
1247 del_timer_sync(&call->ack_timer);
4c198ad1 1248 if (test_and_clear_bit(RXRPC_CALL_EV_ACK_FINAL, &call->events))
fff72429 1249 rxrpc_put_call(call, rxrpc_call_put);
4c198ad1 1250 clear_bit(RXRPC_CALL_EV_ACK, &call->events);
17926a79
DH
1251
1252maybe_reschedule:
1253 if (call->events || !skb_queue_empty(&call->rx_queue)) {
1254 read_lock_bh(&call->state_lock);
1255 if (call->state < RXRPC_CALL_DEAD)
651350d1 1256 rxrpc_queue_call(call);
17926a79
DH
1257 read_unlock_bh(&call->state_lock);
1258 }
1259
1260 /* don't leave aborted connections on the accept queue */
1261 if (call->state >= RXRPC_CALL_COMPLETE &&
1262 !list_empty(&call->accept_link)) {
1263 _debug("X unlinking once-pending call %p { e=%lx f=%lx c=%x }",
19ffa01c 1264 call, call->events, call->flags, call->conn->proto.cid);
17926a79
DH
1265
1266 read_lock_bh(&call->state_lock);
1267 if (!test_bit(RXRPC_CALL_RELEASED, &call->flags) &&
4c198ad1 1268 !test_and_set_bit(RXRPC_CALL_EV_RELEASE, &call->events))
651350d1 1269 rxrpc_queue_call(call);
17926a79
DH
1270 read_unlock_bh(&call->state_lock);
1271 }
1272
1273error:
17926a79
DH
1274 kfree(acks);
1275
1276 /* because we don't want two CPUs both processing the work item for one
1277 * call at the same time, we use a flag to note when it's busy; however
1278 * this means there's a race between clearing the flag and setting the
1279 * work pending bit and the work item being processed again */
1280 if (call->events && !work_pending(&call->processor)) {
19ffa01c 1281 _debug("jumpstart %x", call->conn->proto.cid);
651350d1 1282 rxrpc_queue_call(call);
17926a79
DH
1283 }
1284
1285 _leave("");
1286 return;
1287
1288no_mem:
1289 _debug("out of memory");
1290 goto maybe_reschedule;
1291}