Blame SOURCES/CVE-2022-1966.patch

558f69
From bdeb7f1c4651240043b0b8a2a5432fc9760cfadf Mon Sep 17 00:00:00 2001
558f69
From: Joe Lawrence <joe.lawrence@redhat.com>
558f69
Date: Wed, 15 Jun 2022 16:10:31 -0400
558f69
Subject: [KPATCH CVE-2022-1966] kpatch fixes for CVE-2022-1966
558f69
558f69
Kernels:
558f69
3.10.0-1160.36.2.el7
558f69
3.10.0-1160.41.1.el7
558f69
3.10.0-1160.42.2.el7
558f69
3.10.0-1160.45.1.el7
558f69
3.10.0-1160.49.1.el7
558f69
3.10.0-1160.53.1.el7
558f69
3.10.0-1160.59.1.el7
558f69
3.10.0-1160.62.1.el7
558f69
3.10.0-1160.66.1.el7
558f69
558f69
Changes since last build:
558f69
arches: x86_64 ppc64le
558f69
nf_tables_api.o: changed function: nft_expr_init
558f69
nft_dynset.o: changed function: nft_dynset_init
558f69
---------------------------
558f69
558f69
Kpatch-MR: https://gitlab.com/redhat/prdsc/rhel/src/kpatch/rhel-7/-/merge_requests/42
558f69
Approved-by: Yannick Cote (@ycote1)
558f69
Modifications: none
558f69
558f69
commit c511e60bebd0546f8ec47a3c1691ab01d262b8e4
558f69
Author: Phil Sutter <psutter@redhat.com>
558f69
Date:   Fri Jun 3 16:54:42 2022 +0200
558f69
558f69
    netfilter: nf_tables: fix memory leak if expr init fails
558f69
558f69
    Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=2093000
558f69
    Upstream Status: commit 6cafaf4764a32
558f69
558f69
    commit 6cafaf4764a32597c2195aa5411b87728e1fde8a
558f69
    Author: Liping Zhang <liping.zhang@spreadtrum.com>
558f69
    Date:   Mon Jun 20 21:11:45 2016 +0800
558f69
558f69
        netfilter: nf_tables: fix memory leak if expr init fails
558f69
558f69
        If expr init fails then we need to free it.
558f69
558f69
        So when the user add a nft rule as follows:
558f69
558f69
          # nft add rule filter input tcp dport 22 flow table ssh \
558f69
            { ip saddr limit rate 0/second }
558f69
558f69
        memory leak will happen.
558f69
558f69
        Signed-off-by: Liping Zhang <liping.zhang@spreadtrum.com>
558f69
        Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
558f69
558f69
    Signed-off-by: Phil Sutter <psutter@redhat.com>
558f69
558f69
commit 4a4cc18bcf8f43c93dbf39cb52308dfaea4ec346
558f69
Author: Phil Sutter <psutter@redhat.com>
558f69
Date:   Fri Jun 3 16:54:43 2022 +0200
558f69
558f69
    netfilter: nf_tables: disallow non-stateful expression in sets earlier
558f69
558f69
    Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=2093000
558f69
    Upstream Status: net.git commit 520778042ccca
558f69
    CVE: CVE-2022-1966
558f69
    Conflicts:
558f69
     * RHEL7 does not have nft_set_elem_expr_alloc(), remove
558f69
       NFT_EXPR_STATEFUL check from nft_dynset_init() instead
558f69
     * Context change in nft_expr_init() as RHEL7 does not have .release_ops
558f69
     * Adjusted new NFT_EXPR_STATEFUL check as upstream renamed 'info' into
558f69
       'expr_info'
558f69
558f69
    commit 520778042ccca019f3ffa136dd0ca565c486cedd
558f69
    Author: Pablo Neira Ayuso <pablo@netfilter.org>
558f69
    Date:   Wed May 25 10:36:38 2022 +0200
558f69
558f69
        netfilter: nf_tables: disallow non-stateful expression in sets earlier
