Blame SOURCES/CVE-2022-1966.patch

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