ccid3.c 24.1 KB
Newer Older
1 2 3
/*
 *  net/dccp/ccids/ccid3.c
 *
4
 *  Copyright (c) 2007   The University of Aberdeen, Scotland, UK
I
Ian McDonald 已提交
5 6
 *  Copyright (c) 2005-7 The University of Waikato, Hamilton, New Zealand.
 *  Copyright (c) 2005-7 Ian McDonald <ian.mcdonald@jandi.co.nz>
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
 *
 *  An implementation of the DCCP protocol
 *
 *  This code has been developed by the University of Waikato WAND
 *  research group. For further information please see http://www.wand.net.nz/
 *
 *  This code also uses code from Lulea University, rereleased as GPL by its
 *  authors:
 *  Copyright (c) 2003 Nils-Erik Mattsson, Joacim Haggmark, Magnus Erixzon
 *
 *  Changes to meet Linux coding standards, to make it meet latest ccid3 draft
 *  and to make it work as a loadable module in the DCCP stack written by
 *  Arnaldo Carvalho de Melo <acme@conectiva.com.br>.
 *
 *  Copyright (c) 2005 Arnaldo Carvalho de Melo <acme@conectiva.com.br>
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */
#include "../dccp.h"
#include "ccid3.h"

G
Gerrit Renker 已提交
40 41
#include <asm/unaligned.h>

42 43 44
#ifdef CONFIG_IP_DCCP_CCID3_DEBUG
static int ccid3_debug;
#define ccid3_pr_debug(format, a...)	DCCP_PR_DEBUG(ccid3_debug, format, ##a)
45 46 47 48
#else
#define ccid3_pr_debug(format, a...)
#endif

49 50 51
/*
 *	Transmitter Half-Connection Routines
 */
52

53
/*
54 55 56 57 58 59
 * Compute the initial sending rate X_init in the manner of RFC 3390:
 *
 *	X_init  =  min(4 * s, max(2 * s, 4380 bytes)) / RTT
 *
 * Note that RFC 3390 uses MSS, RFC 4342 refers to RFC 3390, and rfc3448bis
 * (rev-02) clarifies the use of RFC 3390 with regard to the above formula.
60 61 62 63
 * For consistency with other parts of the code, X_init is scaled by 2^6.
 */
static inline u64 rfc3390_initial_rate(struct sock *sk)
{
64
	const struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
65
	const __u32 w_init = clamp_t(__u32, 4380U, 2 * hctx->s, 4 * hctx->s);
66

67
	return scaled_div(w_init << 6, hctx->rtt);
68 69
}

70 71 72
/**
 * ccid3_update_send_interval  -  Calculate new t_ipi = s / X_inst
 * This respects the granularity of X_inst (64 * bytes/second).
73
 */
I
Ilpo Järvinen 已提交
74
static void ccid3_update_send_interval(struct ccid3_hc_tx_sock *hctx)
75
{
76
	hctx->t_ipi = scaled_div32(((u64)hctx->s) << 6, hctx->x);
77

78 79
	ccid3_pr_debug("t_ipi=%u, s=%u, X=%u\n", hctx->t_ipi,
		       hctx->s, (unsigned)(hctx->x >> 6));
80
}
81

82 83
static u32 ccid3_hc_tx_idle_rtt(struct ccid3_hc_tx_sock *hctx, ktime_t now)
{
84
	u32 delta = ktime_us_delta(now, hctx->t_last_win_count);
85

86
	return delta / hctx->rtt;
87 88
}

89 90 91 92
/**
 * ccid3_hc_tx_update_x  -  Update allowed sending rate X
 * @stamp: most recent time if available - can be left NULL.
 * This function tracks draft rfc3448bis, check there for latest details.
93
 *
94 95 96 97 98
 * Note: X and X_recv are both stored in units of 64 * bytes/second, to support
 *       fine-grained resolution of sending rates. This requires scaling by 2^6
 *       throughout the code. Only X_calc is unscaled (in bytes/second).
 *
 */
