blob: b21d8110298c6cdf023e567192d5ec78bea00eb5 [file] [log] [blame]
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001/*
2 * net/dccp/ccids/ccid3.c
3 *
Ian McDonaldb2f41ff2007-05-28 12:23:29 -03004 * Copyright (c) 2005-7 The University of Waikato, Hamilton, New Zealand.
5 * Copyright (c) 2005-7 Ian McDonald <ian.mcdonald@jandi.co.nz>
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07006 *
7 * An implementation of the DCCP protocol
8 *
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/
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -070011 *
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
15 *
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>.
19 *
20 * Copyright (c) 2005 Arnaldo Carvalho de Melo <acme@conectiva.com.br>
21 *
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.
26 *
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.
31 *
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.
35 */
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -070036#include "../ccid.h"
37#include "../dccp.h"
Arnaldo Carvalho de Melo4524b252005-08-27 23:18:26 -030038#include "lib/packet_history.h"
Arnaldo Carvalho de Meloae6706f2005-08-27 23:03:09 -030039#include "lib/loss_interval.h"
Arnaldo Carvalho de Melo36729c12005-08-28 00:47:15 -030040#include "lib/tfrc.h"
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -070041#include "ccid3.h"
42
Gerrit Renker56724aa2006-11-20 18:28:09 -020043#ifdef CONFIG_IP_DCCP_CCID3_DEBUG
44static int ccid3_debug;
45#define ccid3_pr_debug(format, a...) DCCP_PR_DEBUG(ccid3_debug, format, ##a)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -070046#else
47#define ccid3_pr_debug(format, a...)
48#endif
49
Arnaldo Carvalho de Meloa1d3a352005-08-13 22:42:25 -030050static struct dccp_tx_hist *ccid3_tx_hist;
51static struct dccp_rx_hist *ccid3_rx_hist;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -070052
Gerrit Renker9bf17472007-03-20 13:11:24 -030053/*
54 * Transmitter Half-Connection Routines
55 */
Gerrit Renker56724aa2006-11-20 18:28:09 -020056#ifdef CONFIG_IP_DCCP_CCID3_DEBUG
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -070057static const char *ccid3_tx_state_name(enum ccid3_hc_tx_states state)
58{
59 static char *ccid3_state_names[] = {
60 [TFRC_SSTATE_NO_SENT] = "NO_SENT",
61 [TFRC_SSTATE_NO_FBACK] = "NO_FBACK",
62 [TFRC_SSTATE_FBACK] = "FBACK",
63 [TFRC_SSTATE_TERM] = "TERM",
64 };
65
66 return ccid3_state_names[state];
67}
68#endif
69
Arnaldo Carvalho de Meloc25a18b2006-03-20 21:58:56 -080070static void ccid3_hc_tx_set_state(struct sock *sk,
71 enum ccid3_hc_tx_states state)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -070072{
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -030073 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -070074 enum ccid3_hc_tx_states oldstate = hctx->ccid3hctx_state;
75
76 ccid3_pr_debug("%s(%p) %-8.8s -> %s\n",
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -030077 dccp_role(sk), sk, ccid3_tx_state_name(oldstate),
78 ccid3_tx_state_name(state));
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -070079 WARN_ON(state == oldstate);
80 hctx->ccid3hctx_state = state;
81}
82
Gerrit Renker17893bc2006-11-27 20:31:33 -020083/*
Gerrit Renkera21f9f92007-03-20 15:12:10 -030084 * Compute the initial sending rate X_init according to RFC 3390:
85 * w_init = min(4 * MSS, max(2 * MSS, 4380 bytes))
86 * X_init = w_init / RTT
87 * For consistency with other parts of the code, X_init is scaled by 2^6.
88 */
89static inline u64 rfc3390_initial_rate(struct sock *sk)
90{
91 const struct dccp_sock *dp = dccp_sk(sk);
92 const __u32 w_init = min(4 * dp->dccps_mss_cache,
93 max(2 * dp->dccps_mss_cache, 4380U));
94
95 return scaled_div(w_init << 6, ccid3_hc_tx_sk(sk)->ccid3hctx_rtt);
96}
97
98/*
Gerrit Renker1266ade2007-03-20 14:56:11 -030099 * Recalculate t_ipi and delta (should be called whenever X changes)
Gerrit Renker17893bc2006-11-27 20:31:33 -0200100 */
Gerrit Renker1266ade2007-03-20 14:56:11 -0300101static inline void ccid3_update_send_interval(struct ccid3_hc_tx_sock *hctx)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700102{
Gerrit Renker1a21e492006-12-10 00:02:12 -0200103 /* Calculate new t_ipi = s / X_inst (X_inst is in 64 * bytes/second) */
Gerrit Renkerb2449fd2007-04-20 13:02:55 -0700104 hctx->ccid3hctx_t_ipi = scaled_div32(((u64)hctx->ccid3hctx_s) << 6,
105 hctx->ccid3hctx_x);
Gerrit Renker17893bc2006-11-27 20:31:33 -0200106
Gerrit Renker17893bc2006-11-27 20:31:33 -0200107 /* Calculate new delta by delta = min(t_ipi / 2, t_gran / 2) */
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -0300108 hctx->ccid3hctx_delta = min_t(u32, hctx->ccid3hctx_t_ipi / 2,
109 TFRC_OPSYS_HALF_TIME_GRAN);
Ian McDonald8699be72007-03-20 14:49:20 -0300110
Gerrit Renker1761f7d2007-03-20 15:04:30 -0300111 ccid3_pr_debug("t_ipi=%u, delta=%u, s=%u, X=%u\n",
Ian McDonald8699be72007-03-20 14:49:20 -0300112 hctx->ccid3hctx_t_ipi, hctx->ccid3hctx_delta,
Gerrit Renker1761f7d2007-03-20 15:04:30 -0300113 hctx->ccid3hctx_s, (unsigned)(hctx->ccid3hctx_x >> 6));
Ian McDonald8699be72007-03-20 14:49:20 -0300114
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700115}
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700116/*
117 * Update X by
118 * If (p > 0)
Gerrit Renker5c3fbb62006-12-03 14:50:56 -0200119 * X_calc = calcX(s, R, p);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700120 * X = max(min(X_calc, 2 * X_recv), s / t_mbi);
121 * Else
122 * If (now - tld >= R)
123 * X = max(min(2 * X, 2 * X_recv), s / R);
124 * tld = now;
Gerrit Renker5c3fbb62006-12-03 14:50:56 -0200125 *
Gerrit Renker1a21e492006-12-10 00:02:12 -0200126 * Note: X and X_recv are both stored in units of 64 * bytes/second, to support
127 * fine-grained resolution of sending rates. This requires scaling by 2^6
128 * throughout the code. Only X_calc is unscaled (in bytes/second).
129 *
Gerrit Renker1a21e492006-12-10 00:02:12 -0200130 */
Arnaldo Carvalho de Meloac198ea2007-08-19 17:14:27 -0700131static void ccid3_hc_tx_update_x(struct sock *sk)
Gerrit Renkera79ef762006-11-28 19:51:42 -0200132
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700133{
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300134 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
Gerrit Renker0c150ef2007-03-20 15:19:07 -0300135 __u64 min_rate = 2 * hctx->ccid3hctx_x_recv;
Gerrit Renker1a21e492006-12-10 00:02:12 -0200136 const __u64 old_x = hctx->ccid3hctx_x;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700137
Gerrit Renker0c150ef2007-03-20 15:19:07 -0300138 /*
139 * Handle IDLE periods: do not reduce below RFC3390 initial sending rate
140 * when idling [RFC 4342, 5.1]. See also draft-ietf-dccp-rfc3448bis.
141 * For consistency with X and X_recv, min_rate is also scaled by 2^6.
142 */
143 if (unlikely(hctx->ccid3hctx_idle)) {
144 min_rate = rfc3390_initial_rate(sk);
145 min_rate = max(min_rate, 2 * hctx->ccid3hctx_x_recv);
146 }
147
Gerrit Renker44158302006-12-03 14:53:07 -0200148 if (hctx->ccid3hctx_p > 0) {
Gerrit Renker1a21e492006-12-10 00:02:12 -0200149
Gerrit Renker9e8efc82006-12-10 00:24:57 -0200150 hctx->ccid3hctx_x = min(((__u64)hctx->ccid3hctx_x_calc) << 6,
Gerrit Renker0c150ef2007-03-20 15:19:07 -0300151 min_rate);
Gerrit Renker9e8efc82006-12-10 00:24:57 -0200152 hctx->ccid3hctx_x = max(hctx->ccid3hctx_x,
153 (((__u64)hctx->ccid3hctx_s) << 6) /
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200154 TFRC_T_MBI);
Arnaldo Carvalho de Melob6ee3d42005-08-27 18:18:18 -0300155
Arnaldo Carvalho de Meloac198ea2007-08-19 17:14:27 -0700156 } else {
Arnaldo Carvalho de Melo23f062a2007-08-19 17:14:52 -0700157 const ktime_t now = ktime_get_real();
Gerrit Renker1a21e492006-12-10 00:02:12 -0200158
Arnaldo Carvalho de Melo23f062a2007-08-19 17:14:52 -0700159 if ((ktime_us_delta(now, hctx->ccid3hctx_t_ld) -
160 (s64)hctx->ccid3hctx_rtt) >= 0) {
Arnaldo Carvalho de Meloac198ea2007-08-19 17:14:27 -0700161
162 hctx->ccid3hctx_x =
163 max(min(2 * hctx->ccid3hctx_x, min_rate),
164 scaled_div(((__u64)hctx->ccid3hctx_s) << 6,
165 hctx->ccid3hctx_rtt));
166 hctx->ccid3hctx_t_ld = now;
167 }
Gerrit Renkerff586292006-12-10 00:00:14 -0200168 }
Gerrit Renkera79ef762006-11-28 19:51:42 -0200169
Ian McDonald8699be72007-03-20 14:49:20 -0300170 if (hctx->ccid3hctx_x != old_x) {
Gerrit Renker1761f7d2007-03-20 15:04:30 -0300171 ccid3_pr_debug("X_prev=%u, X_now=%u, X_calc=%u, "
172 "X_recv=%u\n", (unsigned)(old_x >> 6),
173 (unsigned)(hctx->ccid3hctx_x >> 6),
174 hctx->ccid3hctx_x_calc,
175 (unsigned)(hctx->ccid3hctx_x_recv >> 6));
Ian McDonald8699be72007-03-20 14:49:20 -0300176
Gerrit Renker1266ade2007-03-20 14:56:11 -0300177 ccid3_update_send_interval(hctx);
Ian McDonald8699be72007-03-20 14:49:20 -0300178 }
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700179}
180
Gerrit Renker78ad7132006-11-28 19:22:33 -0200181/*
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200182 * Track the mean packet size `s' (cf. RFC 4342, 5.3 and RFC 3448, 4.1)
183 * @len: DCCP packet payload size in bytes
Gerrit Renker78ad7132006-11-28 19:22:33 -0200184 */
185static inline void ccid3_hc_tx_update_s(struct ccid3_hc_tx_sock *hctx, int len)
186{
Gerrit Renker1266ade2007-03-20 14:56:11 -0300187 const u16 old_s = hctx->ccid3hctx_s;
188
189 hctx->ccid3hctx_s = old_s == 0 ? len : (9 * old_s + len) / 10;
190
191 if (hctx->ccid3hctx_s != old_s)
192 ccid3_update_send_interval(hctx);
Gerrit Renker78ad7132006-11-28 19:22:33 -0200193}
194
Gerrit Renker9f8681d2006-12-10 00:07:37 -0200195/*
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200196 * Update Window Counter using the algorithm from [RFC 4342, 8.1].
197 * The algorithm is not applicable if RTT < 4 microseconds.
Gerrit Renker9f8681d2006-12-10 00:07:37 -0200198 */
199static inline void ccid3_hc_tx_update_win_count(struct ccid3_hc_tx_sock *hctx,
Gerrit Renker8132da42007-06-16 13:34:02 -0300200 ktime_t now)
Gerrit Renker9f8681d2006-12-10 00:07:37 -0200201{
Gerrit Renker9f8681d2006-12-10 00:07:37 -0200202 u32 quarter_rtts;
203
204 if (unlikely(hctx->ccid3hctx_rtt < 4)) /* avoid divide-by-zero */
205 return;
206
Gerrit Renker8132da42007-06-16 13:34:02 -0300207 quarter_rtts = ktime_us_delta(now, hctx->ccid3hctx_t_last_win_count);
208 quarter_rtts /= hctx->ccid3hctx_rtt / 4;
Gerrit Renker9f8681d2006-12-10 00:07:37 -0200209
210 if (quarter_rtts > 0) {
Gerrit Renker8132da42007-06-16 13:34:02 -0300211 hctx->ccid3hctx_t_last_win_count = now;
Gerrit Renker9f8681d2006-12-10 00:07:37 -0200212 hctx->ccid3hctx_last_win_count += min_t(u32, quarter_rtts, 5);
213 hctx->ccid3hctx_last_win_count &= 0xF; /* mod 16 */
Gerrit Renker9f8681d2006-12-10 00:07:37 -0200214 }
215}
216
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700217static void ccid3_hc_tx_no_feedback_timer(unsigned long data)
218{
219 struct sock *sk = (struct sock *)data;
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300220 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
Gerrit Renker2a1fda62006-11-28 18:34:34 -0200221 unsigned long t_nfb = USEC_PER_SEC / 5;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700222
223 bh_lock_sock(sk);
224 if (sock_owned_by_user(sk)) {
225 /* Try again later. */
226 /* XXX: set some sensible MIB */
Gerrit Renker48e03ee2006-11-27 20:29:27 -0200227 goto restart_timer;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700228 }
229
Gerrit Renkera9672412006-12-10 00:14:12 -0200230 ccid3_pr_debug("%s(%p, state=%s) - entry \n", dccp_role(sk), sk,
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700231 ccid3_tx_state_name(hctx->ccid3hctx_state));
Gerrit Renkera9672412006-12-10 00:14:12 -0200232
Gerrit Renker0c150ef2007-03-20 15:19:07 -0300233 hctx->ccid3hctx_idle = 1;
234
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700235 switch (hctx->ccid3hctx_state) {
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700236 case TFRC_SSTATE_NO_FBACK:
Gerrit Renkera79ef762006-11-28 19:51:42 -0200237 /* RFC 3448, 4.4: Halve send rate directly */
Gerrit Renker9e8efc82006-12-10 00:24:57 -0200238 hctx->ccid3hctx_x = max(hctx->ccid3hctx_x / 2,
239 (((__u64)hctx->ccid3hctx_s) << 6) /
240 TFRC_T_MBI);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700241
Gerrit Renkera9672412006-12-10 00:14:12 -0200242 ccid3_pr_debug("%s(%p, state=%s), updated tx rate to %u "
243 "bytes/s\n", dccp_role(sk), sk,
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -0300244 ccid3_tx_state_name(hctx->ccid3hctx_state),
Gerrit Renker1a21e492006-12-10 00:02:12 -0200245 (unsigned)(hctx->ccid3hctx_x >> 6));
Gerrit Renker48e03ee2006-11-27 20:29:27 -0200246 /* The value of R is still undefined and so we can not recompute
247 * the timout value. Keep initial value as per [RFC 4342, 5]. */
Gerrit Renker2a1fda62006-11-28 18:34:34 -0200248 t_nfb = TFRC_INITIAL_TIMEOUT;
Gerrit Renker1266ade2007-03-20 14:56:11 -0300249 ccid3_update_send_interval(hctx);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700250 break;
251 case TFRC_SSTATE_FBACK:
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -0300252 /*
Gerrit Renker0c150ef2007-03-20 15:19:07 -0300253 * Modify the cached value of X_recv [RFC 3448, 4.4]
254 *
255 * If (p == 0 || X_calc > 2 * X_recv)
256 * X_recv = max(X_recv / 2, s / (2 * t_mbi));
257 * Else
258 * X_recv = X_calc / 4;
259 *
260 * Note that X_recv is scaled by 2^6 while X_calc is not
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -0300261 */
Gerrit Renker0c150ef2007-03-20 15:19:07 -0300262 BUG_ON(hctx->ccid3hctx_p && !hctx->ccid3hctx_x_calc);
Gerrit Renkera79ef762006-11-28 19:51:42 -0200263
Gerrit Renker0c150ef2007-03-20 15:19:07 -0300264 if (hctx->ccid3hctx_p == 0 ||
265 (hctx->ccid3hctx_x_calc > (hctx->ccid3hctx_x_recv >> 5))) {
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700266
Gerrit Renker0c150ef2007-03-20 15:19:07 -0300267 hctx->ccid3hctx_x_recv =
268 max(hctx->ccid3hctx_x_recv / 2,
269 (((__u64)hctx->ccid3hctx_s) << 6) /
270 (2 * TFRC_T_MBI));
Gerrit Renker0c150ef2007-03-20 15:19:07 -0300271 } else {
272 hctx->ccid3hctx_x_recv = hctx->ccid3hctx_x_calc;
273 hctx->ccid3hctx_x_recv <<= 4;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700274 }
Gerrit Renker0c150ef2007-03-20 15:19:07 -0300275 /* Now recalculate X [RFC 3448, 4.3, step (4)] */
Arnaldo Carvalho de Meloac198ea2007-08-19 17:14:27 -0700276 ccid3_hc_tx_update_x(sk);
Arnaldo Carvalho de Melo6b5e6332005-08-27 20:11:28 -0300277 /*
278 * Schedule no feedback timer to expire in
Gerrit Renker8a508ac2006-12-03 14:50:23 -0200279 * max(t_RTO, 2 * s/X) = max(t_RTO, 2 * t_ipi)
280 * See comments in packet_recv() regarding the value of t_RTO.
Arnaldo Carvalho de Melo6b5e6332005-08-27 20:11:28 -0300281 */
Gerrit Renker8a508ac2006-12-03 14:50:23 -0200282 t_nfb = max(hctx->ccid3hctx_t_rto, 2 * hctx->ccid3hctx_t_ipi);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700283 break;
Gerrit Renker59348b12006-11-20 18:39:23 -0200284 case TFRC_SSTATE_NO_SENT:
Gerrit Renkera9672412006-12-10 00:14:12 -0200285 DCCP_BUG("%s(%p) - Illegal state NO_SENT", dccp_role(sk), sk);
Gerrit Renker59348b12006-11-20 18:39:23 -0200286 /* fall through */
287 case TFRC_SSTATE_TERM:
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700288 goto out;
289 }
290
Gerrit Renker48e03ee2006-11-27 20:29:27 -0200291restart_timer:
292 sk_reset_timer(sk, &hctx->ccid3hctx_no_feedback_timer,
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900293 jiffies + usecs_to_jiffies(t_nfb));
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700294out:
295 bh_unlock_sock(sk);
296 sock_put(sk);
297}
298
Gerrit Renker7da7f452006-11-27 12:26:03 -0200299/*
300 * returns
301 * > 0: delay (in msecs) that should pass before actually sending
302 * = 0: can send immediately
303 * < 0: error condition; do not send packet
304 */
Gerrit Renker6b57c932006-11-28 19:55:06 -0200305static int ccid3_hc_tx_send_packet(struct sock *sk, struct sk_buff *skb)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700306{
307 struct dccp_sock *dp = dccp_sk(sk);
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300308 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
Gerrit Renker8132da42007-06-16 13:34:02 -0300309 ktime_t now = ktime_get_real();
310 s64 delay;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700311
Gerrit Renker59348b12006-11-20 18:39:23 -0200312 BUG_ON(hctx == NULL);
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -0300313
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700314 /*
Gerrit Renkerda335ba2006-11-27 12:26:57 -0200315 * This function is called only for Data and DataAck packets. Sending
316 * zero-sized Data(Ack)s is theoretically possible, but for congestion
317 * control this case is pathological - ignore it.
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700318 */
Gerrit Renker6b57c932006-11-28 19:55:06 -0200319 if (unlikely(skb->len == 0))
Gerrit Renkerda335ba2006-11-27 12:26:57 -0200320 return -EBADMSG;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700321
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700322 switch (hctx->ccid3hctx_state) {
323 case TFRC_SSTATE_NO_SENT:
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -0300324 sk_reset_timer(sk, &hctx->ccid3hctx_no_feedback_timer,
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200325 (jiffies +
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900326 usecs_to_jiffies(TFRC_INITIAL_TIMEOUT)));
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700327 hctx->ccid3hctx_last_win_count = 0;
328 hctx->ccid3hctx_t_last_win_count = now;
Gerrit Renker90feeb92006-11-27 12:13:38 -0200329
330 /* Set t_0 for initial packet */
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700331 hctx->ccid3hctx_t_nom = now;
Gerrit Renker30833ff2007-03-20 15:31:56 -0300332
333 hctx->ccid3hctx_s = skb->len;
334
335 /*
336 * Use initial RTT sample when available: recommended by erratum
337 * to RFC 4342. This implements the initialisation procedure of
338 * draft rfc3448bis, section 4.2. Remember, X is scaled by 2^6.
339 */
340 if (dp->dccps_syn_rtt) {
341 ccid3_pr_debug("SYN RTT = %uus\n", dp->dccps_syn_rtt);
342 hctx->ccid3hctx_rtt = dp->dccps_syn_rtt;
343 hctx->ccid3hctx_x = rfc3390_initial_rate(sk);
Arnaldo Carvalho de Melo23f062a2007-08-19 17:14:52 -0700344 hctx->ccid3hctx_t_ld = now;
Gerrit Renker30833ff2007-03-20 15:31:56 -0300345 } else {
346 /* Sender does not have RTT sample: X = MSS/second */
347 hctx->ccid3hctx_x = dp->dccps_mss_cache;
348 hctx->ccid3hctx_x <<= 6;
349 }
350 ccid3_update_send_interval(hctx);
351
352 ccid3_hc_tx_set_state(sk, TFRC_SSTATE_NO_FBACK);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700353 break;
354 case TFRC_SSTATE_NO_FBACK:
355 case TFRC_SSTATE_FBACK:
Gerrit Renker8132da42007-06-16 13:34:02 -0300356 delay = ktime_us_delta(hctx->ccid3hctx_t_nom, now);
Ian McDonald8699be72007-03-20 14:49:20 -0300357 ccid3_pr_debug("delay=%ld\n", (long)delay);
Gerrit Renker91cf5a12006-11-27 12:25:10 -0200358 /*
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200359 * Scheduling of packet transmissions [RFC 3448, 4.6]
Gerrit Renker91cf5a12006-11-27 12:25:10 -0200360 *
361 * if (t_now > t_nom - delta)
362 * // send the packet now
363 * else
364 * // send the packet in (t_nom - t_now) milliseconds.
365 */
Gerrit Renker49d66a72007-06-16 13:48:50 -0300366 if (delay - (s64)hctx->ccid3hctx_delta >= 1000)
Gerrit Renker8132da42007-06-16 13:34:02 -0300367 return (u32)delay / 1000L;
Gerrit Renker9f8681d2006-12-10 00:07:37 -0200368
Gerrit Renker8132da42007-06-16 13:34:02 -0300369 ccid3_hc_tx_update_win_count(hctx, now);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700370 break;
Gerrit Renker59348b12006-11-20 18:39:23 -0200371 case TFRC_SSTATE_TERM:
Gerrit Renkera9672412006-12-10 00:14:12 -0200372 DCCP_BUG("%s(%p) - Illegal state TERM", dccp_role(sk), sk);
Gerrit Renker7da7f452006-11-27 12:26:03 -0200373 return -EINVAL;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700374 }
375
Gerrit Renker7da7f452006-11-27 12:26:03 -0200376 /* prepare to send now (add options etc.) */
377 dp->dccps_hc_tx_insert_options = 1;
Gerrit Renkere312d102006-12-10 00:08:09 -0200378 DCCP_SKB_CB(skb)->dccpd_ccval = hctx->ccid3hctx_last_win_count;
Gerrit Renker0c150ef2007-03-20 15:19:07 -0300379 hctx->ccid3hctx_idle = 0;
Gerrit Renkere312d102006-12-10 00:08:09 -0200380
381 /* set the nominal send time for the next following packet */
Gerrit Renker8132da42007-06-16 13:34:02 -0300382 hctx->ccid3hctx_t_nom = ktime_add_us(hctx->ccid3hctx_t_nom,
383 hctx->ccid3hctx_t_ipi);
Gerrit Renker7da7f452006-11-27 12:26:03 -0200384 return 0;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700385}
386
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200387static void ccid3_hc_tx_packet_sent(struct sock *sk, int more,
388 unsigned int len)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700389{
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300390 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
Gerrit Renker6b57c932006-11-28 19:55:06 -0200391 struct dccp_tx_hist_entry *packet;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700392
Gerrit Renker59348b12006-11-20 18:39:23 -0200393 BUG_ON(hctx == NULL);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700394
Gerrit Renker6b57c932006-11-28 19:55:06 -0200395 ccid3_hc_tx_update_s(hctx, len);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700396
Gerrit Renkerc5a1ae92006-12-10 00:09:21 -0200397 packet = dccp_tx_hist_entry_new(ccid3_tx_hist, GFP_ATOMIC);
Gerrit Renker6b57c932006-11-28 19:55:06 -0200398 if (unlikely(packet == NULL)) {
Gerrit Renkerc5a1ae92006-12-10 00:09:21 -0200399 DCCP_CRIT("packet history - out of memory!");
Gerrit Renker6b57c932006-11-28 19:55:06 -0200400 return;
401 }
Gerrit Renkerc5a1ae92006-12-10 00:09:21 -0200402 dccp_tx_hist_add_entry(&hctx->ccid3hctx_hist, packet);
403
Arnaldo Carvalho de Melo668348a2007-08-19 17:17:02 -0700404 packet->dccphtx_tstamp = ktime_to_timeval(ktime_get_real());
Gerrit Renkerc5a1ae92006-12-10 00:09:21 -0200405 packet->dccphtx_seqno = dccp_sk(sk)->dccps_gss;
406 packet->dccphtx_rtt = hctx->ccid3hctx_rtt;
407 packet->dccphtx_sent = 1;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700408}
409
410static void ccid3_hc_tx_packet_recv(struct sock *sk, struct sk_buff *skb)
411{
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300412 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700413 struct ccid3_options_received *opt_recv;
Arnaldo Carvalho de Melo8c60f3f2005-08-10 12:59:38 -0300414 struct dccp_tx_hist_entry *packet;
Arnaldo Carvalho de Melo9823b7b2007-08-19 17:16:35 -0700415 ktime_t now, t_hist;
Gerrit Renker2a1fda62006-11-28 18:34:34 -0200416 unsigned long t_nfb;
Gerrit Renker7dfee1a2007-03-20 15:24:37 -0300417 u32 pinv, r_sample;
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -0300418
Gerrit Renker59348b12006-11-20 18:39:23 -0200419 BUG_ON(hctx == NULL);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700420
421 /* we are only interested in ACKs */
422 if (!(DCCP_SKB_CB(skb)->dccpd_type == DCCP_PKT_ACK ||
423 DCCP_SKB_CB(skb)->dccpd_type == DCCP_PKT_DATAACK))
424 return;
425
426 opt_recv = &hctx->ccid3hctx_options_received;
427
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700428 switch (hctx->ccid3hctx_state) {
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700429 case TFRC_SSTATE_NO_FBACK:
430 case TFRC_SSTATE_FBACK:
Gerrit Renker5c3fbb62006-12-03 14:50:56 -0200431 /* get packet from history to look up t_recvdata */
Arnaldo Carvalho de Melo8c60f3f2005-08-10 12:59:38 -0300432 packet = dccp_tx_hist_find_entry(&hctx->ccid3hctx_hist,
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200433 DCCP_SKB_CB(skb)->dccpd_ack_seq);
Arnaldo Carvalho de Melo59d203f2005-09-09 20:01:25 -0300434 if (unlikely(packet == NULL)) {
Gerrit Renker5c3fbb62006-12-03 14:50:56 -0200435 DCCP_WARN("%s(%p), seqno %llu(%s) doesn't exist "
Gerrit Renker59348b12006-11-20 18:39:23 -0200436 "in history!\n", dccp_role(sk), sk,
Arnaldo Carvalho de Melo59d203f2005-09-09 20:01:25 -0300437 (unsigned long long)DCCP_SKB_CB(skb)->dccpd_ack_seq,
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200438 dccp_packet_name(DCCP_SKB_CB(skb)->dccpd_type));
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700439 return;
440 }
441
Gerrit Renker1a21e492006-12-10 00:02:12 -0200442 /* Update receive rate in units of 64 * bytes/second */
Gerrit Renker9e8efc82006-12-10 00:24:57 -0200443 hctx->ccid3hctx_x_recv = opt_recv->ccid3or_receive_rate;
444 hctx->ccid3hctx_x_recv <<= 6;
Gerrit Renker5c3fbb62006-12-03 14:50:56 -0200445
446 /* Update loss event rate */
447 pinv = opt_recv->ccid3or_loss_event_rate;
Gerrit Renker45393a62006-12-09 23:59:14 -0200448 if (pinv == ~0U || pinv == 0) /* see RFC 4342, 8.5 */
Gerrit Renker5c3fbb62006-12-03 14:50:56 -0200449 hctx->ccid3hctx_p = 0;
Gerrit Renker45393a62006-12-09 23:59:14 -0200450 else /* can not exceed 100% */
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200451 hctx->ccid3hctx_p = 1000000 / pinv;
Gerrit Renker5c3fbb62006-12-03 14:50:56 -0200452
Arnaldo Carvalho de Melo9823b7b2007-08-19 17:16:35 -0700453 now = ktime_get_real();
454 t_hist = timeval_to_ktime(packet->dccphtx_tstamp);
Gerrit Renker5c3fbb62006-12-03 14:50:56 -0200455 /*
456 * Calculate new round trip sample as per [RFC 3448, 4.3] by
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200457 * R_sample = (now - t_recvdata) - t_elapsed
Gerrit Renker5c3fbb62006-12-03 14:50:56 -0200458 */
Arnaldo Carvalho de Melo9823b7b2007-08-19 17:16:35 -0700459 r_sample = dccp_sample_rtt(sk, now, &t_hist);
Gerrit Renker5c3fbb62006-12-03 14:50:56 -0200460
Gerrit Renker7dfee1a2007-03-20 15:24:37 -0300461 /*
462 * Update RTT estimate by
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700463 * If (No feedback recv)
464 * R = R_sample;
465 * Else
466 * R = q * R + (1 - q) * R_sample;
467 *
468 * q is a constant, RFC 3448 recomments 0.9
469 */
470 if (hctx->ccid3hctx_state == TFRC_SSTATE_NO_FBACK) {
Gerrit Renker1a21e492006-12-10 00:02:12 -0200471 /*
472 * Larger Initial Windows [RFC 4342, sec. 5]
Gerrit Renker1a21e492006-12-10 00:02:12 -0200473 */
Gerrit Renkera79ef762006-11-28 19:51:42 -0200474 hctx->ccid3hctx_rtt = r_sample;
Gerrit Renkera21f9f92007-03-20 15:12:10 -0300475 hctx->ccid3hctx_x = rfc3390_initial_rate(sk);
Arnaldo Carvalho de Melo9823b7b2007-08-19 17:16:35 -0700476 hctx->ccid3hctx_t_ld = now;
Gerrit Renkera79ef762006-11-28 19:51:42 -0200477
Gerrit Renker1266ade2007-03-20 14:56:11 -0300478 ccid3_update_send_interval(hctx);
Gerrit Renker5c3fbb62006-12-03 14:50:56 -0200479
Gerrit Renkera21f9f92007-03-20 15:12:10 -0300480 ccid3_pr_debug("%s(%p), s=%u, MSS=%u, "
Gerrit Renker7dfee1a2007-03-20 15:24:37 -0300481 "R_sample=%uus, X=%u\n", dccp_role(sk),
Andrew Morton0f084612007-02-05 18:18:21 -0800482 sk, hctx->ccid3hctx_s,
David S. Miller1b07a952007-05-23 17:43:11 -0700483 dccp_sk(sk)->dccps_mss_cache, r_sample,
Gerrit Renker1a21e492006-12-10 00:02:12 -0200484 (unsigned)(hctx->ccid3hctx_x >> 6));
Gerrit Renker5c3fbb62006-12-03 14:50:56 -0200485
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700486 ccid3_hc_tx_set_state(sk, TFRC_SSTATE_FBACK);
Gerrit Renkera79ef762006-11-28 19:51:42 -0200487 } else {
Gerrit Renker5c3fbb62006-12-03 14:50:56 -0200488 hctx->ccid3hctx_rtt = (9 * hctx->ccid3hctx_rtt +
Gerrit Renker7dfee1a2007-03-20 15:24:37 -0300489 r_sample) / 10;
Gerrit Renker5c3fbb62006-12-03 14:50:56 -0200490
Gerrit Renkerff586292006-12-10 00:00:14 -0200491 /* Update sending rate (step 4 of [RFC 3448, 4.3]) */
492 if (hctx->ccid3hctx_p > 0)
493 hctx->ccid3hctx_x_calc =
494 tfrc_calc_x(hctx->ccid3hctx_s,
495 hctx->ccid3hctx_rtt,
496 hctx->ccid3hctx_p);
Arnaldo Carvalho de Meloac198ea2007-08-19 17:14:27 -0700497 ccid3_hc_tx_update_x(sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700498
Gerrit Renker7dfee1a2007-03-20 15:24:37 -0300499 ccid3_pr_debug("%s(%p), RTT=%uus (sample=%uus), s=%u, "
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200500 "p=%u, X_calc=%u, X_recv=%u, X=%u\n",
501 dccp_role(sk),
Gerrit Renker7dfee1a2007-03-20 15:24:37 -0300502 sk, hctx->ccid3hctx_rtt, r_sample,
Gerrit Renker5c3fbb62006-12-03 14:50:56 -0200503 hctx->ccid3hctx_s, hctx->ccid3hctx_p,
504 hctx->ccid3hctx_x_calc,
Gerrit Renker9e8efc82006-12-10 00:24:57 -0200505 (unsigned)(hctx->ccid3hctx_x_recv >> 6),
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200506 (unsigned)(hctx->ccid3hctx_x >> 6));
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700507 }
508
509 /* unschedule no feedback timer */
510 sk_stop_timer(sk, &hctx->ccid3hctx_no_feedback_timer);
511
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700512 /* remove all packets older than the one acked from history */
Arnaldo Carvalho de Melo8c60f3f2005-08-10 12:59:38 -0300513 dccp_tx_hist_purge_older(ccid3_tx_hist,
514 &hctx->ccid3hctx_hist, packet);
Arnaldo Carvalho de Meloc530cfb2005-08-29 02:15:54 -0300515 /*
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200516 * As we have calculated new ipi, delta, t_nom it is possible
517 * that we now can send a packet, so wake up dccp_wait_for_ccid
Arnaldo Carvalho de Meloc530cfb2005-08-29 02:15:54 -0300518 */
519 sk->sk_write_space(sk);
Arnaldo Carvalho de Melo8c60f3f2005-08-10 12:59:38 -0300520
Gerrit Renker8a508ac2006-12-03 14:50:23 -0200521 /*
522 * Update timeout interval for the nofeedback timer.
523 * We use a configuration option to increase the lower bound.
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200524 * This can help avoid triggering the nofeedback timer too
525 * often ('spinning') on LANs with small RTTs.
Gerrit Renker8a508ac2006-12-03 14:50:23 -0200526 */
Gerrit Renker5d0dbc42006-11-27 20:32:37 -0200527 hctx->ccid3hctx_t_rto = max_t(u32, 4 * hctx->ccid3hctx_rtt,
Gerrit Renker8a508ac2006-12-03 14:50:23 -0200528 CONFIG_IP_DCCP_CCID3_RTO *
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200529 (USEC_PER_SEC/1000));
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -0300530 /*
531 * Schedule no feedback timer to expire in
Gerrit Renker8a508ac2006-12-03 14:50:23 -0200532 * max(t_RTO, 2 * s/X) = max(t_RTO, 2 * t_ipi)
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -0300533 */
Gerrit Renker8a508ac2006-12-03 14:50:23 -0200534 t_nfb = max(hctx->ccid3hctx_t_rto, 2 * hctx->ccid3hctx_t_ipi);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700535
Gerrit Renkera9672412006-12-10 00:14:12 -0200536 ccid3_pr_debug("%s(%p), Scheduled no feedback timer to "
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200537 "expire in %lu jiffies (%luus)\n",
538 dccp_role(sk),
Gerrit Renkera9672412006-12-10 00:14:12 -0200539 sk, usecs_to_jiffies(t_nfb), t_nfb);
540
541 sk_reset_timer(sk, &hctx->ccid3hctx_no_feedback_timer,
Gerrit Renker2a1fda62006-11-28 18:34:34 -0200542 jiffies + usecs_to_jiffies(t_nfb));
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700543
544 /* set idle flag */
Gerrit Renkerbf58a382006-12-10 00:04:43 -0200545 hctx->ccid3hctx_idle = 1;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700546 break;
Gerrit Renker151a9932007-03-07 12:53:48 -0800547 case TFRC_SSTATE_NO_SENT: /* fall through */
Gerrit Renker5e19e3f2006-11-27 12:28:48 -0200548 case TFRC_SSTATE_TERM: /* ignore feedback when closing */
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700549 break;
550 }
551}
552
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700553static int ccid3_hc_tx_parse_options(struct sock *sk, unsigned char option,
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -0300554 unsigned char len, u16 idx,
555 unsigned char *value)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700556{
557 int rc = 0;
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300558 const struct dccp_sock *dp = dccp_sk(sk);
559 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700560 struct ccid3_options_received *opt_recv;
561
Arnaldo Carvalho de Melo59d203f2005-09-09 20:01:25 -0300562 BUG_ON(hctx == NULL);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700563
564 opt_recv = &hctx->ccid3hctx_options_received;
565
566 if (opt_recv->ccid3or_seqno != dp->dccps_gsr) {
567 opt_recv->ccid3or_seqno = dp->dccps_gsr;
568 opt_recv->ccid3or_loss_event_rate = ~0;
569 opt_recv->ccid3or_loss_intervals_idx = 0;
570 opt_recv->ccid3or_loss_intervals_len = 0;
571 opt_recv->ccid3or_receive_rate = 0;
572 }
573
574 switch (option) {
575 case TFRC_OPT_LOSS_EVENT_RATE:
Arnaldo Carvalho de Melo59d203f2005-09-09 20:01:25 -0300576 if (unlikely(len != 4)) {
Gerrit Renkera9672412006-12-10 00:14:12 -0200577 DCCP_WARN("%s(%p), invalid len %d "
Gerrit Renker59348b12006-11-20 18:39:23 -0200578 "for TFRC_OPT_LOSS_EVENT_RATE\n",
579 dccp_role(sk), sk, len);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700580 rc = -EINVAL;
581 } else {
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200582 opt_recv->ccid3or_loss_event_rate =
583 ntohl(*(__be32 *)value);
Gerrit Renkera9672412006-12-10 00:14:12 -0200584 ccid3_pr_debug("%s(%p), LOSS_EVENT_RATE=%u\n",
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700585 dccp_role(sk), sk,
586 opt_recv->ccid3or_loss_event_rate);
587 }
588 break;
589 case TFRC_OPT_LOSS_INTERVALS:
590 opt_recv->ccid3or_loss_intervals_idx = idx;
591 opt_recv->ccid3or_loss_intervals_len = len;
Gerrit Renkera9672412006-12-10 00:14:12 -0200592 ccid3_pr_debug("%s(%p), LOSS_INTERVALS=(%u, %u)\n",
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700593 dccp_role(sk), sk,
594 opt_recv->ccid3or_loss_intervals_idx,
595 opt_recv->ccid3or_loss_intervals_len);
596 break;
597 case TFRC_OPT_RECEIVE_RATE:
Arnaldo Carvalho de Melo59d203f2005-09-09 20:01:25 -0300598 if (unlikely(len != 4)) {
Gerrit Renkera9672412006-12-10 00:14:12 -0200599 DCCP_WARN("%s(%p), invalid len %d "
Gerrit Renker59348b12006-11-20 18:39:23 -0200600 "for TFRC_OPT_RECEIVE_RATE\n",
601 dccp_role(sk), sk, len);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700602 rc = -EINVAL;
603 } else {
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200604 opt_recv->ccid3or_receive_rate =
605 ntohl(*(__be32 *)value);
Gerrit Renkera9672412006-12-10 00:14:12 -0200606 ccid3_pr_debug("%s(%p), RECEIVE_RATE=%u\n",
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700607 dccp_role(sk), sk,
608 opt_recv->ccid3or_receive_rate);
609 }
610 break;
611 }
612
613 return rc;
614}
615
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800616static int ccid3_hc_tx_init(struct ccid *ccid, struct sock *sk)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700617{
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800618 struct ccid3_hc_tx_sock *hctx = ccid_priv(ccid);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700619
Gerrit Renker78ad7132006-11-28 19:22:33 -0200620 hctx->ccid3hctx_s = 0;
Gerrit Renkerfe0499a2006-12-10 00:06:01 -0200621 hctx->ccid3hctx_rtt = 0;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700622 hctx->ccid3hctx_state = TFRC_SSTATE_NO_SENT;
623 INIT_LIST_HEAD(&hctx->ccid3hctx_hist);
Arnaldo Carvalho de Meloaa5d7df2006-03-20 17:35:13 -0800624
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200625 hctx->ccid3hctx_no_feedback_timer.function =
626 ccid3_hc_tx_no_feedback_timer;
Arnaldo Carvalho de Meloaa5d7df2006-03-20 17:35:13 -0800627 hctx->ccid3hctx_no_feedback_timer.data = (unsigned long)sk;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700628 init_timer(&hctx->ccid3hctx_no_feedback_timer);
629
630 return 0;
631}
632
633static void ccid3_hc_tx_exit(struct sock *sk)
634{
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300635 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700636
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700637 BUG_ON(hctx == NULL);
638
639 ccid3_hc_tx_set_state(sk, TFRC_SSTATE_TERM);
640 sk_stop_timer(sk, &hctx->ccid3hctx_no_feedback_timer);
641
642 /* Empty packet history */
Arnaldo Carvalho de Melo8c60f3f2005-08-10 12:59:38 -0300643 dccp_tx_hist_purge(ccid3_tx_hist, &hctx->ccid3hctx_hist);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700644}
645
Gerrit Renker9bf17472007-03-20 13:11:24 -0300646static void ccid3_hc_tx_get_info(struct sock *sk, struct tcp_info *info)
647{
648 const struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700649
Gerrit Renker9bf17472007-03-20 13:11:24 -0300650 /* Listen socks doesn't have a private CCID block */
651 if (sk->sk_state == DCCP_LISTEN)
652 return;
653
654 BUG_ON(hctx == NULL);
655
656 info->tcpi_rto = hctx->ccid3hctx_t_rto;
657 info->tcpi_rtt = hctx->ccid3hctx_rtt;
658}
659
660static int ccid3_hc_tx_getsockopt(struct sock *sk, const int optname, int len,
661 u32 __user *optval, int __user *optlen)
662{
663 const struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
664 const void *val;
665
666 /* Listen socks doesn't have a private CCID block */
667 if (sk->sk_state == DCCP_LISTEN)
668 return -EINVAL;
669
670 switch (optname) {
671 case DCCP_SOCKOPT_CCID_TX_INFO:
672 if (len < sizeof(hctx->ccid3hctx_tfrc))
673 return -EINVAL;
674 len = sizeof(hctx->ccid3hctx_tfrc);
675 val = &hctx->ccid3hctx_tfrc;
676 break;
677 default:
678 return -ENOPROTOOPT;
679 }
680
681 if (put_user(len, optlen) || copy_to_user(optval, val, len))
682 return -EFAULT;
683
684 return 0;
685}
686
687/*
688 * Receiver Half-Connection Routines
689 */
Gerrit Renker56724aa2006-11-20 18:28:09 -0200690#ifdef CONFIG_IP_DCCP_CCID3_DEBUG
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700691static const char *ccid3_rx_state_name(enum ccid3_hc_rx_states state)
692{
693 static char *ccid3_rx_state_names[] = {
694 [TFRC_RSTATE_NO_DATA] = "NO_DATA",
695 [TFRC_RSTATE_DATA] = "DATA",
696 [TFRC_RSTATE_TERM] = "TERM",
697 };
698
699 return ccid3_rx_state_names[state];
700}
701#endif
702
Arnaldo Carvalho de Meloc25a18b2006-03-20 21:58:56 -0800703static void ccid3_hc_rx_set_state(struct sock *sk,
704 enum ccid3_hc_rx_states state)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700705{
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300706 struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700707 enum ccid3_hc_rx_states oldstate = hcrx->ccid3hcrx_state;
708
709 ccid3_pr_debug("%s(%p) %-8.8s -> %s\n",
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -0300710 dccp_role(sk), sk, ccid3_rx_state_name(oldstate),
711 ccid3_rx_state_name(state));
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700712 WARN_ON(state == oldstate);
713 hcrx->ccid3hcrx_state = state;
714}
715
Gerrit Renker78ad7132006-11-28 19:22:33 -0200716static inline void ccid3_hc_rx_update_s(struct ccid3_hc_rx_sock *hcrx, int len)
717{
718 if (unlikely(len == 0)) /* don't update on empty packets (e.g. ACKs) */
719 ccid3_pr_debug("Packet payload length is 0 - not updating\n");
720 else
721 hcrx->ccid3hcrx_s = hcrx->ccid3hcrx_s == 0 ? len :
722 (9 * hcrx->ccid3hcrx_s + len) / 10;
723}
724
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700725static void ccid3_hc_rx_send_feedback(struct sock *sk)
726{
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300727 struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700728 struct dccp_sock *dp = dccp_sk(sk);
Arnaldo Carvalho de Melo8c60f3f2005-08-10 12:59:38 -0300729 struct dccp_rx_hist_entry *packet;
Arnaldo Carvalho de Meloe7c23352007-08-19 17:17:51 -0700730 ktime_t now;
Gerrit Renker0f9e5b52006-12-10 00:03:51 -0200731 suseconds_t delta;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700732
Gerrit Renkera9672412006-12-10 00:14:12 -0200733 ccid3_pr_debug("%s(%p) - entry \n", dccp_role(sk), sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700734
Arnaldo Carvalho de Meloe7a81c62007-08-19 17:15:37 -0700735 now = ktime_get_real();
Arnaldo Carvalho de Melob6ee3d42005-08-27 18:18:18 -0300736
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700737 switch (hcrx->ccid3hcrx_state) {
738 case TFRC_RSTATE_NO_DATA:
739 hcrx->ccid3hcrx_x_recv = 0;
740 break;
Gerrit Renker0f9e5b52006-12-10 00:03:51 -0200741 case TFRC_RSTATE_DATA:
Arnaldo Carvalho de Meloe7a81c62007-08-19 17:15:37 -0700742 delta = ktime_us_delta(now,
743 hcrx->ccid3hcrx_tstamp_last_feedback);
Gerrit Renker0f9e5b52006-12-10 00:03:51 -0200744 DCCP_BUG_ON(delta < 0);
Gerrit Renkerb9039a22006-12-10 00:02:51 -0200745 hcrx->ccid3hcrx_x_recv =
746 scaled_div32(hcrx->ccid3hcrx_bytes_recv, delta);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700747 break;
Gerrit Renker59348b12006-11-20 18:39:23 -0200748 case TFRC_RSTATE_TERM:
Gerrit Renkera9672412006-12-10 00:14:12 -0200749 DCCP_BUG("%s(%p) - Illegal state TERM", dccp_role(sk), sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700750 return;
751 }
752
Arnaldo Carvalho de Melo8c60f3f2005-08-10 12:59:38 -0300753 packet = dccp_rx_hist_find_data_packet(&hcrx->ccid3hcrx_hist);
Arnaldo Carvalho de Melo59d203f2005-09-09 20:01:25 -0300754 if (unlikely(packet == NULL)) {
Gerrit Renkera9672412006-12-10 00:14:12 -0200755 DCCP_WARN("%s(%p), no data packet in history!\n",
Gerrit Renker59348b12006-11-20 18:39:23 -0200756 dccp_role(sk), sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700757 return;
758 }
759
Arnaldo Carvalho de Melob6ee3d42005-08-27 18:18:18 -0300760 hcrx->ccid3hcrx_tstamp_last_feedback = now;
Ian McDonald66a377c2006-08-26 23:40:50 -0700761 hcrx->ccid3hcrx_ccval_last_counter = packet->dccphrx_ccval;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700762 hcrx->ccid3hcrx_bytes_recv = 0;
763
Gerrit Renker0f9e5b52006-12-10 00:03:51 -0200764 /* Elapsed time information [RFC 4340, 13.2] in units of 10 * usecs */
Arnaldo Carvalho de Meloe7c23352007-08-19 17:17:51 -0700765 delta = ktime_us_delta(now, packet->dccphrx_tstamp);
Gerrit Renker0f9e5b52006-12-10 00:03:51 -0200766 DCCP_BUG_ON(delta < 0);
767 hcrx->ccid3hcrx_elapsed_time = delta / 10;
Gerrit Renker45393a62006-12-09 23:59:14 -0200768
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700769 if (hcrx->ccid3hcrx_p == 0)
Gerrit Renker45393a62006-12-09 23:59:14 -0200770 hcrx->ccid3hcrx_pinv = ~0U; /* see RFC 4342, 8.5 */
771 else if (hcrx->ccid3hcrx_p > 1000000) {
772 DCCP_WARN("p (%u) > 100%%\n", hcrx->ccid3hcrx_p);
773 hcrx->ccid3hcrx_pinv = 1; /* use 100% in this case */
774 } else
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700775 hcrx->ccid3hcrx_pinv = 1000000 / hcrx->ccid3hcrx_p;
Gerrit Renker45393a62006-12-09 23:59:14 -0200776
Arnaldo Carvalho de Melo507d37c2005-09-09 02:30:07 -0300777 dp->dccps_hc_rx_insert_options = 1;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700778 dccp_send_ack(sk);
779}
780
Arnaldo Carvalho de Melo2d0817d2006-03-20 22:32:06 -0800781static int ccid3_hc_rx_insert_options(struct sock *sk, struct sk_buff *skb)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700782{
Arnaldo Carvalho de Melo59d203f2005-09-09 20:01:25 -0300783 const struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
Andrea Bittau60fe62e2006-03-20 19:23:32 -0800784 __be32 x_recv, pinv;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700785
Arnaldo Carvalho de Melo59d203f2005-09-09 20:01:25 -0300786 BUG_ON(hcrx == NULL);
787
788 if (!(sk->sk_state == DCCP_OPEN || sk->sk_state == DCCP_PARTOPEN))
Arnaldo Carvalho de Melo2d0817d2006-03-20 22:32:06 -0800789 return 0;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700790
Ian McDonald66a377c2006-08-26 23:40:50 -0700791 DCCP_SKB_CB(skb)->dccpd_ccval = hcrx->ccid3hcrx_ccval_last_counter;
Arnaldo Carvalho de Melo4fded332005-08-23 21:51:59 -0700792
793 if (dccp_packet_without_ack(skb))
Arnaldo Carvalho de Melo2d0817d2006-03-20 22:32:06 -0800794 return 0;
795
Arnaldo Carvalho de Melo4fded332005-08-23 21:51:59 -0700796 x_recv = htonl(hcrx->ccid3hcrx_x_recv);
797 pinv = htonl(hcrx->ccid3hcrx_pinv);
Arnaldo Carvalho de Melo2d0817d2006-03-20 22:32:06 -0800798
799 if ((hcrx->ccid3hcrx_elapsed_time != 0 &&
800 dccp_insert_option_elapsed_time(sk, skb,
801 hcrx->ccid3hcrx_elapsed_time)) ||
802 dccp_insert_option_timestamp(sk, skb) ||
803 dccp_insert_option(sk, skb, TFRC_OPT_LOSS_EVENT_RATE,
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200804 &pinv, sizeof(pinv)) ||
Arnaldo Carvalho de Melo2d0817d2006-03-20 22:32:06 -0800805 dccp_insert_option(sk, skb, TFRC_OPT_RECEIVE_RATE,
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200806 &x_recv, sizeof(x_recv)))
Arnaldo Carvalho de Melo2d0817d2006-03-20 22:32:06 -0800807 return -1;
808
809 return 0;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700810}
811
Ian McDonald66a377c2006-08-26 23:40:50 -0700812static int ccid3_hc_rx_detect_loss(struct sock *sk,
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900813 struct dccp_rx_hist_entry *packet)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700814{
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300815 struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200816 struct dccp_rx_hist_entry *rx_hist =
817 dccp_rx_hist_head(&hcrx->ccid3hcrx_hist);
Ian McDonald66a377c2006-08-26 23:40:50 -0700818 u64 seqno = packet->dccphrx_seqno;
819 u64 tmp_seqno;
820 int loss = 0;
821 u8 ccval;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700822
Ian McDonald66a377c2006-08-26 23:40:50 -0700823
824 tmp_seqno = hcrx->ccid3hcrx_seqno_nonloss;
825
826 if (!rx_hist ||
827 follows48(packet->dccphrx_seqno, hcrx->ccid3hcrx_seqno_nonloss)) {
828 hcrx->ccid3hcrx_seqno_nonloss = seqno;
829 hcrx->ccid3hcrx_ccval_nonloss = packet->dccphrx_ccval;
830 goto detect_out;
831 }
832
833
834 while (dccp_delta_seqno(hcrx->ccid3hcrx_seqno_nonloss, seqno)
835 > TFRC_RECV_NUM_LATE_LOSS) {
836 loss = 1;
Arnaldo Carvalho de Melocc4d6a32007-05-28 18:53:08 -0300837 dccp_li_update_li(sk,
Arnaldo Carvalho de Melocc0a9102007-06-14 17:41:28 -0300838 &hcrx->ccid3hcrx_li_hist,
839 &hcrx->ccid3hcrx_hist,
Arnaldo Carvalho de Meloe7c23352007-08-19 17:17:51 -0700840 hcrx->ccid3hcrx_tstamp_last_feedback,
Arnaldo Carvalho de Melocc0a9102007-06-14 17:41:28 -0300841 hcrx->ccid3hcrx_s,
842 hcrx->ccid3hcrx_bytes_recv,
843 hcrx->ccid3hcrx_x_recv,
844 hcrx->ccid3hcrx_seqno_nonloss,
845 hcrx->ccid3hcrx_ccval_nonloss);
Ian McDonald66a377c2006-08-26 23:40:50 -0700846 tmp_seqno = hcrx->ccid3hcrx_seqno_nonloss;
847 dccp_inc_seqno(&tmp_seqno);
848 hcrx->ccid3hcrx_seqno_nonloss = tmp_seqno;
849 dccp_inc_seqno(&tmp_seqno);
850 while (dccp_rx_hist_find_entry(&hcrx->ccid3hcrx_hist,
851 tmp_seqno, &ccval)) {
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200852 hcrx->ccid3hcrx_seqno_nonloss = tmp_seqno;
Ian McDonald66a377c2006-08-26 23:40:50 -0700853 hcrx->ccid3hcrx_ccval_nonloss = ccval;
854 dccp_inc_seqno(&tmp_seqno);
855 }
856 }
857
858 /* FIXME - this code could be simplified with above while */
859 /* but works at moment */
860 if (follows48(packet->dccphrx_seqno, hcrx->ccid3hcrx_seqno_nonloss)) {
861 hcrx->ccid3hcrx_seqno_nonloss = seqno;
862 hcrx->ccid3hcrx_ccval_nonloss = packet->dccphrx_ccval;
863 }
864
865detect_out:
866 dccp_rx_hist_add_packet(ccid3_rx_hist, &hcrx->ccid3hcrx_hist,
867 &hcrx->ccid3hcrx_li_hist, packet,
868 hcrx->ccid3hcrx_seqno_nonloss);
869 return loss;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700870}
871
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700872static void ccid3_hc_rx_packet_recv(struct sock *sk, struct sk_buff *skb)
873{
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300874 struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
Arnaldo Carvalho de Melo4fded332005-08-23 21:51:59 -0700875 const struct dccp_options_received *opt_recv;
Arnaldo Carvalho de Melo8c60f3f2005-08-10 12:59:38 -0300876 struct dccp_rx_hist_entry *packet;
Gerrit Renker7dfee1a2007-03-20 15:24:37 -0300877 u32 p_prev, r_sample, rtt_prev;
Gerrit Renker78ad7132006-11-28 19:22:33 -0200878 int loss, payload_size;
Arnaldo Carvalho de Melo9823b7b2007-08-19 17:16:35 -0700879 ktime_t now;
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -0300880
Gerrit Renker59348b12006-11-20 18:39:23 -0200881 BUG_ON(hcrx == NULL);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700882
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300883 opt_recv = &dccp_sk(sk)->dccps_options_received;
Arnaldo Carvalho de Melo4fded332005-08-23 21:51:59 -0700884
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700885 switch (DCCP_SKB_CB(skb)->dccpd_type) {
886 case DCCP_PKT_ACK:
887 if (hcrx->ccid3hcrx_state == TFRC_RSTATE_NO_DATA)
888 return;
Arnaldo Carvalho de Melo9823b7b2007-08-19 17:16:35 -0700889 case DCCP_PKT_DATAACK:
Arnaldo Carvalho de Melo4fded332005-08-23 21:51:59 -0700890 if (opt_recv->dccpor_timestamp_echo == 0)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700891 break;
Ian McDonald66a377c2006-08-26 23:40:50 -0700892 rtt_prev = hcrx->ccid3hcrx_rtt;
Arnaldo Carvalho de Melo9823b7b2007-08-19 17:16:35 -0700893 now = ktime_get_real();
894 r_sample = dccp_sample_rtt(sk, now, NULL);
Arnaldo Carvalho de Melob3a30772005-09-09 02:34:10 -0300895
896 if (hcrx->ccid3hcrx_state == TFRC_RSTATE_NO_DATA)
897 hcrx->ccid3hcrx_rtt = r_sample;
898 else
899 hcrx->ccid3hcrx_rtt = (hcrx->ccid3hcrx_rtt * 9) / 10 +
900 r_sample / 10;
901
Ian McDonald66a377c2006-08-26 23:40:50 -0700902 if (rtt_prev != hcrx->ccid3hcrx_rtt)
Gerrit Renkera9672412006-12-10 00:14:12 -0200903 ccid3_pr_debug("%s(%p), New RTT=%uus, elapsed time=%u\n",
904 dccp_role(sk), sk, hcrx->ccid3hcrx_rtt,
Arnaldo Carvalho de Melo4fded332005-08-23 21:51:59 -0700905 opt_recv->dccpor_elapsed_time);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700906 break;
907 case DCCP_PKT_DATA:
908 break;
Arnaldo Carvalho de Melo59d203f2005-09-09 20:01:25 -0300909 default: /* We're not interested in other packet types, move along */
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700910 return;
911 }
912
Arnaldo Carvalho de Meloe7c23352007-08-19 17:17:51 -0700913 packet = dccp_rx_hist_entry_new(ccid3_rx_hist, opt_recv->dccpor_ndp,
Christoph Lameter54e6ecb2006-12-06 20:33:16 -0800914 skb, GFP_ATOMIC);
Arnaldo Carvalho de Melo59d203f2005-09-09 20:01:25 -0300915 if (unlikely(packet == NULL)) {
Gerrit Renkera9672412006-12-10 00:14:12 -0200916 DCCP_WARN("%s(%p), Not enough mem to add rx packet "
Gerrit Renker59348b12006-11-20 18:39:23 -0200917 "to history, consider it lost!\n", dccp_role(sk), sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700918 return;
919 }
920
Ian McDonald66a377c2006-08-26 23:40:50 -0700921 loss = ccid3_hc_rx_detect_loss(sk, packet);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700922
923 if (DCCP_SKB_CB(skb)->dccpd_type == DCCP_PKT_ACK)
924 return;
925
Gerrit Renker78ad7132006-11-28 19:22:33 -0200926 payload_size = skb->len - dccp_hdr(skb)->dccph_doff * 4;
927 ccid3_hc_rx_update_s(hcrx, payload_size);
928
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700929 switch (hcrx->ccid3hcrx_state) {
930 case TFRC_RSTATE_NO_DATA:
Gerrit Renkera9672412006-12-10 00:14:12 -0200931 ccid3_pr_debug("%s(%p, state=%s), skb=%p, sending initial "
932 "feedback\n", dccp_role(sk), sk,
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -0300933 dccp_state_name(sk->sk_state), skb);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700934 ccid3_hc_rx_send_feedback(sk);
935 ccid3_hc_rx_set_state(sk, TFRC_RSTATE_DATA);
936 return;
Arnaldo Carvalho de Melo9823b7b2007-08-19 17:16:35 -0700937 case TFRC_RSTATE_DATA:
Gerrit Renker78ad7132006-11-28 19:22:33 -0200938 hcrx->ccid3hcrx_bytes_recv += payload_size;
Ian McDonald66a377c2006-08-26 23:40:50 -0700939 if (loss)
Arnaldo Carvalho de Melob6ee3d42005-08-27 18:18:18 -0300940 break;
941
Arnaldo Carvalho de Melo1faf0a12007-08-19 17:15:13 -0700942 now = ktime_get_real();
943 if ((ktime_us_delta(now, hcrx->ccid3hcrx_tstamp_last_ack) -
944 (s64)hcrx->ccid3hcrx_rtt) >= 0) {
Arnaldo Carvalho de Melob6ee3d42005-08-27 18:18:18 -0300945 hcrx->ccid3hcrx_tstamp_last_ack = now;
946 ccid3_hc_rx_send_feedback(sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700947 }
Arnaldo Carvalho de Melob6ee3d42005-08-27 18:18:18 -0300948 return;
Gerrit Renker59348b12006-11-20 18:39:23 -0200949 case TFRC_RSTATE_TERM:
Gerrit Renkera9672412006-12-10 00:14:12 -0200950 DCCP_BUG("%s(%p) - Illegal state TERM", dccp_role(sk), sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700951 return;
952 }
953
954 /* Dealing with packet loss */
Gerrit Renkera9672412006-12-10 00:14:12 -0200955 ccid3_pr_debug("%s(%p, state=%s), data loss! Reacting...\n",
Arnaldo Carvalho de Melo4fded332005-08-23 21:51:59 -0700956 dccp_role(sk), sk, dccp_state_name(sk->sk_state));
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700957
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700958 p_prev = hcrx->ccid3hcrx_p;
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900959
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700960 /* Calculate loss event rate */
Ian McDonaldc0996662006-03-03 17:54:46 -0800961 if (!list_empty(&hcrx->ccid3hcrx_li_hist)) {
962 u32 i_mean = dccp_li_hist_calc_i_mean(&hcrx->ccid3hcrx_li_hist);
963
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700964 /* Scaling up by 1000000 as fixed decimal */
Ian McDonaldc0996662006-03-03 17:54:46 -0800965 if (i_mean != 0)
966 hcrx->ccid3hcrx_p = 1000000 / i_mean;
Gerrit Renker59348b12006-11-20 18:39:23 -0200967 } else
968 DCCP_BUG("empty loss history");
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700969
970 if (hcrx->ccid3hcrx_p > p_prev) {
971 ccid3_hc_rx_send_feedback(sk);
972 return;
973 }
974}
975
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800976static int ccid3_hc_rx_init(struct ccid *ccid, struct sock *sk)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700977{
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800978 struct ccid3_hc_rx_sock *hcrx = ccid_priv(ccid);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700979
Gerrit Renkera9672412006-12-10 00:14:12 -0200980 ccid3_pr_debug("entry\n");
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700981
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700982 hcrx->ccid3hcrx_state = TFRC_RSTATE_NO_DATA;
983 INIT_LIST_HEAD(&hcrx->ccid3hcrx_hist);
Arnaldo Carvalho de Meloae6706f2005-08-27 23:03:09 -0300984 INIT_LIST_HEAD(&hcrx->ccid3hcrx_li_hist);
Arnaldo Carvalho de Melo1faf0a12007-08-19 17:15:13 -0700985 hcrx->ccid3hcrx_tstamp_last_feedback =
Arnaldo Carvalho de Meloe7a81c62007-08-19 17:15:37 -0700986 hcrx->ccid3hcrx_tstamp_last_ack = ktime_get_real();
Gerrit Renker78ad7132006-11-28 19:22:33 -0200987 hcrx->ccid3hcrx_s = 0;
Gerrit Renkerfe0499a2006-12-10 00:06:01 -0200988 hcrx->ccid3hcrx_rtt = 0;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700989 return 0;
990}
991
992static void ccid3_hc_rx_exit(struct sock *sk)
993{
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300994 struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700995
Arnaldo Carvalho de Melo59d203f2005-09-09 20:01:25 -0300996 BUG_ON(hcrx == NULL);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700997
998 ccid3_hc_rx_set_state(sk, TFRC_RSTATE_TERM);
999
1000 /* Empty packet history */
Arnaldo Carvalho de Melo8c60f3f2005-08-10 12:59:38 -03001001 dccp_rx_hist_purge(ccid3_rx_hist, &hcrx->ccid3hcrx_hist);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001002
1003 /* Empty loss interval history */
Arnaldo Carvalho de Melocc4d6a32007-05-28 18:53:08 -03001004 dccp_li_hist_purge(&hcrx->ccid3hcrx_li_hist);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001005}
1006
Arnaldo Carvalho de Melo2babe1f2005-08-23 21:52:35 -07001007static void ccid3_hc_rx_get_info(struct sock *sk, struct tcp_info *info)
1008{
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -03001009 const struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
Arnaldo Carvalho de Melo2babe1f2005-08-23 21:52:35 -07001010
Arnaldo Carvalho de Melo59c23532005-09-12 14:16:58 -07001011 /* Listen socks doesn't have a private CCID block */
1012 if (sk->sk_state == DCCP_LISTEN)
1013 return;
1014
Arnaldo Carvalho de Melo59d203f2005-09-09 20:01:25 -03001015 BUG_ON(hcrx == NULL);
Arnaldo Carvalho de Melo2babe1f2005-08-23 21:52:35 -07001016
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -02001017 info->tcpi_ca_state = hcrx->ccid3hcrx_state;
1018 info->tcpi_options |= TCPI_OPT_TIMESTAMPS;
1019 info->tcpi_rcv_rtt = hcrx->ccid3hcrx_rtt;
Arnaldo Carvalho de Melo2babe1f2005-08-23 21:52:35 -07001020}
1021
Arnaldo Carvalho de Melo88f964d2005-09-18 00:19:32 -07001022static int ccid3_hc_rx_getsockopt(struct sock *sk, const int optname, int len,
1023 u32 __user *optval, int __user *optlen)
1024{
1025 const struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
1026 const void *val;
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +09001027
Arnaldo Carvalho de Melo88f964d2005-09-18 00:19:32 -07001028 /* Listen socks doesn't have a private CCID block */
1029 if (sk->sk_state == DCCP_LISTEN)
1030 return -EINVAL;
1031
1032 switch (optname) {
1033 case DCCP_SOCKOPT_CCID_RX_INFO:
1034 if (len < sizeof(hcrx->ccid3hcrx_tfrc))
1035 return -EINVAL;
1036 len = sizeof(hcrx->ccid3hcrx_tfrc);
1037 val = &hcrx->ccid3hcrx_tfrc;
1038 break;
1039 default:
1040 return -ENOPROTOOPT;
1041 }
1042
1043 if (put_user(len, optlen) || copy_to_user(optval, val, len))
1044 return -EFAULT;
1045
1046 return 0;
1047}
1048
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -08001049static struct ccid_operations ccid3 = {
Ian McDonald3dd9a7c2006-09-22 14:26:44 +12001050 .ccid_id = DCCPC_CCID3,
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001051 .ccid_name = "ccid3",
1052 .ccid_owner = THIS_MODULE,
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -08001053 .ccid_hc_tx_obj_size = sizeof(struct ccid3_hc_tx_sock),
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001054 .ccid_hc_tx_init = ccid3_hc_tx_init,
1055 .ccid_hc_tx_exit = ccid3_hc_tx_exit,
1056 .ccid_hc_tx_send_packet = ccid3_hc_tx_send_packet,
1057 .ccid_hc_tx_packet_sent = ccid3_hc_tx_packet_sent,
1058 .ccid_hc_tx_packet_recv = ccid3_hc_tx_packet_recv,
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001059 .ccid_hc_tx_parse_options = ccid3_hc_tx_parse_options,
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -08001060 .ccid_hc_rx_obj_size = sizeof(struct ccid3_hc_rx_sock),
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001061 .ccid_hc_rx_init = ccid3_hc_rx_init,
1062 .ccid_hc_rx_exit = ccid3_hc_rx_exit,
1063 .ccid_hc_rx_insert_options = ccid3_hc_rx_insert_options,
1064 .ccid_hc_rx_packet_recv = ccid3_hc_rx_packet_recv,
Arnaldo Carvalho de Melo2babe1f2005-08-23 21:52:35 -07001065 .ccid_hc_rx_get_info = ccid3_hc_rx_get_info,
1066 .ccid_hc_tx_get_info = ccid3_hc_tx_get_info,
Arnaldo Carvalho de Melo88f964d2005-09-18 00:19:32 -07001067 .ccid_hc_rx_getsockopt = ccid3_hc_rx_getsockopt,
1068 .ccid_hc_tx_getsockopt = ccid3_hc_tx_getsockopt,
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001069};
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -02001070
Gerrit Renker56724aa2006-11-20 18:28:09 -02001071#ifdef CONFIG_IP_DCCP_CCID3_DEBUG
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001072module_param(ccid3_debug, int, 0444);
1073MODULE_PARM_DESC(ccid3_debug, "Enable debug messages");
Gerrit Renker56724aa2006-11-20 18:28:09 -02001074#endif
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001075
1076static __init int ccid3_module_init(void)
1077{
Arnaldo Carvalho de Melo8c60f3f2005-08-10 12:59:38 -03001078 int rc = -ENOBUFS;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001079
Arnaldo Carvalho de Melo8c60f3f2005-08-10 12:59:38 -03001080 ccid3_rx_hist = dccp_rx_hist_new("ccid3");
1081 if (ccid3_rx_hist == NULL)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001082 goto out;
1083
Arnaldo Carvalho de Melo8c60f3f2005-08-10 12:59:38 -03001084 ccid3_tx_hist = dccp_tx_hist_new("ccid3");
1085 if (ccid3_tx_hist == NULL)
1086 goto out_free_rx;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001087
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001088 rc = ccid_register(&ccid3);
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -02001089 if (rc != 0)
Arnaldo Carvalho de Melocc4d6a32007-05-28 18:53:08 -03001090 goto out_free_tx;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001091out:
1092 return rc;
Arnaldo Carvalho de Melo8c60f3f2005-08-10 12:59:38 -03001093
Arnaldo Carvalho de Melo8c60f3f2005-08-10 12:59:38 -03001094out_free_tx:
1095 dccp_tx_hist_delete(ccid3_tx_hist);
1096 ccid3_tx_hist = NULL;
1097out_free_rx:
1098 dccp_rx_hist_delete(ccid3_rx_hist);
1099 ccid3_rx_hist = NULL;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001100 goto out;
1101}
1102module_init(ccid3_module_init);
1103
1104static __exit void ccid3_module_exit(void)
1105{
1106 ccid_unregister(&ccid3);
1107
Arnaldo Carvalho de Melo8c60f3f2005-08-10 12:59:38 -03001108 if (ccid3_tx_hist != NULL) {
1109 dccp_tx_hist_delete(ccid3_tx_hist);
1110 ccid3_tx_hist = NULL;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001111 }
Arnaldo Carvalho de Melo8c60f3f2005-08-10 12:59:38 -03001112 if (ccid3_rx_hist != NULL) {
1113 dccp_rx_hist_delete(ccid3_rx_hist);
1114 ccid3_rx_hist = NULL;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001115 }
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001116}
1117module_exit(ccid3_module_exit);
1118
Ian McDonalde6bccd32006-08-26 19:01:30 -07001119MODULE_AUTHOR("Ian McDonald <ian.mcdonald@jandi.co.nz>, "
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -03001120 "Arnaldo Carvalho de Melo <acme@ghostprotocols.net>");
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001121MODULE_DESCRIPTION("DCCP TFRC CCID3 CCID");
1122MODULE_LICENSE("GPL");
1123MODULE_ALIAS("net-dccp-ccid-3");