Re: [PATCH v4 0/3] MIPS executable stack protection

2015-08-05 Thread David Daney
On 08/05/2015 04:49 PM, Leonid Yegoshin wrote: The following series implements an executable stack protection in MIPS. It sets up a per-thread 'VDSO' page and appropriate TLB support. Page is set write-protected from user and is maintained via kernel VA. MIPS FPU emulation is shifted to new page

Re: [PATCH v4 0/3] MIPS executable stack protection

2015-08-05 Thread Leonid Yegoshin
On 08/05/2015 05:00 PM, David Daney wrote: Does it handle nested emulation? Yes, it does since v2: "- Added unwinding of VDSO emulation stack at signal handler invocation, hiding an emulation page (Andy Lutomirski note in other patch comments)" - Leonid. -- To unsubscribe from this li

[PATCH v4 0/3] MIPS executable stack protection

2015-08-05 Thread Leonid Yegoshin
The following series implements an executable stack protection in MIPS. It sets up a per-thread 'VDSO' page and appropriate TLB support. Page is set write-protected from user and is maintained via kernel VA. MIPS FPU emulation is shifted to new page and stack is relieved for execute protection as