blob: 0a7c22598d62018067eed664f828010b1d02e8a3 [file] [log] [blame]
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001/*
2 * net/dccp/ccids/ccid3.c
3 *
Gerrit Renker954c2db2007-12-12 14:06:14 -02004 * Copyright (c) 2007 The University of Aberdeen, Scotland, UK
Ian McDonaldb2f41ff2007-05-28 12:23:29 -03005 * Copyright (c) 2005-7 The University of Waikato, Hamilton, New Zealand.
6 * Copyright (c) 2005-7 Ian McDonald <ian.mcdonald@jandi.co.nz>
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07007 *
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/
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -070012 *
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 */
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -070037#include "../dccp.h"
38#include "ccid3.h"
39
Gerrit Renker76fd1e82007-10-24 10:46:58 -020040#include <asm/unaligned.h>
41
Gerrit Renker56724aa2006-11-20 18:28:09 -020042#ifdef CONFIG_IP_DCCP_CCID3_DEBUG
43static int ccid3_debug;
44#define ccid3_pr_debug(format, a...) DCCP_PR_DEBUG(ccid3_debug, format, ##a)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -070045#else
46#define ccid3_pr_debug(format, a...)
47#endif
48
Gerrit Renker9bf17472007-03-20 13:11:24 -030049/*
50 * Transmitter Half-Connection Routines
51 */
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -070052
Gerrit Renker17893bc2006-11-27 20:31:33 -020053/*
Gerrit Renker6c08b2c2007-11-20 17:33:17 -020054 * 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.
Gerrit Renkera21f9f92007-03-20 15:12:10 -030060 * 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{
Gerrit Renker6c08b2c2007-11-20 17:33:17 -020064 const struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
Gerrit Renker842d1ef2008-09-04 07:30:19 +020065 const __u32 w_init = clamp_t(__u32, 4380U, 2 * hctx->s, 4 * hctx->s);
Gerrit Renkera21f9f92007-03-20 15:12:10 -030066
Gerrit Renker842d1ef2008-09-04 07:30:19 +020067 return scaled_div(w_init << 6, hctx->rtt);
Gerrit Renkera21f9f92007-03-20 15:12:10 -030068}
69
Gerrit Renkerde6f2b52008-09-04 07:30:19 +020070/**
71 * ccid3_update_send_interval - Calculate new t_ipi = s / X_inst
72 * This respects the granularity of X_inst (64 * bytes/second).
Gerrit Renker17893bc2006-11-27 20:31:33 -020073 */
Ilpo Järvinenc4e18da2008-01-05 23:13:58 -080074static void ccid3_update_send_interval(struct ccid3_hc_tx_sock *hctx)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -070075{
Gerrit Renker842d1ef2008-09-04 07:30:19 +020076 hctx->t_ipi = scaled_div32(((u64)hctx->s) << 6, hctx->x);
Gerrit Renker17893bc2006-11-27 20:31:33 -020077
Gerrit Renkerde6f2b52008-09-04 07:30:19 +020078 ccid3_pr_debug("t_ipi=%u, s=%u, X=%u\n", hctx->t_ipi,
79 hctx->s, (unsigned)(hctx->x >> 6));
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -070080}
Gerrit Renkeraa97efd2007-09-25 22:39:16 -070081
Gerrit Renkera5358fd2007-11-20 18:01:59 -020082static u32 ccid3_hc_tx_idle_rtt(struct ccid3_hc_tx_sock *hctx, ktime_t now)
83{
Gerrit Renker842d1ef2008-09-04 07:30:19 +020084 u32 delta = ktime_us_delta(now, hctx->t_last_win_count);
Gerrit Renkera5358fd2007-11-20 18:01:59 -020085
Gerrit Renker842d1ef2008-09-04 07:30:19 +020086 return delta / hctx->rtt;
Gerrit Renkera5358fd2007-11-20 18:01:59 -020087}
88
Gerrit Renkeraa97efd2007-09-25 22:39:16 -070089/**
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.
Gerrit Renker5c3fbb62006-12-03 14:50:56 -020093 *
Gerrit Renker1a21e492006-12-10 00:02:12 -020094 * 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 *
Gerrit Renker1a21e492006-12-10 00:02:12 -020098 */
Gerrit Renkeraa97efd2007-09-25 22:39:16 -070099static void ccid3_hc_tx_update_x(struct sock *sk, ktime_t *stamp)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700100{
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300101 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200102 u64 min_rate = 2 * hctx->x_recv;
103 const u64 old_x = hctx->x;
Gerrit Renker52515e72007-12-17 12:57:43 -0200104 ktime_t now = stamp ? *stamp : ktime_get_real();
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700105
Gerrit Renker0c150ef2007-03-20 15:19:07 -0300106 /*
107 * Handle IDLE periods: do not reduce below RFC3390 initial sending rate
Gerrit Renkera5358fd2007-11-20 18:01:59 -0200108 * 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.
Gerrit Renker0c150ef2007-03-20 15:19:07 -0300110 * For consistency with X and X_recv, min_rate is also scaled by 2^6.
111 */
Gerrit Renkera5358fd2007-11-20 18:01:59 -0200112 if (ccid3_hc_tx_idle_rtt(hctx, now) >= 2) {
Gerrit Renker0c150ef2007-03-20 15:19:07 -0300113 min_rate = rfc3390_initial_rate(sk);
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200114 min_rate = max(min_rate, 2 * hctx->x_recv);
Gerrit Renker0c150ef2007-03-20 15:19:07 -0300115 }
116
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200117 if (hctx->p > 0) {
Gerrit Renker1a21e492006-12-10 00:02:12 -0200118
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200119 hctx->x = min(((u64)hctx->x_calc) << 6, min_rate);
120 hctx->x = max(hctx->x, (((u64)hctx->s) << 6) / TFRC_T_MBI);
Arnaldo Carvalho de Melob6ee3d42005-08-27 18:18:18 -0300121
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200122 } else if (ktime_us_delta(now, hctx->t_ld) - (s64)hctx->rtt >= 0) {
Gerrit Renker1a21e492006-12-10 00:02:12 -0200123
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200124 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;
Gerrit Renkerff586292006-12-10 00:00:14 -0200128 }
Gerrit Renkera79ef762006-11-28 19:51:42 -0200129
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200130 if (hctx->x != old_x) {
Gerrit Renker1761f7d2007-03-20 15:04:30 -0300131 ccid3_pr_debug("X_prev=%u, X_now=%u, X_calc=%u, "
132 "X_recv=%u\n", (unsigned)(old_x >> 6),
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200133 (unsigned)(hctx->x >> 6), hctx->x_calc,
134 (unsigned)(hctx->x_recv >> 6));
Ian McDonald8699be72007-03-20 14:49:20 -0300135
Gerrit Renker1266ade2007-03-20 14:56:11 -0300136 ccid3_update_send_interval(hctx);
Ian McDonald8699be72007-03-20 14:49:20 -0300137 }
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700138}
139
Gerrit Renker78ad7132006-11-28 19:22:33 -0200140/*
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200141 * Track the mean packet size `s' (cf. RFC 4342, 5.3 and RFC 3448, 4.1)
142 * @len: DCCP packet payload size in bytes
Gerrit Renker78ad7132006-11-28 19:22:33 -0200143 */
144static inline void ccid3_hc_tx_update_s(struct ccid3_hc_tx_sock *hctx, int len)
145{
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200146 const u16 old_s = hctx->s;
Gerrit Renker1266ade2007-03-20 14:56:11 -0300147
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200148 hctx->s = tfrc_ewma(hctx->s, len, 9);
Gerrit Renker1266ade2007-03-20 14:56:11 -0300149
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200150 if (hctx->s != old_s)
Gerrit Renker1266ade2007-03-20 14:56:11 -0300151 ccid3_update_send_interval(hctx);
Gerrit Renker78ad7132006-11-28 19:22:33 -0200152}
153
Gerrit Renker9f8681d2006-12-10 00:07:37 -0200154/*
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200155 * Update Window Counter using the algorithm from [RFC 4342, 8.1].
Gerrit Renker825de272008-05-27 06:33:54 -0700156 * As elsewhere, RTT > 0 is assumed by using dccp_sample_rtt().
Gerrit Renker9f8681d2006-12-10 00:07:37 -0200157 */
158static inline void ccid3_hc_tx_update_win_count(struct ccid3_hc_tx_sock *hctx,
Gerrit Renker8132da42007-06-16 13:34:02 -0300159 ktime_t now)
Gerrit Renker9f8681d2006-12-10 00:07:37 -0200160{
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200161 u32 delta = ktime_us_delta(now, hctx->t_last_win_count),
162 quarter_rtts = (4 * delta) / hctx->rtt;
Gerrit Renker9f8681d2006-12-10 00:07:37 -0200163
164 if (quarter_rtts > 0) {
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200165 hctx->t_last_win_count = now;
166 hctx->last_win_count += min(quarter_rtts, 5U);
167 hctx->last_win_count &= 0xF; /* mod 16 */
Gerrit Renker9f8681d2006-12-10 00:07:37 -0200168 }
169}
170
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700171static void ccid3_hc_tx_no_feedback_timer(unsigned long data)
172{
173 struct sock *sk = (struct sock *)data;
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300174 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
Gerrit Renker2a1fda62006-11-28 18:34:34 -0200175 unsigned long t_nfb = USEC_PER_SEC / 5;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700176
177 bh_lock_sock(sk);
178 if (sock_owned_by_user(sk)) {
179 /* Try again later. */
180 /* XXX: set some sensible MIB */
Gerrit Renker48e03ee2006-11-27 20:29:27 -0200181 goto restart_timer;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700182 }
183
Gerrit Renkerd0c05fe2008-09-04 07:30:19 +0200184 ccid3_pr_debug("%s(%p) entry with%s feedback\n", dccp_role(sk), sk,
185 hctx->feedback ? "" : "out");
Gerrit Renkera9672412006-12-10 00:14:12 -0200186
Gerrit Renkerd0995e62008-09-04 07:30:19 +0200187 /* 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" */
Gerrit Renkerd0c05fe2008-09-04 07:30:19 +0200192 hctx->feedback = false;
Gerrit Renker52515e72007-12-17 12:57:43 -0200193
194 /*
195 * Determine new allowed sending rate X as per draft rfc3448bis-00, 4.4
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200196 * RTO is 0 if and only if no feedback has been received yet.
Gerrit Renker52515e72007-12-17 12:57:43 -0200197 */
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200198 if (hctx->t_rto == 0 || hctx->p == 0) {
Gerrit Renker52515e72007-12-17 12:57:43 -0200199
200 /* halve send rate directly */
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200201 hctx->x = max(hctx->x / 2, (((u64)hctx->s) << 6) / TFRC_T_MBI);
Gerrit Renker1266ade2007-03-20 14:56:11 -0300202 ccid3_update_send_interval(hctx);
Gerrit Renker52515e72007-12-17 12:57:43 -0200203 } else {
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -0300204 /*
Gerrit Renker52515e72007-12-17 12:57:43 -0200205 * Modify the cached value of X_recv
Gerrit Renker0c150ef2007-03-20 15:19:07 -0300206 *
Gerrit Renker52515e72007-12-17 12:57:43 -0200207 * If (X_calc > 2 * X_recv)
Gerrit Renker0c150ef2007-03-20 15:19:07 -0300208 * 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
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -0300213 */
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200214 BUG_ON(hctx->p && !hctx->x_calc);
Gerrit Renkera79ef762006-11-28 19:51:42 -0200215
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200216 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));
Gerrit Renker52515e72007-12-17 12:57:43 -0200220 else {
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200221 hctx->x_recv = hctx->x_calc;
222 hctx->x_recv <<= 4;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700223 }
Gerrit Renkeraa97efd2007-09-25 22:39:16 -0700224 ccid3_hc_tx_update_x(sk, NULL);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700225 }
Gerrit Renker52515e72007-12-17 12:57:43 -0200226 ccid3_pr_debug("Reduced X to %llu/64 bytes/sec\n",
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200227 (unsigned long long)hctx->x);
Gerrit Renker52515e72007-12-17 12:57:43 -0200228
229 /*
230 * Set new timeout for the nofeedback timer.
231 * See comments in packet_recv() regarding the value of t_RTO.
232 */
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200233 if (unlikely(hctx->t_rto == 0)) /* no feedback received yet */
Gerrit Renker52515e72007-12-17 12:57:43 -0200234 t_nfb = TFRC_INITIAL_TIMEOUT;
235 else
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200236 t_nfb = max(hctx->t_rto, 2 * hctx->t_ipi);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700237
Gerrit Renker48e03ee2006-11-27 20:29:27 -0200238restart_timer:
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200239 sk_reset_timer(sk, &hctx->no_feedback_timer,
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900240 jiffies + usecs_to_jiffies(t_nfb));
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700241out:
242 bh_unlock_sock(sk);
243 sock_put(sk);
244}
245
Gerrit Renkerf4a66ca2008-09-04 07:30:19 +0200246/**
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.
Gerrit Renker7da7f452006-11-27 12:26:03 -0200251 */
Gerrit Renker6b57c932006-11-28 19:55:06 -0200252static int ccid3_hc_tx_send_packet(struct sock *sk, struct sk_buff *skb)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700253{
254 struct dccp_sock *dp = dccp_sk(sk);
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300255 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
Gerrit Renker8132da42007-06-16 13:34:02 -0300256 ktime_t now = ktime_get_real();
257 s64 delay;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700258
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700259 /*
Gerrit Renkerda335ba2006-11-27 12:26:57 -0200260 * 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.
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700263 */
Gerrit Renker6b57c932006-11-28 19:55:06 -0200264 if (unlikely(skb->len == 0))
Gerrit Renkerda335ba2006-11-27 12:26:57 -0200265 return -EBADMSG;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700266
Gerrit Renkerd0c05fe2008-09-04 07:30:19 +0200267 if (hctx->s == 0) {
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200268 sk_reset_timer(sk, &hctx->no_feedback_timer, (jiffies +
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900269 usecs_to_jiffies(TFRC_INITIAL_TIMEOUT)));
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200270 hctx->last_win_count = 0;
271 hctx->t_last_win_count = now;
Gerrit Renker90feeb92006-11-27 12:13:38 -0200272
273 /* Set t_0 for initial packet */
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200274 hctx->t_nom = now;
Gerrit Renker30833ff2007-03-20 15:31:56 -0300275
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200276 hctx->s = skb->len;
Gerrit Renker30833ff2007-03-20 15:31:56 -0300277
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);
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200285 hctx->rtt = dp->dccps_syn_rtt;
286 hctx->x = rfc3390_initial_rate(sk);
287 hctx->t_ld = now;
Gerrit Renker30833ff2007-03-20 15:31:56 -0300288 } else {
Gerrit Renker3294f202008-06-11 11:19:09 +0100289 /*
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 */
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200295 hctx->rtt = DCCP_FALLBACK_RTT;
296 hctx->x = hctx->s;
297 hctx->x <<= 6;
Gerrit Renker30833ff2007-03-20 15:31:56 -0300298 }
299 ccid3_update_send_interval(hctx);
300
Gerrit Renkerd0995e62008-09-04 07:30:19 +0200301 } else {
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200302 delay = ktime_us_delta(hctx->t_nom, now);
Ian McDonald8699be72007-03-20 14:49:20 -0300303 ccid3_pr_debug("delay=%ld\n", (long)delay);
Gerrit Renker91cf5a12006-11-27 12:25:10 -0200304 /*
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200305 * Scheduling of packet transmissions [RFC 3448, 4.6]
Gerrit Renker91cf5a12006-11-27 12:25:10 -0200306 *
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 */
Gerrit Renkerde6f2b52008-09-04 07:30:19 +0200312 if (delay >= TFRC_T_DELTA)
313 return (u32)delay / USEC_PER_MSEC;
Gerrit Renker9f8681d2006-12-10 00:07:37 -0200314
Gerrit Renker8132da42007-06-16 13:34:02 -0300315 ccid3_hc_tx_update_win_count(hctx, now);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700316 }
317
Gerrit Renker7da7f452006-11-27 12:26:03 -0200318 /* prepare to send now (add options etc.) */
319 dp->dccps_hc_tx_insert_options = 1;
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200320 DCCP_SKB_CB(skb)->dccpd_ccval = hctx->last_win_count;
Gerrit Renkere312d102006-12-10 00:08:09 -0200321
322 /* set the nominal send time for the next following packet */
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200323 hctx->t_nom = ktime_add_us(hctx->t_nom, hctx->t_ipi);
Gerrit Renkerf4a66ca2008-09-04 07:30:19 +0200324 return CCID_PACKET_SEND_AT_ONCE;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700325}
326
Gerrit Renkerc506d912008-09-04 07:30:19 +0200327static void ccid3_hc_tx_packet_sent(struct sock *sk, unsigned int len)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700328{
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300329 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700330
Gerrit Renker6b57c932006-11-28 19:55:06 -0200331 ccid3_hc_tx_update_s(hctx, len);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700332
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200333 if (tfrc_tx_hist_add(&hctx->hist, dccp_sk(sk)->dccps_gss))
Gerrit Renkerc5a1ae92006-12-10 00:09:21 -0200334 DCCP_CRIT("packet history - out of memory!");
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700335}
336
337static void ccid3_hc_tx_packet_recv(struct sock *sk, struct sk_buff *skb)
338{
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300339 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
Gerrit Renker63b3a732008-09-04 07:30:19 +0200340 struct tfrc_tx_hist_entry *acked;
Arnaldo Carvalho de Melo0740d492007-08-19 17:18:13 -0700341 ktime_t now;
Gerrit Renker2a1fda62006-11-28 18:34:34 -0200342 unsigned long t_nfb;
Gerrit Renkerce177ae2008-09-04 07:30:19 +0200343 u32 r_sample;
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -0300344
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700345 /* 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;
Gerrit Renker63b3a732008-09-04 07:30:19 +0200349 /*
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)
Gerrit Renker5bd370a2007-12-17 10:25:06 -0200359 return;
Gerrit Renker63b3a732008-09-04 07:30:19 +0200360 /* 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);
Gerrit Renker5bd370a2007-12-17 10:25:06 -0200367
Gerrit Renkerd8d12522007-12-17 12:48:47 -0200368 /*
369 * Update allowed sending rate X as per draft rfc3448bis-00, 4.2/3
370 */
Gerrit Renkerd0c05fe2008-09-04 07:30:19 +0200371 if (!hctx->feedback) {
372 hctx->feedback = true;
Gerrit Renker5bd370a2007-12-17 10:25:06 -0200373
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200374 if (hctx->t_rto == 0) {
Gerrit Renkerd8d12522007-12-17 12:48:47 -0200375 /*
376 * Initial feedback packet: Larger Initial Windows (4.2)
377 */
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200378 hctx->x = rfc3390_initial_rate(sk);
379 hctx->t_ld = now;
Gerrit Renkerd8d12522007-12-17 12:48:47 -0200380
381 ccid3_update_send_interval(hctx);
382
383 goto done_computing_x;
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200384 } else if (hctx->p == 0) {
Gerrit Renkerd8d12522007-12-17 12:48:47 -0200385 /*
386 * First feedback after nofeedback timer expiry (4.3)
387 */
388 goto done_computing_x;
389 }
390 }
391
392 /* Update sending rate (step 4 of [RFC 3448, 4.3]) */
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200393 if (hctx->p > 0)
394 hctx->x_calc = tfrc_calc_x(hctx->s, hctx->rtt, hctx->p);
Gerrit Renkerd8d12522007-12-17 12:48:47 -0200395 ccid3_hc_tx_update_x(sk, &now);
Gerrit Renker5bd370a2007-12-17 10:25:06 -0200396
Gerrit Renkerd8d12522007-12-17 12:48:47 -0200397done_computing_x:
398 ccid3_pr_debug("%s(%p), RTT=%uus (sample=%uus), s=%u, "
Gerrit Renker5bd370a2007-12-17 10:25:06 -0200399 "p=%u, X_calc=%u, X_recv=%u, X=%u\n",
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200400 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));
Gerrit Renker5bd370a2007-12-17 10:25:06 -0200404
405 /* unschedule no feedback timer */
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200406 sk_stop_timer(sk, &hctx->no_feedback_timer);
Gerrit Renker5bd370a2007-12-17 10:25:06 -0200407
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);
413
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 */
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200420 hctx->t_rto = max_t(u32, 4 * hctx->rtt, (CONFIG_IP_DCCP_CCID3_RTO *
421 (USEC_PER_SEC / 1000)));
Gerrit Renker5bd370a2007-12-17 10:25:06 -0200422 /*
423 * Schedule no feedback timer to expire in
424 * max(t_RTO, 2 * s/X) = max(t_RTO, 2 * t_ipi)
425 */
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200426 t_nfb = max(hctx->t_rto, 2 * hctx->t_ipi);
Gerrit Renker5bd370a2007-12-17 10:25:06 -0200427
428 ccid3_pr_debug("%s(%p), Scheduled no feedback timer to "
429 "expire in %lu jiffies (%luus)\n",
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200430 dccp_role(sk), sk, usecs_to_jiffies(t_nfb), t_nfb);
Gerrit Renker5bd370a2007-12-17 10:25:06 -0200431
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200432 sk_reset_timer(sk, &hctx->no_feedback_timer,
Gerrit Renker5bd370a2007-12-17 10:25:06 -0200433 jiffies + usecs_to_jiffies(t_nfb));
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700434}
435
Gerrit Renker3306c782008-09-04 07:30:19 +0200436static int ccid3_hc_tx_parse_options(struct sock *sk, u8 packet_type,
437 u8 option, u8 *optval, u8 optlen)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700438{
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300439 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
Gerrit Renker76fd1e82007-10-24 10:46:58 -0200440 __be32 opt_val;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700441
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700442 switch (option) {
Gerrit Renker47a61e72008-09-04 07:30:19 +0200443 case TFRC_OPT_RECEIVE_RATE:
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700444 case TFRC_OPT_LOSS_EVENT_RATE:
Gerrit Renker3306c782008-09-04 07:30:19 +0200445 /* 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)) {
Gerrit Renker47a61e72008-09-04 07:30:19 +0200449 DCCP_WARN("%s(%p), invalid len %d for %u\n",
Gerrit Renker3306c782008-09-04 07:30:19 +0200450 dccp_role(sk), sk, optlen, option);
Gerrit Renker47a61e72008-09-04 07:30:19 +0200451 return -EINVAL;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700452 }
Gerrit Renker3306c782008-09-04 07:30:19 +0200453 opt_val = ntohl(get_unaligned((__be32 *)optval));
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700454
Gerrit Renker47a61e72008-09-04 07:30:19 +0200455 if (option == TFRC_OPT_RECEIVE_RATE) {
Gerrit Renkerce177ae2008-09-04 07:30:19 +0200456 /* Receive Rate is kept in units of 64 bytes/second */
457 hctx->x_recv = opt_val;
458 hctx->x_recv <<= 6;
459
Gerrit Renker47a61e72008-09-04 07:30:19 +0200460 ccid3_pr_debug("%s(%p), RECEIVE_RATE=%u\n",
461 dccp_role(sk), sk, opt_val);
462 } else {
Gerrit Renkerce177ae2008-09-04 07:30:19 +0200463 /* Update the fixpoint Loss Event Rate fraction */
464 hctx->p = tfrc_invert_loss_event_rate(opt_val);
465
Gerrit Renker47a61e72008-09-04 07:30:19 +0200466 ccid3_pr_debug("%s(%p), LOSS_EVENT_RATE=%u\n",
467 dccp_role(sk), sk, opt_val);
468 }
469 }
470 return 0;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700471}
472
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800473static int ccid3_hc_tx_init(struct ccid *ccid, struct sock *sk)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700474{
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800475 struct ccid3_hc_tx_sock *hctx = ccid_priv(ccid);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700476
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200477 hctx->hist = NULL;
478 setup_timer(&hctx->no_feedback_timer,
479 ccid3_hc_tx_no_feedback_timer, (unsigned long)sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700480 return 0;
481}
482
483static void ccid3_hc_tx_exit(struct sock *sk)
484{
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300485 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700486
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200487 sk_stop_timer(sk, &hctx->no_feedback_timer);
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200488 tfrc_tx_hist_purge(&hctx->hist);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700489}
490
Gerrit Renker9bf17472007-03-20 13:11:24 -0300491static void ccid3_hc_tx_get_info(struct sock *sk, struct tcp_info *info)
492{
Gerrit Renkerb2e317f2008-09-04 07:30:19 +0200493 info->tcpi_rto = ccid3_hc_tx_sk(sk)->t_rto;
494 info->tcpi_rtt = ccid3_hc_tx_sk(sk)->rtt;
Gerrit Renker9bf17472007-03-20 13:11:24 -0300495}
496
497static int ccid3_hc_tx_getsockopt(struct sock *sk, const int optname, int len,
498 u32 __user *optval, int __user *optlen)
499{
Gerrit Renkerb2e317f2008-09-04 07:30:19 +0200500 const struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200501 struct tfrc_tx_info tfrc;
Gerrit Renker9bf17472007-03-20 13:11:24 -0300502 const void *val;
503
Gerrit Renker9bf17472007-03-20 13:11:24 -0300504 switch (optname) {
505 case DCCP_SOCKOPT_CCID_TX_INFO:
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200506 if (len < sizeof(tfrc))
Gerrit Renker9bf17472007-03-20 13:11:24 -0300507 return -EINVAL;
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200508 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;
Gerrit Renker9bf17472007-03-20 13:11:24 -0300517 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
528/*
529 * Receiver Half-Connection Routines
530 */
Arnaldo Carvalho de Melob84a2182007-12-06 13:18:11 -0200531
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
Gerrit Renker56724aa2006-11-20 18:28:09 -0200540#ifdef CONFIG_IP_DCCP_CCID3_DEBUG
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700541static 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",
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700546 };
547
548 return ccid3_rx_state_names[state];
549}
550#endif
551
Arnaldo Carvalho de Meloc25a18b2006-03-20 21:58:56 -0800552static void ccid3_hc_rx_set_state(struct sock *sk,
553 enum ccid3_hc_rx_states state)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700554{
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300555 struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200556 enum ccid3_hc_rx_states oldstate = hcrx->state;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700557
558 ccid3_pr_debug("%s(%p) %-8.8s -> %s\n",
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -0300559 dccp_role(sk), sk, ccid3_rx_state_name(oldstate),
560 ccid3_rx_state_name(state));
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700561 WARN_ON(state == oldstate);
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200562 hcrx->state = state;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700563}
564
Arnaldo Carvalho de Melob84a2182007-12-06 13:18:11 -0200565static void ccid3_hc_rx_send_feedback(struct sock *sk,
566 const struct sk_buff *skb,
567 enum ccid3_fback_type fbtype)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700568{
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300569 struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700570 struct dccp_sock *dp = dccp_sk(sk);
Gerrit Renkerd0995e62008-09-04 07:30:19 +0200571 ktime_t now = ktime_get_real();
Arnaldo Carvalho de Melob84a2182007-12-06 13:18:11 -0200572 s64 delta = 0;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700573
Arnaldo Carvalho de Melob84a2182007-12-06 13:18:11 -0200574 switch (fbtype) {
575 case CCID3_FBACK_INITIAL:
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200576 hcrx->x_recv = 0;
577 hcrx->p_inverse = ~0U; /* see RFC 4342, 8.5 */
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700578 break;
Arnaldo Carvalho de Melob84a2182007-12-06 13:18:11 -0200579 case CCID3_FBACK_PARAM_CHANGE:
Gerrit Renkerd20ed952008-09-04 07:30:19 +0200580 if (unlikely(hcrx->state == TFRC_RSTATE_NO_DATA)) {
581 /*
582 * rfc3448bis-06, 6.3.1: First packet(s) lost or marked
583 * FIXME: in rfc3448bis the receiver returns X_recv=0
584 * here as it normally would in the first feedback packet.
585 * However this is not possible yet, since the code still
586 * uses RFC 3448, i.e.
587 * If (p > 0)
588 * Calculate X_calc using the TCP throughput equation.
589 * X = max(min(X_calc, 2*X_recv), s/t_mbi);
590 * would bring X down to s/t_mbi. That is why we return
591 * X_recv according to rfc3448bis-06 for the moment.
592 */
593 u32 rtt = hcrx->rtt ? : DCCP_FALLBACK_RTT, s = hcrx->s;
594
595 if (s == 0) {
596 DCCP_WARN("No sample for s, using fallback\n");
597 s = TCP_MIN_RCVMSS;
598 }
599 hcrx->x_recv = scaled_div32(s, 2 * rtt);
600 break;
601 }
Arnaldo Carvalho de Melob84a2182007-12-06 13:18:11 -0200602 /*
603 * When parameters change (new loss or p > p_prev), we do not
604 * have a reliable estimate for R_m of [RFC 3448, 6.2] and so
605 * need to reuse the previous value of X_recv. However, when
606 * X_recv was 0 (due to early loss), this would kill X down to
607 * s/t_mbi (i.e. one packet in 64 seconds).
608 * To avoid such drastic reduction, we approximate X_recv as
609 * the number of bytes since last feedback.
610 * This is a safe fallback, since X is bounded above by X_calc.
611 */
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200612 if (hcrx->x_recv > 0)
Arnaldo Carvalho de Melob84a2182007-12-06 13:18:11 -0200613 break;
614 /* fall through */
615 case CCID3_FBACK_PERIODIC:
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200616 delta = ktime_us_delta(now, hcrx->tstamp_last_feedback);
Arnaldo Carvalho de Melob84a2182007-12-06 13:18:11 -0200617 if (delta <= 0)
618 DCCP_BUG("delta (%ld) <= 0", (long)delta);
619 else
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200620 hcrx->x_recv = scaled_div32(hcrx->bytes_recv, delta);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700621 break;
Arnaldo Carvalho de Melob84a2182007-12-06 13:18:11 -0200622 default:
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700623 return;
624 }
625
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200626 ccid3_pr_debug("Interval %ldusec, X_recv=%u, 1/p=%u\n",
627 (long)delta, hcrx->x_recv, hcrx->p_inverse);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700628
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200629 hcrx->tstamp_last_feedback = now;
630 hcrx->last_counter = dccp_hdr(skb)->dccph_ccval;
631 hcrx->bytes_recv = 0;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700632
Arnaldo Carvalho de Melo507d37c2005-09-09 02:30:07 -0300633 dp->dccps_hc_rx_insert_options = 1;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700634 dccp_send_ack(sk);
635}
636
Arnaldo Carvalho de Melo2d0817d2006-03-20 22:32:06 -0800637static int ccid3_hc_rx_insert_options(struct sock *sk, struct sk_buff *skb)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700638{
Gerrit Renkerb2e317f2008-09-04 07:30:19 +0200639 const struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
Andrea Bittau60fe62e2006-03-20 19:23:32 -0800640 __be32 x_recv, pinv;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700641
Arnaldo Carvalho de Melo59d203f2005-09-09 20:01:25 -0300642 if (!(sk->sk_state == DCCP_OPEN || sk->sk_state == DCCP_PARTOPEN))
Arnaldo Carvalho de Melo2d0817d2006-03-20 22:32:06 -0800643 return 0;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700644
Arnaldo Carvalho de Melo4fded332005-08-23 21:51:59 -0700645 if (dccp_packet_without_ack(skb))
Arnaldo Carvalho de Melo2d0817d2006-03-20 22:32:06 -0800646 return 0;
647
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200648 x_recv = htonl(hcrx->x_recv);
649 pinv = htonl(hcrx->p_inverse);
Arnaldo Carvalho de Melo2d0817d2006-03-20 22:32:06 -0800650
Gerrit Renker385ac2e2007-12-08 16:26:59 -0200651 if (dccp_insert_option(sk, skb, TFRC_OPT_LOSS_EVENT_RATE,
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200652 &pinv, sizeof(pinv)) ||
Arnaldo Carvalho de Melo2d0817d2006-03-20 22:32:06 -0800653 dccp_insert_option(sk, skb, TFRC_OPT_RECEIVE_RATE,
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200654 &x_recv, sizeof(x_recv)))
Arnaldo Carvalho de Melo2d0817d2006-03-20 22:32:06 -0800655 return -1;
656
657 return 0;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700658}
659
Gerrit Renker954c2db2007-12-12 14:06:14 -0200660/** ccid3_first_li - Implements [RFC 3448, 6.3.1]
661 *
662 * Determine the length of the first loss interval via inverse lookup.
663 * Assume that X_recv can be computed by the throughput equation
664 * s
665 * X_recv = --------
666 * R * fval
667 * Find some p such that f(p) = fval; return 1/p (scaled).
668 */
669static u32 ccid3_first_li(struct sock *sk)
670{
671 struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
672 u32 x_recv, p, delta;
673 u64 fval;
674
Gerrit Renkerd20ed952008-09-04 07:30:19 +0200675 /*
676 * rfc3448bis-06, 6.3.1: First data packet(s) are marked or lost. Set p
677 * to give the equivalent of X_target = s/(2*R). Thus fval = 2 and so p
678 * is about 20.64%. This yields an interval length of 4.84 (rounded up).
679 */
680 if (unlikely(hcrx->state == TFRC_RSTATE_NO_DATA))
681 return 5;
682
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200683 if (hcrx->rtt == 0) {
Gerrit Renker954c2db2007-12-12 14:06:14 -0200684 DCCP_WARN("No RTT estimate available, using fallback RTT\n");
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200685 hcrx->rtt = DCCP_FALLBACK_RTT;
Gerrit Renker954c2db2007-12-12 14:06:14 -0200686 }
687
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200688 delta = ktime_to_us(net_timedelta(hcrx->tstamp_last_feedback));
689 x_recv = scaled_div32(hcrx->bytes_recv, delta);
Gerrit Renker954c2db2007-12-12 14:06:14 -0200690 if (x_recv == 0) { /* would also trigger divide-by-zero */
691 DCCP_WARN("X_recv==0\n");
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200692 if (hcrx->x_recv == 0) {
Gerrit Renker954c2db2007-12-12 14:06:14 -0200693 DCCP_BUG("stored value of X_recv is zero");
694 return ~0U;
695 }
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200696 x_recv = hcrx->x_recv;
Gerrit Renker954c2db2007-12-12 14:06:14 -0200697 }
698
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200699 fval = scaled_div(hcrx->s, hcrx->rtt);
Gerrit Renker954c2db2007-12-12 14:06:14 -0200700 fval = scaled_div32(fval, x_recv);
701 p = tfrc_calc_x_reverse_lookup(fval);
702
703 ccid3_pr_debug("%s(%p), receive rate=%u bytes/s, implied "
704 "loss rate=%u\n", dccp_role(sk), sk, x_recv, p);
705
706 return p == 0 ? ~0U : scaled_div(1, p);
707}
708
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700709static void ccid3_hc_rx_packet_recv(struct sock *sk, struct sk_buff *skb)
710{
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300711 struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
Arnaldo Carvalho de Melob84a2182007-12-06 13:18:11 -0200712 enum ccid3_fback_type do_feedback = CCID3_FBACK_NONE;
Gerrit Renker5b5d0e72008-07-13 11:51:40 +0100713 const u64 ndp = dccp_sk(sk)->dccps_options_received.dccpor_ndp;
Arnaldo Carvalho de Melob84a2182007-12-06 13:18:11 -0200714 const bool is_data_packet = dccp_data_packet(skb);
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -0300715
Gerrit Renkerd20ed952008-09-04 07:30:19 +0200716 /*
717 * Perform loss detection and handle pending losses
718 */
719 if (tfrc_rx_handle_loss(&hcrx->hist, &hcrx->li_hist,
720 skb, ndp, ccid3_first_li, sk)) {
721 do_feedback = CCID3_FBACK_PARAM_CHANGE;
722 goto done_receiving;
723 }
724
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200725 if (unlikely(hcrx->state == TFRC_RSTATE_NO_DATA)) {
Arnaldo Carvalho de Melob84a2182007-12-06 13:18:11 -0200726 if (is_data_packet) {
727 const u32 payload = skb->len - dccp_hdr(skb)->dccph_doff * 4;
728 do_feedback = CCID3_FBACK_INITIAL;
729 ccid3_hc_rx_set_state(sk, TFRC_RSTATE_DATA);
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200730 hcrx->s = payload;
Arnaldo Carvalho de Melob84a2182007-12-06 13:18:11 -0200731 /*
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200732 * Not necessary to update bytes_recv here,
Arnaldo Carvalho de Melob84a2182007-12-06 13:18:11 -0200733 * since X_recv = 0 for the first feedback packet (cf.
734 * RFC 3448, 6.3) -- gerrit
735 */
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700736 }
Arnaldo Carvalho de Melob84a2182007-12-06 13:18:11 -0200737 goto update_records;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700738 }
739
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200740 if (tfrc_rx_hist_duplicate(&hcrx->hist, skb))
Arnaldo Carvalho de Melob84a2182007-12-06 13:18:11 -0200741 return; /* done receiving */
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700742
Arnaldo Carvalho de Melob84a2182007-12-06 13:18:11 -0200743 if (is_data_packet) {
744 const u32 payload = skb->len - dccp_hdr(skb)->dccph_doff * 4;
745 /*
746 * Update moving-average of s and the sum of received payload bytes
747 */
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200748 hcrx->s = tfrc_ewma(hcrx->s, payload, 9);
749 hcrx->bytes_recv += payload;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700750 }
Arnaldo Carvalho de Melob84a2182007-12-06 13:18:11 -0200751
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200752 if (tfrc_rx_hist_loss_pending(&hcrx->hist))
Gerrit Renkerb552c622008-07-13 11:51:40 +0100753 return; /* done receiving */
Arnaldo Carvalho de Melob84a2182007-12-06 13:18:11 -0200754
755 /*
756 * Handle data packets: RTT sampling and monitoring p
757 */
758 if (unlikely(!is_data_packet))
759 goto update_records;
760
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200761 if (!tfrc_lh_is_initialised(&hcrx->li_hist)) {
762 const u32 sample = tfrc_rx_hist_sample_rtt(&hcrx->hist, skb);
Arnaldo Carvalho de Melob84a2182007-12-06 13:18:11 -0200763 /*
764 * Empty loss history: no loss so far, hence p stays 0.
765 * Sample RTT values, since an RTT estimate is required for the
766 * computation of p when the first loss occurs; RFC 3448, 6.3.1.
767 */
768 if (sample != 0)
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200769 hcrx->rtt = tfrc_ewma(hcrx->rtt, sample, 9);
Gerrit Renker954c2db2007-12-12 14:06:14 -0200770
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200771 } else if (tfrc_lh_update_i_mean(&hcrx->li_hist, skb)) {
Gerrit Renker954c2db2007-12-12 14:06:14 -0200772 /*
773 * Step (3) of [RFC 3448, 6.1]: Recompute I_mean and, if I_mean
774 * has decreased (resp. p has increased), send feedback now.
775 */
776 do_feedback = CCID3_FBACK_PARAM_CHANGE;
Arnaldo Carvalho de Melob84a2182007-12-06 13:18:11 -0200777 }
778
779 /*
780 * Check if the periodic once-per-RTT feedback is due; RFC 4342, 10.3
781 */
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200782 if (SUB16(dccp_hdr(skb)->dccph_ccval, hcrx->last_counter) > 3)
Arnaldo Carvalho de Melob84a2182007-12-06 13:18:11 -0200783 do_feedback = CCID3_FBACK_PERIODIC;
784
785update_records:
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200786 tfrc_rx_hist_add_packet(&hcrx->hist, skb, ndp);
Arnaldo Carvalho de Melob84a2182007-12-06 13:18:11 -0200787
Gerrit Renker954c2db2007-12-12 14:06:14 -0200788done_receiving:
Arnaldo Carvalho de Melob84a2182007-12-06 13:18:11 -0200789 if (do_feedback)
790 ccid3_hc_rx_send_feedback(sk, skb, do_feedback);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700791}
792
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800793static int ccid3_hc_rx_init(struct ccid *ccid, struct sock *sk)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700794{
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800795 struct ccid3_hc_rx_sock *hcrx = ccid_priv(ccid);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700796
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200797 hcrx->state = TFRC_RSTATE_NO_DATA;
798 tfrc_lh_init(&hcrx->li_hist);
Gerrit Renker24b8d342008-09-04 07:30:19 +0200799 return tfrc_rx_hist_init(&hcrx->hist, sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700800}
801
802static void ccid3_hc_rx_exit(struct sock *sk)
803{
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300804 struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700805
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200806 tfrc_rx_hist_purge(&hcrx->hist);
807 tfrc_lh_cleanup(&hcrx->li_hist);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700808}
809
Arnaldo Carvalho de Melo2babe1f2005-08-23 21:52:35 -0700810static void ccid3_hc_rx_get_info(struct sock *sk, struct tcp_info *info)
811{
Gerrit Renkerb2e317f2008-09-04 07:30:19 +0200812 info->tcpi_ca_state = ccid3_hc_rx_sk(sk)->state;
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200813 info->tcpi_options |= TCPI_OPT_TIMESTAMPS;
Gerrit Renkerb2e317f2008-09-04 07:30:19 +0200814 info->tcpi_rcv_rtt = ccid3_hc_rx_sk(sk)->rtt;
Arnaldo Carvalho de Melo2babe1f2005-08-23 21:52:35 -0700815}
816
Arnaldo Carvalho de Melo88f964d2005-09-18 00:19:32 -0700817static int ccid3_hc_rx_getsockopt(struct sock *sk, const int optname, int len,
818 u32 __user *optval, int __user *optlen)
819{
Gerrit Renkerb2e317f2008-09-04 07:30:19 +0200820 const struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
Gerrit Renker8e138e72007-12-17 10:07:44 -0200821 struct tfrc_rx_info rx_info;
Arnaldo Carvalho de Melo88f964d2005-09-18 00:19:32 -0700822 const void *val;
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900823
Arnaldo Carvalho de Melo88f964d2005-09-18 00:19:32 -0700824 switch (optname) {
825 case DCCP_SOCKOPT_CCID_RX_INFO:
Gerrit Renker8e138e72007-12-17 10:07:44 -0200826 if (len < sizeof(rx_info))
Arnaldo Carvalho de Melo88f964d2005-09-18 00:19:32 -0700827 return -EINVAL;
Gerrit Renker842d1ef2008-09-04 07:30:19 +0200828 rx_info.tfrcrx_x_recv = hcrx->x_recv;
829 rx_info.tfrcrx_rtt = hcrx->rtt;
Gerrit Renker535c55d2008-09-04 07:30:19 +0200830 rx_info.tfrcrx_p = tfrc_invert_loss_event_rate(hcrx->p_inverse);
Gerrit Renker8e138e72007-12-17 10:07:44 -0200831 len = sizeof(rx_info);
832 val = &rx_info;
Arnaldo Carvalho de Melo88f964d2005-09-18 00:19:32 -0700833 break;
834 default:
835 return -ENOPROTOOPT;
836 }
837
838 if (put_user(len, optlen) || copy_to_user(optval, val, len))
839 return -EFAULT;
840
841 return 0;
842}
843
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800844static struct ccid_operations ccid3 = {
Ian McDonald3dd9a7c2006-09-22 14:26:44 +1200845 .ccid_id = DCCPC_CCID3,
Gerrit Renker84a97b02007-12-13 23:33:25 -0200846 .ccid_name = "TCP-Friendly Rate Control",
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700847 .ccid_owner = THIS_MODULE,
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800848 .ccid_hc_tx_obj_size = sizeof(struct ccid3_hc_tx_sock),
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700849 .ccid_hc_tx_init = ccid3_hc_tx_init,
850 .ccid_hc_tx_exit = ccid3_hc_tx_exit,
851 .ccid_hc_tx_send_packet = ccid3_hc_tx_send_packet,
852 .ccid_hc_tx_packet_sent = ccid3_hc_tx_packet_sent,
853 .ccid_hc_tx_packet_recv = ccid3_hc_tx_packet_recv,
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700854 .ccid_hc_tx_parse_options = ccid3_hc_tx_parse_options,
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800855 .ccid_hc_rx_obj_size = sizeof(struct ccid3_hc_rx_sock),
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700856 .ccid_hc_rx_init = ccid3_hc_rx_init,
857 .ccid_hc_rx_exit = ccid3_hc_rx_exit,
858 .ccid_hc_rx_insert_options = ccid3_hc_rx_insert_options,
859 .ccid_hc_rx_packet_recv = ccid3_hc_rx_packet_recv,
Arnaldo Carvalho de Melo2babe1f2005-08-23 21:52:35 -0700860 .ccid_hc_rx_get_info = ccid3_hc_rx_get_info,
861 .ccid_hc_tx_get_info = ccid3_hc_tx_get_info,
Arnaldo Carvalho de Melo88f964d2005-09-18 00:19:32 -0700862 .ccid_hc_rx_getsockopt = ccid3_hc_rx_getsockopt,
863 .ccid_hc_tx_getsockopt = ccid3_hc_tx_getsockopt,
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700864};
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200865
Gerrit Renker56724aa2006-11-20 18:28:09 -0200866#ifdef CONFIG_IP_DCCP_CCID3_DEBUG
Gerrit Renker43264992008-08-23 13:28:27 +0200867module_param(ccid3_debug, bool, 0644);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700868MODULE_PARM_DESC(ccid3_debug, "Enable debug messages");
Gerrit Renker56724aa2006-11-20 18:28:09 -0200869#endif
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700870
871static __init int ccid3_module_init(void)
872{
Gerrit Renkerf76fd322008-09-04 07:30:19 +0200873 struct timespec tp;
874
875 /*
876 * Without a fine-grained clock resolution, RTTs/X_recv are not sampled
877 * correctly and feedback is sent either too early or too late.
878 */
879 hrtimer_get_res(CLOCK_MONOTONIC, &tp);
880 if (tp.tv_sec || tp.tv_nsec > DCCP_TIME_RESOLUTION * NSEC_PER_USEC) {
881 printk(KERN_ERR "%s: Timer too coarse (%ld usec), need %u-usec"
882 " resolution - check your clocksource.\n", __func__,
883 tp.tv_nsec/NSEC_PER_USEC, DCCP_TIME_RESOLUTION);
884 return -ESOCKTNOSUPPORT;
885 }
Arnaldo Carvalho de Melo34a9e7e2007-12-06 12:28:13 -0200886 return ccid_register(&ccid3);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700887}
888module_init(ccid3_module_init);
889
890static __exit void ccid3_module_exit(void)
891{
892 ccid_unregister(&ccid3);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700893}
894module_exit(ccid3_module_exit);
895
Ian McDonalde6bccd32006-08-26 19:01:30 -0700896MODULE_AUTHOR("Ian McDonald <ian.mcdonald@jandi.co.nz>, "
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -0300897 "Arnaldo Carvalho de Melo <acme@ghostprotocols.net>");
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700898MODULE_DESCRIPTION("DCCP TFRC CCID3 CCID");
899MODULE_LICENSE("GPL");
900MODULE_ALIAS("net-dccp-ccid-3");