All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] MIPS: Prevent READ_IMPLIES_EXEC propagation
@ 2020-07-07  9:39 Tiezhu Yang
  2020-07-07 19:45 ` Maciej W. Rozycki
                   ` (2 more replies)
  0 siblings, 3 replies; 9+ messages in thread
From: Tiezhu Yang @ 2020-07-07  9:39 UTC (permalink / raw)
  To: Thomas Bogendoerfer
  Cc: linux-mips, linux-kernel, Kees Cook, Xuefeng Li, Juxin Gao

In the MIPS architecture, we should clear the security-relevant
flag READ_IMPLIES_EXEC in the function SET_PERSONALITY2() of the
file arch/mips/include/asm/elf.h.

Otherwise, with this flag set, PROT_READ implies PROT_EXEC for
mmap to make memory executable that is not safe, because this
condition allows an attacker to simply jump to and execute bytes
that are considered to be just data [1].

In mm/mmap.c:
unsigned long do_mmap(struct file *file, unsigned long addr,
			unsigned long len, unsigned long prot,
			unsigned long flags, vm_flags_t vm_flags,
			unsigned long pgoff, unsigned long *populate,
			struct list_head *uf)
{
	[...]
	if ((prot & PROT_READ) && (current->personality & READ_IMPLIES_EXEC))
		if (!(file && path_noexec(&file->f_path)))
			prot |= PROT_EXEC;
	[...]
}

By the way, x86 and ARM64 have done the similar thing.

After commit 250c22777fe1 ("x86_64: move kernel"), in the file
arch/x86/kernel/process_64.c:
void set_personality_64bit(void)
{
	[...]
	current->personality &= ~READ_IMPLIES_EXEC;
}

After commit 48f99c8ec0b2 ("arm64: Preventing READ_IMPLIES_EXEC
propagation"), in the file arch/arm64/include/asm/elf.h:
#define SET_PERSONALITY(ex)						\
({									\
	clear_thread_flag(TIF_32BIT);					\
	current->personality &= ~READ_IMPLIES_EXEC;			\
})

[1] https://insights.sei.cmu.edu/cert/2014/02/feeling-insecure-blame-your-parent.html

Reported-by: Juxin Gao <gaojuxin@loongson.cn>
Co-developed-by: Juxin Gao <gaojuxin@loongson.cn>
Signed-off-by: Juxin Gao <gaojuxin@loongson.cn>
Signed-off-by: Tiezhu Yang <yangtiezhu@loongson.cn>
---
 arch/mips/include/asm/elf.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/mips/include/asm/elf.h b/arch/mips/include/asm/elf.h
index 5aa29ce..71c7622 100644
--- a/arch/mips/include/asm/elf.h
+++ b/arch/mips/include/asm/elf.h
@@ -410,6 +410,7 @@ do {									\
 	clear_thread_flag(TIF_32BIT_FPREGS);				\
 	clear_thread_flag(TIF_HYBRID_FPREGS);				\
 	clear_thread_flag(TIF_32BIT_ADDR);				\
+	current->personality &= ~READ_IMPLIES_EXEC;			\
 									\
 	if ((ex).e_ident[EI_CLASS] == ELFCLASS32)			\
 		__SET_PERSONALITY32(ex, state);				\
-- 
2.1.0


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* Re: [PATCH] MIPS: Prevent READ_IMPLIES_EXEC propagation
  2020-07-07  9:39 [PATCH] MIPS: Prevent READ_IMPLIES_EXEC propagation Tiezhu Yang
@ 2020-07-07 19:45 ` Maciej W. Rozycki
  2020-07-08  7:51   ` Tiezhu Yang
  2020-07-08 23:26 ` Kees Cook
  2020-07-16 11:59 ` Thomas Bogendoerfer
  2 siblings, 1 reply; 9+ messages in thread
From: Maciej W. Rozycki @ 2020-07-07 19:45 UTC (permalink / raw)
  To: Tiezhu Yang
  Cc: Thomas Bogendoerfer, linux-mips, linux-kernel, Kees Cook,
	Xuefeng Li, Juxin Gao, Maciej W. Rozycki

On Tue, 7 Jul 2020, Tiezhu Yang wrote:

> In the MIPS architecture, we should clear the security-relevant
> flag READ_IMPLIES_EXEC in the function SET_PERSONALITY2() of the
> file arch/mips/include/asm/elf.h.
> 
> Otherwise, with this flag set, PROT_READ implies PROT_EXEC for
> mmap to make memory executable that is not safe, because this
> condition allows an attacker to simply jump to and execute bytes
> that are considered to be just data [1].

 Why isn't the arrangement made with `mips_elf_read_implies_exec' 
sufficient?

  Maciej

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH] MIPS: Prevent READ_IMPLIES_EXEC propagation
  2020-07-07 19:45 ` Maciej W. Rozycki
@ 2020-07-08  7:51   ` Tiezhu Yang
  2020-07-17 10:00     ` Maciej W. Rozycki
  0 siblings, 1 reply; 9+ messages in thread
From: Tiezhu Yang @ 2020-07-08  7:51 UTC (permalink / raw)
  To: Maciej W. Rozycki
  Cc: Thomas Bogendoerfer, linux-mips, linux-kernel, Kees Cook,
	Xuefeng Li, Juxin Gao, Maciej W. Rozycki

On 07/08/2020 03:45 AM, Maciej W. Rozycki wrote:
> On Tue, 7 Jul 2020, Tiezhu Yang wrote:
>
>> In the MIPS architecture, we should clear the security-relevant
>> flag READ_IMPLIES_EXEC in the function SET_PERSONALITY2() of the
>> file arch/mips/include/asm/elf.h.
>>
>> Otherwise, with this flag set, PROT_READ implies PROT_EXEC for
>> mmap to make memory executable that is not safe, because this
>> condition allows an attacker to simply jump to and execute bytes
>> that are considered to be just data [1].
>   Why isn't the arrangement made with `mips_elf_read_implies_exec'
> sufficient?

We inherit the READ_IMPLIES_EXEC personality flag across fork().
If we do not explicitly clear this flag in SET_PERSONALITY2(),
PROT_READ implies PROT_EXEC for mmap to make memory executable
even if used with the GCC option "-z noexecstack" when compile.

By the way, we can see some other reasons in the following commit:
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=48f99c8ec0b2

>
>    Maciej


^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH] MIPS: Prevent READ_IMPLIES_EXEC propagation
  2020-07-07  9:39 [PATCH] MIPS: Prevent READ_IMPLIES_EXEC propagation Tiezhu Yang
  2020-07-07 19:45 ` Maciej W. Rozycki
@ 2020-07-08 23:26 ` Kees Cook
  2020-07-16 11:59 ` Thomas Bogendoerfer
  2 siblings, 0 replies; 9+ messages in thread
From: Kees Cook @ 2020-07-08 23:26 UTC (permalink / raw)
  To: Tiezhu Yang
  Cc: Thomas Bogendoerfer, linux-mips, linux-kernel, Xuefeng Li, Juxin Gao

On Tue, Jul 07, 2020 at 05:39:01PM +0800, Tiezhu Yang wrote:
> In the MIPS architecture, we should clear the security-relevant
> flag READ_IMPLIES_EXEC in the function SET_PERSONALITY2() of the
> file arch/mips/include/asm/elf.h.
> 
> Otherwise, with this flag set, PROT_READ implies PROT_EXEC for
> mmap to make memory executable that is not safe, because this
> condition allows an attacker to simply jump to and execute bytes
> that are considered to be just data [1].
> 
> In mm/mmap.c:
> unsigned long do_mmap(struct file *file, unsigned long addr,
> 			unsigned long len, unsigned long prot,
> 			unsigned long flags, vm_flags_t vm_flags,
> 			unsigned long pgoff, unsigned long *populate,
> 			struct list_head *uf)
> {
> 	[...]
> 	if ((prot & PROT_READ) && (current->personality & READ_IMPLIES_EXEC))
> 		if (!(file && path_noexec(&file->f_path)))
> 			prot |= PROT_EXEC;
> 	[...]
> }
> 
> By the way, x86 and ARM64 have done the similar thing.
> 
> After commit 250c22777fe1 ("x86_64: move kernel"), in the file
> arch/x86/kernel/process_64.c:
> void set_personality_64bit(void)
> {
> 	[...]
> 	current->personality &= ~READ_IMPLIES_EXEC;
> }
> 
> After commit 48f99c8ec0b2 ("arm64: Preventing READ_IMPLIES_EXEC
> propagation"), in the file arch/arm64/include/asm/elf.h:
> #define SET_PERSONALITY(ex)						\
> ({									\
> 	clear_thread_flag(TIF_32BIT);					\
> 	current->personality &= ~READ_IMPLIES_EXEC;			\
> })
> 
> [1] https://insights.sei.cmu.edu/cert/2014/02/feeling-insecure-blame-your-parent.html
> 
> Reported-by: Juxin Gao <gaojuxin@loongson.cn>
> Co-developed-by: Juxin Gao <gaojuxin@loongson.cn>
> Signed-off-by: Juxin Gao <gaojuxin@loongson.cn>
> Signed-off-by: Tiezhu Yang <yangtiezhu@loongson.cn>

This seems correct to me.

Reviewed-by: Kees Cook <keescook@chromium.org>

BTW, does MIPS also need similar changes to this series:
https://lore.kernel.org/lkml/20200327064820.12602-1-keescook@chromium.org/

Quoting from there "MIPS may need adjusting but the history of CPU
features and toolchain behavior is very unclear to me."

-- 
Kees Cook

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH] MIPS: Prevent READ_IMPLIES_EXEC propagation
  2020-07-07  9:39 [PATCH] MIPS: Prevent READ_IMPLIES_EXEC propagation Tiezhu Yang
  2020-07-07 19:45 ` Maciej W. Rozycki
  2020-07-08 23:26 ` Kees Cook
@ 2020-07-16 11:59 ` Thomas Bogendoerfer
  2 siblings, 0 replies; 9+ messages in thread
