sch_netem.c 26.9 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6
/*
 * net/sched/sch_netem.c	Network emulator
 *
 * 		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
7
 * 		2 of the License.
L
Linus Torvalds 已提交
8 9
 *
 *  		Many of the algorithms and ideas for this came from
10
 *		NIST Net which is not copyrighted.
L
Linus Torvalds 已提交
11 12 13 14 15
 *
 * Authors:	Stephen Hemminger <shemminger@osdl.org>
 *		Catalin(ux aka Dino) BOIE <catab at umbrella dot ro>
 */

16
#include <linux/mm.h>
L
Linus Torvalds 已提交
17
#include <linux/module.h>
18
#include <linux/slab.h>
L
Linus Torvalds 已提交
19 20 21 22
#include <linux/types.h>
#include <linux/kernel.h>
#include <linux/errno.h>
#include <linux/skbuff.h>
23
#include <linux/vmalloc.h>
L
Linus Torvalds 已提交
24
#include <linux/rtnetlink.h>
25
#include <linux/reciprocal_div.h>
26
#include <linux/rbtree.h>
L
Linus Torvalds 已提交
27

28
#include <net/netlink.h>
L
Linus Torvalds 已提交
29
#include <net/pkt_sched.h>
E
Eric Dumazet 已提交
30
#include <net/inet_ecn.h>
L
Linus Torvalds 已提交
31

32
#define VERSION "1.3"
S
Stephen Hemminger 已提交
33

L
Linus Torvalds 已提交
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
/*	Network Emulation Queuing algorithm.
	====================================

	Sources: [1] Mark Carson, Darrin Santay, "NIST Net - A Linux-based
		 Network Emulation Tool
		 [2] Luigi Rizzo, DummyNet for FreeBSD

	 ----------------------------------------------------------------

	 This started out as a simple way to delay outgoing packets to
	 test TCP but has grown to include most of the functionality
	 of a full blown network emulator like NISTnet. It can delay
	 packets and add random jitter (and correlation). The random
	 distribution can be loaded from a table as well to provide
	 normal, Pareto, or experimental curves. Packet loss,
	 duplication, and reordering can also be emulated.

	 This qdisc does not do classification that can be handled in
	 layering other disciplines.  It does not need to do bandwidth
	 control either since that can be handled by using token
	 bucket or other rate control.
55 56 57 58 59 60 61 62 63 64 65 66 67 68

     Correlated Loss Generator models

	Added generation of correlated loss according to the
	"Gilbert-Elliot" model, a 4-state markov model.

	References:
	[1] NetemCLG Home http://netgroup.uniroma2.it/NetemCLG
	[2] S. Salsano, F. Ludovici, A. Ordine, "Definition of a general
	and intuitive loss model for packet networks and its implementation
	in the Netem module in the Linux kernel", available in [1]

	Authors: Stefano Salsano <stefano.salsano at uniroma2.it
		 Fabio Ludovici <fabio.ludovici at yahoo.it>
L
Linus Torvalds 已提交
69 70 71
*/

struct netem_sched_data {
72 73
	/* internal t(ime)fifo qdisc uses t_root and sch->limit */
	struct rb_root t_root;
E
Eric Dumazet 已提交
74 75

	/* optional qdisc for classful handling (NULL at netem init) */
L
Linus Torvalds 已提交
76
	struct Qdisc	*qdisc;
E
Eric Dumazet 已提交
77

78
	struct qdisc_watchdog watchdog;
L
Linus Torvalds 已提交
79

80 81 82
	psched_tdiff_t latency;
	psched_tdiff_t jitter;

L
Linus Torvalds 已提交
83
	u32 loss;
E
Eric Dumazet 已提交
84
	u32 ecn;
L
Linus Torvalds 已提交
85 86 87 88
	u32 limit;
	u32 counter;
	u32 gap;
	u32 duplicate;
89
	u32 reorder;
90
	u32 corrupt;
Y
Yang Yingliang 已提交
91
	u64 rate;
92 93
	s32 packet_overhead;
	u32 cell_size;
94
	struct reciprocal_value cell_size_reciprocal;
95
	s32 cell_overhead;
L
Linus Torvalds 已提交
96 97

	struct crndstate {
98 99
		u32 last;
		u32 rho;
100
	} delay_cor, loss_cor, dup_cor, reorder_cor, corrupt_cor;
L
Linus Torvalds 已提交
101 102 103 104 105

	struct disttable {
		u32  size;
		s16 table[0];
	} *delay_dist;
106 107 108 109 110 111 112

	enum  {
		CLG_RANDOM,
		CLG_4_STATES,
		CLG_GILB_ELL,
	} loss_model;

113 114 115 116 117 118 119
	enum {
		TX_IN_GAP_PERIOD = 1,
		TX_IN_BURST_PERIOD,
		LOST_IN_GAP_PERIOD,
		LOST_IN_BURST_PERIOD,
	} _4_state_model;

120 121 122 123 124
	enum {
		GOOD_STATE = 1,
		BAD_STATE,
	} GE_state_model;

125 126 127 128 129 130 131 132 133 134 135 136 137
	/* Correlated Loss Generation models */
	struct clgstate {
		/* state of the Markov chain */
		u8 state;

		/* 4-states and Gilbert-Elliot models */
		u32 a1;	/* p13 for 4-states or p for GE */
		u32 a2;	/* p31 for 4-states or r for GE */
		u32 a3;	/* p32 for 4-states or h for GE */
		u32 a4;	/* p14 for 4-states or 1-k for GE */
		u32 a5; /* p23 used only in 4-states */
	} clg;

L
Linus Torvalds 已提交
138 139
};

