diff options
author | Linus Lüssing <linus.luessing@web.de> | 2011-02-17 03:17:51 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-02-22 13:07:28 -0500 |
commit | 36cff5a10c6b003fa2d0464848d5664b2bf723e0 (patch) | |
tree | 3c7bbed26f620254a680329600b658746c3c83fc /net | |
parent | e4de9f9e8333fbbae951c6e068f501f955123cf0 (diff) |
bridge: Fix MLD queries' ethernet source address
Map the IPv6 header's destination multicast address to an ethernet
source address instead of the MLD queries multicast address.
For instance for a general MLD query (multicast address in the MLD query
set to ::), this would wrongly be mapped to 33:33:00:00:00:00, although
an MLD queries destination MAC should always be 33:33:00:00:00:01 which
matches the IPv6 header's multicast destination ff02::1.
Signed-off-by: Linus Lüssing <linus.luessing@web.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/bridge/br_multicast.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bridge/br_multicast.c b/net/bridge/br_multicast.c index 1207a5a0688a..c1f24e4d0820 100644 --- a/net/bridge/br_multicast.c +++ b/net/bridge/br_multicast.c | |||
@@ -434,7 +434,6 @@ static struct sk_buff *br_ip6_multicast_alloc_query(struct net_bridge *br, | |||
434 | eth = eth_hdr(skb); | 434 | eth = eth_hdr(skb); |
435 | 435 | ||
436 | memcpy(eth->h_source, br->dev->dev_addr, 6); | 436 | memcpy(eth->h_source, br->dev->dev_addr, 6); |
437 | ipv6_eth_mc_map(group, eth->h_dest); | ||
438 | eth->h_proto = htons(ETH_P_IPV6); | 437 | eth->h_proto = htons(ETH_P_IPV6); |
439 | skb_put(skb, sizeof(*eth)); | 438 | skb_put(skb, sizeof(*eth)); |
440 | 439 | ||
@@ -448,6 +447,7 @@ static struct sk_buff *br_ip6_multicast_alloc_query(struct net_bridge *br, | |||
448 | ip6h->hop_limit = 1; | 447 | ip6h->hop_limit = 1; |
449 | ipv6_addr_set(&ip6h->saddr, 0, 0, 0, 0); | 448 | ipv6_addr_set(&ip6h->saddr, 0, 0, 0, 0); |
450 | ipv6_addr_set(&ip6h->daddr, htonl(0xff020000), 0, 0, htonl(1)); | 449 | ipv6_addr_set(&ip6h->daddr, htonl(0xff020000), 0, 0, htonl(1)); |
450 | ipv6_eth_mc_map(&ip6h->daddr, eth->h_dest); | ||
451 | 451 | ||
452 | hopopt = (u8 *)(ip6h + 1); | 452 | hopopt = (u8 *)(ip6h + 1); |
453 | hopopt[0] = IPPROTO_ICMPV6; /* next hdr */ | 453 | hopopt[0] = IPPROTO_ICMPV6; /* next hdr */ |