Generic Linux architectural discussions
 help / color / mirror / Atom feed
  • * [PATCH REPOST] fs: Preventing READ_IMPLIES_EXEC Propagation
           [not found] ` <2414e3b3-03f6-bd6c-5aa4-ad58c66b5aa5@huawei.com>
           [not found]   ` <20170418170118.GH27592@e104818-lin.cambridge.arm.com>
    @ 2017-04-25  6:58   ` dongbo (E)
      2017-06-12 13:41     ` Catalin Marinas
      1 sibling, 1 reply; 5+ messages in thread
    From: dongbo (E) @ 2017-04-25  6:58 UTC (permalink / raw)
      To: linux-arch
      Cc: linux-fsdevel, Al Viro, linux-kernel@vger.kernel.org,
    	catalin.marinas, will.deacon, arm-mail-list, Mark Rutland
    
    From: Dong Bo <dongbo4@huawei.com>
    
    In load_elf_binary(), once the READ_IMPLIES_EXEC flag is set,
    the flag is propagated to its child processes, even the elf
    files are marked as not requiring executable stack. It may
    cause superfluous operations on some arch, e.g.
    __sync_icache_dcache on aarch64 due to a PROT_READ mmap is
    also marked as PROT_EXEC.
    
    This patch was originally posted and discussed here:
    https://patchwork.kernel.org/patch/9685891/
    
    Signed-off-by: Dong Bo <dongbo4@huawei.com>
    ---
     fs/binfmt_elf.c       | 2 ++
     fs/binfmt_elf_fdpic.c | 2 ++
     2 files changed, 4 insertions(+)
    
    diff --git a/fs/binfmt_elf.c b/fs/binfmt_elf.c
    index 5075fd5..c52e670 100644
    --- a/fs/binfmt_elf.c
    +++ b/fs/binfmt_elf.c
    @@ -863,6 +863,8 @@ static int load_elf_binary(struct linux_binprm *bprm)
     	SET_PERSONALITY2(loc->elf_ex, &arch_state);
     	if (elf_read_implies_exec(loc->elf_ex, executable_stack))
     		current->personality |= READ_IMPLIES_EXEC;
    +	else
    +		current->personality &= ~READ_IMPLIES_EXEC;
      	if (!(current->personality & ADDR_NO_RANDOMIZE) && randomize_va_space)
     		current->flags |= PF_RANDOMIZE;
    diff --git a/fs/binfmt_elf_fdpic.c b/fs/binfmt_elf_fdpic.c
    index cf93a4f..c4bc4d0 100644
    --- a/fs/binfmt_elf_fdpic.c
    +++ b/fs/binfmt_elf_fdpic.c
    @@ -354,6 +354,8 @@ static int load_elf_fdpic_binary(struct linux_binprm *bprm)
     		set_personality(PER_LINUX);
     	if (elf_read_implies_exec(&exec_params.hdr, executable_stack))
     		current->personality |= READ_IMPLIES_EXEC;
    +	else
    +		current->personality &= ~READ_IMPLIES_EXEC;
      	setup_new_exec(bprm);
     -- 1.9.1
    
    
    .
    
    ^ permalink raw reply related	[flat|nested] 5+ messages in thread

  • end of thread, other threads:[~2017-06-12 13:41 UTC | newest]
    
    Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
    -- links below jump to the message on this page --
         [not found] <1492088223-98232-1-git-send-email-zhangshaokun@hisilicon.com>
         [not found] ` <2414e3b3-03f6-bd6c-5aa4-ad58c66b5aa5@huawei.com>
         [not found]   ` <20170418170118.GH27592@e104818-lin.cambridge.arm.com>
         [not found]     ` <CAFEAcA_wH1dDbcjEEBaLX0q8pfWsfYUGGL-zOC4MuxySqa=uvA@mail.gmail.com>
         [not found]       ` <20170419103313.GA3238@e104818-lin.cambridge.arm.com>
    2017-04-20  3:50         ` [PATCH] fs: Preventing READ_IMPLIES_EXEC Propagation dongbo (E)
    2017-04-20  3:50           ` dongbo (E)
    2017-04-25  6:58   ` [PATCH REPOST] " dongbo (E)
    2017-06-12 13:41     ` Catalin Marinas
    2017-06-12 13:41       ` Catalin Marinas
    

    This is a public inbox, see mirroring instructions
    for how to clone and mirror all data and code used for this inbox