1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
|
/* Copyright (C) 1991-2025 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
The GNU C Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
<https://www.gnu.org/licenses/>. */
#include <hurd.h>
#include <hurd/signal.h>
#include <hurd/msg.h>
#include <stdlib.h>
#include <cpuid.h>
/* This is run on the thread stack after restoring it, to be able to
unlock SS off sigstack. */
void
__sigreturn2 (struct hurd_sigstate *ss, uintptr_t *usp,
mach_port_t sc_reply_port)
{
mach_port_t reply_port;
_hurd_sigstate_unlock (ss);
/* Destroy the MiG reply port used by the signal handler, and restore the
reply port in use by the thread when interrupted.
We cannot use the original reply port for our RPCs that we do here, since
we could unexpectedly receive/consume a reply message meant for the user
(in particular, msg_sig_post_reply), and also since we would deallocate
the port if *our* RPC fails, which we don't want to do since the user
still has the old name. And so, temporarily set MACH_PORT_DEAD as our
reply name, and make sure destroying the port is the very last RPC we
do. */
reply_port = THREAD_GETMEM (THREAD_SELF, reply_port);
THREAD_SETMEM (THREAD_SELF, reply_port, MACH_PORT_DEAD);
if (__glibc_likely (MACH_PORT_VALID (reply_port)))
(void) __mach_port_mod_refs (__mach_task_self (), reply_port,
MACH_PORT_RIGHT_RECEIVE, -1);
THREAD_SETMEM (THREAD_SELF, reply_port, sc_reply_port);
void sigreturn2_trampoline (uintptr_t *usp) __attribute__ ((__noreturn__));
sigreturn2_trampoline (usp);
}
asm("sigreturn2_trampoline:\n"
/* Point the stack to the register dump. */
"movq %rdi, %rsp\n"
/* Pop off the registers. */
"popq %r8\n"
"popq %r9\n"
"popq %r10\n"
"popq %r11\n"
"popq %r12\n"
"popq %r13\n"
"popq %r14\n"
"popq %r15\n"
"popq %rdi\n"
"popq %rsi\n"
"popq %rbp\n"
"popq %rbx\n"
"popq %rdx\n"
"popq %rcx\n"
"popq %rax\n"
"popfq\n"
/* Restore %rip and %rsp with a single instruction. */
"retq $128" );
int
__sigreturn (struct sigcontext *scp)
{
struct hurd_sigstate *ss;
struct hurd_userlink *link = (void *) &scp[1];
uintptr_t *usp;
mach_port_t sc_reply_port;
if (__glibc_unlikely (scp == NULL || (scp->sc_mask & _SIG_CANT_MASK)))
return __hurd_fail (EINVAL);
ss = _hurd_self_sigstate ();
_hurd_sigstate_lock (ss);
/* Remove the link on the `active resources' chain added by
_hurd_setup_sighandler. Its purpose was to make sure
that we got called; now we have, it is done. */
_hurd_userlink_unlink (link);
/* Restore the set of blocked signals, and the intr_port slot. */
ss->blocked = scp->sc_mask;
ss->intr_port = scp->sc_intr_port;
/* Check for pending signals that were blocked by the old set. */
if (_hurd_sigstate_pending (ss) & ~ss->blocked)
{
/* There are pending signals that just became unblocked. Wake up the
signal thread to deliver them. But first, squirrel away SCP where
the signal thread will notice it if it runs another handler, and
arrange to have us called over again in the new reality. */
ss->context = scp;
_hurd_sigstate_unlock (ss);
__msg_sig_post (_hurd_msgport, 0, 0, __mach_task_self ());
/* If a pending signal was handled, sig_post never returned.
If it did return, the pending signal didn't run a handler;
proceed as usual. */
_hurd_sigstate_lock (ss);
ss->context = NULL;
}
if (scp->sc_onstack)
ss->sigaltstack.ss_flags &= ~SS_ONSTACK;
#ifdef i386_XFLOAT_STATE
if (scp->xstate)
{
if (scp->xstate->initialized)
{
unsigned eax, ebx, ecx, edx;
__cpuid_count(0xd, 0, eax, ebx, ecx, edx);
switch (scp->xstate->fp_save_kind)
{
case 0: // FNSAVE
asm volatile("frstor %0" : : "m" (scp->xstate->hw_state));
break;
case 1: // FXSAVE
asm volatile("fxrstor %0" : : "m" (scp->xstate->hw_state), \
"a" (eax), "d" (edx));
break;
default: // XSAVE, XSAVEOPT, XSAVEC, XSAVES
asm volatile("xrstor %0" : : "m" (scp->xstate->hw_state), \
"a" (eax), "d" (edx));
break;
}
}
}
else
#endif
if (scp->sc_fpused)
/* Restore the FPU state. Mach conveniently stores the state
in the format the i387 `frstor' instruction uses to restore it. */
asm volatile ("frstor %0" : : "m" (scp->sc_fpsave));
/* Copy the registers onto the user's stack, to be able to release the
altstack (by unlocking sigstate). Note that unless an altstack is used,
the sigcontext will itself be located on the user's stack, so we may well
be overwriting it here (or later in __sigreturn2).
So: do this very carefully. First, load sc_reply_port, which is the only
other bit of sigcontext that __sigreturn2 needs. Then copy the registers
without reordering them, but skipping the ones we won't need. We have to
copy starting from the larger addresses down, since our register dump is
located at a larger address than the sigcontext. */
sc_reply_port = scp->sc_reply_port;
usp = (uintptr_t *) (scp->sc_ursp - 128);
*--usp = scp->sc_rip;
*--usp = scp->sc_rfl;
*--usp = scp->sc_rax;
*--usp = scp->sc_rcx;
*--usp = scp->sc_rdx;
*--usp = scp->sc_rbx;
*--usp = scp->sc_rbp;
*--usp = scp->sc_rsi;
*--usp = scp->sc_rdi;
*--usp = scp->sc_r15;
*--usp = scp->sc_r14;
*--usp = scp->sc_r13;
*--usp = scp->sc_r12;
*--usp = scp->sc_r11;
*--usp = scp->sc_r10;
*--usp = scp->sc_r9;
*--usp = scp->sc_r8;
void sigreturn_trampoline (struct hurd_sigstate *ss, uintptr_t *usp,
mach_port_t sc_reply_port)
__attribute__ ((__noreturn__));
sigreturn_trampoline (ss, usp, sc_reply_port);
}
asm("sigreturn_trampoline:\n"
/* Switch to the user's stack that we have just prepared, and call
__sigreturn2. We align the stack as per the ABI, but pass
the original usp to __sigreturn2 as an argument. */
"movq %rsi, %rsp\n"
"andq $-16, %rsp\n"
"call __sigreturn2");
weak_alias (__sigreturn, sigreturn)
|