2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* net/sched/act_api.c Packet action 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.
|
|
|
|
*
|
|
|
|
* Author: Jamal Hadi Salim
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/string.h>
|
|
|
|
#include <linux/errno.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 16:04:11 +08:00
|
|
|
#include <linux/slab.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <linux/skbuff.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/kmod.h>
|
2008-01-24 12:33:13 +08:00
|
|
|
#include <linux/err.h>
|
2011-05-27 21:12:25 +08:00
|
|
|
#include <linux/module.h>
|
2017-10-11 15:41:08 +08:00
|
|
|
#include <linux/rhashtable.h>
|
|
|
|
#include <linux/list.h>
|
2007-11-30 21:21:31 +08:00
|
|
|
#include <net/net_namespace.h>
|
|
|
|
#include <net/sock.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <net/sch_generic.h>
|
2017-01-24 20:02:41 +08:00
|
|
|
#include <net/pkt_cls.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <net/act_api.h>
|
2007-03-26 14:06:12 +08:00
|
|
|
#include <net/netlink.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2017-05-17 17:08:03 +08:00
|
|
|
static int tcf_action_goto_chain_init(struct tc_action *a, struct tcf_proto *tp)
|
|
|
|
{
|
|
|
|
u32 chain_index = a->tcfa_action & TC_ACT_EXT_VAL_MASK;
|
|
|
|
|
|
|
|
if (!tp)
|
|
|
|
return -EINVAL;
|
2017-05-24 00:42:37 +08:00
|
|
|
a->goto_chain = tcf_chain_get(tp->chain->block, chain_index, true);
|
2017-05-17 17:08:03 +08:00
|
|
|
if (!a->goto_chain)
|
|
|
|
return -ENOMEM;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void tcf_action_goto_chain_fini(struct tc_action *a)
|
|
|
|
{
|
|
|
|
tcf_chain_put(a->goto_chain);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void tcf_action_goto_chain_exec(const struct tc_action *a,
|
|
|
|
struct tcf_result *res)
|
|
|
|
{
|
|
|
|
const struct tcf_chain *chain = a->goto_chain;
|
|
|
|
|
|
|
|
res->goto_tp = rcu_dereference_bh(chain->filter_chain);
|
|
|
|
}
|
|
|
|
|
2017-09-12 07:33:30 +08:00
|
|
|
/* XXX: For standalone actions, we don't need a RCU grace period either, because
|
|
|
|
* actions are always connected to filters and filters are already destroyed in
|
|
|
|
* RCU callbacks, so after a RCU grace period actions are already disconnected
|
|
|
|
* from filters. Readers later can not find us.
|
|
|
|
*/
|
|
|
|
static void free_tcf(struct tc_action *p)
|
2015-07-06 20:18:04 +08:00
|
|
|
{
|
|
|
|
free_percpu(p->cpu_bstats);
|
|
|
|
free_percpu(p->cpu_qstats);
|
2017-01-24 20:02:41 +08:00
|
|
|
|
|
|
|
if (p->act_cookie) {
|
|
|
|
kfree(p->act_cookie->data);
|
|
|
|
kfree(p->act_cookie);
|
|
|
|
}
|
2017-05-17 17:08:03 +08:00
|
|
|
if (p->goto_chain)
|
|
|
|
tcf_action_goto_chain_fini(p);
|
2017-01-24 20:02:41 +08:00
|
|
|
|
2015-07-06 20:18:04 +08:00
|
|
|
kfree(p);
|
|
|
|
}
|
|
|
|
|
2017-08-30 14:31:59 +08:00
|
|
|
static void tcf_idr_remove(struct tcf_idrinfo *idrinfo, struct tc_action *p)
|
2006-08-22 14:54:55 +08:00
|
|
|
{
|
2017-08-30 14:31:59 +08:00
|
|
|
spin_lock_bh(&idrinfo->lock);
|
|
|
|
idr_remove_ext(&idrinfo->action_idr, p->tcfa_index);
|
|
|
|
spin_unlock_bh(&idrinfo->lock);
|
2016-12-05 01:48:16 +08:00
|
|
|
gen_kill_estimator(&p->tcfa_rate_est);
|
2017-09-12 07:33:30 +08:00
|
|
|
free_tcf(p);
|
2006-08-22 14:54:55 +08:00
|
|
|
}
|
|
|
|
|
2017-08-30 14:31:59 +08:00
|
|
|
int __tcf_idr_release(struct tc_action *p, bool bind, bool strict)
|
2006-08-22 14:54:55 +08:00
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
|
2017-11-02 01:23:49 +08:00
|
|
|
ASSERT_RTNL();
|
|
|
|
|
2006-08-22 14:54:55 +08:00
|
|
|
if (p) {
|
|
|
|
if (bind)
|
2016-07-26 07:09:42 +08:00
|
|
|
p->tcfa_bindcnt--;
|
|
|
|
else if (strict && p->tcfa_bindcnt > 0)
|
2014-02-12 09:07:34 +08:00
|
|
|
return -EPERM;
|
2006-08-22 14:54:55 +08:00
|
|
|
|
2016-07-26 07:09:42 +08:00
|
|
|
p->tcfa_refcnt--;
|
|
|
|
if (p->tcfa_bindcnt <= 0 && p->tcfa_refcnt <= 0) {
|
|
|
|
if (p->ops->cleanup)
|
|
|
|
p->ops->cleanup(p, bind);
|
2017-08-30 14:31:59 +08:00
|
|
|
tcf_idr_remove(p->idrinfo, p);
|
2016-02-23 07:57:52 +08:00
|
|
|
ret = ACT_P_DELETED;
|
2006-08-22 14:54:55 +08:00
|
|
|
}
|
|
|
|
}
|
net: sched: fix refcount imbalance in actions
Since commit 55334a5db5cd ("net_sched: act: refuse to remove bound action
outside"), we end up with a wrong reference count for a tc action.
Test case 1:
FOO="1,6 0 0 4294967295,"
BAR="1,6 0 0 4294967294,"
tc filter add dev foo parent 1: bpf bytecode "$FOO" flowid 1:1 \
action bpf bytecode "$FOO"
tc actions show action bpf
action order 0: bpf bytecode '1,6 0 0 4294967295' default-action pipe
index 1 ref 1 bind 1
tc actions replace action bpf bytecode "$BAR" index 1
tc actions show action bpf
action order 0: bpf bytecode '1,6 0 0 4294967294' default-action pipe
index 1 ref 2 bind 1
tc actions replace action bpf bytecode "$FOO" index 1
tc actions show action bpf
action order 0: bpf bytecode '1,6 0 0 4294967295' default-action pipe
index 1 ref 3 bind 1
Test case 2:
FOO="1,6 0 0 4294967295,"
tc filter add dev foo parent 1: bpf bytecode "$FOO" flowid 1:1 action ok
tc actions show action gact
action order 0: gact action pass
random type none pass val 0
index 1 ref 1 bind 1
tc actions add action drop index 1
RTNETLINK answers: File exists [...]
tc actions show action gact
action order 0: gact action pass
random type none pass val 0
index 1 ref 2 bind 1
tc actions add action drop index 1
RTNETLINK answers: File exists [...]
tc actions show action gact
action order 0: gact action pass
random type none pass val 0
index 1 ref 3 bind 1
What happens is that in tcf_hash_check(), we check tcf_common for a given
index and increase tcfc_refcnt and conditionally tcfc_bindcnt when we've
found an existing action. Now there are the following cases:
1) We do a late binding of an action. In that case, we leave the
tcfc_refcnt/tcfc_bindcnt increased and are done with the ->init()
handler. This is correctly handeled.
2) We replace the given action, or we try to add one without replacing
and find out that the action at a specific index already exists
(thus, we go out with error in that case).
In case of 2), we have to undo the reference count increase from
tcf_hash_check() in the tcf_hash_check() function. Currently, we fail to
do so because of the 'tcfc_bindcnt > 0' check which bails out early with
an -EPERM error.
Now, while commit 55334a5db5cd prevents 'tc actions del action ...' on an
already classifier-bound action to drop the reference count (which could
then become negative, wrap around etc), this restriction only accounts for
invocations outside a specific action's ->init() handler.
One possible solution would be to add a flag thus we possibly trigger
the -EPERM ony in situations where it is indeed relevant.
After the patch, above test cases have correct reference count again.
Fixes: 55334a5db5cd ("net_sched: act: refuse to remove bound action outside")
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Reviewed-by: Cong Wang <cwang@twopensource.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2015-07-30 05:35:25 +08:00
|
|
|
|
2006-08-22 14:54:55 +08:00
|
|
|
return ret;
|
|
|
|
}
|
2017-08-30 14:31:59 +08:00
|
|
|
EXPORT_SYMBOL(__tcf_idr_release);
|
2006-08-22 14:54:55 +08:00
|
|
|
|
2017-08-30 14:31:59 +08:00
|
|
|
static int tcf_dump_walker(struct tcf_idrinfo *idrinfo, struct sk_buff *skb,
|
2016-07-26 07:09:41 +08:00
|
|
|
struct netlink_callback *cb)
|
2006-08-22 14:54:55 +08:00
|
|
|
{
|
2017-08-30 14:31:59 +08:00
|
|
|
int err = 0, index = -1, s_i = 0, n_i = 0;
|
2017-07-31 01:24:51 +08:00
|
|
|
u32 act_flags = cb->args[2];
|
2017-07-31 01:24:52 +08:00
|
|
|
unsigned long jiffy_since = cb->args[3];
|
2008-01-24 12:34:11 +08:00
|
|
|
struct nlattr *nest;
|
2017-08-30 14:31:59 +08:00
|
|
|
struct idr *idr = &idrinfo->action_idr;
|
|
|
|
struct tc_action *p;
|
|
|
|
unsigned long id = 1;
|
2006-08-22 14:54:55 +08:00
|
|
|
|
2017-08-30 14:31:59 +08:00
|
|
|
spin_lock_bh(&idrinfo->lock);
|
2006-08-22 14:54:55 +08:00
|
|
|
|
|
|
|
s_i = cb->args[0];
|
|
|
|
|
2017-08-30 14:31:59 +08:00
|
|
|
idr_for_each_entry_ext(idr, p, id) {
|
|
|
|
index++;
|
|
|
|
if (index < s_i)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (jiffy_since &&
|
|
|
|
time_after(jiffy_since,
|
|
|
|
(unsigned long)p->tcfa_tm.lastuse))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
nest = nla_nest_start(skb, n_i);
|
|
|
|
if (!nest)
|
|
|
|
goto nla_put_failure;
|
|
|
|
err = tcf_action_dump_1(skb, p, 0, 0);
|
|
|
|
if (err < 0) {
|
|
|
|
index--;
|
|
|
|
nlmsg_trim(skb, nest);
|
|
|
|
goto done;
|
2006-08-22 14:54:55 +08:00
|
|
|
}
|
2017-08-30 14:31:59 +08:00
|
|
|
nla_nest_end(skb, nest);
|
|
|
|
n_i++;
|
|
|
|
if (!(act_flags & TCA_FLAG_LARGE_DUMP_ON) &&
|
|
|
|
n_i >= TCA_ACT_MAX_PRIO)
|
|
|
|
goto done;
|
2006-08-22 14:54:55 +08:00
|
|
|
}
|
|
|
|
done:
|
2017-07-31 01:24:52 +08:00
|
|
|
if (index >= 0)
|
|
|
|
cb->args[0] = index + 1;
|
|
|
|
|
2017-08-30 14:31:59 +08:00
|
|
|
spin_unlock_bh(&idrinfo->lock);
|
2017-07-31 01:24:51 +08:00
|
|
|
if (n_i) {
|
|
|
|
if (act_flags & TCA_FLAG_LARGE_DUMP_ON)
|
|
|
|
cb->args[1] = n_i;
|
|
|
|
}
|
2006-08-22 14:54:55 +08:00
|
|
|
return n_i;
|
|
|
|
|
2008-01-23 14:11:50 +08:00
|
|
|
nla_put_failure:
|
2008-01-24 12:34:11 +08:00
|
|
|
nla_nest_cancel(skb, nest);
|
2006-08-22 14:54:55 +08:00
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2017-08-30 14:31:59 +08:00
|
|
|
static int tcf_del_walker(struct tcf_idrinfo *idrinfo, struct sk_buff *skb,
|
2016-07-26 07:09:41 +08:00
|
|
|
const struct tc_action_ops *ops)
|
2006-08-22 14:54:55 +08:00
|
|
|
{
|
2008-01-24 12:34:11 +08:00
|
|
|
struct nlattr *nest;
|
2017-08-30 14:31:59 +08:00
|
|
|
int n_i = 0;
|
2014-02-12 09:07:34 +08:00
|
|
|
int ret = -EINVAL;
|
2017-08-30 14:31:59 +08:00
|
|
|
struct idr *idr = &idrinfo->action_idr;
|
|
|
|
struct tc_action *p;
|
|
|
|
unsigned long id = 1;
|
2006-08-22 14:54:55 +08:00
|
|
|
|
2016-07-26 07:09:41 +08:00
|
|
|
nest = nla_nest_start(skb, 0);
|
2008-01-24 12:34:11 +08:00
|
|
|
if (nest == NULL)
|
|
|
|
goto nla_put_failure;
|
2016-07-26 07:09:41 +08:00
|
|
|
if (nla_put_string(skb, TCA_KIND, ops->kind))
|
2012-03-29 17:11:39 +08:00
|
|
|
goto nla_put_failure;
|
2017-08-30 14:31:59 +08:00
|
|
|
|
|
|
|
idr_for_each_entry_ext(idr, p, id) {
|
|
|
|
ret = __tcf_idr_release(p, false, true);
|
|
|
|
if (ret == ACT_P_DELETED) {
|
2017-09-13 23:32:37 +08:00
|
|
|
module_put(ops->owner);
|
2017-08-30 14:31:59 +08:00
|
|
|
n_i++;
|
|
|
|
} else if (ret < 0) {
|
|
|
|
goto nla_put_failure;
|
2006-08-22 14:54:55 +08:00
|
|
|
}
|
|
|
|
}
|
2012-03-29 17:11:39 +08:00
|
|
|
if (nla_put_u32(skb, TCA_FCNT, n_i))
|
|
|
|
goto nla_put_failure;
|
2008-01-24 12:34:11 +08:00
|
|
|
nla_nest_end(skb, nest);
|
2006-08-22 14:54:55 +08:00
|
|
|
|
|
|
|
return n_i;
|
2008-01-23 14:11:50 +08:00
|
|
|
nla_put_failure:
|
2008-01-24 12:34:11 +08:00
|
|
|
nla_nest_cancel(skb, nest);
|
2014-02-12 09:07:34 +08:00
|
|
|
return ret;
|
2006-08-22 14:54:55 +08:00
|
|
|
}
|
|
|
|
|
2016-02-23 07:57:53 +08:00
|
|
|
int tcf_generic_walker(struct tc_action_net *tn, struct sk_buff *skb,
|
|
|
|
struct netlink_callback *cb, int type,
|
2016-07-26 07:09:41 +08:00
|
|
|
const struct tc_action_ops *ops)
|
2006-08-22 14:54:55 +08:00
|
|
|
{
|
2017-08-30 14:31:59 +08:00
|
|
|
struct tcf_idrinfo *idrinfo = tn->idrinfo;
|
2016-02-23 07:57:53 +08:00
|
|
|
|
2006-08-22 14:54:55 +08:00
|
|
|
if (type == RTM_DELACTION) {
|
2017-08-30 14:31:59 +08:00
|
|
|
return tcf_del_walker(idrinfo, skb, ops);
|
2006-08-22 14:54:55 +08:00
|
|
|
} else if (type == RTM_GETACTION) {
|
2017-08-30 14:31:59 +08:00
|
|
|
return tcf_dump_walker(idrinfo, skb, cb);
|
2006-08-22 14:54:55 +08:00
|
|
|
} else {
|
2010-05-12 14:37:05 +08:00
|
|
|
WARN(1, "tcf_generic_walker: unknown action %d\n", type);
|
2006-08-22 14:54:55 +08:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
}
|
2016-02-23 07:57:53 +08:00
|
|
|
EXPORT_SYMBOL(tcf_generic_walker);
|
2006-08-22 14:54:55 +08:00
|
|
|
|
2017-08-30 14:31:59 +08:00
|
|
|
static struct tc_action *tcf_idr_lookup(u32 index, struct tcf_idrinfo *idrinfo)
|
2006-08-22 14:54:55 +08:00
|
|
|
{
|
2016-07-26 07:09:42 +08:00
|
|
|
struct tc_action *p = NULL;
|
2006-08-22 14:54:55 +08:00
|
|
|
|
2017-08-30 14:31:59 +08:00
|
|
|
spin_lock_bh(&idrinfo->lock);
|
|
|
|
p = idr_find_ext(&idrinfo->action_idr, index);
|
|
|
|
spin_unlock_bh(&idrinfo->lock);
|
2006-08-22 14:54:55 +08:00
|
|
|
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
2017-08-30 14:31:59 +08:00
|
|
|
int tcf_idr_search(struct tc_action_net *tn, struct tc_action **a, u32 index)
|
2006-08-22 14:54:55 +08:00
|
|
|
{
|
2017-08-30 14:31:59 +08:00
|
|
|
struct tcf_idrinfo *idrinfo = tn->idrinfo;
|
|
|
|
struct tc_action *p = tcf_idr_lookup(index, idrinfo);
|
2006-08-22 14:54:55 +08:00
|
|
|
|
|
|
|
if (p) {
|
2016-07-26 07:09:42 +08:00
|
|
|
*a = p;
|
2006-08-22 14:54:55 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2017-08-30 14:31:59 +08:00
|
|
|
EXPORT_SYMBOL(tcf_idr_search);
|
2006-08-22 14:54:55 +08:00
|
|
|
|
2017-08-30 14:31:59 +08:00
|
|
|
bool tcf_idr_check(struct tc_action_net *tn, u32 index, struct tc_action **a,
|
|
|
|
int bind)
|
2006-08-22 14:54:55 +08:00
|
|
|
{
|
2017-08-30 14:31:59 +08:00
|
|
|
struct tcf_idrinfo *idrinfo = tn->idrinfo;
|
|
|
|
struct tc_action *p = tcf_idr_lookup(index, idrinfo);
|
2016-07-26 07:09:42 +08:00
|
|
|
|
2017-08-30 14:31:59 +08:00
|
|
|
if (index && p) {
|
2008-08-08 11:37:22 +08:00
|
|
|
if (bind)
|
2016-07-26 07:09:42 +08:00
|
|
|
p->tcfa_bindcnt++;
|
|
|
|
p->tcfa_refcnt++;
|
|
|
|
*a = p;
|
2016-06-14 04:46:28 +08:00
|
|
|
return true;
|
2006-08-22 14:54:55 +08:00
|
|
|
}
|
2016-06-14 04:46:28 +08:00
|
|
|
return false;
|
2006-08-22 14:54:55 +08:00
|
|
|
}
|
2017-08-30 14:31:59 +08:00
|
|
|
EXPORT_SYMBOL(tcf_idr_check);
|
2006-08-22 14:54:55 +08:00
|
|
|
|
2017-08-30 14:31:59 +08:00
|
|
|
void tcf_idr_cleanup(struct tc_action *a, struct nlattr *est)
|
2014-02-12 09:07:31 +08:00
|
|
|
{
|
|
|
|
if (est)
|
2016-12-05 01:48:16 +08:00
|
|
|
gen_kill_estimator(&a->tcfa_rate_est);
|
2017-09-12 07:33:30 +08:00
|
|
|
free_tcf(a);
|
2014-02-12 09:07:31 +08:00
|
|
|
}
|
2017-08-30 14:31:59 +08:00
|
|
|
EXPORT_SYMBOL(tcf_idr_cleanup);
|
2014-02-12 09:07:31 +08:00
|
|
|
|
2017-08-30 14:31:59 +08:00
|
|
|
int tcf_idr_create(struct tc_action_net *tn, u32 index, struct nlattr *est,
|
|
|
|
struct tc_action **a, const struct tc_action_ops *ops,
|
|
|
|
int bind, bool cpustats)
|
2006-08-22 14:54:55 +08:00
|
|
|
{
|
2016-07-26 07:09:42 +08:00
|
|
|
struct tc_action *p = kzalloc(ops->size, GFP_KERNEL);
|
2017-08-30 14:31:59 +08:00
|
|
|
struct tcf_idrinfo *idrinfo = tn->idrinfo;
|
|
|
|
struct idr *idr = &idrinfo->action_idr;
|
2015-07-06 20:18:04 +08:00
|
|
|
int err = -ENOMEM;
|
2017-08-30 14:31:59 +08:00
|
|
|
unsigned long idr_index;
|
2006-08-22 14:54:55 +08:00
|
|
|
|
|
|
|
if (unlikely(!p))
|
2014-02-12 09:07:31 +08:00
|
|
|
return -ENOMEM;
|
2016-07-26 07:09:42 +08:00
|
|
|
p->tcfa_refcnt = 1;
|
2006-08-22 14:54:55 +08:00
|
|
|
if (bind)
|
2016-07-26 07:09:42 +08:00
|
|
|
p->tcfa_bindcnt = 1;
|
2006-08-22 14:54:55 +08:00
|
|
|
|
2015-07-06 20:18:04 +08:00
|
|
|
if (cpustats) {
|
|
|
|
p->cpu_bstats = netdev_alloc_pcpu_stats(struct gnet_stats_basic_cpu);
|
|
|
|
if (!p->cpu_bstats) {
|
|
|
|
err1:
|
|
|
|
kfree(p);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
p->cpu_qstats = alloc_percpu(struct gnet_stats_queue);
|
|
|
|
if (!p->cpu_qstats) {
|
|
|
|
err2:
|
|
|
|
free_percpu(p->cpu_bstats);
|
|
|
|
goto err1;
|
|
|
|
}
|
|
|
|
}
|
2016-07-26 07:09:42 +08:00
|
|
|
spin_lock_init(&p->tcfa_lock);
|
2017-08-30 14:31:59 +08:00
|
|
|
/* user doesn't specify an index */
|
|
|
|
if (!index) {
|
2017-09-05 23:31:23 +08:00
|
|
|
idr_preload(GFP_KERNEL);
|
2017-08-30 14:31:59 +08:00
|
|
|
spin_lock_bh(&idrinfo->lock);
|
|
|
|
err = idr_alloc_ext(idr, NULL, &idr_index, 1, 0,
|
2017-09-05 23:31:23 +08:00
|
|
|
GFP_ATOMIC);
|
2017-08-30 14:31:59 +08:00
|
|
|
spin_unlock_bh(&idrinfo->lock);
|
2017-09-05 23:31:23 +08:00
|
|
|
idr_preload_end();
|
2017-08-30 14:31:59 +08:00
|
|
|
if (err) {
|
|
|
|
err3:
|
|
|
|
free_percpu(p->cpu_qstats);
|
|
|
|
goto err2;
|
|
|
|
}
|
|
|
|
p->tcfa_index = idr_index;
|
|
|
|
} else {
|
2017-09-05 23:31:23 +08:00
|
|
|
idr_preload(GFP_KERNEL);
|
2017-08-30 14:31:59 +08:00
|
|
|
spin_lock_bh(&idrinfo->lock);
|
|
|
|
err = idr_alloc_ext(idr, NULL, NULL, index, index + 1,
|
2017-09-05 23:31:23 +08:00
|
|
|
GFP_ATOMIC);
|
2017-08-30 14:31:59 +08:00
|
|
|
spin_unlock_bh(&idrinfo->lock);
|
2017-09-05 23:31:23 +08:00
|
|
|
idr_preload_end();
|
2017-08-30 14:31:59 +08:00
|
|
|
if (err)
|
|
|
|
goto err3;
|
|
|
|
p->tcfa_index = index;
|
|
|
|
}
|
|
|
|
|
2016-07-26 07:09:42 +08:00
|
|
|
p->tcfa_tm.install = jiffies;
|
|
|
|
p->tcfa_tm.lastuse = jiffies;
|
|
|
|
p->tcfa_tm.firstuse = 0;
|
2008-11-26 13:12:32 +08:00
|
|
|
if (est) {
|
2016-07-26 07:09:42 +08:00
|
|
|
err = gen_new_estimator(&p->tcfa_bstats, p->cpu_bstats,
|
|
|
|
&p->tcfa_rate_est,
|
|
|
|
&p->tcfa_lock, NULL, est);
|
2008-11-26 13:12:32 +08:00
|
|
|
if (err) {
|
2017-08-30 14:31:59 +08:00
|
|
|
goto err3;
|
2008-11-26 13:12:32 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-30 14:31:59 +08:00
|
|
|
p->idrinfo = idrinfo;
|
2016-07-26 07:09:42 +08:00
|
|
|
p->ops = ops;
|
|
|
|
INIT_LIST_HEAD(&p->list);
|
|
|
|
*a = p;
|
2014-02-12 09:07:31 +08:00
|
|
|
return 0;
|
2006-08-22 14:54:55 +08:00
|
|
|
}
|
2017-08-30 14:31:59 +08:00
|
|
|
EXPORT_SYMBOL(tcf_idr_create);
|
2006-08-22 14:54:55 +08:00
|
|
|
|
2017-08-30 14:31:59 +08:00
|
|
|
void tcf_idr_insert(struct tc_action_net *tn, struct tc_action *a)
|
2006-08-22 14:54:55 +08:00
|
|
|
{
|
2017-08-30 14:31:59 +08:00
|
|
|
struct tcf_idrinfo *idrinfo = tn->idrinfo;
|
2006-08-22 14:54:55 +08:00
|
|
|
|
2017-08-30 14:31:59 +08:00
|
|
|
spin_lock_bh(&idrinfo->lock);
|
|
|
|
idr_replace_ext(&idrinfo->action_idr, a, a->tcfa_index);
|
|
|
|
spin_unlock_bh(&idrinfo->lock);
|
2006-08-22 14:54:55 +08:00
|
|
|
}
|
2017-08-30 14:31:59 +08:00
|
|
|
EXPORT_SYMBOL(tcf_idr_insert);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2017-08-30 14:31:59 +08:00
|
|
|
void tcf_idrinfo_destroy(const struct tc_action_ops *ops,
|
|
|
|
struct tcf_idrinfo *idrinfo)
|
2016-02-23 07:57:52 +08:00
|
|
|
{
|
2017-08-30 14:31:59 +08:00
|
|
|
struct idr *idr = &idrinfo->action_idr;
|
|
|
|
struct tc_action *p;
|
|
|
|
int ret;
|
|
|
|
unsigned long id = 1;
|
2016-02-23 07:57:52 +08:00
|
|
|
|
2017-08-30 14:31:59 +08:00
|
|
|
idr_for_each_entry_ext(idr, p, id) {
|
|
|
|
ret = __tcf_idr_release(p, false, true);
|
|
|
|
if (ret == ACT_P_DELETED)
|
|
|
|
module_put(ops->owner);
|
|
|
|
else if (ret < 0)
|
|
|
|
return;
|
2016-02-23 07:57:52 +08:00
|
|
|
}
|
2017-08-30 14:31:59 +08:00
|
|
|
idr_destroy(&idrinfo->action_idr);
|
2016-02-23 07:57:52 +08:00
|
|
|
}
|
2017-08-30 14:31:59 +08:00
|
|
|
EXPORT_SYMBOL(tcf_idrinfo_destroy);
|
2016-02-23 07:57:52 +08:00
|
|
|
|
2013-12-16 12:15:10 +08:00
|
|
|
static LIST_HEAD(act_base);
|
2005-04-17 06:20:36 +08:00
|
|
|
static DEFINE_RWLOCK(act_mod_lock);
|
|
|
|
|
2016-02-23 07:57:53 +08:00
|
|
|
int tcf_register_action(struct tc_action_ops *act,
|
|
|
|
struct pernet_operations *ops)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2013-12-16 12:15:10 +08:00
|
|
|
struct tc_action_ops *a;
|
2016-02-23 07:57:53 +08:00
|
|
|
int ret;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2016-02-23 07:57:53 +08:00
|
|
|
if (!act->act || !act->dump || !act->init || !act->walk || !act->lookup)
|
2013-12-04 22:26:52 +08:00
|
|
|
return -EINVAL;
|
|
|
|
|
2016-10-12 01:56:45 +08:00
|
|
|
/* We have to register pernet ops before making the action ops visible,
|
|
|
|
* otherwise tcf_action_init_1() could get a partially initialized
|
|
|
|
* netns.
|
|
|
|
*/
|
|
|
|
ret = register_pernet_subsys(ops);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
write_lock(&act_mod_lock);
|
2013-12-16 12:15:10 +08:00
|
|
|
list_for_each_entry(a, &act_base, head) {
|
2005-04-17 06:20:36 +08:00
|
|
|
if (act->type == a->type || (strcmp(act->kind, a->kind) == 0)) {
|
|
|
|
write_unlock(&act_mod_lock);
|
2016-10-12 01:56:45 +08:00
|
|
|
unregister_pernet_subsys(ops);
|
2005-04-17 06:20:36 +08:00
|
|
|
return -EEXIST;
|
|
|
|
}
|
|
|
|
}
|
2013-12-16 12:15:10 +08:00
|
|
|
list_add_tail(&act->head, &act_base);
|
2005-04-17 06:20:36 +08:00
|
|
|
write_unlock(&act_mod_lock);
|
2016-02-23 07:57:53 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
return 0;
|
|
|
|
}
|
2008-01-23 14:10:23 +08:00
|
|
|
EXPORT_SYMBOL(tcf_register_action);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2016-02-23 07:57:53 +08:00
|
|
|
int tcf_unregister_action(struct tc_action_ops *act,
|
|
|
|
struct pernet_operations *ops)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2013-12-16 12:15:10 +08:00
|
|
|
struct tc_action_ops *a;
|
2005-04-17 06:20:36 +08:00
|
|
|
int err = -ENOENT;
|
|
|
|
|
|
|
|
write_lock(&act_mod_lock);
|
2013-12-21 04:32:32 +08:00
|
|
|
list_for_each_entry(a, &act_base, head) {
|
|
|
|
if (a == act) {
|
|
|
|
list_del(&act->head);
|
|
|
|
err = 0;
|
2005-04-17 06:20:36 +08:00
|
|
|
break;
|
2013-12-21 04:32:32 +08:00
|
|
|
}
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
write_unlock(&act_mod_lock);
|
2016-10-12 01:56:45 +08:00
|
|
|
if (!err)
|
|
|
|
unregister_pernet_subsys(ops);
|
2005-04-17 06:20:36 +08:00
|
|
|
return err;
|
|
|
|
}
|
2008-01-23 14:10:23 +08:00
|
|
|
EXPORT_SYMBOL(tcf_unregister_action);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/* lookup by name */
|
|
|
|
static struct tc_action_ops *tc_lookup_action_n(char *kind)
|
|
|
|
{
|
2013-12-21 04:32:32 +08:00
|
|
|
struct tc_action_ops *a, *res = NULL;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
if (kind) {
|
|
|
|
read_lock(&act_mod_lock);
|
2013-12-16 12:15:10 +08:00
|
|
|
list_for_each_entry(a, &act_base, head) {
|
2005-04-17 06:20:36 +08:00
|
|
|
if (strcmp(kind, a->kind) == 0) {
|
2013-12-21 04:32:32 +08:00
|
|
|
if (try_module_get(a->owner))
|
|
|
|
res = a;
|
2005-04-17 06:20:36 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
read_unlock(&act_mod_lock);
|
|
|
|
}
|
2013-12-21 04:32:32 +08:00
|
|
|
return res;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2008-01-23 14:11:50 +08:00
|
|
|
/* lookup by nlattr */
|
|
|
|
static struct tc_action_ops *tc_lookup_action(struct nlattr *kind)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2013-12-21 04:32:32 +08:00
|
|
|
struct tc_action_ops *a, *res = NULL;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
if (kind) {
|
|
|
|
read_lock(&act_mod_lock);
|
2013-12-16 12:15:10 +08:00
|
|
|
list_for_each_entry(a, &act_base, head) {
|
2008-01-23 14:11:50 +08:00
|
|
|
if (nla_strcmp(kind, a->kind) == 0) {
|
2013-12-21 04:32:32 +08:00
|
|
|
if (try_module_get(a->owner))
|
|
|
|
res = a;
|
2005-04-17 06:20:36 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
read_unlock(&act_mod_lock);
|
|
|
|
}
|
2013-12-21 04:32:32 +08:00
|
|
|
return res;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2017-04-24 01:17:28 +08:00
|
|
|
/*TCA_ACT_MAX_PRIO is 32, there count upto 32 */
|
|
|
|
#define TCA_ACT_MAX_PRIO_MASK 0x1FF
|
2016-08-14 13:35:00 +08:00
|
|
|
int tcf_action_exec(struct sk_buff *skb, struct tc_action **actions,
|
|
|
|
int nr_actions, struct tcf_result *res)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2017-04-24 01:17:28 +08:00
|
|
|
u32 jmp_prgcnt = 0;
|
|
|
|
u32 jmp_ttl = TCA_ACT_MAX_PRIO; /*matches actions per filter */
|
2017-08-04 20:29:02 +08:00
|
|
|
int i;
|
|
|
|
int ret = TC_ACT_OK;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2017-01-08 06:06:35 +08:00
|
|
|
if (skb_skip_tc_classify(skb))
|
|
|
|
return TC_ACT_OK;
|
|
|
|
|
2017-04-24 01:17:28 +08:00
|
|
|
restart_act_graph:
|
2016-08-14 13:35:00 +08:00
|
|
|
for (i = 0; i < nr_actions; i++) {
|
|
|
|
const struct tc_action *a = actions[i];
|
|
|
|
|
2017-04-24 01:17:28 +08:00
|
|
|
if (jmp_prgcnt > 0) {
|
|
|
|
jmp_prgcnt -= 1;
|
|
|
|
continue;
|
|
|
|
}
|
2005-04-17 06:20:36 +08:00
|
|
|
repeat:
|
2013-12-23 21:02:12 +08:00
|
|
|
ret = a->ops->act(skb, a, res);
|
|
|
|
if (ret == TC_ACT_REPEAT)
|
|
|
|
goto repeat; /* we need a ttl - JHS */
|
2017-04-24 01:17:28 +08:00
|
|
|
|
2017-05-02 16:12:00 +08:00
|
|
|
if (TC_ACT_EXT_CMP(ret, TC_ACT_JUMP)) {
|
2017-04-24 01:17:28 +08:00
|
|
|
jmp_prgcnt = ret & TCA_ACT_MAX_PRIO_MASK;
|
|
|
|
if (!jmp_prgcnt || (jmp_prgcnt > nr_actions)) {
|
|
|
|
/* faulty opcode, stop pipeline */
|
|
|
|
return TC_ACT_OK;
|
|
|
|
} else {
|
|
|
|
jmp_ttl -= 1;
|
|
|
|
if (jmp_ttl > 0)
|
|
|
|
goto restart_act_graph;
|
|
|
|
else /* faulty graph, stop pipeline */
|
|
|
|
return TC_ACT_OK;
|
|
|
|
}
|
2017-05-17 17:08:03 +08:00
|
|
|
} else if (TC_ACT_EXT_CMP(ret, TC_ACT_GOTO_CHAIN)) {
|
|
|
|
tcf_action_goto_chain_exec(a, res);
|
2017-04-24 01:17:28 +08:00
|
|
|
}
|
|
|
|
|
2013-12-23 21:02:12 +08:00
|
|
|
if (ret != TC_ACT_PIPE)
|
2017-01-08 06:06:35 +08:00
|
|
|
break;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
2017-04-24 01:17:28 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
return ret;
|
|
|
|
}
|
2008-01-23 14:10:23 +08:00
|
|
|
EXPORT_SYMBOL(tcf_action_exec);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2014-02-12 09:07:34 +08:00
|
|
|
int tcf_action_destroy(struct list_head *actions, int bind)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2017-09-13 23:32:37 +08:00
|
|
|
const struct tc_action_ops *ops;
|
2013-12-16 12:15:05 +08:00
|
|
|
struct tc_action *a, *tmp;
|
2014-02-12 09:07:34 +08:00
|
|
|
int ret = 0;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2013-12-16 12:15:05 +08:00
|
|
|
list_for_each_entry_safe(a, tmp, actions, list) {
|
2017-09-13 23:32:37 +08:00
|
|
|
ops = a->ops;
|
2017-08-30 14:31:59 +08:00
|
|
|
ret = __tcf_idr_release(a, bind, true);
|
2014-02-12 09:07:34 +08:00
|
|
|
if (ret == ACT_P_DELETED)
|
2017-09-13 23:32:37 +08:00
|
|
|
module_put(ops->owner);
|
2014-02-12 09:07:34 +08:00
|
|
|
else if (ret < 0)
|
|
|
|
return ret;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
2014-02-12 09:07:34 +08:00
|
|
|
return ret;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
tcf_action_dump_old(struct sk_buff *skb, struct tc_action *a, int bind, int ref)
|
|
|
|
{
|
|
|
|
return a->ops->dump(skb, a, bind, ref);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
tcf_action_dump_1(struct sk_buff *skb, struct tc_action *a, int bind, int ref)
|
|
|
|
{
|
|
|
|
int err = -EINVAL;
|
2007-04-20 11:29:13 +08:00
|
|
|
unsigned char *b = skb_tail_pointer(skb);
|
2008-01-24 12:34:11 +08:00
|
|
|
struct nlattr *nest;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2012-03-29 17:11:39 +08:00
|
|
|
if (nla_put_string(skb, TCA_KIND, a->ops->kind))
|
|
|
|
goto nla_put_failure;
|
2005-04-17 06:20:36 +08:00
|
|
|
if (tcf_action_copy_stats(skb, a, 0))
|
2008-01-23 14:11:50 +08:00
|
|
|
goto nla_put_failure;
|
2017-01-24 20:02:41 +08:00
|
|
|
if (a->act_cookie) {
|
|
|
|
if (nla_put(skb, TCA_ACT_COOKIE, a->act_cookie->len,
|
|
|
|
a->act_cookie->data))
|
|
|
|
goto nla_put_failure;
|
|
|
|
}
|
|
|
|
|
2008-01-24 12:34:11 +08:00
|
|
|
nest = nla_nest_start(skb, TCA_OPTIONS);
|
|
|
|
if (nest == NULL)
|
|
|
|
goto nla_put_failure;
|
2011-01-20 03:26:56 +08:00
|
|
|
err = tcf_action_dump_old(skb, a, bind, ref);
|
|
|
|
if (err > 0) {
|
2008-01-24 12:34:11 +08:00
|
|
|
nla_nest_end(skb, nest);
|
2005-04-17 06:20:36 +08:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2008-01-23 14:11:50 +08:00
|
|
|
nla_put_failure:
|
2007-03-26 14:06:12 +08:00
|
|
|
nlmsg_trim(skb, b);
|
2005-04-17 06:20:36 +08:00
|
|
|
return -1;
|
|
|
|
}
|
2008-01-23 14:10:23 +08:00
|
|
|
EXPORT_SYMBOL(tcf_action_dump_1);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2016-06-05 22:41:32 +08:00
|
|
|
int tcf_action_dump(struct sk_buff *skb, struct list_head *actions,
|
|
|
|
int bind, int ref)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
struct tc_action *a;
|
|
|
|
int err = -EINVAL;
|
2008-01-24 12:34:11 +08:00
|
|
|
struct nlattr *nest;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2013-12-16 12:15:05 +08:00
|
|
|
list_for_each_entry(a, actions, list) {
|
2008-01-24 12:34:11 +08:00
|
|
|
nest = nla_nest_start(skb, a->order);
|
|
|
|
if (nest == NULL)
|
|
|
|
goto nla_put_failure;
|
2005-04-17 06:20:36 +08:00
|
|
|
err = tcf_action_dump_1(skb, a, bind, ref);
|
|
|
|
if (err < 0)
|
2006-07-06 11:47:28 +08:00
|
|
|
goto errout;
|
2008-01-24 12:34:11 +08:00
|
|
|
nla_nest_end(skb, nest);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
2008-01-23 14:11:50 +08:00
|
|
|
nla_put_failure:
|
2006-07-06 11:47:28 +08:00
|
|
|
err = -EINVAL;
|
|
|
|
errout:
|
2008-01-24 12:34:11 +08:00
|
|
|
nla_nest_cancel(skb, nest);
|
2006-07-06 11:47:28 +08:00
|
|
|
return err;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2017-04-20 20:08:26 +08:00
|
|
|
static struct tc_cookie *nla_memdup_cookie(struct nlattr **tb)
|
2017-01-24 20:02:41 +08:00
|
|
|
{
|
2017-04-20 20:08:26 +08:00
|
|
|
struct tc_cookie *c = kzalloc(sizeof(*c), GFP_KERNEL);
|
|
|
|
if (!c)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
c->data = nla_memdup(tb[TCA_ACT_COOKIE], GFP_KERNEL);
|
|
|
|
if (!c->data) {
|
|
|
|
kfree(c);
|
|
|
|
return NULL;
|
2017-01-24 20:02:41 +08:00
|
|
|
}
|
2017-04-20 20:08:26 +08:00
|
|
|
c->len = nla_len(tb[TCA_ACT_COOKIE]);
|
2017-01-24 20:02:41 +08:00
|
|
|
|
2017-04-20 20:08:26 +08:00
|
|
|
return c;
|
2017-01-24 20:02:41 +08:00
|
|
|
}
|
|
|
|
|
2017-05-17 17:08:02 +08:00
|
|
|
struct tc_action *tcf_action_init_1(struct net *net, struct tcf_proto *tp,
|
|
|
|
struct nlattr *nla, struct nlattr *est,
|
|
|
|
char *name, int ovr, int bind)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
struct tc_action *a;
|
|
|
|
struct tc_action_ops *a_o;
|
2017-04-20 20:08:26 +08:00
|
|
|
struct tc_cookie *cookie = NULL;
|
2005-04-17 06:20:36 +08:00
|
|
|
char act_name[IFNAMSIZ];
|
2011-01-20 03:26:56 +08:00
|
|
|
struct nlattr *tb[TCA_ACT_MAX + 1];
|
2008-01-23 14:11:50 +08:00
|
|
|
struct nlattr *kind;
|
2008-01-24 12:33:13 +08:00
|
|
|
int err;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
if (name == NULL) {
|
2017-04-12 20:34:07 +08:00
|
|
|
err = nla_parse_nested(tb, TCA_ACT_MAX, nla, NULL, NULL);
|
2008-01-24 12:33:32 +08:00
|
|
|
if (err < 0)
|
2005-04-17 06:20:36 +08:00
|
|
|
goto err_out;
|
2008-01-24 12:33:32 +08:00
|
|
|
err = -EINVAL;
|
2008-01-23 14:11:50 +08:00
|
|
|
kind = tb[TCA_ACT_KIND];
|
2005-04-17 06:20:36 +08:00
|
|
|
if (kind == NULL)
|
|
|
|
goto err_out;
|
2008-01-23 14:11:50 +08:00
|
|
|
if (nla_strlcpy(act_name, kind, IFNAMSIZ) >= IFNAMSIZ)
|
2005-04-17 06:20:36 +08:00
|
|
|
goto err_out;
|
2017-04-20 20:08:26 +08:00
|
|
|
if (tb[TCA_ACT_COOKIE]) {
|
|
|
|
int cklen = nla_len(tb[TCA_ACT_COOKIE]);
|
|
|
|
|
|
|
|
if (cklen > TC_COOKIE_MAX_SIZE)
|
|
|
|
goto err_out;
|
|
|
|
|
|
|
|
cookie = nla_memdup_cookie(tb);
|
|
|
|
if (!cookie) {
|
|
|
|
err = -ENOMEM;
|
|
|
|
goto err_out;
|
|
|
|
}
|
|
|
|
}
|
2005-04-17 06:20:36 +08:00
|
|
|
} else {
|
2008-01-24 12:33:32 +08:00
|
|
|
err = -EINVAL;
|
2005-04-17 06:20:36 +08:00
|
|
|
if (strlcpy(act_name, name, IFNAMSIZ) >= IFNAMSIZ)
|
|
|
|
goto err_out;
|
|
|
|
}
|
|
|
|
|
|
|
|
a_o = tc_lookup_action_n(act_name);
|
|
|
|
if (a_o == NULL) {
|
2008-10-17 06:24:51 +08:00
|
|
|
#ifdef CONFIG_MODULES
|
2005-04-17 06:20:36 +08:00
|
|
|
rtnl_unlock();
|
2006-01-09 14:22:14 +08:00
|
|
|
request_module("act_%s", act_name);
|
2005-04-17 06:20:36 +08:00
|
|
|
rtnl_lock();
|
|
|
|
|
|
|
|
a_o = tc_lookup_action_n(act_name);
|
|
|
|
|
|
|
|
/* We dropped the RTNL semaphore in order to
|
|
|
|
* perform the module load. So, even if we
|
|
|
|
* succeeded in loading the module we have to
|
|
|
|
* tell the caller to replay the request. We
|
|
|
|
* indicate this using -EAGAIN.
|
|
|
|
*/
|
|
|
|
if (a_o != NULL) {
|
2008-01-24 12:33:13 +08:00
|
|
|
err = -EAGAIN;
|
2005-04-17 06:20:36 +08:00
|
|
|
goto err_mod;
|
|
|
|
}
|
|
|
|
#endif
|
2008-01-24 12:33:13 +08:00
|
|
|
err = -ENOENT;
|
2005-04-17 06:20:36 +08:00
|
|
|
goto err_out;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* backward compatibility for policer */
|
|
|
|
if (name == NULL)
|
2016-07-26 07:09:41 +08:00
|
|
|
err = a_o->init(net, tb[TCA_ACT_OPTIONS], est, &a, ovr, bind);
|
2005-04-17 06:20:36 +08:00
|
|
|
else
|
2016-07-26 07:09:41 +08:00
|
|
|
err = a_o->init(net, nla, est, &a, ovr, bind);
|
2008-01-24 12:33:13 +08:00
|
|
|
if (err < 0)
|
2016-07-26 07:09:41 +08:00
|
|
|
goto err_mod;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2017-04-20 20:08:26 +08:00
|
|
|
if (name == NULL && tb[TCA_ACT_COOKIE]) {
|
|
|
|
if (a->act_cookie) {
|
|
|
|
kfree(a->act_cookie->data);
|
|
|
|
kfree(a->act_cookie);
|
2017-01-24 20:02:41 +08:00
|
|
|
}
|
2017-04-20 20:08:26 +08:00
|
|
|
a->act_cookie = cookie;
|
2017-01-24 20:02:41 +08:00
|
|
|
}
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/* module count goes up only when brand new policy is created
|
2011-01-20 03:26:56 +08:00
|
|
|
* if it exists and is only bound to in a_o->init() then
|
|
|
|
* ACT_P_CREATED is not returned (a zero is).
|
|
|
|
*/
|
2008-01-24 12:33:13 +08:00
|
|
|
if (err != ACT_P_CREATED)
|
2005-04-17 06:20:36 +08:00
|
|
|
module_put(a_o->owner);
|
|
|
|
|
2017-05-17 17:08:03 +08:00
|
|
|
if (TC_ACT_EXT_CMP(a->tcfa_action, TC_ACT_GOTO_CHAIN)) {
|
|
|
|
err = tcf_action_goto_chain_init(a, tp);
|
|
|
|
if (err) {
|
|
|
|
LIST_HEAD(actions);
|
|
|
|
|
|
|
|
list_add_tail(&a->list, &actions);
|
|
|
|
tcf_action_destroy(&actions, bind);
|
|
|
|
return ERR_PTR(err);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
return a;
|
|
|
|
|
|
|
|
err_mod:
|
|
|
|
module_put(a_o->owner);
|
|
|
|
err_out:
|
2017-04-20 20:08:26 +08:00
|
|
|
if (cookie) {
|
|
|
|
kfree(cookie->data);
|
|
|
|
kfree(cookie);
|
|
|
|
}
|
2008-01-24 12:33:13 +08:00
|
|
|
return ERR_PTR(err);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2016-09-20 07:02:51 +08:00
|
|
|
static void cleanup_a(struct list_head *actions, int ovr)
|
|
|
|
{
|
|
|
|
struct tc_action *a;
|
|
|
|
|
|
|
|
if (!ovr)
|
|
|
|
return;
|
|
|
|
|
|
|
|
list_for_each_entry(a, actions, list)
|
|
|
|
a->tcfa_refcnt--;
|
|
|
|
}
|
|
|
|
|
2017-05-17 17:08:02 +08:00
|
|
|
int tcf_action_init(struct net *net, struct tcf_proto *tp, struct nlattr *nla,
|
|
|
|
struct nlattr *est, char *name, int ovr, int bind,
|
|
|
|
struct list_head *actions)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2011-01-20 03:26:56 +08:00
|
|
|
struct nlattr *tb[TCA_ACT_MAX_PRIO + 1];
|
2013-12-16 12:15:05 +08:00
|
|
|
struct tc_action *act;
|
2008-01-24 12:33:32 +08:00
|
|
|
int err;
|
2005-04-17 06:20:36 +08:00
|
|
|
int i;
|
|
|
|
|
2017-04-12 20:34:07 +08:00
|
|
|
err = nla_parse_nested(tb, TCA_ACT_MAX_PRIO, nla, NULL, NULL);
|
2008-01-24 12:33:32 +08:00
|
|
|
if (err < 0)
|
2013-12-16 12:15:05 +08:00
|
|
|
return err;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2008-01-23 14:11:50 +08:00
|
|
|
for (i = 1; i <= TCA_ACT_MAX_PRIO && tb[i]; i++) {
|
2017-05-17 17:08:02 +08:00
|
|
|
act = tcf_action_init_1(net, tp, tb[i], est, name, ovr, bind);
|
2013-12-16 12:15:05 +08:00
|
|
|
if (IS_ERR(act)) {
|
|
|
|
err = PTR_ERR(act);
|
2005-04-17 06:20:36 +08:00
|
|
|
goto err;
|
2013-12-16 12:15:05 +08:00
|
|
|
}
|
2008-01-23 14:11:50 +08:00
|
|
|
act->order = i;
|
2016-09-20 07:02:51 +08:00
|
|
|
if (ovr)
|
|
|
|
act->tcfa_refcnt++;
|
2013-12-16 12:15:05 +08:00
|
|
|
list_add_tail(&act->list, actions);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
2016-09-20 07:02:51 +08:00
|
|
|
|
|
|
|
/* Remove the temp refcnt which was necessary to protect against
|
|
|
|
* destroying an existing action which was being replaced
|
|
|
|
*/
|
|
|
|
cleanup_a(actions, ovr);
|
2013-12-16 12:15:05 +08:00
|
|
|
return 0;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
err:
|
2013-12-16 12:15:05 +08:00
|
|
|
tcf_action_destroy(actions, bind);
|
|
|
|
return err;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2016-07-26 07:09:42 +08:00
|
|
|
int tcf_action_copy_stats(struct sk_buff *skb, struct tc_action *p,
|
2005-04-17 06:20:36 +08:00
|
|
|
int compat_mode)
|
|
|
|
{
|
|
|
|
int err = 0;
|
|
|
|
struct gnet_dump d;
|
2007-02-09 22:25:16 +08:00
|
|
|
|
2014-01-10 08:14:05 +08:00
|
|
|
if (p == NULL)
|
2005-04-17 06:20:36 +08:00
|
|
|
goto errout;
|
|
|
|
|
|
|
|
/* compat_mode being true specifies a call that is supposed
|
2009-09-29 09:43:57 +08:00
|
|
|
* to add additional backward compatibility statistic TLVs.
|
2005-04-17 06:20:36 +08:00
|
|
|
*/
|
|
|
|
if (compat_mode) {
|
2016-07-26 07:09:42 +08:00
|
|
|
if (p->type == TCA_OLD_COMPAT)
|
2005-04-17 06:20:36 +08:00
|
|
|
err = gnet_stats_start_copy_compat(skb, 0,
|
2016-04-26 16:06:18 +08:00
|
|
|
TCA_STATS,
|
|
|
|
TCA_XSTATS,
|
2016-07-26 07:09:42 +08:00
|
|
|
&p->tcfa_lock, &d,
|
2016-04-26 16:06:18 +08:00
|
|
|
TCA_PAD);
|
2005-04-17 06:20:36 +08:00
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
} else
|
|
|
|
err = gnet_stats_start_copy(skb, TCA_ACT_STATS,
|
2016-07-26 07:09:42 +08:00
|
|
|
&p->tcfa_lock, &d, TCA_ACT_PAD);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
if (err < 0)
|
|
|
|
goto errout;
|
|
|
|
|
2016-07-26 07:09:42 +08:00
|
|
|
if (gnet_stats_copy_basic(NULL, &d, p->cpu_bstats, &p->tcfa_bstats) < 0 ||
|
2016-12-05 01:48:16 +08:00
|
|
|
gnet_stats_copy_rate_est(&d, &p->tcfa_rate_est) < 0 ||
|
2015-07-06 20:18:04 +08:00
|
|
|
gnet_stats_copy_queue(&d, p->cpu_qstats,
|
2016-07-26 07:09:42 +08:00
|
|
|
&p->tcfa_qstats,
|
|
|
|
p->tcfa_qstats.qlen) < 0)
|
2005-04-17 06:20:36 +08:00
|
|
|
goto errout;
|
|
|
|
|
|
|
|
if (gnet_stats_finish_copy(&d) < 0)
|
|
|
|
goto errout;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
errout:
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-06-05 22:41:32 +08:00
|
|
|
static int tca_get_fill(struct sk_buff *skb, struct list_head *actions,
|
|
|
|
u32 portid, u32 seq, u16 flags, int event, int bind,
|
|
|
|
int ref)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
struct tcamsg *t;
|
|
|
|
struct nlmsghdr *nlh;
|
2007-04-20 11:29:13 +08:00
|
|
|
unsigned char *b = skb_tail_pointer(skb);
|
2008-01-24 12:34:11 +08:00
|
|
|
struct nlattr *nest;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2012-09-08 04:12:54 +08:00
|
|
|
nlh = nlmsg_put(skb, portid, seq, event, sizeof(*t), flags);
|
2012-06-27 12:39:32 +08:00
|
|
|
if (!nlh)
|
|
|
|
goto out_nlmsg_trim;
|
|
|
|
t = nlmsg_data(nlh);
|
2005-04-17 06:20:36 +08:00
|
|
|
t->tca_family = AF_UNSPEC;
|
2005-06-29 03:55:30 +08:00
|
|
|
t->tca__pad1 = 0;
|
|
|
|
t->tca__pad2 = 0;
|
2007-02-09 22:25:16 +08:00
|
|
|
|
2008-01-24 12:34:11 +08:00
|
|
|
nest = nla_nest_start(skb, TCA_ACT_TAB);
|
|
|
|
if (nest == NULL)
|
2012-06-27 12:39:32 +08:00
|
|
|
goto out_nlmsg_trim;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2013-12-16 12:15:05 +08:00
|
|
|
if (tcf_action_dump(skb, actions, bind, ref) < 0)
|
2012-06-27 12:39:32 +08:00
|
|
|
goto out_nlmsg_trim;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2008-01-24 12:34:11 +08:00
|
|
|
nla_nest_end(skb, nest);
|
2007-02-09 22:25:16 +08:00
|
|
|
|
2007-04-20 11:29:13 +08:00
|
|
|
nlh->nlmsg_len = skb_tail_pointer(skb) - b;
|
2005-04-17 06:20:36 +08:00
|
|
|
return skb->len;
|
|
|
|
|
2012-06-27 12:39:32 +08:00
|
|
|
out_nlmsg_trim:
|
2007-03-26 14:06:12 +08:00
|
|
|
nlmsg_trim(skb, b);
|
2005-04-17 06:20:36 +08:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2017-07-14 01:12:18 +08:00
|
|
|
tcf_get_notify(struct net *net, u32 portid, struct nlmsghdr *n,
|
2013-12-16 12:15:05 +08:00
|
|
|
struct list_head *actions, int event)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
struct sk_buff *skb;
|
|
|
|
|
|
|
|
skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
|
|
|
|
if (!skb)
|
|
|
|
return -ENOBUFS;
|
2016-06-05 22:41:32 +08:00
|
|
|
if (tca_get_fill(skb, actions, portid, n->nlmsg_seq, 0, event,
|
|
|
|
0, 0) <= 0) {
|
2005-04-17 06:20:36 +08:00
|
|
|
kfree_skb(skb);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
2006-08-15 15:30:25 +08:00
|
|
|
|
2012-09-08 04:12:54 +08:00
|
|
|
return rtnl_unicast(skb, net, portid);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2016-02-23 07:57:53 +08:00
|
|
|
static struct tc_action *tcf_action_get_1(struct net *net, struct nlattr *nla,
|
|
|
|
struct nlmsghdr *n, u32 portid)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2011-01-20 03:26:56 +08:00
|
|
|
struct nlattr *tb[TCA_ACT_MAX + 1];
|
2016-07-26 07:09:41 +08:00
|
|
|
const struct tc_action_ops *ops;
|
2005-04-17 06:20:36 +08:00
|
|
|
struct tc_action *a;
|
|
|
|
int index;
|
2008-01-24 12:33:13 +08:00
|
|
|
int err;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2017-04-12 20:34:07 +08:00
|
|
|
err = nla_parse_nested(tb, TCA_ACT_MAX, nla, NULL, NULL);
|
2008-01-24 12:33:32 +08:00
|
|
|
if (err < 0)
|
2008-01-24 12:33:13 +08:00
|
|
|
goto err_out;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2008-01-24 12:33:32 +08:00
|
|
|
err = -EINVAL;
|
2008-01-23 14:11:50 +08:00
|
|
|
if (tb[TCA_ACT_INDEX] == NULL ||
|
|
|
|
nla_len(tb[TCA_ACT_INDEX]) < sizeof(index))
|
2008-01-24 12:33:13 +08:00
|
|
|
goto err_out;
|
2008-01-24 12:35:03 +08:00
|
|
|
index = nla_get_u32(tb[TCA_ACT_INDEX]);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2008-01-24 12:33:13 +08:00
|
|
|
err = -EINVAL;
|
2016-07-26 07:09:41 +08:00
|
|
|
ops = tc_lookup_action(tb[TCA_ACT_KIND]);
|
|
|
|
if (!ops) /* could happen in batch of actions */
|
|
|
|
goto err_out;
|
2008-01-24 12:33:13 +08:00
|
|
|
err = -ENOENT;
|
2016-07-26 07:09:41 +08:00
|
|
|
if (ops->lookup(net, &a, index) == 0)
|
2005-04-17 06:20:36 +08:00
|
|
|
goto err_mod;
|
|
|
|
|
2016-07-26 07:09:41 +08:00
|
|
|
module_put(ops->owner);
|
2005-04-17 06:20:36 +08:00
|
|
|
return a;
|
2008-01-24 12:33:13 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
err_mod:
|
2016-07-26 07:09:41 +08:00
|
|
|
module_put(ops->owner);
|
2008-01-24 12:33:13 +08:00
|
|
|
err_out:
|
|
|
|
return ERR_PTR(err);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2010-03-19 23:40:13 +08:00
|
|
|
static int tca_action_flush(struct net *net, struct nlattr *nla,
|
2012-09-08 04:12:54 +08:00
|
|
|
struct nlmsghdr *n, u32 portid)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
struct sk_buff *skb;
|
|
|
|
unsigned char *b;
|
|
|
|
struct nlmsghdr *nlh;
|
|
|
|
struct tcamsg *t;
|
|
|
|
struct netlink_callback dcb;
|
2008-01-24 12:34:11 +08:00
|
|
|
struct nlattr *nest;
|
2011-01-20 03:26:56 +08:00
|
|
|
struct nlattr *tb[TCA_ACT_MAX + 1];
|
2016-07-26 07:09:41 +08:00
|
|
|
const struct tc_action_ops *ops;
|
2008-01-23 14:11:50 +08:00
|
|
|
struct nlattr *kind;
|
2008-08-13 17:41:45 +08:00
|
|
|
int err = -ENOMEM;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
|
|
|
|
if (!skb) {
|
2010-05-12 14:37:05 +08:00
|
|
|
pr_debug("tca_action_flush: failed skb alloc\n");
|
2008-08-13 17:41:45 +08:00
|
|
|
return err;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2007-04-20 11:29:13 +08:00
|
|
|
b = skb_tail_pointer(skb);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2017-04-12 20:34:07 +08:00
|
|
|
err = nla_parse_nested(tb, TCA_ACT_MAX, nla, NULL, NULL);
|
2008-01-24 12:33:32 +08:00
|
|
|
if (err < 0)
|
2005-04-17 06:20:36 +08:00
|
|
|
goto err_out;
|
|
|
|
|
2008-01-24 12:33:32 +08:00
|
|
|
err = -EINVAL;
|
2008-01-23 14:11:50 +08:00
|
|
|
kind = tb[TCA_ACT_KIND];
|
2016-07-26 07:09:41 +08:00
|
|
|
ops = tc_lookup_action(kind);
|
|
|
|
if (!ops) /*some idjot trying to flush unknown action */
|
2005-04-17 06:20:36 +08:00
|
|
|
goto err_out;
|
|
|
|
|
2016-06-05 22:41:32 +08:00
|
|
|
nlh = nlmsg_put(skb, portid, n->nlmsg_seq, RTM_DELACTION,
|
|
|
|
sizeof(*t), 0);
|
2012-06-27 12:39:32 +08:00
|
|
|
if (!nlh)
|
|
|
|
goto out_module_put;
|
|
|
|
t = nlmsg_data(nlh);
|
2005-04-17 06:20:36 +08:00
|
|
|
t->tca_family = AF_UNSPEC;
|
2005-06-29 03:55:30 +08:00
|
|
|
t->tca__pad1 = 0;
|
|
|
|
t->tca__pad2 = 0;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2008-01-24 12:34:11 +08:00
|
|
|
nest = nla_nest_start(skb, TCA_ACT_TAB);
|
|
|
|
if (nest == NULL)
|
2012-06-27 12:39:32 +08:00
|
|
|
goto out_module_put;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2016-07-26 07:09:41 +08:00
|
|
|
err = ops->walk(net, skb, &dcb, RTM_DELACTION, ops);
|
2017-02-25 00:00:32 +08:00
|
|
|
if (err <= 0)
|
2012-06-27 12:39:32 +08:00
|
|
|
goto out_module_put;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2008-01-24 12:34:11 +08:00
|
|
|
nla_nest_end(skb, nest);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2007-04-20 11:29:13 +08:00
|
|
|
nlh->nlmsg_len = skb_tail_pointer(skb) - b;
|
2005-04-17 06:20:36 +08:00
|
|
|
nlh->nlmsg_flags |= NLM_F_ROOT;
|
2016-07-26 07:09:41 +08:00
|
|
|
module_put(ops->owner);
|
2012-09-08 04:12:54 +08:00
|
|
|
err = rtnetlink_send(skb, net, portid, RTNLGRP_TC,
|
2011-01-20 03:26:56 +08:00
|
|
|
n->nlmsg_flags & NLM_F_ECHO);
|
2005-04-17 06:20:36 +08:00
|
|
|
if (err > 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return err;
|
|
|
|
|
2012-06-27 12:39:32 +08:00
|
|
|
out_module_put:
|
2016-07-26 07:09:41 +08:00
|
|
|
module_put(ops->owner);
|
2005-04-17 06:20:36 +08:00
|
|
|
err_out:
|
|
|
|
kfree_skb(skb);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2014-01-10 08:14:00 +08:00
|
|
|
static int
|
|
|
|
tcf_del_notify(struct net *net, struct nlmsghdr *n, struct list_head *actions,
|
|
|
|
u32 portid)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
struct sk_buff *skb;
|
|
|
|
|
|
|
|
skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
|
|
|
|
if (!skb)
|
|
|
|
return -ENOBUFS;
|
|
|
|
|
|
|
|
if (tca_get_fill(skb, actions, portid, n->nlmsg_seq, 0, RTM_DELACTION,
|
|
|
|
0, 1) <= 0) {
|
|
|
|
kfree_skb(skb);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* now do the delete */
|
2014-02-12 09:07:34 +08:00
|
|
|
ret = tcf_action_destroy(actions, 0);
|
|
|
|
if (ret < 0) {
|
|
|
|
kfree_skb(skb);
|
|
|
|
return ret;
|
|
|
|
}
|
2014-01-10 08:14:00 +08:00
|
|
|
|
|
|
|
ret = rtnetlink_send(skb, net, portid, RTNLGRP_TC,
|
|
|
|
n->nlmsg_flags & NLM_F_ECHO);
|
|
|
|
if (ret > 0)
|
|
|
|
return 0;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
static int
|
2010-03-19 23:40:13 +08:00
|
|
|
tca_action_gd(struct net *net, struct nlattr *nla, struct nlmsghdr *n,
|
2012-09-08 04:12:54 +08:00
|
|
|
u32 portid, int event)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2008-01-24 12:33:32 +08:00
|
|
|
int i, ret;
|
2011-01-20 03:26:56 +08:00
|
|
|
struct nlattr *tb[TCA_ACT_MAX_PRIO + 1];
|
2013-12-16 12:15:05 +08:00
|
|
|
struct tc_action *act;
|
|
|
|
LIST_HEAD(actions);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2017-04-12 20:34:07 +08:00
|
|
|
ret = nla_parse_nested(tb, TCA_ACT_MAX_PRIO, nla, NULL, NULL);
|
2008-01-24 12:33:32 +08:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2011-01-20 03:26:56 +08:00
|
|
|
if (event == RTM_DELACTION && n->nlmsg_flags & NLM_F_ROOT) {
|
2008-08-13 17:41:22 +08:00
|
|
|
if (tb[1] != NULL)
|
2012-09-08 04:12:54 +08:00
|
|
|
return tca_action_flush(net, tb[1], n, portid);
|
2008-08-13 17:41:22 +08:00
|
|
|
else
|
|
|
|
return -EINVAL;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2008-01-23 14:11:50 +08:00
|
|
|
for (i = 1; i <= TCA_ACT_MAX_PRIO && tb[i]; i++) {
|
2016-02-23 07:57:53 +08:00
|
|
|
act = tcf_action_get_1(net, tb[i], n, portid);
|
2008-01-24 12:33:13 +08:00
|
|
|
if (IS_ERR(act)) {
|
|
|
|
ret = PTR_ERR(act);
|
2005-04-17 06:20:36 +08:00
|
|
|
goto err;
|
2008-01-24 12:33:13 +08:00
|
|
|
}
|
2008-01-23 14:11:50 +08:00
|
|
|
act->order = i;
|
2013-12-16 12:15:05 +08:00
|
|
|
list_add_tail(&act->list, &actions);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (event == RTM_GETACTION)
|
2017-07-14 01:12:18 +08:00
|
|
|
ret = tcf_get_notify(net, portid, n, &actions, event);
|
2005-04-17 06:20:36 +08:00
|
|
|
else { /* delete */
|
2014-01-10 08:14:00 +08:00
|
|
|
ret = tcf_del_notify(net, n, &actions, portid);
|
|
|
|
if (ret)
|
2005-04-17 06:20:36 +08:00
|
|
|
goto err;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
err:
|
2017-01-15 23:14:06 +08:00
|
|
|
if (event != RTM_GETACTION)
|
|
|
|
tcf_action_destroy(&actions, 0);
|
2005-04-17 06:20:36 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-01-10 08:14:00 +08:00
|
|
|
static int
|
|
|
|
tcf_add_notify(struct net *net, struct nlmsghdr *n, struct list_head *actions,
|
|
|
|
u32 portid)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
struct sk_buff *skb;
|
|
|
|
int err = 0;
|
|
|
|
|
|
|
|
skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
|
|
|
|
if (!skb)
|
|
|
|
return -ENOBUFS;
|
|
|
|
|
2014-01-10 08:14:00 +08:00
|
|
|
if (tca_get_fill(skb, actions, portid, n->nlmsg_seq, n->nlmsg_flags,
|
|
|
|
RTM_NEWACTION, 0, 0) <= 0) {
|
|
|
|
kfree_skb(skb);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
2007-02-09 22:25:16 +08:00
|
|
|
|
2014-01-10 08:14:00 +08:00
|
|
|
err = rtnetlink_send(skb, net, portid, RTNLGRP_TC,
|
|
|
|
n->nlmsg_flags & NLM_F_ECHO);
|
2005-04-17 06:20:36 +08:00
|
|
|
if (err > 0)
|
|
|
|
err = 0;
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2016-09-18 20:45:33 +08:00
|
|
|
static int tcf_action_add(struct net *net, struct nlattr *nla,
|
|
|
|
struct nlmsghdr *n, u32 portid, int ovr)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
int ret = 0;
|
2013-12-16 12:15:05 +08:00
|
|
|
LIST_HEAD(actions);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2017-05-17 17:08:02 +08:00
|
|
|
ret = tcf_action_init(net, NULL, nla, NULL, NULL, ovr, 0, &actions);
|
2013-12-16 12:15:05 +08:00
|
|
|
if (ret)
|
2016-08-14 13:34:56 +08:00
|
|
|
return ret;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2016-08-14 13:34:56 +08:00
|
|
|
return tcf_add_notify(net, n, &actions, portid);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2017-07-31 01:24:51 +08:00
|
|
|
static u32 tcaa_root_flags_allowed = TCA_FLAG_LARGE_DUMP_ON;
|
|
|
|
static const struct nla_policy tcaa_policy[TCA_ROOT_MAX + 1] = {
|
|
|
|
[TCA_ROOT_FLAGS] = { .type = NLA_BITFIELD32,
|
|
|
|
.validation_data = &tcaa_root_flags_allowed },
|
2017-07-31 01:24:52 +08:00
|
|
|
[TCA_ROOT_TIME_DELTA] = { .type = NLA_U32 },
|
2017-07-31 01:24:51 +08:00
|
|
|
};
|
|
|
|
|
2017-04-17 00:48:24 +08:00
|
|
|
static int tc_ctl_action(struct sk_buff *skb, struct nlmsghdr *n,
|
|
|
|
struct netlink_ext_ack *extack)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2008-03-26 01:26:21 +08:00
|
|
|
struct net *net = sock_net(skb->sk);
|
2017-07-31 01:24:51 +08:00
|
|
|
struct nlattr *tca[TCA_ROOT_MAX + 1];
|
2012-09-08 04:12:54 +08:00
|
|
|
u32 portid = skb ? NETLINK_CB(skb).portid : 0;
|
2005-04-17 06:20:36 +08:00
|
|
|
int ret = 0, ovr = 0;
|
|
|
|
|
2016-06-05 22:41:32 +08:00
|
|
|
if ((n->nlmsg_type != RTM_GETACTION) &&
|
|
|
|
!netlink_capable(skb, CAP_NET_ADMIN))
|
2012-11-16 11:03:00 +08:00
|
|
|
return -EPERM;
|
|
|
|
|
2017-07-31 01:24:51 +08:00
|
|
|
ret = nlmsg_parse(n, sizeof(struct tcamsg), tca, TCA_ROOT_MAX, NULL,
|
2017-04-17 00:48:24 +08:00
|
|
|
extack);
|
2008-01-23 14:11:50 +08:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
if (tca[TCA_ACT_TAB] == NULL) {
|
2010-05-12 14:37:05 +08:00
|
|
|
pr_notice("tc_ctl_action: received NO action attribs\n");
|
2005-04-17 06:20:36 +08:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2011-01-20 03:26:56 +08:00
|
|
|
/* n->nlmsg_flags & NLM_F_CREATE */
|
2005-04-17 06:20:36 +08:00
|
|
|
switch (n->nlmsg_type) {
|
|
|
|
case RTM_NEWACTION:
|
|
|
|
/* we are going to assume all other flags
|
2011-03-31 09:57:33 +08:00
|
|
|
* imply create only if it doesn't exist
|
2005-04-17 06:20:36 +08:00
|
|
|
* Note that CREATE | EXCL implies that
|
|
|
|
* but since we want avoid ambiguity (eg when flags
|
|
|
|
* is zero) then just set this
|
|
|
|
*/
|
2011-01-20 03:26:56 +08:00
|
|
|
if (n->nlmsg_flags & NLM_F_REPLACE)
|
2005-04-17 06:20:36 +08:00
|
|
|
ovr = 1;
|
|
|
|
replay:
|
2012-09-08 04:12:54 +08:00
|
|
|
ret = tcf_action_add(net, tca[TCA_ACT_TAB], n, portid, ovr);
|
2005-04-17 06:20:36 +08:00
|
|
|
if (ret == -EAGAIN)
|
|
|
|
goto replay;
|
|
|
|
break;
|
|
|
|
case RTM_DELACTION:
|
2010-03-19 23:40:13 +08:00
|
|
|
ret = tca_action_gd(net, tca[TCA_ACT_TAB], n,
|
2012-09-08 04:12:54 +08:00
|
|
|
portid, RTM_DELACTION);
|
2005-04-17 06:20:36 +08:00
|
|
|
break;
|
|
|
|
case RTM_GETACTION:
|
2010-03-19 23:40:13 +08:00
|
|
|
ret = tca_action_gd(net, tca[TCA_ACT_TAB], n,
|
2012-09-08 04:12:54 +08:00
|
|
|
portid, RTM_GETACTION);
|
2005-04-17 06:20:36 +08:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
BUG();
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2017-07-31 01:24:51 +08:00
|
|
|
static struct nlattr *find_dump_kind(struct nlattr **nla)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2011-01-20 03:26:56 +08:00
|
|
|
struct nlattr *tb1, *tb2[TCA_ACT_MAX + 1];
|
2008-01-23 14:11:50 +08:00
|
|
|
struct nlattr *tb[TCA_ACT_MAX_PRIO + 1];
|
|
|
|
struct nlattr *kind;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2008-01-23 14:11:50 +08:00
|
|
|
tb1 = nla[TCA_ACT_TAB];
|
2005-04-17 06:20:36 +08:00
|
|
|
if (tb1 == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2008-01-23 14:11:50 +08:00
|
|
|
if (nla_parse(tb, TCA_ACT_MAX_PRIO, nla_data(tb1),
|
2017-04-12 20:34:07 +08:00
|
|
|
NLMSG_ALIGN(nla_len(tb1)), NULL, NULL) < 0)
|
2005-04-17 06:20:36 +08:00
|
|
|
return NULL;
|
|
|
|
|
2008-01-24 12:32:42 +08:00
|
|
|
if (tb[1] == NULL)
|
|
|
|
return NULL;
|
2017-04-12 20:34:07 +08:00
|
|
|
if (nla_parse_nested(tb2, TCA_ACT_MAX, tb[1], NULL, NULL) < 0)
|
2005-04-17 06:20:36 +08:00
|
|
|
return NULL;
|
2008-01-23 14:11:50 +08:00
|
|
|
kind = tb2[TCA_ACT_KIND];
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2006-07-06 11:45:06 +08:00
|
|
|
return kind;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2016-09-18 20:45:33 +08:00
|
|
|
static int tc_dump_action(struct sk_buff *skb, struct netlink_callback *cb)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2016-02-23 07:57:53 +08:00
|
|
|
struct net *net = sock_net(skb->sk);
|
2005-04-17 06:20:36 +08:00
|
|
|
struct nlmsghdr *nlh;
|
2007-04-20 11:29:13 +08:00
|
|
|
unsigned char *b = skb_tail_pointer(skb);
|
2008-01-24 12:34:11 +08:00
|
|
|
struct nlattr *nest;
|
2005-04-17 06:20:36 +08:00
|
|
|
struct tc_action_ops *a_o;
|
|
|
|
int ret = 0;
|
2012-06-27 12:39:32 +08:00
|
|
|
struct tcamsg *t = (struct tcamsg *) nlmsg_data(cb->nlh);
|
2017-07-31 01:24:51 +08:00
|
|
|
struct nlattr *tb[TCA_ROOT_MAX + 1];
|
|
|
|
struct nlattr *count_attr = NULL;
|
2017-07-31 01:24:52 +08:00
|
|
|
unsigned long jiffy_since = 0;
|
2017-07-31 01:24:51 +08:00
|
|
|
struct nlattr *kind = NULL;
|
|
|
|
struct nla_bitfield32 bf;
|
2017-07-31 01:24:52 +08:00
|
|
|
u32 msecs_since = 0;
|
2017-07-31 01:24:51 +08:00
|
|
|
u32 act_count = 0;
|
|
|
|
|
|
|
|
ret = nlmsg_parse(cb->nlh, sizeof(struct tcamsg), tb, TCA_ROOT_MAX,
|
|
|
|
tcaa_policy, NULL);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2017-07-31 01:24:51 +08:00
|
|
|
kind = find_dump_kind(tb);
|
2005-04-17 06:20:36 +08:00
|
|
|
if (kind == NULL) {
|
2010-05-12 14:37:05 +08:00
|
|
|
pr_info("tc_dump_action: action bad kind\n");
|
2005-04-17 06:20:36 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-07-06 11:45:06 +08:00
|
|
|
a_o = tc_lookup_action(kind);
|
2011-01-20 03:26:56 +08:00
|
|
|
if (a_o == NULL)
|
2005-04-17 06:20:36 +08:00
|
|
|
return 0;
|
|
|
|
|
2017-07-31 01:24:51 +08:00
|
|
|
cb->args[2] = 0;
|
|
|
|
if (tb[TCA_ROOT_FLAGS]) {
|
|
|
|
bf = nla_get_bitfield32(tb[TCA_ROOT_FLAGS]);
|
|
|
|
cb->args[2] = bf.value;
|
|
|
|
}
|
|
|
|
|
2017-07-31 01:24:52 +08:00
|
|
|
if (tb[TCA_ROOT_TIME_DELTA]) {
|
|
|
|
msecs_since = nla_get_u32(tb[TCA_ROOT_TIME_DELTA]);
|
|
|
|
}
|
|
|
|
|
2012-09-08 04:12:54 +08:00
|
|
|
nlh = nlmsg_put(skb, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq,
|
2012-06-27 12:39:32 +08:00
|
|
|
cb->nlh->nlmsg_type, sizeof(*t), 0);
|
|
|
|
if (!nlh)
|
|
|
|
goto out_module_put;
|
2017-07-31 01:24:51 +08:00
|
|
|
|
2017-07-31 01:24:52 +08:00
|
|
|
if (msecs_since)
|
|
|
|
jiffy_since = jiffies - msecs_to_jiffies(msecs_since);
|
|
|
|
|
2012-06-27 12:39:32 +08:00
|
|
|
t = nlmsg_data(nlh);
|
2005-04-17 06:20:36 +08:00
|
|
|
t->tca_family = AF_UNSPEC;
|
2005-06-29 03:55:30 +08:00
|
|
|
t->tca__pad1 = 0;
|
|
|
|
t->tca__pad2 = 0;
|
2017-07-31 01:24:52 +08:00
|
|
|
cb->args[3] = jiffy_since;
|
2017-07-31 01:24:51 +08:00
|
|
|
count_attr = nla_reserve(skb, TCA_ROOT_COUNT, sizeof(u32));
|
|
|
|
if (!count_attr)
|
|
|
|
goto out_module_put;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2008-01-24 12:34:11 +08:00
|
|
|
nest = nla_nest_start(skb, TCA_ACT_TAB);
|
|
|
|
if (nest == NULL)
|
2012-06-27 12:39:32 +08:00
|
|
|
goto out_module_put;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2016-07-26 07:09:41 +08:00
|
|
|
ret = a_o->walk(net, skb, cb, RTM_GETACTION, a_o);
|
2005-04-17 06:20:36 +08:00
|
|
|
if (ret < 0)
|
2012-06-27 12:39:32 +08:00
|
|
|
goto out_module_put;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
if (ret > 0) {
|
2008-01-24 12:34:11 +08:00
|
|
|
nla_nest_end(skb, nest);
|
2005-04-17 06:20:36 +08:00
|
|
|
ret = skb->len;
|
2017-07-31 01:24:51 +08:00
|
|
|
act_count = cb->args[1];
|
|
|
|
memcpy(nla_data(count_attr), &act_count, sizeof(u32));
|
|
|
|
cb->args[1] = 0;
|
2005-04-17 06:20:36 +08:00
|
|
|
} else
|
2016-06-14 06:08:42 +08:00
|
|
|
nlmsg_trim(skb, b);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2007-04-20 11:29:13 +08:00
|
|
|
nlh->nlmsg_len = skb_tail_pointer(skb) - b;
|
2012-09-08 04:12:54 +08:00
|
|
|
if (NETLINK_CB(cb->skb).portid && ret)
|
2005-04-17 06:20:36 +08:00
|
|
|
nlh->nlmsg_flags |= NLM_F_MULTI;
|
|
|
|
module_put(a_o->owner);
|
|
|
|
return skb->len;
|
|
|
|
|
2012-06-27 12:39:32 +08:00
|
|
|
out_module_put:
|
2005-04-17 06:20:36 +08:00
|
|
|
module_put(a_o->owner);
|
2007-03-26 14:06:12 +08:00
|
|
|
nlmsg_trim(skb, b);
|
2005-04-17 06:20:36 +08:00
|
|
|
return skb->len;
|
|
|
|
}
|
|
|
|
|
2017-10-11 15:41:08 +08:00
|
|
|
struct tcf_action_net {
|
|
|
|
struct rhashtable egdev_ht;
|
|
|
|
};
|
|
|
|
|
|
|
|
static unsigned int tcf_action_net_id;
|
|
|
|
|
|
|
|
struct tcf_action_egdev_cb {
|
|
|
|
struct list_head list;
|
|
|
|
tc_setup_cb_t *cb;
|
|
|
|
void *cb_priv;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct tcf_action_egdev {
|
|
|
|
struct rhash_head ht_node;
|
|
|
|
const struct net_device *dev;
|
|
|
|
unsigned int refcnt;
|
|
|
|
struct list_head cb_list;
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct rhashtable_params tcf_action_egdev_ht_params = {
|
|
|
|
.key_offset = offsetof(struct tcf_action_egdev, dev),
|
|
|
|
.head_offset = offsetof(struct tcf_action_egdev, ht_node),
|
|
|
|
.key_len = sizeof(const struct net_device *),
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct tcf_action_egdev *
|
|
|
|
tcf_action_egdev_lookup(const struct net_device *dev)
|
|
|
|
{
|
|
|
|
struct net *net = dev_net(dev);
|
|
|
|
struct tcf_action_net *tan = net_generic(net, tcf_action_net_id);
|
|
|
|
|
|
|
|
return rhashtable_lookup_fast(&tan->egdev_ht, &dev,
|
|
|
|
tcf_action_egdev_ht_params);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct tcf_action_egdev *
|
|
|
|
tcf_action_egdev_get(const struct net_device *dev)
|
|
|
|
{
|
|
|
|
struct tcf_action_egdev *egdev;
|
|
|
|
struct tcf_action_net *tan;
|
|
|
|
|
|
|
|
egdev = tcf_action_egdev_lookup(dev);
|
|
|
|
if (egdev)
|
|
|
|
goto inc_ref;
|
|
|
|
|
|
|
|
egdev = kzalloc(sizeof(*egdev), GFP_KERNEL);
|
|
|
|
if (!egdev)
|
|
|
|
return NULL;
|
|
|
|
INIT_LIST_HEAD(&egdev->cb_list);
|
2017-10-18 23:38:08 +08:00
|
|
|
egdev->dev = dev;
|
2017-10-11 15:41:08 +08:00
|
|
|
tan = net_generic(dev_net(dev), tcf_action_net_id);
|
|
|
|
rhashtable_insert_fast(&tan->egdev_ht, &egdev->ht_node,
|
|
|
|
tcf_action_egdev_ht_params);
|
|
|
|
|
|
|
|
inc_ref:
|
|
|
|
egdev->refcnt++;
|
|
|
|
return egdev;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void tcf_action_egdev_put(struct tcf_action_egdev *egdev)
|
|
|
|
{
|
|
|
|
struct tcf_action_net *tan;
|
|
|
|
|
|
|
|
if (--egdev->refcnt)
|
|
|
|
return;
|
|
|
|
tan = net_generic(dev_net(egdev->dev), tcf_action_net_id);
|
|
|
|
rhashtable_remove_fast(&tan->egdev_ht, &egdev->ht_node,
|
|
|
|
tcf_action_egdev_ht_params);
|
|
|
|
kfree(egdev);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct tcf_action_egdev_cb *
|
|
|
|
tcf_action_egdev_cb_lookup(struct tcf_action_egdev *egdev,
|
|
|
|
tc_setup_cb_t *cb, void *cb_priv)
|
|
|
|
{
|
|
|
|
struct tcf_action_egdev_cb *egdev_cb;
|
|
|
|
|
|
|
|
list_for_each_entry(egdev_cb, &egdev->cb_list, list)
|
|
|
|
if (egdev_cb->cb == cb && egdev_cb->cb_priv == cb_priv)
|
|
|
|
return egdev_cb;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int tcf_action_egdev_cb_call(struct tcf_action_egdev *egdev,
|
|
|
|
enum tc_setup_type type,
|
|
|
|
void *type_data, bool err_stop)
|
|
|
|
{
|
|
|
|
struct tcf_action_egdev_cb *egdev_cb;
|
|
|
|
int ok_count = 0;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
list_for_each_entry(egdev_cb, &egdev->cb_list, list) {
|
|
|
|
err = egdev_cb->cb(type, type_data, egdev_cb->cb_priv);
|
|
|
|
if (err) {
|
|
|
|
if (err_stop)
|
|
|
|
return err;
|
|
|
|
} else {
|
|
|
|
ok_count++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ok_count;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int tcf_action_egdev_cb_add(struct tcf_action_egdev *egdev,
|
|
|
|
tc_setup_cb_t *cb, void *cb_priv)
|
|
|
|
{
|
|
|
|
struct tcf_action_egdev_cb *egdev_cb;
|
|
|
|
|
|
|
|
egdev_cb = tcf_action_egdev_cb_lookup(egdev, cb, cb_priv);
|
|
|
|
if (WARN_ON(egdev_cb))
|
|
|
|
return -EEXIST;
|
|
|
|
egdev_cb = kzalloc(sizeof(*egdev_cb), GFP_KERNEL);
|
|
|
|
if (!egdev_cb)
|
|
|
|
return -ENOMEM;
|
|
|
|
egdev_cb->cb = cb;
|
|
|
|
egdev_cb->cb_priv = cb_priv;
|
|
|
|
list_add(&egdev_cb->list, &egdev->cb_list);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void tcf_action_egdev_cb_del(struct tcf_action_egdev *egdev,
|
|
|
|
tc_setup_cb_t *cb, void *cb_priv)
|
|
|
|
{
|
|
|
|
struct tcf_action_egdev_cb *egdev_cb;
|
|
|
|
|
|
|
|
egdev_cb = tcf_action_egdev_cb_lookup(egdev, cb, cb_priv);
|
|
|
|
if (WARN_ON(!egdev_cb))
|
|
|
|
return;
|
|
|
|
list_del(&egdev_cb->list);
|
|
|
|
kfree(egdev_cb);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int __tc_setup_cb_egdev_register(const struct net_device *dev,
|
|
|
|
tc_setup_cb_t *cb, void *cb_priv)
|
|
|
|
{
|
|
|
|
struct tcf_action_egdev *egdev = tcf_action_egdev_get(dev);
|
|
|
|
int err;
|
|
|
|
|
|
|
|
if (!egdev)
|
|
|
|
return -ENOMEM;
|
|
|
|
err = tcf_action_egdev_cb_add(egdev, cb, cb_priv);
|
|
|
|
if (err)
|
|
|
|
goto err_cb_add;
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
err_cb_add:
|
|
|
|
tcf_action_egdev_put(egdev);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
int tc_setup_cb_egdev_register(const struct net_device *dev,
|
|
|
|
tc_setup_cb_t *cb, void *cb_priv)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
|
|
|
|
rtnl_lock();
|
|
|
|
err = __tc_setup_cb_egdev_register(dev, cb, cb_priv);
|
|
|
|
rtnl_unlock();
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(tc_setup_cb_egdev_register);
|
|
|
|
|
|
|
|
static void __tc_setup_cb_egdev_unregister(const struct net_device *dev,
|
|
|
|
tc_setup_cb_t *cb, void *cb_priv)
|
|
|
|
{
|
|
|
|
struct tcf_action_egdev *egdev = tcf_action_egdev_lookup(dev);
|
|
|
|
|
|
|
|
if (WARN_ON(!egdev))
|
|
|
|
return;
|
|
|
|
tcf_action_egdev_cb_del(egdev, cb, cb_priv);
|
|
|
|
tcf_action_egdev_put(egdev);
|
|
|
|
}
|
|
|
|
void tc_setup_cb_egdev_unregister(const struct net_device *dev,
|
|
|
|
tc_setup_cb_t *cb, void *cb_priv)
|
|
|
|
{
|
|
|
|
rtnl_lock();
|
|
|
|
__tc_setup_cb_egdev_unregister(dev, cb, cb_priv);
|
|
|
|
rtnl_unlock();
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(tc_setup_cb_egdev_unregister);
|
|
|
|
|
|
|
|
int tc_setup_cb_egdev_call(const struct net_device *dev,
|
|
|
|
enum tc_setup_type type, void *type_data,
|
|
|
|
bool err_stop)
|
|
|
|
{
|
|
|
|
struct tcf_action_egdev *egdev = tcf_action_egdev_lookup(dev);
|
|
|
|
|
|
|
|
if (!egdev)
|
|
|
|
return 0;
|
|
|
|
return tcf_action_egdev_cb_call(egdev, type, type_data, err_stop);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(tc_setup_cb_egdev_call);
|
|
|
|
|
|
|
|
static __net_init int tcf_action_net_init(struct net *net)
|
|
|
|
{
|
|
|
|
struct tcf_action_net *tan = net_generic(net, tcf_action_net_id);
|
|
|
|
|
|
|
|
return rhashtable_init(&tan->egdev_ht, &tcf_action_egdev_ht_params);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __net_exit tcf_action_net_exit(struct net *net)
|
|
|
|
{
|
|
|
|
struct tcf_action_net *tan = net_generic(net, tcf_action_net_id);
|
|
|
|
|
|
|
|
rhashtable_destroy(&tan->egdev_ht);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct pernet_operations tcf_action_net_ops = {
|
|
|
|
.init = tcf_action_net_init,
|
|
|
|
.exit = tcf_action_net_exit,
|
|
|
|
.id = &tcf_action_net_id,
|
|
|
|
.size = sizeof(struct tcf_action_net),
|
|
|
|
};
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
static int __init tc_action_init(void)
|
|
|
|
{
|
2017-10-11 15:41:08 +08:00
|
|
|
int err;
|
|
|
|
|
|
|
|
err = register_pernet_subsys(&tcf_action_net_ops);
|
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
2017-08-10 02:41:48 +08:00
|
|
|
rtnl_register(PF_UNSPEC, RTM_NEWACTION, tc_ctl_action, NULL, 0);
|
|
|
|
rtnl_register(PF_UNSPEC, RTM_DELACTION, tc_ctl_action, NULL, 0);
|
2011-06-10 09:27:09 +08:00
|
|
|
rtnl_register(PF_UNSPEC, RTM_GETACTION, tc_ctl_action, tc_dump_action,
|
2017-08-10 02:41:48 +08:00
|
|
|
0);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
subsys_initcall(tc_action_init);
|