@@ -418,12 +418,6 @@ DEFINE_IDTENTRY_ERRORCODE(exc_segment_not_present)
SIGBUS, 0, NULL);
}
-DEFINE_IDTENTRY_ERRORCODE(exc_stack_segment)
-{
- do_error_trap(regs, error_code, "stack segment", X86_TRAP_SS, SIGBUS,
- 0, NULL);
-}
-
DEFINE_IDTENTRY_ERRORCODE(exc_alignment_check)
{
char *str = "alignment check";
@@ -866,6 +860,34 @@ DEFINE_IDTENTRY_ERRORCODE(exc_general_protection)
cond_local_irq_disable(regs);
}
+DEFINE_IDTENTRY_ERRORCODE(exc_stack_segment)
+{
+ if (cpu_feature_enabled(X86_FEATURE_LASS)) {
+ enum kernel_gp_hint hint = GP_NO_HINT;
+ unsigned long gp_addr;
+
+ if (user_mode(regs)) {
+ gp_user_force_sig_segv(regs, X86_TRAP_GP, error_code, GPFSTR);
+ return;
+ }
+
+ hint = get_kernel_gp_address(regs, &gp_addr);
+ if (hint != GP_NO_HINT) {
+ printk(GPFSTR ", %s 0x%lx", kernel_gp_hint_help[hint],
+ gp_addr);
+ }
+
+ if (hint != GP_NON_CANONICAL)
+ gp_addr = 0;
+
+ die_addr(GPFSTR, regs, error_code, gp_addr);
+ return;
+ }
+
+ do_error_trap(regs, error_code, "stack segment", X86_TRAP_SS, SIGBUS,
+ 0, NULL);
+}
+
static bool do_int3(struct pt_regs *regs)
{
int res;