E
Eric Dumazet 已提交
140 141
/* Time stamp put into socket buffer control block
 * Only valid when skbs are in our internal t(ime)fifo queue.
E
Eric Dumazet 已提交
142 143 144 145
 *
 * As skb->rbnode uses same storage than skb->next, skb->prev and skb->tstamp,
 * and skb->next & skb->prev are scratch space for a qdisc,
 * we save skb->tstamp value in skb->cb[] before destroying it.
E
Eric Dumazet 已提交
146
 */
L
Linus Torvalds 已提交
147 148
struct netem_skb_cb {
	psched_time_t	time_to_send;
149
	ktime_t		tstamp_save;
L
Linus Torvalds 已提交
150 151
};

152 153 154

static struct sk_buff *netem_rb_to_skb(struct rb_node *rb)
{
E
Eric Dumazet 已提交
155
	return container_of(rb, struct sk_buff, rbnode);
156 157
}

158 159
static inline struct netem_skb_cb *netem_skb_cb(struct sk_buff *skb)
{
160
	/* we assume we can use skb next/prev/tstamp as storage for rb_node */
161
	qdisc_cb_private_validate(skb, sizeof(struct netem_skb_cb));
162
	return (struct netem_skb_cb *)qdisc_skb_cb(skb)->data;
163 164
}

L
Linus Torvalds 已提交
165 166 167 168 169 170
/* init_crandom - initialize correlated random number generator
 * Use entropy source for initial seed.
 */
static void init_crandom(struct crndstate *state, unsigned long rho)
{
	state->rho = rho;
171
	state->last = prandom_u32();
L
Linus Torvalds 已提交
172 173 174 175 176 177
}

/* get_crandom - correlated random number generator
 * Next number depends on last value.
 * rho is scaled to avoid floating point.
 */
178
static u32 get_crandom(struct crndstate *state)
L
Linus Torvalds 已提交
179 180 181 182
{
	u64 value, rho;
	unsigned long answer;

S
Stephen Hemminger 已提交
183
	if (state->rho == 0)	/* no correlation */
184
		return prandom_u32();
L
Linus Torvalds 已提交
185

186
	value = prandom_u32();
L
Linus Torvalds 已提交
187 188 189 190 191 192
	rho = (u64)state->rho + 1;
	answer = (value * ((1ull<<32) - rho) + state->last * rho) >> 32;
	state->last = answer;
	return answer;
}

193 194 195 196 197 198 199
/* loss_4state - 4-state model loss generator
 * Generates losses according to the 4-state Markov chain adopted in
 * the GI (General and Intuitive) loss model.
 */
static bool loss_4state(struct netem_sched_data *q)
{
	struct clgstate *clg = &q->clg;
200
	u32 rnd = prandom_u32();
201 202

	/*
L
Lucas De Marchi 已提交
203
	 * Makes a comparison between rnd and the transition
204 205 206
	 * probabilities outgoing from the current state, then decides the
	 * next state and if the next packet has to be transmitted or lost.
	 * The four states correspond to:
207 208 209 210
	 *   TX_IN_GAP_PERIOD => successfully transmitted packets within a gap period
	 *   LOST_IN_BURST_PERIOD => isolated losses within a gap period
	 *   LOST_IN_GAP_PERIOD => lost packets within a burst period
	 *   TX_IN_GAP_PERIOD => successfully transmitted packets within a burst period
211 212
	 */
	switch (clg->state) {
213
	case TX_IN_GAP_PERIOD:
214
		if (rnd < clg->a4) {
215
			clg->state = LOST_IN_BURST_PERIOD;
216
			return true;
S
stephen hemminger 已提交
217
		} else if (clg->a4 < rnd && rnd < clg->a1 + clg->a4) {
218
			clg->state = LOST_IN_GAP_PERIOD;
219
			return true;
220 221 222
		} else if (clg->a1 + clg->a4 < rnd) {
			clg->state = TX_IN_GAP_PERIOD;
		}
223 224

		break;
225
	case TX_IN_BURST_PERIOD:
226
		if (rnd < clg->a5) {
227
			clg->state = LOST_IN_GAP_PERIOD;
228
			return true;
229 230 231
		} else {
			clg->state = TX_IN_BURST_PERIOD;
		}
232 233

		break;
234
	case LOST_IN_GAP_PERIOD:
235
		if (rnd < clg->a3)
236
			clg->state = TX_IN_BURST_PERIOD;
237
		else if (clg->a3 < rnd && rnd < clg->a2 + clg->a3) {
238
			clg->state = TX_IN_GAP_PERIOD;
239
		} else if (clg->a2 + clg->a3 < rnd) {
240
			clg->state = LOST_IN_GAP_PERIOD;
241 242 243
			return true;
		}
		break;
244 245
	case LOST_IN_BURST_PERIOD:
		clg->state = TX_IN_GAP_PERIOD;
246 247 248 249 250 251 252 253 254 255
		break;
	}

	return false;
}

/* loss_gilb_ell - Gilbert-Elliot model loss generator
 * Generates losses according to the Gilbert-Elliot loss model or
 * its special cases  (Gilbert or Simple Gilbert)
 *
L
Lucas De Marchi 已提交
256
 * Makes a comparison between random number and the transition
257
 * probabilities outgoing from the current state, then decides the
L
Lucas De Marchi 已提交
258
 * next state. A second random number is extracted and the comparison
259 260 261 262 263 264 265 266
 * with the loss probability of the current state decides if the next
 * packet will be transmitted or lost.
 */
static bool loss_gilb_ell(struct netem_sched_data *q)
{
	struct clgstate *clg = &q->clg;

	switch (clg->state) {
267
	case GOOD_STATE:
268
		if (prandom_u32() < clg->a1)
269
			clg->state = BAD_STATE;
270
		if (prandom_u32() < clg->a4)
271
			return true;
272
		break;
273
	case BAD_STATE:
274
		if (prandom_u32() < clg->a2)
275
			clg->state = GOOD_STATE;
276
		if (prandom_u32() > clg->a3)
277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310
			return true;
	}

	return false;
}

