]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
net/sched: properly assign RCU pointer in tcf_chain_tp_insert/remove
authorJiri Pirko <jiri@mellanox.com>
Sat, 20 May 2017 13:01:31 +0000 (15:01 +0200)
committerDavid S. Miller <davem@davemloft.net>
Tue, 23 May 2017 15:00:06 +0000 (11:00 -0400)
*p_filter_chain is rcu-dereferenced on reader path. So here in writer,
property assign the pointer.

Fixes: 2190d1d0944f ("net: sched: introduce helpers to work with filter chains")
Signed-off-by: Jiri Pirko <jiri@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/sched/cls_api.c

index 4020b8d932a1a6dfac9a856dc8d5b53adb0645d6..85088ed07f6ab53ce3b87ec3fecae77bcbd19317 100644 (file)
@@ -351,7 +351,7 @@ static void tcf_chain_tp_insert(struct tcf_chain *chain,
 {
        if (chain->p_filter_chain &&
            *chain_info->pprev == chain->filter_chain)
-               *chain->p_filter_chain = tp;
+               rcu_assign_pointer(*chain->p_filter_chain, tp);
        RCU_INIT_POINTER(tp->next, tcf_chain_tp_prev(chain_info));
        rcu_assign_pointer(*chain_info->pprev, tp);
 }
@@ -363,7 +363,7 @@ static void tcf_chain_tp_remove(struct tcf_chain *chain,
        struct tcf_proto *next = rtnl_dereference(chain_info->next);
 
        if (chain->p_filter_chain && tp == chain->filter_chain)
-               *chain->p_filter_chain = next;
+               RCU_INIT_POINTER(*chain->p_filter_chain, next);
        RCU_INIT_POINTER(*chain_info->pprev, next);
 }