Patch "net: geneve: modify IP header check in geneve6_xmit_skb and geneve_xmit_skb" has been added to the 5.10-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    net: geneve: modify IP header check in geneve6_xmit_skb and geneve_xmit_skb

to the 5.10-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     net-geneve-modify-ip-header-check-in-geneve6_xmit_sk.patch
and it can be found in the queue-5.10 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 32790fa9f90f3ecfc22fd85bbf1677e441a2538b
Author: Phillip Potter <phil@xxxxxxxxxxxxxxxx>
Date:   Fri Apr 23 00:49:45 2021 +0100

    net: geneve: modify IP header check in geneve6_xmit_skb and geneve_xmit_skb
    
    [ Upstream commit d13f048dd40e8577260cd43faea8ec9b77520197 ]
    
    Modify the header size check in geneve6_xmit_skb and geneve_xmit_skb
    to use pskb_inet_may_pull rather than pskb_network_may_pull. This fixes
    two kernel selftest failures introduced by the commit introducing the
    checks:
    IPv4 over geneve6: PMTU exceptions
    IPv4 over geneve6: PMTU exceptions - nexthop objects
    
    It does this by correctly accounting for the fact that IPv4 packets may
    transit over geneve IPv6 tunnels (and vice versa), and still fixes the
    uninit-value bug fixed by the original commit.
    
    Reported-by: kernel test robot <oliver.sang@xxxxxxxxx>
    Fixes: 6628ddfec758 ("net: geneve: check skb is large enough for IPv4/IPv6 header")
    Suggested-by: Sabrina Dubroca <sd@xxxxxxxxxxxxxxx>
    Signed-off-by: Phillip Potter <phil@xxxxxxxxxxxxxxxx>
    Acked-by: Sabrina Dubroca <sd@xxxxxxxxxxxxxxx>
    Signed-off-by: David S. Miller <davem@xxxxxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/net/geneve.c b/drivers/net/geneve.c
index 11864ac101b8..5ddb2dbb8572 100644
--- a/drivers/net/geneve.c
+++ b/drivers/net/geneve.c
@@ -890,7 +890,7 @@ static int geneve_xmit_skb(struct sk_buff *skb, struct net_device *dev,
 	__be16 sport;
 	int err;
 
-	if (!pskb_network_may_pull(skb, sizeof(struct iphdr)))
+	if (!pskb_inet_may_pull(skb))
 		return -EINVAL;
 
 	sport = udp_flow_src_port(geneve->net, skb, 1, USHRT_MAX, true);
@@ -987,7 +987,7 @@ static int geneve6_xmit_skb(struct sk_buff *skb, struct net_device *dev,
 	__be16 sport;
 	int err;
 
-	if (!pskb_network_may_pull(skb, sizeof(struct ipv6hdr)))
+	if (!pskb_inet_may_pull(skb))
 		return -EINVAL;
 
 	sport = udp_flow_src_port(geneve->net, skb, 1, USHRT_MAX, true);



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux