RFC: Shadow Stack support in glibc
Yu-cheng Yu
yu-cheng.yu@intel.com
Wed Jun 7 23:01:00 GMT 2017
On Mon, 2017-06-05 at 23:18 -0700, Florian Weimer wrote:
> On 06/05/2017 11:36 PM, H.J. Lu wrote:
> > Most of glibc functions are compatible with Shadow Stack, except for
> >
> > 1. setjmp/longjmp need to be extended to support Shadow Stack.
> > 2. getcontext/setcontext may be extended to support Shadow Stack.
> > 3. makecontext/swapcontext are hard to support Shadow Stack.
>
> What about these?
>
> clone
> sigaltstack
> pthread_attr_setstack
> pthread_attr_setstackaddr
> pthread_attr_setstacksize
>
Please comment on the following.
Thanks,
Yu-cheng
clone:
The child's shadow stack can be copied on access, similar to
copy-on-write of a regular memory page. A shadow stack PTE has to be
dirty and read-only. When a task is cloned, the kernel makes shadow
stack PTEs clean until they are accessed again. At that time, a copy is
made.
sigaltstack:
When the kernel gets the sigaltstack syscall, it allocates a
shadow_sigaltstack and records the pointer in the task header (similar
to the existing sigaltstack pointer). If there is another sigaltstack
syscall, the kernel frees the previous shadow_sigaltstack; else, the
shadow_sigaltstack is freed upon task exit.
pthread_attr_xxx:
Since shadow stack stores only return pointers, it is not affected by
the address/size of the program stack.
More information about the Libc-alpha
mailing list