[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20141203132635.GH1860@nanopsycho.orion>
Date: Wed, 3 Dec 2014 14:26:35 +0100
From: Jiri Pirko <jiri@...nulli.us>
To: Jamal Hadi Salim <jhs@...atatu.com>
Cc: netdev@...r.kernel.org, davem@...emloft.net
Subject: Re: [patch net-next 3/6] net_sched: cls_bpf: remove faulty use of
list_for_each_entry_rcu
Wed, Dec 03, 2014 at 01:51:15PM CET, jhs@...atatu.com wrote:
>On 12/02/14 12:00, Jiri Pirko wrote:
>>rcu variant is not correct here. The code is called by updater (rtnl
>>lock is held), not by reader (no rcu_read_lock is held).
>>
>>Signed-off-by: Jiri Pirko <jiri@...nulli.us>
>>---
>> net/sched/cls_bpf.c | 4 ++--
>> 1 file changed, 2 insertions(+), 2 deletions(-)
>>
>>diff --git a/net/sched/cls_bpf.c b/net/sched/cls_bpf.c
>>index cbfaf6f..d0de979 100644
>>--- a/net/sched/cls_bpf.c
>>+++ b/net/sched/cls_bpf.c
>>@@ -141,7 +141,7 @@ static unsigned long cls_bpf_get(struct tcf_proto *tp, u32 handle)
>> if (head == NULL)
>> return 0UL;
>>
>>- list_for_each_entry_rcu(prog, &head->plist, link) {
>>+ list_for_each_entry(prog, &head->plist, link) {
>> if (prog->handle == handle) {
>> ret = (unsigned long) prog;
>
>The above is ok i think - only one user space entrant at a time
>and datapath is not affected because no modification is happening.
>
>> break;
>>@@ -337,7 +337,7 @@ static void cls_bpf_walk(struct tcf_proto *tp, struct tcf_walker *arg)
>> struct cls_bpf_head *head = rtnl_dereference(tp->root);
>> struct cls_bpf_prog *prog;
>>
>>- list_for_each_entry_rcu(prog, &head->plist, link) {
>>+ list_for_each_entry(prog, &head->plist, link) {
>> if (arg->count < arg->skip)
>> goto skip;
>> if (arg->fn(tp, (unsigned long) prog, arg) < 0) {
>>
>
>I think this may be problematic. Doesnt a flush operation also use the
>walker?
I don't believe so. Just look at tc_dump_tfilter.
But even if that would the the case, _rcu variant is wrong (yep, it
would have to be replaced by _safe variant then).
>
>cheers,
>jamal
>
>
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists