License cleanup: add SPDX GPL-2.0 license identifier to files with no license
Many source files in the tree are missing licensing information, which
makes it harder for compliance tools to determine the correct license.
By default all files without license information are under the default
license of the kernel, which is GPL version 2.
Update the files which contain no license information with the 'GPL-2.0'
SPDX license identifier. The SPDX identifier is a legally binding
shorthand, which can be used instead of the full boiler plate text.
This patch is based on work done by Thomas Gleixner and Kate Stewart and
Philippe Ombredanne.
How this work was done:
Patches were generated and checked against linux-4.14-rc6 for a subset of
the use cases:
- file had no licensing information it it.
- file was a */uapi/* one with no licensing information in it,
- file was a */uapi/* one with existing licensing information,
Further patches will be generated in subsequent months to fix up cases
where non-standard license headers were used, and references to license
had to be inferred by heuristics based on keywords.
The analysis to determine which SPDX License Identifier to be applied to
a file was done in a spreadsheet of side by side results from of the
output of two independent scanners (ScanCode & Windriver) producing SPDX
tag:value files created by Philippe Ombredanne. Philippe prepared the
base worksheet, and did an initial spot review of a few 1000 files.
The 4.13 kernel was the starting point of the analysis with 60,537 files
assessed. Kate Stewart did a file by file comparison of the scanner
results in the spreadsheet to determine which SPDX license identifier(s)
to be applied to the file. She confirmed any determination that was not
immediately clear with lawyers working with the Linux Foundation.
Criteria used to select files for SPDX license identifier tagging was:
- Files considered eligible had to be source code files.
- Make and config files were included as candidates if they contained >5
lines of source
- File already had some variant of a license header in it (even if <5
lines).
All documentation files were explicitly excluded.
The following heuristics were used to determine which SPDX license
identifiers to apply.
- when both scanners couldn't find any license traces, file was
considered to have no license information in it, and the top level
COPYING file license applied.
For non */uapi/* files that summary was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 11139
and resulted in the first patch in this series.
If that file was a */uapi/* path one, it was "GPL-2.0 WITH
Linux-syscall-note" otherwise it was "GPL-2.0". Results of that was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 WITH Linux-syscall-note 930
and resulted in the second patch in this series.
- if a file had some form of licensing information in it, and was one
of the */uapi/* ones, it was denoted with the Linux-syscall-note if
any GPL family license was found in the file or had no licensing in
it (per prior point). Results summary:
SPDX license identifier # files
---------------------------------------------------|------
GPL-2.0 WITH Linux-syscall-note 270
GPL-2.0+ WITH Linux-syscall-note 169
((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause) 21
((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) 17
LGPL-2.1+ WITH Linux-syscall-note 15
GPL-1.0+ WITH Linux-syscall-note 14
((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause) 5
LGPL-2.0+ WITH Linux-syscall-note 4
LGPL-2.1 WITH Linux-syscall-note 3
((GPL-2.0 WITH Linux-syscall-note) OR MIT) 3
((GPL-2.0 WITH Linux-syscall-note) AND MIT) 1
and that resulted in the third patch in this series.
- when the two scanners agreed on the detected license(s), that became
the concluded license(s).
- when there was disagreement between the two scanners (one detected a
license but the other didn't, or they both detected different
licenses) a manual inspection of the file occurred.
- In most cases a manual inspection of the information in the file
resulted in a clear resolution of the license that should apply (and
which scanner probably needed to revisit its heuristics).
- When it was not immediately clear, the license identifier was
confirmed with lawyers working with the Linux Foundation.
- If there was any question as to the appropriate license identifier,
the file was flagged for further research and to be revisited later
in time.
In total, over 70 hours of logged manual review was done on the
spreadsheet to determine the SPDX license identifiers to apply to the
source files by Kate, Philippe, Thomas and, in some cases, confirmation
by lawyers working with the Linux Foundation.
Kate also obtained a third independent scan of the 4.13 code base from
FOSSology, and compared selected files where the other two scanners
disagreed against that SPDX file, to see if there was new insights. The
Windriver scanner is based on an older version of FOSSology in part, so
they are related.
Thomas did random spot checks in about 500 files from the spreadsheets
for the uapi headers and agreed with SPDX license identifier in the
files he inspected. For the non-uapi files Thomas did random spot checks
in about 15000 files.
In initial set of patches against 4.14-rc6, 3 files were found to have
copy/paste license identifier errors, and have been fixed to reflect the
correct identifier.
Additionally Philippe spent 10 hours this week doing a detailed manual
inspection and review of the 12,461 patched files from the initial patch
version early this week with:
- a full scancode scan run, collecting the matched texts, detected
license ids and scores
- reviewing anything where there was a license detected (about 500+
files) to ensure that the applied SPDX license was correct
- reviewing anything where there was no detection but the patch license
was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied
SPDX license was correct
This produced a worksheet with 20 files needing minor correction. This
worksheet was then exported into 3 different .csv files for the
different types of files to be modified.
These .csv files were then reviewed by Greg. Thomas wrote a script to
parse the csv files and add the proper SPDX tag to the file, in the
format that the file expected. This script was further refined by Greg
based on the output to detect more types of files automatically and to
distinguish between header and source .c files (which need different
comment types.) Finally Greg ran the script using the .csv files to
generate the patches.
Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org>
Reviewed-by: Philippe Ombredanne <pombredanne@nexb.com>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2017-11-01 22:07:57 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2005-04-17 06:20:36 +08:00
|
|
|
#ifndef __NET_ACT_API_H
|
|
|
|
#define __NET_ACT_API_H
|
|
|
|
|
|
|
|
/*
|
2016-06-05 22:41:32 +08:00
|
|
|
* Public action API for classifiers/qdiscs
|
|
|
|
*/
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2018-07-05 22:24:24 +08:00
|
|
|
#include <linux/refcount.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <net/sch_generic.h>
|
|
|
|
#include <net/pkt_sched.h>
|
2016-02-23 07:57:53 +08:00
|
|
|
#include <net/net_namespace.h>
|
|
|
|
#include <net/netns/generic.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2017-08-30 14:31:59 +08:00
|
|
|
struct tcf_idrinfo {
|
|
|
|
spinlock_t lock;
|
|
|
|
struct idr action_idr;
|
2016-07-26 07:09:41 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct tc_action_ops;
|
|
|
|
|
|
|
|
struct tc_action {
|
|
|
|
const struct tc_action_ops *ops;
|
2016-07-26 07:09:42 +08:00
|
|
|
__u32 type; /* for backward compat(TCA_OLD_COMPAT) */
|
|
|
|
__u32 order;
|
2017-08-30 14:31:59 +08:00
|
|
|
struct tcf_idrinfo *idrinfo;
|
2016-07-26 07:09:41 +08:00
|
|
|
|
2016-07-26 07:09:42 +08:00
|
|
|
u32 tcfa_index;
|
2018-07-05 22:24:24 +08:00
|
|
|
refcount_t tcfa_refcnt;
|
|
|
|
atomic_t tcfa_bindcnt;
|
2016-07-26 07:09:42 +08:00
|
|
|
int tcfa_action;
|
|
|
|
struct tcf_t tcfa_tm;
|
|
|
|
struct gnet_stats_basic_packed tcfa_bstats;
|
2018-09-21 19:14:02 +08:00
|
|
|
struct gnet_stats_basic_packed tcfa_bstats_hw;
|
2016-07-26 07:09:42 +08:00
|
|
|
struct gnet_stats_queue tcfa_qstats;
|
2016-12-05 01:48:16 +08:00
|
|
|
struct net_rate_estimator __rcu *tcfa_rate_est;
|
2016-07-26 07:09:42 +08:00
|
|
|
spinlock_t tcfa_lock;
|
2015-07-06 20:18:04 +08:00
|
|
|
struct gnet_stats_basic_cpu __percpu *cpu_bstats;
|
2018-09-21 19:14:02 +08:00
|
|
|
struct gnet_stats_basic_cpu __percpu *cpu_bstats_hw;
|
2015-07-06 20:18:04 +08:00
|
|
|
struct gnet_stats_queue __percpu *cpu_qstats;
|
2018-07-05 22:24:23 +08:00
|
|
|
struct tc_cookie __rcu *act_cookie;
|
2017-05-17 17:08:03 +08:00
|
|
|
struct tcf_chain *goto_chain;
|
2006-08-22 14:54:55 +08:00
|
|
|
};
|
2016-07-26 07:09:42 +08:00
|
|
|
#define tcf_index common.tcfa_index
|
|
|
|
#define tcf_refcnt common.tcfa_refcnt
|
|
|
|
#define tcf_bindcnt common.tcfa_bindcnt
|
|
|
|
#define tcf_action common.tcfa_action
|
|
|
|
#define tcf_tm common.tcfa_tm
|
|
|
|
#define tcf_bstats common.tcfa_bstats
|
|
|
|
#define tcf_qstats common.tcfa_qstats
|
|
|
|
#define tcf_rate_est common.tcfa_rate_est
|
|
|
|
#define tcf_lock common.tcfa_lock
|
2006-08-22 14:54:55 +08:00
|
|
|
|
2015-07-06 20:18:08 +08:00
|
|
|
/* Update lastuse only if needed, to avoid dirtying a cache line.
|
|
|
|
* We use a temp variable to avoid fetching jiffies twice.
|
|
|
|
*/
|
|
|
|
static inline void tcf_lastuse_update(struct tcf_t *tm)
|
|
|
|
{
|
|
|
|
unsigned long now = jiffies;
|
|
|
|
|
|
|
|
if (tm->lastuse != now)
|
|
|
|
tm->lastuse = now;
|
2016-06-06 18:32:54 +08:00
|
|
|
if (unlikely(!tm->firstuse))
|
|
|
|
tm->firstuse = now;
|
2015-07-06 20:18:08 +08:00
|
|
|
}
|
|
|
|
|
2016-06-06 18:32:55 +08:00
|
|
|
static inline void tcf_tm_dump(struct tcf_t *dtm, const struct tcf_t *stm)
|
|
|
|
{
|
|
|
|
dtm->install = jiffies_to_clock_t(jiffies - stm->install);
|
|
|
|
dtm->lastuse = jiffies_to_clock_t(jiffies - stm->lastuse);
|
|
|
|
dtm->firstuse = jiffies_to_clock_t(jiffies - stm->firstuse);
|
|
|
|
dtm->expires = jiffies_to_clock_t(stm->expires);
|
|
|
|
}
|
|
|
|
|
2016-03-08 18:42:31 +08:00
|
|
|
#ifdef CONFIG_NET_CLS_ACT
|
|
|
|
|
|
|
|
#define ACT_P_CREATED 1
|
|
|
|
#define ACT_P_DELETED 1
|
|
|
|
|
2006-08-22 14:54:55 +08:00
|
|
|
struct tc_action_ops {
|
2013-12-16 12:15:10 +08:00
|
|
|
struct list_head head;
|
2005-04-17 06:20:36 +08:00
|
|
|
char kind[IFNAMSIZ];
|
|
|
|
__u32 type; /* TBD to match kind */
|
2016-07-26 07:09:41 +08:00
|
|
|
size_t size;
|
2005-04-17 06:20:36 +08:00
|
|
|
struct module *owner;
|
2016-06-05 22:41:32 +08:00
|
|
|
int (*act)(struct sk_buff *, const struct tc_action *,
|
2018-07-30 20:30:43 +08:00
|
|
|
struct tcf_result *); /* called under RCU BH lock*/
|
2006-08-22 14:54:55 +08:00
|
|
|
int (*dump)(struct sk_buff *, struct tc_action *, int, int);
|
2017-12-06 04:53:07 +08:00
|
|
|
void (*cleanup)(struct tc_action *);
|
2018-08-30 01:15:35 +08:00
|
|
|
int (*lookup)(struct net *net, struct tc_action **a, u32 index);
|
2013-01-14 13:15:39 +08:00
|
|
|
int (*init)(struct net *net, struct nlattr *nla,
|
2016-07-26 07:09:41 +08:00
|
|
|
struct nlattr *est, struct tc_action **act, int ovr,
|
2018-07-05 22:24:25 +08:00
|
|
|
int bind, bool rtnl_held,
|
|
|
|
struct netlink_ext_ack *extack);
|
2016-02-23 07:57:53 +08:00
|
|
|
int (*walk)(struct net *, struct sk_buff *,
|
2018-02-15 23:54:53 +08:00
|
|
|
struct netlink_callback *, int,
|
2018-02-15 23:54:58 +08:00
|
|
|
const struct tc_action_ops *,
|
|
|
|
struct netlink_ext_ack *);
|
2018-09-21 19:14:02 +08:00
|
|
|
void (*stats_update)(struct tc_action *, u64, u32, u64, bool);
|
2018-03-09 05:59:18 +08:00
|
|
|
size_t (*get_fill_size)(const struct tc_action *act);
|
2017-10-11 15:41:07 +08:00
|
|
|
struct net_device *(*get_dev)(const struct tc_action *a);
|
2018-08-11 01:51:52 +08:00
|
|
|
void (*put_dev)(struct net_device *dev);
|
2016-02-23 07:57:53 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct tc_action_net {
|
2017-08-30 14:31:59 +08:00
|
|
|
struct tcf_idrinfo *idrinfo;
|
2016-02-23 07:57:53 +08:00
|
|
|
const struct tc_action_ops *ops;
|
2005-04-17 06:20:36 +08:00
|
|
|
};
|
|
|
|
|
2016-02-23 07:57:53 +08:00
|
|
|
static inline
|
2016-06-05 22:41:32 +08:00
|
|
|
int tc_action_net_init(struct tc_action_net *tn,
|
2017-11-07 05:47:18 +08:00
|
|
|
const struct tc_action_ops *ops)
|
2016-02-23 07:57:53 +08:00
|
|
|
{
|
|
|
|
int err = 0;
|
|
|
|
|
2017-08-30 14:31:59 +08:00
|
|
|
tn->idrinfo = kmalloc(sizeof(*tn->idrinfo), GFP_KERNEL);
|
|
|
|
if (!tn->idrinfo)
|
2016-02-23 07:57:53 +08:00
|
|
|
return -ENOMEM;
|
|
|
|
tn->ops = ops;
|
2017-08-30 14:31:59 +08:00
|
|
|
spin_lock_init(&tn->idrinfo->lock);
|
|
|
|
idr_init(&tn->idrinfo->action_idr);
|
2016-02-23 07:57:53 +08:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
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:53 +08:00
|
|
|
|
2017-12-12 07:35:03 +08:00
|
|
|
static inline void tc_action_net_exit(struct list_head *net_list,
|
|
|
|
unsigned int id)
|
2016-02-23 07:57:53 +08:00
|
|
|
{
|
2017-12-12 07:35:03 +08:00
|
|
|
struct net *net;
|
|
|
|
|
2017-11-02 01:23:49 +08:00
|
|
|
rtnl_lock();
|
2017-12-12 07:35:03 +08:00
|
|
|
list_for_each_entry(net, net_list, exit_list) {
|
|
|
|
struct tc_action_net *tn = net_generic(net, id);
|
|
|
|
|
|
|
|
tcf_idrinfo_destroy(tn->ops, tn->idrinfo);
|
|
|
|
kfree(tn->idrinfo);
|
|
|
|
}
|
2017-11-02 01:23:49 +08:00
|
|
|
rtnl_unlock();
|
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,
|
2018-02-15 23:54:59 +08:00
|
|
|
const struct tc_action_ops *ops,
|
|
|
|
struct netlink_ext_ack *extack);
|
2017-08-30 14:31:59 +08:00
|
|
|
int tcf_idr_search(struct tc_action_net *tn, struct tc_action **a, u32 index);
|
|
|
|
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);
|
|
|
|
void tcf_idr_insert(struct tc_action_net *tn, struct tc_action *a);
|
2006-08-22 14:54:55 +08:00
|
|
|
|
2018-07-05 22:24:32 +08:00
|
|
|
void tcf_idr_cleanup(struct tc_action_net *tn, u32 index);
|
|
|
|
int tcf_idr_check_alloc(struct tc_action_net *tn, u32 *index,
|
|
|
|
struct tc_action **a, int bind);
|
2017-08-30 14:31:59 +08:00
|
|
|
int __tcf_idr_release(struct tc_action *a, bool bind, bool strict);
|
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
|
|
|
|
2017-08-30 14:31:59 +08:00
|
|
|
static inline int tcf_idr_release(struct tc_action *a, bool bind)
|
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
|
|
|
{
|
2017-08-30 14:31:59 +08:00
|
|
|
return __tcf_idr_release(a, bind, false);
|
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
|
|
|
}
|
|
|
|
|
2016-02-23 07:57:53 +08:00
|
|
|
int tcf_register_action(struct tc_action_ops *a, struct pernet_operations *ops);
|
2016-06-05 22:41:32 +08:00
|
|
|
int tcf_unregister_action(struct tc_action_ops *a,
|
|
|
|
struct pernet_operations *ops);
|
2018-07-05 22:24:33 +08:00
|
|
|
int tcf_action_destroy(struct tc_action *actions[], int bind);
|
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);
|
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,
|
2018-07-05 22:24:33 +08:00
|
|
|
struct tc_action *actions[], size_t *attr_size,
|
2018-07-05 22:24:25 +08:00
|
|
|
bool rtnl_held, struct netlink_ext_ack *extack);
|
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,
|
2018-02-15 23:54:54 +08:00
|
|
|
char *name, int ovr, int bind,
|
2018-07-05 22:24:25 +08:00
|
|
|
bool rtnl_held,
|
2018-02-15 23:54:54 +08:00
|
|
|
struct netlink_ext_ack *extack);
|
2018-07-05 22:24:33 +08:00
|
|
|
int tcf_action_dump(struct sk_buff *skb, struct tc_action *actions[], int bind,
|
|
|
|
int ref);
|
2013-07-31 13:47:13 +08:00
|
|
|
int tcf_action_dump_old(struct sk_buff *skb, struct tc_action *a, int, int);
|
|
|
|
int tcf_action_dump_1(struct sk_buff *skb, struct tc_action *a, int, int);
|
|
|
|
int tcf_action_copy_stats(struct sk_buff *, struct tc_action *, int);
|
2016-03-08 18:42:31 +08:00
|
|
|
|
2016-08-14 13:34:59 +08:00
|
|
|
#endif /* CONFIG_NET_CLS_ACT */
|
2016-07-25 18:12:33 +08:00
|
|
|
|
2016-05-13 20:55:35 +08:00
|
|
|
static inline void tcf_action_stats_update(struct tc_action *a, u64 bytes,
|
2018-09-21 19:14:02 +08:00
|
|
|
u64 packets, u64 lastuse, bool hw)
|
2016-05-13 20:55:35 +08:00
|
|
|
{
|
2016-08-14 13:34:59 +08:00
|
|
|
#ifdef CONFIG_NET_CLS_ACT
|
2016-05-13 20:55:35 +08:00
|
|
|
if (!a->ops->stats_update)
|
|
|
|
return;
|
|
|
|
|
2018-09-21 19:14:02 +08:00
|
|
|
a->ops->stats_update(a, bytes, packets, lastuse, hw);
|
2016-08-14 13:34:59 +08:00
|
|
|
#endif
|
2016-05-13 20:55:35 +08:00
|
|
|
}
|
|
|
|
|
2017-10-11 15:41:08 +08:00
|
|
|
#ifdef CONFIG_NET_CLS_ACT
|
|
|
|
int tc_setup_cb_egdev_register(const struct net_device *dev,
|
|
|
|
tc_setup_cb_t *cb, void *cb_priv);
|
|
|
|
void tc_setup_cb_egdev_unregister(const struct net_device *dev,
|
|
|
|
tc_setup_cb_t *cb, void *cb_priv);
|
|
|
|
int tc_setup_cb_egdev_call(const struct net_device *dev,
|
|
|
|
enum tc_setup_type type, void *type_data,
|
|
|
|
bool err_stop);
|
|
|
|
#else
|
|
|
|
static inline
|
|
|
|
int tc_setup_cb_egdev_register(const struct net_device *dev,
|
|
|
|
tc_setup_cb_t *cb, void *cb_priv)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline
|
|
|
|
void tc_setup_cb_egdev_unregister(const struct net_device *dev,
|
|
|
|
tc_setup_cb_t *cb, void *cb_priv)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline
|
|
|
|
int tc_setup_cb_egdev_call(const struct net_device *dev,
|
|
|
|
enum tc_setup_type type, void *type_data,
|
|
|
|
bool err_stop)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
#endif
|