2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* net/sched/cls_api.c Packet classifier API.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version
|
|
|
|
* 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
|
|
|
|
*
|
|
|
|
* Changes:
|
|
|
|
*
|
|
|
|
* Eduardo J. Blanco <ejbs@netlabs.com.uy> :990222: kmod support
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/string.h>
|
|
|
|
#include <linux/errno.h>
|
|
|
|
#include <linux/skbuff.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/kmod.h>
|
2008-01-24 04:33:13 +00:00
|
|
|
#include <linux/err.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 08:04:11 +00:00
|
|
|
#include <linux/slab.h>
|
2007-11-30 13:21:31 +00:00
|
|
|
#include <net/net_namespace.h>
|
|
|
|
#include <net/sock.h>
|
2007-03-26 06:06:12 +00:00
|
|
|
#include <net/netlink.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <net/pkt_sched.h>
|
|
|
|
#include <net/pkt_cls.h>
|
|
|
|
|
|
|
|
/* The list of all installed classifier types */
|
2013-12-16 04:15:11 +00:00
|
|
|
static LIST_HEAD(tcf_proto_base);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/* Protects list of registered TC modules. It is pure SMP lock. */
|
|
|
|
static DEFINE_RWLOCK(cls_mod_lock);
|
|
|
|
|
|
|
|
/* Find classifier type by string name */
|
|
|
|
|
2011-07-05 23:25:42 +00:00
|
|
|
static const struct tcf_proto_ops *tcf_proto_lookup_ops(struct nlattr *kind)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2013-12-20 18:04:18 +00:00
|
|
|
const struct tcf_proto_ops *t, *res = NULL;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
if (kind) {
|
|
|
|
read_lock(&cls_mod_lock);
|
2013-12-16 04:15:11 +00:00
|
|
|
list_for_each_entry(t, &tcf_proto_base, head) {
|
2008-01-23 06:11:33 +00:00
|
|
|
if (nla_strcmp(kind, t->kind) == 0) {
|
2013-12-20 18:04:18 +00:00
|
|
|
if (try_module_get(t->owner))
|
|
|
|
res = t;
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
read_unlock(&cls_mod_lock);
|
|
|
|
}
|
2013-12-20 18:04:18 +00:00
|
|
|
return res;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Register(unregister) new classifier type */
|
|
|
|
|
|
|
|
int register_tcf_proto_ops(struct tcf_proto_ops *ops)
|
|
|
|
{
|
2013-12-16 04:15:11 +00:00
|
|
|
struct tcf_proto_ops *t;
|
2005-04-16 22:20:36 +00:00
|
|
|
int rc = -EEXIST;
|
|
|
|
|
|
|
|
write_lock(&cls_mod_lock);
|
2013-12-16 04:15:11 +00:00
|
|
|
list_for_each_entry(t, &tcf_proto_base, head)
|
2005-04-16 22:20:36 +00:00
|
|
|
if (!strcmp(ops->kind, t->kind))
|
|
|
|
goto out;
|
|
|
|
|
2013-12-16 04:15:11 +00:00
|
|
|
list_add_tail(&ops->head, &tcf_proto_base);
|
2005-04-16 22:20:36 +00:00
|
|
|
rc = 0;
|
|
|
|
out:
|
|
|
|
write_unlock(&cls_mod_lock);
|
|
|
|
return rc;
|
|
|
|
}
|
2008-01-21 10:26:41 +00:00
|
|
|
EXPORT_SYMBOL(register_tcf_proto_ops);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
int unregister_tcf_proto_ops(struct tcf_proto_ops *ops)
|
|
|
|
{
|
2013-12-16 04:15:11 +00:00
|
|
|
struct tcf_proto_ops *t;
|
2005-04-16 22:20:36 +00:00
|
|
|
int rc = -ENOENT;
|
|
|
|
|
net: sched: fix call_rcu() race on classifier module unloads
Vijay reported that a loop as simple as ...
while true; do
tc qdisc add dev foo root handle 1: prio
tc filter add dev foo parent 1: u32 match u32 0 0 flowid 1
tc qdisc del dev foo root
rmmod cls_u32
done
... will panic the kernel. Moreover, he bisected the change
apparently introducing it to 78fd1d0ab072 ("netlink: Re-add
locking to netlink_lookup() and seq walker").
The removal of synchronize_net() from the netlink socket
triggering the qdisc to be removed, seems to have uncovered
an RCU resp. module reference count race from the tc API.
Given that RCU conversion was done after e341694e3eb5 ("netlink:
Convert netlink_lookup() to use RCU protected hash table")
which added the synchronize_net() originally, occasion of
hitting the bug was less likely (not impossible though):
When qdiscs that i) support attaching classifiers and,
ii) have at least one of them attached, get deleted, they
invoke tcf_destroy_chain(), and thus call into ->destroy()
handler from a classifier module.
After RCU conversion, all classifier that have an internal
prio list, unlink them and initiate freeing via call_rcu()
deferral.
Meanhile, tcf_destroy() releases already reference to the
tp->ops->owner module before the queued RCU callback handler
has been invoked.
Subsequent rmmod on the classifier module is then not prevented
since all module references are already dropped.
By the time, the kernel invokes the RCU callback handler from
the module, that function address is then invalid.
One way to fix it would be to add an rcu_barrier() to
unregister_tcf_proto_ops() to wait for all pending call_rcu()s
to complete.
synchronize_rcu() is not appropriate as under heavy RCU
callback load, registered call_rcu()s could be deferred
longer than a grace period. In case we don't have any pending
call_rcu()s, the barrier is allowed to return immediately.
Since we came here via unregister_tcf_proto_ops(), there
are no users of a given classifier anymore. Further nested
call_rcu()s pointing into the module space are not being
done anywhere.
Only cls_bpf_delete_prog() may schedule a work item, to
unlock pages eventually, but that is not in the range/context
of cls_bpf anymore.
Fixes: 25d8c0d55f24 ("net: rcu-ify tcf_proto")
Fixes: 9888faefe132 ("net: sched: cls_basic use RCU")
Reported-by: Vijay Subramanian <subramanian.vijay@gmail.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Cc: John Fastabend <john.r.fastabend@intel.com>
Cc: Eric Dumazet <edumazet@google.com>
Cc: Thomas Graf <tgraf@suug.ch>
Cc: Jamal Hadi Salim <jhs@mojatatu.com>
Cc: Alexei Starovoitov <ast@plumgrid.com>
Tested-by: Vijay Subramanian <subramanian.vijay@gmail.com>
Acked-by: Alexei Starovoitov <ast@plumgrid.com>
Acked-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2015-05-20 15:13:33 +00:00
|
|
|
/* Wait for outstanding call_rcu()s, if any, from a
|
|
|
|
* tcf_proto_ops's destroy() handler.
|
|
|
|
*/
|
|
|
|
rcu_barrier();
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
write_lock(&cls_mod_lock);
|
2013-12-20 18:04:18 +00:00
|
|
|
list_for_each_entry(t, &tcf_proto_base, head) {
|
|
|
|
if (t == ops) {
|
|
|
|
list_del(&t->head);
|
|
|
|
rc = 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
2013-12-20 18:04:18 +00:00
|
|
|
}
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
write_unlock(&cls_mod_lock);
|
|
|
|
return rc;
|
|
|
|
}
|
2008-01-21 10:26:41 +00:00
|
|
|
EXPORT_SYMBOL(unregister_tcf_proto_ops);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2010-03-19 15:40:13 +00:00
|
|
|
static int tfilter_notify(struct net *net, struct sk_buff *oskb,
|
|
|
|
struct nlmsghdr *n, struct tcf_proto *tp,
|
2016-10-10 03:25:55 +00:00
|
|
|
unsigned long fh, int event, bool unicast);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
net, cls: allow for deleting all filters for given parent
Add a possibility where the user can just specify the parent and
all filters under that parent are then being purged. Currently,
for example for scripting, one needs to specify pref/prio to have
a well-defined number for 'tc filter del' command for addressing
the previously created instance or additionally filter handle in
case of priorities being the same. Improve usage by allowing the
option for tc to specify the parent and removing the whole chain
for that given parent.
Example usage after patch, no tc changes required:
# tc qdisc replace dev foo clsact
# tc filter add dev foo egress bpf da obj ./bpf.o
# tc filter add dev foo egress bpf da obj ./bpf.o
# tc filter show dev foo egress
filter protocol all pref 49151 bpf
filter protocol all pref 49151 bpf handle 0x1 bpf.o:[classifier] direct-action
filter protocol all pref 49152 bpf
filter protocol all pref 49152 bpf handle 0x1 bpf.o:[classifier] direct-action
# tc filter del dev foo egress
# tc filter show dev foo egress
#
Previously, RTM_DELTFILTER requests with invalid prio of 0 were
rejected, so only netlink requests with RTM_NEWTFILTER and NLM_F_CREATE
flag were allowed where the kernel would auto-generate a pref/prio.
We can piggyback on that and use prio of 0 as a wildcard for
requests of RTM_DELTFILTER.
For notifying tc netlink monitoring users (e.g. libnl uses this
for caching), there are two options, that is, sending individual
tfilter_notify() notifications for each tcf_proto, or sending a
single one indicating wildcard removal. I tried both and there
are pros and cons for each, eventually I decided for sending
individual tfilter_notify(), so that user space can support this
seamlessly and there won't be a mess of changing each and every
application to make sure expectations from the kernel won't break
when they don't understand single notification. Since linear chains
don't really scale, I expect only a handful of classifiers to be
attached at max for a given parent anyway.
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Acked-by: Jamal Hadi Salim <jhs@mojatatu.com>
Acked-by: Alexei Starovoitov <ast@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
2016-06-10 21:10:22 +00:00
|
|
|
static void tfilter_notify_chain(struct net *net, struct sk_buff *oskb,
|
|
|
|
struct nlmsghdr *n,
|
|
|
|
struct tcf_proto __rcu **chain, int event)
|
|
|
|
{
|
|
|
|
struct tcf_proto __rcu **it_chain;
|
|
|
|
struct tcf_proto *tp;
|
|
|
|
|
|
|
|
for (it_chain = chain; (tp = rtnl_dereference(*it_chain)) != NULL;
|
|
|
|
it_chain = &tp->next)
|
2016-11-23 01:57:04 +00:00
|
|
|
tfilter_notify(net, oskb, n, tp, 0, event, false);
|
net, cls: allow for deleting all filters for given parent
Add a possibility where the user can just specify the parent and
all filters under that parent are then being purged. Currently,
for example for scripting, one needs to specify pref/prio to have
a well-defined number for 'tc filter del' command for addressing
the previously created instance or additionally filter handle in
case of priorities being the same. Improve usage by allowing the
option for tc to specify the parent and removing the whole chain
for that given parent.
Example usage after patch, no tc changes required:
# tc qdisc replace dev foo clsact
# tc filter add dev foo egress bpf da obj ./bpf.o
# tc filter add dev foo egress bpf da obj ./bpf.o
# tc filter show dev foo egress
filter protocol all pref 49151 bpf
filter protocol all pref 49151 bpf handle 0x1 bpf.o:[classifier] direct-action
filter protocol all pref 49152 bpf
filter protocol all pref 49152 bpf handle 0x1 bpf.o:[classifier] direct-action
# tc filter del dev foo egress
# tc filter show dev foo egress
#
Previously, RTM_DELTFILTER requests with invalid prio of 0 were
rejected, so only netlink requests with RTM_NEWTFILTER and NLM_F_CREATE
flag were allowed where the kernel would auto-generate a pref/prio.
We can piggyback on that and use prio of 0 as a wildcard for
requests of RTM_DELTFILTER.
For notifying tc netlink monitoring users (e.g. libnl uses this
for caching), there are two options, that is, sending individual
tfilter_notify() notifications for each tcf_proto, or sending a
single one indicating wildcard removal. I tried both and there
are pros and cons for each, eventually I decided for sending
individual tfilter_notify(), so that user space can support this
seamlessly and there won't be a mess of changing each and every
application to make sure expectations from the kernel won't break
when they don't understand single notification. Since linear chains
don't really scale, I expect only a handful of classifiers to be
attached at max for a given parent anyway.
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Acked-by: Jamal Hadi Salim <jhs@mojatatu.com>
Acked-by: Alexei Starovoitov <ast@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
2016-06-10 21:10:22 +00:00
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/* Select new prio value from the range, managed by kernel. */
|
|
|
|
|
2008-01-21 10:26:41 +00:00
|
|
|
static inline u32 tcf_auto_prio(struct tcf_proto *tp)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2008-01-21 10:26:41 +00:00
|
|
|
u32 first = TC_H_MAKE(0xC0000000U, 0U);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
if (tp)
|
2011-01-19 19:26:56 +00:00
|
|
|
first = tp->prio - 1;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
return first;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Add/change/delete/get a filter node */
|
|
|
|
|
2013-03-21 07:45:29 +00:00
|
|
|
static int tc_ctl_tfilter(struct sk_buff *skb, struct nlmsghdr *n)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2008-03-25 17:26:21 +00:00
|
|
|
struct net *net = sock_net(skb->sk);
|
2008-01-23 06:11:33 +00:00
|
|
|
struct nlattr *tca[TCA_MAX + 1];
|
2005-04-16 22:20:36 +00:00
|
|
|
struct tcmsg *t;
|
|
|
|
u32 protocol;
|
|
|
|
u32 prio;
|
|
|
|
u32 nprio;
|
|
|
|
u32 parent;
|
|
|
|
struct net_device *dev;
|
|
|
|
struct Qdisc *q;
|
2014-09-13 03:05:27 +00:00
|
|
|
struct tcf_proto __rcu **back;
|
|
|
|
struct tcf_proto __rcu **chain;
|
2005-04-16 22:20:36 +00:00
|
|
|
struct tcf_proto *tp;
|
2011-07-05 23:25:42 +00:00
|
|
|
const struct tcf_proto_ops *tp_ops;
|
2007-11-14 09:44:41 +00:00
|
|
|
const struct Qdisc_class_ops *cops;
|
2005-04-16 22:20:36 +00:00
|
|
|
unsigned long cl;
|
|
|
|
unsigned long fh;
|
|
|
|
int err;
|
2009-06-02 09:17:34 +00:00
|
|
|
int tp_created = 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2014-04-30 15:25:43 +00:00
|
|
|
if ((n->nlmsg_type != RTM_GETTFILTER) &&
|
2014-05-12 17:19:14 +00:00
|
|
|
!netlink_ns_capable(skb, net->user_ns, CAP_NET_ADMIN))
|
2012-11-16 03:03:00 +00:00
|
|
|
return -EPERM;
|
2013-03-25 17:36:33 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
replay:
|
2013-03-25 17:36:33 +00:00
|
|
|
err = nlmsg_parse(n, sizeof(*t), tca, TCA_MAX, NULL);
|
|
|
|
if (err < 0)
|
|
|
|
return err;
|
|
|
|
|
2012-06-27 04:48:50 +00:00
|
|
|
t = nlmsg_data(n);
|
2005-04-16 22:20:36 +00:00
|
|
|
protocol = TC_H_MIN(t->tcm_info);
|
|
|
|
prio = TC_H_MAJ(t->tcm_info);
|
|
|
|
nprio = prio;
|
|
|
|
parent = t->tcm_parent;
|
|
|
|
cl = 0;
|
|
|
|
|
|
|
|
if (prio == 0) {
|
net, cls: allow for deleting all filters for given parent
Add a possibility where the user can just specify the parent and
all filters under that parent are then being purged. Currently,
for example for scripting, one needs to specify pref/prio to have
a well-defined number for 'tc filter del' command for addressing
the previously created instance or additionally filter handle in
case of priorities being the same. Improve usage by allowing the
option for tc to specify the parent and removing the whole chain
for that given parent.
Example usage after patch, no tc changes required:
# tc qdisc replace dev foo clsact
# tc filter add dev foo egress bpf da obj ./bpf.o
# tc filter add dev foo egress bpf da obj ./bpf.o
# tc filter show dev foo egress
filter protocol all pref 49151 bpf
filter protocol all pref 49151 bpf handle 0x1 bpf.o:[classifier] direct-action
filter protocol all pref 49152 bpf
filter protocol all pref 49152 bpf handle 0x1 bpf.o:[classifier] direct-action
# tc filter del dev foo egress
# tc filter show dev foo egress
#
Previously, RTM_DELTFILTER requests with invalid prio of 0 were
rejected, so only netlink requests with RTM_NEWTFILTER and NLM_F_CREATE
flag were allowed where the kernel would auto-generate a pref/prio.
We can piggyback on that and use prio of 0 as a wildcard for
requests of RTM_DELTFILTER.
For notifying tc netlink monitoring users (e.g. libnl uses this
for caching), there are two options, that is, sending individual
tfilter_notify() notifications for each tcf_proto, or sending a
single one indicating wildcard removal. I tried both and there
are pros and cons for each, eventually I decided for sending
individual tfilter_notify(), so that user space can support this
seamlessly and there won't be a mess of changing each and every
application to make sure expectations from the kernel won't break
when they don't understand single notification. Since linear chains
don't really scale, I expect only a handful of classifiers to be
attached at max for a given parent anyway.
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Acked-by: Jamal Hadi Salim <jhs@mojatatu.com>
Acked-by: Alexei Starovoitov <ast@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
2016-06-10 21:10:22 +00:00
|
|
|
switch (n->nlmsg_type) {
|
|
|
|
case RTM_DELTFILTER:
|
2016-06-16 21:19:29 +00:00
|
|
|
if (protocol || t->tcm_handle || tca[TCA_KIND])
|
net, cls: allow for deleting all filters for given parent
Add a possibility where the user can just specify the parent and
all filters under that parent are then being purged. Currently,
for example for scripting, one needs to specify pref/prio to have
a well-defined number for 'tc filter del' command for addressing
the previously created instance or additionally filter handle in
case of priorities being the same. Improve usage by allowing the
option for tc to specify the parent and removing the whole chain
for that given parent.
Example usage after patch, no tc changes required:
# tc qdisc replace dev foo clsact
# tc filter add dev foo egress bpf da obj ./bpf.o
# tc filter add dev foo egress bpf da obj ./bpf.o
# tc filter show dev foo egress
filter protocol all pref 49151 bpf
filter protocol all pref 49151 bpf handle 0x1 bpf.o:[classifier] direct-action
filter protocol all pref 49152 bpf
filter protocol all pref 49152 bpf handle 0x1 bpf.o:[classifier] direct-action
# tc filter del dev foo egress
# tc filter show dev foo egress
#
Previously, RTM_DELTFILTER requests with invalid prio of 0 were
rejected, so only netlink requests with RTM_NEWTFILTER and NLM_F_CREATE
flag were allowed where the kernel would auto-generate a pref/prio.
We can piggyback on that and use prio of 0 as a wildcard for
requests of RTM_DELTFILTER.
For notifying tc netlink monitoring users (e.g. libnl uses this
for caching), there are two options, that is, sending individual
tfilter_notify() notifications for each tcf_proto, or sending a
single one indicating wildcard removal. I tried both and there
are pros and cons for each, eventually I decided for sending
individual tfilter_notify(), so that user space can support this
seamlessly and there won't be a mess of changing each and every
application to make sure expectations from the kernel won't break
when they don't understand single notification. Since linear chains
don't really scale, I expect only a handful of classifiers to be
attached at max for a given parent anyway.
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Acked-by: Jamal Hadi Salim <jhs@mojatatu.com>
Acked-by: Alexei Starovoitov <ast@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
2016-06-10 21:10:22 +00:00
|
|
|
return -ENOENT;
|
|
|
|
break;
|
|
|
|
case RTM_NEWTFILTER:
|
|
|
|
/* If no priority is provided by the user,
|
|
|
|
* we allocate one.
|
|
|
|
*/
|
|
|
|
if (n->nlmsg_flags & NLM_F_CREATE) {
|
|
|
|
prio = TC_H_MAKE(0x80000000U, 0U);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* fall-through */
|
|
|
|
default:
|
2005-04-16 22:20:36 +00:00
|
|
|
return -ENOENT;
|
net, cls: allow for deleting all filters for given parent
Add a possibility where the user can just specify the parent and
all filters under that parent are then being purged. Currently,
for example for scripting, one needs to specify pref/prio to have
a well-defined number for 'tc filter del' command for addressing
the previously created instance or additionally filter handle in
case of priorities being the same. Improve usage by allowing the
option for tc to specify the parent and removing the whole chain
for that given parent.
Example usage after patch, no tc changes required:
# tc qdisc replace dev foo clsact
# tc filter add dev foo egress bpf da obj ./bpf.o
# tc filter add dev foo egress bpf da obj ./bpf.o
# tc filter show dev foo egress
filter protocol all pref 49151 bpf
filter protocol all pref 49151 bpf handle 0x1 bpf.o:[classifier] direct-action
filter protocol all pref 49152 bpf
filter protocol all pref 49152 bpf handle 0x1 bpf.o:[classifier] direct-action
# tc filter del dev foo egress
# tc filter show dev foo egress
#
Previously, RTM_DELTFILTER requests with invalid prio of 0 were
rejected, so only netlink requests with RTM_NEWTFILTER and NLM_F_CREATE
flag were allowed where the kernel would auto-generate a pref/prio.
We can piggyback on that and use prio of 0 as a wildcard for
requests of RTM_DELTFILTER.
For notifying tc netlink monitoring users (e.g. libnl uses this
for caching), there are two options, that is, sending individual
tfilter_notify() notifications for each tcf_proto, or sending a
single one indicating wildcard removal. I tried both and there
are pros and cons for each, eventually I decided for sending
individual tfilter_notify(), so that user space can support this
seamlessly and there won't be a mess of changing each and every
application to make sure expectations from the kernel won't break
when they don't understand single notification. Since linear chains
don't really scale, I expect only a handful of classifiers to be
attached at max for a given parent anyway.
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Acked-by: Jamal Hadi Salim <jhs@mojatatu.com>
Acked-by: Alexei Starovoitov <ast@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
2016-06-10 21:10:22 +00:00
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Find head of filter chain. */
|
|
|
|
|
|
|
|
/* Find link */
|
2010-03-19 15:40:13 +00:00
|
|
|
dev = __dev_get_by_index(net, t->tcm_ifindex);
|
2008-01-21 10:26:41 +00:00
|
|
|
if (dev == NULL)
|
2005-04-16 22:20:36 +00:00
|
|
|
return -ENODEV;
|
|
|
|
|
|
|
|
/* Find qdisc */
|
|
|
|
if (!parent) {
|
2009-09-04 06:41:18 +00:00
|
|
|
q = dev->qdisc;
|
2005-04-16 22:20:36 +00:00
|
|
|
parent = q->handle;
|
2008-01-21 10:26:41 +00:00
|
|
|
} else {
|
|
|
|
q = qdisc_lookup(dev, TC_H_MAJ(t->tcm_parent));
|
|
|
|
if (q == NULL)
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/* Is it classful? */
|
2011-01-19 19:26:56 +00:00
|
|
|
cops = q->ops->cl_ops;
|
|
|
|
if (!cops)
|
2005-04-16 22:20:36 +00:00
|
|
|
return -EINVAL;
|
|
|
|
|
2009-09-04 06:41:15 +00:00
|
|
|
if (cops->tcf_chain == NULL)
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/* Do we search for filter, attached to class? */
|
|
|
|
if (TC_H_MIN(parent)) {
|
|
|
|
cl = cops->get(q, parent);
|
|
|
|
if (cl == 0)
|
|
|
|
return -ENOENT;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* And the last stroke */
|
|
|
|
chain = cops->tcf_chain(q, cl);
|
|
|
|
err = -EINVAL;
|
|
|
|
if (chain == NULL)
|
|
|
|
goto errout;
|
net, cls: allow for deleting all filters for given parent
Add a possibility where the user can just specify the parent and
all filters under that parent are then being purged. Currently,
for example for scripting, one needs to specify pref/prio to have
a well-defined number for 'tc filter del' command for addressing
the previously created instance or additionally filter handle in
case of priorities being the same. Improve usage by allowing the
option for tc to specify the parent and removing the whole chain
for that given parent.
Example usage after patch, no tc changes required:
# tc qdisc replace dev foo clsact
# tc filter add dev foo egress bpf da obj ./bpf.o
# tc filter add dev foo egress bpf da obj ./bpf.o
# tc filter show dev foo egress
filter protocol all pref 49151 bpf
filter protocol all pref 49151 bpf handle 0x1 bpf.o:[classifier] direct-action
filter protocol all pref 49152 bpf
filter protocol all pref 49152 bpf handle 0x1 bpf.o:[classifier] direct-action
# tc filter del dev foo egress
# tc filter show dev foo egress
#
Previously, RTM_DELTFILTER requests with invalid prio of 0 were
rejected, so only netlink requests with RTM_NEWTFILTER and NLM_F_CREATE
flag were allowed where the kernel would auto-generate a pref/prio.
We can piggyback on that and use prio of 0 as a wildcard for
requests of RTM_DELTFILTER.
For notifying tc netlink monitoring users (e.g. libnl uses this
for caching), there are two options, that is, sending individual
tfilter_notify() notifications for each tcf_proto, or sending a
single one indicating wildcard removal. I tried both and there
are pros and cons for each, eventually I decided for sending
individual tfilter_notify(), so that user space can support this
seamlessly and there won't be a mess of changing each and every
application to make sure expectations from the kernel won't break
when they don't understand single notification. Since linear chains
don't really scale, I expect only a handful of classifiers to be
attached at max for a given parent anyway.
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Acked-by: Jamal Hadi Salim <jhs@mojatatu.com>
Acked-by: Alexei Starovoitov <ast@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
2016-06-10 21:10:22 +00:00
|
|
|
if (n->nlmsg_type == RTM_DELTFILTER && prio == 0) {
|
|
|
|
tfilter_notify_chain(net, skb, n, chain, RTM_DELTFILTER);
|
|
|
|
tcf_destroy_chain(chain);
|
|
|
|
err = 0;
|
|
|
|
goto errout;
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/* Check the chain for existence of proto-tcf with this priority */
|
2014-09-13 03:05:27 +00:00
|
|
|
for (back = chain;
|
|
|
|
(tp = rtnl_dereference(*back)) != NULL;
|
|
|
|
back = &tp->next) {
|
2005-04-16 22:20:36 +00:00
|
|
|
if (tp->prio >= prio) {
|
|
|
|
if (tp->prio == prio) {
|
2011-01-19 19:26:56 +00:00
|
|
|
if (!nprio ||
|
|
|
|
(tp->protocol != protocol && protocol))
|
2005-04-16 22:20:36 +00:00
|
|
|
goto errout;
|
|
|
|
} else
|
|
|
|
tp = NULL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tp == NULL) {
|
|
|
|
/* Proto-tcf does not exist, create new one */
|
|
|
|
|
2008-01-23 06:11:33 +00:00
|
|
|
if (tca[TCA_KIND] == NULL || !protocol)
|
2005-04-16 22:20:36 +00:00
|
|
|
goto errout;
|
|
|
|
|
|
|
|
err = -ENOENT;
|
2011-01-19 19:26:56 +00:00
|
|
|
if (n->nlmsg_type != RTM_NEWTFILTER ||
|
|
|
|
!(n->nlmsg_flags & NLM_F_CREATE))
|
2005-04-16 22:20:36 +00:00
|
|
|
goto errout;
|
|
|
|
|
|
|
|
|
|
|
|
/* Create new proto tcf */
|
|
|
|
|
|
|
|
err = -ENOBUFS;
|
2008-01-21 10:26:41 +00:00
|
|
|
tp = kzalloc(sizeof(*tp), GFP_KERNEL);
|
|
|
|
if (tp == NULL)
|
2005-04-16 22:20:36 +00:00
|
|
|
goto errout;
|
2008-05-20 21:34:46 +00:00
|
|
|
err = -ENOENT;
|
2008-01-23 06:11:33 +00:00
|
|
|
tp_ops = tcf_proto_lookup_ops(tca[TCA_KIND]);
|
2005-04-16 22:20:36 +00:00
|
|
|
if (tp_ops == NULL) {
|
2008-10-16 22:24:51 +00:00
|
|
|
#ifdef CONFIG_MODULES
|
2008-01-23 06:11:33 +00:00
|
|
|
struct nlattr *kind = tca[TCA_KIND];
|
2005-04-16 22:20:36 +00:00
|
|
|
char name[IFNAMSIZ];
|
|
|
|
|
|
|
|
if (kind != NULL &&
|
2008-01-23 06:11:33 +00:00
|
|
|
nla_strlcpy(name, kind, IFNAMSIZ) < IFNAMSIZ) {
|
2005-04-16 22:20:36 +00:00
|
|
|
rtnl_unlock();
|
|
|
|
request_module("cls_%s", name);
|
|
|
|
rtnl_lock();
|
|
|
|
tp_ops = tcf_proto_lookup_ops(kind);
|
|
|
|
/* We dropped the RTNL semaphore in order to
|
|
|
|
* perform the module load. So, even if we
|
|
|
|
* succeeded in loading the module we have to
|
|
|
|
* replay the request. We indicate this using
|
|
|
|
* -EAGAIN.
|
|
|
|
*/
|
|
|
|
if (tp_ops != NULL) {
|
|
|
|
module_put(tp_ops->owner);
|
|
|
|
err = -EAGAIN;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
kfree(tp);
|
|
|
|
goto errout;
|
|
|
|
}
|
|
|
|
tp->ops = tp_ops;
|
|
|
|
tp->protocol = protocol;
|
2014-09-13 03:05:27 +00:00
|
|
|
tp->prio = nprio ? :
|
|
|
|
TC_H_MAJ(tcf_auto_prio(rtnl_dereference(*back)));
|
2005-04-16 22:20:36 +00:00
|
|
|
tp->q = q;
|
|
|
|
tp->classify = tp_ops->classify;
|
|
|
|
tp->classid = parent;
|
2008-01-21 10:26:41 +00:00
|
|
|
|
|
|
|
err = tp_ops->init(tp);
|
|
|
|
if (err != 0) {
|
2005-04-16 22:20:36 +00:00
|
|
|
module_put(tp_ops->owner);
|
|
|
|
kfree(tp);
|
|
|
|
goto errout;
|
|
|
|
}
|
|
|
|
|
2009-06-02 09:17:34 +00:00
|
|
|
tp_created = 1;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-01-23 06:11:33 +00:00
|
|
|
} else if (tca[TCA_KIND] && nla_strcmp(tca[TCA_KIND], tp->ops->kind))
|
2005-04-16 22:20:36 +00:00
|
|
|
goto errout;
|
|
|
|
|
|
|
|
fh = tp->ops->get(tp, t->tcm_handle);
|
|
|
|
|
|
|
|
if (fh == 0) {
|
|
|
|
if (n->nlmsg_type == RTM_DELTFILTER && t->tcm_handle == 0) {
|
2014-09-13 03:05:27 +00:00
|
|
|
struct tcf_proto *next = rtnl_dereference(tp->next);
|
|
|
|
|
|
|
|
RCU_INIT_POINTER(*back, next);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2016-10-10 03:25:55 +00:00
|
|
|
tfilter_notify(net, skb, n, tp, fh,
|
|
|
|
RTM_DELTFILTER, false);
|
2015-03-06 19:47:59 +00:00
|
|
|
tcf_destroy(tp, true);
|
2005-04-16 22:20:36 +00:00
|
|
|
err = 0;
|
|
|
|
goto errout;
|
|
|
|
}
|
|
|
|
|
|
|
|
err = -ENOENT;
|
2008-01-21 10:26:41 +00:00
|
|
|
if (n->nlmsg_type != RTM_NEWTFILTER ||
|
|
|
|
!(n->nlmsg_flags & NLM_F_CREATE))
|
2005-04-16 22:20:36 +00:00
|
|
|
goto errout;
|
|
|
|
} else {
|
|
|
|
switch (n->nlmsg_type) {
|
2007-02-09 14:25:16 +00:00
|
|
|
case RTM_NEWTFILTER:
|
2005-04-16 22:20:36 +00:00
|
|
|
err = -EEXIST;
|
2009-06-02 09:17:34 +00:00
|
|
|
if (n->nlmsg_flags & NLM_F_EXCL) {
|
|
|
|
if (tp_created)
|
2015-03-06 19:47:59 +00:00
|
|
|
tcf_destroy(tp, true);
|
2005-04-16 22:20:36 +00:00
|
|
|
goto errout;
|
2009-06-02 09:17:34 +00:00
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
case RTM_DELTFILTER:
|
|
|
|
err = tp->ops->delete(tp, fh);
|
2015-03-06 19:47:59 +00:00
|
|
|
if (err == 0) {
|
2015-05-05 22:22:02 +00:00
|
|
|
struct tcf_proto *next = rtnl_dereference(tp->next);
|
2015-03-06 19:47:59 +00:00
|
|
|
|
2016-10-25 00:18:27 +00:00
|
|
|
tfilter_notify(net, skb, n, tp,
|
|
|
|
t->tcm_handle,
|
2016-10-10 03:25:55 +00:00
|
|
|
RTM_DELTFILTER, false);
|
2015-05-05 22:22:02 +00:00
|
|
|
if (tcf_destroy(tp, false))
|
2015-03-06 19:47:59 +00:00
|
|
|
RCU_INIT_POINTER(*back, next);
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
goto errout;
|
|
|
|
case RTM_GETTFILTER:
|
2016-09-18 12:45:33 +00:00
|
|
|
err = tfilter_notify(net, skb, n, tp, fh,
|
2016-10-10 03:25:55 +00:00
|
|
|
RTM_NEWTFILTER, true);
|
2005-04-16 22:20:36 +00:00
|
|
|
goto errout;
|
|
|
|
default:
|
|
|
|
err = -EINVAL;
|
|
|
|
goto errout;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-25 20:54:06 +00:00
|
|
|
err = tp->ops->change(net, skb, tp, cl, t->tcm_handle, tca, &fh,
|
|
|
|
n->nlmsg_flags & NLM_F_CREATE ? TCA_ACT_NOREPLACE : TCA_ACT_REPLACE);
|
2009-06-02 09:17:34 +00:00
|
|
|
if (err == 0) {
|
|
|
|
if (tp_created) {
|
2014-09-13 03:05:27 +00:00
|
|
|
RCU_INIT_POINTER(tp->next, rtnl_dereference(*back));
|
|
|
|
rcu_assign_pointer(*back, tp);
|
2009-06-02 09:17:34 +00:00
|
|
|
}
|
2016-10-10 03:25:55 +00:00
|
|
|
tfilter_notify(net, skb, n, tp, fh, RTM_NEWTFILTER, false);
|
2009-06-02 09:17:34 +00:00
|
|
|
} else {
|
|
|
|
if (tp_created)
|
2015-03-06 19:47:59 +00:00
|
|
|
tcf_destroy(tp, true);
|
2009-06-02 09:17:34 +00:00
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
errout:
|
|
|
|
if (cl)
|
|
|
|
cops->put(q, cl);
|
|
|
|
if (err == -EAGAIN)
|
|
|
|
/* Replay the request. */
|
|
|
|
goto replay;
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2016-06-05 14:41:32 +00:00
|
|
|
static int tcf_fill_node(struct net *net, struct sk_buff *skb,
|
|
|
|
struct tcf_proto *tp, unsigned long fh, u32 portid,
|
|
|
|
u32 seq, u16 flags, int event)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
struct tcmsg *tcm;
|
|
|
|
struct nlmsghdr *nlh;
|
2007-04-20 03:29:13 +00:00
|
|
|
unsigned char *b = skb_tail_pointer(skb);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2012-09-07 20:12:54 +00:00
|
|
|
nlh = nlmsg_put(skb, portid, seq, event, sizeof(*tcm), flags);
|
2012-06-27 04:48:50 +00:00
|
|
|
if (!nlh)
|
|
|
|
goto out_nlmsg_trim;
|
|
|
|
tcm = nlmsg_data(nlh);
|
2005-04-16 22:20:36 +00:00
|
|
|
tcm->tcm_family = AF_UNSPEC;
|
2005-06-28 19:55:30 +00:00
|
|
|
tcm->tcm__pad1 = 0;
|
2009-10-08 08:21:46 +00:00
|
|
|
tcm->tcm__pad2 = 0;
|
2008-07-09 00:06:30 +00:00
|
|
|
tcm->tcm_ifindex = qdisc_dev(tp->q)->ifindex;
|
2005-04-16 22:20:36 +00:00
|
|
|
tcm->tcm_parent = tp->classid;
|
|
|
|
tcm->tcm_info = TC_H_MAKE(tp->prio, tp->protocol);
|
2012-03-29 09:11:39 +00:00
|
|
|
if (nla_put_string(skb, TCA_KIND, tp->ops->kind))
|
|
|
|
goto nla_put_failure;
|
2005-04-16 22:20:36 +00:00
|
|
|
tcm->tcm_handle = fh;
|
|
|
|
if (RTM_DELTFILTER != event) {
|
|
|
|
tcm->tcm_handle = 0;
|
2014-01-10 00:14:01 +00:00
|
|
|
if (tp->ops->dump && tp->ops->dump(net, tp, fh, skb, tcm) < 0)
|
2008-01-23 06:11:33 +00:00
|
|
|
goto nla_put_failure;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2007-04-20 03:29:13 +00:00
|
|
|
nlh->nlmsg_len = skb_tail_pointer(skb) - b;
|
2005-04-16 22:20:36 +00:00
|
|
|
return skb->len;
|
|
|
|
|
2012-06-27 04:48:50 +00:00
|
|
|
out_nlmsg_trim:
|
2008-01-23 06:11:33 +00:00
|
|
|
nla_put_failure:
|
2007-03-26 06:06:12 +00:00
|
|
|
nlmsg_trim(skb, b);
|
2005-04-16 22:20:36 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2010-03-19 15:40:13 +00:00
|
|
|
static int tfilter_notify(struct net *net, struct sk_buff *oskb,
|
|
|
|
struct nlmsghdr *n, struct tcf_proto *tp,
|
2016-10-10 03:25:55 +00:00
|
|
|
unsigned long fh, int event, bool unicast)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
struct sk_buff *skb;
|
2012-09-07 20:12:54 +00:00
|
|
|
u32 portid = oskb ? NETLINK_CB(oskb).portid : 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
|
|
|
|
if (!skb)
|
|
|
|
return -ENOBUFS;
|
|
|
|
|
2016-11-16 22:16:10 +00:00
|
|
|
if (tcf_fill_node(net, skb, tp, fh, portid, n->nlmsg_seq,
|
|
|
|
n->nlmsg_flags, event) <= 0) {
|
2005-04-16 22:20:36 +00:00
|
|
|
kfree_skb(skb);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2016-10-10 03:25:55 +00:00
|
|
|
if (unicast)
|
|
|
|
return netlink_unicast(net->rtnl, skb, portid, MSG_DONTWAIT);
|
|
|
|
|
2012-09-07 20:12:54 +00:00
|
|
|
return rtnetlink_send(skb, net, portid, RTNLGRP_TC,
|
2008-01-21 10:26:41 +00:00
|
|
|
n->nlmsg_flags & NLM_F_ECHO);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2008-01-21 10:26:41 +00:00
|
|
|
struct tcf_dump_args {
|
2005-04-16 22:20:36 +00:00
|
|
|
struct tcf_walker w;
|
|
|
|
struct sk_buff *skb;
|
|
|
|
struct netlink_callback *cb;
|
|
|
|
};
|
|
|
|
|
2008-01-21 10:26:41 +00:00
|
|
|
static int tcf_node_dump(struct tcf_proto *tp, unsigned long n,
|
|
|
|
struct tcf_walker *arg)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2008-01-21 10:26:41 +00:00
|
|
|
struct tcf_dump_args *a = (void *)arg;
|
2014-01-10 00:14:01 +00:00
|
|
|
struct net *net = sock_net(a->skb->sk);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2014-01-10 00:14:01 +00:00
|
|
|
return tcf_fill_node(net, a->skb, tp, n, NETLINK_CB(a->cb->skb).portid,
|
2016-09-18 12:45:33 +00:00
|
|
|
a->cb->nlh->nlmsg_seq, NLM_F_MULTI,
|
|
|
|
RTM_NEWTFILTER);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2009-11-06 04:57:26 +00:00
|
|
|
/* called with RTNL */
|
2005-04-16 22:20:36 +00:00
|
|
|
static int tc_dump_tfilter(struct sk_buff *skb, struct netlink_callback *cb)
|
|
|
|
{
|
2008-03-25 17:26:21 +00:00
|
|
|
struct net *net = sock_net(skb->sk);
|
2005-04-16 22:20:36 +00:00
|
|
|
int t;
|
|
|
|
int s_t;
|
|
|
|
struct net_device *dev;
|
|
|
|
struct Qdisc *q;
|
2014-09-13 03:05:27 +00:00
|
|
|
struct tcf_proto *tp, __rcu **chain;
|
2012-06-27 04:48:50 +00:00
|
|
|
struct tcmsg *tcm = nlmsg_data(cb->nlh);
|
2005-04-16 22:20:36 +00:00
|
|
|
unsigned long cl = 0;
|
2007-11-14 09:44:41 +00:00
|
|
|
const struct Qdisc_class_ops *cops;
|
2005-04-16 22:20:36 +00:00
|
|
|
struct tcf_dump_args arg;
|
|
|
|
|
2013-03-27 06:47:04 +00:00
|
|
|
if (nlmsg_len(cb->nlh) < sizeof(*tcm))
|
2005-04-16 22:20:36 +00:00
|
|
|
return skb->len;
|
2011-01-19 19:26:56 +00:00
|
|
|
dev = __dev_get_by_index(net, tcm->tcm_ifindex);
|
|
|
|
if (!dev)
|
2005-04-16 22:20:36 +00:00
|
|
|
return skb->len;
|
|
|
|
|
|
|
|
if (!tcm->tcm_parent)
|
2009-09-04 06:41:18 +00:00
|
|
|
q = dev->qdisc;
|
2005-04-16 22:20:36 +00:00
|
|
|
else
|
|
|
|
q = qdisc_lookup(dev, TC_H_MAJ(tcm->tcm_parent));
|
|
|
|
if (!q)
|
|
|
|
goto out;
|
2011-01-19 19:26:56 +00:00
|
|
|
cops = q->ops->cl_ops;
|
|
|
|
if (!cops)
|
2005-04-16 22:20:36 +00:00
|
|
|
goto errout;
|
2009-09-04 06:41:15 +00:00
|
|
|
if (cops->tcf_chain == NULL)
|
|
|
|
goto errout;
|
2005-04-16 22:20:36 +00:00
|
|
|
if (TC_H_MIN(tcm->tcm_parent)) {
|
|
|
|
cl = cops->get(q, tcm->tcm_parent);
|
|
|
|
if (cl == 0)
|
|
|
|
goto errout;
|
|
|
|
}
|
|
|
|
chain = cops->tcf_chain(q, cl);
|
|
|
|
if (chain == NULL)
|
|
|
|
goto errout;
|
|
|
|
|
|
|
|
s_t = cb->args[0];
|
|
|
|
|
2014-09-13 03:05:27 +00:00
|
|
|
for (tp = rtnl_dereference(*chain), t = 0;
|
|
|
|
tp; tp = rtnl_dereference(tp->next), t++) {
|
2011-01-19 19:26:56 +00:00
|
|
|
if (t < s_t)
|
|
|
|
continue;
|
2005-04-16 22:20:36 +00:00
|
|
|
if (TC_H_MAJ(tcm->tcm_info) &&
|
|
|
|
TC_H_MAJ(tcm->tcm_info) != tp->prio)
|
|
|
|
continue;
|
|
|
|
if (TC_H_MIN(tcm->tcm_info) &&
|
|
|
|
TC_H_MIN(tcm->tcm_info) != tp->protocol)
|
|
|
|
continue;
|
|
|
|
if (t > s_t)
|
2016-06-05 14:41:32 +00:00
|
|
|
memset(&cb->args[1], 0,
|
|
|
|
sizeof(cb->args)-sizeof(cb->args[0]));
|
2005-04-16 22:20:36 +00:00
|
|
|
if (cb->args[1] == 0) {
|
2016-06-05 14:41:32 +00:00
|
|
|
if (tcf_fill_node(net, skb, tp, 0,
|
|
|
|
NETLINK_CB(cb->skb).portid,
|
2008-01-21 10:26:41 +00:00
|
|
|
cb->nlh->nlmsg_seq, NLM_F_MULTI,
|
|
|
|
RTM_NEWTFILTER) <= 0)
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
2008-01-21 10:26:41 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
cb->args[1] = 1;
|
|
|
|
}
|
|
|
|
if (tp->ops->walk == NULL)
|
|
|
|
continue;
|
|
|
|
arg.w.fn = tcf_node_dump;
|
|
|
|
arg.skb = skb;
|
|
|
|
arg.cb = cb;
|
|
|
|
arg.w.stop = 0;
|
2011-01-19 19:26:56 +00:00
|
|
|
arg.w.skip = cb->args[1] - 1;
|
2005-04-16 22:20:36 +00:00
|
|
|
arg.w.count = 0;
|
|
|
|
tp->ops->walk(tp, &arg.w);
|
2011-01-19 19:26:56 +00:00
|
|
|
cb->args[1] = arg.w.count + 1;
|
2005-04-16 22:20:36 +00:00
|
|
|
if (arg.w.stop)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
cb->args[0] = t;
|
|
|
|
|
|
|
|
errout:
|
|
|
|
if (cl)
|
|
|
|
cops->put(q, cl);
|
|
|
|
out:
|
|
|
|
return skb->len;
|
|
|
|
}
|
|
|
|
|
2014-09-25 17:26:37 +00:00
|
|
|
void tcf_exts_destroy(struct tcf_exts *exts)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
#ifdef CONFIG_NET_CLS_ACT
|
2016-08-14 05:35:00 +00:00
|
|
|
LIST_HEAD(actions);
|
|
|
|
|
|
|
|
tcf_exts_to_list(exts, &actions);
|
|
|
|
tcf_action_destroy(&actions, TCA_ACT_UNBIND);
|
|
|
|
kfree(exts->actions);
|
|
|
|
exts->nr_actions = 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
#endif
|
|
|
|
}
|
2008-01-21 10:26:41 +00:00
|
|
|
EXPORT_SYMBOL(tcf_exts_destroy);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2013-01-14 05:15:39 +00:00
|
|
|
int tcf_exts_validate(struct net *net, struct tcf_proto *tp, struct nlattr **tb,
|
2016-09-18 12:45:33 +00:00
|
|
|
struct nlattr *rate_tlv, struct tcf_exts *exts, bool ovr)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
#ifdef CONFIG_NET_CLS_ACT
|
|
|
|
{
|
|
|
|
struct tc_action *act;
|
|
|
|
|
2013-12-16 04:15:07 +00:00
|
|
|
if (exts->police && tb[exts->police]) {
|
|
|
|
act = tcf_action_init_1(net, tb[exts->police], rate_tlv,
|
2016-09-18 12:45:33 +00:00
|
|
|
"police", ovr, TCA_ACT_BIND);
|
2008-01-24 04:33:13 +00:00
|
|
|
if (IS_ERR(act))
|
|
|
|
return PTR_ERR(act);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2013-12-16 04:15:05 +00:00
|
|
|
act->type = exts->type = TCA_OLD_COMPAT;
|
2016-08-14 05:35:00 +00:00
|
|
|
exts->actions[0] = act;
|
|
|
|
exts->nr_actions = 1;
|
2013-12-16 04:15:07 +00:00
|
|
|
} else if (exts->action && tb[exts->action]) {
|
2016-08-14 05:35:00 +00:00
|
|
|
LIST_HEAD(actions);
|
|
|
|
int err, i = 0;
|
|
|
|
|
2013-12-16 04:15:07 +00:00
|
|
|
err = tcf_action_init(net, tb[exts->action], rate_tlv,
|
2016-09-18 12:45:33 +00:00
|
|
|
NULL, ovr, TCA_ACT_BIND,
|
|
|
|
&actions);
|
2013-12-16 04:15:05 +00:00
|
|
|
if (err)
|
|
|
|
return err;
|
2016-08-14 05:35:00 +00:00
|
|
|
list_for_each_entry(act, &actions, list)
|
|
|
|
exts->actions[i++] = act;
|
|
|
|
exts->nr_actions = i;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#else
|
2013-12-16 04:15:07 +00:00
|
|
|
if ((exts->action && tb[exts->action]) ||
|
|
|
|
(exts->police && tb[exts->police]))
|
2005-04-16 22:20:36 +00:00
|
|
|
return -EOPNOTSUPP;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2008-01-21 10:26:41 +00:00
|
|
|
EXPORT_SYMBOL(tcf_exts_validate);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-01-21 10:26:41 +00:00
|
|
|
void tcf_exts_change(struct tcf_proto *tp, struct tcf_exts *dst,
|
|
|
|
struct tcf_exts *src)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
#ifdef CONFIG_NET_CLS_ACT
|
2016-08-14 05:35:00 +00:00
|
|
|
struct tcf_exts old = *dst;
|
|
|
|
|
2014-04-25 20:55:30 +00:00
|
|
|
tcf_tree_lock(tp);
|
2016-08-14 05:35:00 +00:00
|
|
|
dst->nr_actions = src->nr_actions;
|
|
|
|
dst->actions = src->actions;
|
2014-10-07 00:21:54 +00:00
|
|
|
dst->type = src->type;
|
2014-04-25 20:55:30 +00:00
|
|
|
tcf_tree_unlock(tp);
|
2016-08-14 05:35:00 +00:00
|
|
|
|
|
|
|
tcf_exts_destroy(&old);
|
2005-04-16 22:20:36 +00:00
|
|
|
#endif
|
|
|
|
}
|
2008-01-21 10:26:41 +00:00
|
|
|
EXPORT_SYMBOL(tcf_exts_change);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2016-08-14 05:35:00 +00:00
|
|
|
#ifdef CONFIG_NET_CLS_ACT
|
|
|
|
static struct tc_action *tcf_exts_first_act(struct tcf_exts *exts)
|
|
|
|
{
|
|
|
|
if (exts->nr_actions == 0)
|
|
|
|
return NULL;
|
|
|
|
else
|
|
|
|
return exts->actions[0];
|
|
|
|
}
|
|
|
|
#endif
|
2013-12-16 04:15:05 +00:00
|
|
|
|
2013-12-16 04:15:07 +00:00
|
|
|
int tcf_exts_dump(struct sk_buff *skb, struct tcf_exts *exts)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
#ifdef CONFIG_NET_CLS_ACT
|
2014-07-16 21:25:30 +00:00
|
|
|
struct nlattr *nest;
|
|
|
|
|
2016-08-14 05:35:00 +00:00
|
|
|
if (exts->action && exts->nr_actions) {
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* again for backward compatible mode - we want
|
|
|
|
* to work with both old and new modes of entering
|
|
|
|
* tc data even if iproute2 was newer - jhs
|
|
|
|
*/
|
2013-12-16 04:15:05 +00:00
|
|
|
if (exts->type != TCA_OLD_COMPAT) {
|
2016-08-14 05:35:00 +00:00
|
|
|
LIST_HEAD(actions);
|
|
|
|
|
2013-12-16 04:15:07 +00:00
|
|
|
nest = nla_nest_start(skb, exts->action);
|
2008-01-24 04:34:11 +00:00
|
|
|
if (nest == NULL)
|
|
|
|
goto nla_put_failure;
|
2016-08-14 05:35:00 +00:00
|
|
|
|
|
|
|
tcf_exts_to_list(exts, &actions);
|
|
|
|
if (tcf_action_dump(skb, &actions, 0, 0) < 0)
|
2008-01-23 06:11:33 +00:00
|
|
|
goto nla_put_failure;
|
2008-01-24 04:34:11 +00:00
|
|
|
nla_nest_end(skb, nest);
|
2013-12-16 04:15:07 +00:00
|
|
|
} else if (exts->police) {
|
2013-12-16 04:15:05 +00:00
|
|
|
struct tc_action *act = tcf_exts_first_act(exts);
|
2013-12-16 04:15:07 +00:00
|
|
|
nest = nla_nest_start(skb, exts->police);
|
2013-12-23 13:02:12 +00:00
|
|
|
if (nest == NULL || !act)
|
2008-01-24 04:34:11 +00:00
|
|
|
goto nla_put_failure;
|
2013-12-16 04:15:05 +00:00
|
|
|
if (tcf_action_dump_old(skb, act, 0, 0) < 0)
|
2008-01-23 06:11:33 +00:00
|
|
|
goto nla_put_failure;
|
2008-01-24 04:34:11 +00:00
|
|
|
nla_nest_end(skb, nest);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
2014-07-16 21:25:30 +00:00
|
|
|
|
|
|
|
nla_put_failure:
|
|
|
|
nla_nest_cancel(skb, nest);
|
2005-04-16 22:20:36 +00:00
|
|
|
return -1;
|
2014-07-16 21:25:30 +00:00
|
|
|
#else
|
|
|
|
return 0;
|
|
|
|
#endif
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2008-01-21 10:26:41 +00:00
|
|
|
EXPORT_SYMBOL(tcf_exts_dump);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-01-21 10:26:41 +00:00
|
|
|
|
2013-12-16 04:15:07 +00:00
|
|
|
int tcf_exts_dump_stats(struct sk_buff *skb, struct tcf_exts *exts)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
#ifdef CONFIG_NET_CLS_ACT
|
2013-12-16 04:15:05 +00:00
|
|
|
struct tc_action *a = tcf_exts_first_act(exts);
|
2015-02-03 18:05:18 +00:00
|
|
|
if (a != NULL && tcf_action_copy_stats(skb, a, 1) < 0)
|
2013-12-16 04:15:05 +00:00
|
|
|
return -1;
|
2005-04-16 22:20:36 +00:00
|
|
|
#endif
|
|
|
|
return 0;
|
|
|
|
}
|
2008-01-21 10:26:41 +00:00
|
|
|
EXPORT_SYMBOL(tcf_exts_dump_stats);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
static int __init tc_filter_init(void)
|
|
|
|
{
|
2011-06-10 01:27:09 +00:00
|
|
|
rtnl_register(PF_UNSPEC, RTM_NEWTFILTER, tc_ctl_tfilter, NULL, NULL);
|
|
|
|
rtnl_register(PF_UNSPEC, RTM_DELTFILTER, tc_ctl_tfilter, NULL, NULL);
|
2007-03-22 18:56:22 +00:00
|
|
|
rtnl_register(PF_UNSPEC, RTM_GETTFILTER, tc_ctl_tfilter,
|
2011-06-10 01:27:09 +00:00
|
|
|
tc_dump_tfilter, NULL);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
subsys_initcall(tc_filter_init);
|