blob: 732f7cae459d4656aa8d69020f44a66abb501f34 [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,
109 struct tcf_proto __rcu **chain, int event)
110{
111 struct tcf_proto __rcu **it_chain;
112 struct tcf_proto *tp;
113
114 for (it_chain = chain; (tp = rtnl_dereference(*it_chain)) != NULL;
115 it_chain = &tp->next)
Roman Mashak19a8bb22016-11-22 20:57:04 -0500116 tfilter_notify(net, oskb, n, tp, 0, event, false);
Daniel Borkmannea7f8272016-06-10 23:10:22 +0200117}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119/* Select new prio value from the range, managed by kernel. */
120
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -0800121static inline u32 tcf_auto_prio(struct tcf_proto *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -0800123 u32 first = TC_H_MAKE(0xC0000000U, 0U);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125 if (tp)
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000126 first = tp->prio - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
128 return first;
129}
130
Jiri Pirko33a48922017-02-09 14:38:57 +0100131static struct tcf_proto *tcf_proto_create(const char *kind, u32 protocol,
132 u32 prio, u32 parent, struct Qdisc *q)
133{
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;
168
169 err = tp->ops->init(tp);
170 if (err) {
171 module_put(tp->ops->owner);
172 goto errout;
173 }
174 return tp;
175
176errout:
177 kfree(tp);
178 return ERR_PTR(err);
179}
180
Jiri Pirkocf1facd2017-02-09 14:38:56 +0100181static bool tcf_proto_destroy(struct tcf_proto *tp, bool force)
182{
183 if (tp->ops->destroy(tp, force)) {
184 module_put(tp->ops->owner);
185 kfree_rcu(tp, rcu);
186 return true;
187 }
188 return false;
189}
190
191void tcf_destroy_chain(struct tcf_proto __rcu **fl)
192{
193 struct tcf_proto *tp;
194
195 while ((tp = rtnl_dereference(*fl)) != NULL) {
196 RCU_INIT_POINTER(*fl, tp->next);
197 tcf_proto_destroy(tp, true);
198 }
199}
200EXPORT_SYMBOL(tcf_destroy_chain);
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202/* Add/change/delete/get a filter node */
203
Thomas Graf661d2962013-03-21 07:45:29 +0000204static int tc_ctl_tfilter(struct sk_buff *skb, struct nlmsghdr *n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900206 struct net *net = sock_net(skb->sk);
Patrick McHardyadd93b62008-01-22 22:11:33 -0800207 struct nlattr *tca[TCA_MAX + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 struct tcmsg *t;
209 u32 protocol;
210 u32 prio;
211 u32 nprio;
212 u32 parent;
213 struct net_device *dev;
214 struct Qdisc *q;
John Fastabend25d8c0d2014-09-12 20:05:27 -0700215 struct tcf_proto __rcu **back;
216 struct tcf_proto __rcu **chain;
Jiri Pirko40c81b22017-02-09 14:39:00 +0100217 struct tcf_proto *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 struct tcf_proto *tp;
Eric Dumazet20fea082007-11-14 01:44:41 -0800219 const struct Qdisc_class_ops *cops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 unsigned long cl;
221 unsigned long fh;
222 int err;
Daniel Borkmann628185c2016-12-21 18:04:11 +0100223 int tp_created;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Stéphane Graber4e8bbb82014-04-30 11:25:43 -0400225 if ((n->nlmsg_type != RTM_GETTFILTER) &&
David S. Miller5f013c9b2014-05-12 13:19:14 -0400226 !netlink_ns_capable(skb, net->user_ns, CAP_NET_ADMIN))
Eric W. Biedermandfc47ef2012-11-16 03:03:00 +0000227 return -EPERM;
Hong zhi guode179c82013-03-25 17:36:33 +0000228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229replay:
Daniel Borkmann628185c2016-12-21 18:04:11 +0100230 tp_created = 0;
231
Hong zhi guode179c82013-03-25 17:36:33 +0000232 err = nlmsg_parse(n, sizeof(*t), tca, TCA_MAX, NULL);
233 if (err < 0)
234 return err;
235
David S. Miller942b8162012-06-26 21:48:50 -0700236 t = nlmsg_data(n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 protocol = TC_H_MIN(t->tcm_info);
238 prio = TC_H_MAJ(t->tcm_info);
239 nprio = prio;
240 parent = t->tcm_parent;
241 cl = 0;
242
243 if (prio == 0) {
Daniel Borkmannea7f8272016-06-10 23:10:22 +0200244 switch (n->nlmsg_type) {
245 case RTM_DELTFILTER:
Daniel Borkmann9f6ed032016-06-16 23:19:29 +0200246 if (protocol || t->tcm_handle || tca[TCA_KIND])
Daniel Borkmannea7f8272016-06-10 23:10:22 +0200247 return -ENOENT;
248 break;
249 case RTM_NEWTFILTER:
250 /* If no priority is provided by the user,
251 * we allocate one.
252 */
253 if (n->nlmsg_flags & NLM_F_CREATE) {
254 prio = TC_H_MAKE(0x80000000U, 0U);
255 break;
256 }
257 /* fall-through */
258 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 return -ENOENT;
Daniel Borkmannea7f8272016-06-10 23:10:22 +0200260 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 }
262
263 /* Find head of filter chain. */
264
265 /* Find link */
Tom Goff7316ae82010-03-19 15:40:13 +0000266 dev = __dev_get_by_index(net, t->tcm_ifindex);
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -0800267 if (dev == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 return -ENODEV;
269
270 /* Find qdisc */
271 if (!parent) {
Patrick McHardyaf356af2009-09-04 06:41:18 +0000272 q = dev->qdisc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 parent = q->handle;
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -0800274 } else {
275 q = qdisc_lookup(dev, TC_H_MAJ(t->tcm_parent));
276 if (q == NULL)
277 return -EINVAL;
278 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
280 /* Is it classful? */
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000281 cops = q->ops->cl_ops;
282 if (!cops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 return -EINVAL;
284
Patrick McHardy71ebe5e2009-09-04 06:41:15 +0000285 if (cops->tcf_chain == NULL)
286 return -EOPNOTSUPP;
287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 /* Do we search for filter, attached to class? */
289 if (TC_H_MIN(parent)) {
290 cl = cops->get(q, parent);
291 if (cl == 0)
292 return -ENOENT;
293 }
294
295 /* And the last stroke */
296 chain = cops->tcf_chain(q, cl);
Jiri Pirko6bb16e72017-02-09 14:38:58 +0100297 if (chain == NULL) {
298 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 goto errout;
Jiri Pirko6bb16e72017-02-09 14:38:58 +0100300 }
Daniel Borkmannea7f8272016-06-10 23:10:22 +0200301 if (n->nlmsg_type == RTM_DELTFILTER && prio == 0) {
302 tfilter_notify_chain(net, skb, n, chain, RTM_DELTFILTER);
303 tcf_destroy_chain(chain);
304 err = 0;
305 goto errout;
306 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
308 /* Check the chain for existence of proto-tcf with this priority */
John Fastabend25d8c0d2014-09-12 20:05:27 -0700309 for (back = chain;
310 (tp = rtnl_dereference(*back)) != NULL;
311 back = &tp->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 if (tp->prio >= prio) {
313 if (tp->prio == prio) {
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000314 if (!nprio ||
Jiri Pirko6bb16e72017-02-09 14:38:58 +0100315 (tp->protocol != protocol && protocol)) {
316 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 goto errout;
Jiri Pirko6bb16e72017-02-09 14:38:58 +0100318 }
Jiri Pirko72150322017-02-09 14:38:59 +0100319 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 tp = NULL;
Jiri Pirko72150322017-02-09 14:38:59 +0100321 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 break;
323 }
324 }
325
326 if (tp == NULL) {
327 /* Proto-tcf does not exist, create new one */
328
Jiri Pirko6bb16e72017-02-09 14:38:58 +0100329 if (tca[TCA_KIND] == NULL || !protocol) {
330 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 goto errout;
Jiri Pirko6bb16e72017-02-09 14:38:58 +0100332 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000334 if (n->nlmsg_type != RTM_NEWTFILTER ||
Jiri Pirko6bb16e72017-02-09 14:38:58 +0100335 !(n->nlmsg_flags & NLM_F_CREATE)) {
336 err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 goto errout;
Jiri Pirko6bb16e72017-02-09 14:38:58 +0100338 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Jiri Pirko33a48922017-02-09 14:38:57 +0100340 if (!nprio)
341 nprio = TC_H_MAJ(tcf_auto_prio(rtnl_dereference(*back)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Jiri Pirko33a48922017-02-09 14:38:57 +0100343 tp = tcf_proto_create(nla_data(tca[TCA_KIND]),
344 protocol, nprio, parent, q);
345 if (IS_ERR(tp)) {
346 err = PTR_ERR(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 goto errout;
348 }
Minoru Usui12186be2009-06-02 02:17:34 -0700349 tp_created = 1;
Jiri Pirko6bb16e72017-02-09 14:38:58 +0100350 } else if (tca[TCA_KIND] && nla_strcmp(tca[TCA_KIND], tp->ops->kind)) {
351 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 goto errout;
Jiri Pirko6bb16e72017-02-09 14:38:58 +0100353 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
355 fh = tp->ops->get(tp, t->tcm_handle);
356
357 if (fh == 0) {
358 if (n->nlmsg_type == RTM_DELTFILTER && t->tcm_handle == 0) {
Jiri Pirko40c81b22017-02-09 14:39:00 +0100359 next = rtnl_dereference(tp->next);
John Fastabend25d8c0d2014-09-12 20:05:27 -0700360 RCU_INIT_POINTER(*back, next);
Eric Dumazetfa59b272016-10-09 20:25:55 -0700361 tfilter_notify(net, skb, n, tp, fh,
362 RTM_DELTFILTER, false);
Jiri Pirko79112c22017-02-09 14:38:55 +0100363 tcf_proto_destroy(tp, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 err = 0;
365 goto errout;
366 }
367
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -0800368 if (n->nlmsg_type != RTM_NEWTFILTER ||
Jiri Pirko6bb16e72017-02-09 14:38:58 +0100369 !(n->nlmsg_flags & NLM_F_CREATE)) {
370 err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 goto errout;
Jiri Pirko6bb16e72017-02-09 14:38:58 +0100372 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 } else {
374 switch (n->nlmsg_type) {
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900375 case RTM_NEWTFILTER:
Minoru Usui12186be2009-06-02 02:17:34 -0700376 if (n->nlmsg_flags & NLM_F_EXCL) {
377 if (tp_created)
Jiri Pirko79112c22017-02-09 14:38:55 +0100378 tcf_proto_destroy(tp, true);
Jiri Pirko6bb16e72017-02-09 14:38:58 +0100379 err = -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 goto errout;
Minoru Usui12186be2009-06-02 02:17:34 -0700381 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 break;
383 case RTM_DELTFILTER:
384 err = tp->ops->delete(tp, fh);
Jiri Pirko40c81b22017-02-09 14:39:00 +0100385 if (err)
386 goto errout;
387 next = rtnl_dereference(tp->next);
388 tfilter_notify(net, skb, n, tp, t->tcm_handle,
389 RTM_DELTFILTER, false);
390 if (tcf_proto_destroy(tp, false))
391 RCU_INIT_POINTER(*back, next);
Jiri Pirkod7cf52c2017-02-14 16:27:13 +0100392 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 case RTM_GETTFILTER:
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -0400394 err = tfilter_notify(net, skb, n, tp, fh,
Eric Dumazetfa59b272016-10-09 20:25:55 -0700395 RTM_NEWTFILTER, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 goto errout;
397 default:
398 err = -EINVAL;
399 goto errout;
400 }
401 }
402
Cong Wang2f7ef2f2014-04-25 13:54:06 -0700403 err = tp->ops->change(net, skb, tp, cl, t->tcm_handle, tca, &fh,
404 n->nlmsg_flags & NLM_F_CREATE ? TCA_ACT_NOREPLACE : TCA_ACT_REPLACE);
Minoru Usui12186be2009-06-02 02:17:34 -0700405 if (err == 0) {
406 if (tp_created) {
John Fastabend25d8c0d2014-09-12 20:05:27 -0700407 RCU_INIT_POINTER(tp->next, rtnl_dereference(*back));
408 rcu_assign_pointer(*back, tp);
Minoru Usui12186be2009-06-02 02:17:34 -0700409 }
Eric Dumazetfa59b272016-10-09 20:25:55 -0700410 tfilter_notify(net, skb, n, tp, fh, RTM_NEWTFILTER, false);
Minoru Usui12186be2009-06-02 02:17:34 -0700411 } else {
412 if (tp_created)
Jiri Pirko79112c22017-02-09 14:38:55 +0100413 tcf_proto_destroy(tp, true);
Minoru Usui12186be2009-06-02 02:17:34 -0700414 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
416errout:
417 if (cl)
418 cops->put(q, cl);
419 if (err == -EAGAIN)
420 /* Replay the request. */
421 goto replay;
422 return err;
423}
424
Jamal Hadi Salim0b0f43f2016-06-05 10:41:32 -0400425static int tcf_fill_node(struct net *net, struct sk_buff *skb,
426 struct tcf_proto *tp, unsigned long fh, u32 portid,
427 u32 seq, u16 flags, int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428{
429 struct tcmsg *tcm;
430 struct nlmsghdr *nlh;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700431 unsigned char *b = skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Eric W. Biederman15e47302012-09-07 20:12:54 +0000433 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*tcm), flags);
David S. Miller942b8162012-06-26 21:48:50 -0700434 if (!nlh)
435 goto out_nlmsg_trim;
436 tcm = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 tcm->tcm_family = AF_UNSPEC;
Patrick McHardy9ef1d4c2005-06-28 12:55:30 -0700438 tcm->tcm__pad1 = 0;
Jiri Pirkoad61df92009-10-08 01:21:46 -0700439 tcm->tcm__pad2 = 0;
David S. Miller5ce2d482008-07-08 17:06:30 -0700440 tcm->tcm_ifindex = qdisc_dev(tp->q)->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 tcm->tcm_parent = tp->classid;
442 tcm->tcm_info = TC_H_MAKE(tp->prio, tp->protocol);
David S. Miller1b34ec42012-03-29 05:11:39 -0400443 if (nla_put_string(skb, TCA_KIND, tp->ops->kind))
444 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 tcm->tcm_handle = fh;
446 if (RTM_DELTFILTER != event) {
447 tcm->tcm_handle = 0;
WANG Cong832d1d52014-01-09 16:14:01 -0800448 if (tp->ops->dump && tp->ops->dump(net, tp, fh, skb, tcm) < 0)
Patrick McHardyadd93b62008-01-22 22:11:33 -0800449 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 }
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700451 nlh->nlmsg_len = skb_tail_pointer(skb) - b;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 return skb->len;
453
David S. Miller942b8162012-06-26 21:48:50 -0700454out_nlmsg_trim:
Patrick McHardyadd93b62008-01-22 22:11:33 -0800455nla_put_failure:
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -0700456 nlmsg_trim(skb, b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 return -1;
458}
459
Tom Goff7316ae82010-03-19 15:40:13 +0000460static int tfilter_notify(struct net *net, struct sk_buff *oskb,
461 struct nlmsghdr *n, struct tcf_proto *tp,
Eric Dumazetfa59b272016-10-09 20:25:55 -0700462 unsigned long fh, int event, bool unicast)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463{
464 struct sk_buff *skb;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000465 u32 portid = oskb ? NETLINK_CB(oskb).portid : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
467 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
468 if (!skb)
469 return -ENOBUFS;
470
Roman Mashak30a391a2016-11-16 17:16:10 -0500471 if (tcf_fill_node(net, skb, tp, fh, portid, n->nlmsg_seq,
472 n->nlmsg_flags, event) <= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 kfree_skb(skb);
474 return -EINVAL;
475 }
476
Eric Dumazetfa59b272016-10-09 20:25:55 -0700477 if (unicast)
478 return netlink_unicast(net->rtnl, skb, portid, MSG_DONTWAIT);
479
Eric W. Biederman15e47302012-09-07 20:12:54 +0000480 return rtnetlink_send(skb, net, portid, RTNLGRP_TC,
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -0800481 n->nlmsg_flags & NLM_F_ECHO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482}
483
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -0800484struct tcf_dump_args {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 struct tcf_walker w;
486 struct sk_buff *skb;
487 struct netlink_callback *cb;
488};
489
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -0800490static int tcf_node_dump(struct tcf_proto *tp, unsigned long n,
491 struct tcf_walker *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492{
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -0800493 struct tcf_dump_args *a = (void *)arg;
WANG Cong832d1d52014-01-09 16:14:01 -0800494 struct net *net = sock_net(a->skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
WANG Cong832d1d52014-01-09 16:14:01 -0800496 return tcf_fill_node(net, a->skb, tp, n, NETLINK_CB(a->cb->skb).portid,
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -0400497 a->cb->nlh->nlmsg_seq, NLM_F_MULTI,
498 RTM_NEWTFILTER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499}
500
Eric Dumazetbd27a872009-11-05 20:57:26 -0800501/* called with RTNL */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502static int tc_dump_tfilter(struct sk_buff *skb, struct netlink_callback *cb)
503{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900504 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 int t;
506 int s_t;
507 struct net_device *dev;
508 struct Qdisc *q;
John Fastabend25d8c0d2014-09-12 20:05:27 -0700509 struct tcf_proto *tp, __rcu **chain;
David S. Miller942b8162012-06-26 21:48:50 -0700510 struct tcmsg *tcm = nlmsg_data(cb->nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 unsigned long cl = 0;
Eric Dumazet20fea082007-11-14 01:44:41 -0800512 const struct Qdisc_class_ops *cops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 struct tcf_dump_args arg;
514
Hong zhi guo573ce262013-03-27 06:47:04 +0000515 if (nlmsg_len(cb->nlh) < sizeof(*tcm))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 return skb->len;
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000517 dev = __dev_get_by_index(net, tcm->tcm_ifindex);
518 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 return skb->len;
520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 if (!tcm->tcm_parent)
Patrick McHardyaf356af2009-09-04 06:41:18 +0000522 q = dev->qdisc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 else
524 q = qdisc_lookup(dev, TC_H_MAJ(tcm->tcm_parent));
525 if (!q)
526 goto out;
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000527 cops = q->ops->cl_ops;
528 if (!cops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 goto errout;
Patrick McHardy71ebe5e2009-09-04 06:41:15 +0000530 if (cops->tcf_chain == NULL)
531 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 if (TC_H_MIN(tcm->tcm_parent)) {
533 cl = cops->get(q, tcm->tcm_parent);
534 if (cl == 0)
535 goto errout;
536 }
537 chain = cops->tcf_chain(q, cl);
538 if (chain == NULL)
539 goto errout;
540
541 s_t = cb->args[0];
542
John Fastabend25d8c0d2014-09-12 20:05:27 -0700543 for (tp = rtnl_dereference(*chain), t = 0;
544 tp; tp = rtnl_dereference(tp->next), t++) {
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000545 if (t < s_t)
546 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 if (TC_H_MAJ(tcm->tcm_info) &&
548 TC_H_MAJ(tcm->tcm_info) != tp->prio)
549 continue;
550 if (TC_H_MIN(tcm->tcm_info) &&
551 TC_H_MIN(tcm->tcm_info) != tp->protocol)
552 continue;
553 if (t > s_t)
Jamal Hadi Salim0b0f43f2016-06-05 10:41:32 -0400554 memset(&cb->args[1], 0,
555 sizeof(cb->args)-sizeof(cb->args[0]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 if (cb->args[1] == 0) {
Jamal Hadi Salim0b0f43f2016-06-05 10:41:32 -0400557 if (tcf_fill_node(net, skb, tp, 0,
558 NETLINK_CB(cb->skb).portid,
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -0800559 cb->nlh->nlmsg_seq, NLM_F_MULTI,
560 RTM_NEWTFILTER) <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 break;
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -0800562
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 cb->args[1] = 1;
564 }
565 if (tp->ops->walk == NULL)
566 continue;
567 arg.w.fn = tcf_node_dump;
568 arg.skb = skb;
569 arg.cb = cb;
570 arg.w.stop = 0;
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000571 arg.w.skip = cb->args[1] - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 arg.w.count = 0;
573 tp->ops->walk(tp, &arg.w);
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000574 cb->args[1] = arg.w.count + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 if (arg.w.stop)
576 break;
577 }
578
579 cb->args[0] = t;
580
581errout:
582 if (cl)
583 cops->put(q, cl);
584out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 return skb->len;
586}
587
WANG Cong18d02642014-09-25 10:26:37 -0700588void tcf_exts_destroy(struct tcf_exts *exts)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589{
590#ifdef CONFIG_NET_CLS_ACT
WANG Cong22dc13c2016-08-13 22:35:00 -0700591 LIST_HEAD(actions);
592
593 tcf_exts_to_list(exts, &actions);
594 tcf_action_destroy(&actions, TCA_ACT_UNBIND);
595 kfree(exts->actions);
596 exts->nr_actions = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597#endif
598}
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -0800599EXPORT_SYMBOL(tcf_exts_destroy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Benjamin LaHaisec1b52732013-01-14 05:15:39 +0000601int tcf_exts_validate(struct net *net, struct tcf_proto *tp, struct nlattr **tb,
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -0400602 struct nlattr *rate_tlv, struct tcf_exts *exts, bool ovr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604#ifdef CONFIG_NET_CLS_ACT
605 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 struct tc_action *act;
607
WANG Cong5da57f42013-12-15 20:15:07 -0800608 if (exts->police && tb[exts->police]) {
609 act = tcf_action_init_1(net, tb[exts->police], rate_tlv,
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -0400610 "police", ovr, TCA_ACT_BIND);
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800611 if (IS_ERR(act))
612 return PTR_ERR(act);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
WANG Cong33be6272013-12-15 20:15:05 -0800614 act->type = exts->type = TCA_OLD_COMPAT;
WANG Cong22dc13c2016-08-13 22:35:00 -0700615 exts->actions[0] = act;
616 exts->nr_actions = 1;
WANG Cong5da57f42013-12-15 20:15:07 -0800617 } else if (exts->action && tb[exts->action]) {
WANG Cong22dc13c2016-08-13 22:35:00 -0700618 LIST_HEAD(actions);
619 int err, i = 0;
620
WANG Cong5da57f42013-12-15 20:15:07 -0800621 err = tcf_action_init(net, tb[exts->action], rate_tlv,
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -0400622 NULL, ovr, TCA_ACT_BIND,
623 &actions);
WANG Cong33be6272013-12-15 20:15:05 -0800624 if (err)
625 return err;
WANG Cong22dc13c2016-08-13 22:35:00 -0700626 list_for_each_entry(act, &actions, list)
627 exts->actions[i++] = act;
628 exts->nr_actions = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 }
630 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631#else
WANG Cong5da57f42013-12-15 20:15:07 -0800632 if ((exts->action && tb[exts->action]) ||
633 (exts->police && tb[exts->police]))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 return -EOPNOTSUPP;
635#endif
636
637 return 0;
638}
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -0800639EXPORT_SYMBOL(tcf_exts_validate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -0800641void tcf_exts_change(struct tcf_proto *tp, struct tcf_exts *dst,
642 struct tcf_exts *src)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643{
644#ifdef CONFIG_NET_CLS_ACT
WANG Cong22dc13c2016-08-13 22:35:00 -0700645 struct tcf_exts old = *dst;
646
Cong Wanga49eb422014-04-25 13:55:30 -0700647 tcf_tree_lock(tp);
WANG Cong22dc13c2016-08-13 22:35:00 -0700648 dst->nr_actions = src->nr_actions;
649 dst->actions = src->actions;
WANG Cong5301e3e2014-10-06 17:21:54 -0700650 dst->type = src->type;
Cong Wanga49eb422014-04-25 13:55:30 -0700651 tcf_tree_unlock(tp);
WANG Cong22dc13c2016-08-13 22:35:00 -0700652
653 tcf_exts_destroy(&old);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654#endif
655}
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -0800656EXPORT_SYMBOL(tcf_exts_change);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
WANG Cong22dc13c2016-08-13 22:35:00 -0700658#ifdef CONFIG_NET_CLS_ACT
659static struct tc_action *tcf_exts_first_act(struct tcf_exts *exts)
660{
661 if (exts->nr_actions == 0)
662 return NULL;
663 else
664 return exts->actions[0];
665}
666#endif
WANG Cong33be6272013-12-15 20:15:05 -0800667
WANG Cong5da57f42013-12-15 20:15:07 -0800668int tcf_exts_dump(struct sk_buff *skb, struct tcf_exts *exts)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669{
670#ifdef CONFIG_NET_CLS_ACT
Cong Wang9cc63db2014-07-16 14:25:30 -0700671 struct nlattr *nest;
672
WANG Cong22dc13c2016-08-13 22:35:00 -0700673 if (exts->action && exts->nr_actions) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 /*
675 * again for backward compatible mode - we want
676 * to work with both old and new modes of entering
677 * tc data even if iproute2 was newer - jhs
678 */
WANG Cong33be6272013-12-15 20:15:05 -0800679 if (exts->type != TCA_OLD_COMPAT) {
WANG Cong22dc13c2016-08-13 22:35:00 -0700680 LIST_HEAD(actions);
681
WANG Cong5da57f42013-12-15 20:15:07 -0800682 nest = nla_nest_start(skb, exts->action);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800683 if (nest == NULL)
684 goto nla_put_failure;
WANG Cong22dc13c2016-08-13 22:35:00 -0700685
686 tcf_exts_to_list(exts, &actions);
687 if (tcf_action_dump(skb, &actions, 0, 0) < 0)
Patrick McHardyadd93b62008-01-22 22:11:33 -0800688 goto nla_put_failure;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800689 nla_nest_end(skb, nest);
WANG Cong5da57f42013-12-15 20:15:07 -0800690 } else if (exts->police) {
WANG Cong33be6272013-12-15 20:15:05 -0800691 struct tc_action *act = tcf_exts_first_act(exts);
WANG Cong5da57f42013-12-15 20:15:07 -0800692 nest = nla_nest_start(skb, exts->police);
Jamal Hadi Salim63acd682013-12-23 08:02:12 -0500693 if (nest == NULL || !act)
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800694 goto nla_put_failure;
WANG Cong33be6272013-12-15 20:15:05 -0800695 if (tcf_action_dump_old(skb, act, 0, 0) < 0)
Patrick McHardyadd93b62008-01-22 22:11:33 -0800696 goto nla_put_failure;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800697 nla_nest_end(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 }
699 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 return 0;
Cong Wang9cc63db2014-07-16 14:25:30 -0700701
702nla_put_failure:
703 nla_nest_cancel(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 return -1;
Cong Wang9cc63db2014-07-16 14:25:30 -0700705#else
706 return 0;
707#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708}
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -0800709EXPORT_SYMBOL(tcf_exts_dump);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -0800711
WANG Cong5da57f42013-12-15 20:15:07 -0800712int tcf_exts_dump_stats(struct sk_buff *skb, struct tcf_exts *exts)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713{
714#ifdef CONFIG_NET_CLS_ACT
WANG Cong33be6272013-12-15 20:15:05 -0800715 struct tc_action *a = tcf_exts_first_act(exts);
Ignacy Gawędzkib057df22015-02-03 19:05:18 +0100716 if (a != NULL && tcf_action_copy_stats(skb, a, 1) < 0)
WANG Cong33be6272013-12-15 20:15:05 -0800717 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718#endif
719 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720}
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -0800721EXPORT_SYMBOL(tcf_exts_dump_stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
Hadar Hen Zion7091d8c2016-12-01 14:06:37 +0200723int tcf_exts_get_dev(struct net_device *dev, struct tcf_exts *exts,
724 struct net_device **hw_dev)
725{
726#ifdef CONFIG_NET_CLS_ACT
727 const struct tc_action *a;
728 LIST_HEAD(actions);
729
730 if (tc_no_actions(exts))
731 return -EINVAL;
732
733 tcf_exts_to_list(exts, &actions);
734 list_for_each_entry(a, &actions, list) {
735 if (a->ops->get_dev) {
736 a->ops->get_dev(a, dev_net(dev), hw_dev);
737 break;
738 }
739 }
740 if (*hw_dev)
741 return 0;
742#endif
743 return -EOPNOTSUPP;
744}
745EXPORT_SYMBOL(tcf_exts_get_dev);
746
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747static int __init tc_filter_init(void)
748{
Greg Rosec7ac8672011-06-10 01:27:09 +0000749 rtnl_register(PF_UNSPEC, RTM_NEWTFILTER, tc_ctl_tfilter, NULL, NULL);
750 rtnl_register(PF_UNSPEC, RTM_DELTFILTER, tc_ctl_tfilter, NULL, NULL);
Thomas Graf82623c02007-03-22 11:56:22 -0700751 rtnl_register(PF_UNSPEC, RTM_GETTFILTER, tc_ctl_tfilter,
Greg Rosec7ac8672011-06-10 01:27:09 +0000752 tc_dump_tfilter, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 return 0;
755}
756
757subsys_initcall(tc_filter_init);