binfmt_flat: replace flat_argvp_envp_on_stack with a Kconfig variable
authorChristoph Hellwig <hch@lst.de>
Thu, 13 Jun 2019 07:08:51 +0000 (09:08 +0200)
committerGreg Ungerer <gerg@kernel.org>
Sun, 23 Jun 2019 23:16:46 +0000 (09:16 +1000)
This will eventually allow us to kill the need for an <asm/flat.h> for
many cases.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Tested-by: Vladimir Murzin <vladimir.murzin@arm.com>
Reviewed-by: Vladimir Murzin <vladimir.murzin@arm.com>
Signed-off-by: Greg Ungerer <gerg@linux-m68k.org>
12 files changed:
arch/arm/Kconfig
arch/arm/include/asm/flat.h
arch/c6x/include/asm/flat.h
arch/h8300/Kconfig
arch/h8300/include/asm/flat.h
arch/m68k/Kconfig
arch/m68k/include/asm/flat.h
arch/microblaze/include/asm/flat.h
arch/sh/include/asm/flat.h
arch/xtensa/include/asm/flat.h
fs/Kconfig.binfmt
fs/binfmt_flat.c

index 8869742..b1b48c0 100644 (file)
@@ -30,6 +30,7 @@ config ARM
        select ARCH_USE_BUILTIN_BSWAP
        select ARCH_USE_CMPXCHG_LOCKREF
        select ARCH_WANT_IPC_PARSE_VERSION
+       select BINFMT_FLAT_ARGVP_ENVP_ON_STACK
        select BUILDTIME_EXTABLE_SORT if MMU
        select CLONE_BACKWARDS
        select CPU_PM if SUSPEND || CPU_IDLE
index acf1621..bbc2790 100644 (file)
@@ -8,8 +8,6 @@
 
 #include <linux/uaccess.h>
 
-#define        flat_argvp_envp_on_stack()              1
-
 static inline int flat_get_addr_from_rp(u32 __user *rp, u32 relval, u32 flags,
                                        u32 *addr, u32 *persistent)
 {
index 353e4d0..2d57a92 100644 (file)
@@ -4,7 +4,6 @@
 
 #include <asm/unaligned.h>
 
-#define flat_argvp_envp_on_stack()                     0
 static inline int flat_get_addr_from_rp(u32 __user *rp, u32 relval, u32 flags,
                                        u32 *addr, u32 *persistent)
 {
index d30e872..7457f19 100644 (file)
@@ -2,6 +2,7 @@
 config H8300
         def_bool y
        select ARCH_32BIT_OFF_T
+       select BINFMT_FLAT_ARGVP_ENVP_ON_STACK
        select BINFMT_FLAT_OLD_ALWAYS_RAM
        select GENERIC_ATOMIC64
        select HAVE_UID16
index 14cc928..4683146 100644 (file)
@@ -8,8 +8,6 @@
 
 #include <asm/unaligned.h>
 
-#define        flat_argvp_envp_on_stack()              1
-
 /*
  * on the H8 a couple of the relocations have an instruction in the
  * top byte.  As there can only be 24bits of address space,  we just
index 218e037..fd69ee5 100644 (file)
@@ -7,6 +7,7 @@ config M68K
        select ARCH_MIGHT_HAVE_PC_PARPORT if ISA
        select ARCH_NO_COHERENT_DMA_MMAP if !MMU
        select ARCH_NO_PREEMPT if !COLDFIRE
+       select BINFMT_FLAT_ARGVP_ENVP_ON_STACK
        select HAVE_IDE
        select HAVE_AOUT if MMU
        select HAVE_DEBUG_BUGVERBOSE
index 7b1fb5c..d7102fc 100644 (file)
@@ -8,7 +8,6 @@
 
 #include <linux/uaccess.h>
 
-#define        flat_argvp_envp_on_stack()              1
 static inline int flat_get_addr_from_rp(u32 __user *rp, u32 relval, u32 flags,
                                        u32 *addr, u32 *persistent)
 {
index 1cd8d7f..9e3d8e0 100644 (file)
@@ -13,8 +13,6 @@
 
 #include <asm/unaligned.h>
 
-#define        flat_argvp_envp_on_stack()      0
-
 /*
  * Microblaze works a little differently from other arches, because
  * of the MICROBLAZE_64 reloc type. Here, a 32 bit address is split
index 015678d..1002343 100644 (file)
@@ -11,7 +11,6 @@
 
 #include <asm/unaligned.h>
 
-#define        flat_argvp_envp_on_stack()              0
 static inline int flat_get_addr_from_rp(u32 __user *rp, u32 relval, u32 flags,
                                        u32 *addr, u32 *persistent)
 {
index b215c1e..3d35737 100644 (file)
@@ -4,7 +4,6 @@
 
 #include <asm/unaligned.h>
 
-#define flat_argvp_envp_on_stack()                     0
 static inline int flat_get_addr_from_rp(u32 __user *rp, u32 relval, u32 flags,
                                        u32 *addr, u32 *persistent)
 {
index 5658e12..82f7d7f 100644 (file)
@@ -97,6 +97,9 @@ config BINFMT_FLAT
        help
          Support uClinux FLAT format binaries.
 
+config BINFMT_FLAT_ARGVP_ENVP_ON_STACK
+       bool
+
 config BINFMT_FLAT_OLD_ALWAYS_RAM
        bool
 
index 3e7f4a6..a15fdd5 100644 (file)
@@ -124,14 +124,15 @@ static int create_flat_tables(struct linux_binprm *bprm, unsigned long arg_start
 
        sp -= bprm->envc + 1;
        sp -= bprm->argc + 1;
-       sp -= flat_argvp_envp_on_stack() ? 2 : 0;
+       if (IS_ENABLED(CONFIG_BINFMT_FLAT_ARGVP_ENVP_ON_STACK))
+               sp -= 2; /* argvp + envp */
        sp -= 1;  /* &argc */
 
        current->mm->start_stack = (unsigned long)sp & -FLAT_STACK_ALIGN;
        sp = (unsigned long __user *)current->mm->start_stack;
 
        __put_user(bprm->argc, sp++);
-       if (flat_argvp_envp_on_stack()) {
+       if (IS_ENABLED(CONFIG_BINFMT_FLAT_ARGVP_ENVP_ON_STACK)) {
                unsigned long argv, envp;
                argv = (unsigned long)(sp + 2);
                envp = (unsigned long)(sp + 2 + bprm->argc + 1);