From: Thomas Bogendoerfer @ 2020-07-16 11:59 UTC (permalink / raw)
  To: Tiezhu Yang; +Cc: linux-mips, linux-kernel, Kees Cook, Xuefeng Li, Juxin Gao

On Tue, Jul 07, 2020 at 05:39:01PM +0800, Tiezhu Yang wrote:
> In the MIPS architecture, we should clear the security-relevant
> flag READ_IMPLIES_EXEC in the function SET_PERSONALITY2() of the
> file arch/mips/include/asm/elf.h.
> 
> Otherwise, with this flag set, PROT_READ implies PROT_EXEC for
> mmap to make memory executable that is not safe, because this
> condition allows an attacker to simply jump to and execute bytes
> that are considered to be just data [1].
> 
> In mm/mmap.c:
> unsigned long do_mmap(struct file *file, unsigned long addr,
> 			unsigned long len, unsigned long prot,
> 			unsigned long flags, vm_flags_t vm_flags,
> 			unsigned long pgoff, unsigned long *populate,
> 			struct list_head *uf)
> {
> 	[...]
> 	if ((prot & PROT_READ) && (current->personality & READ_IMPLIES_EXEC))
> 		if (!(file && path_noexec(&file->f_path)))
> 			prot |= PROT_EXEC;
> 	[...]
> }
> 
> By the way, x86 and ARM64 have done the similar thing.
> 
> After commit 250c22777fe1 ("x86_64: move kernel"), in the file
> arch/x86/kernel/process_64.c:
> void set_personality_64bit(void)
> {
> 	[...]
> 	current->personality &= ~READ_IMPLIES_EXEC;
> }
> 
> After commit 48f99c8ec0b2 ("arm64: Preventing READ_IMPLIES_EXEC
> propagation"), in the file arch/arm64/include/asm/elf.h:
> #define SET_PERSONALITY(ex)						\
> ({									\
> 	clear_thread_flag(TIF_32BIT);					\
> 	current->personality &= ~READ_IMPLIES_EXEC;			\
> })
> 
> [1] https://insights.sei.cmu.edu/cert/2014/02/feeling-insecure-blame-your-parent.html
> 
> Reported-by: Juxin Gao <gaojuxin@loongson.cn>
> Co-developed-by: Juxin Gao <gaojuxin@loongson.cn>
> Signed-off-by: Juxin Gao <gaojuxin@loongson.cn>
> Signed-off-by: Tiezhu Yang <yangtiezhu@loongson.cn>
> ---
>  arch/mips/include/asm/elf.h | 1 +
>  1 file changed, 1 insertion(+)

applied to mips-next.

Thomas.

-- 
Crap can work. Given enough thrust pigs will fly, but it's not necessarily a
good idea.                                                [ RFC1925, 2.3 ]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH] MIPS: Prevent READ_IMPLIES_EXEC propagation
  2020-07-08  7:51   ` Tiezhu Yang
@ 2020-07-17 10:00     ` Maciej W. Rozycki
  2020-07-18  0:04       ` YunQiang Su
  0 siblings, 1 reply; 9+ messages in thread
From: Maciej W. Rozycki @ 2020-07-17 10:00 UTC (permalink / raw)
  To: Tiezhu Yang
  Cc: Thomas Bogendoerfer, linux-mips, linux-kernel, Kees Cook,
	Xuefeng Li, Juxin Gao, Maciej W. Rozycki

On Wed, 8 Jul 2020, Tiezhu Yang wrote:

> >> In the MIPS architecture, we should clear the security-relevant
> >> flag READ_IMPLIES_EXEC in the function SET_PERSONALITY2() of the
> >> file arch/mips/include/asm/elf.h.
> >>
> >> Otherwise, with this flag set, PROT_READ implies PROT_EXEC for
> >> mmap to make memory executable that is not safe, because this
> >> condition allows an attacker to simply jump to and execute bytes
> >> that are considered to be just data [1].
> >   Why isn't the arrangement made with `mips_elf_read_implies_exec'
> > sufficient?
> 
> We inherit the READ_IMPLIES_EXEC personality flag across fork().
> If we do not explicitly clear this flag in SET_PERSONALITY2(),
> PROT_READ implies PROT_EXEC for mmap to make memory executable
> even if used with the GCC option "-z noexecstack" when compile.

 It makes no sense to me to repeat this across all the architectures, and 
even less so to do it individually one by one as people rediscover this 
issue.

 Why don't we maintain the flag globally in `fs/binfmt_elf.c' which is 
where we already set it?  E.g.:

	SET_PERSONALITY2(*elf_ex, &arch_state);
	if (elf_read_implies_exec(*elf_ex, executable_stack))
		current->personality |= READ_IMPLIES_EXEC;
	else
		current->personality &= ~READ_IMPLIES_EXEC;

  Maciej

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH] MIPS: Prevent READ_IMPLIES_EXEC propagation
  2020-07-17 10:00     ` Maciej W. Rozycki
@ 2020-07-18  0:04       ` YunQiang Su
  2020-07-18  3:59         ` Tiezhu Yang
  0 siblings, 1 reply; 9+ messages in thread
From: YunQiang Su @ 2020-07-18  0:04 UTC (permalink / raw)
  To: Maciej W. Rozycki
  Cc: Tiezhu Yang, Thomas Bogendoerfer, linux-mips, LKML, Kees Cook,
	Xuefeng Li, Juxin Gao, Maciej W. Rozycki

Maciej W. Rozycki <macro@wdc.com> 于2020年7月17日周五 下午6:00写道:
>
> On Wed, 8 Jul 2020, Tiezhu Yang wrote:
>
> > >> In the MIPS architecture, we should clear the security-relevant
> > >> flag READ_IMPLIES_EXEC in the function SET_PERSONALITY2() of the
> > >> file arch/mips/include/asm/elf.h.
> > >>
> > >> Otherwise, with this flag set, PROT_READ implies PROT_EXEC for
> > >> mmap to make memory executable that is not safe, because this
> > >> condition allows an attacker to simply jump to and execute bytes
> > >> that are considered to be just data [1].
> > >   Why isn't the arrangement made with `mips_elf_read_implies_exec'
> > > sufficient?
> >
> > We inherit the READ_IMPLIES_EXEC personality flag across fork().
> > If we do not explicitly clear this flag in SET_PERSONALITY2(),
> > PROT_READ implies PROT_EXEC for mmap to make memory executable
> > even if used with the GCC option "-z noexecstack" when compile.

With next-20200717 with this patch on a Loongson 3A 4000 machine is
AMDGPU video card it get

[   25.019868] [drm] Fence fallback timer expired on ring comp_1.1.1
         Starting Network Manager Script Dispatcher Service...
[  OK  ] Started Network Manager Script Dispatcher Service.
[   25.551110] [drm] Fence fallback timer expired on ring comp_1.2.1
[   26.082351] [drm] Fence fallback timer expired on ring comp_1.3.1
[   26.613601] [drm] Fence fallback timer expired on ring sdma0
[   27.144859] [drm] Fence fallback timer expired on ring sdma1
[   27.707351] [drm] Fence fallback timer expired on ring uvd
[   28.238600] [drm] Fence fallback timer expired on ring uvd_enc0
[   28.769850] [drm] Fence fallback timer expired on ring uvd_enc1
[   29.051639] igb 0000:03:00.0 enp3s0: igb: enp3s0 NIC Link is Up
1000 Mbps Full Duplex, Flow Control: RX/TX
[   29.061605] IPv6: ADDRCONF(NETDEV_CHANGE): enp3s0: link becomes ready
[  OK  ] Finished Network Manager Wait Online.
[  OK  ] Reached target Network is Online.
         Mounting /home/syq/sbuild...
[   29.156613] Key type dns_resolver registered
[   29.167111] NFS: Registering the id_resolver key type
[   29.172173] Key type id_resolver registered
[   29.176337] Key type id_legacy registered
[   29.180686] NFS4: Couldn't follow remote path
[   29.185475] NFS4: Couldn't follow remote path
[   29.394860] [drm] Fence fallback timer expired on ring vce0
[   32.269979] NFS4: Couldn't follow remote path
[   35.363774] NFS4: Couldn't follow remote path
[   38.457413] NFS4: Couldn't follow remote path
[   39.051103] ------------[ cut here ]------------
[   39.055697] WARNING: CPU: 1 PID: 0 at net/sched/sch_generic.c:443
dev_watchdog+0x31c/0x328
[   39.063914] NETDEV WATCHDOG: enp3s0 (igb): transmit queue 0 timed out
[   39.070313] Modules linked in: auth_rpcgss nfsv4 dns_resolver nfs
lockd grace rfkill snd_hda_codec_generic ledtrig_audio led_class
binfmt_misc vfat fat snd_hda_intel snd_intel_dspcfg snd_hda_codd
[   39.107286] CPU: 1 PID: 0 Comm: swapper/1 Not tainted
5.8.0-rc5-next-20200717+ #66
[   39.114808] Hardware name: Lemote
LEMOTE-LS3A4000-7A1000-1w-V0.1-pc/LEMOTE-LS3A4000-7A1000-1w-V01-pc,
BIOS Kunlun-A1901-V4.1.0 03/06/2020
[   39.127082] Stack : 000003e000000400 35c940b50177d66d
0000000000000001 35c940b50177d66d
[   39.135043]         35c940b50177d66d 0000000000000000
980000027d067bd8 ffffffff80be28d0
[   39.143003]         980000027d067a60 0000000000000001
980000027d067aa8 0000000000000000
[   39.150962]         0000000000000000 c0000000ffffefff
0000000005f5e100 980000027d067a98
[   39.158922]         0000000000000001 ffffffff80c80000
0000000000000000 0000000000000000
[   39.166882]         ffffffff80be0000 ffffffff80bf3b48
0000000000200000 0000000000000000
[   39.174842]         9800000005fcc828 0000000000000000
ffffffff80657e78 0000000000000008
[   39.182802]         ffffffff80e60008 980000027d158000
980000027d067bd0 0000000000000122
[   39.190762]         ffffffff805a06fc 0000000000000000
0000000000000000 0000000000000000
[   39.198721]         0000000000000000 0000000000000000
ffffffff8020efe0 35c940b50177d66d
[   39.206681]         ...
[   39.209107] Call Trace:
[   39.211536] [<ffffffff8020efe0>] show_stack+0x40/0x128
[   39.216644] [<ffffffff805a06fc>] dump_stack+0xac/0xf0
[   39.221663] [<ffffffff80233330>] __warn+0xc0/0xe8
[   39.226335] [<ffffffff80233400>] warn_slowpath_fmt+0xa8/0xe8
[   39.231957] [<ffffffff8091d6d4>] dev_watchdog+0x31c/0x328
[   39.237323] [<ffffffff802ad744>] call_timer_fn.isra.30+0x24/0x98
[   39.243290] [<ffffffff802adea4>] run_timer_softirq+0x44c/0x470
[   39.249087] [<ffffffff80a46708>] __do_softirq+0x180/0x350
[   39.254451] [<ffffffff80239da4>] irq_exit+0xc4/0xf0
[   39.259297] [<ffffffff805bf124>] plat_irq_dispatch+0x64/0x100
[   39.265005] [<ffffffff80208e60>] handle_int+0x140/0x14c
[   39.270195] [<ffffffff80208ce0>] __r4k_wait+0x20/0x40
[   39.275214] ---[ end trace 084e32ee82ee2ecd ]---
[   39.279962] igb 0000:03:00.0 enp3s0: Reset adapter
[   44.051629] igb 0000:03:00.0 enp3s0: igb: enp3s0 NIC Link is Up
1000 Mbps Full Duplex, Flow Control: RX/TX
[   45.551211] NFS4: Couldn't follow remote path
[***   ] A start job is running for /home/syq/sbuild (32s / 1min 38s)
[   ***] A start job is running for /home/syq/sbuild (36s / 1min 38s)
[  *** ] A start job is running for /home/syq/sbuild (36s / 1min 38s)
[***   ] A start job is running for /home/syq/sbuild (46s / 1min 38s)
[ ***  ] A start job is running for /home/syq/sbuild (47s / 1min 38s)

Revert this patch can solve this problem.
I think that we need a wide test before have a so fundamental change.

>
>  It makes no sense to me to repeat this across all the architectures, and
> even less so to do it individually one by one as people rediscover this
> issue.
>
>  Why don't we maintain the flag globally in `fs/binfmt_elf.c' which is
> where we already set it?  E.g.:
>
>         SET_PERSONALITY2(*elf_ex, &arch_state);
>         if (elf_read_implies_exec(*elf_ex, executable_stack))
>                 current->personality |= READ_IMPLIES_EXEC;
>         else
>                 current->personality &= ~READ_IMPLIES_EXEC;
>
>   Maciej



-- 
YunQiang Su

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH] MIPS: Prevent READ_IMPLIES_EXEC propagation
  2020-07-18  0:04       ` YunQiang Su
@ 2020-07-18  3:59         ` Tiezhu Yang
  2020-07-18  4:45           ` YunQiang Su
  0 siblings, 1 reply; 9+ messages in thread
From: Tiezhu Yang @ 2020-07-18  3:59 UTC (permalink / raw)
  To: YunQiang Su, Maciej W. Rozycki
  Cc: Thomas Bogendoerfer, linux-mips, LKML, Kees Cook, Xuefeng Li,
	Juxin Gao, Maciej W. Rozycki, Alex Deucher, Christian König,
	Yi Li

On 07/18/2020 08:04 AM, YunQiang Su wrote:
> Maciej W. Rozycki <macro@wdc.com> 于2020年7月17日周五 下午6:00写道:
>> On Wed, 8 Jul 2020, Tiezhu Yang wrote:
>>
>>>>> In the MIPS architecture, we should clear the security-relevant
>>>>> flag READ_IMPLIES_EXEC in the function SET_PERSONALITY2() of the
>>>>> file arch/mips/include/asm/elf.h.
>>>>>
>>>>> Otherwise, with this flag set, PROT_READ implies PROT_EXEC for
>>>>> mmap to make memory executable that is not safe, because this
>>>>> condition allows an attacker to simply jump to and execute bytes
>>>>> that are considered to be just data [1].
>>>>    Why isn't the arrangement made with `mips_elf_read_implies_exec'
>>>> sufficient?
>>> We inherit the READ_IMPLIES_EXEC personality flag across fork().
>>> If we do not explicitly clear this flag in SET_PERSONALITY2(),
>>> PROT_READ implies PROT_EXEC for mmap to make memory executable
>>> even if used with the GCC option "-z noexecstack" when compile.
> With next-20200717 with this patch on a Loongson 3A 4000 machine is
> AMDGPU video card it get

Hi Yunqiang,

Thanks for your test and report.

I test this patch used with Radeon and there is no this problem,
here is log:

