Skip to content

Commit

Permalink
net: inetdevice: provide replacement iterators for in_ifaddr walk
Browse files Browse the repository at this point in the history
The ifa_list is protected either by rcu or rtnl lock, but the
current iterators do not account for this.

This adds two iterators as replacement, a later patch in
the series will update them with the needed rcu/rtnl_dereference calls.

Its not done in this patch yet to avoid sparse warnings -- the fields
lack the proper __rcu annotation.

Signed-off-by: Florian Westphal <fw@strlen.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Florian Westphal authored and David S. Miller committed Jun 3, 2019
1 parent 35ebfc2 commit ef11db3
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 16 deletions.
10 changes: 9 additions & 1 deletion include/linux/inetdevice.h
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ __be32 inet_confirm_addr(struct net *net, struct in_device *in_dev, __be32 dst,
struct in_ifaddr *inet_ifa_byprefix(struct in_device *in_dev, __be32 prefix,
__be32 mask);
struct in_ifaddr *inet_lookup_ifaddr_rcu(struct net *net, __be32 addr);
static __inline__ bool inet_ifa_match(__be32 addr, struct in_ifaddr *ifa)
static inline bool inet_ifa_match(__be32 addr, const struct in_ifaddr *ifa)
{
return !((addr^ifa->ifa_address)&ifa->ifa_mask);
}
Expand Down Expand Up @@ -215,6 +215,14 @@ static __inline__ bool bad_mask(__be32 mask, __be32 addr)

#define endfor_ifa(in_dev) }

#define in_dev_for_each_ifa_rtnl(ifa, in_dev) \
for (ifa = (in_dev)->ifa_list; ifa; \
ifa = ifa->ifa_next)

#define in_dev_for_each_ifa_rcu(ifa, in_dev) \
for (ifa = (in_dev)->ifa_list; ifa; \
ifa = ifa->ifa_next)

static inline struct in_device *__in_dev_get_rcu(const struct net_device *dev)
{
return rcu_dereference(dev->ip_ptr);
Expand Down
31 changes: 16 additions & 15 deletions net/ipv4/devinet.c
Original file line number Diff line number Diff line change
Expand Up @@ -873,13 +873,12 @@ static struct in_ifaddr *rtm_to_ifaddr(struct net *net, struct nlmsghdr *nlh,
static struct in_ifaddr *find_matching_ifa(struct in_ifaddr *ifa)
{
struct in_device *in_dev = ifa->ifa_dev;
struct in_ifaddr *ifa1, **ifap;
struct in_ifaddr *ifa1;

if (!ifa->ifa_local)
return NULL;

for (ifap = &in_dev->ifa_list; (ifa1 = *ifap) != NULL;
ifap = &ifa1->ifa_next) {
in_dev_for_each_ifa_rtnl(ifa1, in_dev) {
if (ifa1->ifa_mask == ifa->ifa_mask &&
inet_ifa_match(ifa1->ifa_address, ifa) &&
ifa1->ifa_local == ifa->ifa_local)
Expand Down Expand Up @@ -1208,7 +1207,7 @@ int devinet_ioctl(struct net *net, unsigned int cmd, struct ifreq *ifr)
static int inet_gifconf(struct net_device *dev, char __user *buf, int len, int size)
{
struct in_device *in_dev = __in_dev_get_rtnl(dev);
struct in_ifaddr *ifa;
const struct in_ifaddr *ifa;
struct ifreq ifr;
int done = 0;

Expand All @@ -1218,7 +1217,7 @@ static int inet_gifconf(struct net_device *dev, char __user *buf, int len, int s
if (!in_dev)
goto out;

for (ifa = in_dev->ifa_list; ifa; ifa = ifa->ifa_next) {
in_dev_for_each_ifa_rtnl(ifa, in_dev) {
if (!buf) {
done += size;
continue;
Expand Down Expand Up @@ -1321,10 +1320,11 @@ EXPORT_SYMBOL(inet_select_addr);
static __be32 confirm_addr_indev(struct in_device *in_dev, __be32 dst,
__be32 local, int scope)
{
int same = 0;
const struct in_ifaddr *ifa;
__be32 addr = 0;
int same = 0;

for_ifa(in_dev) {
in_dev_for_each_ifa_rcu(ifa, in_dev) {
if (!addr &&
(local == ifa->ifa_local || !local) &&
ifa->ifa_scope <= scope) {
Expand All @@ -1350,7 +1350,7 @@ static __be32 confirm_addr_indev(struct in_device *in_dev, __be32 dst,
same = 0;
}
}
} endfor_ifa(in_dev);
}

return same ? addr : 0;
}
Expand Down Expand Up @@ -1424,7 +1424,7 @@ static void inetdev_changename(struct net_device *dev, struct in_device *in_dev)
struct in_ifaddr *ifa;
int named = 0;

for (ifa = in_dev->ifa_list; ifa; ifa = ifa->ifa_next) {
in_dev_for_each_ifa_rtnl(ifa, in_dev) {
char old[IFNAMSIZ], *dot;

memcpy(old, ifa->ifa_label, IFNAMSIZ);
Expand Down Expand Up @@ -1454,10 +1454,9 @@ static void inetdev_send_gratuitous_arp(struct net_device *dev,
struct in_device *in_dev)

{
struct in_ifaddr *ifa;
const struct in_ifaddr *ifa;

for (ifa = in_dev->ifa_list; ifa;
ifa = ifa->ifa_next) {
in_dev_for_each_ifa_rtnl(ifa, in_dev) {
arp_send(ARPOP_REQUEST, ETH_P_ARP,
ifa->ifa_local, dev,
ifa->ifa_local, NULL,
Expand Down Expand Up @@ -1727,15 +1726,17 @@ static int in_dev_dump_addr(struct in_device *in_dev, struct sk_buff *skb,
int ip_idx = 0;
int err;

for (ifa = in_dev->ifa_list; ifa; ifa = ifa->ifa_next, ip_idx++) {
if (ip_idx < s_ip_idx)
in_dev_for_each_ifa_rcu(ifa, in_dev) {
if (ip_idx < s_ip_idx) {
ip_idx++;
continue;

}
err = inet_fill_ifaddr(skb, ifa, fillargs);
if (err < 0)
goto done;

nl_dump_check_consistent(cb, nlmsg_hdr(skb));
ip_idx++;
}
err = 0;

Expand Down

0 comments on commit ef11db3

Please sign in to comment.