From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id E938412C550 for ; Fri, 24 May 2024 15:02:16 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1716562937; cv=none; b=Wt1gWDbaoNvqtql5BVs0wcxQbNt4HHiSak+w+CaClNOpB5MuYvNM080gOk11IlyKVLMM5UnwRBqiF8KglbbmGt+/OEPkzpAOTH527UvWEWy+KM5BxYXTG+5kgI/L0jkiVQ6p9VErQQ50YBp8R+BW9H4OBm73WlfjuUn8M824988= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1716562937; c=relaxed/simple; bh=QPCK7Ins6f251U0Y8umehqBPZI8xL31LntuUxmqu2BM=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=ZcPLMskwZQYsPJZSJ5rL0dIchKpRUjVJ+vmKmNxo9GUDGVGADb79kGWS5cBMxXpuezlGwvjfT8YgRUJ/aBTE4g6WIaurSwk0zE61S9hA/i4UmKynHInI7gfLfHjtmKdt1RV05ULHA3VY+aROp+51fMFLm4WPD3ZRZrnIxRcZ3AU= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=A74eG8sU; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="A74eG8sU" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 6CADBC2BBFC; Fri, 24 May 2024 15:02:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1716562936; bh=QPCK7Ins6f251U0Y8umehqBPZI8xL31LntuUxmqu2BM=; h=From:To:Cc:Subject:Date:Reply-to:From; b=A74eG8sU3XQH7Lqz+XYaEfAe+N0Tu8hjwOTo/svNoLbUZuv8LFo9+jxUhR2Yvpbx1 vZvsiKqFLTqsmfgsQxL3ELwq8r+XSHaY0qq/rng2/7L4ZKTyOnTZHkAFkjr/30taq+ PQM05F4WDhLesQkNk0qo8U3XoGvFZG6CIs6Rb/eA= From: Greg Kroah-Hartman To: linux-cve-announce@vger.kernel.org Cc: Greg Kroah-Hartman Subject: CVE-2021-47505: aio: fix use-after-free due to missing POLLFREE handling Date: Fri, 24 May 2024 17:01:54 +0200 Message-ID: <2024052452-CVE-2021-47505-427f@gregkh> X-Mailer: git-send-email 2.45.1 Precedence: bulk X-Mailing-List: linux-cve-announce@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Reply-to: , X-Developer-Signature: v=1; a=openpgp-sha256; l=3753; i=gregkh@linuxfoundation.org; h=from:subject:message-id; bh=QPCK7Ins6f251U0Y8umehqBPZI8xL31LntuUxmqu2BM=; b=owGbwMvMwCRo6H6F97bub03G02pJDGkBqx/8Kj1jstaK4URIhtXhFKnVl5z////g42Xd+SHs0 3n/0gjOjlgWBkEmBlkxRZYv23iO7q84pOhlaHsaZg4rE8gQBi5OAZhIfSDDPBORPR7LWJbv1/30 OnjFNL5Dwe5h/QwLWneqLlo7x2U+V3eQwTL2T1/F3v7LAgA= X-Developer-Key: i=gregkh@linuxfoundation.org; a=openpgp; fpr=F4B60CC5BF78C2214A313DCB3147D40DDB2DFB29 Content-Transfer-Encoding: 8bit Description =========== In the Linux kernel, the following vulnerability has been resolved: aio: fix use-after-free due to missing POLLFREE handling signalfd_poll() and binder_poll() are special in that they use a waitqueue whose lifetime is the current task, rather than the struct file as is normally the case. This is okay for blocking polls, since a blocking poll occurs within one task; however, non-blocking polls require another solution. This solution is for the queue to be cleared before it is freed, by sending a POLLFREE notification to all waiters. Unfortunately, only eventpoll handles POLLFREE. A second type of non-blocking poll, aio poll, was added in kernel v4.18, and it doesn't handle POLLFREE. This allows a use-after-free to occur if a signalfd or binder fd is polled with aio poll, and the waitqueue gets freed. Fix this by making aio poll handle POLLFREE. A patch by Ramji Jiyani (https://lore.kernel.org/r/20211027011834.2497484-1-ramjiyani@google.com) tried to do this by making aio_poll_wake() always complete the request inline if POLLFREE is seen. However, that solution had two bugs. First, it introduced a deadlock, as it unconditionally locked the aio context while holding the waitqueue lock, which inverts the normal locking order. Second, it didn't consider that POLLFREE notifications are missed while the request has been temporarily de-queued. The second problem was solved by my previous patch. This patch then properly fixes the use-after-free by handling POLLFREE in a deadlock-free way. It does this by taking advantage of the fact that freeing of the waitqueue is RCU-delayed, similar to what eventpoll does. The Linux kernel CVE team has assigned CVE-2021-47505 to this issue. Affected and fixed versions =========================== Issue introduced in 4.18 with commit 2c14fa838cbe and fixed in 4.19.221 with commit 321fba81ec03 Issue introduced in 4.18 with commit 2c14fa838cbe and fixed in 5.4.165 with commit 4105e6a128e8 Issue introduced in 4.18 with commit 2c14fa838cbe and fixed in 5.10.85 with commit 47ffefd88abf Issue introduced in 4.18 with commit 2c14fa838cbe and fixed in 5.15.8 with commit 60d311f9e638 Issue introduced in 4.18 with commit 2c14fa838cbe and fixed in 5.16 with commit 50252e4b5e98 Please see https://www.kernel.org for a full list of currently supported kernel versions by the kernel community. Unaffected versions might change over time as fixes are backported to older supported kernel versions. The official CVE entry at https://cve.org/CVERecord/?id=CVE-2021-47505 will be updated if fixes are backported, please check that for the most up to date information about this issue. Affected files ============== The file(s) affected by this issue are: fs/aio.c include/uapi/asm-generic/poll.h Mitigation ========== The Linux kernel CVE team recommends that you update to the latest stable kernel version for this, and many other bugfixes. Individual changes are never tested alone, but rather are part of a larger kernel release. Cherry-picking individual commits is not recommended or supported by the Linux kernel community at all. If however, updating to the latest release is impossible, the individual changes to resolve this issue can be found at these commits: https://git.kernel.org/stable/c/321fba81ec034f88aea4898993c1bf15605c023f https://git.kernel.org/stable/c/4105e6a128e8a98455dfc9e6dbb2ab0c33c4497f https://git.kernel.org/stable/c/47ffefd88abfffe8a040bcc1dd0554d4ea6f7689 https://git.kernel.org/stable/c/60d311f9e6381d779d7d53371f87285698ecee24 https://git.kernel.org/stable/c/50252e4b5e989ce64555c7aef7516bdefc2fea72