blob: f357f34d02d2a5e9f4ead0ebe77ec44dca79f89a [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
Eric Dumazet47bbbb32015-09-17 16:37:13 -070038struct mask_value {
39 u8 mask;
40 u8 value;
41};
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043struct dsmark_qdisc_data {
44 struct Qdisc *q;
John Fastabend25d8c0d2014-09-12 20:05:27 -070045 struct tcf_proto __rcu *filter_list;
Eric Dumazet47bbbb32015-09-17 16:37:13 -070046 struct mask_value *mv;
Thomas Grafaf0d1142005-06-18 22:53:29 -070047 u16 indices;
Eric Dumazet47bbbb32015-09-17 16:37:13 -070048 u8 set_tc_index;
Thomas Grafaf0d1142005-06-18 22:53:29 -070049 u32 default_index; /* index range is 0...0xffff */
Eric Dumazet47bbbb32015-09-17 16:37:13 -070050#define DSMARK_EMBEDDED_SZ 16
51 struct mask_value embedded[DSMARK_EMBEDDED_SZ];
Linus Torvalds1da177e2005-04-16 15:20:36 -070052};
53
Thomas Graf758cc432005-06-18 22:52:54 -070054static inline int dsmark_valid_index(struct dsmark_qdisc_data *p, u16 index)
55{
Yang Yingliang17569fa2013-12-10 20:55:29 +080056 return index <= p->indices && index > 0;
Thomas Graf758cc432005-06-18 22:52:54 -070057}
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59/* ------------------------- Class/flow operations ------------------------- */
60
Thomas Grafaf0d1142005-06-18 22:53:29 -070061static int dsmark_graft(struct Qdisc *sch, unsigned long arg,
62 struct Qdisc *new, struct Qdisc **old)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063{
Stephen Hemminger81da99e2008-01-21 00:50:09 -080064 struct dsmark_qdisc_data *p = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Yang Yingliangc76f2a22013-12-23 17:39:00 +080066 pr_debug("%s(sch %p,[qdisc %p],new %p,old %p)\n",
67 __func__, sch, p, new, old);
Thomas Graf486b53e2005-05-31 15:16:52 -070068
69 if (new == NULL) {
Changli Gao3511c912010-10-16 13:04:08 +000070 new = qdisc_create_dflt(sch->dev_queue, &pfifo_qdisc_ops,
Patrick McHardy9f9afec2006-11-29 17:35:18 -080071 sch->handle);
Thomas Graf486b53e2005-05-31 15:16:52 -070072 if (new == NULL)
73 new = &noop_qdisc;
74 }
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 sch_tree_lock(sch);
Patrick McHardyb94c8af2008-11-20 04:11:36 -080077 *old = p->q;
78 p->q = new;
Patrick McHardy5e50da02006-11-29 17:36:20 -080079 qdisc_tree_decrease_qlen(*old, (*old)->q.qlen);
Thomas Grafaf0d1142005-06-18 22:53:29 -070080 qdisc_reset(*old);
Thomas Grafaf0d1142005-06-18 22:53:29 -070081 sch_tree_unlock(sch);
82
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +090083 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084}
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086static struct Qdisc *dsmark_leaf(struct Qdisc *sch, unsigned long arg)
87{
Stephen Hemminger81da99e2008-01-21 00:50:09 -080088 struct dsmark_qdisc_data *p = qdisc_priv(sch);
89 return p->q;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090}
91
Thomas Grafaf0d1142005-06-18 22:53:29 -070092static unsigned long dsmark_get(struct Qdisc *sch, u32 classid)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093{
Yang Yingliangc76f2a22013-12-23 17:39:00 +080094 pr_debug("%s(sch %p,[qdisc %p],classid %x)\n",
95 __func__, sch, qdisc_priv(sch), classid);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Thomas Grafaf0d1142005-06-18 22:53:29 -070097 return TC_H_MIN(classid) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098}
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100static unsigned long dsmark_bind_filter(struct Qdisc *sch,
Thomas Grafaf0d1142005-06-18 22:53:29 -0700101 unsigned long parent, u32 classid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102{
Thomas Grafaf0d1142005-06-18 22:53:29 -0700103 return dsmark_get(sch, classid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104}
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106static void dsmark_put(struct Qdisc *sch, unsigned long cl)
107{
108}
109
Patrick McHardy27a34212008-01-23 20:35:39 -0800110static const struct nla_policy dsmark_policy[TCA_DSMARK_MAX + 1] = {
111 [TCA_DSMARK_INDICES] = { .type = NLA_U16 },
112 [TCA_DSMARK_DEFAULT_INDEX] = { .type = NLA_U16 },
113 [TCA_DSMARK_SET_TC_INDEX] = { .type = NLA_FLAG },
114 [TCA_DSMARK_MASK] = { .type = NLA_U8 },
115 [TCA_DSMARK_VALUE] = { .type = NLA_U8 },
116};
117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118static int dsmark_change(struct Qdisc *sch, u32 classid, u32 parent,
Patrick McHardy1e904742008-01-22 22:11:17 -0800119 struct nlattr **tca, unsigned long *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800121 struct dsmark_qdisc_data *p = qdisc_priv(sch);
Patrick McHardy1e904742008-01-22 22:11:17 -0800122 struct nlattr *opt = tca[TCA_OPTIONS];
123 struct nlattr *tb[TCA_DSMARK_MAX + 1];
Thomas Graf758cc432005-06-18 22:52:54 -0700124 int err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Yang Yingliangc76f2a22013-12-23 17:39:00 +0800126 pr_debug("%s(sch %p,[qdisc %p],classid %x,parent %x), arg 0x%lx\n",
127 __func__, sch, p, classid, parent, *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Thomas Graf758cc432005-06-18 22:52:54 -0700129 if (!dsmark_valid_index(p, *arg)) {
130 err = -ENOENT;
Patrick McHardy1e904742008-01-22 22:11:17 -0800131 goto errout;
Thomas Graf758cc432005-06-18 22:52:54 -0700132 }
133
Patrick McHardycee63722008-01-23 20:33:32 -0800134 if (!opt)
Patrick McHardy1e904742008-01-22 22:11:17 -0800135 goto errout;
Thomas Graf758cc432005-06-18 22:52:54 -0700136
Patrick McHardy27a34212008-01-23 20:35:39 -0800137 err = nla_parse_nested(tb, TCA_DSMARK_MAX, opt, dsmark_policy);
Patrick McHardycee63722008-01-23 20:33:32 -0800138 if (err < 0)
Patrick McHardy27a34212008-01-23 20:35:39 -0800139 goto errout;
Patrick McHardycee63722008-01-23 20:33:32 -0800140
Patrick McHardy27a34212008-01-23 20:35:39 -0800141 if (tb[TCA_DSMARK_VALUE])
Eric Dumazet47bbbb32015-09-17 16:37:13 -0700142 p->mv[*arg - 1].value = nla_get_u8(tb[TCA_DSMARK_VALUE]);
Thomas Graf758cc432005-06-18 22:52:54 -0700143
Patrick McHardy1e904742008-01-22 22:11:17 -0800144 if (tb[TCA_DSMARK_MASK])
Eric Dumazet47bbbb32015-09-17 16:37:13 -0700145 p->mv[*arg - 1].mask = nla_get_u8(tb[TCA_DSMARK_MASK]);
Thomas Graf758cc432005-06-18 22:52:54 -0700146
147 err = 0;
148
Patrick McHardy1e904742008-01-22 22:11:17 -0800149errout:
Thomas Graf758cc432005-06-18 22:52:54 -0700150 return err;
151}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Thomas Grafaf0d1142005-06-18 22:53:29 -0700153static int dsmark_delete(struct Qdisc *sch, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800155 struct dsmark_qdisc_data *p = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Thomas Grafaf0d1142005-06-18 22:53:29 -0700157 if (!dsmark_valid_index(p, arg))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 return -EINVAL;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900159
Eric Dumazet47bbbb32015-09-17 16:37:13 -0700160 p->mv[arg - 1].mask = 0xff;
161 p->mv[arg - 1].value = 0;
Thomas Grafaf0d1142005-06-18 22:53:29 -0700162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 return 0;
164}
165
Stephen Hemminger9d127fb2008-01-21 02:24:21 -0800166static void dsmark_walk(struct Qdisc *sch, struct qdisc_walker *walker)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167{
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800168 struct dsmark_qdisc_data *p = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 int i;
170
Yang Yingliangc76f2a22013-12-23 17:39:00 +0800171 pr_debug("%s(sch %p,[qdisc %p],walker %p)\n",
172 __func__, sch, p, walker);
Thomas Grafaf0d1142005-06-18 22:53:29 -0700173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 if (walker->stop)
175 return;
Thomas Grafaf0d1142005-06-18 22:53:29 -0700176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 for (i = 0; i < p->indices; i++) {
Eric Dumazet47bbbb32015-09-17 16:37:13 -0700178 if (p->mv[i].mask == 0xff && !p->mv[i].value)
Thomas Graf0451eb02005-05-31 15:15:58 -0700179 goto ignore;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 if (walker->count >= walker->skip) {
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000181 if (walker->fn(sch, i + 1, walker) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 walker->stop = 1;
183 break;
184 }
185 }
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900186ignore:
Thomas Graf0451eb02005-05-31 15:15:58 -0700187 walker->count++;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900188 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189}
190
John Fastabend25d8c0d2014-09-12 20:05:27 -0700191static inline struct tcf_proto __rcu **dsmark_find_tcf(struct Qdisc *sch,
192 unsigned long cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193{
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800194 struct dsmark_qdisc_data *p = qdisc_priv(sch);
195 return &p->filter_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196}
197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198/* --------------------------- Qdisc operations ---------------------------- */
199
Stephen Hemminger9d127fb2008-01-21 02:24:21 -0800200static int dsmark_enqueue(struct sk_buff *skb, struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201{
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800202 struct dsmark_qdisc_data *p = qdisc_priv(sch);
Thomas Grafaf0d1142005-06-18 22:53:29 -0700203 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Yang Yingliangc76f2a22013-12-23 17:39:00 +0800205 pr_debug("%s(skb %p,sch %p,[qdisc %p])\n", __func__, skb, sch, p);
Thomas Grafaf0d1142005-06-18 22:53:29 -0700206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 if (p->set_tc_index) {
Jiri Pirkod8b96052015-01-13 17:13:43 +0100208 switch (tc_skb_protocol(skb)) {
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -0700209 case htons(ETH_P_IP):
Stephen Hemminger9d127fb2008-01-21 02:24:21 -0800210 if (skb_cow_head(skb, sizeof(struct iphdr)))
211 goto drop;
Stephen Hemminger4c307192008-01-21 02:23:49 -0800212
Stephen Hemminger9d127fb2008-01-21 02:24:21 -0800213 skb->tc_index = ipv4_get_dsfield(ip_hdr(skb))
214 & ~INET_ECN_MASK;
215 break;
Stephen Hemminger4c307192008-01-21 02:23:49 -0800216
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -0700217 case htons(ETH_P_IPV6):
Stephen Hemminger9d127fb2008-01-21 02:24:21 -0800218 if (skb_cow_head(skb, sizeof(struct ipv6hdr)))
219 goto drop;
Stephen Hemminger4c307192008-01-21 02:23:49 -0800220
Stephen Hemminger9d127fb2008-01-21 02:24:21 -0800221 skb->tc_index = ipv6_get_dsfield(ipv6_hdr(skb))
222 & ~INET_ECN_MASK;
223 break;
224 default:
225 skb->tc_index = 0;
226 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700227 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 }
Thomas Grafaf0d1142005-06-18 22:53:29 -0700229
230 if (TC_H_MAJ(skb->priority) == sch->handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 skb->tc_index = TC_H_MIN(skb->priority);
Thomas Grafaf0d1142005-06-18 22:53:29 -0700232 else {
233 struct tcf_result res;
John Fastabend25d8c0d2014-09-12 20:05:27 -0700234 struct tcf_proto *fl = rcu_dereference_bh(p->filter_list);
Daniel Borkmann3b3ae882015-08-26 23:00:06 +0200235 int result = tc_classify(skb, fl, &res, false);
Thomas Grafaf0d1142005-06-18 22:53:29 -0700236
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800237 pr_debug("result %d class 0x%04x\n", result, res.classid);
Thomas Grafaf0d1142005-06-18 22:53:29 -0700238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 switch (result) {
Patrick McHardyf6853e22007-07-15 00:02:10 -0700240#ifdef CONFIG_NET_CLS_ACT
241 case TC_ACT_QUEUED:
242 case TC_ACT_STOLEN:
243 kfree_skb(skb);
Jarek Poplawski378a2f02008-08-04 22:31:03 -0700244 return NET_XMIT_SUCCESS | __NET_XMIT_STOLEN;
Stephen Hemminger4c307192008-01-21 02:23:49 -0800245
Patrick McHardyf6853e22007-07-15 00:02:10 -0700246 case TC_ACT_SHOT:
Stephen Hemminger4c307192008-01-21 02:23:49 -0800247 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248#endif
Patrick McHardyc3bc7cf2007-07-15 00:03:05 -0700249 case TC_ACT_OK:
Patrick McHardyf6853e22007-07-15 00:02:10 -0700250 skb->tc_index = TC_H_MIN(res.classid);
251 break;
Stephen Hemminger4c307192008-01-21 02:23:49 -0800252
Patrick McHardyf6853e22007-07-15 00:02:10 -0700253 default:
254 if (p->default_index != NO_DEFAULT_INDEX)
255 skb->tc_index = p->default_index;
256 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700257 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Jussi Kivilinna5f861732008-07-20 00:08:04 -0700260 err = qdisc_enqueue(skb, p->q);
Thomas Grafaf0d1142005-06-18 22:53:29 -0700261 if (err != NET_XMIT_SUCCESS) {
Jarek Poplawski378a2f02008-08-04 22:31:03 -0700262 if (net_xmit_drop_count(err))
John Fastabend25331d62014-09-28 11:53:29 -0700263 qdisc_qstats_drop(sch);
Thomas Grafaf0d1142005-06-18 22:53:29 -0700264 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 }
Thomas Grafaf0d1142005-06-18 22:53:29 -0700266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 sch->q.qlen++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Thomas Grafaf0d1142005-06-18 22:53:29 -0700269 return NET_XMIT_SUCCESS;
Stephen Hemminger4c307192008-01-21 02:23:49 -0800270
271drop:
Eric Dumazet17045752012-05-04 04:37:21 +0000272 qdisc_drop(skb, sch);
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
Yang Yingliangc76f2a22013-12-23 17:39:00 +0800282 pr_debug("%s(sch %p,[qdisc %p])\n", __func__, 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
Eric Dumazet9190b3b2011-01-20 23:31:33 -0800288 qdisc_bstats_update(sch, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 sch->q.qlen--;
Thomas Grafaf0d1142005-06-18 22:53:29 -0700290
291 index = skb->tc_index & (p->indices - 1);
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800292 pr_debug("index %d->%d\n", skb->tc_index, index);
Thomas Grafaf0d1142005-06-18 22:53:29 -0700293
Jiri Pirkod8b96052015-01-13 17:13:43 +0100294 switch (tc_skb_protocol(skb)) {
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -0700295 case htons(ETH_P_IP):
Eric Dumazet47bbbb32015-09-17 16:37:13 -0700296 ipv4_change_dsfield(ip_hdr(skb), p->mv[index].mask,
297 p->mv[index].value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 break;
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -0700299 case htons(ETH_P_IPV6):
Eric Dumazet47bbbb32015-09-17 16:37:13 -0700300 ipv6_change_dsfield(ipv6_hdr(skb), p->mv[index].mask,
301 p->mv[index].value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 break;
Stephen Hemminger9d127fb2008-01-21 02:24:21 -0800303 default:
304 /*
305 * Only complain if a change was actually attempted.
306 * This way, we can send non-IP traffic through dsmark
307 * and don't need yet another qdisc as a bypass.
308 */
Eric Dumazet47bbbb32015-09-17 16:37:13 -0700309 if (p->mv[index].mask != 0xff || p->mv[index].value)
Yang Yingliangc76f2a22013-12-23 17:39:00 +0800310 pr_warn("%s: unsupported protocol %d\n",
Jiri Pirkod8b96052015-01-13 17:13:43 +0100311 __func__, ntohs(tc_skb_protocol(skb)));
Stephen Hemminger9d127fb2008-01-21 02:24:21 -0800312 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
Yang Yingliangc76f2a22013-12-23 17:39:00 +0800322 pr_debug("%s(sch %p,[qdisc %p])\n", __func__, sch, p);
Jarek Poplawski8e3af972008-10-31 00:45:55 -0700323
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
Yang Yingliangc76f2a22013-12-23 17:39:00 +0800332 pr_debug("%s(sch %p,[qdisc %p])\n", __func__, 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;
Eric Dumazet47bbbb32015-09-17 16:37:13 -0700351 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
Yang Yingliangc76f2a22013-12-23 17:39:00 +0800353 pr_debug("%s(sch %p,[qdisc %p],opt %p)\n", __func__, 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
Eric Dumazet47bbbb32015-09-17 16:37:13 -0700371 if (indices <= DSMARK_EMBEDDED_SZ)
372 p->mv = p->embedded;
373 else
374 p->mv = kmalloc_array(indices, sizeof(*p->mv), GFP_KERNEL);
375 if (!p->mv) {
Thomas Graf758cc432005-06-18 22:52:54 -0700376 err = -ENOMEM;
377 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 }
Eric Dumazet47bbbb32015-09-17 16:37:13 -0700379 for (i = 0; i < indices; i++) {
380 p->mv[i].mask = 0xff;
381 p->mv[i].value = 0;
382 }
Thomas Graf758cc432005-06-18 22:52:54 -0700383 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
Changli Gao3511c912010-10-16 13:04:08 +0000387 p->q = qdisc_create_dflt(sch->dev_queue, &pfifo_qdisc_ops, sch->handle);
Thomas Graf758cc432005-06-18 22:52:54 -0700388 if (p->q == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 p->q = &noop_qdisc;
Thomas Graf758cc432005-06-18 22:52:54 -0700390
Yang Yingliangc76f2a22013-12-23 17:39:00 +0800391 pr_debug("%s: qdisc %p\n", __func__, p->q);
Thomas Graf758cc432005-06-18 22:52:54 -0700392
393 err = 0;
394errout:
Thomas Graf758cc432005-06-18 22:52:54 -0700395 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396}
397
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398static void dsmark_reset(struct Qdisc *sch)
399{
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800400 struct dsmark_qdisc_data *p = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Yang Yingliangc76f2a22013-12-23 17:39:00 +0800402 pr_debug("%s(sch %p,[qdisc %p])\n", __func__, sch, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 qdisc_reset(p->q);
404 sch->q.qlen = 0;
405}
406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407static void dsmark_destroy(struct Qdisc *sch)
408{
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800409 struct dsmark_qdisc_data *p = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Yang Yingliangc76f2a22013-12-23 17:39:00 +0800411 pr_debug("%s(sch %p,[qdisc %p])\n", __func__, sch, p);
Thomas Grafaf0d1142005-06-18 22:53:29 -0700412
Patrick McHardyff31ab52008-07-01 19:52:38 -0700413 tcf_destroy_chain(&p->filter_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 qdisc_destroy(p->q);
Eric Dumazet47bbbb32015-09-17 16:37:13 -0700415 if (p->mv != p->embedded)
416 kfree(p->mv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417}
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
Yang Yingliangc76f2a22013-12-23 17:39:00 +0800425 pr_debug("%s(sch %p,[qdisc %p],class %ld\n", __func__, 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
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000430 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;
Eric Dumazet47bbbb32015-09-17 16:37:13 -0700436 if (nla_put_u8(skb, TCA_DSMARK_MASK, p->mv[cl - 1].mask) ||
437 nla_put_u8(skb, TCA_DSMARK_VALUE, p->mv[cl - 1].value))
David S. Miller1b34ec42012-03-29 05:11:39 -0400438 goto nla_put_failure;
Thomas Graf02f23f02005-06-18 22:53:12 -0700439
Patrick McHardy1e904742008-01-22 22:11:17 -0800440 return nla_nest_end(skb, opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Patrick McHardy1e904742008-01-22 22:11:17 -0800442nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -0700443 nla_nest_cancel(skb, opts);
444 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445}
446
447static int dsmark_dump(struct Qdisc *sch, struct sk_buff *skb)
448{
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800449 struct dsmark_qdisc_data *p = qdisc_priv(sch);
Patrick McHardy1e904742008-01-22 22:11:17 -0800450 struct nlattr *opts = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
Patrick McHardy1e904742008-01-22 22:11:17 -0800452 opts = nla_nest_start(skb, TCA_OPTIONS);
453 if (opts == NULL)
454 goto nla_put_failure;
David S. Miller1b34ec42012-03-29 05:11:39 -0400455 if (nla_put_u16(skb, TCA_DSMARK_INDICES, p->indices))
456 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
David S. Miller1b34ec42012-03-29 05:11:39 -0400458 if (p->default_index != NO_DEFAULT_INDEX &&
459 nla_put_u16(skb, TCA_DSMARK_DEFAULT_INDEX, p->default_index))
460 goto nla_put_failure;
Thomas Graf02f23f02005-06-18 22:53:12 -0700461
David S. Miller1b34ec42012-03-29 05:11:39 -0400462 if (p->set_tc_index &&
463 nla_put_flag(skb, TCA_DSMARK_SET_TC_INDEX))
464 goto nla_put_failure;
Thomas Graf02f23f02005-06-18 22:53:12 -0700465
Patrick McHardy1e904742008-01-22 22:11:17 -0800466 return nla_nest_end(skb, opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
Patrick McHardy1e904742008-01-22 22:11:17 -0800468nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -0700469 nla_nest_cancel(skb, opts);
470 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471}
472
Eric Dumazet20fea082007-11-14 01:44:41 -0800473static const struct Qdisc_class_ops dsmark_class_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 .graft = dsmark_graft,
475 .leaf = dsmark_leaf,
476 .get = dsmark_get,
477 .put = dsmark_put,
478 .change = dsmark_change,
479 .delete = dsmark_delete,
480 .walk = dsmark_walk,
481 .tcf_chain = dsmark_find_tcf,
482 .bind_tcf = dsmark_bind_filter,
483 .unbind_tcf = dsmark_put,
484 .dump = dsmark_dump_class,
485};
486
Eric Dumazet20fea082007-11-14 01:44:41 -0800487static struct Qdisc_ops dsmark_qdisc_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 .next = NULL,
489 .cl_ops = &dsmark_class_ops,
490 .id = "dsmark",
491 .priv_size = sizeof(struct dsmark_qdisc_data),
492 .enqueue = dsmark_enqueue,
493 .dequeue = dsmark_dequeue,
Jarek Poplawski8e3af972008-10-31 00:45:55 -0700494 .peek = dsmark_peek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 .drop = dsmark_drop,
496 .init = dsmark_init,
497 .reset = dsmark_reset,
498 .destroy = dsmark_destroy,
499 .change = NULL,
500 .dump = dsmark_dump,
501 .owner = THIS_MODULE,
502};
503
504static int __init dsmark_module_init(void)
505{
506 return register_qdisc(&dsmark_qdisc_ops);
507}
Thomas Grafaf0d1142005-06-18 22:53:29 -0700508
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900509static void __exit dsmark_module_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510{
511 unregister_qdisc(&dsmark_qdisc_ops);
512}
Thomas Grafaf0d1142005-06-18 22:53:29 -0700513
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514module_init(dsmark_module_init)
515module_exit(dsmark_module_exit)
Thomas Grafaf0d1142005-06-18 22:53:29 -0700516
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517MODULE_LICENSE("GPL");