Commit 517e43bd authored by Wei Wang's avatar Wei Wang Committed by Greg Kroah-Hartman

ipv6: fix sparse warning on rt6i_node


[ Upstream commit 4e587ea7 ]

Commit c5cff856 adds rcu grace period before freeing fib6_node. This
generates a new sparse warning on rt->rt6i_node related code:
  net/ipv6/route.c:1394:30: error: incompatible types in comparison
  expression (different address spaces)
  ./include/net/ip6_fib.h:187:14: error: incompatible types in comparison
  expression (different address spaces)

This commit adds "__rcu" tag for rt6i_node and makes sure corresponding
rcu API is used for it.
After this fix, sparse no longer generates the above warning.

Fixes: c5cff856 ("ipv6: add rcu grace period before freeing fib6_node")
Signed-off-by: default avatarWei Wang <weiwan@google.com>
Acked-by: default avatarEric Dumazet <edumazet@google.com>
Acked-by: default avatarMartin KaFai Lau <kafai@fb.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 640efece
...@@ -105,7 +105,7 @@ struct rt6_info { ...@@ -105,7 +105,7 @@ struct rt6_info {
* the same cache line. * the same cache line.
*/ */
struct fib6_table *rt6i_table; struct fib6_table *rt6i_table;
struct fib6_node *rt6i_node; struct fib6_node __rcu *rt6i_node;
struct in6_addr rt6i_gateway; struct in6_addr rt6i_gateway;
......
...@@ -5541,7 +5541,7 @@ static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp) ...@@ -5541,7 +5541,7 @@ static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
* our DAD process, so we don't need * our DAD process, so we don't need
* to do it again * to do it again
*/ */
if (!(ifp->rt->rt6i_node)) if (!rcu_access_pointer(ifp->rt->rt6i_node))
ip6_ins_rt(ifp->rt); ip6_ins_rt(ifp->rt);
if (ifp->idev->cnf.forwarding) if (ifp->idev->cnf.forwarding)
addrconf_join_anycast(ifp); addrconf_join_anycast(ifp);
......
...@@ -887,7 +887,7 @@ static int fib6_add_rt2node(struct fib6_node *fn, struct rt6_info *rt, ...@@ -887,7 +887,7 @@ static int fib6_add_rt2node(struct fib6_node *fn, struct rt6_info *rt,
rt->dst.rt6_next = iter; rt->dst.rt6_next = iter;
*ins = rt; *ins = rt;
rt->rt6i_node = fn; rcu_assign_pointer(rt->rt6i_node, fn);
atomic_inc(&rt->rt6i_ref); atomic_inc(&rt->rt6i_ref);
if (!info->skip_notify) if (!info->skip_notify)
inet6_rt_notify(RTM_NEWROUTE, rt, info, nlflags); inet6_rt_notify(RTM_NEWROUTE, rt, info, nlflags);
...@@ -913,7 +913,7 @@ static int fib6_add_rt2node(struct fib6_node *fn, struct rt6_info *rt, ...@@ -913,7 +913,7 @@ static int fib6_add_rt2node(struct fib6_node *fn, struct rt6_info *rt,
return err; return err;
*ins = rt; *ins = rt;
rt->rt6i_node = fn; rcu_assign_pointer(rt->rt6i_node, fn);
rt->dst.rt6_next = iter->dst.rt6_next; rt->dst.rt6_next = iter->dst.rt6_next;
atomic_inc(&rt->rt6i_ref); atomic_inc(&rt->rt6i_ref);
if (!info->skip_notify) if (!info->skip_notify)
...@@ -1475,8 +1475,9 @@ static void fib6_del_route(struct fib6_node *fn, struct rt6_info **rtp, ...@@ -1475,8 +1475,9 @@ static void fib6_del_route(struct fib6_node *fn, struct rt6_info **rtp,
int fib6_del(struct rt6_info *rt, struct nl_info *info) int fib6_del(struct rt6_info *rt, struct nl_info *info)
{ {
struct fib6_node *fn = rcu_dereference_protected(rt->rt6i_node,
lockdep_is_held(&rt->rt6i_table->tb6_lock));
struct net *net = info->nl_net; struct net *net = info->nl_net;
struct fib6_node *fn = rt->rt6i_node;
struct rt6_info **rtp; struct rt6_info **rtp;
#if RT6_DEBUG >= 2 #if RT6_DEBUG >= 2
...@@ -1665,7 +1666,9 @@ static int fib6_clean_node(struct fib6_walker *w) ...@@ -1665,7 +1666,9 @@ static int fib6_clean_node(struct fib6_walker *w)
if (res) { if (res) {
#if RT6_DEBUG >= 2 #if RT6_DEBUG >= 2
pr_debug("%s: del failed: rt=%p@%p err=%d\n", pr_debug("%s: del failed: rt=%p@%p err=%d\n",
__func__, rt, rt->rt6i_node, res); __func__, rt,
rcu_access_pointer(rt->rt6i_node),
res);
#endif #endif
continue; continue;
} }
......
...@@ -1383,7 +1383,8 @@ static void rt6_do_update_pmtu(struct rt6_info *rt, u32 mtu) ...@@ -1383,7 +1383,8 @@ static void rt6_do_update_pmtu(struct rt6_info *rt, u32 mtu)
static bool rt6_cache_allowed_for_pmtu(const struct rt6_info *rt) static bool rt6_cache_allowed_for_pmtu(const struct rt6_info *rt)
{ {
return !(rt->rt6i_flags & RTF_CACHE) && return !(rt->rt6i_flags & RTF_CACHE) &&
(rt->rt6i_flags & RTF_PCPU || rt->rt6i_node); (rt->rt6i_flags & RTF_PCPU ||
rcu_access_pointer(rt->rt6i_node));
} }
static void __ip6_rt_update_pmtu(struct dst_entry *dst, const struct sock *sk, static void __ip6_rt_update_pmtu(struct dst_entry *dst, const struct sock *sk,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment