Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1170795AbdDYHFh (ORCPT ); Tue, 25 Apr 2017 03:05:37 -0400 Received: from szxga01-in.huawei.com ([45.249.212.187]:5797 "EHLO dggrg01-dlp.huawei.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1168848AbdDYHF2 (ORCPT ); Tue, 25 Apr 2017 03:05:28 -0400 Subject: Re: [PATCH] fs: Preventing READ_IMPLIES_EXEC Propagation To: Catalin Marinas , Will Deacon References: <1492088223-98232-1-git-send-email-zhangshaokun@hisilicon.com> <2414e3b3-03f6-bd6c-5aa4-ad58c66b5aa5@huawei.com> <20170418170118.GH27592@e104818-lin.cambridge.arm.com> <20170419103313.GA3238@e104818-lin.cambridge.arm.com> <20170424154023.GM12323@arm.com> <20170424155841.GH25449@e104818-lin.cambridge.arm.com> CC: Mark Rutland , Peter Maydell , Peter Maydell , Linuxarm , "linux-kernel@vger.kernel.org" , Al Viro , , arm-mail-list From: "dongbo (E)" Message-ID: <2ae6ea68-2e43-71e2-5f80-2d24916a714e@huawei.com> Date: Tue, 25 Apr 2017 15:04:29 +0800 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.1.1 MIME-Version: 1.0 In-Reply-To: <20170424155841.GH25449@e104818-lin.cambridge.arm.com> Content-Type: text/plain; charset="windows-1252" Content-Transfer-Encoding: 7bit X-Originating-IP: [10.63.194.120] X-CFilter-Loop: Reflected X-Mirapoint-Virus-RAPID-Raw: score=unknown(0), refid=str=0001.0A020204.58FEF506.009B,ss=1,re=0.000,recu=0.000,reip=0.000,cl=1,cld=1,fgs=0, ip=0.0.0.0, so=2014-11-16 11:51:01, dmn=2013-03-21 17:37:32 X-Mirapoint-Loop-Id: f22720aae8888a50675b5ecbd9cc2288 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2691 Lines: 61 On 2017/4/24 23:58, Catalin Marinas wrote: > On Mon, Apr 24, 2017 at 04:40:23PM +0100, Will Deacon wrote: >> On Wed, Apr 19, 2017 at 11:33:14AM +0100, Catalin Marinas wrote: >>> On Tue, Apr 18, 2017 at 09:01:52PM +0100, Peter Maydell wrote: >>>> On 18 April 2017 at 18:01, Catalin Marinas wrote: >>>>> On Thu, Apr 13, 2017 at 08:33:52PM +0800, dongbo (E) wrote: >>>>>> From: Dong Bo >>>>>> >>>>>> 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. >>>> >>>>> That's affecting most architectures with a risk of ABI breakage. We >>>>> could do it on arm64 only, though I'm not yet clear on the ABI >>>>> implications (at a first look, there shouldn't be any). >>>> >>>> Is there a reason why it isn't just straightforwardly a bug >>>> (which we could fix) to make READ_IMPLIES_EXEC propagate to >>>> child processes? >>> >>> While I agree that it looks like a bug, if there are user programs >>> relying on such bug we call it "ABI". On arm64, I don't think there is >>> anything relying on inheriting READ_IMPLIES_EXEC but I wouldn't change >>> the compat task handling without the corresponding change in arch/arm. >>> >>>> AFAICT this should be per-process: just because >>>> init happens not to have been (re)compiled to permit non-executable >>>> stacks doesn't mean every process on the system needs to have >>>> an executable stack. >>> >>> I think this also affects the heap if brk(2) is used (via >>> VM_DATA_DEFAULT_FLAGS though I guess malloc mostly uses mmap these >>> days). >> >> I think it also affects mprotect, which is more worrying imo, particularly >> for things like JIT code that is ported from 32-bit (although a quick look >> at v8, ionmonkey and art suggests they all pass PROT_EXEC when needed). > > As Peter said, the default behaviour is READ_IMPLIES_EXEC off, so JIT > code must already pass PROT_EXEC if it wants executable permission. The > question is whether any user code relies on READ_IMPLIES_EXEC being > passed down to child processes. I don't think so but I would be > reluctant to make an such cross-arch change (happy to do it for arm64 > though). > OK, I have re-built a patch for arm64 as you suggested. Thanks. > Since linux-arch was cc'ed in the middle of this thread, I doubt people > would reply. I suggest that the original patch is re-posted to > linux-arch directly. > Re-posted. Bo Dong .