blob: dc6e41883315ae79fae2fd04d2b95f5d9eaf6844 [file] [log] [blame]
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001/*
2 * net/dccp/ccids/ccid3.c
3 *
4 * Copyright (c) 2005 The University of Waikato, Hamilton, New Zealand.
Ian McDonalde6bccd32006-08-26 19:01:30 -07005 * Copyright (c) 2005-6 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 Meloae6706f2005-08-27 23:03:09 -030052static struct dccp_li_hist *ccid3_li_hist;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -070053
Gerrit Renker9bf17472007-03-20 13:11:24 -030054/*
55 * Transmitter Half-Connection Routines
56 */
Gerrit Renker56724aa2006-11-20 18:28:09 -020057#ifdef CONFIG_IP_DCCP_CCID3_DEBUG
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -070058static const char *ccid3_tx_state_name(enum ccid3_hc_tx_states state)
59{
60 static char *ccid3_state_names[] = {
61 [TFRC_SSTATE_NO_SENT] = "NO_SENT",
62 [TFRC_SSTATE_NO_FBACK] = "NO_FBACK",
63 [TFRC_SSTATE_FBACK] = "FBACK",
64 [TFRC_SSTATE_TERM] = "TERM",
65 };
66
67 return ccid3_state_names[state];
68}
69#endif
70
Arnaldo Carvalho de Meloc25a18b2006-03-20 21:58:56 -080071static void ccid3_hc_tx_set_state(struct sock *sk,
72 enum ccid3_hc_tx_states state)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -070073{
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -030074 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -070075 enum ccid3_hc_tx_states oldstate = hctx->ccid3hctx_state;
76
77 ccid3_pr_debug("%s(%p) %-8.8s -> %s\n",
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -030078 dccp_role(sk), sk, ccid3_tx_state_name(oldstate),
79 ccid3_tx_state_name(state));
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -070080 WARN_ON(state == oldstate);
81 hctx->ccid3hctx_state = state;
82}
83
Gerrit Renker17893bc2006-11-27 20:31:33 -020084/*
Gerrit Renker1266ade2007-03-20 14:56:11 -030085 * Recalculate t_ipi and delta (should be called whenever X changes)
Gerrit Renker17893bc2006-11-27 20:31:33 -020086 */
Gerrit Renker1266ade2007-03-20 14:56:11 -030087static inline void ccid3_update_send_interval(struct ccid3_hc_tx_sock *hctx)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -070088{
Gerrit Renker1a21e492006-12-10 00:02:12 -020089 /* Calculate new t_ipi = s / X_inst (X_inst is in 64 * bytes/second) */
90 hctx->ccid3hctx_t_ipi = scaled_div(hctx->ccid3hctx_s,
91 hctx->ccid3hctx_x >> 6);
Gerrit Renker17893bc2006-11-27 20:31:33 -020092
Gerrit Renker17893bc2006-11-27 20:31:33 -020093 /* Calculate new delta by delta = min(t_ipi / 2, t_gran / 2) */
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -030094 hctx->ccid3hctx_delta = min_t(u32, hctx->ccid3hctx_t_ipi / 2,
95 TFRC_OPSYS_HALF_TIME_GRAN);
Ian McDonald8699be72007-03-20 14:49:20 -030096
Gerrit Renker1761f7d2007-03-20 15:04:30 -030097 ccid3_pr_debug("t_ipi=%u, delta=%u, s=%u, X=%u\n",
Ian McDonald8699be72007-03-20 14:49:20 -030098 hctx->ccid3hctx_t_ipi, hctx->ccid3hctx_delta,
Gerrit Renker1761f7d2007-03-20 15:04:30 -030099 hctx->ccid3hctx_s, (unsigned)(hctx->ccid3hctx_x >> 6));
Ian McDonald8699be72007-03-20 14:49:20 -0300100
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700101}
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700102/*
103 * Update X by
104 * If (p > 0)
Gerrit Renker5c3fbb62006-12-03 14:50:56 -0200105 * X_calc = calcX(s, R, p);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700106 * X = max(min(X_calc, 2 * X_recv), s / t_mbi);
107 * Else
108 * If (now - tld >= R)
109 * X = max(min(2 * X, 2 * X_recv), s / R);
110 * tld = now;
Gerrit Renker5c3fbb62006-12-03 14:50:56 -0200111 *
Gerrit Renker1a21e492006-12-10 00:02:12 -0200112 * Note: X and X_recv are both stored in units of 64 * bytes/second, to support
113 * fine-grained resolution of sending rates. This requires scaling by 2^6
114 * throughout the code. Only X_calc is unscaled (in bytes/second).
115 *
Gerrit Renker1a21e492006-12-10 00:02:12 -0200116 */
Gerrit Renkera79ef762006-11-28 19:51:42 -0200117static void ccid3_hc_tx_update_x(struct sock *sk, struct timeval *now)
118
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700119{
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300120 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
Gerrit Renker1a21e492006-12-10 00:02:12 -0200121 const __u64 old_x = hctx->ccid3hctx_x;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700122
Gerrit Renker44158302006-12-03 14:53:07 -0200123 if (hctx->ccid3hctx_p > 0) {
Gerrit Renker1a21e492006-12-10 00:02:12 -0200124
Gerrit Renker9e8efc82006-12-10 00:24:57 -0200125 hctx->ccid3hctx_x = min(((__u64)hctx->ccid3hctx_x_calc) << 6,
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200126 hctx->ccid3hctx_x_recv * 2);
Gerrit Renker9e8efc82006-12-10 00:24:57 -0200127 hctx->ccid3hctx_x = max(hctx->ccid3hctx_x,
128 (((__u64)hctx->ccid3hctx_s) << 6) /
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200129 TFRC_T_MBI);
Arnaldo Carvalho de Melob6ee3d42005-08-27 18:18:18 -0300130
Gerrit Renker0f9e5b52006-12-10 00:03:51 -0200131 } else if (timeval_delta(now, &hctx->ccid3hctx_t_ld) -
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200132 (suseconds_t)hctx->ccid3hctx_rtt >= 0) {
Gerrit Renker1a21e492006-12-10 00:02:12 -0200133
Gerrit Renker9e8efc82006-12-10 00:24:57 -0200134 hctx->ccid3hctx_x =
135 max(2 * min(hctx->ccid3hctx_x, hctx->ccid3hctx_x_recv),
136 scaled_div(((__u64)hctx->ccid3hctx_s) << 6,
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200137 hctx->ccid3hctx_rtt));
Gerrit Renkera79ef762006-11-28 19:51:42 -0200138 hctx->ccid3hctx_t_ld = *now;
Gerrit Renkerff586292006-12-10 00:00:14 -0200139 }
Gerrit Renkera79ef762006-11-28 19:51:42 -0200140
Ian McDonald8699be72007-03-20 14:49:20 -0300141 if (hctx->ccid3hctx_x != old_x) {
Gerrit Renker1761f7d2007-03-20 15:04:30 -0300142 ccid3_pr_debug("X_prev=%u, X_now=%u, X_calc=%u, "
143 "X_recv=%u\n", (unsigned)(old_x >> 6),
144 (unsigned)(hctx->ccid3hctx_x >> 6),
145 hctx->ccid3hctx_x_calc,
146 (unsigned)(hctx->ccid3hctx_x_recv >> 6));
Ian McDonald8699be72007-03-20 14:49:20 -0300147
Gerrit Renker1266ade2007-03-20 14:56:11 -0300148 ccid3_update_send_interval(hctx);
Ian McDonald8699be72007-03-20 14:49:20 -0300149 }
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700150}
151
Gerrit Renker78ad7132006-11-28 19:22:33 -0200152/*
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200153 * Track the mean packet size `s' (cf. RFC 4342, 5.3 and RFC 3448, 4.1)
154 * @len: DCCP packet payload size in bytes
Gerrit Renker78ad7132006-11-28 19:22:33 -0200155 */
156static inline void ccid3_hc_tx_update_s(struct ccid3_hc_tx_sock *hctx, int len)
157{
Gerrit Renker1266ade2007-03-20 14:56:11 -0300158 const u16 old_s = hctx->ccid3hctx_s;
159
160 hctx->ccid3hctx_s = old_s == 0 ? len : (9 * old_s + len) / 10;
161
162 if (hctx->ccid3hctx_s != old_s)
163 ccid3_update_send_interval(hctx);
Gerrit Renker78ad7132006-11-28 19:22:33 -0200164}
165
Gerrit Renker9f8681d2006-12-10 00:07:37 -0200166/*
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200167 * Update Window Counter using the algorithm from [RFC 4342, 8.1].
168 * The algorithm is not applicable if RTT < 4 microseconds.
Gerrit Renker9f8681d2006-12-10 00:07:37 -0200169 */
170static inline void ccid3_hc_tx_update_win_count(struct ccid3_hc_tx_sock *hctx,
171 struct timeval *now)
172{
173 suseconds_t delta;
174 u32 quarter_rtts;
175
176 if (unlikely(hctx->ccid3hctx_rtt < 4)) /* avoid divide-by-zero */
177 return;
178
179 delta = timeval_delta(now, &hctx->ccid3hctx_t_last_win_count);
180 DCCP_BUG_ON(delta < 0);
181
182 quarter_rtts = (u32)delta / (hctx->ccid3hctx_rtt / 4);
183
184 if (quarter_rtts > 0) {
185 hctx->ccid3hctx_t_last_win_count = *now;
186 hctx->ccid3hctx_last_win_count += min_t(u32, quarter_rtts, 5);
187 hctx->ccid3hctx_last_win_count &= 0xF; /* mod 16 */
188
189 ccid3_pr_debug("now at %#X\n", hctx->ccid3hctx_last_win_count);
190 }
191}
192
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700193static void ccid3_hc_tx_no_feedback_timer(unsigned long data)
194{
195 struct sock *sk = (struct sock *)data;
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300196 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
Gerrit Renker2a1fda62006-11-28 18:34:34 -0200197 unsigned long t_nfb = USEC_PER_SEC / 5;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700198
199 bh_lock_sock(sk);
200 if (sock_owned_by_user(sk)) {
201 /* Try again later. */
202 /* XXX: set some sensible MIB */
Gerrit Renker48e03ee2006-11-27 20:29:27 -0200203 goto restart_timer;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700204 }
205
Gerrit Renkera9672412006-12-10 00:14:12 -0200206 ccid3_pr_debug("%s(%p, state=%s) - entry \n", dccp_role(sk), sk,
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700207 ccid3_tx_state_name(hctx->ccid3hctx_state));
Gerrit Renkera9672412006-12-10 00:14:12 -0200208
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700209 switch (hctx->ccid3hctx_state) {
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700210 case TFRC_SSTATE_NO_FBACK:
Gerrit Renkera79ef762006-11-28 19:51:42 -0200211 /* RFC 3448, 4.4: Halve send rate directly */
Gerrit Renker9e8efc82006-12-10 00:24:57 -0200212 hctx->ccid3hctx_x = max(hctx->ccid3hctx_x / 2,
213 (((__u64)hctx->ccid3hctx_s) << 6) /
214 TFRC_T_MBI);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700215
Gerrit Renkera9672412006-12-10 00:14:12 -0200216 ccid3_pr_debug("%s(%p, state=%s), updated tx rate to %u "
217 "bytes/s\n", dccp_role(sk), sk,
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -0300218 ccid3_tx_state_name(hctx->ccid3hctx_state),
Gerrit Renker1a21e492006-12-10 00:02:12 -0200219 (unsigned)(hctx->ccid3hctx_x >> 6));
Gerrit Renker48e03ee2006-11-27 20:29:27 -0200220 /* The value of R is still undefined and so we can not recompute
221 * the timout value. Keep initial value as per [RFC 4342, 5]. */
Gerrit Renker2a1fda62006-11-28 18:34:34 -0200222 t_nfb = TFRC_INITIAL_TIMEOUT;
Gerrit Renker1266ade2007-03-20 14:56:11 -0300223 ccid3_update_send_interval(hctx);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700224 break;
225 case TFRC_SSTATE_FBACK:
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -0300226 /*
227 * Check if IDLE since last timeout and recv rate is less than
Gerrit Renker1a21e492006-12-10 00:02:12 -0200228 * 4 packets (in units of 64*bytes/sec) per RTT
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -0300229 */
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -0300230 if (!hctx->ccid3hctx_idle ||
Gerrit Renker1a21e492006-12-10 00:02:12 -0200231 (hctx->ccid3hctx_x_recv >= 4 *
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200232 scaled_div(((__u64)hctx->ccid3hctx_s) << 6,
233 hctx->ccid3hctx_rtt))) {
Gerrit Renkera79ef762006-11-28 19:51:42 -0200234 struct timeval now;
235
Gerrit Renkera9672412006-12-10 00:14:12 -0200236 ccid3_pr_debug("%s(%p, state=%s), not idle\n",
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -0300237 dccp_role(sk), sk,
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200238 ccid3_tx_state_name(hctx->ccid3hctx_state));
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700239
Gerrit Renkerff586292006-12-10 00:00:14 -0200240 /*
241 * Modify the cached value of X_recv [RFC 3448, 4.4]
242 *
243 * If (p == 0 || X_calc > 2 * X_recv)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700244 * X_recv = max(X_recv / 2, s / (2 * t_mbi));
245 * Else
246 * X_recv = X_calc / 4;
Gerrit Renker1a21e492006-12-10 00:02:12 -0200247 *
248 * Note that X_recv is scaled by 2^6 while X_calc is not
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700249 */
Gerrit Renker44158302006-12-03 14:53:07 -0200250 BUG_ON(hctx->ccid3hctx_p && !hctx->ccid3hctx_x_calc);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700251
Gerrit Renker44158302006-12-03 14:53:07 -0200252 if (hctx->ccid3hctx_p == 0 ||
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200253 (hctx->ccid3hctx_x_calc >
254 (hctx->ccid3hctx_x_recv >> 5))) {
Gerrit Renker1a21e492006-12-10 00:02:12 -0200255
256 hctx->ccid3hctx_x_recv =
Gerrit Renker9e8efc82006-12-10 00:24:57 -0200257 max(hctx->ccid3hctx_x_recv / 2,
258 (((__u64)hctx->ccid3hctx_s) << 6) /
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200259 (2 * TFRC_T_MBI));
Gerrit Renker1a21e492006-12-10 00:02:12 -0200260
Gerrit Renkerff586292006-12-10 00:00:14 -0200261 if (hctx->ccid3hctx_p == 0)
262 dccp_timestamp(sk, &now);
Gerrit Renker9e8efc82006-12-10 00:24:57 -0200263 } else {
264 hctx->ccid3hctx_x_recv = hctx->ccid3hctx_x_calc;
265 hctx->ccid3hctx_x_recv <<= 4;
266 }
Gerrit Renkerff586292006-12-10 00:00:14 -0200267 /* Now recalculate X [RFC 3448, 4.3, step (4)] */
Gerrit Renkera79ef762006-11-28 19:51:42 -0200268 ccid3_hc_tx_update_x(sk, &now);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700269 }
Arnaldo Carvalho de Melo6b5e6332005-08-27 20:11:28 -0300270 /*
271 * Schedule no feedback timer to expire in
Gerrit Renker8a508ac2006-12-03 14:50:23 -0200272 * max(t_RTO, 2 * s/X) = max(t_RTO, 2 * t_ipi)
273 * See comments in packet_recv() regarding the value of t_RTO.
Arnaldo Carvalho de Melo6b5e6332005-08-27 20:11:28 -0300274 */
Gerrit Renker8a508ac2006-12-03 14:50:23 -0200275 t_nfb = max(hctx->ccid3hctx_t_rto, 2 * hctx->ccid3hctx_t_ipi);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700276 break;
Gerrit Renker59348b12006-11-20 18:39:23 -0200277 case TFRC_SSTATE_NO_SENT:
Gerrit Renkera9672412006-12-10 00:14:12 -0200278 DCCP_BUG("%s(%p) - Illegal state NO_SENT", dccp_role(sk), sk);
Gerrit Renker59348b12006-11-20 18:39:23 -0200279 /* fall through */
280 case TFRC_SSTATE_TERM:
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700281 goto out;
282 }
283
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700284 hctx->ccid3hctx_idle = 1;
Gerrit Renker48e03ee2006-11-27 20:29:27 -0200285
286restart_timer:
287 sk_reset_timer(sk, &hctx->ccid3hctx_no_feedback_timer,
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900288 jiffies + usecs_to_jiffies(t_nfb));
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700289out:
290 bh_unlock_sock(sk);
291 sock_put(sk);
292}
293
Gerrit Renker7da7f452006-11-27 12:26:03 -0200294/*
295 * returns
296 * > 0: delay (in msecs) that should pass before actually sending
297 * = 0: can send immediately
298 * < 0: error condition; do not send packet
299 */
Gerrit Renker6b57c932006-11-28 19:55:06 -0200300static int ccid3_hc_tx_send_packet(struct sock *sk, struct sk_buff *skb)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700301{
302 struct dccp_sock *dp = dccp_sk(sk);
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300303 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700304 struct timeval now;
Gerrit Renker0f9e5b52006-12-10 00:03:51 -0200305 suseconds_t delay;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700306
Gerrit Renker59348b12006-11-20 18:39:23 -0200307 BUG_ON(hctx == NULL);
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -0300308
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700309 /*
Gerrit Renkerda335ba2006-11-27 12:26:57 -0200310 * This function is called only for Data and DataAck packets. Sending
311 * zero-sized Data(Ack)s is theoretically possible, but for congestion
312 * control this case is pathological - ignore it.
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700313 */
Gerrit Renker6b57c932006-11-28 19:55:06 -0200314 if (unlikely(skb->len == 0))
Gerrit Renkerda335ba2006-11-27 12:26:57 -0200315 return -EBADMSG;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700316
Arnaldo Carvalho de Melob0e56782005-09-09 02:38:35 -0300317 dccp_timestamp(sk, &now);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700318
319 switch (hctx->ccid3hctx_state) {
320 case TFRC_SSTATE_NO_SENT:
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -0300321 sk_reset_timer(sk, &hctx->ccid3hctx_no_feedback_timer,
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200322 (jiffies +
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900323 usecs_to_jiffies(TFRC_INITIAL_TIMEOUT)));
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700324 hctx->ccid3hctx_last_win_count = 0;
325 hctx->ccid3hctx_t_last_win_count = now;
326 ccid3_hc_tx_set_state(sk, TFRC_SSTATE_NO_FBACK);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700327
Gerrit Renker1a21e492006-12-10 00:02:12 -0200328 /* Set initial sending rate X/s to 1pps (X is scaled by 2^6) */
Gerrit Renker1266ade2007-03-20 14:56:11 -0300329 hctx->ccid3hctx_x = hctx->ccid3hctx_s = skb->len;
Gerrit Renker9e8efc82006-12-10 00:24:57 -0200330 hctx->ccid3hctx_x <<= 6;
Gerrit Renker78ad7132006-11-28 19:22:33 -0200331
Gerrit Renker90feeb92006-11-27 12:13:38 -0200332 /* First timeout, according to [RFC 3448, 4.2], is 1 second */
333 hctx->ccid3hctx_t_ipi = USEC_PER_SEC;
334 /* Initial delta: minimum of 0.5 sec and t_gran/2 */
335 hctx->ccid3hctx_delta = TFRC_OPSYS_HALF_TIME_GRAN;
336
337 /* Set t_0 for initial packet */
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700338 hctx->ccid3hctx_t_nom = now;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700339 break;
340 case TFRC_SSTATE_NO_FBACK:
341 case TFRC_SSTATE_FBACK:
Gerrit Renker91cf5a12006-11-27 12:25:10 -0200342 delay = timeval_delta(&hctx->ccid3hctx_t_nom, &now);
Ian McDonald8699be72007-03-20 14:49:20 -0300343 ccid3_pr_debug("delay=%ld\n", (long)delay);
Gerrit Renker91cf5a12006-11-27 12:25:10 -0200344 /*
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200345 * Scheduling of packet transmissions [RFC 3448, 4.6]
Gerrit Renker91cf5a12006-11-27 12:25:10 -0200346 *
347 * if (t_now > t_nom - delta)
348 * // send the packet now
349 * else
350 * // send the packet in (t_nom - t_now) milliseconds.
351 */
Gerrit Renker0f9e5b52006-12-10 00:03:51 -0200352 if (delay - (suseconds_t)hctx->ccid3hctx_delta >= 0)
Gerrit Renker7da7f452006-11-27 12:26:03 -0200353 return delay / 1000L;
Gerrit Renker9f8681d2006-12-10 00:07:37 -0200354
355 ccid3_hc_tx_update_win_count(hctx, &now);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700356 break;
Gerrit Renker59348b12006-11-20 18:39:23 -0200357 case TFRC_SSTATE_TERM:
Gerrit Renkera9672412006-12-10 00:14:12 -0200358 DCCP_BUG("%s(%p) - Illegal state TERM", dccp_role(sk), sk);
Gerrit Renker7da7f452006-11-27 12:26:03 -0200359 return -EINVAL;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700360 }
361
Gerrit Renker7da7f452006-11-27 12:26:03 -0200362 /* prepare to send now (add options etc.) */
363 dp->dccps_hc_tx_insert_options = 1;
Gerrit Renkere312d102006-12-10 00:08:09 -0200364 DCCP_SKB_CB(skb)->dccpd_ccval = hctx->ccid3hctx_last_win_count;
365
366 /* set the nominal send time for the next following packet */
Gerrit Renker7da7f452006-11-27 12:26:03 -0200367 timeval_add_usecs(&hctx->ccid3hctx_t_nom, hctx->ccid3hctx_t_ipi);
368
369 return 0;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700370}
371
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200372static void ccid3_hc_tx_packet_sent(struct sock *sk, int more,
373 unsigned int len)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700374{
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300375 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700376 struct timeval now;
Gerrit Renker6b57c932006-11-28 19:55:06 -0200377 struct dccp_tx_hist_entry *packet;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700378
Gerrit Renker59348b12006-11-20 18:39:23 -0200379 BUG_ON(hctx == NULL);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700380
Gerrit Renker6b57c932006-11-28 19:55:06 -0200381 ccid3_hc_tx_update_s(hctx, len);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700382
Gerrit Renkerc5a1ae92006-12-10 00:09:21 -0200383 packet = dccp_tx_hist_entry_new(ccid3_tx_hist, GFP_ATOMIC);
Gerrit Renker6b57c932006-11-28 19:55:06 -0200384 if (unlikely(packet == NULL)) {
Gerrit Renkerc5a1ae92006-12-10 00:09:21 -0200385 DCCP_CRIT("packet history - out of memory!");
Gerrit Renker6b57c932006-11-28 19:55:06 -0200386 return;
387 }
Gerrit Renkerc5a1ae92006-12-10 00:09:21 -0200388 dccp_tx_hist_add_entry(&hctx->ccid3hctx_hist, packet);
389
390 dccp_timestamp(sk, &now);
Gerrit Renker6b57c932006-11-28 19:55:06 -0200391 packet->dccphtx_tstamp = now;
Gerrit Renkerc5a1ae92006-12-10 00:09:21 -0200392 packet->dccphtx_seqno = dccp_sk(sk)->dccps_gss;
393 packet->dccphtx_rtt = hctx->ccid3hctx_rtt;
394 packet->dccphtx_sent = 1;
395 hctx->ccid3hctx_idle = 0;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700396}
397
398static void ccid3_hc_tx_packet_recv(struct sock *sk, struct sk_buff *skb)
399{
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300400 const struct dccp_sock *dp = dccp_sk(sk);
401 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700402 struct ccid3_options_received *opt_recv;
Arnaldo Carvalho de Melo8c60f3f2005-08-10 12:59:38 -0300403 struct dccp_tx_hist_entry *packet;
Arnaldo Carvalho de Melob0e56782005-09-09 02:38:35 -0300404 struct timeval now;
Gerrit Renker2a1fda62006-11-28 18:34:34 -0200405 unsigned long t_nfb;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700406 u32 pinv;
Arnaldo Carvalho de Melo1fba78b2006-12-10 15:39:29 -0200407 suseconds_t r_sample, t_elapsed;
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -0300408
Gerrit Renker59348b12006-11-20 18:39:23 -0200409 BUG_ON(hctx == NULL);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700410
411 /* we are only interested in ACKs */
412 if (!(DCCP_SKB_CB(skb)->dccpd_type == DCCP_PKT_ACK ||
413 DCCP_SKB_CB(skb)->dccpd_type == DCCP_PKT_DATAACK))
414 return;
415
416 opt_recv = &hctx->ccid3hctx_options_received;
417
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700418 switch (hctx->ccid3hctx_state) {
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700419 case TFRC_SSTATE_NO_FBACK:
420 case TFRC_SSTATE_FBACK:
Gerrit Renker5c3fbb62006-12-03 14:50:56 -0200421 /* get packet from history to look up t_recvdata */
Arnaldo Carvalho de Melo8c60f3f2005-08-10 12:59:38 -0300422 packet = dccp_tx_hist_find_entry(&hctx->ccid3hctx_hist,
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200423 DCCP_SKB_CB(skb)->dccpd_ack_seq);
Arnaldo Carvalho de Melo59d203f2005-09-09 20:01:25 -0300424 if (unlikely(packet == NULL)) {
Gerrit Renker5c3fbb62006-12-03 14:50:56 -0200425 DCCP_WARN("%s(%p), seqno %llu(%s) doesn't exist "
Gerrit Renker59348b12006-11-20 18:39:23 -0200426 "in history!\n", dccp_role(sk), sk,
Arnaldo Carvalho de Melo59d203f2005-09-09 20:01:25 -0300427 (unsigned long long)DCCP_SKB_CB(skb)->dccpd_ack_seq,
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200428 dccp_packet_name(DCCP_SKB_CB(skb)->dccpd_type));
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700429 return;
430 }
431
Gerrit Renker1a21e492006-12-10 00:02:12 -0200432 /* Update receive rate in units of 64 * bytes/second */
Gerrit Renker9e8efc82006-12-10 00:24:57 -0200433 hctx->ccid3hctx_x_recv = opt_recv->ccid3or_receive_rate;
434 hctx->ccid3hctx_x_recv <<= 6;
Gerrit Renker5c3fbb62006-12-03 14:50:56 -0200435
436 /* Update loss event rate */
437 pinv = opt_recv->ccid3or_loss_event_rate;
Gerrit Renker45393a62006-12-09 23:59:14 -0200438 if (pinv == ~0U || pinv == 0) /* see RFC 4342, 8.5 */
Gerrit Renker5c3fbb62006-12-03 14:50:56 -0200439 hctx->ccid3hctx_p = 0;
Gerrit Renker45393a62006-12-09 23:59:14 -0200440 else /* can not exceed 100% */
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200441 hctx->ccid3hctx_p = 1000000 / pinv;
Gerrit Renker5c3fbb62006-12-03 14:50:56 -0200442
Arnaldo Carvalho de Melob0e56782005-09-09 02:38:35 -0300443 dccp_timestamp(sk, &now);
Gerrit Renker5c3fbb62006-12-03 14:50:56 -0200444
445 /*
446 * Calculate new round trip sample as per [RFC 3448, 4.3] by
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200447 * R_sample = (now - t_recvdata) - t_elapsed
Gerrit Renker5c3fbb62006-12-03 14:50:56 -0200448 */
449 r_sample = timeval_delta(&now, &packet->dccphtx_tstamp);
450 t_elapsed = dp->dccps_options_received.dccpor_elapsed_time * 10;
451
Gerrit Renker0f9e5b52006-12-10 00:03:51 -0200452 DCCP_BUG_ON(r_sample < 0);
453 if (unlikely(r_sample <= t_elapsed))
Arnaldo Carvalho de Melo1fba78b2006-12-10 15:39:29 -0200454 DCCP_WARN("WARNING: r_sample=%dus <= t_elapsed=%dus\n",
455 (int)r_sample, (int)t_elapsed);
Arnaldo Carvalho de Melo1a285992005-09-09 02:32:56 -0300456 else
457 r_sample -= t_elapsed;
Gerrit Renkerde553c12006-12-10 00:06:32 -0200458 CCID3_RTT_SANITY_CHECK(r_sample);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700459
Gerrit Renkerde553c12006-12-10 00:06:32 -0200460 /* Update RTT estimate by
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700461 * If (No feedback recv)
462 * R = R_sample;
463 * Else
464 * R = q * R + (1 - q) * R_sample;
465 *
466 * q is a constant, RFC 3448 recomments 0.9
467 */
468 if (hctx->ccid3hctx_state == TFRC_SSTATE_NO_FBACK) {
Gerrit Renker1a21e492006-12-10 00:02:12 -0200469 /*
470 * Larger Initial Windows [RFC 4342, sec. 5]
Gerrit Renker1a21e492006-12-10 00:02:12 -0200471 */
Gerrit Renker371fe772007-03-20 14:28:44 -0300472 __u32 w_init = min(4 * dp->dccps_mss_cache,
473 max(2 * dp->dccps_mss_cache, 4380U));
Gerrit Renkera79ef762006-11-28 19:51:42 -0200474 hctx->ccid3hctx_rtt = r_sample;
Gerrit Renker9e8efc82006-12-10 00:24:57 -0200475 hctx->ccid3hctx_x = scaled_div(w_init << 6, r_sample);
Gerrit Renkera79ef762006-11-28 19:51:42 -0200476 hctx->ccid3hctx_t_ld = now;
477
Gerrit Renker1266ade2007-03-20 14:56:11 -0300478 ccid3_update_send_interval(hctx);
Gerrit Renker5c3fbb62006-12-03 14:50:56 -0200479
Gerrit Renker371fe772007-03-20 14:28:44 -0300480 ccid3_pr_debug("%s(%p), s=%u, MSS=%u, w_init=%u, "
Arnaldo Carvalho de Melo1fba78b2006-12-10 15:39:29 -0200481 "R_sample=%dus, X=%u\n", dccp_role(sk),
Andrew Morton0f084612007-02-05 18:18:21 -0800482 sk, hctx->ccid3hctx_s,
Gerrit Renker371fe772007-03-20 14:28:44 -0300483 dp->dccps_mss_cache,
484 w_init,
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200485 (int)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 +
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900491 (u32)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);
Gerrit Renkera79ef762006-11-28 19:51:42 -0200499 ccid3_hc_tx_update_x(sk, &now);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700500
Arnaldo Carvalho de Melo1fba78b2006-12-10 15:39:29 -0200501 ccid3_pr_debug("%s(%p), RTT=%uus (sample=%dus), 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),
Arnaldo Carvalho de Melo1fba78b2006-12-10 15:39:29 -0200504 sk, hctx->ccid3hctx_rtt, (int)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 Melob6ee3d42005-08-27 18:18:18 -0300732 struct timeval now;
Gerrit Renker0f9e5b52006-12-10 00:03:51 -0200733 suseconds_t delta;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700734
Gerrit Renkera9672412006-12-10 00:14:12 -0200735 ccid3_pr_debug("%s(%p) - entry \n", dccp_role(sk), sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700736
Arnaldo Carvalho de Melob0e56782005-09-09 02:38:35 -0300737 dccp_timestamp(sk, &now);
Arnaldo Carvalho de Melob6ee3d42005-08-27 18:18:18 -0300738
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700739 switch (hcrx->ccid3hcrx_state) {
740 case TFRC_RSTATE_NO_DATA:
741 hcrx->ccid3hcrx_x_recv = 0;
742 break;
Gerrit Renker0f9e5b52006-12-10 00:03:51 -0200743 case TFRC_RSTATE_DATA:
744 delta = timeval_delta(&now,
745 &hcrx->ccid3hcrx_tstamp_last_feedback);
746 DCCP_BUG_ON(delta < 0);
Gerrit Renkerb9039a22006-12-10 00:02:51 -0200747 hcrx->ccid3hcrx_x_recv =
748 scaled_div32(hcrx->ccid3hcrx_bytes_recv, delta);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700749 break;
Gerrit Renker59348b12006-11-20 18:39:23 -0200750 case TFRC_RSTATE_TERM:
Gerrit Renkera9672412006-12-10 00:14:12 -0200751 DCCP_BUG("%s(%p) - Illegal state TERM", dccp_role(sk), sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700752 return;
753 }
754
Arnaldo Carvalho de Melo8c60f3f2005-08-10 12:59:38 -0300755 packet = dccp_rx_hist_find_data_packet(&hcrx->ccid3hcrx_hist);
Arnaldo Carvalho de Melo59d203f2005-09-09 20:01:25 -0300756 if (unlikely(packet == NULL)) {
Gerrit Renkera9672412006-12-10 00:14:12 -0200757 DCCP_WARN("%s(%p), no data packet in history!\n",
Gerrit Renker59348b12006-11-20 18:39:23 -0200758 dccp_role(sk), sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700759 return;
760 }
761
Arnaldo Carvalho de Melob6ee3d42005-08-27 18:18:18 -0300762 hcrx->ccid3hcrx_tstamp_last_feedback = now;
Ian McDonald66a377c2006-08-26 23:40:50 -0700763 hcrx->ccid3hcrx_ccval_last_counter = packet->dccphrx_ccval;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700764 hcrx->ccid3hcrx_bytes_recv = 0;
765
Gerrit Renker0f9e5b52006-12-10 00:03:51 -0200766 /* Elapsed time information [RFC 4340, 13.2] in units of 10 * usecs */
767 delta = timeval_delta(&now, &packet->dccphrx_tstamp);
768 DCCP_BUG_ON(delta < 0);
769 hcrx->ccid3hcrx_elapsed_time = delta / 10;
Gerrit Renker45393a62006-12-09 23:59:14 -0200770
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700771 if (hcrx->ccid3hcrx_p == 0)
Gerrit Renker45393a62006-12-09 23:59:14 -0200772 hcrx->ccid3hcrx_pinv = ~0U; /* see RFC 4342, 8.5 */
773 else if (hcrx->ccid3hcrx_p > 1000000) {
774 DCCP_WARN("p (%u) > 100%%\n", hcrx->ccid3hcrx_p);
775 hcrx->ccid3hcrx_pinv = 1; /* use 100% in this case */
776 } else
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700777 hcrx->ccid3hcrx_pinv = 1000000 / hcrx->ccid3hcrx_p;
Gerrit Renker45393a62006-12-09 23:59:14 -0200778
Arnaldo Carvalho de Melo507d37c2005-09-09 02:30:07 -0300779 dp->dccps_hc_rx_insert_options = 1;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700780 dccp_send_ack(sk);
781}
782
Arnaldo Carvalho de Melo2d0817d2006-03-20 22:32:06 -0800783static int ccid3_hc_rx_insert_options(struct sock *sk, struct sk_buff *skb)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700784{
Arnaldo Carvalho de Melo59d203f2005-09-09 20:01:25 -0300785 const struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
Andrea Bittau60fe62e2006-03-20 19:23:32 -0800786 __be32 x_recv, pinv;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700787
Arnaldo Carvalho de Melo59d203f2005-09-09 20:01:25 -0300788 BUG_ON(hcrx == NULL);
789
790 if (!(sk->sk_state == DCCP_OPEN || sk->sk_state == DCCP_PARTOPEN))
Arnaldo Carvalho de Melo2d0817d2006-03-20 22:32:06 -0800791 return 0;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700792
Ian McDonald66a377c2006-08-26 23:40:50 -0700793 DCCP_SKB_CB(skb)->dccpd_ccval = hcrx->ccid3hcrx_ccval_last_counter;
Arnaldo Carvalho de Melo4fded332005-08-23 21:51:59 -0700794
795 if (dccp_packet_without_ack(skb))
Arnaldo Carvalho de Melo2d0817d2006-03-20 22:32:06 -0800796 return 0;
797
Arnaldo Carvalho de Melo4fded332005-08-23 21:51:59 -0700798 x_recv = htonl(hcrx->ccid3hcrx_x_recv);
799 pinv = htonl(hcrx->ccid3hcrx_pinv);
Arnaldo Carvalho de Melo2d0817d2006-03-20 22:32:06 -0800800
801 if ((hcrx->ccid3hcrx_elapsed_time != 0 &&
802 dccp_insert_option_elapsed_time(sk, skb,
803 hcrx->ccid3hcrx_elapsed_time)) ||
804 dccp_insert_option_timestamp(sk, skb) ||
805 dccp_insert_option(sk, skb, TFRC_OPT_LOSS_EVENT_RATE,
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200806 &pinv, sizeof(pinv)) ||
Arnaldo Carvalho de Melo2d0817d2006-03-20 22:32:06 -0800807 dccp_insert_option(sk, skb, TFRC_OPT_RECEIVE_RATE,
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200808 &x_recv, sizeof(x_recv)))
Arnaldo Carvalho de Melo2d0817d2006-03-20 22:32:06 -0800809 return -1;
810
811 return 0;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700812}
813
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700814/* calculate first loss interval
815 *
816 * returns estimated loss interval in usecs */
817
818static u32 ccid3_hc_rx_calc_first_li(struct sock *sk)
819{
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300820 struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
Arnaldo Carvalho de Melo8c60f3f2005-08-10 12:59:38 -0300821 struct dccp_rx_hist_entry *entry, *next, *tail = NULL;
Gerrit Renker0f9e5b52006-12-10 00:03:51 -0200822 u32 x_recv, p;
823 suseconds_t rtt, delta;
Arnaldo Carvalho de Melob6ee3d42005-08-27 18:18:18 -0300824 struct timeval tstamp = { 0, };
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700825 int interval = 0;
826 int win_count = 0;
827 int step = 0;
Gerrit Renkerbfe24a62006-12-10 00:03:30 -0200828 u64 fval;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700829
Arnaldo Carvalho de Melo8c60f3f2005-08-10 12:59:38 -0300830 list_for_each_entry_safe(entry, next, &hcrx->ccid3hcrx_hist,
831 dccphrx_node) {
832 if (dccp_rx_hist_entry_data_packet(entry)) {
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700833 tail = entry;
834
835 switch (step) {
836 case 0:
Arnaldo Carvalho de Melo8c60f3f2005-08-10 12:59:38 -0300837 tstamp = entry->dccphrx_tstamp;
Arnaldo Carvalho de Meloc1734372005-08-13 20:34:23 -0300838 win_count = entry->dccphrx_ccval;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700839 step = 1;
840 break;
841 case 1:
Arnaldo Carvalho de Meloc1734372005-08-13 20:34:23 -0300842 interval = win_count - entry->dccphrx_ccval;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700843 if (interval < 0)
844 interval += TFRC_WIN_COUNT_LIMIT;
845 if (interval > 4)
846 goto found;
847 break;
848 }
849 }
850 }
851
Arnaldo Carvalho de Melo59d203f2005-09-09 20:01:25 -0300852 if (unlikely(step == 0)) {
Gerrit Renkera9672412006-12-10 00:14:12 -0200853 DCCP_WARN("%s(%p), packet history has no data packets!\n",
Gerrit Renker59348b12006-11-20 18:39:23 -0200854 dccp_role(sk), sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700855 return ~0;
856 }
857
Arnaldo Carvalho de Melo59d203f2005-09-09 20:01:25 -0300858 if (unlikely(interval == 0)) {
Gerrit Renkera9672412006-12-10 00:14:12 -0200859 DCCP_WARN("%s(%p), Could not find a win_count interval > 0."
Gerrit Renker59348b12006-11-20 18:39:23 -0200860 "Defaulting to 1\n", dccp_role(sk), sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700861 interval = 1;
862 }
863found:
Ian McDonald66a377c2006-08-26 23:40:50 -0700864 if (!tail) {
Gerrit Renker59348b12006-11-20 18:39:23 -0200865 DCCP_CRIT("tail is null\n");
Ian McDonald66a377c2006-08-26 23:40:50 -0700866 return ~0;
867 }
Gerrit Renker0f9e5b52006-12-10 00:03:51 -0200868
869 delta = timeval_delta(&tstamp, &tail->dccphrx_tstamp);
870 DCCP_BUG_ON(delta < 0);
871
872 rtt = delta * 4 / interval;
Arnaldo Carvalho de Melo1fba78b2006-12-10 15:39:29 -0200873 ccid3_pr_debug("%s(%p), approximated RTT to %dus\n",
874 dccp_role(sk), sk, (int)rtt);
Gerrit Renker59348b12006-11-20 18:39:23 -0200875
Gerrit Renkerbfe24a62006-12-10 00:03:30 -0200876 /*
877 * Determine the length of the first loss interval via inverse lookup.
878 * Assume that X_recv can be computed by the throughput equation
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200879 * s
880 * X_recv = --------
881 * R * fval
Gerrit Renkerbfe24a62006-12-10 00:03:30 -0200882 * Find some p such that f(p) = fval; return 1/p [RFC 3448, 6.3.1].
883 */
884 if (rtt == 0) { /* would result in divide-by-zero */
Ian McDonald832e3ca2006-12-12 00:47:59 -0200885 DCCP_WARN("RTT==0\n");
886 return ~0;
Gerrit Renker59348b12006-11-20 18:39:23 -0200887 }
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700888
Arnaldo Carvalho de Melob0e56782005-09-09 02:38:35 -0300889 dccp_timestamp(sk, &tstamp);
890 delta = timeval_delta(&tstamp, &hcrx->ccid3hcrx_tstamp_last_feedback);
Gerrit Renker0f9e5b52006-12-10 00:03:51 -0200891 DCCP_BUG_ON(delta <= 0);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700892
Gerrit Renker0f9e5b52006-12-10 00:03:51 -0200893 x_recv = scaled_div32(hcrx->ccid3hcrx_bytes_recv, delta);
Gerrit Renkerbfe24a62006-12-10 00:03:30 -0200894 if (x_recv == 0) { /* would also trigger divide-by-zero */
895 DCCP_WARN("X_recv==0\n");
896 if ((x_recv = hcrx->ccid3hcrx_x_recv) == 0) {
897 DCCP_BUG("stored value of X_recv is zero");
Ian McDonald832e3ca2006-12-12 00:47:59 -0200898 return ~0;
Gerrit Renkerbfe24a62006-12-10 00:03:30 -0200899 }
Ian McDonald66a377c2006-08-26 23:40:50 -0700900 }
901
Gerrit Renkerbfe24a62006-12-10 00:03:30 -0200902 fval = scaled_div(hcrx->ccid3hcrx_s, rtt);
903 fval = scaled_div32(fval, x_recv);
Arnaldo Carvalho de Melo36729c12005-08-28 00:47:15 -0300904 p = tfrc_calc_x_reverse_lookup(fval);
Gerrit Renkerbfe24a62006-12-10 00:03:30 -0200905
Gerrit Renkera9672412006-12-10 00:14:12 -0200906 ccid3_pr_debug("%s(%p), receive rate=%u bytes/s, implied "
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -0300907 "loss rate=%u\n", dccp_role(sk), sk, x_recv, p);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700908
909 if (p == 0)
910 return ~0;
911 else
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200912 return 1000000 / p;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700913}
914
915static void ccid3_hc_rx_update_li(struct sock *sk, u64 seq_loss, u8 win_loss)
916{
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300917 struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
Ian McDonaldfc747e82006-08-29 17:50:19 -0700918 struct dccp_li_hist_entry *head;
Ian McDonald66a377c2006-08-26 23:40:50 -0700919 u64 seq_temp;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700920
Ian McDonald66a377c2006-08-26 23:40:50 -0700921 if (list_empty(&hcrx->ccid3hcrx_li_hist)) {
922 if (!dccp_li_hist_interval_new(ccid3_li_hist,
923 &hcrx->ccid3hcrx_li_hist, seq_loss, win_loss))
Arnaldo Carvalho de Meloae6706f2005-08-27 23:03:09 -0300924 return;
Ian McDonald66a377c2006-08-26 23:40:50 -0700925
Ian McDonaldfc747e82006-08-29 17:50:19 -0700926 head = list_entry(hcrx->ccid3hcrx_li_hist.next,
927 struct dccp_li_hist_entry, dccplih_node);
928 head->dccplih_interval = ccid3_hc_rx_calc_first_li(sk);
Ian McDonald66a377c2006-08-26 23:40:50 -0700929 } else {
930 struct dccp_li_hist_entry *entry;
931 struct list_head *tail;
932
Ian McDonaldfc747e82006-08-29 17:50:19 -0700933 head = list_entry(hcrx->ccid3hcrx_li_hist.next,
934 struct dccp_li_hist_entry, dccplih_node);
Ian McDonald66a377c2006-08-26 23:40:50 -0700935 /* FIXME win count check removed as was wrong */
936 /* should make this check with receive history */
937 /* and compare there as per section 10.2 of RFC4342 */
938
939 /* new loss event detected */
940 /* calculate last interval length */
941 seq_temp = dccp_delta_seqno(head->dccplih_seqno, seq_loss);
Christoph Lameter54e6ecb2006-12-06 20:33:16 -0800942 entry = dccp_li_hist_entry_new(ccid3_li_hist, GFP_ATOMIC);
Ian McDonald66a377c2006-08-26 23:40:50 -0700943
944 if (entry == NULL) {
Gerrit Renker59348b12006-11-20 18:39:23 -0200945 DCCP_BUG("out of memory - can not allocate entry");
Ian McDonald66a377c2006-08-26 23:40:50 -0700946 return;
947 }
948
949 list_add(&entry->dccplih_node, &hcrx->ccid3hcrx_li_hist);
950
951 tail = hcrx->ccid3hcrx_li_hist.prev;
952 list_del(tail);
953 kmem_cache_free(ccid3_li_hist->dccplih_slab, tail);
954
955 /* Create the newest interval */
956 entry->dccplih_seqno = seq_loss;
957 entry->dccplih_interval = seq_temp;
958 entry->dccplih_win_count = win_loss;
959 }
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700960}
961
Ian McDonald66a377c2006-08-26 23:40:50 -0700962static int ccid3_hc_rx_detect_loss(struct sock *sk,
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900963 struct dccp_rx_hist_entry *packet)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700964{
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300965 struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200966 struct dccp_rx_hist_entry *rx_hist =
967 dccp_rx_hist_head(&hcrx->ccid3hcrx_hist);
Ian McDonald66a377c2006-08-26 23:40:50 -0700968 u64 seqno = packet->dccphrx_seqno;
969 u64 tmp_seqno;
970 int loss = 0;
971 u8 ccval;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700972
Ian McDonald66a377c2006-08-26 23:40:50 -0700973
974 tmp_seqno = hcrx->ccid3hcrx_seqno_nonloss;
975
976 if (!rx_hist ||
977 follows48(packet->dccphrx_seqno, hcrx->ccid3hcrx_seqno_nonloss)) {
978 hcrx->ccid3hcrx_seqno_nonloss = seqno;
979 hcrx->ccid3hcrx_ccval_nonloss = packet->dccphrx_ccval;
980 goto detect_out;
981 }
982
983
984 while (dccp_delta_seqno(hcrx->ccid3hcrx_seqno_nonloss, seqno)
985 > TFRC_RECV_NUM_LATE_LOSS) {
986 loss = 1;
987 ccid3_hc_rx_update_li(sk, hcrx->ccid3hcrx_seqno_nonloss,
988 hcrx->ccid3hcrx_ccval_nonloss);
989 tmp_seqno = hcrx->ccid3hcrx_seqno_nonloss;
990 dccp_inc_seqno(&tmp_seqno);
991 hcrx->ccid3hcrx_seqno_nonloss = tmp_seqno;
992 dccp_inc_seqno(&tmp_seqno);
993 while (dccp_rx_hist_find_entry(&hcrx->ccid3hcrx_hist,
994 tmp_seqno, &ccval)) {
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200995 hcrx->ccid3hcrx_seqno_nonloss = tmp_seqno;
Ian McDonald66a377c2006-08-26 23:40:50 -0700996 hcrx->ccid3hcrx_ccval_nonloss = ccval;
997 dccp_inc_seqno(&tmp_seqno);
998 }
999 }
1000
1001 /* FIXME - this code could be simplified with above while */
1002 /* but works at moment */
1003 if (follows48(packet->dccphrx_seqno, hcrx->ccid3hcrx_seqno_nonloss)) {
1004 hcrx->ccid3hcrx_seqno_nonloss = seqno;
1005 hcrx->ccid3hcrx_ccval_nonloss = packet->dccphrx_ccval;
1006 }
1007
1008detect_out:
1009 dccp_rx_hist_add_packet(ccid3_rx_hist, &hcrx->ccid3hcrx_hist,
1010 &hcrx->ccid3hcrx_li_hist, packet,
1011 hcrx->ccid3hcrx_seqno_nonloss);
1012 return loss;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001013}
1014
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001015static void ccid3_hc_rx_packet_recv(struct sock *sk, struct sk_buff *skb)
1016{
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -03001017 struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
Arnaldo Carvalho de Melo4fded332005-08-23 21:51:59 -07001018 const struct dccp_options_received *opt_recv;
Arnaldo Carvalho de Melo8c60f3f2005-08-10 12:59:38 -03001019 struct dccp_rx_hist_entry *packet;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001020 struct timeval now;
Gerrit Renker0f9e5b52006-12-10 00:03:51 -02001021 u32 p_prev, rtt_prev;
1022 suseconds_t r_sample, t_elapsed;
Gerrit Renker78ad7132006-11-28 19:22:33 -02001023 int loss, payload_size;
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -03001024
Gerrit Renker59348b12006-11-20 18:39:23 -02001025 BUG_ON(hcrx == NULL);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001026
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -03001027 opt_recv = &dccp_sk(sk)->dccps_options_received;
Arnaldo Carvalho de Melo4fded332005-08-23 21:51:59 -07001028
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001029 switch (DCCP_SKB_CB(skb)->dccpd_type) {
1030 case DCCP_PKT_ACK:
1031 if (hcrx->ccid3hcrx_state == TFRC_RSTATE_NO_DATA)
1032 return;
1033 case DCCP_PKT_DATAACK:
Arnaldo Carvalho de Melo4fded332005-08-23 21:51:59 -07001034 if (opt_recv->dccpor_timestamp_echo == 0)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001035 break;
Ian McDonald66a377c2006-08-26 23:40:50 -07001036 rtt_prev = hcrx->ccid3hcrx_rtt;
Arnaldo Carvalho de Melob0e56782005-09-09 02:38:35 -03001037 dccp_timestamp(sk, &now);
Arnaldo Carvalho de Melob3a30772005-09-09 02:34:10 -03001038 timeval_sub_usecs(&now, opt_recv->dccpor_timestamp_echo * 10);
1039 r_sample = timeval_usecs(&now);
1040 t_elapsed = opt_recv->dccpor_elapsed_time * 10;
1041
Gerrit Renker0f9e5b52006-12-10 00:03:51 -02001042 DCCP_BUG_ON(r_sample < 0);
Arnaldo Carvalho de Melob3a30772005-09-09 02:34:10 -03001043 if (unlikely(r_sample <= t_elapsed))
Gerrit Renker0f9e5b52006-12-10 00:03:51 -02001044 DCCP_WARN("r_sample=%ldus, t_elapsed=%ldus\n",
Andrew Morton0f084612007-02-05 18:18:21 -08001045 (long)r_sample, (long)t_elapsed);
Arnaldo Carvalho de Melob3a30772005-09-09 02:34:10 -03001046 else
1047 r_sample -= t_elapsed;
Gerrit Renkerde553c12006-12-10 00:06:32 -02001048 CCID3_RTT_SANITY_CHECK(r_sample);
Arnaldo Carvalho de Melob3a30772005-09-09 02:34:10 -03001049
1050 if (hcrx->ccid3hcrx_state == TFRC_RSTATE_NO_DATA)
1051 hcrx->ccid3hcrx_rtt = r_sample;
1052 else
1053 hcrx->ccid3hcrx_rtt = (hcrx->ccid3hcrx_rtt * 9) / 10 +
1054 r_sample / 10;
1055
Ian McDonald66a377c2006-08-26 23:40:50 -07001056 if (rtt_prev != hcrx->ccid3hcrx_rtt)
Gerrit Renkera9672412006-12-10 00:14:12 -02001057 ccid3_pr_debug("%s(%p), New RTT=%uus, elapsed time=%u\n",
1058 dccp_role(sk), sk, hcrx->ccid3hcrx_rtt,
Arnaldo Carvalho de Melo4fded332005-08-23 21:51:59 -07001059 opt_recv->dccpor_elapsed_time);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001060 break;
1061 case DCCP_PKT_DATA:
1062 break;
Arnaldo Carvalho de Melo59d203f2005-09-09 20:01:25 -03001063 default: /* We're not interested in other packet types, move along */
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001064 return;
1065 }
1066
Arnaldo Carvalho de Melob0e56782005-09-09 02:38:35 -03001067 packet = dccp_rx_hist_entry_new(ccid3_rx_hist, sk, opt_recv->dccpor_ndp,
Christoph Lameter54e6ecb2006-12-06 20:33:16 -08001068 skb, GFP_ATOMIC);
Arnaldo Carvalho de Melo59d203f2005-09-09 20:01:25 -03001069 if (unlikely(packet == NULL)) {
Gerrit Renkera9672412006-12-10 00:14:12 -02001070 DCCP_WARN("%s(%p), Not enough mem to add rx packet "
Gerrit Renker59348b12006-11-20 18:39:23 -02001071 "to history, consider it lost!\n", dccp_role(sk), sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001072 return;
1073 }
1074
Ian McDonald66a377c2006-08-26 23:40:50 -07001075 loss = ccid3_hc_rx_detect_loss(sk, packet);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001076
1077 if (DCCP_SKB_CB(skb)->dccpd_type == DCCP_PKT_ACK)
1078 return;
1079
Gerrit Renker78ad7132006-11-28 19:22:33 -02001080 payload_size = skb->len - dccp_hdr(skb)->dccph_doff * 4;
1081 ccid3_hc_rx_update_s(hcrx, payload_size);
1082
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001083 switch (hcrx->ccid3hcrx_state) {
1084 case TFRC_RSTATE_NO_DATA:
Gerrit Renkera9672412006-12-10 00:14:12 -02001085 ccid3_pr_debug("%s(%p, state=%s), skb=%p, sending initial "
1086 "feedback\n", dccp_role(sk), sk,
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -03001087 dccp_state_name(sk->sk_state), skb);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001088 ccid3_hc_rx_send_feedback(sk);
1089 ccid3_hc_rx_set_state(sk, TFRC_RSTATE_DATA);
1090 return;
1091 case TFRC_RSTATE_DATA:
Gerrit Renker78ad7132006-11-28 19:22:33 -02001092 hcrx->ccid3hcrx_bytes_recv += payload_size;
Ian McDonald66a377c2006-08-26 23:40:50 -07001093 if (loss)
Arnaldo Carvalho de Melob6ee3d42005-08-27 18:18:18 -03001094 break;
1095
Arnaldo Carvalho de Melob0e56782005-09-09 02:38:35 -03001096 dccp_timestamp(sk, &now);
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -02001097 if ((timeval_delta(&now, &hcrx->ccid3hcrx_tstamp_last_ack) -
1098 (suseconds_t)hcrx->ccid3hcrx_rtt) >= 0) {
Arnaldo Carvalho de Melob6ee3d42005-08-27 18:18:18 -03001099 hcrx->ccid3hcrx_tstamp_last_ack = now;
1100 ccid3_hc_rx_send_feedback(sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001101 }
Arnaldo Carvalho de Melob6ee3d42005-08-27 18:18:18 -03001102 return;
Gerrit Renker59348b12006-11-20 18:39:23 -02001103 case TFRC_RSTATE_TERM:
Gerrit Renkera9672412006-12-10 00:14:12 -02001104 DCCP_BUG("%s(%p) - Illegal state TERM", dccp_role(sk), sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001105 return;
1106 }
1107
1108 /* Dealing with packet loss */
Gerrit Renkera9672412006-12-10 00:14:12 -02001109 ccid3_pr_debug("%s(%p, state=%s), data loss! Reacting...\n",
Arnaldo Carvalho de Melo4fded332005-08-23 21:51:59 -07001110 dccp_role(sk), sk, dccp_state_name(sk->sk_state));
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001111
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001112 p_prev = hcrx->ccid3hcrx_p;
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +09001113
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001114 /* Calculate loss event rate */
Ian McDonaldc0996662006-03-03 17:54:46 -08001115 if (!list_empty(&hcrx->ccid3hcrx_li_hist)) {
1116 u32 i_mean = dccp_li_hist_calc_i_mean(&hcrx->ccid3hcrx_li_hist);
1117
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001118 /* Scaling up by 1000000 as fixed decimal */
Ian McDonaldc0996662006-03-03 17:54:46 -08001119 if (i_mean != 0)
1120 hcrx->ccid3hcrx_p = 1000000 / i_mean;
Gerrit Renker59348b12006-11-20 18:39:23 -02001121 } else
1122 DCCP_BUG("empty loss history");
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001123
1124 if (hcrx->ccid3hcrx_p > p_prev) {
1125 ccid3_hc_rx_send_feedback(sk);
1126 return;
1127 }
1128}
1129
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -08001130static int ccid3_hc_rx_init(struct ccid *ccid, struct sock *sk)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001131{
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -08001132 struct ccid3_hc_rx_sock *hcrx = ccid_priv(ccid);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001133
Gerrit Renkera9672412006-12-10 00:14:12 -02001134 ccid3_pr_debug("entry\n");
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001135
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001136 hcrx->ccid3hcrx_state = TFRC_RSTATE_NO_DATA;
1137 INIT_LIST_HEAD(&hcrx->ccid3hcrx_hist);
Arnaldo Carvalho de Meloae6706f2005-08-27 23:03:09 -03001138 INIT_LIST_HEAD(&hcrx->ccid3hcrx_li_hist);
Arnaldo Carvalho de Melob0e56782005-09-09 02:38:35 -03001139 dccp_timestamp(sk, &hcrx->ccid3hcrx_tstamp_last_ack);
Arnaldo Carvalho de Melo954ee312005-09-09 02:37:05 -03001140 hcrx->ccid3hcrx_tstamp_last_feedback = hcrx->ccid3hcrx_tstamp_last_ack;
Gerrit Renker78ad7132006-11-28 19:22:33 -02001141 hcrx->ccid3hcrx_s = 0;
Gerrit Renkerfe0499a2006-12-10 00:06:01 -02001142 hcrx->ccid3hcrx_rtt = 0;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001143 return 0;
1144}
1145
1146static void ccid3_hc_rx_exit(struct sock *sk)
1147{
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -03001148 struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001149
Arnaldo Carvalho de Melo59d203f2005-09-09 20:01:25 -03001150 BUG_ON(hcrx == NULL);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001151
1152 ccid3_hc_rx_set_state(sk, TFRC_RSTATE_TERM);
1153
1154 /* Empty packet history */
Arnaldo Carvalho de Melo8c60f3f2005-08-10 12:59:38 -03001155 dccp_rx_hist_purge(ccid3_rx_hist, &hcrx->ccid3hcrx_hist);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001156
1157 /* Empty loss interval history */
Arnaldo Carvalho de Meloae6706f2005-08-27 23:03:09 -03001158 dccp_li_hist_purge(ccid3_li_hist, &hcrx->ccid3hcrx_li_hist);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001159}
1160
Arnaldo Carvalho de Melo2babe1f2005-08-23 21:52:35 -07001161static void ccid3_hc_rx_get_info(struct sock *sk, struct tcp_info *info)
1162{
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -03001163 const struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
Arnaldo Carvalho de Melo2babe1f2005-08-23 21:52:35 -07001164
Arnaldo Carvalho de Melo59c23532005-09-12 14:16:58 -07001165 /* Listen socks doesn't have a private CCID block */
1166 if (sk->sk_state == DCCP_LISTEN)
1167 return;
1168
Arnaldo Carvalho de Melo59d203f2005-09-09 20:01:25 -03001169 BUG_ON(hcrx == NULL);
Arnaldo Carvalho de Melo2babe1f2005-08-23 21:52:35 -07001170
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -02001171 info->tcpi_ca_state = hcrx->ccid3hcrx_state;
1172 info->tcpi_options |= TCPI_OPT_TIMESTAMPS;
1173 info->tcpi_rcv_rtt = hcrx->ccid3hcrx_rtt;
Arnaldo Carvalho de Melo2babe1f2005-08-23 21:52:35 -07001174}
1175
Arnaldo Carvalho de Melo88f964d2005-09-18 00:19:32 -07001176static int ccid3_hc_rx_getsockopt(struct sock *sk, const int optname, int len,
1177 u32 __user *optval, int __user *optlen)
1178{
1179 const struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
1180 const void *val;
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +09001181
Arnaldo Carvalho de Melo88f964d2005-09-18 00:19:32 -07001182 /* Listen socks doesn't have a private CCID block */
1183 if (sk->sk_state == DCCP_LISTEN)
1184 return -EINVAL;
1185
1186 switch (optname) {
1187 case DCCP_SOCKOPT_CCID_RX_INFO:
1188 if (len < sizeof(hcrx->ccid3hcrx_tfrc))
1189 return -EINVAL;
1190 len = sizeof(hcrx->ccid3hcrx_tfrc);
1191 val = &hcrx->ccid3hcrx_tfrc;
1192 break;
1193 default:
1194 return -ENOPROTOOPT;
1195 }
1196
1197 if (put_user(len, optlen) || copy_to_user(optval, val, len))
1198 return -EFAULT;
1199
1200 return 0;
1201}
1202
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -08001203static struct ccid_operations ccid3 = {
Ian McDonald3dd9a7c2006-09-22 14:26:44 +12001204 .ccid_id = DCCPC_CCID3,
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001205 .ccid_name = "ccid3",
1206 .ccid_owner = THIS_MODULE,
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -08001207 .ccid_hc_tx_obj_size = sizeof(struct ccid3_hc_tx_sock),
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001208 .ccid_hc_tx_init = ccid3_hc_tx_init,
1209 .ccid_hc_tx_exit = ccid3_hc_tx_exit,
1210 .ccid_hc_tx_send_packet = ccid3_hc_tx_send_packet,
1211 .ccid_hc_tx_packet_sent = ccid3_hc_tx_packet_sent,
1212 .ccid_hc_tx_packet_recv = ccid3_hc_tx_packet_recv,
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001213 .ccid_hc_tx_parse_options = ccid3_hc_tx_parse_options,
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -08001214 .ccid_hc_rx_obj_size = sizeof(struct ccid3_hc_rx_sock),
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001215 .ccid_hc_rx_init = ccid3_hc_rx_init,
1216 .ccid_hc_rx_exit = ccid3_hc_rx_exit,
1217 .ccid_hc_rx_insert_options = ccid3_hc_rx_insert_options,
1218 .ccid_hc_rx_packet_recv = ccid3_hc_rx_packet_recv,
Arnaldo Carvalho de Melo2babe1f2005-08-23 21:52:35 -07001219 .ccid_hc_rx_get_info = ccid3_hc_rx_get_info,
1220 .ccid_hc_tx_get_info = ccid3_hc_tx_get_info,
Arnaldo Carvalho de Melo88f964d2005-09-18 00:19:32 -07001221 .ccid_hc_rx_getsockopt = ccid3_hc_rx_getsockopt,
1222 .ccid_hc_tx_getsockopt = ccid3_hc_tx_getsockopt,
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001223};
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -02001224
Gerrit Renker56724aa2006-11-20 18:28:09 -02001225#ifdef CONFIG_IP_DCCP_CCID3_DEBUG
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001226module_param(ccid3_debug, int, 0444);
1227MODULE_PARM_DESC(ccid3_debug, "Enable debug messages");
Gerrit Renker56724aa2006-11-20 18:28:09 -02001228#endif
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001229
1230static __init int ccid3_module_init(void)
1231{
Arnaldo Carvalho de Melo8c60f3f2005-08-10 12:59:38 -03001232 int rc = -ENOBUFS;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001233
Arnaldo Carvalho de Melo8c60f3f2005-08-10 12:59:38 -03001234 ccid3_rx_hist = dccp_rx_hist_new("ccid3");
1235 if (ccid3_rx_hist == NULL)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001236 goto out;
1237
Arnaldo Carvalho de Melo8c60f3f2005-08-10 12:59:38 -03001238 ccid3_tx_hist = dccp_tx_hist_new("ccid3");
1239 if (ccid3_tx_hist == NULL)
1240 goto out_free_rx;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001241
Arnaldo Carvalho de Meloae6706f2005-08-27 23:03:09 -03001242 ccid3_li_hist = dccp_li_hist_new("ccid3");
1243 if (ccid3_li_hist == NULL)
Arnaldo Carvalho de Melo8c60f3f2005-08-10 12:59:38 -03001244 goto out_free_tx;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001245
1246 rc = ccid_register(&ccid3);
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -02001247 if (rc != 0)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001248 goto out_free_loss_interval_history;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001249out:
1250 return rc;
Arnaldo Carvalho de Melo8c60f3f2005-08-10 12:59:38 -03001251
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001252out_free_loss_interval_history:
Arnaldo Carvalho de Meloae6706f2005-08-27 23:03:09 -03001253 dccp_li_hist_delete(ccid3_li_hist);
1254 ccid3_li_hist = NULL;
Arnaldo Carvalho de Melo8c60f3f2005-08-10 12:59:38 -03001255out_free_tx:
1256 dccp_tx_hist_delete(ccid3_tx_hist);
1257 ccid3_tx_hist = NULL;
1258out_free_rx:
1259 dccp_rx_hist_delete(ccid3_rx_hist);
1260 ccid3_rx_hist = NULL;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001261 goto out;
1262}
1263module_init(ccid3_module_init);
1264
1265static __exit void ccid3_module_exit(void)
1266{
1267 ccid_unregister(&ccid3);
1268
Arnaldo Carvalho de Melo8c60f3f2005-08-10 12:59:38 -03001269 if (ccid3_tx_hist != NULL) {
1270 dccp_tx_hist_delete(ccid3_tx_hist);
1271 ccid3_tx_hist = NULL;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001272 }
Arnaldo Carvalho de Melo8c60f3f2005-08-10 12:59:38 -03001273 if (ccid3_rx_hist != NULL) {
1274 dccp_rx_hist_delete(ccid3_rx_hist);
1275 ccid3_rx_hist = NULL;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001276 }
Arnaldo Carvalho de Meloae6706f2005-08-27 23:03:09 -03001277 if (ccid3_li_hist != NULL) {
1278 dccp_li_hist_delete(ccid3_li_hist);
1279 ccid3_li_hist = NULL;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001280 }
1281}
1282module_exit(ccid3_module_exit);
1283
Ian McDonalde6bccd32006-08-26 19:01:30 -07001284MODULE_AUTHOR("Ian McDonald <ian.mcdonald@jandi.co.nz>, "
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -03001285 "Arnaldo Carvalho de Melo <acme@ghostprotocols.net>");
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001286MODULE_DESCRIPTION("DCCP TFRC CCID3 CCID");
1287MODULE_LICENSE("GPL");
1288MODULE_ALIAS("net-dccp-ccid-3");