dccp tfrc: Receiver history initialisation routine
[deliverable/linux.git] / net / dccp / ccids / ccid3.c
CommitLineData
7c657876
ACM
1/*
2 * net/dccp/ccids/ccid3.c
3 *
954c2db8 4 * Copyright (c) 2007 The University of Aberdeen, Scotland, UK
b2f41ff4
IM
5 * Copyright (c) 2005-7 The University of Waikato, Hamilton, New Zealand.
6 * Copyright (c) 2005-7 Ian McDonald <ian.mcdonald@jandi.co.nz>
7c657876
ACM
7 *
8 * An implementation of the DCCP protocol
9 *
10 * This code has been developed by the University of Waikato WAND
11 * research group. For further information please see http://www.wand.net.nz/
7c657876
ACM
12 *
13 * This code also uses code from Lulea University, rereleased as GPL by its
14 * authors:
15 * Copyright (c) 2003 Nils-Erik Mattsson, Joacim Haggmark, Magnus Erixzon
16 *
17 * Changes to meet Linux coding standards, to make it meet latest ccid3 draft
18 * and to make it work as a loadable module in the DCCP stack written by
19 * Arnaldo Carvalho de Melo <acme@conectiva.com.br>.
20 *
21 * Copyright (c) 2005 Arnaldo Carvalho de Melo <acme@conectiva.com.br>
22 *
23 * This program is free software; you can redistribute it and/or modify
24 * it under the terms of the GNU General Public License as published by
25 * the Free Software Foundation; either version 2 of the License, or
26 * (at your option) any later version.
27 *
28 * This program is distributed in the hope that it will be useful,
29 * but WITHOUT ANY WARRANTY; without even the implied warranty of
30 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
31 * GNU General Public License for more details.
32 *
33 * You should have received a copy of the GNU General Public License
34 * along with this program; if not, write to the Free Software
35 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
36 */
7c657876
ACM
37#include "../dccp.h"
38#include "ccid3.h"
39
76fd1e87
GR
40#include <asm/unaligned.h>
41
56724aa4
GR
42#ifdef CONFIG_IP_DCCP_CCID3_DEBUG
43static int ccid3_debug;
44#define ccid3_pr_debug(format, a...) DCCP_PR_DEBUG(ccid3_debug, format, ##a)
7c657876
ACM
45#else
46#define ccid3_pr_debug(format, a...)
47#endif
48
9bf17475
GR
49/*
50 * Transmitter Half-Connection Routines
51 */
7c657876 52
a21f9f96 53/*
6c08b2cf
GR
54 * Compute the initial sending rate X_init in the manner of RFC 3390:
55 *
56 * X_init = min(4 * s, max(2 * s, 4380 bytes)) / RTT
57 *
58 * Note that RFC 3390 uses MSS, RFC 4342 refers to RFC 3390, and rfc3448bis
59 * (rev-02) clarifies the use of RFC 3390 with regard to the above formula.
a21f9f96
GR
60 * For consistency with other parts of the code, X_init is scaled by 2^6.
61 */
62static inline u64 rfc3390_initial_rate(struct sock *sk)
63{
6c08b2cf 64 const struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
842d1ef1 65 const __u32 w_init = clamp_t(__u32, 4380U, 2 * hctx->s, 4 * hctx->s);
a21f9f96 66
842d1ef1 67 return scaled_div(w_init << 6, hctx->rtt);
a21f9f96
GR
68}
69
de6f2b59
GR
70/**
71 * ccid3_update_send_interval - Calculate new t_ipi = s / X_inst
72 * This respects the granularity of X_inst (64 * bytes/second).
17893bc1 73 */
c4e18dad 74static void ccid3_update_send_interval(struct ccid3_hc_tx_sock *hctx)
7c657876 75{
842d1ef1 76 hctx->t_ipi = scaled_div32(((u64)hctx->s) << 6, hctx->x);
7c657876 77
de6f2b59
GR
78 ccid3_pr_debug("t_ipi=%u, s=%u, X=%u\n", hctx->t_ipi,
79 hctx->s, (unsigned)(hctx->x >> 6));
7c657876 80}
aa97efd9 81
a5358fdc
GR
82static u32 ccid3_hc_tx_idle_rtt(struct ccid3_hc_tx_sock *hctx, ktime_t now)
83{
842d1ef1 84 u32 delta = ktime_us_delta(now, hctx->t_last_win_count);
a5358fdc 85
842d1ef1 86 return delta / hctx->rtt;
a5358fdc
GR
87}
88
aa97efd9
GR
89/**
90 * ccid3_hc_tx_update_x - Update allowed sending rate X
91 * @stamp: most recent time if available - can be left NULL.
92 * This function tracks draft rfc3448bis, check there for latest details.
5c3fbb6a 93 *
1a21e49a
GR
94 * Note: X and X_recv are both stored in units of 64 * bytes/second, to support
95 * fine-grained resolution of sending rates. This requires scaling by 2^6
96 * throughout the code. Only X_calc is unscaled (in bytes/second).
97 *
1a21e49a 98 */
aa97efd9 99static void ccid3_hc_tx_update_x(struct sock *sk, ktime_t *stamp)
7c657876 100{
59725dc2 101 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
842d1ef1
GR
102 u64 min_rate = 2 * hctx->x_recv;
103 const u64 old_x = hctx->x;
52515e77 104 ktime_t now = stamp ? *stamp : ktime_get_real();
7c657876 105
0c150efb
GR
106 /*
107 * Handle IDLE periods: do not reduce below RFC3390 initial sending rate
a5358fdc
GR
108 * when idling [RFC 4342, 5.1]. Definition of idling is from rfc3448bis:
109 * a sender is idle if it has not sent anything over a 2-RTT-period.
0c150efb
GR
110 * For consistency with X and X_recv, min_rate is also scaled by 2^6.
111 */
a5358fdc 112 if (ccid3_hc_tx_idle_rtt(hctx, now) >= 2) {
0c150efb 113 min_rate = rfc3390_initial_rate(sk);
842d1ef1 114 min_rate = max(min_rate, 2 * hctx->x_recv);
0c150efb
GR
115 }
116
842d1ef1 117 if (hctx->p > 0) {
1a21e49a 118
842d1ef1
GR
119 hctx->x = min(((u64)hctx->x_calc) << 6, min_rate);
120 hctx->x = max(hctx->x, (((u64)hctx->s) << 6) / TFRC_T_MBI);
a79ef76f 121
842d1ef1 122 } else if (ktime_us_delta(now, hctx->t_ld) - (s64)hctx->rtt >= 0) {
ac198ea8 123
842d1ef1
GR
124 hctx->x = min(2 * hctx->x, min_rate);
125 hctx->x = max(hctx->x,
126 scaled_div(((u64)hctx->s) << 6, hctx->rtt));
127 hctx->t_ld = now;
ff586298 128 }
b6ee3d4a 129
842d1ef1 130 if (hctx->x != old_x) {
1761f7d7
GR
131 ccid3_pr_debug("X_prev=%u, X_now=%u, X_calc=%u, "
132 "X_recv=%u\n", (unsigned)(old_x >> 6),
842d1ef1
GR
133 (unsigned)(hctx->x >> 6), hctx->x_calc,
134 (unsigned)(hctx->x_recv >> 6));
8699be7d 135
1266adee 136 ccid3_update_send_interval(hctx);
8699be7d 137 }
7c657876
ACM
138}
139
78ad713d 140/*
8109b02b
ACM
141 * Track the mean packet size `s' (cf. RFC 4342, 5.3 and RFC 3448, 4.1)
142 * @len: DCCP packet payload size in bytes
78ad713d
GR
143 */
144static inline void ccid3_hc_tx_update_s(struct ccid3_hc_tx_sock *hctx, int len)
145{
842d1ef1 146 const u16 old_s = hctx->s;
1266adee 147
842d1ef1 148 hctx->s = tfrc_ewma(hctx->s, len, 9);
1266adee 149
842d1ef1 150 if (hctx->s != old_s)
1266adee 151 ccid3_update_send_interval(hctx);
78ad713d
GR
152}
153
9f8681db 154/*
8109b02b 155 * Update Window Counter using the algorithm from [RFC 4342, 8.1].
825de27d 156 * As elsewhere, RTT > 0 is assumed by using dccp_sample_rtt().
9f8681db
GR
157 */
158static inline void ccid3_hc_tx_update_win_count(struct ccid3_hc_tx_sock *hctx,
8132da4d 159 ktime_t now)
9f8681db 160{
842d1ef1
GR
161 u32 delta = ktime_us_delta(now, hctx->t_last_win_count),
162 quarter_rtts = (4 * delta) / hctx->rtt;
9f8681db
GR
163
164 if (quarter_rtts > 0) {
842d1ef1
GR
165 hctx->t_last_win_count = now;
166 hctx->last_win_count += min(quarter_rtts, 5U);
167 hctx->last_win_count &= 0xF; /* mod 16 */
9f8681db
GR
168 }
169}
170
7c657876
ACM
171static void ccid3_hc_tx_no_feedback_timer(unsigned long data)
172{
173 struct sock *sk = (struct sock *)data;
59725dc2 174 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
2a1fda6f 175 unsigned long t_nfb = USEC_PER_SEC / 5;
7c657876
ACM
176
177 bh_lock_sock(sk);
178 if (sock_owned_by_user(sk)) {
179 /* Try again later. */
180 /* XXX: set some sensible MIB */
48e03eee 181 goto restart_timer;
7c657876
ACM
182 }
183
d0c05fe4
GR
184 ccid3_pr_debug("%s(%p) entry with%s feedback\n", dccp_role(sk), sk,
185 hctx->feedback ? "" : "out");
a9672411 186
d0995e6a
GR
187 /* Ignore and do not restart after leaving the established state */
188 if ((1 << sk->sk_state) & ~(DCCPF_OPEN | DCCPF_PARTOPEN))
189 goto out;
190
191 /* Reset feedback state to "no feedback received" */
d0c05fe4 192 hctx->feedback = false;
52515e77
GR
193
194 /*
195 * Determine new allowed sending rate X as per draft rfc3448bis-00, 4.4
842d1ef1 196 * RTO is 0 if and only if no feedback has been received yet.
52515e77 197 */
842d1ef1 198 if (hctx->t_rto == 0 || hctx->p == 0) {
52515e77
GR
199
200 /* halve send rate directly */
842d1ef1 201 hctx->x = max(hctx->x / 2, (((u64)hctx->s) << 6) / TFRC_T_MBI);
1266adee 202 ccid3_update_send_interval(hctx);
52515e77 203 } else {
1f2333ae 204 /*
52515e77 205 * Modify the cached value of X_recv
0c150efb 206 *
52515e77 207 * If (X_calc > 2 * X_recv)
0c150efb
GR
208 * X_recv = max(X_recv / 2, s / (2 * t_mbi));
209 * Else
210 * X_recv = X_calc / 4;
211 *
212 * Note that X_recv is scaled by 2^6 while X_calc is not
1f2333ae 213 */
842d1ef1 214 BUG_ON(hctx->p && !hctx->x_calc);
0c150efb 215
842d1ef1
GR
216 if (hctx->x_calc > (hctx->x_recv >> 5))
217 hctx->x_recv =
218 max(hctx->x_recv / 2,
219 (((__u64)hctx->s) << 6) / (2 * TFRC_T_MBI));
52515e77 220 else {
842d1ef1
GR
221 hctx->x_recv = hctx->x_calc;
222 hctx->x_recv <<= 4;
7c657876 223 }
aa97efd9 224 ccid3_hc_tx_update_x(sk, NULL);
7c657876 225 }
52515e77 226 ccid3_pr_debug("Reduced X to %llu/64 bytes/sec\n",
842d1ef1 227 (unsigned long long)hctx->x);
52515e77
GR
228
229 /*
230 * Set new timeout for the nofeedback timer.
231 * See comments in packet_recv() regarding the value of t_RTO.
232 */
842d1ef1 233 if (unlikely(hctx->t_rto == 0)) /* no feedback received yet */
52515e77
GR
234 t_nfb = TFRC_INITIAL_TIMEOUT;
235 else
842d1ef1 236 t_nfb = max(hctx->t_rto, 2 * hctx->t_ipi);
7c657876 237
48e03eee 238restart_timer:
842d1ef1 239 sk_reset_timer(sk, &hctx->no_feedback_timer,
c9eaf173 240 jiffies + usecs_to_jiffies(t_nfb));
7c657876
ACM
241out:
242 bh_unlock_sock(sk);
243 sock_put(sk);
244}
245
f4a66ca4
GR
246/**
247 * ccid3_hc_tx_send_packet - Delay-based dequeueing of TX packets
248 * @skb: next packet candidate to send on @sk
249 * This function uses the convention of ccid_packet_dequeue_eval() and
250 * returns a millisecond-delay value between 0 and t_mbi = 64000 msec.
7da7f456 251 */
6b57c93d 252static int ccid3_hc_tx_send_packet(struct sock *sk, struct sk_buff *skb)
7c657876
ACM
253{
254 struct dccp_sock *dp = dccp_sk(sk);
59725dc2 255 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
8132da4d
GR
256 ktime_t now = ktime_get_real();
257 s64 delay;
7c657876 258
7c657876 259 /*
da335baf
GR
260 * This function is called only for Data and DataAck packets. Sending
261 * zero-sized Data(Ack)s is theoretically possible, but for congestion
262 * control this case is pathological - ignore it.
7c657876 263 */
6b57c93d 264 if (unlikely(skb->len == 0))
da335baf 265 return -EBADMSG;
7c657876 266
d0c05fe4 267 if (hctx->s == 0) {
842d1ef1 268 sk_reset_timer(sk, &hctx->no_feedback_timer, (jiffies +
c9eaf173 269 usecs_to_jiffies(TFRC_INITIAL_TIMEOUT)));
842d1ef1
GR
270 hctx->last_win_count = 0;
271 hctx->t_last_win_count = now;
90feeb95
GR
272
273 /* Set t_0 for initial packet */
842d1ef1 274 hctx->t_nom = now;
30833ffe 275
842d1ef1 276 hctx->s = skb->len;
30833ffe
GR
277
278 /*
279 * Use initial RTT sample when available: recommended by erratum
280 * to RFC 4342. This implements the initialisation procedure of
281 * draft rfc3448bis, section 4.2. Remember, X is scaled by 2^6.
282 */
283 if (dp->dccps_syn_rtt) {
284 ccid3_pr_debug("SYN RTT = %uus\n", dp->dccps_syn_rtt);
842d1ef1
GR
285 hctx->rtt = dp->dccps_syn_rtt;
286 hctx->x = rfc3390_initial_rate(sk);
287 hctx->t_ld = now;
30833ffe 288 } else {
3294f202
GR
289 /*
290 * Sender does not have RTT sample:
291 * - set fallback RTT (RFC 4340, 3.4) since a RTT value
292 * is needed in several parts (e.g. window counter);
293 * - set sending rate X_pps = 1pps as per RFC 3448, 4.2.
294 */
842d1ef1
GR
295 hctx->rtt = DCCP_FALLBACK_RTT;
296 hctx->x = hctx->s;
297 hctx->x <<= 6;
30833ffe
GR
298 }
299 ccid3_update_send_interval(hctx);
300
d0995e6a 301 } else {
842d1ef1 302 delay = ktime_us_delta(hctx->t_nom, now);
8699be7d 303 ccid3_pr_debug("delay=%ld\n", (long)delay);
91cf5a17 304 /*
8109b02b 305 * Scheduling of packet transmissions [RFC 3448, 4.6]
91cf5a17
GR
306 *
307 * if (t_now > t_nom - delta)
308 * // send the packet now
309 * else
310 * // send the packet in (t_nom - t_now) milliseconds.
311 */
de6f2b59
GR
312 if (delay >= TFRC_T_DELTA)
313 return (u32)delay / USEC_PER_MSEC;
9f8681db 314
8132da4d 315 ccid3_hc_tx_update_win_count(hctx, now);
7c657876
ACM
316 }
317
7da7f456
GR
318 /* prepare to send now (add options etc.) */
319 dp->dccps_hc_tx_insert_options = 1;
842d1ef1 320 DCCP_SKB_CB(skb)->dccpd_ccval = hctx->last_win_count;
e312d100
GR
321
322 /* set the nominal send time for the next following packet */
842d1ef1 323 hctx->t_nom = ktime_add_us(hctx->t_nom, hctx->t_ipi);
f4a66ca4 324 return CCID_PACKET_SEND_AT_ONCE;
7c657876
ACM
325}
326
c506d91d 327static void ccid3_hc_tx_packet_sent(struct sock *sk, unsigned int len)
7c657876 328{
59725dc2 329 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
7c657876 330
6b57c93d 331 ccid3_hc_tx_update_s(hctx, len);
7c657876 332
842d1ef1 333 if (tfrc_tx_hist_add(&hctx->hist, dccp_sk(sk)->dccps_gss))
c5a1ae9a 334 DCCP_CRIT("packet history - out of memory!");
7c657876
ACM
335}
336
337static void ccid3_hc_tx_packet_recv(struct sock *sk, struct sk_buff *skb)
338{
59725dc2 339 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
63b3a73b 340 struct tfrc_tx_hist_entry *acked;
0740d49c 341 ktime_t now;
2a1fda6f 342 unsigned long t_nfb;
ce177ae2 343 u32 r_sample;
1f2333ae 344
7c657876
ACM
345 /* we are only interested in ACKs */
346 if (!(DCCP_SKB_CB(skb)->dccpd_type == DCCP_PKT_ACK ||
347 DCCP_SKB_CB(skb)->dccpd_type == DCCP_PKT_DATAACK))
348 return;
63b3a73b
GR
349 /*
350 * Locate the acknowledged packet in the TX history.
351 *
352 * Returning "entry not found" here can for instance happen when
353 * - the host has not sent out anything (e.g. a passive server),
354 * - the Ack is outdated (packet with higher Ack number was received),
355 * - it is a bogus Ack (for a packet not sent on this connection).
356 */
357 acked = tfrc_tx_hist_find_entry(hctx->hist, dccp_hdr_ack_seq(skb));
358 if (acked == NULL)
5bd370a6 359 return;
63b3a73b
GR
360 /* For the sake of RTT sampling, ignore/remove all older entries */
361 tfrc_tx_hist_purge(&acked->next);
362
363 /* Update the moving average for the RTT estimate (RFC 3448, 4.3) */
364 now = ktime_get_real();
365 r_sample = dccp_sample_rtt(sk, ktime_us_delta(now, acked->stamp));
366 hctx->rtt = tfrc_ewma(hctx->rtt, r_sample, 9);
7c657876 367
d8d1252f
GR
368 /*
369 * Update allowed sending rate X as per draft rfc3448bis-00, 4.2/3
370 */
d0c05fe4
GR
371 if (!hctx->feedback) {
372 hctx->feedback = true;
5c3fbb6a 373
842d1ef1 374 if (hctx->t_rto == 0) {
d8d1252f
GR
375 /*
376 * Initial feedback packet: Larger Initial Windows (4.2)
377 */
842d1ef1
GR
378 hctx->x = rfc3390_initial_rate(sk);
379 hctx->t_ld = now;
a79ef76f 380
d8d1252f 381 ccid3_update_send_interval(hctx);
7c657876 382
d8d1252f 383 goto done_computing_x;
842d1ef1 384 } else if (hctx->p == 0) {
d8d1252f
GR
385 /*
386 * First feedback after nofeedback timer expiry (4.3)
387 */
388 goto done_computing_x;
389 }
390 }
7c657876 391
d8d1252f 392 /* Update sending rate (step 4 of [RFC 3448, 4.3]) */
842d1ef1
GR
393 if (hctx->p > 0)
394 hctx->x_calc = tfrc_calc_x(hctx->s, hctx->rtt, hctx->p);
d8d1252f 395 ccid3_hc_tx_update_x(sk, &now);
7c657876 396
d8d1252f
GR
397done_computing_x:
398 ccid3_pr_debug("%s(%p), RTT=%uus (sample=%uus), s=%u, "
5bd370a6 399 "p=%u, X_calc=%u, X_recv=%u, X=%u\n",
842d1ef1
GR
400 dccp_role(sk), sk, hctx->rtt, r_sample,
401 hctx->s, hctx->p, hctx->x_calc,
402 (unsigned)(hctx->x_recv >> 6),
403 (unsigned)(hctx->x >> 6));
7c657876 404
5bd370a6 405 /* unschedule no feedback timer */
842d1ef1 406 sk_stop_timer(sk, &hctx->no_feedback_timer);
7c657876 407
5bd370a6
GR
408 /*
409 * As we have calculated new ipi, delta, t_nom it is possible
410 * that we now can send a packet, so wake up dccp_wait_for_ccid
411 */
412 sk->sk_write_space(sk);
8c60f3fa 413
5bd370a6
GR
414 /*
415 * Update timeout interval for the nofeedback timer.
416 * We use a configuration option to increase the lower bound.
417 * This can help avoid triggering the nofeedback timer too
418 * often ('spinning') on LANs with small RTTs.
419 */
842d1ef1
GR
420 hctx->t_rto = max_t(u32, 4 * hctx->rtt, (CONFIG_IP_DCCP_CCID3_RTO *
421 (USEC_PER_SEC / 1000)));
5bd370a6
GR
422 /*
423 * Schedule no feedback timer to expire in
424 * max(t_RTO, 2 * s/X) = max(t_RTO, 2 * t_ipi)
425 */
842d1ef1 426 t_nfb = max(hctx->t_rto, 2 * hctx->t_ipi);
7c657876 427
5bd370a6
GR
428 ccid3_pr_debug("%s(%p), Scheduled no feedback timer to "
429 "expire in %lu jiffies (%luus)\n",
842d1ef1 430 dccp_role(sk), sk, usecs_to_jiffies(t_nfb), t_nfb);
a9672411 431
842d1ef1 432 sk_reset_timer(sk, &hctx->no_feedback_timer,
5bd370a6 433 jiffies + usecs_to_jiffies(t_nfb));
7c657876
ACM
434}
435
3306c781
GR
436static int ccid3_hc_tx_parse_options(struct sock *sk, u8 packet_type,
437 u8 option, u8 *optval, u8 optlen)
7c657876 438{
59725dc2 439 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
76fd1e87 440 __be32 opt_val;
7c657876 441
7c657876 442 switch (option) {
47a61e7b 443 case TFRC_OPT_RECEIVE_RATE:
7c657876 444 case TFRC_OPT_LOSS_EVENT_RATE:
3306c781
GR
445 /* Must be ignored on Data packets, cf. RFC 4342 8.3 and 8.5 */
446 if (packet_type == DCCP_PKT_DATA)
447 break;
448 if (unlikely(optlen != 4)) {
47a61e7b 449 DCCP_WARN("%s(%p), invalid len %d for %u\n",
3306c781 450 dccp_role(sk), sk, optlen, option);
47a61e7b 451 return -EINVAL;
7c657876 452 }
3306c781 453 opt_val = ntohl(get_unaligned((__be32 *)optval));
47a61e7b
GR
454
455 if (option == TFRC_OPT_RECEIVE_RATE) {
ce177ae2
GR
456 /* Receive Rate is kept in units of 64 bytes/second */
457 hctx->x_recv = opt_val;
458 hctx->x_recv <<= 6;
459
a9672411 460 ccid3_pr_debug("%s(%p), RECEIVE_RATE=%u\n",
47a61e7b
GR
461 dccp_role(sk), sk, opt_val);
462 } else {
ce177ae2
GR
463 /* Update the fixpoint Loss Event Rate fraction */
464 hctx->p = tfrc_invert_loss_event_rate(opt_val);
465
47a61e7b
GR
466 ccid3_pr_debug("%s(%p), LOSS_EVENT_RATE=%u\n",
467 dccp_role(sk), sk, opt_val);
7c657876 468 }
7c657876 469 }
47a61e7b 470 return 0;
7c657876
ACM
471}
472
91f0ebf7 473static int ccid3_hc_tx_init(struct ccid *ccid, struct sock *sk)
7c657876 474{
91f0ebf7 475 struct ccid3_hc_tx_sock *hctx = ccid_priv(ccid);
7c657876 476
842d1ef1
GR
477 hctx->hist = NULL;
478 setup_timer(&hctx->no_feedback_timer,
479 ccid3_hc_tx_no_feedback_timer, (unsigned long)sk);
7c657876
ACM
480 return 0;
481}
482
483static void ccid3_hc_tx_exit(struct sock *sk)
484{
59725dc2 485 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
7c657876 486
842d1ef1 487 sk_stop_timer(sk, &hctx->no_feedback_timer);
842d1ef1 488 tfrc_tx_hist_purge(&hctx->hist);
7c657876
ACM
489}
490
9bf17475
GR
491static void ccid3_hc_tx_get_info(struct sock *sk, struct tcp_info *info)
492{
b2e317f4
GR
493 info->tcpi_rto = ccid3_hc_tx_sk(sk)->t_rto;
494 info->tcpi_rtt = ccid3_hc_tx_sk(sk)->rtt;
9bf17475
GR
495}
496
497static int ccid3_hc_tx_getsockopt(struct sock *sk, const int optname, int len,
498 u32 __user *optval, int __user *optlen)
499{
b2e317f4 500 const struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
842d1ef1 501 struct tfrc_tx_info tfrc;
9bf17475
GR
502 const void *val;
503
9bf17475
GR
504 switch (optname) {
505 case DCCP_SOCKOPT_CCID_TX_INFO:
842d1ef1 506 if (len < sizeof(tfrc))
9bf17475 507 return -EINVAL;
842d1ef1
GR
508 tfrc.tfrctx_x = hctx->x;
509 tfrc.tfrctx_x_recv = hctx->x_recv;
510 tfrc.tfrctx_x_calc = hctx->x_calc;
511 tfrc.tfrctx_rtt = hctx->rtt;
512 tfrc.tfrctx_p = hctx->p;
513 tfrc.tfrctx_rto = hctx->t_rto;
514 tfrc.tfrctx_ipi = hctx->t_ipi;
515 len = sizeof(tfrc);
516 val = &tfrc;
9bf17475
GR
517 break;
518 default:
519 return -ENOPROTOOPT;
520 }
521
522 if (put_user(len, optlen) || copy_to_user(optval, val, len))
523 return -EFAULT;
524
525 return 0;
526}
527
7c657876 528/*
9bf17475 529 * Receiver Half-Connection Routines
7c657876 530 */
b84a2189
ACM
531
532/* CCID3 feedback types */
533enum ccid3_fback_type {
534 CCID3_FBACK_NONE = 0,
535 CCID3_FBACK_INITIAL,
536 CCID3_FBACK_PERIODIC,
537 CCID3_FBACK_PARAM_CHANGE
538};
539
56724aa4 540#ifdef CONFIG_IP_DCCP_CCID3_DEBUG
7c657876
ACM
541static const char *ccid3_rx_state_name(enum ccid3_hc_rx_states state)
542{
543 static char *ccid3_rx_state_names[] = {
544 [TFRC_RSTATE_NO_DATA] = "NO_DATA",
545 [TFRC_RSTATE_DATA] = "DATA",
7c657876
ACM
546 };
547
548 return ccid3_rx_state_names[state];
549}
550#endif
551
c25a18ba
ACM
552static void ccid3_hc_rx_set_state(struct sock *sk,
553 enum ccid3_hc_rx_states state)
7c657876 554{
59725dc2 555 struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
842d1ef1 556 enum ccid3_hc_rx_states oldstate = hcrx->state;
7c657876
ACM
557
558 ccid3_pr_debug("%s(%p) %-8.8s -> %s\n",
1f2333ae
ACM
559 dccp_role(sk), sk, ccid3_rx_state_name(oldstate),
560 ccid3_rx_state_name(state));
7c657876 561 WARN_ON(state == oldstate);
842d1ef1 562 hcrx->state = state;
7c657876
ACM
563}
564
b84a2189
ACM
565static void ccid3_hc_rx_send_feedback(struct sock *sk,
566 const struct sk_buff *skb,
567 enum ccid3_fback_type fbtype)
7c657876 568{
59725dc2 569 struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
7c657876 570 struct dccp_sock *dp = dccp_sk(sk);
d0995e6a 571 ktime_t now = ktime_get_real();
b84a2189 572 s64 delta = 0;
7c657876 573
b84a2189
ACM
574 switch (fbtype) {
575 case CCID3_FBACK_INITIAL:
842d1ef1
GR
576 hcrx->x_recv = 0;
577 hcrx->p_inverse = ~0U; /* see RFC 4342, 8.5 */
7c657876 578 break;
b84a2189
ACM
579 case CCID3_FBACK_PARAM_CHANGE:
580 /*
581 * When parameters change (new loss or p > p_prev), we do not
582 * have a reliable estimate for R_m of [RFC 3448, 6.2] and so
583 * need to reuse the previous value of X_recv. However, when
584 * X_recv was 0 (due to early loss), this would kill X down to
585 * s/t_mbi (i.e. one packet in 64 seconds).
586 * To avoid such drastic reduction, we approximate X_recv as
587 * the number of bytes since last feedback.
588 * This is a safe fallback, since X is bounded above by X_calc.
589 */
842d1ef1 590 if (hcrx->x_recv > 0)
b84a2189
ACM
591 break;
592 /* fall through */
593 case CCID3_FBACK_PERIODIC:
842d1ef1 594 delta = ktime_us_delta(now, hcrx->tstamp_last_feedback);
b84a2189
ACM
595 if (delta <= 0)
596 DCCP_BUG("delta (%ld) <= 0", (long)delta);
597 else
842d1ef1 598 hcrx->x_recv = scaled_div32(hcrx->bytes_recv, delta);
7c657876 599 break;
b84a2189 600 default:
7c657876
ACM
601 return;
602 }
603
842d1ef1
GR
604 ccid3_pr_debug("Interval %ldusec, X_recv=%u, 1/p=%u\n",
605 (long)delta, hcrx->x_recv, hcrx->p_inverse);
7c657876 606
842d1ef1
GR
607 hcrx->tstamp_last_feedback = now;
608 hcrx->last_counter = dccp_hdr(skb)->dccph_ccval;
609 hcrx->bytes_recv = 0;
7c657876 610
507d37cf 611 dp->dccps_hc_rx_insert_options = 1;
7c657876
ACM
612 dccp_send_ack(sk);
613}
614
2d0817d1 615static int ccid3_hc_rx_insert_options(struct sock *sk, struct sk_buff *skb)
7c657876 616{
b2e317f4 617 const struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
60fe62e7 618 __be32 x_recv, pinv;
7c657876 619
59d203f9 620 if (!(sk->sk_state == DCCP_OPEN || sk->sk_state == DCCP_PARTOPEN))
2d0817d1 621 return 0;
7c657876 622
4fded33b 623 if (dccp_packet_without_ack(skb))
2d0817d1
ACM
624 return 0;
625
842d1ef1
GR
626 x_recv = htonl(hcrx->x_recv);
627 pinv = htonl(hcrx->p_inverse);
2d0817d1 628
385ac2e3 629 if (dccp_insert_option(sk, skb, TFRC_OPT_LOSS_EVENT_RATE,
8109b02b 630 &pinv, sizeof(pinv)) ||
2d0817d1 631 dccp_insert_option(sk, skb, TFRC_OPT_RECEIVE_RATE,
8109b02b 632 &x_recv, sizeof(x_recv)))
2d0817d1
ACM
633 return -1;
634
635 return 0;
7c657876
ACM
636}
637
954c2db8
GR
638/** ccid3_first_li - Implements [RFC 3448, 6.3.1]
639 *
640 * Determine the length of the first loss interval via inverse lookup.
641 * Assume that X_recv can be computed by the throughput equation
642 * s
643 * X_recv = --------
644 * R * fval
645 * Find some p such that f(p) = fval; return 1/p (scaled).
646 */
647static u32 ccid3_first_li(struct sock *sk)
648{
649 struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
650 u32 x_recv, p, delta;
651 u64 fval;
652
842d1ef1 653 if (hcrx->rtt == 0) {
954c2db8 654 DCCP_WARN("No RTT estimate available, using fallback RTT\n");
842d1ef1 655 hcrx->rtt = DCCP_FALLBACK_RTT;
954c2db8
GR
656 }
657
842d1ef1
GR
658 delta = ktime_to_us(net_timedelta(hcrx->tstamp_last_feedback));
659 x_recv = scaled_div32(hcrx->bytes_recv, delta);
954c2db8
GR
660 if (x_recv == 0) { /* would also trigger divide-by-zero */
661 DCCP_WARN("X_recv==0\n");
842d1ef1 662 if (hcrx->x_recv == 0) {
954c2db8
GR
663 DCCP_BUG("stored value of X_recv is zero");
664 return ~0U;
665 }
842d1ef1 666 x_recv = hcrx->x_recv;
954c2db8
GR
667 }
668
842d1ef1 669 fval = scaled_div(hcrx->s, hcrx->rtt);
954c2db8
GR
670 fval = scaled_div32(fval, x_recv);
671 p = tfrc_calc_x_reverse_lookup(fval);
672
673 ccid3_pr_debug("%s(%p), receive rate=%u bytes/s, implied "
674 "loss rate=%u\n", dccp_role(sk), sk, x_recv, p);
675
676 return p == 0 ? ~0U : scaled_div(1, p);
677}
678
b84a2189 679static void ccid3_hc_rx_packet_recv(struct sock *sk, struct sk_buff *skb)
7c657876 680{
59725dc2 681 struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
b84a2189 682 enum ccid3_fback_type do_feedback = CCID3_FBACK_NONE;
5b5d0e70 683 const u64 ndp = dccp_sk(sk)->dccps_options_received.dccpor_ndp;
b84a2189
ACM
684 const bool is_data_packet = dccp_data_packet(skb);
685
842d1ef1 686 if (unlikely(hcrx->state == TFRC_RSTATE_NO_DATA)) {
b84a2189
ACM
687 if (is_data_packet) {
688 const u32 payload = skb->len - dccp_hdr(skb)->dccph_doff * 4;
689 do_feedback = CCID3_FBACK_INITIAL;
690 ccid3_hc_rx_set_state(sk, TFRC_RSTATE_DATA);
842d1ef1 691 hcrx->s = payload;
b84a2189 692 /*
842d1ef1 693 * Not necessary to update bytes_recv here,
b84a2189
ACM
694 * since X_recv = 0 for the first feedback packet (cf.
695 * RFC 3448, 6.3) -- gerrit
696 */
66a377c5 697 }
b84a2189 698 goto update_records;
66a377c5
IM
699 }
700
842d1ef1 701 if (tfrc_rx_hist_duplicate(&hcrx->hist, skb))
b84a2189 702 return; /* done receiving */
7c657876 703
b84a2189
ACM
704 if (is_data_packet) {
705 const u32 payload = skb->len - dccp_hdr(skb)->dccph_doff * 4;
706 /*
707 * Update moving-average of s and the sum of received payload bytes
708 */
842d1ef1
GR
709 hcrx->s = tfrc_ewma(hcrx->s, payload, 9);
710 hcrx->bytes_recv += payload;
7c657876
ACM
711 }
712
b84a2189 713 /*
b552c623 714 * Perform loss detection and handle pending losses
b84a2189 715 */
842d1ef1 716 if (tfrc_rx_handle_loss(&hcrx->hist, &hcrx->li_hist,
b552c623 717 skb, ndp, ccid3_first_li, sk)) {
954c2db8
GR
718 do_feedback = CCID3_FBACK_PARAM_CHANGE;
719 goto done_receiving;
720 }
721
842d1ef1 722 if (tfrc_rx_hist_loss_pending(&hcrx->hist))
b552c623 723 return; /* done receiving */
78ad713d 724
b84a2189
ACM
725 /*
726 * Handle data packets: RTT sampling and monitoring p
727 */
728 if (unlikely(!is_data_packet))
729 goto update_records;
b6ee3d4a 730
842d1ef1
GR
731 if (!tfrc_lh_is_initialised(&hcrx->li_hist)) {
732 const u32 sample = tfrc_rx_hist_sample_rtt(&hcrx->hist, skb);
b84a2189
ACM
733 /*
734 * Empty loss history: no loss so far, hence p stays 0.
735 * Sample RTT values, since an RTT estimate is required for the
736 * computation of p when the first loss occurs; RFC 3448, 6.3.1.
737 */
738 if (sample != 0)
842d1ef1 739 hcrx->rtt = tfrc_ewma(hcrx->rtt, sample, 9);
954c2db8 740
842d1ef1 741 } else if (tfrc_lh_update_i_mean(&hcrx->li_hist, skb)) {
954c2db8
GR
742 /*
743 * Step (3) of [RFC 3448, 6.1]: Recompute I_mean and, if I_mean
744 * has decreased (resp. p has increased), send feedback now.
745 */
746 do_feedback = CCID3_FBACK_PARAM_CHANGE;
7c657876
ACM
747 }
748
b84a2189
ACM
749 /*
750 * Check if the periodic once-per-RTT feedback is due; RFC 4342, 10.3
751 */
842d1ef1 752 if (SUB16(dccp_hdr(skb)->dccph_ccval, hcrx->last_counter) > 3)
b84a2189 753 do_feedback = CCID3_FBACK_PERIODIC;
c0996660 754
b84a2189 755update_records:
842d1ef1 756 tfrc_rx_hist_add_packet(&hcrx->hist, skb, ndp);
7c657876 757
954c2db8 758done_receiving:
b84a2189
ACM
759 if (do_feedback)
760 ccid3_hc_rx_send_feedback(sk, skb, do_feedback);
7c657876
ACM
761}
762
91f0ebf7 763static int ccid3_hc_rx_init(struct ccid *ccid, struct sock *sk)
7c657876 764{
91f0ebf7 765 struct ccid3_hc_rx_sock *hcrx = ccid_priv(ccid);
7c657876 766
842d1ef1
GR
767 hcrx->state = TFRC_RSTATE_NO_DATA;
768 tfrc_lh_init(&hcrx->li_hist);
24b8d343 769 return tfrc_rx_hist_init(&hcrx->hist, sk);
7c657876
ACM
770}
771
772static void ccid3_hc_rx_exit(struct sock *sk)
773{
59725dc2 774 struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
7c657876 775
842d1ef1
GR
776 tfrc_rx_hist_purge(&hcrx->hist);
777 tfrc_lh_cleanup(&hcrx->li_hist);
7c657876
ACM
778}
779
2babe1f6
ACM
780static void ccid3_hc_rx_get_info(struct sock *sk, struct tcp_info *info)
781{
b2e317f4 782 info->tcpi_ca_state = ccid3_hc_rx_sk(sk)->state;
8109b02b 783 info->tcpi_options |= TCPI_OPT_TIMESTAMPS;
b2e317f4 784 info->tcpi_rcv_rtt = ccid3_hc_rx_sk(sk)->rtt;
2babe1f6
ACM
785}
786
88f964db
ACM
787static int ccid3_hc_rx_getsockopt(struct sock *sk, const int optname, int len,
788 u32 __user *optval, int __user *optlen)
789{
b2e317f4 790 const struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
8e138e79 791 struct tfrc_rx_info rx_info;
88f964db 792 const void *val;
c9eaf173 793
88f964db
ACM
794 switch (optname) {
795 case DCCP_SOCKOPT_CCID_RX_INFO:
8e138e79 796 if (len < sizeof(rx_info))
88f964db 797 return -EINVAL;
842d1ef1
GR
798 rx_info.tfrcrx_x_recv = hcrx->x_recv;
799 rx_info.tfrcrx_rtt = hcrx->rtt;
535c55df 800 rx_info.tfrcrx_p = tfrc_invert_loss_event_rate(hcrx->p_inverse);
8e138e79
GR
801 len = sizeof(rx_info);
802 val = &rx_info;
88f964db
ACM
803 break;
804 default:
805 return -ENOPROTOOPT;
806 }
807
808 if (put_user(len, optlen) || copy_to_user(optval, val, len))
809 return -EFAULT;
810
811 return 0;
812}
813
91f0ebf7 814static struct ccid_operations ccid3 = {
3dd9a7c3 815 .ccid_id = DCCPC_CCID3,
84a97b0a 816 .ccid_name = "TCP-Friendly Rate Control",
7c657876 817 .ccid_owner = THIS_MODULE,
91f0ebf7 818 .ccid_hc_tx_obj_size = sizeof(struct ccid3_hc_tx_sock),
7c657876
ACM
819 .ccid_hc_tx_init = ccid3_hc_tx_init,
820 .ccid_hc_tx_exit = ccid3_hc_tx_exit,
821 .ccid_hc_tx_send_packet = ccid3_hc_tx_send_packet,
822 .ccid_hc_tx_packet_sent = ccid3_hc_tx_packet_sent,
823 .ccid_hc_tx_packet_recv = ccid3_hc_tx_packet_recv,
7c657876 824 .ccid_hc_tx_parse_options = ccid3_hc_tx_parse_options,
91f0ebf7 825 .ccid_hc_rx_obj_size = sizeof(struct ccid3_hc_rx_sock),
7c657876
ACM
826 .ccid_hc_rx_init = ccid3_hc_rx_init,
827 .ccid_hc_rx_exit = ccid3_hc_rx_exit,
828 .ccid_hc_rx_insert_options = ccid3_hc_rx_insert_options,
829 .ccid_hc_rx_packet_recv = ccid3_hc_rx_packet_recv,
2babe1f6
ACM
830 .ccid_hc_rx_get_info = ccid3_hc_rx_get_info,
831 .ccid_hc_tx_get_info = ccid3_hc_tx_get_info,
88f964db
ACM
832 .ccid_hc_rx_getsockopt = ccid3_hc_rx_getsockopt,
833 .ccid_hc_tx_getsockopt = ccid3_hc_tx_getsockopt,
7c657876 834};
8109b02b 835
56724aa4 836#ifdef CONFIG_IP_DCCP_CCID3_DEBUG
43264991 837module_param(ccid3_debug, bool, 0644);
7c657876 838MODULE_PARM_DESC(ccid3_debug, "Enable debug messages");
56724aa4 839#endif
7c657876
ACM
840
841static __init int ccid3_module_init(void)
842{
f76fd327
GR
843 struct timespec tp;
844
845 /*
846 * Without a fine-grained clock resolution, RTTs/X_recv are not sampled
847 * correctly and feedback is sent either too early or too late.
848 */
849 hrtimer_get_res(CLOCK_MONOTONIC, &tp);
850 if (tp.tv_sec || tp.tv_nsec > DCCP_TIME_RESOLUTION * NSEC_PER_USEC) {
851 printk(KERN_ERR "%s: Timer too coarse (%ld usec), need %u-usec"
852 " resolution - check your clocksource.\n", __func__,
853 tp.tv_nsec/NSEC_PER_USEC, DCCP_TIME_RESOLUTION);
854 return -ESOCKTNOSUPPORT;
855 }
34a9e7ea 856 return ccid_register(&ccid3);
7c657876
ACM
857}
858module_init(ccid3_module_init);
859
860static __exit void ccid3_module_exit(void)
861{
862 ccid_unregister(&ccid3);
7c657876
ACM
863}
864module_exit(ccid3_module_exit);
865
e6bccd35 866MODULE_AUTHOR("Ian McDonald <ian.mcdonald@jandi.co.nz>, "
1f2333ae 867 "Arnaldo Carvalho de Melo <acme@ghostprotocols.net>");
7c657876
ACM
868MODULE_DESCRIPTION("DCCP TFRC CCID3 CCID");
869MODULE_LICENSE("GPL");
870MODULE_ALIAS("net-dccp-ccid-3");
This page took 0.943578 seconds and 5 git commands to generate.