Blame SOURCES/CVE-2023-32233.patch

525fd3
From 7972a497548bcdfc7f3b6f24a1fd5e4b0e008fff Mon Sep 17 00:00:00 2001
525fd3
From: Ryan Sullivan <rysulliv@redhat.com>
525fd3
Date: Thu, 15 Jun 2023 10:43:28 -0400
525fd3
Subject: [KPATCH CVE-2023-32233] kpatch fixes for CVE-2023-32233
525fd3
525fd3
Kernels:
525fd3
3.10.0-1160.81.1.el7
525fd3
3.10.0-1160.83.1.el7
525fd3
3.10.0-1160.88.1.el7
525fd3
3.10.0-1160.90.1.el7
525fd3
3.10.0-1160.92.1.el7
525fd3
525fd3
525fd3
Kpatch-MR: https://gitlab.com/redhat/prdsc/rhel/src/kpatch/rhel-7/-/merge_requests/54
525fd3
Approved-by: Yannick Cote (@ycote1)
525fd3
Approved-by: Joe Lawrence (@joe.lawrence)
525fd3
Changes since last build:
525fd3
[x86_64]:
525fd3
l2cap_core.o: changed function: l2cap_data_channel
525fd3
l2cap_core.o: changed function: l2cap_rx_state_recv
525fd3
nf_tables_api.o: changed function: __nf_tables_abort
525fd3
nf_tables_api.o: changed function: nf_tables_delsetelem
525fd3
nf_tables_api.o: changed function: nf_tables_newset
525fd3
nf_tables_api.o: changed function: nft_delrule
525fd3
nf_tables_api.o: changed function: nft_set_destroy
525fd3
nf_tables_api.o: changed function: nft_validate_register_store
525fd3
nf_tables_api.o: new function: nf_tables_activate_set
525fd3
nf_tables_api.o: new function: nf_tables_deactivate_set
525fd3
nf_tables_api.o: new function: nft_rule_expr_deactivate
525fd3
nft_dynset.o: new function: klp_is_nft_dynset
525fd3
nft_dynset.o: new function: nft_dynset_activate
525fd3
nft_dynset.o: new function: nft_dynset_deactivate
525fd3
nft_lookup.o: new function: klp_is_nft_lookup
525fd3
nft_lookup.o: new function: nft_lookup_activate
525fd3
nft_lookup.o: new function: nft_lookup_deactivate
525fd3
525fd3
[ppc64le]:
525fd3
l2cap_core.o: changed function: l2cap_data_channel
525fd3
l2cap_core.o: changed function: l2cap_rx_state_recv
525fd3
nf_tables_api.o: changed function: __nf_tables_abort
525fd3
nf_tables_api.o: changed function: nf_tables_bind_check_setelem
525fd3
nf_tables_api.o: changed function: nf_tables_bind_set
525fd3
nf_tables_api.o: changed function: nf_tables_commit
525fd3
nf_tables_api.o: changed function: nf_tables_delrule
525fd3
nf_tables_api.o: changed function: nf_tables_delsetelem
525fd3
nf_tables_api.o: changed function: nf_tables_newset
525fd3
nf_tables_api.o: changed function: nf_tables_unbind_set
525fd3
nf_tables_api.o: changed function: nft_add_set_elem
525fd3
nf_tables_api.o: changed function: nft_delrule_by_chain
525fd3
nf_tables_api.o: changed function: nft_unregister_afinfo
525fd3
nf_tables_api.o: changed function: nft_validate_register_store
525fd3
nf_tables_api.o: new function: nf_tables_activate_set
525fd3
nf_tables_api.o: new function: nf_tables_deactivate_set
525fd3
nft_dynset.o: new function: klp_is_nft_dynset
525fd3
nft_dynset.o: new function: nft_dynset_activate
525fd3
nft_dynset.o: new function: nft_dynset_deactivate
525fd3
nft_lookup.o: new function: klp_is_nft_lookup
525fd3
nft_lookup.o: new function: nft_lookup_activate
525fd3
nft_lookup.o: new function: nft_lookup_deactivate
525fd3
525fd3
---------------------------
525fd3
525fd3
Modifications:
525fd3
- Removes prototype definitions of nf_tables_activate_set() and
525fd3
nf_tables_deactivate_set() from nf_tables.h and moves them into the
525fd3
affected files above when they are called
525fd3
525fd3
- Adds optimization attribute "-fno-optimize-sibling-calls" to the
525fd3
nf_tables_deactivate_set()
525fd3
525fd3
- Removes definitions/edits of the policy and removed fields from the
525fd3
nft_set struct instead using a shadow variable
525fd3
(ID = KLP_CVE_2023_32233), created in nf_tables_newset() and
525fd3
destroyed in nft_set_destroy()
525fd3
525fd3
- Removes .activate and .deactivate from nft_(dynset/lookup)_ops and
525fd3
instead changes nft_rule_expr_(activate/deactivate) to directly call
525fd3
activate and deactivate functions from within them
525fd3
525fd3
commit ffb7eb4b21c69f2b5e084c85b37eb033544e3fc9
525fd3
Author: Florian Westphal <fwestpha@redhat.com>
525fd3
Date:   Tue May 16 13:34:35 2023 +0200
525fd3
525fd3
    netfilter: nf_tables: deactivate anonymous set from preparation phase
