From: Stephen Hemminger <shemminger@linux-foundation.org>
To: Jiri Pirko <jpirko@redhat.com>
Cc: linux-kernel@vger.kernel.org, netdev@vger.kernel.org,
jgarzik@pobox.com, davem@davemloft.net,
bridge@lists.linux-foundation.org, fubar@us.ibm.com,
bonding-devel@lists.sourceforge.net
Subject: Re: [PATCH] bonding: allow bond in mode balance-alb to work properly in bridge
Date: Sun, 15 Mar 2009 16:12:17 -0700 [thread overview]
Message-ID: <20090315161217.7fa2c3a7@nehalam> (raw)
In-Reply-To: <20090314094911.GA3455@psychotron.englab.brq.redhat.com>
On Sat, 14 Mar 2009 10:49:11 +0100
Jiri Pirko <jpirko@redhat.com> wrote:
> Sat, Mar 14, 2009 at 06:39:32AM CET, shemminger@linux-foundation.org wrote:
> >On Fri, 13 Mar 2009 19:33:04 +0100
> >Jiri Pirko <jpirko@redhat.com> wrote:
> >
> >> Hi all.
> >>
> >> This is only a draft of patch to consult. I'm aware that it should be divided
> >> into multiple patches. I want to know opinion from you folks.
> >>
> >> The problem is described in following bugzilla:
> >> https://bugzilla.redhat.com/show_bug.cgi?id=487763
> >>
> >> Basically here's what's going on. In every mode, bonding interface uses the same
> >> mac address for all enslaved devices. Except for mode balance-alb. When you put
> >> this kind of bond device into a bridge it will only add one of mac adresses into
> >> a hash list of mac addresses, say X. This mac address is marked as local. But
> >> this bonding interface also has mac address Y. Now then packet arrives with
> >> destination address Y, this address is not marked as local and the packed looks
> >> like it needs to be forwarded. This packet is then lost which is wrong.
> >>
> >> Notice that interfaces can be added and removed from bond while it is in bridge.
> >> Therefore I introduce another function pointer in struct net_device_ops -
> >> ndo_check_mac_address. This function when it's implemented should check passed
> >> mac address against the one set in device. I'm using this in bonding driver when
> >> the bond is in mode balance-alb to walk thru all slaves and checking if any of
> >> them equals passed address.
> >>
> >> Then in bridge function br_handle_frame_finish() I'm using ndo_check_mac_address
> >> to recognize the destination mac address as local.
> >>
> >> Please look at this and tell me what you think about it.
> >>
> >> Thanks
> >>
> >> Jirka
> >>
> >
> >A better and more general way to do this have the dev_set_mac_address
> >function check the return of the notifier and unwind. Then any protocol
> >can easily prevent address from changing.
>
> Can you please describe this thougth a bit more? I can't understand it now...
>
> Thanks
>
> Jirka
Something like this:
--- a/net/core/dev.c 2009-03-15 15:55:02.098126056 -0700
+++ b/net/core/dev.c 2009-03-15 16:02:43.999251305 -0700
@@ -3830,6 +3830,7 @@ int dev_set_mac_address(struct net_devic
{
const struct net_device_ops *ops = dev->netdev_ops;
int err;
+ char save_addr[MAX_ADDR_LEN];
if (!ops->ndo_set_mac_address)
return -EOPNOTSUPP;
@@ -3837,9 +3838,17 @@ int dev_set_mac_address(struct net_devic
return -EINVAL;
if (!netif_device_present(dev))
return -ENODEV;
+
+ memcpy(save_addr, dev->dev_addr, dev->addr_len);
err = ops->ndo_set_mac_address(dev, sa);
- if (!err)
- call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
+ if (err)
+ return err;
+
+ err = call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
+ if (err) {
+ memcpy(sa->sa_data, save_addr, dev->addr_len);
+ ops->ndo_set_mac_address(dev, sa);
+ }
return err;
}
And something like this:
--- a/drivers/net/bonding/bond_main.c 2009-03-15 16:03:53.909000973 -0700
+++ b/drivers/net/bonding/bond_main.c 2009-03-15 16:11:43.227127031 -0700
@@ -3534,6 +3534,7 @@ static int bond_slave_netdev_event(unsig
{
struct net_device *bond_dev = slave_dev->master;
struct bonding *bond = netdev_priv(bond_dev);
+ int err;
switch (event) {
case NETDEV_UNREGISTER:
@@ -3570,6 +3571,15 @@ static int bond_slave_netdev_event(unsig
* servitude.
*/
break;
+ case NETDEV_CHANGEADDR:
+ if (bond->params.mode == BOND_MODE_ALB)
+ err = bond_alb_check_mac_address(bond);
+ else if (compare_ether_addr(bond_dev->dev_addr, addr) != 0)
+ err = -EINVAL;
+
+ if (err)
+ return notifier_from_errno(err);
+ break;
case NETDEV_CHANGENAME:
/*
* TODO: handle changing the primary's name
next prev parent reply other threads:[~2009-03-15 23:13 UTC|newest]
Thread overview: 93+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-03-13 18:33 [PATCH] bonding: allow bond in mode balance-alb to work properly in bridge Jiri Pirko
2009-03-14 5:39 ` Stephen Hemminger
2009-03-14 9:49 ` Jiri Pirko
2009-03-15 23:12 ` Stephen Hemminger [this message]
2009-03-16 11:11 ` Jiri Pirko
2009-03-19 6:20 ` David Miller
2009-03-19 8:44 ` Jiri Pirko
2009-03-19 10:21 ` David Miller
2009-03-19 11:19 ` Jiri Pirko
2009-03-19 8:50 ` Patrick McHardy
2009-03-19 16:31 ` Jiri Pirko
2009-03-25 13:04 ` [PATCH] bonding: allow bond in mode balance-alb to work properly in bridge -try2 Jiri Pirko
2009-03-25 13:40 ` Eric Dumazet
2009-03-25 14:39 ` Jiri Pirko
2009-03-25 15:19 ` [PATCH] bonding: allow bond in mode balance-alb to work properly in bridge -try3 Jiri Pirko
2009-03-25 16:31 ` Jay Vosburgh
2009-03-25 17:44 ` Jiri Pirko
2009-03-26 0:24 ` David Miller
2009-03-26 0:34 ` Jay Vosburgh
2009-03-26 11:12 ` Jiri Pirko
2009-03-26 15:52 ` [PATCH] bonding: allow bond in mode balance-alb to work properly in bridge -try4 Jiri Pirko
2009-03-27 7:38 ` David Miller
2009-03-27 7:46 ` Jiri Pirko
2009-03-27 7:53 ` Patrick McHardy
2009-03-27 8:41 ` Jiri Pirko
2009-03-27 8:55 ` Patrick McHardy
2009-03-27 9:47 ` Jiri Pirko
2009-03-29 20:53 ` David Miller
2009-03-30 12:04 ` Patrick McHardy
2009-03-30 12:40 ` Jiri Pirko
2009-03-30 12:47 ` Patrick McHardy
2009-03-30 12:52 ` Jiri Pirko
2009-03-30 12:58 ` Patrick McHardy
2009-04-13 8:37 ` [PATCH 0/4] bonding: allow bond in mode balance-alb to work properly in bridge -try5 Jiri Pirko
2009-04-13 8:38 ` [PATCH 1/4] net: introduce dev_mac_address_changed Jiri Pirko
2009-04-13 14:58 ` Stephen Hemminger
2009-04-13 8:42 ` [PATCH 2/4] net: introduce a list of device addresses dev_addr_list Jiri Pirko
2009-04-13 14:49 ` Stephen Hemminger
2009-04-13 22:54 ` David Miller
2009-04-13 22:53 ` David Miller
2009-04-13 8:44 ` [PATCH 3/4] net: bridge: use device address list instead of dev_addr Jiri Pirko
2009-04-13 14:54 ` Stephen Hemminger
2009-04-14 10:15 ` Jiri Pirko
2009-04-13 22:54 ` David Miller
2009-04-13 8:46 ` [PATCH 4/4] net: bonding: add slave device addresses in mode alb Jiri Pirko
2009-04-13 14:56 ` Stephen Hemminger
2009-04-15 8:17 ` [PATCH 0/3] bonding: allow bond in mode balance-alb to work properly in bridge -try6 Jiri Pirko
2009-04-15 8:18 ` [PATCH 1/3] net: introduce a list of device addresses dev_addr_list Jiri Pirko
2009-04-15 8:26 ` Li Zefan
2009-04-15 8:29 ` Jiri Pirko
2009-04-15 8:32 ` Jiri Pirko
2009-04-15 9:21 ` David Miller
2009-04-15 9:27 ` Eric Dumazet
2009-04-15 9:31 ` David Miller
2009-04-15 10:13 ` Patrick McHardy
2009-04-15 10:15 ` David Miller
2009-04-15 10:41 ` Patrick McHardy
2009-04-15 10:45 ` David Miller
2009-04-15 10:47 ` Patrick McHardy
2009-04-15 14:42 ` Jiri Pirko
2009-04-15 11:17 ` Jiri Pirko
2009-04-15 11:22 ` Patrick McHardy
2009-04-15 11:28 ` Jiri Pirko
2009-04-15 12:28 ` Eric Dumazet
2009-04-15 18:02 ` [PATCH 1/3] net: introduce a list of device addresses dev_addr_list (v2) Jiri Pirko
2009-04-15 18:54 ` Eric Dumazet
2009-04-16 8:46 ` Jiri Pirko
2009-04-17 11:57 ` [PATCH 1/3] net: introduce a list of device addresses dev_addr_list (v3) Jiri Pirko
2009-04-17 15:33 ` Stephen Hemminger
2009-04-18 7:01 ` Jiri Pirko
2009-04-18 7:35 ` Eric Dumazet
2009-04-18 7:44 ` Jiri Pirko
2009-04-18 8:06 ` Eric Dumazet
2009-04-18 8:58 ` [PATCH 1/3] net: introduce a list of device addresses dev_addr_list (v4) Jiri Pirko
2009-04-20 16:11 ` Jiri Pirko
2009-04-23 8:09 ` Jiri Pirko
2009-05-04 11:14 ` [PATCH] net: introduce a list of device addresses dev_addr_list (v5) Jiri Pirko
2009-05-05 4:37 ` David Miller
2009-05-05 6:37 ` Jiri Pirko
2009-05-05 12:48 ` [PATCH] net: introduce a list of device addresses dev_addr_list (v6) Jiri Pirko
2009-05-05 19:27 ` David Miller
2009-05-08 22:38 ` Stephen Hemminger
2009-05-08 23:00 ` David Miller
2009-05-08 23:12 ` Stephen Hemminger
2009-05-08 23:25 ` David Miller
2009-05-08 23:29 ` Stephen Hemminger
2009-04-15 8:21 ` [PATCH 2/3] net: bridge: use device address list instead of dev_addr Jiri Pirko
2009-05-06 14:46 ` [PATCH net-next] net: bridge: use device address list instead of dev_addr (repost) Jiri Pirko
2009-05-06 15:08 ` Eric Dumazet
2009-05-06 19:26 ` Stephen Hemminger
2009-05-07 22:03 ` David Miller
2009-04-15 8:22 ` [PATCH 3/3] net: bonding: add slave device addresses in mode alb Jiri Pirko
-- strict thread matches above, loose matches on Subject: below --
2009-03-24 9:54 [PATCH] bonding: allow bond in mode balance-alb to work properly in bridge Stanichenko Marat
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20090315161217.7fa2c3a7@nehalam \
--to=shemminger@linux-foundation.org \
--cc=bonding-devel@lists.sourceforge.net \
--cc=bridge@lists.linux-foundation.org \
--cc=davem@davemloft.net \
--cc=fubar@us.ibm.com \
--cc=jgarzik@pobox.com \
--cc=jpirko@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox