diff mbox series

[SRU,B/J/K,1/1] x86/bugs: Flush IBP in ib_prctl_set()

Message ID 20230209175434.50432-2-yuxuan.luo@canonical.com
State New
Headers show
Series CVE-2023-0045 | expand

Commit Message

Yuxuan Luo Feb. 9, 2023, 5:54 p.m. UTC
From: Rodrigo Branco <bsdaemon@google.com>

We missed the window between the TIF flag update and the next reschedule.

Signed-off-by: Rodrigo Branco <bsdaemon@google.com>
Reviewed-by: Borislav Petkov (AMD) <bp@alien8.de>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Cc: <stable@vger.kernel.org>
(cherry picked from commit a664ec9158eeddd75121d39c9a0758016097fa96)
CVE-2023-0045
Signed-off-by: Yuxuan Luo <yuxuan.luo@canonical.com>
---
 arch/x86/kernel/cpu/bugs.c | 2 ++
 1 file changed, 2 insertions(+)
diff mbox series

Patch

diff --git a/arch/x86/kernel/cpu/bugs.c b/arch/x86/kernel/cpu/bugs.c
index fc4bee4b17fb7..45f21906e7ab6 100644
--- a/arch/x86/kernel/cpu/bugs.c
+++ b/arch/x86/kernel/cpu/bugs.c
@@ -1776,6 +1776,8 @@  static int ib_prctl_set(struct task_struct *task, unsigned long ctrl)
 		if (ctrl == PR_SPEC_FORCE_DISABLE)
 			task_set_spec_ib_force_disable(task);
 		task_update_spec_tif(task);
+		if (task == current)
+			indirect_branch_prediction_barrier();
 		break;
 	default:
 		return -ERANGE;