diff options
author | Michal Kubeček <mkubecek@suse.cz> | 2015-11-24 15:07:11 +0100 |
---|---|---|
committer | Ben Hutchings <ben@decadent.org.uk> | 2015-12-30 02:26:02 +0000 |
commit | 55989a061426b670247fa315b7822ce2bd4ef2b4 (patch) | |
tree | 4960df2e94dbaf81271608e12814e1b86969d7a2 /include | |
parent | 80996afb50f7ffa1a7d07d2ad3320afd32e82f56 (diff) | |
download | linux-stable-55989a061426b670247fa315b7822ce2bd4ef2b4.tar.gz linux-stable-55989a061426b670247fa315b7822ce2bd4ef2b4.tar.bz2 linux-stable-55989a061426b670247fa315b7822ce2bd4ef2b4.zip |
ipv6: distinguish frag queues by device for multicast and link-local packets
[ Upstream commit 264640fc2c5f4f913db5c73fa3eb1ead2c45e9d7 ]
If a fragmented multicast packet is received on an ethernet device which
has an active macvlan on top of it, each fragment is duplicated and
received both on the underlying device and the macvlan. If some
fragments for macvlan are processed before the whole packet for the
underlying device is reassembled, the "overlapping fragments" test in
ip6_frag_queue() discards the whole fragment queue.
To resolve this, add device ifindex to the search key and require it to
match reassembling multicast packets and packets to link-local
addresses.
Note: similar patch has been already submitted by Yoshifuji Hideaki in
http://patchwork.ozlabs.org/patch/220979/
but got lost and forgotten for some reason.
Signed-off-by: Michal Kubecek <mkubecek@suse.cz>
Signed-off-by: David S. Miller <davem@davemloft.net>
[bwh: Backported to 3.2: adjust context]
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/net/ipv6.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/net/ipv6.h b/include/net/ipv6.h index ab2e6d724cf8..77763c69e0a6 100644 --- a/include/net/ipv6.h +++ b/include/net/ipv6.h @@ -382,6 +382,7 @@ struct ip6_create_arg { u32 user; const struct in6_addr *src; const struct in6_addr *dst; + int iif; }; void ip6_frag_init(struct inet_frag_queue *q, void *a); |