From: Hangbin Liu <liuhangbin@gmail.com>
To: netdev@vger.kernel.org
Cc: "Michael S . Tsirkin" <mst@redhat.com>,
Jason Wang <jasowang@redhat.com>,
"David S . Miller" <davem@davemloft.net>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
Maxim Mikityanskiy <maximmi@mellanox.com>,
Willem de Bruijn <willemb@google.com>,
virtualization@lists.linux-foundation.org,
Balazs Nemeth <bnemeth@redhat.com>,
Mike Pattrick <mailmpattric@redhat.com>,
Eric Dumazet <edumazet@google.com>,
Hangbin Liu <liuhangbin@gmail.com>
Subject: [PATCH net 2/2] virtio_net: check L3 protocol for VLAN packets
Date: Mon, 18 Apr 2022 12:43:39 +0800 [thread overview]
Message-ID: <20220418044339.127545-3-liuhangbin@gmail.com> (raw)
In-Reply-To: <20220418044339.127545-1-liuhangbin@gmail.com>
For gso packets, virtio_net_hdr_to_skb() will check the protocol via
virtio_net_hdr_match_proto(). But a packet may come from a raw socket
with a VLAN tag. Checking the VLAN protocol for virtio net_hdr makes no
sense. Let's check the L3 protocol if it's a VLAN packet.
Make the virtio_net_hdr_match_proto() checking for all skbs instead of
only skb without protocol setting.
Also update the data, protocol parameter for
skb_flow_dissect_flow_keys_basic() as the skb->protocol may not IP or IPv6.
Fixes: 7e5cced9ca84 ("net: accept UFOv6 packages in virtio_net_hdr_to_skb")
Signed-off-by: Hangbin Liu <liuhangbin@gmail.com>
---
include/linux/virtio_net.h | 26 +++++++++++++++++++-------
1 file changed, 19 insertions(+), 7 deletions(-)
diff --git a/include/linux/virtio_net.h b/include/linux/virtio_net.h
index a960de68ac69..97b4f9680786 100644
--- a/include/linux/virtio_net.h
+++ b/include/linux/virtio_net.h
@@ -3,6 +3,7 @@
#define _LINUX_VIRTIO_NET_H
#include <linux/if_vlan.h>
+#include <uapi/linux/if_arp.h>
#include <uapi/linux/tcp.h>
#include <uapi/linux/udp.h>
#include <uapi/linux/virtio_net.h>
@@ -102,25 +103,36 @@ static inline int virtio_net_hdr_to_skb(struct sk_buff *skb,
*/
if (gso_type && skb->network_header) {
struct flow_keys_basic keys;
+ __be16 protocol;
if (!skb->protocol) {
- __be16 protocol = dev_parse_header_protocol(skb);
+ protocol = dev_parse_header_protocol(skb);
if (!protocol)
virtio_net_hdr_set_proto(skb, hdr);
- else if (!virtio_net_hdr_match_proto(protocol, hdr->gso_type))
- return -EINVAL;
else
skb->protocol = protocol;
+ } else {
+ protocol = skb->protocol;
}
+
+ /* Get L3 protocol if current protocol is VLAN */
+ if (likely(skb->dev->type == ARPHRD_ETHER) &&
+ eth_type_vlan(protocol))
+ protocol = vlan_get_protocol(skb);
+
+ if (!virtio_net_hdr_match_proto(protocol, hdr->gso_type))
+ return -EINVAL;
+
retry:
if (!skb_flow_dissect_flow_keys_basic(NULL, skb, &keys,
- NULL, 0, 0, 0,
- 0)) {
+ skb->data, protocol,
+ skb_network_offset(skb),
+ skb_headlen(skb), 0)) {
/* UFO does not specify ipv4 or 6: try both */
if (gso_type & SKB_GSO_UDP &&
- skb->protocol == htons(ETH_P_IP)) {
- skb->protocol = htons(ETH_P_IPV6);
+ protocol == htons(ETH_P_IP)) {
+ protocol = htons(ETH_P_IPV6);
goto retry;
}
return -EINVAL;
--
2.35.1
next prev parent reply other threads:[~2022-04-18 4:44 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-04-18 4:43 [PATCH net 0/2] net: fix kernel dropping GSO tagged packets Hangbin Liu
2022-04-18 4:43 ` [PATCH net 1/2] net/af_packet: adjust network header position for VLAN " Hangbin Liu
2022-04-18 15:38 ` Willem de Bruijn
2022-04-18 15:38 ` Willem de Bruijn
2022-04-19 3:02 ` Hangbin Liu
2022-04-19 13:56 ` Willem de Bruijn
2022-04-19 13:56 ` Willem de Bruijn
2022-04-19 14:26 ` Michael S. Tsirkin
2022-04-19 14:26 ` Michael S. Tsirkin
2022-04-20 0:59 ` Hangbin Liu
2022-04-20 2:47 ` Jason Wang
2022-04-20 2:47 ` Jason Wang
2022-04-18 4:43 ` Hangbin Liu [this message]
2022-04-18 15:40 ` [PATCH net 2/2] virtio_net: check L3 protocol for VLAN packets Willem de Bruijn
2022-04-18 15:40 ` Willem de Bruijn
2022-04-19 3:14 ` Hangbin Liu
2022-04-19 13:52 ` Willem de Bruijn
2022-04-19 13:52 ` Willem de Bruijn
2022-04-20 1:11 ` Hangbin Liu
2022-04-20 13:12 ` Willem de Bruijn
2022-04-20 13:12 ` Willem de Bruijn
2022-04-18 5:48 ` [PATCH net 0/2] net: fix kernel dropping GSO tagged packets Hangbin Liu
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220418044339.127545-3-liuhangbin@gmail.com \
--to=liuhangbin@gmail.com \
--cc=bnemeth@redhat.com \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=jasowang@redhat.com \
--cc=kuba@kernel.org \
--cc=mailmpattric@redhat.com \
--cc=maximmi@mellanox.com \
--cc=mst@redhat.com \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=virtualization@lists.linux-foundation.org \
--cc=willemb@google.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.