Commit 27bc11e6 authored by Veaceslav Falico's avatar Veaceslav Falico Committed by David S. Miller

bonding: make bond_arp_send_all use upper device list

Currently, bond_arp_send_all() is aware only of vlans, which breaks
configurations like bond <- bridge (or any other 'upper' device) with IP
(which is quite a common scenario for virt setups).

To fix this we convert the bond_arp_send_all() to first verify if the rt
device is the bond itself, and if not - to go through its list of upper
vlans and their respectiv upper devices (if the vlan's upper device matches
- tag the packet), if still not found - go through all of our upper list
devices to see if any of them match the route device for the target. If the
match is a vlan device - we also save its vlan_id and tag it in
bond_arp_send().

Also, clean the function a bit to be more readable.

CC: Vlad Yasevich <vyasevic@redhat.com>
CC: Jay Vosburgh <fubar@us.ibm.com>
CC: Andy Gospodarek <andy@greyhouse.net>
Signed-off-by: default avatarVeaceslav Falico <vfalico@redhat.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent c752af2c
...@@ -2444,30 +2444,16 @@ static void bond_arp_send(struct net_device *slave_dev, int arp_op, __be32 dest_ ...@@ -2444,30 +2444,16 @@ static void bond_arp_send(struct net_device *slave_dev, int arp_op, __be32 dest_
static void bond_arp_send_all(struct bonding *bond, struct slave *slave) static void bond_arp_send_all(struct bonding *bond, struct slave *slave)
{ {
int i, vlan_id; struct net_device *upper, *vlan_upper;
__be32 *targets = bond->params.arp_targets; struct list_head *iter, *vlan_iter;
struct vlan_entry *vlan;
struct net_device *vlan_dev = NULL;
struct rtable *rt; struct rtable *rt;
__be32 *targets = bond->params.arp_targets, addr;
int i, vlan_id;
for (i = 0; (i < BOND_MAX_ARP_TARGETS); i++) { for (i = 0; i < BOND_MAX_ARP_TARGETS && targets[i]; i++) {
__be32 addr;
if (!targets[i])
break;
pr_debug("basa: target %pI4\n", &targets[i]); pr_debug("basa: target %pI4\n", &targets[i]);
if (!bond_vlan_used(bond)) {
pr_debug("basa: empty vlan: arp_send\n");
addr = bond_confirm_addr(bond->dev, targets[i], 0);
bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
addr, 0);
continue;
}
/* /* Find out through which dev should the packet go */
* If VLANs are configured, we do a route lookup to
* determine which VLAN interface would be used, so we
* can tag the ARP with the proper VLAN tag.
*/
rt = ip_route_output(dev_net(bond->dev), targets[i], 0, rt = ip_route_output(dev_net(bond->dev), targets[i], 0,
RTO_ONLINK, 0); RTO_ONLINK, 0);
if (IS_ERR(rt)) { if (IS_ERR(rt)) {
...@@ -2478,47 +2464,61 @@ static void bond_arp_send_all(struct bonding *bond, struct slave *slave) ...@@ -2478,47 +2464,61 @@ static void bond_arp_send_all(struct bonding *bond, struct slave *slave)
continue; continue;
} }
/*
* This target is not on a VLAN
*/
if (rt->dst.dev == bond->dev) {
ip_rt_put(rt);
pr_debug("basa: rtdev == bond->dev: arp_send\n");
addr = bond_confirm_addr(bond->dev, targets[i], 0);
bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
addr, 0);
continue;
}
vlan_id = 0; vlan_id = 0;
list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
rcu_read_lock(); /* bond device itself */
vlan_dev = __vlan_find_dev_deep(bond->dev, if (rt->dst.dev == bond->dev)
htons(ETH_P_8021Q), goto found;
vlan->vlan_id);
rcu_read_unlock(); rcu_read_lock();
if (vlan_dev == rt->dst.dev) { /* first we search only for vlan devices. for every vlan
vlan_id = vlan->vlan_id; * found we verify its upper dev list, searching for the
pr_debug("basa: vlan match on %s %d\n", * rt->dst.dev. If found we save the tag of the vlan and
vlan_dev->name, vlan_id); * proceed to send the packet.
break; *
* TODO: QinQ?
*/
netdev_for_each_upper_dev_rcu(bond->dev, vlan_upper, vlan_iter) {
if (!is_vlan_dev(vlan_upper))
continue;
netdev_for_each_upper_dev_rcu(vlan_upper, upper, iter) {
if (upper == rt->dst.dev) {
vlan_id = vlan_dev_vlan_id(vlan_upper);
rcu_read_unlock();
goto found;
}
} }
} }
if (vlan_id && vlan_dev) { /* if the device we're looking for is not on top of any of
ip_rt_put(rt); * our upper vlans, then just search for any dev that
addr = bond_confirm_addr(vlan_dev, targets[i], 0); * matches, and in case it's a vlan - save the id
bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i], */
addr, vlan_id); netdev_for_each_upper_dev_rcu(bond->dev, upper, iter) {
continue; if (upper == rt->dst.dev) {
/* if it's a vlan - get its VID */
if (is_vlan_dev(upper))
vlan_id = vlan_dev_vlan_id(upper);
rcu_read_unlock();
goto found;
}
} }
rcu_read_unlock();
if (net_ratelimit()) { /* Not our device - skip */
if (net_ratelimit())
pr_warning("%s: no path to arp_ip_target %pI4 via rt.dev %s\n", pr_warning("%s: no path to arp_ip_target %pI4 via rt.dev %s\n",
bond->dev->name, &targets[i], bond->dev->name, &targets[i],
rt->dst.dev ? rt->dst.dev->name : "NULL"); rt->dst.dev ? rt->dst.dev->name : "NULL");
}
ip_rt_put(rt); ip_rt_put(rt);
continue;
found:
addr = bond_confirm_addr(rt->dst.dev, targets[i], 0);
ip_rt_put(rt);
bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
addr, vlan_id);
} }
} }
......
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