blob: 2b976e789562d9575cd4b4b14870d4e924e514d5 [file] [log] [blame]
David Howells17926a72007-04-26 15:48:28 -07001/* Management of Tx window, Tx resend, ACKs and out-of-sequence reception
2 *
3 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
Joe Perches9b6d5392016-06-02 12:08:52 -070012#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13
David Howells17926a72007-04-26 15:48:28 -070014#include <linux/module.h>
15#include <linux/circ_buf.h>
16#include <linux/net.h>
17#include <linux/skbuff.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.h>
David Howells17926a72007-04-26 15:48:28 -070019#include <linux/udp.h>
20#include <net/sock.h>
21#include <net/af_rxrpc.h>
22#include "ar-internal.h"
23
David Howells5873c082014-02-07 18:58:44 +000024/*
David Howells248f2192016-09-08 11:10:12 +010025 * Set the timer
26 */
27static void rxrpc_set_timer(struct rxrpc_call *call)
28{
29 unsigned long t, now = jiffies;
30
31 _enter("{%ld,%ld,%ld:%ld}",
32 call->ack_at - now, call->resend_at - now, call->expire_at - now,
33 call->timer.expires - now);
34
35 read_lock_bh(&call->state_lock);
36
37 if (call->state < RXRPC_CALL_COMPLETE) {
38 t = call->ack_at;
39 if (time_before(call->resend_at, t))
40 t = call->resend_at;
41 if (time_before(call->expire_at, t))
42 t = call->expire_at;
43 if (!timer_pending(&call->timer) ||
44 time_before(t, call->timer.expires)) {
45 _debug("set timer %ld", t - now);
46 mod_timer(&call->timer, t);
47 }
48 }
49 read_unlock_bh(&call->state_lock);
50}
51
52/*
David Howells17926a72007-04-26 15:48:28 -070053 * propose an ACK be sent
54 */
David Howells248f2192016-09-08 11:10:12 +010055static void __rxrpc_propose_ACK(struct rxrpc_call *call, u8 ack_reason,
56 u16 skew, u32 serial, bool immediate,
57 bool background)
David Howells17926a72007-04-26 15:48:28 -070058{
David Howells248f2192016-09-08 11:10:12 +010059 unsigned long now, ack_at, expiry = rxrpc_soft_ack_delay;
David Howells17926a72007-04-26 15:48:28 -070060 s8 prior = rxrpc_ack_priority[ack_reason];
61
David Howells17926a72007-04-26 15:48:28 -070062 _enter("{%d},%s,%%%x,%u",
David Howells0d12f8a2016-03-04 15:53:46 +000063 call->debug_id, rxrpc_acks(ack_reason), serial, immediate);
David Howells17926a72007-04-26 15:48:28 -070064
David Howells248f2192016-09-08 11:10:12 +010065 /* Update DELAY, IDLE, REQUESTED and PING_RESPONSE ACK serial
66 * numbers, but we don't alter the timeout.
67 */
68 _debug("prior %u %u vs %u %u",
69 ack_reason, prior,
70 call->ackr_reason, rxrpc_ack_priority[call->ackr_reason]);
71 if (ack_reason == call->ackr_reason) {
72 if (RXRPC_ACK_UPDATEABLE & (1 << ack_reason)) {
David Howells17926a72007-04-26 15:48:28 -070073 call->ackr_serial = serial;
David Howells248f2192016-09-08 11:10:12 +010074 call->ackr_skew = skew;
David Howells563ea7d2016-08-23 15:27:25 +010075 }
David Howells248f2192016-09-08 11:10:12 +010076 if (!immediate)
77 return;
78 } else if (prior > rxrpc_ack_priority[call->ackr_reason]) {
79 call->ackr_reason = ack_reason;
80 call->ackr_serial = serial;
81 call->ackr_skew = skew;
David Howells17926a72007-04-26 15:48:28 -070082 }
83
David Howells17926a72007-04-26 15:48:28 -070084 switch (ack_reason) {
David Howells248f2192016-09-08 11:10:12 +010085 case RXRPC_ACK_REQUESTED:
86 if (rxrpc_requested_ack_delay < expiry)
87 expiry = rxrpc_requested_ack_delay;
88 if (serial == 1)
89 immediate = false;
90 break;
91
David Howells17926a72007-04-26 15:48:28 -070092 case RXRPC_ACK_DELAY:
David Howells248f2192016-09-08 11:10:12 +010093 if (rxrpc_soft_ack_delay < expiry)
94 expiry = rxrpc_soft_ack_delay;
95 break;
David Howells17926a72007-04-26 15:48:28 -070096
97 case RXRPC_ACK_IDLE:
David Howells248f2192016-09-08 11:10:12 +010098 if (rxrpc_soft_ack_delay < expiry)
David Howells5873c082014-02-07 18:58:44 +000099 expiry = rxrpc_idle_ack_delay;
David Howells248f2192016-09-08 11:10:12 +0100100 break;
David Howells17926a72007-04-26 15:48:28 -0700101
102 default:
David Howells248f2192016-09-08 11:10:12 +0100103 immediate = true;
104 break;
David Howells17926a72007-04-26 15:48:28 -0700105 }
106
David Howells248f2192016-09-08 11:10:12 +0100107 now = jiffies;
108 if (test_bit(RXRPC_CALL_EV_ACK, &call->events)) {
109 _debug("already scheduled");
110 } else if (immediate || expiry == 0) {
111 _debug("immediate ACK %lx", call->events);
112 if (!test_and_set_bit(RXRPC_CALL_EV_ACK, &call->events) &&
113 background)
114 rxrpc_queue_call(call);
115 } else {
116 ack_at = now + expiry;
117 _debug("deferred ACK %ld < %ld", expiry, call->ack_at - now);
118 if (time_before(ack_at, call->ack_at)) {
119 call->ack_at = ack_at;
120 rxrpc_set_timer(call);
121 }
122 }
David Howells17926a72007-04-26 15:48:28 -0700123}
124
125/*
126 * propose an ACK be sent, locking the call structure
127 */
David Howells4e36a952009-09-16 00:01:13 -0700128void rxrpc_propose_ACK(struct rxrpc_call *call, u8 ack_reason,
David Howells248f2192016-09-08 11:10:12 +0100129 u16 skew, u32 serial, bool immediate, bool background)
David Howells17926a72007-04-26 15:48:28 -0700130{
David Howells248f2192016-09-08 11:10:12 +0100131 spin_lock_bh(&call->lock);
132 __rxrpc_propose_ACK(call, ack_reason, skew, serial,
133 immediate, background);
134 spin_unlock_bh(&call->lock);
David Howells17926a72007-04-26 15:48:28 -0700135}
136
137/*
David Howells248f2192016-09-08 11:10:12 +0100138 * Perform retransmission of NAK'd and unack'd packets.
David Howells17926a72007-04-26 15:48:28 -0700139 */
140static void rxrpc_resend(struct rxrpc_call *call)
141{
David Howells0d12f8a2016-03-04 15:53:46 +0000142 struct rxrpc_wire_header *whdr;
David Howells17926a72007-04-26 15:48:28 -0700143 struct rxrpc_skb_priv *sp;
David Howells17926a72007-04-26 15:48:28 -0700144 struct sk_buff *skb;
David Howells248f2192016-09-08 11:10:12 +0100145 rxrpc_seq_t cursor, seq, top;
146 unsigned long resend_at, now;
147 int ix;
148 u8 annotation;
David Howells17926a72007-04-26 15:48:28 -0700149
David Howells248f2192016-09-08 11:10:12 +0100150 _enter("{%d,%d}", call->tx_hard_ack, call->tx_top);
David Howells17926a72007-04-26 15:48:28 -0700151
152 spin_lock_bh(&call->lock);
153
David Howells248f2192016-09-08 11:10:12 +0100154 cursor = call->tx_hard_ack;
155 top = call->tx_top;
156 ASSERT(before_eq(cursor, top));
157 if (cursor == top)
158 goto out_unlock;
David Howells17926a72007-04-26 15:48:28 -0700159
David Howells248f2192016-09-08 11:10:12 +0100160 /* Scan the packet list without dropping the lock and decide which of
161 * the packets in the Tx buffer we're going to resend and what the new
162 * resend timeout will be.
163 */
164 now = jiffies;
165 resend_at = now + rxrpc_resend_timeout;
166 seq = cursor + 1;
167 do {
168 ix = seq & RXRPC_RXTX_BUFF_MASK;
169 annotation = call->rxtx_annotations[ix];
170 if (annotation == RXRPC_TX_ANNO_ACK)
171 continue;
172
173 skb = call->rxtx_buffer[ix];
David Howellsdf844fd2016-08-23 15:27:24 +0100174 rxrpc_see_skb(skb);
David Howells17926a72007-04-26 15:48:28 -0700175 sp = rxrpc_skb(skb);
176
David Howells248f2192016-09-08 11:10:12 +0100177 if (annotation == RXRPC_TX_ANNO_UNACK) {
178 if (time_after(sp->resend_at, now)) {
179 if (time_before(sp->resend_at, resend_at))
180 resend_at = sp->resend_at;
181 continue;
182 }
David Howells17926a72007-04-26 15:48:28 -0700183 }
David Howells17926a72007-04-26 15:48:28 -0700184
David Howells248f2192016-09-08 11:10:12 +0100185 /* Okay, we need to retransmit a packet. */
186 call->rxtx_annotations[ix] = RXRPC_TX_ANNO_RETRANS;
187 seq++;
188 } while (before_eq(seq, top));
David Howells17926a72007-04-26 15:48:28 -0700189
David Howells248f2192016-09-08 11:10:12 +0100190 call->resend_at = resend_at;
David Howells17926a72007-04-26 15:48:28 -0700191
David Howells248f2192016-09-08 11:10:12 +0100192 /* Now go through the Tx window and perform the retransmissions. We
193 * have to drop the lock for each send. If an ACK comes in whilst the
194 * lock is dropped, it may clear some of the retransmission markers for
195 * packets that it soft-ACKs.
196 */
197 seq = cursor + 1;
198 do {
199 ix = seq & RXRPC_RXTX_BUFF_MASK;
200 annotation = call->rxtx_annotations[ix];
201 if (annotation != RXRPC_TX_ANNO_RETRANS)
202 continue;
David Howells17926a72007-04-26 15:48:28 -0700203
David Howells248f2192016-09-08 11:10:12 +0100204 skb = call->rxtx_buffer[ix];
205 rxrpc_get_skb(skb);
206 spin_unlock_bh(&call->lock);
David Howells17926a72007-04-26 15:48:28 -0700207 sp = rxrpc_skb(skb);
David Howells248f2192016-09-08 11:10:12 +0100208
209 /* Each Tx packet needs a new serial number */
210 sp->hdr.serial = atomic_inc_return(&call->conn->serial);
211
212 whdr = (struct rxrpc_wire_header *)skb->head;
213 whdr->serial = htonl(sp->hdr.serial);
214
215 if (rxrpc_send_data_packet(call->conn, skb) < 0) {
216 call->resend_at = now + 2;
217 rxrpc_free_skb(skb);
218 return;
219 }
220
221 if (rxrpc_is_client_call(call))
222 rxrpc_expose_client_call(call);
223 sp->resend_at = now + rxrpc_resend_timeout;
224
David Howells17926a72007-04-26 15:48:28 -0700225 rxrpc_free_skb(skb);
David Howells17926a72007-04-26 15:48:28 -0700226 spin_lock_bh(&call->lock);
David Howells17926a72007-04-26 15:48:28 -0700227
David Howells248f2192016-09-08 11:10:12 +0100228 /* We need to clear the retransmit state, but there are two
229 * things we need to be aware of: A new ACK/NAK might have been
230 * received and the packet might have been hard-ACK'd (in which
231 * case it will no longer be in the buffer).
232 */
233 if (after(seq, call->tx_hard_ack) &&
234 (call->rxtx_annotations[ix] == RXRPC_TX_ANNO_RETRANS ||
235 call->rxtx_annotations[ix] == RXRPC_TX_ANNO_NAK))
236 call->rxtx_annotations[ix] = RXRPC_TX_ANNO_UNACK;
David Howells17926a72007-04-26 15:48:28 -0700237
David Howells248f2192016-09-08 11:10:12 +0100238 if (after(call->tx_hard_ack, seq))
239 seq = call->tx_hard_ack;
240 seq++;
241 } while (before_eq(seq, top));
242
243out_unlock:
244 spin_unlock_bh(&call->lock);
245 _leave("");
David Howells17926a72007-04-26 15:48:28 -0700246}
247
248/*
David Howells248f2192016-09-08 11:10:12 +0100249 * Handle retransmission and deferred ACK/abort generation.
David Howells17926a72007-04-26 15:48:28 -0700250 */
251void rxrpc_process_call(struct work_struct *work)
252{
253 struct rxrpc_call *call =
254 container_of(work, struct rxrpc_call, processor);
David Howells248f2192016-09-08 11:10:12 +0100255 unsigned long now;
David Howells17926a72007-04-26 15:48:28 -0700256
David Howellse34d4232016-08-30 09:49:29 +0100257 rxrpc_see_call(call);
258
David Howells17926a72007-04-26 15:48:28 -0700259 //printk("\n--------------------\n");
David Howells248f2192016-09-08 11:10:12 +0100260 _enter("{%d,%s,%lx}",
261 call->debug_id, rxrpc_call_states[call->state], call->events);
David Howells17926a72007-04-26 15:48:28 -0700262
David Howells248f2192016-09-08 11:10:12 +0100263recheck_state:
264 if (test_and_clear_bit(RXRPC_CALL_EV_ABORT, &call->events)) {
265 rxrpc_send_call_packet(call, RXRPC_PACKET_TYPE_ABORT);
266 goto recheck_state;
David Howells8d94aa32016-09-07 09:19:31 +0100267 }
268
David Howells248f2192016-09-08 11:10:12 +0100269 if (call->state == RXRPC_CALL_COMPLETE) {
270 del_timer_sync(&call->timer);
271 goto out_put;
David Howells17926a72007-04-26 15:48:28 -0700272 }
273
David Howells248f2192016-09-08 11:10:12 +0100274 now = jiffies;
275 if (time_after_eq(now, call->expire_at)) {
David Howells5a429762016-09-06 22:19:51 +0100276 rxrpc_abort_call("EXP", call, 0, RX_CALL_TIMEOUT, ETIME);
David Howells248f2192016-09-08 11:10:12 +0100277 set_bit(RXRPC_CALL_EV_ABORT, &call->events);
David Howells17926a72007-04-26 15:48:28 -0700278 }
279
David Howells248f2192016-09-08 11:10:12 +0100280 if (test_and_clear_bit(RXRPC_CALL_EV_ACK, &call->events) ||
281 time_after_eq(now, call->ack_at)) {
282 call->ack_at = call->expire_at;
283 if (call->ackr_reason) {
284 rxrpc_send_call_packet(call, RXRPC_PACKET_TYPE_ACK);
285 goto recheck_state;
David Howells17926a72007-04-26 15:48:28 -0700286 }
287 }
288
David Howells248f2192016-09-08 11:10:12 +0100289 if (test_and_clear_bit(RXRPC_CALL_EV_RESEND, &call->events) ||
290 time_after_eq(now, call->resend_at)) {
David Howells17926a72007-04-26 15:48:28 -0700291 rxrpc_resend(call);
David Howells248f2192016-09-08 11:10:12 +0100292 goto recheck_state;
David Howells17926a72007-04-26 15:48:28 -0700293 }
294
David Howells248f2192016-09-08 11:10:12 +0100295 rxrpc_set_timer(call);
David Howells17926a72007-04-26 15:48:28 -0700296
297 /* other events may have been raised since we started checking */
David Howells248f2192016-09-08 11:10:12 +0100298 if (call->events && call->state < RXRPC_CALL_COMPLETE) {
David Howells8d94aa32016-09-07 09:19:31 +0100299 __rxrpc_queue_call(call);
David Howells248f2192016-09-08 11:10:12 +0100300 goto out;
David Howells17926a72007-04-26 15:48:28 -0700301 }
302
David Howells248f2192016-09-08 11:10:12 +0100303out_put:
304 rxrpc_put_call(call, rxrpc_call_put);
305out:
David Howells17926a72007-04-26 15:48:28 -0700306 _leave("");
David Howells17926a72007-04-26 15:48:28 -0700307}