558f69
558f69
        Since 3e135cd499bf ("netfilter: nft_dynset: dynamic stateful expression
558f69
        instantiation"), it is possible to attach stateful expressions to set
558f69
        elements.
558f69
558f69
        cd5125d8f518 ("netfilter: nf_tables: split set destruction in deactivate
558f69
        and destroy phase") introduces conditional destruction on the object to
558f69
        accomodate transaction semantics.
558f69
558f69
        nft_expr_init() calls expr->ops->init() first, then check for
558f69
        NFT_STATEFUL_EXPR, this stills allows to initialize a non-stateful
558f69
        lookup expressions which points to a set, which might lead to UAF since
558f69
        the set is not properly detached from the set->binding for this case.
558f69
        Anyway, this combination is non-sense from nf_tables perspective.
558f69
558f69
        This patch fixes this problem by checking for NFT_STATEFUL_EXPR before
558f69
        expr->ops->init() is called.
558f69
558f69
        The reporter provides a KASAN splat and a poc reproducer (similar to
558f69
        those autogenerated by syzbot to report use-after-free errors). It is
558f69
        unknown to me if they are using syzbot or if they use similar automated
558f69
        tool to locate the bug that they are reporting.
558f69
558f69
        For the record, this is the KASAN splat.
558f69
558f69
        [   85.431824] ==================================================================
558f69
        [   85.432901] BUG: KASAN: use-after-free in nf_tables_bind_set+0x81b/0xa20
558f69
        [   85.433825] Write of size 8 at addr ffff8880286f0e98 by task poc/776
558f69
        [   85.434756]
558f69
        [   85.434999] CPU: 1 PID: 776 Comm: poc Tainted: G        W         5.18.0+ #2
558f69
        [   85.436023] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.14.0-2 04/01/2014
558f69
558f69
        Fixes: 0b2d8a7b638b ("netfilter: nf_tables: add helper functions for expression handling")
558f69
        Reported-and-tested-by: Aaron Adams <edg-e@nccgroup.com>
558f69
        Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
558f69
558f69
    Signed-off-by: Phil Sutter <psutter@redhat.com>
558f69
558f69
Signed-off-by: Joe Lawrence <joe.lawrence@redhat.com>
558f69
---
558f69
 net/netfilter/nf_tables_api.c | 16 +++++++++++-----
558f69
 net/netfilter/nft_dynset.c    |  4 ----
558f69
 2 files changed, 11 insertions(+), 9 deletions(-)
558f69
558f69
diff --git a/net/netfilter/nf_tables_api.c b/net/netfilter/nf_tables_api.c
558f69
index 0f46d90715a3..44738b987690 100644
558f69
--- a/net/netfilter/nf_tables_api.c
558f69
+++ b/net/netfilter/nf_tables_api.c
558f69
@@ -1739,21 +1739,27 @@ struct nft_expr *nft_expr_init(const struct nft_ctx *ctx,
558f69
 
558f69
 	err = nf_tables_expr_parse(ctx, nla, &info;;
558f69
 	if (err < 0)
558f69
-		goto err1;
558f69
+		goto err_expr_parse;
558f69
+
558f69
+	err = -EOPNOTSUPP;
558f69
+	if (!(info.ops->type->flags & NFT_EXPR_STATEFUL))
558f69
+		goto err_expr_stateful;
558f69
 
558f69
 	err = -ENOMEM;
558f69
 	expr = kzalloc(info.ops->size, GFP_KERNEL);
558f69
 	if (expr == NULL)
558f69
-		goto err2;
558f69
+		goto err_expr_stateful;
558f69
 
558f69
 	err = nf_tables_newexpr(ctx, &info, expr);
558f69
 	if (err < 0)
558f69
-		goto err2;
558f69
+		goto err_expr_new;
558f69
 
558f69
 	return expr;
558f69
-err2:
558f69
+err_expr_new:
558f69
+	kfree(expr);
558f69
+err_expr_stateful:
558f69
 	module_put(info.ops->type->owner);
558f69
-err1:
558f69
+err_expr_parse:
558f69
 	return ERR_PTR(err);
558f69
 }
558f69
 
558f69
diff --git a/net/netfilter/nft_dynset.c b/net/netfilter/nft_dynset.c
558f69
index 3f9f8e82716e..0cf187230050 100644
558f69
--- a/net/netfilter/nft_dynset.c
558f69
+++ b/net/netfilter/nft_dynset.c
558f69
@@ -174,10 +174,6 @@ static int nft_dynset_init(const struct nft_ctx *ctx,
558f69
 		priv->expr = nft_expr_init(ctx, tb[NFTA_DYNSET_EXPR]);
558f69
 		if (IS_ERR(priv->expr))
558f69
 			return PTR_ERR(priv->expr);
558f69
-
558f69
-		err = -EOPNOTSUPP;
558f69
-		if (!(priv->expr->ops->type->flags & NFT_EXPR_STATEFUL))
558f69
-			goto err1;
558f69
 	} else if (set->flags & NFT_SET_EVAL)
558f69
 		return -EINVAL;
558f69
 
558f69
-- 
558f69
2.34.3
558f69
558f69