static bool loss_event(struct netem_sched_data *q)
{
	switch (q->loss_model) {
	case CLG_RANDOM:
		/* Random packet drop 0 => none, ~0 => all */
		return q->loss && q->loss >= get_crandom(&q->loss_cor);

	case CLG_4_STATES:
		/* 4state loss model algorithm (used also for GI model)
		* Extracts a value from the markov 4 state loss generator,
		* if it is 1 drops a packet and if needed writes the event in
		* the kernel logs
		*/
		return loss_4state(q);

	case CLG_GILB_ELL:
		/* Gilbert-Elliot loss model algorithm
		* Extracts a value from the Gilbert-Elliot loss generator,
		* if it is 1 drops a packet and if needed writes the event in
		* the kernel logs
		*/
		return loss_gilb_ell(q);
	}

	return false;	/* not reached */
}


L
Linus Torvalds 已提交
311 312 313 314
/* tabledist - return a pseudo-randomly distributed value with mean mu and
 * std deviation sigma.  Uses table lookup to approximate the desired
 * distribution, and a uniformly-distributed pseudo-random source.
 */
315 316 317
static psched_tdiff_t tabledist(psched_tdiff_t mu, psched_tdiff_t sigma,
				struct crndstate *state,
				const struct disttable *dist)
L
Linus Torvalds 已提交
318
{
319 320 321
	psched_tdiff_t x;
	long t;
	u32 rnd;
L
Linus Torvalds 已提交
322 323 324 325 326 327 328

	if (sigma == 0)
		return mu;

	rnd = get_crandom(state);

	/* default uniform distribution */
329
	if (dist == NULL)
L
Linus Torvalds 已提交
330 331 332 333 334 335 336 337 338 339 340 341
		return (rnd % (2*sigma)) - sigma + mu;

	t = dist->table[rnd % dist->size];
	x = (sigma % NETEM_DIST_SCALE) * t;
	if (x >= 0)
		x += NETEM_DIST_SCALE/2;
	else
		x -= NETEM_DIST_SCALE/2;

	return  x / NETEM_DIST_SCALE + (sigma / NETEM_DIST_SCALE) * t + mu;
}

342
static psched_time_t packet_len_2_sched_time(unsigned int len, struct netem_sched_data *q)
H
Hagen Paul Pfeifer 已提交
343
{
344
	u64 ticks;
345

346 347 348 349 350 351 352 353 354 355 356 357 358
	len += q->packet_overhead;

	if (q->cell_size) {
		u32 cells = reciprocal_divide(len, q->cell_size_reciprocal);

		if (len > cells * q->cell_size)	/* extra cell needed for remainder */
			cells++;
		len = cells * (q->cell_size + q->cell_overhead);
	}

	ticks = (u64)len * NSEC_PER_SEC;

	do_div(ticks, q->rate);
359
	return PSCHED_NS2TICKS(ticks);
H
Hagen Paul Pfeifer 已提交
360 361
}

362 363 364 365 366 367 368 369 370 371 372 373 374 375 376
static void tfifo_reset(struct Qdisc *sch)
{
	struct netem_sched_data *q = qdisc_priv(sch);
	struct rb_node *p;

	while ((p = rb_first(&q->t_root))) {
		struct sk_buff *skb = netem_rb_to_skb(p);

		rb_erase(p, &q->t_root);
		skb->next = NULL;
		skb->prev = NULL;
		kfree_skb(skb);
	}
}

377
static void tfifo_enqueue(struct sk_buff *nskb, struct Qdisc *sch)
E
Eric Dumazet 已提交
378
{
379
	struct netem_sched_data *q = qdisc_priv(sch);
E
Eric Dumazet 已提交
380
	psched_time_t tnext = netem_skb_cb(nskb)->time_to_send;
381
	struct rb_node **p = &q->t_root.rb_node, *parent = NULL;
E
Eric Dumazet 已提交
382

383 384
	while (*p) {
		struct sk_buff *skb;
E
Eric Dumazet 已提交
385

386 387
		parent = *p;
		skb = netem_rb_to_skb(parent);
388
		if (tnext >= netem_skb_cb(skb)->time_to_send)
389 390 391
			p = &parent->rb_right;
		else
			p = &parent->rb_left;
E
Eric Dumazet 已提交
392
	}
E
Eric Dumazet 已提交
393 394
	rb_link_node(&nskb->rbnode, parent, p);
	rb_insert_color(&nskb->rbnode, &q->t_root);
395
	sch->q.qlen++;
E
Eric Dumazet 已提交
396 397
}

398 399 400 401 402 403 404 405 406 407 408 409
/* netem can't properly corrupt a megapacket (like we get from GSO), so instead
 * when we statistically choose to corrupt one, we instead segment it, returning
 * the first packet to be corrupted, and re-enqueue the remaining frames
 */
static struct sk_buff *netem_segment(struct sk_buff *skb, struct Qdisc *sch)
{
	struct sk_buff *segs;
	netdev_features_t features = netif_skb_features(skb);

	segs = skb_gso_segment(skb, features & ~NETIF_F_GSO_MASK);

	if (IS_ERR_OR_NULL(segs)) {
410
		qdisc_drop(skb, sch);
411 412 413 414 415 416
		return NULL;
	}
	consume_skb(skb);
	return segs;
}

417 418 419 420 421 422
/*
 * Insert one skb into qdisc.
 * Note: parent depends on return value to account for queue length.
 * 	NET_XMIT_DROP: queue length didn't change.
 *      NET_XMIT_SUCCESS: one skb was queued.
 */