525fd3
525fd3
    Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=2196159
525fd3
    Upstream Status: commit c1592a89942e9
525fd3
    CVE: CVE-2023-32233
525fd3
    Conflicts: everywhere
525fd3
    Tested: nftables v0.8 shell/py tests
525fd3
525fd3
    A rule like
525fd3
525fd3
    ip saddr { 1.2.3.4, 5.6.7.8 } accept
525fd3
525fd3
    consists of multiple expressions and a set (the part in { }).
525fd3
525fd3
    This set only has a auto-assigned name "__set%d" hidden from
525fd3
    userspace view, but its still internally referenceable this way.
525fd3
525fd3
    Such "anonymous" sets are owned by the rule that use it.
525fd3
    Rule deletion auto-removes the set as well.
525fd3
525fd3
    Unfortunately userspace can craft a transaction that first
525fd3
    deletes the rule and then attempts an operation on the anon
525fd3
    set, such as deleting it or deleting an element from the set.
525fd3
525fd3
    Upstream patch uses existing delete/activate callbacks to disable
525fd3
    the set in the new generation (the "preview" of the future ruleset).
525fd3
    This makes such attempt at (re)using the set fail because the set
525fd3
    won't be visible anymore.
525fd3
525fd3
    In RHEL7 we cannot mark the set as inactive in next generation
525fd3
    because neither sets nor set elements have such a generation bit mask.
525fd3
525fd3
    This backport adds minimal bits from
525fd3
    408070d6ee3490 "netfilter: nf_tables: add nft_set_is_anonymous() helper"
525fd3
    bb7b40aecbf778 "netfilter: nf_tables: bogus EBUSY in chain deletions"
525fd3
    cd5125d8f51882 "netfilter: nf_tables: split set destruction in deactivate and destroy phase"
525fd3
525fd3
    for the necessary infrastructure to mark anon sets as
525fd3
    "to be removed" from transaction preparation phase.
525fd3
525fd3
    Introduce an explicit "removed" bit flag that is set once the nft_lookup
525fd3
    or dynset expression referencing an anonymous set gets scheduled for
525fd3
    removal in the transaction phase.
525fd3
525fd3
    This can then be detected in a subsequent DELSETEM attempt and
525fd3
    an error can be returned.
525fd3
525fd3
    commit c1592a89942e9678f7d9c8030efa777c0d57edab
525fd3
    Author: Pablo Neira Ayuso <pablo@netfilter.org>
525fd3
    Date:   Tue May 2 10:25:24 2023 +0200
525fd3
525fd3
        netfilter: nf_tables: deactivate anonymous set from preparation phase
525fd3
525fd3
        Toggle deleted anonymous sets as inactive in the next generation, so
525fd3
        users cannot perform any update on it. Clear the generation bitmask
525fd3
        in case the transaction is aborted.
525fd3
525fd3
        The following KASAN splat shows a set element deletion for a bound
