blob: 98402f0efa47727677b8d57acfe2ecd7cb9441b2 [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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070049*/
50
51struct netem_sched_data {
52 struct Qdisc *qdisc;
Patrick McHardy59cb5c62007-03-16 01:20:31 -070053 struct qdisc_watchdog watchdog;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Stephen Hemmingerb4076212007-03-22 12:16:21 -070055 psched_tdiff_t latency;
56 psched_tdiff_t jitter;
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 u32 loss;
59 u32 limit;
60 u32 counter;
61 u32 gap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 u32 duplicate;
Stephen Hemminger0dca51d2005-05-26 12:55:48 -070063 u32 reorder;
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -080064 u32 corrupt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66 struct crndstate {
Stephen Hemmingerb4076212007-03-22 12:16:21 -070067 u32 last;
68 u32 rho;
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -080069 } delay_cor, loss_cor, dup_cor, reorder_cor, corrupt_cor;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
71 struct disttable {
72 u32 size;
73 s16 table[0];
74 } *delay_dist;
75};
76
77/* Time stamp put into socket buffer control block */
78struct netem_skb_cb {
79 psched_time_t time_to_send;
80};
81
Jussi Kivilinna5f861732008-07-20 00:08:04 -070082static inline struct netem_skb_cb *netem_skb_cb(struct sk_buff *skb)
83{
Jussi Kivilinna175f9c12008-07-20 00:08:47 -070084 BUILD_BUG_ON(sizeof(skb->cb) <
85 sizeof(struct qdisc_skb_cb) + sizeof(struct netem_skb_cb));
86 return (struct netem_skb_cb *)qdisc_skb_cb(skb)->data;
Jussi Kivilinna5f861732008-07-20 00:08:04 -070087}
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089/* init_crandom - initialize correlated random number generator
90 * Use entropy source for initial seed.
91 */
92static void init_crandom(struct crndstate *state, unsigned long rho)
93{
94 state->rho = rho;
95 state->last = net_random();
96}
97
98/* get_crandom - correlated random number generator
99 * Next number depends on last value.
100 * rho is scaled to avoid floating point.
101 */
Stephen Hemmingerb4076212007-03-22 12:16:21 -0700102static u32 get_crandom(struct crndstate *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103{
104 u64 value, rho;
105 unsigned long answer;
106
Stephen Hemmingerbb2f8cc2007-03-23 00:12:09 -0700107 if (state->rho == 0) /* no correlation */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 return net_random();
109
110 value = net_random();
111 rho = (u64)state->rho + 1;
112 answer = (value * ((1ull<<32) - rho) + state->last * rho) >> 32;
113 state->last = answer;
114 return answer;
115}
116
117/* tabledist - return a pseudo-randomly distributed value with mean mu and
118 * std deviation sigma. Uses table lookup to approximate the desired
119 * distribution, and a uniformly-distributed pseudo-random source.
120 */
Stephen Hemmingerb4076212007-03-22 12:16:21 -0700121static psched_tdiff_t tabledist(psched_tdiff_t mu, psched_tdiff_t sigma,
122 struct crndstate *state,
123 const struct disttable *dist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
Stephen Hemmingerb4076212007-03-22 12:16:21 -0700125 psched_tdiff_t x;
126 long t;
127 u32 rnd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129 if (sigma == 0)
130 return mu;
131
132 rnd = get_crandom(state);
133
134 /* default uniform distribution */
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900135 if (dist == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 return (rnd % (2*sigma)) - sigma + mu;
137
138 t = dist->table[rnd % dist->size];
139 x = (sigma % NETEM_DIST_SCALE) * t;
140 if (x >= 0)
141 x += NETEM_DIST_SCALE/2;
142 else
143 x -= NETEM_DIST_SCALE/2;
144
145 return x / NETEM_DIST_SCALE + (sigma / NETEM_DIST_SCALE) * t + mu;
146}
147
Stephen Hemminger0afb51e2005-05-26 12:53:49 -0700148/*
149 * Insert one skb into qdisc.
150 * Note: parent depends on return value to account for queue length.
151 * NET_XMIT_DROP: queue length didn't change.
152 * NET_XMIT_SUCCESS: one skb was queued.
153 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154static int netem_enqueue(struct sk_buff *skb, struct Qdisc *sch)
155{
156 struct netem_sched_data *q = qdisc_priv(sch);
Guillaume Chazarain89e1df72006-07-21 14:45:25 -0700157 /* We don't fill cb now as skb_unshare() may invalidate it */
158 struct netem_skb_cb *cb;
Stephen Hemminger0afb51e2005-05-26 12:53:49 -0700159 struct sk_buff *skb2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 int ret;
Stephen Hemminger0afb51e2005-05-26 12:53:49 -0700161 int count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Stephen Hemminger771018e2005-05-03 16:24:32 -0700163 pr_debug("netem_enqueue skb=%p\n", skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Stephen Hemminger0afb51e2005-05-26 12:53:49 -0700165 /* Random duplication */
166 if (q->duplicate && q->duplicate >= get_crandom(&q->dup_cor))
167 ++count;
168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 /* Random packet drop 0 => none, ~0 => all */
Stephen Hemminger0afb51e2005-05-26 12:53:49 -0700170 if (q->loss && q->loss >= get_crandom(&q->loss_cor))
171 --count;
172
173 if (count == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 sch->qstats.drops++;
175 kfree_skb(skb);
Jarek Poplawskic27f3392008-08-04 22:39:11 -0700176 return NET_XMIT_SUCCESS | __NET_XMIT_BYPASS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 }
178
David S. Miller4e8a5202006-10-22 21:00:33 -0700179 skb_orphan(skb);
180
Stephen Hemminger0afb51e2005-05-26 12:53:49 -0700181 /*
182 * If we need to duplicate packet, then re-insert at top of the
183 * qdisc tree, since parent queuer expects that only one
184 * skb will be queued.
185 */
186 if (count > 1 && (skb2 = skb_clone(skb, GFP_ATOMIC)) != NULL) {
David S. Miller7698b4f2008-07-16 01:42:40 -0700187 struct Qdisc *rootq = qdisc_root(sch);
Stephen Hemminger0afb51e2005-05-26 12:53:49 -0700188 u32 dupsave = q->duplicate; /* prevent duplicating a dup... */
189 q->duplicate = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Jussi Kivilinna5f861732008-07-20 00:08:04 -0700191 qdisc_enqueue_root(skb2, rootq);
Stephen Hemminger0afb51e2005-05-26 12:53:49 -0700192 q->duplicate = dupsave;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 }
194
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800195 /*
196 * Randomized packet corruption.
197 * Make copy if needed since we are modifying
198 * If packet is going to be hardware checksummed, then
199 * do it now in software before we mangle it.
200 */
201 if (q->corrupt && q->corrupt >= get_crandom(&q->corrupt_cor)) {
202 if (!(skb = skb_unshare(skb, GFP_ATOMIC))
Patrick McHardy84fa7932006-08-29 16:44:56 -0700203 || (skb->ip_summed == CHECKSUM_PARTIAL
204 && skb_checksum_help(skb))) {
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800205 sch->qstats.drops++;
206 return NET_XMIT_DROP;
207 }
208
209 skb->data[net_random() % skb_headlen(skb)] ^= 1<<(net_random() % 8);
210 }
211
Jussi Kivilinna5f861732008-07-20 00:08:04 -0700212 cb = netem_skb_cb(skb);
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700213 if (q->gap == 0 /* not doing reordering */
214 || q->counter < q->gap /* inside last reordering gap */
215 || q->reorder < get_crandom(&q->reorder_cor)) {
Stephen Hemminger0f9f32a2005-05-26 12:55:01 -0700216 psched_time_t now;
Stephen Hemminger07aaa112005-11-03 13:43:07 -0800217 psched_tdiff_t delay;
218
219 delay = tabledist(q->latency, q->jitter,
220 &q->delay_cor, q->delay_dist);
221
Patrick McHardy3bebcda2007-03-23 11:29:25 -0700222 now = psched_get_time();
Patrick McHardy7c59e252007-03-23 11:27:45 -0700223 cb->time_to_send = now + delay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 ++q->counter;
Jussi Kivilinna5f861732008-07-20 00:08:04 -0700225 ret = qdisc_enqueue(skb, q->qdisc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 } else {
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900227 /*
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700228 * Do re-ordering by putting one out of N packets at the front
229 * of the queue.
230 */
Patrick McHardy3bebcda2007-03-23 11:29:25 -0700231 cb->time_to_send = psched_get_time();
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700232 q->counter = 0;
Stephen Hemminger0f9f32a2005-05-26 12:55:01 -0700233 ret = q->qdisc->ops->requeue(skb, q->qdisc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 }
235
236 if (likely(ret == NET_XMIT_SUCCESS)) {
237 sch->q.qlen++;
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700238 sch->bstats.bytes += qdisc_pkt_len(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 sch->bstats.packets++;
Jarek Poplawski378a2f02008-08-04 22:31:03 -0700240 } else if (net_xmit_drop_count(ret)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 sch->qstats.drops++;
Jarek Poplawski378a2f02008-08-04 22:31:03 -0700242 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Stephen Hemmingerd5d75cd2005-05-03 16:24:57 -0700244 pr_debug("netem: enqueue ret %d\n", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 return ret;
246}
247
248/* Requeue packets but don't change time stamp */
249static int netem_requeue(struct sk_buff *skb, struct Qdisc *sch)
250{
251 struct netem_sched_data *q = qdisc_priv(sch);
252 int ret;
253
254 if ((ret = q->qdisc->ops->requeue(skb, q->qdisc)) == 0) {
255 sch->q.qlen++;
256 sch->qstats.requeues++;
257 }
258
259 return ret;
260}
261
262static unsigned int netem_drop(struct Qdisc* sch)
263{
264 struct netem_sched_data *q = qdisc_priv(sch);
Patrick McHardy6d037a22006-03-20 19:00:49 -0800265 unsigned int len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
Patrick McHardy6d037a22006-03-20 19:00:49 -0800267 if (q->qdisc->ops->drop && (len = q->qdisc->ops->drop(q->qdisc)) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 sch->q.qlen--;
269 sch->qstats.drops++;
270 }
271 return len;
272}
273
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274static struct sk_buff *netem_dequeue(struct Qdisc *sch)
275{
276 struct netem_sched_data *q = qdisc_priv(sch);
277 struct sk_buff *skb;
278
Stephen Hemminger11274e52007-03-22 12:17:42 -0700279 smp_mb();
280 if (sch->flags & TCQ_F_THROTTLED)
281 return NULL;
282
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 skb = q->qdisc->dequeue(q->qdisc);
Stephen Hemminger771018e2005-05-03 16:24:32 -0700284 if (skb) {
Jussi Kivilinna5f861732008-07-20 00:08:04 -0700285 const struct netem_skb_cb *cb = netem_skb_cb(skb);
Patrick McHardy3bebcda2007-03-23 11:29:25 -0700286 psched_time_t now = psched_get_time();
Stephen Hemminger771018e2005-05-03 16:24:32 -0700287
Stephen Hemminger0f9f32a2005-05-26 12:55:01 -0700288 /* if more time remaining? */
Patrick McHardy104e0872007-03-23 11:28:07 -0700289 if (cb->time_to_send <= now) {
Stephen Hemminger0f9f32a2005-05-26 12:55:01 -0700290 pr_debug("netem_dequeue: return skb=%p\n", skb);
291 sch->q.qlen--;
Stephen Hemminger0f9f32a2005-05-26 12:55:01 -0700292 return skb;
293 }
Stephen Hemminger11274e52007-03-22 12:17:42 -0700294
295 if (unlikely(q->qdisc->ops->requeue(skb, q->qdisc) != NET_XMIT_SUCCESS)) {
296 qdisc_tree_decrease_qlen(q->qdisc, 1);
297 sch->qstats.drops++;
298 printk(KERN_ERR "netem: %s could not requeue\n",
299 q->qdisc->ops->id);
300 }
301
302 qdisc_watchdog_schedule(&q->watchdog, cb->time_to_send);
Stephen Hemminger0f9f32a2005-05-26 12:55:01 -0700303 }
304
305 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306}
307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308static void netem_reset(struct Qdisc *sch)
309{
310 struct netem_sched_data *q = qdisc_priv(sch);
311
312 qdisc_reset(q->qdisc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 sch->q.qlen = 0;
Patrick McHardy59cb5c62007-03-16 01:20:31 -0700314 qdisc_watchdog_cancel(&q->watchdog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315}
316
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317/*
318 * Distribution data is a variable size payload containing
319 * signed 16 bit values.
320 */
Patrick McHardy1e904742008-01-22 22:11:17 -0800321static int get_dist_table(struct Qdisc *sch, const struct nlattr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
323 struct netem_sched_data *q = qdisc_priv(sch);
Patrick McHardy1e904742008-01-22 22:11:17 -0800324 unsigned long n = nla_len(attr)/sizeof(__s16);
325 const __s16 *data = nla_data(attr);
David S. Miller7698b4f2008-07-16 01:42:40 -0700326 spinlock_t *root_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 struct disttable *d;
328 int i;
329
330 if (n > 65536)
331 return -EINVAL;
332
333 d = kmalloc(sizeof(*d) + n*sizeof(d->table[0]), GFP_KERNEL);
334 if (!d)
335 return -ENOMEM;
336
337 d->size = n;
338 for (i = 0; i < n; i++)
339 d->table[i] = data[i];
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900340
Jarek Poplawski102396a2008-08-29 14:21:52 -0700341 root_lock = qdisc_root_sleeping_lock(sch);
David S. Miller7698b4f2008-07-16 01:42:40 -0700342
343 spin_lock_bh(root_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 d = xchg(&q->delay_dist, d);
David S. Miller7698b4f2008-07-16 01:42:40 -0700345 spin_unlock_bh(root_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
347 kfree(d);
348 return 0;
349}
350
Patrick McHardy1e904742008-01-22 22:11:17 -0800351static int get_correlation(struct Qdisc *sch, const struct nlattr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
353 struct netem_sched_data *q = qdisc_priv(sch);
Patrick McHardy1e904742008-01-22 22:11:17 -0800354 const struct tc_netem_corr *c = nla_data(attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 init_crandom(&q->delay_cor, c->delay_corr);
357 init_crandom(&q->loss_cor, c->loss_corr);
358 init_crandom(&q->dup_cor, c->dup_corr);
359 return 0;
360}
361
Patrick McHardy1e904742008-01-22 22:11:17 -0800362static int get_reorder(struct Qdisc *sch, const struct nlattr *attr)
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700363{
364 struct netem_sched_data *q = qdisc_priv(sch);
Patrick McHardy1e904742008-01-22 22:11:17 -0800365 const struct tc_netem_reorder *r = nla_data(attr);
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700366
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700367 q->reorder = r->probability;
368 init_crandom(&q->reorder_cor, r->correlation);
369 return 0;
370}
371
Patrick McHardy1e904742008-01-22 22:11:17 -0800372static int get_corrupt(struct Qdisc *sch, const struct nlattr *attr)
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800373{
374 struct netem_sched_data *q = qdisc_priv(sch);
Patrick McHardy1e904742008-01-22 22:11:17 -0800375 const struct tc_netem_corrupt *r = nla_data(attr);
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800376
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800377 q->corrupt = r->probability;
378 init_crandom(&q->corrupt_cor, r->correlation);
379 return 0;
380}
381
Patrick McHardy27a34212008-01-23 20:35:39 -0800382static const struct nla_policy netem_policy[TCA_NETEM_MAX + 1] = {
383 [TCA_NETEM_CORR] = { .len = sizeof(struct tc_netem_corr) },
384 [TCA_NETEM_REORDER] = { .len = sizeof(struct tc_netem_reorder) },
385 [TCA_NETEM_CORRUPT] = { .len = sizeof(struct tc_netem_corrupt) },
386};
387
Thomas Graf2c10b322008-09-02 17:30:27 -0700388static int parse_attr(struct nlattr *tb[], int maxtype, struct nlattr *nla,
389 const struct nla_policy *policy, int len)
390{
391 int nested_len = nla_len(nla) - NLA_ALIGN(len);
392
393 if (nested_len < 0)
394 return -EINVAL;
395 if (nested_len >= nla_attr_size(0))
396 return nla_parse(tb, maxtype, nla_data(nla) + NLA_ALIGN(len),
397 nested_len, policy);
398 memset(tb, 0, sizeof(struct nlattr *) * (maxtype + 1));
399 return 0;
400}
401
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800402/* Parse netlink message to set options */
Patrick McHardy1e904742008-01-22 22:11:17 -0800403static int netem_change(struct Qdisc *sch, struct nlattr *opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404{
405 struct netem_sched_data *q = qdisc_priv(sch);
Patrick McHardyb03f4672008-01-23 20:32:21 -0800406 struct nlattr *tb[TCA_NETEM_MAX + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 struct tc_netem_qopt *qopt;
408 int ret;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900409
Patrick McHardyb03f4672008-01-23 20:32:21 -0800410 if (opt == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 return -EINVAL;
412
Thomas Graf2c10b322008-09-02 17:30:27 -0700413 qopt = nla_data(opt);
414 ret = parse_attr(tb, TCA_NETEM_MAX, opt, netem_policy, sizeof(*qopt));
Patrick McHardyb03f4672008-01-23 20:32:21 -0800415 if (ret < 0)
416 return ret;
417
Patrick McHardyfb0305c2008-07-05 23:40:21 -0700418 ret = fifo_set_limit(q->qdisc, qopt->limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 if (ret) {
420 pr_debug("netem: can't set fifo limit\n");
421 return ret;
422 }
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 q->latency = qopt->latency;
425 q->jitter = qopt->jitter;
426 q->limit = qopt->limit;
427 q->gap = qopt->gap;
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700428 q->counter = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 q->loss = qopt->loss;
430 q->duplicate = qopt->duplicate;
431
Stephen Hemmingerbb2f8cc2007-03-23 00:12:09 -0700432 /* for compatibility with earlier versions.
433 * if gap is set, need to assume 100% probability
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700434 */
Stephen Hemmingera362e0a2007-03-22 12:15:45 -0700435 if (q->gap)
436 q->reorder = ~0;
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700437
Patrick McHardyb03f4672008-01-23 20:32:21 -0800438 if (tb[TCA_NETEM_CORR]) {
439 ret = get_correlation(sch, tb[TCA_NETEM_CORR]);
440 if (ret)
441 return ret;
442 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
Patrick McHardyb03f4672008-01-23 20:32:21 -0800444 if (tb[TCA_NETEM_DELAY_DIST]) {
445 ret = get_dist_table(sch, tb[TCA_NETEM_DELAY_DIST]);
446 if (ret)
447 return ret;
448 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
Patrick McHardyb03f4672008-01-23 20:32:21 -0800450 if (tb[TCA_NETEM_REORDER]) {
451 ret = get_reorder(sch, tb[TCA_NETEM_REORDER]);
452 if (ret)
453 return ret;
454 }
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800455
Patrick McHardyb03f4672008-01-23 20:32:21 -0800456 if (tb[TCA_NETEM_CORRUPT]) {
457 ret = get_corrupt(sch, tb[TCA_NETEM_CORRUPT]);
458 if (ret)
459 return ret;
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800460 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
462 return 0;
463}
464
Stephen Hemminger300ce172005-10-30 13:47:34 -0800465/*
466 * Special case version of FIFO queue for use by netem.
467 * It queues in order based on timestamps in skb's
468 */
469struct fifo_sched_data {
470 u32 limit;
Stephen Hemminger075aa572007-03-22 12:17:05 -0700471 psched_time_t oldest;
Stephen Hemminger300ce172005-10-30 13:47:34 -0800472};
473
474static int tfifo_enqueue(struct sk_buff *nskb, struct Qdisc *sch)
475{
476 struct fifo_sched_data *q = qdisc_priv(sch);
477 struct sk_buff_head *list = &sch->q;
Jussi Kivilinna5f861732008-07-20 00:08:04 -0700478 psched_time_t tnext = netem_skb_cb(nskb)->time_to_send;
Stephen Hemminger300ce172005-10-30 13:47:34 -0800479 struct sk_buff *skb;
480
481 if (likely(skb_queue_len(list) < q->limit)) {
Stephen Hemminger075aa572007-03-22 12:17:05 -0700482 /* Optimize for add at tail */
Patrick McHardy104e0872007-03-23 11:28:07 -0700483 if (likely(skb_queue_empty(list) || tnext >= q->oldest)) {
Stephen Hemminger075aa572007-03-22 12:17:05 -0700484 q->oldest = tnext;
485 return qdisc_enqueue_tail(nskb, sch);
486 }
487
Stephen Hemminger300ce172005-10-30 13:47:34 -0800488 skb_queue_reverse_walk(list, skb) {
Jussi Kivilinna5f861732008-07-20 00:08:04 -0700489 const struct netem_skb_cb *cb = netem_skb_cb(skb);
Stephen Hemminger300ce172005-10-30 13:47:34 -0800490
Patrick McHardy104e0872007-03-23 11:28:07 -0700491 if (tnext >= cb->time_to_send)
Stephen Hemminger300ce172005-10-30 13:47:34 -0800492 break;
493 }
494
495 __skb_queue_after(list, skb, nskb);
496
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700497 sch->qstats.backlog += qdisc_pkt_len(nskb);
498 sch->bstats.bytes += qdisc_pkt_len(nskb);
Stephen Hemminger300ce172005-10-30 13:47:34 -0800499 sch->bstats.packets++;
500
501 return NET_XMIT_SUCCESS;
502 }
503
Stephen Hemminger075aa572007-03-22 12:17:05 -0700504 return qdisc_reshape_fail(nskb, sch);
Stephen Hemminger300ce172005-10-30 13:47:34 -0800505}
506
Patrick McHardy1e904742008-01-22 22:11:17 -0800507static int tfifo_init(struct Qdisc *sch, struct nlattr *opt)
Stephen Hemminger300ce172005-10-30 13:47:34 -0800508{
509 struct fifo_sched_data *q = qdisc_priv(sch);
510
511 if (opt) {
Patrick McHardy1e904742008-01-22 22:11:17 -0800512 struct tc_fifo_qopt *ctl = nla_data(opt);
513 if (nla_len(opt) < sizeof(*ctl))
Stephen Hemminger300ce172005-10-30 13:47:34 -0800514 return -EINVAL;
515
516 q->limit = ctl->limit;
517 } else
David S. Miller5ce2d482008-07-08 17:06:30 -0700518 q->limit = max_t(u32, qdisc_dev(sch)->tx_queue_len, 1);
Stephen Hemminger300ce172005-10-30 13:47:34 -0800519
Patrick McHardya0849802007-03-23 11:28:30 -0700520 q->oldest = PSCHED_PASTPERFECT;
Stephen Hemminger300ce172005-10-30 13:47:34 -0800521 return 0;
522}
523
524static int tfifo_dump(struct Qdisc *sch, struct sk_buff *skb)
525{
526 struct fifo_sched_data *q = qdisc_priv(sch);
527 struct tc_fifo_qopt opt = { .limit = q->limit };
528
Patrick McHardy1e904742008-01-22 22:11:17 -0800529 NLA_PUT(skb, TCA_OPTIONS, sizeof(opt), &opt);
Stephen Hemminger300ce172005-10-30 13:47:34 -0800530 return skb->len;
531
Patrick McHardy1e904742008-01-22 22:11:17 -0800532nla_put_failure:
Stephen Hemminger300ce172005-10-30 13:47:34 -0800533 return -1;
534}
535
Eric Dumazet20fea082007-11-14 01:44:41 -0800536static struct Qdisc_ops tfifo_qdisc_ops __read_mostly = {
Stephen Hemminger300ce172005-10-30 13:47:34 -0800537 .id = "tfifo",
538 .priv_size = sizeof(struct fifo_sched_data),
539 .enqueue = tfifo_enqueue,
540 .dequeue = qdisc_dequeue_head,
541 .requeue = qdisc_requeue,
542 .drop = qdisc_queue_drop,
543 .init = tfifo_init,
544 .reset = qdisc_reset_queue,
545 .change = tfifo_init,
546 .dump = tfifo_dump,
547};
548
Patrick McHardy1e904742008-01-22 22:11:17 -0800549static int netem_init(struct Qdisc *sch, struct nlattr *opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550{
551 struct netem_sched_data *q = qdisc_priv(sch);
552 int ret;
553
554 if (!opt)
555 return -EINVAL;
556
Patrick McHardy59cb5c62007-03-16 01:20:31 -0700557 qdisc_watchdog_init(&q->watchdog, sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
David S. Miller5ce2d482008-07-08 17:06:30 -0700559 q->qdisc = qdisc_create_dflt(qdisc_dev(sch), sch->dev_queue,
David S. Millerbb949fb2008-07-08 16:55:56 -0700560 &tfifo_qdisc_ops,
Patrick McHardy9f9afec2006-11-29 17:35:18 -0800561 TC_H_MAKE(sch->handle, 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 if (!q->qdisc) {
563 pr_debug("netem: qdisc create failed\n");
564 return -ENOMEM;
565 }
566
567 ret = netem_change(sch, opt);
568 if (ret) {
569 pr_debug("netem: change failed\n");
570 qdisc_destroy(q->qdisc);
571 }
572 return ret;
573}
574
575static void netem_destroy(struct Qdisc *sch)
576{
577 struct netem_sched_data *q = qdisc_priv(sch);
578
Patrick McHardy59cb5c62007-03-16 01:20:31 -0700579 qdisc_watchdog_cancel(&q->watchdog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 qdisc_destroy(q->qdisc);
581 kfree(q->delay_dist);
582}
583
584static int netem_dump(struct Qdisc *sch, struct sk_buff *skb)
585{
586 const struct netem_sched_data *q = qdisc_priv(sch);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700587 unsigned char *b = skb_tail_pointer(skb);
Patrick McHardy1e904742008-01-22 22:11:17 -0800588 struct nlattr *nla = (struct nlattr *) b;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 struct tc_netem_qopt qopt;
590 struct tc_netem_corr cor;
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700591 struct tc_netem_reorder reorder;
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800592 struct tc_netem_corrupt corrupt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
594 qopt.latency = q->latency;
595 qopt.jitter = q->jitter;
596 qopt.limit = q->limit;
597 qopt.loss = q->loss;
598 qopt.gap = q->gap;
599 qopt.duplicate = q->duplicate;
Patrick McHardy1e904742008-01-22 22:11:17 -0800600 NLA_PUT(skb, TCA_OPTIONS, sizeof(qopt), &qopt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
602 cor.delay_corr = q->delay_cor.rho;
603 cor.loss_corr = q->loss_cor.rho;
604 cor.dup_corr = q->dup_cor.rho;
Patrick McHardy1e904742008-01-22 22:11:17 -0800605 NLA_PUT(skb, TCA_NETEM_CORR, sizeof(cor), &cor);
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700606
607 reorder.probability = q->reorder;
608 reorder.correlation = q->reorder_cor.rho;
Patrick McHardy1e904742008-01-22 22:11:17 -0800609 NLA_PUT(skb, TCA_NETEM_REORDER, sizeof(reorder), &reorder);
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700610
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800611 corrupt.probability = q->corrupt;
612 corrupt.correlation = q->corrupt_cor.rho;
Patrick McHardy1e904742008-01-22 22:11:17 -0800613 NLA_PUT(skb, TCA_NETEM_CORRUPT, sizeof(corrupt), &corrupt);
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800614
Patrick McHardy1e904742008-01-22 22:11:17 -0800615 nla->nla_len = skb_tail_pointer(skb) - b;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
617 return skb->len;
618
Patrick McHardy1e904742008-01-22 22:11:17 -0800619nla_put_failure:
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -0700620 nlmsg_trim(skb, b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 return -1;
622}
623
624static int netem_dump_class(struct Qdisc *sch, unsigned long cl,
625 struct sk_buff *skb, struct tcmsg *tcm)
626{
627 struct netem_sched_data *q = qdisc_priv(sch);
628
629 if (cl != 1) /* only one class */
630 return -ENOENT;
631
632 tcm->tcm_handle |= TC_H_MIN(1);
633 tcm->tcm_info = q->qdisc->handle;
634
635 return 0;
636}
637
638static int netem_graft(struct Qdisc *sch, unsigned long arg, struct Qdisc *new,
639 struct Qdisc **old)
640{
641 struct netem_sched_data *q = qdisc_priv(sch);
642
643 if (new == NULL)
644 new = &noop_qdisc;
645
646 sch_tree_lock(sch);
647 *old = xchg(&q->qdisc, new);
Patrick McHardy5e50da02006-11-29 17:36:20 -0800648 qdisc_tree_decrease_qlen(*old, (*old)->q.qlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 qdisc_reset(*old);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 sch_tree_unlock(sch);
651
652 return 0;
653}
654
655static struct Qdisc *netem_leaf(struct Qdisc *sch, unsigned long arg)
656{
657 struct netem_sched_data *q = qdisc_priv(sch);
658 return q->qdisc;
659}
660
661static unsigned long netem_get(struct Qdisc *sch, u32 classid)
662{
663 return 1;
664}
665
666static void netem_put(struct Qdisc *sch, unsigned long arg)
667{
668}
669
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900670static int netem_change_class(struct Qdisc *sch, u32 classid, u32 parentid,
Patrick McHardy1e904742008-01-22 22:11:17 -0800671 struct nlattr **tca, unsigned long *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672{
673 return -ENOSYS;
674}
675
676static int netem_delete(struct Qdisc *sch, unsigned long arg)
677{
678 return -ENOSYS;
679}
680
681static void netem_walk(struct Qdisc *sch, struct qdisc_walker *walker)
682{
683 if (!walker->stop) {
684 if (walker->count >= walker->skip)
685 if (walker->fn(sch, 1, walker) < 0) {
686 walker->stop = 1;
687 return;
688 }
689 walker->count++;
690 }
691}
692
693static struct tcf_proto **netem_find_tcf(struct Qdisc *sch, unsigned long cl)
694{
695 return NULL;
696}
697
Eric Dumazet20fea082007-11-14 01:44:41 -0800698static const struct Qdisc_class_ops netem_class_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 .graft = netem_graft,
700 .leaf = netem_leaf,
701 .get = netem_get,
702 .put = netem_put,
703 .change = netem_change_class,
704 .delete = netem_delete,
705 .walk = netem_walk,
706 .tcf_chain = netem_find_tcf,
707 .dump = netem_dump_class,
708};
709
Eric Dumazet20fea082007-11-14 01:44:41 -0800710static struct Qdisc_ops netem_qdisc_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 .id = "netem",
712 .cl_ops = &netem_class_ops,
713 .priv_size = sizeof(struct netem_sched_data),
714 .enqueue = netem_enqueue,
715 .dequeue = netem_dequeue,
716 .requeue = netem_requeue,
717 .drop = netem_drop,
718 .init = netem_init,
719 .reset = netem_reset,
720 .destroy = netem_destroy,
721 .change = netem_change,
722 .dump = netem_dump,
723 .owner = THIS_MODULE,
724};
725
726
727static int __init netem_module_init(void)
728{
Stephen Hemmingereb229c42005-11-03 13:49:01 -0800729 pr_info("netem: version " VERSION "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 return register_qdisc(&netem_qdisc_ops);
731}
732static void __exit netem_module_exit(void)
733{
734 unregister_qdisc(&netem_qdisc_ops);
735}
736module_init(netem_module_init)
737module_exit(netem_module_exit)
738MODULE_LICENSE("GPL");