dccp ccid-3: Update the RX history records in one place
[linux-2.6/mini2440.git] / net / dccp / ccids / ccid3.c
blobaca072b3edaeaa453cbeb4cf7282d2161ac4aceb
1 /*
2 * net/dccp/ccids/ccid3.c
4 * Copyright (c) 2007 The University of Aberdeen, Scotland, UK
5 * Copyright (c) 2005-7 The University of Waikato, Hamilton, New Zealand.
6 * Copyright (c) 2005-7 Ian McDonald <ian.mcdonald@jandi.co.nz>
8 * An implementation of the DCCP protocol
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/
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
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>.
21 * Copyright (c) 2005 Arnaldo Carvalho de Melo <acme@conectiva.com.br>
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.
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.
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.
37 #include "../dccp.h"
38 #include "ccid3.h"
40 #include <asm/unaligned.h>
42 #ifdef CONFIG_IP_DCCP_CCID3_DEBUG
43 static int ccid3_debug;
44 #define ccid3_pr_debug(format, a...) DCCP_PR_DEBUG(ccid3_debug, format, ##a)
45 #else
46 #define ccid3_pr_debug(format, a...)
47 #endif
50 * Transmitter Half-Connection Routines
54 * Compute the initial sending rate X_init in the manner of RFC 3390:
56 * X_init = min(4 * s, max(2 * s, 4380 bytes)) / RTT
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.
60 * For consistency with other parts of the code, X_init is scaled by 2^6.
62 static inline u64 rfc3390_initial_rate(struct sock *sk)
64 const struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
65 const __u32 w_init = clamp_t(__u32, 4380U, 2 * hctx->s, 4 * hctx->s);
67 return scaled_div(w_init << 6, hctx->rtt);
70 /**
71 * ccid3_update_send_interval - Calculate new t_ipi = s / X_inst
72 * This respects the granularity of X_inst (64 * bytes/second).
74 static void ccid3_update_send_interval(struct ccid3_hc_tx_sock *hctx)
76 hctx->t_ipi = scaled_div32(((u64)hctx->s) << 6, hctx->x);
78 ccid3_pr_debug("t_ipi=%u, s=%u, X=%u\n", hctx->t_ipi,
79 hctx->s, (unsigned)(hctx->x >> 6));
82 static u32 ccid3_hc_tx_idle_rtt(struct ccid3_hc_tx_sock *hctx, ktime_t now)
84 u32 delta = ktime_us_delta(now, hctx->t_last_win_count);
86 return delta / hctx->rtt;
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.
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).
99 static void ccid3_hc_tx_update_x(struct sock *sk, ktime_t *stamp)
101 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
102 u64 min_rate = 2 * hctx->x_recv;
103 const u64 old_x = hctx->x;
104 ktime_t now = stamp ? *stamp : ktime_get_real();
107 * Handle IDLE periods: do not reduce below RFC3390 initial sending rate
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.
110 * For consistency with X and X_recv, min_rate is also scaled by 2^6.
112 if (ccid3_hc_tx_idle_rtt(hctx, now) >= 2) {
113 min_rate = rfc3390_initial_rate(sk);
114 min_rate = max(min_rate, 2 * hctx->x_recv);
117 if (hctx->p > 0) {
119 hctx->x = min(((u64)hctx->x_calc) << 6, min_rate);
120 hctx->x = max(hctx->x, (((u64)hctx->s) << 6) / TFRC_T_MBI);
122 } else if (ktime_us_delta(now, hctx->t_ld) - (s64)hctx->rtt >= 0) {
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;
130 if (hctx->x != old_x) {
131 ccid3_pr_debug("X_prev=%u, X_now=%u, X_calc=%u, "
132 "X_recv=%u\n", (unsigned)(old_x >> 6),
133 (unsigned)(hctx->x >> 6), hctx->x_calc,
134 (unsigned)(hctx->x_recv >> 6));
136 ccid3_update_send_interval(hctx);
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
144 static inline void ccid3_hc_tx_update_s(struct ccid3_hc_tx_sock *hctx, int len)
146 const u16 old_s = hctx->s;
148 hctx->s = tfrc_ewma(hctx->s, len, 9);
150 if (hctx->s != old_s)
151 ccid3_update_send_interval(hctx);
155 * Update Window Counter using the algorithm from [RFC 4342, 8.1].
156 * As elsewhere, RTT > 0 is assumed by using dccp_sample_rtt().
158 static inline void ccid3_hc_tx_update_win_count(struct ccid3_hc_tx_sock *hctx,
159 ktime_t now)
161 u32 delta = ktime_us_delta(now, hctx->t_last_win_count),
162 quarter_rtts = (4 * delta) / hctx->rtt;
164 if (quarter_rtts > 0) {
165 hctx->t_last_win_count = now;
166 hctx->last_win_count += min(quarter_rtts, 5U);
167 hctx->last_win_count &= 0xF; /* mod 16 */
171 static void ccid3_hc_tx_no_feedback_timer(unsigned long data)
173 struct sock *sk = (struct sock *)data;
174 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
175 unsigned long t_nfb = USEC_PER_SEC / 5;
177 bh_lock_sock(sk);
178 if (sock_owned_by_user(sk)) {
179 /* Try again later. */
180 /* XXX: set some sensible MIB */
181 goto restart_timer;
184 ccid3_pr_debug("%s(%p) entry with%s feedback\n", dccp_role(sk), sk,
185 hctx->feedback ? "" : "out");
187 /* Ignore and do not restart after leaving the established state */
188 if ((1 << sk->sk_state) & ~(DCCPF_OPEN | DCCPF_PARTOPEN))
189 goto out;
191 /* Reset feedback state to "no feedback received" */
192 hctx->feedback = false;
195 * Determine new allowed sending rate X as per draft rfc3448bis-00, 4.4
196 * RTO is 0 if and only if no feedback has been received yet.
198 if (hctx->t_rto == 0 || hctx->p == 0) {
200 /* halve send rate directly */
201 hctx->x = max(hctx->x / 2, (((u64)hctx->s) << 6) / TFRC_T_MBI);
202 ccid3_update_send_interval(hctx);
203 } else {
205 * Modify the cached value of X_recv
207 * If (X_calc > 2 * X_recv)
208 * X_recv = max(X_recv / 2, s / (2 * t_mbi));
209 * Else
210 * X_recv = X_calc / 4;
212 * Note that X_recv is scaled by 2^6 while X_calc is not
214 BUG_ON(hctx->p && !hctx->x_calc);
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));
220 else {
221 hctx->x_recv = hctx->x_calc;
222 hctx->x_recv <<= 4;
224 ccid3_hc_tx_update_x(sk, NULL);
226 ccid3_pr_debug("Reduced X to %llu/64 bytes/sec\n",
227 (unsigned long long)hctx->x);
230 * Set new timeout for the nofeedback timer.
231 * See comments in packet_recv() regarding the value of t_RTO.
233 if (unlikely(hctx->t_rto == 0)) /* no feedback received yet */
234 t_nfb = TFRC_INITIAL_TIMEOUT;
235 else
236 t_nfb = max(hctx->t_rto, 2 * hctx->t_ipi);
238 restart_timer:
239 sk_reset_timer(sk, &hctx->no_feedback_timer,
240 jiffies + usecs_to_jiffies(t_nfb));
241 out:
242 bh_unlock_sock(sk);
243 sock_put(sk);
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.
252 static int ccid3_hc_tx_send_packet(struct sock *sk, struct sk_buff *skb)
254 struct dccp_sock *dp = dccp_sk(sk);
255 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
256 ktime_t now = ktime_get_real();
257 s64 delay;
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.
264 if (unlikely(skb->len == 0))
265 return -EBADMSG;
267 if (hctx->s == 0) {
268 sk_reset_timer(sk, &hctx->no_feedback_timer, (jiffies +
269 usecs_to_jiffies(TFRC_INITIAL_TIMEOUT)));
270 hctx->last_win_count = 0;
271 hctx->t_last_win_count = now;
273 /* Set t_0 for initial packet */
274 hctx->t_nom = now;
276 hctx->s = skb->len;
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.
283 if (dp->dccps_syn_rtt) {
284 ccid3_pr_debug("SYN RTT = %uus\n", dp->dccps_syn_rtt);
285 hctx->rtt = dp->dccps_syn_rtt;
286 hctx->x = rfc3390_initial_rate(sk);
287 hctx->t_ld = now;
288 } else {
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.
295 hctx->rtt = DCCP_FALLBACK_RTT;
296 hctx->x = hctx->s;
297 hctx->x <<= 6;
299 ccid3_update_send_interval(hctx);
301 } else {
302 delay = ktime_us_delta(hctx->t_nom, now);
303 ccid3_pr_debug("delay=%ld\n", (long)delay);
305 * Scheduling of packet transmissions [RFC 3448, 4.6]
307 * if (t_now > t_nom - delta)
308 * // send the packet now
309 * else
310 * // send the packet in (t_nom - t_now) milliseconds.
312 if (delay >= TFRC_T_DELTA)
313 return (u32)delay / USEC_PER_MSEC;
315 ccid3_hc_tx_update_win_count(hctx, now);
318 /* prepare to send now (add options etc.) */
319 dp->dccps_hc_tx_insert_options = 1;
320 DCCP_SKB_CB(skb)->dccpd_ccval = hctx->last_win_count;
322 /* set the nominal send time for the next following packet */
323 hctx->t_nom = ktime_add_us(hctx->t_nom, hctx->t_ipi);
324 return CCID_PACKET_SEND_AT_ONCE;
327 static void ccid3_hc_tx_packet_sent(struct sock *sk, unsigned int len)
329 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
331 ccid3_hc_tx_update_s(hctx, len);
333 if (tfrc_tx_hist_add(&hctx->hist, dccp_sk(sk)->dccps_gss))
334 DCCP_CRIT("packet history - out of memory!");
337 static void ccid3_hc_tx_packet_recv(struct sock *sk, struct sk_buff *skb)
339 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
340 struct tfrc_tx_hist_entry *acked;
341 ktime_t now;
342 unsigned long t_nfb;
343 u32 r_sample;
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;
350 * Locate the acknowledged packet in the TX history.
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).
357 acked = tfrc_tx_hist_find_entry(hctx->hist, dccp_hdr_ack_seq(skb));
358 if (acked == NULL)
359 return;
360 /* For the sake of RTT sampling, ignore/remove all older entries */
361 tfrc_tx_hist_purge(&acked->next);
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);
369 * Update allowed sending rate X as per draft rfc3448bis-00, 4.2/3
371 if (!hctx->feedback) {
372 hctx->feedback = true;
374 if (hctx->t_rto == 0) {
376 * Initial feedback packet: Larger Initial Windows (4.2)
378 hctx->x = rfc3390_initial_rate(sk);
379 hctx->t_ld = now;
381 ccid3_update_send_interval(hctx);
383 goto done_computing_x;
384 } else if (hctx->p == 0) {
386 * First feedback after nofeedback timer expiry (4.3)
388 goto done_computing_x;
392 /* Update sending rate (step 4 of [RFC 3448, 4.3]) */
393 if (hctx->p > 0)
394 hctx->x_calc = tfrc_calc_x(hctx->s, hctx->rtt, hctx->p);
395 ccid3_hc_tx_update_x(sk, &now);
397 done_computing_x:
398 ccid3_pr_debug("%s(%p), RTT=%uus (sample=%uus), s=%u, "
399 "p=%u, X_calc=%u, X_recv=%u, X=%u\n",
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));
405 /* unschedule no feedback timer */
406 sk_stop_timer(sk, &hctx->no_feedback_timer);
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
412 sk->sk_write_space(sk);
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.
420 hctx->t_rto = max_t(u32, 4 * hctx->rtt, (CONFIG_IP_DCCP_CCID3_RTO *
421 (USEC_PER_SEC / 1000)));
423 * Schedule no feedback timer to expire in
424 * max(t_RTO, 2 * s/X) = max(t_RTO, 2 * t_ipi)
426 t_nfb = max(hctx->t_rto, 2 * hctx->t_ipi);
428 ccid3_pr_debug("%s(%p), Scheduled no feedback timer to "
429 "expire in %lu jiffies (%luus)\n",
430 dccp_role(sk), sk, usecs_to_jiffies(t_nfb), t_nfb);
432 sk_reset_timer(sk, &hctx->no_feedback_timer,
433 jiffies + usecs_to_jiffies(t_nfb));
436 static int ccid3_hc_tx_parse_options(struct sock *sk, u8 packet_type,
437 u8 option, u8 *optval, u8 optlen)
439 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
440 __be32 opt_val;
442 switch (option) {
443 case TFRC_OPT_RECEIVE_RATE:
444 case TFRC_OPT_LOSS_EVENT_RATE:
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)) {
449 DCCP_WARN("%s(%p), invalid len %d for %u\n",
450 dccp_role(sk), sk, optlen, option);
451 return -EINVAL;
453 opt_val = ntohl(get_unaligned((__be32 *)optval));
455 if (option == TFRC_OPT_RECEIVE_RATE) {
456 /* Receive Rate is kept in units of 64 bytes/second */
457 hctx->x_recv = opt_val;
458 hctx->x_recv <<= 6;
460 ccid3_pr_debug("%s(%p), RECEIVE_RATE=%u\n",
461 dccp_role(sk), sk, opt_val);
462 } else {
463 /* Update the fixpoint Loss Event Rate fraction */
464 hctx->p = tfrc_invert_loss_event_rate(opt_val);
466 ccid3_pr_debug("%s(%p), LOSS_EVENT_RATE=%u\n",
467 dccp_role(sk), sk, opt_val);
470 return 0;
473 static int ccid3_hc_tx_init(struct ccid *ccid, struct sock *sk)
475 struct ccid3_hc_tx_sock *hctx = ccid_priv(ccid);
477 hctx->hist = NULL;
478 setup_timer(&hctx->no_feedback_timer,
479 ccid3_hc_tx_no_feedback_timer, (unsigned long)sk);
480 return 0;
483 static void ccid3_hc_tx_exit(struct sock *sk)
485 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
487 sk_stop_timer(sk, &hctx->no_feedback_timer);
488 tfrc_tx_hist_purge(&hctx->hist);
491 static void ccid3_hc_tx_get_info(struct sock *sk, struct tcp_info *info)
493 info->tcpi_rto = ccid3_hc_tx_sk(sk)->t_rto;
494 info->tcpi_rtt = ccid3_hc_tx_sk(sk)->rtt;
497 static int ccid3_hc_tx_getsockopt(struct sock *sk, const int optname, int len,
498 u32 __user *optval, int __user *optlen)
500 const struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
501 struct tfrc_tx_info tfrc;
502 const void *val;
504 switch (optname) {
505 case DCCP_SOCKOPT_CCID_TX_INFO:
506 if (len < sizeof(tfrc))
507 return -EINVAL;
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;
517 break;
518 default:
519 return -ENOPROTOOPT;
522 if (put_user(len, optlen) || copy_to_user(optval, val, len))
523 return -EFAULT;
525 return 0;
529 * Receiver Half-Connection Routines
531 static void ccid3_hc_rx_send_feedback(struct sock *sk,
532 const struct sk_buff *skb,
533 enum ccid3_fback_type fbtype)
535 struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
537 switch (fbtype) {
538 case CCID3_FBACK_INITIAL:
539 hcrx->x_recv = 0;
540 hcrx->p_inverse = ~0U; /* see RFC 4342, 8.5 */
541 break;
542 case CCID3_FBACK_PARAM_CHANGE:
543 if (unlikely(hcrx->feedback == CCID3_FBACK_NONE)) {
545 * rfc3448bis-06, 6.3.1: First packet(s) lost or marked
546 * FIXME: in rfc3448bis the receiver returns X_recv=0
547 * here as it normally would in the first feedback packet.
548 * However this is not possible yet, since the code still
549 * uses RFC 3448, i.e.
550 * If (p > 0)
551 * Calculate X_calc using the TCP throughput equation.
552 * X = max(min(X_calc, 2*X_recv), s/t_mbi);
553 * would bring X down to s/t_mbi. That is why we return
554 * X_recv according to rfc3448bis-06 for the moment.
556 u32 s = tfrc_rx_hist_packet_size(&hcrx->hist),
557 rtt = tfrc_rx_hist_rtt(&hcrx->hist);
559 hcrx->x_recv = scaled_div32(s, 2 * rtt);
560 break;
563 * When parameters change (new loss or p > p_prev), we do not
564 * have a reliable estimate for R_m of [RFC 3448, 6.2] and so
565 * always check whether at least RTT time units were covered.
567 hcrx->x_recv = tfrc_rx_hist_x_recv(&hcrx->hist, hcrx->x_recv);
568 break;
569 case CCID3_FBACK_PERIODIC:
571 * Step (2) of rfc3448bis-06, 6.2:
572 * - if no data packets have been received, just restart timer
573 * - if data packets have been received, re-compute X_recv
575 if (hcrx->hist.bytes_recvd == 0)
576 goto prepare_for_next_time;
577 hcrx->x_recv = tfrc_rx_hist_x_recv(&hcrx->hist, hcrx->x_recv);
578 break;
579 default:
580 return;
583 ccid3_pr_debug("X_recv=%u, 1/p=%u\n", hcrx->x_recv, hcrx->p_inverse);
585 dccp_sk(sk)->dccps_hc_rx_insert_options = 1;
586 dccp_send_ack(sk);
588 prepare_for_next_time:
589 tfrc_rx_hist_restart_byte_counter(&hcrx->hist);
590 hcrx->last_counter = dccp_hdr(skb)->dccph_ccval;
591 hcrx->feedback = fbtype;
594 static int ccid3_hc_rx_insert_options(struct sock *sk, struct sk_buff *skb)
596 const struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
597 __be32 x_recv, pinv;
599 if (!(sk->sk_state == DCCP_OPEN || sk->sk_state == DCCP_PARTOPEN))
600 return 0;
602 if (dccp_packet_without_ack(skb))
603 return 0;
605 x_recv = htonl(hcrx->x_recv);
606 pinv = htonl(hcrx->p_inverse);
608 if (dccp_insert_option(sk, skb, TFRC_OPT_LOSS_EVENT_RATE,
609 &pinv, sizeof(pinv)) ||
610 dccp_insert_option(sk, skb, TFRC_OPT_RECEIVE_RATE,
611 &x_recv, sizeof(x_recv)))
612 return -1;
614 return 0;
617 /** ccid3_first_li - Implements [RFC 3448, 6.3.1]
619 * Determine the length of the first loss interval via inverse lookup.
620 * Assume that X_recv can be computed by the throughput equation
622 * X_recv = --------
623 * R * fval
624 * Find some p such that f(p) = fval; return 1/p (scaled).
626 static u32 ccid3_first_li(struct sock *sk)
628 struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
629 u32 s = tfrc_rx_hist_packet_size(&hcrx->hist),
630 rtt = tfrc_rx_hist_rtt(&hcrx->hist), x_recv, p;
631 u64 fval;
634 * rfc3448bis-06, 6.3.1: First data packet(s) are marked or lost. Set p
635 * to give the equivalent of X_target = s/(2*R). Thus fval = 2 and so p
636 * is about 20.64%. This yields an interval length of 4.84 (rounded up).
638 if (unlikely(hcrx->feedback == CCID3_FBACK_NONE))
639 return 5;
641 x_recv = tfrc_rx_hist_x_recv(&hcrx->hist, hcrx->x_recv);
642 if (x_recv == 0)
643 goto failed;
645 fval = scaled_div32(scaled_div(s, rtt), x_recv);
646 p = tfrc_calc_x_reverse_lookup(fval);
648 ccid3_pr_debug("%s(%p), receive rate=%u bytes/s, implied "
649 "loss rate=%u\n", dccp_role(sk), sk, x_recv, p);
651 if (p > 0)
652 return scaled_div(1, p);
653 failed:
654 return UINT_MAX;
657 static void ccid3_hc_rx_packet_recv(struct sock *sk, struct sk_buff *skb)
659 struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
660 const u64 ndp = dccp_sk(sk)->dccps_options_received.dccpor_ndp;
661 const bool is_data_packet = dccp_data_packet(skb);
664 * Perform loss detection and handle pending losses
666 if (tfrc_rx_congestion_event(&hcrx->hist, &hcrx->li_hist,
667 skb, ndp, ccid3_first_li, sk))
668 ccid3_hc_rx_send_feedback(sk, skb, CCID3_FBACK_PARAM_CHANGE);
670 * Feedback for first non-empty data packet (RFC 3448, 6.3)
672 else if (unlikely(hcrx->feedback == CCID3_FBACK_NONE && is_data_packet))
673 ccid3_hc_rx_send_feedback(sk, skb, CCID3_FBACK_INITIAL);
675 * Check if the periodic once-per-RTT feedback is due; RFC 4342, 10.3
677 else if (!tfrc_rx_hist_loss_pending(&hcrx->hist) && is_data_packet &&
678 SUB16(dccp_hdr(skb)->dccph_ccval, hcrx->last_counter) > 3)
679 ccid3_hc_rx_send_feedback(sk, skb, CCID3_FBACK_PERIODIC);
682 static int ccid3_hc_rx_init(struct ccid *ccid, struct sock *sk)
684 struct ccid3_hc_rx_sock *hcrx = ccid_priv(ccid);
686 tfrc_lh_init(&hcrx->li_hist);
687 return tfrc_rx_hist_init(&hcrx->hist, sk);
690 static void ccid3_hc_rx_exit(struct sock *sk)
692 struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
694 tfrc_rx_hist_purge(&hcrx->hist);
695 tfrc_lh_cleanup(&hcrx->li_hist);
698 static void ccid3_hc_rx_get_info(struct sock *sk, struct tcp_info *info)
700 info->tcpi_options |= TCPI_OPT_TIMESTAMPS;
701 info->tcpi_rcv_rtt = tfrc_rx_hist_rtt(&ccid3_hc_rx_sk(sk)->hist);
704 static int ccid3_hc_rx_getsockopt(struct sock *sk, const int optname, int len,
705 u32 __user *optval, int __user *optlen)
707 const struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
708 struct tfrc_rx_info rx_info;
709 const void *val;
711 switch (optname) {
712 case DCCP_SOCKOPT_CCID_RX_INFO:
713 if (len < sizeof(rx_info))
714 return -EINVAL;
715 rx_info.tfrcrx_x_recv = hcrx->x_recv;
716 rx_info.tfrcrx_rtt = tfrc_rx_hist_rtt(&hcrx->hist);
717 rx_info.tfrcrx_p = tfrc_invert_loss_event_rate(hcrx->p_inverse);
718 len = sizeof(rx_info);
719 val = &rx_info;
720 break;
721 default:
722 return -ENOPROTOOPT;
725 if (put_user(len, optlen) || copy_to_user(optval, val, len))
726 return -EFAULT;
728 return 0;
731 static struct ccid_operations ccid3 = {
732 .ccid_id = DCCPC_CCID3,
733 .ccid_name = "TCP-Friendly Rate Control",
734 .ccid_owner = THIS_MODULE,
735 .ccid_hc_tx_obj_size = sizeof(struct ccid3_hc_tx_sock),
736 .ccid_hc_tx_init = ccid3_hc_tx_init,
737 .ccid_hc_tx_exit = ccid3_hc_tx_exit,
738 .ccid_hc_tx_send_packet = ccid3_hc_tx_send_packet,
739 .ccid_hc_tx_packet_sent = ccid3_hc_tx_packet_sent,
740 .ccid_hc_tx_packet_recv = ccid3_hc_tx_packet_recv,
741 .ccid_hc_tx_parse_options = ccid3_hc_tx_parse_options,
742 .ccid_hc_rx_obj_size = sizeof(struct ccid3_hc_rx_sock),
743 .ccid_hc_rx_init = ccid3_hc_rx_init,
744 .ccid_hc_rx_exit = ccid3_hc_rx_exit,
745 .ccid_hc_rx_insert_options = ccid3_hc_rx_insert_options,
746 .ccid_hc_rx_packet_recv = ccid3_hc_rx_packet_recv,
747 .ccid_hc_rx_get_info = ccid3_hc_rx_get_info,
748 .ccid_hc_tx_get_info = ccid3_hc_tx_get_info,
749 .ccid_hc_rx_getsockopt = ccid3_hc_rx_getsockopt,
750 .ccid_hc_tx_getsockopt = ccid3_hc_tx_getsockopt,
753 #ifdef CONFIG_IP_DCCP_CCID3_DEBUG
754 module_param(ccid3_debug, bool, 0644);
755 MODULE_PARM_DESC(ccid3_debug, "Enable debug messages");
756 #endif
758 static __init int ccid3_module_init(void)
760 struct timespec tp;
763 * Without a fine-grained clock resolution, RTTs/X_recv are not sampled
764 * correctly and feedback is sent either too early or too late.
766 hrtimer_get_res(CLOCK_MONOTONIC, &tp);
767 if (tp.tv_sec || tp.tv_nsec > DCCP_TIME_RESOLUTION * NSEC_PER_USEC) {
768 printk(KERN_ERR "%s: Timer too coarse (%ld usec), need %u-usec"
769 " resolution - check your clocksource.\n", __func__,
770 tp.tv_nsec/NSEC_PER_USEC, DCCP_TIME_RESOLUTION);
771 return -ESOCKTNOSUPPORT;
773 return ccid_register(&ccid3);
775 module_init(ccid3_module_init);
777 static __exit void ccid3_module_exit(void)
779 ccid_unregister(&ccid3);
781 module_exit(ccid3_module_exit);
783 MODULE_AUTHOR("Ian McDonald <ian.mcdonald@jandi.co.nz>, "
784 "Arnaldo Carvalho de Melo <acme@ghostprotocols.net>");
785 MODULE_DESCRIPTION("DCCP TFRC CCID3 CCID");
786 MODULE_LICENSE("GPL");
787 MODULE_ALIAS("net-dccp-ccid-3");