blob: cfddb1c635c332f89000e83667f9ab1bc98c174d [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 Graf758cc43c2005-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 Graf758cc43c2005-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
WANG Cong86a79962016-02-25 14:55:00 -080076 *old = qdisc_replace(sch, new, &p->q);
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +090077 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078}
79
Linus Torvalds1da177e2005-04-16 15:20:36 -070080static struct Qdisc *dsmark_leaf(struct Qdisc *sch, unsigned long arg)
81{
Stephen Hemminger81da99e2008-01-21 00:50:09 -080082 struct dsmark_qdisc_data *p = qdisc_priv(sch);
83 return p->q;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084}
85
Thomas Grafaf0d1142005-06-18 22:53:29 -070086static unsigned long dsmark_get(struct Qdisc *sch, u32 classid)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087{
Yang Yingliangc76f2a22013-12-23 17:39:00 +080088 pr_debug("%s(sch %p,[qdisc %p],classid %x)\n",
89 __func__, sch, qdisc_priv(sch), classid);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Thomas Grafaf0d1142005-06-18 22:53:29 -070091 return TC_H_MIN(classid) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092}
93
Linus Torvalds1da177e2005-04-16 15:20:36 -070094static unsigned long dsmark_bind_filter(struct Qdisc *sch,
Thomas Grafaf0d1142005-06-18 22:53:29 -070095 unsigned long parent, u32 classid)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096{
Thomas Grafaf0d1142005-06-18 22:53:29 -070097 return dsmark_get(sch, classid);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098}
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100static void dsmark_put(struct Qdisc *sch, unsigned long cl)
101{
102}
103
Patrick McHardy27a34212008-01-23 20:35:39 -0800104static const struct nla_policy dsmark_policy[TCA_DSMARK_MAX + 1] = {
105 [TCA_DSMARK_INDICES] = { .type = NLA_U16 },
106 [TCA_DSMARK_DEFAULT_INDEX] = { .type = NLA_U16 },
107 [TCA_DSMARK_SET_TC_INDEX] = { .type = NLA_FLAG },
108 [TCA_DSMARK_MASK] = { .type = NLA_U8 },
109 [TCA_DSMARK_VALUE] = { .type = NLA_U8 },
110};
111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112static int dsmark_change(struct Qdisc *sch, u32 classid, u32 parent,
Patrick McHardy1e904742008-01-22 22:11:17 -0800113 struct nlattr **tca, unsigned long *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800115 struct dsmark_qdisc_data *p = qdisc_priv(sch);
Patrick McHardy1e904742008-01-22 22:11:17 -0800116 struct nlattr *opt = tca[TCA_OPTIONS];
117 struct nlattr *tb[TCA_DSMARK_MAX + 1];
Thomas Graf758cc43c2005-06-18 22:52:54 -0700118 int err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Yang Yingliangc76f2a22013-12-23 17:39:00 +0800120 pr_debug("%s(sch %p,[qdisc %p],classid %x,parent %x), arg 0x%lx\n",
121 __func__, sch, p, classid, parent, *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Thomas Graf758cc43c2005-06-18 22:52:54 -0700123 if (!dsmark_valid_index(p, *arg)) {
124 err = -ENOENT;
Patrick McHardy1e904742008-01-22 22:11:17 -0800125 goto errout;
Thomas Graf758cc43c2005-06-18 22:52:54 -0700126 }
127
Patrick McHardycee63722008-01-23 20:33:32 -0800128 if (!opt)
Patrick McHardy1e904742008-01-22 22:11:17 -0800129 goto errout;
Thomas Graf758cc43c2005-06-18 22:52:54 -0700130
Patrick McHardy27a34212008-01-23 20:35:39 -0800131 err = nla_parse_nested(tb, TCA_DSMARK_MAX, opt, dsmark_policy);
Patrick McHardycee63722008-01-23 20:33:32 -0800132 if (err < 0)
Patrick McHardy27a34212008-01-23 20:35:39 -0800133 goto errout;
Patrick McHardycee63722008-01-23 20:33:32 -0800134
Patrick McHardy27a34212008-01-23 20:35:39 -0800135 if (tb[TCA_DSMARK_VALUE])
Eric Dumazet47bbbb32015-09-17 16:37:13 -0700136 p->mv[*arg - 1].value = nla_get_u8(tb[TCA_DSMARK_VALUE]);
Thomas Graf758cc43c2005-06-18 22:52:54 -0700137
Patrick McHardy1e904742008-01-22 22:11:17 -0800138 if (tb[TCA_DSMARK_MASK])
Eric Dumazet47bbbb32015-09-17 16:37:13 -0700139 p->mv[*arg - 1].mask = nla_get_u8(tb[TCA_DSMARK_MASK]);
Thomas Graf758cc43c2005-06-18 22:52:54 -0700140
141 err = 0;
142
Patrick McHardy1e904742008-01-22 22:11:17 -0800143errout:
Thomas Graf758cc43c2005-06-18 22:52:54 -0700144 return err;
145}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Thomas Grafaf0d1142005-06-18 22:53:29 -0700147static int dsmark_delete(struct Qdisc *sch, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800149 struct dsmark_qdisc_data *p = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Thomas Grafaf0d1142005-06-18 22:53:29 -0700151 if (!dsmark_valid_index(p, arg))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 return -EINVAL;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900153
Eric Dumazet47bbbb32015-09-17 16:37:13 -0700154 p->mv[arg - 1].mask = 0xff;
155 p->mv[arg - 1].value = 0;
Thomas Grafaf0d1142005-06-18 22:53:29 -0700156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 return 0;
158}
159
Stephen Hemminger9d127fb2008-01-21 02:24:21 -0800160static void dsmark_walk(struct Qdisc *sch, struct qdisc_walker *walker)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800162 struct dsmark_qdisc_data *p = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 int i;
164
Yang Yingliangc76f2a22013-12-23 17:39:00 +0800165 pr_debug("%s(sch %p,[qdisc %p],walker %p)\n",
166 __func__, sch, p, walker);
Thomas Grafaf0d1142005-06-18 22:53:29 -0700167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 if (walker->stop)
169 return;
Thomas Grafaf0d1142005-06-18 22:53:29 -0700170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 for (i = 0; i < p->indices; i++) {
Eric Dumazet47bbbb32015-09-17 16:37:13 -0700172 if (p->mv[i].mask == 0xff && !p->mv[i].value)
Thomas Graf0451eb02005-05-31 15:15:58 -0700173 goto ignore;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 if (walker->count >= walker->skip) {
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000175 if (walker->fn(sch, i + 1, walker) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 walker->stop = 1;
177 break;
178 }
179 }
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900180ignore:
Thomas Graf0451eb02005-05-31 15:15:58 -0700181 walker->count++;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900182 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183}
184
John Fastabend25d8c0d2014-09-12 20:05:27 -0700185static inline struct tcf_proto __rcu **dsmark_find_tcf(struct Qdisc *sch,
186 unsigned long cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187{
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800188 struct dsmark_qdisc_data *p = qdisc_priv(sch);
189 return &p->filter_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190}
191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192/* --------------------------- Qdisc operations ---------------------------- */
193
Stephen Hemminger9d127fb2008-01-21 02:24:21 -0800194static int dsmark_enqueue(struct sk_buff *skb, struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800196 struct dsmark_qdisc_data *p = qdisc_priv(sch);
Thomas Grafaf0d1142005-06-18 22:53:29 -0700197 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Yang Yingliangc76f2a22013-12-23 17:39:00 +0800199 pr_debug("%s(skb %p,sch %p,[qdisc %p])\n", __func__, skb, sch, p);
Thomas Grafaf0d1142005-06-18 22:53:29 -0700200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 if (p->set_tc_index) {
Jiri Pirkod8b96052015-01-13 17:13:43 +0100202 switch (tc_skb_protocol(skb)) {
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -0700203 case htons(ETH_P_IP):
Stephen Hemminger9d127fb2008-01-21 02:24:21 -0800204 if (skb_cow_head(skb, sizeof(struct iphdr)))
205 goto drop;
Stephen Hemminger4c307192008-01-21 02:23:49 -0800206
Stephen Hemminger9d127fb2008-01-21 02:24:21 -0800207 skb->tc_index = ipv4_get_dsfield(ip_hdr(skb))
208 & ~INET_ECN_MASK;
209 break;
Stephen Hemminger4c307192008-01-21 02:23:49 -0800210
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -0700211 case htons(ETH_P_IPV6):
Stephen Hemminger9d127fb2008-01-21 02:24:21 -0800212 if (skb_cow_head(skb, sizeof(struct ipv6hdr)))
213 goto drop;
Stephen Hemminger4c307192008-01-21 02:23:49 -0800214
Stephen Hemminger9d127fb2008-01-21 02:24:21 -0800215 skb->tc_index = ipv6_get_dsfield(ipv6_hdr(skb))
216 & ~INET_ECN_MASK;
217 break;
218 default:
219 skb->tc_index = 0;
220 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700221 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 }
Thomas Grafaf0d1142005-06-18 22:53:29 -0700223
224 if (TC_H_MAJ(skb->priority) == sch->handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 skb->tc_index = TC_H_MIN(skb->priority);
Thomas Grafaf0d1142005-06-18 22:53:29 -0700226 else {
227 struct tcf_result res;
John Fastabend25d8c0d2014-09-12 20:05:27 -0700228 struct tcf_proto *fl = rcu_dereference_bh(p->filter_list);
Daniel Borkmann3b3ae882015-08-26 23:00:06 +0200229 int result = tc_classify(skb, fl, &res, false);
Thomas Grafaf0d1142005-06-18 22:53:29 -0700230
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800231 pr_debug("result %d class 0x%04x\n", result, res.classid);
Thomas Grafaf0d1142005-06-18 22:53:29 -0700232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 switch (result) {
Patrick McHardyf6853e22007-07-15 00:02:10 -0700234#ifdef CONFIG_NET_CLS_ACT
235 case TC_ACT_QUEUED:
236 case TC_ACT_STOLEN:
237 kfree_skb(skb);
Jarek Poplawski378a2f02008-08-04 22:31:03 -0700238 return NET_XMIT_SUCCESS | __NET_XMIT_STOLEN;
Stephen Hemminger4c307192008-01-21 02:23:49 -0800239
Patrick McHardyf6853e22007-07-15 00:02:10 -0700240 case TC_ACT_SHOT:
Stephen Hemminger4c307192008-01-21 02:23:49 -0800241 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242#endif
Patrick McHardyc3bc7cf2007-07-15 00:03:05 -0700243 case TC_ACT_OK:
Patrick McHardyf6853e22007-07-15 00:02:10 -0700244 skb->tc_index = TC_H_MIN(res.classid);
245 break;
Stephen Hemminger4c307192008-01-21 02:23:49 -0800246
Patrick McHardyf6853e22007-07-15 00:02:10 -0700247 default:
248 if (p->default_index != NO_DEFAULT_INDEX)
249 skb->tc_index = p->default_index;
250 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700251 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Jussi Kivilinna5f861732008-07-20 00:08:04 -0700254 err = qdisc_enqueue(skb, p->q);
Thomas Grafaf0d1142005-06-18 22:53:29 -0700255 if (err != NET_XMIT_SUCCESS) {
Jarek Poplawski378a2f02008-08-04 22:31:03 -0700256 if (net_xmit_drop_count(err))
John Fastabend25331d62014-09-28 11:53:29 -0700257 qdisc_qstats_drop(sch);
Thomas Grafaf0d1142005-06-18 22:53:29 -0700258 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 }
Thomas Grafaf0d1142005-06-18 22:53:29 -0700260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 sch->q.qlen++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Thomas Grafaf0d1142005-06-18 22:53:29 -0700263 return NET_XMIT_SUCCESS;
Stephen Hemminger4c307192008-01-21 02:23:49 -0800264
265drop:
Eric Dumazet17045752012-05-04 04:37:21 +0000266 qdisc_drop(skb, sch);
Jarek Poplawskic27f3392008-08-04 22:39:11 -0700267 return NET_XMIT_SUCCESS | __NET_XMIT_BYPASS;
Thomas Grafaf0d1142005-06-18 22:53:29 -0700268}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
270static struct sk_buff *dsmark_dequeue(struct Qdisc *sch)
271{
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800272 struct dsmark_qdisc_data *p = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 struct sk_buff *skb;
Thomas Grafaf0d1142005-06-18 22:53:29 -0700274 u32 index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Yang Yingliangc76f2a22013-12-23 17:39:00 +0800276 pr_debug("%s(sch %p,[qdisc %p])\n", __func__, sch, p);
Thomas Grafaf0d1142005-06-18 22:53:29 -0700277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 skb = p->q->ops->dequeue(p->q);
Thomas Grafaf0d1142005-06-18 22:53:29 -0700279 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 return NULL;
Thomas Grafaf0d1142005-06-18 22:53:29 -0700281
Eric Dumazet9190b3b2011-01-20 23:31:33 -0800282 qdisc_bstats_update(sch, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 sch->q.qlen--;
Thomas Grafaf0d1142005-06-18 22:53:29 -0700284
285 index = skb->tc_index & (p->indices - 1);
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800286 pr_debug("index %d->%d\n", skb->tc_index, index);
Thomas Grafaf0d1142005-06-18 22:53:29 -0700287
Jiri Pirkod8b96052015-01-13 17:13:43 +0100288 switch (tc_skb_protocol(skb)) {
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -0700289 case htons(ETH_P_IP):
Eric Dumazet47bbbb32015-09-17 16:37:13 -0700290 ipv4_change_dsfield(ip_hdr(skb), p->mv[index].mask,
291 p->mv[index].value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 break;
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -0700293 case htons(ETH_P_IPV6):
Eric Dumazet47bbbb32015-09-17 16:37:13 -0700294 ipv6_change_dsfield(ipv6_hdr(skb), p->mv[index].mask,
295 p->mv[index].value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 break;
Stephen Hemminger9d127fb2008-01-21 02:24:21 -0800297 default:
298 /*
299 * Only complain if a change was actually attempted.
300 * This way, we can send non-IP traffic through dsmark
301 * and don't need yet another qdisc as a bypass.
302 */
Eric Dumazet47bbbb32015-09-17 16:37:13 -0700303 if (p->mv[index].mask != 0xff || p->mv[index].value)
Yang Yingliangc76f2a22013-12-23 17:39:00 +0800304 pr_warn("%s: unsupported protocol %d\n",
Jiri Pirkod8b96052015-01-13 17:13:43 +0100305 __func__, ntohs(tc_skb_protocol(skb)));
Stephen Hemminger9d127fb2008-01-21 02:24:21 -0800306 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700307 }
Thomas Grafaf0d1142005-06-18 22:53:29 -0700308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 return skb;
310}
311
Jarek Poplawski8e3af972008-10-31 00:45:55 -0700312static struct sk_buff *dsmark_peek(struct Qdisc *sch)
313{
314 struct dsmark_qdisc_data *p = qdisc_priv(sch);
315
Yang Yingliangc76f2a22013-12-23 17:39:00 +0800316 pr_debug("%s(sch %p,[qdisc %p])\n", __func__, sch, p);
Jarek Poplawski8e3af972008-10-31 00:45:55 -0700317
318 return p->q->ops->peek(p->q);
319}
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321static unsigned int dsmark_drop(struct Qdisc *sch)
322{
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800323 struct dsmark_qdisc_data *p = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 unsigned int len;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900325
Yang Yingliangc76f2a22013-12-23 17:39:00 +0800326 pr_debug("%s(sch %p,[qdisc %p])\n", __func__, sch, p);
Thomas Grafaf0d1142005-06-18 22:53:29 -0700327
328 if (p->q->ops->drop == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 return 0;
Thomas Grafaf0d1142005-06-18 22:53:29 -0700330
331 len = p->q->ops->drop(p->q);
332 if (len)
333 sch->q.qlen--;
334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 return len;
336}
337
Patrick McHardy1e904742008-01-22 22:11:17 -0800338static int dsmark_init(struct Qdisc *sch, struct nlattr *opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339{
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800340 struct dsmark_qdisc_data *p = qdisc_priv(sch);
Patrick McHardy1e904742008-01-22 22:11:17 -0800341 struct nlattr *tb[TCA_DSMARK_MAX + 1];
Thomas Graf758cc43c2005-06-18 22:52:54 -0700342 int err = -EINVAL;
343 u32 default_index = NO_DEFAULT_INDEX;
344 u16 indices;
Eric Dumazet47bbbb32015-09-17 16:37:13 -0700345 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Yang Yingliangc76f2a22013-12-23 17:39:00 +0800347 pr_debug("%s(sch %p,[qdisc %p],opt %p)\n", __func__, sch, p, opt);
Thomas Graf758cc43c2005-06-18 22:52:54 -0700348
Patrick McHardycee63722008-01-23 20:33:32 -0800349 if (!opt)
Thomas Graf758cc43c2005-06-18 22:52:54 -0700350 goto errout;
351
Patrick McHardy27a34212008-01-23 20:35:39 -0800352 err = nla_parse_nested(tb, TCA_DSMARK_MAX, opt, dsmark_policy);
Patrick McHardycee63722008-01-23 20:33:32 -0800353 if (err < 0)
354 goto errout;
355
356 err = -EINVAL;
Patrick McHardy1e904742008-01-22 22:11:17 -0800357 indices = nla_get_u16(tb[TCA_DSMARK_INDICES]);
David S. Miller5b0ac722008-01-21 02:21:45 -0800358
359 if (hweight32(indices) != 1)
Thomas Graf758cc43c2005-06-18 22:52:54 -0700360 goto errout;
361
Patrick McHardy27a34212008-01-23 20:35:39 -0800362 if (tb[TCA_DSMARK_DEFAULT_INDEX])
Patrick McHardy1e904742008-01-22 22:11:17 -0800363 default_index = nla_get_u16(tb[TCA_DSMARK_DEFAULT_INDEX]);
Thomas Graf758cc43c2005-06-18 22:52:54 -0700364
Eric Dumazet47bbbb32015-09-17 16:37:13 -0700365 if (indices <= DSMARK_EMBEDDED_SZ)
366 p->mv = p->embedded;
367 else
368 p->mv = kmalloc_array(indices, sizeof(*p->mv), GFP_KERNEL);
369 if (!p->mv) {
Thomas Graf758cc43c2005-06-18 22:52:54 -0700370 err = -ENOMEM;
371 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 }
Eric Dumazet47bbbb32015-09-17 16:37:13 -0700373 for (i = 0; i < indices; i++) {
374 p->mv[i].mask = 0xff;
375 p->mv[i].value = 0;
376 }
Thomas Graf758cc43c2005-06-18 22:52:54 -0700377 p->indices = indices;
378 p->default_index = default_index;
Patrick McHardy1e904742008-01-22 22:11:17 -0800379 p->set_tc_index = nla_get_flag(tb[TCA_DSMARK_SET_TC_INDEX]);
Thomas Graf758cc43c2005-06-18 22:52:54 -0700380
Changli Gao3511c912010-10-16 13:04:08 +0000381 p->q = qdisc_create_dflt(sch->dev_queue, &pfifo_qdisc_ops, sch->handle);
Thomas Graf758cc43c2005-06-18 22:52:54 -0700382 if (p->q == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 p->q = &noop_qdisc;
Thomas Graf758cc43c2005-06-18 22:52:54 -0700384
Yang Yingliangc76f2a22013-12-23 17:39:00 +0800385 pr_debug("%s: qdisc %p\n", __func__, p->q);
Thomas Graf758cc43c2005-06-18 22:52:54 -0700386
387 err = 0;
388errout:
Thomas Graf758cc43c2005-06-18 22:52:54 -0700389 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390}
391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392static void dsmark_reset(struct Qdisc *sch)
393{
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800394 struct dsmark_qdisc_data *p = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
Yang Yingliangc76f2a22013-12-23 17:39:00 +0800396 pr_debug("%s(sch %p,[qdisc %p])\n", __func__, sch, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 qdisc_reset(p->q);
398 sch->q.qlen = 0;
399}
400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401static void dsmark_destroy(struct Qdisc *sch)
402{
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800403 struct dsmark_qdisc_data *p = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Yang Yingliangc76f2a22013-12-23 17:39:00 +0800405 pr_debug("%s(sch %p,[qdisc %p])\n", __func__, sch, p);
Thomas Grafaf0d1142005-06-18 22:53:29 -0700406
Patrick McHardyff31ab52008-07-01 19:52:38 -0700407 tcf_destroy_chain(&p->filter_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 qdisc_destroy(p->q);
Eric Dumazet47bbbb32015-09-17 16:37:13 -0700409 if (p->mv != p->embedded)
410 kfree(p->mv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411}
412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413static int dsmark_dump_class(struct Qdisc *sch, unsigned long cl,
Thomas Graf02f23f02005-06-18 22:53:12 -0700414 struct sk_buff *skb, struct tcmsg *tcm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415{
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800416 struct dsmark_qdisc_data *p = qdisc_priv(sch);
Patrick McHardy1e904742008-01-22 22:11:17 -0800417 struct nlattr *opts = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Yang Yingliangc76f2a22013-12-23 17:39:00 +0800419 pr_debug("%s(sch %p,[qdisc %p],class %ld\n", __func__, sch, p, cl);
Thomas Graf02f23f02005-06-18 22:53:12 -0700420
421 if (!dsmark_valid_index(p, cl))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 return -EINVAL;
Thomas Graf02f23f02005-06-18 22:53:12 -0700423
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000424 tcm->tcm_handle = TC_H_MAKE(TC_H_MAJ(sch->handle), cl - 1);
Patrick McHardycdc7f8e2006-03-20 19:01:06 -0800425 tcm->tcm_info = p->q->handle;
Thomas Graf02f23f02005-06-18 22:53:12 -0700426
Patrick McHardy1e904742008-01-22 22:11:17 -0800427 opts = nla_nest_start(skb, TCA_OPTIONS);
428 if (opts == NULL)
429 goto nla_put_failure;
Eric Dumazet47bbbb32015-09-17 16:37:13 -0700430 if (nla_put_u8(skb, TCA_DSMARK_MASK, p->mv[cl - 1].mask) ||
431 nla_put_u8(skb, TCA_DSMARK_VALUE, p->mv[cl - 1].value))
David S. Miller1b34ec42012-03-29 05:11:39 -0400432 goto nla_put_failure;
Thomas Graf02f23f02005-06-18 22:53:12 -0700433
Patrick McHardy1e904742008-01-22 22:11:17 -0800434 return nla_nest_end(skb, opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
Patrick McHardy1e904742008-01-22 22:11:17 -0800436nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -0700437 nla_nest_cancel(skb, opts);
438 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439}
440
441static int dsmark_dump(struct Qdisc *sch, struct sk_buff *skb)
442{
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800443 struct dsmark_qdisc_data *p = qdisc_priv(sch);
Patrick McHardy1e904742008-01-22 22:11:17 -0800444 struct nlattr *opts = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
Patrick McHardy1e904742008-01-22 22:11:17 -0800446 opts = nla_nest_start(skb, TCA_OPTIONS);
447 if (opts == NULL)
448 goto nla_put_failure;
David S. Miller1b34ec42012-03-29 05:11:39 -0400449 if (nla_put_u16(skb, TCA_DSMARK_INDICES, p->indices))
450 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
David S. Miller1b34ec42012-03-29 05:11:39 -0400452 if (p->default_index != NO_DEFAULT_INDEX &&
453 nla_put_u16(skb, TCA_DSMARK_DEFAULT_INDEX, p->default_index))
454 goto nla_put_failure;
Thomas Graf02f23f02005-06-18 22:53:12 -0700455
David S. Miller1b34ec42012-03-29 05:11:39 -0400456 if (p->set_tc_index &&
457 nla_put_flag(skb, TCA_DSMARK_SET_TC_INDEX))
458 goto nla_put_failure;
Thomas Graf02f23f02005-06-18 22:53:12 -0700459
Patrick McHardy1e904742008-01-22 22:11:17 -0800460 return nla_nest_end(skb, opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
Patrick McHardy1e904742008-01-22 22:11:17 -0800462nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -0700463 nla_nest_cancel(skb, opts);
464 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465}
466
Eric Dumazet20fea082007-11-14 01:44:41 -0800467static const struct Qdisc_class_ops dsmark_class_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 .graft = dsmark_graft,
469 .leaf = dsmark_leaf,
470 .get = dsmark_get,
471 .put = dsmark_put,
472 .change = dsmark_change,
473 .delete = dsmark_delete,
474 .walk = dsmark_walk,
475 .tcf_chain = dsmark_find_tcf,
476 .bind_tcf = dsmark_bind_filter,
477 .unbind_tcf = dsmark_put,
478 .dump = dsmark_dump_class,
479};
480
Eric Dumazet20fea082007-11-14 01:44:41 -0800481static struct Qdisc_ops dsmark_qdisc_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 .next = NULL,
483 .cl_ops = &dsmark_class_ops,
484 .id = "dsmark",
485 .priv_size = sizeof(struct dsmark_qdisc_data),
486 .enqueue = dsmark_enqueue,
487 .dequeue = dsmark_dequeue,
Jarek Poplawski8e3af972008-10-31 00:45:55 -0700488 .peek = dsmark_peek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 .drop = dsmark_drop,
490 .init = dsmark_init,
491 .reset = dsmark_reset,
492 .destroy = dsmark_destroy,
493 .change = NULL,
494 .dump = dsmark_dump,
495 .owner = THIS_MODULE,
496};
497
498static int __init dsmark_module_init(void)
499{
500 return register_qdisc(&dsmark_qdisc_ops);
501}
Thomas Grafaf0d1142005-06-18 22:53:29 -0700502
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900503static void __exit dsmark_module_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504{
505 unregister_qdisc(&dsmark_qdisc_ops);
506}
Thomas Grafaf0d1142005-06-18 22:53:29 -0700507
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508module_init(dsmark_module_init)
509module_exit(dsmark_module_exit)
Thomas Grafaf0d1142005-06-18 22:53:29 -0700510
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511MODULE_LICENSE("GPL");