Jonathan Davies
cf9acc90c8
net: virtio_net_hdr_to_skb: count transport header in UFO
...
virtio_net_hdr_to_skb does not set the skb's gso_size and gso_type
correctly for UFO packets received via virtio-net that are a little over
the GSO size. This can lead to problems elsewhere in the networking
stack, e.g. ovs_vport_send dropping over-sized packets if gso_size is
not set.
This is due to the comparison
if (skb->len - p_off > gso_size)
not properly accounting for the transport layer header.
p_off includes the size of the transport layer header (thlen), so
skb->len - p_off is the size of the TCP/UDP payload.
gso_size is read from the virtio-net header. For UFO, fragmentation
happens at the IP level so does not need to include the UDP header.
Hence the calculation could be comparing a TCP/UDP payload length with
an IP payload length, causing legitimate virtio-net packets to have
lack gso_type/gso_size information.
Example: a UDP packet with payload size 1473 has IP payload size 1481.
If the guest used UFO, it is not fragmented and the virtio-net header's
flags indicate that it is a GSO frame (VIRTIO_NET_HDR_GSO_UDP), with
gso_size = 1480 for an MTU of 1500. skb->len will be 1515 and p_off
will be 42, so skb->len - p_off = 1473. Hence the comparison fails, and
shinfo->gso_size and gso_type are not set as they should be.
Instead, add the UDP header length before comparing to gso_size when
using UFO. In this way, it is the size of the IP payload that is
compared to gso_size.
Fixes: 6dd912f826 ("net: check untrusted gso_size at kernel entry")
Signed-off-by: Jonathan Davies <jonathan.davies@nutanix.com >
Reviewed-by: Willem de Bruijn <willemb@google.com >
Signed-off-by: David S. Miller <davem@davemloft.net >
2021-11-17 14:50:45 +00:00
..
2021-10-19 10:30:51 +01:00
2021-10-29 13:11:53 -07:00
2021-10-24 16:24:29 +02:00
2021-10-05 19:08:11 +02:00
2021-10-27 11:07:59 +02:00
2021-10-20 19:38:29 +02:00
2021-11-03 14:22:00 +00:00
2021-11-08 11:55:21 -08:00
2021-09-28 16:56:05 -06:00
2021-10-27 00:16:00 +02:00
2021-10-19 08:30:45 +01:00
2021-11-02 16:36:28 -07:00
2021-10-13 11:34:49 -04:00
2021-11-08 12:07:52 -08:00
2021-10-05 13:15:35 +01:00
2021-11-16 12:20:19 -08:00
2021-11-01 18:55:12 -07:00
2021-10-21 20:02:42 +01:00
2021-10-14 23:06:53 +02:00
2021-10-14 23:06:53 +02:00
2021-10-14 23:06:53 +02:00
2021-10-14 23:06:53 +02:00
2021-09-20 12:43:34 +01:00
2021-11-10 11:36:43 -08:00
2021-10-02 17:49:11 +02:00
2021-10-14 09:22:11 -07:00
2021-10-21 14:18:42 +01:00
2021-11-10 16:15:54 -08:00
2021-11-03 21:18:44 -07:00
2021-11-12 11:53:16 -08:00
2021-11-10 16:45:54 -08:00
2021-10-22 10:54:51 +02:00
2021-11-05 08:41:02 +01:00
2021-11-10 11:52:40 -08:00
2021-09-19 22:35:37 -04:00
2021-10-29 22:34:31 -05:00
2021-10-15 11:25:15 +02:00
2021-10-18 13:11:06 +01:00
2021-10-07 16:51:57 +02:00
2021-10-26 21:01:48 -06:00
2021-10-01 16:52:48 -04:00
2021-11-01 21:17:39 -07:00
2021-11-06 13:30:34 -07:00
2021-11-06 14:08:17 -07:00
2021-10-27 06:54:58 -06:00
2021-10-26 19:30:38 -07:00
2021-10-18 14:43:23 -06:00
2021-10-21 10:49:32 -06:00
2021-10-18 06:17:02 -06:00
2021-11-09 11:20:07 -08:00
2021-11-01 10:25:27 -07:00
2021-10-18 06:17:02 -06:00
2021-10-10 22:16:02 -04:00
2021-11-09 10:02:49 -08:00
2021-11-01 19:59:46 -07:00
2021-10-05 17:07:41 -07:00
2021-11-02 15:37:27 -07:00
2021-11-15 20:47:07 -08:00
2021-10-05 17:07:41 -07:00
2021-10-24 13:42:28 +01:00
2021-10-05 17:07:42 -07:00
2021-09-24 16:13:35 -07:00
2021-10-18 06:17:36 -06:00
2021-10-04 11:46:05 +02:00
2021-11-06 13:30:39 -07:00
2021-11-07 10:38:17 -08:00
2021-11-07 10:38:17 -08:00
2021-11-06 14:08:17 -07:00
2021-10-05 15:02:44 +02:00
2021-11-09 10:02:49 -08:00
2021-10-21 13:02:47 +02:00
2021-11-02 19:31:28 +01:00
2021-11-02 19:31:28 +01:00
2021-09-21 17:34:53 +02:00
2021-11-06 13:30:38 -07:00
2021-11-09 10:02:52 -08:00
2021-11-06 13:30:46 -07:00
2021-09-27 11:32:51 -07:00
2021-09-17 15:08:45 +02:00
2021-11-09 10:02:49 -08:00
2021-10-21 10:49:32 -06:00
2021-11-03 08:05:59 -07:00
2021-11-05 13:50:15 +10:00
2021-10-25 12:01:14 +05:30
2021-10-18 12:31:48 +02:00
2021-10-21 16:03:31 +02:00
2021-10-18 20:22:03 -10:00
2021-10-05 16:33:05 +02:00
2021-10-19 12:46:24 +01:00
2021-11-03 11:20:45 +00:00
2021-10-06 17:47:50 -07:00
2021-10-27 12:53:45 +02:00
2021-10-13 15:29:23 +02:00
2021-11-02 06:20:58 -07:00
2021-11-01 13:44:26 -05:00
2021-10-22 14:13:53 +02:00
2021-10-18 07:49:39 -04:00
2021-10-25 15:34:41 -07:00
2021-11-11 09:49:36 -08:00
2021-11-03 17:44:29 +09:00
2021-09-20 19:32:33 -07:00
2021-10-22 09:50:55 +10:30
2021-10-27 12:35:05 +02:00
2021-10-27 12:34:49 +02:00
2021-10-21 14:19:00 -04:00
2021-11-09 10:02:49 -08:00
2021-11-09 10:02:49 -08:00
2021-11-09 11:16:20 -08:00
2021-11-06 14:08:17 -07:00
2021-10-18 07:49:38 -04:00
2021-11-06 14:08:17 -07:00
2021-09-27 09:27:30 -04:00
2021-11-09 10:02:48 -08:00
2021-10-28 11:26:40 +00:00
2021-11-03 19:03:55 +01:00
2021-11-02 06:20:58 -07:00
2021-11-01 19:57:14 -07:00
2021-11-09 10:02:49 -08:00
2021-10-18 12:31:48 +02:00
2021-11-06 13:30:36 -07:00
2021-09-23 09:25:59 +02:00
2021-11-02 12:25:03 -07:00
2021-10-05 06:54:16 -05:00
2021-10-05 06:54:16 -05:00
2021-11-01 19:57:14 -07:00
2021-10-15 11:25:18 +02:00
2021-10-28 13:34:57 +01:00
2021-10-28 21:11:34 +01:00
2021-10-26 10:13:31 +01:00
2021-11-06 14:36:12 -07:00
2021-11-09 10:02:51 -08:00
2021-11-06 14:08:17 -07:00
2021-10-05 15:51:35 +02:00
2021-11-09 10:11:53 -08:00
2021-11-06 13:30:43 -07:00
2021-09-30 21:24:08 -04:00
2021-10-18 07:49:39 -04:00
2021-10-01 03:44:57 -04:00
2021-09-27 16:16:42 +02:00
2021-11-12 08:05:17 +09:00
2021-11-09 10:02:49 -08:00
2021-11-09 10:02:49 -08:00
2021-09-17 15:08:45 +02:00
2021-10-30 16:37:28 +02:00
2021-11-14 12:21:53 +00:00
2021-11-14 12:21:53 +00:00
2021-09-30 12:46:44 -06:00
2021-10-24 13:40:33 +01:00
2021-10-04 11:47:24 +02:00
2021-11-10 11:29:30 -08:00
2021-11-06 14:08:17 -07:00
2021-11-06 13:30:42 -07:00
2021-11-06 13:30:42 -07:00
2021-11-06 13:30:41 -07:00
2021-09-29 10:54:50 +01:00
2021-11-06 13:30:41 -07:00
2021-11-11 09:34:35 -08:00
2021-09-20 07:35:38 -10:00
2021-09-27 09:27:29 -04:00
2021-11-06 14:08:17 -07:00
2021-11-06 14:08:17 -07:00
2021-09-27 09:27:29 -04:00
2021-11-06 13:30:40 -07:00
2021-09-21 13:44:55 -07:00
2021-10-18 14:05:25 +01:00
2021-10-14 23:06:28 +02:00
2021-09-27 09:27:31 -04:00
2021-10-05 13:07:03 +01:00
2021-11-02 12:31:23 -04:00
2021-11-05 14:54:40 -04:00
2021-11-05 14:54:39 -04:00
2021-11-06 13:30:42 -07:00
2021-10-20 19:16:00 +02:00
2021-10-20 19:16:01 +02:00
2021-10-27 08:03:19 +02:00
2021-10-13 15:33:17 +02:00
2021-09-30 21:24:07 -04:00
2021-10-25 10:56:37 +02:00
2021-10-14 15:59:04 -07:00
2021-10-20 13:37:25 -05:00
2021-10-18 07:49:39 -04:00
2021-11-11 09:34:35 -08:00
2021-09-27 09:27:29 -04:00
2021-11-06 14:08:17 -07:00
2021-11-09 10:11:53 -08:00
2021-10-18 06:17:02 -06:00
2021-09-27 17:00:21 +02:00
2021-11-11 15:10:18 -08:00
2021-10-21 08:37:26 -06:00
2021-11-06 13:30:34 -07:00
2021-11-02 06:20:58 -07:00
2021-10-26 15:10:36 +01:00
2021-10-26 15:10:36 +01:00
2021-10-14 13:29:18 +02:00
2021-09-20 22:28:47 +02:00
2021-11-09 10:02:49 -08:00
2021-10-04 16:33:15 +05:30
2021-10-27 20:49:32 +02:00
2021-11-01 20:05:19 -07:00
2021-10-07 13:39:51 +01:00
2021-10-06 11:27:41 -05:00
2021-11-05 11:51:41 +01:00
2021-10-07 16:51:57 +02:00
2021-11-09 10:02:49 -08:00
2021-10-15 09:49:55 -05:00
2021-10-18 07:49:39 -04:00
2021-11-10 09:05:11 -08:00
2021-10-18 17:20:50 +02:00
2021-10-30 16:37:28 +02:00
2021-10-30 16:37:28 +02:00
2021-11-09 10:02:49 -08:00
2021-11-09 10:11:53 -08:00
2021-11-03 12:15:29 -07:00
2021-10-18 20:22:03 -10:00
2021-11-14 12:21:53 +00:00
2021-11-09 10:02:52 -08:00
2021-11-03 14:09:26 -05:00
2021-11-09 10:11:53 -08:00
2021-11-15 13:01:20 +00:00
2021-11-09 00:56:35 +01:00
2021-11-06 13:30:43 -07:00
2021-11-06 13:30:32 -07:00
2021-11-09 10:02:49 -08:00
2021-10-26 14:58:45 +01:00
2021-10-30 16:37:28 +02:00
2021-10-30 16:37:28 +02:00
2021-11-09 10:11:53 -08:00
2021-11-09 10:02:50 -08:00
2021-11-06 13:30:43 -07:00
2021-10-18 12:28:52 -07:00
2021-11-09 10:02:50 -08:00
2021-11-03 11:41:25 -07:00
2021-11-06 14:08:17 -07:00
2021-09-29 12:50:34 +02:00
2021-10-14 09:22:47 -05:00
2021-10-07 13:51:11 +02:00
2021-10-18 06:17:02 -06:00
2021-10-15 11:55:41 +02:00
2021-09-25 08:20:49 -07:00
2021-10-15 11:25:16 +02:00
2021-10-26 05:03:34 +03:00
2021-10-27 12:27:17 -04:00
2021-11-01 20:05:19 -07:00
2021-09-22 10:24:01 -04:00
2021-10-30 11:02:00 +02:00
2021-09-22 16:59:13 +02:00
2021-09-22 16:59:13 +02:00
2021-09-22 16:59:13 +02:00
2021-10-18 12:54:41 +01:00
2021-10-24 15:26:06 +02:00
2021-10-18 16:02:30 -05:00
2021-11-01 05:26:49 -04:00
2021-09-30 12:46:44 -06:00
2021-11-01 05:26:48 -04:00
2021-11-17 14:50:45 +00:00
2021-11-01 04:30:34 -04:00
2021-11-01 05:26:48 -04:00
2021-11-06 13:30:36 -07:00
2021-10-18 07:49:40 -04:00
2021-10-07 13:51:15 +02:00
2021-10-20 06:19:03 -10:00
2021-11-01 09:19:50 -07:00
2021-09-17 15:08:41 +02:00
2021-10-19 23:44:30 +08:00