blob: f8644bfd88fb9c0958c1bb841a14b5fd08adca9a [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 Renker76fd1e82007-10-24 10:46:58 -020043#include <asm/unaligned.h>
44
Gerrit Renker56724aa2006-11-20 18:28:09 -020045#ifdef CONFIG_IP_DCCP_CCID3_DEBUG
46static int ccid3_debug;
47#define ccid3_pr_debug(format, a...) DCCP_PR_DEBUG(ccid3_debug, format, ##a)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -070048#else
49#define ccid3_pr_debug(format, a...)
50#endif
51
Gerrit Renker9bf17472007-03-20 13:11:24 -030052/*
53 * Transmitter Half-Connection Routines
54 */
Gerrit Renker56724aa2006-11-20 18:28:09 -020055#ifdef CONFIG_IP_DCCP_CCID3_DEBUG
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -070056static const char *ccid3_tx_state_name(enum ccid3_hc_tx_states state)
57{
58 static char *ccid3_state_names[] = {
59 [TFRC_SSTATE_NO_SENT] = "NO_SENT",
60 [TFRC_SSTATE_NO_FBACK] = "NO_FBACK",
61 [TFRC_SSTATE_FBACK] = "FBACK",
62 [TFRC_SSTATE_TERM] = "TERM",
63 };
64
65 return ccid3_state_names[state];
66}
67#endif
68
Arnaldo Carvalho de Meloc25a18b2006-03-20 21:58:56 -080069static void ccid3_hc_tx_set_state(struct sock *sk,
70 enum ccid3_hc_tx_states state)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -070071{
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -030072 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -070073 enum ccid3_hc_tx_states oldstate = hctx->ccid3hctx_state;
74
75 ccid3_pr_debug("%s(%p) %-8.8s -> %s\n",
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -030076 dccp_role(sk), sk, ccid3_tx_state_name(oldstate),
77 ccid3_tx_state_name(state));
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -070078 WARN_ON(state == oldstate);
79 hctx->ccid3hctx_state = state;
80}
81
Gerrit Renker17893bc2006-11-27 20:31:33 -020082/*
Gerrit Renker6c08b2c2007-11-20 17:33:17 -020083 * Compute the initial sending rate X_init in the manner of RFC 3390:
84 *
85 * X_init = min(4 * s, max(2 * s, 4380 bytes)) / RTT
86 *
87 * Note that RFC 3390 uses MSS, RFC 4342 refers to RFC 3390, and rfc3448bis
88 * (rev-02) clarifies the use of RFC 3390 with regard to the above formula.
Gerrit Renkera21f9f92007-03-20 15:12:10 -030089 * For consistency with other parts of the code, X_init is scaled by 2^6.
90 */
91static inline u64 rfc3390_initial_rate(struct sock *sk)
92{
Gerrit Renker6c08b2c2007-11-20 17:33:17 -020093 const struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
94 const __u32 w_init = min_t(__u32, 4 * hctx->ccid3hctx_s,
95 max_t(__u32, 2 * hctx->ccid3hctx_s, 4380));
Gerrit Renkera21f9f92007-03-20 15:12:10 -030096
Gerrit Renker6c08b2c2007-11-20 17:33:17 -020097 return scaled_div(w_init << 6, hctx->ccid3hctx_rtt);
Gerrit Renkera21f9f92007-03-20 15:12:10 -030098}
99
100/*
Gerrit Renker1266ade2007-03-20 14:56:11 -0300101 * Recalculate t_ipi and delta (should be called whenever X changes)
Gerrit Renker17893bc2006-11-27 20:31:33 -0200102 */
Gerrit Renker1266ade2007-03-20 14:56:11 -0300103static inline void ccid3_update_send_interval(struct ccid3_hc_tx_sock *hctx)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700104{
Gerrit Renker1a21e492006-12-10 00:02:12 -0200105 /* Calculate new t_ipi = s / X_inst (X_inst is in 64 * bytes/second) */
Gerrit Renkerb2449fd2007-04-20 13:02:55 -0700106 hctx->ccid3hctx_t_ipi = scaled_div32(((u64)hctx->ccid3hctx_s) << 6,
107 hctx->ccid3hctx_x);
Gerrit Renker17893bc2006-11-27 20:31:33 -0200108
Gerrit Renker17893bc2006-11-27 20:31:33 -0200109 /* Calculate new delta by delta = min(t_ipi / 2, t_gran / 2) */
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -0300110 hctx->ccid3hctx_delta = min_t(u32, hctx->ccid3hctx_t_ipi / 2,
111 TFRC_OPSYS_HALF_TIME_GRAN);
Ian McDonald8699be72007-03-20 14:49:20 -0300112
Gerrit Renker1761f7d2007-03-20 15:04:30 -0300113 ccid3_pr_debug("t_ipi=%u, delta=%u, s=%u, X=%u\n",
Ian McDonald8699be72007-03-20 14:49:20 -0300114 hctx->ccid3hctx_t_ipi, hctx->ccid3hctx_delta,
Gerrit Renker1761f7d2007-03-20 15:04:30 -0300115 hctx->ccid3hctx_s, (unsigned)(hctx->ccid3hctx_x >> 6));
Ian McDonald8699be72007-03-20 14:49:20 -0300116
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700117}
Gerrit Renkeraa97efd2007-09-25 22:39:16 -0700118
Gerrit Renkera5358fd2007-11-20 18:01:59 -0200119static u32 ccid3_hc_tx_idle_rtt(struct ccid3_hc_tx_sock *hctx, ktime_t now)
120{
121 u32 delta = ktime_us_delta(now, hctx->ccid3hctx_t_last_win_count);
122
123 return delta / hctx->ccid3hctx_rtt;
124}
125
Gerrit Renkeraa97efd2007-09-25 22:39:16 -0700126/**
127 * ccid3_hc_tx_update_x - Update allowed sending rate X
128 * @stamp: most recent time if available - can be left NULL.
129 * This function tracks draft rfc3448bis, check there for latest details.
Gerrit Renker5c3fbb62006-12-03 14:50:56 -0200130 *
Gerrit Renker1a21e492006-12-10 00:02:12 -0200131 * Note: X and X_recv are both stored in units of 64 * bytes/second, to support
132 * fine-grained resolution of sending rates. This requires scaling by 2^6
133 * throughout the code. Only X_calc is unscaled (in bytes/second).
134 *
Gerrit Renker1a21e492006-12-10 00:02:12 -0200135 */
Gerrit Renkeraa97efd2007-09-25 22:39:16 -0700136static void ccid3_hc_tx_update_x(struct sock *sk, ktime_t *stamp)
Gerrit Renkera79ef762006-11-28 19:51:42 -0200137
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700138{
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300139 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
Gerrit Renker0c150ef2007-03-20 15:19:07 -0300140 __u64 min_rate = 2 * hctx->ccid3hctx_x_recv;
Gerrit Renker1a21e492006-12-10 00:02:12 -0200141 const __u64 old_x = hctx->ccid3hctx_x;
Gerrit Renkeraa97efd2007-09-25 22:39:16 -0700142 ktime_t now = stamp? *stamp : ktime_get_real();
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700143
Gerrit Renker0c150ef2007-03-20 15:19:07 -0300144 /*
145 * Handle IDLE periods: do not reduce below RFC3390 initial sending rate
Gerrit Renkera5358fd2007-11-20 18:01:59 -0200146 * when idling [RFC 4342, 5.1]. Definition of idling is from rfc3448bis:
147 * a sender is idle if it has not sent anything over a 2-RTT-period.
Gerrit Renker0c150ef2007-03-20 15:19:07 -0300148 * For consistency with X and X_recv, min_rate is also scaled by 2^6.
149 */
Gerrit Renkera5358fd2007-11-20 18:01:59 -0200150 if (ccid3_hc_tx_idle_rtt(hctx, now) >= 2) {
Gerrit Renker0c150ef2007-03-20 15:19:07 -0300151 min_rate = rfc3390_initial_rate(sk);
152 min_rate = max(min_rate, 2 * hctx->ccid3hctx_x_recv);
153 }
154
Gerrit Renker44158302006-12-03 14:53:07 -0200155 if (hctx->ccid3hctx_p > 0) {
Gerrit Renker1a21e492006-12-10 00:02:12 -0200156
Gerrit Renker9e8efc82006-12-10 00:24:57 -0200157 hctx->ccid3hctx_x = min(((__u64)hctx->ccid3hctx_x_calc) << 6,
Gerrit Renker0c150ef2007-03-20 15:19:07 -0300158 min_rate);
Gerrit Renker9e8efc82006-12-10 00:24:57 -0200159 hctx->ccid3hctx_x = max(hctx->ccid3hctx_x,
160 (((__u64)hctx->ccid3hctx_s) << 6) /
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200161 TFRC_T_MBI);
Arnaldo Carvalho de Melob6ee3d42005-08-27 18:18:18 -0300162
Gerrit Renkeraa97efd2007-09-25 22:39:16 -0700163 } else if (ktime_us_delta(now, hctx->ccid3hctx_t_ld)
164 - (s64)hctx->ccid3hctx_rtt >= 0) {
Gerrit Renker1a21e492006-12-10 00:02:12 -0200165
Gerrit Renkeraa97efd2007-09-25 22:39:16 -0700166 hctx->ccid3hctx_x =
167 max(min(2 * hctx->ccid3hctx_x, min_rate),
168 scaled_div(((__u64)hctx->ccid3hctx_s) << 6,
169 hctx->ccid3hctx_rtt));
170 hctx->ccid3hctx_t_ld = now;
Gerrit Renkerff586292006-12-10 00:00:14 -0200171 }
Gerrit Renkera79ef762006-11-28 19:51:42 -0200172
Ian McDonald8699be72007-03-20 14:49:20 -0300173 if (hctx->ccid3hctx_x != old_x) {
Gerrit Renker1761f7d2007-03-20 15:04:30 -0300174 ccid3_pr_debug("X_prev=%u, X_now=%u, X_calc=%u, "
175 "X_recv=%u\n", (unsigned)(old_x >> 6),
176 (unsigned)(hctx->ccid3hctx_x >> 6),
177 hctx->ccid3hctx_x_calc,
178 (unsigned)(hctx->ccid3hctx_x_recv >> 6));
Ian McDonald8699be72007-03-20 14:49:20 -0300179
Gerrit Renker1266ade2007-03-20 14:56:11 -0300180 ccid3_update_send_interval(hctx);
Ian McDonald8699be72007-03-20 14:49:20 -0300181 }
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700182}
183
Gerrit Renker78ad7132006-11-28 19:22:33 -0200184/*
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200185 * Track the mean packet size `s' (cf. RFC 4342, 5.3 and RFC 3448, 4.1)
186 * @len: DCCP packet payload size in bytes
Gerrit Renker78ad7132006-11-28 19:22:33 -0200187 */
188static inline void ccid3_hc_tx_update_s(struct ccid3_hc_tx_sock *hctx, int len)
189{
Gerrit Renker1266ade2007-03-20 14:56:11 -0300190 const u16 old_s = hctx->ccid3hctx_s;
191
Gerrit Renkerc3ada462007-11-20 18:09:59 -0200192 hctx->ccid3hctx_s = tfrc_ewma(hctx->ccid3hctx_s, len, 9);
Gerrit Renker1266ade2007-03-20 14:56:11 -0300193
194 if (hctx->ccid3hctx_s != old_s)
195 ccid3_update_send_interval(hctx);
Gerrit Renker78ad7132006-11-28 19:22:33 -0200196}
197
Gerrit Renker9f8681d2006-12-10 00:07:37 -0200198/*
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200199 * Update Window Counter using the algorithm from [RFC 4342, 8.1].
200 * The algorithm is not applicable if RTT < 4 microseconds.
Gerrit Renker9f8681d2006-12-10 00:07:37 -0200201 */
202static inline void ccid3_hc_tx_update_win_count(struct ccid3_hc_tx_sock *hctx,
Gerrit Renker8132da42007-06-16 13:34:02 -0300203 ktime_t now)
Gerrit Renker9f8681d2006-12-10 00:07:37 -0200204{
Gerrit Renker9f8681d2006-12-10 00:07:37 -0200205 u32 quarter_rtts;
206
207 if (unlikely(hctx->ccid3hctx_rtt < 4)) /* avoid divide-by-zero */
208 return;
209
Gerrit Renker8132da42007-06-16 13:34:02 -0300210 quarter_rtts = ktime_us_delta(now, hctx->ccid3hctx_t_last_win_count);
211 quarter_rtts /= hctx->ccid3hctx_rtt / 4;
Gerrit Renker9f8681d2006-12-10 00:07:37 -0200212
213 if (quarter_rtts > 0) {
Gerrit Renker8132da42007-06-16 13:34:02 -0300214 hctx->ccid3hctx_t_last_win_count = now;
Gerrit Renker9f8681d2006-12-10 00:07:37 -0200215 hctx->ccid3hctx_last_win_count += min_t(u32, quarter_rtts, 5);
216 hctx->ccid3hctx_last_win_count &= 0xF; /* mod 16 */
Gerrit Renker9f8681d2006-12-10 00:07:37 -0200217 }
218}
219
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700220static void ccid3_hc_tx_no_feedback_timer(unsigned long data)
221{
222 struct sock *sk = (struct sock *)data;
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300223 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
Gerrit Renker2a1fda62006-11-28 18:34:34 -0200224 unsigned long t_nfb = USEC_PER_SEC / 5;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700225
226 bh_lock_sock(sk);
227 if (sock_owned_by_user(sk)) {
228 /* Try again later. */
229 /* XXX: set some sensible MIB */
Gerrit Renker48e03ee2006-11-27 20:29:27 -0200230 goto restart_timer;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700231 }
232
Gerrit Renkera9672412006-12-10 00:14:12 -0200233 ccid3_pr_debug("%s(%p, state=%s) - entry \n", dccp_role(sk), sk,
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700234 ccid3_tx_state_name(hctx->ccid3hctx_state));
Gerrit Renkera9672412006-12-10 00:14:12 -0200235
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700236 switch (hctx->ccid3hctx_state) {
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700237 case TFRC_SSTATE_NO_FBACK:
Gerrit Renkera79ef762006-11-28 19:51:42 -0200238 /* RFC 3448, 4.4: Halve send rate directly */
Gerrit Renker9e8efc82006-12-10 00:24:57 -0200239 hctx->ccid3hctx_x = max(hctx->ccid3hctx_x / 2,
240 (((__u64)hctx->ccid3hctx_s) << 6) /
241 TFRC_T_MBI);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700242
Gerrit Renkera9672412006-12-10 00:14:12 -0200243 ccid3_pr_debug("%s(%p, state=%s), updated tx rate to %u "
244 "bytes/s\n", dccp_role(sk), sk,
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -0300245 ccid3_tx_state_name(hctx->ccid3hctx_state),
Gerrit Renker1a21e492006-12-10 00:02:12 -0200246 (unsigned)(hctx->ccid3hctx_x >> 6));
Gerrit Renker48e03ee2006-11-27 20:29:27 -0200247 /* The value of R is still undefined and so we can not recompute
Joe Perches5e8e0342007-12-20 13:59:39 -0800248 * the timeout value. Keep initial value as per [RFC 4342, 5]. */
Gerrit Renker2a1fda62006-11-28 18:34:34 -0200249 t_nfb = TFRC_INITIAL_TIMEOUT;
Gerrit Renker1266ade2007-03-20 14:56:11 -0300250 ccid3_update_send_interval(hctx);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700251 break;
252 case TFRC_SSTATE_FBACK:
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -0300253 /*
Gerrit Renker0c150ef2007-03-20 15:19:07 -0300254 * Modify the cached value of X_recv [RFC 3448, 4.4]
255 *
256 * If (p == 0 || X_calc > 2 * X_recv)
257 * X_recv = max(X_recv / 2, s / (2 * t_mbi));
258 * Else
259 * X_recv = X_calc / 4;
260 *
261 * Note that X_recv is scaled by 2^6 while X_calc is not
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -0300262 */
Gerrit Renker0c150ef2007-03-20 15:19:07 -0300263 BUG_ON(hctx->ccid3hctx_p && !hctx->ccid3hctx_x_calc);
Gerrit Renkera79ef762006-11-28 19:51:42 -0200264
Gerrit Renker0c150ef2007-03-20 15:19:07 -0300265 if (hctx->ccid3hctx_p == 0 ||
266 (hctx->ccid3hctx_x_calc > (hctx->ccid3hctx_x_recv >> 5))) {
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700267
Gerrit Renker0c150ef2007-03-20 15:19:07 -0300268 hctx->ccid3hctx_x_recv =
269 max(hctx->ccid3hctx_x_recv / 2,
270 (((__u64)hctx->ccid3hctx_s) << 6) /
271 (2 * TFRC_T_MBI));
Gerrit Renker0c150ef2007-03-20 15:19:07 -0300272 } else {
273 hctx->ccid3hctx_x_recv = hctx->ccid3hctx_x_calc;
274 hctx->ccid3hctx_x_recv <<= 4;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700275 }
Gerrit Renker0c150ef2007-03-20 15:19:07 -0300276 /* Now recalculate X [RFC 3448, 4.3, step (4)] */
Gerrit Renkeraa97efd2007-09-25 22:39:16 -0700277 ccid3_hc_tx_update_x(sk, NULL);
Arnaldo Carvalho de Melo6b5e6332005-08-27 20:11:28 -0300278 /*
279 * Schedule no feedback timer to expire in
Gerrit Renker8a508ac2006-12-03 14:50:23 -0200280 * max(t_RTO, 2 * s/X) = max(t_RTO, 2 * t_ipi)
281 * See comments in packet_recv() regarding the value of t_RTO.
Arnaldo Carvalho de Melo6b5e6332005-08-27 20:11:28 -0300282 */
Gerrit Renker8a508ac2006-12-03 14:50:23 -0200283 t_nfb = max(hctx->ccid3hctx_t_rto, 2 * hctx->ccid3hctx_t_ipi);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700284 break;
Gerrit Renker59348b12006-11-20 18:39:23 -0200285 case TFRC_SSTATE_NO_SENT:
Gerrit Renkera9672412006-12-10 00:14:12 -0200286 DCCP_BUG("%s(%p) - Illegal state NO_SENT", dccp_role(sk), sk);
Gerrit Renker59348b12006-11-20 18:39:23 -0200287 /* fall through */
288 case TFRC_SSTATE_TERM:
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700289 goto out;
290 }
291
Gerrit Renker48e03ee2006-11-27 20:29:27 -0200292restart_timer:
293 sk_reset_timer(sk, &hctx->ccid3hctx_no_feedback_timer,
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900294 jiffies + usecs_to_jiffies(t_nfb));
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700295out:
296 bh_unlock_sock(sk);
297 sock_put(sk);
298}
299
Gerrit Renker7da7f452006-11-27 12:26:03 -0200300/*
301 * returns
302 * > 0: delay (in msecs) that should pass before actually sending
303 * = 0: can send immediately
304 * < 0: error condition; do not send packet
305 */
Gerrit Renker6b57c932006-11-28 19:55:06 -0200306static int ccid3_hc_tx_send_packet(struct sock *sk, struct sk_buff *skb)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700307{
308 struct dccp_sock *dp = dccp_sk(sk);
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300309 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
Gerrit Renker8132da42007-06-16 13:34:02 -0300310 ktime_t now = ktime_get_real();
311 s64 delay;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700312
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700313 /*
Gerrit Renkerda335ba2006-11-27 12:26:57 -0200314 * This function is called only for Data and DataAck packets. Sending
315 * zero-sized Data(Ack)s is theoretically possible, but for congestion
316 * control this case is pathological - ignore it.
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700317 */
Gerrit Renker6b57c932006-11-28 19:55:06 -0200318 if (unlikely(skb->len == 0))
Gerrit Renkerda335ba2006-11-27 12:26:57 -0200319 return -EBADMSG;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700320
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700321 switch (hctx->ccid3hctx_state) {
322 case TFRC_SSTATE_NO_SENT:
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -0300323 sk_reset_timer(sk, &hctx->ccid3hctx_no_feedback_timer,
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200324 (jiffies +
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900325 usecs_to_jiffies(TFRC_INITIAL_TIMEOUT)));
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700326 hctx->ccid3hctx_last_win_count = 0;
327 hctx->ccid3hctx_t_last_win_count = now;
Gerrit Renker90feeb92006-11-27 12:13:38 -0200328
329 /* Set t_0 for initial packet */
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700330 hctx->ccid3hctx_t_nom = now;
Gerrit Renker30833ff2007-03-20 15:31:56 -0300331
332 hctx->ccid3hctx_s = skb->len;
333
334 /*
335 * Use initial RTT sample when available: recommended by erratum
336 * to RFC 4342. This implements the initialisation procedure of
337 * draft rfc3448bis, section 4.2. Remember, X is scaled by 2^6.
338 */
339 if (dp->dccps_syn_rtt) {
340 ccid3_pr_debug("SYN RTT = %uus\n", dp->dccps_syn_rtt);
341 hctx->ccid3hctx_rtt = dp->dccps_syn_rtt;
342 hctx->ccid3hctx_x = rfc3390_initial_rate(sk);
Arnaldo Carvalho de Melo23f062a2007-08-19 17:14:52 -0700343 hctx->ccid3hctx_t_ld = now;
Gerrit Renker30833ff2007-03-20 15:31:56 -0300344 } else {
Gerrit Renker6c08b2c2007-11-20 17:33:17 -0200345 /* Sender does not have RTT sample: X_pps = 1 pkt/sec */
346 hctx->ccid3hctx_x = hctx->ccid3hctx_s;
Gerrit Renker30833ff2007-03-20 15:31:56 -0300347 hctx->ccid3hctx_x <<= 6;
348 }
349 ccid3_update_send_interval(hctx);
350
351 ccid3_hc_tx_set_state(sk, TFRC_SSTATE_NO_FBACK);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700352 break;
353 case TFRC_SSTATE_NO_FBACK:
354 case TFRC_SSTATE_FBACK:
Gerrit Renker8132da42007-06-16 13:34:02 -0300355 delay = ktime_us_delta(hctx->ccid3hctx_t_nom, now);
Ian McDonald8699be72007-03-20 14:49:20 -0300356 ccid3_pr_debug("delay=%ld\n", (long)delay);
Gerrit Renker91cf5a12006-11-27 12:25:10 -0200357 /*
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200358 * Scheduling of packet transmissions [RFC 3448, 4.6]
Gerrit Renker91cf5a12006-11-27 12:25:10 -0200359 *
360 * if (t_now > t_nom - delta)
361 * // send the packet now
362 * else
363 * // send the packet in (t_nom - t_now) milliseconds.
364 */
Gerrit Renker49d66a72007-06-16 13:48:50 -0300365 if (delay - (s64)hctx->ccid3hctx_delta >= 1000)
Gerrit Renker8132da42007-06-16 13:34:02 -0300366 return (u32)delay / 1000L;
Gerrit Renker9f8681d2006-12-10 00:07:37 -0200367
Gerrit Renker8132da42007-06-16 13:34:02 -0300368 ccid3_hc_tx_update_win_count(hctx, now);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700369 break;
Gerrit Renker59348b12006-11-20 18:39:23 -0200370 case TFRC_SSTATE_TERM:
Gerrit Renkera9672412006-12-10 00:14:12 -0200371 DCCP_BUG("%s(%p) - Illegal state TERM", dccp_role(sk), sk);
Gerrit Renker7da7f452006-11-27 12:26:03 -0200372 return -EINVAL;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700373 }
374
Gerrit Renker7da7f452006-11-27 12:26:03 -0200375 /* prepare to send now (add options etc.) */
376 dp->dccps_hc_tx_insert_options = 1;
Gerrit Renkere312d102006-12-10 00:08:09 -0200377 DCCP_SKB_CB(skb)->dccpd_ccval = hctx->ccid3hctx_last_win_count;
378
379 /* set the nominal send time for the next following packet */
Gerrit Renker8132da42007-06-16 13:34:02 -0300380 hctx->ccid3hctx_t_nom = ktime_add_us(hctx->ccid3hctx_t_nom,
381 hctx->ccid3hctx_t_ipi);
Gerrit Renker7da7f452006-11-27 12:26:03 -0200382 return 0;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700383}
384
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200385static void ccid3_hc_tx_packet_sent(struct sock *sk, int more,
386 unsigned int len)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700387{
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300388 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700389
Gerrit Renker6b57c932006-11-28 19:55:06 -0200390 ccid3_hc_tx_update_s(hctx, len);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700391
Arnaldo Carvalho de Melo276f2ed2007-11-28 11:15:40 -0200392 if (tfrc_tx_hist_add(&hctx->ccid3hctx_hist, dccp_sk(sk)->dccps_gss))
Gerrit Renkerc5a1ae92006-12-10 00:09:21 -0200393 DCCP_CRIT("packet history - out of memory!");
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700394}
395
396static void ccid3_hc_tx_packet_recv(struct sock *sk, struct sk_buff *skb)
397{
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300398 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700399 struct ccid3_options_received *opt_recv;
Arnaldo Carvalho de Melo0740d492007-08-19 17:18:13 -0700400 ktime_t now;
Gerrit Renker2a1fda62006-11-28 18:34:34 -0200401 unsigned long t_nfb;
Gerrit Renker7dfee1a2007-03-20 15:24:37 -0300402 u32 pinv, r_sample;
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -0300403
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700404 /* we are only interested in ACKs */
405 if (!(DCCP_SKB_CB(skb)->dccpd_type == DCCP_PKT_ACK ||
406 DCCP_SKB_CB(skb)->dccpd_type == DCCP_PKT_DATAACK))
407 return;
408
409 opt_recv = &hctx->ccid3hctx_options_received;
410
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700411 switch (hctx->ccid3hctx_state) {
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700412 case TFRC_SSTATE_NO_FBACK:
413 case TFRC_SSTATE_FBACK:
Arnaldo Carvalho de Melo9108d5f2007-11-29 22:47:15 -0200414 now = ktime_get_real();
415
Arnaldo Carvalho de Melo276f2ed2007-11-28 11:15:40 -0200416 /* estimate RTT from history if ACK number is valid */
Arnaldo Carvalho de Melo9108d5f2007-11-29 22:47:15 -0200417 r_sample = tfrc_tx_hist_rtt(hctx->ccid3hctx_hist,
418 DCCP_SKB_CB(skb)->dccpd_ack_seq, now);
419 if (r_sample == 0) {
Arnaldo Carvalho de Melo276f2ed2007-11-28 11:15:40 -0200420 DCCP_WARN("%s(%p): %s with bogus ACK-%llu\n", dccp_role(sk), sk,
421 dccp_packet_name(DCCP_SKB_CB(skb)->dccpd_type),
422 (unsigned long long)DCCP_SKB_CB(skb)->dccpd_ack_seq);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700423 return;
424 }
425
Gerrit Renker1a21e492006-12-10 00:02:12 -0200426 /* Update receive rate in units of 64 * bytes/second */
Gerrit Renker9e8efc82006-12-10 00:24:57 -0200427 hctx->ccid3hctx_x_recv = opt_recv->ccid3or_receive_rate;
428 hctx->ccid3hctx_x_recv <<= 6;
Gerrit Renker5c3fbb62006-12-03 14:50:56 -0200429
430 /* Update loss event rate */
431 pinv = opt_recv->ccid3or_loss_event_rate;
Gerrit Renker45393a62006-12-09 23:59:14 -0200432 if (pinv == ~0U || pinv == 0) /* see RFC 4342, 8.5 */
Gerrit Renker5c3fbb62006-12-03 14:50:56 -0200433 hctx->ccid3hctx_p = 0;
Gerrit Renker45393a62006-12-09 23:59:14 -0200434 else /* can not exceed 100% */
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200435 hctx->ccid3hctx_p = 1000000 / pinv;
Gerrit Renker5c3fbb62006-12-03 14:50:56 -0200436 /*
Arnaldo Carvalho de Melo9108d5f2007-11-29 22:47:15 -0200437 * Validate new RTT sample and update moving average
Gerrit Renker5c3fbb62006-12-03 14:50:56 -0200438 */
Arnaldo Carvalho de Melo9108d5f2007-11-29 22:47:15 -0200439 r_sample = dccp_sample_rtt(sk, r_sample);
Gerrit Renkerc3ada462007-11-20 18:09:59 -0200440 hctx->ccid3hctx_rtt = tfrc_ewma(hctx->ccid3hctx_rtt, r_sample, 9);
Gerrit Renker5c3fbb62006-12-03 14:50:56 -0200441
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700442 if (hctx->ccid3hctx_state == TFRC_SSTATE_NO_FBACK) {
Gerrit Renker1a21e492006-12-10 00:02:12 -0200443 /*
444 * Larger Initial Windows [RFC 4342, sec. 5]
Gerrit Renker1a21e492006-12-10 00:02:12 -0200445 */
Gerrit Renkera21f9f92007-03-20 15:12:10 -0300446 hctx->ccid3hctx_x = rfc3390_initial_rate(sk);
Arnaldo Carvalho de Melo9823b7b2007-08-19 17:16:35 -0700447 hctx->ccid3hctx_t_ld = now;
Gerrit Renkera79ef762006-11-28 19:51:42 -0200448
Gerrit Renker1266ade2007-03-20 14:56:11 -0300449 ccid3_update_send_interval(hctx);
Gerrit Renker5c3fbb62006-12-03 14:50:56 -0200450
Gerrit Renkera21f9f92007-03-20 15:12:10 -0300451 ccid3_pr_debug("%s(%p), s=%u, MSS=%u, "
Gerrit Renker7dfee1a2007-03-20 15:24:37 -0300452 "R_sample=%uus, X=%u\n", dccp_role(sk),
Andrew Morton0f084612007-02-05 18:18:21 -0800453 sk, hctx->ccid3hctx_s,
David S. Miller1b07a952007-05-23 17:43:11 -0700454 dccp_sk(sk)->dccps_mss_cache, r_sample,
Gerrit Renker1a21e492006-12-10 00:02:12 -0200455 (unsigned)(hctx->ccid3hctx_x >> 6));
Gerrit Renker5c3fbb62006-12-03 14:50:56 -0200456
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700457 ccid3_hc_tx_set_state(sk, TFRC_SSTATE_FBACK);
Gerrit Renkera79ef762006-11-28 19:51:42 -0200458 } else {
Gerrit Renker5c3fbb62006-12-03 14:50:56 -0200459
Gerrit Renkerff586292006-12-10 00:00:14 -0200460 /* Update sending rate (step 4 of [RFC 3448, 4.3]) */
461 if (hctx->ccid3hctx_p > 0)
462 hctx->ccid3hctx_x_calc =
463 tfrc_calc_x(hctx->ccid3hctx_s,
464 hctx->ccid3hctx_rtt,
465 hctx->ccid3hctx_p);
Gerrit Renkeraa97efd2007-09-25 22:39:16 -0700466 ccid3_hc_tx_update_x(sk, &now);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700467
Gerrit Renker7dfee1a2007-03-20 15:24:37 -0300468 ccid3_pr_debug("%s(%p), RTT=%uus (sample=%uus), s=%u, "
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200469 "p=%u, X_calc=%u, X_recv=%u, X=%u\n",
470 dccp_role(sk),
Gerrit Renker7dfee1a2007-03-20 15:24:37 -0300471 sk, hctx->ccid3hctx_rtt, r_sample,
Gerrit Renker5c3fbb62006-12-03 14:50:56 -0200472 hctx->ccid3hctx_s, hctx->ccid3hctx_p,
473 hctx->ccid3hctx_x_calc,
Gerrit Renker9e8efc82006-12-10 00:24:57 -0200474 (unsigned)(hctx->ccid3hctx_x_recv >> 6),
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200475 (unsigned)(hctx->ccid3hctx_x >> 6));
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700476 }
477
478 /* unschedule no feedback timer */
479 sk_stop_timer(sk, &hctx->ccid3hctx_no_feedback_timer);
480
Arnaldo Carvalho de Meloc530cfb2005-08-29 02:15:54 -0300481 /*
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200482 * As we have calculated new ipi, delta, t_nom it is possible
483 * that we now can send a packet, so wake up dccp_wait_for_ccid
Arnaldo Carvalho de Meloc530cfb2005-08-29 02:15:54 -0300484 */
485 sk->sk_write_space(sk);
Arnaldo Carvalho de Melo8c60f3f2005-08-10 12:59:38 -0300486
Gerrit Renker8a508ac2006-12-03 14:50:23 -0200487 /*
488 * Update timeout interval for the nofeedback timer.
489 * We use a configuration option to increase the lower bound.
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200490 * This can help avoid triggering the nofeedback timer too
491 * often ('spinning') on LANs with small RTTs.
Gerrit Renker8a508ac2006-12-03 14:50:23 -0200492 */
Gerrit Renker5d0dbc42006-11-27 20:32:37 -0200493 hctx->ccid3hctx_t_rto = max_t(u32, 4 * hctx->ccid3hctx_rtt,
Gerrit Renker8a508ac2006-12-03 14:50:23 -0200494 CONFIG_IP_DCCP_CCID3_RTO *
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200495 (USEC_PER_SEC/1000));
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -0300496 /*
497 * Schedule no feedback timer to expire in
Gerrit Renker8a508ac2006-12-03 14:50:23 -0200498 * max(t_RTO, 2 * s/X) = max(t_RTO, 2 * t_ipi)
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -0300499 */
Gerrit Renker8a508ac2006-12-03 14:50:23 -0200500 t_nfb = max(hctx->ccid3hctx_t_rto, 2 * hctx->ccid3hctx_t_ipi);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700501
Gerrit Renkera9672412006-12-10 00:14:12 -0200502 ccid3_pr_debug("%s(%p), Scheduled no feedback timer to "
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200503 "expire in %lu jiffies (%luus)\n",
504 dccp_role(sk),
Gerrit Renkera9672412006-12-10 00:14:12 -0200505 sk, usecs_to_jiffies(t_nfb), t_nfb);
506
507 sk_reset_timer(sk, &hctx->ccid3hctx_no_feedback_timer,
Gerrit Renker2a1fda62006-11-28 18:34:34 -0200508 jiffies + usecs_to_jiffies(t_nfb));
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700509 break;
Gerrit Renker151a9932007-03-07 12:53:48 -0800510 case TFRC_SSTATE_NO_SENT: /* fall through */
Gerrit Renker5e19e3f2006-11-27 12:28:48 -0200511 case TFRC_SSTATE_TERM: /* ignore feedback when closing */
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700512 break;
513 }
514}
515
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700516static int ccid3_hc_tx_parse_options(struct sock *sk, unsigned char option,
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -0300517 unsigned char len, u16 idx,
518 unsigned char *value)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700519{
520 int rc = 0;
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300521 const struct dccp_sock *dp = dccp_sk(sk);
522 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700523 struct ccid3_options_received *opt_recv;
Gerrit Renker76fd1e82007-10-24 10:46:58 -0200524 __be32 opt_val;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700525
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700526 opt_recv = &hctx->ccid3hctx_options_received;
527
528 if (opt_recv->ccid3or_seqno != dp->dccps_gsr) {
529 opt_recv->ccid3or_seqno = dp->dccps_gsr;
530 opt_recv->ccid3or_loss_event_rate = ~0;
531 opt_recv->ccid3or_loss_intervals_idx = 0;
532 opt_recv->ccid3or_loss_intervals_len = 0;
533 opt_recv->ccid3or_receive_rate = 0;
534 }
535
536 switch (option) {
537 case TFRC_OPT_LOSS_EVENT_RATE:
Arnaldo Carvalho de Melo59d203f2005-09-09 20:01:25 -0300538 if (unlikely(len != 4)) {
Gerrit Renkera9672412006-12-10 00:14:12 -0200539 DCCP_WARN("%s(%p), invalid len %d "
Gerrit Renker59348b12006-11-20 18:39:23 -0200540 "for TFRC_OPT_LOSS_EVENT_RATE\n",
541 dccp_role(sk), sk, len);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700542 rc = -EINVAL;
543 } else {
Gerrit Renker76fd1e82007-10-24 10:46:58 -0200544 opt_val = get_unaligned((__be32 *)value);
545 opt_recv->ccid3or_loss_event_rate = ntohl(opt_val);
Gerrit Renkera9672412006-12-10 00:14:12 -0200546 ccid3_pr_debug("%s(%p), LOSS_EVENT_RATE=%u\n",
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700547 dccp_role(sk), sk,
548 opt_recv->ccid3or_loss_event_rate);
549 }
550 break;
551 case TFRC_OPT_LOSS_INTERVALS:
552 opt_recv->ccid3or_loss_intervals_idx = idx;
553 opt_recv->ccid3or_loss_intervals_len = len;
Gerrit Renkera9672412006-12-10 00:14:12 -0200554 ccid3_pr_debug("%s(%p), LOSS_INTERVALS=(%u, %u)\n",
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700555 dccp_role(sk), sk,
556 opt_recv->ccid3or_loss_intervals_idx,
557 opt_recv->ccid3or_loss_intervals_len);
558 break;
559 case TFRC_OPT_RECEIVE_RATE:
Arnaldo Carvalho de Melo59d203f2005-09-09 20:01:25 -0300560 if (unlikely(len != 4)) {
Gerrit Renkera9672412006-12-10 00:14:12 -0200561 DCCP_WARN("%s(%p), invalid len %d "
Gerrit Renker59348b12006-11-20 18:39:23 -0200562 "for TFRC_OPT_RECEIVE_RATE\n",
563 dccp_role(sk), sk, len);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700564 rc = -EINVAL;
565 } else {
Gerrit Renker76fd1e82007-10-24 10:46:58 -0200566 opt_val = get_unaligned((__be32 *)value);
567 opt_recv->ccid3or_receive_rate = ntohl(opt_val);
Gerrit Renkera9672412006-12-10 00:14:12 -0200568 ccid3_pr_debug("%s(%p), RECEIVE_RATE=%u\n",
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700569 dccp_role(sk), sk,
570 opt_recv->ccid3or_receive_rate);
571 }
572 break;
573 }
574
575 return rc;
576}
577
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800578static int ccid3_hc_tx_init(struct ccid *ccid, struct sock *sk)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700579{
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800580 struct ccid3_hc_tx_sock *hctx = ccid_priv(ccid);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700581
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700582 hctx->ccid3hctx_state = TFRC_SSTATE_NO_SENT;
Arnaldo Carvalho de Melo276f2ed2007-11-28 11:15:40 -0200583 hctx->ccid3hctx_hist = NULL;
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800584 setup_timer(&hctx->ccid3hctx_no_feedback_timer,
585 ccid3_hc_tx_no_feedback_timer, (unsigned long)sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700586
587 return 0;
588}
589
590static void ccid3_hc_tx_exit(struct sock *sk)
591{
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300592 struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700593
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700594 ccid3_hc_tx_set_state(sk, TFRC_SSTATE_TERM);
595 sk_stop_timer(sk, &hctx->ccid3hctx_no_feedback_timer);
596
Arnaldo Carvalho de Melo276f2ed2007-11-28 11:15:40 -0200597 tfrc_tx_hist_purge(&hctx->ccid3hctx_hist);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700598}
599
Gerrit Renker9bf17472007-03-20 13:11:24 -0300600static void ccid3_hc_tx_get_info(struct sock *sk, struct tcp_info *info)
601{
Gerrit Renker2e869082007-09-26 11:24:28 -0300602 struct ccid3_hc_tx_sock *hctx;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700603
Gerrit Renker9bf17472007-03-20 13:11:24 -0300604 /* Listen socks doesn't have a private CCID block */
605 if (sk->sk_state == DCCP_LISTEN)
606 return;
607
Gerrit Renker2e869082007-09-26 11:24:28 -0300608 hctx = ccid3_hc_tx_sk(sk);
Gerrit Renker9bf17472007-03-20 13:11:24 -0300609 info->tcpi_rto = hctx->ccid3hctx_t_rto;
610 info->tcpi_rtt = hctx->ccid3hctx_rtt;
611}
612
613static int ccid3_hc_tx_getsockopt(struct sock *sk, const int optname, int len,
614 u32 __user *optval, int __user *optlen)
615{
Gerrit Renker2e869082007-09-26 11:24:28 -0300616 const struct ccid3_hc_tx_sock *hctx;
Gerrit Renker9bf17472007-03-20 13:11:24 -0300617 const void *val;
618
619 /* Listen socks doesn't have a private CCID block */
620 if (sk->sk_state == DCCP_LISTEN)
621 return -EINVAL;
622
Gerrit Renker2e869082007-09-26 11:24:28 -0300623 hctx = ccid3_hc_tx_sk(sk);
Gerrit Renker9bf17472007-03-20 13:11:24 -0300624 switch (optname) {
625 case DCCP_SOCKOPT_CCID_TX_INFO:
626 if (len < sizeof(hctx->ccid3hctx_tfrc))
627 return -EINVAL;
628 len = sizeof(hctx->ccid3hctx_tfrc);
629 val = &hctx->ccid3hctx_tfrc;
630 break;
631 default:
632 return -ENOPROTOOPT;
633 }
634
635 if (put_user(len, optlen) || copy_to_user(optval, val, len))
636 return -EFAULT;
637
638 return 0;
639}
640
641/*
642 * Receiver Half-Connection Routines
643 */
Arnaldo Carvalho de Melob84a2182007-12-06 13:18:11 -0200644
645/* CCID3 feedback types */
646enum ccid3_fback_type {
647 CCID3_FBACK_NONE = 0,
648 CCID3_FBACK_INITIAL,
649 CCID3_FBACK_PERIODIC,
650 CCID3_FBACK_PARAM_CHANGE
651};
652
Gerrit Renker56724aa2006-11-20 18:28:09 -0200653#ifdef CONFIG_IP_DCCP_CCID3_DEBUG
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700654static const char *ccid3_rx_state_name(enum ccid3_hc_rx_states state)
655{
656 static char *ccid3_rx_state_names[] = {
657 [TFRC_RSTATE_NO_DATA] = "NO_DATA",
658 [TFRC_RSTATE_DATA] = "DATA",
659 [TFRC_RSTATE_TERM] = "TERM",
660 };
661
662 return ccid3_rx_state_names[state];
663}
664#endif
665
Arnaldo Carvalho de Meloc25a18b2006-03-20 21:58:56 -0800666static void ccid3_hc_rx_set_state(struct sock *sk,
667 enum ccid3_hc_rx_states state)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700668{
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300669 struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700670 enum ccid3_hc_rx_states oldstate = hcrx->ccid3hcrx_state;
671
672 ccid3_pr_debug("%s(%p) %-8.8s -> %s\n",
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -0300673 dccp_role(sk), sk, ccid3_rx_state_name(oldstate),
674 ccid3_rx_state_name(state));
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700675 WARN_ON(state == oldstate);
676 hcrx->ccid3hcrx_state = state;
677}
678
Arnaldo Carvalho de Melob84a2182007-12-06 13:18:11 -0200679static void ccid3_hc_rx_send_feedback(struct sock *sk,
680 const struct sk_buff *skb,
681 enum ccid3_fback_type fbtype)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700682{
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300683 struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700684 struct dccp_sock *dp = dccp_sk(sk);
Arnaldo Carvalho de Meloe7c23352007-08-19 17:17:51 -0700685 ktime_t now;
Arnaldo Carvalho de Melob84a2182007-12-06 13:18:11 -0200686 s64 delta = 0;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700687
Gerrit Renkera9672412006-12-10 00:14:12 -0200688 ccid3_pr_debug("%s(%p) - entry \n", dccp_role(sk), sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700689
Arnaldo Carvalho de Melob84a2182007-12-06 13:18:11 -0200690 if (unlikely(hcrx->ccid3hcrx_state == TFRC_RSTATE_TERM))
691 return;
692
Arnaldo Carvalho de Meloe7a81c62007-08-19 17:15:37 -0700693 now = ktime_get_real();
Arnaldo Carvalho de Melob6ee3d42005-08-27 18:18:18 -0300694
Arnaldo Carvalho de Melob84a2182007-12-06 13:18:11 -0200695 switch (fbtype) {
696 case CCID3_FBACK_INITIAL:
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700697 hcrx->ccid3hcrx_x_recv = 0;
Arnaldo Carvalho de Melob84a2182007-12-06 13:18:11 -0200698 hcrx->ccid3hcrx_pinv = ~0U; /* see RFC 4342, 8.5 */
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700699 break;
Arnaldo Carvalho de Melob84a2182007-12-06 13:18:11 -0200700 case CCID3_FBACK_PARAM_CHANGE:
701 /*
702 * When parameters change (new loss or p > p_prev), we do not
703 * have a reliable estimate for R_m of [RFC 3448, 6.2] and so
704 * need to reuse the previous value of X_recv. However, when
705 * X_recv was 0 (due to early loss), this would kill X down to
706 * s/t_mbi (i.e. one packet in 64 seconds).
707 * To avoid such drastic reduction, we approximate X_recv as
708 * the number of bytes since last feedback.
709 * This is a safe fallback, since X is bounded above by X_calc.
710 */
711 if (hcrx->ccid3hcrx_x_recv > 0)
712 break;
713 /* fall through */
714 case CCID3_FBACK_PERIODIC:
715 delta = ktime_us_delta(now, hcrx->ccid3hcrx_tstamp_last_feedback);
716 if (delta <= 0)
717 DCCP_BUG("delta (%ld) <= 0", (long)delta);
718 else
719 hcrx->ccid3hcrx_x_recv =
720 scaled_div32(hcrx->ccid3hcrx_bytes_recv, delta);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700721 break;
Arnaldo Carvalho de Melob84a2182007-12-06 13:18:11 -0200722 default:
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700723 return;
724 }
725
Arnaldo Carvalho de Melob84a2182007-12-06 13:18:11 -0200726 ccid3_pr_debug("Interval %ldusec, X_recv=%u, 1/p=%u\n", (long)delta,
727 hcrx->ccid3hcrx_x_recv, hcrx->ccid3hcrx_pinv);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700728
Arnaldo Carvalho de Melob6ee3d42005-08-27 18:18:18 -0300729 hcrx->ccid3hcrx_tstamp_last_feedback = now;
Arnaldo Carvalho de Melob84a2182007-12-06 13:18:11 -0200730 hcrx->ccid3hcrx_last_counter = dccp_hdr(skb)->dccph_ccval;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700731 hcrx->ccid3hcrx_bytes_recv = 0;
732
Arnaldo Carvalho de Melo507d37c2005-09-09 02:30:07 -0300733 dp->dccps_hc_rx_insert_options = 1;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700734 dccp_send_ack(sk);
735}
736
Arnaldo Carvalho de Melo2d0817d2006-03-20 22:32:06 -0800737static int ccid3_hc_rx_insert_options(struct sock *sk, struct sk_buff *skb)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700738{
Gerrit Renker2e869082007-09-26 11:24:28 -0300739 const struct ccid3_hc_rx_sock *hcrx;
Andrea Bittau60fe62e2006-03-20 19:23:32 -0800740 __be32 x_recv, pinv;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700741
Arnaldo Carvalho de Melo59d203f2005-09-09 20:01:25 -0300742 if (!(sk->sk_state == DCCP_OPEN || sk->sk_state == DCCP_PARTOPEN))
Arnaldo Carvalho de Melo2d0817d2006-03-20 22:32:06 -0800743 return 0;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700744
Gerrit Renker2e869082007-09-26 11:24:28 -0300745 hcrx = ccid3_hc_rx_sk(sk);
Arnaldo Carvalho de Melo4fded332005-08-23 21:51:59 -0700746
747 if (dccp_packet_without_ack(skb))
Arnaldo Carvalho de Melo2d0817d2006-03-20 22:32:06 -0800748 return 0;
749
Arnaldo Carvalho de Melo4fded332005-08-23 21:51:59 -0700750 x_recv = htonl(hcrx->ccid3hcrx_x_recv);
751 pinv = htonl(hcrx->ccid3hcrx_pinv);
Arnaldo Carvalho de Melo2d0817d2006-03-20 22:32:06 -0800752
Gerrit Renker385ac2e2007-12-08 16:26:59 -0200753 if (dccp_insert_option(sk, skb, TFRC_OPT_LOSS_EVENT_RATE,
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200754 &pinv, sizeof(pinv)) ||
Arnaldo Carvalho de Melo2d0817d2006-03-20 22:32:06 -0800755 dccp_insert_option(sk, skb, TFRC_OPT_RECEIVE_RATE,
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200756 &x_recv, sizeof(x_recv)))
Arnaldo Carvalho de Melo2d0817d2006-03-20 22:32:06 -0800757 return -1;
758
759 return 0;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700760}
761
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700762static void ccid3_hc_rx_packet_recv(struct sock *sk, struct sk_buff *skb)
763{
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300764 struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
Arnaldo Carvalho de Melob84a2182007-12-06 13:18:11 -0200765 enum ccid3_fback_type do_feedback = CCID3_FBACK_NONE;
766 const u32 ndp = dccp_sk(sk)->dccps_options_received.dccpor_ndp;
767 const bool is_data_packet = dccp_data_packet(skb);
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -0300768
Arnaldo Carvalho de Melob84a2182007-12-06 13:18:11 -0200769 if (unlikely(hcrx->ccid3hcrx_state == TFRC_RSTATE_NO_DATA)) {
770 if (is_data_packet) {
771 const u32 payload = skb->len - dccp_hdr(skb)->dccph_doff * 4;
772 do_feedback = CCID3_FBACK_INITIAL;
773 ccid3_hc_rx_set_state(sk, TFRC_RSTATE_DATA);
774 hcrx->ccid3hcrx_s = payload;
775 /*
776 * Not necessary to update ccid3hcrx_bytes_recv here,
777 * since X_recv = 0 for the first feedback packet (cf.
778 * RFC 3448, 6.3) -- gerrit
779 */
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700780 }
Arnaldo Carvalho de Melob84a2182007-12-06 13:18:11 -0200781 goto update_records;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700782 }
783
Arnaldo Carvalho de Melob84a2182007-12-06 13:18:11 -0200784 if (tfrc_rx_hist_duplicate(&hcrx->ccid3hcrx_hist, skb))
785 return; /* done receiving */
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700786
Arnaldo Carvalho de Melob84a2182007-12-06 13:18:11 -0200787 if (is_data_packet) {
788 const u32 payload = skb->len - dccp_hdr(skb)->dccph_doff * 4;
789 /*
790 * Update moving-average of s and the sum of received payload bytes
791 */
792 hcrx->ccid3hcrx_s = tfrc_ewma(hcrx->ccid3hcrx_s, payload, 9);
793 hcrx->ccid3hcrx_bytes_recv += payload;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700794 }
Arnaldo Carvalho de Melob84a2182007-12-06 13:18:11 -0200795
796 /*
797 * Handle pending losses and otherwise check for new loss
798 */
799 if (tfrc_rx_hist_new_loss_indicated(&hcrx->ccid3hcrx_hist, skb, ndp))
800 goto update_records;
801
802 /*
803 * Handle data packets: RTT sampling and monitoring p
804 */
805 if (unlikely(!is_data_packet))
806 goto update_records;
807
808 if (list_empty(&hcrx->ccid3hcrx_li_hist)) { /* no loss so far: p = 0 */
809 const u32 sample = tfrc_rx_hist_sample_rtt(&hcrx->ccid3hcrx_hist, skb);
810 /*
811 * Empty loss history: no loss so far, hence p stays 0.
812 * Sample RTT values, since an RTT estimate is required for the
813 * computation of p when the first loss occurs; RFC 3448, 6.3.1.
814 */
815 if (sample != 0)
816 hcrx->ccid3hcrx_rtt = tfrc_ewma(hcrx->ccid3hcrx_rtt, sample, 9);
817 }
818
819 /*
820 * Check if the periodic once-per-RTT feedback is due; RFC 4342, 10.3
821 */
822 if (SUB16(dccp_hdr(skb)->dccph_ccval, hcrx->ccid3hcrx_last_counter) > 3)
823 do_feedback = CCID3_FBACK_PERIODIC;
824
825update_records:
826 tfrc_rx_hist_add_packet(&hcrx->ccid3hcrx_hist, skb, ndp);
827
828 if (do_feedback)
829 ccid3_hc_rx_send_feedback(sk, skb, do_feedback);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700830}
831
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800832static int ccid3_hc_rx_init(struct ccid *ccid, struct sock *sk)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700833{
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800834 struct ccid3_hc_rx_sock *hcrx = ccid_priv(ccid);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700835
Gerrit Renkera9672412006-12-10 00:14:12 -0200836 ccid3_pr_debug("entry\n");
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700837
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700838 hcrx->ccid3hcrx_state = TFRC_RSTATE_NO_DATA;
Arnaldo Carvalho de Meloae6706f2005-08-27 23:03:09 -0300839 INIT_LIST_HEAD(&hcrx->ccid3hcrx_li_hist);
Arnaldo Carvalho de Melob84a2182007-12-06 13:18:11 -0200840 return tfrc_rx_hist_alloc(&hcrx->ccid3hcrx_hist);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700841}
842
843static void ccid3_hc_rx_exit(struct sock *sk)
844{
Arnaldo Carvalho de Melo59725dc2005-09-09 02:40:58 -0300845 struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700846
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700847 ccid3_hc_rx_set_state(sk, TFRC_RSTATE_TERM);
848
849 /* Empty packet history */
Arnaldo Carvalho de Melod58d1af2007-12-06 12:28:39 -0200850 tfrc_rx_hist_purge(&hcrx->ccid3hcrx_hist);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700851
852 /* Empty loss interval history */
Arnaldo Carvalho de Melocc4d6a32007-05-28 18:53:08 -0300853 dccp_li_hist_purge(&hcrx->ccid3hcrx_li_hist);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700854}
855
Arnaldo Carvalho de Melo2babe1f2005-08-23 21:52:35 -0700856static void ccid3_hc_rx_get_info(struct sock *sk, struct tcp_info *info)
857{
Gerrit Renker2e869082007-09-26 11:24:28 -0300858 const struct ccid3_hc_rx_sock *hcrx;
Arnaldo Carvalho de Melo2babe1f2005-08-23 21:52:35 -0700859
Arnaldo Carvalho de Melo59c23532005-09-12 14:16:58 -0700860 /* Listen socks doesn't have a private CCID block */
861 if (sk->sk_state == DCCP_LISTEN)
862 return;
863
Gerrit Renker2e869082007-09-26 11:24:28 -0300864 hcrx = ccid3_hc_rx_sk(sk);
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200865 info->tcpi_ca_state = hcrx->ccid3hcrx_state;
866 info->tcpi_options |= TCPI_OPT_TIMESTAMPS;
867 info->tcpi_rcv_rtt = hcrx->ccid3hcrx_rtt;
Arnaldo Carvalho de Melo2babe1f2005-08-23 21:52:35 -0700868}
869
Arnaldo Carvalho de Melo88f964d2005-09-18 00:19:32 -0700870static int ccid3_hc_rx_getsockopt(struct sock *sk, const int optname, int len,
871 u32 __user *optval, int __user *optlen)
872{
Gerrit Renker2e869082007-09-26 11:24:28 -0300873 const struct ccid3_hc_rx_sock *hcrx;
Arnaldo Carvalho de Melo88f964d2005-09-18 00:19:32 -0700874 const void *val;
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900875
Arnaldo Carvalho de Melo88f964d2005-09-18 00:19:32 -0700876 /* Listen socks doesn't have a private CCID block */
877 if (sk->sk_state == DCCP_LISTEN)
878 return -EINVAL;
879
Gerrit Renker2e869082007-09-26 11:24:28 -0300880 hcrx = ccid3_hc_rx_sk(sk);
Arnaldo Carvalho de Melo88f964d2005-09-18 00:19:32 -0700881 switch (optname) {
882 case DCCP_SOCKOPT_CCID_RX_INFO:
883 if (len < sizeof(hcrx->ccid3hcrx_tfrc))
884 return -EINVAL;
885 len = sizeof(hcrx->ccid3hcrx_tfrc);
886 val = &hcrx->ccid3hcrx_tfrc;
887 break;
888 default:
889 return -ENOPROTOOPT;
890 }
891
892 if (put_user(len, optlen) || copy_to_user(optval, val, len))
893 return -EFAULT;
894
895 return 0;
896}
897
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800898static struct ccid_operations ccid3 = {
Ian McDonald3dd9a7c2006-09-22 14:26:44 +1200899 .ccid_id = DCCPC_CCID3,
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700900 .ccid_name = "ccid3",
901 .ccid_owner = THIS_MODULE,
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800902 .ccid_hc_tx_obj_size = sizeof(struct ccid3_hc_tx_sock),
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700903 .ccid_hc_tx_init = ccid3_hc_tx_init,
904 .ccid_hc_tx_exit = ccid3_hc_tx_exit,
905 .ccid_hc_tx_send_packet = ccid3_hc_tx_send_packet,
906 .ccid_hc_tx_packet_sent = ccid3_hc_tx_packet_sent,
907 .ccid_hc_tx_packet_recv = ccid3_hc_tx_packet_recv,
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700908 .ccid_hc_tx_parse_options = ccid3_hc_tx_parse_options,
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800909 .ccid_hc_rx_obj_size = sizeof(struct ccid3_hc_rx_sock),
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700910 .ccid_hc_rx_init = ccid3_hc_rx_init,
911 .ccid_hc_rx_exit = ccid3_hc_rx_exit,
912 .ccid_hc_rx_insert_options = ccid3_hc_rx_insert_options,
913 .ccid_hc_rx_packet_recv = ccid3_hc_rx_packet_recv,
Arnaldo Carvalho de Melo2babe1f2005-08-23 21:52:35 -0700914 .ccid_hc_rx_get_info = ccid3_hc_rx_get_info,
915 .ccid_hc_tx_get_info = ccid3_hc_tx_get_info,
Arnaldo Carvalho de Melo88f964d2005-09-18 00:19:32 -0700916 .ccid_hc_rx_getsockopt = ccid3_hc_rx_getsockopt,
917 .ccid_hc_tx_getsockopt = ccid3_hc_tx_getsockopt,
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700918};
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200919
Gerrit Renker56724aa2006-11-20 18:28:09 -0200920#ifdef CONFIG_IP_DCCP_CCID3_DEBUG
Gerrit Renker042d18f2007-10-04 14:39:53 -0700921module_param(ccid3_debug, bool, 0444);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700922MODULE_PARM_DESC(ccid3_debug, "Enable debug messages");
Gerrit Renker56724aa2006-11-20 18:28:09 -0200923#endif
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700924
925static __init int ccid3_module_init(void)
926{
Arnaldo Carvalho de Melo34a9e7e2007-12-06 12:28:13 -0200927 return ccid_register(&ccid3);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700928}
929module_init(ccid3_module_init);
930
931static __exit void ccid3_module_exit(void)
932{
933 ccid_unregister(&ccid3);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700934}
935module_exit(ccid3_module_exit);
936
Ian McDonalde6bccd32006-08-26 19:01:30 -0700937MODULE_AUTHOR("Ian McDonald <ian.mcdonald@jandi.co.nz>, "
Arnaldo Carvalho de Melo1f2333a2005-08-27 03:51:58 -0300938 "Arnaldo Carvalho de Melo <acme@ghostprotocols.net>");
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700939MODULE_DESCRIPTION("DCCP TFRC CCID3 CCID");
940MODULE_LICENSE("GPL");
941MODULE_ALIAS("net-dccp-ccid-3");