| 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-2021-47465: KVM: PPC: Book3S HV: Fix stack handling in idle_kvm_start_guest() |
| |
| Description |
| =========== |
| |
| In the Linux kernel, the following vulnerability has been resolved: |
| |
| KVM: PPC: Book3S HV: Fix stack handling in idle_kvm_start_guest() |
| |
| In commit 10d91611f426 ("powerpc/64s: Reimplement book3s idle code in |
| C") kvm_start_guest() became idle_kvm_start_guest(). The old code |
| allocated a stack frame on the emergency stack, but didn't use the |
| frame to store anything, and also didn't store anything in its caller's |
| frame. |
| |
| idle_kvm_start_guest() on the other hand is written more like a normal C |
| function, it creates a frame on entry, and also stores CR/LR into its |
| callers frame (per the ABI). The problem is that there is no caller |
| frame on the emergency stack. |
| |
| The emergency stack for a given CPU is allocated with: |
| |
| paca_ptrs[i]->emergency_sp = alloc_stack(limit, i) + THREAD_SIZE; |
| |
| So emergency_sp actually points to the first address above the emergency |
| stack allocation for a given CPU, we must not store above it without |
| first decrementing it to create a frame. This is different to the |
| regular kernel stack, paca->kstack, which is initialised to point at an |
| initial frame that is ready to use. |
| |
| idle_kvm_start_guest() stores the backchain, CR and LR all of which |
| write outside the allocation for the emergency stack. It then creates a |
| stack frame and saves the non-volatile registers. Unfortunately the |
| frame it creates is not large enough to fit the non-volatiles, and so |
| the saving of the non-volatile registers also writes outside the |
| emergency stack allocation. |
| |
| The end result is that we corrupt whatever is at 0-24 bytes, and 112-248 |
| bytes above the emergency stack allocation. |
| |
| In practice this has gone unnoticed because the memory immediately above |
| the emergency stack happens to be used for other stack allocations, |
| either another CPUs mc_emergency_sp or an IRQ stack. See the order of |
| calls to irqstack_early_init() and emergency_stack_init(). |
| |
| The low addresses of another stack are the top of that stack, and so are |
| only used if that stack is under extreme pressue, which essentially |
| never happens in practice - and if it did there's a high likelyhood we'd |
| crash due to that stack overflowing. |
| |
| Still, we shouldn't be corrupting someone else's stack, and it is purely |
| luck that we aren't corrupting something else. |
| |
| To fix it we save CR/LR into the caller's frame using the existing r1 on |
| entry, we then create a SWITCH_FRAME_SIZE frame (which has space for |
| pt_regs) on the emergency stack with the backchain pointing to the |
| existing stack, and then finally we switch to the new frame on the |
| emergency stack. |
| |
| The Linux kernel CVE team has assigned CVE-2021-47465 to this issue. |
| |
| |
| Affected and fixed versions |
| =========================== |
| |
| Issue introduced in 5.2 with commit 10d91611f426d4bafd2a83d966c36da811b2f7ad and fixed in 5.4.156 with commit 80bbb0bc3a0288442f7fe6fc514f4ee1cb06ccb7 |
| Issue introduced in 5.2 with commit 10d91611f426d4bafd2a83d966c36da811b2f7ad and fixed in 5.10.76 with commit fbd724c49bead048ae9fc1a5b7bff2fb3e54f855 |
| Issue introduced in 5.2 with commit 10d91611f426d4bafd2a83d966c36da811b2f7ad and fixed in 5.14.15 with commit 6d077c37c4643394b1bae9682da48164fc147ea8 |
| Issue introduced in 5.2 with commit 10d91611f426d4bafd2a83d966c36da811b2f7ad and fixed in 5.15 with commit 9b4416c5095c20e110c82ae602c254099b83b72f |
| |
| 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-47465 |
| 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: |
| arch/powerpc/kvm/book3s_hv_rmhandlers.S |
| |
| |
| 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/80bbb0bc3a0288442f7fe6fc514f4ee1cb06ccb7 |
| https://git.kernel.org/stable/c/fbd724c49bead048ae9fc1a5b7bff2fb3e54f855 |
| https://git.kernel.org/stable/c/6d077c37c4643394b1bae9682da48164fc147ea8 |
| https://git.kernel.org/stable/c/9b4416c5095c20e110c82ae602c254099b83b72f |