blob: 3524328db0b98404bb4144e8c38e7ec714ebd8ed [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);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700391 struct timeval now;
Gerrit Renker6b57c932006-11-28 19:55:06 -0200392 struct dccp_tx_hist_entry *packet;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700393
Gerrit Renker59348b12006-11-20 18:39:23 -0200394 BUG_ON(hctx == NULL);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700395
Gerrit Renker6b57c932006-11-28 19:55:06 -0200396 ccid3_hc_tx_update_s(hctx, len);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700397
Gerrit Renkerc5a1ae92006-12-10 00:09:21 -0200398 packet = dccp_tx_hist_entry_new(ccid3_tx_hist, GFP_ATOMIC);
Gerrit Renker6b57c932006-11-28 19:55:06 -0200399 if (unlikely(packet == NULL)) {
Gerrit Renkerc5a1ae92006-12-10 00:09:21 -0200400 DCCP_CRIT("packet history - out of memory!");
Gerrit Renker6b57c932006-11-28 19:55:06 -0200401 return;
402 }
Gerrit Renkerc5a1ae92006-12-10 00:09:21 -0200403 dccp_tx_hist_add_entry(&hctx->ccid3hctx_hist, packet);
404
405 dccp_timestamp(sk, &now);
Gerrit Renker6b57c932006-11-28 19:55:06 -0200406 packet->dccphtx_tstamp = now;
Gerrit Renkerc5a1ae92006-12-10 00:09:21 -0200407 packet->dccphtx_seqno = dccp_sk(sk)->dccps_gss;
408 packet->dccphtx_rtt = hctx->ccid3hctx_rtt;
409 packet->dccphtx_sent = 1;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700410}
411
412static void ccid3_hc_tx_packet_recv(struct sock *sk, struct sk_buff *skb)
413{
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300414 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700415 struct ccid3_options_received *opt_recv;
Arnaldo Carvalho de Melo8c60f3f2005-08-10 12:59:38 -0300416 struct dccp_tx_hist_entry *packet;
Arnaldo Carvalho de Melo9823b7b2007-08-19 17:16:35 -0700417 ktime_t now, t_hist;
Gerrit Renker2a1fda62006-11-28 18:34:34 -0200418 unsigned long t_nfb;
Gerrit Renker7dfee1a2007-03-20 15:24:37 -0300419 u32 pinv, r_sample;
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -0300420
Gerrit Renker59348b12006-11-20 18:39:23 -0200421 BUG_ON(hctx == NULL);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700422
423 /* we are only interested in ACKs */
424 if (!(DCCP_SKB_CB(skb)->dccpd_type == DCCP_PKT_ACK ||
425 DCCP_SKB_CB(skb)->dccpd_type == DCCP_PKT_DATAACK))
426 return;
427
428 opt_recv = &hctx->ccid3hctx_options_received;
429
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700430 switch (hctx->ccid3hctx_state) {
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700431 case TFRC_SSTATE_NO_FBACK:
432 case TFRC_SSTATE_FBACK:
Gerrit Renker5c3fbb62006-12-03 14:50:56 -0200433 /* get packet from history to look up t_recvdata */
Arnaldo Carvalho de Melo8c60f3f2005-08-10 12:59:38 -0300434 packet = dccp_tx_hist_find_entry(&hctx->ccid3hctx_hist,
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200435 DCCP_SKB_CB(skb)->dccpd_ack_seq);
Arnaldo Carvalho de Melo59d203f2005-09-09 20:01:25 -0300436 if (unlikely(packet == NULL)) {
Gerrit Renker5c3fbb62006-12-03 14:50:56 -0200437 DCCP_WARN("%s(%p), seqno %llu(%s) doesn't exist "
Gerrit Renker59348b12006-11-20 18:39:23 -0200438 "in history!\n", dccp_role(sk), sk,
Arnaldo Carvalho de Melo59d203f2005-09-09 20:01:25 -0300439 (unsigned long long)DCCP_SKB_CB(skb)->dccpd_ack_seq,
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200440 dccp_packet_name(DCCP_SKB_CB(skb)->dccpd_type));
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700441 return;
442 }
443
Gerrit Renker1a21e492006-12-10 00:02:12 -0200444 /* Update receive rate in units of 64 * bytes/second */
Gerrit Renker9e8efc82006-12-10 00:24:57 -0200445 hctx->ccid3hctx_x_recv = opt_recv->ccid3or_receive_rate;
446 hctx->ccid3hctx_x_recv <<= 6;
Gerrit Renker5c3fbb62006-12-03 14:50:56 -0200447
448 /* Update loss event rate */
449 pinv = opt_recv->ccid3or_loss_event_rate;
Gerrit Renker45393a62006-12-09 23:59:14 -0200450 if (pinv == ~0U || pinv == 0) /* see RFC 4342, 8.5 */
Gerrit Renker5c3fbb62006-12-03 14:50:56 -0200451 hctx->ccid3hctx_p = 0;
Gerrit Renker45393a62006-12-09 23:59:14 -0200452 else /* can not exceed 100% */
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200453 hctx->ccid3hctx_p = 1000000 / pinv;
Gerrit Renker5c3fbb62006-12-03 14:50:56 -0200454
Arnaldo Carvalho de Melo9823b7b2007-08-19 17:16:35 -0700455 now = ktime_get_real();
456 t_hist = timeval_to_ktime(packet->dccphtx_tstamp);
Gerrit Renker5c3fbb62006-12-03 14:50:56 -0200457 /*
458 * Calculate new round trip sample as per [RFC 3448, 4.3] by
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200459 * R_sample = (now - t_recvdata) - t_elapsed
Gerrit Renker5c3fbb62006-12-03 14:50:56 -0200460 */
Arnaldo Carvalho de Melo9823b7b2007-08-19 17:16:35 -0700461 r_sample = dccp_sample_rtt(sk, now, &t_hist);
Gerrit Renker5c3fbb62006-12-03 14:50:56 -0200462
Gerrit Renker7dfee1a2007-03-20 15:24:37 -0300463 /*
464 * Update RTT estimate by
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700465 * If (No feedback recv)
466 * R = R_sample;
467 * Else
468 * R = q * R + (1 - q) * R_sample;
469 *
470 * q is a constant, RFC 3448 recomments 0.9
471 */
472 if (hctx->ccid3hctx_state == TFRC_SSTATE_NO_FBACK) {
Gerrit Renker1a21e492006-12-10 00:02:12 -0200473 /*
474 * Larger Initial Windows [RFC 4342, sec. 5]
Gerrit Renker1a21e492006-12-10 00:02:12 -0200475 */
Gerrit Renkera79ef762006-11-28 19:51:42 -0200476 hctx->ccid3hctx_rtt = r_sample;
Gerrit Renkera21f9f92007-03-20 15:12:10 -0300477 hctx->ccid3hctx_x = rfc3390_initial_rate(sk);
Arnaldo Carvalho de Melo9823b7b2007-08-19 17:16:35 -0700478 hctx->ccid3hctx_t_ld = now;
Gerrit Renkera79ef762006-11-28 19:51:42 -0200479
Gerrit Renker1266ade2007-03-20 14:56:11 -0300480 ccid3_update_send_interval(hctx);
Gerrit Renker5c3fbb62006-12-03 14:50:56 -0200481
Gerrit Renkera21f9f92007-03-20 15:12:10 -0300482 ccid3_pr_debug("%s(%p), s=%u, MSS=%u, "
Gerrit Renker7dfee1a2007-03-20 15:24:37 -0300483 "R_sample=%uus, X=%u\n", dccp_role(sk),
Andrew Morton0f084612007-02-05 18:18:21 -0800484 sk, hctx->ccid3hctx_s,
David S. Miller1b07a952007-05-23 17:43:11 -0700485 dccp_sk(sk)->dccps_mss_cache, r_sample,
Gerrit Renker1a21e492006-12-10 00:02:12 -0200486 (unsigned)(hctx->ccid3hctx_x >> 6));
Gerrit Renker5c3fbb62006-12-03 14:50:56 -0200487
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700488 ccid3_hc_tx_set_state(sk, TFRC_SSTATE_FBACK);
Gerrit Renkera79ef762006-11-28 19:51:42 -0200489 } else {
Gerrit Renker5c3fbb62006-12-03 14:50:56 -0200490 hctx->ccid3hctx_rtt = (9 * hctx->ccid3hctx_rtt +
Gerrit Renker7dfee1a2007-03-20 15:24:37 -0300491 r_sample) / 10;
Gerrit Renker5c3fbb62006-12-03 14:50:56 -0200492
Gerrit Renkerff586292006-12-10 00:00:14 -0200493 /* Update sending rate (step 4 of [RFC 3448, 4.3]) */
494 if (hctx->ccid3hctx_p > 0)
495 hctx->ccid3hctx_x_calc =
496 tfrc_calc_x(hctx->ccid3hctx_s,
497 hctx->ccid3hctx_rtt,
498 hctx->ccid3hctx_p);
Arnaldo Carvalho de Meloac198ea2007-08-19 17:14:27 -0700499 ccid3_hc_tx_update_x(sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700500
Gerrit Renker7dfee1a2007-03-20 15:24:37 -0300501 ccid3_pr_debug("%s(%p), RTT=%uus (sample=%uus), s=%u, "
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200502 "p=%u, X_calc=%u, X_recv=%u, X=%u\n",
503 dccp_role(sk),
Gerrit Renker7dfee1a2007-03-20 15:24:37 -0300504 sk, hctx->ccid3hctx_rtt, r_sample,
Gerrit Renker5c3fbb62006-12-03 14:50:56 -0200505 hctx->ccid3hctx_s, hctx->ccid3hctx_p,
506 hctx->ccid3hctx_x_calc,
Gerrit Renker9e8efc82006-12-10 00:24:57 -0200507 (unsigned)(hctx->ccid3hctx_x_recv >> 6),
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200508 (unsigned)(hctx->ccid3hctx_x >> 6));
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700509 }
510
511 /* unschedule no feedback timer */
512 sk_stop_timer(sk, &hctx->ccid3hctx_no_feedback_timer);
513
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700514 /* remove all packets older than the one acked from history */
Arnaldo Carvalho de Melo8c60f3f2005-08-10 12:59:38 -0300515 dccp_tx_hist_purge_older(ccid3_tx_hist,
516 &hctx->ccid3hctx_hist, packet);
Arnaldo Carvalho de Meloc530cfb2005-08-29 02:15:54 -0300517 /*
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200518 * As we have calculated new ipi, delta, t_nom it is possible
519 * that we now can send a packet, so wake up dccp_wait_for_ccid
Arnaldo Carvalho de Meloc530cfb2005-08-29 02:15:54 -0300520 */
521 sk->sk_write_space(sk);
Arnaldo Carvalho de Melo8c60f3f2005-08-10 12:59:38 -0300522
Gerrit Renker8a508ac2006-12-03 14:50:23 -0200523 /*
524 * Update timeout interval for the nofeedback timer.
525 * We use a configuration option to increase the lower bound.
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200526 * This can help avoid triggering the nofeedback timer too
527 * often ('spinning') on LANs with small RTTs.
Gerrit Renker8a508ac2006-12-03 14:50:23 -0200528 */
Gerrit Renker5d0dbc42006-11-27 20:32:37 -0200529 hctx->ccid3hctx_t_rto = max_t(u32, 4 * hctx->ccid3hctx_rtt,
Gerrit Renker8a508ac2006-12-03 14:50:23 -0200530 CONFIG_IP_DCCP_CCID3_RTO *
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200531 (USEC_PER_SEC/1000));
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -0300532 /*
533 * Schedule no feedback timer to expire in
Gerrit Renker8a508ac2006-12-03 14:50:23 -0200534 * max(t_RTO, 2 * s/X) = max(t_RTO, 2 * t_ipi)
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -0300535 */
Gerrit Renker8a508ac2006-12-03 14:50:23 -0200536 t_nfb = max(hctx->ccid3hctx_t_rto, 2 * hctx->ccid3hctx_t_ipi);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700537
Gerrit Renkera9672412006-12-10 00:14:12 -0200538 ccid3_pr_debug("%s(%p), Scheduled no feedback timer to "
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200539 "expire in %lu jiffies (%luus)\n",
540 dccp_role(sk),
Gerrit Renkera9672412006-12-10 00:14:12 -0200541 sk, usecs_to_jiffies(t_nfb), t_nfb);
542
543 sk_reset_timer(sk, &hctx->ccid3hctx_no_feedback_timer,
Gerrit Renker2a1fda62006-11-28 18:34:34 -0200544 jiffies + usecs_to_jiffies(t_nfb));
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700545
546 /* set idle flag */
Gerrit Renkerbf58a382006-12-10 00:04:43 -0200547 hctx->ccid3hctx_idle = 1;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700548 break;
Gerrit Renker151a9932007-03-07 12:53:48 -0800549 case TFRC_SSTATE_NO_SENT: /* fall through */
Gerrit Renker5e19e3f2006-11-27 12:28:48 -0200550 case TFRC_SSTATE_TERM: /* ignore feedback when closing */
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700551 break;
552 }
553}
554
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700555static int ccid3_hc_tx_parse_options(struct sock *sk, unsigned char option,
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -0300556 unsigned char len, u16 idx,
557 unsigned char *value)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700558{
559 int rc = 0;
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300560 const struct dccp_sock *dp = dccp_sk(sk);
561 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700562 struct ccid3_options_received *opt_recv;
563
Arnaldo Carvalho de Melo59d203f2005-09-09 20:01:25 -0300564 BUG_ON(hctx == NULL);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700565
566 opt_recv = &hctx->ccid3hctx_options_received;
567
568 if (opt_recv->ccid3or_seqno != dp->dccps_gsr) {
569 opt_recv->ccid3or_seqno = dp->dccps_gsr;
570 opt_recv->ccid3or_loss_event_rate = ~0;
571 opt_recv->ccid3or_loss_intervals_idx = 0;
572 opt_recv->ccid3or_loss_intervals_len = 0;
573 opt_recv->ccid3or_receive_rate = 0;
574 }
575
576 switch (option) {
577 case TFRC_OPT_LOSS_EVENT_RATE:
Arnaldo Carvalho de Melo59d203f2005-09-09 20:01:25 -0300578 if (unlikely(len != 4)) {
Gerrit Renkera9672412006-12-10 00:14:12 -0200579 DCCP_WARN("%s(%p), invalid len %d "
Gerrit Renker59348b12006-11-20 18:39:23 -0200580 "for TFRC_OPT_LOSS_EVENT_RATE\n",
581 dccp_role(sk), sk, len);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700582 rc = -EINVAL;
583 } else {
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200584 opt_recv->ccid3or_loss_event_rate =
585 ntohl(*(__be32 *)value);
Gerrit Renkera9672412006-12-10 00:14:12 -0200586 ccid3_pr_debug("%s(%p), LOSS_EVENT_RATE=%u\n",
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700587 dccp_role(sk), sk,
588 opt_recv->ccid3or_loss_event_rate);
589 }
590 break;
591 case TFRC_OPT_LOSS_INTERVALS:
592 opt_recv->ccid3or_loss_intervals_idx = idx;
593 opt_recv->ccid3or_loss_intervals_len = len;
Gerrit Renkera9672412006-12-10 00:14:12 -0200594 ccid3_pr_debug("%s(%p), LOSS_INTERVALS=(%u, %u)\n",
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700595 dccp_role(sk), sk,
596 opt_recv->ccid3or_loss_intervals_idx,
597 opt_recv->ccid3or_loss_intervals_len);
598 break;
599 case TFRC_OPT_RECEIVE_RATE:
Arnaldo Carvalho de Melo59d203f2005-09-09 20:01:25 -0300600 if (unlikely(len != 4)) {
Gerrit Renkera9672412006-12-10 00:14:12 -0200601 DCCP_WARN("%s(%p), invalid len %d "
Gerrit Renker59348b12006-11-20 18:39:23 -0200602 "for TFRC_OPT_RECEIVE_RATE\n",
603 dccp_role(sk), sk, len);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700604 rc = -EINVAL;
605 } else {
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200606 opt_recv->ccid3or_receive_rate =
607 ntohl(*(__be32 *)value);
Gerrit Renkera9672412006-12-10 00:14:12 -0200608 ccid3_pr_debug("%s(%p), RECEIVE_RATE=%u\n",
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700609 dccp_role(sk), sk,
610 opt_recv->ccid3or_receive_rate);
611 }
612 break;
613 }
614
615 return rc;
616}
617
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800618static int ccid3_hc_tx_init(struct ccid *ccid, struct sock *sk)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700619{
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800620 struct ccid3_hc_tx_sock *hctx = ccid_priv(ccid);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700621
Gerrit Renker78ad7132006-11-28 19:22:33 -0200622 hctx->ccid3hctx_s = 0;
Gerrit Renkerfe0499a2006-12-10 00:06:01 -0200623 hctx->ccid3hctx_rtt = 0;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700624 hctx->ccid3hctx_state = TFRC_SSTATE_NO_SENT;
625 INIT_LIST_HEAD(&hctx->ccid3hctx_hist);
Arnaldo Carvalho de Meloaa5d7df2006-03-20 17:35:13 -0800626
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200627 hctx->ccid3hctx_no_feedback_timer.function =
628 ccid3_hc_tx_no_feedback_timer;
Arnaldo Carvalho de Meloaa5d7df2006-03-20 17:35:13 -0800629 hctx->ccid3hctx_no_feedback_timer.data = (unsigned long)sk;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700630 init_timer(&hctx->ccid3hctx_no_feedback_timer);
631
632 return 0;
633}
634
635static void ccid3_hc_tx_exit(struct sock *sk)
636{
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300637 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700638
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700639 BUG_ON(hctx == NULL);
640
641 ccid3_hc_tx_set_state(sk, TFRC_SSTATE_TERM);
642 sk_stop_timer(sk, &hctx->ccid3hctx_no_feedback_timer);
643
644 /* Empty packet history */
Arnaldo Carvalho de Melo8c60f3f2005-08-10 12:59:38 -0300645 dccp_tx_hist_purge(ccid3_tx_hist, &hctx->ccid3hctx_hist);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700646}
647
Gerrit Renker9bf17472007-03-20 13:11:24 -0300648static void ccid3_hc_tx_get_info(struct sock *sk, struct tcp_info *info)
649{
650 const struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700651
Gerrit Renker9bf17472007-03-20 13:11:24 -0300652 /* Listen socks doesn't have a private CCID block */
653 if (sk->sk_state == DCCP_LISTEN)
654 return;
655
656 BUG_ON(hctx == NULL);
657
658 info->tcpi_rto = hctx->ccid3hctx_t_rto;
659 info->tcpi_rtt = hctx->ccid3hctx_rtt;
660}
661
662static int ccid3_hc_tx_getsockopt(struct sock *sk, const int optname, int len,
663 u32 __user *optval, int __user *optlen)
664{
665 const struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
666 const void *val;
667
668 /* Listen socks doesn't have a private CCID block */
669 if (sk->sk_state == DCCP_LISTEN)
670 return -EINVAL;
671
672 switch (optname) {
673 case DCCP_SOCKOPT_CCID_TX_INFO:
674 if (len < sizeof(hctx->ccid3hctx_tfrc))
675 return -EINVAL;
676 len = sizeof(hctx->ccid3hctx_tfrc);
677 val = &hctx->ccid3hctx_tfrc;
678 break;
679 default:
680 return -ENOPROTOOPT;
681 }
682
683 if (put_user(len, optlen) || copy_to_user(optval, val, len))
684 return -EFAULT;
685
686 return 0;
687}
688
689/*
690 * Receiver Half-Connection Routines
691 */
Gerrit Renker56724aa2006-11-20 18:28:09 -0200692#ifdef CONFIG_IP_DCCP_CCID3_DEBUG
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700693static const char *ccid3_rx_state_name(enum ccid3_hc_rx_states state)
694{
695 static char *ccid3_rx_state_names[] = {
696 [TFRC_RSTATE_NO_DATA] = "NO_DATA",
697 [TFRC_RSTATE_DATA] = "DATA",
698 [TFRC_RSTATE_TERM] = "TERM",
699 };
700
701 return ccid3_rx_state_names[state];
702}
703#endif
704
Arnaldo Carvalho de Meloc25a18b2006-03-20 21:58:56 -0800705static void ccid3_hc_rx_set_state(struct sock *sk,
706 enum ccid3_hc_rx_states state)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700707{
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300708 struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700709 enum ccid3_hc_rx_states oldstate = hcrx->ccid3hcrx_state;
710
711 ccid3_pr_debug("%s(%p) %-8.8s -> %s\n",
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -0300712 dccp_role(sk), sk, ccid3_rx_state_name(oldstate),
713 ccid3_rx_state_name(state));
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700714 WARN_ON(state == oldstate);
715 hcrx->ccid3hcrx_state = state;
716}
717
Gerrit Renker78ad7132006-11-28 19:22:33 -0200718static inline void ccid3_hc_rx_update_s(struct ccid3_hc_rx_sock *hcrx, int len)
719{
720 if (unlikely(len == 0)) /* don't update on empty packets (e.g. ACKs) */
721 ccid3_pr_debug("Packet payload length is 0 - not updating\n");
722 else
723 hcrx->ccid3hcrx_s = hcrx->ccid3hcrx_s == 0 ? len :
724 (9 * hcrx->ccid3hcrx_s + len) / 10;
725}
726
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700727static void ccid3_hc_rx_send_feedback(struct sock *sk)
728{
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300729 struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700730 struct dccp_sock *dp = dccp_sk(sk);
Arnaldo Carvalho de Melo8c60f3f2005-08-10 12:59:38 -0300731 struct dccp_rx_hist_entry *packet;
Arnaldo Carvalho de Meloe7a81c62007-08-19 17:15:37 -0700732 struct timeval tnow;
733 ktime_t now;
Gerrit Renker0f9e5b52006-12-10 00:03:51 -0200734 suseconds_t delta;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700735
Gerrit Renkera9672412006-12-10 00:14:12 -0200736 ccid3_pr_debug("%s(%p) - entry \n", dccp_role(sk), sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700737
Arnaldo Carvalho de Meloe7a81c62007-08-19 17:15:37 -0700738 now = ktime_get_real();
Arnaldo Carvalho de Melob6ee3d42005-08-27 18:18:18 -0300739
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700740 switch (hcrx->ccid3hcrx_state) {
741 case TFRC_RSTATE_NO_DATA:
742 hcrx->ccid3hcrx_x_recv = 0;
743 break;
Gerrit Renker0f9e5b52006-12-10 00:03:51 -0200744 case TFRC_RSTATE_DATA:
Arnaldo Carvalho de Meloe7a81c62007-08-19 17:15:37 -0700745 delta = ktime_us_delta(now,
746 hcrx->ccid3hcrx_tstamp_last_feedback);
Gerrit Renker0f9e5b52006-12-10 00:03:51 -0200747 DCCP_BUG_ON(delta < 0);
Gerrit Renkerb9039a22006-12-10 00:02:51 -0200748 hcrx->ccid3hcrx_x_recv =
749 scaled_div32(hcrx->ccid3hcrx_bytes_recv, delta);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700750 break;
Gerrit Renker59348b12006-11-20 18:39:23 -0200751 case TFRC_RSTATE_TERM:
Gerrit Renkera9672412006-12-10 00:14:12 -0200752 DCCP_BUG("%s(%p) - Illegal state TERM", dccp_role(sk), sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700753 return;
754 }
755
Arnaldo Carvalho de Melo8c60f3f2005-08-10 12:59:38 -0300756 packet = dccp_rx_hist_find_data_packet(&hcrx->ccid3hcrx_hist);
Arnaldo Carvalho de Melo59d203f2005-09-09 20:01:25 -0300757 if (unlikely(packet == NULL)) {
Gerrit Renkera9672412006-12-10 00:14:12 -0200758 DCCP_WARN("%s(%p), no data packet in history!\n",
Gerrit Renker59348b12006-11-20 18:39:23 -0200759 dccp_role(sk), sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700760 return;
761 }
762
Arnaldo Carvalho de Melob6ee3d42005-08-27 18:18:18 -0300763 hcrx->ccid3hcrx_tstamp_last_feedback = now;
Ian McDonald66a377c2006-08-26 23:40:50 -0700764 hcrx->ccid3hcrx_ccval_last_counter = packet->dccphrx_ccval;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700765 hcrx->ccid3hcrx_bytes_recv = 0;
766
Gerrit Renker0f9e5b52006-12-10 00:03:51 -0200767 /* Elapsed time information [RFC 4340, 13.2] in units of 10 * usecs */
Arnaldo Carvalho de Meloe7a81c62007-08-19 17:15:37 -0700768 tnow = ktime_to_timeval(now);
769 delta = timeval_delta(&tnow, &packet->dccphrx_tstamp);
Gerrit Renker0f9e5b52006-12-10 00:03:51 -0200770 DCCP_BUG_ON(delta < 0);
771 hcrx->ccid3hcrx_elapsed_time = delta / 10;
Gerrit Renker45393a62006-12-09 23:59:14 -0200772
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700773 if (hcrx->ccid3hcrx_p == 0)
Gerrit Renker45393a62006-12-09 23:59:14 -0200774 hcrx->ccid3hcrx_pinv = ~0U; /* see RFC 4342, 8.5 */
775 else if (hcrx->ccid3hcrx_p > 1000000) {
776 DCCP_WARN("p (%u) > 100%%\n", hcrx->ccid3hcrx_p);
777 hcrx->ccid3hcrx_pinv = 1; /* use 100% in this case */
778 } else
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700779 hcrx->ccid3hcrx_pinv = 1000000 / hcrx->ccid3hcrx_p;
Gerrit Renker45393a62006-12-09 23:59:14 -0200780
Arnaldo Carvalho de Melo507d37c2005-09-09 02:30:07 -0300781 dp->dccps_hc_rx_insert_options = 1;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700782 dccp_send_ack(sk);
783}
784
Arnaldo Carvalho de Melo2d0817d2006-03-20 22:32:06 -0800785static int ccid3_hc_rx_insert_options(struct sock *sk, struct sk_buff *skb)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700786{
Arnaldo Carvalho de Melo59d203f2005-09-09 20:01:25 -0300787 const struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
Andrea Bittau60fe62e2006-03-20 19:23:32 -0800788 __be32 x_recv, pinv;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700789
Arnaldo Carvalho de Melo59d203f2005-09-09 20:01:25 -0300790 BUG_ON(hcrx == NULL);
791
792 if (!(sk->sk_state == DCCP_OPEN || sk->sk_state == DCCP_PARTOPEN))
Arnaldo Carvalho de Melo2d0817d2006-03-20 22:32:06 -0800793 return 0;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700794
Ian McDonald66a377c2006-08-26 23:40:50 -0700795 DCCP_SKB_CB(skb)->dccpd_ccval = hcrx->ccid3hcrx_ccval_last_counter;
Arnaldo Carvalho de Melo4fded332005-08-23 21:51:59 -0700796
797 if (dccp_packet_without_ack(skb))
Arnaldo Carvalho de Melo2d0817d2006-03-20 22:32:06 -0800798 return 0;
799
Arnaldo Carvalho de Melo4fded332005-08-23 21:51:59 -0700800 x_recv = htonl(hcrx->ccid3hcrx_x_recv);
801 pinv = htonl(hcrx->ccid3hcrx_pinv);
Arnaldo Carvalho de Melo2d0817d2006-03-20 22:32:06 -0800802
803 if ((hcrx->ccid3hcrx_elapsed_time != 0 &&
804 dccp_insert_option_elapsed_time(sk, skb,
805 hcrx->ccid3hcrx_elapsed_time)) ||
806 dccp_insert_option_timestamp(sk, skb) ||
807 dccp_insert_option(sk, skb, TFRC_OPT_LOSS_EVENT_RATE,
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200808 &pinv, sizeof(pinv)) ||
Arnaldo Carvalho de Melo2d0817d2006-03-20 22:32:06 -0800809 dccp_insert_option(sk, skb, TFRC_OPT_RECEIVE_RATE,
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200810 &x_recv, sizeof(x_recv)))
Arnaldo Carvalho de Melo2d0817d2006-03-20 22:32:06 -0800811 return -1;
812
813 return 0;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700814}
815
Ian McDonald66a377c2006-08-26 23:40:50 -0700816static int ccid3_hc_rx_detect_loss(struct sock *sk,
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900817 struct dccp_rx_hist_entry *packet)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700818{
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300819 struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200820 struct dccp_rx_hist_entry *rx_hist =
821 dccp_rx_hist_head(&hcrx->ccid3hcrx_hist);
Ian McDonald66a377c2006-08-26 23:40:50 -0700822 u64 seqno = packet->dccphrx_seqno;
823 u64 tmp_seqno;
824 int loss = 0;
825 u8 ccval;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700826
Ian McDonald66a377c2006-08-26 23:40:50 -0700827
828 tmp_seqno = hcrx->ccid3hcrx_seqno_nonloss;
829
830 if (!rx_hist ||
831 follows48(packet->dccphrx_seqno, hcrx->ccid3hcrx_seqno_nonloss)) {
832 hcrx->ccid3hcrx_seqno_nonloss = seqno;
833 hcrx->ccid3hcrx_ccval_nonloss = packet->dccphrx_ccval;
834 goto detect_out;
835 }
836
837
838 while (dccp_delta_seqno(hcrx->ccid3hcrx_seqno_nonloss, seqno)
839 > TFRC_RECV_NUM_LATE_LOSS) {
Arnaldo Carvalho de Meloe7a81c62007-08-19 17:15:37 -0700840 struct timeval tstamp =
841 ktime_to_timeval(hcrx->ccid3hcrx_tstamp_last_feedback);
Ian McDonald66a377c2006-08-26 23:40:50 -0700842 loss = 1;
Arnaldo Carvalho de Melocc4d6a32007-05-28 18:53:08 -0300843 dccp_li_update_li(sk,
Arnaldo Carvalho de Melocc0a9102007-06-14 17:41:28 -0300844 &hcrx->ccid3hcrx_li_hist,
845 &hcrx->ccid3hcrx_hist,
Arnaldo Carvalho de Meloe7a81c62007-08-19 17:15:37 -0700846 &tstamp,
Arnaldo Carvalho de Melocc0a9102007-06-14 17:41:28 -0300847 hcrx->ccid3hcrx_s,
848 hcrx->ccid3hcrx_bytes_recv,
849 hcrx->ccid3hcrx_x_recv,
850 hcrx->ccid3hcrx_seqno_nonloss,
851 hcrx->ccid3hcrx_ccval_nonloss);
Ian McDonald66a377c2006-08-26 23:40:50 -0700852 tmp_seqno = hcrx->ccid3hcrx_seqno_nonloss;
853 dccp_inc_seqno(&tmp_seqno);
854 hcrx->ccid3hcrx_seqno_nonloss = tmp_seqno;
855 dccp_inc_seqno(&tmp_seqno);
856 while (dccp_rx_hist_find_entry(&hcrx->ccid3hcrx_hist,
857 tmp_seqno, &ccval)) {
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200858 hcrx->ccid3hcrx_seqno_nonloss = tmp_seqno;
Ian McDonald66a377c2006-08-26 23:40:50 -0700859 hcrx->ccid3hcrx_ccval_nonloss = ccval;
860 dccp_inc_seqno(&tmp_seqno);
861 }
862 }
863
864 /* FIXME - this code could be simplified with above while */
865 /* but works at moment */
866 if (follows48(packet->dccphrx_seqno, hcrx->ccid3hcrx_seqno_nonloss)) {
867 hcrx->ccid3hcrx_seqno_nonloss = seqno;
868 hcrx->ccid3hcrx_ccval_nonloss = packet->dccphrx_ccval;
869 }
870
871detect_out:
872 dccp_rx_hist_add_packet(ccid3_rx_hist, &hcrx->ccid3hcrx_hist,
873 &hcrx->ccid3hcrx_li_hist, packet,
874 hcrx->ccid3hcrx_seqno_nonloss);
875 return loss;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700876}
877
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700878static void ccid3_hc_rx_packet_recv(struct sock *sk, struct sk_buff *skb)
879{
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300880 struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
Arnaldo Carvalho de Melo4fded332005-08-23 21:51:59 -0700881 const struct dccp_options_received *opt_recv;
Arnaldo Carvalho de Melo8c60f3f2005-08-10 12:59:38 -0300882 struct dccp_rx_hist_entry *packet;
Gerrit Renker7dfee1a2007-03-20 15:24:37 -0300883 u32 p_prev, r_sample, rtt_prev;
Gerrit Renker78ad7132006-11-28 19:22:33 -0200884 int loss, payload_size;
Arnaldo Carvalho de Melo9823b7b2007-08-19 17:16:35 -0700885 ktime_t now;
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -0300886
Gerrit Renker59348b12006-11-20 18:39:23 -0200887 BUG_ON(hcrx == NULL);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700888
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300889 opt_recv = &dccp_sk(sk)->dccps_options_received;
Arnaldo Carvalho de Melo4fded332005-08-23 21:51:59 -0700890
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700891 switch (DCCP_SKB_CB(skb)->dccpd_type) {
892 case DCCP_PKT_ACK:
893 if (hcrx->ccid3hcrx_state == TFRC_RSTATE_NO_DATA)
894 return;
Arnaldo Carvalho de Melo9823b7b2007-08-19 17:16:35 -0700895 case DCCP_PKT_DATAACK:
Arnaldo Carvalho de Melo4fded332005-08-23 21:51:59 -0700896 if (opt_recv->dccpor_timestamp_echo == 0)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700897 break;
Ian McDonald66a377c2006-08-26 23:40:50 -0700898 rtt_prev = hcrx->ccid3hcrx_rtt;
Arnaldo Carvalho de Melo9823b7b2007-08-19 17:16:35 -0700899 now = ktime_get_real();
900 r_sample = dccp_sample_rtt(sk, now, NULL);
Arnaldo Carvalho de Melob3a30772005-09-09 02:34:10 -0300901
902 if (hcrx->ccid3hcrx_state == TFRC_RSTATE_NO_DATA)
903 hcrx->ccid3hcrx_rtt = r_sample;
904 else
905 hcrx->ccid3hcrx_rtt = (hcrx->ccid3hcrx_rtt * 9) / 10 +
906 r_sample / 10;
907
Ian McDonald66a377c2006-08-26 23:40:50 -0700908 if (rtt_prev != hcrx->ccid3hcrx_rtt)
Gerrit Renkera9672412006-12-10 00:14:12 -0200909 ccid3_pr_debug("%s(%p), New RTT=%uus, elapsed time=%u\n",
910 dccp_role(sk), sk, hcrx->ccid3hcrx_rtt,
Arnaldo Carvalho de Melo4fded332005-08-23 21:51:59 -0700911 opt_recv->dccpor_elapsed_time);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700912 break;
913 case DCCP_PKT_DATA:
914 break;
Arnaldo Carvalho de Melo59d203f2005-09-09 20:01:25 -0300915 default: /* We're not interested in other packet types, move along */
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700916 return;
917 }
918
Arnaldo Carvalho de Melob0e56782005-09-09 02:38:35 -0300919 packet = dccp_rx_hist_entry_new(ccid3_rx_hist, sk, opt_recv->dccpor_ndp,
Christoph Lameter54e6ecb2006-12-06 20:33:16 -0800920 skb, GFP_ATOMIC);
Arnaldo Carvalho de Melo59d203f2005-09-09 20:01:25 -0300921 if (unlikely(packet == NULL)) {
Gerrit Renkera9672412006-12-10 00:14:12 -0200922 DCCP_WARN("%s(%p), Not enough mem to add rx packet "
Gerrit Renker59348b12006-11-20 18:39:23 -0200923 "to history, consider it lost!\n", dccp_role(sk), sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700924 return;
925 }
926
Ian McDonald66a377c2006-08-26 23:40:50 -0700927 loss = ccid3_hc_rx_detect_loss(sk, packet);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700928
929 if (DCCP_SKB_CB(skb)->dccpd_type == DCCP_PKT_ACK)
930 return;
931
Gerrit Renker78ad7132006-11-28 19:22:33 -0200932 payload_size = skb->len - dccp_hdr(skb)->dccph_doff * 4;
933 ccid3_hc_rx_update_s(hcrx, payload_size);
934
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700935 switch (hcrx->ccid3hcrx_state) {
936 case TFRC_RSTATE_NO_DATA:
Gerrit Renkera9672412006-12-10 00:14:12 -0200937 ccid3_pr_debug("%s(%p, state=%s), skb=%p, sending initial "
938 "feedback\n", dccp_role(sk), sk,
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -0300939 dccp_state_name(sk->sk_state), skb);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700940 ccid3_hc_rx_send_feedback(sk);
941 ccid3_hc_rx_set_state(sk, TFRC_RSTATE_DATA);
942 return;
Arnaldo Carvalho de Melo9823b7b2007-08-19 17:16:35 -0700943 case TFRC_RSTATE_DATA:
Gerrit Renker78ad7132006-11-28 19:22:33 -0200944 hcrx->ccid3hcrx_bytes_recv += payload_size;
Ian McDonald66a377c2006-08-26 23:40:50 -0700945 if (loss)
Arnaldo Carvalho de Melob6ee3d42005-08-27 18:18:18 -0300946 break;
947
Arnaldo Carvalho de Melo1faf0a12007-08-19 17:15:13 -0700948 now = ktime_get_real();
949 if ((ktime_us_delta(now, hcrx->ccid3hcrx_tstamp_last_ack) -
950 (s64)hcrx->ccid3hcrx_rtt) >= 0) {
Arnaldo Carvalho de Melob6ee3d42005-08-27 18:18:18 -0300951 hcrx->ccid3hcrx_tstamp_last_ack = now;
952 ccid3_hc_rx_send_feedback(sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700953 }
Arnaldo Carvalho de Melob6ee3d42005-08-27 18:18:18 -0300954 return;
Gerrit Renker59348b12006-11-20 18:39:23 -0200955 case TFRC_RSTATE_TERM:
Gerrit Renkera9672412006-12-10 00:14:12 -0200956 DCCP_BUG("%s(%p) - Illegal state TERM", dccp_role(sk), sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700957 return;
958 }
959
960 /* Dealing with packet loss */
Gerrit Renkera9672412006-12-10 00:14:12 -0200961 ccid3_pr_debug("%s(%p, state=%s), data loss! Reacting...\n",
Arnaldo Carvalho de Melo4fded332005-08-23 21:51:59 -0700962 dccp_role(sk), sk, dccp_state_name(sk->sk_state));
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700963
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700964 p_prev = hcrx->ccid3hcrx_p;
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900965
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700966 /* Calculate loss event rate */
Ian McDonaldc0996662006-03-03 17:54:46 -0800967 if (!list_empty(&hcrx->ccid3hcrx_li_hist)) {
968 u32 i_mean = dccp_li_hist_calc_i_mean(&hcrx->ccid3hcrx_li_hist);
969
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700970 /* Scaling up by 1000000 as fixed decimal */
Ian McDonaldc0996662006-03-03 17:54:46 -0800971 if (i_mean != 0)
972 hcrx->ccid3hcrx_p = 1000000 / i_mean;
Gerrit Renker59348b12006-11-20 18:39:23 -0200973 } else
974 DCCP_BUG("empty loss history");
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700975
976 if (hcrx->ccid3hcrx_p > p_prev) {
977 ccid3_hc_rx_send_feedback(sk);
978 return;
979 }
980}
981
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800982static int ccid3_hc_rx_init(struct ccid *ccid, struct sock *sk)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700983{
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800984 struct ccid3_hc_rx_sock *hcrx = ccid_priv(ccid);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700985
Gerrit Renkera9672412006-12-10 00:14:12 -0200986 ccid3_pr_debug("entry\n");
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700987
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700988 hcrx->ccid3hcrx_state = TFRC_RSTATE_NO_DATA;
989 INIT_LIST_HEAD(&hcrx->ccid3hcrx_hist);
Arnaldo Carvalho de Meloae6706f2005-08-27 23:03:09 -0300990 INIT_LIST_HEAD(&hcrx->ccid3hcrx_li_hist);
Arnaldo Carvalho de Melo1faf0a12007-08-19 17:15:13 -0700991 hcrx->ccid3hcrx_tstamp_last_feedback =
Arnaldo Carvalho de Meloe7a81c62007-08-19 17:15:37 -0700992 hcrx->ccid3hcrx_tstamp_last_ack = ktime_get_real();
Gerrit Renker78ad7132006-11-28 19:22:33 -0200993 hcrx->ccid3hcrx_s = 0;
Gerrit Renkerfe0499a2006-12-10 00:06:01 -0200994 hcrx->ccid3hcrx_rtt = 0;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700995 return 0;
996}
997
998static void ccid3_hc_rx_exit(struct sock *sk)
999{
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -03001000 struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001001
Arnaldo Carvalho de Melo59d203f2005-09-09 20:01:25 -03001002 BUG_ON(hcrx == NULL);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001003
1004 ccid3_hc_rx_set_state(sk, TFRC_RSTATE_TERM);
1005
1006 /* Empty packet history */
Arnaldo Carvalho de Melo8c60f3f2005-08-10 12:59:38 -03001007 dccp_rx_hist_purge(ccid3_rx_hist, &hcrx->ccid3hcrx_hist);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001008
1009 /* Empty loss interval history */
Arnaldo Carvalho de Melocc4d6a32007-05-28 18:53:08 -03001010 dccp_li_hist_purge(&hcrx->ccid3hcrx_li_hist);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001011}
1012
Arnaldo Carvalho de Melo2babe1f2005-08-23 21:52:35 -07001013static void ccid3_hc_rx_get_info(struct sock *sk, struct tcp_info *info)
1014{
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -03001015 const struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
Arnaldo Carvalho de Melo2babe1f2005-08-23 21:52:35 -07001016
Arnaldo Carvalho de Melo59c23532005-09-12 14:16:58 -07001017 /* Listen socks doesn't have a private CCID block */
1018 if (sk->sk_state == DCCP_LISTEN)
1019 return;
1020
Arnaldo Carvalho de Melo59d203f2005-09-09 20:01:25 -03001021 BUG_ON(hcrx == NULL);
Arnaldo Carvalho de Melo2babe1f2005-08-23 21:52:35 -07001022
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -02001023 info->tcpi_ca_state = hcrx->ccid3hcrx_state;
1024 info->tcpi_options |= TCPI_OPT_TIMESTAMPS;
1025 info->tcpi_rcv_rtt = hcrx->ccid3hcrx_rtt;
Arnaldo Carvalho de Melo2babe1f2005-08-23 21:52:35 -07001026}
1027
Arnaldo Carvalho de Melo88f964d2005-09-18 00:19:32 -07001028static int ccid3_hc_rx_getsockopt(struct sock *sk, const int optname, int len,
1029 u32 __user *optval, int __user *optlen)
1030{
1031 const struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
1032 const void *val;
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +09001033
Arnaldo Carvalho de Melo88f964d2005-09-18 00:19:32 -07001034 /* Listen socks doesn't have a private CCID block */
1035 if (sk->sk_state == DCCP_LISTEN)
1036 return -EINVAL;
1037
1038 switch (optname) {
1039 case DCCP_SOCKOPT_CCID_RX_INFO:
1040 if (len < sizeof(hcrx->ccid3hcrx_tfrc))
1041 return -EINVAL;
1042 len = sizeof(hcrx->ccid3hcrx_tfrc);
1043 val = &hcrx->ccid3hcrx_tfrc;
1044 break;
1045 default:
1046 return -ENOPROTOOPT;
1047 }
1048
1049 if (put_user(len, optlen) || copy_to_user(optval, val, len))
1050 return -EFAULT;
1051
1052 return 0;
1053}
1054
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -08001055static struct ccid_operations ccid3 = {
Ian McDonald3dd9a7c2006-09-22 14:26:44 +12001056 .ccid_id = DCCPC_CCID3,
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001057 .ccid_name = "ccid3",
1058 .ccid_owner = THIS_MODULE,
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -08001059 .ccid_hc_tx_obj_size = sizeof(struct ccid3_hc_tx_sock),
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001060 .ccid_hc_tx_init = ccid3_hc_tx_init,
1061 .ccid_hc_tx_exit = ccid3_hc_tx_exit,
1062 .ccid_hc_tx_send_packet = ccid3_hc_tx_send_packet,
1063 .ccid_hc_tx_packet_sent = ccid3_hc_tx_packet_sent,
1064 .ccid_hc_tx_packet_recv = ccid3_hc_tx_packet_recv,
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001065 .ccid_hc_tx_parse_options = ccid3_hc_tx_parse_options,
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -08001066 .ccid_hc_rx_obj_size = sizeof(struct ccid3_hc_rx_sock),
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001067 .ccid_hc_rx_init = ccid3_hc_rx_init,
1068 .ccid_hc_rx_exit = ccid3_hc_rx_exit,
1069 .ccid_hc_rx_insert_options = ccid3_hc_rx_insert_options,
1070 .ccid_hc_rx_packet_recv = ccid3_hc_rx_packet_recv,
Arnaldo Carvalho de Melo2babe1f2005-08-23 21:52:35 -07001071 .ccid_hc_rx_get_info = ccid3_hc_rx_get_info,
1072 .ccid_hc_tx_get_info = ccid3_hc_tx_get_info,
Arnaldo Carvalho de Melo88f964d2005-09-18 00:19:32 -07001073 .ccid_hc_rx_getsockopt = ccid3_hc_rx_getsockopt,
1074 .ccid_hc_tx_getsockopt = ccid3_hc_tx_getsockopt,
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001075};
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -02001076
Gerrit Renker56724aa2006-11-20 18:28:09 -02001077#ifdef CONFIG_IP_DCCP_CCID3_DEBUG
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001078module_param(ccid3_debug, int, 0444);
1079MODULE_PARM_DESC(ccid3_debug, "Enable debug messages");
Gerrit Renker56724aa2006-11-20 18:28:09 -02001080#endif
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001081
1082static __init int ccid3_module_init(void)
1083{
Arnaldo Carvalho de Melo8c60f3f2005-08-10 12:59:38 -03001084 int rc = -ENOBUFS;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001085
Arnaldo Carvalho de Melo8c60f3f2005-08-10 12:59:38 -03001086 ccid3_rx_hist = dccp_rx_hist_new("ccid3");
1087 if (ccid3_rx_hist == NULL)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001088 goto out;
1089
Arnaldo Carvalho de Melo8c60f3f2005-08-10 12:59:38 -03001090 ccid3_tx_hist = dccp_tx_hist_new("ccid3");
1091 if (ccid3_tx_hist == NULL)
1092 goto out_free_rx;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001093
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001094 rc = ccid_register(&ccid3);
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -02001095 if (rc != 0)
Arnaldo Carvalho de Melocc4d6a32007-05-28 18:53:08 -03001096 goto out_free_tx;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001097out:
1098 return rc;
Arnaldo Carvalho de Melo8c60f3f2005-08-10 12:59:38 -03001099
Arnaldo Carvalho de Melo8c60f3f2005-08-10 12:59:38 -03001100out_free_tx:
1101 dccp_tx_hist_delete(ccid3_tx_hist);
1102 ccid3_tx_hist = NULL;
1103out_free_rx:
1104 dccp_rx_hist_delete(ccid3_rx_hist);
1105 ccid3_rx_hist = NULL;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001106 goto out;
1107}
1108module_init(ccid3_module_init);
1109
1110static __exit void ccid3_module_exit(void)
1111{
1112 ccid_unregister(&ccid3);
1113
Arnaldo Carvalho de Melo8c60f3f2005-08-10 12:59:38 -03001114 if (ccid3_tx_hist != NULL) {
1115 dccp_tx_hist_delete(ccid3_tx_hist);
1116 ccid3_tx_hist = NULL;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001117 }
Arnaldo Carvalho de Melo8c60f3f2005-08-10 12:59:38 -03001118 if (ccid3_rx_hist != NULL) {
1119 dccp_rx_hist_delete(ccid3_rx_hist);
1120 ccid3_rx_hist = NULL;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001121 }
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001122}
1123module_exit(ccid3_module_exit);
1124
Ian McDonalde6bccd32006-08-26 19:01:30 -07001125MODULE_AUTHOR("Ian McDonald <ian.mcdonald@jandi.co.nz>, "
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -03001126 "Arnaldo Carvalho de Melo <acme@ghostprotocols.net>");
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001127MODULE_DESCRIPTION("DCCP TFRC CCID3 CCID");
1128MODULE_LICENSE("GPL");
1129MODULE_ALIAS("net-dccp-ccid-3");