L
Linus Torvalds 已提交
423 424 425
static int netem_enqueue(struct sk_buff *skb, struct Qdisc *sch)
{
	struct netem_sched_data *q = qdisc_priv(sch);
426 427
	/* We don't fill cb now as skb_unshare() may invalidate it */
	struct netem_skb_cb *cb;
428
	struct sk_buff *skb2;
429 430 431
	struct sk_buff *segs = NULL;
	unsigned int len = 0, last_len, prev_len = qdisc_pkt_len(skb);
	int nb = 0;
432
	int count = 1;
433
	int rc = NET_XMIT_SUCCESS;
L
Linus Torvalds 已提交
434

435 436 437 438
	/* Random duplication */
	if (q->duplicate && q->duplicate >= get_crandom(&q->dup_cor))
		++count;

439
	/* Drop packet? */
E
Eric Dumazet 已提交
440 441
	if (loss_event(q)) {
		if (q->ecn && INET_ECN_set_ce(skb))
442
			qdisc_qstats_drop(sch); /* mark packet */
E
Eric Dumazet 已提交
443 444 445
		else
			--count;
	}
446
	if (count == 0) {
447
		qdisc_qstats_drop(sch);
L
Linus Torvalds 已提交
448
		kfree_skb(skb);
449
		return NET_XMIT_SUCCESS | __NET_XMIT_BYPASS;
L
Linus Torvalds 已提交
450 451
	}

E
Eric Dumazet 已提交
452 453 454 455
	/* If a delay is expected, orphan the skb. (orphaning usually takes
	 * place at TX completion time, so _before_ the link transit delay)
	 */
	if (q->latency || q->jitter)
456
		skb_orphan_partial(skb);
457

458 459 460 461 462 463
	/*
	 * If we need to duplicate packet, then re-insert at top of the
	 * qdisc tree, since parent queuer expects that only one
	 * skb will be queued.
	 */
	if (count > 1 && (skb2 = skb_clone(skb, GFP_ATOMIC)) != NULL) {
464
		struct Qdisc *rootq = qdisc_root(sch);
465 466
		u32 dupsave = q->duplicate; /* prevent duplicating a dup... */

467 468
		q->duplicate = 0;
		rootq->enqueue(skb2, rootq);
469
		q->duplicate = dupsave;
L
Linus Torvalds 已提交
470 471
	}

472 473 474 475 476 477 478
	/*
	 * Randomized packet corruption.
	 * Make copy if needed since we are modifying
	 * If packet is going to be hardware checksummed, then
	 * do it now in software before we mangle it.
	 */
	if (q->corrupt && q->corrupt >= get_crandom(&q->corrupt_cor)) {
479 480 481 482 483 484 485 486 487 488 489
		if (skb_is_gso(skb)) {
			segs = netem_segment(skb, sch);
			if (!segs)
				return NET_XMIT_DROP;
		} else {
			segs = skb;
		}

		skb = segs;
		segs = segs->next;

490 491
		if (!(skb = skb_unshare(skb, GFP_ATOMIC)) ||
		    (skb->ip_summed == CHECKSUM_PARTIAL &&
492 493 494 495
		     skb_checksum_help(skb))) {
			rc = qdisc_drop(skb, sch);
			goto finish_segs;
		}
496

497 498
		skb->data[prandom_u32() % skb_headlen(skb)] ^=
			1<<(prandom_u32() % 8);
499 500
	}

501
	if (unlikely(skb_queue_len(&sch->q) >= sch->limit))
502
		return qdisc_drop(skb, sch);
503

504
	qdisc_qstats_backlog_inc(sch, skb);
505

506
	cb = netem_skb_cb(skb);
E
Eric Dumazet 已提交
507
	if (q->gap == 0 ||		/* not doing reordering */
508
	    q->counter < q->gap - 1 ||	/* inside last reordering gap */
509
	    q->reorder < get_crandom(&q->reorder_cor)) {
510
		psched_time_t now;
S
Stephen Hemminger 已提交
511 512 513 514 515
		psched_tdiff_t delay;

		delay = tabledist(q->latency, q->jitter,
				  &q->delay_cor, q->delay_dist);

516
		now = psched_get_time();
H
Hagen Paul Pfeifer 已提交
517 518

		if (q->rate) {
519
			struct sk_buff *last;
H
Hagen Paul Pfeifer 已提交
520

521 522 523 524 525
			if (!skb_queue_empty(&sch->q))
				last = skb_peek_tail(&sch->q);
			else
				last = netem_rb_to_skb(rb_last(&q->t_root));
			if (last) {
H
Hagen Paul Pfeifer 已提交
526
				/*
527 528
				 * Last packet in queue is reference point (now),
				 * calculate this time bonus and subtract
H
Hagen Paul Pfeifer 已提交
529 530
				 * from delay.
				 */
531
				delay -= netem_skb_cb(last)->time_to_send - now;
532
				delay = max_t(psched_tdiff_t, 0, delay);
533
				now = netem_skb_cb(last)->time_to_send;
H
Hagen Paul Pfeifer 已提交
534
			}
535

536
			delay += packet_len_2_sched_time(qdisc_pkt_len(skb), q);
H
Hagen Paul Pfeifer 已提交
537 538
		}

539
		cb->time_to_send = now + delay;
540
		cb->tstamp_save = skb->tstamp;
L
Linus Torvalds 已提交
541
		++q->counter;
542
		tfifo_enqueue(skb, sch);
L
Linus Torvalds 已提交
543
	} else {
544
		/*
545 546 547
		 * Do re-ordering by putting one out of N packets at the front
		 * of the queue.
		 */
548
		cb->time_to_send = psched_get_time();
549
		q->counter = 0;
550

E
Eric Dumazet 已提交
551
		__skb_queue_head(&sch->q, skb);
552
		sch->qstats.requeues++;
553
	}
L
Linus Torvalds 已提交
554

555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575
finish_segs:
	if (segs) {
		while (segs) {
			skb2 = segs->next;
			segs->next = NULL;
			qdisc_skb_cb(segs)->pkt_len = segs->len;
			last_len = segs->len;
			rc = qdisc_enqueue(segs, sch);
			if (rc != NET_XMIT_SUCCESS) {
				if (net_xmit_drop_count(rc))
					qdisc_qstats_drop(sch);
			} else {
				nb++;
				len += last_len;
			}
			segs = skb2;
		}
		sch->q.qlen += nb;
		if (nb > 1)
			qdisc_tree_reduce_backlog(sch, 1 - nb, prev_len - len);
	}
576
	return NET_XMIT_SUCCESS;
L
Linus Torvalds 已提交
577 578 579 580 581 582
}

