From: Jay Vosburgh <fubar@us.ibm.com>
To: Ben Hutchings <bhutchings@solarflare.com>
Cc: Jiri Pirko <jpirko@redhat.com>, Flavio Leitner <fbl@redhat.com>,
netdev <netdev@vger.kernel.org>,
Andy Gospodarek <andy@greyhouse.net>,
Leonardo Chiquitto <lchiquitto@suse.com>
Subject: Re: [net-next] bonding: don't allow the master to become its slave
Date: Thu, 09 Aug 2012 14:27:08 -0700 [thread overview]
Message-ID: <22811.1344547628@death.nxdomain> (raw)
In-Reply-To: <1344546593.2593.24.camel@bwh-desktop.uk.solarflarecom.com>
Ben Hutchings <bhutchings@solarflare.com> wrote:
>On Thu, 2012-08-09 at 21:55 +0200, Jiri Pirko wrote:
[...]
>> How about other devices who do not use "->master" like vlan, macvlan?
>
>And they shouldn't use master, because they allow multiple upper devices
>may be stacked on a single lower device. Instead they use iflink, but
>that's an ifindex and not a net_device pointer.
>
>So I think we can catch simple loops with:
>
>--- a/net/core/dev.c
>+++ b/net/core/dev.c
>@@ -4445,8 +4445,22 @@ int netdev_set_master(struct net_device *slave, struct net_device *master)
> ASSERT_RTNL();
>
> if (master) {
>+ struct net_device *bottom, *top;
>+
> if (old)
> return -EBUSY;
>+
>+ /* Prevent loops */
>+ bottom = slave;
>+ while (bottom->iflink != bottom->ifindex)
>+ bottom = __dev_get_by_index(dev_net(bottom),
>+ bottom->iflink);
>+ top = master;
>+ while (top->master)
>+ top = top->master;
>+ if (top == bottom)
>+ return -EBUSY;
>+
> dev_hold(master);
> }
>
>--- END ---
>
>But then there can be quite silly device relationships like:
>
> +-------+
> | bond0 |
> ++-----++
> / \
>+-------+ +---+---+ +---+---+ +-------+
>| vlan0 | | vlan1 | | vlan2 | | vlan3 |
>+---+---+ +---+---+ +---+---+ +---+---+
> \ / \ /
> ++-----++ ++--+--++
> | bond1 | | bond2 |
> +-------+ +-------+
> : : : :
>
>Suppose the user tries to make bond0 a slave of bond1; we need to go to
>somewhat more effort to detect the loop.
If that's hard to do (and it might be; I'm not aware of a
standard way to run up and down those stacks of interfaces, which might
not always be vlans in the middle), there's still the priv_flags &
IFF_BONDING test that bonding could (and probably should) do itself as
well. The team driver could presumably have a similar test, although I
seem to recall that team was allowed to nest.
FWIW, I've seen both the top and bottom halves of that picture
in use (i.e., bonds consisting of vlans as slaves or bonds with vlans
configured above them), but not combined as in your diagram.
-J
---
-Jay Vosburgh, IBM Linux Technology Center, fubar@us.ibm.com
next prev parent reply other threads:[~2012-08-09 21:27 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-08-09 18:30 [net-next] bonding: don't allow the master to become its slave Flavio Leitner
2012-08-09 18:45 ` Leonardo Chiquitto
2012-08-09 19:03 ` Ben Hutchings
2012-08-09 19:23 ` Jay Vosburgh
2012-08-09 19:39 ` Flavio Leitner
2012-08-09 19:55 ` Jiri Pirko
2012-08-09 20:52 ` Flavio Leitner
2012-08-09 21:09 ` Ben Hutchings
2012-08-09 21:27 ` Jay Vosburgh [this message]
2012-08-09 23:43 ` David Miller
2012-08-10 13:04 ` Jiri Pirko
2012-08-09 19:54 ` Jiri Pirko
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=22811.1344547628@death.nxdomain \
--to=fubar@us.ibm.com \
--cc=andy@greyhouse.net \
--cc=bhutchings@solarflare.com \
--cc=fbl@redhat.com \
--cc=jpirko@redhat.com \
--cc=lchiquitto@suse.com \
--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;
as well as URLs for NNTP newsgroup(s).