99
static void ccid3_hc_tx_update_x(struct sock *sk, ktime_t *stamp)
100
{
101
	struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
102 103
	u64 min_rate = 2 * hctx->x_recv;
	const u64 old_x = hctx->x;
104
	ktime_t now = stamp ? *stamp : ktime_get_real();
105

106 107
	/*
	 * Handle IDLE periods: do not reduce below RFC3390 initial sending rate
108 109
	 * when idling [RFC 4342, 5.1]. Definition of idling is from rfc3448bis:
	 * a sender is idle if it has not sent anything over a 2-RTT-period.
110 111
	 * For consistency with X and X_recv, min_rate is also scaled by 2^6.
	 */
112
	if (ccid3_hc_tx_idle_rtt(hctx, now) >= 2) {
113
		min_rate = rfc3390_initial_rate(sk);
114
		min_rate = max(min_rate, 2 * hctx->x_recv);
115 116
	}

117
	if (hctx->p > 0) {
118

119 120
		hctx->x = min(((u64)hctx->x_calc) << 6, min_rate);
		hctx->x = max(hctx->x, (((u64)hctx->s) << 6) / TFRC_T_MBI);
121

122
	} else if (ktime_us_delta(now, hctx->t_ld) - (s64)hctx->rtt >= 0) {
123

124 125 126 127
		hctx->x = min(2 * hctx->x, min_rate);
		hctx->x = max(hctx->x,
			      scaled_div(((u64)hctx->s) << 6, hctx->rtt));
		hctx->t_ld = now;
128
	}
129

130
	if (hctx->x != old_x) {
131 132
		ccid3_pr_debug("X_prev=%u, X_now=%u, X_calc=%u, "
			       "X_recv=%u\n", (unsigned)(old_x >> 6),
133 134
			       (unsigned)(hctx->x >> 6), hctx->x_calc,
			       (unsigned)(hctx->x_recv >> 6));
I
Ian McDonald 已提交
135

136
		ccid3_update_send_interval(hctx);
I
Ian McDonald 已提交
137
	}
138 139
}

140
/*
141 142
 *	Track the mean packet size `s' (cf. RFC 4342, 5.3 and  RFC 3448, 4.1)
 *	@len: DCCP packet payload size in bytes
143 144 145
 */
static inline void ccid3_hc_tx_update_s(struct ccid3_hc_tx_sock *hctx, int len)
{
146
	const u16 old_s = hctx->s;
147

148
	hctx->s = tfrc_ewma(hctx->s, len, 9);
149

150
	if (hctx->s != old_s)
151
		ccid3_update_send_interval(hctx);
152 153
}

154
/*
155
 *	Update Window Counter using the algorithm from [RFC 4342, 8.1].
156
 *	As elsewhere, RTT > 0 is assumed by using dccp_sample_rtt().
157 158
 */
static inline void ccid3_hc_tx_update_win_count(struct ccid3_hc_tx_sock *hctx,
159
						ktime_t now)
160
{
161 162
	u32 delta = ktime_us_delta(now, hctx->t_last_win_count),
	    quarter_rtts = (4 * delta) / hctx->rtt;
163 164

	if (quarter_rtts > 0) {
165 166 167
		hctx->t_last_win_count = now;
		hctx->last_win_count  += min(quarter_rtts, 5U);
		hctx->last_win_count  &= 0xF;		/* mod 16 */
168 169 170
	}
}

171 172 173
static void ccid3_hc_tx_no_feedback_timer(unsigned long data)
{
	struct sock *sk = (struct sock *)data;
174
	struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
175
	unsigned long t_nfb = USEC_PER_SEC / 5;
176 177 178 179 180

	bh_lock_sock(sk);
	if (sock_owned_by_user(sk)) {
		/* Try again later. */
		/* XXX: set some sensible MIB */
181
		goto restart_timer;
182 183
	}

184 185
	ccid3_pr_debug("%s(%p) entry with%s feedback\n", dccp_role(sk), sk,
		       hctx->feedback ? "" : "out");
186

G
Gerrit Renker 已提交
187 188 189 190 191
	/* Ignore and do not restart after leaving the established state */
	if ((1 << sk->sk_state) & ~(DCCPF_OPEN | DCCPF_PARTOPEN))
		goto out;

	/* Reset feedback state to "no feedback received" */
192
	hctx->feedback = false;
193 194 195

	/*
	 * Determine new allowed sending rate X as per draft rfc3448bis-00, 4.4
196
	 * RTO is 0 if and only if no feedback has been received yet.
197
	 */
198
	if (hctx->t_rto == 0 || hctx->p == 0) {
199 200

		/* halve send rate directly */
201
		hctx->x = max(hctx->x / 2, (((u64)hctx->s) << 6) / TFRC_T_MBI);
202
		ccid3_update_send_interval(hctx);
203
	} else {
204
		/*
205
		 *  Modify the cached value of X_recv
206
		 *
207
		 *  If (X_calc > 2 * X_recv)
208 209 210 211 212
		 *    X_recv = max(X_recv / 2, s / (2 * t_mbi));
		 *  Else
		 *    X_recv = X_calc / 4;
		 *
		 *  Note that X_recv is scaled by 2^6 while X_calc is not
213
		 */
214
		BUG_ON(hctx->p && !hctx->x_calc);
215

216 217 218 219
		if (hctx->x_calc > (hctx->x_recv >> 5))
			hctx->x_recv =
				max(hctx->x_recv / 2,
				    (((__u64)hctx->s) << 6) / (2 * TFRC_T_MBI));
220
		else {
221 222
			hctx->x_recv = hctx->x_calc;
			hctx->x_recv <<= 4;
223
		}
224
		ccid3_hc_tx_update_x(sk, NULL);
225
	}
226
	ccid3_pr_debug("Reduced X to %llu/64 bytes/sec\n",
227
			(unsigned long long)hctx->x);
228 229 230 231 232

	/*
	 * Set new timeout for the nofeedback timer.
	 * See comments in packet_recv() regarding the value of t_RTO.
	 */
233
	if (unlikely(hctx->t_rto == 0))		/* no feedback received yet */
234 235
		t_nfb = TFRC_INITIAL_TIMEOUT;
	else
236
		t_nfb = max(hctx->t_rto, 2 * hctx->t_ipi);
237

238
restart_timer:
239
	sk_reset_timer(sk, &hctx->no_feedback_timer,
240
			   jiffies + usecs_to_jiffies(t_nfb));
241 242 243 244 245
out:
	bh_unlock_sock(sk);
	sock_put(sk);
}

246 247 248 249 250
/**
 * ccid3_hc_tx_send_packet  -  Delay-based dequeueing of TX packets
 * @skb: next packet candidate to send on @sk
 * This function uses the convention of ccid_packet_dequeue_eval() and
 * returns a millisecond-delay value between 0 and t_mbi = 64000 msec.
251
 */
252
static int ccid3_hc_tx_send_packet(struct sock *sk, struct sk_buff *skb)
253 254
{
	struct dccp_sock *dp = dccp_sk(sk);
255
	struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
256 257
	ktime_t now = ktime_get_real();
	s64 delay;
258 259

	/*
260 261 262
	 * This function is called only for Data and DataAck packets. Sending
	 * zero-sized Data(Ack)s is theoretically possible, but for congestion
	 * control this case is pathological - ignore it.
263
	 */
264
	if (unlikely(skb->len == 0))
265
		return -EBADMSG;
266

267
	if (hctx->s == 0) {
268
		sk_reset_timer(sk, &hctx->no_feedback_timer, (jiffies +
269
				usecs_to_jiffies(TFRC_INITIAL_TIMEOUT)));
270 271
		hctx->last_win_count   = 0;
		hctx->t_last_win_count = now;
272 273

		/* Set t_0 for initial packet */
274
		hctx->t_nom = now;
275

276
		hctx->s = skb->len;
277 278 279 280 281 282 283 284

		/*
		 * Use initial RTT sample when available: recommended by erratum
		 * to RFC 4342. This implements the initialisation procedure of
		 * draft rfc3448bis, section 4.2. Remember, X is scaled by 2^6.
		 */
		if (dp->dccps_syn_rtt) {
			ccid3_pr_debug("SYN RTT = %uus\n", dp->dccps_syn_rtt);
285 286 287
			hctx->rtt  = dp->dccps_syn_rtt;
			hctx->x    = rfc3390_initial_rate(sk);
			hctx->t_ld = now;
288
		} else {
289 290 291 292 293 294
			/*
			 * Sender does not have RTT sample:
			 * - set fallback RTT (RFC 4340, 3.4) since a RTT value
			 *   is needed in several parts (e.g.  window counter);
			 * - set sending rate X_pps = 1pps as per RFC 3448, 4.2.
			 */
295 296 297
			hctx->rtt = DCCP_FALLBACK_RTT;
			hctx->x   = hctx->s;
			hctx->x <<= 6;
298 299 300
		}
		ccid3_update_send_interval(hctx);

G
Gerrit Renker 已提交
301
	} else {
302
		delay = ktime_us_delta(hctx->t_nom, now);
I
Ian McDonald 已提交
303
		ccid3_pr_debug("delay=%ld\n", (long)delay);
304
		/*
305
		 *	Scheduling of packet transmissions [RFC 3448, 4.6]
306 307 308 309 310 311
		 *
		 * if (t_now > t_nom - delta)
		 *       // send the packet now
		 * else
		 *       // send the packet in (t_nom - t_now) milliseconds.
		 */
312 313
		if (delay >= TFRC_T_DELTA)
			return (u32)delay / USEC_PER_MSEC;
314

315
		ccid3_hc_tx_update_win_count(hctx, now);
316 317
	}

318 319
	/* prepare to send now (add options etc.) */
	dp->dccps_hc_tx_insert_options = 1;
320
	DCCP_SKB_CB(skb)->dccpd_ccval  = hctx->last_win_count;
321 322

	/* set the nominal send time for the next following packet */
323
	hctx->t_nom = ktime_add_us(hctx->t_nom, hctx->t_ipi);
324
	return CCID_PACKET_SEND_AT_ONCE;
325 326
}

