| From bippy-5f407fcff5a0 Mon Sep 17 00:00:00 2001 |
| From: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
| To: <linux-cve-announce@vger.kernel.org> |
| Reply-to: <cve@kernel.org>, <linux-kernel@vger.kernel.org> |
| Subject: CVE-2024-50220: fork: do not invoke uffd on fork if error occurs |
| |
| Description |
| =========== |
| |
| In the Linux kernel, the following vulnerability has been resolved: |
| |
| fork: do not invoke uffd on fork if error occurs |
| |
| Patch series "fork: do not expose incomplete mm on fork". |
| |
| During fork we may place the virtual memory address space into an |
| inconsistent state before the fork operation is complete. |
| |
| In addition, we may encounter an error during the fork operation that |
| indicates that the virtual memory address space is invalidated. |
| |
| As a result, we should not be exposing it in any way to external machinery |
| that might interact with the mm or VMAs, machinery that is not designed to |
| deal with incomplete state. |
| |
| We specifically update the fork logic to defer khugepaged and ksm to the |
| end of the operation and only to be invoked if no error arose, and |
| disallow uffd from observing fork events should an error have occurred. |
| |
| |
| This patch (of 2): |
| |
| Currently on fork we expose the virtual address space of a process to |
| userland unconditionally if uffd is registered in VMAs, regardless of |
| whether an error arose in the fork. |
| |
| This is performed in dup_userfaultfd_complete() which is invoked |
| unconditionally, and performs two duties - invoking registered handlers |
| for the UFFD_EVENT_FORK event via dup_fctx(), and clearing down |
| userfaultfd_fork_ctx objects established in dup_userfaultfd(). |
| |
| This is problematic, because the virtual address space may not yet be |
| correctly initialised if an error arose. |
| |
| The change in commit d24062914837 ("fork: use __mt_dup() to duplicate |
| maple tree in dup_mmap()") makes this more pertinent as we may be in a |
| state where entries in the maple tree are not yet consistent. |
| |
| We address this by, on fork error, ensuring that we roll back state that |
| we would otherwise expect to clean up through the event being handled by |
| userland and perform the memory freeing duty otherwise performed by |
| dup_userfaultfd_complete(). |
| |
| We do this by implementing a new function, dup_userfaultfd_fail(), which |
| performs the same loop, only decrementing reference counts. |
| |
| Note that we perform mmgrab() on the parent and child mm's, however |
| userfaultfd_ctx_put() will mmdrop() this once the reference count drops to |
| zero, so we will avoid memory leaks correctly here. |
| |
| The Linux kernel CVE team has assigned CVE-2024-50220 to this issue. |
| |
| |
| Affected and fixed versions |
| =========================== |
| |
| Issue introduced in 6.8 with commit d2406291483775ecddaee929231a39c70c08fda2 and fixed in 6.11.7 with commit 92b472945dbf8abc020e9259c0088026f7027dfc |
| Issue introduced in 6.8 with commit d2406291483775ecddaee929231a39c70c08fda2 and fixed in 6.12 with commit f64e67e5d3a45a4a04286c47afade4b518acd47b |
| |
| 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-2024-50220 |
| 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/userfaultfd.c |
| include/linux/userfaultfd_k.h |
| kernel/fork.c |
| |
| |
| 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/92b472945dbf8abc020e9259c0088026f7027dfc |
| https://git.kernel.org/stable/c/f64e67e5d3a45a4a04286c47afade4b518acd47b |
| https://project-zero.issues.chromium.org/issues/373391951 |