1 /* Save current context.
2 Copyright (C) 2002-2023 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <https://www.gnu.org/licenses/>. */
20 #include <asm/prctl.h>
22 #include "ucontext_i.h"
24 /* int __getcontext (ucontext_t *ucp)
26 Saves the machine context in UCP such that when it is activated,
27 it appears as if __getcontext() returned again.
29 This implementation is intended to be used for *synchronous* context
30 switches only. Therefore, it does not have to save anything
31 other than the PRESERVED state. */
35 /* Save the preserved registers, the registers used for passing
36 args, and the return address. */
53 leaq 8(%rsp), %rcx /* Exclude the return address. */
57 /* Check if shadow stack is enabled. */
58 testl $X86_FEATURE_1_SHSTK, %fs:FEATURE_1_OFFSET
62 cmpq %fs:SSP_BASE_OFFSET, %rax
63 jnz L(shadow_stack_bound_recorded)
65 /* When the shadow stack base is unset, the default shadow
66 stack is in use. Use the current shadow stack pointer
67 as the marker for the default shadow stack. */
69 movq %rax, %fs:SSP_BASE_OFFSET
71 L(shadow_stack_bound_recorded):
72 /* Get the current shadow stack pointer. */
74 /* NB: Save the caller's shadow stack so that we can jump back
75 to the caller directly. */
79 /* Save the current shadow stack base in ucontext. */
80 movq %fs:SSP_BASE_OFFSET, %rax
81 movq %rax, (oSSP + 8)(%rdi)
85 /* We have separate floating-point register content memory on the
86 stack. We use the __fpregs_mem block in the context. Set the
87 links up correctly. */
89 leaq oFPREGSMEM(%rdi), %rcx
90 movq %rcx, oFPREGS(%rdi)
91 /* Save the floating-point environment. */
96 /* Save the current signal mask with
97 rt_sigprocmask (SIG_BLOCK, NULL, set,_NSIG/8). */
98 leaq oSIGMASK(%rdi), %rdx
103 movl $SIG_BLOCK, %edi
106 movl $__NR_rt_sigprocmask, %eax
108 cmpq $-4095, %rax /* Check %rax for error. */
109 jae SYSCALL_ERROR_LABEL /* Jump to error handler if error. */
111 /* All done, return 0 for success. */
114 PSEUDO_END(__getcontext)
116 weak_alias (__getcontext, getcontext)