liuyingdong / rpms / kernel

Forked from rpms/kernel 4 years ago
Clone
24d93b
diff -up linux-3.10.0-327.sdl7.x86_64/arch/x86/include/asm/ptrace.h.addmissing linux-3.10.0-327.sdl7.x86_64/arch/x86/include/asm/ptrace.h
24d93b
--- linux-3.10.0-327.sdl7.x86_64/arch/x86/include/asm/ptrace.h.addmissing	2015-10-29 16:56:51.000000000 -0400
24d93b
+++ linux-3.10.0-327.sdl7.x86_64/arch/x86/include/asm/ptrace.h	2015-11-21 23:33:16.430036291 -0500
24d93b
@@ -109,6 +109,23 @@ static inline int user_mode_vm(struct pt
24d93b
 #endif
24d93b
 }
24d93b
 
24d93b
+/*
24d93b
+ * This is the fastest way to check whether regs come from user space.
24d93b
+ * It is unsafe if regs might come from vm86 mode, though -- in vm86
24d93b
+ * mode, all bits of CS and SS are completely under the user's control.
24d93b
+ * The CPU considers vm86 mode to be CPL 3 regardless of CS and SS.
24d93b
+ *
24d93b
+ * Do NOT use this function unless you have already ruled out the
24d93b
+ * possibility that regs came from vm86 mode.
24d93b
+ *
24d93b
+ * We check for RPL != 0 instead of RPL == 3 because we don't use rings
24d93b
+ * 1 or 2 and this is more efficient.
24d93b
+ */
24d93b
+static inline int user_mode_ignore_vm86(struct pt_regs *regs)
24d93b
+{
24d93b
+	return (regs->cs & SEGMENT_RPL_MASK) != 0;
24d93b
+}
24d93b
+
24d93b
 static inline int v8086_mode(struct pt_regs *regs)
24d93b
 {
24d93b
 #ifdef CONFIG_X86_32