525fd3
        anonymous set that has been already removed in the same transaction.
525fd3
525fd3
        [   64.921510] ==================================================================
525fd3
        [   64.923123] BUG: KASAN: wild-memory-access in nf_tables_commit+0xa24/0x1490 [nf_tables]
525fd3
        [   64.924745] Write of size 8 at addr dead000000000122 by task test/890
525fd3
        [   64.927903] CPU: 3 PID: 890 Comm: test Not tainted 6.3.0+ #253
525fd3
        [   64.931120] Call Trace:
525fd3
        [   64.932699]  <TASK>
525fd3
        [   64.934292]  dump_stack_lvl+0x33/0x50
525fd3
        [   64.935908]  ? nf_tables_commit+0xa24/0x1490 [nf_tables]
525fd3
        [   64.937551]  kasan_report+0xda/0x120
525fd3
        [   64.939186]  ? nf_tables_commit+0xa24/0x1490 [nf_tables]
525fd3
        [   64.940814]  nf_tables_commit+0xa24/0x1490 [nf_tables]
525fd3
        [   64.942452]  ? __kasan_slab_alloc+0x2d/0x60
525fd3
        [   64.944070]  ? nf_tables_setelem_notify+0x190/0x190 [nf_tables]
525fd3
        [   64.945710]  ? kasan_set_track+0x21/0x30
525fd3
        [   64.947323]  nfnetlink_rcv_batch+0x709/0xd90 [nfnetlink]
525fd3
        [   64.948898]  ? nfnetlink_rcv_msg+0x480/0x480 [nfnetlink]
525fd3
525fd3
        Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
525fd3
525fd3
    Signed-off-by: Florian Westphal <fwestpha@redhat.com>
525fd3
525fd3
Signed-off-by: Ryan Sullivan <rysulliv@redhat.com>
525fd3
---
525fd3
 net/netfilter/nf_tables_api.c | 97 ++++++++++++++++++++++++++++++++++-
525fd3
 net/netfilter/nft_dynset.c    | 26 ++++++++++
525fd3
 net/netfilter/nft_lookup.c    | 26 ++++++++++
525fd3
 3 files changed, 147 insertions(+), 2 deletions(-)
525fd3
525fd3
diff --git a/net/netfilter/nf_tables_api.c b/net/netfilter/nf_tables_api.c
525fd3
index 44738b987690..feff3b92a617 100644
525fd3
--- a/net/netfilter/nf_tables_api.c
525fd3
+++ b/net/netfilter/nf_tables_api.c
525fd3
@@ -20,6 +20,9 @@
525fd3
 #include <net/netfilter/nf_tables.h>
525fd3
 #include <net/net_namespace.h>
525fd3
 #include <net/sock.h>
525fd3
+#include <linux/livepatch.h>
525fd3
+
525fd3
+#define KLP_CVE_2023_32233 	0x2022101200000111
525fd3
 
525fd3
 static LIST_HEAD(nf_tables_expressions);
525fd3
 
525fd3
@@ -260,6 +263,50 @@ static inline void nft_rule_clear(struct net *net, struct nft_rule *rule)
525fd3
 	rule->genmask &= ~nft_genmask_next(net);
525fd3
 }
525fd3
 
525fd3
+extern void nft_dynset_deactivate(const struct nft_ctx *ctx,
525fd3
+				  const struct nft_expr *expr);
525fd3
+extern void nft_dynset_activate(const struct nft_ctx *ctx,
525fd3
+				const struct nft_expr *expr);
525fd3
+extern int klp_is_nft_dynset(const struct nft_expr *expr);
525fd3
+
525fd3
+extern void nft_lookup_deactivate(const struct nft_ctx *ctx,
525fd3
+				  const struct nft_expr *expr);
525fd3
+extern void nft_lookup_activate(const struct nft_ctx *ctx,
525fd3
+				const struct nft_expr *expr);
525fd3
+extern int klp_is_nft_lookup(const struct nft_expr *expr);
525fd3
+
525fd3
+static void nft_rule_expr_activate(const struct nft_ctx *ctx,
525fd3
+				   struct nft_rule *rule)
525fd3
+{
525fd3
+	struct nft_expr *expr;
525fd3
+
525fd3
+	expr = nft_expr_first(rule);
525fd3
+	while (expr != nft_expr_last(rule) && expr->ops) {
525fd3
+		if (klp_is_nft_dynset(expr))
525fd3
+			nft_dynset_activate(ctx, expr);
525fd3
+		else if (klp_is_nft_lookup(expr))
525fd3
+			nft_lookup_activate(ctx, expr);
525fd3
+
525fd3
+		expr = nft_expr_next(expr);
525fd3
+	}
525fd3
+}
525fd3
+
525fd3
+static void nft_rule_expr_deactivate(const struct nft_ctx *ctx,
525fd3
+				     struct nft_rule *rule)
525fd3
+{
525fd3
+	struct nft_expr *expr;
525fd3
+
525fd3
+	expr = nft_expr_first(rule);
525fd3
+	while (expr != nft_expr_last(rule) && expr->ops) {
525fd3
+		if (klp_is_nft_dynset(expr))
525fd3
+			nft_dynset_deactivate(ctx, expr);
525fd3
+		else if (klp_is_nft_lookup(expr))
525fd3
+			nft_lookup_deactivate(ctx, expr);
525fd3
+
525fd3
+		expr = nft_expr_next(expr);
525fd3
+	}
525fd3
+}
525fd3
+
525fd3
 static int
525fd3
 nf_tables_delrule_deactivate(struct nft_ctx *ctx, struct nft_rule *rule)
525fd3
 {
525fd3
@@ -301,6 +348,7 @@ static int nft_delrule(struct nft_ctx *ctx, struct nft_rule *rule)
525fd3
 		nft_trans_destroy(trans);
525fd3
 		return err;
525fd3
 	}
525fd3
+	nft_rule_expr_deactivate(ctx, rule);
525fd3
 
525fd3
 	return 0;
525fd3
 }