327
static void ccid3_hc_tx_packet_sent(struct sock *sk, unsigned int len)
328
{
329
	struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
330

331
	ccid3_hc_tx_update_s(hctx, len);
332

333
	if (tfrc_tx_hist_add(&hctx->hist, dccp_sk(sk)->dccps_gss))
334
		DCCP_CRIT("packet history - out of memory!");
335 336 337 338
}

static void ccid3_hc_tx_packet_recv(struct sock *sk, struct sk_buff *skb)
{
339
	struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
340
	struct tfrc_tx_hist_entry *acked;
341
	ktime_t now;
342
	unsigned long t_nfb;
343
	u32 r_sample;
344

345 346 347 348
	/* we are only interested in ACKs */
	if (!(DCCP_SKB_CB(skb)->dccpd_type == DCCP_PKT_ACK ||
	      DCCP_SKB_CB(skb)->dccpd_type == DCCP_PKT_DATAACK))
		return;
349 350 351 352 353 354 355 356 357 358
	/*
	 * Locate the acknowledged packet in the TX history.
	 *
	 * Returning "entry not found" here can for instance happen when
	 *  - the host has not sent out anything (e.g. a passive server),
	 *  - the Ack is outdated (packet with higher Ack number was received),
	 *  - it is a bogus Ack (for a packet not sent on this connection).
	 */
	acked = tfrc_tx_hist_find_entry(hctx->hist, dccp_hdr_ack_seq(skb));
	if (acked == NULL)
359
		return;
360 361 362 363 364 365 366
	/* For the sake of RTT sampling, ignore/remove all older entries */
	tfrc_tx_hist_purge(&acked->next);

	/* Update the moving average for the RTT estimate (RFC 3448, 4.3) */
	now	  = ktime_get_real();
	r_sample  = dccp_sample_rtt(sk, ktime_us_delta(now, acked->stamp));
	hctx->rtt = tfrc_ewma(hctx->rtt, r_sample, 9);
367

368 369 370
	/*
	 * Update allowed sending rate X as per draft rfc3448bis-00, 4.2/3
	 */
371 372
	if (!hctx->feedback) {
		hctx->feedback = true;
373

374
		if (hctx->t_rto == 0) {
375 376 377
			/*
			 * Initial feedback packet: Larger Initial Windows (4.2)
			 */
378 379
			hctx->x    = rfc3390_initial_rate(sk);
			hctx->t_ld = now;
380

381
			ccid3_update_send_interval(hctx);
382

383
			goto done_computing_x;
384
		} else if (hctx->p == 0) {
385 386 387 388 389 390
			/*
			 * First feedback after nofeedback timer expiry (4.3)
			 */
			goto done_computing_x;
		}
	}
391

392
	/* Update sending rate (step 4 of [RFC 3448, 4.3]) */
393 394
	if (hctx->p > 0)
		hctx->x_calc = tfrc_calc_x(hctx->s, hctx->rtt, hctx->p);
395
	ccid3_hc_tx_update_x(sk, &now);
396

397 398
done_computing_x:
	ccid3_pr_debug("%s(%p), RTT=%uus (sample=%uus), s=%u, "
399
			       "p=%u, X_calc=%u, X_recv=%u, X=%u\n",
400 401 402 403
			       dccp_role(sk), sk, hctx->rtt, r_sample,
			       hctx->s, hctx->p, hctx->x_calc,
			       (unsigned)(hctx->x_recv >> 6),
			       (unsigned)(hctx->x >> 6));
404

405
	/* unschedule no feedback timer */
406
	sk_stop_timer(sk, &hctx->no_feedback_timer);
407

408 409 410 411 412
	/*
	 * As we have calculated new ipi, delta, t_nom it is possible
	 * that we now can send a packet, so wake up dccp_wait_for_ccid
	 */
	sk->sk_write_space(sk);
413

414 415 416 417 418 419
	/*
	 * Update timeout interval for the nofeedback timer.
	 * We use a configuration option to increase the lower bound.
	 * This can help avoid triggering the nofeedback timer too
	 * often ('spinning') on LANs with small RTTs.
	 */
420 421
	hctx->t_rto = max_t(u32, 4 * hctx->rtt, (CONFIG_IP_DCCP_CCID3_RTO *
						 (USEC_PER_SEC / 1000)));
422 423 424 425
	/*
	 * Schedule no feedback timer to expire in
	 * max(t_RTO, 2 * s/X)  =  max(t_RTO, 2 * t_ipi)
	 */
426
	t_nfb = max(hctx->t_rto, 2 * hctx->t_ipi);
427

428 429
	ccid3_pr_debug("%s(%p), Scheduled no feedback timer to "
		       "expire in %lu jiffies (%luus)\n",
430
		       dccp_role(sk), sk, usecs_to_jiffies(t_nfb), t_nfb);
431

432
	sk_reset_timer(sk, &hctx->no_feedback_timer,
433
			   jiffies + usecs_to_jiffies(t_nfb));
434 435
}

