Loading...
1// SPDX-License-Identifier: GPL-2.0-or-later
2/* Processing of received RxRPC packets
3 *
4 * Copyright (C) 2020 Red Hat, Inc. All Rights Reserved.
5 * Written by David Howells (dhowells@redhat.com)
6 */
7
8#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
9
10#include "ar-internal.h"
11
12/* Override priority when generating ACKs for received DATA */
13static const u8 rxrpc_ack_priority[RXRPC_ACK__INVALID] = {
14 [RXRPC_ACK_IDLE] = 1,
15 [RXRPC_ACK_DELAY] = 2,
16 [RXRPC_ACK_REQUESTED] = 3,
17 [RXRPC_ACK_DUPLICATE] = 4,
18 [RXRPC_ACK_EXCEEDS_WINDOW] = 5,
19 [RXRPC_ACK_NOSPACE] = 6,
20 [RXRPC_ACK_OUT_OF_SEQUENCE] = 7,
21};
22
23static void rxrpc_proto_abort(struct rxrpc_call *call, rxrpc_seq_t seq,
24 enum rxrpc_abort_reason why)
25{
26 rxrpc_abort_call(call, seq, RX_PROTOCOL_ERROR, -EBADMSG, why);
27}
28
29/*
30 * Do TCP-style congestion management [RFC 5681].
31 */
32static void rxrpc_congestion_management(struct rxrpc_call *call,
33 struct sk_buff *skb,
34 struct rxrpc_ack_summary *summary,
35 rxrpc_serial_t acked_serial)
36{
37 enum rxrpc_congest_change change = rxrpc_cong_no_change;
38 unsigned int cumulative_acks = call->cong_cumul_acks;
39 unsigned int cwnd = call->cong_cwnd;
40 bool resend = false;
41
42 summary->flight_size =
43 (call->tx_top - call->acks_hard_ack) - summary->nr_acks;
44
45 if (test_and_clear_bit(RXRPC_CALL_RETRANS_TIMEOUT, &call->flags)) {
46 summary->retrans_timeo = true;
47 call->cong_ssthresh = max_t(unsigned int,
48 summary->flight_size / 2, 2);
49 cwnd = 1;
50 if (cwnd >= call->cong_ssthresh &&
51 call->cong_mode == RXRPC_CALL_SLOW_START) {
52 call->cong_mode = RXRPC_CALL_CONGEST_AVOIDANCE;
53 call->cong_tstamp = skb->tstamp;
54 cumulative_acks = 0;
55 }
56 }
57
58 cumulative_acks += summary->nr_new_acks;
59 if (cumulative_acks > 255)
60 cumulative_acks = 255;
61
62 summary->cwnd = call->cong_cwnd;
63 summary->ssthresh = call->cong_ssthresh;
64 summary->cumulative_acks = cumulative_acks;
65 summary->dup_acks = call->cong_dup_acks;
66
67 switch (call->cong_mode) {
68 case RXRPC_CALL_SLOW_START:
69 if (summary->saw_nacks)
70 goto packet_loss_detected;
71 if (summary->cumulative_acks > 0)
72 cwnd += 1;
73 if (cwnd >= call->cong_ssthresh) {
74 call->cong_mode = RXRPC_CALL_CONGEST_AVOIDANCE;
75 call->cong_tstamp = skb->tstamp;
76 }
77 goto out;
78
79 case RXRPC_CALL_CONGEST_AVOIDANCE:
80 if (summary->saw_nacks)
81 goto packet_loss_detected;
82
83 /* We analyse the number of packets that get ACK'd per RTT
84 * period and increase the window if we managed to fill it.
85 */
86 if (call->peer->rtt_count == 0)
87 goto out;
88 if (ktime_before(skb->tstamp,
89 ktime_add_us(call->cong_tstamp,
90 call->peer->srtt_us >> 3)))
91 goto out_no_clear_ca;
92 change = rxrpc_cong_rtt_window_end;
93 call->cong_tstamp = skb->tstamp;
94 if (cumulative_acks >= cwnd)
95 cwnd++;
96 goto out;
97
98 case RXRPC_CALL_PACKET_LOSS:
99 if (!summary->saw_nacks)
100 goto resume_normality;
101
102 if (summary->new_low_nack) {
103 change = rxrpc_cong_new_low_nack;
104 call->cong_dup_acks = 1;
105 if (call->cong_extra > 1)
106 call->cong_extra = 1;
107 goto send_extra_data;
108 }
109
110 call->cong_dup_acks++;
111 if (call->cong_dup_acks < 3)
112 goto send_extra_data;
113
114 change = rxrpc_cong_begin_retransmission;
115 call->cong_mode = RXRPC_CALL_FAST_RETRANSMIT;
116 call->cong_ssthresh = max_t(unsigned int,
117 summary->flight_size / 2, 2);
118 cwnd = call->cong_ssthresh + 3;
119 call->cong_extra = 0;
120 call->cong_dup_acks = 0;
121 resend = true;
122 goto out;
123
124 case RXRPC_CALL_FAST_RETRANSMIT:
125 if (!summary->new_low_nack) {
126 if (summary->nr_new_acks == 0)
127 cwnd += 1;
128 call->cong_dup_acks++;
129 if (call->cong_dup_acks == 2) {
130 change = rxrpc_cong_retransmit_again;
131 call->cong_dup_acks = 0;
132 resend = true;
133 }
134 } else {
135 change = rxrpc_cong_progress;
136 cwnd = call->cong_ssthresh;
137 if (!summary->saw_nacks)
138 goto resume_normality;
139 }
140 goto out;
141
142 default:
143 BUG();
144 goto out;
145 }
146
147resume_normality:
148 change = rxrpc_cong_cleared_nacks;
149 call->cong_dup_acks = 0;
150 call->cong_extra = 0;
151 call->cong_tstamp = skb->tstamp;
152 if (cwnd < call->cong_ssthresh)
153 call->cong_mode = RXRPC_CALL_SLOW_START;
154 else
155 call->cong_mode = RXRPC_CALL_CONGEST_AVOIDANCE;
156out:
157 cumulative_acks = 0;
158out_no_clear_ca:
159 if (cwnd >= RXRPC_TX_MAX_WINDOW)
160 cwnd = RXRPC_TX_MAX_WINDOW;
161 call->cong_cwnd = cwnd;
162 call->cong_cumul_acks = cumulative_acks;
163 summary->mode = call->cong_mode;
164 trace_rxrpc_congest(call, summary, acked_serial, change);
165 if (resend)
166 rxrpc_resend(call, skb);
167 return;
168
169packet_loss_detected:
170 change = rxrpc_cong_saw_nack;
171 call->cong_mode = RXRPC_CALL_PACKET_LOSS;
172 call->cong_dup_acks = 0;
173 goto send_extra_data;
174
175send_extra_data:
176 /* Send some previously unsent DATA if we have some to advance the ACK
177 * state.
178 */
179 if (test_bit(RXRPC_CALL_TX_LAST, &call->flags) ||
180 summary->nr_acks != call->tx_top - call->acks_hard_ack) {
181 call->cong_extra++;
182 wake_up(&call->waitq);
183 }
184 goto out_no_clear_ca;
185}
186
187/*
188 * Degrade the congestion window if we haven't transmitted a packet for >1RTT.
189 */
190void rxrpc_congestion_degrade(struct rxrpc_call *call)
191{
192 ktime_t rtt, now;
193
194 if (call->cong_mode != RXRPC_CALL_SLOW_START &&
195 call->cong_mode != RXRPC_CALL_CONGEST_AVOIDANCE)
196 return;
197 if (__rxrpc_call_state(call) == RXRPC_CALL_CLIENT_AWAIT_REPLY)
198 return;
199
200 rtt = ns_to_ktime(call->peer->srtt_us * (1000 / 8));
201 now = ktime_get_real();
202 if (!ktime_before(ktime_add(call->tx_last_sent, rtt), now))
203 return;
204
205 trace_rxrpc_reset_cwnd(call, now);
206 rxrpc_inc_stat(call->rxnet, stat_tx_data_cwnd_reset);
207 call->tx_last_sent = now;
208 call->cong_mode = RXRPC_CALL_SLOW_START;
209 call->cong_ssthresh = max_t(unsigned int, call->cong_ssthresh,
210 call->cong_cwnd * 3 / 4);
211 call->cong_cwnd = max_t(unsigned int, call->cong_cwnd / 2, RXRPC_MIN_CWND);
212}
213
214/*
215 * Apply a hard ACK by advancing the Tx window.
216 */
217static bool rxrpc_rotate_tx_window(struct rxrpc_call *call, rxrpc_seq_t to,
218 struct rxrpc_ack_summary *summary)
219{
220 struct rxrpc_txbuf *txb;
221 bool rot_last = false;
222
223 list_for_each_entry_rcu(txb, &call->tx_buffer, call_link, false) {
224 if (before_eq(txb->seq, call->acks_hard_ack))
225 continue;
226 if (txb->flags & RXRPC_LAST_PACKET) {
227 set_bit(RXRPC_CALL_TX_LAST, &call->flags);
228 rot_last = true;
229 }
230 if (txb->seq == to)
231 break;
232 }
233
234 if (rot_last)
235 set_bit(RXRPC_CALL_TX_ALL_ACKED, &call->flags);
236
237 _enter("%x,%x,%x,%d", to, call->acks_hard_ack, call->tx_top, rot_last);
238
239 if (call->acks_lowest_nak == call->acks_hard_ack) {
240 call->acks_lowest_nak = to;
241 } else if (after(to, call->acks_lowest_nak)) {
242 summary->new_low_nack = true;
243 call->acks_lowest_nak = to;
244 }
245
246 smp_store_release(&call->acks_hard_ack, to);
247
248 trace_rxrpc_txqueue(call, (rot_last ?
249 rxrpc_txqueue_rotate_last :
250 rxrpc_txqueue_rotate));
251 wake_up(&call->waitq);
252 return rot_last;
253}
254
255/*
256 * End the transmission phase of a call.
257 *
258 * This occurs when we get an ACKALL packet, the first DATA packet of a reply,
259 * or a final ACK packet.
260 */
261static void rxrpc_end_tx_phase(struct rxrpc_call *call, bool reply_begun,
262 enum rxrpc_abort_reason abort_why)
263{
264 ASSERT(test_bit(RXRPC_CALL_TX_LAST, &call->flags));
265
266 call->resend_at = KTIME_MAX;
267 trace_rxrpc_timer_can(call, rxrpc_timer_trace_resend);
268
269 if (unlikely(call->cong_last_nack)) {
270 rxrpc_free_skb(call->cong_last_nack, rxrpc_skb_put_last_nack);
271 call->cong_last_nack = NULL;
272 }
273
274 switch (__rxrpc_call_state(call)) {
275 case RXRPC_CALL_CLIENT_SEND_REQUEST:
276 case RXRPC_CALL_CLIENT_AWAIT_REPLY:
277 if (reply_begun) {
278 rxrpc_set_call_state(call, RXRPC_CALL_CLIENT_RECV_REPLY);
279 trace_rxrpc_txqueue(call, rxrpc_txqueue_end);
280 break;
281 }
282
283 rxrpc_set_call_state(call, RXRPC_CALL_CLIENT_AWAIT_REPLY);
284 trace_rxrpc_txqueue(call, rxrpc_txqueue_await_reply);
285 break;
286
287 case RXRPC_CALL_SERVER_AWAIT_ACK:
288 rxrpc_call_completed(call);
289 trace_rxrpc_txqueue(call, rxrpc_txqueue_end);
290 break;
291
292 default:
293 kdebug("end_tx %s", rxrpc_call_states[__rxrpc_call_state(call)]);
294 rxrpc_proto_abort(call, call->tx_top, abort_why);
295 break;
296 }
297}
298
299/*
300 * Begin the reply reception phase of a call.
301 */
302static bool rxrpc_receiving_reply(struct rxrpc_call *call)
303{
304 struct rxrpc_ack_summary summary = { 0 };
305 rxrpc_seq_t top = READ_ONCE(call->tx_top);
306
307 if (call->ackr_reason) {
308 call->delay_ack_at = KTIME_MAX;
309 trace_rxrpc_timer_can(call, rxrpc_timer_trace_delayed_ack);
310 }
311
312 if (!test_bit(RXRPC_CALL_TX_LAST, &call->flags)) {
313 if (!rxrpc_rotate_tx_window(call, top, &summary)) {
314 rxrpc_proto_abort(call, top, rxrpc_eproto_early_reply);
315 return false;
316 }
317 }
318
319 rxrpc_end_tx_phase(call, true, rxrpc_eproto_unexpected_reply);
320 return true;
321}
322
323/*
324 * End the packet reception phase.
325 */
326static void rxrpc_end_rx_phase(struct rxrpc_call *call, rxrpc_serial_t serial)
327{
328 rxrpc_seq_t whigh = READ_ONCE(call->rx_highest_seq);
329
330 _enter("%d,%s", call->debug_id, rxrpc_call_states[__rxrpc_call_state(call)]);
331
332 trace_rxrpc_receive(call, rxrpc_receive_end, 0, whigh);
333
334 switch (__rxrpc_call_state(call)) {
335 case RXRPC_CALL_CLIENT_RECV_REPLY:
336 rxrpc_propose_delay_ACK(call, serial, rxrpc_propose_ack_terminal_ack);
337 rxrpc_call_completed(call);
338 break;
339
340 case RXRPC_CALL_SERVER_RECV_REQUEST:
341 rxrpc_set_call_state(call, RXRPC_CALL_SERVER_ACK_REQUEST);
342 call->expect_req_by = KTIME_MAX;
343 rxrpc_propose_delay_ACK(call, serial, rxrpc_propose_ack_processing_op);
344 break;
345
346 default:
347 break;
348 }
349}
350
351static void rxrpc_input_update_ack_window(struct rxrpc_call *call,
352 rxrpc_seq_t window, rxrpc_seq_t wtop)
353{
354 call->ackr_window = window;
355 call->ackr_wtop = wtop;
356}
357
358/*
359 * Push a DATA packet onto the Rx queue.
360 */
361static void rxrpc_input_queue_data(struct rxrpc_call *call, struct sk_buff *skb,
362 rxrpc_seq_t window, rxrpc_seq_t wtop,
363 enum rxrpc_receive_trace why)
364{
365 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
366 bool last = sp->hdr.flags & RXRPC_LAST_PACKET;
367
368 __skb_queue_tail(&call->recvmsg_queue, skb);
369 rxrpc_input_update_ack_window(call, window, wtop);
370 trace_rxrpc_receive(call, last ? why + 1 : why, sp->hdr.serial, sp->hdr.seq);
371 if (last)
372 rxrpc_end_rx_phase(call, sp->hdr.serial);
373}
374
375/*
376 * Process a DATA packet.
377 */
378static void rxrpc_input_data_one(struct rxrpc_call *call, struct sk_buff *skb,
379 bool *_notify, rxrpc_serial_t *_ack_serial, int *_ack_reason)
380{
381 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
382 struct sk_buff *oos;
383 rxrpc_serial_t serial = sp->hdr.serial;
384 unsigned int sack = call->ackr_sack_base;
385 rxrpc_seq_t window = call->ackr_window;
386 rxrpc_seq_t wtop = call->ackr_wtop;
387 rxrpc_seq_t wlimit = window + call->rx_winsize - 1;
388 rxrpc_seq_t seq = sp->hdr.seq;
389 bool last = sp->hdr.flags & RXRPC_LAST_PACKET;
390 int ack_reason = -1;
391
392 rxrpc_inc_stat(call->rxnet, stat_rx_data);
393 if (sp->hdr.flags & RXRPC_REQUEST_ACK)
394 rxrpc_inc_stat(call->rxnet, stat_rx_data_reqack);
395 if (sp->hdr.flags & RXRPC_JUMBO_PACKET)
396 rxrpc_inc_stat(call->rxnet, stat_rx_data_jumbo);
397
398 if (last) {
399 if (test_and_set_bit(RXRPC_CALL_RX_LAST, &call->flags) &&
400 seq + 1 != wtop)
401 return rxrpc_proto_abort(call, seq, rxrpc_eproto_different_last);
402 } else {
403 if (test_bit(RXRPC_CALL_RX_LAST, &call->flags) &&
404 after_eq(seq, wtop)) {
405 pr_warn("Packet beyond last: c=%x q=%x window=%x-%x wlimit=%x\n",
406 call->debug_id, seq, window, wtop, wlimit);
407 return rxrpc_proto_abort(call, seq, rxrpc_eproto_data_after_last);
408 }
409 }
410
411 if (after(seq, call->rx_highest_seq))
412 call->rx_highest_seq = seq;
413
414 trace_rxrpc_rx_data(call->debug_id, seq, serial, sp->hdr.flags);
415
416 if (before(seq, window)) {
417 ack_reason = RXRPC_ACK_DUPLICATE;
418 goto send_ack;
419 }
420 if (after(seq, wlimit)) {
421 ack_reason = RXRPC_ACK_EXCEEDS_WINDOW;
422 goto send_ack;
423 }
424
425 /* Queue the packet. */
426 if (seq == window) {
427 if (sp->hdr.flags & RXRPC_REQUEST_ACK)
428 ack_reason = RXRPC_ACK_REQUESTED;
429 /* Send an immediate ACK if we fill in a hole */
430 else if (!skb_queue_empty(&call->rx_oos_queue))
431 ack_reason = RXRPC_ACK_DELAY;
432
433 window++;
434 if (after(window, wtop)) {
435 trace_rxrpc_sack(call, seq, sack, rxrpc_sack_none);
436 wtop = window;
437 } else {
438 trace_rxrpc_sack(call, seq, sack, rxrpc_sack_advance);
439 sack = (sack + 1) % RXRPC_SACK_SIZE;
440 }
441
442
443 rxrpc_get_skb(skb, rxrpc_skb_get_to_recvmsg);
444
445 spin_lock(&call->recvmsg_queue.lock);
446 rxrpc_input_queue_data(call, skb, window, wtop, rxrpc_receive_queue);
447 *_notify = true;
448
449 while ((oos = skb_peek(&call->rx_oos_queue))) {
450 struct rxrpc_skb_priv *osp = rxrpc_skb(oos);
451
452 if (after(osp->hdr.seq, window))
453 break;
454
455 __skb_unlink(oos, &call->rx_oos_queue);
456 last = osp->hdr.flags & RXRPC_LAST_PACKET;
457 seq = osp->hdr.seq;
458 call->ackr_sack_table[sack] = 0;
459 trace_rxrpc_sack(call, seq, sack, rxrpc_sack_fill);
460 sack = (sack + 1) % RXRPC_SACK_SIZE;
461
462 window++;
463 rxrpc_input_queue_data(call, oos, window, wtop,
464 rxrpc_receive_queue_oos);
465 }
466
467 spin_unlock(&call->recvmsg_queue.lock);
468
469 call->ackr_sack_base = sack;
470 } else {
471 unsigned int slot;
472
473 ack_reason = RXRPC_ACK_OUT_OF_SEQUENCE;
474
475 slot = seq - window;
476 sack = (sack + slot) % RXRPC_SACK_SIZE;
477
478 if (call->ackr_sack_table[sack % RXRPC_SACK_SIZE]) {
479 ack_reason = RXRPC_ACK_DUPLICATE;
480 goto send_ack;
481 }
482
483 call->ackr_sack_table[sack % RXRPC_SACK_SIZE] |= 1;
484 trace_rxrpc_sack(call, seq, sack, rxrpc_sack_oos);
485
486 if (after(seq + 1, wtop)) {
487 wtop = seq + 1;
488 rxrpc_input_update_ack_window(call, window, wtop);
489 }
490
491 skb_queue_walk(&call->rx_oos_queue, oos) {
492 struct rxrpc_skb_priv *osp = rxrpc_skb(oos);
493
494 if (after(osp->hdr.seq, seq)) {
495 rxrpc_get_skb(skb, rxrpc_skb_get_to_recvmsg_oos);
496 __skb_queue_before(&call->rx_oos_queue, oos, skb);
497 goto oos_queued;
498 }
499 }
500
501 rxrpc_get_skb(skb, rxrpc_skb_get_to_recvmsg_oos);
502 __skb_queue_tail(&call->rx_oos_queue, skb);
503 oos_queued:
504 trace_rxrpc_receive(call, last ? rxrpc_receive_oos_last : rxrpc_receive_oos,
505 sp->hdr.serial, sp->hdr.seq);
506 }
507
508send_ack:
509 if (ack_reason >= 0) {
510 if (rxrpc_ack_priority[ack_reason] > rxrpc_ack_priority[*_ack_reason]) {
511 *_ack_serial = serial;
512 *_ack_reason = ack_reason;
513 } else if (rxrpc_ack_priority[ack_reason] == rxrpc_ack_priority[*_ack_reason] &&
514 ack_reason == RXRPC_ACK_REQUESTED) {
515 *_ack_serial = serial;
516 *_ack_reason = ack_reason;
517 }
518 }
519}
520
521/*
522 * Split a jumbo packet and file the bits separately.
523 */
524static bool rxrpc_input_split_jumbo(struct rxrpc_call *call, struct sk_buff *skb)
525{
526 struct rxrpc_jumbo_header jhdr;
527 struct rxrpc_skb_priv *sp = rxrpc_skb(skb), *jsp;
528 struct sk_buff *jskb;
529 rxrpc_serial_t ack_serial = 0;
530 unsigned int offset = sizeof(struct rxrpc_wire_header);
531 unsigned int len = skb->len - offset;
532 bool notify = false;
533 int ack_reason = 0;
534
535 while (sp->hdr.flags & RXRPC_JUMBO_PACKET) {
536 if (len < RXRPC_JUMBO_SUBPKTLEN)
537 goto protocol_error;
538 if (sp->hdr.flags & RXRPC_LAST_PACKET)
539 goto protocol_error;
540 if (skb_copy_bits(skb, offset + RXRPC_JUMBO_DATALEN,
541 &jhdr, sizeof(jhdr)) < 0)
542 goto protocol_error;
543
544 jskb = skb_clone(skb, GFP_NOFS);
545 if (!jskb) {
546 kdebug("couldn't clone");
547 return false;
548 }
549 rxrpc_new_skb(jskb, rxrpc_skb_new_jumbo_subpacket);
550 jsp = rxrpc_skb(jskb);
551 jsp->offset = offset;
552 jsp->len = RXRPC_JUMBO_DATALEN;
553 rxrpc_input_data_one(call, jskb, ¬ify, &ack_serial, &ack_reason);
554 rxrpc_free_skb(jskb, rxrpc_skb_put_jumbo_subpacket);
555
556 sp->hdr.flags = jhdr.flags;
557 sp->hdr._rsvd = ntohs(jhdr._rsvd);
558 sp->hdr.seq++;
559 sp->hdr.serial++;
560 offset += RXRPC_JUMBO_SUBPKTLEN;
561 len -= RXRPC_JUMBO_SUBPKTLEN;
562 }
563
564 sp->offset = offset;
565 sp->len = len;
566 rxrpc_input_data_one(call, skb, ¬ify, &ack_serial, &ack_reason);
567
568 if (ack_reason > 0) {
569 rxrpc_send_ACK(call, ack_reason, ack_serial,
570 rxrpc_propose_ack_input_data);
571 } else {
572 call->ackr_nr_unacked++;
573 rxrpc_propose_delay_ACK(call, sp->hdr.serial,
574 rxrpc_propose_ack_input_data);
575 }
576 if (notify && !test_bit(RXRPC_CALL_CONN_CHALLENGING, &call->flags)) {
577 trace_rxrpc_notify_socket(call->debug_id, sp->hdr.serial);
578 rxrpc_notify_socket(call);
579 }
580 return true;
581
582protocol_error:
583 return false;
584}
585
586/*
587 * Process a DATA packet, adding the packet to the Rx ring. The caller's
588 * packet ref must be passed on or discarded.
589 */
590static void rxrpc_input_data(struct rxrpc_call *call, struct sk_buff *skb)
591{
592 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
593 rxrpc_serial_t serial = sp->hdr.serial;
594 rxrpc_seq_t seq0 = sp->hdr.seq;
595
596 _enter("{%x,%x,%x},{%u,%x}",
597 call->ackr_window, call->ackr_wtop, call->rx_highest_seq,
598 skb->len, seq0);
599
600 if (__rxrpc_call_is_complete(call))
601 return;
602
603 switch (__rxrpc_call_state(call)) {
604 case RXRPC_CALL_CLIENT_SEND_REQUEST:
605 case RXRPC_CALL_CLIENT_AWAIT_REPLY:
606 /* Received data implicitly ACKs all of the request
607 * packets we sent when we're acting as a client.
608 */
609 if (!rxrpc_receiving_reply(call))
610 goto out_notify;
611 break;
612
613 case RXRPC_CALL_SERVER_RECV_REQUEST: {
614 unsigned long timo = READ_ONCE(call->next_req_timo);
615
616 if (timo) {
617 ktime_t delay = ms_to_ktime(timo);
618
619 call->expect_req_by = ktime_add(ktime_get_real(), delay);
620 trace_rxrpc_timer_set(call, delay, rxrpc_timer_trace_idle);
621 }
622 break;
623 }
624
625 default:
626 break;
627 }
628
629 if (!rxrpc_input_split_jumbo(call, skb)) {
630 rxrpc_proto_abort(call, sp->hdr.seq, rxrpc_badmsg_bad_jumbo);
631 goto out_notify;
632 }
633 return;
634
635out_notify:
636 trace_rxrpc_notify_socket(call->debug_id, serial);
637 rxrpc_notify_socket(call);
638 _leave(" [queued]");
639}
640
641/*
642 * See if there's a cached RTT probe to complete.
643 */
644static void rxrpc_complete_rtt_probe(struct rxrpc_call *call,
645 ktime_t resp_time,
646 rxrpc_serial_t acked_serial,
647 rxrpc_serial_t ack_serial,
648 enum rxrpc_rtt_rx_trace type)
649{
650 rxrpc_serial_t orig_serial;
651 unsigned long avail;
652 ktime_t sent_at;
653 bool matched = false;
654 int i;
655
656 avail = READ_ONCE(call->rtt_avail);
657 smp_rmb(); /* Read avail bits before accessing data. */
658
659 for (i = 0; i < ARRAY_SIZE(call->rtt_serial); i++) {
660 if (!test_bit(i + RXRPC_CALL_RTT_PEND_SHIFT, &avail))
661 continue;
662
663 sent_at = call->rtt_sent_at[i];
664 orig_serial = call->rtt_serial[i];
665
666 if (orig_serial == acked_serial) {
667 clear_bit(i + RXRPC_CALL_RTT_PEND_SHIFT, &call->rtt_avail);
668 smp_mb(); /* Read data before setting avail bit */
669 set_bit(i, &call->rtt_avail);
670 rxrpc_peer_add_rtt(call, type, i, acked_serial, ack_serial,
671 sent_at, resp_time);
672 matched = true;
673 }
674
675 /* If a later serial is being acked, then mark this slot as
676 * being available.
677 */
678 if (after(acked_serial, orig_serial)) {
679 trace_rxrpc_rtt_rx(call, rxrpc_rtt_rx_obsolete, i,
680 orig_serial, acked_serial, 0, 0);
681 clear_bit(i + RXRPC_CALL_RTT_PEND_SHIFT, &call->rtt_avail);
682 smp_wmb();
683 set_bit(i, &call->rtt_avail);
684 }
685 }
686
687 if (!matched)
688 trace_rxrpc_rtt_rx(call, rxrpc_rtt_rx_lost, 9, 0, acked_serial, 0, 0);
689}
690
691/*
692 * Process the extra information that may be appended to an ACK packet
693 */
694static void rxrpc_input_ack_trailer(struct rxrpc_call *call, struct sk_buff *skb,
695 struct rxrpc_acktrailer *trailer)
696{
697 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
698 struct rxrpc_peer *peer;
699 unsigned int mtu;
700 bool wake = false;
701 u32 rwind = ntohl(trailer->rwind);
702
703 if (rwind > RXRPC_TX_MAX_WINDOW)
704 rwind = RXRPC_TX_MAX_WINDOW;
705 if (call->tx_winsize != rwind) {
706 if (rwind > call->tx_winsize)
707 wake = true;
708 trace_rxrpc_rx_rwind_change(call, sp->hdr.serial, rwind, wake);
709 call->tx_winsize = rwind;
710 }
711
712 mtu = min(ntohl(trailer->maxMTU), ntohl(trailer->ifMTU));
713
714 peer = call->peer;
715 if (mtu < peer->maxdata) {
716 spin_lock(&peer->lock);
717 peer->maxdata = mtu;
718 peer->mtu = mtu + peer->hdrsize;
719 spin_unlock(&peer->lock);
720 }
721
722 if (wake)
723 wake_up(&call->waitq);
724}
725
726/*
727 * Determine how many nacks from the previous ACK have now been satisfied.
728 */
729static rxrpc_seq_t rxrpc_input_check_prev_ack(struct rxrpc_call *call,
730 struct rxrpc_ack_summary *summary,
731 rxrpc_seq_t seq)
732{
733 struct sk_buff *skb = call->cong_last_nack;
734 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
735 unsigned int i, new_acks = 0, retained_nacks = 0;
736 rxrpc_seq_t old_seq = sp->ack.first_ack;
737 u8 *acks = skb->data + sizeof(struct rxrpc_wire_header) + sizeof(struct rxrpc_ackpacket);
738
739 if (after_eq(seq, old_seq + sp->ack.nr_acks)) {
740 summary->nr_new_acks += sp->ack.nr_nacks;
741 summary->nr_new_acks += seq - (old_seq + sp->ack.nr_acks);
742 summary->nr_retained_nacks = 0;
743 } else if (seq == old_seq) {
744 summary->nr_retained_nacks = sp->ack.nr_nacks;
745 } else {
746 for (i = 0; i < sp->ack.nr_acks; i++) {
747 if (acks[i] == RXRPC_ACK_TYPE_NACK) {
748 if (before(old_seq + i, seq))
749 new_acks++;
750 else
751 retained_nacks++;
752 }
753 }
754
755 summary->nr_new_acks += new_acks;
756 summary->nr_retained_nacks = retained_nacks;
757 }
758
759 return old_seq + sp->ack.nr_acks;
760}
761
762/*
763 * Process individual soft ACKs.
764 *
765 * Each ACK in the array corresponds to one packet and can be either an ACK or
766 * a NAK. If we get find an explicitly NAK'd packet we resend immediately;
767 * packets that lie beyond the end of the ACK list are scheduled for resend by
768 * the timer on the basis that the peer might just not have processed them at
769 * the time the ACK was sent.
770 */
771static void rxrpc_input_soft_acks(struct rxrpc_call *call,
772 struct rxrpc_ack_summary *summary,
773 struct sk_buff *skb,
774 rxrpc_seq_t seq,
775 rxrpc_seq_t since)
776{
777 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
778 unsigned int i, old_nacks = 0;
779 rxrpc_seq_t lowest_nak = seq + sp->ack.nr_acks;
780 u8 *acks = skb->data + sizeof(struct rxrpc_wire_header) + sizeof(struct rxrpc_ackpacket);
781
782 for (i = 0; i < sp->ack.nr_acks; i++) {
783 if (acks[i] == RXRPC_ACK_TYPE_ACK) {
784 summary->nr_acks++;
785 if (after_eq(seq, since))
786 summary->nr_new_acks++;
787 } else {
788 summary->saw_nacks = true;
789 if (before(seq, since)) {
790 /* Overlap with previous ACK */
791 old_nacks++;
792 } else {
793 summary->nr_new_nacks++;
794 sp->ack.nr_nacks++;
795 }
796
797 if (before(seq, lowest_nak))
798 lowest_nak = seq;
799 }
800 seq++;
801 }
802
803 if (lowest_nak != call->acks_lowest_nak) {
804 call->acks_lowest_nak = lowest_nak;
805 summary->new_low_nack = true;
806 }
807
808 /* We *can* have more nacks than we did - the peer is permitted to drop
809 * packets it has soft-acked and re-request them. Further, it is
810 * possible for the nack distribution to change whilst the number of
811 * nacks stays the same or goes down.
812 */
813 if (old_nacks < summary->nr_retained_nacks)
814 summary->nr_new_acks += summary->nr_retained_nacks - old_nacks;
815 summary->nr_retained_nacks = old_nacks;
816}
817
818/*
819 * Return true if the ACK is valid - ie. it doesn't appear to have regressed
820 * with respect to the ack state conveyed by preceding ACKs.
821 */
822static bool rxrpc_is_ack_valid(struct rxrpc_call *call,
823 rxrpc_seq_t first_pkt, rxrpc_seq_t prev_pkt)
824{
825 rxrpc_seq_t base = READ_ONCE(call->acks_first_seq);
826
827 if (after(first_pkt, base))
828 return true; /* The window advanced */
829
830 if (before(first_pkt, base))
831 return false; /* firstPacket regressed */
832
833 if (after_eq(prev_pkt, call->acks_prev_seq))
834 return true; /* previousPacket hasn't regressed. */
835
836 /* Some rx implementations put a serial number in previousPacket. */
837 if (after_eq(prev_pkt, base + call->tx_winsize))
838 return false;
839 return true;
840}
841
842/*
843 * Process an ACK packet.
844 *
845 * ack.firstPacket is the sequence number of the first soft-ACK'd/NAK'd packet
846 * in the ACK array. Anything before that is hard-ACK'd and may be discarded.
847 *
848 * A hard-ACK means that a packet has been processed and may be discarded; a
849 * soft-ACK means that the packet may be discarded and retransmission
850 * requested. A phase is complete when all packets are hard-ACK'd.
851 */
852static void rxrpc_input_ack(struct rxrpc_call *call, struct sk_buff *skb)
853{
854 struct rxrpc_ack_summary summary = { 0 };
855 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
856 struct rxrpc_acktrailer trailer;
857 rxrpc_serial_t ack_serial, acked_serial;
858 rxrpc_seq_t first_soft_ack, hard_ack, prev_pkt, since;
859 int nr_acks, offset, ioffset;
860
861 _enter("");
862
863 offset = sizeof(struct rxrpc_wire_header) + sizeof(struct rxrpc_ackpacket);
864
865 ack_serial = sp->hdr.serial;
866 acked_serial = sp->ack.acked_serial;
867 first_soft_ack = sp->ack.first_ack;
868 prev_pkt = sp->ack.prev_ack;
869 nr_acks = sp->ack.nr_acks;
870 hard_ack = first_soft_ack - 1;
871 summary.ack_reason = (sp->ack.reason < RXRPC_ACK__INVALID ?
872 sp->ack.reason : RXRPC_ACK__INVALID);
873
874 trace_rxrpc_rx_ack(call, ack_serial, acked_serial,
875 first_soft_ack, prev_pkt,
876 summary.ack_reason, nr_acks);
877 rxrpc_inc_stat(call->rxnet, stat_rx_acks[summary.ack_reason]);
878
879 if (acked_serial != 0) {
880 switch (summary.ack_reason) {
881 case RXRPC_ACK_PING_RESPONSE:
882 rxrpc_complete_rtt_probe(call, skb->tstamp, acked_serial, ack_serial,
883 rxrpc_rtt_rx_ping_response);
884 break;
885 case RXRPC_ACK_REQUESTED:
886 rxrpc_complete_rtt_probe(call, skb->tstamp, acked_serial, ack_serial,
887 rxrpc_rtt_rx_requested_ack);
888 break;
889 default:
890 rxrpc_complete_rtt_probe(call, skb->tstamp, acked_serial, ack_serial,
891 rxrpc_rtt_rx_other_ack);
892 break;
893 }
894 }
895
896 /* If we get an EXCEEDS_WINDOW ACK from the server, it probably
897 * indicates that the client address changed due to NAT. The server
898 * lost the call because it switched to a different peer.
899 */
900 if (unlikely(summary.ack_reason == RXRPC_ACK_EXCEEDS_WINDOW) &&
901 first_soft_ack == 1 &&
902 prev_pkt == 0 &&
903 rxrpc_is_client_call(call)) {
904 rxrpc_set_call_completion(call, RXRPC_CALL_REMOTELY_ABORTED,
905 0, -ENETRESET);
906 goto send_response;
907 }
908
909 /* If we get an OUT_OF_SEQUENCE ACK from the server, that can also
910 * indicate a change of address. However, we can retransmit the call
911 * if we still have it buffered to the beginning.
912 */
913 if (unlikely(summary.ack_reason == RXRPC_ACK_OUT_OF_SEQUENCE) &&
914 first_soft_ack == 1 &&
915 prev_pkt == 0 &&
916 call->acks_hard_ack == 0 &&
917 rxrpc_is_client_call(call)) {
918 rxrpc_set_call_completion(call, RXRPC_CALL_REMOTELY_ABORTED,
919 0, -ENETRESET);
920 goto send_response;
921 }
922
923 /* Discard any out-of-order or duplicate ACKs (outside lock). */
924 if (!rxrpc_is_ack_valid(call, first_soft_ack, prev_pkt)) {
925 trace_rxrpc_rx_discard_ack(call->debug_id, ack_serial,
926 first_soft_ack, call->acks_first_seq,
927 prev_pkt, call->acks_prev_seq);
928 goto send_response;
929 }
930
931 trailer.maxMTU = 0;
932 ioffset = offset + nr_acks + 3;
933 if (skb->len >= ioffset + sizeof(trailer) &&
934 skb_copy_bits(skb, ioffset, &trailer, sizeof(trailer)) < 0)
935 return rxrpc_proto_abort(call, 0, rxrpc_badmsg_short_ack_trailer);
936
937 if (nr_acks > 0)
938 skb_condense(skb);
939
940 if (call->cong_last_nack) {
941 since = rxrpc_input_check_prev_ack(call, &summary, first_soft_ack);
942 rxrpc_free_skb(call->cong_last_nack, rxrpc_skb_put_last_nack);
943 call->cong_last_nack = NULL;
944 } else {
945 summary.nr_new_acks = first_soft_ack - call->acks_first_seq;
946 call->acks_lowest_nak = first_soft_ack + nr_acks;
947 since = first_soft_ack;
948 }
949
950 call->acks_latest_ts = skb->tstamp;
951 call->acks_first_seq = first_soft_ack;
952 call->acks_prev_seq = prev_pkt;
953
954 switch (summary.ack_reason) {
955 case RXRPC_ACK_PING:
956 break;
957 default:
958 if (acked_serial && after(acked_serial, call->acks_highest_serial))
959 call->acks_highest_serial = acked_serial;
960 break;
961 }
962
963 /* Parse rwind and mtu sizes if provided. */
964 if (trailer.maxMTU)
965 rxrpc_input_ack_trailer(call, skb, &trailer);
966
967 if (first_soft_ack == 0)
968 return rxrpc_proto_abort(call, 0, rxrpc_eproto_ackr_zero);
969
970 /* Ignore ACKs unless we are or have just been transmitting. */
971 switch (__rxrpc_call_state(call)) {
972 case RXRPC_CALL_CLIENT_SEND_REQUEST:
973 case RXRPC_CALL_CLIENT_AWAIT_REPLY:
974 case RXRPC_CALL_SERVER_SEND_REPLY:
975 case RXRPC_CALL_SERVER_AWAIT_ACK:
976 break;
977 default:
978 goto send_response;
979 }
980
981 if (before(hard_ack, call->acks_hard_ack) ||
982 after(hard_ack, call->tx_top))
983 return rxrpc_proto_abort(call, 0, rxrpc_eproto_ackr_outside_window);
984 if (nr_acks > call->tx_top - hard_ack)
985 return rxrpc_proto_abort(call, 0, rxrpc_eproto_ackr_sack_overflow);
986
987 if (after(hard_ack, call->acks_hard_ack)) {
988 if (rxrpc_rotate_tx_window(call, hard_ack, &summary)) {
989 rxrpc_end_tx_phase(call, false, rxrpc_eproto_unexpected_ack);
990 goto send_response;
991 }
992 }
993
994 if (nr_acks > 0) {
995 if (offset > (int)skb->len - nr_acks)
996 return rxrpc_proto_abort(call, 0, rxrpc_eproto_ackr_short_sack);
997 rxrpc_input_soft_acks(call, &summary, skb, first_soft_ack, since);
998 rxrpc_get_skb(skb, rxrpc_skb_get_last_nack);
999 call->cong_last_nack = skb;
1000 }
1001
1002 if (test_bit(RXRPC_CALL_TX_LAST, &call->flags) &&
1003 summary.nr_acks == call->tx_top - hard_ack &&
1004 rxrpc_is_client_call(call))
1005 rxrpc_propose_ping(call, ack_serial,
1006 rxrpc_propose_ack_ping_for_lost_reply);
1007
1008 rxrpc_congestion_management(call, skb, &summary, acked_serial);
1009
1010send_response:
1011 if (summary.ack_reason == RXRPC_ACK_PING)
1012 rxrpc_send_ACK(call, RXRPC_ACK_PING_RESPONSE, ack_serial,
1013 rxrpc_propose_ack_respond_to_ping);
1014 else if (sp->hdr.flags & RXRPC_REQUEST_ACK)
1015 rxrpc_send_ACK(call, RXRPC_ACK_REQUESTED, ack_serial,
1016 rxrpc_propose_ack_respond_to_ack);
1017}
1018
1019/*
1020 * Process an ACKALL packet.
1021 */
1022static void rxrpc_input_ackall(struct rxrpc_call *call, struct sk_buff *skb)
1023{
1024 struct rxrpc_ack_summary summary = { 0 };
1025
1026 if (rxrpc_rotate_tx_window(call, call->tx_top, &summary))
1027 rxrpc_end_tx_phase(call, false, rxrpc_eproto_unexpected_ackall);
1028}
1029
1030/*
1031 * Process an ABORT packet directed at a call.
1032 */
1033static void rxrpc_input_abort(struct rxrpc_call *call, struct sk_buff *skb)
1034{
1035 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
1036
1037 trace_rxrpc_rx_abort(call, sp->hdr.serial, skb->priority);
1038
1039 rxrpc_set_call_completion(call, RXRPC_CALL_REMOTELY_ABORTED,
1040 skb->priority, -ECONNABORTED);
1041}
1042
1043/*
1044 * Process an incoming call packet.
1045 */
1046void rxrpc_input_call_packet(struct rxrpc_call *call, struct sk_buff *skb)
1047{
1048 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
1049 unsigned long timo;
1050
1051 _enter("%p,%p", call, skb);
1052
1053 if (sp->hdr.serviceId != call->dest_srx.srx_service)
1054 call->dest_srx.srx_service = sp->hdr.serviceId;
1055 if ((int)sp->hdr.serial - (int)call->rx_serial > 0)
1056 call->rx_serial = sp->hdr.serial;
1057 if (!test_bit(RXRPC_CALL_RX_HEARD, &call->flags))
1058 set_bit(RXRPC_CALL_RX_HEARD, &call->flags);
1059
1060 timo = READ_ONCE(call->next_rx_timo);
1061 if (timo) {
1062 ktime_t delay = ms_to_ktime(timo);
1063
1064 call->expect_rx_by = ktime_add(ktime_get_real(), delay);
1065 trace_rxrpc_timer_set(call, delay, rxrpc_timer_trace_expect_rx);
1066 }
1067
1068 switch (sp->hdr.type) {
1069 case RXRPC_PACKET_TYPE_DATA:
1070 return rxrpc_input_data(call, skb);
1071
1072 case RXRPC_PACKET_TYPE_ACK:
1073 return rxrpc_input_ack(call, skb);
1074
1075 case RXRPC_PACKET_TYPE_BUSY:
1076 /* Just ignore BUSY packets from the server; the retry and
1077 * lifespan timers will take care of business. BUSY packets
1078 * from the client don't make sense.
1079 */
1080 return;
1081
1082 case RXRPC_PACKET_TYPE_ABORT:
1083 return rxrpc_input_abort(call, skb);
1084
1085 case RXRPC_PACKET_TYPE_ACKALL:
1086 return rxrpc_input_ackall(call, skb);
1087
1088 default:
1089 break;
1090 }
1091}
1092
1093/*
1094 * Handle a new service call on a channel implicitly completing the preceding
1095 * call on that channel. This does not apply to client conns.
1096 *
1097 * TODO: If callNumber > call_id + 1, renegotiate security.
1098 */
1099void rxrpc_implicit_end_call(struct rxrpc_call *call, struct sk_buff *skb)
1100{
1101 switch (__rxrpc_call_state(call)) {
1102 case RXRPC_CALL_SERVER_AWAIT_ACK:
1103 rxrpc_call_completed(call);
1104 fallthrough;
1105 case RXRPC_CALL_COMPLETE:
1106 break;
1107 default:
1108 rxrpc_abort_call(call, 0, RX_CALL_DEAD, -ESHUTDOWN,
1109 rxrpc_eproto_improper_term);
1110 trace_rxrpc_improper_term(call);
1111 break;
1112 }
1113
1114 rxrpc_input_call_event(call, skb);
1115}
1// SPDX-License-Identifier: GPL-2.0-or-later
2/* Processing of received RxRPC packets
3 *
4 * Copyright (C) 2020 Red Hat, Inc. All Rights Reserved.
5 * Written by David Howells (dhowells@redhat.com)
6 */
7
8#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
9
10#include "ar-internal.h"
11
12static void rxrpc_proto_abort(struct rxrpc_call *call, rxrpc_seq_t seq,
13 enum rxrpc_abort_reason why)
14{
15 rxrpc_abort_call(call, seq, RX_PROTOCOL_ERROR, -EBADMSG, why);
16}
17
18/*
19 * Do TCP-style congestion management [RFC 5681].
20 */
21static void rxrpc_congestion_management(struct rxrpc_call *call,
22 struct sk_buff *skb,
23 struct rxrpc_ack_summary *summary,
24 rxrpc_serial_t acked_serial)
25{
26 enum rxrpc_congest_change change = rxrpc_cong_no_change;
27 unsigned int cumulative_acks = call->cong_cumul_acks;
28 unsigned int cwnd = call->cong_cwnd;
29 bool resend = false;
30
31 summary->flight_size =
32 (call->tx_top - call->acks_hard_ack) - summary->nr_acks;
33
34 if (test_and_clear_bit(RXRPC_CALL_RETRANS_TIMEOUT, &call->flags)) {
35 summary->retrans_timeo = true;
36 call->cong_ssthresh = max_t(unsigned int,
37 summary->flight_size / 2, 2);
38 cwnd = 1;
39 if (cwnd >= call->cong_ssthresh &&
40 call->cong_mode == RXRPC_CALL_SLOW_START) {
41 call->cong_mode = RXRPC_CALL_CONGEST_AVOIDANCE;
42 call->cong_tstamp = skb->tstamp;
43 cumulative_acks = 0;
44 }
45 }
46
47 cumulative_acks += summary->nr_new_acks;
48 if (cumulative_acks > 255)
49 cumulative_acks = 255;
50
51 summary->cwnd = call->cong_cwnd;
52 summary->ssthresh = call->cong_ssthresh;
53 summary->cumulative_acks = cumulative_acks;
54 summary->dup_acks = call->cong_dup_acks;
55
56 switch (call->cong_mode) {
57 case RXRPC_CALL_SLOW_START:
58 if (summary->saw_nacks)
59 goto packet_loss_detected;
60 if (summary->cumulative_acks > 0)
61 cwnd += 1;
62 if (cwnd >= call->cong_ssthresh) {
63 call->cong_mode = RXRPC_CALL_CONGEST_AVOIDANCE;
64 call->cong_tstamp = skb->tstamp;
65 }
66 goto out;
67
68 case RXRPC_CALL_CONGEST_AVOIDANCE:
69 if (summary->saw_nacks)
70 goto packet_loss_detected;
71
72 /* We analyse the number of packets that get ACK'd per RTT
73 * period and increase the window if we managed to fill it.
74 */
75 if (call->peer->rtt_count == 0)
76 goto out;
77 if (ktime_before(skb->tstamp,
78 ktime_add_us(call->cong_tstamp,
79 call->peer->srtt_us >> 3)))
80 goto out_no_clear_ca;
81 change = rxrpc_cong_rtt_window_end;
82 call->cong_tstamp = skb->tstamp;
83 if (cumulative_acks >= cwnd)
84 cwnd++;
85 goto out;
86
87 case RXRPC_CALL_PACKET_LOSS:
88 if (!summary->saw_nacks)
89 goto resume_normality;
90
91 if (summary->new_low_nack) {
92 change = rxrpc_cong_new_low_nack;
93 call->cong_dup_acks = 1;
94 if (call->cong_extra > 1)
95 call->cong_extra = 1;
96 goto send_extra_data;
97 }
98
99 call->cong_dup_acks++;
100 if (call->cong_dup_acks < 3)
101 goto send_extra_data;
102
103 change = rxrpc_cong_begin_retransmission;
104 call->cong_mode = RXRPC_CALL_FAST_RETRANSMIT;
105 call->cong_ssthresh = max_t(unsigned int,
106 summary->flight_size / 2, 2);
107 cwnd = call->cong_ssthresh + 3;
108 call->cong_extra = 0;
109 call->cong_dup_acks = 0;
110 resend = true;
111 goto out;
112
113 case RXRPC_CALL_FAST_RETRANSMIT:
114 if (!summary->new_low_nack) {
115 if (summary->nr_new_acks == 0)
116 cwnd += 1;
117 call->cong_dup_acks++;
118 if (call->cong_dup_acks == 2) {
119 change = rxrpc_cong_retransmit_again;
120 call->cong_dup_acks = 0;
121 resend = true;
122 }
123 } else {
124 change = rxrpc_cong_progress;
125 cwnd = call->cong_ssthresh;
126 if (!summary->saw_nacks)
127 goto resume_normality;
128 }
129 goto out;
130
131 default:
132 BUG();
133 goto out;
134 }
135
136resume_normality:
137 change = rxrpc_cong_cleared_nacks;
138 call->cong_dup_acks = 0;
139 call->cong_extra = 0;
140 call->cong_tstamp = skb->tstamp;
141 if (cwnd < call->cong_ssthresh)
142 call->cong_mode = RXRPC_CALL_SLOW_START;
143 else
144 call->cong_mode = RXRPC_CALL_CONGEST_AVOIDANCE;
145out:
146 cumulative_acks = 0;
147out_no_clear_ca:
148 if (cwnd >= RXRPC_TX_MAX_WINDOW)
149 cwnd = RXRPC_TX_MAX_WINDOW;
150 call->cong_cwnd = cwnd;
151 call->cong_cumul_acks = cumulative_acks;
152 summary->mode = call->cong_mode;
153 trace_rxrpc_congest(call, summary, acked_serial, change);
154 if (resend)
155 rxrpc_resend(call, skb);
156 return;
157
158packet_loss_detected:
159 change = rxrpc_cong_saw_nack;
160 call->cong_mode = RXRPC_CALL_PACKET_LOSS;
161 call->cong_dup_acks = 0;
162 goto send_extra_data;
163
164send_extra_data:
165 /* Send some previously unsent DATA if we have some to advance the ACK
166 * state.
167 */
168 if (test_bit(RXRPC_CALL_TX_LAST, &call->flags) ||
169 summary->nr_acks != call->tx_top - call->acks_hard_ack) {
170 call->cong_extra++;
171 wake_up(&call->waitq);
172 }
173 goto out_no_clear_ca;
174}
175
176/*
177 * Degrade the congestion window if we haven't transmitted a packet for >1RTT.
178 */
179void rxrpc_congestion_degrade(struct rxrpc_call *call)
180{
181 ktime_t rtt, now;
182
183 if (call->cong_mode != RXRPC_CALL_SLOW_START &&
184 call->cong_mode != RXRPC_CALL_CONGEST_AVOIDANCE)
185 return;
186 if (__rxrpc_call_state(call) == RXRPC_CALL_CLIENT_AWAIT_REPLY)
187 return;
188
189 rtt = ns_to_ktime(call->peer->srtt_us * (1000 / 8));
190 now = ktime_get_real();
191 if (!ktime_before(ktime_add(call->tx_last_sent, rtt), now))
192 return;
193
194 trace_rxrpc_reset_cwnd(call, now);
195 rxrpc_inc_stat(call->rxnet, stat_tx_data_cwnd_reset);
196 call->tx_last_sent = now;
197 call->cong_mode = RXRPC_CALL_SLOW_START;
198 call->cong_ssthresh = max_t(unsigned int, call->cong_ssthresh,
199 call->cong_cwnd * 3 / 4);
200 call->cong_cwnd = max_t(unsigned int, call->cong_cwnd / 2, RXRPC_MIN_CWND);
201}
202
203/*
204 * Apply a hard ACK by advancing the Tx window.
205 */
206static bool rxrpc_rotate_tx_window(struct rxrpc_call *call, rxrpc_seq_t to,
207 struct rxrpc_ack_summary *summary)
208{
209 struct rxrpc_txbuf *txb;
210 bool rot_last = false;
211
212 list_for_each_entry_rcu(txb, &call->tx_buffer, call_link, false) {
213 if (before_eq(txb->seq, call->acks_hard_ack))
214 continue;
215 if (test_bit(RXRPC_TXBUF_LAST, &txb->flags)) {
216 set_bit(RXRPC_CALL_TX_LAST, &call->flags);
217 rot_last = true;
218 }
219 if (txb->seq == to)
220 break;
221 }
222
223 if (rot_last)
224 set_bit(RXRPC_CALL_TX_ALL_ACKED, &call->flags);
225
226 _enter("%x,%x,%x,%d", to, call->acks_hard_ack, call->tx_top, rot_last);
227
228 if (call->acks_lowest_nak == call->acks_hard_ack) {
229 call->acks_lowest_nak = to;
230 } else if (after(to, call->acks_lowest_nak)) {
231 summary->new_low_nack = true;
232 call->acks_lowest_nak = to;
233 }
234
235 smp_store_release(&call->acks_hard_ack, to);
236
237 trace_rxrpc_txqueue(call, (rot_last ?
238 rxrpc_txqueue_rotate_last :
239 rxrpc_txqueue_rotate));
240 wake_up(&call->waitq);
241 return rot_last;
242}
243
244/*
245 * End the transmission phase of a call.
246 *
247 * This occurs when we get an ACKALL packet, the first DATA packet of a reply,
248 * or a final ACK packet.
249 */
250static void rxrpc_end_tx_phase(struct rxrpc_call *call, bool reply_begun,
251 enum rxrpc_abort_reason abort_why)
252{
253 ASSERT(test_bit(RXRPC_CALL_TX_LAST, &call->flags));
254
255 if (unlikely(call->cong_last_nack)) {
256 rxrpc_free_skb(call->cong_last_nack, rxrpc_skb_put_last_nack);
257 call->cong_last_nack = NULL;
258 }
259
260 switch (__rxrpc_call_state(call)) {
261 case RXRPC_CALL_CLIENT_SEND_REQUEST:
262 case RXRPC_CALL_CLIENT_AWAIT_REPLY:
263 if (reply_begun) {
264 rxrpc_set_call_state(call, RXRPC_CALL_CLIENT_RECV_REPLY);
265 trace_rxrpc_txqueue(call, rxrpc_txqueue_end);
266 break;
267 }
268
269 rxrpc_set_call_state(call, RXRPC_CALL_CLIENT_AWAIT_REPLY);
270 trace_rxrpc_txqueue(call, rxrpc_txqueue_await_reply);
271 break;
272
273 case RXRPC_CALL_SERVER_AWAIT_ACK:
274 rxrpc_call_completed(call);
275 trace_rxrpc_txqueue(call, rxrpc_txqueue_end);
276 break;
277
278 default:
279 kdebug("end_tx %s", rxrpc_call_states[__rxrpc_call_state(call)]);
280 rxrpc_proto_abort(call, call->tx_top, abort_why);
281 break;
282 }
283}
284
285/*
286 * Begin the reply reception phase of a call.
287 */
288static bool rxrpc_receiving_reply(struct rxrpc_call *call)
289{
290 struct rxrpc_ack_summary summary = { 0 };
291 unsigned long now, timo;
292 rxrpc_seq_t top = READ_ONCE(call->tx_top);
293
294 if (call->ackr_reason) {
295 now = jiffies;
296 timo = now + MAX_JIFFY_OFFSET;
297
298 WRITE_ONCE(call->delay_ack_at, timo);
299 trace_rxrpc_timer(call, rxrpc_timer_init_for_reply, now);
300 }
301
302 if (!test_bit(RXRPC_CALL_TX_LAST, &call->flags)) {
303 if (!rxrpc_rotate_tx_window(call, top, &summary)) {
304 rxrpc_proto_abort(call, top, rxrpc_eproto_early_reply);
305 return false;
306 }
307 }
308
309 rxrpc_end_tx_phase(call, true, rxrpc_eproto_unexpected_reply);
310 return true;
311}
312
313/*
314 * End the packet reception phase.
315 */
316static void rxrpc_end_rx_phase(struct rxrpc_call *call, rxrpc_serial_t serial)
317{
318 rxrpc_seq_t whigh = READ_ONCE(call->rx_highest_seq);
319
320 _enter("%d,%s", call->debug_id, rxrpc_call_states[__rxrpc_call_state(call)]);
321
322 trace_rxrpc_receive(call, rxrpc_receive_end, 0, whigh);
323
324 switch (__rxrpc_call_state(call)) {
325 case RXRPC_CALL_CLIENT_RECV_REPLY:
326 rxrpc_propose_delay_ACK(call, serial, rxrpc_propose_ack_terminal_ack);
327 rxrpc_call_completed(call);
328 break;
329
330 case RXRPC_CALL_SERVER_RECV_REQUEST:
331 rxrpc_set_call_state(call, RXRPC_CALL_SERVER_ACK_REQUEST);
332 call->expect_req_by = jiffies + MAX_JIFFY_OFFSET;
333 rxrpc_propose_delay_ACK(call, serial, rxrpc_propose_ack_processing_op);
334 break;
335
336 default:
337 break;
338 }
339}
340
341static void rxrpc_input_update_ack_window(struct rxrpc_call *call,
342 rxrpc_seq_t window, rxrpc_seq_t wtop)
343{
344 call->ackr_window = window;
345 call->ackr_wtop = wtop;
346}
347
348/*
349 * Push a DATA packet onto the Rx queue.
350 */
351static void rxrpc_input_queue_data(struct rxrpc_call *call, struct sk_buff *skb,
352 rxrpc_seq_t window, rxrpc_seq_t wtop,
353 enum rxrpc_receive_trace why)
354{
355 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
356 bool last = sp->hdr.flags & RXRPC_LAST_PACKET;
357
358 __skb_queue_tail(&call->recvmsg_queue, skb);
359 rxrpc_input_update_ack_window(call, window, wtop);
360 trace_rxrpc_receive(call, last ? why + 1 : why, sp->hdr.serial, sp->hdr.seq);
361 if (last)
362 rxrpc_end_rx_phase(call, sp->hdr.serial);
363}
364
365/*
366 * Process a DATA packet.
367 */
368static void rxrpc_input_data_one(struct rxrpc_call *call, struct sk_buff *skb,
369 bool *_notify)
370{
371 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
372 struct sk_buff *oos;
373 rxrpc_serial_t serial = sp->hdr.serial;
374 unsigned int sack = call->ackr_sack_base;
375 rxrpc_seq_t window = call->ackr_window;
376 rxrpc_seq_t wtop = call->ackr_wtop;
377 rxrpc_seq_t wlimit = window + call->rx_winsize - 1;
378 rxrpc_seq_t seq = sp->hdr.seq;
379 bool last = sp->hdr.flags & RXRPC_LAST_PACKET;
380 int ack_reason = -1;
381
382 rxrpc_inc_stat(call->rxnet, stat_rx_data);
383 if (sp->hdr.flags & RXRPC_REQUEST_ACK)
384 rxrpc_inc_stat(call->rxnet, stat_rx_data_reqack);
385 if (sp->hdr.flags & RXRPC_JUMBO_PACKET)
386 rxrpc_inc_stat(call->rxnet, stat_rx_data_jumbo);
387
388 if (last) {
389 if (test_and_set_bit(RXRPC_CALL_RX_LAST, &call->flags) &&
390 seq + 1 != wtop)
391 return rxrpc_proto_abort(call, seq, rxrpc_eproto_different_last);
392 } else {
393 if (test_bit(RXRPC_CALL_RX_LAST, &call->flags) &&
394 after_eq(seq, wtop)) {
395 pr_warn("Packet beyond last: c=%x q=%x window=%x-%x wlimit=%x\n",
396 call->debug_id, seq, window, wtop, wlimit);
397 return rxrpc_proto_abort(call, seq, rxrpc_eproto_data_after_last);
398 }
399 }
400
401 if (after(seq, call->rx_highest_seq))
402 call->rx_highest_seq = seq;
403
404 trace_rxrpc_rx_data(call->debug_id, seq, serial, sp->hdr.flags);
405
406 if (before(seq, window)) {
407 ack_reason = RXRPC_ACK_DUPLICATE;
408 goto send_ack;
409 }
410 if (after(seq, wlimit)) {
411 ack_reason = RXRPC_ACK_EXCEEDS_WINDOW;
412 goto send_ack;
413 }
414
415 /* Queue the packet. */
416 if (seq == window) {
417 if (sp->hdr.flags & RXRPC_REQUEST_ACK)
418 ack_reason = RXRPC_ACK_REQUESTED;
419 /* Send an immediate ACK if we fill in a hole */
420 else if (!skb_queue_empty(&call->rx_oos_queue))
421 ack_reason = RXRPC_ACK_DELAY;
422 else
423 call->ackr_nr_unacked++;
424
425 window++;
426 if (after(window, wtop)) {
427 trace_rxrpc_sack(call, seq, sack, rxrpc_sack_none);
428 wtop = window;
429 } else {
430 trace_rxrpc_sack(call, seq, sack, rxrpc_sack_advance);
431 sack = (sack + 1) % RXRPC_SACK_SIZE;
432 }
433
434
435 rxrpc_get_skb(skb, rxrpc_skb_get_to_recvmsg);
436
437 spin_lock(&call->recvmsg_queue.lock);
438 rxrpc_input_queue_data(call, skb, window, wtop, rxrpc_receive_queue);
439 *_notify = true;
440
441 while ((oos = skb_peek(&call->rx_oos_queue))) {
442 struct rxrpc_skb_priv *osp = rxrpc_skb(oos);
443
444 if (after(osp->hdr.seq, window))
445 break;
446
447 __skb_unlink(oos, &call->rx_oos_queue);
448 last = osp->hdr.flags & RXRPC_LAST_PACKET;
449 seq = osp->hdr.seq;
450 call->ackr_sack_table[sack] = 0;
451 trace_rxrpc_sack(call, seq, sack, rxrpc_sack_fill);
452 sack = (sack + 1) % RXRPC_SACK_SIZE;
453
454 window++;
455 rxrpc_input_queue_data(call, oos, window, wtop,
456 rxrpc_receive_queue_oos);
457 }
458
459 spin_unlock(&call->recvmsg_queue.lock);
460
461 call->ackr_sack_base = sack;
462 } else {
463 unsigned int slot;
464
465 ack_reason = RXRPC_ACK_OUT_OF_SEQUENCE;
466
467 slot = seq - window;
468 sack = (sack + slot) % RXRPC_SACK_SIZE;
469
470 if (call->ackr_sack_table[sack % RXRPC_SACK_SIZE]) {
471 ack_reason = RXRPC_ACK_DUPLICATE;
472 goto send_ack;
473 }
474
475 call->ackr_sack_table[sack % RXRPC_SACK_SIZE] |= 1;
476 trace_rxrpc_sack(call, seq, sack, rxrpc_sack_oos);
477
478 if (after(seq + 1, wtop)) {
479 wtop = seq + 1;
480 rxrpc_input_update_ack_window(call, window, wtop);
481 }
482
483 skb_queue_walk(&call->rx_oos_queue, oos) {
484 struct rxrpc_skb_priv *osp = rxrpc_skb(oos);
485
486 if (after(osp->hdr.seq, seq)) {
487 rxrpc_get_skb(skb, rxrpc_skb_get_to_recvmsg_oos);
488 __skb_queue_before(&call->rx_oos_queue, oos, skb);
489 goto oos_queued;
490 }
491 }
492
493 rxrpc_get_skb(skb, rxrpc_skb_get_to_recvmsg_oos);
494 __skb_queue_tail(&call->rx_oos_queue, skb);
495 oos_queued:
496 trace_rxrpc_receive(call, last ? rxrpc_receive_oos_last : rxrpc_receive_oos,
497 sp->hdr.serial, sp->hdr.seq);
498 }
499
500send_ack:
501 if (ack_reason >= 0)
502 rxrpc_send_ACK(call, ack_reason, serial,
503 rxrpc_propose_ack_input_data);
504 else
505 rxrpc_propose_delay_ACK(call, serial,
506 rxrpc_propose_ack_input_data);
507}
508
509/*
510 * Split a jumbo packet and file the bits separately.
511 */
512static bool rxrpc_input_split_jumbo(struct rxrpc_call *call, struct sk_buff *skb)
513{
514 struct rxrpc_jumbo_header jhdr;
515 struct rxrpc_skb_priv *sp = rxrpc_skb(skb), *jsp;
516 struct sk_buff *jskb;
517 unsigned int offset = sizeof(struct rxrpc_wire_header);
518 unsigned int len = skb->len - offset;
519 bool notify = false;
520
521 while (sp->hdr.flags & RXRPC_JUMBO_PACKET) {
522 if (len < RXRPC_JUMBO_SUBPKTLEN)
523 goto protocol_error;
524 if (sp->hdr.flags & RXRPC_LAST_PACKET)
525 goto protocol_error;
526 if (skb_copy_bits(skb, offset + RXRPC_JUMBO_DATALEN,
527 &jhdr, sizeof(jhdr)) < 0)
528 goto protocol_error;
529
530 jskb = skb_clone(skb, GFP_NOFS);
531 if (!jskb) {
532 kdebug("couldn't clone");
533 return false;
534 }
535 rxrpc_new_skb(jskb, rxrpc_skb_new_jumbo_subpacket);
536 jsp = rxrpc_skb(jskb);
537 jsp->offset = offset;
538 jsp->len = RXRPC_JUMBO_DATALEN;
539 rxrpc_input_data_one(call, jskb, ¬ify);
540 rxrpc_free_skb(jskb, rxrpc_skb_put_jumbo_subpacket);
541
542 sp->hdr.flags = jhdr.flags;
543 sp->hdr._rsvd = ntohs(jhdr._rsvd);
544 sp->hdr.seq++;
545 sp->hdr.serial++;
546 offset += RXRPC_JUMBO_SUBPKTLEN;
547 len -= RXRPC_JUMBO_SUBPKTLEN;
548 }
549
550 sp->offset = offset;
551 sp->len = len;
552 rxrpc_input_data_one(call, skb, ¬ify);
553 if (notify) {
554 trace_rxrpc_notify_socket(call->debug_id, sp->hdr.serial);
555 rxrpc_notify_socket(call);
556 }
557 return true;
558
559protocol_error:
560 return false;
561}
562
563/*
564 * Process a DATA packet, adding the packet to the Rx ring. The caller's
565 * packet ref must be passed on or discarded.
566 */
567static void rxrpc_input_data(struct rxrpc_call *call, struct sk_buff *skb)
568{
569 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
570 rxrpc_serial_t serial = sp->hdr.serial;
571 rxrpc_seq_t seq0 = sp->hdr.seq;
572
573 _enter("{%x,%x,%x},{%u,%x}",
574 call->ackr_window, call->ackr_wtop, call->rx_highest_seq,
575 skb->len, seq0);
576
577 if (__rxrpc_call_is_complete(call))
578 return;
579
580 switch (__rxrpc_call_state(call)) {
581 case RXRPC_CALL_CLIENT_SEND_REQUEST:
582 case RXRPC_CALL_CLIENT_AWAIT_REPLY:
583 /* Received data implicitly ACKs all of the request
584 * packets we sent when we're acting as a client.
585 */
586 if (!rxrpc_receiving_reply(call))
587 goto out_notify;
588 break;
589
590 case RXRPC_CALL_SERVER_RECV_REQUEST: {
591 unsigned long timo = READ_ONCE(call->next_req_timo);
592 unsigned long now, expect_req_by;
593
594 if (timo) {
595 now = jiffies;
596 expect_req_by = now + timo;
597 WRITE_ONCE(call->expect_req_by, expect_req_by);
598 rxrpc_reduce_call_timer(call, expect_req_by, now,
599 rxrpc_timer_set_for_idle);
600 }
601 break;
602 }
603
604 default:
605 break;
606 }
607
608 if (!rxrpc_input_split_jumbo(call, skb)) {
609 rxrpc_proto_abort(call, sp->hdr.seq, rxrpc_badmsg_bad_jumbo);
610 goto out_notify;
611 }
612 return;
613
614out_notify:
615 trace_rxrpc_notify_socket(call->debug_id, serial);
616 rxrpc_notify_socket(call);
617 _leave(" [queued]");
618}
619
620/*
621 * See if there's a cached RTT probe to complete.
622 */
623static void rxrpc_complete_rtt_probe(struct rxrpc_call *call,
624 ktime_t resp_time,
625 rxrpc_serial_t acked_serial,
626 rxrpc_serial_t ack_serial,
627 enum rxrpc_rtt_rx_trace type)
628{
629 rxrpc_serial_t orig_serial;
630 unsigned long avail;
631 ktime_t sent_at;
632 bool matched = false;
633 int i;
634
635 avail = READ_ONCE(call->rtt_avail);
636 smp_rmb(); /* Read avail bits before accessing data. */
637
638 for (i = 0; i < ARRAY_SIZE(call->rtt_serial); i++) {
639 if (!test_bit(i + RXRPC_CALL_RTT_PEND_SHIFT, &avail))
640 continue;
641
642 sent_at = call->rtt_sent_at[i];
643 orig_serial = call->rtt_serial[i];
644
645 if (orig_serial == acked_serial) {
646 clear_bit(i + RXRPC_CALL_RTT_PEND_SHIFT, &call->rtt_avail);
647 smp_mb(); /* Read data before setting avail bit */
648 set_bit(i, &call->rtt_avail);
649 rxrpc_peer_add_rtt(call, type, i, acked_serial, ack_serial,
650 sent_at, resp_time);
651 matched = true;
652 }
653
654 /* If a later serial is being acked, then mark this slot as
655 * being available.
656 */
657 if (after(acked_serial, orig_serial)) {
658 trace_rxrpc_rtt_rx(call, rxrpc_rtt_rx_obsolete, i,
659 orig_serial, acked_serial, 0, 0);
660 clear_bit(i + RXRPC_CALL_RTT_PEND_SHIFT, &call->rtt_avail);
661 smp_wmb();
662 set_bit(i, &call->rtt_avail);
663 }
664 }
665
666 if (!matched)
667 trace_rxrpc_rtt_rx(call, rxrpc_rtt_rx_lost, 9, 0, acked_serial, 0, 0);
668}
669
670/*
671 * Process the extra information that may be appended to an ACK packet
672 */
673static void rxrpc_input_ackinfo(struct rxrpc_call *call, struct sk_buff *skb,
674 struct rxrpc_ackinfo *ackinfo)
675{
676 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
677 struct rxrpc_peer *peer;
678 unsigned int mtu;
679 bool wake = false;
680 u32 rwind = ntohl(ackinfo->rwind);
681
682 if (rwind > RXRPC_TX_MAX_WINDOW)
683 rwind = RXRPC_TX_MAX_WINDOW;
684 if (call->tx_winsize != rwind) {
685 if (rwind > call->tx_winsize)
686 wake = true;
687 trace_rxrpc_rx_rwind_change(call, sp->hdr.serial, rwind, wake);
688 call->tx_winsize = rwind;
689 }
690
691 if (call->cong_ssthresh > rwind)
692 call->cong_ssthresh = rwind;
693
694 mtu = min(ntohl(ackinfo->rxMTU), ntohl(ackinfo->maxMTU));
695
696 peer = call->peer;
697 if (mtu < peer->maxdata) {
698 spin_lock(&peer->lock);
699 peer->maxdata = mtu;
700 peer->mtu = mtu + peer->hdrsize;
701 spin_unlock(&peer->lock);
702 }
703
704 if (wake)
705 wake_up(&call->waitq);
706}
707
708/*
709 * Determine how many nacks from the previous ACK have now been satisfied.
710 */
711static rxrpc_seq_t rxrpc_input_check_prev_ack(struct rxrpc_call *call,
712 struct rxrpc_ack_summary *summary,
713 rxrpc_seq_t seq)
714{
715 struct sk_buff *skb = call->cong_last_nack;
716 struct rxrpc_ackpacket ack;
717 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
718 unsigned int i, new_acks = 0, retained_nacks = 0;
719 rxrpc_seq_t old_seq = sp->first_ack;
720 u8 *acks = skb->data + sizeof(struct rxrpc_wire_header) + sizeof(ack);
721
722 if (after_eq(seq, old_seq + sp->nr_acks)) {
723 summary->nr_new_acks += sp->nr_nacks;
724 summary->nr_new_acks += seq - (old_seq + sp->nr_acks);
725 summary->nr_retained_nacks = 0;
726 } else if (seq == old_seq) {
727 summary->nr_retained_nacks = sp->nr_nacks;
728 } else {
729 for (i = 0; i < sp->nr_acks; i++) {
730 if (acks[i] == RXRPC_ACK_TYPE_NACK) {
731 if (before(old_seq + i, seq))
732 new_acks++;
733 else
734 retained_nacks++;
735 }
736 }
737
738 summary->nr_new_acks += new_acks;
739 summary->nr_retained_nacks = retained_nacks;
740 }
741
742 return old_seq + sp->nr_acks;
743}
744
745/*
746 * Process individual soft ACKs.
747 *
748 * Each ACK in the array corresponds to one packet and can be either an ACK or
749 * a NAK. If we get find an explicitly NAK'd packet we resend immediately;
750 * packets that lie beyond the end of the ACK list are scheduled for resend by
751 * the timer on the basis that the peer might just not have processed them at
752 * the time the ACK was sent.
753 */
754static void rxrpc_input_soft_acks(struct rxrpc_call *call,
755 struct rxrpc_ack_summary *summary,
756 struct sk_buff *skb,
757 rxrpc_seq_t seq,
758 rxrpc_seq_t since)
759{
760 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
761 unsigned int i, old_nacks = 0;
762 rxrpc_seq_t lowest_nak = seq + sp->nr_acks;
763 u8 *acks = skb->data + sizeof(struct rxrpc_wire_header) + sizeof(struct rxrpc_ackpacket);
764
765 for (i = 0; i < sp->nr_acks; i++) {
766 if (acks[i] == RXRPC_ACK_TYPE_ACK) {
767 summary->nr_acks++;
768 if (after_eq(seq, since))
769 summary->nr_new_acks++;
770 } else {
771 summary->saw_nacks = true;
772 if (before(seq, since)) {
773 /* Overlap with previous ACK */
774 old_nacks++;
775 } else {
776 summary->nr_new_nacks++;
777 sp->nr_nacks++;
778 }
779
780 if (before(seq, lowest_nak))
781 lowest_nak = seq;
782 }
783 seq++;
784 }
785
786 if (lowest_nak != call->acks_lowest_nak) {
787 call->acks_lowest_nak = lowest_nak;
788 summary->new_low_nack = true;
789 }
790
791 /* We *can* have more nacks than we did - the peer is permitted to drop
792 * packets it has soft-acked and re-request them. Further, it is
793 * possible for the nack distribution to change whilst the number of
794 * nacks stays the same or goes down.
795 */
796 if (old_nacks < summary->nr_retained_nacks)
797 summary->nr_new_acks += summary->nr_retained_nacks - old_nacks;
798 summary->nr_retained_nacks = old_nacks;
799}
800
801/*
802 * Return true if the ACK is valid - ie. it doesn't appear to have regressed
803 * with respect to the ack state conveyed by preceding ACKs.
804 */
805static bool rxrpc_is_ack_valid(struct rxrpc_call *call,
806 rxrpc_seq_t first_pkt, rxrpc_seq_t prev_pkt)
807{
808 rxrpc_seq_t base = READ_ONCE(call->acks_first_seq);
809
810 if (after(first_pkt, base))
811 return true; /* The window advanced */
812
813 if (before(first_pkt, base))
814 return false; /* firstPacket regressed */
815
816 if (after_eq(prev_pkt, call->acks_prev_seq))
817 return true; /* previousPacket hasn't regressed. */
818
819 /* Some rx implementations put a serial number in previousPacket. */
820 if (after_eq(prev_pkt, base + call->tx_winsize))
821 return false;
822 return true;
823}
824
825/*
826 * Process an ACK packet.
827 *
828 * ack.firstPacket is the sequence number of the first soft-ACK'd/NAK'd packet
829 * in the ACK array. Anything before that is hard-ACK'd and may be discarded.
830 *
831 * A hard-ACK means that a packet has been processed and may be discarded; a
832 * soft-ACK means that the packet may be discarded and retransmission
833 * requested. A phase is complete when all packets are hard-ACK'd.
834 */
835static void rxrpc_input_ack(struct rxrpc_call *call, struct sk_buff *skb)
836{
837 struct rxrpc_ack_summary summary = { 0 };
838 struct rxrpc_ackpacket ack;
839 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
840 struct rxrpc_ackinfo info;
841 rxrpc_serial_t ack_serial, acked_serial;
842 rxrpc_seq_t first_soft_ack, hard_ack, prev_pkt, since;
843 int nr_acks, offset, ioffset;
844
845 _enter("");
846
847 offset = sizeof(struct rxrpc_wire_header);
848 if (skb_copy_bits(skb, offset, &ack, sizeof(ack)) < 0)
849 return rxrpc_proto_abort(call, 0, rxrpc_badmsg_short_ack);
850 offset += sizeof(ack);
851
852 ack_serial = sp->hdr.serial;
853 acked_serial = ntohl(ack.serial);
854 first_soft_ack = ntohl(ack.firstPacket);
855 prev_pkt = ntohl(ack.previousPacket);
856 hard_ack = first_soft_ack - 1;
857 nr_acks = ack.nAcks;
858 sp->first_ack = first_soft_ack;
859 sp->nr_acks = nr_acks;
860 summary.ack_reason = (ack.reason < RXRPC_ACK__INVALID ?
861 ack.reason : RXRPC_ACK__INVALID);
862
863 trace_rxrpc_rx_ack(call, ack_serial, acked_serial,
864 first_soft_ack, prev_pkt,
865 summary.ack_reason, nr_acks);
866 rxrpc_inc_stat(call->rxnet, stat_rx_acks[ack.reason]);
867
868 if (acked_serial != 0) {
869 switch (ack.reason) {
870 case RXRPC_ACK_PING_RESPONSE:
871 rxrpc_complete_rtt_probe(call, skb->tstamp, acked_serial, ack_serial,
872 rxrpc_rtt_rx_ping_response);
873 break;
874 case RXRPC_ACK_REQUESTED:
875 rxrpc_complete_rtt_probe(call, skb->tstamp, acked_serial, ack_serial,
876 rxrpc_rtt_rx_requested_ack);
877 break;
878 default:
879 rxrpc_complete_rtt_probe(call, skb->tstamp, acked_serial, ack_serial,
880 rxrpc_rtt_rx_other_ack);
881 break;
882 }
883 }
884
885 /* If we get an EXCEEDS_WINDOW ACK from the server, it probably
886 * indicates that the client address changed due to NAT. The server
887 * lost the call because it switched to a different peer.
888 */
889 if (unlikely(ack.reason == RXRPC_ACK_EXCEEDS_WINDOW) &&
890 first_soft_ack == 1 &&
891 prev_pkt == 0 &&
892 rxrpc_is_client_call(call)) {
893 rxrpc_set_call_completion(call, RXRPC_CALL_REMOTELY_ABORTED,
894 0, -ENETRESET);
895 goto send_response;
896 }
897
898 /* If we get an OUT_OF_SEQUENCE ACK from the server, that can also
899 * indicate a change of address. However, we can retransmit the call
900 * if we still have it buffered to the beginning.
901 */
902 if (unlikely(ack.reason == RXRPC_ACK_OUT_OF_SEQUENCE) &&
903 first_soft_ack == 1 &&
904 prev_pkt == 0 &&
905 call->acks_hard_ack == 0 &&
906 rxrpc_is_client_call(call)) {
907 rxrpc_set_call_completion(call, RXRPC_CALL_REMOTELY_ABORTED,
908 0, -ENETRESET);
909 goto send_response;
910 }
911
912 /* Discard any out-of-order or duplicate ACKs (outside lock). */
913 if (!rxrpc_is_ack_valid(call, first_soft_ack, prev_pkt)) {
914 trace_rxrpc_rx_discard_ack(call->debug_id, ack_serial,
915 first_soft_ack, call->acks_first_seq,
916 prev_pkt, call->acks_prev_seq);
917 goto send_response;
918 }
919
920 info.rxMTU = 0;
921 ioffset = offset + nr_acks + 3;
922 if (skb->len >= ioffset + sizeof(info) &&
923 skb_copy_bits(skb, ioffset, &info, sizeof(info)) < 0)
924 return rxrpc_proto_abort(call, 0, rxrpc_badmsg_short_ack_info);
925
926 if (nr_acks > 0)
927 skb_condense(skb);
928
929 if (call->cong_last_nack) {
930 since = rxrpc_input_check_prev_ack(call, &summary, first_soft_ack);
931 rxrpc_free_skb(call->cong_last_nack, rxrpc_skb_put_last_nack);
932 call->cong_last_nack = NULL;
933 } else {
934 summary.nr_new_acks = first_soft_ack - call->acks_first_seq;
935 call->acks_lowest_nak = first_soft_ack + nr_acks;
936 since = first_soft_ack;
937 }
938
939 call->acks_latest_ts = skb->tstamp;
940 call->acks_first_seq = first_soft_ack;
941 call->acks_prev_seq = prev_pkt;
942
943 switch (ack.reason) {
944 case RXRPC_ACK_PING:
945 break;
946 default:
947 if (acked_serial && after(acked_serial, call->acks_highest_serial))
948 call->acks_highest_serial = acked_serial;
949 break;
950 }
951
952 /* Parse rwind and mtu sizes if provided. */
953 if (info.rxMTU)
954 rxrpc_input_ackinfo(call, skb, &info);
955
956 if (first_soft_ack == 0)
957 return rxrpc_proto_abort(call, 0, rxrpc_eproto_ackr_zero);
958
959 /* Ignore ACKs unless we are or have just been transmitting. */
960 switch (__rxrpc_call_state(call)) {
961 case RXRPC_CALL_CLIENT_SEND_REQUEST:
962 case RXRPC_CALL_CLIENT_AWAIT_REPLY:
963 case RXRPC_CALL_SERVER_SEND_REPLY:
964 case RXRPC_CALL_SERVER_AWAIT_ACK:
965 break;
966 default:
967 goto send_response;
968 }
969
970 if (before(hard_ack, call->acks_hard_ack) ||
971 after(hard_ack, call->tx_top))
972 return rxrpc_proto_abort(call, 0, rxrpc_eproto_ackr_outside_window);
973 if (nr_acks > call->tx_top - hard_ack)
974 return rxrpc_proto_abort(call, 0, rxrpc_eproto_ackr_sack_overflow);
975
976 if (after(hard_ack, call->acks_hard_ack)) {
977 if (rxrpc_rotate_tx_window(call, hard_ack, &summary)) {
978 rxrpc_end_tx_phase(call, false, rxrpc_eproto_unexpected_ack);
979 goto send_response;
980 }
981 }
982
983 if (nr_acks > 0) {
984 if (offset > (int)skb->len - nr_acks)
985 return rxrpc_proto_abort(call, 0, rxrpc_eproto_ackr_short_sack);
986 rxrpc_input_soft_acks(call, &summary, skb, first_soft_ack, since);
987 rxrpc_get_skb(skb, rxrpc_skb_get_last_nack);
988 call->cong_last_nack = skb;
989 }
990
991 if (test_bit(RXRPC_CALL_TX_LAST, &call->flags) &&
992 summary.nr_acks == call->tx_top - hard_ack &&
993 rxrpc_is_client_call(call))
994 rxrpc_propose_ping(call, ack_serial,
995 rxrpc_propose_ack_ping_for_lost_reply);
996
997 rxrpc_congestion_management(call, skb, &summary, acked_serial);
998
999send_response:
1000 if (ack.reason == RXRPC_ACK_PING)
1001 rxrpc_send_ACK(call, RXRPC_ACK_PING_RESPONSE, ack_serial,
1002 rxrpc_propose_ack_respond_to_ping);
1003 else if (sp->hdr.flags & RXRPC_REQUEST_ACK)
1004 rxrpc_send_ACK(call, RXRPC_ACK_REQUESTED, ack_serial,
1005 rxrpc_propose_ack_respond_to_ack);
1006}
1007
1008/*
1009 * Process an ACKALL packet.
1010 */
1011static void rxrpc_input_ackall(struct rxrpc_call *call, struct sk_buff *skb)
1012{
1013 struct rxrpc_ack_summary summary = { 0 };
1014
1015 if (rxrpc_rotate_tx_window(call, call->tx_top, &summary))
1016 rxrpc_end_tx_phase(call, false, rxrpc_eproto_unexpected_ackall);
1017}
1018
1019/*
1020 * Process an ABORT packet directed at a call.
1021 */
1022static void rxrpc_input_abort(struct rxrpc_call *call, struct sk_buff *skb)
1023{
1024 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
1025
1026 trace_rxrpc_rx_abort(call, sp->hdr.serial, skb->priority);
1027
1028 rxrpc_set_call_completion(call, RXRPC_CALL_REMOTELY_ABORTED,
1029 skb->priority, -ECONNABORTED);
1030}
1031
1032/*
1033 * Process an incoming call packet.
1034 */
1035void rxrpc_input_call_packet(struct rxrpc_call *call, struct sk_buff *skb)
1036{
1037 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
1038 unsigned long timo;
1039
1040 _enter("%p,%p", call, skb);
1041
1042 if (sp->hdr.serviceId != call->dest_srx.srx_service)
1043 call->dest_srx.srx_service = sp->hdr.serviceId;
1044 if ((int)sp->hdr.serial - (int)call->rx_serial > 0)
1045 call->rx_serial = sp->hdr.serial;
1046 if (!test_bit(RXRPC_CALL_RX_HEARD, &call->flags))
1047 set_bit(RXRPC_CALL_RX_HEARD, &call->flags);
1048
1049 timo = READ_ONCE(call->next_rx_timo);
1050 if (timo) {
1051 unsigned long now = jiffies, expect_rx_by;
1052
1053 expect_rx_by = now + timo;
1054 WRITE_ONCE(call->expect_rx_by, expect_rx_by);
1055 rxrpc_reduce_call_timer(call, expect_rx_by, now,
1056 rxrpc_timer_set_for_normal);
1057 }
1058
1059 switch (sp->hdr.type) {
1060 case RXRPC_PACKET_TYPE_DATA:
1061 return rxrpc_input_data(call, skb);
1062
1063 case RXRPC_PACKET_TYPE_ACK:
1064 return rxrpc_input_ack(call, skb);
1065
1066 case RXRPC_PACKET_TYPE_BUSY:
1067 /* Just ignore BUSY packets from the server; the retry and
1068 * lifespan timers will take care of business. BUSY packets
1069 * from the client don't make sense.
1070 */
1071 return;
1072
1073 case RXRPC_PACKET_TYPE_ABORT:
1074 return rxrpc_input_abort(call, skb);
1075
1076 case RXRPC_PACKET_TYPE_ACKALL:
1077 return rxrpc_input_ackall(call, skb);
1078
1079 default:
1080 break;
1081 }
1082}
1083
1084/*
1085 * Handle a new service call on a channel implicitly completing the preceding
1086 * call on that channel. This does not apply to client conns.
1087 *
1088 * TODO: If callNumber > call_id + 1, renegotiate security.
1089 */
1090void rxrpc_implicit_end_call(struct rxrpc_call *call, struct sk_buff *skb)
1091{
1092 switch (__rxrpc_call_state(call)) {
1093 case RXRPC_CALL_SERVER_AWAIT_ACK:
1094 rxrpc_call_completed(call);
1095 fallthrough;
1096 case RXRPC_CALL_COMPLETE:
1097 break;
1098 default:
1099 rxrpc_abort_call(call, 0, RX_CALL_DEAD, -ESHUTDOWN,
1100 rxrpc_eproto_improper_term);
1101 trace_rxrpc_improper_term(call);
1102 break;
1103 }
1104
1105 rxrpc_input_call_event(call, skb);
1106}