static struct sk_buff *netem_dequeue(struct Qdisc *sch)
{
	struct netem_sched_data *q = qdisc_priv(sch);
	struct sk_buff *skb;
583
	struct rb_node *p;
L
Linus Torvalds 已提交
584

E
Eric Dumazet 已提交
585
tfifo_dequeue:
586
	skb = __skb_dequeue(&sch->q);
587
	if (skb) {
588
		qdisc_qstats_backlog_dec(sch, skb);
589
deliver:
590 591 592 593 594
		qdisc_bstats_update(sch, skb);
		return skb;
	}
	p = rb_first(&q->t_root);
	if (p) {
595 596
		psched_time_t time_to_send;

597
		skb = netem_rb_to_skb(p);
598 599

		/* if more time remaining? */
600 601
		time_to_send = netem_skb_cb(skb)->time_to_send;
		if (time_to_send <= psched_get_time()) {
602 603 604
			rb_erase(p, &q->t_root);

			sch->q.qlen--;
605
			qdisc_qstats_backlog_dec(sch, skb);
606 607 608
			skb->next = NULL;
			skb->prev = NULL;
			skb->tstamp = netem_skb_cb(skb)->tstamp_save;
609

610 611 612 613 614 615 616 617
#ifdef CONFIG_NET_CLS_ACT
			/*
			 * If it's at ingress let's pretend the delay is
			 * from the network (tstamp will be updated).
			 */
			if (G_TC_FROM(skb->tc_verd) & AT_INGRESS)
				skb->tstamp.tv64 = 0;
#endif
618

E
Eric Dumazet 已提交
619 620 621 622 623
			if (q->qdisc) {
				int err = qdisc_enqueue(skb, q->qdisc);

				if (unlikely(err != NET_XMIT_SUCCESS)) {
					if (net_xmit_drop_count(err)) {
624
						qdisc_qstats_drop(sch);
625 626
						qdisc_tree_reduce_backlog(sch, 1,
									  qdisc_pkt_len(skb));
E
Eric Dumazet 已提交
627 628 629 630
					}
				}
				goto tfifo_dequeue;
			}
631
			goto deliver;
S
Stephen Hemminger 已提交
632
		}
633

E
Eric Dumazet 已提交
634 635 636 637 638
		if (q->qdisc) {
			skb = q->qdisc->ops->dequeue(q->qdisc);
			if (skb)
				goto deliver;
		}
639
		qdisc_watchdog_schedule(&q->watchdog, time_to_send);
640 641
	}

E
Eric Dumazet 已提交
642 643 644 645 646
	if (q->qdisc) {
		skb = q->qdisc->ops->dequeue(q->qdisc);
		if (skb)
			goto deliver;
	}
647
	return NULL;
L
Linus Torvalds 已提交
648 649 650 651 652 653
}

static void netem_reset(struct Qdisc *sch)
{
	struct netem_sched_data *q = qdisc_priv(sch);

E
Eric Dumazet 已提交
654
	qdisc_reset_queue(sch);
655
	tfifo_reset(sch);
E
Eric Dumazet 已提交
656 657
	if (q->qdisc)
		qdisc_reset(q->qdisc);
658
	qdisc_watchdog_cancel(&q->watchdog);
L
Linus Torvalds 已提交
659 660
}

661 662
static void dist_free(struct disttable *d)
{
W
WANG Cong 已提交
663
	kvfree(d);
664 665
}

L
Linus Torvalds 已提交
666 667 668 669
/*
 * Distribution data is a variable size payload containing
 * signed 16 bit values.
 */
670
static int get_dist_table(struct Qdisc *sch, const struct nlattr *attr)
L
Linus Torvalds 已提交
671 672
{
	struct netem_sched_data *q = qdisc_priv(sch);
673
	size_t n = nla_len(attr)/sizeof(__s16);
674
	const __s16 *data = nla_data(attr);
675
	spinlock_t *root_lock;
L
Linus Torvalds 已提交
676 677
	struct disttable *d;
	int i;
678
	size_t s;
L
Linus Torvalds 已提交
679

S
stephen hemminger 已提交
680
	if (n > NETEM_DIST_MAX)
L
Linus Torvalds 已提交
681 682
		return -EINVAL;

683
	s = sizeof(struct disttable) + n * sizeof(s16);
684
	d = kmalloc(s, GFP_KERNEL | __GFP_NOWARN);
685 686
	if (!d)
		d = vmalloc(s);
L
Linus Torvalds 已提交
687 688 689 690 691 692
	if (!d)
		return -ENOMEM;

	d->size = n;
	for (i = 0; i < n; i++)
		d->table[i] = data[i];
693

694
	root_lock = qdisc_root_sleeping_lock(sch);
695 696

	spin_lock_bh(root_lock);
697
	swap(q->delay_dist, d);
698
	spin_unlock_bh(root_lock);
699 700

	dist_free(d);
L
Linus Torvalds 已提交
701 702 703
	return 0;
}

704
static void get_correlation(struct netem_sched_data *q, const struct nlattr *attr)
L
Linus Torvalds 已提交
705
{
706
	const struct tc_netem_corr *c = nla_data(attr);
L
Linus Torvalds 已提交
707 708 709 710 711 712

	init_crandom(&q->delay_cor, c->delay_corr);
	init_crandom(&q->loss_cor, c->loss_corr);
	init_crandom(&q->dup_cor, c->dup_corr);
}