525fd3
@@ -2736,6 +2784,7 @@ static int nf_tables_newset(struct net *net, struct sock *nlsk,
525fd3
 	unsigned char *udata;
525fd3
 	u16 udlen;
525fd3
 	int err;
525fd3
+	u16 *klp_removed;
525fd3
 
525fd3
 	if (nla[NFTA_SET_TABLE] == NULL ||
525fd3
 	    nla[NFTA_SET_NAME] == NULL ||
525fd3
@@ -2861,10 +2910,16 @@ static int nf_tables_newset(struct net *net, struct sock *nlsk,
525fd3
 	if (set == NULL)
525fd3
 		goto err1;
525fd3
 
525fd3
+	klp_removed = klp_shadow_alloc(set, KLP_CVE_2023_32233,
525fd3
+				      sizeof(*klp_removed), GFP_KERNEL,
525fd3
+				      NULL, NULL);
525fd3
+	if(!klp_removed)
525fd3
+		goto err2;
525fd3
+
525fd3
 	nla_strlcpy(name, nla[NFTA_SET_NAME], sizeof(set->name));
525fd3
 	err = nf_tables_set_alloc_name(&ctx, set, name);
525fd3
 	if (err < 0)
525fd3
-		goto err2;
525fd3
+		goto klp_err;
525fd3
 
525fd3
 	udata = NULL;
525fd3
 	if (udlen) {
525fd3
@@ -2889,7 +2944,7 @@ static int nf_tables_newset(struct net *net, struct sock *nlsk,
525fd3
 
525fd3
 	err = ops->init(set, &desc, nla);
525fd3
 	if (err < 0)
525fd3
-		goto err2;
525fd3
+		goto klp_err;
525fd3
 
525fd3
 	err = nft_trans_set_add(&ctx, NFT_MSG_NEWSET, set);
525fd3
 	if (err < 0)
525fd3
@@ -2901,6 +2956,8 @@ static int nf_tables_newset(struct net *net, struct sock *nlsk,
525fd3
 
525fd3
 err3:
525fd3
 	ops->destroy(set);
525fd3
+klp_err:
525fd3
+	klp_shadow_free(set, KLP_CVE_2023_32233, NULL);
525fd3
 err2:
525fd3
 	kfree(set);
525fd3
 err1:
525fd3
@@ -2910,6 +2967,7 @@ err1:
525fd3
 
525fd3
 static void nft_set_destroy(struct nft_set *set)
525fd3
 {
525fd3
+	klp_shadow_free(set, KLP_CVE_2023_32233, NULL);
525fd3
 	set->ops->destroy(set);
525fd3
 	module_put(set->ops->owner);
525fd3
 	kfree(set);
525fd3
@@ -3013,6 +3071,34 @@ void nf_tables_unbind_set(const struct nft_ctx *ctx, struct nft_set *set,
525fd3
 		nf_tables_set_destroy(ctx, set);
525fd3
 }
525fd3
 
525fd3
+static inline bool nft_set_is_anonymous(const struct nft_set *set)
525fd3
+{
525fd3
+	return set->flags & NFT_SET_ANONYMOUS;
525fd3
+}
525fd3
+
525fd3
+void nf_tables_activate_set(const struct nft_ctx *ctx, struct nft_set *set)
525fd3
+{
525fd3
+	u16 *klp_removed;
525fd3
+
525fd3
+	if (nft_set_is_anonymous(set)) {
525fd3
+		klp_removed = klp_shadow_get(set, KLP_CVE_2023_32233);
525fd3
+		if(klp_removed)
525fd3
+			*klp_removed = 0;
525fd3
+	}
525fd3
+}
525fd3
+
525fd3
+__attribute__((optimize("-fno-optimize-sibling-calls")))
525fd3
+void nf_tables_deactivate_set(const struct nft_ctx *ctx, struct nft_set *set,
525fd3
+			      struct nft_set_binding *binding)
525fd3
+{
525fd3
+	u16 *klp_removed;
525fd3
+	klp_removed = klp_shadow_get(set, KLP_CVE_2023_32233);
525fd3
+	if (nft_set_is_anonymous(set)) {
525fd3
+		if(klp_removed)
525fd3
+			*klp_removed = 1;
525fd3
+	}
525fd3
+}
525fd3
+
525fd3
 const struct nft_set_ext_type nft_set_ext_types[] = {
525fd3
 	[NFT_SET_EXT_KEY]		= {
525fd3
 		.align	= __alignof__(u32),
525fd3
@@ -3705,6 +3791,7 @@ static int nf_tables_delsetelem(struct net *net, struct sock *nlsk,
525fd3
 	struct nft_set *set;
525fd3
 	struct nft_ctx ctx;
525fd3
 	int rem, err = 0;
525fd3
+	u16 *klp_removed;
525fd3
 
525fd3
 	err = nft_ctx_init_from_elemattr(&ctx, net, skb, nlh, nla);
525fd3
 	if (err < 0)
525fd3
@@ -3716,6 +3803,10 @@ static int nf_tables_delsetelem(struct net *net, struct sock *nlsk,
525fd3
 	if (!list_empty(&set->bindings) && set->flags & NFT_SET_CONSTANT)
525fd3
 		return -EBUSY;
525fd3
 
525fd3
+	klp_removed = klp_shadow_get(set, KLP_CVE_2023_32233);
525fd3
+	if (klp_removed && *klp_removed)
525fd3
+		return -ENOENT;
525fd3
+
525fd3
 	if (nla[NFTA_SET_ELEM_LIST_ELEMENTS] == NULL) {
525fd3
 		struct nft_set_dump_args args = {
525fd3
 			.iter	= {
525fd3
@@ -4152,11 +4243,13 @@ static int __nf_tables_abort(struct net *net)
525fd3
 			break;
525fd3
 		case NFT_MSG_NEWRULE:
525fd3
 			trans->ctx.chain->use--;
525fd3
+			nft_rule_expr_deactivate(&trans->ctx, nft_trans_rule(trans));
525fd3
 			list_del_rcu(&nft_trans_rule(trans)->list);
525fd3
 			break;
525fd3
 		case NFT_MSG_DELRULE:
525fd3
 			trans->ctx.chain->use++;
525fd3
 			nft_rule_clear(trans->ctx.net, nft_trans_rule(trans));
525fd3
+			nft_rule_expr_activate(&trans->ctx, nft_trans_rule(trans));
525fd3
 			nft_trans_destroy(trans);
525fd3
 			break;
525fd3
 		case NFT_MSG_NEWSET:
525fd3
diff --git a/net/netfilter/nft_dynset.c b/net/netfilter/nft_dynset.c
525fd3
index 0cf187230050..4d6d3af26a5b 100644
525fd3
--- a/net/netfilter/nft_dynset.c
525fd3
+++ b/net/netfilter/nft_dynset.c
525fd3
@@ -204,6 +204,32 @@ err1:
525fd3
 	return err;
525fd3
 }
525fd3
 
525fd3
+void nf_tables_deactivate_set(const struct nft_ctx *ctx, struct nft_set *set,
525fd3
+			      struct nft_set_binding *binding);
525fd3
+
525fd3
+void nft_dynset_deactivate(const struct nft_ctx *ctx,
525fd3
+				  const struct nft_expr *expr)
525fd3
+{
525fd3
+	struct nft_dynset *priv = nft_expr_priv(expr);
525fd3
+
525fd3
+	nf_tables_deactivate_set(ctx, priv->set, &priv->binding);
525fd3
+}
525fd3
+
525fd3
+void nf_tables_activate_set(const struct nft_ctx *ctx, struct nft_set *set);
525fd3
+
525fd3
+void nft_dynset_activate(const struct nft_ctx *ctx,
525fd3
+				const struct nft_expr *expr)
525fd3
+{
525fd3
+	struct nft_dynset *priv = nft_expr_priv(expr);
525fd3
+
525fd3
+	nf_tables_activate_set(ctx, priv->set);
525fd3
+}
525fd3
+
525fd3
+int klp_is_nft_dynset(const struct nft_expr *expr)
525fd3
+{
525fd3
+	return expr->ops->type == &nft_dynset_type;
525fd3
+}
525fd3
+
525fd3
 static void nft_dynset_destroy(const struct nft_ctx *ctx,
525fd3
 			       const struct nft_expr *expr)
525fd3
 {
525fd3
diff --git a/net/netfilter/nft_lookup.c b/net/netfilter/nft_lookup.c
525fd3
index c9ce7d60cd73..ab98a5cb7128 100644
525fd3
--- a/net/netfilter/nft_lookup.c
525fd3
+++ b/net/netfilter/nft_lookup.c
525fd3
@@ -125,6 +125,32 @@ static int nft_lookup_init(const struct nft_ctx *ctx,
525fd3
 	return 0;
525fd3
 }
525fd3
 
525fd3
+void nf_tables_deactivate_set(const struct nft_ctx *ctx, struct nft_set *set,
525fd3
+			      struct nft_set_binding *binding);
525fd3
+
525fd3
+void nft_lookup_deactivate(const struct nft_ctx *ctx,
525fd3
+				  const struct nft_expr *expr)
525fd3
+{
525fd3
+	struct nft_lookup *priv = nft_expr_priv(expr);
525fd3
+
525fd3
+	nf_tables_deactivate_set(ctx, priv->set, &priv->binding);
525fd3
+}
525fd3
+
525fd3
+void nf_tables_activate_set(const struct nft_ctx *ctx, struct nft_set *set);
525fd3
+
525fd3
+void nft_lookup_activate(const struct nft_ctx *ctx,
525fd3
+				const struct nft_expr *expr)
525fd3
+{
525fd3
+	struct nft_lookup *priv = nft_expr_priv(expr);
525fd3
+
525fd3
+	nf_tables_activate_set(ctx, priv->set);
525fd3
+}
525fd3
+
525fd3
+int klp_is_nft_lookup(const struct nft_expr *expr)
525fd3
+{
525fd3
+	return expr->ops->type == &nft_lookup_type;
525fd3
+}
525fd3
+
525fd3
 static void nft_lookup_destroy(const struct nft_ctx *ctx,
525fd3
 			       const struct nft_expr *expr)
525fd3
 {
525fd3
-- 
525fd3
2.40.1
525fd3
525fd3