blob: 4020b8d932a1a6dfac9a856dc8d5b53adb0645d6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * net/sched/cls_api.c Packet classifier API.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
8 *
9 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
10 *
11 * Changes:
12 *
13 * Eduardo J. Blanco <ejbs@netlabs.com.uy> :990222: kmod support
14 *
15 */
16
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/module.h>
18#include <linux/types.h>
19#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/errno.h>
Jiri Pirko33a48922017-02-09 14:38:57 +010022#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/skbuff.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/init.h>
25#include <linux/kmod.h>
Patrick McHardyab27cfb2008-01-23 20:33:13 -080026#include <linux/err.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/slab.h>
Denis V. Lunevb8542722007-12-01 00:21:31 +110028#include <net/net_namespace.h>
29#include <net/sock.h>
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -070030#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <net/pkt_sched.h>
32#include <net/pkt_cls.h>
33
Linus Torvalds1da177e2005-04-16 15:20:36 -070034/* The list of all installed classifier types */
WANG Cong36272872013-12-15 20:15:11 -080035static LIST_HEAD(tcf_proto_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37/* Protects list of registered TC modules. It is pure SMP lock. */
38static DEFINE_RWLOCK(cls_mod_lock);
39
40/* Find classifier type by string name */
41
Jiri Pirko33a48922017-02-09 14:38:57 +010042static const struct tcf_proto_ops *tcf_proto_lookup_ops(const char *kind)
Linus Torvalds1da177e2005-04-16 15:20:36 -070043{
Eric Dumazetdcd76082013-12-20 10:04:18 -080044 const struct tcf_proto_ops *t, *res = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46 if (kind) {
47 read_lock(&cls_mod_lock);
WANG Cong36272872013-12-15 20:15:11 -080048 list_for_each_entry(t, &tcf_proto_base, head) {
Jiri Pirko33a48922017-02-09 14:38:57 +010049 if (strcmp(kind, t->kind) == 0) {
Eric Dumazetdcd76082013-12-20 10:04:18 -080050 if (try_module_get(t->owner))
51 res = t;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 break;
53 }
54 }
55 read_unlock(&cls_mod_lock);
56 }
Eric Dumazetdcd76082013-12-20 10:04:18 -080057 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058}
59
60/* Register(unregister) new classifier type */
61
62int register_tcf_proto_ops(struct tcf_proto_ops *ops)
63{
WANG Cong36272872013-12-15 20:15:11 -080064 struct tcf_proto_ops *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 int rc = -EEXIST;
66
67 write_lock(&cls_mod_lock);
WANG Cong36272872013-12-15 20:15:11 -080068 list_for_each_entry(t, &tcf_proto_base, head)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 if (!strcmp(ops->kind, t->kind))
70 goto out;
71
WANG Cong36272872013-12-15 20:15:11 -080072 list_add_tail(&ops->head, &tcf_proto_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 rc = 0;
74out:
75 write_unlock(&cls_mod_lock);
76 return rc;
77}
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -080078EXPORT_SYMBOL(register_tcf_proto_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80int unregister_tcf_proto_ops(struct tcf_proto_ops *ops)
81{
WANG Cong36272872013-12-15 20:15:11 -080082 struct tcf_proto_ops *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 int rc = -ENOENT;
84
Daniel Borkmannc78e1742015-05-20 17:13:33 +020085 /* Wait for outstanding call_rcu()s, if any, from a
86 * tcf_proto_ops's destroy() handler.
87 */
88 rcu_barrier();
89
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 write_lock(&cls_mod_lock);
Eric Dumazetdcd76082013-12-20 10:04:18 -080091 list_for_each_entry(t, &tcf_proto_base, head) {
92 if (t == ops) {
93 list_del(&t->head);
94 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 break;
Eric Dumazetdcd76082013-12-20 10:04:18 -080096 }
97 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 write_unlock(&cls_mod_lock);
99 return rc;
100}
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -0800101EXPORT_SYMBOL(unregister_tcf_proto_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Tom Goff7316ae82010-03-19 15:40:13 +0000103static int tfilter_notify(struct net *net, struct sk_buff *oskb,
104 struct nlmsghdr *n, struct tcf_proto *tp,
Eric Dumazetfa59b272016-10-09 20:25:55 -0700105 unsigned long fh, int event, bool unicast);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Daniel Borkmannea7f8272016-06-10 23:10:22 +0200107static void tfilter_notify_chain(struct net *net, struct sk_buff *oskb,
108 struct nlmsghdr *n,
Jiri Pirko2190d1d2017-05-17 11:07:59 +0200109 struct tcf_chain *chain, int event)
Daniel Borkmannea7f8272016-06-10 23:10:22 +0200110{
Daniel Borkmannea7f8272016-06-10 23:10:22 +0200111 struct tcf_proto *tp;
112
Jiri Pirko2190d1d2017-05-17 11:07:59 +0200113 for (tp = rtnl_dereference(chain->filter_chain);
114 tp; tp = rtnl_dereference(tp->next))
Roman Mashak19a8bb22016-11-22 20:57:04 -0500115 tfilter_notify(net, oskb, n, tp, 0, event, false);
Daniel Borkmannea7f8272016-06-10 23:10:22 +0200116}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118/* Select new prio value from the range, managed by kernel. */
119
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -0800120static inline u32 tcf_auto_prio(struct tcf_proto *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -0800122 u32 first = TC_H_MAKE(0xC0000000U, 0U);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
124 if (tp)
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000125 first = tp->prio - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Jiri Pirko79619732017-05-17 11:07:58 +0200127 return TC_H_MAJ(first);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128}
129
Jiri Pirko33a48922017-02-09 14:38:57 +0100130static struct tcf_proto *tcf_proto_create(const char *kind, u32 protocol,
Jiri Pirko6529eab2017-05-17 11:07:55 +0200131 u32 prio, u32 parent, struct Qdisc *q,
Jiri Pirko5bc17012017-05-17 11:08:01 +0200132 struct tcf_chain *chain)
Jiri Pirko33a48922017-02-09 14:38:57 +0100133{
134 struct tcf_proto *tp;
135 int err;
136
137 tp = kzalloc(sizeof(*tp), GFP_KERNEL);
138 if (!tp)
139 return ERR_PTR(-ENOBUFS);
140
141 err = -ENOENT;
142 tp->ops = tcf_proto_lookup_ops(kind);
143 if (!tp->ops) {
144#ifdef CONFIG_MODULES
145 rtnl_unlock();
146 request_module("cls_%s", kind);
147 rtnl_lock();
148 tp->ops = tcf_proto_lookup_ops(kind);
149 /* We dropped the RTNL semaphore in order to perform
150 * the module load. So, even if we succeeded in loading
151 * the module we have to replay the request. We indicate
152 * this using -EAGAIN.
153 */
154 if (tp->ops) {
155 module_put(tp->ops->owner);
156 err = -EAGAIN;
157 } else {
158 err = -ENOENT;
159 }
160 goto errout;
161#endif
162 }
163 tp->classify = tp->ops->classify;
164 tp->protocol = protocol;
165 tp->prio = prio;
166 tp->classid = parent;
167 tp->q = q;
Jiri Pirko5bc17012017-05-17 11:08:01 +0200168 tp->chain = chain;
Jiri Pirko33a48922017-02-09 14:38:57 +0100169
170 err = tp->ops->init(tp);
171 if (err) {
172 module_put(tp->ops->owner);
173 goto errout;
174 }
175 return tp;
176
177errout:
178 kfree(tp);
179 return ERR_PTR(err);
180}
181
WANG Cong763dbf62017-04-19 14:21:21 -0700182static void tcf_proto_destroy(struct tcf_proto *tp)
Jiri Pirkocf1facd2017-02-09 14:38:56 +0100183{
WANG Cong763dbf62017-04-19 14:21:21 -0700184 tp->ops->destroy(tp);
185 module_put(tp->ops->owner);
186 kfree_rcu(tp, rcu);
Jiri Pirkocf1facd2017-02-09 14:38:56 +0100187}
188
Jiri Pirko5bc17012017-05-17 11:08:01 +0200189static struct tcf_chain *tcf_chain_create(struct tcf_block *block,
190 u32 chain_index)
Jiri Pirko2190d1d2017-05-17 11:07:59 +0200191{
Jiri Pirko5bc17012017-05-17 11:08:01 +0200192 struct tcf_chain *chain;
193
194 chain = kzalloc(sizeof(*chain), GFP_KERNEL);
195 if (!chain)
196 return NULL;
197 list_add_tail(&chain->list, &block->chain_list);
198 chain->block = block;
199 chain->index = chain_index;
200 chain->refcnt = 1;
201 return chain;
Jiri Pirko2190d1d2017-05-17 11:07:59 +0200202}
203
204static void tcf_chain_destroy(struct tcf_chain *chain)
Jiri Pirkocf1facd2017-02-09 14:38:56 +0100205{
206 struct tcf_proto *tp;
207
Jiri Pirko5bc17012017-05-17 11:08:01 +0200208 list_del(&chain->list);
Jiri Pirko2190d1d2017-05-17 11:07:59 +0200209 while ((tp = rtnl_dereference(chain->filter_chain)) != NULL) {
210 RCU_INIT_POINTER(chain->filter_chain, tp->next);
WANG Cong763dbf62017-04-19 14:21:21 -0700211 tcf_proto_destroy(tp);
Jiri Pirkocf1facd2017-02-09 14:38:56 +0100212 }
Jiri Pirko2190d1d2017-05-17 11:07:59 +0200213 kfree(chain);
214}
215
Jiri Pirko5bc17012017-05-17 11:08:01 +0200216struct tcf_chain *tcf_chain_get(struct tcf_block *block, u32 chain_index)
217{
218 struct tcf_chain *chain;
219
220 list_for_each_entry(chain, &block->chain_list, list) {
221 if (chain->index == chain_index) {
222 chain->refcnt++;
223 return chain;
224 }
225 }
226 return tcf_chain_create(block, chain_index);
227}
228EXPORT_SYMBOL(tcf_chain_get);
229
230void tcf_chain_put(struct tcf_chain *chain)
231{
232 /* Destroy unused chain, with exception of chain 0, which is the
233 * default one and has to be always present.
234 */
235 if (--chain->refcnt == 0 && !chain->filter_chain && chain->index != 0)
236 tcf_chain_destroy(chain);
237}
238EXPORT_SYMBOL(tcf_chain_put);
239
Jiri Pirko2190d1d2017-05-17 11:07:59 +0200240static void
241tcf_chain_filter_chain_ptr_set(struct tcf_chain *chain,
242 struct tcf_proto __rcu **p_filter_chain)
243{
244 chain->p_filter_chain = p_filter_chain;
Jiri Pirkocf1facd2017-02-09 14:38:56 +0100245}
Jiri Pirko6529eab2017-05-17 11:07:55 +0200246
247int tcf_block_get(struct tcf_block **p_block,
248 struct tcf_proto __rcu **p_filter_chain)
249{
250 struct tcf_block *block = kzalloc(sizeof(*block), GFP_KERNEL);
Jiri Pirko5bc17012017-05-17 11:08:01 +0200251 struct tcf_chain *chain;
Jiri Pirko2190d1d2017-05-17 11:07:59 +0200252 int err;
Jiri Pirko6529eab2017-05-17 11:07:55 +0200253
254 if (!block)
255 return -ENOMEM;
Jiri Pirko5bc17012017-05-17 11:08:01 +0200256 INIT_LIST_HEAD(&block->chain_list);
257 /* Create chain 0 by default, it has to be always present. */
258 chain = tcf_chain_create(block, 0);
259 if (!chain) {
Jiri Pirko2190d1d2017-05-17 11:07:59 +0200260 err = -ENOMEM;
261 goto err_chain_create;
262 }
Jiri Pirko5bc17012017-05-17 11:08:01 +0200263 tcf_chain_filter_chain_ptr_set(chain, p_filter_chain);
Jiri Pirko6529eab2017-05-17 11:07:55 +0200264 *p_block = block;
265 return 0;
Jiri Pirko2190d1d2017-05-17 11:07:59 +0200266
267err_chain_create:
268 kfree(block);
269 return err;
Jiri Pirko6529eab2017-05-17 11:07:55 +0200270}
271EXPORT_SYMBOL(tcf_block_get);
272
273void tcf_block_put(struct tcf_block *block)
274{
Jiri Pirko5bc17012017-05-17 11:08:01 +0200275 struct tcf_chain *chain, *tmp;
276
Jiri Pirko6529eab2017-05-17 11:07:55 +0200277 if (!block)
278 return;
Jiri Pirko5bc17012017-05-17 11:08:01 +0200279
280 list_for_each_entry_safe(chain, tmp, &block->chain_list, list)
281 tcf_chain_destroy(chain);
Jiri Pirko6529eab2017-05-17 11:07:55 +0200282 kfree(block);
283}
284EXPORT_SYMBOL(tcf_block_put);
Jiri Pirkocf1facd2017-02-09 14:38:56 +0100285
Jiri Pirko87d83092017-05-17 11:07:54 +0200286/* Main classifier routine: scans classifier chain attached
287 * to this qdisc, (optionally) tests for protocol and asks
288 * specific classifiers.
289 */
290int tcf_classify(struct sk_buff *skb, const struct tcf_proto *tp,
291 struct tcf_result *res, bool compat_mode)
292{
293 __be16 protocol = tc_skb_protocol(skb);
294#ifdef CONFIG_NET_CLS_ACT
295 const int max_reclassify_loop = 4;
296 const struct tcf_proto *old_tp = tp;
297 int limit = 0;
298
299reclassify:
300#endif
301 for (; tp; tp = rcu_dereference_bh(tp->next)) {
302 int err;
303
304 if (tp->protocol != protocol &&
305 tp->protocol != htons(ETH_P_ALL))
306 continue;
307
308 err = tp->classify(skb, tp, res);
309#ifdef CONFIG_NET_CLS_ACT
Jiri Pirkodb505142017-05-17 11:08:03 +0200310 if (unlikely(err == TC_ACT_RECLASSIFY && !compat_mode)) {
Jiri Pirko87d83092017-05-17 11:07:54 +0200311 goto reset;
Jiri Pirkodb505142017-05-17 11:08:03 +0200312 } else if (unlikely(TC_ACT_EXT_CMP(err, TC_ACT_GOTO_CHAIN))) {
313 old_tp = res->goto_tp;
314 goto reset;
315 }
Jiri Pirko87d83092017-05-17 11:07:54 +0200316#endif
317 if (err >= 0)
318 return err;
319 }
320
321 return TC_ACT_UNSPEC; /* signal: continue lookup */
322#ifdef CONFIG_NET_CLS_ACT
323reset:
324 if (unlikely(limit++ >= max_reclassify_loop)) {
325 net_notice_ratelimited("%s: reclassify loop, rule prio %u, protocol %02x\n",
326 tp->q->ops->id, tp->prio & 0xffff,
327 ntohs(tp->protocol));
328 return TC_ACT_SHOT;
329 }
330
331 tp = old_tp;
332 protocol = tc_skb_protocol(skb);
333 goto reclassify;
334#endif
335}
336EXPORT_SYMBOL(tcf_classify);
337
Jiri Pirko2190d1d2017-05-17 11:07:59 +0200338struct tcf_chain_info {
339 struct tcf_proto __rcu **pprev;
340 struct tcf_proto __rcu *next;
341};
342
343static struct tcf_proto *tcf_chain_tp_prev(struct tcf_chain_info *chain_info)
344{
345 return rtnl_dereference(*chain_info->pprev);
346}
347
348static void tcf_chain_tp_insert(struct tcf_chain *chain,
349 struct tcf_chain_info *chain_info,
350 struct tcf_proto *tp)
351{
352 if (chain->p_filter_chain &&
353 *chain_info->pprev == chain->filter_chain)
354 *chain->p_filter_chain = tp;
355 RCU_INIT_POINTER(tp->next, tcf_chain_tp_prev(chain_info));
356 rcu_assign_pointer(*chain_info->pprev, tp);
357}
358
359static void tcf_chain_tp_remove(struct tcf_chain *chain,
360 struct tcf_chain_info *chain_info,
361 struct tcf_proto *tp)
362{
363 struct tcf_proto *next = rtnl_dereference(chain_info->next);
364
365 if (chain->p_filter_chain && tp == chain->filter_chain)
366 *chain->p_filter_chain = next;
367 RCU_INIT_POINTER(*chain_info->pprev, next);
368}
369
370static struct tcf_proto *tcf_chain_tp_find(struct tcf_chain *chain,
371 struct tcf_chain_info *chain_info,
372 u32 protocol, u32 prio,
373 bool prio_allocate)
374{
375 struct tcf_proto **pprev;
376 struct tcf_proto *tp;
377
378 /* Check the chain for existence of proto-tcf with this priority */
379 for (pprev = &chain->filter_chain;
380 (tp = rtnl_dereference(*pprev)); pprev = &tp->next) {
381 if (tp->prio >= prio) {
382 if (tp->prio == prio) {
383 if (prio_allocate ||
384 (tp->protocol != protocol && protocol))
385 return ERR_PTR(-EINVAL);
386 } else {
387 tp = NULL;
388 }
389 break;
390 }
391 }
392 chain_info->pprev = pprev;
393 chain_info->next = tp ? tp->next : NULL;
394 return tp;
395}
396
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397/* Add/change/delete/get a filter node */
398
David Ahernc21ef3e2017-04-16 09:48:24 -0700399static int tc_ctl_tfilter(struct sk_buff *skb, struct nlmsghdr *n,
400 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900402 struct net *net = sock_net(skb->sk);
Patrick McHardyadd93b62008-01-22 22:11:33 -0800403 struct nlattr *tca[TCA_MAX + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 struct tcmsg *t;
405 u32 protocol;
406 u32 prio;
Jiri Pirko9d36d9e2017-05-17 11:07:57 +0200407 bool prio_allocate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 u32 parent;
Jiri Pirko5bc17012017-05-17 11:08:01 +0200409 u32 chain_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 struct net_device *dev;
411 struct Qdisc *q;
Jiri Pirko2190d1d2017-05-17 11:07:59 +0200412 struct tcf_chain_info chain_info;
Jiri Pirko5bc17012017-05-17 11:08:01 +0200413 struct tcf_chain *chain = NULL;
Jiri Pirko6529eab2017-05-17 11:07:55 +0200414 struct tcf_block *block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 struct tcf_proto *tp;
Eric Dumazet20fea082007-11-14 01:44:41 -0800416 const struct Qdisc_class_ops *cops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 unsigned long cl;
418 unsigned long fh;
419 int err;
Daniel Borkmann628185c2016-12-21 18:04:11 +0100420 int tp_created;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Stéphane Graber4e8bbb82014-04-30 11:25:43 -0400422 if ((n->nlmsg_type != RTM_GETTFILTER) &&
David S. Miller5f013c9b2014-05-12 13:19:14 -0400423 !netlink_ns_capable(skb, net->user_ns, CAP_NET_ADMIN))
Eric W. Biedermandfc47ef2012-11-16 03:03:00 +0000424 return -EPERM;
Hong zhi guode179c82013-03-25 17:36:33 +0000425
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426replay:
Daniel Borkmann628185c2016-12-21 18:04:11 +0100427 tp_created = 0;
428
David Ahernc21ef3e2017-04-16 09:48:24 -0700429 err = nlmsg_parse(n, sizeof(*t), tca, TCA_MAX, NULL, extack);
Hong zhi guode179c82013-03-25 17:36:33 +0000430 if (err < 0)
431 return err;
432
David S. Miller942b8162012-06-26 21:48:50 -0700433 t = nlmsg_data(n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 protocol = TC_H_MIN(t->tcm_info);
435 prio = TC_H_MAJ(t->tcm_info);
Jiri Pirko9d36d9e2017-05-17 11:07:57 +0200436 prio_allocate = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 parent = t->tcm_parent;
438 cl = 0;
439
440 if (prio == 0) {
Daniel Borkmannea7f8272016-06-10 23:10:22 +0200441 switch (n->nlmsg_type) {
442 case RTM_DELTFILTER:
Daniel Borkmann9f6ed032016-06-16 23:19:29 +0200443 if (protocol || t->tcm_handle || tca[TCA_KIND])
Daniel Borkmannea7f8272016-06-10 23:10:22 +0200444 return -ENOENT;
445 break;
446 case RTM_NEWTFILTER:
447 /* If no priority is provided by the user,
448 * we allocate one.
449 */
450 if (n->nlmsg_flags & NLM_F_CREATE) {
451 prio = TC_H_MAKE(0x80000000U, 0U);
Jiri Pirko9d36d9e2017-05-17 11:07:57 +0200452 prio_allocate = true;
Daniel Borkmannea7f8272016-06-10 23:10:22 +0200453 break;
454 }
455 /* fall-through */
456 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 return -ENOENT;
Daniel Borkmannea7f8272016-06-10 23:10:22 +0200458 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 }
460
461 /* Find head of filter chain. */
462
463 /* Find link */
Tom Goff7316ae82010-03-19 15:40:13 +0000464 dev = __dev_get_by_index(net, t->tcm_ifindex);
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -0800465 if (dev == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 return -ENODEV;
467
468 /* Find qdisc */
469 if (!parent) {
Patrick McHardyaf356af2009-09-04 06:41:18 +0000470 q = dev->qdisc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 parent = q->handle;
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -0800472 } else {
473 q = qdisc_lookup(dev, TC_H_MAJ(t->tcm_parent));
474 if (q == NULL)
475 return -EINVAL;
476 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
478 /* Is it classful? */
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000479 cops = q->ops->cl_ops;
480 if (!cops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 return -EINVAL;
482
Jiri Pirko6529eab2017-05-17 11:07:55 +0200483 if (!cops->tcf_block)
Patrick McHardy71ebe5e2009-09-04 06:41:15 +0000484 return -EOPNOTSUPP;
485
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 /* Do we search for filter, attached to class? */
487 if (TC_H_MIN(parent)) {
488 cl = cops->get(q, parent);
489 if (cl == 0)
490 return -ENOENT;
491 }
492
493 /* And the last stroke */
Jiri Pirko6529eab2017-05-17 11:07:55 +0200494 block = cops->tcf_block(q, cl);
495 if (!block) {
Jiri Pirko6bb16e72017-02-09 14:38:58 +0100496 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 goto errout;
Jiri Pirko6bb16e72017-02-09 14:38:58 +0100498 }
Jiri Pirko5bc17012017-05-17 11:08:01 +0200499
500 chain_index = tca[TCA_CHAIN] ? nla_get_u32(tca[TCA_CHAIN]) : 0;
501 if (chain_index > TC_ACT_EXT_VAL_MASK) {
502 err = -EINVAL;
503 goto errout;
504 }
505 chain = tcf_chain_get(block, chain_index);
506 if (!chain) {
507 err = -ENOMEM;
508 goto errout;
509 }
Jiri Pirko6529eab2017-05-17 11:07:55 +0200510
Daniel Borkmannea7f8272016-06-10 23:10:22 +0200511 if (n->nlmsg_type == RTM_DELTFILTER && prio == 0) {
512 tfilter_notify_chain(net, skb, n, chain, RTM_DELTFILTER);
Jiri Pirkofbe9c5b2017-05-17 11:07:56 +0200513 tcf_chain_destroy(chain);
Daniel Borkmannea7f8272016-06-10 23:10:22 +0200514 err = 0;
515 goto errout;
516 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Jiri Pirko2190d1d2017-05-17 11:07:59 +0200518 tp = tcf_chain_tp_find(chain, &chain_info, protocol,
519 prio, prio_allocate);
520 if (IS_ERR(tp)) {
521 err = PTR_ERR(tp);
522 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 }
524
525 if (tp == NULL) {
526 /* Proto-tcf does not exist, create new one */
527
Jiri Pirko6bb16e72017-02-09 14:38:58 +0100528 if (tca[TCA_KIND] == NULL || !protocol) {
529 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 goto errout;
Jiri Pirko6bb16e72017-02-09 14:38:58 +0100531 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000533 if (n->nlmsg_type != RTM_NEWTFILTER ||
Jiri Pirko6bb16e72017-02-09 14:38:58 +0100534 !(n->nlmsg_flags & NLM_F_CREATE)) {
535 err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 goto errout;
Jiri Pirko6bb16e72017-02-09 14:38:58 +0100537 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Jiri Pirko9d36d9e2017-05-17 11:07:57 +0200539 if (prio_allocate)
Jiri Pirko2190d1d2017-05-17 11:07:59 +0200540 prio = tcf_auto_prio(tcf_chain_tp_prev(&chain_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Jiri Pirko33a48922017-02-09 14:38:57 +0100542 tp = tcf_proto_create(nla_data(tca[TCA_KIND]),
Jiri Pirko5bc17012017-05-17 11:08:01 +0200543 protocol, prio, parent, q, chain);
Jiri Pirko33a48922017-02-09 14:38:57 +0100544 if (IS_ERR(tp)) {
545 err = PTR_ERR(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 goto errout;
547 }
Minoru Usui12186be2009-06-02 02:17:34 -0700548 tp_created = 1;
Jiri Pirko6bb16e72017-02-09 14:38:58 +0100549 } else if (tca[TCA_KIND] && nla_strcmp(tca[TCA_KIND], tp->ops->kind)) {
550 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 goto errout;
Jiri Pirko6bb16e72017-02-09 14:38:58 +0100552 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
554 fh = tp->ops->get(tp, t->tcm_handle);
555
556 if (fh == 0) {
557 if (n->nlmsg_type == RTM_DELTFILTER && t->tcm_handle == 0) {
Jiri Pirko2190d1d2017-05-17 11:07:59 +0200558 tcf_chain_tp_remove(chain, &chain_info, tp);
Eric Dumazetfa59b272016-10-09 20:25:55 -0700559 tfilter_notify(net, skb, n, tp, fh,
560 RTM_DELTFILTER, false);
WANG Cong763dbf62017-04-19 14:21:21 -0700561 tcf_proto_destroy(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 err = 0;
563 goto errout;
564 }
565
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -0800566 if (n->nlmsg_type != RTM_NEWTFILTER ||
Jiri Pirko6bb16e72017-02-09 14:38:58 +0100567 !(n->nlmsg_flags & NLM_F_CREATE)) {
568 err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 goto errout;
Jiri Pirko6bb16e72017-02-09 14:38:58 +0100570 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 } else {
WANG Cong763dbf62017-04-19 14:21:21 -0700572 bool last;
573
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 switch (n->nlmsg_type) {
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900575 case RTM_NEWTFILTER:
Minoru Usui12186be2009-06-02 02:17:34 -0700576 if (n->nlmsg_flags & NLM_F_EXCL) {
577 if (tp_created)
WANG Cong763dbf62017-04-19 14:21:21 -0700578 tcf_proto_destroy(tp);
Jiri Pirko6bb16e72017-02-09 14:38:58 +0100579 err = -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 goto errout;
Minoru Usui12186be2009-06-02 02:17:34 -0700581 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 break;
583 case RTM_DELTFILTER:
WANG Cong763dbf62017-04-19 14:21:21 -0700584 err = tp->ops->delete(tp, fh, &last);
Jiri Pirko40c81b22017-02-09 14:39:00 +0100585 if (err)
586 goto errout;
Jiri Pirko40c81b22017-02-09 14:39:00 +0100587 tfilter_notify(net, skb, n, tp, t->tcm_handle,
588 RTM_DELTFILTER, false);
WANG Cong763dbf62017-04-19 14:21:21 -0700589 if (last) {
Jiri Pirko2190d1d2017-05-17 11:07:59 +0200590 tcf_chain_tp_remove(chain, &chain_info, tp);
WANG Cong763dbf62017-04-19 14:21:21 -0700591 tcf_proto_destroy(tp);
592 }
Jiri Pirkod7cf52c2017-02-14 16:27:13 +0100593 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 case RTM_GETTFILTER:
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -0400595 err = tfilter_notify(net, skb, n, tp, fh,
Eric Dumazetfa59b272016-10-09 20:25:55 -0700596 RTM_NEWTFILTER, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 goto errout;
598 default:
599 err = -EINVAL;
600 goto errout;
601 }
602 }
603
Cong Wang2f7ef2f2014-04-25 13:54:06 -0700604 err = tp->ops->change(net, skb, tp, cl, t->tcm_handle, tca, &fh,
605 n->nlmsg_flags & NLM_F_CREATE ? TCA_ACT_NOREPLACE : TCA_ACT_REPLACE);
Minoru Usui12186be2009-06-02 02:17:34 -0700606 if (err == 0) {
Jiri Pirko2190d1d2017-05-17 11:07:59 +0200607 if (tp_created)
608 tcf_chain_tp_insert(chain, &chain_info, tp);
Eric Dumazetfa59b272016-10-09 20:25:55 -0700609 tfilter_notify(net, skb, n, tp, fh, RTM_NEWTFILTER, false);
Minoru Usui12186be2009-06-02 02:17:34 -0700610 } else {
611 if (tp_created)
WANG Cong763dbf62017-04-19 14:21:21 -0700612 tcf_proto_destroy(tp);
Minoru Usui12186be2009-06-02 02:17:34 -0700613 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
615errout:
Jiri Pirko5bc17012017-05-17 11:08:01 +0200616 if (chain)
617 tcf_chain_put(chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 if (cl)
619 cops->put(q, cl);
620 if (err == -EAGAIN)
621 /* Replay the request. */
622 goto replay;
623 return err;
624}
625
Jamal Hadi Salim0b0f43f2016-06-05 10:41:32 -0400626static int tcf_fill_node(struct net *net, struct sk_buff *skb,
627 struct tcf_proto *tp, unsigned long fh, u32 portid,
628 u32 seq, u16 flags, int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629{
630 struct tcmsg *tcm;
631 struct nlmsghdr *nlh;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700632 unsigned char *b = skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
Eric W. Biederman15e47302012-09-07 20:12:54 +0000634 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*tcm), flags);
David S. Miller942b8162012-06-26 21:48:50 -0700635 if (!nlh)
636 goto out_nlmsg_trim;
637 tcm = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 tcm->tcm_family = AF_UNSPEC;
Patrick McHardy9ef1d4c2005-06-28 12:55:30 -0700639 tcm->tcm__pad1 = 0;
Jiri Pirkoad61df92009-10-08 01:21:46 -0700640 tcm->tcm__pad2 = 0;
David S. Miller5ce2d482008-07-08 17:06:30 -0700641 tcm->tcm_ifindex = qdisc_dev(tp->q)->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 tcm->tcm_parent = tp->classid;
643 tcm->tcm_info = TC_H_MAKE(tp->prio, tp->protocol);
David S. Miller1b34ec42012-03-29 05:11:39 -0400644 if (nla_put_string(skb, TCA_KIND, tp->ops->kind))
645 goto nla_put_failure;
Jiri Pirko5bc17012017-05-17 11:08:01 +0200646 if (nla_put_u32(skb, TCA_CHAIN, tp->chain->index))
647 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 tcm->tcm_handle = fh;
649 if (RTM_DELTFILTER != event) {
650 tcm->tcm_handle = 0;
WANG Cong832d1d52014-01-09 16:14:01 -0800651 if (tp->ops->dump && tp->ops->dump(net, tp, fh, skb, tcm) < 0)
Patrick McHardyadd93b62008-01-22 22:11:33 -0800652 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 }
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700654 nlh->nlmsg_len = skb_tail_pointer(skb) - b;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 return skb->len;
656
David S. Miller942b8162012-06-26 21:48:50 -0700657out_nlmsg_trim:
Patrick McHardyadd93b62008-01-22 22:11:33 -0800658nla_put_failure:
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -0700659 nlmsg_trim(skb, b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 return -1;
661}
662
Tom Goff7316ae82010-03-19 15:40:13 +0000663static int tfilter_notify(struct net *net, struct sk_buff *oskb,
664 struct nlmsghdr *n, struct tcf_proto *tp,
Eric Dumazetfa59b272016-10-09 20:25:55 -0700665 unsigned long fh, int event, bool unicast)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666{
667 struct sk_buff *skb;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000668 u32 portid = oskb ? NETLINK_CB(oskb).portid : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
670 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
671 if (!skb)
672 return -ENOBUFS;
673
Roman Mashak30a391a2016-11-16 17:16:10 -0500674 if (tcf_fill_node(net, skb, tp, fh, portid, n->nlmsg_seq,
675 n->nlmsg_flags, event) <= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 kfree_skb(skb);
677 return -EINVAL;
678 }
679
Eric Dumazetfa59b272016-10-09 20:25:55 -0700680 if (unicast)
681 return netlink_unicast(net->rtnl, skb, portid, MSG_DONTWAIT);
682
Eric W. Biederman15e47302012-09-07 20:12:54 +0000683 return rtnetlink_send(skb, net, portid, RTNLGRP_TC,
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -0800684 n->nlmsg_flags & NLM_F_ECHO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685}
686
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -0800687struct tcf_dump_args {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 struct tcf_walker w;
689 struct sk_buff *skb;
690 struct netlink_callback *cb;
691};
692
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -0800693static int tcf_node_dump(struct tcf_proto *tp, unsigned long n,
694 struct tcf_walker *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695{
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -0800696 struct tcf_dump_args *a = (void *)arg;
WANG Cong832d1d52014-01-09 16:14:01 -0800697 struct net *net = sock_net(a->skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
WANG Cong832d1d52014-01-09 16:14:01 -0800699 return tcf_fill_node(net, a->skb, tp, n, NETLINK_CB(a->cb->skb).portid,
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -0400700 a->cb->nlh->nlmsg_seq, NLM_F_MULTI,
701 RTM_NEWTFILTER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702}
703
Jiri Pirko5bc17012017-05-17 11:08:01 +0200704static bool tcf_chain_dump(struct tcf_chain *chain, struct sk_buff *skb,
Jiri Pirkoacb31fa2017-05-17 11:08:00 +0200705 struct netlink_callback *cb,
706 long index_start, long *p_index)
707{
708 struct net *net = sock_net(skb->sk);
709 struct tcmsg *tcm = nlmsg_data(cb->nlh);
710 struct tcf_dump_args arg;
711 struct tcf_proto *tp;
712
713 for (tp = rtnl_dereference(chain->filter_chain);
714 tp; tp = rtnl_dereference(tp->next), (*p_index)++) {
715 if (*p_index < index_start)
716 continue;
717 if (TC_H_MAJ(tcm->tcm_info) &&
718 TC_H_MAJ(tcm->tcm_info) != tp->prio)
719 continue;
720 if (TC_H_MIN(tcm->tcm_info) &&
721 TC_H_MIN(tcm->tcm_info) != tp->protocol)
722 continue;
723 if (*p_index > index_start)
724 memset(&cb->args[1], 0,
725 sizeof(cb->args) - sizeof(cb->args[0]));
726 if (cb->args[1] == 0) {
727 if (tcf_fill_node(net, skb, tp, 0,
728 NETLINK_CB(cb->skb).portid,
729 cb->nlh->nlmsg_seq, NLM_F_MULTI,
730 RTM_NEWTFILTER) <= 0)
Jiri Pirko5bc17012017-05-17 11:08:01 +0200731 return false;
Jiri Pirkoacb31fa2017-05-17 11:08:00 +0200732
733 cb->args[1] = 1;
734 }
735 if (!tp->ops->walk)
736 continue;
737 arg.w.fn = tcf_node_dump;
738 arg.skb = skb;
739 arg.cb = cb;
740 arg.w.stop = 0;
741 arg.w.skip = cb->args[1] - 1;
742 arg.w.count = 0;
743 tp->ops->walk(tp, &arg.w);
744 cb->args[1] = arg.w.count + 1;
745 if (arg.w.stop)
Jiri Pirko5bc17012017-05-17 11:08:01 +0200746 return false;
Jiri Pirkoacb31fa2017-05-17 11:08:00 +0200747 }
Jiri Pirko5bc17012017-05-17 11:08:01 +0200748 return true;
Jiri Pirkoacb31fa2017-05-17 11:08:00 +0200749}
750
Eric Dumazetbd27a872009-11-05 20:57:26 -0800751/* called with RTNL */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752static int tc_dump_tfilter(struct sk_buff *skb, struct netlink_callback *cb)
753{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900754 struct net *net = sock_net(skb->sk);
Jiri Pirko5bc17012017-05-17 11:08:01 +0200755 struct nlattr *tca[TCA_MAX + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 struct net_device *dev;
757 struct Qdisc *q;
Jiri Pirko6529eab2017-05-17 11:07:55 +0200758 struct tcf_block *block;
Jiri Pirko2190d1d2017-05-17 11:07:59 +0200759 struct tcf_chain *chain;
David S. Miller942b8162012-06-26 21:48:50 -0700760 struct tcmsg *tcm = nlmsg_data(cb->nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 unsigned long cl = 0;
Eric Dumazet20fea082007-11-14 01:44:41 -0800762 const struct Qdisc_class_ops *cops;
Jiri Pirkoacb31fa2017-05-17 11:08:00 +0200763 long index_start;
764 long index;
Jiri Pirko5bc17012017-05-17 11:08:01 +0200765 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
Hong zhi guo573ce262013-03-27 06:47:04 +0000767 if (nlmsg_len(cb->nlh) < sizeof(*tcm))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 return skb->len;
Jiri Pirko5bc17012017-05-17 11:08:01 +0200769
770 err = nlmsg_parse(cb->nlh, sizeof(*tcm), tca, TCA_MAX, NULL, NULL);
771 if (err)
772 return err;
773
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000774 dev = __dev_get_by_index(net, tcm->tcm_ifindex);
775 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 return skb->len;
777
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 if (!tcm->tcm_parent)
Patrick McHardyaf356af2009-09-04 06:41:18 +0000779 q = dev->qdisc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 else
781 q = qdisc_lookup(dev, TC_H_MAJ(tcm->tcm_parent));
782 if (!q)
783 goto out;
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000784 cops = q->ops->cl_ops;
785 if (!cops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 goto errout;
Jiri Pirko6529eab2017-05-17 11:07:55 +0200787 if (!cops->tcf_block)
Patrick McHardy71ebe5e2009-09-04 06:41:15 +0000788 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 if (TC_H_MIN(tcm->tcm_parent)) {
790 cl = cops->get(q, tcm->tcm_parent);
791 if (cl == 0)
792 goto errout;
793 }
Jiri Pirko6529eab2017-05-17 11:07:55 +0200794 block = cops->tcf_block(q, cl);
795 if (!block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 goto errout;
797
Jiri Pirkoacb31fa2017-05-17 11:08:00 +0200798 index_start = cb->args[0];
799 index = 0;
Jiri Pirko5bc17012017-05-17 11:08:01 +0200800
801 list_for_each_entry(chain, &block->chain_list, list) {
802 if (tca[TCA_CHAIN] &&
803 nla_get_u32(tca[TCA_CHAIN]) != chain->index)
804 continue;
805 if (!tcf_chain_dump(chain, skb, cb, index_start, &index))
806 break;
807 }
808
Jiri Pirkoacb31fa2017-05-17 11:08:00 +0200809 cb->args[0] = index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
811errout:
812 if (cl)
813 cops->put(q, cl);
814out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 return skb->len;
816}
817
WANG Cong18d02642014-09-25 10:26:37 -0700818void tcf_exts_destroy(struct tcf_exts *exts)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819{
820#ifdef CONFIG_NET_CLS_ACT
WANG Cong22dc13c2016-08-13 22:35:00 -0700821 LIST_HEAD(actions);
822
823 tcf_exts_to_list(exts, &actions);
824 tcf_action_destroy(&actions, TCA_ACT_UNBIND);
825 kfree(exts->actions);
826 exts->nr_actions = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827#endif
828}
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -0800829EXPORT_SYMBOL(tcf_exts_destroy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
Benjamin LaHaisec1b52732013-01-14 05:15:39 +0000831int tcf_exts_validate(struct net *net, struct tcf_proto *tp, struct nlattr **tb,
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -0400832 struct nlattr *rate_tlv, struct tcf_exts *exts, bool ovr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834#ifdef CONFIG_NET_CLS_ACT
835 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 struct tc_action *act;
837
WANG Cong5da57f42013-12-15 20:15:07 -0800838 if (exts->police && tb[exts->police]) {
Jiri Pirko9fb9f252017-05-17 11:08:02 +0200839 act = tcf_action_init_1(net, tp, tb[exts->police],
840 rate_tlv, "police", ovr,
841 TCA_ACT_BIND);
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800842 if (IS_ERR(act))
843 return PTR_ERR(act);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
WANG Cong33be6272013-12-15 20:15:05 -0800845 act->type = exts->type = TCA_OLD_COMPAT;
WANG Cong22dc13c2016-08-13 22:35:00 -0700846 exts->actions[0] = act;
847 exts->nr_actions = 1;
WANG Cong5da57f42013-12-15 20:15:07 -0800848 } else if (exts->action && tb[exts->action]) {
WANG Cong22dc13c2016-08-13 22:35:00 -0700849 LIST_HEAD(actions);
850 int err, i = 0;
851
Jiri Pirko9fb9f252017-05-17 11:08:02 +0200852 err = tcf_action_init(net, tp, tb[exts->action],
853 rate_tlv, NULL, ovr, TCA_ACT_BIND,
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -0400854 &actions);
WANG Cong33be6272013-12-15 20:15:05 -0800855 if (err)
856 return err;
WANG Cong22dc13c2016-08-13 22:35:00 -0700857 list_for_each_entry(act, &actions, list)
858 exts->actions[i++] = act;
859 exts->nr_actions = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 }
861 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862#else
WANG Cong5da57f42013-12-15 20:15:07 -0800863 if ((exts->action && tb[exts->action]) ||
864 (exts->police && tb[exts->police]))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 return -EOPNOTSUPP;
866#endif
867
868 return 0;
869}
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -0800870EXPORT_SYMBOL(tcf_exts_validate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -0800872void tcf_exts_change(struct tcf_proto *tp, struct tcf_exts *dst,
873 struct tcf_exts *src)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874{
875#ifdef CONFIG_NET_CLS_ACT
WANG Cong22dc13c2016-08-13 22:35:00 -0700876 struct tcf_exts old = *dst;
877
Cong Wanga49eb422014-04-25 13:55:30 -0700878 tcf_tree_lock(tp);
WANG Cong22dc13c2016-08-13 22:35:00 -0700879 dst->nr_actions = src->nr_actions;
880 dst->actions = src->actions;
WANG Cong5301e3e2014-10-06 17:21:54 -0700881 dst->type = src->type;
Cong Wanga49eb422014-04-25 13:55:30 -0700882 tcf_tree_unlock(tp);
WANG Cong22dc13c2016-08-13 22:35:00 -0700883
884 tcf_exts_destroy(&old);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885#endif
886}
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -0800887EXPORT_SYMBOL(tcf_exts_change);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
WANG Cong22dc13c2016-08-13 22:35:00 -0700889#ifdef CONFIG_NET_CLS_ACT
890static struct tc_action *tcf_exts_first_act(struct tcf_exts *exts)
891{
892 if (exts->nr_actions == 0)
893 return NULL;
894 else
895 return exts->actions[0];
896}
897#endif
WANG Cong33be6272013-12-15 20:15:05 -0800898
WANG Cong5da57f42013-12-15 20:15:07 -0800899int tcf_exts_dump(struct sk_buff *skb, struct tcf_exts *exts)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900{
901#ifdef CONFIG_NET_CLS_ACT
Cong Wang9cc63db2014-07-16 14:25:30 -0700902 struct nlattr *nest;
903
WANG Cong22dc13c2016-08-13 22:35:00 -0700904 if (exts->action && exts->nr_actions) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 /*
906 * again for backward compatible mode - we want
907 * to work with both old and new modes of entering
908 * tc data even if iproute2 was newer - jhs
909 */
WANG Cong33be6272013-12-15 20:15:05 -0800910 if (exts->type != TCA_OLD_COMPAT) {
WANG Cong22dc13c2016-08-13 22:35:00 -0700911 LIST_HEAD(actions);
912
WANG Cong5da57f42013-12-15 20:15:07 -0800913 nest = nla_nest_start(skb, exts->action);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800914 if (nest == NULL)
915 goto nla_put_failure;
WANG Cong22dc13c2016-08-13 22:35:00 -0700916
917 tcf_exts_to_list(exts, &actions);
918 if (tcf_action_dump(skb, &actions, 0, 0) < 0)
Patrick McHardyadd93b62008-01-22 22:11:33 -0800919 goto nla_put_failure;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800920 nla_nest_end(skb, nest);
WANG Cong5da57f42013-12-15 20:15:07 -0800921 } else if (exts->police) {
WANG Cong33be6272013-12-15 20:15:05 -0800922 struct tc_action *act = tcf_exts_first_act(exts);
WANG Cong5da57f42013-12-15 20:15:07 -0800923 nest = nla_nest_start(skb, exts->police);
Jamal Hadi Salim63acd682013-12-23 08:02:12 -0500924 if (nest == NULL || !act)
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800925 goto nla_put_failure;
WANG Cong33be6272013-12-15 20:15:05 -0800926 if (tcf_action_dump_old(skb, act, 0, 0) < 0)
Patrick McHardyadd93b62008-01-22 22:11:33 -0800927 goto nla_put_failure;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800928 nla_nest_end(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 }
930 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 return 0;
Cong Wang9cc63db2014-07-16 14:25:30 -0700932
933nla_put_failure:
934 nla_nest_cancel(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 return -1;
Cong Wang9cc63db2014-07-16 14:25:30 -0700936#else
937 return 0;
938#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939}
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -0800940EXPORT_SYMBOL(tcf_exts_dump);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -0800942
WANG Cong5da57f42013-12-15 20:15:07 -0800943int tcf_exts_dump_stats(struct sk_buff *skb, struct tcf_exts *exts)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944{
945#ifdef CONFIG_NET_CLS_ACT
WANG Cong33be6272013-12-15 20:15:05 -0800946 struct tc_action *a = tcf_exts_first_act(exts);
Ignacy Gawędzkib057df22015-02-03 19:05:18 +0100947 if (a != NULL && tcf_action_copy_stats(skb, a, 1) < 0)
WANG Cong33be6272013-12-15 20:15:05 -0800948 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949#endif
950 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951}
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -0800952EXPORT_SYMBOL(tcf_exts_dump_stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
Hadar Hen Zion7091d8c2016-12-01 14:06:37 +0200954int tcf_exts_get_dev(struct net_device *dev, struct tcf_exts *exts,
955 struct net_device **hw_dev)
956{
957#ifdef CONFIG_NET_CLS_ACT
958 const struct tc_action *a;
959 LIST_HEAD(actions);
960
961 if (tc_no_actions(exts))
962 return -EINVAL;
963
964 tcf_exts_to_list(exts, &actions);
965 list_for_each_entry(a, &actions, list) {
966 if (a->ops->get_dev) {
967 a->ops->get_dev(a, dev_net(dev), hw_dev);
968 break;
969 }
970 }
971 if (*hw_dev)
972 return 0;
973#endif
974 return -EOPNOTSUPP;
975}
976EXPORT_SYMBOL(tcf_exts_get_dev);
977
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978static int __init tc_filter_init(void)
979{
Greg Rosec7ac8672011-06-10 01:27:09 +0000980 rtnl_register(PF_UNSPEC, RTM_NEWTFILTER, tc_ctl_tfilter, NULL, NULL);
981 rtnl_register(PF_UNSPEC, RTM_DELTFILTER, tc_ctl_tfilter, NULL, NULL);
Thomas Graf82623c02007-03-22 11:56:22 -0700982 rtnl_register(PF_UNSPEC, RTM_GETTFILTER, tc_ctl_tfilter,
Greg Rosec7ac8672011-06-10 01:27:09 +0000983 tc_dump_tfilter, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 return 0;
986}
987
988subsys_initcall(tc_filter_init);