]> git.baikalelectronics.ru Git - kernel.git/commit
drivers/net: Disable UFO through virtio
authorBen Hutchings <ben@decadent.org.uk>
Thu, 30 Oct 2014 18:27:12 +0000 (18:27 +0000)
committerDavid S. Miller <davem@davemloft.net>
Fri, 31 Oct 2014 00:01:18 +0000 (20:01 -0400)
commita4ac0613cac5a3354f68c71182c9b2d4c3398891
tree5244d50331be01616a16bf6f122a8769a1a928d8
parentc7fd19626ee2a91dd0c74e153a3f071f823dbe4a
drivers/net: Disable UFO through virtio

IPv6 does not allow fragmentation by routers, so there is no
fragmentation ID in the fixed header.  UFO for IPv6 requires the ID to
be passed separately, but there is no provision for this in the virtio
net protocol.

Until recently our software implementation of UFO/IPv6 generated a new
ID, but this was a bug.  Now we will use ID=0 for any UFO/IPv6 packet
passed through a tap, which is even worse.

Unfortunately there is no distinction between UFO/IPv4 and v6
features, so disable UFO on taps and virtio_net completely until we
have a proper solution.

We cannot depend on VM managers respecting the tap feature flags, so
keep accepting UFO packets but log a warning the first time we do
this.

Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
Fixes: f07511624590 ("ipv6: reuse ip6_frag_id from ip6_ufo_append_data")
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/macvtap.c
drivers/net/tun.c
drivers/net/virtio_net.c