- Drop AlmaLinux ahead-of-RHEL eventpoll CVE-2026-46242 fix (1712), superseded by the RHEL eventpoll series in 687.23.1 - Temporarily drop the rtmutex remove_waiter() fixes (1736, 1738) - Add RHEL 687.23.1 backports recreated from CS10/upstream (1739-1755)
135 lines
3.9 KiB
Diff
135 lines
3.9 KiB
Diff
From 9a9a41f8aa46741f965703f520542e9e8fdbe59f Mon Sep 17 00:00:00 2001
|
|
From: Ian Kent <ikent@redhat.com>
|
|
Date: Tue, 16 Jun 2026 15:56:21 +0800
|
|
Subject: [PATCH] eventpoll: kill __ep_remove()
|
|
|
|
JIRA: https://redhat.atlassian.net/browse/RHEL-180777
|
|
Upstream status: Linus
|
|
|
|
commit e9e5cd40d7c403e19f21d0f7b8b8ba3a76b58330
|
|
Author: Christian Brauner <brauner@kernel.org>
|
|
Date: Thu Apr 23 11:56:06 2026 +0200
|
|
|
|
eventpoll: kill __ep_remove()
|
|
|
|
Remove the boolean conditional in __ep_remove() and restructure the code
|
|
so the check for racing with eventpoll_release_file() are only done in
|
|
the ep_remove_safe() path where they belong.
|
|
|
|
Link: https://patch.msgid.link/20260423-work-epoll-uaf-v1-3-2470f9eec0f5@kernel.org
|
|
Signed-off-by: Christian Brauner (Amutable) <brauner@kernel.org>
|
|
|
|
Signed-off-by: Ian Kent <ikent@redhat.com>
|
|
|
|
diff --git a/fs/eventpoll.c b/fs/eventpoll.c
|
|
index 001c87b6ddab..cb75868ba1de 100644
|
|
--- a/fs/eventpoll.c
|
|
+++ b/fs/eventpoll.c
|
|
@@ -825,49 +825,18 @@ static void ep_free(struct eventpoll *ep)
|
|
kfree_rcu(ep, rcu);
|
|
}
|
|
|
|
-static void __ep_remove_file(struct eventpoll *ep, struct epitem *epi, struct file *file);
|
|
-static bool __ep_remove_epi(struct eventpoll *ep, struct epitem *epi);
|
|
-
|
|
-/*
|
|
- * Removes a "struct epitem" from the eventpoll RB tree and deallocates
|
|
- * all the associated resources. Must be called with "mtx" held.
|
|
- * If the dying flag is set, do the removal only if force is true.
|
|
- * This prevents ep_clear_and_put() from dropping all the ep references
|
|
- * while running concurrently with eventpoll_release_file().
|
|
- * Returns true if the eventpoll can be disposed.
|
|
- */
|
|
-static bool __ep_remove(struct eventpoll *ep, struct epitem *epi, bool force)
|
|
-{
|
|
- struct file *file = epi->ffd.file;
|
|
-
|
|
- lockdep_assert_irqs_enabled();
|
|
-
|
|
- /*
|
|
- * Removes poll wait queue hooks.
|
|
- */
|
|
- ep_unregister_pollwait(ep, epi);
|
|
-
|
|
- /* Remove the current item from the list of epoll hooks */
|
|
- spin_lock(&file->f_lock);
|
|
- if (epi->dying && !force) {
|
|
- spin_unlock(&file->f_lock);
|
|
- return false;
|
|
- }
|
|
-
|
|
- __ep_remove_file(ep, epi, file);
|
|
- return __ep_remove_epi(ep, epi);
|
|
-}
|
|
-
|
|
/*
|
|
* Called with &file->f_lock held,
|
|
* returns with it released
|
|
*/
|
|
-static void __ep_remove_file(struct eventpoll *ep, struct epitem *epi, struct file *file)
|
|
+static void __ep_remove_file(struct eventpoll *ep, struct epitem *epi,
|
|
+ struct file *file)
|
|
{
|
|
struct epitems_head *to_free = NULL;
|
|
struct hlist_head *head = file->f_ep;
|
|
|
|
lockdep_assert_held(&ep->mtx);
|
|
+ lockdep_assert_held(&file->f_lock);
|
|
|
|
if (hlist_is_singular_node(&epi->fllink, head)) {
|
|
/* See eventpoll_release() for details. */
|
|
@@ -914,7 +883,25 @@ static bool __ep_remove_epi(struct eventpoll *ep, struct epitem *epi)
|
|
*/
|
|
static void ep_remove_safe(struct eventpoll *ep, struct epitem *epi)
|
|
{
|
|
- if (__ep_remove(ep, epi, false))
|
|
+ struct file *file = epi->ffd.file;
|
|
+
|
|
+ lockdep_assert_irqs_enabled();
|
|
+ lockdep_assert_held(&ep->mtx);
|
|
+
|
|
+ ep_unregister_pollwait(ep, epi);
|
|
+
|
|
+ /* sync with eventpoll_release_file() */
|
|
+ if (unlikely(READ_ONCE(epi->dying)))
|
|
+ return;
|
|
+
|
|
+ spin_lock(&file->f_lock);
|
|
+ if (epi->dying) {
|
|
+ spin_unlock(&file->f_lock);
|
|
+ return;
|
|
+ }
|
|
+ __ep_remove_file(ep, epi, file);
|
|
+
|
|
+ if (__ep_remove_epi(ep, epi))
|
|
WARN_ON_ONCE(ep_refcount_dec_and_test(ep));
|
|
}
|
|
|
|
@@ -1146,7 +1133,7 @@ void eventpoll_release_file(struct file *file)
|
|
spin_lock(&file->f_lock);
|
|
if (file->f_ep && file->f_ep->first) {
|
|
epi = hlist_entry(file->f_ep->first, struct epitem, fllink);
|
|
- epi->dying = true;
|
|
+ WRITE_ONCE(epi->dying, true);
|
|
spin_unlock(&file->f_lock);
|
|
|
|
/*
|
|
@@ -1155,7 +1142,13 @@ void eventpoll_release_file(struct file *file)
|
|
*/
|
|
ep = epi->ep;
|
|
mutex_lock(&ep->mtx);
|
|
- dispose = __ep_remove(ep, epi, true);
|
|
+
|
|
+ ep_unregister_pollwait(ep, epi);
|
|
+
|
|
+ spin_lock(&file->f_lock);
|
|
+ __ep_remove_file(ep, epi, file);
|
|
+ dispose = __ep_remove_epi(ep, epi);
|
|
+
|
|
mutex_unlock(&ep->mtx);
|
|
|
|
if (dispose && ep_refcount_dec_and_test(ep))
|
|
--
|
|
2.50.1 (Apple Git-155)
|
|
|