]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - net/sched/sch_netem.c
Revert "sch_netem: Remove classful functionality"
[mirror_ubuntu-bionic-kernel.git] / net / sched / sch_netem.c
CommitLineData
1da177e4
LT
1/*
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
798b6b19 7 * 2 of the License.
1da177e4
LT
8 *
9 * Many of the algorithms and ideas for this came from
10297b99 10 * NIST Net which is not copyrighted.
1da177e4
LT
11 *
12 * Authors: Stephen Hemminger <shemminger@osdl.org>
13 * Catalin(ux aka Dino) BOIE <catab at umbrella dot ro>
14 */
15
1da177e4 16#include <linux/module.h>
5a0e3ad6 17#include <linux/slab.h>
1da177e4
LT
18#include <linux/types.h>
19#include <linux/kernel.h>
20#include <linux/errno.h>
1da177e4
LT
21#include <linux/skbuff.h>
22#include <linux/rtnetlink.h>
23
dc5fc579 24#include <net/netlink.h>
1da177e4
LT
25#include <net/pkt_sched.h>
26
c865e5d9 27#define VERSION "1.2"
eb229c4c 28
1da177e4
LT
29/* Network Emulation Queuing algorithm.
30 ====================================
31
32 Sources: [1] Mark Carson, Darrin Santay, "NIST Net - A Linux-based
33 Network Emulation Tool
34 [2] Luigi Rizzo, DummyNet for FreeBSD
35
36 ----------------------------------------------------------------
37
38 This started out as a simple way to delay outgoing packets to
39 test TCP but has grown to include most of the functionality
40 of a full blown network emulator like NISTnet. It can delay
41 packets and add random jitter (and correlation). The random
42 distribution can be loaded from a table as well to provide
43 normal, Pareto, or experimental curves. Packet loss,
44 duplication, and reordering can also be emulated.
45
46 This qdisc does not do classification that can be handled in
47 layering other disciplines. It does not need to do bandwidth
48 control either since that can be handled by using token
49 bucket or other rate control.
1da177e4
LT
50*/
51
52struct netem_sched_data {
53 struct Qdisc *qdisc;
59cb5c67 54 struct qdisc_watchdog watchdog;
1da177e4 55
b407621c
SH
56 psched_tdiff_t latency;
57 psched_tdiff_t jitter;
58
1da177e4
LT
59 u32 loss;
60 u32 limit;
61 u32 counter;
62 u32 gap;
1da177e4 63 u32 duplicate;
0dca51d3 64 u32 reorder;
c865e5d9 65 u32 corrupt;
1da177e4
LT
66
67 struct crndstate {
b407621c
SH
68 u32 last;
69 u32 rho;
c865e5d9 70 } delay_cor, loss_cor, dup_cor, reorder_cor, corrupt_cor;
1da177e4
LT
71
72 struct disttable {
73 u32 size;
74 s16 table[0];
75 } *delay_dist;
76};
77
78/* Time stamp put into socket buffer control block */
79struct netem_skb_cb {
80 psched_time_t time_to_send;
81};
82
5f86173b
JK
83static inline struct netem_skb_cb *netem_skb_cb(struct sk_buff *skb)
84{
175f9c1b
JK
85 BUILD_BUG_ON(sizeof(skb->cb) <
86 sizeof(struct qdisc_skb_cb) + sizeof(struct netem_skb_cb));
87 return (struct netem_skb_cb *)qdisc_skb_cb(skb)->data;
5f86173b
JK
88}
89
1da177e4
LT
90/* init_crandom - initialize correlated random number generator
91 * Use entropy source for initial seed.
92 */
93static void init_crandom(struct crndstate *state, unsigned long rho)
94{
95 state->rho = rho;
96 state->last = net_random();
97}
98
99/* get_crandom - correlated random number generator
100 * Next number depends on last value.
101 * rho is scaled to avoid floating point.
102 */
b407621c 103static u32 get_crandom(struct crndstate *state)
1da177e4
LT
104{
105 u64 value, rho;
106 unsigned long answer;
107
bb2f8cc0 108 if (state->rho == 0) /* no correlation */
1da177e4
LT
109 return net_random();
110
111 value = net_random();
112 rho = (u64)state->rho + 1;
113 answer = (value * ((1ull<<32) - rho) + state->last * rho) >> 32;
114 state->last = answer;
115 return answer;
116}
117
118/* tabledist - return a pseudo-randomly distributed value with mean mu and
119 * std deviation sigma. Uses table lookup to approximate the desired
120 * distribution, and a uniformly-distributed pseudo-random source.
121 */
b407621c
SH
122static psched_tdiff_t tabledist(psched_tdiff_t mu, psched_tdiff_t sigma,
123 struct crndstate *state,
124 const struct disttable *dist)
1da177e4 125{
b407621c
SH
126 psched_tdiff_t x;
127 long t;
128 u32 rnd;
1da177e4
LT
129
130 if (sigma == 0)
131 return mu;
132
133 rnd = get_crandom(state);
134
135 /* default uniform distribution */
10297b99 136 if (dist == NULL)
1da177e4
LT
137 return (rnd % (2*sigma)) - sigma + mu;
138
139 t = dist->table[rnd % dist->size];
140 x = (sigma % NETEM_DIST_SCALE) * t;
141 if (x >= 0)
142 x += NETEM_DIST_SCALE/2;
143 else
144 x -= NETEM_DIST_SCALE/2;
145
146 return x / NETEM_DIST_SCALE + (sigma / NETEM_DIST_SCALE) * t + mu;
147}
148
0afb51e7
SH
149/*
150 * Insert one skb into qdisc.
151 * Note: parent depends on return value to account for queue length.
152 * NET_XMIT_DROP: queue length didn't change.
153 * NET_XMIT_SUCCESS: one skb was queued.
154 */
1da177e4
LT
155static int netem_enqueue(struct sk_buff *skb, struct Qdisc *sch)
156{
157 struct netem_sched_data *q = qdisc_priv(sch);
89e1df74
GC
158 /* We don't fill cb now as skb_unshare() may invalidate it */
159 struct netem_skb_cb *cb;
0afb51e7 160 struct sk_buff *skb2;
1da177e4 161 int ret;
0afb51e7 162 int count = 1;
1da177e4 163
771018e7 164 pr_debug("netem_enqueue skb=%p\n", skb);
1da177e4 165
0afb51e7
SH
166 /* Random duplication */
167 if (q->duplicate && q->duplicate >= get_crandom(&q->dup_cor))
168 ++count;
169
1da177e4 170 /* Random packet drop 0 => none, ~0 => all */
0afb51e7
SH
171 if (q->loss && q->loss >= get_crandom(&q->loss_cor))
172 --count;
173
174 if (count == 0) {
1da177e4
LT
175 sch->qstats.drops++;
176 kfree_skb(skb);
c27f339a 177 return NET_XMIT_SUCCESS | __NET_XMIT_BYPASS;
1da177e4
LT
178 }
179
4e8a5201
DM
180 skb_orphan(skb);
181
0afb51e7
SH
182 /*
183 * If we need to duplicate packet, then re-insert at top of the
184 * qdisc tree, since parent queuer expects that only one
185 * skb will be queued.
186 */
187 if (count > 1 && (skb2 = skb_clone(skb, GFP_ATOMIC)) != NULL) {
7698b4fc 188 struct Qdisc *rootq = qdisc_root(sch);
0afb51e7
SH
189 u32 dupsave = q->duplicate; /* prevent duplicating a dup... */
190 q->duplicate = 0;
191
5f86173b 192 qdisc_enqueue_root(skb2, rootq);
0afb51e7 193 q->duplicate = dupsave;
1da177e4
LT
194 }
195
c865e5d9
SH
196 /*
197 * Randomized packet corruption.
198 * Make copy if needed since we are modifying
199 * If packet is going to be hardware checksummed, then
200 * do it now in software before we mangle it.
201 */
202 if (q->corrupt && q->corrupt >= get_crandom(&q->corrupt_cor)) {
f64f9e71
JP
203 if (!(skb = skb_unshare(skb, GFP_ATOMIC)) ||
204 (skb->ip_summed == CHECKSUM_PARTIAL &&
205 skb_checksum_help(skb))) {
c865e5d9
SH
206 sch->qstats.drops++;
207 return NET_XMIT_DROP;
208 }
209
210 skb->data[net_random() % skb_headlen(skb)] ^= 1<<(net_random() % 8);
211 }
212
5f86173b 213 cb = netem_skb_cb(skb);
cc7ec456
ED
214 if (q->gap == 0 || /* not doing reordering */
215 q->counter < q->gap || /* inside last reordering gap */
f64f9e71 216 q->reorder < get_crandom(&q->reorder_cor)) {
0f9f32ac 217 psched_time_t now;
07aaa115
SH
218 psched_tdiff_t delay;
219
220 delay = tabledist(q->latency, q->jitter,
221 &q->delay_cor, q->delay_dist);
222
3bebcda2 223 now = psched_get_time();
7c59e25f 224 cb->time_to_send = now + delay;
1da177e4 225 ++q->counter;
5f86173b 226 ret = qdisc_enqueue(skb, q->qdisc);
1da177e4 227 } else {
10297b99 228 /*
0dca51d3
SH
229 * Do re-ordering by putting one out of N packets at the front
230 * of the queue.
231 */
3bebcda2 232 cb->time_to_send = psched_get_time();
0dca51d3 233 q->counter = 0;
8ba25dad
JP
234
235 __skb_queue_head(&q->qdisc->q, skb);
236 q->qdisc->qstats.backlog += qdisc_pkt_len(skb);
237 q->qdisc->qstats.requeues++;
238 ret = NET_XMIT_SUCCESS;
1da177e4
LT
239 }
240
10f6dfcf 241 if (ret != NET_XMIT_SUCCESS) {
242 if (net_xmit_drop_count(ret)) {
243 sch->qstats.drops++;
244 return ret;
245 }
378a2f09 246 }
1da177e4 247
10f6dfcf 248 sch->q.qlen++;
249 return NET_XMIT_SUCCESS;
1da177e4
LT
250}
251
cc7ec456 252static unsigned int netem_drop(struct Qdisc *sch)
1da177e4
LT
253{
254 struct netem_sched_data *q = qdisc_priv(sch);
6d037a26 255 unsigned int len = 0;
1da177e4 256
6d037a26 257 if (q->qdisc->ops->drop && (len = q->qdisc->ops->drop(q->qdisc)) != 0) {
1da177e4
LT
258 sch->q.qlen--;
259 sch->qstats.drops++;
260 }
261 return len;
262}
263
1da177e4
LT
264static struct sk_buff *netem_dequeue(struct Qdisc *sch)
265{
266 struct netem_sched_data *q = qdisc_priv(sch);
267 struct sk_buff *skb;
268
fd245a4a 269 if (qdisc_is_throttled(sch))
11274e5a
SH
270 return NULL;
271
03c05f0d 272 skb = q->qdisc->ops->peek(q->qdisc);
771018e7 273 if (skb) {
5f86173b 274 const struct netem_skb_cb *cb = netem_skb_cb(skb);
3bebcda2 275 psched_time_t now = psched_get_time();
0f9f32ac
SH
276
277 /* if more time remaining? */
104e0878 278 if (cb->time_to_send <= now) {
77be155c
JP
279 skb = qdisc_dequeue_peeked(q->qdisc);
280 if (unlikely(!skb))
03c05f0d
JP
281 return NULL;
282
8caf1539
JP
283#ifdef CONFIG_NET_CLS_ACT
284 /*
285 * If it's at ingress let's pretend the delay is
286 * from the network (tstamp will be updated).
287 */
288 if (G_TC_FROM(skb->tc_verd) & AT_INGRESS)
289 skb->tstamp.tv64 = 0;
290#endif
10f6dfcf 291
0f9f32ac 292 sch->q.qlen--;
10f6dfcf 293 qdisc_unthrottled(sch);
294 qdisc_bstats_update(sch, skb);
0f9f32ac 295 return skb;
07aaa115 296 }
11274e5a 297
11274e5a 298 qdisc_watchdog_schedule(&q->watchdog, cb->time_to_send);
0f9f32ac
SH
299 }
300
301 return NULL;
1da177e4
LT
302}
303
1da177e4
LT
304static void netem_reset(struct Qdisc *sch)
305{
306 struct netem_sched_data *q = qdisc_priv(sch);
307
308 qdisc_reset(q->qdisc);
1da177e4 309 sch->q.qlen = 0;
59cb5c67 310 qdisc_watchdog_cancel(&q->watchdog);
1da177e4
LT
311}
312
6373a9a2 313static void dist_free(struct disttable *d)
314{
315 if (d) {
316 if (is_vmalloc_addr(d))
317 vfree(d);
318 else
319 kfree(d);
320 }
321}
322
1da177e4
LT
323/*
324 * Distribution data is a variable size payload containing
325 * signed 16 bit values.
326 */
1e90474c 327static int get_dist_table(struct Qdisc *sch, const struct nlattr *attr)
1da177e4
LT
328{
329 struct netem_sched_data *q = qdisc_priv(sch);
6373a9a2 330 size_t n = nla_len(attr)/sizeof(__s16);
1e90474c 331 const __s16 *data = nla_data(attr);
7698b4fc 332 spinlock_t *root_lock;
1da177e4
LT
333 struct disttable *d;
334 int i;
6373a9a2 335 size_t s;
1da177e4 336
df173bda 337 if (n > NETEM_DIST_MAX)
1da177e4
LT
338 return -EINVAL;
339
6373a9a2 340 s = sizeof(struct disttable) + n * sizeof(s16);
341 d = kmalloc(s, GFP_KERNEL);
342 if (!d)
343 d = vmalloc(s);
1da177e4
LT
344 if (!d)
345 return -ENOMEM;
346
347 d->size = n;
348 for (i = 0; i < n; i++)
349 d->table[i] = data[i];
10297b99 350
102396ae 351 root_lock = qdisc_root_sleeping_lock(sch);
7698b4fc
DM
352
353 spin_lock_bh(root_lock);
6373a9a2 354 dist_free(q->delay_dist);
b94c8afc 355 q->delay_dist = d;
7698b4fc 356 spin_unlock_bh(root_lock);
1da177e4
LT
357 return 0;
358}
359
265eb67f 360static void get_correlation(struct Qdisc *sch, const struct nlattr *attr)
1da177e4
LT
361{
362 struct netem_sched_data *q = qdisc_priv(sch);
1e90474c 363 const struct tc_netem_corr *c = nla_data(attr);
1da177e4 364
1da177e4
LT
365 init_crandom(&q->delay_cor, c->delay_corr);
366 init_crandom(&q->loss_cor, c->loss_corr);
367 init_crandom(&q->dup_cor, c->dup_corr);
1da177e4
LT
368}
369
265eb67f 370static void get_reorder(struct Qdisc *sch, const struct nlattr *attr)
0dca51d3
SH
371{
372 struct netem_sched_data *q = qdisc_priv(sch);
1e90474c 373 const struct tc_netem_reorder *r = nla_data(attr);
0dca51d3 374
0dca51d3
SH
375 q->reorder = r->probability;
376 init_crandom(&q->reorder_cor, r->correlation);
0dca51d3
SH
377}
378
265eb67f 379static void get_corrupt(struct Qdisc *sch, const struct nlattr *attr)
c865e5d9
SH
380{
381 struct netem_sched_data *q = qdisc_priv(sch);
1e90474c 382 const struct tc_netem_corrupt *r = nla_data(attr);
c865e5d9 383
c865e5d9
SH
384 q->corrupt = r->probability;
385 init_crandom(&q->corrupt_cor, r->correlation);
c865e5d9
SH
386}
387
27a3421e
PM
388static const struct nla_policy netem_policy[TCA_NETEM_MAX + 1] = {
389 [TCA_NETEM_CORR] = { .len = sizeof(struct tc_netem_corr) },
390 [TCA_NETEM_REORDER] = { .len = sizeof(struct tc_netem_reorder) },
391 [TCA_NETEM_CORRUPT] = { .len = sizeof(struct tc_netem_corrupt) },
392};
393
2c10b32b
TG
394static int parse_attr(struct nlattr *tb[], int maxtype, struct nlattr *nla,
395 const struct nla_policy *policy, int len)
396{
397 int nested_len = nla_len(nla) - NLA_ALIGN(len);
398
399 if (nested_len < 0)
400 return -EINVAL;
401 if (nested_len >= nla_attr_size(0))
402 return nla_parse(tb, maxtype, nla_data(nla) + NLA_ALIGN(len),
403 nested_len, policy);
404 memset(tb, 0, sizeof(struct nlattr *) * (maxtype + 1));
405 return 0;
406}
407
c865e5d9 408/* Parse netlink message to set options */
1e90474c 409static int netem_change(struct Qdisc *sch, struct nlattr *opt)
1da177e4
LT
410{
411 struct netem_sched_data *q = qdisc_priv(sch);
b03f4672 412 struct nlattr *tb[TCA_NETEM_MAX + 1];
1da177e4
LT
413 struct tc_netem_qopt *qopt;
414 int ret;
10297b99 415
b03f4672 416 if (opt == NULL)
1da177e4
LT
417 return -EINVAL;
418
2c10b32b
TG
419 qopt = nla_data(opt);
420 ret = parse_attr(tb, TCA_NETEM_MAX, opt, netem_policy, sizeof(*qopt));
b03f4672
PM
421 if (ret < 0)
422 return ret;
423
fb0305ce 424 ret = fifo_set_limit(q->qdisc, qopt->limit);
1da177e4
LT
425 if (ret) {
426 pr_debug("netem: can't set fifo limit\n");
427 return ret;
428 }
10297b99 429
1da177e4
LT
430 q->latency = qopt->latency;
431 q->jitter = qopt->jitter;
432 q->limit = qopt->limit;
433 q->gap = qopt->gap;
0dca51d3 434 q->counter = 0;
1da177e4
LT
435 q->loss = qopt->loss;
436 q->duplicate = qopt->duplicate;
437
bb2f8cc0
SH
438 /* for compatibility with earlier versions.
439 * if gap is set, need to assume 100% probability
0dca51d3 440 */
a362e0a7
SH
441 if (q->gap)
442 q->reorder = ~0;
0dca51d3 443
265eb67f
SH
444 if (tb[TCA_NETEM_CORR])
445 get_correlation(sch, tb[TCA_NETEM_CORR]);
1da177e4 446
b03f4672
PM
447 if (tb[TCA_NETEM_DELAY_DIST]) {
448 ret = get_dist_table(sch, tb[TCA_NETEM_DELAY_DIST]);
449 if (ret)
450 return ret;
451 }
c865e5d9 452
265eb67f
SH
453 if (tb[TCA_NETEM_REORDER])
454 get_reorder(sch, tb[TCA_NETEM_REORDER]);
1da177e4 455
265eb67f
SH
456 if (tb[TCA_NETEM_CORRUPT])
457 get_corrupt(sch, tb[TCA_NETEM_CORRUPT]);
1da177e4
LT
458
459 return 0;
460}
461
300ce174
SH
462/*
463 * Special case version of FIFO queue for use by netem.
464 * It queues in order based on timestamps in skb's
465 */
466struct fifo_sched_data {
467 u32 limit;
075aa573 468 psched_time_t oldest;
300ce174
SH
469};
470
471static int tfifo_enqueue(struct sk_buff *nskb, struct Qdisc *sch)
472{
473 struct fifo_sched_data *q = qdisc_priv(sch);
474 struct sk_buff_head *list = &sch->q;
5f86173b 475 psched_time_t tnext = netem_skb_cb(nskb)->time_to_send;
300ce174
SH
476 struct sk_buff *skb;
477
478 if (likely(skb_queue_len(list) < q->limit)) {
075aa573 479 /* Optimize for add at tail */
104e0878 480 if (likely(skb_queue_empty(list) || tnext >= q->oldest)) {
075aa573
SH
481 q->oldest = tnext;
482 return qdisc_enqueue_tail(nskb, sch);
483 }
484
300ce174 485 skb_queue_reverse_walk(list, skb) {
5f86173b 486 const struct netem_skb_cb *cb = netem_skb_cb(skb);
300ce174 487
104e0878 488 if (tnext >= cb->time_to_send)
300ce174
SH
489 break;
490 }
491
492 __skb_queue_after(list, skb, nskb);
493
0abf77e5 494 sch->qstats.backlog += qdisc_pkt_len(nskb);
300ce174
SH
495
496 return NET_XMIT_SUCCESS;
497 }
498
075aa573 499 return qdisc_reshape_fail(nskb, sch);
300ce174
SH
500}
501
1e90474c 502static int tfifo_init(struct Qdisc *sch, struct nlattr *opt)
300ce174
SH
503{
504 struct fifo_sched_data *q = qdisc_priv(sch);
505
506 if (opt) {
1e90474c
PM
507 struct tc_fifo_qopt *ctl = nla_data(opt);
508 if (nla_len(opt) < sizeof(*ctl))
300ce174
SH
509 return -EINVAL;
510
511 q->limit = ctl->limit;
512 } else
5ce2d488 513 q->limit = max_t(u32, qdisc_dev(sch)->tx_queue_len, 1);
300ce174 514
a084980d 515 q->oldest = PSCHED_PASTPERFECT;
300ce174
SH
516 return 0;
517}
518
519static int tfifo_dump(struct Qdisc *sch, struct sk_buff *skb)
520{
521 struct fifo_sched_data *q = qdisc_priv(sch);
522 struct tc_fifo_qopt opt = { .limit = q->limit };
523
1e90474c 524 NLA_PUT(skb, TCA_OPTIONS, sizeof(opt), &opt);
300ce174
SH
525 return skb->len;
526
1e90474c 527nla_put_failure:
300ce174
SH
528 return -1;
529}
530
20fea08b 531static struct Qdisc_ops tfifo_qdisc_ops __read_mostly = {
300ce174
SH
532 .id = "tfifo",
533 .priv_size = sizeof(struct fifo_sched_data),
534 .enqueue = tfifo_enqueue,
535 .dequeue = qdisc_dequeue_head,
8e3af978 536 .peek = qdisc_peek_head,
300ce174
SH
537 .drop = qdisc_queue_drop,
538 .init = tfifo_init,
539 .reset = qdisc_reset_queue,
540 .change = tfifo_init,
541 .dump = tfifo_dump,
542};
543
1e90474c 544static int netem_init(struct Qdisc *sch, struct nlattr *opt)
1da177e4
LT
545{
546 struct netem_sched_data *q = qdisc_priv(sch);
547 int ret;
548
549 if (!opt)
550 return -EINVAL;
551
59cb5c67 552 qdisc_watchdog_init(&q->watchdog, sch);
1da177e4 553
3511c913 554 q->qdisc = qdisc_create_dflt(sch->dev_queue, &tfifo_qdisc_ops,
9f9afec4 555 TC_H_MAKE(sch->handle, 1));
1da177e4
LT
556 if (!q->qdisc) {
557 pr_debug("netem: qdisc create failed\n");
558 return -ENOMEM;
559 }
560
561 ret = netem_change(sch, opt);
562 if (ret) {
563 pr_debug("netem: change failed\n");
564 qdisc_destroy(q->qdisc);
565 }
566 return ret;
567}
568
569static void netem_destroy(struct Qdisc *sch)
570{
571 struct netem_sched_data *q = qdisc_priv(sch);
572
59cb5c67 573 qdisc_watchdog_cancel(&q->watchdog);
1da177e4 574 qdisc_destroy(q->qdisc);
6373a9a2 575 dist_free(q->delay_dist);
1da177e4
LT
576}
577
578static int netem_dump(struct Qdisc *sch, struct sk_buff *skb)
579{
580 const struct netem_sched_data *q = qdisc_priv(sch);
861d7f74 581 struct nlattr *nla = (struct nlattr *) skb_tail_pointer(skb);
1da177e4
LT
582 struct tc_netem_qopt qopt;
583 struct tc_netem_corr cor;
0dca51d3 584 struct tc_netem_reorder reorder;
c865e5d9 585 struct tc_netem_corrupt corrupt;
1da177e4
LT
586
587 qopt.latency = q->latency;
588 qopt.jitter = q->jitter;
589 qopt.limit = q->limit;
590 qopt.loss = q->loss;
591 qopt.gap = q->gap;
592 qopt.duplicate = q->duplicate;
1e90474c 593 NLA_PUT(skb, TCA_OPTIONS, sizeof(qopt), &qopt);
1da177e4
LT
594
595 cor.delay_corr = q->delay_cor.rho;
596 cor.loss_corr = q->loss_cor.rho;
597 cor.dup_corr = q->dup_cor.rho;
1e90474c 598 NLA_PUT(skb, TCA_NETEM_CORR, sizeof(cor), &cor);
0dca51d3
SH
599
600 reorder.probability = q->reorder;
601 reorder.correlation = q->reorder_cor.rho;
1e90474c 602 NLA_PUT(skb, TCA_NETEM_REORDER, sizeof(reorder), &reorder);
0dca51d3 603
c865e5d9
SH
604 corrupt.probability = q->corrupt;
605 corrupt.correlation = q->corrupt_cor.rho;
1e90474c 606 NLA_PUT(skb, TCA_NETEM_CORRUPT, sizeof(corrupt), &corrupt);
c865e5d9 607
861d7f74 608 return nla_nest_end(skb, nla);
1da177e4 609
1e90474c 610nla_put_failure:
861d7f74 611 nlmsg_trim(skb, nla);
1da177e4
LT
612 return -1;
613}
614
10f6dfcf 615static int netem_dump_class(struct Qdisc *sch, unsigned long cl,
616 struct sk_buff *skb, struct tcmsg *tcm)
617{
618 struct netem_sched_data *q = qdisc_priv(sch);
619
620 if (cl != 1) /* only one class */
621 return -ENOENT;
622
623 tcm->tcm_handle |= TC_H_MIN(1);
624 tcm->tcm_info = q->qdisc->handle;
625
626 return 0;
627}
628
629static int netem_graft(struct Qdisc *sch, unsigned long arg, struct Qdisc *new,
630 struct Qdisc **old)
631{
632 struct netem_sched_data *q = qdisc_priv(sch);
633
634 if (new == NULL)
635 new = &noop_qdisc;
636
637 sch_tree_lock(sch);
638 *old = q->qdisc;
639 q->qdisc = new;
640 qdisc_tree_decrease_qlen(*old, (*old)->q.qlen);
641 qdisc_reset(*old);
642 sch_tree_unlock(sch);
643
644 return 0;
645}
646
647static struct Qdisc *netem_leaf(struct Qdisc *sch, unsigned long arg)
648{
649 struct netem_sched_data *q = qdisc_priv(sch);
650 return q->qdisc;
651}
652
653static unsigned long netem_get(struct Qdisc *sch, u32 classid)
654{
655 return 1;
656}
657
658static void netem_put(struct Qdisc *sch, unsigned long arg)
659{
660}
661
662static void netem_walk(struct Qdisc *sch, struct qdisc_walker *walker)
663{
664 if (!walker->stop) {
665 if (walker->count >= walker->skip)
666 if (walker->fn(sch, 1, walker) < 0) {
667 walker->stop = 1;
668 return;
669 }
670 walker->count++;
671 }
672}
673
674static const struct Qdisc_class_ops netem_class_ops = {
675 .graft = netem_graft,
676 .leaf = netem_leaf,
677 .get = netem_get,
678 .put = netem_put,
679 .walk = netem_walk,
680 .dump = netem_dump_class,
681};
682
20fea08b 683static struct Qdisc_ops netem_qdisc_ops __read_mostly = {
1da177e4 684 .id = "netem",
10f6dfcf 685 .cl_ops = &netem_class_ops,
1da177e4
LT
686 .priv_size = sizeof(struct netem_sched_data),
687 .enqueue = netem_enqueue,
688 .dequeue = netem_dequeue,
77be155c 689 .peek = qdisc_peek_dequeued,
1da177e4
LT
690 .drop = netem_drop,
691 .init = netem_init,
692 .reset = netem_reset,
693 .destroy = netem_destroy,
694 .change = netem_change,
695 .dump = netem_dump,
696 .owner = THIS_MODULE,
697};
698
699
700static int __init netem_module_init(void)
701{
eb229c4c 702 pr_info("netem: version " VERSION "\n");
1da177e4
LT
703 return register_qdisc(&netem_qdisc_ops);
704}
705static void __exit netem_module_exit(void)
706{
707 unregister_qdisc(&netem_qdisc_ops);
708}
709module_init(netem_module_init)
710module_exit(netem_module_exit)
711MODULE_LICENSE("GPL");