713
static void get_reorder(struct netem_sched_data *q, const struct nlattr *attr)
714
{
715
	const struct tc_netem_reorder *r = nla_data(attr);
716 717 718 719 720

	q->reorder = r->probability;
	init_crandom(&q->reorder_cor, r->correlation);
}

721
static void get_corrupt(struct netem_sched_data *q, const struct nlattr *attr)
722
{
723
	const struct tc_netem_corrupt *r = nla_data(attr);
724 725 726 727 728

	q->corrupt = r->probability;
	init_crandom(&q->corrupt_cor, r->correlation);
}

729
static void get_rate(struct netem_sched_data *q, const struct nlattr *attr)
H
Hagen Paul Pfeifer 已提交
730 731 732 733
{
	const struct tc_netem_rate *r = nla_data(attr);

	q->rate = r->rate;
734 735
	q->packet_overhead = r->packet_overhead;
	q->cell_size = r->cell_size;
736
	q->cell_overhead = r->cell_overhead;
737 738
	if (q->cell_size)
		q->cell_size_reciprocal = reciprocal_value(q->cell_size);
739 740
	else
		q->cell_size_reciprocal = (struct reciprocal_value) { 0 };
H
Hagen Paul Pfeifer 已提交
741 742
}

743
static int get_loss_clg(struct netem_sched_data *q, const struct nlattr *attr)
744 745 746 747 748 749 750
{
	const struct nlattr *la;
	int rem;

	nla_for_each_nested(la, attr, rem) {
		u16 type = nla_type(la);

751
		switch (type) {
752 753 754
		case NETEM_LOSS_GI: {
			const struct tc_netem_gimodel *gi = nla_data(la);

S
stephen hemminger 已提交
755
			if (nla_len(la) < sizeof(struct tc_netem_gimodel)) {
756 757 758 759 760 761
				pr_info("netem: incorrect gi model size\n");
				return -EINVAL;
			}

			q->loss_model = CLG_4_STATES;

762
			q->clg.state = TX_IN_GAP_PERIOD;
763 764 765 766 767 768 769 770 771 772 773
			q->clg.a1 = gi->p13;
			q->clg.a2 = gi->p31;
			q->clg.a3 = gi->p32;
			q->clg.a4 = gi->p14;
			q->clg.a5 = gi->p23;
			break;
		}

		case NETEM_LOSS_GE: {
			const struct tc_netem_gemodel *ge = nla_data(la);

S
stephen hemminger 已提交
774 775
			if (nla_len(la) < sizeof(struct tc_netem_gemodel)) {
				pr_info("netem: incorrect ge model size\n");
776 777 778 779
				return -EINVAL;
			}

			q->loss_model = CLG_GILB_ELL;
780
			q->clg.state = GOOD_STATE;
781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796
			q->clg.a1 = ge->p;
			q->clg.a2 = ge->r;
			q->clg.a3 = ge->h;
			q->clg.a4 = ge->k1;
			break;
		}

		default:
			pr_info("netem: unknown loss type %u\n", type);
			return -EINVAL;
		}
	}

	return 0;
}

797 798 799 800
static const struct nla_policy netem_policy[TCA_NETEM_MAX + 1] = {
	[TCA_NETEM_CORR]	= { .len = sizeof(struct tc_netem_corr) },
	[TCA_NETEM_REORDER]	= { .len = sizeof(struct tc_netem_reorder) },
	[TCA_NETEM_CORRUPT]	= { .len = sizeof(struct tc_netem_corrupt) },
H
Hagen Paul Pfeifer 已提交
801
	[TCA_NETEM_RATE]	= { .len = sizeof(struct tc_netem_rate) },
802
	[TCA_NETEM_LOSS]	= { .type = NLA_NESTED },
E
Eric Dumazet 已提交
803
	[TCA_NETEM_ECN]		= { .type = NLA_U32 },
Y
Yang Yingliang 已提交
804
	[TCA_NETEM_RATE64]	= { .type = NLA_U64 },
805 806
};

807 808 809 810 811
static int parse_attr(struct nlattr *tb[], int maxtype, struct nlattr *nla,
		      const struct nla_policy *policy, int len)
{
	int nested_len = nla_len(nla) - NLA_ALIGN(len);

812 813
	if (nested_len < 0) {
		pr_info("netem: invalid attributes len %d\n", nested_len);
814
		return -EINVAL;
815 816
	}

817 818 819
	if (nested_len >= nla_attr_size(0))
		return nla_parse(tb, maxtype, nla_data(nla) + NLA_ALIGN(len),
				 nested_len, policy);
820

821 822 823 824
	memset(tb, 0, sizeof(struct nlattr *) * (maxtype + 1));
	return 0;
}

