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