From: Samuel Thibault <samuel.thibault@labri.fr>
To: ped@listes.subiron.org
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PER] Re: socket, mcast looping back frames -> IPv6 broken
Date: Wed, 6 Mar 2013 14:15:25 +0100 [thread overview]
Message-ID: <20130306131525.GC6173@type.bordeaux.inria.fr> (raw)
In-Reply-To: <20130306122937.GD1954@stefanha-thinkpad.muc.redhat.com>
Stefan Hajnoczi, le Wed 06 Mar 2013 13:29:37 +0100, a écrit :
> On Tue, Mar 05, 2013 at 05:35:10PM +0100, Samuel Thibault wrote:
> > The reason why IPv6 does not work when using -net socket,mcast=foo is
> > that since qemu explicitly sets IP_MULTICAST_LOOP to 1, it receives its
> > own frames. When the IPv6 stack performs duplicate addresse detection
> > (DAD) through a multicasted announce, it receives its own announcement,
> > and thus believes another machine has the same address.
>
> The reason for IP_MULTICAST_LOOP is to allow QEMU processes running on
> the same host to communicate with each other.
Sure, I've seen the comment, I wasn't suggesting to drop that :)
> > AIUI, on a real physical network network boards do not receive the
> > multicasts they send, so the issue does not happen. Perhaps some boards
> > even filter out any frame with its own MAC as source, eliminating the
> > issue altogether.
> >
> > As a result, we should probably perform this kind of dropping, I'm just
> > wondering at which level that would be preferable.
> >
> > - We could do that in qemu_send_packet_async_with_flags, thus fixing the
> > issue for all kinds of frame transporters.
> >
> > - Or we could do that for the only case that matters, mcast, in
> > net_socket_send_dgram (which will thus do it for the unicast udp case
> > too).
> >
> > What do people think about it?
>
> We should fix the layer that introduces the problem. Therefore I think
> the fix needs to be net/socket.c.
Ok.
> Unfortunately net/socket.c does not have the concept of a link-layer
> address, so we cannot easily filter out multicast packets coming from
> our NIC's address.
>
> Are you aware of a way to filter out just the packets sent by *this*
> process?
I haven't seen any in the Linux source code. One thing that should
work, however, is to use recvfrom, and drop whatever comes from our
sockname.
Samuel
next prev parent reply other threads:[~2013-03-06 13:15 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-03-05 16:35 [Qemu-devel] socket,mcast looping back frames -> IPv6 broken Samuel Thibault
2013-03-06 12:29 ` Stefan Hajnoczi
2013-03-06 13:15 ` Samuel Thibault [this message]
2013-03-07 9:38 ` [Qemu-devel] [PER] Re: socket, mcast " Stefan Hajnoczi
2013-03-07 17:14 ` Samuel Thibault
2013-03-08 8:43 ` Stefan Hajnoczi
2013-03-08 9:08 ` Samuel Thibault
2013-03-08 12:47 ` Samuel Thibault
2013-04-01 6:35 ` Mike Lovell
2013-04-01 9:32 ` Samuel Thibault
2013-04-08 11:12 ` Stefan Hajnoczi
2013-03-10 20:01 ` Samuel Thibault
2013-03-11 8:36 ` Stefan Hajnoczi
2013-04-01 0:12 ` [Qemu-devel] [PATCH] Document mcast+ipv6 (Was: Re: socket, mcast looping back frames -> IPv6 broken) Samuel Thibault
2013-04-08 11:13 ` Stefan Hajnoczi
2013-04-08 12:11 ` Samuel Thibault
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=20130306131525.GC6173@type.bordeaux.inria.fr \
--to=samuel.thibault@labri.fr \
--cc=ped@listes.subiron.org \
--cc=qemu-devel@nongnu.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).