436 437
static int ccid3_hc_tx_parse_options(struct sock *sk, u8 packet_type,
				     u8 option, u8 *optval, u8 optlen)
438
{
439
	struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
G
Gerrit Renker 已提交
440
	__be32 opt_val;
441 442

	switch (option) {
443
	case TFRC_OPT_RECEIVE_RATE:
444
	case TFRC_OPT_LOSS_EVENT_RATE:
445 446 447 448
		/* Must be ignored on Data packets, cf. RFC 4342 8.3 and 8.5 */
		if (packet_type == DCCP_PKT_DATA)
			break;
		if (unlikely(optlen != 4)) {
449
			DCCP_WARN("%s(%p), invalid len %d for %u\n",
450
				  dccp_role(sk), sk, optlen, option);
451
			return -EINVAL;
452
		}
453
		opt_val = ntohl(get_unaligned((__be32 *)optval));
454 455

		if (option == TFRC_OPT_RECEIVE_RATE) {
456 457 458 459
			/* Receive Rate is kept in units of 64 bytes/second */
			hctx->x_recv = opt_val;
			hctx->x_recv <<= 6;

460
			ccid3_pr_debug("%s(%p), RECEIVE_RATE=%u\n",
461 462
				       dccp_role(sk), sk, opt_val);
		} else {
463 464 465
			/* Update the fixpoint Loss Event Rate fraction */
			hctx->p = tfrc_invert_loss_event_rate(opt_val);

466 467
			ccid3_pr_debug("%s(%p), LOSS_EVENT_RATE=%u\n",
				       dccp_role(sk), sk, opt_val);
468 469
		}
	}
470
	return 0;
471 472
}

473
static int ccid3_hc_tx_init(struct ccid *ccid, struct sock *sk)
474
{
475
	struct ccid3_hc_tx_sock *hctx = ccid_priv(ccid);
476

477 478 479
	hctx->hist  = NULL;
	setup_timer(&hctx->no_feedback_timer,
		    ccid3_hc_tx_no_feedback_timer, (unsigned long)sk);
480 481 482 483 484
	return 0;
}

static void ccid3_hc_tx_exit(struct sock *sk)
{
485
	struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
486

487 488
	sk_stop_timer(sk, &hctx->no_feedback_timer);
	tfrc_tx_hist_purge(&hctx->hist);
489 490
}

491 492
static void ccid3_hc_tx_get_info(struct sock *sk, struct tcp_info *info)
{
493 494
	info->tcpi_rto = ccid3_hc_tx_sk(sk)->t_rto;
	info->tcpi_rtt = ccid3_hc_tx_sk(sk)->rtt;
495 496 497 498 499
}

static int ccid3_hc_tx_getsockopt(struct sock *sk, const int optname, int len,
				  u32 __user *optval, int __user *optlen)
{
500
	const struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk);
501
	struct tfrc_tx_info tfrc;
502 503 504 505
	const void *val;

	switch (optname) {
	case DCCP_SOCKOPT_CCID_TX_INFO:
506
		if (len < sizeof(tfrc))
507
			return -EINVAL;
508 509 510 511 512 513 514 515 516
		tfrc.tfrctx_x	   = hctx->x;
		tfrc.tfrctx_x_recv = hctx->x_recv;
		tfrc.tfrctx_x_calc = hctx->x_calc;
		tfrc.tfrctx_rtt	   = hctx->rtt;
		tfrc.tfrctx_p	   = hctx->p;
		tfrc.tfrctx_rto	   = hctx->t_rto;
		tfrc.tfrctx_ipi	   = hctx->t_ipi;
		len = sizeof(tfrc);
		val = &tfrc;
517 518 519 520 521 522 523 524 525 526 527
		break;
	default:
		return -ENOPROTOOPT;
	}

	if (put_user(len, optlen) || copy_to_user(optval, val, len))
		return -EFAULT;

	return 0;
}

528
/*
529
 *	Receiver Half-Connection Routines
530
 */
531 532 533
static void ccid3_hc_rx_send_feedback(struct sock *sk,
				      const struct sk_buff *skb,
				      enum ccid3_fback_type fbtype)
534
{
535
	struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
536
	struct dccp_sock *dp = dccp_sk(sk);
G
Gerrit Renker 已提交
537
	ktime_t now = ktime_get_real();
538
	s64 delta = 0;
539

540 541
	switch (fbtype) {
	case CCID3_FBACK_INITIAL:
542 543
		hcrx->x_recv = 0;
		hcrx->p_inverse = ~0U;   /* see RFC 4342, 8.5 */
544
		break;
545
	case CCID3_FBACK_PARAM_CHANGE:
546
		if (unlikely(hcrx->feedback == CCID3_FBACK_NONE)) {
547 548 549 550 551 552 553 554 555 556 557 558
			/*
			 * rfc3448bis-06, 6.3.1: First packet(s) lost or marked
			 * FIXME: in rfc3448bis the receiver returns X_recv=0
			 * here as it normally would in the first feedback packet.
			 * However this is not possible yet, since the code still
			 * uses RFC 3448, i.e.
			 *    If (p > 0)
			 *      Calculate X_calc using the TCP throughput equation.
			 *      X = max(min(X_calc, 2*X_recv), s/t_mbi);
			 * would bring X down to s/t_mbi. That is why we return
			 * X_recv according to rfc3448bis-06 for the moment.
			 */
559 560
			u32 s = tfrc_rx_hist_packet_size(&hcrx->hist),
			    rtt = tfrc_rx_hist_rtt(&hcrx->hist);
561 562 563 564

			hcrx->x_recv = scaled_div32(s, 2 * rtt);
			break;
		}
565 566 567 568 569 570 571 572 573 574
		/*
		 * When parameters change (new loss or p > p_prev), we do not
		 * have a reliable estimate for R_m of [RFC 3448, 6.2] and so
		 * need to  reuse the previous value of X_recv. However, when
		 * X_recv was 0 (due to early loss), this would kill X down to
		 * s/t_mbi (i.e. one packet in 64 seconds).
		 * To avoid such drastic reduction, we approximate X_recv as
		 * the number of bytes since last feedback.
		 * This is a safe fallback, since X is bounded above by X_calc.
		 */
575
		if (hcrx->x_recv > 0)
576 577 578
			break;
		/* fall through */
	case CCID3_FBACK_PERIODIC:
579 580 581 582 583
		/*
		 * FIXME: check if delta is less than or equal to 1 RTT using
		 * the receiver RTT sample. This is described in Errata 610/611
		 * of RFC 4342 which reference section 6.2 of RFC 3448.
		 */
584
		delta = ktime_us_delta(now, hcrx->tstamp_last_feedback);
585 586 587
		if (delta <= 0)
			DCCP_BUG("delta (%ld) <= 0", (long)delta);
		else
588
			hcrx->x_recv = scaled_div32(hcrx->hist.bytes_recvd, delta);
589
		break;
590
	default:
591 592 593
		return;
	}

594 595
	ccid3_pr_debug("Interval %ldusec, X_recv=%u, 1/p=%u\n",
		       (long)delta, hcrx->x_recv, hcrx->p_inverse);
596

597 598
	hcrx->tstamp_last_feedback = now;
	hcrx->last_counter	   = dccp_hdr(skb)->dccph_ccval;
599
	hcrx->hist.bytes_recvd	   = 0;
600
	hcrx->feedback		   = fbtype;
601

602
	dp->dccps_hc_rx_insert_options = 1;
603 604 605
	dccp_send_ack(sk);
}

606
static int ccid3_hc_rx_insert_options(struct sock *sk, struct sk_buff *skb)
607
{
608
	const struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
609
	__be32 x_recv, pinv;
610

611
	if (!(sk->sk_state == DCCP_OPEN || sk->sk_state == DCCP_PARTOPEN))
612
		return 0;
613

614
	if (dccp_packet_without_ack(skb))
615 616
		return 0;

617 618
	x_recv = htonl(hcrx->x_recv);
	pinv   = htonl(hcrx->p_inverse);
619

620
	if (dccp_insert_option(sk, skb, TFRC_OPT_LOSS_EVENT_RATE,
621
			       &pinv, sizeof(pinv)) ||
622
	    dccp_insert_option(sk, skb, TFRC_OPT_RECEIVE_RATE,
623
			       &x_recv, sizeof(x_recv)))
624 625 626
		return -1;

	return 0;
627 628
}

