Patch "x86/sev: Fix stack type check in vc_switch_off_ist()" has been added to the 5.14-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    x86/sev: Fix stack type check in vc_switch_off_ist()

to the 5.14-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     x86-sev-fix-stack-type-check-in-vc_switch_off_ist.patch
and it can be found in the queue-5.14 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit a16c6a3e67bde3a3abe6e226734b4c054c93e259
Author: Joerg Roedel <jroedel@xxxxxxx>
Date:   Thu Oct 21 10:08:32 2021 +0200

    x86/sev: Fix stack type check in vc_switch_off_ist()
    
    [ Upstream commit 5681981fb788281b09a4ea14d310d30b2bd89132 ]
    
    The value of STACK_TYPE_EXCEPTION_LAST points to the last _valid_
    exception stack. Reflect that in the check done in the
    vc_switch_off_ist() function.
    
    Fixes: a13644f3a53de ("x86/entry/64: Add entry code for #VC handler")
    Reported-by: Tom Lendacky <thomas.lendacky@xxxxxxx>
    Signed-off-by: Joerg Roedel <jroedel@xxxxxxx>
    Signed-off-by: Borislav Petkov <bp@xxxxxxx>
    Link: https://lkml.kernel.org/r/20211021080833.30875-2-joro@xxxxxxxxxx
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/arch/x86/kernel/traps.c b/arch/x86/kernel/traps.c
index cc6de3a01293c..5b1984d468227 100644
--- a/arch/x86/kernel/traps.c
+++ b/arch/x86/kernel/traps.c
@@ -743,7 +743,7 @@ asmlinkage __visible noinstr struct pt_regs *vc_switch_off_ist(struct pt_regs *r
 	stack = (unsigned long *)sp;
 
 	if (!get_stack_info_noinstr(stack, current, &info) || info.type == STACK_TYPE_ENTRY ||
-	    info.type >= STACK_TYPE_EXCEPTION_LAST)
+	    info.type > STACK_TYPE_EXCEPTION_LAST)
 		sp = __this_cpu_ist_top_va(VC2);
 
 sync:



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux