1d915a14eSPedro F. Giffuni /*-
2*4d846d26SWarner Losh * SPDX-License-Identifier: BSD-2-Clause
3d915a14eSPedro F. Giffuni *
4840b91ccSNathan Whitehorn * Copyright (c) 2004 Marcel Moolenaar, Peter Grehan
5840b91ccSNathan Whitehorn * All rights reserved.
6840b91ccSNathan Whitehorn *
7840b91ccSNathan Whitehorn * Redistribution and use in source and binary forms, with or without
8840b91ccSNathan Whitehorn * modification, are permitted provided that the following conditions
9840b91ccSNathan Whitehorn * are met:
10840b91ccSNathan Whitehorn *
11840b91ccSNathan Whitehorn * 1. Redistributions of source code must retain the above copyright
12840b91ccSNathan Whitehorn * notice, this list of conditions and the following disclaimer.
13840b91ccSNathan Whitehorn * 2. Redistributions in binary form must reproduce the above copyright
14840b91ccSNathan Whitehorn * notice, this list of conditions and the following disclaimer in the
15840b91ccSNathan Whitehorn * documentation and/or other materials provided with the distribution.
16840b91ccSNathan Whitehorn *
17840b91ccSNathan Whitehorn * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18840b91ccSNathan Whitehorn * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19840b91ccSNathan Whitehorn * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20840b91ccSNathan Whitehorn * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21840b91ccSNathan Whitehorn * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22840b91ccSNathan Whitehorn * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23840b91ccSNathan Whitehorn * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24840b91ccSNathan Whitehorn * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25840b91ccSNathan Whitehorn * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26840b91ccSNathan Whitehorn * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27840b91ccSNathan Whitehorn */
28840b91ccSNathan Whitehorn
29840b91ccSNathan Whitehorn #include <sys/param.h>
30840b91ccSNathan Whitehorn #include <sys/ucontext.h>
31840b91ccSNathan Whitehorn #include <signal.h>
32840b91ccSNathan Whitehorn #include <stdlib.h>
33840b91ccSNathan Whitehorn #include <strings.h>
34840b91ccSNathan Whitehorn
35840b91ccSNathan Whitehorn typedef void (*handler_t)(uint32_t, uint32_t, uint32_t);
36840b91ccSNathan Whitehorn
37840b91ccSNathan Whitehorn /* Prototypes */
38840b91ccSNathan Whitehorn static void ctx_wrapper(ucontext_t *ucp, handler_t func, uint32_t sig,
39840b91ccSNathan Whitehorn uint32_t sig_si, uint32_t sig_uc);
40840b91ccSNathan Whitehorn
41840b91ccSNathan Whitehorn __weak_reference(__signalcontext, signalcontext);
42840b91ccSNathan Whitehorn
43840b91ccSNathan Whitehorn int
__signalcontext(ucontext_t * ucp,int sig,__sighandler_t * func)44840b91ccSNathan Whitehorn __signalcontext(ucontext_t *ucp, int sig, __sighandler_t *func)
45840b91ccSNathan Whitehorn {
46840b91ccSNathan Whitehorn siginfo_t *sig_si;
47840b91ccSNathan Whitehorn ucontext_t *sig_uc;
48840b91ccSNathan Whitehorn uintptr_t sp;
49840b91ccSNathan Whitehorn
50840b91ccSNathan Whitehorn /* Bail out if we don't have a valid ucontext pointer. */
51840b91ccSNathan Whitehorn if (ucp == NULL)
52840b91ccSNathan Whitehorn abort();
53840b91ccSNathan Whitehorn
54840b91ccSNathan Whitehorn /*
55840b91ccSNathan Whitehorn * Build a 16-byte-aligned signal frame
56840b91ccSNathan Whitehorn */
57840b91ccSNathan Whitehorn sp = (ucp->uc_mcontext.mc_gpr[1] - sizeof(ucontext_t)) & ~15UL;
58840b91ccSNathan Whitehorn sig_uc = (ucontext_t *)sp;
59840b91ccSNathan Whitehorn bcopy(ucp, sig_uc, sizeof(*sig_uc));
60840b91ccSNathan Whitehorn sp = (sp - sizeof(siginfo_t)) & ~15UL;
61840b91ccSNathan Whitehorn sig_si = (siginfo_t *)sp;
62840b91ccSNathan Whitehorn bzero(sig_si, sizeof(*sig_si));
63840b91ccSNathan Whitehorn sig_si->si_signo = sig;
64840b91ccSNathan Whitehorn
65840b91ccSNathan Whitehorn /*
66840b91ccSNathan Whitehorn * Subtract 48 bytes from stack to allow for frameptr
67840b91ccSNathan Whitehorn */
68840b91ccSNathan Whitehorn sp -= 6*sizeof(uint64_t);
69840b91ccSNathan Whitehorn sp &= ~15UL;
70840b91ccSNathan Whitehorn
71840b91ccSNathan Whitehorn /*
72840b91ccSNathan Whitehorn * Setup the ucontext of the signal handler.
73840b91ccSNathan Whitehorn */
74840b91ccSNathan Whitehorn bzero(&ucp->uc_mcontext, sizeof(ucp->uc_mcontext));
75840b91ccSNathan Whitehorn ucp->uc_link = sig_uc;
76840b91ccSNathan Whitehorn sigdelset(&ucp->uc_sigmask, sig);
77840b91ccSNathan Whitehorn
78840b91ccSNathan Whitehorn ucp->uc_mcontext.mc_vers = _MC_VERSION;
79840b91ccSNathan Whitehorn ucp->uc_mcontext.mc_len = sizeof(struct __mcontext);
80840b91ccSNathan Whitehorn ucp->uc_mcontext.mc_srr0 = (uint64_t) ctx_wrapper;
81840b91ccSNathan Whitehorn ucp->uc_mcontext.mc_gpr[1] = (uint64_t) sp;
82840b91ccSNathan Whitehorn ucp->uc_mcontext.mc_gpr[3] = (uint64_t) func;
83840b91ccSNathan Whitehorn ucp->uc_mcontext.mc_gpr[4] = (uint64_t) sig;
84840b91ccSNathan Whitehorn ucp->uc_mcontext.mc_gpr[5] = (uint64_t) sig_si;
85840b91ccSNathan Whitehorn ucp->uc_mcontext.mc_gpr[6] = (uint64_t) sig_uc;
86840b91ccSNathan Whitehorn
87840b91ccSNathan Whitehorn return (0);
88840b91ccSNathan Whitehorn }
89840b91ccSNathan Whitehorn
90840b91ccSNathan Whitehorn static void
ctx_wrapper(ucontext_t * ucp,handler_t func,uint32_t sig,uint32_t sig_si,uint32_t sig_uc)91840b91ccSNathan Whitehorn ctx_wrapper(ucontext_t *ucp, handler_t func, uint32_t sig, uint32_t sig_si,
92840b91ccSNathan Whitehorn uint32_t sig_uc)
93840b91ccSNathan Whitehorn {
94840b91ccSNathan Whitehorn
95840b91ccSNathan Whitehorn (*func)(sig, sig_si, sig_uc);
96840b91ccSNathan Whitehorn if (ucp->uc_link == NULL)
97840b91ccSNathan Whitehorn exit(0);
98840b91ccSNathan Whitehorn setcontext((const ucontext_t *)ucp->uc_link);
99840b91ccSNathan Whitehorn /* should never get here */
100840b91ccSNathan Whitehorn abort();
101840b91ccSNathan Whitehorn /* NOTREACHED */
102840b91ccSNathan Whitehorn }
103