629 630 631 632 633 634 635 636 637 638 639 640
/** ccid3_first_li  -  Implements [RFC 3448, 6.3.1]
 *
 * Determine the length of the first loss interval via inverse lookup.
 * Assume that X_recv can be computed by the throughput equation
 *		    s
 *	X_recv = --------
 *		 R * fval
 * Find some p such that f(p) = fval; return 1/p (scaled).
 */
static u32 ccid3_first_li(struct sock *sk)
{
	struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
641 642
	u32 s = tfrc_rx_hist_packet_size(&hcrx->hist),
	    rtt = tfrc_rx_hist_rtt(&hcrx->hist), x_recv, p, delta;
643 644
	u64 fval;

645 646 647 648 649
	/*
	 * rfc3448bis-06, 6.3.1: First data packet(s) are marked or lost. Set p
	 * to give the equivalent of X_target = s/(2*R). Thus fval = 2 and so p
	 * is about 20.64%. This yields an interval length of 4.84 (rounded up).
	 */
650
	if (unlikely(hcrx->feedback == CCID3_FBACK_NONE))
651 652
		return 5;

653
	delta = ktime_to_us(net_timedelta(hcrx->tstamp_last_feedback));
654
	x_recv = scaled_div32(hcrx->hist.bytes_recvd, delta);
655 656
	if (x_recv == 0) {		/* would also trigger divide-by-zero */
		DCCP_WARN("X_recv==0\n");
657
		if (hcrx->x_recv == 0) {
658 659 660
			DCCP_BUG("stored value of X_recv is zero");
			return ~0U;
		}
661
		x_recv = hcrx->x_recv;
662 663
	}

664
	fval = scaled_div32(scaled_div(s, rtt), x_recv);
665 666 667 668 669 670 671 672
	p = tfrc_calc_x_reverse_lookup(fval);

	ccid3_pr_debug("%s(%p), receive rate=%u bytes/s, implied "
		       "loss rate=%u\n", dccp_role(sk), sk, x_recv, p);

	return p == 0 ? ~0U : scaled_div(1, p);
}

673
static void ccid3_hc_rx_packet_recv(struct sock *sk, struct sk_buff *skb)
674
{
675
	struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
676
	enum ccid3_fback_type do_feedback = CCID3_FBACK_NONE;
677
	const u64 ndp = dccp_sk(sk)->dccps_options_received.dccpor_ndp;
678 679
	const bool is_data_packet = dccp_data_packet(skb);

680 681 682 683 684 685 686 687 688
	/*
	 * Perform loss detection and handle pending losses
	 */
	if (tfrc_rx_handle_loss(&hcrx->hist, &hcrx->li_hist,
				skb, ndp, ccid3_first_li, sk)) {
		do_feedback = CCID3_FBACK_PARAM_CHANGE;
		goto done_receiving;
	}

689 690
	if (unlikely(hcrx->feedback == CCID3_FBACK_NONE)) {
		if (is_data_packet)
691 692
			do_feedback = CCID3_FBACK_INITIAL;
		goto update_records;
I
Ian McDonald 已提交
693 694
	}

695
	if (tfrc_rx_hist_loss_pending(&hcrx->hist))
696
		return; /* done receiving */
697

698 699 700
	/*
	 * Check if the periodic once-per-RTT feedback is due; RFC 4342, 10.3
	 */
701 702
	if (is_data_packet &&
	    SUB16(dccp_hdr(skb)->dccph_ccval, hcrx->last_counter) > 3)
703
		do_feedback = CCID3_FBACK_PERIODIC;
I
Ian McDonald 已提交
704

705
update_records:
706
	tfrc_rx_hist_add_packet(&hcrx->hist, skb, ndp);
707

708
done_receiving:
709 710
	if (do_feedback)
		ccid3_hc_rx_send_feedback(sk, skb, do_feedback);
711 712
}

713
static int ccid3_hc_rx_init(struct ccid *ccid, struct sock *sk)
714
{
715
	struct ccid3_hc_rx_sock *hcrx = ccid_priv(ccid);
716

717
	tfrc_lh_init(&hcrx->li_hist);
718
	return tfrc_rx_hist_init(&hcrx->hist, sk);
719 720 721 722
}

static void ccid3_hc_rx_exit(struct sock *sk)
{
723
	struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
724

725 726
	tfrc_rx_hist_purge(&hcrx->hist);
	tfrc_lh_cleanup(&hcrx->li_hist);
727 728
}

729 730
static void ccid3_hc_rx_get_info(struct sock *sk, struct tcp_info *info)
{
731
	info->tcpi_options  |= TCPI_OPT_TIMESTAMPS;
732
	info->tcpi_rcv_rtt  = tfrc_rx_hist_rtt(&ccid3_hc_rx_sk(sk)->hist);
733 734
}