[    3.554403] radeon 0000:03:00.0: VRAM: 2048M 0x0000000000000000 - 0x000000007FFFFFFF (2048M used)
[    3.554410] radeon 0000:03:00.0: GTT: 2048M 0x0000000080000000 - 0x00000000FFFFFFFF
[    3.554414] [drm] Detected VRAM RAM=2048M, BAR=256M
[    3.554418] [drm] RAM width 64bits DDR
[    3.554611] snd_hda_intel 0000:03:00.1: Force to snoop mode by module option
[    3.555277] [TTM] Zone  kernel: Available graphics memory: 3852912 KiB
[    3.555281] [TTM] Zone   dma32: Available graphics memory: 2097152 KiB
[    3.555284] [TTM] Initializing pool allocator
[    3.555298] [TTM] Initializing DMA pool allocator
[    3.555365] [drm] radeon: 2048M of VRAM memory ready
[    3.555369] [drm] radeon: 2048M of GTT memory ready.
[    3.555375] [drm] Loading oland Microcode
[    3.564885] [drm] Internal thermal controller with fan control
[    3.577104] snd_hda_codec_generic hdaudioC0D0: autoconfig for Generic: line_outs=0 (0x0/0x0/0x0/0x0/0x0) type:line
[    3.577112] snd_hda_codec_generic hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    3.577121] snd_hda_codec_generic hdaudioC0D0:    hp_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    3.577126] snd_hda_codec_generic hdaudioC0D0:    mono: mono_out=0x0
[    3.577131] snd_hda_codec_generic hdaudioC0D0:    dig-out=0x3/0x0
[    3.577135] snd_hda_codec_generic hdaudioC0D0:    inputs:
[    3.579113] input: HDA ATI HDMI HDMI as /devices/platform/bus@10000000/1a000000.pci/pci0000:00/0000:00:0f.0/0000:03:00.1/sound/card0/input6
[    3.584927] [drm] radeon: dpm initialized
[    3.590769] [drm] Found VCE firmware/feedback version 50.0.1 / 17!
[    3.590797] [drm] GART: num cpu pages 131072, num gpu pages 524288
[    3.592380] [drm] PCIE gen 2 link speeds already enabled
[    3.729862] [drm] PCIE GART of 2048M enabled (table at 0x00000000001DC000).
[    3.730241] radeon 0000:03:00.0: WB enabled
[    3.730252] radeon 0000:03:00.0: fence driver on ring 0 use gpu addr 0x0000000080000c00 and cpu addr 0x000000006703df0a
[    3.730258] radeon 0000:03:00.0: fence driver on ring 1 use gpu addr 0x0000000080000c04 and cpu addr 0x00000000d769f606
[    3.730263] radeon 0000:03:00.0: fence driver on ring 2 use gpu addr 0x0000000080000c08 and cpu addr 0x00000000f843f9c0
[    3.730269] radeon 0000:03:00.0: fence driver on ring 3 use gpu addr 0x0000000080000c0c and cpu addr 0x000000008a749926
[    3.730275] radeon 0000:03:00.0: fence driver on ring 4 use gpu addr 0x0000000080000c10 and cpu addr 0x0000000063a5bdd6
[    3.761115] radeon 0000:03:00.0: fence driver on ring 5 use gpu addr 0x0000000000075a18 and cpu addr 0x0000000030827134
[    3.875028] radeon 0000:03:00.0: failed VCE resume (-145).
[    3.875037] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    3.875042] radeon 0000:03:00.0: radeon: MSI limited to 32-bit
[    3.875117] radeon 0000:03:00.0: radeon: using MSI.
[    3.875171] [drm] radeon: irq initialized.
[    4.072354] [drm] ring test on 0 succeeded in 1 usecs
[    4.072363] [drm] ring test on 1 succeeded in 1 usecs
[    4.072372] [drm] ring test on 2 succeeded in 1 usecs
[    4.072388] [drm] ring test on 3 succeeded in 4 usecs
[    4.072401] [drm] ring test on 4 succeeded in 4 usecs
[    4.249024] [drm] ring test on 5 succeeded in 1 usecs
[    4.249034] [drm] UVD initialized successfully.
[    4.249384] [drm] ib test on ring 0 succeeded in 0 usecs
[    4.249445] [drm] ib test on ring 1 succeeded in 0 usecs
[    4.249501] [drm] ib test on ring 2 succeeded in 0 usecs
[    4.249547] [drm] ib test on ring 3 succeeded in 0 usecs
[    4.249587] [drm] ib test on ring 4 succeeded in 0 usecs
[    4.400723] [drm] ib test on ring 5 succeeded
[    4.401930] [drm] Radeon Display Connectors
[    4.401934] [drm] Connector 0:
[    4.401937] [drm]   HDMI-A-1
[    4.401940] [drm]   HPD2
[    4.401945] [drm]   DDC: 0x6530 0x6530 0x6534 0x6534 0x6538 0x6538 0x653c 0x653c
[    4.401947] [drm]   Encoders:
[    4.401951] [drm]     DFP1: INTERNAL_UNIPHY
[    4.401954] [drm] Connector 1:
[    4.401957] [drm]   VGA-1
[    4.401961] [drm]   DDC: 0x65c0 0x65c0 0x65c4 0x65c4 0x65c8 0x65c8 0x65cc 0x65cc
[    4.401964] [drm]   Encoders:
[    4.401967] [drm]     CRT1: INTERNAL_KLDSCP_DAC1
[    4.693982] [drm] fb mappable at 0x405F4000
[    4.693986] [drm] vram apper at 0x40000000
[    4.693989] [drm] size 8306688
[    4.693992] [drm] fb depth is 24
[    4.693994] [drm]    pitch is 7680
[    4.839216] Console: switching to colour frame buffer device 240x67
[    4.935491] atkbd serio2: keyboard reset failed on isa0060/serio2
[    5.260310] radeon 0000:03:00.0: fb0: radeondrmfb frame buffer device
[    5.279275] [drm] Initialized radeon 2.50.0 20080528 for 0000:03:00.0 on minor 0


Let us analysis to find the root cause.

Thanks,
Tiezhu

