blob: 63d41f86679c0653951090c81f189665c5deaa00 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* net/sched/sch_dsmark.c - Differentiated Services field marker */
2
3/* Written 1998-2000 by Werner Almesberger, EPFL ICA */
4
5
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include <linux/module.h>
7#include <linux/init.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09008#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/types.h>
10#include <linux/string.h>
11#include <linux/errno.h>
12#include <linux/skbuff.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/rtnetlink.h>
David S. Miller5b0ac722008-01-21 02:21:45 -080014#include <linux/bitops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <net/pkt_sched.h>
16#include <net/dsfield.h>
17#include <net/inet_ecn.h>
18#include <asm/byteorder.h>
19
Linus Torvalds1da177e2005-04-16 15:20:36 -070020/*
21 * classid class marking
22 * ------- ----- -------
23 * n/a 0 n/a
24 * x:0 1 use entry [0]
25 * ... ... ...
26 * x:y y>0 y+1 use entry [y]
27 * ... ... ...
28 * x:indices-1 indices use entry [indices-1]
29 * ... ... ...
30 * x:y y+1 use entry [y & (indices-1)]
31 * ... ... ...
32 * 0xffff 0x10000 use entry [indices-1]
33 */
34
35
36#define NO_DEFAULT_INDEX (1 << 16)
37
38struct dsmark_qdisc_data {
39 struct Qdisc *q;
40 struct tcf_proto *filter_list;
Thomas Grafaf0d1142005-06-18 22:53:29 -070041 u8 *mask; /* "owns" the array */
42 u8 *value;
43 u16 indices;
44 u32 default_index; /* index range is 0...0xffff */
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 int set_tc_index;
46};
47
Thomas Graf758cc432005-06-18 22:52:54 -070048static inline int dsmark_valid_index(struct dsmark_qdisc_data *p, u16 index)
49{
50 return (index <= p->indices && index > 0);
51}
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53/* ------------------------- Class/flow operations ------------------------- */
54
Thomas Grafaf0d1142005-06-18 22:53:29 -070055static int dsmark_graft(struct Qdisc *sch, unsigned long arg,
56 struct Qdisc *new, struct Qdisc **old)
Linus Torvalds1da177e2005-04-16 15:20:36 -070057{
Stephen Hemminger81da99e2008-01-21 00:50:09 -080058 struct dsmark_qdisc_data *p = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Stephen Hemminger81da99e2008-01-21 00:50:09 -080060 pr_debug("dsmark_graft(sch %p,[qdisc %p],new %p,old %p)\n",
Thomas Grafaf0d1142005-06-18 22:53:29 -070061 sch, p, new, old);
Thomas Graf486b53e2005-05-31 15:16:52 -070062
63 if (new == NULL) {
David S. Miller5ce2d482008-07-08 17:06:30 -070064 new = qdisc_create_dflt(qdisc_dev(sch), sch->dev_queue,
David S. Millerbb949fb2008-07-08 16:55:56 -070065 &pfifo_qdisc_ops,
Patrick McHardy9f9afec2006-11-29 17:35:18 -080066 sch->handle);
Thomas Graf486b53e2005-05-31 15:16:52 -070067 if (new == NULL)
68 new = &noop_qdisc;
69 }
70
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 sch_tree_lock(sch);
Patrick McHardyb94c8af2008-11-20 04:11:36 -080072 *old = p->q;
73 p->q = new;
Patrick McHardy5e50da02006-11-29 17:36:20 -080074 qdisc_tree_decrease_qlen(*old, (*old)->q.qlen);
Thomas Grafaf0d1142005-06-18 22:53:29 -070075 qdisc_reset(*old);
Thomas Grafaf0d1142005-06-18 22:53:29 -070076 sch_tree_unlock(sch);
77
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +090078 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079}
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081static struct Qdisc *dsmark_leaf(struct Qdisc *sch, unsigned long arg)
82{
Stephen Hemminger81da99e2008-01-21 00:50:09 -080083 struct dsmark_qdisc_data *p = qdisc_priv(sch);
84 return p->q;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085}
86
Thomas Grafaf0d1142005-06-18 22:53:29 -070087static unsigned long dsmark_get(struct Qdisc *sch, u32 classid)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088{
Stephen Hemminger81da99e2008-01-21 00:50:09 -080089 pr_debug("dsmark_get(sch %p,[qdisc %p],classid %x)\n",
90 sch, qdisc_priv(sch), classid);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Thomas Grafaf0d1142005-06-18 22:53:29 -070092 return TC_H_MIN(classid) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093}
94
Linus Torvalds1da177e2005-04-16 15:20:36 -070095static unsigned long dsmark_bind_filter(struct Qdisc *sch,
Thomas Grafaf0d1142005-06-18 22:53:29 -070096 unsigned long parent, u32 classid)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097{
Thomas Grafaf0d1142005-06-18 22:53:29 -070098 return dsmark_get(sch, classid);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099}
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101static void dsmark_put(struct Qdisc *sch, unsigned long cl)
102{
103}
104
Patrick McHardy27a34212008-01-23 20:35:39 -0800105static const struct nla_policy dsmark_policy[TCA_DSMARK_MAX + 1] = {
106 [TCA_DSMARK_INDICES] = { .type = NLA_U16 },
107 [TCA_DSMARK_DEFAULT_INDEX] = { .type = NLA_U16 },
108 [TCA_DSMARK_SET_TC_INDEX] = { .type = NLA_FLAG },
109 [TCA_DSMARK_MASK] = { .type = NLA_U8 },
110 [TCA_DSMARK_VALUE] = { .type = NLA_U8 },
111};
112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113static int dsmark_change(struct Qdisc *sch, u32 classid, u32 parent,
Patrick McHardy1e904742008-01-22 22:11:17 -0800114 struct nlattr **tca, unsigned long *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800116 struct dsmark_qdisc_data *p = qdisc_priv(sch);
Patrick McHardy1e904742008-01-22 22:11:17 -0800117 struct nlattr *opt = tca[TCA_OPTIONS];
118 struct nlattr *tb[TCA_DSMARK_MAX + 1];
Thomas Graf758cc432005-06-18 22:52:54 -0700119 int err = -EINVAL;
120 u8 mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800122 pr_debug("dsmark_change(sch %p,[qdisc %p],classid %x,parent %x),"
Thomas Graf758cc432005-06-18 22:52:54 -0700123 "arg 0x%lx\n", sch, p, classid, parent, *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Thomas Graf758cc432005-06-18 22:52:54 -0700125 if (!dsmark_valid_index(p, *arg)) {
126 err = -ENOENT;
Patrick McHardy1e904742008-01-22 22:11:17 -0800127 goto errout;
Thomas Graf758cc432005-06-18 22:52:54 -0700128 }
129
Patrick McHardycee63722008-01-23 20:33:32 -0800130 if (!opt)
Patrick McHardy1e904742008-01-22 22:11:17 -0800131 goto errout;
Thomas Graf758cc432005-06-18 22:52:54 -0700132
Patrick McHardy27a34212008-01-23 20:35:39 -0800133 err = nla_parse_nested(tb, TCA_DSMARK_MAX, opt, dsmark_policy);
Patrick McHardycee63722008-01-23 20:33:32 -0800134 if (err < 0)
Patrick McHardy27a34212008-01-23 20:35:39 -0800135 goto errout;
Patrick McHardycee63722008-01-23 20:33:32 -0800136
Patrick McHardy27a34212008-01-23 20:35:39 -0800137 if (tb[TCA_DSMARK_MASK])
Patrick McHardy1e904742008-01-22 22:11:17 -0800138 mask = nla_get_u8(tb[TCA_DSMARK_MASK]);
Patrick McHardy27a34212008-01-23 20:35:39 -0800139
140 if (tb[TCA_DSMARK_VALUE])
Patrick McHardy1e904742008-01-22 22:11:17 -0800141 p->value[*arg-1] = nla_get_u8(tb[TCA_DSMARK_VALUE]);
Thomas Graf758cc432005-06-18 22:52:54 -0700142
Patrick McHardy1e904742008-01-22 22:11:17 -0800143 if (tb[TCA_DSMARK_MASK])
Thomas Graf758cc432005-06-18 22:52:54 -0700144 p->mask[*arg-1] = mask;
145
146 err = 0;
147
Patrick McHardy1e904742008-01-22 22:11:17 -0800148errout:
Thomas Graf758cc432005-06-18 22:52:54 -0700149 return err;
150}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Thomas Grafaf0d1142005-06-18 22:53:29 -0700152static int dsmark_delete(struct Qdisc *sch, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800154 struct dsmark_qdisc_data *p = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Thomas Grafaf0d1142005-06-18 22:53:29 -0700156 if (!dsmark_valid_index(p, arg))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 return -EINVAL;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 p->mask[arg-1] = 0xff;
160 p->value[arg-1] = 0;
Thomas Grafaf0d1142005-06-18 22:53:29 -0700161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 return 0;
163}
164
Stephen Hemminger9d127fb2008-01-21 02:24:21 -0800165static void dsmark_walk(struct Qdisc *sch, struct qdisc_walker *walker)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166{
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800167 struct dsmark_qdisc_data *p = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 int i;
169
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800170 pr_debug("dsmark_walk(sch %p,[qdisc %p],walker %p)\n", sch, p, walker);
Thomas Grafaf0d1142005-06-18 22:53:29 -0700171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 if (walker->stop)
173 return;
Thomas Grafaf0d1142005-06-18 22:53:29 -0700174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 for (i = 0; i < p->indices; i++) {
176 if (p->mask[i] == 0xff && !p->value[i])
Thomas Graf0451eb02005-05-31 15:15:58 -0700177 goto ignore;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 if (walker->count >= walker->skip) {
179 if (walker->fn(sch, i+1, walker) < 0) {
180 walker->stop = 1;
181 break;
182 }
183 }
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900184ignore:
Thomas Graf0451eb02005-05-31 15:15:58 -0700185 walker->count++;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900186 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187}
188
Stephen Hemminger9d127fb2008-01-21 02:24:21 -0800189static inline struct tcf_proto **dsmark_find_tcf(struct Qdisc *sch,
190 unsigned long cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800192 struct dsmark_qdisc_data *p = qdisc_priv(sch);
193 return &p->filter_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194}
195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196/* --------------------------- Qdisc operations ---------------------------- */
197
Stephen Hemminger9d127fb2008-01-21 02:24:21 -0800198static int dsmark_enqueue(struct sk_buff *skb, struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800200 struct dsmark_qdisc_data *p = qdisc_priv(sch);
Thomas Grafaf0d1142005-06-18 22:53:29 -0700201 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800203 pr_debug("dsmark_enqueue(skb %p,sch %p,[qdisc %p])\n", skb, sch, p);
Thomas Grafaf0d1142005-06-18 22:53:29 -0700204
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 if (p->set_tc_index) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 switch (skb->protocol) {
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -0700207 case htons(ETH_P_IP):
Stephen Hemminger9d127fb2008-01-21 02:24:21 -0800208 if (skb_cow_head(skb, sizeof(struct iphdr)))
209 goto drop;
Stephen Hemminger4c307192008-01-21 02:23:49 -0800210
Stephen Hemminger9d127fb2008-01-21 02:24:21 -0800211 skb->tc_index = ipv4_get_dsfield(ip_hdr(skb))
212 & ~INET_ECN_MASK;
213 break;
Stephen Hemminger4c307192008-01-21 02:23:49 -0800214
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -0700215 case htons(ETH_P_IPV6):
Stephen Hemminger9d127fb2008-01-21 02:24:21 -0800216 if (skb_cow_head(skb, sizeof(struct ipv6hdr)))
217 goto drop;
Stephen Hemminger4c307192008-01-21 02:23:49 -0800218
Stephen Hemminger9d127fb2008-01-21 02:24:21 -0800219 skb->tc_index = ipv6_get_dsfield(ipv6_hdr(skb))
220 & ~INET_ECN_MASK;
221 break;
222 default:
223 skb->tc_index = 0;
224 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700225 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 }
Thomas Grafaf0d1142005-06-18 22:53:29 -0700227
228 if (TC_H_MAJ(skb->priority) == sch->handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 skb->tc_index = TC_H_MIN(skb->priority);
Thomas Grafaf0d1142005-06-18 22:53:29 -0700230 else {
231 struct tcf_result res;
232 int result = tc_classify(skb, p->filter_list, &res);
233
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800234 pr_debug("result %d class 0x%04x\n", result, res.classid);
Thomas Grafaf0d1142005-06-18 22:53:29 -0700235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 switch (result) {
Patrick McHardyf6853e22007-07-15 00:02:10 -0700237#ifdef CONFIG_NET_CLS_ACT
238 case TC_ACT_QUEUED:
239 case TC_ACT_STOLEN:
240 kfree_skb(skb);
Jarek Poplawski378a2f02008-08-04 22:31:03 -0700241 return NET_XMIT_SUCCESS | __NET_XMIT_STOLEN;
Stephen Hemminger4c307192008-01-21 02:23:49 -0800242
Patrick McHardyf6853e22007-07-15 00:02:10 -0700243 case TC_ACT_SHOT:
Stephen Hemminger4c307192008-01-21 02:23:49 -0800244 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245#endif
Patrick McHardyc3bc7cf2007-07-15 00:03:05 -0700246 case TC_ACT_OK:
Patrick McHardyf6853e22007-07-15 00:02:10 -0700247 skb->tc_index = TC_H_MIN(res.classid);
248 break;
Stephen Hemminger4c307192008-01-21 02:23:49 -0800249
Patrick McHardyf6853e22007-07-15 00:02:10 -0700250 default:
251 if (p->default_index != NO_DEFAULT_INDEX)
252 skb->tc_index = p->default_index;
253 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700254 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Jussi Kivilinna5f861732008-07-20 00:08:04 -0700257 err = qdisc_enqueue(skb, p->q);
Thomas Grafaf0d1142005-06-18 22:53:29 -0700258 if (err != NET_XMIT_SUCCESS) {
Jarek Poplawski378a2f02008-08-04 22:31:03 -0700259 if (net_xmit_drop_count(err))
260 sch->qstats.drops++;
Thomas Grafaf0d1142005-06-18 22:53:29 -0700261 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 }
Thomas Grafaf0d1142005-06-18 22:53:29 -0700263
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700264 sch->bstats.bytes += qdisc_pkt_len(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 sch->bstats.packets++;
266 sch->q.qlen++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Thomas Grafaf0d1142005-06-18 22:53:29 -0700268 return NET_XMIT_SUCCESS;
Stephen Hemminger4c307192008-01-21 02:23:49 -0800269
270drop:
271 kfree_skb(skb);
272 sch->qstats.drops++;
Jarek Poplawskic27f3392008-08-04 22:39:11 -0700273 return NET_XMIT_SUCCESS | __NET_XMIT_BYPASS;
Thomas Grafaf0d1142005-06-18 22:53:29 -0700274}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
276static struct sk_buff *dsmark_dequeue(struct Qdisc *sch)
277{
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800278 struct dsmark_qdisc_data *p = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 struct sk_buff *skb;
Thomas Grafaf0d1142005-06-18 22:53:29 -0700280 u32 index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800282 pr_debug("dsmark_dequeue(sch %p,[qdisc %p])\n", sch, p);
Thomas Grafaf0d1142005-06-18 22:53:29 -0700283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 skb = p->q->ops->dequeue(p->q);
Thomas Grafaf0d1142005-06-18 22:53:29 -0700285 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 return NULL;
Thomas Grafaf0d1142005-06-18 22:53:29 -0700287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 sch->q.qlen--;
Thomas Grafaf0d1142005-06-18 22:53:29 -0700289
290 index = skb->tc_index & (p->indices - 1);
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800291 pr_debug("index %d->%d\n", skb->tc_index, index);
Thomas Grafaf0d1142005-06-18 22:53:29 -0700292
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 switch (skb->protocol) {
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -0700294 case htons(ETH_P_IP):
Stephen Hemminger9d127fb2008-01-21 02:24:21 -0800295 ipv4_change_dsfield(ip_hdr(skb), p->mask[index],
296 p->value[index]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 break;
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -0700298 case htons(ETH_P_IPV6):
Stephen Hemminger9d127fb2008-01-21 02:24:21 -0800299 ipv6_change_dsfield(ipv6_hdr(skb), p->mask[index],
300 p->value[index]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 break;
Stephen Hemminger9d127fb2008-01-21 02:24:21 -0800302 default:
303 /*
304 * Only complain if a change was actually attempted.
305 * This way, we can send non-IP traffic through dsmark
306 * and don't need yet another qdisc as a bypass.
307 */
308 if (p->mask[index] != 0xff || p->value[index])
309 printk(KERN_WARNING
310 "dsmark_dequeue: unsupported protocol %d\n",
311 ntohs(skb->protocol));
312 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700313 }
Thomas Grafaf0d1142005-06-18 22:53:29 -0700314
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 return skb;
316}
317
Jarek Poplawski8e3af972008-10-31 00:45:55 -0700318static struct sk_buff *dsmark_peek(struct Qdisc *sch)
319{
320 struct dsmark_qdisc_data *p = qdisc_priv(sch);
321
322 pr_debug("dsmark_peek(sch %p,[qdisc %p])\n", sch, p);
323
324 return p->q->ops->peek(p->q);
325}
326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327static unsigned int dsmark_drop(struct Qdisc *sch)
328{
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800329 struct dsmark_qdisc_data *p = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 unsigned int len;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900331
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800332 pr_debug("dsmark_reset(sch %p,[qdisc %p])\n", sch, p);
Thomas Grafaf0d1142005-06-18 22:53:29 -0700333
334 if (p->q->ops->drop == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 return 0;
Thomas Grafaf0d1142005-06-18 22:53:29 -0700336
337 len = p->q->ops->drop(p->q);
338 if (len)
339 sch->q.qlen--;
340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 return len;
342}
343
Patrick McHardy1e904742008-01-22 22:11:17 -0800344static int dsmark_init(struct Qdisc *sch, struct nlattr *opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345{
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800346 struct dsmark_qdisc_data *p = qdisc_priv(sch);
Patrick McHardy1e904742008-01-22 22:11:17 -0800347 struct nlattr *tb[TCA_DSMARK_MAX + 1];
Thomas Graf758cc432005-06-18 22:52:54 -0700348 int err = -EINVAL;
349 u32 default_index = NO_DEFAULT_INDEX;
350 u16 indices;
351 u8 *mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800353 pr_debug("dsmark_init(sch %p,[qdisc %p],opt %p)\n", sch, p, opt);
Thomas Graf758cc432005-06-18 22:52:54 -0700354
Patrick McHardycee63722008-01-23 20:33:32 -0800355 if (!opt)
Thomas Graf758cc432005-06-18 22:52:54 -0700356 goto errout;
357
Patrick McHardy27a34212008-01-23 20:35:39 -0800358 err = nla_parse_nested(tb, TCA_DSMARK_MAX, opt, dsmark_policy);
Patrick McHardycee63722008-01-23 20:33:32 -0800359 if (err < 0)
360 goto errout;
361
362 err = -EINVAL;
Patrick McHardy1e904742008-01-22 22:11:17 -0800363 indices = nla_get_u16(tb[TCA_DSMARK_INDICES]);
David S. Miller5b0ac722008-01-21 02:21:45 -0800364
365 if (hweight32(indices) != 1)
Thomas Graf758cc432005-06-18 22:52:54 -0700366 goto errout;
367
Patrick McHardy27a34212008-01-23 20:35:39 -0800368 if (tb[TCA_DSMARK_DEFAULT_INDEX])
Patrick McHardy1e904742008-01-22 22:11:17 -0800369 default_index = nla_get_u16(tb[TCA_DSMARK_DEFAULT_INDEX]);
Thomas Graf758cc432005-06-18 22:52:54 -0700370
371 mask = kmalloc(indices * 2, GFP_KERNEL);
372 if (mask == NULL) {
373 err = -ENOMEM;
374 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 }
Thomas Graf758cc432005-06-18 22:52:54 -0700376
377 p->mask = mask;
378 memset(p->mask, 0xff, indices);
379
380 p->value = p->mask + indices;
381 memset(p->value, 0, indices);
382
383 p->indices = indices;
384 p->default_index = default_index;
Patrick McHardy1e904742008-01-22 22:11:17 -0800385 p->set_tc_index = nla_get_flag(tb[TCA_DSMARK_SET_TC_INDEX]);
Thomas Graf758cc432005-06-18 22:52:54 -0700386
David S. Miller5ce2d482008-07-08 17:06:30 -0700387 p->q = qdisc_create_dflt(qdisc_dev(sch), sch->dev_queue,
David S. Millerbb949fb2008-07-08 16:55:56 -0700388 &pfifo_qdisc_ops, sch->handle);
Thomas Graf758cc432005-06-18 22:52:54 -0700389 if (p->q == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 p->q = &noop_qdisc;
Thomas Graf758cc432005-06-18 22:52:54 -0700391
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800392 pr_debug("dsmark_init: qdisc %p\n", p->q);
Thomas Graf758cc432005-06-18 22:52:54 -0700393
394 err = 0;
395errout:
Thomas Graf758cc432005-06-18 22:52:54 -0700396 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397}
398
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399static void dsmark_reset(struct Qdisc *sch)
400{
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800401 struct dsmark_qdisc_data *p = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800403 pr_debug("dsmark_reset(sch %p,[qdisc %p])\n", sch, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 qdisc_reset(p->q);
405 sch->q.qlen = 0;
406}
407
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408static void dsmark_destroy(struct Qdisc *sch)
409{
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800410 struct dsmark_qdisc_data *p = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800412 pr_debug("dsmark_destroy(sch %p,[qdisc %p])\n", sch, p);
Thomas Grafaf0d1142005-06-18 22:53:29 -0700413
Patrick McHardyff31ab52008-07-01 19:52:38 -0700414 tcf_destroy_chain(&p->filter_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 qdisc_destroy(p->q);
416 kfree(p->mask);
417}
418
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419static int dsmark_dump_class(struct Qdisc *sch, unsigned long cl,
Thomas Graf02f23f02005-06-18 22:53:12 -0700420 struct sk_buff *skb, struct tcmsg *tcm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421{
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800422 struct dsmark_qdisc_data *p = qdisc_priv(sch);
Patrick McHardy1e904742008-01-22 22:11:17 -0800423 struct nlattr *opts = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800425 pr_debug("dsmark_dump_class(sch %p,[qdisc %p],class %ld\n", sch, p, cl);
Thomas Graf02f23f02005-06-18 22:53:12 -0700426
427 if (!dsmark_valid_index(p, cl))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 return -EINVAL;
Thomas Graf02f23f02005-06-18 22:53:12 -0700429
430 tcm->tcm_handle = TC_H_MAKE(TC_H_MAJ(sch->handle), cl-1);
Patrick McHardycdc7f8e2006-03-20 19:01:06 -0800431 tcm->tcm_info = p->q->handle;
Thomas Graf02f23f02005-06-18 22:53:12 -0700432
Patrick McHardy1e904742008-01-22 22:11:17 -0800433 opts = nla_nest_start(skb, TCA_OPTIONS);
434 if (opts == NULL)
435 goto nla_put_failure;
436 NLA_PUT_U8(skb, TCA_DSMARK_MASK, p->mask[cl-1]);
437 NLA_PUT_U8(skb, TCA_DSMARK_VALUE, p->value[cl-1]);
Thomas Graf02f23f02005-06-18 22:53:12 -0700438
Patrick McHardy1e904742008-01-22 22:11:17 -0800439 return nla_nest_end(skb, opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Patrick McHardy1e904742008-01-22 22:11:17 -0800441nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -0700442 nla_nest_cancel(skb, opts);
443 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444}
445
446static int dsmark_dump(struct Qdisc *sch, struct sk_buff *skb)
447{
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800448 struct dsmark_qdisc_data *p = qdisc_priv(sch);
Patrick McHardy1e904742008-01-22 22:11:17 -0800449 struct nlattr *opts = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Patrick McHardy1e904742008-01-22 22:11:17 -0800451 opts = nla_nest_start(skb, TCA_OPTIONS);
452 if (opts == NULL)
453 goto nla_put_failure;
454 NLA_PUT_U16(skb, TCA_DSMARK_INDICES, p->indices);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Thomas Graf02f23f02005-06-18 22:53:12 -0700456 if (p->default_index != NO_DEFAULT_INDEX)
Patrick McHardy1e904742008-01-22 22:11:17 -0800457 NLA_PUT_U16(skb, TCA_DSMARK_DEFAULT_INDEX, p->default_index);
Thomas Graf02f23f02005-06-18 22:53:12 -0700458
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 if (p->set_tc_index)
Patrick McHardy1e904742008-01-22 22:11:17 -0800460 NLA_PUT_FLAG(skb, TCA_DSMARK_SET_TC_INDEX);
Thomas Graf02f23f02005-06-18 22:53:12 -0700461
Patrick McHardy1e904742008-01-22 22:11:17 -0800462 return nla_nest_end(skb, opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Patrick McHardy1e904742008-01-22 22:11:17 -0800464nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -0700465 nla_nest_cancel(skb, opts);
466 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467}
468
Eric Dumazet20fea082007-11-14 01:44:41 -0800469static const struct Qdisc_class_ops dsmark_class_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 .graft = dsmark_graft,
471 .leaf = dsmark_leaf,
472 .get = dsmark_get,
473 .put = dsmark_put,
474 .change = dsmark_change,
475 .delete = dsmark_delete,
476 .walk = dsmark_walk,
477 .tcf_chain = dsmark_find_tcf,
478 .bind_tcf = dsmark_bind_filter,
479 .unbind_tcf = dsmark_put,
480 .dump = dsmark_dump_class,
481};
482
Eric Dumazet20fea082007-11-14 01:44:41 -0800483static struct Qdisc_ops dsmark_qdisc_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 .next = NULL,
485 .cl_ops = &dsmark_class_ops,
486 .id = "dsmark",
487 .priv_size = sizeof(struct dsmark_qdisc_data),
488 .enqueue = dsmark_enqueue,
489 .dequeue = dsmark_dequeue,
Jarek Poplawski8e3af972008-10-31 00:45:55 -0700490 .peek = dsmark_peek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 .drop = dsmark_drop,
492 .init = dsmark_init,
493 .reset = dsmark_reset,
494 .destroy = dsmark_destroy,
495 .change = NULL,
496 .dump = dsmark_dump,
497 .owner = THIS_MODULE,
498};
499
500static int __init dsmark_module_init(void)
501{
502 return register_qdisc(&dsmark_qdisc_ops);
503}
Thomas Grafaf0d1142005-06-18 22:53:29 -0700504
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900505static void __exit dsmark_module_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506{
507 unregister_qdisc(&dsmark_qdisc_ops);
508}
Thomas Grafaf0d1142005-06-18 22:53:29 -0700509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510module_init(dsmark_module_init)
511module_exit(dsmark_module_exit)
Thomas Grafaf0d1142005-06-18 22:53:29 -0700512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513MODULE_LICENSE("GPL");