Skip to content

Commit 2bfc0a9

Browse files
author
CKI Backport Bot
committed
net: Fix an unsafe loop on the list
JIRA: https://issues.redhat.com/browse/RHEL-63844 CVE: CVE-2024-50024 commit 1dae9f1 Author: Anastasia Kovaleva <a.kovaleva@yadro.com> Date: Thu Oct 3 13:44:31 2024 +0300 net: Fix an unsafe loop on the list The kernel may crash when deleting a genetlink family if there are still listeners for that family: Oops: Kernel access of bad area, sig: 11 [#1] ... NIP [c000000000c080bc] netlink_update_socket_mc+0x3c/0xc0 LR [c000000000c0f764] __netlink_clear_multicast_users+0x74/0xc0 Call Trace: __netlink_clear_multicast_users+0x74/0xc0 genl_unregister_family+0xd4/0x2d0 Change the unsafe loop on the list to a safe one, because inside the loop there is an element removal from this list. Fixes: b827357 ("genetlink: fix netns vs. netlink table locking (2)") Cc: stable@vger.kernel.org Signed-off-by: Anastasia Kovaleva <a.kovaleva@yadro.com> Reviewed-by: Dmitry Bogdanov <d.bogdanov@yadro.com> Reviewed-by: Kuniyuki Iwashima <kuniyu@amazon.com> Link: https://patch.msgid.link/20241003104431.12391-1-a.kovaleva@yadro.com Signed-off-by: Jakub Kicinski <kuba@kernel.org> Signed-off-by: CKI Backport Bot <cki-ci-bot+cki-gitlab-backport-bot@redhat.com>
1 parent 181997d commit 2bfc0a9

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

include/net/sock.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -906,6 +906,8 @@ static inline void sk_add_bind_node(struct sock *sk,
906906
hlist_for_each_entry_safe(__sk, tmp, list, sk_node)
907907
#define sk_for_each_bound(__sk, list) \
908908
hlist_for_each_entry(__sk, list, sk_bind_node)
909+
#define sk_for_each_bound_safe(__sk, tmp, list) \
910+
hlist_for_each_entry_safe(__sk, tmp, list, sk_bind_node)
909911

910912
/**
911913
* sk_for_each_entry_offset_rcu - iterate over a list at a given struct offset

net/netlink/af_netlink.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2132,8 +2132,9 @@ void __netlink_clear_multicast_users(struct sock *ksk, unsigned int group)
21322132
{
21332133
struct sock *sk;
21342134
struct netlink_table *tbl = &nl_table[ksk->sk_protocol];
2135+
struct hlist_node *tmp;
21352136

2136-
sk_for_each_bound(sk, &tbl->mc_list)
2137+
sk_for_each_bound_safe(sk, tmp, &tbl->mc_list)
21372138
netlink_update_socket_mc(nlk_sk(sk), group, 0);
21382139
}
21392140

0 commit comments

Comments
 (0)