]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
xfrm: validate selector family and prefixlen during match
authorEric Dumazet <edumazet@google.com>
Mon, 15 Jun 2026 09:02:37 +0000 (09:02 +0000)
committerSteffen Klassert <steffen.klassert@secunet.com>
Wed, 17 Jun 2026 09:17:27 +0000 (11:17 +0200)
syzbot reported a shift-out-of-bounds in xfrm_selector_match()
due to AF_UNSPEC selector with large prefixlen (e.g. 128) matched
against IPv4 flow (when XFRM_STATE_AF_UNSPEC is set).

Fix this by:

- Rejecting mismatched families in xfrm_selector_match.
- Returning false in addr4_match if prefixlen > 32.
- Returning false in addr_match if prefixlen > 128 (prevents overflow).

Fixes: 3f0ab59e6537 ("xfrm: validate new SA's prefixlen using SA family when sel.family is unset")
Reported-by: syzbot+9383b1ff0df4b29ca5e6@syzkaller.appspotmail.com
Closes: https://lore.kernel.org/netdev/6a2fbe35.be3f099c.2836ae.0018.GAE@google.com/T/#u
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com>
include/net/xfrm.h
net/xfrm/xfrm_policy.c

index 35a7431293298a9eb7f82c8a865ca45e227e81e1..f8c909b0f0c34ea05ccc97ee52954907a38c19fc 100644 (file)
@@ -943,6 +943,9 @@ static inline bool addr_match(const void *token1, const void *token2,
        unsigned int pdw;
        unsigned int pbi;
 
+       if (prefixlen > 128)
+               return false;
+
        pdw = prefixlen >> 5;     /* num of whole u32 in prefix */
        pbi = prefixlen &  0x1f;  /* num of bits in incomplete u32 in prefix */
 
@@ -967,6 +970,10 @@ static inline bool addr4_match(__be32 a1, __be32 a2, u8 prefixlen)
        /* C99 6.5.7 (3): u32 << 32 is undefined behaviour */
        if (sizeof(long) == 4 && prefixlen == 0)
                return true;
+
+       if (prefixlen > 32)
+               return false;
+
        return !((a1 ^ a2) & htonl(~0UL << (32 - prefixlen)));
 }
 
index 1f4afd580105f97094c6ad8d10001912f67cc731..639934f300167ea1b3d1bfff5dca86ff3515c9c2 100644 (file)
@@ -242,6 +242,9 @@ __xfrm6_selector_match(const struct xfrm_selector *sel, const struct flowi *fl)
 bool xfrm_selector_match(const struct xfrm_selector *sel, const struct flowi *fl,
                         unsigned short family)
 {
+       if (family != sel->family && sel->family != AF_UNSPEC)
+               return false;
+
        switch (family) {
        case AF_INET:
                return __xfrm4_selector_match(sel, fl);