arm64: cleanup {COMPAT_,}SET_PERSONALITY() macro
authorYury Norov <ynorov@caviumnetworks.com>
Sun, 20 Aug 2017 10:20:48 +0000 (13:20 +0300)
committerCatalin Marinas <catalin.marinas@arm.com>
Tue, 22 Aug 2017 17:41:47 +0000 (18:41 +0100)
There is some work that should be done after setting the personality.
Currently it's done in the macro, which is not the best idea.

In this patch new arch_setup_new_exec() routine is introduced, and all
setup code is moved there, as suggested by Catalin:
https://lkml.org/lkml/2017/8/4/494

Cc: Pratyush Anand <panand@redhat.com>
Signed-off-by: Yury Norov <ynorov@caviumnetworks.com>
[catalin.marinas@arm.com: comments changed or removed]
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
arch/arm64/include/asm/elf.h
arch/arm64/include/asm/thread_info.h
arch/arm64/kernel/process.c

index f4e33f8356cac47eea5396a53b60f169c9855b93..c55043709c6999dd10eefcb6bb51ad355fd22fc7 100644 (file)
@@ -139,7 +139,6 @@ typedef struct user_fpsimd_state elf_fpregset_t;
 
 #define SET_PERSONALITY(ex)                                            \
 ({                                                                     \
-       current->mm->context.flags = 0;                                 \
        clear_thread_flag(TIF_32BIT);                                   \
        current->personality &= ~READ_IMPLIES_EXEC;                     \
 })
@@ -195,7 +194,6 @@ typedef compat_elf_greg_t           compat_elf_gregset_t[COMPAT_ELF_NGREG];
  */
 #define COMPAT_SET_PERSONALITY(ex)                                     \
 ({                                                                     \
-       current->mm->context.flags = MMCF_AARCH32;                      \
        set_thread_flag(TIF_32BIT);                                     \
  })
 #define COMPAT_ARCH_DLINFO
index aa04b733b349efa1c58337c4c65e028038c99a99..2eca178bc943b0f1cabe1a3b0aca98067875e1fe 100644 (file)
@@ -60,6 +60,9 @@ struct thread_info {
 #define thread_saved_fp(tsk)   \
        ((unsigned long)(tsk->thread.cpu_context.fp))
 
+void arch_setup_new_exec(void);
+#define arch_setup_new_exec     arch_setup_new_exec
+
 #endif
 
 /*
index 85b953dd023a9b1219d961545fd696928bcb899d..e6bf19c1dddb1d21fc3293ec8ed9e725a5c19466 100644 (file)
@@ -414,3 +414,11 @@ unsigned long arch_randomize_brk(struct mm_struct *mm)
        else
                return randomize_page(mm->brk, SZ_1G);
 }
+
+/*
+ * Called from setup_new_exec() after (COMPAT_)SET_PERSONALITY.
+ */
+void arch_setup_new_exec(void)
+{
+       current->mm->context.flags = is_compat_task() ? MMCF_AARCH32 : 0;
+}