735 736 737
static int ccid3_hc_rx_getsockopt(struct sock *sk, const int optname, int len,
				  u32 __user *optval, int __user *optlen)
{
738
	const struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk);
739
	struct tfrc_rx_info rx_info;
740
	const void *val;
741

742 743
	switch (optname) {
	case DCCP_SOCKOPT_CCID_RX_INFO:
744
		if (len < sizeof(rx_info))
745
			return -EINVAL;
746
		rx_info.tfrcrx_x_recv = hcrx->x_recv;
747
		rx_info.tfrcrx_rtt    = tfrc_rx_hist_rtt(&hcrx->hist);
748
		rx_info.tfrcrx_p      = tfrc_invert_loss_event_rate(hcrx->p_inverse);
749 750
		len = sizeof(rx_info);
		val = &rx_info;
751 752 753 754 755 756 757 758 759 760 761
		break;
	default:
		return -ENOPROTOOPT;
	}

	if (put_user(len, optlen) || copy_to_user(optval, val, len))
		return -EFAULT;

	return 0;
}

762
static struct ccid_operations ccid3 = {
I
Ian McDonald 已提交
763
	.ccid_id		   = DCCPC_CCID3,
764
	.ccid_name		   = "TCP-Friendly Rate Control",
765
	.ccid_owner		   = THIS_MODULE,
766
	.ccid_hc_tx_obj_size	   = sizeof(struct ccid3_hc_tx_sock),
767 768 769 770 771 772
	.ccid_hc_tx_init	   = ccid3_hc_tx_init,
	.ccid_hc_tx_exit	   = ccid3_hc_tx_exit,
	.ccid_hc_tx_send_packet	   = ccid3_hc_tx_send_packet,
	.ccid_hc_tx_packet_sent	   = ccid3_hc_tx_packet_sent,
	.ccid_hc_tx_packet_recv	   = ccid3_hc_tx_packet_recv,
	.ccid_hc_tx_parse_options  = ccid3_hc_tx_parse_options,
773
	.ccid_hc_rx_obj_size	   = sizeof(struct ccid3_hc_rx_sock),
774 775 776 777
	.ccid_hc_rx_init	   = ccid3_hc_rx_init,
	.ccid_hc_rx_exit	   = ccid3_hc_rx_exit,
	.ccid_hc_rx_insert_options = ccid3_hc_rx_insert_options,
	.ccid_hc_rx_packet_recv	   = ccid3_hc_rx_packet_recv,
778 779
	.ccid_hc_rx_get_info	   = ccid3_hc_rx_get_info,
	.ccid_hc_tx_get_info	   = ccid3_hc_tx_get_info,
780 781
	.ccid_hc_rx_getsockopt	   = ccid3_hc_rx_getsockopt,
	.ccid_hc_tx_getsockopt	   = ccid3_hc_tx_getsockopt,
782
};
783

784
#ifdef CONFIG_IP_DCCP_CCID3_DEBUG
785
module_param(ccid3_debug, bool, 0644);
786
MODULE_PARM_DESC(ccid3_debug, "Enable debug messages");
787
#endif
788 789 790

static __init int ccid3_module_init(void)
{
791 792 793 794 795 796 797 798 799 800 801 802 803
	struct timespec tp;

	/*
	 * Without a fine-grained clock resolution, RTTs/X_recv are not sampled
	 * correctly and feedback is sent either too early or too late.
	 */
	hrtimer_get_res(CLOCK_MONOTONIC, &tp);
	if (tp.tv_sec || tp.tv_nsec > DCCP_TIME_RESOLUTION * NSEC_PER_USEC) {
		printk(KERN_ERR "%s: Timer too coarse (%ld usec), need %u-usec"
		       " resolution - check your clocksource.\n", __func__,
		       tp.tv_nsec/NSEC_PER_USEC, DCCP_TIME_RESOLUTION);
		return -ESOCKTNOSUPPORT;
	}
804
	return ccid_register(&ccid3);
805 806 807 808 809 810 811 812 813
}
module_init(ccid3_module_init);

static __exit void ccid3_module_exit(void)
{
	ccid_unregister(&ccid3);
}
module_exit(ccid3_module_exit);

814
MODULE_AUTHOR("Ian McDonald <ian.mcdonald@jandi.co.nz>, "
815
	      "Arnaldo Carvalho de Melo <acme@ghostprotocols.net>");
816 817 818
MODULE_DESCRIPTION("DCCP TFRC CCID3 CCID");
MODULE_LICENSE("GPL");
MODULE_ALIAS("net-dccp-ccid-3");