blob: f840d6b27c657ab1ca85d2190aaf216a15724b34 [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
Jussi Kivilinna5f861732008-07-20 00:08:04 -070085static inline struct netem_skb_cb *netem_skb_cb(struct sk_buff *skb)
86{
Jussi Kivilinna175f9c12008-07-20 00:08:47 -070087 BUILD_BUG_ON(sizeof(skb->cb) <
88 sizeof(struct qdisc_skb_cb) + sizeof(struct netem_skb_cb));
89 return (struct netem_skb_cb *)qdisc_skb_cb(skb)->data;
Jussi Kivilinna5f861732008-07-20 00:08:04 -070090}
91
Linus Torvalds1da177e2005-04-16 15:20:36 -070092/* init_crandom - initialize correlated random number generator
93 * Use entropy source for initial seed.
94 */
95static void init_crandom(struct crndstate *state, unsigned long rho)
96{
97 state->rho = rho;
98 state->last = net_random();
99}
100
101/* get_crandom - correlated random number generator
102 * Next number depends on last value.
103 * rho is scaled to avoid floating point.
104 */
Stephen Hemmingerb4076212007-03-22 12:16:21 -0700105static u32 get_crandom(struct crndstate *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106{
107 u64 value, rho;
108 unsigned long answer;
109
Stephen Hemmingerbb2f8cc2007-03-23 00:12:09 -0700110 if (state->rho == 0) /* no correlation */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 return net_random();
112
113 value = net_random();
114 rho = (u64)state->rho + 1;
115 answer = (value * ((1ull<<32) - rho) + state->last * rho) >> 32;
116 state->last = answer;
117 return answer;
118}
119
120/* tabledist - return a pseudo-randomly distributed value with mean mu and
121 * std deviation sigma. Uses table lookup to approximate the desired
122 * distribution, and a uniformly-distributed pseudo-random source.
123 */
Stephen Hemmingerb4076212007-03-22 12:16:21 -0700124static psched_tdiff_t tabledist(psched_tdiff_t mu, psched_tdiff_t sigma,
125 struct crndstate *state,
126 const struct disttable *dist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127{
Stephen Hemmingerb4076212007-03-22 12:16:21 -0700128 psched_tdiff_t x;
129 long t;
130 u32 rnd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
132 if (sigma == 0)
133 return mu;
134
135 rnd = get_crandom(state);
136
137 /* default uniform distribution */
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900138 if (dist == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 return (rnd % (2*sigma)) - sigma + mu;
140
141 t = dist->table[rnd % dist->size];
142 x = (sigma % NETEM_DIST_SCALE) * t;
143 if (x >= 0)
144 x += NETEM_DIST_SCALE/2;
145 else
146 x -= NETEM_DIST_SCALE/2;
147
148 return x / NETEM_DIST_SCALE + (sigma / NETEM_DIST_SCALE) * t + mu;
149}
150
Stephen Hemminger0afb51e2005-05-26 12:53:49 -0700151/*
152 * Insert one skb into qdisc.
153 * Note: parent depends on return value to account for queue length.
154 * NET_XMIT_DROP: queue length didn't change.
155 * NET_XMIT_SUCCESS: one skb was queued.
156 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157static int netem_enqueue(struct sk_buff *skb, struct Qdisc *sch)
158{
159 struct netem_sched_data *q = qdisc_priv(sch);
Guillaume Chazarain89e1df72006-07-21 14:45:25 -0700160 /* We don't fill cb now as skb_unshare() may invalidate it */
161 struct netem_skb_cb *cb;
Stephen Hemminger0afb51e2005-05-26 12:53:49 -0700162 struct sk_buff *skb2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 int ret;
Stephen Hemminger0afb51e2005-05-26 12:53:49 -0700164 int count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Stephen Hemminger771018e2005-05-03 16:24:32 -0700166 pr_debug("netem_enqueue skb=%p\n", skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Stephen Hemminger0afb51e2005-05-26 12:53:49 -0700168 /* Random duplication */
169 if (q->duplicate && q->duplicate >= get_crandom(&q->dup_cor))
170 ++count;
171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 /* Random packet drop 0 => none, ~0 => all */
Stephen Hemminger0afb51e2005-05-26 12:53:49 -0700173 if (q->loss && q->loss >= get_crandom(&q->loss_cor))
174 --count;
175
176 if (count == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 sch->qstats.drops++;
178 kfree_skb(skb);
Jarek Poplawskic27f3392008-08-04 22:39:11 -0700179 return NET_XMIT_SUCCESS | __NET_XMIT_BYPASS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 }
181
David S. Miller4e8a5202006-10-22 21:00:33 -0700182 skb_orphan(skb);
183
Stephen Hemminger0afb51e2005-05-26 12:53:49 -0700184 /*
185 * If we need to duplicate packet, then re-insert at top of the
186 * qdisc tree, since parent queuer expects that only one
187 * skb will be queued.
188 */
189 if (count > 1 && (skb2 = skb_clone(skb, GFP_ATOMIC)) != NULL) {
David S. Miller7698b4f2008-07-16 01:42:40 -0700190 struct Qdisc *rootq = qdisc_root(sch);
Stephen Hemminger0afb51e2005-05-26 12:53:49 -0700191 u32 dupsave = q->duplicate; /* prevent duplicating a dup... */
192 q->duplicate = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Jussi Kivilinna5f861732008-07-20 00:08:04 -0700194 qdisc_enqueue_root(skb2, rootq);
Stephen Hemminger0afb51e2005-05-26 12:53:49 -0700195 q->duplicate = dupsave;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 }
197
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800198 /*
199 * Randomized packet corruption.
200 * Make copy if needed since we are modifying
201 * If packet is going to be hardware checksummed, then
202 * do it now in software before we mangle it.
203 */
204 if (q->corrupt && q->corrupt >= get_crandom(&q->corrupt_cor)) {
205 if (!(skb = skb_unshare(skb, GFP_ATOMIC))
Patrick McHardy84fa7932006-08-29 16:44:56 -0700206 || (skb->ip_summed == CHECKSUM_PARTIAL
207 && skb_checksum_help(skb))) {
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800208 sch->qstats.drops++;
209 return NET_XMIT_DROP;
210 }
211
212 skb->data[net_random() % skb_headlen(skb)] ^= 1<<(net_random() % 8);
213 }
214
Jussi Kivilinna5f861732008-07-20 00:08:04 -0700215 cb = netem_skb_cb(skb);
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700216 if (q->gap == 0 /* not doing reordering */
217 || q->counter < q->gap /* inside last reordering gap */
218 || q->reorder < get_crandom(&q->reorder_cor)) {
Stephen Hemminger0f9f32a2005-05-26 12:55:01 -0700219 psched_time_t now;
Stephen Hemminger07aaa112005-11-03 13:43:07 -0800220 psched_tdiff_t delay;
221
222 delay = tabledist(q->latency, q->jitter,
223 &q->delay_cor, q->delay_dist);
224
Patrick McHardy3bebcda2007-03-23 11:29:25 -0700225 now = psched_get_time();
Patrick McHardy7c59e252007-03-23 11:27:45 -0700226 cb->time_to_send = now + delay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 ++q->counter;
Jussi Kivilinna5f861732008-07-20 00:08:04 -0700228 ret = qdisc_enqueue(skb, q->qdisc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 } else {
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900230 /*
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700231 * Do re-ordering by putting one out of N packets at the front
232 * of the queue.
233 */
Patrick McHardy3bebcda2007-03-23 11:29:25 -0700234 cb->time_to_send = psched_get_time();
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700235 q->counter = 0;
Jarek Poplawski8ba25da2008-11-02 00:36:03 -0700236
237 __skb_queue_head(&q->qdisc->q, skb);
238 q->qdisc->qstats.backlog += qdisc_pkt_len(skb);
239 q->qdisc->qstats.requeues++;
240 ret = NET_XMIT_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 }
242
243 if (likely(ret == NET_XMIT_SUCCESS)) {
244 sch->q.qlen++;
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700245 sch->bstats.bytes += qdisc_pkt_len(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 sch->bstats.packets++;
Jarek Poplawski378a2f02008-08-04 22:31:03 -0700247 } else if (net_xmit_drop_count(ret)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 sch->qstats.drops++;
Jarek Poplawski378a2f02008-08-04 22:31:03 -0700249 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Stephen Hemmingerd5d75cd2005-05-03 16:24:57 -0700251 pr_debug("netem: enqueue ret %d\n", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 return ret;
253}
254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255static unsigned int netem_drop(struct Qdisc* sch)
256{
257 struct netem_sched_data *q = qdisc_priv(sch);
Patrick McHardy6d037a22006-03-20 19:00:49 -0800258 unsigned int len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Patrick McHardy6d037a22006-03-20 19:00:49 -0800260 if (q->qdisc->ops->drop && (len = q->qdisc->ops->drop(q->qdisc)) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 sch->q.qlen--;
262 sch->qstats.drops++;
263 }
264 return len;
265}
266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267static struct sk_buff *netem_dequeue(struct Qdisc *sch)
268{
269 struct netem_sched_data *q = qdisc_priv(sch);
270 struct sk_buff *skb;
271
Stephen Hemminger11274e52007-03-22 12:17:42 -0700272 smp_mb();
273 if (sch->flags & TCQ_F_THROTTLED)
274 return NULL;
275
Jarek Poplawski03c05f02008-10-31 00:46:19 -0700276 skb = q->qdisc->ops->peek(q->qdisc);
Stephen Hemminger771018e2005-05-03 16:24:32 -0700277 if (skb) {
Jussi Kivilinna5f861732008-07-20 00:08:04 -0700278 const struct netem_skb_cb *cb = netem_skb_cb(skb);
Patrick McHardy3bebcda2007-03-23 11:29:25 -0700279 psched_time_t now = psched_get_time();
Stephen Hemminger771018e2005-05-03 16:24:32 -0700280
Stephen Hemminger0f9f32a2005-05-26 12:55:01 -0700281 /* if more time remaining? */
Patrick McHardy104e0872007-03-23 11:28:07 -0700282 if (cb->time_to_send <= now) {
Jarek Poplawski77be1552008-10-31 00:47:01 -0700283 skb = qdisc_dequeue_peeked(q->qdisc);
284 if (unlikely(!skb))
Jarek Poplawski03c05f02008-10-31 00:46:19 -0700285 return NULL;
286
Stephen Hemminger0f9f32a2005-05-26 12:55:01 -0700287 pr_debug("netem_dequeue: return skb=%p\n", skb);
288 sch->q.qlen--;
Stephen Hemminger0f9f32a2005-05-26 12:55:01 -0700289 return skb;
290 }
Stephen Hemminger11274e52007-03-22 12:17:42 -0700291
Stephen Hemminger11274e52007-03-22 12:17:42 -0700292 qdisc_watchdog_schedule(&q->watchdog, cb->time_to_send);
Stephen Hemminger0f9f32a2005-05-26 12:55:01 -0700293 }
294
295 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296}
297
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298static void netem_reset(struct Qdisc *sch)
299{
300 struct netem_sched_data *q = qdisc_priv(sch);
301
302 qdisc_reset(q->qdisc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 sch->q.qlen = 0;
Patrick McHardy59cb5c62007-03-16 01:20:31 -0700304 qdisc_watchdog_cancel(&q->watchdog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305}
306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307/*
308 * Distribution data is a variable size payload containing
309 * signed 16 bit values.
310 */
Patrick McHardy1e904742008-01-22 22:11:17 -0800311static int get_dist_table(struct Qdisc *sch, const struct nlattr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312{
313 struct netem_sched_data *q = qdisc_priv(sch);
Patrick McHardy1e904742008-01-22 22:11:17 -0800314 unsigned long n = nla_len(attr)/sizeof(__s16);
315 const __s16 *data = nla_data(attr);
David S. Miller7698b4f2008-07-16 01:42:40 -0700316 spinlock_t *root_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 struct disttable *d;
318 int i;
319
320 if (n > 65536)
321 return -EINVAL;
322
323 d = kmalloc(sizeof(*d) + n*sizeof(d->table[0]), GFP_KERNEL);
324 if (!d)
325 return -ENOMEM;
326
327 d->size = n;
328 for (i = 0; i < n; i++)
329 d->table[i] = data[i];
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900330
Jarek Poplawski102396a2008-08-29 14:21:52 -0700331 root_lock = qdisc_root_sleeping_lock(sch);
David S. Miller7698b4f2008-07-16 01:42:40 -0700332
333 spin_lock_bh(root_lock);
Patrick McHardyb94c8af2008-11-20 04:11:36 -0800334 kfree(q->delay_dist);
335 q->delay_dist = d;
David S. Miller7698b4f2008-07-16 01:42:40 -0700336 spin_unlock_bh(root_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 return 0;
338}
339
Stephen Hemminger265eb672008-11-03 21:13:26 -0800340static void get_correlation(struct Qdisc *sch, const struct nlattr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341{
342 struct netem_sched_data *q = qdisc_priv(sch);
Patrick McHardy1e904742008-01-22 22:11:17 -0800343 const struct tc_netem_corr *c = nla_data(attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 init_crandom(&q->delay_cor, c->delay_corr);
346 init_crandom(&q->loss_cor, c->loss_corr);
347 init_crandom(&q->dup_cor, c->dup_corr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348}
349
Stephen Hemminger265eb672008-11-03 21:13:26 -0800350static void get_reorder(struct Qdisc *sch, const struct nlattr *attr)
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700351{
352 struct netem_sched_data *q = qdisc_priv(sch);
Patrick McHardy1e904742008-01-22 22:11:17 -0800353 const struct tc_netem_reorder *r = nla_data(attr);
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700354
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700355 q->reorder = r->probability;
356 init_crandom(&q->reorder_cor, r->correlation);
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700357}
358
Stephen Hemminger265eb672008-11-03 21:13:26 -0800359static void get_corrupt(struct Qdisc *sch, const struct nlattr *attr)
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800360{
361 struct netem_sched_data *q = qdisc_priv(sch);
Patrick McHardy1e904742008-01-22 22:11:17 -0800362 const struct tc_netem_corrupt *r = nla_data(attr);
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800363
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800364 q->corrupt = r->probability;
365 init_crandom(&q->corrupt_cor, r->correlation);
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800366}
367
Patrick McHardy27a34212008-01-23 20:35:39 -0800368static const struct nla_policy netem_policy[TCA_NETEM_MAX + 1] = {
369 [TCA_NETEM_CORR] = { .len = sizeof(struct tc_netem_corr) },
370 [TCA_NETEM_REORDER] = { .len = sizeof(struct tc_netem_reorder) },
371 [TCA_NETEM_CORRUPT] = { .len = sizeof(struct tc_netem_corrupt) },
372};
373
Thomas Graf2c10b322008-09-02 17:30:27 -0700374static int parse_attr(struct nlattr *tb[], int maxtype, struct nlattr *nla,
375 const struct nla_policy *policy, int len)
376{
377 int nested_len = nla_len(nla) - NLA_ALIGN(len);
378
379 if (nested_len < 0)
380 return -EINVAL;
381 if (nested_len >= nla_attr_size(0))
382 return nla_parse(tb, maxtype, nla_data(nla) + NLA_ALIGN(len),
383 nested_len, policy);
384 memset(tb, 0, sizeof(struct nlattr *) * (maxtype + 1));
385 return 0;
386}
387
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800388/* Parse netlink message to set options */
Patrick McHardy1e904742008-01-22 22:11:17 -0800389static int netem_change(struct Qdisc *sch, struct nlattr *opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390{
391 struct netem_sched_data *q = qdisc_priv(sch);
Patrick McHardyb03f4672008-01-23 20:32:21 -0800392 struct nlattr *tb[TCA_NETEM_MAX + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 struct tc_netem_qopt *qopt;
394 int ret;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900395
Patrick McHardyb03f4672008-01-23 20:32:21 -0800396 if (opt == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 return -EINVAL;
398
Thomas Graf2c10b322008-09-02 17:30:27 -0700399 qopt = nla_data(opt);
400 ret = parse_attr(tb, TCA_NETEM_MAX, opt, netem_policy, sizeof(*qopt));
Patrick McHardyb03f4672008-01-23 20:32:21 -0800401 if (ret < 0)
402 return ret;
403
Patrick McHardyfb0305c2008-07-05 23:40:21 -0700404 ret = fifo_set_limit(q->qdisc, qopt->limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 if (ret) {
406 pr_debug("netem: can't set fifo limit\n");
407 return ret;
408 }
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 q->latency = qopt->latency;
411 q->jitter = qopt->jitter;
412 q->limit = qopt->limit;
413 q->gap = qopt->gap;
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700414 q->counter = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 q->loss = qopt->loss;
416 q->duplicate = qopt->duplicate;
417
Stephen Hemmingerbb2f8cc2007-03-23 00:12:09 -0700418 /* for compatibility with earlier versions.
419 * if gap is set, need to assume 100% probability
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700420 */
Stephen Hemmingera362e0a2007-03-22 12:15:45 -0700421 if (q->gap)
422 q->reorder = ~0;
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700423
Stephen Hemminger265eb672008-11-03 21:13:26 -0800424 if (tb[TCA_NETEM_CORR])
425 get_correlation(sch, tb[TCA_NETEM_CORR]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
Patrick McHardyb03f4672008-01-23 20:32:21 -0800427 if (tb[TCA_NETEM_DELAY_DIST]) {
428 ret = get_dist_table(sch, tb[TCA_NETEM_DELAY_DIST]);
429 if (ret)
430 return ret;
431 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Stephen Hemminger265eb672008-11-03 21:13:26 -0800433 if (tb[TCA_NETEM_REORDER])
434 get_reorder(sch, tb[TCA_NETEM_REORDER]);
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800435
Stephen Hemminger265eb672008-11-03 21:13:26 -0800436 if (tb[TCA_NETEM_CORRUPT])
437 get_corrupt(sch, tb[TCA_NETEM_CORRUPT]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
439 return 0;
440}
441
Stephen Hemminger300ce172005-10-30 13:47:34 -0800442/*
443 * Special case version of FIFO queue for use by netem.
444 * It queues in order based on timestamps in skb's
445 */
446struct fifo_sched_data {
447 u32 limit;
Stephen Hemminger075aa572007-03-22 12:17:05 -0700448 psched_time_t oldest;
Stephen Hemminger300ce172005-10-30 13:47:34 -0800449};
450
451static int tfifo_enqueue(struct sk_buff *nskb, struct Qdisc *sch)
452{
453 struct fifo_sched_data *q = qdisc_priv(sch);
454 struct sk_buff_head *list = &sch->q;
Jussi Kivilinna5f861732008-07-20 00:08:04 -0700455 psched_time_t tnext = netem_skb_cb(nskb)->time_to_send;
Stephen Hemminger300ce172005-10-30 13:47:34 -0800456 struct sk_buff *skb;
457
458 if (likely(skb_queue_len(list) < q->limit)) {
Stephen Hemminger075aa572007-03-22 12:17:05 -0700459 /* Optimize for add at tail */
Patrick McHardy104e0872007-03-23 11:28:07 -0700460 if (likely(skb_queue_empty(list) || tnext >= q->oldest)) {
Stephen Hemminger075aa572007-03-22 12:17:05 -0700461 q->oldest = tnext;
462 return qdisc_enqueue_tail(nskb, sch);
463 }
464
Stephen Hemminger300ce172005-10-30 13:47:34 -0800465 skb_queue_reverse_walk(list, skb) {
Jussi Kivilinna5f861732008-07-20 00:08:04 -0700466 const struct netem_skb_cb *cb = netem_skb_cb(skb);
Stephen Hemminger300ce172005-10-30 13:47:34 -0800467
Patrick McHardy104e0872007-03-23 11:28:07 -0700468 if (tnext >= cb->time_to_send)
Stephen Hemminger300ce172005-10-30 13:47:34 -0800469 break;
470 }
471
472 __skb_queue_after(list, skb, nskb);
473
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700474 sch->qstats.backlog += qdisc_pkt_len(nskb);
475 sch->bstats.bytes += qdisc_pkt_len(nskb);
Stephen Hemminger300ce172005-10-30 13:47:34 -0800476 sch->bstats.packets++;
477
478 return NET_XMIT_SUCCESS;
479 }
480
Stephen Hemminger075aa572007-03-22 12:17:05 -0700481 return qdisc_reshape_fail(nskb, sch);
Stephen Hemminger300ce172005-10-30 13:47:34 -0800482}
483
Patrick McHardy1e904742008-01-22 22:11:17 -0800484static int tfifo_init(struct Qdisc *sch, struct nlattr *opt)
Stephen Hemminger300ce172005-10-30 13:47:34 -0800485{
486 struct fifo_sched_data *q = qdisc_priv(sch);
487
488 if (opt) {
Patrick McHardy1e904742008-01-22 22:11:17 -0800489 struct tc_fifo_qopt *ctl = nla_data(opt);
490 if (nla_len(opt) < sizeof(*ctl))
Stephen Hemminger300ce172005-10-30 13:47:34 -0800491 return -EINVAL;
492
493 q->limit = ctl->limit;
494 } else
David S. Miller5ce2d482008-07-08 17:06:30 -0700495 q->limit = max_t(u32, qdisc_dev(sch)->tx_queue_len, 1);
Stephen Hemminger300ce172005-10-30 13:47:34 -0800496
Patrick McHardya0849802007-03-23 11:28:30 -0700497 q->oldest = PSCHED_PASTPERFECT;
Stephen Hemminger300ce172005-10-30 13:47:34 -0800498 return 0;
499}
500
501static int tfifo_dump(struct Qdisc *sch, struct sk_buff *skb)
502{
503 struct fifo_sched_data *q = qdisc_priv(sch);
504 struct tc_fifo_qopt opt = { .limit = q->limit };
505
Patrick McHardy1e904742008-01-22 22:11:17 -0800506 NLA_PUT(skb, TCA_OPTIONS, sizeof(opt), &opt);
Stephen Hemminger300ce172005-10-30 13:47:34 -0800507 return skb->len;
508
Patrick McHardy1e904742008-01-22 22:11:17 -0800509nla_put_failure:
Stephen Hemminger300ce172005-10-30 13:47:34 -0800510 return -1;
511}
512
Eric Dumazet20fea082007-11-14 01:44:41 -0800513static struct Qdisc_ops tfifo_qdisc_ops __read_mostly = {
Stephen Hemminger300ce172005-10-30 13:47:34 -0800514 .id = "tfifo",
515 .priv_size = sizeof(struct fifo_sched_data),
516 .enqueue = tfifo_enqueue,
517 .dequeue = qdisc_dequeue_head,
Jarek Poplawski8e3af972008-10-31 00:45:55 -0700518 .peek = qdisc_peek_head,
Stephen Hemminger300ce172005-10-30 13:47:34 -0800519 .drop = qdisc_queue_drop,
520 .init = tfifo_init,
521 .reset = qdisc_reset_queue,
522 .change = tfifo_init,
523 .dump = tfifo_dump,
524};
525
Patrick McHardy1e904742008-01-22 22:11:17 -0800526static int netem_init(struct Qdisc *sch, struct nlattr *opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527{
528 struct netem_sched_data *q = qdisc_priv(sch);
529 int ret;
530
531 if (!opt)
532 return -EINVAL;
533
Patrick McHardy59cb5c62007-03-16 01:20:31 -0700534 qdisc_watchdog_init(&q->watchdog, sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
David S. Miller5ce2d482008-07-08 17:06:30 -0700536 q->qdisc = qdisc_create_dflt(qdisc_dev(sch), sch->dev_queue,
David S. Millerbb949fb2008-07-08 16:55:56 -0700537 &tfifo_qdisc_ops,
Patrick McHardy9f9afec2006-11-29 17:35:18 -0800538 TC_H_MAKE(sch->handle, 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 if (!q->qdisc) {
540 pr_debug("netem: qdisc create failed\n");
541 return -ENOMEM;
542 }
543
544 ret = netem_change(sch, opt);
545 if (ret) {
546 pr_debug("netem: change failed\n");
547 qdisc_destroy(q->qdisc);
548 }
549 return ret;
550}
551
552static void netem_destroy(struct Qdisc *sch)
553{
554 struct netem_sched_data *q = qdisc_priv(sch);
555
Patrick McHardy59cb5c62007-03-16 01:20:31 -0700556 qdisc_watchdog_cancel(&q->watchdog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 qdisc_destroy(q->qdisc);
558 kfree(q->delay_dist);
559}
560
561static int netem_dump(struct Qdisc *sch, struct sk_buff *skb)
562{
563 const struct netem_sched_data *q = qdisc_priv(sch);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700564 unsigned char *b = skb_tail_pointer(skb);
Patrick McHardy1e904742008-01-22 22:11:17 -0800565 struct nlattr *nla = (struct nlattr *) b;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 struct tc_netem_qopt qopt;
567 struct tc_netem_corr cor;
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700568 struct tc_netem_reorder reorder;
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800569 struct tc_netem_corrupt corrupt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
571 qopt.latency = q->latency;
572 qopt.jitter = q->jitter;
573 qopt.limit = q->limit;
574 qopt.loss = q->loss;
575 qopt.gap = q->gap;
576 qopt.duplicate = q->duplicate;
Patrick McHardy1e904742008-01-22 22:11:17 -0800577 NLA_PUT(skb, TCA_OPTIONS, sizeof(qopt), &qopt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
579 cor.delay_corr = q->delay_cor.rho;
580 cor.loss_corr = q->loss_cor.rho;
581 cor.dup_corr = q->dup_cor.rho;
Patrick McHardy1e904742008-01-22 22:11:17 -0800582 NLA_PUT(skb, TCA_NETEM_CORR, sizeof(cor), &cor);
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700583
584 reorder.probability = q->reorder;
585 reorder.correlation = q->reorder_cor.rho;
Patrick McHardy1e904742008-01-22 22:11:17 -0800586 NLA_PUT(skb, TCA_NETEM_REORDER, sizeof(reorder), &reorder);
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700587
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800588 corrupt.probability = q->corrupt;
589 corrupt.correlation = q->corrupt_cor.rho;
Patrick McHardy1e904742008-01-22 22:11:17 -0800590 NLA_PUT(skb, TCA_NETEM_CORRUPT, sizeof(corrupt), &corrupt);
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800591
Patrick McHardy1e904742008-01-22 22:11:17 -0800592 nla->nla_len = skb_tail_pointer(skb) - b;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
594 return skb->len;
595
Patrick McHardy1e904742008-01-22 22:11:17 -0800596nla_put_failure:
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -0700597 nlmsg_trim(skb, b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 return -1;
599}
600
Eric Dumazet20fea082007-11-14 01:44:41 -0800601static struct Qdisc_ops netem_qdisc_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 .id = "netem",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 .priv_size = sizeof(struct netem_sched_data),
604 .enqueue = netem_enqueue,
605 .dequeue = netem_dequeue,
Jarek Poplawski77be1552008-10-31 00:47:01 -0700606 .peek = qdisc_peek_dequeued,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 .drop = netem_drop,
608 .init = netem_init,
609 .reset = netem_reset,
610 .destroy = netem_destroy,
611 .change = netem_change,
612 .dump = netem_dump,
613 .owner = THIS_MODULE,
614};
615
616
617static int __init netem_module_init(void)
618{
Stephen Hemmingereb229c42005-11-03 13:49:01 -0800619 pr_info("netem: version " VERSION "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 return register_qdisc(&netem_qdisc_ops);
621}
622static void __exit netem_module_exit(void)
623{
624 unregister_qdisc(&netem_qdisc_ops);
625}
626module_init(netem_module_init)
627module_exit(netem_module_exit)
628MODULE_LICENSE("GPL");