2 * Emulation of Linux signals
4 * Copyright (c) 2003 Fabrice Bellard
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
19 #include "qemu/osdep.h"
21 #include "target_signal.h"
22 #include "signal-common.h"
23 #include "linux-user/trace.h"
25 struct target_sigcontext {
38 struct target_ucontext {
41 target_stack_t tuc_stack;
42 struct target_sigcontext tuc_mcontext;
43 target_sigset_t tuc_sigmask;
46 struct target_rt_sigframe {
47 target_siginfo_t info;
48 struct target_ucontext uc;
54 static abi_ulong get_sigframe(struct target_sigaction *sa,
56 unsigned long framesize)
60 sp = target_sigsp(get_sp_from_cpustate(env), sa);
62 return (sp - framesize) & -16;
65 static int flush_window_regs(CPUXtensaState *env)
67 uint32_t wb = env->sregs[WINDOW_BASE];
68 uint32_t ws = xtensa_replicate_windowstart(env) >> (wb + 1);
69 unsigned d = ctz32(ws) + 1;
73 for (i = d; i < env->config->nareg / 4; i += d) {
78 xtensa_rotate_window(env, d);
83 } else if (ws & 0x2) {
85 ret |= get_user_ual(osp, env->regs[1] - 12);
88 } else if (ws & 0x4) {
90 ret |= get_user_ual(osp, env->regs[1] - 12);
94 g_assert_not_reached();
97 for (j = 0; j < 4; ++j) {
98 ret |= put_user_ual(env->regs[j], ssp - 16 + j * 4);
100 for (j = 4; j < d * 4; ++j) {
101 ret |= put_user_ual(env->regs[j], osp - 16 + j * 4);
104 xtensa_rotate_window(env, d);
105 g_assert(env->sregs[WINDOW_BASE] == wb);
109 static int setup_sigcontext(struct target_rt_sigframe *frame,
112 struct target_sigcontext *sc = &frame->uc.tuc_mcontext;
115 __put_user(env->pc, &sc->sc_pc);
116 __put_user(env->sregs[PS], &sc->sc_ps);
117 __put_user(env->sregs[LBEG], &sc->sc_lbeg);
118 __put_user(env->sregs[LEND], &sc->sc_lend);
119 __put_user(env->sregs[LCOUNT], &sc->sc_lcount);
120 if (!flush_window_regs(env)) {
123 for (i = 0; i < 16; ++i) {
124 __put_user(env->regs[i], sc->sc_a + i);
126 __put_user(0, &sc->sc_xtregs);
131 void setup_rt_frame(int sig, struct target_sigaction *ka,
132 target_siginfo_t *info,
133 target_sigset_t *set, CPUXtensaState *env)
135 abi_ulong frame_addr;
136 struct target_rt_sigframe *frame;
140 frame_addr = get_sigframe(ka, env, sizeof(*frame));
141 trace_user_setup_rt_frame(env, frame_addr);
143 if (!lock_user_struct(VERIFY_WRITE, frame, frame_addr, 0)) {
147 if (ka->sa_flags & SA_SIGINFO) {
148 tswap_siginfo(&frame->info, info);
151 __put_user(0, &frame->uc.tuc_flags);
152 __put_user(0, &frame->uc.tuc_link);
153 target_save_altstack(&frame->uc.tuc_stack, env);
154 if (!setup_sigcontext(frame, env)) {
155 unlock_user_struct(frame, frame_addr, 0);
158 for (i = 0; i < TARGET_NSIG_WORDS; ++i) {
159 __put_user(set->sig[i], &frame->uc.tuc_sigmask.sig[i]);
162 if (ka->sa_flags & TARGET_SA_RESTORER) {
163 ra = ka->sa_restorer;
165 ra = frame_addr + offsetof(struct target_rt_sigframe, retcode);
166 #ifdef TARGET_WORDS_BIGENDIAN
167 /* Generate instruction: MOVI a2, __NR_rt_sigreturn */
168 __put_user(0x22, &frame->retcode[0]);
169 __put_user(0x0a, &frame->retcode[1]);
170 __put_user(TARGET_NR_rt_sigreturn, &frame->retcode[2]);
171 /* Generate instruction: SYSCALL */
172 __put_user(0x00, &frame->retcode[3]);
173 __put_user(0x05, &frame->retcode[4]);
174 __put_user(0x00, &frame->retcode[5]);
176 /* Generate instruction: MOVI a2, __NR_rt_sigreturn */
177 __put_user(0x22, &frame->retcode[0]);
178 __put_user(0xa0, &frame->retcode[1]);
179 __put_user(TARGET_NR_rt_sigreturn, &frame->retcode[2]);
180 /* Generate instruction: SYSCALL */
181 __put_user(0x00, &frame->retcode[3]);
182 __put_user(0x50, &frame->retcode[4]);
183 __put_user(0x00, &frame->retcode[5]);
186 env->sregs[PS] = PS_UM | (3 << PS_RING_SHIFT);
187 if (xtensa_option_enabled(env->config, XTENSA_OPTION_WINDOWED_REGISTER)) {
188 env->sregs[PS] |= PS_WOE | (1 << PS_CALLINC_SHIFT);
190 memset(env->regs, 0, sizeof(env->regs));
191 env->pc = ka->_sa_handler;
192 env->regs[1] = frame_addr;
193 env->sregs[WINDOW_BASE] = 0;
194 env->sregs[WINDOW_START] = 1;
196 env->regs[4] = (ra & 0x3fffffff) | 0x40000000;
198 env->regs[7] = frame_addr + offsetof(struct target_rt_sigframe, info);
199 env->regs[8] = frame_addr + offsetof(struct target_rt_sigframe, uc);
200 unlock_user_struct(frame, frame_addr, 1);
208 static void restore_sigcontext(CPUXtensaState *env,
209 struct target_rt_sigframe *frame)
211 struct target_sigcontext *sc = &frame->uc.tuc_mcontext;
215 __get_user(env->pc, &sc->sc_pc);
216 __get_user(ps, &sc->sc_ps);
217 __get_user(env->sregs[LBEG], &sc->sc_lbeg);
218 __get_user(env->sregs[LEND], &sc->sc_lend);
219 __get_user(env->sregs[LCOUNT], &sc->sc_lcount);
221 env->sregs[WINDOW_BASE] = 0;
222 env->sregs[WINDOW_START] = 1;
223 env->sregs[PS] = deposit32(env->sregs[PS],
226 extract32(ps, PS_CALLINC_SHIFT,
228 for (i = 0; i < 16; ++i) {
229 __get_user(env->regs[i], sc->sc_a + i);
234 long do_rt_sigreturn(CPUXtensaState *env)
236 abi_ulong frame_addr = env->regs[1];
237 struct target_rt_sigframe *frame;
240 trace_user_do_rt_sigreturn(env, frame_addr);
241 if (!lock_user_struct(VERIFY_READ, frame, frame_addr, 1)) {
244 target_to_host_sigset(&set, &frame->uc.tuc_sigmask);
247 restore_sigcontext(env, frame);
249 if (do_sigaltstack(frame_addr +
250 offsetof(struct target_rt_sigframe, uc.tuc_stack),
251 0, get_sp_from_cpustate(env)) == -TARGET_EFAULT) {
254 unlock_user_struct(frame, frame_addr, 0);
255 return -TARGET_QEMU_ESIGRETURN;
258 unlock_user_struct(frame, frame_addr, 0);
259 force_sig(TARGET_SIGSEGV);
260 return -TARGET_QEMU_ESIGRETURN;