825
/* Parse netlink message to set options */
826
static int netem_change(struct Qdisc *sch, struct nlattr *opt)
L
Linus Torvalds 已提交
827 828
{
	struct netem_sched_data *q = qdisc_priv(sch);
829
	struct nlattr *tb[TCA_NETEM_MAX + 1];
L
Linus Torvalds 已提交
830
	struct tc_netem_qopt *qopt;
831 832
	struct clgstate old_clg;
	int old_loss_model = CLG_RANDOM;
L
Linus Torvalds 已提交
833
	int ret;
834

835
	if (opt == NULL)
L
Linus Torvalds 已提交
836 837
		return -EINVAL;

838 839
	qopt = nla_data(opt);
	ret = parse_attr(tb, TCA_NETEM_MAX, opt, netem_policy, sizeof(*qopt));
840 841 842
	if (ret < 0)
		return ret;

843 844 845 846 847
	/* backup q->clg and q->loss_model */
	old_clg = q->clg;
	old_loss_model = q->loss_model;

	if (tb[TCA_NETEM_LOSS]) {
848
		ret = get_loss_clg(q, tb[TCA_NETEM_LOSS]);
849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869
		if (ret) {
			q->loss_model = old_loss_model;
			return ret;
		}
	} else {
		q->loss_model = CLG_RANDOM;
	}

	if (tb[TCA_NETEM_DELAY_DIST]) {
		ret = get_dist_table(sch, tb[TCA_NETEM_DELAY_DIST]);
		if (ret) {
			/* recover clg and loss_model, in case of
			 * q->clg and q->loss_model were modified
			 * in get_loss_clg()
			 */
			q->clg = old_clg;
			q->loss_model = old_loss_model;
			return ret;
		}
	}

E
Eric Dumazet 已提交
870
	sch->limit = qopt->limit;
871

L
Linus Torvalds 已提交
872 873 874 875
	q->latency = qopt->latency;
	q->jitter = qopt->jitter;
	q->limit = qopt->limit;
	q->gap = qopt->gap;
876
	q->counter = 0;
L
Linus Torvalds 已提交
877 878 879
	q->loss = qopt->loss;
	q->duplicate = qopt->duplicate;

S
Stephen Hemminger 已提交
880 881
	/* for compatibility with earlier versions.
	 * if gap is set, need to assume 100% probability
882
	 */
883 884
	if (q->gap)
		q->reorder = ~0;
885

886
	if (tb[TCA_NETEM_CORR])
887
		get_correlation(q, tb[TCA_NETEM_CORR]);
L
Linus Torvalds 已提交
888

889
	if (tb[TCA_NETEM_REORDER])
890
		get_reorder(q, tb[TCA_NETEM_REORDER]);
L
Linus Torvalds 已提交
891

892
	if (tb[TCA_NETEM_CORRUPT])
893
		get_corrupt(q, tb[TCA_NETEM_CORRUPT]);
L
Linus Torvalds 已提交
894

H
Hagen Paul Pfeifer 已提交
895
	if (tb[TCA_NETEM_RATE])
896
		get_rate(q, tb[TCA_NETEM_RATE]);
H
Hagen Paul Pfeifer 已提交
897

Y
Yang Yingliang 已提交
898 899 900 901
	if (tb[TCA_NETEM_RATE64])
		q->rate = max_t(u64, q->rate,
				nla_get_u64(tb[TCA_NETEM_RATE64]));

E
Eric Dumazet 已提交
902 903 904
	if (tb[TCA_NETEM_ECN])
		q->ecn = nla_get_u32(tb[TCA_NETEM_ECN]);

905
	return ret;
L
Linus Torvalds 已提交
906 907
}

908
static int netem_init(struct Qdisc *sch, struct nlattr *opt)
L
Linus Torvalds 已提交
909 910 911 912 913 914 915
{
	struct netem_sched_data *q = qdisc_priv(sch);
	int ret;

	if (!opt)
		return -EINVAL;

916
	qdisc_watchdog_init(&q->watchdog, sch);
L
Linus Torvalds 已提交
917

918
	q->loss_model = CLG_RANDOM;
L
Linus Torvalds 已提交
919
	ret = netem_change(sch, opt);
E
Eric Dumazet 已提交
920
	if (ret)
921
		pr_info("netem: change failed\n");
L
Linus Torvalds 已提交
922 923 924 925 926 927 928
	return ret;
}

static void netem_destroy(struct Qdisc *sch)
{
	struct netem_sched_data *q = qdisc_priv(sch);

929
	qdisc_watchdog_cancel(&q->watchdog);
E
Eric Dumazet 已提交
930 931
	if (q->qdisc)
		qdisc_destroy(q->qdisc);
932
	dist_free(q->delay_dist);
L
Linus Torvalds 已提交
933 934
}

935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958
static int dump_loss_model(const struct netem_sched_data *q,
			   struct sk_buff *skb)
{
	struct nlattr *nest;

	nest = nla_nest_start(skb, TCA_NETEM_LOSS);
	if (nest == NULL)
		goto nla_put_failure;

	switch (q->loss_model) {
	case CLG_RANDOM:
		/* legacy loss model */
		nla_nest_cancel(skb, nest);
		return 0;	/* no data */

	case CLG_4_STATES: {
		struct tc_netem_gimodel gi = {
			.p13 = q->clg.a1,
			.p31 = q->clg.a2,
			.p32 = q->clg.a3,
			.p14 = q->clg.a4,
			.p23 = q->clg.a5,
		};

959 960
		if (nla_put(skb, NETEM_LOSS_GI, sizeof(gi), &gi))
			goto nla_put_failure;
961 962 963 964 965 966 967 968 969 970
		break;
	}
	case CLG_GILB_ELL: {
		struct tc_netem_gemodel ge = {
			.p = q->clg.a1,
			.r = q->clg.a2,
			.h = q->clg.a3,
			.k1 = q->clg.a4,
		};

971 972
		if (nla_put(skb, NETEM_LOSS_GE, sizeof(ge), &ge))
			goto nla_put_failure;
973 974 975 976 977 978 979 980 981 982 983 984
		break;
	}
	}

	nla_nest_end(skb, nest);
	return 0;

nla_put_failure:
	nla_nest_cancel(skb, nest);
	return -1;
}

