scsi: libcxgbi: fib6_ino reference in rt6_info is rcu protected
authorDavid Ahern <dsahern@gmail.com>
Tue, 11 Sep 2018 00:21:42 +0000 (17:21 -0700)
committerDavid S. Miller <davem@davemloft.net>
Wed, 12 Sep 2018 07:08:00 +0000 (00:08 -0700)
The fib6_info reference in rt6_info is rcu protected. Add a helper
to extract prefsrc from and update cxgbi_check_route6 to use it.

Fixes: 0153167aebd0 ("net/ipv6: Remove rt6i_prefsrc")
Reported-by: kbuild test robot <lkp@intel.com>
Signed-off-by: David Ahern <dsahern@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/scsi/cxgbi/libcxgbi.c
include/net/ip6_fib.h

index 6b3ea50..75f8764 100644 (file)
@@ -784,7 +784,8 @@ cxgbi_check_route6(struct sockaddr *dst_addr, int ifindex)
        csk->mtu = mtu;
        csk->dst = dst;
 
-       if (!rt->from || ipv6_addr_any(&rt->from->fib6_prefsrc.addr)) {
+       rt6_get_prefsrc(rt, &pref_saddr);
+       if (ipv6_addr_any(&pref_saddr)) {
                struct inet6_dev *idev = ip6_dst_idev((struct dst_entry *)rt);
 
                err = ipv6_dev_get_saddr(&init_net, idev ? idev->dev : NULL,
@@ -794,8 +795,6 @@ cxgbi_check_route6(struct sockaddr *dst_addr, int ifindex)
                                &daddr6->sin6_addr);
                        goto rel_rt;
                }
-       } else {
-               pref_saddr = rt->from->fib6_prefsrc.addr;
        }
 
        csk->csk_family = AF_INET6;
index c749666..f06e968 100644 (file)
@@ -412,6 +412,25 @@ int fib6_add(struct fib6_node *root, struct fib6_info *rt,
             struct nl_info *info, struct netlink_ext_ack *extack);
 int fib6_del(struct fib6_info *rt, struct nl_info *info);
 
+static inline
+void rt6_get_prefsrc(const struct rt6_info *rt, struct in6_addr *addr)
+{
+       const struct fib6_info *from;
+
+       rcu_read_lock();
+
+       from = rcu_dereference(rt->from);
+       if (from) {
+               *addr = from->fib6_prefsrc.addr;
+       } else {
+               struct in6_addr in6_zero = {};
+
+               *addr = in6_zero;
+       }
+
+       rcu_read_unlock();
+}
+
 static inline struct net_device *fib6_info_nh_dev(const struct fib6_info *f6i)
 {
        return f6i->fib6_nh.nh_dev;