blob: a7b58df4546dea30c5e880b66e2747fd9b682297 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/types.h>
18#include <linux/kernel.h>
19#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/skbuff.h>
21#include <linux/rtnetlink.h>
22
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -070023#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <net/pkt_sched.h>
25
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -080026#define VERSION "1.2"
Stephen Hemmingereb229c42005-11-03 13:49:01 -080027
Linus Torvalds1da177e2005-04-16 15:20:36 -070028/* 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;
Patrick McHardy59cb5c62007-03-16 01:20:31 -070056 struct qdisc_watchdog watchdog;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Stephen Hemmingerb4076212007-03-22 12:16:21 -070058 psched_tdiff_t latency;
59 psched_tdiff_t jitter;
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 u32 loss;
62 u32 limit;
63 u32 counter;
64 u32 gap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 u32 duplicate;
Stephen Hemminger0dca51d2005-05-26 12:55:48 -070066 u32 reorder;
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -080067 u32 corrupt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69 struct crndstate {
Stephen Hemmingerb4076212007-03-22 12:16:21 -070070 u32 last;
71 u32 rho;
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -080072 } delay_cor, loss_cor, dup_cor, reorder_cor, corrupt_cor;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
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 */
Stephen Hemmingerb4076212007-03-22 12:16:21 -070098static u32 get_crandom(struct crndstate *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099{
100 u64 value, rho;
101 unsigned long answer;
102
Stephen Hemmingerbb2f8cc2007-03-23 00:12:09 -0700103 if (state->rho == 0) /* no correlation */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 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 */
Stephen Hemmingerb4076212007-03-22 12:16:21 -0700117static psched_tdiff_t tabledist(psched_tdiff_t mu, psched_tdiff_t sigma,
118 struct crndstate *state,
119 const struct disttable *dist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{
Stephen Hemmingerb4076212007-03-22 12:16:21 -0700121 psched_tdiff_t x;
122 long t;
123 u32 rnd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125 if (sigma == 0)
126 return mu;
127
128 rnd = get_crandom(state);
129
130 /* default uniform distribution */
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900131 if (dist == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 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
Stephen Hemminger0afb51e2005-05-26 12:53:49 -0700144/*
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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150static int netem_enqueue(struct sk_buff *skb, struct Qdisc *sch)
151{
152 struct netem_sched_data *q = qdisc_priv(sch);
Guillaume Chazarain89e1df72006-07-21 14:45:25 -0700153 /* We don't fill cb now as skb_unshare() may invalidate it */
154 struct netem_skb_cb *cb;
Stephen Hemminger0afb51e2005-05-26 12:53:49 -0700155 struct sk_buff *skb2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 int ret;
Stephen Hemminger0afb51e2005-05-26 12:53:49 -0700157 int count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Stephen Hemminger771018e2005-05-03 16:24:32 -0700159 pr_debug("netem_enqueue skb=%p\n", skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Stephen Hemminger0afb51e2005-05-26 12:53:49 -0700161 /* Random duplication */
162 if (q->duplicate && q->duplicate >= get_crandom(&q->dup_cor))
163 ++count;
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 /* Random packet drop 0 => none, ~0 => all */
Stephen Hemminger0afb51e2005-05-26 12:53:49 -0700166 if (q->loss && q->loss >= get_crandom(&q->loss_cor))
167 --count;
168
169 if (count == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 sch->qstats.drops++;
171 kfree_skb(skb);
Stephen Hemminger89bbb0a32006-04-28 12:11:36 -0700172 return NET_XMIT_BYPASS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 }
174
David S. Miller4e8a5202006-10-22 21:00:33 -0700175 skb_orphan(skb);
176
Stephen Hemminger0afb51e2005-05-26 12:53:49 -0700177 /*
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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Stephen Hemminger0afb51e2005-05-26 12:53:49 -0700187 rootq->enqueue(skb2, rootq);
188 q->duplicate = dupsave;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 }
190
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800191 /*
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))
Patrick McHardy84fa7932006-08-29 16:44:56 -0700199 || (skb->ip_summed == CHECKSUM_PARTIAL
200 && skb_checksum_help(skb))) {
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800201 sch->qstats.drops++;
202 return NET_XMIT_DROP;
203 }
204
205 skb->data[net_random() % skb_headlen(skb)] ^= 1<<(net_random() % 8);
206 }
207
Guillaume Chazarain89e1df72006-07-21 14:45:25 -0700208 cb = (struct netem_skb_cb *)skb->cb;
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700209 if (q->gap == 0 /* not doing reordering */
210 || q->counter < q->gap /* inside last reordering gap */
211 || q->reorder < get_crandom(&q->reorder_cor)) {
Stephen Hemminger0f9f32a2005-05-26 12:55:01 -0700212 psched_time_t now;
Stephen Hemminger07aaa112005-11-03 13:43:07 -0800213 psched_tdiff_t delay;
214
215 delay = tabledist(q->latency, q->jitter,
216 &q->delay_cor, q->delay_dist);
217
Patrick McHardy3bebcda2007-03-23 11:29:25 -0700218 now = psched_get_time();
Patrick McHardy7c59e252007-03-23 11:27:45 -0700219 cb->time_to_send = now + delay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 ++q->counter;
221 ret = q->qdisc->enqueue(skb, q->qdisc);
222 } else {
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900223 /*
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700224 * Do re-ordering by putting one out of N packets at the front
225 * of the queue.
226 */
Patrick McHardy3bebcda2007-03-23 11:29:25 -0700227 cb->time_to_send = psched_get_time();
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700228 q->counter = 0;
Stephen Hemminger0f9f32a2005-05-26 12:55:01 -0700229 ret = q->qdisc->ops->requeue(skb, q->qdisc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 }
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
Stephen Hemmingerd5d75cd2005-05-03 16:24:57 -0700239 pr_debug("netem: enqueue ret %d\n", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 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);
Patrick McHardy6d037a22006-03-20 19:00:49 -0800260 unsigned int len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Patrick McHardy6d037a22006-03-20 19:00:49 -0800262 if (q->qdisc->ops->drop && (len = q->qdisc->ops->drop(q->qdisc)) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 sch->q.qlen--;
264 sch->qstats.drops++;
265 }
266 return len;
267}
268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269static struct sk_buff *netem_dequeue(struct Qdisc *sch)
270{
271 struct netem_sched_data *q = qdisc_priv(sch);
272 struct sk_buff *skb;
273
Stephen Hemminger11274e52007-03-22 12:17:42 -0700274 smp_mb();
275 if (sch->flags & TCQ_F_THROTTLED)
276 return NULL;
277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 skb = q->qdisc->dequeue(q->qdisc);
Stephen Hemminger771018e2005-05-03 16:24:32 -0700279 if (skb) {
Stephen Hemminger0f9f32a2005-05-26 12:55:01 -0700280 const struct netem_skb_cb *cb
281 = (const struct netem_skb_cb *)skb->cb;
Patrick McHardy3bebcda2007-03-23 11:29:25 -0700282 psched_time_t now = psched_get_time();
Stephen Hemminger771018e2005-05-03 16:24:32 -0700283
Stephen Hemminger0f9f32a2005-05-26 12:55:01 -0700284 /* if more time remaining? */
Patrick McHardy104e0872007-03-23 11:28:07 -0700285 if (cb->time_to_send <= now) {
Stephen Hemminger0f9f32a2005-05-26 12:55:01 -0700286 pr_debug("netem_dequeue: return skb=%p\n", skb);
287 sch->q.qlen--;
Stephen Hemminger0f9f32a2005-05-26 12:55:01 -0700288 return skb;
289 }
Stephen Hemminger11274e52007-03-22 12:17:42 -0700290
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);
Stephen Hemminger0f9f32a2005-05-26 12:55:01 -0700299 }
300
301 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302}
303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304static void netem_reset(struct Qdisc *sch)
305{
306 struct netem_sched_data *q = qdisc_priv(sch);
307
308 qdisc_reset(q->qdisc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 sch->q.qlen = 0;
Patrick McHardy59cb5c62007-03-16 01:20:31 -0700310 qdisc_watchdog_cancel(&q->watchdog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311}
312
Stephen Hemminger300ce172005-10-30 13:47:34 -0800313/* Pass size change message down to embedded FIFO */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314static int set_fifo_limit(struct Qdisc *q, int limit)
315{
Patrick McHardy1e904742008-01-22 22:11:17 -0800316 struct nlattr *nla;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 int ret = -ENOMEM;
318
Stephen Hemminger300ce172005-10-30 13:47:34 -0800319 /* Hack to avoid sending change message to non-FIFO */
320 if (strncmp(q->ops->id + 1, "fifo", 4) != 0)
321 return 0;
322
Patrick McHardy1e904742008-01-22 22:11:17 -0800323 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;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900328
Patrick McHardy1e904742008-01-22 22:11:17 -0800329 ret = q->ops->change(q, nla);
330 kfree(nla);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 }
332 return ret;
333}
334
335/*
336 * Distribution data is a variable size payload containing
337 * signed 16 bit values.
338 */
Patrick McHardy1e904742008-01-22 22:11:17 -0800339static int get_dist_table(struct Qdisc *sch, const struct nlattr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340{
341 struct netem_sched_data *q = qdisc_priv(sch);
Patrick McHardy1e904742008-01-22 22:11:17 -0800342 unsigned long n = nla_len(attr)/sizeof(__s16);
343 const __s16 *data = nla_data(attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 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];
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900357
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 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
Patrick McHardy1e904742008-01-22 22:11:17 -0800366static int get_correlation(struct Qdisc *sch, const struct nlattr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367{
368 struct netem_sched_data *q = qdisc_priv(sch);
Patrick McHardy1e904742008-01-22 22:11:17 -0800369 const struct tc_netem_corr *c = nla_data(attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Patrick McHardy1e904742008-01-22 22:11:17 -0800371 if (nla_len(attr) != sizeof(*c))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 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
Patrick McHardy1e904742008-01-22 22:11:17 -0800380static int get_reorder(struct Qdisc *sch, const struct nlattr *attr)
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700381{
382 struct netem_sched_data *q = qdisc_priv(sch);
Patrick McHardy1e904742008-01-22 22:11:17 -0800383 const struct tc_netem_reorder *r = nla_data(attr);
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700384
Patrick McHardy1e904742008-01-22 22:11:17 -0800385 if (nla_len(attr) != sizeof(*r))
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700386 return -EINVAL;
387
388 q->reorder = r->probability;
389 init_crandom(&q->reorder_cor, r->correlation);
390 return 0;
391}
392
Patrick McHardy1e904742008-01-22 22:11:17 -0800393static int get_corrupt(struct Qdisc *sch, const struct nlattr *attr)
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800394{
395 struct netem_sched_data *q = qdisc_priv(sch);
Patrick McHardy1e904742008-01-22 22:11:17 -0800396 const struct tc_netem_corrupt *r = nla_data(attr);
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800397
Patrick McHardy1e904742008-01-22 22:11:17 -0800398 if (nla_len(attr) != sizeof(*r))
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800399 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 */
Patrick McHardy1e904742008-01-22 22:11:17 -0800407static int netem_change(struct Qdisc *sch, struct nlattr *opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408{
409 struct netem_sched_data *q = qdisc_priv(sch);
410 struct tc_netem_qopt *qopt;
411 int ret;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900412
Patrick McHardy1e904742008-01-22 22:11:17 -0800413 if (opt == NULL || nla_len(opt) < sizeof(*qopt))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 return -EINVAL;
415
Patrick McHardy1e904742008-01-22 22:11:17 -0800416 qopt = nla_data(opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 ret = set_fifo_limit(q->qdisc, qopt->limit);
418 if (ret) {
419 pr_debug("netem: can't set fifo limit\n");
420 return ret;
421 }
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900422
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 q->latency = qopt->latency;
424 q->jitter = qopt->jitter;
425 q->limit = qopt->limit;
426 q->gap = qopt->gap;
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700427 q->counter = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 q->loss = qopt->loss;
429 q->duplicate = qopt->duplicate;
430
Stephen Hemmingerbb2f8cc2007-03-23 00:12:09 -0700431 /* for compatibility with earlier versions.
432 * if gap is set, need to assume 100% probability
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700433 */
Stephen Hemmingera362e0a2007-03-22 12:15:45 -0700434 if (q->gap)
435 q->reorder = ~0;
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700436
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 /* Handle nested options after initial queue options.
438 * Should have put all options in nested format but too late now.
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900439 */
Patrick McHardy1e904742008-01-22 22:11:17 -0800440 if (nla_len(opt) > sizeof(*qopt)) {
441 struct nlattr *tb[TCA_NETEM_MAX + 1];
442 if (nla_parse(tb, TCA_NETEM_MAX,
443 nla_data(opt) + sizeof(*qopt),
444 nla_len(opt) - sizeof(*qopt), NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 return -EINVAL;
446
Patrick McHardy1e904742008-01-22 22:11:17 -0800447 if (tb[TCA_NETEM_CORR]) {
448 ret = get_correlation(sch, tb[TCA_NETEM_CORR]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 if (ret)
450 return ret;
451 }
452
Patrick McHardy1e904742008-01-22 22:11:17 -0800453 if (tb[TCA_NETEM_DELAY_DIST]) {
454 ret = get_dist_table(sch, tb[TCA_NETEM_DELAY_DIST]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 if (ret)
456 return ret;
457 }
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800458
Patrick McHardy1e904742008-01-22 22:11:17 -0800459 if (tb[TCA_NETEM_REORDER]) {
460 ret = get_reorder(sch, tb[TCA_NETEM_REORDER]);
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700461 if (ret)
462 return ret;
463 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Patrick McHardy1e904742008-01-22 22:11:17 -0800465 if (tb[TCA_NETEM_CORRUPT]) {
466 ret = get_corrupt(sch, tb[TCA_NETEM_CORRUPT]);
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800467 if (ret)
468 return ret;
469 }
470 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
472 return 0;
473}
474
Stephen Hemminger300ce172005-10-30 13:47:34 -0800475/*
476 * Special case version of FIFO queue for use by netem.
477 * It queues in order based on timestamps in skb's
478 */
479struct fifo_sched_data {
480 u32 limit;
Stephen Hemminger075aa572007-03-22 12:17:05 -0700481 psched_time_t oldest;
Stephen Hemminger300ce172005-10-30 13:47:34 -0800482};
483
484static int tfifo_enqueue(struct sk_buff *nskb, struct Qdisc *sch)
485{
486 struct fifo_sched_data *q = qdisc_priv(sch);
487 struct sk_buff_head *list = &sch->q;
Stephen Hemminger075aa572007-03-22 12:17:05 -0700488 psched_time_t tnext = ((struct netem_skb_cb *)nskb->cb)->time_to_send;
Stephen Hemminger300ce172005-10-30 13:47:34 -0800489 struct sk_buff *skb;
490
491 if (likely(skb_queue_len(list) < q->limit)) {
Stephen Hemminger075aa572007-03-22 12:17:05 -0700492 /* Optimize for add at tail */
Patrick McHardy104e0872007-03-23 11:28:07 -0700493 if (likely(skb_queue_empty(list) || tnext >= q->oldest)) {
Stephen Hemminger075aa572007-03-22 12:17:05 -0700494 q->oldest = tnext;
495 return qdisc_enqueue_tail(nskb, sch);
496 }
497
Stephen Hemminger300ce172005-10-30 13:47:34 -0800498 skb_queue_reverse_walk(list, skb) {
499 const struct netem_skb_cb *cb
500 = (const struct netem_skb_cb *)skb->cb;
501
Patrick McHardy104e0872007-03-23 11:28:07 -0700502 if (tnext >= cb->time_to_send)
Stephen Hemminger300ce172005-10-30 13:47:34 -0800503 break;
504 }
505
506 __skb_queue_after(list, skb, nskb);
507
508 sch->qstats.backlog += nskb->len;
509 sch->bstats.bytes += nskb->len;
510 sch->bstats.packets++;
511
512 return NET_XMIT_SUCCESS;
513 }
514
Stephen Hemminger075aa572007-03-22 12:17:05 -0700515 return qdisc_reshape_fail(nskb, sch);
Stephen Hemminger300ce172005-10-30 13:47:34 -0800516}
517
Patrick McHardy1e904742008-01-22 22:11:17 -0800518static int tfifo_init(struct Qdisc *sch, struct nlattr *opt)
Stephen Hemminger300ce172005-10-30 13:47:34 -0800519{
520 struct fifo_sched_data *q = qdisc_priv(sch);
521
522 if (opt) {
Patrick McHardy1e904742008-01-22 22:11:17 -0800523 struct tc_fifo_qopt *ctl = nla_data(opt);
524 if (nla_len(opt) < sizeof(*ctl))
Stephen Hemminger300ce172005-10-30 13:47:34 -0800525 return -EINVAL;
526
527 q->limit = ctl->limit;
528 } else
529 q->limit = max_t(u32, sch->dev->tx_queue_len, 1);
530
Patrick McHardya0849802007-03-23 11:28:30 -0700531 q->oldest = PSCHED_PASTPERFECT;
Stephen Hemminger300ce172005-10-30 13:47:34 -0800532 return 0;
533}
534
535static int tfifo_dump(struct Qdisc *sch, struct sk_buff *skb)
536{
537 struct fifo_sched_data *q = qdisc_priv(sch);
538 struct tc_fifo_qopt opt = { .limit = q->limit };
539
Patrick McHardy1e904742008-01-22 22:11:17 -0800540 NLA_PUT(skb, TCA_OPTIONS, sizeof(opt), &opt);
Stephen Hemminger300ce172005-10-30 13:47:34 -0800541 return skb->len;
542
Patrick McHardy1e904742008-01-22 22:11:17 -0800543nla_put_failure:
Stephen Hemminger300ce172005-10-30 13:47:34 -0800544 return -1;
545}
546
Eric Dumazet20fea082007-11-14 01:44:41 -0800547static struct Qdisc_ops tfifo_qdisc_ops __read_mostly = {
Stephen Hemminger300ce172005-10-30 13:47:34 -0800548 .id = "tfifo",
549 .priv_size = sizeof(struct fifo_sched_data),
550 .enqueue = tfifo_enqueue,
551 .dequeue = qdisc_dequeue_head,
552 .requeue = qdisc_requeue,
553 .drop = qdisc_queue_drop,
554 .init = tfifo_init,
555 .reset = qdisc_reset_queue,
556 .change = tfifo_init,
557 .dump = tfifo_dump,
558};
559
Patrick McHardy1e904742008-01-22 22:11:17 -0800560static int netem_init(struct Qdisc *sch, struct nlattr *opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561{
562 struct netem_sched_data *q = qdisc_priv(sch);
563 int ret;
564
565 if (!opt)
566 return -EINVAL;
567
Patrick McHardy59cb5c62007-03-16 01:20:31 -0700568 qdisc_watchdog_init(&q->watchdog, sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Patrick McHardy9f9afec2006-11-29 17:35:18 -0800570 q->qdisc = qdisc_create_dflt(sch->dev, &tfifo_qdisc_ops,
571 TC_H_MAKE(sch->handle, 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 if (!q->qdisc) {
573 pr_debug("netem: qdisc create failed\n");
574 return -ENOMEM;
575 }
576
577 ret = netem_change(sch, opt);
578 if (ret) {
579 pr_debug("netem: change failed\n");
580 qdisc_destroy(q->qdisc);
581 }
582 return ret;
583}
584
585static void netem_destroy(struct Qdisc *sch)
586{
587 struct netem_sched_data *q = qdisc_priv(sch);
588
Patrick McHardy59cb5c62007-03-16 01:20:31 -0700589 qdisc_watchdog_cancel(&q->watchdog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 qdisc_destroy(q->qdisc);
591 kfree(q->delay_dist);
592}
593
594static int netem_dump(struct Qdisc *sch, struct sk_buff *skb)
595{
596 const struct netem_sched_data *q = qdisc_priv(sch);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700597 unsigned char *b = skb_tail_pointer(skb);
Patrick McHardy1e904742008-01-22 22:11:17 -0800598 struct nlattr *nla = (struct nlattr *) b;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 struct tc_netem_qopt qopt;
600 struct tc_netem_corr cor;
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700601 struct tc_netem_reorder reorder;
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800602 struct tc_netem_corrupt corrupt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
604 qopt.latency = q->latency;
605 qopt.jitter = q->jitter;
606 qopt.limit = q->limit;
607 qopt.loss = q->loss;
608 qopt.gap = q->gap;
609 qopt.duplicate = q->duplicate;
Patrick McHardy1e904742008-01-22 22:11:17 -0800610 NLA_PUT(skb, TCA_OPTIONS, sizeof(qopt), &qopt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
612 cor.delay_corr = q->delay_cor.rho;
613 cor.loss_corr = q->loss_cor.rho;
614 cor.dup_corr = q->dup_cor.rho;
Patrick McHardy1e904742008-01-22 22:11:17 -0800615 NLA_PUT(skb, TCA_NETEM_CORR, sizeof(cor), &cor);
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700616
617 reorder.probability = q->reorder;
618 reorder.correlation = q->reorder_cor.rho;
Patrick McHardy1e904742008-01-22 22:11:17 -0800619 NLA_PUT(skb, TCA_NETEM_REORDER, sizeof(reorder), &reorder);
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700620
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800621 corrupt.probability = q->corrupt;
622 corrupt.correlation = q->corrupt_cor.rho;
Patrick McHardy1e904742008-01-22 22:11:17 -0800623 NLA_PUT(skb, TCA_NETEM_CORRUPT, sizeof(corrupt), &corrupt);
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800624
Patrick McHardy1e904742008-01-22 22:11:17 -0800625 nla->nla_len = skb_tail_pointer(skb) - b;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
627 return skb->len;
628
Patrick McHardy1e904742008-01-22 22:11:17 -0800629nla_put_failure:
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -0700630 nlmsg_trim(skb, b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 return -1;
632}
633
634static int netem_dump_class(struct Qdisc *sch, unsigned long cl,
635 struct sk_buff *skb, struct tcmsg *tcm)
636{
637 struct netem_sched_data *q = qdisc_priv(sch);
638
639 if (cl != 1) /* only one class */
640 return -ENOENT;
641
642 tcm->tcm_handle |= TC_H_MIN(1);
643 tcm->tcm_info = q->qdisc->handle;
644
645 return 0;
646}
647
648static int netem_graft(struct Qdisc *sch, unsigned long arg, struct Qdisc *new,
649 struct Qdisc **old)
650{
651 struct netem_sched_data *q = qdisc_priv(sch);
652
653 if (new == NULL)
654 new = &noop_qdisc;
655
656 sch_tree_lock(sch);
657 *old = xchg(&q->qdisc, new);
Patrick McHardy5e50da02006-11-29 17:36:20 -0800658 qdisc_tree_decrease_qlen(*old, (*old)->q.qlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 qdisc_reset(*old);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 sch_tree_unlock(sch);
661
662 return 0;
663}
664
665static struct Qdisc *netem_leaf(struct Qdisc *sch, unsigned long arg)
666{
667 struct netem_sched_data *q = qdisc_priv(sch);
668 return q->qdisc;
669}
670
671static unsigned long netem_get(struct Qdisc *sch, u32 classid)
672{
673 return 1;
674}
675
676static void netem_put(struct Qdisc *sch, unsigned long arg)
677{
678}
679
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900680static int netem_change_class(struct Qdisc *sch, u32 classid, u32 parentid,
Patrick McHardy1e904742008-01-22 22:11:17 -0800681 struct nlattr **tca, unsigned long *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682{
683 return -ENOSYS;
684}
685
686static int netem_delete(struct Qdisc *sch, unsigned long arg)
687{
688 return -ENOSYS;
689}
690
691static void netem_walk(struct Qdisc *sch, struct qdisc_walker *walker)
692{
693 if (!walker->stop) {
694 if (walker->count >= walker->skip)
695 if (walker->fn(sch, 1, walker) < 0) {
696 walker->stop = 1;
697 return;
698 }
699 walker->count++;
700 }
701}
702
703static struct tcf_proto **netem_find_tcf(struct Qdisc *sch, unsigned long cl)
704{
705 return NULL;
706}
707
Eric Dumazet20fea082007-11-14 01:44:41 -0800708static const struct Qdisc_class_ops netem_class_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 .graft = netem_graft,
710 .leaf = netem_leaf,
711 .get = netem_get,
712 .put = netem_put,
713 .change = netem_change_class,
714 .delete = netem_delete,
715 .walk = netem_walk,
716 .tcf_chain = netem_find_tcf,
717 .dump = netem_dump_class,
718};
719
Eric Dumazet20fea082007-11-14 01:44:41 -0800720static struct Qdisc_ops netem_qdisc_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 .id = "netem",
722 .cl_ops = &netem_class_ops,
723 .priv_size = sizeof(struct netem_sched_data),
724 .enqueue = netem_enqueue,
725 .dequeue = netem_dequeue,
726 .requeue = netem_requeue,
727 .drop = netem_drop,
728 .init = netem_init,
729 .reset = netem_reset,
730 .destroy = netem_destroy,
731 .change = netem_change,
732 .dump = netem_dump,
733 .owner = THIS_MODULE,
734};
735
736
737static int __init netem_module_init(void)
738{
Stephen Hemmingereb229c42005-11-03 13:49:01 -0800739 pr_info("netem: version " VERSION "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 return register_qdisc(&netem_qdisc_ops);
741}
742static void __exit netem_module_exit(void)
743{
744 unregister_qdisc(&netem_qdisc_ops);
745}
746module_init(netem_module_init)
747module_exit(netem_module_exit)
748MODULE_LICENSE("GPL");