L
Linus Torvalds 已提交
985 986 987
static int netem_dump(struct Qdisc *sch, struct sk_buff *skb)
{
	const struct netem_sched_data *q = qdisc_priv(sch);
S
stephen hemminger 已提交
988
	struct nlattr *nla = (struct nlattr *) skb_tail_pointer(skb);
L
Linus Torvalds 已提交
989 990
	struct tc_netem_qopt qopt;
	struct tc_netem_corr cor;
991
	struct tc_netem_reorder reorder;
992
	struct tc_netem_corrupt corrupt;
H
Hagen Paul Pfeifer 已提交
993
	struct tc_netem_rate rate;
L
Linus Torvalds 已提交
994 995 996 997 998 999 1000

	qopt.latency = q->latency;
	qopt.jitter = q->jitter;
	qopt.limit = q->limit;
	qopt.loss = q->loss;
	qopt.gap = q->gap;
	qopt.duplicate = q->duplicate;
1001 1002
	if (nla_put(skb, TCA_OPTIONS, sizeof(qopt), &qopt))
		goto nla_put_failure;
L
Linus Torvalds 已提交
1003 1004 1005 1006

	cor.delay_corr = q->delay_cor.rho;
	cor.loss_corr = q->loss_cor.rho;
	cor.dup_corr = q->dup_cor.rho;
1007 1008
	if (nla_put(skb, TCA_NETEM_CORR, sizeof(cor), &cor))
		goto nla_put_failure;
1009 1010 1011

	reorder.probability = q->reorder;
	reorder.correlation = q->reorder_cor.rho;
1012 1013
	if (nla_put(skb, TCA_NETEM_REORDER, sizeof(reorder), &reorder))
		goto nla_put_failure;
1014

1015 1016
	corrupt.probability = q->corrupt;
	corrupt.correlation = q->corrupt_cor.rho;
1017 1018
	if (nla_put(skb, TCA_NETEM_CORRUPT, sizeof(corrupt), &corrupt))
		goto nla_put_failure;
1019

Y
Yang Yingliang 已提交
1020
	if (q->rate >= (1ULL << 32)) {
N
Nicolas Dichtel 已提交
1021 1022
		if (nla_put_u64_64bit(skb, TCA_NETEM_RATE64, q->rate,
				      TCA_NETEM_PAD))
Y
Yang Yingliang 已提交
1023 1024 1025 1026 1027
			goto nla_put_failure;
		rate.rate = ~0U;
	} else {
		rate.rate = q->rate;
	}
1028 1029 1030
	rate.packet_overhead = q->packet_overhead;
	rate.cell_size = q->cell_size;
	rate.cell_overhead = q->cell_overhead;
1031 1032
	if (nla_put(skb, TCA_NETEM_RATE, sizeof(rate), &rate))
		goto nla_put_failure;
H
Hagen Paul Pfeifer 已提交
1033

E
Eric Dumazet 已提交
1034 1035 1036
	if (q->ecn && nla_put_u32(skb, TCA_NETEM_ECN, q->ecn))
		goto nla_put_failure;

1037 1038 1039
	if (dump_loss_model(q, skb) != 0)
		goto nla_put_failure;

S
stephen hemminger 已提交
1040
	return nla_nest_end(skb, nla);
L
Linus Torvalds 已提交
1041

1042
nla_put_failure:
S
stephen hemminger 已提交
1043
	nlmsg_trim(skb, nla);
L
Linus Torvalds 已提交
1044 1045 1046
	return -1;
}

1047 1048 1049 1050 1051
static int netem_dump_class(struct Qdisc *sch, unsigned long cl,
			  struct sk_buff *skb, struct tcmsg *tcm)
{
	struct netem_sched_data *q = qdisc_priv(sch);

E
Eric Dumazet 已提交
1052
	if (cl != 1 || !q->qdisc) 	/* only one class */
1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065
		return -ENOENT;

	tcm->tcm_handle |= TC_H_MIN(1);
	tcm->tcm_info = q->qdisc->handle;

	return 0;
}

static int netem_graft(struct Qdisc *sch, unsigned long arg, struct Qdisc *new,
		     struct Qdisc **old)
{
	struct netem_sched_data *q = qdisc_priv(sch);

1066
	*old = qdisc_replace(sch, new, &q->qdisc);
1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105
	return 0;
}

static struct Qdisc *netem_leaf(struct Qdisc *sch, unsigned long arg)
{
	struct netem_sched_data *q = qdisc_priv(sch);
	return q->qdisc;
}

static unsigned long netem_get(struct Qdisc *sch, u32 classid)
{
	return 1;
}

static void netem_put(struct Qdisc *sch, unsigned long arg)
{
}

static void netem_walk(struct Qdisc *sch, struct qdisc_walker *walker)
{
	if (!walker->stop) {
		if (walker->count >= walker->skip)
			if (walker->fn(sch, 1, walker) < 0) {
				walker->stop = 1;
				return;
			}
		walker->count++;
	}
}

static const struct Qdisc_class_ops netem_class_ops = {
	.graft		=	netem_graft,
	.leaf		=	netem_leaf,
	.get		=	netem_get,
	.put		=	netem_put,
	.walk		=	netem_walk,
	.dump		=	netem_dump_class,
};

1106
static struct Qdisc_ops netem_qdisc_ops __read_mostly = {
L
Linus Torvalds 已提交
1107
	.id		=	"netem",
1108
	.cl_ops		=	&netem_class_ops,
L
Linus Torvalds 已提交
1109 1110 1111
	.priv_size	=	sizeof(struct netem_sched_data),
	.enqueue	=	netem_enqueue,
	.dequeue	=	netem_dequeue,
1112
	.peek		=	qdisc_peek_dequeued,
L
Linus Torvalds 已提交
1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123
	.init		=	netem_init,
	.reset		=	netem_reset,
	.destroy	=	netem_destroy,
	.change		=	netem_change,
	.dump		=	netem_dump,
	.owner		=	THIS_MODULE,
};


static int __init netem_module_init(void)
{
S
Stephen Hemminger 已提交
1124
	pr_info("netem: version " VERSION "\n");
L
Linus Torvalds 已提交
1125 1126 1127 1128 1129 1130 1131 1132 1133
	return register_qdisc(&netem_qdisc_ops);
}
static void __exit netem_module_exit(void)
{
	unregister_qdisc(&netem_qdisc_ops);
}
module_init(netem_module_init)
module_exit(netem_module_exit)
MODULE_LICENSE("GPL");