blob: 69c35f6cd13f329cab2d7442c626a31919fc122e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * net/sched/sch_netem.c Network emulator
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
Stephen Hemminger798b6b12006-10-22 20:16:57 -07007 * 2 of the License.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * Many of the algorithms and ideas for this came from
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +090010 * NIST Net which is not copyrighted.
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 *
12 * Authors: Stephen Hemminger <shemminger@osdl.org>
13 * Catalin(ux aka Dino) BOIE <catab at umbrella dot ro>
14 */
15
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/types.h>
19#include <linux/kernel.h>
20#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/skbuff.h>
David S. Miller78776d32011-02-24 22:48:13 -080022#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/rtnetlink.h>
24
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -070025#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <net/pkt_sched.h>
27
stephen hemminger250a65f2011-02-23 13:04:22 +000028#define VERSION "1.3"
Stephen Hemmingereb229c42005-11-03 13:49:01 -080029
Linus Torvalds1da177e2005-04-16 15:20:36 -070030/* Network Emulation Queuing algorithm.
31 ====================================
32
33 Sources: [1] Mark Carson, Darrin Santay, "NIST Net - A Linux-based
34 Network Emulation Tool
35 [2] Luigi Rizzo, DummyNet for FreeBSD
36
37 ----------------------------------------------------------------
38
39 This started out as a simple way to delay outgoing packets to
40 test TCP but has grown to include most of the functionality
41 of a full blown network emulator like NISTnet. It can delay
42 packets and add random jitter (and correlation). The random
43 distribution can be loaded from a table as well to provide
44 normal, Pareto, or experimental curves. Packet loss,
45 duplication, and reordering can also be emulated.
46
47 This qdisc does not do classification that can be handled in
48 layering other disciplines. It does not need to do bandwidth
49 control either since that can be handled by using token
50 bucket or other rate control.
stephen hemminger661b7972011-02-23 13:04:21 +000051
52 Correlated Loss Generator models
53
54 Added generation of correlated loss according to the
55 "Gilbert-Elliot" model, a 4-state markov model.
56
57 References:
58 [1] NetemCLG Home http://netgroup.uniroma2.it/NetemCLG
59 [2] S. Salsano, F. Ludovici, A. Ordine, "Definition of a general
60 and intuitive loss model for packet networks and its implementation
61 in the Netem module in the Linux kernel", available in [1]
62
63 Authors: Stefano Salsano <stefano.salsano at uniroma2.it
64 Fabio Ludovici <fabio.ludovici at yahoo.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065*/
66
67struct netem_sched_data {
68 struct Qdisc *qdisc;
Patrick McHardy59cb5c62007-03-16 01:20:31 -070069 struct qdisc_watchdog watchdog;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Stephen Hemmingerb4076212007-03-22 12:16:21 -070071 psched_tdiff_t latency;
72 psched_tdiff_t jitter;
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 u32 loss;
75 u32 limit;
76 u32 counter;
77 u32 gap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 u32 duplicate;
Stephen Hemminger0dca51d2005-05-26 12:55:48 -070079 u32 reorder;
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -080080 u32 corrupt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82 struct crndstate {
Stephen Hemmingerb4076212007-03-22 12:16:21 -070083 u32 last;
84 u32 rho;
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -080085 } delay_cor, loss_cor, dup_cor, reorder_cor, corrupt_cor;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87 struct disttable {
88 u32 size;
89 s16 table[0];
90 } *delay_dist;
stephen hemminger661b7972011-02-23 13:04:21 +000091
92 enum {
93 CLG_RANDOM,
94 CLG_4_STATES,
95 CLG_GILB_ELL,
96 } loss_model;
97
98 /* Correlated Loss Generation models */
99 struct clgstate {
100 /* state of the Markov chain */
101 u8 state;
102
103 /* 4-states and Gilbert-Elliot models */
104 u32 a1; /* p13 for 4-states or p for GE */
105 u32 a2; /* p31 for 4-states or r for GE */
106 u32 a3; /* p32 for 4-states or h for GE */
107 u32 a4; /* p14 for 4-states or 1-k for GE */
108 u32 a5; /* p23 used only in 4-states */
109 } clg;
110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111};
112
113/* Time stamp put into socket buffer control block */
114struct netem_skb_cb {
115 psched_time_t time_to_send;
116};
117
Jussi Kivilinna5f861732008-07-20 00:08:04 -0700118static inline struct netem_skb_cb *netem_skb_cb(struct sk_buff *skb)
119{
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700120 BUILD_BUG_ON(sizeof(skb->cb) <
121 sizeof(struct qdisc_skb_cb) + sizeof(struct netem_skb_cb));
122 return (struct netem_skb_cb *)qdisc_skb_cb(skb)->data;
Jussi Kivilinna5f861732008-07-20 00:08:04 -0700123}
124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125/* init_crandom - initialize correlated random number generator
126 * Use entropy source for initial seed.
127 */
128static void init_crandom(struct crndstate *state, unsigned long rho)
129{
130 state->rho = rho;
131 state->last = net_random();
132}
133
134/* get_crandom - correlated random number generator
135 * Next number depends on last value.
136 * rho is scaled to avoid floating point.
137 */
Stephen Hemmingerb4076212007-03-22 12:16:21 -0700138static u32 get_crandom(struct crndstate *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139{
140 u64 value, rho;
141 unsigned long answer;
142
Stephen Hemmingerbb2f8cc2007-03-23 00:12:09 -0700143 if (state->rho == 0) /* no correlation */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 return net_random();
145
146 value = net_random();
147 rho = (u64)state->rho + 1;
148 answer = (value * ((1ull<<32) - rho) + state->last * rho) >> 32;
149 state->last = answer;
150 return answer;
151}
152
stephen hemminger661b7972011-02-23 13:04:21 +0000153/* loss_4state - 4-state model loss generator
154 * Generates losses according to the 4-state Markov chain adopted in
155 * the GI (General and Intuitive) loss model.
156 */
157static bool loss_4state(struct netem_sched_data *q)
158{
159 struct clgstate *clg = &q->clg;
160 u32 rnd = net_random();
161
162 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300163 * Makes a comparison between rnd and the transition
stephen hemminger661b7972011-02-23 13:04:21 +0000164 * probabilities outgoing from the current state, then decides the
165 * next state and if the next packet has to be transmitted or lost.
166 * The four states correspond to:
167 * 1 => successfully transmitted packets within a gap period
168 * 4 => isolated losses within a gap period
169 * 3 => lost packets within a burst period
170 * 2 => successfully transmitted packets within a burst period
171 */
172 switch (clg->state) {
173 case 1:
174 if (rnd < clg->a4) {
175 clg->state = 4;
176 return true;
177 } else if (clg->a4 < rnd && rnd < clg->a1) {
178 clg->state = 3;
179 return true;
180 } else if (clg->a1 < rnd)
181 clg->state = 1;
182
183 break;
184 case 2:
185 if (rnd < clg->a5) {
186 clg->state = 3;
187 return true;
188 } else
189 clg->state = 2;
190
191 break;
192 case 3:
193 if (rnd < clg->a3)
194 clg->state = 2;
195 else if (clg->a3 < rnd && rnd < clg->a2 + clg->a3) {
196 clg->state = 1;
197 return true;
198 } else if (clg->a2 + clg->a3 < rnd) {
199 clg->state = 3;
200 return true;
201 }
202 break;
203 case 4:
204 clg->state = 1;
205 break;
206 }
207
208 return false;
209}
210
211/* loss_gilb_ell - Gilbert-Elliot model loss generator
212 * Generates losses according to the Gilbert-Elliot loss model or
213 * its special cases (Gilbert or Simple Gilbert)
214 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300215 * Makes a comparison between random number and the transition
stephen hemminger661b7972011-02-23 13:04:21 +0000216 * probabilities outgoing from the current state, then decides the
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300217 * next state. A second random number is extracted and the comparison
stephen hemminger661b7972011-02-23 13:04:21 +0000218 * with the loss probability of the current state decides if the next
219 * packet will be transmitted or lost.
220 */
221static bool loss_gilb_ell(struct netem_sched_data *q)
222{
223 struct clgstate *clg = &q->clg;
224
225 switch (clg->state) {
226 case 1:
227 if (net_random() < clg->a1)
228 clg->state = 2;
229 if (net_random() < clg->a4)
230 return true;
231 case 2:
232 if (net_random() < clg->a2)
233 clg->state = 1;
234 if (clg->a3 > net_random())
235 return true;
236 }
237
238 return false;
239}
240
241static bool loss_event(struct netem_sched_data *q)
242{
243 switch (q->loss_model) {
244 case CLG_RANDOM:
245 /* Random packet drop 0 => none, ~0 => all */
246 return q->loss && q->loss >= get_crandom(&q->loss_cor);
247
248 case CLG_4_STATES:
249 /* 4state loss model algorithm (used also for GI model)
250 * Extracts a value from the markov 4 state loss generator,
251 * if it is 1 drops a packet and if needed writes the event in
252 * the kernel logs
253 */
254 return loss_4state(q);
255
256 case CLG_GILB_ELL:
257 /* Gilbert-Elliot loss model algorithm
258 * Extracts a value from the Gilbert-Elliot loss generator,
259 * if it is 1 drops a packet and if needed writes the event in
260 * the kernel logs
261 */
262 return loss_gilb_ell(q);
263 }
264
265 return false; /* not reached */
266}
267
268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269/* tabledist - return a pseudo-randomly distributed value with mean mu and
270 * std deviation sigma. Uses table lookup to approximate the desired
271 * distribution, and a uniformly-distributed pseudo-random source.
272 */
Stephen Hemmingerb4076212007-03-22 12:16:21 -0700273static psched_tdiff_t tabledist(psched_tdiff_t mu, psched_tdiff_t sigma,
274 struct crndstate *state,
275 const struct disttable *dist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
Stephen Hemmingerb4076212007-03-22 12:16:21 -0700277 psched_tdiff_t x;
278 long t;
279 u32 rnd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
281 if (sigma == 0)
282 return mu;
283
284 rnd = get_crandom(state);
285
286 /* default uniform distribution */
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900287 if (dist == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 return (rnd % (2*sigma)) - sigma + mu;
289
290 t = dist->table[rnd % dist->size];
291 x = (sigma % NETEM_DIST_SCALE) * t;
292 if (x >= 0)
293 x += NETEM_DIST_SCALE/2;
294 else
295 x -= NETEM_DIST_SCALE/2;
296
297 return x / NETEM_DIST_SCALE + (sigma / NETEM_DIST_SCALE) * t + mu;
298}
299
Stephen Hemminger0afb51e2005-05-26 12:53:49 -0700300/*
301 * Insert one skb into qdisc.
302 * Note: parent depends on return value to account for queue length.
303 * NET_XMIT_DROP: queue length didn't change.
304 * NET_XMIT_SUCCESS: one skb was queued.
305 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306static int netem_enqueue(struct sk_buff *skb, struct Qdisc *sch)
307{
308 struct netem_sched_data *q = qdisc_priv(sch);
Guillaume Chazarain89e1df72006-07-21 14:45:25 -0700309 /* We don't fill cb now as skb_unshare() may invalidate it */
310 struct netem_skb_cb *cb;
Stephen Hemminger0afb51e2005-05-26 12:53:49 -0700311 struct sk_buff *skb2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 int ret;
Stephen Hemminger0afb51e2005-05-26 12:53:49 -0700313 int count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Stephen Hemminger0afb51e2005-05-26 12:53:49 -0700315 /* Random duplication */
316 if (q->duplicate && q->duplicate >= get_crandom(&q->dup_cor))
317 ++count;
318
stephen hemminger661b7972011-02-23 13:04:21 +0000319 /* Drop packet? */
320 if (loss_event(q))
Stephen Hemminger0afb51e2005-05-26 12:53:49 -0700321 --count;
322
323 if (count == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 sch->qstats.drops++;
325 kfree_skb(skb);
Jarek Poplawskic27f3392008-08-04 22:39:11 -0700326 return NET_XMIT_SUCCESS | __NET_XMIT_BYPASS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 }
328
David S. Miller4e8a5202006-10-22 21:00:33 -0700329 skb_orphan(skb);
330
Stephen Hemminger0afb51e2005-05-26 12:53:49 -0700331 /*
332 * If we need to duplicate packet, then re-insert at top of the
333 * qdisc tree, since parent queuer expects that only one
334 * skb will be queued.
335 */
336 if (count > 1 && (skb2 = skb_clone(skb, GFP_ATOMIC)) != NULL) {
David S. Miller7698b4f2008-07-16 01:42:40 -0700337 struct Qdisc *rootq = qdisc_root(sch);
Stephen Hemminger0afb51e2005-05-26 12:53:49 -0700338 u32 dupsave = q->duplicate; /* prevent duplicating a dup... */
339 q->duplicate = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
Jussi Kivilinna5f861732008-07-20 00:08:04 -0700341 qdisc_enqueue_root(skb2, rootq);
Stephen Hemminger0afb51e2005-05-26 12:53:49 -0700342 q->duplicate = dupsave;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 }
344
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800345 /*
346 * Randomized packet corruption.
347 * Make copy if needed since we are modifying
348 * If packet is going to be hardware checksummed, then
349 * do it now in software before we mangle it.
350 */
351 if (q->corrupt && q->corrupt >= get_crandom(&q->corrupt_cor)) {
Joe Perchesf64f9e72009-11-29 16:55:45 -0800352 if (!(skb = skb_unshare(skb, GFP_ATOMIC)) ||
353 (skb->ip_summed == CHECKSUM_PARTIAL &&
354 skb_checksum_help(skb))) {
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800355 sch->qstats.drops++;
356 return NET_XMIT_DROP;
357 }
358
359 skb->data[net_random() % skb_headlen(skb)] ^= 1<<(net_random() % 8);
360 }
361
Jussi Kivilinna5f861732008-07-20 00:08:04 -0700362 cb = netem_skb_cb(skb);
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000363 if (q->gap == 0 || /* not doing reordering */
364 q->counter < q->gap || /* inside last reordering gap */
Joe Perchesf64f9e72009-11-29 16:55:45 -0800365 q->reorder < get_crandom(&q->reorder_cor)) {
Stephen Hemminger0f9f32a2005-05-26 12:55:01 -0700366 psched_time_t now;
Stephen Hemminger07aaa112005-11-03 13:43:07 -0800367 psched_tdiff_t delay;
368
369 delay = tabledist(q->latency, q->jitter,
370 &q->delay_cor, q->delay_dist);
371
Patrick McHardy3bebcda2007-03-23 11:29:25 -0700372 now = psched_get_time();
Patrick McHardy7c59e252007-03-23 11:27:45 -0700373 cb->time_to_send = now + delay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 ++q->counter;
Jussi Kivilinna5f861732008-07-20 00:08:04 -0700375 ret = qdisc_enqueue(skb, q->qdisc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 } else {
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900377 /*
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700378 * Do re-ordering by putting one out of N packets at the front
379 * of the queue.
380 */
Patrick McHardy3bebcda2007-03-23 11:29:25 -0700381 cb->time_to_send = psched_get_time();
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700382 q->counter = 0;
Jarek Poplawski8ba25da2008-11-02 00:36:03 -0700383
384 __skb_queue_head(&q->qdisc->q, skb);
385 q->qdisc->qstats.backlog += qdisc_pkt_len(skb);
386 q->qdisc->qstats.requeues++;
387 ret = NET_XMIT_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 }
389
stephen hemminger10f6dfc2011-02-23 13:04:20 +0000390 if (ret != NET_XMIT_SUCCESS) {
391 if (net_xmit_drop_count(ret)) {
392 sch->qstats.drops++;
393 return ret;
394 }
Jarek Poplawski378a2f02008-08-04 22:31:03 -0700395 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
stephen hemminger10f6dfc2011-02-23 13:04:20 +0000397 sch->q.qlen++;
398 return NET_XMIT_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399}
400
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000401static unsigned int netem_drop(struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402{
403 struct netem_sched_data *q = qdisc_priv(sch);
Patrick McHardy6d037a22006-03-20 19:00:49 -0800404 unsigned int len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Patrick McHardy6d037a22006-03-20 19:00:49 -0800406 if (q->qdisc->ops->drop && (len = q->qdisc->ops->drop(q->qdisc)) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 sch->q.qlen--;
408 sch->qstats.drops++;
409 }
410 return len;
411}
412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413static struct sk_buff *netem_dequeue(struct Qdisc *sch)
414{
415 struct netem_sched_data *q = qdisc_priv(sch);
416 struct sk_buff *skb;
417
Eric Dumazetfd245a42011-01-20 05:27:16 +0000418 if (qdisc_is_throttled(sch))
Stephen Hemminger11274e52007-03-22 12:17:42 -0700419 return NULL;
420
Jarek Poplawski03c05f02008-10-31 00:46:19 -0700421 skb = q->qdisc->ops->peek(q->qdisc);
Stephen Hemminger771018e2005-05-03 16:24:32 -0700422 if (skb) {
Jussi Kivilinna5f861732008-07-20 00:08:04 -0700423 const struct netem_skb_cb *cb = netem_skb_cb(skb);
Patrick McHardy3bebcda2007-03-23 11:29:25 -0700424 psched_time_t now = psched_get_time();
Stephen Hemminger771018e2005-05-03 16:24:32 -0700425
Stephen Hemminger0f9f32a2005-05-26 12:55:01 -0700426 /* if more time remaining? */
Patrick McHardy104e0872007-03-23 11:28:07 -0700427 if (cb->time_to_send <= now) {
Jarek Poplawski77be1552008-10-31 00:47:01 -0700428 skb = qdisc_dequeue_peeked(q->qdisc);
429 if (unlikely(!skb))
Jarek Poplawski03c05f02008-10-31 00:46:19 -0700430 return NULL;
431
Jarek Poplawski8caf1532009-04-17 10:08:49 +0000432#ifdef CONFIG_NET_CLS_ACT
433 /*
434 * If it's at ingress let's pretend the delay is
435 * from the network (tstamp will be updated).
436 */
437 if (G_TC_FROM(skb->tc_verd) & AT_INGRESS)
438 skb->tstamp.tv64 = 0;
439#endif
stephen hemminger10f6dfc2011-02-23 13:04:20 +0000440
Stephen Hemminger0f9f32a2005-05-26 12:55:01 -0700441 sch->q.qlen--;
stephen hemminger10f6dfc2011-02-23 13:04:20 +0000442 qdisc_unthrottled(sch);
443 qdisc_bstats_update(sch, skb);
Stephen Hemminger0f9f32a2005-05-26 12:55:01 -0700444 return skb;
445 }
Stephen Hemminger11274e52007-03-22 12:17:42 -0700446
Stephen Hemminger11274e52007-03-22 12:17:42 -0700447 qdisc_watchdog_schedule(&q->watchdog, cb->time_to_send);
Stephen Hemminger0f9f32a2005-05-26 12:55:01 -0700448 }
449
450 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451}
452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453static void netem_reset(struct Qdisc *sch)
454{
455 struct netem_sched_data *q = qdisc_priv(sch);
456
457 qdisc_reset(q->qdisc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 sch->q.qlen = 0;
Patrick McHardy59cb5c62007-03-16 01:20:31 -0700459 qdisc_watchdog_cancel(&q->watchdog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460}
461
stephen hemminger6373a9a2011-02-23 13:04:18 +0000462static void dist_free(struct disttable *d)
463{
464 if (d) {
465 if (is_vmalloc_addr(d))
466 vfree(d);
467 else
468 kfree(d);
469 }
470}
471
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472/*
473 * Distribution data is a variable size payload containing
474 * signed 16 bit values.
475 */
Patrick McHardy1e904742008-01-22 22:11:17 -0800476static int get_dist_table(struct Qdisc *sch, const struct nlattr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477{
478 struct netem_sched_data *q = qdisc_priv(sch);
stephen hemminger6373a9a2011-02-23 13:04:18 +0000479 size_t n = nla_len(attr)/sizeof(__s16);
Patrick McHardy1e904742008-01-22 22:11:17 -0800480 const __s16 *data = nla_data(attr);
David S. Miller7698b4f2008-07-16 01:42:40 -0700481 spinlock_t *root_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 struct disttable *d;
483 int i;
stephen hemminger6373a9a2011-02-23 13:04:18 +0000484 size_t s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
stephen hemmingerdf173bd2011-02-23 13:04:19 +0000486 if (n > NETEM_DIST_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 return -EINVAL;
488
stephen hemminger6373a9a2011-02-23 13:04:18 +0000489 s = sizeof(struct disttable) + n * sizeof(s16);
490 d = kmalloc(s, GFP_KERNEL);
491 if (!d)
492 d = vmalloc(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 if (!d)
494 return -ENOMEM;
495
496 d->size = n;
497 for (i = 0; i < n; i++)
498 d->table[i] = data[i];
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900499
Jarek Poplawski102396a2008-08-29 14:21:52 -0700500 root_lock = qdisc_root_sleeping_lock(sch);
David S. Miller7698b4f2008-07-16 01:42:40 -0700501
502 spin_lock_bh(root_lock);
stephen hemminger6373a9a2011-02-23 13:04:18 +0000503 dist_free(q->delay_dist);
Patrick McHardyb94c8af2008-11-20 04:11:36 -0800504 q->delay_dist = d;
David S. Miller7698b4f2008-07-16 01:42:40 -0700505 spin_unlock_bh(root_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 return 0;
507}
508
Stephen Hemminger265eb672008-11-03 21:13:26 -0800509static void get_correlation(struct Qdisc *sch, const struct nlattr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510{
511 struct netem_sched_data *q = qdisc_priv(sch);
Patrick McHardy1e904742008-01-22 22:11:17 -0800512 const struct tc_netem_corr *c = nla_data(attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 init_crandom(&q->delay_cor, c->delay_corr);
515 init_crandom(&q->loss_cor, c->loss_corr);
516 init_crandom(&q->dup_cor, c->dup_corr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517}
518
Stephen Hemminger265eb672008-11-03 21:13:26 -0800519static void get_reorder(struct Qdisc *sch, const struct nlattr *attr)
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700520{
521 struct netem_sched_data *q = qdisc_priv(sch);
Patrick McHardy1e904742008-01-22 22:11:17 -0800522 const struct tc_netem_reorder *r = nla_data(attr);
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700523
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700524 q->reorder = r->probability;
525 init_crandom(&q->reorder_cor, r->correlation);
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700526}
527
Stephen Hemminger265eb672008-11-03 21:13:26 -0800528static void get_corrupt(struct Qdisc *sch, const struct nlattr *attr)
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800529{
530 struct netem_sched_data *q = qdisc_priv(sch);
Patrick McHardy1e904742008-01-22 22:11:17 -0800531 const struct tc_netem_corrupt *r = nla_data(attr);
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800532
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800533 q->corrupt = r->probability;
534 init_crandom(&q->corrupt_cor, r->correlation);
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800535}
536
stephen hemminger661b7972011-02-23 13:04:21 +0000537static int get_loss_clg(struct Qdisc *sch, const struct nlattr *attr)
538{
539 struct netem_sched_data *q = qdisc_priv(sch);
540 const struct nlattr *la;
541 int rem;
542
543 nla_for_each_nested(la, attr, rem) {
544 u16 type = nla_type(la);
545
546 switch(type) {
547 case NETEM_LOSS_GI: {
548 const struct tc_netem_gimodel *gi = nla_data(la);
549
550 if (nla_len(la) != sizeof(struct tc_netem_gimodel)) {
551 pr_info("netem: incorrect gi model size\n");
552 return -EINVAL;
553 }
554
555 q->loss_model = CLG_4_STATES;
556
557 q->clg.state = 1;
558 q->clg.a1 = gi->p13;
559 q->clg.a2 = gi->p31;
560 q->clg.a3 = gi->p32;
561 q->clg.a4 = gi->p14;
562 q->clg.a5 = gi->p23;
563 break;
564 }
565
566 case NETEM_LOSS_GE: {
567 const struct tc_netem_gemodel *ge = nla_data(la);
568
569 if (nla_len(la) != sizeof(struct tc_netem_gemodel)) {
570 pr_info("netem: incorrect gi model size\n");
571 return -EINVAL;
572 }
573
574 q->loss_model = CLG_GILB_ELL;
575 q->clg.state = 1;
576 q->clg.a1 = ge->p;
577 q->clg.a2 = ge->r;
578 q->clg.a3 = ge->h;
579 q->clg.a4 = ge->k1;
580 break;
581 }
582
583 default:
584 pr_info("netem: unknown loss type %u\n", type);
585 return -EINVAL;
586 }
587 }
588
589 return 0;
590}
591
Patrick McHardy27a34212008-01-23 20:35:39 -0800592static const struct nla_policy netem_policy[TCA_NETEM_MAX + 1] = {
593 [TCA_NETEM_CORR] = { .len = sizeof(struct tc_netem_corr) },
594 [TCA_NETEM_REORDER] = { .len = sizeof(struct tc_netem_reorder) },
595 [TCA_NETEM_CORRUPT] = { .len = sizeof(struct tc_netem_corrupt) },
stephen hemminger661b7972011-02-23 13:04:21 +0000596 [TCA_NETEM_LOSS] = { .type = NLA_NESTED },
Patrick McHardy27a34212008-01-23 20:35:39 -0800597};
598
Thomas Graf2c10b322008-09-02 17:30:27 -0700599static int parse_attr(struct nlattr *tb[], int maxtype, struct nlattr *nla,
600 const struct nla_policy *policy, int len)
601{
602 int nested_len = nla_len(nla) - NLA_ALIGN(len);
603
stephen hemminger661b7972011-02-23 13:04:21 +0000604 if (nested_len < 0) {
605 pr_info("netem: invalid attributes len %d\n", nested_len);
Thomas Graf2c10b322008-09-02 17:30:27 -0700606 return -EINVAL;
stephen hemminger661b7972011-02-23 13:04:21 +0000607 }
608
Thomas Graf2c10b322008-09-02 17:30:27 -0700609 if (nested_len >= nla_attr_size(0))
610 return nla_parse(tb, maxtype, nla_data(nla) + NLA_ALIGN(len),
611 nested_len, policy);
stephen hemminger661b7972011-02-23 13:04:21 +0000612
Thomas Graf2c10b322008-09-02 17:30:27 -0700613 memset(tb, 0, sizeof(struct nlattr *) * (maxtype + 1));
614 return 0;
615}
616
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800617/* Parse netlink message to set options */
Patrick McHardy1e904742008-01-22 22:11:17 -0800618static int netem_change(struct Qdisc *sch, struct nlattr *opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619{
620 struct netem_sched_data *q = qdisc_priv(sch);
Patrick McHardyb03f4672008-01-23 20:32:21 -0800621 struct nlattr *tb[TCA_NETEM_MAX + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 struct tc_netem_qopt *qopt;
623 int ret;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900624
Patrick McHardyb03f4672008-01-23 20:32:21 -0800625 if (opt == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 return -EINVAL;
627
Thomas Graf2c10b322008-09-02 17:30:27 -0700628 qopt = nla_data(opt);
629 ret = parse_attr(tb, TCA_NETEM_MAX, opt, netem_policy, sizeof(*qopt));
Patrick McHardyb03f4672008-01-23 20:32:21 -0800630 if (ret < 0)
631 return ret;
632
Patrick McHardyfb0305c2008-07-05 23:40:21 -0700633 ret = fifo_set_limit(q->qdisc, qopt->limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 if (ret) {
stephen hemminger250a65f2011-02-23 13:04:22 +0000635 pr_info("netem: can't set fifo limit\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 return ret;
637 }
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900638
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 q->latency = qopt->latency;
640 q->jitter = qopt->jitter;
641 q->limit = qopt->limit;
642 q->gap = qopt->gap;
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700643 q->counter = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 q->loss = qopt->loss;
645 q->duplicate = qopt->duplicate;
646
Stephen Hemmingerbb2f8cc2007-03-23 00:12:09 -0700647 /* for compatibility with earlier versions.
648 * if gap is set, need to assume 100% probability
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700649 */
Stephen Hemmingera362e0a2007-03-22 12:15:45 -0700650 if (q->gap)
651 q->reorder = ~0;
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700652
Stephen Hemminger265eb672008-11-03 21:13:26 -0800653 if (tb[TCA_NETEM_CORR])
654 get_correlation(sch, tb[TCA_NETEM_CORR]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
Patrick McHardyb03f4672008-01-23 20:32:21 -0800656 if (tb[TCA_NETEM_DELAY_DIST]) {
657 ret = get_dist_table(sch, tb[TCA_NETEM_DELAY_DIST]);
658 if (ret)
659 return ret;
660 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
Stephen Hemminger265eb672008-11-03 21:13:26 -0800662 if (tb[TCA_NETEM_REORDER])
663 get_reorder(sch, tb[TCA_NETEM_REORDER]);
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800664
Stephen Hemminger265eb672008-11-03 21:13:26 -0800665 if (tb[TCA_NETEM_CORRUPT])
666 get_corrupt(sch, tb[TCA_NETEM_CORRUPT]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
stephen hemminger661b7972011-02-23 13:04:21 +0000668 q->loss_model = CLG_RANDOM;
669 if (tb[TCA_NETEM_LOSS])
670 ret = get_loss_clg(sch, tb[TCA_NETEM_LOSS]);
671
672 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673}
674
Stephen Hemminger300ce172005-10-30 13:47:34 -0800675/*
676 * Special case version of FIFO queue for use by netem.
677 * It queues in order based on timestamps in skb's
678 */
679struct fifo_sched_data {
680 u32 limit;
Stephen Hemminger075aa572007-03-22 12:17:05 -0700681 psched_time_t oldest;
Stephen Hemminger300ce172005-10-30 13:47:34 -0800682};
683
684static int tfifo_enqueue(struct sk_buff *nskb, struct Qdisc *sch)
685{
686 struct fifo_sched_data *q = qdisc_priv(sch);
687 struct sk_buff_head *list = &sch->q;
Jussi Kivilinna5f861732008-07-20 00:08:04 -0700688 psched_time_t tnext = netem_skb_cb(nskb)->time_to_send;
Stephen Hemminger300ce172005-10-30 13:47:34 -0800689 struct sk_buff *skb;
690
691 if (likely(skb_queue_len(list) < q->limit)) {
Stephen Hemminger075aa572007-03-22 12:17:05 -0700692 /* Optimize for add at tail */
Patrick McHardy104e0872007-03-23 11:28:07 -0700693 if (likely(skb_queue_empty(list) || tnext >= q->oldest)) {
Stephen Hemminger075aa572007-03-22 12:17:05 -0700694 q->oldest = tnext;
695 return qdisc_enqueue_tail(nskb, sch);
696 }
697
Stephen Hemminger300ce172005-10-30 13:47:34 -0800698 skb_queue_reverse_walk(list, skb) {
Jussi Kivilinna5f861732008-07-20 00:08:04 -0700699 const struct netem_skb_cb *cb = netem_skb_cb(skb);
Stephen Hemminger300ce172005-10-30 13:47:34 -0800700
Patrick McHardy104e0872007-03-23 11:28:07 -0700701 if (tnext >= cb->time_to_send)
Stephen Hemminger300ce172005-10-30 13:47:34 -0800702 break;
703 }
704
705 __skb_queue_after(list, skb, nskb);
706
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700707 sch->qstats.backlog += qdisc_pkt_len(nskb);
Stephen Hemminger300ce172005-10-30 13:47:34 -0800708
709 return NET_XMIT_SUCCESS;
710 }
711
Stephen Hemminger075aa572007-03-22 12:17:05 -0700712 return qdisc_reshape_fail(nskb, sch);
Stephen Hemminger300ce172005-10-30 13:47:34 -0800713}
714
Patrick McHardy1e904742008-01-22 22:11:17 -0800715static int tfifo_init(struct Qdisc *sch, struct nlattr *opt)
Stephen Hemminger300ce172005-10-30 13:47:34 -0800716{
717 struct fifo_sched_data *q = qdisc_priv(sch);
718
719 if (opt) {
Patrick McHardy1e904742008-01-22 22:11:17 -0800720 struct tc_fifo_qopt *ctl = nla_data(opt);
721 if (nla_len(opt) < sizeof(*ctl))
Stephen Hemminger300ce172005-10-30 13:47:34 -0800722 return -EINVAL;
723
724 q->limit = ctl->limit;
725 } else
David S. Miller5ce2d482008-07-08 17:06:30 -0700726 q->limit = max_t(u32, qdisc_dev(sch)->tx_queue_len, 1);
Stephen Hemminger300ce172005-10-30 13:47:34 -0800727
Patrick McHardya0849802007-03-23 11:28:30 -0700728 q->oldest = PSCHED_PASTPERFECT;
Stephen Hemminger300ce172005-10-30 13:47:34 -0800729 return 0;
730}
731
732static int tfifo_dump(struct Qdisc *sch, struct sk_buff *skb)
733{
734 struct fifo_sched_data *q = qdisc_priv(sch);
735 struct tc_fifo_qopt opt = { .limit = q->limit };
736
Patrick McHardy1e904742008-01-22 22:11:17 -0800737 NLA_PUT(skb, TCA_OPTIONS, sizeof(opt), &opt);
Stephen Hemminger300ce172005-10-30 13:47:34 -0800738 return skb->len;
739
Patrick McHardy1e904742008-01-22 22:11:17 -0800740nla_put_failure:
Stephen Hemminger300ce172005-10-30 13:47:34 -0800741 return -1;
742}
743
Eric Dumazet20fea082007-11-14 01:44:41 -0800744static struct Qdisc_ops tfifo_qdisc_ops __read_mostly = {
Stephen Hemminger300ce172005-10-30 13:47:34 -0800745 .id = "tfifo",
746 .priv_size = sizeof(struct fifo_sched_data),
747 .enqueue = tfifo_enqueue,
748 .dequeue = qdisc_dequeue_head,
Jarek Poplawski8e3af972008-10-31 00:45:55 -0700749 .peek = qdisc_peek_head,
Stephen Hemminger300ce172005-10-30 13:47:34 -0800750 .drop = qdisc_queue_drop,
751 .init = tfifo_init,
752 .reset = qdisc_reset_queue,
753 .change = tfifo_init,
754 .dump = tfifo_dump,
755};
756
Patrick McHardy1e904742008-01-22 22:11:17 -0800757static int netem_init(struct Qdisc *sch, struct nlattr *opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758{
759 struct netem_sched_data *q = qdisc_priv(sch);
760 int ret;
761
762 if (!opt)
763 return -EINVAL;
764
Patrick McHardy59cb5c62007-03-16 01:20:31 -0700765 qdisc_watchdog_init(&q->watchdog, sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
stephen hemminger661b7972011-02-23 13:04:21 +0000767 q->loss_model = CLG_RANDOM;
Changli Gao3511c912010-10-16 13:04:08 +0000768 q->qdisc = qdisc_create_dflt(sch->dev_queue, &tfifo_qdisc_ops,
Patrick McHardy9f9afec2006-11-29 17:35:18 -0800769 TC_H_MAKE(sch->handle, 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 if (!q->qdisc) {
stephen hemminger250a65f2011-02-23 13:04:22 +0000771 pr_notice("netem: qdisc create tfifo qdisc failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 return -ENOMEM;
773 }
774
775 ret = netem_change(sch, opt);
776 if (ret) {
stephen hemminger250a65f2011-02-23 13:04:22 +0000777 pr_info("netem: change failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 qdisc_destroy(q->qdisc);
779 }
780 return ret;
781}
782
783static void netem_destroy(struct Qdisc *sch)
784{
785 struct netem_sched_data *q = qdisc_priv(sch);
786
Patrick McHardy59cb5c62007-03-16 01:20:31 -0700787 qdisc_watchdog_cancel(&q->watchdog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 qdisc_destroy(q->qdisc);
stephen hemminger6373a9a2011-02-23 13:04:18 +0000789 dist_free(q->delay_dist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790}
791
stephen hemminger661b7972011-02-23 13:04:21 +0000792static int dump_loss_model(const struct netem_sched_data *q,
793 struct sk_buff *skb)
794{
795 struct nlattr *nest;
796
797 nest = nla_nest_start(skb, TCA_NETEM_LOSS);
798 if (nest == NULL)
799 goto nla_put_failure;
800
801 switch (q->loss_model) {
802 case CLG_RANDOM:
803 /* legacy loss model */
804 nla_nest_cancel(skb, nest);
805 return 0; /* no data */
806
807 case CLG_4_STATES: {
808 struct tc_netem_gimodel gi = {
809 .p13 = q->clg.a1,
810 .p31 = q->clg.a2,
811 .p32 = q->clg.a3,
812 .p14 = q->clg.a4,
813 .p23 = q->clg.a5,
814 };
815
816 NLA_PUT(skb, NETEM_LOSS_GI, sizeof(gi), &gi);
817 break;
818 }
819 case CLG_GILB_ELL: {
820 struct tc_netem_gemodel ge = {
821 .p = q->clg.a1,
822 .r = q->clg.a2,
823 .h = q->clg.a3,
824 .k1 = q->clg.a4,
825 };
826
827 NLA_PUT(skb, NETEM_LOSS_GE, sizeof(ge), &ge);
828 break;
829 }
830 }
831
832 nla_nest_end(skb, nest);
833 return 0;
834
835nla_put_failure:
836 nla_nest_cancel(skb, nest);
837 return -1;
838}
839
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840static int netem_dump(struct Qdisc *sch, struct sk_buff *skb)
841{
842 const struct netem_sched_data *q = qdisc_priv(sch);
stephen hemminger861d7f72011-02-23 13:04:17 +0000843 struct nlattr *nla = (struct nlattr *) skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 struct tc_netem_qopt qopt;
845 struct tc_netem_corr cor;
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700846 struct tc_netem_reorder reorder;
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800847 struct tc_netem_corrupt corrupt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
849 qopt.latency = q->latency;
850 qopt.jitter = q->jitter;
851 qopt.limit = q->limit;
852 qopt.loss = q->loss;
853 qopt.gap = q->gap;
854 qopt.duplicate = q->duplicate;
Patrick McHardy1e904742008-01-22 22:11:17 -0800855 NLA_PUT(skb, TCA_OPTIONS, sizeof(qopt), &qopt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
857 cor.delay_corr = q->delay_cor.rho;
858 cor.loss_corr = q->loss_cor.rho;
859 cor.dup_corr = q->dup_cor.rho;
Patrick McHardy1e904742008-01-22 22:11:17 -0800860 NLA_PUT(skb, TCA_NETEM_CORR, sizeof(cor), &cor);
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700861
862 reorder.probability = q->reorder;
863 reorder.correlation = q->reorder_cor.rho;
Patrick McHardy1e904742008-01-22 22:11:17 -0800864 NLA_PUT(skb, TCA_NETEM_REORDER, sizeof(reorder), &reorder);
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700865
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800866 corrupt.probability = q->corrupt;
867 corrupt.correlation = q->corrupt_cor.rho;
Patrick McHardy1e904742008-01-22 22:11:17 -0800868 NLA_PUT(skb, TCA_NETEM_CORRUPT, sizeof(corrupt), &corrupt);
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800869
stephen hemminger661b7972011-02-23 13:04:21 +0000870 if (dump_loss_model(q, skb) != 0)
871 goto nla_put_failure;
872
stephen hemminger861d7f72011-02-23 13:04:17 +0000873 return nla_nest_end(skb, nla);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
Patrick McHardy1e904742008-01-22 22:11:17 -0800875nla_put_failure:
stephen hemminger861d7f72011-02-23 13:04:17 +0000876 nlmsg_trim(skb, nla);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 return -1;
878}
879
stephen hemminger10f6dfc2011-02-23 13:04:20 +0000880static int netem_dump_class(struct Qdisc *sch, unsigned long cl,
881 struct sk_buff *skb, struct tcmsg *tcm)
882{
883 struct netem_sched_data *q = qdisc_priv(sch);
884
885 if (cl != 1) /* only one class */
886 return -ENOENT;
887
888 tcm->tcm_handle |= TC_H_MIN(1);
889 tcm->tcm_info = q->qdisc->handle;
890
891 return 0;
892}
893
894static int netem_graft(struct Qdisc *sch, unsigned long arg, struct Qdisc *new,
895 struct Qdisc **old)
896{
897 struct netem_sched_data *q = qdisc_priv(sch);
898
899 if (new == NULL)
900 new = &noop_qdisc;
901
902 sch_tree_lock(sch);
903 *old = q->qdisc;
904 q->qdisc = new;
905 qdisc_tree_decrease_qlen(*old, (*old)->q.qlen);
906 qdisc_reset(*old);
907 sch_tree_unlock(sch);
908
909 return 0;
910}
911
912static struct Qdisc *netem_leaf(struct Qdisc *sch, unsigned long arg)
913{
914 struct netem_sched_data *q = qdisc_priv(sch);
915 return q->qdisc;
916}
917
918static unsigned long netem_get(struct Qdisc *sch, u32 classid)
919{
920 return 1;
921}
922
923static void netem_put(struct Qdisc *sch, unsigned long arg)
924{
925}
926
927static void netem_walk(struct Qdisc *sch, struct qdisc_walker *walker)
928{
929 if (!walker->stop) {
930 if (walker->count >= walker->skip)
931 if (walker->fn(sch, 1, walker) < 0) {
932 walker->stop = 1;
933 return;
934 }
935 walker->count++;
936 }
937}
938
939static const struct Qdisc_class_ops netem_class_ops = {
940 .graft = netem_graft,
941 .leaf = netem_leaf,
942 .get = netem_get,
943 .put = netem_put,
944 .walk = netem_walk,
945 .dump = netem_dump_class,
946};
947
Eric Dumazet20fea082007-11-14 01:44:41 -0800948static struct Qdisc_ops netem_qdisc_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 .id = "netem",
stephen hemminger10f6dfc2011-02-23 13:04:20 +0000950 .cl_ops = &netem_class_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 .priv_size = sizeof(struct netem_sched_data),
952 .enqueue = netem_enqueue,
953 .dequeue = netem_dequeue,
Jarek Poplawski77be1552008-10-31 00:47:01 -0700954 .peek = qdisc_peek_dequeued,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 .drop = netem_drop,
956 .init = netem_init,
957 .reset = netem_reset,
958 .destroy = netem_destroy,
959 .change = netem_change,
960 .dump = netem_dump,
961 .owner = THIS_MODULE,
962};
963
964
965static int __init netem_module_init(void)
966{
Stephen Hemmingereb229c42005-11-03 13:49:01 -0800967 pr_info("netem: version " VERSION "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 return register_qdisc(&netem_qdisc_ops);
969}
970static void __exit netem_module_exit(void)
971{
972 unregister_qdisc(&netem_qdisc_ops);
973}
974module_init(netem_module_init)
975module_exit(netem_module_exit)
976MODULE_LICENSE("GPL");