blob: 5334e309f17f0ef4416dddcdc9278c14ecb5585d [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>
Jiri Pirkocf1facd2017-02-09 14:38:56 +010016#include <net/pkt_cls.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <net/dsfield.h>
18#include <net/inet_ecn.h>
19#include <asm/byteorder.h>
20
Linus Torvalds1da177e2005-04-16 15:20:36 -070021/*
22 * classid class marking
23 * ------- ----- -------
24 * n/a 0 n/a
25 * x:0 1 use entry [0]
26 * ... ... ...
27 * x:y y>0 y+1 use entry [y]
28 * ... ... ...
29 * x:indices-1 indices use entry [indices-1]
30 * ... ... ...
31 * x:y y+1 use entry [y & (indices-1)]
32 * ... ... ...
33 * 0xffff 0x10000 use entry [indices-1]
34 */
35
36
37#define NO_DEFAULT_INDEX (1 << 16)
38
Eric Dumazet47bbbb32015-09-17 16:37:13 -070039struct mask_value {
40 u8 mask;
41 u8 value;
42};
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044struct dsmark_qdisc_data {
45 struct Qdisc *q;
John Fastabend25d8c0d2014-09-12 20:05:27 -070046 struct tcf_proto __rcu *filter_list;
Eric Dumazet47bbbb32015-09-17 16:37:13 -070047 struct mask_value *mv;
Thomas Grafaf0d1142005-06-18 22:53:29 -070048 u16 indices;
Eric Dumazet47bbbb32015-09-17 16:37:13 -070049 u8 set_tc_index;
Thomas Grafaf0d1142005-06-18 22:53:29 -070050 u32 default_index; /* index range is 0...0xffff */
Eric Dumazet47bbbb32015-09-17 16:37:13 -070051#define DSMARK_EMBEDDED_SZ 16
52 struct mask_value embedded[DSMARK_EMBEDDED_SZ];
Linus Torvalds1da177e2005-04-16 15:20:36 -070053};
54
Thomas Graf758cc432005-06-18 22:52:54 -070055static inline int dsmark_valid_index(struct dsmark_qdisc_data *p, u16 index)
56{
Yang Yingliang17569fa2013-12-10 20:55:29 +080057 return index <= p->indices && index > 0;
Thomas Graf758cc432005-06-18 22:52:54 -070058}
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60/* ------------------------- Class/flow operations ------------------------- */
61
Thomas Grafaf0d1142005-06-18 22:53:29 -070062static int dsmark_graft(struct Qdisc *sch, unsigned long arg,
63 struct Qdisc *new, struct Qdisc **old)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064{
Stephen Hemminger81da99e2008-01-21 00:50:09 -080065 struct dsmark_qdisc_data *p = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Yang Yingliangc76f2a22013-12-23 17:39:00 +080067 pr_debug("%s(sch %p,[qdisc %p],new %p,old %p)\n",
68 __func__, sch, p, new, old);
Thomas Graf486b53e2005-05-31 15:16:52 -070069
70 if (new == NULL) {
Changli Gao3511c912010-10-16 13:04:08 +000071 new = qdisc_create_dflt(sch->dev_queue, &pfifo_qdisc_ops,
Patrick McHardy9f9afec2006-11-29 17:35:18 -080072 sch->handle);
Thomas Graf486b53e2005-05-31 15:16:52 -070073 if (new == NULL)
74 new = &noop_qdisc;
75 }
76
WANG Cong86a79962016-02-25 14:55:00 -080077 *old = qdisc_replace(sch, new, &p->q);
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{
Yang Yingliangc76f2a22013-12-23 17:39:00 +080089 pr_debug("%s(sch %p,[qdisc %p],classid %x)\n",
90 __func__, 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Yang Yingliangc76f2a22013-12-23 17:39:00 +0800121 pr_debug("%s(sch %p,[qdisc %p],classid %x,parent %x), arg 0x%lx\n",
122 __func__, sch, p, classid, parent, *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Thomas Graf758cc432005-06-18 22:52:54 -0700124 if (!dsmark_valid_index(p, *arg)) {
125 err = -ENOENT;
Patrick McHardy1e904742008-01-22 22:11:17 -0800126 goto errout;
Thomas Graf758cc432005-06-18 22:52:54 -0700127 }
128
Patrick McHardycee63722008-01-23 20:33:32 -0800129 if (!opt)
Patrick McHardy1e904742008-01-22 22:11:17 -0800130 goto errout;
Thomas Graf758cc432005-06-18 22:52:54 -0700131
Patrick McHardy27a34212008-01-23 20:35:39 -0800132 err = nla_parse_nested(tb, TCA_DSMARK_MAX, opt, dsmark_policy);
Patrick McHardycee63722008-01-23 20:33:32 -0800133 if (err < 0)
Patrick McHardy27a34212008-01-23 20:35:39 -0800134 goto errout;
Patrick McHardycee63722008-01-23 20:33:32 -0800135
Patrick McHardy27a34212008-01-23 20:35:39 -0800136 if (tb[TCA_DSMARK_VALUE])
Eric Dumazet47bbbb32015-09-17 16:37:13 -0700137 p->mv[*arg - 1].value = nla_get_u8(tb[TCA_DSMARK_VALUE]);
Thomas Graf758cc432005-06-18 22:52:54 -0700138
Patrick McHardy1e904742008-01-22 22:11:17 -0800139 if (tb[TCA_DSMARK_MASK])
Eric Dumazet47bbbb32015-09-17 16:37:13 -0700140 p->mv[*arg - 1].mask = nla_get_u8(tb[TCA_DSMARK_MASK]);
Thomas Graf758cc432005-06-18 22:52:54 -0700141
142 err = 0;
143
Patrick McHardy1e904742008-01-22 22:11:17 -0800144errout:
Thomas Graf758cc432005-06-18 22:52:54 -0700145 return err;
146}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Thomas Grafaf0d1142005-06-18 22:53:29 -0700148static int dsmark_delete(struct Qdisc *sch, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149{
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800150 struct dsmark_qdisc_data *p = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Thomas Grafaf0d1142005-06-18 22:53:29 -0700152 if (!dsmark_valid_index(p, arg))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 return -EINVAL;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900154
Eric Dumazet47bbbb32015-09-17 16:37:13 -0700155 p->mv[arg - 1].mask = 0xff;
156 p->mv[arg - 1].value = 0;
Thomas Grafaf0d1142005-06-18 22:53:29 -0700157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 return 0;
159}
160
Stephen Hemminger9d127fb2008-01-21 02:24:21 -0800161static void dsmark_walk(struct Qdisc *sch, struct qdisc_walker *walker)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162{
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800163 struct dsmark_qdisc_data *p = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 int i;
165
Yang Yingliangc76f2a22013-12-23 17:39:00 +0800166 pr_debug("%s(sch %p,[qdisc %p],walker %p)\n",
167 __func__, sch, p, walker);
Thomas Grafaf0d1142005-06-18 22:53:29 -0700168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 if (walker->stop)
170 return;
Thomas Grafaf0d1142005-06-18 22:53:29 -0700171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 for (i = 0; i < p->indices; i++) {
Eric Dumazet47bbbb32015-09-17 16:37:13 -0700173 if (p->mv[i].mask == 0xff && !p->mv[i].value)
Thomas Graf0451eb02005-05-31 15:15:58 -0700174 goto ignore;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 if (walker->count >= walker->skip) {
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000176 if (walker->fn(sch, i + 1, walker) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 walker->stop = 1;
178 break;
179 }
180 }
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900181ignore:
Thomas Graf0451eb02005-05-31 15:15:58 -0700182 walker->count++;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900183 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184}
185
John Fastabend25d8c0d2014-09-12 20:05:27 -0700186static inline struct tcf_proto __rcu **dsmark_find_tcf(struct Qdisc *sch,
187 unsigned long cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800189 struct dsmark_qdisc_data *p = qdisc_priv(sch);
190 return &p->filter_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191}
192
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193/* --------------------------- Qdisc operations ---------------------------- */
194
Eric Dumazet520ac302016-06-21 23:16:49 -0700195static int dsmark_enqueue(struct sk_buff *skb, struct Qdisc *sch,
196 struct sk_buff **to_free)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800198 struct dsmark_qdisc_data *p = qdisc_priv(sch);
Thomas Grafaf0d1142005-06-18 22:53:29 -0700199 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Yang Yingliangc76f2a22013-12-23 17:39:00 +0800201 pr_debug("%s(skb %p,sch %p,[qdisc %p])\n", __func__, skb, sch, p);
Thomas Grafaf0d1142005-06-18 22:53:29 -0700202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 if (p->set_tc_index) {
Eric Dumazetaea92fb2017-03-17 08:05:28 -0700204 int wlen = skb_network_offset(skb);
205
Jiri Pirkod8b96052015-01-13 17:13:43 +0100206 switch (tc_skb_protocol(skb)) {
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -0700207 case htons(ETH_P_IP):
Eric Dumazetaea92fb2017-03-17 08:05:28 -0700208 wlen += sizeof(struct iphdr);
209 if (!pskb_may_pull(skb, wlen) ||
210 skb_try_make_writable(skb, wlen))
Stephen Hemminger9d127fb2008-01-21 02:24:21 -0800211 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):
Eric Dumazetaea92fb2017-03-17 08:05:28 -0700218 wlen += sizeof(struct ipv6hdr);
219 if (!pskb_may_pull(skb, wlen) ||
220 skb_try_make_writable(skb, wlen))
Stephen Hemminger9d127fb2008-01-21 02:24:21 -0800221 goto drop;
Stephen Hemminger4c307192008-01-21 02:23:49 -0800222
Stephen Hemminger9d127fb2008-01-21 02:24:21 -0800223 skb->tc_index = ipv6_get_dsfield(ipv6_hdr(skb))
224 & ~INET_ECN_MASK;
225 break;
226 default:
227 skb->tc_index = 0;
228 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700229 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 }
Thomas Grafaf0d1142005-06-18 22:53:29 -0700231
232 if (TC_H_MAJ(skb->priority) == sch->handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 skb->tc_index = TC_H_MIN(skb->priority);
Thomas Grafaf0d1142005-06-18 22:53:29 -0700234 else {
235 struct tcf_result res;
John Fastabend25d8c0d2014-09-12 20:05:27 -0700236 struct tcf_proto *fl = rcu_dereference_bh(p->filter_list);
Daniel Borkmann3b3ae882015-08-26 23:00:06 +0200237 int result = tc_classify(skb, fl, &res, false);
Thomas Grafaf0d1142005-06-18 22:53:29 -0700238
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800239 pr_debug("result %d class 0x%04x\n", result, res.classid);
Thomas Grafaf0d1142005-06-18 22:53:29 -0700240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 switch (result) {
Patrick McHardyf6853e22007-07-15 00:02:10 -0700242#ifdef CONFIG_NET_CLS_ACT
243 case TC_ACT_QUEUED:
244 case TC_ACT_STOLEN:
Eric Dumazet520ac302016-06-21 23:16:49 -0700245 __qdisc_drop(skb, to_free);
Jarek Poplawski378a2f02008-08-04 22:31:03 -0700246 return NET_XMIT_SUCCESS | __NET_XMIT_STOLEN;
Stephen Hemminger4c307192008-01-21 02:23:49 -0800247
Patrick McHardyf6853e22007-07-15 00:02:10 -0700248 case TC_ACT_SHOT:
Stephen Hemminger4c307192008-01-21 02:23:49 -0800249 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250#endif
Patrick McHardyc3bc7cf2007-07-15 00:03:05 -0700251 case TC_ACT_OK:
Patrick McHardyf6853e22007-07-15 00:02:10 -0700252 skb->tc_index = TC_H_MIN(res.classid);
253 break;
Stephen Hemminger4c307192008-01-21 02:23:49 -0800254
Patrick McHardyf6853e22007-07-15 00:02:10 -0700255 default:
256 if (p->default_index != NO_DEFAULT_INDEX)
257 skb->tc_index = p->default_index;
258 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700259 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Eric Dumazet520ac302016-06-21 23:16:49 -0700262 err = qdisc_enqueue(skb, p->q, to_free);
Thomas Grafaf0d1142005-06-18 22:53:29 -0700263 if (err != NET_XMIT_SUCCESS) {
Jarek Poplawski378a2f02008-08-04 22:31:03 -0700264 if (net_xmit_drop_count(err))
John Fastabend25331d62014-09-28 11:53:29 -0700265 qdisc_qstats_drop(sch);
Thomas Grafaf0d1142005-06-18 22:53:29 -0700266 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 }
Thomas Grafaf0d1142005-06-18 22:53:29 -0700268
WANG Congbdf17662016-02-25 14:55:03 -0800269 qdisc_qstats_backlog_inc(sch, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 sch->q.qlen++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Thomas Grafaf0d1142005-06-18 22:53:29 -0700272 return NET_XMIT_SUCCESS;
Stephen Hemminger4c307192008-01-21 02:23:49 -0800273
274drop:
Eric Dumazet520ac302016-06-21 23:16:49 -0700275 qdisc_drop(skb, sch, to_free);
Jarek Poplawskic27f3392008-08-04 22:39:11 -0700276 return NET_XMIT_SUCCESS | __NET_XMIT_BYPASS;
Thomas Grafaf0d1142005-06-18 22:53:29 -0700277}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
279static struct sk_buff *dsmark_dequeue(struct Qdisc *sch)
280{
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800281 struct dsmark_qdisc_data *p = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 struct sk_buff *skb;
Thomas Grafaf0d1142005-06-18 22:53:29 -0700283 u32 index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Yang Yingliangc76f2a22013-12-23 17:39:00 +0800285 pr_debug("%s(sch %p,[qdisc %p])\n", __func__, sch, p);
Thomas Grafaf0d1142005-06-18 22:53:29 -0700286
Kyeong Yoof8b33d82016-03-07 17:07:57 +1300287 skb = qdisc_dequeue_peeked(p->q);
Thomas Grafaf0d1142005-06-18 22:53:29 -0700288 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 return NULL;
Thomas Grafaf0d1142005-06-18 22:53:29 -0700290
Eric Dumazet9190b3b2011-01-20 23:31:33 -0800291 qdisc_bstats_update(sch, skb);
WANG Congbdf17662016-02-25 14:55:03 -0800292 qdisc_qstats_backlog_dec(sch, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 sch->q.qlen--;
Thomas Grafaf0d1142005-06-18 22:53:29 -0700294
295 index = skb->tc_index & (p->indices - 1);
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800296 pr_debug("index %d->%d\n", skb->tc_index, index);
Thomas Grafaf0d1142005-06-18 22:53:29 -0700297
Jiri Pirkod8b96052015-01-13 17:13:43 +0100298 switch (tc_skb_protocol(skb)) {
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -0700299 case htons(ETH_P_IP):
Eric Dumazet47bbbb32015-09-17 16:37:13 -0700300 ipv4_change_dsfield(ip_hdr(skb), p->mv[index].mask,
301 p->mv[index].value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 break;
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -0700303 case htons(ETH_P_IPV6):
Eric Dumazet47bbbb32015-09-17 16:37:13 -0700304 ipv6_change_dsfield(ipv6_hdr(skb), p->mv[index].mask,
305 p->mv[index].value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 break;
Stephen Hemminger9d127fb2008-01-21 02:24:21 -0800307 default:
308 /*
309 * Only complain if a change was actually attempted.
310 * This way, we can send non-IP traffic through dsmark
311 * and don't need yet another qdisc as a bypass.
312 */
Eric Dumazet47bbbb32015-09-17 16:37:13 -0700313 if (p->mv[index].mask != 0xff || p->mv[index].value)
Yang Yingliangc76f2a22013-12-23 17:39:00 +0800314 pr_warn("%s: unsupported protocol %d\n",
Jiri Pirkod8b96052015-01-13 17:13:43 +0100315 __func__, ntohs(tc_skb_protocol(skb)));
Stephen Hemminger9d127fb2008-01-21 02:24:21 -0800316 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700317 }
Thomas Grafaf0d1142005-06-18 22:53:29 -0700318
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 return skb;
320}
321
Jarek Poplawski8e3af972008-10-31 00:45:55 -0700322static struct sk_buff *dsmark_peek(struct Qdisc *sch)
323{
324 struct dsmark_qdisc_data *p = qdisc_priv(sch);
325
Yang Yingliangc76f2a22013-12-23 17:39:00 +0800326 pr_debug("%s(sch %p,[qdisc %p])\n", __func__, sch, p);
Jarek Poplawski8e3af972008-10-31 00:45:55 -0700327
328 return p->q->ops->peek(p->q);
329}
330
Patrick McHardy1e904742008-01-22 22:11:17 -0800331static int dsmark_init(struct Qdisc *sch, struct nlattr *opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332{
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800333 struct dsmark_qdisc_data *p = qdisc_priv(sch);
Patrick McHardy1e904742008-01-22 22:11:17 -0800334 struct nlattr *tb[TCA_DSMARK_MAX + 1];
Thomas Graf758cc432005-06-18 22:52:54 -0700335 int err = -EINVAL;
336 u32 default_index = NO_DEFAULT_INDEX;
337 u16 indices;
Eric Dumazet47bbbb32015-09-17 16:37:13 -0700338 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Yang Yingliangc76f2a22013-12-23 17:39:00 +0800340 pr_debug("%s(sch %p,[qdisc %p],opt %p)\n", __func__, sch, p, opt);
Thomas Graf758cc432005-06-18 22:52:54 -0700341
Patrick McHardycee63722008-01-23 20:33:32 -0800342 if (!opt)
Thomas Graf758cc432005-06-18 22:52:54 -0700343 goto errout;
344
Patrick McHardy27a34212008-01-23 20:35:39 -0800345 err = nla_parse_nested(tb, TCA_DSMARK_MAX, opt, dsmark_policy);
Patrick McHardycee63722008-01-23 20:33:32 -0800346 if (err < 0)
347 goto errout;
348
349 err = -EINVAL;
Patrick McHardy1e904742008-01-22 22:11:17 -0800350 indices = nla_get_u16(tb[TCA_DSMARK_INDICES]);
David S. Miller5b0ac722008-01-21 02:21:45 -0800351
352 if (hweight32(indices) != 1)
Thomas Graf758cc432005-06-18 22:52:54 -0700353 goto errout;
354
Patrick McHardy27a34212008-01-23 20:35:39 -0800355 if (tb[TCA_DSMARK_DEFAULT_INDEX])
Patrick McHardy1e904742008-01-22 22:11:17 -0800356 default_index = nla_get_u16(tb[TCA_DSMARK_DEFAULT_INDEX]);
Thomas Graf758cc432005-06-18 22:52:54 -0700357
Eric Dumazet47bbbb32015-09-17 16:37:13 -0700358 if (indices <= DSMARK_EMBEDDED_SZ)
359 p->mv = p->embedded;
360 else
361 p->mv = kmalloc_array(indices, sizeof(*p->mv), GFP_KERNEL);
362 if (!p->mv) {
Thomas Graf758cc432005-06-18 22:52:54 -0700363 err = -ENOMEM;
364 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 }
Eric Dumazet47bbbb32015-09-17 16:37:13 -0700366 for (i = 0; i < indices; i++) {
367 p->mv[i].mask = 0xff;
368 p->mv[i].value = 0;
369 }
Thomas Graf758cc432005-06-18 22:52:54 -0700370 p->indices = indices;
371 p->default_index = default_index;
Patrick McHardy1e904742008-01-22 22:11:17 -0800372 p->set_tc_index = nla_get_flag(tb[TCA_DSMARK_SET_TC_INDEX]);
Thomas Graf758cc432005-06-18 22:52:54 -0700373
Changli Gao3511c912010-10-16 13:04:08 +0000374 p->q = qdisc_create_dflt(sch->dev_queue, &pfifo_qdisc_ops, sch->handle);
Thomas Graf758cc432005-06-18 22:52:54 -0700375 if (p->q == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 p->q = &noop_qdisc;
Thomas Graf758cc432005-06-18 22:52:54 -0700377
Yang Yingliangc76f2a22013-12-23 17:39:00 +0800378 pr_debug("%s: qdisc %p\n", __func__, p->q);
Thomas Graf758cc432005-06-18 22:52:54 -0700379
380 err = 0;
381errout:
Thomas Graf758cc432005-06-18 22:52:54 -0700382 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383}
384
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385static void dsmark_reset(struct Qdisc *sch)
386{
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800387 struct dsmark_qdisc_data *p = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Yang Yingliangc76f2a22013-12-23 17:39:00 +0800389 pr_debug("%s(sch %p,[qdisc %p])\n", __func__, sch, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 qdisc_reset(p->q);
WANG Congbdf17662016-02-25 14:55:03 -0800391 sch->qstats.backlog = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 sch->q.qlen = 0;
393}
394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395static void dsmark_destroy(struct Qdisc *sch)
396{
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800397 struct dsmark_qdisc_data *p = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Yang Yingliangc76f2a22013-12-23 17:39:00 +0800399 pr_debug("%s(sch %p,[qdisc %p])\n", __func__, sch, p);
Thomas Grafaf0d1142005-06-18 22:53:29 -0700400
Patrick McHardyff31ab52008-07-01 19:52:38 -0700401 tcf_destroy_chain(&p->filter_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 qdisc_destroy(p->q);
Eric Dumazet47bbbb32015-09-17 16:37:13 -0700403 if (p->mv != p->embedded)
404 kfree(p->mv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405}
406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407static int dsmark_dump_class(struct Qdisc *sch, unsigned long cl,
Thomas Graf02f23f02005-06-18 22:53:12 -0700408 struct sk_buff *skb, struct tcmsg *tcm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409{
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800410 struct dsmark_qdisc_data *p = qdisc_priv(sch);
Patrick McHardy1e904742008-01-22 22:11:17 -0800411 struct nlattr *opts = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
Yang Yingliangc76f2a22013-12-23 17:39:00 +0800413 pr_debug("%s(sch %p,[qdisc %p],class %ld\n", __func__, sch, p, cl);
Thomas Graf02f23f02005-06-18 22:53:12 -0700414
415 if (!dsmark_valid_index(p, cl))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 return -EINVAL;
Thomas Graf02f23f02005-06-18 22:53:12 -0700417
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000418 tcm->tcm_handle = TC_H_MAKE(TC_H_MAJ(sch->handle), cl - 1);
Patrick McHardycdc7f8e2006-03-20 19:01:06 -0800419 tcm->tcm_info = p->q->handle;
Thomas Graf02f23f02005-06-18 22:53:12 -0700420
Patrick McHardy1e904742008-01-22 22:11:17 -0800421 opts = nla_nest_start(skb, TCA_OPTIONS);
422 if (opts == NULL)
423 goto nla_put_failure;
Eric Dumazet47bbbb32015-09-17 16:37:13 -0700424 if (nla_put_u8(skb, TCA_DSMARK_MASK, p->mv[cl - 1].mask) ||
425 nla_put_u8(skb, TCA_DSMARK_VALUE, p->mv[cl - 1].value))
David S. Miller1b34ec42012-03-29 05:11:39 -0400426 goto nla_put_failure;
Thomas Graf02f23f02005-06-18 22:53:12 -0700427
Patrick McHardy1e904742008-01-22 22:11:17 -0800428 return nla_nest_end(skb, opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
Patrick McHardy1e904742008-01-22 22:11:17 -0800430nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -0700431 nla_nest_cancel(skb, opts);
432 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433}
434
435static int dsmark_dump(struct Qdisc *sch, struct sk_buff *skb)
436{
Stephen Hemminger81da99e2008-01-21 00:50:09 -0800437 struct dsmark_qdisc_data *p = qdisc_priv(sch);
Patrick McHardy1e904742008-01-22 22:11:17 -0800438 struct nlattr *opts = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
Patrick McHardy1e904742008-01-22 22:11:17 -0800440 opts = nla_nest_start(skb, TCA_OPTIONS);
441 if (opts == NULL)
442 goto nla_put_failure;
David S. Miller1b34ec42012-03-29 05:11:39 -0400443 if (nla_put_u16(skb, TCA_DSMARK_INDICES, p->indices))
444 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
David S. Miller1b34ec42012-03-29 05:11:39 -0400446 if (p->default_index != NO_DEFAULT_INDEX &&
447 nla_put_u16(skb, TCA_DSMARK_DEFAULT_INDEX, p->default_index))
448 goto nla_put_failure;
Thomas Graf02f23f02005-06-18 22:53:12 -0700449
David S. Miller1b34ec42012-03-29 05:11:39 -0400450 if (p->set_tc_index &&
451 nla_put_flag(skb, TCA_DSMARK_SET_TC_INDEX))
452 goto nla_put_failure;
Thomas Graf02f23f02005-06-18 22:53:12 -0700453
Patrick McHardy1e904742008-01-22 22:11:17 -0800454 return nla_nest_end(skb, opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Patrick McHardy1e904742008-01-22 22:11:17 -0800456nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -0700457 nla_nest_cancel(skb, opts);
458 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459}
460
Eric Dumazet20fea082007-11-14 01:44:41 -0800461static const struct Qdisc_class_ops dsmark_class_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 .graft = dsmark_graft,
463 .leaf = dsmark_leaf,
464 .get = dsmark_get,
465 .put = dsmark_put,
466 .change = dsmark_change,
467 .delete = dsmark_delete,
468 .walk = dsmark_walk,
469 .tcf_chain = dsmark_find_tcf,
470 .bind_tcf = dsmark_bind_filter,
471 .unbind_tcf = dsmark_put,
472 .dump = dsmark_dump_class,
473};
474
Eric Dumazet20fea082007-11-14 01:44:41 -0800475static struct Qdisc_ops dsmark_qdisc_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 .next = NULL,
477 .cl_ops = &dsmark_class_ops,
478 .id = "dsmark",
479 .priv_size = sizeof(struct dsmark_qdisc_data),
480 .enqueue = dsmark_enqueue,
481 .dequeue = dsmark_dequeue,
Jarek Poplawski8e3af972008-10-31 00:45:55 -0700482 .peek = dsmark_peek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 .init = dsmark_init,
484 .reset = dsmark_reset,
485 .destroy = dsmark_destroy,
486 .change = NULL,
487 .dump = dsmark_dump,
488 .owner = THIS_MODULE,
489};
490
491static int __init dsmark_module_init(void)
492{
493 return register_qdisc(&dsmark_qdisc_ops);
494}
Thomas Grafaf0d1142005-06-18 22:53:29 -0700495
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900496static void __exit dsmark_module_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497{
498 unregister_qdisc(&dsmark_qdisc_ops);
499}
Thomas Grafaf0d1142005-06-18 22:53:29 -0700500
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501module_init(dsmark_module_init)
502module_exit(dsmark_module_exit)
Thomas Grafaf0d1142005-06-18 22:53:29 -0700503
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504MODULE_LICENSE("GPL");