[TFRC]: Make the rx history slab be global
[linux-2.6/verdex.git] / net / dccp / ccids / ccid3.c
blob2ba0a7c470d15dbece5caefff19256ac5d2ac7a2
1 /*
2 * net/dccp/ccids/ccid3.c
4 * Copyright (c) 2005-7 The University of Waikato, Hamilton, New Zealand.
5 * Copyright (c) 2005-7 Ian McDonald <ian.mcdonald@jandi.co.nz>
7 * An implementation of the DCCP protocol
9 * This code has been developed by the University of Waikato WAND
10 * research group. For further information please see http://www.wand.net.nz/
12 * This code also uses code from Lulea University, rereleased as GPL by its
13 * authors:
14 * Copyright (c) 2003 Nils-Erik Mattsson, Joacim Haggmark, Magnus Erixzon
16 * Changes to meet Linux coding standards, to make it meet latest ccid3 draft
17 * and to make it work as a loadable module in the DCCP stack written by
18 * Arnaldo Carvalho de Melo <acme@conectiva.com.br>.
20 * Copyright (c) 2005 Arnaldo Carvalho de Melo <acme@conectiva.com.br>
22 * This program is free software; you can redistribute it and/or modify
23 * it under the terms of the GNU General Public License as published by
24 * the Free Software Foundation; either version 2 of the License, or
25 * (at your option) any later version.
27 * This program is distributed in the hope that it will be useful,
28 * but WITHOUT ANY WARRANTY; without even the implied warranty of
29 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
30 * GNU General Public License for more details.
32 * You should have received a copy of the GNU General Public License
33 * along with this program; if not, write to the Free Software
34 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
36 #include "../ccid.h"
37 #include "../dccp.h"
38 #include "lib/packet_history.h"
39 #include "lib/loss_interval.h"
40 #include "lib/tfrc.h"
41 #include "ccid3.h"
43 #include <asm/unaligned.h>
45 #ifdef CONFIG_IP_DCCP_CCID3_DEBUG
46 static int ccid3_debug;
47 #define ccid3_pr_debug(format, a...) DCCP_PR_DEBUG(ccid3_debug, format, ##a)
48 #else
49 #define ccid3_pr_debug(format, a...)
50 #endif
53 * Transmitter Half-Connection Routines
55 #ifdef CONFIG_IP_DCCP_CCID3_DEBUG
56 static const char *ccid3_tx_state_name(enum ccid3_hc_tx_states state)
58 static char *ccid3_state_names[] = {
59 [TFRC_SSTATE_NO_SENT] = "NO_SENT",
60 [TFRC_SSTATE_NO_FBACK] = "NO_FBACK",
61 [TFRC_SSTATE_FBACK] = "FBACK",
62 [TFRC_SSTATE_TERM] = "TERM",
65 return ccid3_state_names[state];
67 #endif
69 static void ccid3_hc_tx_set_state(struct sock *sk,
70 enum ccid3_hc_tx_states state)
72 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
73 enum ccid3_hc_tx_states oldstate = hctx->ccid3hctx_state;
75 ccid3_pr_debug("%s(%p) %-8.8s -> %s\n",
76 dccp_role(sk), sk, ccid3_tx_state_name(oldstate),
77 ccid3_tx_state_name(state));
78 WARN_ON(state == oldstate);
79 hctx->ccid3hctx_state = state;
83 * Compute the initial sending rate X_init in the manner of RFC 3390:
85 * X_init = min(4 * s, max(2 * s, 4380 bytes)) / RTT
87 * Note that RFC 3390 uses MSS, RFC 4342 refers to RFC 3390, and rfc3448bis
88 * (rev-02) clarifies the use of RFC 3390 with regard to the above formula.
89 * For consistency with other parts of the code, X_init is scaled by 2^6.
91 static inline u64 rfc3390_initial_rate(struct sock *sk)
93 const struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
94 const __u32 w_init = min_t(__u32, 4 * hctx->ccid3hctx_s,
95 max_t(__u32, 2 * hctx->ccid3hctx_s, 4380));
97 return scaled_div(w_init << 6, hctx->ccid3hctx_rtt);
101 * Recalculate t_ipi and delta (should be called whenever X changes)
103 static inline void ccid3_update_send_interval(struct ccid3_hc_tx_sock *hctx)
105 /* Calculate new t_ipi = s / X_inst (X_inst is in 64 * bytes/second) */
106 hctx->ccid3hctx_t_ipi = scaled_div32(((u64)hctx->ccid3hctx_s) << 6,
107 hctx->ccid3hctx_x);
109 /* Calculate new delta by delta = min(t_ipi / 2, t_gran / 2) */
110 hctx->ccid3hctx_delta = min_t(u32, hctx->ccid3hctx_t_ipi / 2,
111 TFRC_OPSYS_HALF_TIME_GRAN);
113 ccid3_pr_debug("t_ipi=%u, delta=%u, s=%u, X=%u\n",
114 hctx->ccid3hctx_t_ipi, hctx->ccid3hctx_delta,
115 hctx->ccid3hctx_s, (unsigned)(hctx->ccid3hctx_x >> 6));
119 static u32 ccid3_hc_tx_idle_rtt(struct ccid3_hc_tx_sock *hctx, ktime_t now)
121 u32 delta = ktime_us_delta(now, hctx->ccid3hctx_t_last_win_count);
123 return delta / hctx->ccid3hctx_rtt;
127 * ccid3_hc_tx_update_x - Update allowed sending rate X
128 * @stamp: most recent time if available - can be left NULL.
129 * This function tracks draft rfc3448bis, check there for latest details.
131 * Note: X and X_recv are both stored in units of 64 * bytes/second, to support
132 * fine-grained resolution of sending rates. This requires scaling by 2^6
133 * throughout the code. Only X_calc is unscaled (in bytes/second).
136 static void ccid3_hc_tx_update_x(struct sock *sk, ktime_t *stamp)
139 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
140 __u64 min_rate = 2 * hctx->ccid3hctx_x_recv;
141 const __u64 old_x = hctx->ccid3hctx_x;
142 ktime_t now = stamp? *stamp : ktime_get_real();
145 * Handle IDLE periods: do not reduce below RFC3390 initial sending rate
146 * when idling [RFC 4342, 5.1]. Definition of idling is from rfc3448bis:
147 * a sender is idle if it has not sent anything over a 2-RTT-period.
148 * For consistency with X and X_recv, min_rate is also scaled by 2^6.
150 if (ccid3_hc_tx_idle_rtt(hctx, now) >= 2) {
151 min_rate = rfc3390_initial_rate(sk);
152 min_rate = max(min_rate, 2 * hctx->ccid3hctx_x_recv);
155 if (hctx->ccid3hctx_p > 0) {
157 hctx->ccid3hctx_x = min(((__u64)hctx->ccid3hctx_x_calc) << 6,
158 min_rate);
159 hctx->ccid3hctx_x = max(hctx->ccid3hctx_x,
160 (((__u64)hctx->ccid3hctx_s) << 6) /
161 TFRC_T_MBI);
163 } else if (ktime_us_delta(now, hctx->ccid3hctx_t_ld)
164 - (s64)hctx->ccid3hctx_rtt >= 0) {
166 hctx->ccid3hctx_x =
167 max(min(2 * hctx->ccid3hctx_x, min_rate),
168 scaled_div(((__u64)hctx->ccid3hctx_s) << 6,
169 hctx->ccid3hctx_rtt));
170 hctx->ccid3hctx_t_ld = now;
173 if (hctx->ccid3hctx_x != old_x) {
174 ccid3_pr_debug("X_prev=%u, X_now=%u, X_calc=%u, "
175 "X_recv=%u\n", (unsigned)(old_x >> 6),
176 (unsigned)(hctx->ccid3hctx_x >> 6),
177 hctx->ccid3hctx_x_calc,
178 (unsigned)(hctx->ccid3hctx_x_recv >> 6));
180 ccid3_update_send_interval(hctx);
185 * Track the mean packet size `s' (cf. RFC 4342, 5.3 and RFC 3448, 4.1)
186 * @len: DCCP packet payload size in bytes
188 static inline void ccid3_hc_tx_update_s(struct ccid3_hc_tx_sock *hctx, int len)
190 const u16 old_s = hctx->ccid3hctx_s;
192 hctx->ccid3hctx_s = tfrc_ewma(hctx->ccid3hctx_s, len, 9);
194 if (hctx->ccid3hctx_s != old_s)
195 ccid3_update_send_interval(hctx);
199 * Update Window Counter using the algorithm from [RFC 4342, 8.1].
200 * The algorithm is not applicable if RTT < 4 microseconds.
202 static inline void ccid3_hc_tx_update_win_count(struct ccid3_hc_tx_sock *hctx,
203 ktime_t now)
205 u32 quarter_rtts;
207 if (unlikely(hctx->ccid3hctx_rtt < 4)) /* avoid divide-by-zero */
208 return;
210 quarter_rtts = ktime_us_delta(now, hctx->ccid3hctx_t_last_win_count);
211 quarter_rtts /= hctx->ccid3hctx_rtt / 4;
213 if (quarter_rtts > 0) {
214 hctx->ccid3hctx_t_last_win_count = now;
215 hctx->ccid3hctx_last_win_count += min_t(u32, quarter_rtts, 5);
216 hctx->ccid3hctx_last_win_count &= 0xF; /* mod 16 */
220 static void ccid3_hc_tx_no_feedback_timer(unsigned long data)
222 struct sock *sk = (struct sock *)data;
223 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
224 unsigned long t_nfb = USEC_PER_SEC / 5;
226 bh_lock_sock(sk);
227 if (sock_owned_by_user(sk)) {
228 /* Try again later. */
229 /* XXX: set some sensible MIB */
230 goto restart_timer;
233 ccid3_pr_debug("%s(%p, state=%s) - entry \n", dccp_role(sk), sk,
234 ccid3_tx_state_name(hctx->ccid3hctx_state));
236 switch (hctx->ccid3hctx_state) {
237 case TFRC_SSTATE_NO_FBACK:
238 /* RFC 3448, 4.4: Halve send rate directly */
239 hctx->ccid3hctx_x = max(hctx->ccid3hctx_x / 2,
240 (((__u64)hctx->ccid3hctx_s) << 6) /
241 TFRC_T_MBI);
243 ccid3_pr_debug("%s(%p, state=%s), updated tx rate to %u "
244 "bytes/s\n", dccp_role(sk), sk,
245 ccid3_tx_state_name(hctx->ccid3hctx_state),
246 (unsigned)(hctx->ccid3hctx_x >> 6));
247 /* The value of R is still undefined and so we can not recompute
248 * the timeout value. Keep initial value as per [RFC 4342, 5]. */
249 t_nfb = TFRC_INITIAL_TIMEOUT;
250 ccid3_update_send_interval(hctx);
251 break;
252 case TFRC_SSTATE_FBACK:
254 * Modify the cached value of X_recv [RFC 3448, 4.4]
256 * If (p == 0 || X_calc > 2 * X_recv)
257 * X_recv = max(X_recv / 2, s / (2 * t_mbi));
258 * Else
259 * X_recv = X_calc / 4;
261 * Note that X_recv is scaled by 2^6 while X_calc is not
263 BUG_ON(hctx->ccid3hctx_p && !hctx->ccid3hctx_x_calc);
265 if (hctx->ccid3hctx_p == 0 ||
266 (hctx->ccid3hctx_x_calc > (hctx->ccid3hctx_x_recv >> 5))) {
268 hctx->ccid3hctx_x_recv =
269 max(hctx->ccid3hctx_x_recv / 2,
270 (((__u64)hctx->ccid3hctx_s) << 6) /
271 (2 * TFRC_T_MBI));
272 } else {
273 hctx->ccid3hctx_x_recv = hctx->ccid3hctx_x_calc;
274 hctx->ccid3hctx_x_recv <<= 4;
276 /* Now recalculate X [RFC 3448, 4.3, step (4)] */
277 ccid3_hc_tx_update_x(sk, NULL);
279 * Schedule no feedback timer to expire in
280 * max(t_RTO, 2 * s/X) = max(t_RTO, 2 * t_ipi)
281 * See comments in packet_recv() regarding the value of t_RTO.
283 t_nfb = max(hctx->ccid3hctx_t_rto, 2 * hctx->ccid3hctx_t_ipi);
284 break;
285 case TFRC_SSTATE_NO_SENT:
286 DCCP_BUG("%s(%p) - Illegal state NO_SENT", dccp_role(sk), sk);
287 /* fall through */
288 case TFRC_SSTATE_TERM:
289 goto out;
292 restart_timer:
293 sk_reset_timer(sk, &hctx->ccid3hctx_no_feedback_timer,
294 jiffies + usecs_to_jiffies(t_nfb));
295 out:
296 bh_unlock_sock(sk);
297 sock_put(sk);
301 * returns
302 * > 0: delay (in msecs) that should pass before actually sending
303 * = 0: can send immediately
304 * < 0: error condition; do not send packet
306 static int ccid3_hc_tx_send_packet(struct sock *sk, struct sk_buff *skb)
308 struct dccp_sock *dp = dccp_sk(sk);
309 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
310 ktime_t now = ktime_get_real();
311 s64 delay;
314 * This function is called only for Data and DataAck packets. Sending
315 * zero-sized Data(Ack)s is theoretically possible, but for congestion
316 * control this case is pathological - ignore it.
318 if (unlikely(skb->len == 0))
319 return -EBADMSG;
321 switch (hctx->ccid3hctx_state) {
322 case TFRC_SSTATE_NO_SENT:
323 sk_reset_timer(sk, &hctx->ccid3hctx_no_feedback_timer,
324 (jiffies +
325 usecs_to_jiffies(TFRC_INITIAL_TIMEOUT)));
326 hctx->ccid3hctx_last_win_count = 0;
327 hctx->ccid3hctx_t_last_win_count = now;
329 /* Set t_0 for initial packet */
330 hctx->ccid3hctx_t_nom = now;
332 hctx->ccid3hctx_s = skb->len;
335 * Use initial RTT sample when available: recommended by erratum
336 * to RFC 4342. This implements the initialisation procedure of
337 * draft rfc3448bis, section 4.2. Remember, X is scaled by 2^6.
339 if (dp->dccps_syn_rtt) {
340 ccid3_pr_debug("SYN RTT = %uus\n", dp->dccps_syn_rtt);
341 hctx->ccid3hctx_rtt = dp->dccps_syn_rtt;
342 hctx->ccid3hctx_x = rfc3390_initial_rate(sk);
343 hctx->ccid3hctx_t_ld = now;
344 } else {
345 /* Sender does not have RTT sample: X_pps = 1 pkt/sec */
346 hctx->ccid3hctx_x = hctx->ccid3hctx_s;
347 hctx->ccid3hctx_x <<= 6;
349 ccid3_update_send_interval(hctx);
351 ccid3_hc_tx_set_state(sk, TFRC_SSTATE_NO_FBACK);
352 break;
353 case TFRC_SSTATE_NO_FBACK:
354 case TFRC_SSTATE_FBACK:
355 delay = ktime_us_delta(hctx->ccid3hctx_t_nom, now);
356 ccid3_pr_debug("delay=%ld\n", (long)delay);
358 * Scheduling of packet transmissions [RFC 3448, 4.6]
360 * if (t_now > t_nom - delta)
361 * // send the packet now
362 * else
363 * // send the packet in (t_nom - t_now) milliseconds.
365 if (delay - (s64)hctx->ccid3hctx_delta >= 1000)
366 return (u32)delay / 1000L;
368 ccid3_hc_tx_update_win_count(hctx, now);
369 break;
370 case TFRC_SSTATE_TERM:
371 DCCP_BUG("%s(%p) - Illegal state TERM", dccp_role(sk), sk);
372 return -EINVAL;
375 /* prepare to send now (add options etc.) */
376 dp->dccps_hc_tx_insert_options = 1;
377 DCCP_SKB_CB(skb)->dccpd_ccval = hctx->ccid3hctx_last_win_count;
379 /* set the nominal send time for the next following packet */
380 hctx->ccid3hctx_t_nom = ktime_add_us(hctx->ccid3hctx_t_nom,
381 hctx->ccid3hctx_t_ipi);
382 return 0;
385 static void ccid3_hc_tx_packet_sent(struct sock *sk, int more,
386 unsigned int len)
388 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
390 ccid3_hc_tx_update_s(hctx, len);
392 if (tfrc_tx_hist_add(&hctx->ccid3hctx_hist, dccp_sk(sk)->dccps_gss))
393 DCCP_CRIT("packet history - out of memory!");
396 static void ccid3_hc_tx_packet_recv(struct sock *sk, struct sk_buff *skb)
398 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
399 struct ccid3_options_received *opt_recv;
400 ktime_t now;
401 unsigned long t_nfb;
402 u32 pinv, r_sample;
404 /* we are only interested in ACKs */
405 if (!(DCCP_SKB_CB(skb)->dccpd_type == DCCP_PKT_ACK ||
406 DCCP_SKB_CB(skb)->dccpd_type == DCCP_PKT_DATAACK))
407 return;
409 opt_recv = &hctx->ccid3hctx_options_received;
411 switch (hctx->ccid3hctx_state) {
412 case TFRC_SSTATE_NO_FBACK:
413 case TFRC_SSTATE_FBACK:
414 now = ktime_get_real();
416 /* estimate RTT from history if ACK number is valid */
417 r_sample = tfrc_tx_hist_rtt(hctx->ccid3hctx_hist,
418 DCCP_SKB_CB(skb)->dccpd_ack_seq, now);
419 if (r_sample == 0) {
420 DCCP_WARN("%s(%p): %s with bogus ACK-%llu\n", dccp_role(sk), sk,
421 dccp_packet_name(DCCP_SKB_CB(skb)->dccpd_type),
422 (unsigned long long)DCCP_SKB_CB(skb)->dccpd_ack_seq);
423 return;
426 /* Update receive rate in units of 64 * bytes/second */
427 hctx->ccid3hctx_x_recv = opt_recv->ccid3or_receive_rate;
428 hctx->ccid3hctx_x_recv <<= 6;
430 /* Update loss event rate */
431 pinv = opt_recv->ccid3or_loss_event_rate;
432 if (pinv == ~0U || pinv == 0) /* see RFC 4342, 8.5 */
433 hctx->ccid3hctx_p = 0;
434 else /* can not exceed 100% */
435 hctx->ccid3hctx_p = 1000000 / pinv;
437 * Validate new RTT sample and update moving average
439 r_sample = dccp_sample_rtt(sk, r_sample);
440 hctx->ccid3hctx_rtt = tfrc_ewma(hctx->ccid3hctx_rtt, r_sample, 9);
442 if (hctx->ccid3hctx_state == TFRC_SSTATE_NO_FBACK) {
444 * Larger Initial Windows [RFC 4342, sec. 5]
446 hctx->ccid3hctx_x = rfc3390_initial_rate(sk);
447 hctx->ccid3hctx_t_ld = now;
449 ccid3_update_send_interval(hctx);
451 ccid3_pr_debug("%s(%p), s=%u, MSS=%u, "
452 "R_sample=%uus, X=%u\n", dccp_role(sk),
453 sk, hctx->ccid3hctx_s,
454 dccp_sk(sk)->dccps_mss_cache, r_sample,
455 (unsigned)(hctx->ccid3hctx_x >> 6));
457 ccid3_hc_tx_set_state(sk, TFRC_SSTATE_FBACK);
458 } else {
460 /* Update sending rate (step 4 of [RFC 3448, 4.3]) */
461 if (hctx->ccid3hctx_p > 0)
462 hctx->ccid3hctx_x_calc =
463 tfrc_calc_x(hctx->ccid3hctx_s,
464 hctx->ccid3hctx_rtt,
465 hctx->ccid3hctx_p);
466 ccid3_hc_tx_update_x(sk, &now);
468 ccid3_pr_debug("%s(%p), RTT=%uus (sample=%uus), s=%u, "
469 "p=%u, X_calc=%u, X_recv=%u, X=%u\n",
470 dccp_role(sk),
471 sk, hctx->ccid3hctx_rtt, r_sample,
472 hctx->ccid3hctx_s, hctx->ccid3hctx_p,
473 hctx->ccid3hctx_x_calc,
474 (unsigned)(hctx->ccid3hctx_x_recv >> 6),
475 (unsigned)(hctx->ccid3hctx_x >> 6));
478 /* unschedule no feedback timer */
479 sk_stop_timer(sk, &hctx->ccid3hctx_no_feedback_timer);
482 * As we have calculated new ipi, delta, t_nom it is possible
483 * that we now can send a packet, so wake up dccp_wait_for_ccid
485 sk->sk_write_space(sk);
488 * Update timeout interval for the nofeedback timer.
489 * We use a configuration option to increase the lower bound.
490 * This can help avoid triggering the nofeedback timer too
491 * often ('spinning') on LANs with small RTTs.
493 hctx->ccid3hctx_t_rto = max_t(u32, 4 * hctx->ccid3hctx_rtt,
494 CONFIG_IP_DCCP_CCID3_RTO *
495 (USEC_PER_SEC/1000));
497 * Schedule no feedback timer to expire in
498 * max(t_RTO, 2 * s/X) = max(t_RTO, 2 * t_ipi)
500 t_nfb = max(hctx->ccid3hctx_t_rto, 2 * hctx->ccid3hctx_t_ipi);
502 ccid3_pr_debug("%s(%p), Scheduled no feedback timer to "
503 "expire in %lu jiffies (%luus)\n",
504 dccp_role(sk),
505 sk, usecs_to_jiffies(t_nfb), t_nfb);
507 sk_reset_timer(sk, &hctx->ccid3hctx_no_feedback_timer,
508 jiffies + usecs_to_jiffies(t_nfb));
509 break;
510 case TFRC_SSTATE_NO_SENT: /* fall through */
511 case TFRC_SSTATE_TERM: /* ignore feedback when closing */
512 break;
516 static int ccid3_hc_tx_parse_options(struct sock *sk, unsigned char option,
517 unsigned char len, u16 idx,
518 unsigned char *value)
520 int rc = 0;
521 const struct dccp_sock *dp = dccp_sk(sk);
522 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
523 struct ccid3_options_received *opt_recv;
524 __be32 opt_val;
526 opt_recv = &hctx->ccid3hctx_options_received;
528 if (opt_recv->ccid3or_seqno != dp->dccps_gsr) {
529 opt_recv->ccid3or_seqno = dp->dccps_gsr;
530 opt_recv->ccid3or_loss_event_rate = ~0;
531 opt_recv->ccid3or_loss_intervals_idx = 0;
532 opt_recv->ccid3or_loss_intervals_len = 0;
533 opt_recv->ccid3or_receive_rate = 0;
536 switch (option) {
537 case TFRC_OPT_LOSS_EVENT_RATE:
538 if (unlikely(len != 4)) {
539 DCCP_WARN("%s(%p), invalid len %d "
540 "for TFRC_OPT_LOSS_EVENT_RATE\n",
541 dccp_role(sk), sk, len);
542 rc = -EINVAL;
543 } else {
544 opt_val = get_unaligned((__be32 *)value);
545 opt_recv->ccid3or_loss_event_rate = ntohl(opt_val);
546 ccid3_pr_debug("%s(%p), LOSS_EVENT_RATE=%u\n",
547 dccp_role(sk), sk,
548 opt_recv->ccid3or_loss_event_rate);
550 break;
551 case TFRC_OPT_LOSS_INTERVALS:
552 opt_recv->ccid3or_loss_intervals_idx = idx;
553 opt_recv->ccid3or_loss_intervals_len = len;
554 ccid3_pr_debug("%s(%p), LOSS_INTERVALS=(%u, %u)\n",
555 dccp_role(sk), sk,
556 opt_recv->ccid3or_loss_intervals_idx,
557 opt_recv->ccid3or_loss_intervals_len);
558 break;
559 case TFRC_OPT_RECEIVE_RATE:
560 if (unlikely(len != 4)) {
561 DCCP_WARN("%s(%p), invalid len %d "
562 "for TFRC_OPT_RECEIVE_RATE\n",
563 dccp_role(sk), sk, len);
564 rc = -EINVAL;
565 } else {
566 opt_val = get_unaligned((__be32 *)value);
567 opt_recv->ccid3or_receive_rate = ntohl(opt_val);
568 ccid3_pr_debug("%s(%p), RECEIVE_RATE=%u\n",
569 dccp_role(sk), sk,
570 opt_recv->ccid3or_receive_rate);
572 break;
575 return rc;
578 static int ccid3_hc_tx_init(struct ccid *ccid, struct sock *sk)
580 struct ccid3_hc_tx_sock *hctx = ccid_priv(ccid);
582 hctx->ccid3hctx_state = TFRC_SSTATE_NO_SENT;
583 hctx->ccid3hctx_hist = NULL;
584 setup_timer(&hctx->ccid3hctx_no_feedback_timer,
585 ccid3_hc_tx_no_feedback_timer, (unsigned long)sk);
587 return 0;
590 static void ccid3_hc_tx_exit(struct sock *sk)
592 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
594 ccid3_hc_tx_set_state(sk, TFRC_SSTATE_TERM);
595 sk_stop_timer(sk, &hctx->ccid3hctx_no_feedback_timer);
597 tfrc_tx_hist_purge(&hctx->ccid3hctx_hist);
600 static void ccid3_hc_tx_get_info(struct sock *sk, struct tcp_info *info)
602 struct ccid3_hc_tx_sock *hctx;
604 /* Listen socks doesn't have a private CCID block */
605 if (sk->sk_state == DCCP_LISTEN)
606 return;
608 hctx = ccid3_hc_tx_sk(sk);
609 info->tcpi_rto = hctx->ccid3hctx_t_rto;
610 info->tcpi_rtt = hctx->ccid3hctx_rtt;
613 static int ccid3_hc_tx_getsockopt(struct sock *sk, const int optname, int len,
614 u32 __user *optval, int __user *optlen)
616 const struct ccid3_hc_tx_sock *hctx;
617 const void *val;
619 /* Listen socks doesn't have a private CCID block */
620 if (sk->sk_state == DCCP_LISTEN)
621 return -EINVAL;
623 hctx = ccid3_hc_tx_sk(sk);
624 switch (optname) {
625 case DCCP_SOCKOPT_CCID_TX_INFO:
626 if (len < sizeof(hctx->ccid3hctx_tfrc))
627 return -EINVAL;
628 len = sizeof(hctx->ccid3hctx_tfrc);
629 val = &hctx->ccid3hctx_tfrc;
630 break;
631 default:
632 return -ENOPROTOOPT;
635 if (put_user(len, optlen) || copy_to_user(optval, val, len))
636 return -EFAULT;
638 return 0;
642 * Receiver Half-Connection Routines
644 #ifdef CONFIG_IP_DCCP_CCID3_DEBUG
645 static const char *ccid3_rx_state_name(enum ccid3_hc_rx_states state)
647 static char *ccid3_rx_state_names[] = {
648 [TFRC_RSTATE_NO_DATA] = "NO_DATA",
649 [TFRC_RSTATE_DATA] = "DATA",
650 [TFRC_RSTATE_TERM] = "TERM",
653 return ccid3_rx_state_names[state];
655 #endif
657 static void ccid3_hc_rx_set_state(struct sock *sk,
658 enum ccid3_hc_rx_states state)
660 struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
661 enum ccid3_hc_rx_states oldstate = hcrx->ccid3hcrx_state;
663 ccid3_pr_debug("%s(%p) %-8.8s -> %s\n",
664 dccp_role(sk), sk, ccid3_rx_state_name(oldstate),
665 ccid3_rx_state_name(state));
666 WARN_ON(state == oldstate);
667 hcrx->ccid3hcrx_state = state;
670 static inline void ccid3_hc_rx_update_s(struct ccid3_hc_rx_sock *hcrx, int len)
672 if (likely(len > 0)) /* don't update on empty packets (e.g. ACKs) */
673 hcrx->ccid3hcrx_s = tfrc_ewma(hcrx->ccid3hcrx_s, len, 9);
676 static void ccid3_hc_rx_send_feedback(struct sock *sk)
678 struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
679 struct dccp_sock *dp = dccp_sk(sk);
680 struct dccp_rx_hist_entry *packet;
681 ktime_t now;
682 suseconds_t delta;
684 ccid3_pr_debug("%s(%p) - entry \n", dccp_role(sk), sk);
686 now = ktime_get_real();
688 switch (hcrx->ccid3hcrx_state) {
689 case TFRC_RSTATE_NO_DATA:
690 hcrx->ccid3hcrx_x_recv = 0;
691 break;
692 case TFRC_RSTATE_DATA:
693 delta = ktime_us_delta(now,
694 hcrx->ccid3hcrx_tstamp_last_feedback);
695 DCCP_BUG_ON(delta < 0);
696 hcrx->ccid3hcrx_x_recv =
697 scaled_div32(hcrx->ccid3hcrx_bytes_recv, delta);
698 break;
699 case TFRC_RSTATE_TERM:
700 DCCP_BUG("%s(%p) - Illegal state TERM", dccp_role(sk), sk);
701 return;
704 packet = dccp_rx_hist_find_data_packet(&hcrx->ccid3hcrx_hist);
705 if (unlikely(packet == NULL)) {
706 DCCP_WARN("%s(%p), no data packet in history!\n",
707 dccp_role(sk), sk);
708 return;
711 hcrx->ccid3hcrx_tstamp_last_feedback = now;
712 hcrx->ccid3hcrx_ccval_last_counter = packet->dccphrx_ccval;
713 hcrx->ccid3hcrx_bytes_recv = 0;
715 if (hcrx->ccid3hcrx_p == 0)
716 hcrx->ccid3hcrx_pinv = ~0U; /* see RFC 4342, 8.5 */
717 else if (hcrx->ccid3hcrx_p > 1000000) {
718 DCCP_WARN("p (%u) > 100%%\n", hcrx->ccid3hcrx_p);
719 hcrx->ccid3hcrx_pinv = 1; /* use 100% in this case */
720 } else
721 hcrx->ccid3hcrx_pinv = 1000000 / hcrx->ccid3hcrx_p;
723 dp->dccps_hc_rx_insert_options = 1;
724 dccp_send_ack(sk);
727 static int ccid3_hc_rx_insert_options(struct sock *sk, struct sk_buff *skb)
729 const struct ccid3_hc_rx_sock *hcrx;
730 __be32 x_recv, pinv;
732 if (!(sk->sk_state == DCCP_OPEN || sk->sk_state == DCCP_PARTOPEN))
733 return 0;
735 hcrx = ccid3_hc_rx_sk(sk);
736 DCCP_SKB_CB(skb)->dccpd_ccval = hcrx->ccid3hcrx_ccval_last_counter;
738 if (dccp_packet_without_ack(skb))
739 return 0;
741 x_recv = htonl(hcrx->ccid3hcrx_x_recv);
742 pinv = htonl(hcrx->ccid3hcrx_pinv);
744 if (dccp_insert_option_timestamp(sk, skb) ||
745 dccp_insert_option(sk, skb, TFRC_OPT_LOSS_EVENT_RATE,
746 &pinv, sizeof(pinv)) ||
747 dccp_insert_option(sk, skb, TFRC_OPT_RECEIVE_RATE,
748 &x_recv, sizeof(x_recv)))
749 return -1;
751 return 0;
754 static int ccid3_hc_rx_detect_loss(struct sock *sk,
755 struct dccp_rx_hist_entry *packet)
757 struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
758 struct dccp_rx_hist_entry *rx_hist =
759 dccp_rx_hist_head(&hcrx->ccid3hcrx_hist);
760 u64 seqno = packet->dccphrx_seqno;
761 u64 tmp_seqno;
762 int loss = 0;
763 u8 ccval;
766 tmp_seqno = hcrx->ccid3hcrx_seqno_nonloss;
768 if (!rx_hist ||
769 follows48(packet->dccphrx_seqno, hcrx->ccid3hcrx_seqno_nonloss)) {
770 hcrx->ccid3hcrx_seqno_nonloss = seqno;
771 hcrx->ccid3hcrx_ccval_nonloss = packet->dccphrx_ccval;
772 goto detect_out;
776 while (dccp_delta_seqno(hcrx->ccid3hcrx_seqno_nonloss, seqno)
777 > TFRC_RECV_NUM_LATE_LOSS) {
778 loss = 1;
779 dccp_li_update_li(sk,
780 &hcrx->ccid3hcrx_li_hist,
781 &hcrx->ccid3hcrx_hist,
782 hcrx->ccid3hcrx_tstamp_last_feedback,
783 hcrx->ccid3hcrx_s,
784 hcrx->ccid3hcrx_bytes_recv,
785 hcrx->ccid3hcrx_x_recv,
786 hcrx->ccid3hcrx_seqno_nonloss,
787 hcrx->ccid3hcrx_ccval_nonloss);
788 tmp_seqno = hcrx->ccid3hcrx_seqno_nonloss;
789 dccp_inc_seqno(&tmp_seqno);
790 hcrx->ccid3hcrx_seqno_nonloss = tmp_seqno;
791 dccp_inc_seqno(&tmp_seqno);
792 while (dccp_rx_hist_find_entry(&hcrx->ccid3hcrx_hist,
793 tmp_seqno, &ccval)) {
794 hcrx->ccid3hcrx_seqno_nonloss = tmp_seqno;
795 hcrx->ccid3hcrx_ccval_nonloss = ccval;
796 dccp_inc_seqno(&tmp_seqno);
800 /* FIXME - this code could be simplified with above while */
801 /* but works at moment */
802 if (follows48(packet->dccphrx_seqno, hcrx->ccid3hcrx_seqno_nonloss)) {
803 hcrx->ccid3hcrx_seqno_nonloss = seqno;
804 hcrx->ccid3hcrx_ccval_nonloss = packet->dccphrx_ccval;
807 detect_out:
808 dccp_rx_hist_add_packet(&hcrx->ccid3hcrx_hist,
809 &hcrx->ccid3hcrx_li_hist, packet,
810 hcrx->ccid3hcrx_seqno_nonloss);
811 return loss;
814 static void ccid3_hc_rx_packet_recv(struct sock *sk, struct sk_buff *skb)
816 struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
817 const struct dccp_options_received *opt_recv;
818 struct dccp_rx_hist_entry *packet;
819 u32 p_prev, r_sample, rtt_prev;
820 int loss, payload_size;
821 ktime_t now;
823 opt_recv = &dccp_sk(sk)->dccps_options_received;
825 switch (DCCP_SKB_CB(skb)->dccpd_type) {
826 case DCCP_PKT_ACK:
827 if (hcrx->ccid3hcrx_state == TFRC_RSTATE_NO_DATA)
828 return;
829 case DCCP_PKT_DATAACK:
830 if (opt_recv->dccpor_timestamp_echo == 0)
831 break;
832 r_sample = dccp_timestamp() - opt_recv->dccpor_timestamp_echo;
833 rtt_prev = hcrx->ccid3hcrx_rtt;
834 r_sample = dccp_sample_rtt(sk, 10 * r_sample);
836 if (hcrx->ccid3hcrx_state == TFRC_RSTATE_NO_DATA)
837 hcrx->ccid3hcrx_rtt = r_sample;
838 else
839 hcrx->ccid3hcrx_rtt = (hcrx->ccid3hcrx_rtt * 9) / 10 +
840 r_sample / 10;
842 if (rtt_prev != hcrx->ccid3hcrx_rtt)
843 ccid3_pr_debug("%s(%p), New RTT=%uus, elapsed time=%u\n",
844 dccp_role(sk), sk, hcrx->ccid3hcrx_rtt,
845 opt_recv->dccpor_elapsed_time);
846 break;
847 case DCCP_PKT_DATA:
848 break;
849 default: /* We're not interested in other packet types, move along */
850 return;
853 packet = dccp_rx_hist_entry_new(opt_recv->dccpor_ndp, skb, GFP_ATOMIC);
854 if (unlikely(packet == NULL)) {
855 DCCP_WARN("%s(%p), Not enough mem to add rx packet "
856 "to history, consider it lost!\n", dccp_role(sk), sk);
857 return;
860 loss = ccid3_hc_rx_detect_loss(sk, packet);
862 if (DCCP_SKB_CB(skb)->dccpd_type == DCCP_PKT_ACK)
863 return;
865 payload_size = skb->len - dccp_hdr(skb)->dccph_doff * 4;
866 ccid3_hc_rx_update_s(hcrx, payload_size);
868 switch (hcrx->ccid3hcrx_state) {
869 case TFRC_RSTATE_NO_DATA:
870 ccid3_pr_debug("%s(%p, state=%s), skb=%p, sending initial "
871 "feedback\n", dccp_role(sk), sk,
872 dccp_state_name(sk->sk_state), skb);
873 ccid3_hc_rx_send_feedback(sk);
874 ccid3_hc_rx_set_state(sk, TFRC_RSTATE_DATA);
875 return;
876 case TFRC_RSTATE_DATA:
877 hcrx->ccid3hcrx_bytes_recv += payload_size;
878 if (loss)
879 break;
881 now = ktime_get_real();
882 if ((ktime_us_delta(now, hcrx->ccid3hcrx_tstamp_last_ack) -
883 (s64)hcrx->ccid3hcrx_rtt) >= 0) {
884 hcrx->ccid3hcrx_tstamp_last_ack = now;
885 ccid3_hc_rx_send_feedback(sk);
887 return;
888 case TFRC_RSTATE_TERM:
889 DCCP_BUG("%s(%p) - Illegal state TERM", dccp_role(sk), sk);
890 return;
893 /* Dealing with packet loss */
894 ccid3_pr_debug("%s(%p, state=%s), data loss! Reacting...\n",
895 dccp_role(sk), sk, dccp_state_name(sk->sk_state));
897 p_prev = hcrx->ccid3hcrx_p;
899 /* Calculate loss event rate */
900 if (!list_empty(&hcrx->ccid3hcrx_li_hist)) {
901 u32 i_mean = dccp_li_hist_calc_i_mean(&hcrx->ccid3hcrx_li_hist);
903 /* Scaling up by 1000000 as fixed decimal */
904 if (i_mean != 0)
905 hcrx->ccid3hcrx_p = 1000000 / i_mean;
906 } else
907 DCCP_BUG("empty loss history");
909 if (hcrx->ccid3hcrx_p > p_prev) {
910 ccid3_hc_rx_send_feedback(sk);
911 return;
915 static int ccid3_hc_rx_init(struct ccid *ccid, struct sock *sk)
917 struct ccid3_hc_rx_sock *hcrx = ccid_priv(ccid);
919 ccid3_pr_debug("entry\n");
921 hcrx->ccid3hcrx_state = TFRC_RSTATE_NO_DATA;
922 INIT_LIST_HEAD(&hcrx->ccid3hcrx_hist);
923 INIT_LIST_HEAD(&hcrx->ccid3hcrx_li_hist);
924 hcrx->ccid3hcrx_tstamp_last_feedback =
925 hcrx->ccid3hcrx_tstamp_last_ack = ktime_get_real();
926 return 0;
929 static void ccid3_hc_rx_exit(struct sock *sk)
931 struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
933 ccid3_hc_rx_set_state(sk, TFRC_RSTATE_TERM);
935 /* Empty packet history */
936 dccp_rx_hist_purge(&hcrx->ccid3hcrx_hist);
938 /* Empty loss interval history */
939 dccp_li_hist_purge(&hcrx->ccid3hcrx_li_hist);
942 static void ccid3_hc_rx_get_info(struct sock *sk, struct tcp_info *info)
944 const struct ccid3_hc_rx_sock *hcrx;
946 /* Listen socks doesn't have a private CCID block */
947 if (sk->sk_state == DCCP_LISTEN)
948 return;
950 hcrx = ccid3_hc_rx_sk(sk);
951 info->tcpi_ca_state = hcrx->ccid3hcrx_state;
952 info->tcpi_options |= TCPI_OPT_TIMESTAMPS;
953 info->tcpi_rcv_rtt = hcrx->ccid3hcrx_rtt;
956 static int ccid3_hc_rx_getsockopt(struct sock *sk, const int optname, int len,
957 u32 __user *optval, int __user *optlen)
959 const struct ccid3_hc_rx_sock *hcrx;
960 const void *val;
962 /* Listen socks doesn't have a private CCID block */
963 if (sk->sk_state == DCCP_LISTEN)
964 return -EINVAL;
966 hcrx = ccid3_hc_rx_sk(sk);
967 switch (optname) {
968 case DCCP_SOCKOPT_CCID_RX_INFO:
969 if (len < sizeof(hcrx->ccid3hcrx_tfrc))
970 return -EINVAL;
971 len = sizeof(hcrx->ccid3hcrx_tfrc);
972 val = &hcrx->ccid3hcrx_tfrc;
973 break;
974 default:
975 return -ENOPROTOOPT;
978 if (put_user(len, optlen) || copy_to_user(optval, val, len))
979 return -EFAULT;
981 return 0;
984 static struct ccid_operations ccid3 = {
985 .ccid_id = DCCPC_CCID3,
986 .ccid_name = "ccid3",
987 .ccid_owner = THIS_MODULE,
988 .ccid_hc_tx_obj_size = sizeof(struct ccid3_hc_tx_sock),
989 .ccid_hc_tx_init = ccid3_hc_tx_init,
990 .ccid_hc_tx_exit = ccid3_hc_tx_exit,
991 .ccid_hc_tx_send_packet = ccid3_hc_tx_send_packet,
992 .ccid_hc_tx_packet_sent = ccid3_hc_tx_packet_sent,
993 .ccid_hc_tx_packet_recv = ccid3_hc_tx_packet_recv,
994 .ccid_hc_tx_parse_options = ccid3_hc_tx_parse_options,
995 .ccid_hc_rx_obj_size = sizeof(struct ccid3_hc_rx_sock),
996 .ccid_hc_rx_init = ccid3_hc_rx_init,
997 .ccid_hc_rx_exit = ccid3_hc_rx_exit,
998 .ccid_hc_rx_insert_options = ccid3_hc_rx_insert_options,
999 .ccid_hc_rx_packet_recv = ccid3_hc_rx_packet_recv,
1000 .ccid_hc_rx_get_info = ccid3_hc_rx_get_info,
1001 .ccid_hc_tx_get_info = ccid3_hc_tx_get_info,
1002 .ccid_hc_rx_getsockopt = ccid3_hc_rx_getsockopt,
1003 .ccid_hc_tx_getsockopt = ccid3_hc_tx_getsockopt,
1006 #ifdef CONFIG_IP_DCCP_CCID3_DEBUG
1007 module_param(ccid3_debug, bool, 0444);
1008 MODULE_PARM_DESC(ccid3_debug, "Enable debug messages");
1009 #endif
1011 static __init int ccid3_module_init(void)
1013 return ccid_register(&ccid3);
1015 module_init(ccid3_module_init);
1017 static __exit void ccid3_module_exit(void)
1019 ccid_unregister(&ccid3);
1021 module_exit(ccid3_module_exit);
1023 MODULE_AUTHOR("Ian McDonald <ian.mcdonald@jandi.co.nz>, "
1024 "Arnaldo Carvalho de Melo <acme@ghostprotocols.net>");
1025 MODULE_DESCRIPTION("DCCP TFRC CCID3 CCID");
1026 MODULE_LICENSE("GPL");
1027 MODULE_ALIAS("net-dccp-ccid-3");