>
> [   25.019868] [drm] Fence fallback timer expired on ring comp_1.1.1
>           Starting Network Manager Script Dispatcher Service...
> [  OK  ] Started Network Manager Script Dispatcher Service.
> [   25.551110] [drm] Fence fallback timer expired on ring comp_1.2.1
> [   26.082351] [drm] Fence fallback timer expired on ring comp_1.3.1
> [   26.613601] [drm] Fence fallback timer expired on ring sdma0
> [   27.144859] [drm] Fence fallback timer expired on ring sdma1
> [   27.707351] [drm] Fence fallback timer expired on ring uvd
> [   28.238600] [drm] Fence fallback timer expired on ring uvd_enc0
> [   28.769850] [drm] Fence fallback timer expired on ring uvd_enc1
> [   29.051639] igb 0000:03:00.0 enp3s0: igb: enp3s0 NIC Link is Up
> 1000 Mbps Full Duplex, Flow Control: RX/TX
> [   29.061605] IPv6: ADDRCONF(NETDEV_CHANGE): enp3s0: link becomes ready
> [  OK  ] Finished Network Manager Wait Online.
> [  OK  ] Reached target Network is Online.
>           Mounting /home/syq/sbuild...
> [   29.156613] Key type dns_resolver registered
> [   29.167111] NFS: Registering the id_resolver key type
> [   29.172173] Key type id_resolver registered
> [   29.176337] Key type id_legacy registered
> [   29.180686] NFS4: Couldn't follow remote path
> [   29.185475] NFS4: Couldn't follow remote path
> [   29.394860] [drm] Fence fallback timer expired on ring vce0
> [   32.269979] NFS4: Couldn't follow remote path
> [   35.363774] NFS4: Couldn't follow remote path
> [   38.457413] NFS4: Couldn't follow remote path
> [   39.051103] ------------[ cut here ]------------
> [   39.055697] WARNING: CPU: 1 PID: 0 at net/sched/sch_generic.c:443
> dev_watchdog+0x31c/0x328
> [   39.063914] NETDEV WATCHDOG: enp3s0 (igb): transmit queue 0 timed out
> [   39.070313] Modules linked in: auth_rpcgss nfsv4 dns_resolver nfs
> lockd grace rfkill snd_hda_codec_generic ledtrig_audio led_class
> binfmt_misc vfat fat snd_hda_intel snd_intel_dspcfg snd_hda_codd
> [   39.107286] CPU: 1 PID: 0 Comm: swapper/1 Not tainted
> 5.8.0-rc5-next-20200717+ #66
> [   39.114808] Hardware name: Lemote
> LEMOTE-LS3A4000-7A1000-1w-V0.1-pc/LEMOTE-LS3A4000-7A1000-1w-V01-pc,
> BIOS Kunlun-A1901-V4.1.0 03/06/2020
> [   39.127082] Stack : 000003e000000400 35c940b50177d66d
> 0000000000000001 35c940b50177d66d
> [   39.135043]         35c940b50177d66d 0000000000000000
> 980000027d067bd8 ffffffff80be28d0
> [   39.143003]         980000027d067a60 0000000000000001
> 980000027d067aa8 0000000000000000
> [   39.150962]         0000000000000000 c0000000ffffefff
> 0000000005f5e100 980000027d067a98
> [   39.158922]         0000000000000001 ffffffff80c80000
> 0000000000000000 0000000000000000
> [   39.166882]         ffffffff80be0000 ffffffff80bf3b48
> 0000000000200000 0000000000000000
> [   39.174842]         9800000005fcc828 0000000000000000
> ffffffff80657e78 0000000000000008
> [   39.182802]         ffffffff80e60008 980000027d158000
> 980000027d067bd0 0000000000000122
> [   39.190762]         ffffffff805a06fc 0000000000000000
> 0000000000000000 0000000000000000
> [   39.198721]         0000000000000000 0000000000000000
> ffffffff8020efe0 35c940b50177d66d
> [   39.206681]         ...
> [   39.209107] Call Trace:
> [   39.211536] [<ffffffff8020efe0>] show_stack+0x40/0x128
> [   39.216644] [<ffffffff805a06fc>] dump_stack+0xac/0xf0
> [   39.221663] [<ffffffff80233330>] __warn+0xc0/0xe8
> [   39.226335] [<ffffffff80233400>] warn_slowpath_fmt+0xa8/0xe8
> [   39.231957] [<ffffffff8091d6d4>] dev_watchdog+0x31c/0x328
> [   39.237323] [<ffffffff802ad744>] call_timer_fn.isra.30+0x24/0x98
> [   39.243290] [<ffffffff802adea4>] run_timer_softirq+0x44c/0x470
> [   39.249087] [<ffffffff80a46708>] __do_softirq+0x180/0x350
> [   39.254451] [<ffffffff80239da4>] irq_exit+0xc4/0xf0
> [   39.259297] [<ffffffff805bf124>] plat_irq_dispatch+0x64/0x100
> [   39.265005] [<ffffffff80208e60>] handle_int+0x140/0x14c
> [   39.270195] [<ffffffff80208ce0>] __r4k_wait+0x20/0x40
> [   39.275214] ---[ end trace 084e32ee82ee2ecd ]---
> [   39.279962] igb 0000:03:00.0 enp3s0: Reset adapter
> [   44.051629] igb 0000:03:00.0 enp3s0: igb: enp3s0 NIC Link is Up
> 1000 Mbps Full Duplex, Flow Control: RX/TX
> [   45.551211] NFS4: Couldn't follow remote path
> [***   ] A start job is running for /home/syq/sbuild (32s / 1min 38s)
> [   ***] A start job is running for /home/syq/sbuild (36s / 1min 38s)
> [  *** ] A start job is running for /home/syq/sbuild (36s / 1min 38s)
> [***   ] A start job is running for /home/syq/sbuild (46s / 1min 38s)
> [ ***  ] A start job is running for /home/syq/sbuild (47s / 1min 38s)
>
> Revert this patch can solve this problem.
> I think that we need a wide test before have a so fundamental change.
>
>>   It makes no sense to me to repeat this across all the architectures, and
>> even less so to do it individually one by one as people rediscover this
>> issue.
>>
>>   Why don't we maintain the flag globally in `fs/binfmt_elf.c' which is
>> where we already set it?  E.g.:
>>
>>          SET_PERSONALITY2(*elf_ex, &arch_state);
>>          if (elf_read_implies_exec(*elf_ex, executable_stack))
>>                  current->personality |= READ_IMPLIES_EXEC;
>>          else
>>                  current->personality &= ~READ_IMPLIES_EXEC;
>>
>>    Maciej
>
>


^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH] MIPS: Prevent READ_IMPLIES_EXEC propagation
  2020-07-18  3:59         ` Tiezhu Yang
@ 2020-07-18  4:45           ` YunQiang Su
  0 siblings, 0 replies; 9+ messages in thread
From: YunQiang Su @ 2020-07-18  4:45 UTC (permalink / raw)
  To: Tiezhu Yang
  Cc: Maciej W. Rozycki, Thomas Bogendoerfer, linux-mips, LKML,
	Kees Cook, Xuefeng Li, Juxin Gao, Maciej W. Rozycki,
	Alex Deucher, Christian König, Yi Li

Tiezhu Yang <yangtiezhu@loongson.cn> 于2020年7月18日周六 上午11:59写道:
>
> On 07/18/2020 08:04 AM, YunQiang Su wrote:
> > Maciej W. Rozycki <macro@wdc.com> 于2020年7月17日周五 下午6:00写道:
> >> On Wed, 8 Jul 2020, Tiezhu Yang wrote:
> >>
> >>>>> In the MIPS architecture, we should clear the security-relevant
> >>>>> flag READ_IMPLIES_EXEC in the function SET_PERSONALITY2() of the
> >>>>> file arch/mips/include/asm/elf.h.
> >>>>>
> >>>>> Otherwise, with this flag set, PROT_READ implies PROT_EXEC for
> >>>>> mmap to make memory executable that is not safe, because this
> >>>>> condition allows an attacker to simply jump to and execute bytes
> >>>>> that are considered to be just data [1].
> >>>>    Why isn't the arrangement made with `mips_elf_read_implies_exec'
> >>>> sufficient?
> >>> We inherit the READ_IMPLIES_EXEC personality flag across fork().
> >>> If we do not explicitly clear this flag in SET_PERSONALITY2(),
> >>> PROT_READ implies PROT_EXEC for mmap to make memory executable
> >>> even if used with the GCC option "-z noexecstack" when compile.
> > With next-20200717 with this patch on a Loongson 3A 4000 machine is
> > AMDGPU video card it get
>
> Hi Yunqiang,
>
> Thanks for your test and report.
>
> I test this patch used with Radeon and there is no this problem,
> here is log:
>
> [    3.554403] radeon 0000:03:00.0: VRAM: 2048M 0x0000000000000000 - 0x000000007FFFFFFF (2048M used)
> [    3.554410] radeon 0000:03:00.0: GTT: 2048M 0x0000000080000000 - 0x00000000FFFFFFFF
> [    3.554414] [drm] Detected VRAM RAM=2048M, BAR=256M
> [    3.554418] [drm] RAM width 64bits DDR
> [    3.554611] snd_hda_intel 0000:03:00.1: Force to snoop mode by module option
> [    3.555277] [TTM] Zone  kernel: Available graphics memory: 3852912 KiB
> [    3.555281] [TTM] Zone   dma32: Available graphics memory: 2097152 KiB
> [    3.555284] [TTM] Initializing pool allocator
> [    3.555298] [TTM] Initializing DMA pool allocator
> [    3.555365] [drm] radeon: 2048M of VRAM memory ready
> [    3.555369] [drm] radeon: 2048M of GTT memory ready.
> [    3.555375] [drm] Loading oland Microcode
> [    3.564885] [drm] Internal thermal controller with fan control
> [    3.577104] snd_hda_codec_generic hdaudioC0D0: autoconfig for Generic: line_outs=0 (0x0/0x0/0x0/0x0/0x0) type:line
> [    3.577112] snd_hda_codec_generic hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
> [    3.577121] snd_hda_codec_generic hdaudioC0D0:    hp_outs=0 (0x0/0x0/0x0/0x0/0x0)
> [    3.577126] snd_hda_codec_generic hdaudioC0D0:    mono: mono_out=0x0
> [    3.577131] snd_hda_codec_generic hdaudioC0D0:    dig-out=0x3/0x0
> [    3.577135] snd_hda_codec_generic hdaudioC0D0:    inputs:
> [    3.579113] input: HDA ATI HDMI HDMI as /devices/platform/bus@10000000/1a000000.pci/pci0000:00/0000:00:0f.0/0000:03:00.1/sound/card0/input6
> [    3.584927] [drm] radeon: dpm initialized
> [    3.590769] [drm] Found VCE firmware/feedback version 50.0.1 / 17!
> [    3.590797] [drm] GART: num cpu pages 131072, num gpu pages 524288
> [    3.592380] [drm] PCIE gen 2 link speeds already enabled
> [    3.729862] [drm] PCIE GART of 2048M enabled (table at 0x00000000001DC000).
> [    3.730241] radeon 0000:03:00.0: WB enabled
> [    3.730252] radeon 0000:03:00.0: fence driver on ring 0 use gpu addr 0x0000000080000c00 and cpu addr 0x000000006703df0a
> [    3.730258] radeon 0000:03:00.0: fence driver on ring 1 use gpu addr 0x0000000080000c04 and cpu addr 0x00000000d769f606
> [    3.730263] radeon 0000:03:00.0: fence driver on ring 2 use gpu addr 0x0000000080000c08 and cpu addr 0x00000000f843f9c0
> [    3.730269] radeon 0000:03:00.0: fence driver on ring 3 use gpu addr 0x0000000080000c0c and cpu addr 0x000000008a749926
> [    3.730275] radeon 0000:03:00.0: fence driver on ring 4 use gpu addr 0x0000000080000c10 and cpu addr 0x0000000063a5bdd6
> [    3.761115] radeon 0000:03:00.0: fence driver on ring 5 use gpu addr 0x0000000000075a18 and cpu addr 0x0000000030827134
> [    3.875028] radeon 0000:03:00.0: failed VCE resume (-145).
> [    3.875037] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
> [    3.875042] radeon 0000:03:00.0: radeon: MSI limited to 32-bit
> [    3.875117] radeon 0000:03:00.0: radeon: using MSI.
> [    3.875171] [drm] radeon: irq initialized.
> [    4.072354] [drm] ring test on 0 succeeded in 1 usecs
> [    4.072363] [drm] ring test on 1 succeeded in 1 usecs
> [    4.072372] [drm] ring test on 2 succeeded in 1 usecs
> [    4.072388] [drm] ring test on 3 succeeded in 4 usecs
> [    4.072401] [drm] ring test on 4 succeeded in 4 usecs
> [    4.249024] [drm] ring test on 5 succeeded in 1 usecs
> [    4.249034] [drm] UVD initialized successfully.
> [    4.249384] [drm] ib test on ring 0 succeeded in 0 usecs
> [    4.249445] [drm] ib test on ring 1 succeeded in 0 usecs
> [    4.249501] [drm] ib test on ring 2 succeeded in 0 usecs
> [    4.249547] [drm] ib test on ring 3 succeeded in 0 usecs
> [    4.249587] [drm] ib test on ring 4 succeeded in 0 usecs
> [    4.400723] [drm] ib test on ring 5 succeeded
> [    4.401930] [drm] Radeon Display Connectors
> [    4.401934] [drm] Connector 0:
> [    4.401937] [drm]   HDMI-A-1
> [    4.401940] [drm]   HPD2
> [    4.401945] [drm]   DDC: 0x6530 0x6530 0x6534 0x6534 0x6538 0x6538 0x653c 0x653c
> [    4.401947] [drm]   Encoders:
> [    4.401951] [drm]     DFP1: INTERNAL_UNIPHY
> [    4.401954] [drm] Connector 1:
> [    4.401957] [drm]   VGA-1
> [    4.401961] [drm]   DDC: 0x65c0 0x65c0 0x65c4 0x65c4 0x65c8 0x65c8 0x65cc 0x65cc
> [    4.401964] [drm]   Encoders:
> [    4.401967] [drm]     CRT1: INTERNAL_KLDSCP_DAC1
> [    4.693982] [drm] fb mappable at 0x405F4000
> [    4.693986] [drm] vram apper at 0x40000000
> [    4.693989] [drm] size 8306688
> [    4.693992] [drm] fb depth is 24
> [    4.693994] [drm]    pitch is 7680
> [    4.839216] Console: switching to colour frame buffer device 240x67
> [    4.935491] atkbd serio2: keyboard reset failed on isa0060/serio2
> [    5.260310] radeon 0000:03:00.0: fb0: radeondrmfb frame buffer device
> [    5.279275] [drm] Initialized radeon 2.50.0 20080528 for 0000:03:00.0 on minor 0
>
>
> Let us analysis to find the root cause.

You are right. I can reproduce the same problem with 5.8rc5.
It should have no relations with this patch.

>
> Thanks,
> Tiezhu
>
> >
> > [   25.019868] [drm] Fence fallback timer expired on ring comp_1.1.1
> >           Starting Network Manager Script Dispatcher Service...
> > [  OK  ] Started Network Manager Script Dispatcher Service.
> > [   25.551110] [drm] Fence fallback timer expired on ring comp_1.2.1
> > [   26.082351] [drm] Fence fallback timer expired on ring comp_1.3.1
> > [   26.613601] [drm] Fence fallback timer expired on ring sdma0
> > [   27.144859] [drm] Fence fallback timer expired on ring sdma1
> > [   27.707351] [drm] Fence fallback timer expired on ring uvd
> > [   28.238600] [drm] Fence fallback timer expired on ring uvd_enc0
> > [   28.769850] [drm] Fence fallback timer expired on ring uvd_enc1
> > [   29.051639] igb 0000:03:00.0 enp3s0: igb: enp3s0 NIC Link is Up
> > 1000 Mbps Full Duplex, Flow Control: RX/TX
> > [   29.061605] IPv6: ADDRCONF(NETDEV_CHANGE): enp3s0: link becomes ready
> > [  OK  ] Finished Network Manager Wait Online.
> > [  OK  ] Reached target Network is Online.
> >           Mounting /home/syq/sbuild...
> > [   29.156613] Key type dns_resolver registered
> > [   29.167111] NFS: Registering the id_resolver key type
> > [   29.172173] Key type id_resolver registered
> > [   29.176337] Key type id_legacy registered
> > [   29.180686] NFS4: Couldn't follow remote path
> > [   29.185475] NFS4: Couldn't follow remote path
> > [   29.394860] [drm] Fence fallback timer expired on ring vce0
> > [   32.269979] NFS4: Couldn't follow remote path
> > [   35.363774] NFS4: Couldn't follow remote path
> > [   38.457413] NFS4: Couldn't follow remote path
> > [   39.051103] ------------[ cut here ]------------
> > [   39.055697] WARNING: CPU: 1 PID: 0 at net/sched/sch_generic.c:443
> > dev_watchdog+0x31c/0x328
> > [   39.063914] NETDEV WATCHDOG: enp3s0 (igb): transmit queue 0 timed out
> > [   39.070313] Modules linked in: auth_rpcgss nfsv4 dns_resolver nfs
> > lockd grace rfkill snd_hda_codec_generic ledtrig_audio led_class
> > binfmt_misc vfat fat snd_hda_intel snd_intel_dspcfg snd_hda_codd
> > [   39.107286] CPU: 1 PID: 0 Comm: swapper/1 Not tainted
> > 5.8.0-rc5-next-20200717+ #66
> > [   39.114808] Hardware name: Lemote
> > LEMOTE-LS3A4000-7A1000-1w-V0.1-pc/LEMOTE-LS3A4000-7A1000-1w-V01-pc,
> > BIOS Kunlun-A1901-V4.1.0 03/06/2020
> > [   39.127082] Stack : 000003e000000400 35c940b50177d66d
> > 0000000000000001 35c940b50177d66d
> > [   39.135043]         35c940b50177d66d 0000000000000000
> > 980000027d067bd8 ffffffff80be28d0
> > [   39.143003]         980000027d067a60 0000000000000001
> > 980000027d067aa8 0000000000000000
> > [   39.150962]         0000000000000000 c0000000ffffefff
> > 0000000005f5e100 980000027d067a98
> > [   39.158922]         0000000000000001 ffffffff80c80000
> > 0000000000000000 0000000000000000
> > [   39.166882]         ffffffff80be0000 ffffffff80bf3b48
> > 0000000000200000 0000000000000000
> > [   39.174842]         9800000005fcc828 0000000000000000
> > ffffffff80657e78 0000000000000008
> > [   39.182802]         ffffffff80e60008 980000027d158000
> > 980000027d067bd0 0000000000000122
> > [   39.190762]         ffffffff805a06fc 0000000000000000
> > 0000000000000000 0000000000000000
> > [   39.198721]         0000000000000000 0000000000000000
> > ffffffff8020efe0 35c940b50177d66d
> > [   39.206681]         ...
> > [   39.209107] Call Trace:
> > [   39.211536] [<ffffffff8020efe0>] show_stack+0x40/0x128
> > [   39.216644] [<ffffffff805a06fc>] dump_stack+0xac/0xf0
> > [   39.221663] [<ffffffff80233330>] __warn+0xc0/0xe8
> > [   39.226335] [<ffffffff80233400>] warn_slowpath_fmt+0xa8/0xe8
> > [   39.231957] [<ffffffff8091d6d4>] dev_watchdog+0x31c/0x328
> > [   39.237323] [<ffffffff802ad744>] call_timer_fn.isra.30+0x24/0x98
> > [   39.243290] [<ffffffff802adea4>] run_timer_softirq+0x44c/0x470
> > [   39.249087] [<ffffffff80a46708>] __do_softirq+0x180/0x350
> > [   39.254451] [<ffffffff80239da4>] irq_exit+0xc4/0xf0
> > [   39.259297] [<ffffffff805bf124>] plat_irq_dispatch+0x64/0x100
> > [   39.265005] [<ffffffff80208e60>] handle_int+0x140/0x14c
> > [   39.270195] [<ffffffff80208ce0>] __r4k_wait+0x20/0x40
> > [   39.275214] ---[ end trace 084e32ee82ee2ecd ]---
> > [   39.279962] igb 0000:03:00.0 enp3s0: Reset adapter
> > [   44.051629] igb 0000:03:00.0 enp3s0: igb: enp3s0 NIC Link is Up
> > 1000 Mbps Full Duplex, Flow Control: RX/TX
> > [   45.551211] NFS4: Couldn't follow remote path
> > [***   ] A start job is running for /home/syq/sbuild (32s / 1min 38s)
> > [   ***] A start job is running for /home/syq/sbuild (36s / 1min 38s)
> > [  *** ] A start job is running for /home/syq/sbuild (36s / 1min 38s)
> > [***   ] A start job is running for /home/syq/sbuild (46s / 1min 38s)
> > [ ***  ] A start job is running for /home/syq/sbuild (47s / 1min 38s)
> >
> > Revert this patch can solve this problem.
> > I think that we need a wide test before have a so fundamental change.
> >
> >>   It makes no sense to me to repeat this across all the architectures, and
> >> even less so to do it individually one by one as people rediscover this
> >> issue.
> >>
> >>   Why don't we maintain the flag globally in `fs/binfmt_elf.c' which is
> >> where we already set it?  E.g.:
> >>
> >>          SET_PERSONALITY2(*elf_ex, &arch_state);
> >>          if (elf_read_implies_exec(*elf_ex, executable_stack))
> >>                  current->personality |= READ_IMPLIES_EXEC;
> >>          else
> >>                  current->personality &= ~READ_IMPLIES_EXEC;
> >>
> >>    Maciej
> >
> >
>


-- 
YunQiang Su

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2020-07-18  4:46 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-07  9:39 [PATCH] MIPS: Prevent READ_IMPLIES_EXEC propagation Tiezhu Yang
2020-07-07 19:45 ` Maciej W. Rozycki
2020-07-08  7:51   ` Tiezhu Yang
2020-07-17 10:00     ` Maciej W. Rozycki
2020-07-18  0:04       ` YunQiang Su
2020-07-18  3:59         ` Tiezhu Yang
2020-07-18  4:45           ` YunQiang Su
2020-07-08 23:26 ` Kees Cook
2020-07-16 11:59 ` Thomas Bogendoerfer

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.