@@ -104,6 +104,13 @@ COMPAT_SYSCALL_DEFINE0(sigreturn)
struct sigframe_ia32 __user *frame = (struct sigframe_ia32 __user *)(regs->sp-8);
sigset_t set;
+ /*
+ * Verify legacy sigreturn does not have IBT enabled.
+ */
+#ifdef CONFIG_X86_IBT
+ if (current->thread.shstk.ibt)
+ goto badframe;
+#endif
if (!access_ok(frame, sizeof(*frame)))
goto badframe;
if (__get_user(set.sig[0], &frame->sc.oldmask)
@@ -6,6 +6,7 @@
* ELF register definitions..
*/
#include <linux/thread_info.h>
+#include <uapi/linux/elf.h>
#include <asm/ptrace.h>
#include <asm/user.h>
@@ -403,7 +404,17 @@ struct arch_elf_state {
}
#define arch_elf_pt_proc(ehdr, phdr, elf, interp, state) (0)
-#define arch_check_elf(ehdr, interp, interp_ehdr, state) (0)
+static inline int arch_check_elf(void *ehdr, bool interp,
+ void *interp_ehdr,
+ struct arch_elf_state *state)
+{
+ /*
+ * Disable IBT for ia32
+ */
+ if (elf_check_arch_ia32((struct elf32_hdr *)ehdr))
+ state->gnu_property &= ~GNU_PROPERTY_X86_FEATURE_1_IBT;
+ return 0;
+}
/* Do not change the values. See get_align_mask() */
enum align_flags {