2 Copyright (C) 1995-2020 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 <jmpbuf-offsets.h>
21 #include <jmp_buf-ssp.h>
22 #include <asm-syntax.h>
23 #include <stap-probe.h>
25 #define PARMS 4 /* no space for saved regs */
27 #define SIGMSK JMPBUF+4
29 /* Don't save shadow stack register if shadow stack isn't enabled. */
31 # undef SHADOW_STACK_POINTER_OFFSET
36 movl JMPBUF(%esp), %eax
39 movl %ebx, (JB_BX*4)(%eax)
40 movl %esi, (JB_SI*4)(%eax)
41 movl %edi, (JB_DI*4)(%eax)
42 leal JMPBUF(%esp), %ecx /* Save SP as it will be after we return. */
46 movl %ecx, (JB_SP*4)(%eax)
47 movl 0(%esp), %ecx /* Save PC we are returning to now. */
48 LIBC_PROBE (setjmp, 3, 4@%eax, -4@SIGMSK(%esp), 4@%ecx)
52 movl %ecx, (JB_PC*4)(%eax)
53 movl %ebp, (JB_BP*4)(%eax) /* Save caller's frame pointer. */
55 #ifdef SHADOW_STACK_POINTER_OFFSET
56 # if IS_IN (libc) && defined SHARED && defined FEATURE_1_OFFSET
57 /* Check if Shadow Stack is enabled. */
58 testl $X86_FEATURE_1_SHSTK, %gs:FEATURE_1_OFFSET
63 /* Get the current Shadow-Stack-Pointer and save it. */
65 movl %ecx, SHADOW_STACK_POINTER_OFFSET(%eax)
66 # if IS_IN (libc) && defined SHARED && defined FEATURE_1_OFFSET
71 /* In ld.so we never save the signal mask. */
75 /* Make a tail call to __sigjmp_save; it takes the same args. */
79 hidden_def (__sigsetjmp)