blob: f176890eeef00537c31ea88355de99a6095b4786 [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>
22#include <linux/rtnetlink.h>
23
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -070024#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <net/pkt_sched.h>
26
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -080027#define VERSION "1.2"
Stephen Hemmingereb229c42005-11-03 13:49:01 -080028
Linus Torvalds1da177e2005-04-16 15:20:36 -070029/* 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070050*/
51
52struct netem_sched_data {
53 struct Qdisc *qdisc;
Patrick McHardy59cb5c62007-03-16 01:20:31 -070054 struct qdisc_watchdog watchdog;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Stephen Hemmingerb4076212007-03-22 12:16:21 -070056 psched_tdiff_t latency;
57 psched_tdiff_t jitter;
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 u32 loss;
60 u32 limit;
61 u32 counter;
62 u32 gap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 u32 duplicate;
Stephen Hemminger0dca51d2005-05-26 12:55:48 -070064 u32 reorder;
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -080065 u32 corrupt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67 struct crndstate {
Stephen Hemmingerb4076212007-03-22 12:16:21 -070068 u32 last;
69 u32 rho;
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -080070 } delay_cor, loss_cor, dup_cor, reorder_cor, corrupt_cor;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
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
Jussi Kivilinna5f861732008-07-20 00:08:04 -070083static inline struct netem_skb_cb *netem_skb_cb(struct sk_buff *skb)
84{
Jussi Kivilinna175f9c12008-07-20 00:08:47 -070085 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;
Jussi Kivilinna5f861732008-07-20 00:08:04 -070088}
89
Linus Torvalds1da177e2005-04-16 15:20:36 -070090/* 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 */
Stephen Hemmingerb4076212007-03-22 12:16:21 -0700103static u32 get_crandom(struct crndstate *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104{
105 u64 value, rho;
106 unsigned long answer;
107
Stephen Hemmingerbb2f8cc2007-03-23 00:12:09 -0700108 if (state->rho == 0) /* no correlation */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 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 */
Stephen Hemmingerb4076212007-03-22 12:16:21 -0700122static psched_tdiff_t tabledist(psched_tdiff_t mu, psched_tdiff_t sigma,
123 struct crndstate *state,
124 const struct disttable *dist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125{
Stephen Hemmingerb4076212007-03-22 12:16:21 -0700126 psched_tdiff_t x;
127 long t;
128 u32 rnd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130 if (sigma == 0)
131 return mu;
132
133 rnd = get_crandom(state);
134
135 /* default uniform distribution */
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900136 if (dist == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 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
Stephen Hemminger0afb51e2005-05-26 12:53:49 -0700149/*
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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155static int netem_enqueue(struct sk_buff *skb, struct Qdisc *sch)
156{
157 struct netem_sched_data *q = qdisc_priv(sch);
Guillaume Chazarain89e1df72006-07-21 14:45:25 -0700158 /* We don't fill cb now as skb_unshare() may invalidate it */
159 struct netem_skb_cb *cb;
Stephen Hemminger0afb51e2005-05-26 12:53:49 -0700160 struct sk_buff *skb2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 int ret;
Stephen Hemminger0afb51e2005-05-26 12:53:49 -0700162 int count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Stephen Hemminger771018e2005-05-03 16:24:32 -0700164 pr_debug("netem_enqueue skb=%p\n", skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Stephen Hemminger0afb51e2005-05-26 12:53:49 -0700166 /* Random duplication */
167 if (q->duplicate && q->duplicate >= get_crandom(&q->dup_cor))
168 ++count;
169
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 /* Random packet drop 0 => none, ~0 => all */
Stephen Hemminger0afb51e2005-05-26 12:53:49 -0700171 if (q->loss && q->loss >= get_crandom(&q->loss_cor))
172 --count;
173
174 if (count == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 sch->qstats.drops++;
176 kfree_skb(skb);
Jarek Poplawskic27f3392008-08-04 22:39:11 -0700177 return NET_XMIT_SUCCESS | __NET_XMIT_BYPASS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 }
179
David S. Miller4e8a5202006-10-22 21:00:33 -0700180 skb_orphan(skb);
181
Stephen Hemminger0afb51e2005-05-26 12:53:49 -0700182 /*
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) {
David S. Miller7698b4f2008-07-16 01:42:40 -0700188 struct Qdisc *rootq = qdisc_root(sch);
Stephen Hemminger0afb51e2005-05-26 12:53:49 -0700189 u32 dupsave = q->duplicate; /* prevent duplicating a dup... */
190 q->duplicate = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Jussi Kivilinna5f861732008-07-20 00:08:04 -0700192 qdisc_enqueue_root(skb2, rootq);
Stephen Hemminger0afb51e2005-05-26 12:53:49 -0700193 q->duplicate = dupsave;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 }
195
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800196 /*
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)) {
Joe Perchesf64f9e72009-11-29 16:55:45 -0800203 if (!(skb = skb_unshare(skb, GFP_ATOMIC)) ||
204 (skb->ip_summed == CHECKSUM_PARTIAL &&
205 skb_checksum_help(skb))) {
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800206 sch->qstats.drops++;
207 return NET_XMIT_DROP;
208 }
209
210 skb->data[net_random() % skb_headlen(skb)] ^= 1<<(net_random() % 8);
211 }
212
Jussi Kivilinna5f861732008-07-20 00:08:04 -0700213 cb = netem_skb_cb(skb);
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000214 if (q->gap == 0 || /* not doing reordering */
215 q->counter < q->gap || /* inside last reordering gap */
Joe Perchesf64f9e72009-11-29 16:55:45 -0800216 q->reorder < get_crandom(&q->reorder_cor)) {
Stephen Hemminger0f9f32a2005-05-26 12:55:01 -0700217 psched_time_t now;
Stephen Hemminger07aaa112005-11-03 13:43:07 -0800218 psched_tdiff_t delay;
219
220 delay = tabledist(q->latency, q->jitter,
221 &q->delay_cor, q->delay_dist);
222
Patrick McHardy3bebcda2007-03-23 11:29:25 -0700223 now = psched_get_time();
Patrick McHardy7c59e252007-03-23 11:27:45 -0700224 cb->time_to_send = now + delay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 ++q->counter;
Jussi Kivilinna5f861732008-07-20 00:08:04 -0700226 ret = qdisc_enqueue(skb, q->qdisc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 } else {
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900228 /*
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700229 * Do re-ordering by putting one out of N packets at the front
230 * of the queue.
231 */
Patrick McHardy3bebcda2007-03-23 11:29:25 -0700232 cb->time_to_send = psched_get_time();
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700233 q->counter = 0;
Jarek Poplawski8ba25da2008-11-02 00:36:03 -0700234
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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 }
240
stephen hemminger10f6dfc2011-02-23 13:04:20 +0000241 if (ret != NET_XMIT_SUCCESS) {
242 if (net_xmit_drop_count(ret)) {
243 sch->qstats.drops++;
244 return ret;
245 }
Jarek Poplawski378a2f02008-08-04 22:31:03 -0700246 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
stephen hemminger10f6dfc2011-02-23 13:04:20 +0000248 sch->q.qlen++;
249 return NET_XMIT_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250}
251
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000252static unsigned int netem_drop(struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
254 struct netem_sched_data *q = qdisc_priv(sch);
Patrick McHardy6d037a22006-03-20 19:00:49 -0800255 unsigned int len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Patrick McHardy6d037a22006-03-20 19:00:49 -0800257 if (q->qdisc->ops->drop && (len = q->qdisc->ops->drop(q->qdisc)) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 sch->q.qlen--;
259 sch->qstats.drops++;
260 }
261 return len;
262}
263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264static struct sk_buff *netem_dequeue(struct Qdisc *sch)
265{
266 struct netem_sched_data *q = qdisc_priv(sch);
267 struct sk_buff *skb;
268
Eric Dumazetfd245a42011-01-20 05:27:16 +0000269 if (qdisc_is_throttled(sch))
Stephen Hemminger11274e52007-03-22 12:17:42 -0700270 return NULL;
271
Jarek Poplawski03c05f02008-10-31 00:46:19 -0700272 skb = q->qdisc->ops->peek(q->qdisc);
Stephen Hemminger771018e2005-05-03 16:24:32 -0700273 if (skb) {
Jussi Kivilinna5f861732008-07-20 00:08:04 -0700274 const struct netem_skb_cb *cb = netem_skb_cb(skb);
Patrick McHardy3bebcda2007-03-23 11:29:25 -0700275 psched_time_t now = psched_get_time();
Stephen Hemminger771018e2005-05-03 16:24:32 -0700276
Stephen Hemminger0f9f32a2005-05-26 12:55:01 -0700277 /* if more time remaining? */
Patrick McHardy104e0872007-03-23 11:28:07 -0700278 if (cb->time_to_send <= now) {
Jarek Poplawski77be1552008-10-31 00:47:01 -0700279 skb = qdisc_dequeue_peeked(q->qdisc);
280 if (unlikely(!skb))
Jarek Poplawski03c05f02008-10-31 00:46:19 -0700281 return NULL;
282
Jarek Poplawski8caf1532009-04-17 10:08:49 +0000283#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
stephen hemminger10f6dfc2011-02-23 13:04:20 +0000291
Stephen Hemminger0f9f32a2005-05-26 12:55:01 -0700292 sch->q.qlen--;
stephen hemminger10f6dfc2011-02-23 13:04:20 +0000293 qdisc_unthrottled(sch);
294 qdisc_bstats_update(sch, skb);
Stephen Hemminger0f9f32a2005-05-26 12:55:01 -0700295 return skb;
296 }
Stephen Hemminger11274e52007-03-22 12:17:42 -0700297
Stephen Hemminger11274e52007-03-22 12:17:42 -0700298 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 hemminger6373a9a2011-02-23 13:04:18 +0000313static 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323/*
324 * Distribution data is a variable size payload containing
325 * signed 16 bit values.
326 */
Patrick McHardy1e904742008-01-22 22:11:17 -0800327static int get_dist_table(struct Qdisc *sch, const struct nlattr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
329 struct netem_sched_data *q = qdisc_priv(sch);
stephen hemminger6373a9a2011-02-23 13:04:18 +0000330 size_t n = nla_len(attr)/sizeof(__s16);
Patrick McHardy1e904742008-01-22 22:11:17 -0800331 const __s16 *data = nla_data(attr);
David S. Miller7698b4f2008-07-16 01:42:40 -0700332 spinlock_t *root_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 struct disttable *d;
334 int i;
stephen hemminger6373a9a2011-02-23 13:04:18 +0000335 size_t s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
stephen hemmingerdf173bd2011-02-23 13:04:19 +0000337 if (n > NETEM_DIST_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 return -EINVAL;
339
stephen hemminger6373a9a2011-02-23 13:04:18 +0000340 s = sizeof(struct disttable) + n * sizeof(s16);
341 d = kmalloc(s, GFP_KERNEL);
342 if (!d)
343 d = vmalloc(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 if (!d)
345 return -ENOMEM;
346
347 d->size = n;
348 for (i = 0; i < n; i++)
349 d->table[i] = data[i];
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900350
Jarek Poplawski102396a2008-08-29 14:21:52 -0700351 root_lock = qdisc_root_sleeping_lock(sch);
David S. Miller7698b4f2008-07-16 01:42:40 -0700352
353 spin_lock_bh(root_lock);
stephen hemminger6373a9a2011-02-23 13:04:18 +0000354 dist_free(q->delay_dist);
Patrick McHardyb94c8af2008-11-20 04:11:36 -0800355 q->delay_dist = d;
David S. Miller7698b4f2008-07-16 01:42:40 -0700356 spin_unlock_bh(root_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 return 0;
358}
359
Stephen Hemminger265eb672008-11-03 21:13:26 -0800360static void get_correlation(struct Qdisc *sch, const struct nlattr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
362 struct netem_sched_data *q = qdisc_priv(sch);
Patrick McHardy1e904742008-01-22 22:11:17 -0800363 const struct tc_netem_corr *c = nla_data(attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368}
369
Stephen Hemminger265eb672008-11-03 21:13:26 -0800370static void get_reorder(struct Qdisc *sch, const struct nlattr *attr)
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700371{
372 struct netem_sched_data *q = qdisc_priv(sch);
Patrick McHardy1e904742008-01-22 22:11:17 -0800373 const struct tc_netem_reorder *r = nla_data(attr);
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700374
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700375 q->reorder = r->probability;
376 init_crandom(&q->reorder_cor, r->correlation);
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700377}
378
Stephen Hemminger265eb672008-11-03 21:13:26 -0800379static void get_corrupt(struct Qdisc *sch, const struct nlattr *attr)
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800380{
381 struct netem_sched_data *q = qdisc_priv(sch);
Patrick McHardy1e904742008-01-22 22:11:17 -0800382 const struct tc_netem_corrupt *r = nla_data(attr);
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800383
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800384 q->corrupt = r->probability;
385 init_crandom(&q->corrupt_cor, r->correlation);
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800386}
387
Patrick McHardy27a34212008-01-23 20:35:39 -0800388static 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
Thomas Graf2c10b322008-09-02 17:30:27 -0700394static 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
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800408/* Parse netlink message to set options */
Patrick McHardy1e904742008-01-22 22:11:17 -0800409static int netem_change(struct Qdisc *sch, struct nlattr *opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410{
411 struct netem_sched_data *q = qdisc_priv(sch);
Patrick McHardyb03f4672008-01-23 20:32:21 -0800412 struct nlattr *tb[TCA_NETEM_MAX + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 struct tc_netem_qopt *qopt;
414 int ret;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900415
Patrick McHardyb03f4672008-01-23 20:32:21 -0800416 if (opt == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 return -EINVAL;
418
Thomas Graf2c10b322008-09-02 17:30:27 -0700419 qopt = nla_data(opt);
420 ret = parse_attr(tb, TCA_NETEM_MAX, opt, netem_policy, sizeof(*qopt));
Patrick McHardyb03f4672008-01-23 20:32:21 -0800421 if (ret < 0)
422 return ret;
423
Patrick McHardyfb0305c2008-07-05 23:40:21 -0700424 ret = fifo_set_limit(q->qdisc, qopt->limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 if (ret) {
426 pr_debug("netem: can't set fifo limit\n");
427 return ret;
428 }
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 q->latency = qopt->latency;
431 q->jitter = qopt->jitter;
432 q->limit = qopt->limit;
433 q->gap = qopt->gap;
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700434 q->counter = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 q->loss = qopt->loss;
436 q->duplicate = qopt->duplicate;
437
Stephen Hemmingerbb2f8cc2007-03-23 00:12:09 -0700438 /* for compatibility with earlier versions.
439 * if gap is set, need to assume 100% probability
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700440 */
Stephen Hemmingera362e0a2007-03-22 12:15:45 -0700441 if (q->gap)
442 q->reorder = ~0;
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700443
Stephen Hemminger265eb672008-11-03 21:13:26 -0800444 if (tb[TCA_NETEM_CORR])
445 get_correlation(sch, tb[TCA_NETEM_CORR]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
Patrick McHardyb03f4672008-01-23 20:32:21 -0800447 if (tb[TCA_NETEM_DELAY_DIST]) {
448 ret = get_dist_table(sch, tb[TCA_NETEM_DELAY_DIST]);
449 if (ret)
450 return ret;
451 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Stephen Hemminger265eb672008-11-03 21:13:26 -0800453 if (tb[TCA_NETEM_REORDER])
454 get_reorder(sch, tb[TCA_NETEM_REORDER]);
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800455
Stephen Hemminger265eb672008-11-03 21:13:26 -0800456 if (tb[TCA_NETEM_CORRUPT])
457 get_corrupt(sch, tb[TCA_NETEM_CORRUPT]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
459 return 0;
460}
461
Stephen Hemminger300ce172005-10-30 13:47:34 -0800462/*
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;
Stephen Hemminger075aa572007-03-22 12:17:05 -0700468 psched_time_t oldest;
Stephen Hemminger300ce172005-10-30 13:47:34 -0800469};
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;
Jussi Kivilinna5f861732008-07-20 00:08:04 -0700475 psched_time_t tnext = netem_skb_cb(nskb)->time_to_send;
Stephen Hemminger300ce172005-10-30 13:47:34 -0800476 struct sk_buff *skb;
477
478 if (likely(skb_queue_len(list) < q->limit)) {
Stephen Hemminger075aa572007-03-22 12:17:05 -0700479 /* Optimize for add at tail */
Patrick McHardy104e0872007-03-23 11:28:07 -0700480 if (likely(skb_queue_empty(list) || tnext >= q->oldest)) {
Stephen Hemminger075aa572007-03-22 12:17:05 -0700481 q->oldest = tnext;
482 return qdisc_enqueue_tail(nskb, sch);
483 }
484
Stephen Hemminger300ce172005-10-30 13:47:34 -0800485 skb_queue_reverse_walk(list, skb) {
Jussi Kivilinna5f861732008-07-20 00:08:04 -0700486 const struct netem_skb_cb *cb = netem_skb_cb(skb);
Stephen Hemminger300ce172005-10-30 13:47:34 -0800487
Patrick McHardy104e0872007-03-23 11:28:07 -0700488 if (tnext >= cb->time_to_send)
Stephen Hemminger300ce172005-10-30 13:47:34 -0800489 break;
490 }
491
492 __skb_queue_after(list, skb, nskb);
493
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700494 sch->qstats.backlog += qdisc_pkt_len(nskb);
Stephen Hemminger300ce172005-10-30 13:47:34 -0800495
496 return NET_XMIT_SUCCESS;
497 }
498
Stephen Hemminger075aa572007-03-22 12:17:05 -0700499 return qdisc_reshape_fail(nskb, sch);
Stephen Hemminger300ce172005-10-30 13:47:34 -0800500}
501
Patrick McHardy1e904742008-01-22 22:11:17 -0800502static int tfifo_init(struct Qdisc *sch, struct nlattr *opt)
Stephen Hemminger300ce172005-10-30 13:47:34 -0800503{
504 struct fifo_sched_data *q = qdisc_priv(sch);
505
506 if (opt) {
Patrick McHardy1e904742008-01-22 22:11:17 -0800507 struct tc_fifo_qopt *ctl = nla_data(opt);
508 if (nla_len(opt) < sizeof(*ctl))
Stephen Hemminger300ce172005-10-30 13:47:34 -0800509 return -EINVAL;
510
511 q->limit = ctl->limit;
512 } else
David S. Miller5ce2d482008-07-08 17:06:30 -0700513 q->limit = max_t(u32, qdisc_dev(sch)->tx_queue_len, 1);
Stephen Hemminger300ce172005-10-30 13:47:34 -0800514
Patrick McHardya0849802007-03-23 11:28:30 -0700515 q->oldest = PSCHED_PASTPERFECT;
Stephen Hemminger300ce172005-10-30 13:47:34 -0800516 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
Patrick McHardy1e904742008-01-22 22:11:17 -0800524 NLA_PUT(skb, TCA_OPTIONS, sizeof(opt), &opt);
Stephen Hemminger300ce172005-10-30 13:47:34 -0800525 return skb->len;
526
Patrick McHardy1e904742008-01-22 22:11:17 -0800527nla_put_failure:
Stephen Hemminger300ce172005-10-30 13:47:34 -0800528 return -1;
529}
530
Eric Dumazet20fea082007-11-14 01:44:41 -0800531static struct Qdisc_ops tfifo_qdisc_ops __read_mostly = {
Stephen Hemminger300ce172005-10-30 13:47:34 -0800532 .id = "tfifo",
533 .priv_size = sizeof(struct fifo_sched_data),
534 .enqueue = tfifo_enqueue,
535 .dequeue = qdisc_dequeue_head,
Jarek Poplawski8e3af972008-10-31 00:45:55 -0700536 .peek = qdisc_peek_head,
Stephen Hemminger300ce172005-10-30 13:47:34 -0800537 .drop = qdisc_queue_drop,
538 .init = tfifo_init,
539 .reset = qdisc_reset_queue,
540 .change = tfifo_init,
541 .dump = tfifo_dump,
542};
543
Patrick McHardy1e904742008-01-22 22:11:17 -0800544static int netem_init(struct Qdisc *sch, struct nlattr *opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545{
546 struct netem_sched_data *q = qdisc_priv(sch);
547 int ret;
548
549 if (!opt)
550 return -EINVAL;
551
Patrick McHardy59cb5c62007-03-16 01:20:31 -0700552 qdisc_watchdog_init(&q->watchdog, sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Changli Gao3511c912010-10-16 13:04:08 +0000554 q->qdisc = qdisc_create_dflt(sch->dev_queue, &tfifo_qdisc_ops,
Patrick McHardy9f9afec2006-11-29 17:35:18 -0800555 TC_H_MAKE(sch->handle, 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 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
Patrick McHardy59cb5c62007-03-16 01:20:31 -0700573 qdisc_watchdog_cancel(&q->watchdog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 qdisc_destroy(q->qdisc);
stephen hemminger6373a9a2011-02-23 13:04:18 +0000575 dist_free(q->delay_dist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576}
577
578static int netem_dump(struct Qdisc *sch, struct sk_buff *skb)
579{
580 const struct netem_sched_data *q = qdisc_priv(sch);
stephen hemminger861d7f72011-02-23 13:04:17 +0000581 struct nlattr *nla = (struct nlattr *) skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 struct tc_netem_qopt qopt;
583 struct tc_netem_corr cor;
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700584 struct tc_netem_reorder reorder;
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800585 struct tc_netem_corrupt corrupt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
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;
Patrick McHardy1e904742008-01-22 22:11:17 -0800593 NLA_PUT(skb, TCA_OPTIONS, sizeof(qopt), &qopt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
595 cor.delay_corr = q->delay_cor.rho;
596 cor.loss_corr = q->loss_cor.rho;
597 cor.dup_corr = q->dup_cor.rho;
Patrick McHardy1e904742008-01-22 22:11:17 -0800598 NLA_PUT(skb, TCA_NETEM_CORR, sizeof(cor), &cor);
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700599
600 reorder.probability = q->reorder;
601 reorder.correlation = q->reorder_cor.rho;
Patrick McHardy1e904742008-01-22 22:11:17 -0800602 NLA_PUT(skb, TCA_NETEM_REORDER, sizeof(reorder), &reorder);
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700603
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800604 corrupt.probability = q->corrupt;
605 corrupt.correlation = q->corrupt_cor.rho;
Patrick McHardy1e904742008-01-22 22:11:17 -0800606 NLA_PUT(skb, TCA_NETEM_CORRUPT, sizeof(corrupt), &corrupt);
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800607
stephen hemminger861d7f72011-02-23 13:04:17 +0000608 return nla_nest_end(skb, nla);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Patrick McHardy1e904742008-01-22 22:11:17 -0800610nla_put_failure:
stephen hemminger861d7f72011-02-23 13:04:17 +0000611 nlmsg_trim(skb, nla);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 return -1;
613}
614
stephen hemminger10f6dfc2011-02-23 13:04:20 +0000615static 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
Eric Dumazet20fea082007-11-14 01:44:41 -0800683static struct Qdisc_ops netem_qdisc_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 .id = "netem",
stephen hemminger10f6dfc2011-02-23 13:04:20 +0000685 .cl_ops = &netem_class_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 .priv_size = sizeof(struct netem_sched_data),
687 .enqueue = netem_enqueue,
688 .dequeue = netem_dequeue,
Jarek Poplawski77be1552008-10-31 00:47:01 -0700689 .peek = qdisc_peek_dequeued,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 .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{
Stephen Hemmingereb229c42005-11-03 13:49:01 -0800702 pr_info("netem: version " VERSION "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 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");