diff mbox

[net] udp: only allow UFO for packets from SOCK_DGRAM sockets

Message ID 20150302172711.6BCE4A0B46@unicorn.suse.cz
State Accepted, archived
Delegated to: David Miller
Headers show

Commit Message

Michal Kubecek March 2, 2015, 5:27 p.m. UTC
If an over-MTU UDP datagram is sent through a SOCK_RAW socket to a
UFO-capable device, ip_ufo_append_data() sets skb->ip_summed to
CHECKSUM_PARTIAL unconditionally as all GSO code assumes transport layer
checksum is to be computed on segmentation. However, in this case,
skb->csum_start and skb->csum_offset are never set as raw socket
transmit path bypasses udp_send_skb() where they are usually set. As a
result, driver may access invalid memory when trying to calculate the
checksum and store the result (as observed in virtio_net driver).

Moreover, the very idea of modifying the userspace provided UDP header
is IMHO against raw socket semantics (I wasn't able to find a document
clearly stating this or the opposite, though). And while allowing
CHECKSUM_NONE in the UFO case would be more efficient, it would be a bit
too intrusive change just to handle a corner case like this. Therefore
disallowing UFO for packets from SOCK_DGRAM seems to be the best option.

Signed-off-by: Michal Kubecek <mkubecek@suse.cz>
---
 net/ipv4/ip_output.c  | 3 ++-
 net/ipv6/ip6_output.c | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

Comments

David Miller March 3, 2015, 3:19 a.m. UTC | #1
From: Michal Kubecek <mkubecek@suse.cz>
Date: Mon,  2 Mar 2015 18:27:11 +0100 (CET)

> If an over-MTU UDP datagram is sent through a SOCK_RAW socket to a
> UFO-capable device, ip_ufo_append_data() sets skb->ip_summed to
> CHECKSUM_PARTIAL unconditionally as all GSO code assumes transport layer
> checksum is to be computed on segmentation. However, in this case,
> skb->csum_start and skb->csum_offset are never set as raw socket
> transmit path bypasses udp_send_skb() where they are usually set. As a
> result, driver may access invalid memory when trying to calculate the
> checksum and store the result (as observed in virtio_net driver).
> 
> Moreover, the very idea of modifying the userspace provided UDP header
> is IMHO against raw socket semantics (I wasn't able to find a document
> clearly stating this or the opposite, though). And while allowing
> CHECKSUM_NONE in the UFO case would be more efficient, it would be a bit
> too intrusive change just to handle a corner case like this. Therefore
> disallowing UFO for packets from SOCK_DGRAM seems to be the best option.
> 
> Signed-off-by: Michal Kubecek <mkubecek@suse.cz>

Seems reasonable to me, applied, thanks!
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/net/ipv4/ip_output.c b/net/ipv4/ip_output.c
index d68199d..a7aea20 100644
--- a/net/ipv4/ip_output.c
+++ b/net/ipv4/ip_output.c
@@ -888,7 +888,8 @@  static int __ip_append_data(struct sock *sk,
 	cork->length += length;
 	if (((length > mtu) || (skb && skb_is_gso(skb))) &&
 	    (sk->sk_protocol == IPPROTO_UDP) &&
-	    (rt->dst.dev->features & NETIF_F_UFO) && !rt->dst.header_len) {
+	    (rt->dst.dev->features & NETIF_F_UFO) && !rt->dst.header_len &&
+	    (sk->sk_type == SOCK_DGRAM)) {
 		err = ip_ufo_append_data(sk, queue, getfrag, from, length,
 					 hh_len, fragheaderlen, transhdrlen,
 					 maxfraglen, flags);
diff --git a/net/ipv6/ip6_output.c b/net/ipv6/ip6_output.c
index 7deebf1..0a04a37 100644
--- a/net/ipv6/ip6_output.c
+++ b/net/ipv6/ip6_output.c
@@ -1298,7 +1298,8 @@  emsgsize:
 	if (((length > mtu) ||
 	     (skb && skb_is_gso(skb))) &&
 	    (sk->sk_protocol == IPPROTO_UDP) &&
-	    (rt->dst.dev->features & NETIF_F_UFO)) {
+	    (rt->dst.dev->features & NETIF_F_UFO) &&
+	    (sk->sk_type == SOCK_DGRAM)) {
 		err = ip6_ufo_append_data(sk, queue, getfrag, from, length,
 					  hh_len, fragheaderlen,
 					  transhdrlen, mtu, flags, rt);