naccyde / rpms / iproute

Forked from rpms/iproute 7 months ago
Clone

Blame SOURCES/0013-xfrm-also-check-for-ipv6-state-in-xfrm_state_keep.patch

359b1d
From 40dda2fc9fb2597996e443117df18995c58444a9 Mon Sep 17 00:00:00 2001
359b1d
From: Andrea Claudi <aclaudi@redhat.com>
359b1d
Date: Thu, 30 Apr 2020 12:46:30 +0200
359b1d
Subject: [PATCH] xfrm: also check for ipv6 state in xfrm_state_keep
359b1d
359b1d
Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=1828033
359b1d
Upstream Status: iproute2.git commit d27fc6390ce32
359b1d
359b1d
commit d27fc6390ce32ecdba6324e22b1c341791c5c63f
359b1d
Author: Xin Long <lucien.xin@gmail.com>
359b1d
Date:   Mon Apr 27 15:14:24 2020 +0800
359b1d
359b1d
    xfrm: also check for ipv6 state in xfrm_state_keep
359b1d
359b1d
    As commit f9d696cf414c ("xfrm: not try to delete ipcomp states when using
359b1d
    deleteall") does, this patch is to fix the same issue for ip6 state where
359b1d
    xsinfo->id.proto == IPPROTO_IPV6.
359b1d
359b1d
      # ip xfrm state add src 2000::1 dst 2000::2 spi 0x1000 \
359b1d
        proto comp comp deflate mode tunnel sel src 2000::1 dst \
359b1d
        2000::2 proto gre
359b1d
      # ip xfrm sta deleteall
359b1d
      Failed to send delete-all request
359b1d
      : Operation not permitted
359b1d
359b1d
    Note that the xsinfo->proto in common states can never be IPPROTO_IPV6.
359b1d
359b1d
    Fixes: f9d696cf414c ("xfrm: not try to delete ipcomp states when using deleteall")
359b1d
    Reported-by: Xiumei Mu <xmu@redhat.com>
359b1d
    Signed-off-by: Xin Long <lucien.xin@gmail.com>
359b1d
    Acked-by: Andrea Claudi <aclaudi@redhat.com>
359b1d
    Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
359b1d
---
359b1d
 ip/xfrm_state.c | 3 ++-
359b1d
 1 file changed, 2 insertions(+), 1 deletion(-)
359b1d
359b1d
diff --git a/ip/xfrm_state.c b/ip/xfrm_state.c
359b1d
index d014444e9af4f..44f08ceed24dd 100644
359b1d
--- a/ip/xfrm_state.c
359b1d
+++ b/ip/xfrm_state.c
359b1d
@@ -1131,7 +1131,8 @@ static int xfrm_state_keep(struct nlmsghdr *n, void *arg)
359b1d
 	if (!xfrm_state_filter_match(xsinfo))
359b1d
 		return 0;
359b1d
 
359b1d
-	if (xsinfo->id.proto == IPPROTO_IPIP)
359b1d
+	if (xsinfo->id.proto == IPPROTO_IPIP ||
359b1d
+	    xsinfo->id.proto == IPPROTO_IPV6)
359b1d
 		return 0;
359b1d
 
359b1d
 	if (xb->offset > xb->size) {
359b1d
-- 
359b1d
2.25.4
359b1d