blob: 984c598f2618fb53782cc59cd714d21986b12160 [file] [log] [blame]
bellard31e31b82003-02-18 22:55:36 +00001/*
bellard66fb9762003-03-23 01:06:05 +00002 * Emulation of Linux signals
ths5fafdf22007-09-16 21:08:06 +00003 *
bellard31e31b82003-02-18 22:55:36 +00004 * Copyright (c) 2003 Fabrice Bellard
5 *
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.
10 *
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.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
20#include <stdlib.h>
21#include <stdio.h>
bellard66fb9762003-03-23 01:06:05 +000022#include <string.h>
bellard31e31b82003-02-18 22:55:36 +000023#include <stdarg.h>
bellard2677e102003-04-10 00:03:27 +000024#include <unistd.h>
bellard31e31b82003-02-18 22:55:36 +000025#include <signal.h>
bellard66fb9762003-03-23 01:06:05 +000026#include <errno.h>
bellard31e31b82003-02-18 22:55:36 +000027#include <sys/ucontext.h>
28
bellard3ef693a2003-03-23 20:17:16 +000029#include "qemu.h"
blueswir1992f48a2007-10-14 16:27:31 +000030#include "target_signal.h"
bellard66fb9762003-03-23 01:06:05 +000031
32//#define DEBUG_SIGNAL
33
34#define MAX_SIGQUEUE_SIZE 1024
35
36struct sigqueue {
37 struct sigqueue *next;
bellard9de5e442003-03-23 16:49:39 +000038 target_siginfo_t info;
bellard66fb9762003-03-23 01:06:05 +000039};
bellard31e31b82003-02-18 22:55:36 +000040
41struct emulated_sigaction {
42 struct target_sigaction sa;
bellard66fb9762003-03-23 01:06:05 +000043 int pending; /* true if signal is pending */
44 struct sigqueue *first;
45 struct sigqueue info; /* in order to always have memory for the
46 first signal, we put it here */
bellard31e31b82003-02-18 22:55:36 +000047};
48
thsa04e1342007-09-27 13:57:58 +000049struct target_sigaltstack target_sigaltstack_used = {
50 .ss_sp = 0,
51 .ss_size = 0,
52 .ss_flags = TARGET_SS_DISABLE,
53};
54
bellard66fb9762003-03-23 01:06:05 +000055static struct emulated_sigaction sigact_table[TARGET_NSIG];
56static struct sigqueue sigqueue_table[MAX_SIGQUEUE_SIZE]; /* siginfo queue */
57static struct sigqueue *first_free; /* first free siginfo queue entry */
58static int signal_pending; /* non zero if a signal may be pending */
bellard31e31b82003-02-18 22:55:36 +000059
ths5fafdf22007-09-16 21:08:06 +000060static void host_signal_handler(int host_signum, siginfo_t *info,
bellard66fb9762003-03-23 01:06:05 +000061 void *puc);
62
bellard9e5f5282003-07-13 17:33:54 +000063static uint8_t host_to_target_signal_table[65] = {
64 [SIGHUP] = TARGET_SIGHUP,
65 [SIGINT] = TARGET_SIGINT,
66 [SIGQUIT] = TARGET_SIGQUIT,
67 [SIGILL] = TARGET_SIGILL,
68 [SIGTRAP] = TARGET_SIGTRAP,
69 [SIGABRT] = TARGET_SIGABRT,
bellard01e3b762003-09-30 21:10:14 +000070/* [SIGIOT] = TARGET_SIGIOT,*/
bellard9e5f5282003-07-13 17:33:54 +000071 [SIGBUS] = TARGET_SIGBUS,
72 [SIGFPE] = TARGET_SIGFPE,
73 [SIGKILL] = TARGET_SIGKILL,
74 [SIGUSR1] = TARGET_SIGUSR1,
75 [SIGSEGV] = TARGET_SIGSEGV,
76 [SIGUSR2] = TARGET_SIGUSR2,
77 [SIGPIPE] = TARGET_SIGPIPE,
78 [SIGALRM] = TARGET_SIGALRM,
79 [SIGTERM] = TARGET_SIGTERM,
80#ifdef SIGSTKFLT
81 [SIGSTKFLT] = TARGET_SIGSTKFLT,
82#endif
83 [SIGCHLD] = TARGET_SIGCHLD,
84 [SIGCONT] = TARGET_SIGCONT,
85 [SIGSTOP] = TARGET_SIGSTOP,
86 [SIGTSTP] = TARGET_SIGTSTP,
87 [SIGTTIN] = TARGET_SIGTTIN,
88 [SIGTTOU] = TARGET_SIGTTOU,
89 [SIGURG] = TARGET_SIGURG,
90 [SIGXCPU] = TARGET_SIGXCPU,
91 [SIGXFSZ] = TARGET_SIGXFSZ,
92 [SIGVTALRM] = TARGET_SIGVTALRM,
93 [SIGPROF] = TARGET_SIGPROF,
94 [SIGWINCH] = TARGET_SIGWINCH,
95 [SIGIO] = TARGET_SIGIO,
96 [SIGPWR] = TARGET_SIGPWR,
97 [SIGSYS] = TARGET_SIGSYS,
98 /* next signals stay the same */
99};
100static uint8_t target_to_host_signal_table[65];
101
thsa04e1342007-09-27 13:57:58 +0000102static inline int on_sig_stack(unsigned long sp)
103{
104 return (sp - target_sigaltstack_used.ss_sp
105 < target_sigaltstack_used.ss_size);
106}
107
108static inline int sas_ss_flags(unsigned long sp)
109{
110 return (target_sigaltstack_used.ss_size == 0 ? SS_DISABLE
111 : on_sig_stack(sp) ? SS_ONSTACK : 0);
112}
113
bellard31e31b82003-02-18 22:55:36 +0000114static inline int host_to_target_signal(int sig)
115{
bellard9e5f5282003-07-13 17:33:54 +0000116 return host_to_target_signal_table[sig];
bellard31e31b82003-02-18 22:55:36 +0000117}
118
119static inline int target_to_host_signal(int sig)
120{
bellard9e5f5282003-07-13 17:33:54 +0000121 return target_to_host_signal_table[sig];
bellard31e31b82003-02-18 22:55:36 +0000122}
123
ths5fafdf22007-09-16 21:08:06 +0000124static void host_to_target_sigset_internal(target_sigset_t *d,
bellard92319442004-06-19 16:58:13 +0000125 const sigset_t *s)
bellard66fb9762003-03-23 01:06:05 +0000126{
127 int i;
bellard9e5f5282003-07-13 17:33:54 +0000128 unsigned long sigmask;
129 uint32_t target_sigmask;
ths3b46e622007-09-17 08:09:54 +0000130
bellard9e5f5282003-07-13 17:33:54 +0000131 sigmask = ((unsigned long *)s)[0];
132 target_sigmask = 0;
133 for(i = 0; i < 32; i++) {
ths5fafdf22007-09-16 21:08:06 +0000134 if (sigmask & (1 << i))
bellard9e5f5282003-07-13 17:33:54 +0000135 target_sigmask |= 1 << (host_to_target_signal(i + 1) - 1);
136 }
blueswir1992f48a2007-10-14 16:27:31 +0000137#if TARGET_ABI_BITS == 32 && HOST_LONG_BITS == 32
bellard92319442004-06-19 16:58:13 +0000138 d->sig[0] = target_sigmask;
bellard9e5f5282003-07-13 17:33:54 +0000139 for(i = 1;i < TARGET_NSIG_WORDS; i++) {
bellard92319442004-06-19 16:58:13 +0000140 d->sig[i] = ((unsigned long *)s)[i];
bellard66fb9762003-03-23 01:06:05 +0000141 }
blueswir1992f48a2007-10-14 16:27:31 +0000142#elif TARGET_ABI_BITS == 32 && HOST_LONG_BITS == 64 && TARGET_NSIG_WORDS == 2
bellard92319442004-06-19 16:58:13 +0000143 d->sig[0] = target_sigmask;
144 d->sig[1] = sigmask >> 32;
bellard9e5f5282003-07-13 17:33:54 +0000145#else
bellarda315a142005-01-30 22:59:18 +0000146#warning host_to_target_sigset
bellard9e5f5282003-07-13 17:33:54 +0000147#endif
bellard66fb9762003-03-23 01:06:05 +0000148}
149
bellard92319442004-06-19 16:58:13 +0000150void host_to_target_sigset(target_sigset_t *d, const sigset_t *s)
151{
152 target_sigset_t d1;
153 int i;
154
155 host_to_target_sigset_internal(&d1, s);
156 for(i = 0;i < TARGET_NSIG_WORDS; i++)
pbrook53a59602006-03-25 19:31:22 +0000157 d->sig[i] = tswapl(d1.sig[i]);
bellard92319442004-06-19 16:58:13 +0000158}
159
160void target_to_host_sigset_internal(sigset_t *d, const target_sigset_t *s)
bellard66fb9762003-03-23 01:06:05 +0000161{
162 int i;
bellard9e5f5282003-07-13 17:33:54 +0000163 unsigned long sigmask;
blueswir1992f48a2007-10-14 16:27:31 +0000164 abi_ulong target_sigmask;
bellard9e5f5282003-07-13 17:33:54 +0000165
bellard92319442004-06-19 16:58:13 +0000166 target_sigmask = s->sig[0];
bellard9e5f5282003-07-13 17:33:54 +0000167 sigmask = 0;
168 for(i = 0; i < 32; i++) {
ths5fafdf22007-09-16 21:08:06 +0000169 if (target_sigmask & (1 << i))
bellard9e5f5282003-07-13 17:33:54 +0000170 sigmask |= 1 << (target_to_host_signal(i + 1) - 1);
171 }
blueswir1992f48a2007-10-14 16:27:31 +0000172#if TARGET_ABI_BITS == 32 && HOST_LONG_BITS == 32
bellard9e5f5282003-07-13 17:33:54 +0000173 ((unsigned long *)d)[0] = sigmask;
174 for(i = 1;i < TARGET_NSIG_WORDS; i++) {
bellard92319442004-06-19 16:58:13 +0000175 ((unsigned long *)d)[i] = s->sig[i];
bellard66fb9762003-03-23 01:06:05 +0000176 }
blueswir1992f48a2007-10-14 16:27:31 +0000177#elif TARGET_ABI_BITS == 32 && HOST_LONG_BITS == 64 && TARGET_NSIG_WORDS == 2
bellard92319442004-06-19 16:58:13 +0000178 ((unsigned long *)d)[0] = sigmask | ((unsigned long)(s->sig[1]) << 32);
bellard9e5f5282003-07-13 17:33:54 +0000179#else
bellarda315a142005-01-30 22:59:18 +0000180#warning target_to_host_sigset
blueswir1992f48a2007-10-14 16:27:31 +0000181#endif /* TARGET_ABI_BITS */
bellard66fb9762003-03-23 01:06:05 +0000182}
183
bellard92319442004-06-19 16:58:13 +0000184void target_to_host_sigset(sigset_t *d, const target_sigset_t *s)
185{
186 target_sigset_t s1;
187 int i;
188
189 for(i = 0;i < TARGET_NSIG_WORDS; i++)
pbrook53a59602006-03-25 19:31:22 +0000190 s1.sig[i] = tswapl(s->sig[i]);
bellard92319442004-06-19 16:58:13 +0000191 target_to_host_sigset_internal(d, &s1);
192}
ths3b46e622007-09-17 08:09:54 +0000193
blueswir1992f48a2007-10-14 16:27:31 +0000194void host_to_target_old_sigset(abi_ulong *old_sigset,
bellard66fb9762003-03-23 01:06:05 +0000195 const sigset_t *sigset)
196{
bellard9e5f5282003-07-13 17:33:54 +0000197 target_sigset_t d;
198 host_to_target_sigset(&d, sigset);
199 *old_sigset = d.sig[0];
bellard66fb9762003-03-23 01:06:05 +0000200}
201
ths5fafdf22007-09-16 21:08:06 +0000202void target_to_host_old_sigset(sigset_t *sigset,
blueswir1992f48a2007-10-14 16:27:31 +0000203 const abi_ulong *old_sigset)
bellard66fb9762003-03-23 01:06:05 +0000204{
bellard9e5f5282003-07-13 17:33:54 +0000205 target_sigset_t d;
206 int i;
207
208 d.sig[0] = *old_sigset;
209 for(i = 1;i < TARGET_NSIG_WORDS; i++)
210 d.sig[i] = 0;
211 target_to_host_sigset(sigset, &d);
bellard66fb9762003-03-23 01:06:05 +0000212}
213
bellard9de5e442003-03-23 16:49:39 +0000214/* siginfo conversion */
215
ths5fafdf22007-09-16 21:08:06 +0000216static inline void host_to_target_siginfo_noswap(target_siginfo_t *tinfo,
bellard9de5e442003-03-23 16:49:39 +0000217 const siginfo_t *info)
bellard66fb9762003-03-23 01:06:05 +0000218{
bellard9de5e442003-03-23 16:49:39 +0000219 int sig;
220 sig = host_to_target_signal(info->si_signo);
221 tinfo->si_signo = sig;
222 tinfo->si_errno = 0;
223 tinfo->si_code = 0;
ths5fafdf22007-09-16 21:08:06 +0000224 if (sig == SIGILL || sig == SIGFPE || sig == SIGSEGV ||
bellard447db212003-05-10 15:10:36 +0000225 sig == SIGBUS || sig == SIGTRAP) {
bellard9de5e442003-03-23 16:49:39 +0000226 /* should never come here, but who knows. The information for
227 the target is irrelevant */
228 tinfo->_sifields._sigfault._addr = 0;
ths7f7f7c82007-07-12 11:02:46 +0000229 } else if (sig == SIGIO) {
230 tinfo->_sifields._sigpoll._fd = info->si_fd;
bellard9de5e442003-03-23 16:49:39 +0000231 } else if (sig >= TARGET_SIGRTMIN) {
232 tinfo->_sifields._rt._pid = info->si_pid;
233 tinfo->_sifields._rt._uid = info->si_uid;
234 /* XXX: potential problem if 64 bit */
ths5fafdf22007-09-16 21:08:06 +0000235 tinfo->_sifields._rt._sigval.sival_ptr =
blueswir1992f48a2007-10-14 16:27:31 +0000236 (abi_ulong)info->si_value.sival_ptr;
bellard9de5e442003-03-23 16:49:39 +0000237 }
bellard66fb9762003-03-23 01:06:05 +0000238}
239
ths5fafdf22007-09-16 21:08:06 +0000240static void tswap_siginfo(target_siginfo_t *tinfo,
bellard9de5e442003-03-23 16:49:39 +0000241 const target_siginfo_t *info)
242{
243 int sig;
244 sig = info->si_signo;
245 tinfo->si_signo = tswap32(sig);
246 tinfo->si_errno = tswap32(info->si_errno);
247 tinfo->si_code = tswap32(info->si_code);
ths5fafdf22007-09-16 21:08:06 +0000248 if (sig == SIGILL || sig == SIGFPE || sig == SIGSEGV ||
bellard447db212003-05-10 15:10:36 +0000249 sig == SIGBUS || sig == SIGTRAP) {
ths5fafdf22007-09-16 21:08:06 +0000250 tinfo->_sifields._sigfault._addr =
bellard9de5e442003-03-23 16:49:39 +0000251 tswapl(info->_sifields._sigfault._addr);
ths7f7f7c82007-07-12 11:02:46 +0000252 } else if (sig == SIGIO) {
253 tinfo->_sifields._sigpoll._fd = tswap32(info->_sifields._sigpoll._fd);
bellard9de5e442003-03-23 16:49:39 +0000254 } else if (sig >= TARGET_SIGRTMIN) {
255 tinfo->_sifields._rt._pid = tswap32(info->_sifields._rt._pid);
256 tinfo->_sifields._rt._uid = tswap32(info->_sifields._rt._uid);
ths5fafdf22007-09-16 21:08:06 +0000257 tinfo->_sifields._rt._sigval.sival_ptr =
bellard9de5e442003-03-23 16:49:39 +0000258 tswapl(info->_sifields._rt._sigval.sival_ptr);
259 }
260}
261
262
263void host_to_target_siginfo(target_siginfo_t *tinfo, const siginfo_t *info)
264{
265 host_to_target_siginfo_noswap(tinfo, info);
266 tswap_siginfo(tinfo, tinfo);
267}
268
269/* XXX: we support only POSIX RT signals are used. */
thsaa1f17c2007-07-11 22:48:58 +0000270/* XXX: find a solution for 64 bit (additional malloced data is needed) */
bellard9de5e442003-03-23 16:49:39 +0000271void target_to_host_siginfo(siginfo_t *info, const target_siginfo_t *tinfo)
bellard66fb9762003-03-23 01:06:05 +0000272{
273 info->si_signo = tswap32(tinfo->si_signo);
274 info->si_errno = tswap32(tinfo->si_errno);
275 info->si_code = tswap32(tinfo->si_code);
bellard9de5e442003-03-23 16:49:39 +0000276 info->si_pid = tswap32(tinfo->_sifields._rt._pid);
277 info->si_uid = tswap32(tinfo->_sifields._rt._uid);
ths5fafdf22007-09-16 21:08:06 +0000278 info->si_value.sival_ptr =
bellard9de5e442003-03-23 16:49:39 +0000279 (void *)tswapl(tinfo->_sifields._rt._sigval.sival_ptr);
bellard66fb9762003-03-23 01:06:05 +0000280}
281
bellard31e31b82003-02-18 22:55:36 +0000282void signal_init(void)
283{
284 struct sigaction act;
bellard9e5f5282003-07-13 17:33:54 +0000285 int i, j;
bellard31e31b82003-02-18 22:55:36 +0000286
bellard9e5f5282003-07-13 17:33:54 +0000287 /* generate signal conversion tables */
288 for(i = 1; i <= 64; i++) {
289 if (host_to_target_signal_table[i] == 0)
290 host_to_target_signal_table[i] = i;
291 }
292 for(i = 1; i <= 64; i++) {
293 j = host_to_target_signal_table[i];
294 target_to_host_signal_table[j] = i;
295 }
ths3b46e622007-09-17 08:09:54 +0000296
bellard9de5e442003-03-23 16:49:39 +0000297 /* set all host signal handlers. ALL signals are blocked during
298 the handlers to serialize them. */
299 sigfillset(&act.sa_mask);
bellard31e31b82003-02-18 22:55:36 +0000300 act.sa_flags = SA_SIGINFO;
301 act.sa_sigaction = host_signal_handler;
302 for(i = 1; i < NSIG; i++) {
bellardc9087c22003-05-27 23:25:41 +0000303 sigaction(i, &act, NULL);
bellard31e31b82003-02-18 22:55:36 +0000304 }
ths3b46e622007-09-17 08:09:54 +0000305
bellard31e31b82003-02-18 22:55:36 +0000306 memset(sigact_table, 0, sizeof(sigact_table));
bellard66fb9762003-03-23 01:06:05 +0000307
308 first_free = &sigqueue_table[0];
ths5fafdf22007-09-16 21:08:06 +0000309 for(i = 0; i < MAX_SIGQUEUE_SIZE - 1; i++)
bellard66fb9762003-03-23 01:06:05 +0000310 sigqueue_table[i].next = &sigqueue_table[i + 1];
311 sigqueue_table[MAX_SIGQUEUE_SIZE - 1].next = NULL;
bellard31e31b82003-02-18 22:55:36 +0000312}
313
bellard66fb9762003-03-23 01:06:05 +0000314/* signal queue handling */
315
316static inline struct sigqueue *alloc_sigqueue(void)
317{
318 struct sigqueue *q = first_free;
319 if (!q)
320 return NULL;
321 first_free = q->next;
322 return q;
323}
324
325static inline void free_sigqueue(struct sigqueue *q)
326{
327 q->next = first_free;
328 first_free = q;
329}
330
bellard9de5e442003-03-23 16:49:39 +0000331/* abort execution with signal */
332void __attribute((noreturn)) force_sig(int sig)
bellard66fb9762003-03-23 01:06:05 +0000333{
334 int host_sig;
bellard66fb9762003-03-23 01:06:05 +0000335 host_sig = target_to_host_signal(sig);
ths5fafdf22007-09-16 21:08:06 +0000336 fprintf(stderr, "qemu: uncaught target signal %d (%s) - exiting\n",
bellard66fb9762003-03-23 01:06:05 +0000337 sig, strsignal(host_sig));
bellard9de5e442003-03-23 16:49:39 +0000338#if 1
bellard66fb9762003-03-23 01:06:05 +0000339 _exit(-host_sig);
bellard9de5e442003-03-23 16:49:39 +0000340#else
341 {
342 struct sigaction act;
343 sigemptyset(&act.sa_mask);
344 act.sa_flags = SA_SIGINFO;
345 act.sa_sigaction = SIG_DFL;
346 sigaction(SIGABRT, &act, NULL);
347 abort();
348 }
349#endif
bellard66fb9762003-03-23 01:06:05 +0000350}
351
bellard9de5e442003-03-23 16:49:39 +0000352/* queue a signal so that it will be send to the virtual CPU as soon
353 as possible */
354int queue_signal(int sig, target_siginfo_t *info)
bellard31e31b82003-02-18 22:55:36 +0000355{
bellard66fb9762003-03-23 01:06:05 +0000356 struct emulated_sigaction *k;
bellard9de5e442003-03-23 16:49:39 +0000357 struct sigqueue *q, **pq;
blueswir1992f48a2007-10-14 16:27:31 +0000358 abi_ulong handler;
bellard66fb9762003-03-23 01:06:05 +0000359
bellard9de5e442003-03-23 16:49:39 +0000360#if defined(DEBUG_SIGNAL)
ths5fafdf22007-09-16 21:08:06 +0000361 fprintf(stderr, "queue_signal: sig=%d\n",
bellard9de5e442003-03-23 16:49:39 +0000362 sig);
bellard66fb9762003-03-23 01:06:05 +0000363#endif
bellard9de5e442003-03-23 16:49:39 +0000364 k = &sigact_table[sig - 1];
bellard66fb9762003-03-23 01:06:05 +0000365 handler = k->sa._sa_handler;
366 if (handler == TARGET_SIG_DFL) {
367 /* default handler : ignore some signal. The other are fatal */
ths5fafdf22007-09-16 21:08:06 +0000368 if (sig != TARGET_SIGCHLD &&
369 sig != TARGET_SIGURG &&
bellard66fb9762003-03-23 01:06:05 +0000370 sig != TARGET_SIGWINCH) {
371 force_sig(sig);
bellard9de5e442003-03-23 16:49:39 +0000372 } else {
373 return 0; /* indicate ignored */
bellard66fb9762003-03-23 01:06:05 +0000374 }
375 } else if (handler == TARGET_SIG_IGN) {
376 /* ignore signal */
bellard9de5e442003-03-23 16:49:39 +0000377 return 0;
bellard66fb9762003-03-23 01:06:05 +0000378 } else if (handler == TARGET_SIG_ERR) {
379 force_sig(sig);
380 } else {
bellard9de5e442003-03-23 16:49:39 +0000381 pq = &k->first;
382 if (sig < TARGET_SIGRTMIN) {
383 /* if non real time signal, we queue exactly one signal */
384 if (!k->pending)
385 q = &k->info;
386 else
387 return 0;
388 } else {
389 if (!k->pending) {
390 /* first signal */
391 q = &k->info;
392 } else {
393 q = alloc_sigqueue();
394 if (!q)
395 return -EAGAIN;
396 while (*pq != NULL)
397 pq = &(*pq)->next;
398 }
399 }
400 *pq = q;
401 q->info = *info;
402 q->next = NULL;
403 k->pending = 1;
404 /* signal that a new signal is pending */
405 signal_pending = 1;
406 return 1; /* indicates that the signal was queued */
407 }
408}
409
ths5fafdf22007-09-16 21:08:06 +0000410static void host_signal_handler(int host_signum, siginfo_t *info,
bellard9de5e442003-03-23 16:49:39 +0000411 void *puc)
412{
413 int sig;
414 target_siginfo_t tinfo;
415
416 /* the CPU emulator uses some host signals to detect exceptions,
417 we we forward to it some signals */
bellardec6338b2007-11-08 14:25:03 +0000418 if (host_signum == SIGSEGV || host_signum == SIGBUS) {
bellardb346ff42003-06-15 20:05:50 +0000419 if (cpu_signal_handler(host_signum, info, puc))
bellard9de5e442003-03-23 16:49:39 +0000420 return;
421 }
422
423 /* get target signal number */
424 sig = host_to_target_signal(host_signum);
425 if (sig < 1 || sig > TARGET_NSIG)
426 return;
427#if defined(DEBUG_SIGNAL)
bellardbc8a22c2003-03-30 21:02:40 +0000428 fprintf(stderr, "qemu: got signal %d\n", sig);
bellard9de5e442003-03-23 16:49:39 +0000429#endif
430 host_to_target_siginfo_noswap(&tinfo, info);
431 if (queue_signal(sig, &tinfo) == 1) {
432 /* interrupt the virtual CPU as soon as possible */
bellard68a79312003-06-30 13:12:32 +0000433 cpu_interrupt(global_env, CPU_INTERRUPT_EXIT);
bellard66fb9762003-03-23 01:06:05 +0000434 }
bellard31e31b82003-02-18 22:55:36 +0000435}
436
ths0da46a62007-10-20 20:23:07 +0000437/* do_sigaltstack() returns target values and errnos. */
thsa04e1342007-09-27 13:57:58 +0000438int do_sigaltstack(const struct target_sigaltstack *uss,
439 struct target_sigaltstack *uoss,
blueswir1992f48a2007-10-14 16:27:31 +0000440 abi_ulong sp)
thsa04e1342007-09-27 13:57:58 +0000441{
442 int ret;
443 struct target_sigaltstack oss;
444
445 /* XXX: test errors */
446 if(uoss)
447 {
448 __put_user(target_sigaltstack_used.ss_sp, &oss.ss_sp);
449 __put_user(target_sigaltstack_used.ss_size, &oss.ss_size);
450 __put_user(sas_ss_flags(sp), &oss.ss_flags);
451 }
452
453 if(uss)
454 {
455 struct target_sigaltstack ss;
456
ths0da46a62007-10-20 20:23:07 +0000457 ret = -TARGET_EFAULT;
thsa04e1342007-09-27 13:57:58 +0000458 if (!access_ok(VERIFY_READ, uss, sizeof(*uss))
459 || __get_user(ss.ss_sp, &uss->ss_sp)
460 || __get_user(ss.ss_size, &uss->ss_size)
461 || __get_user(ss.ss_flags, &uss->ss_flags))
462 goto out;
463
ths0da46a62007-10-20 20:23:07 +0000464 ret = -TARGET_EPERM;
thsa04e1342007-09-27 13:57:58 +0000465 if (on_sig_stack(sp))
466 goto out;
467
ths0da46a62007-10-20 20:23:07 +0000468 ret = -TARGET_EINVAL;
thsa04e1342007-09-27 13:57:58 +0000469 if (ss.ss_flags != TARGET_SS_DISABLE
470 && ss.ss_flags != TARGET_SS_ONSTACK
471 && ss.ss_flags != 0)
472 goto out;
473
474 if (ss.ss_flags == TARGET_SS_DISABLE) {
475 ss.ss_size = 0;
476 ss.ss_sp = 0;
477 } else {
ths0da46a62007-10-20 20:23:07 +0000478 ret = -TARGET_ENOMEM;
thsa04e1342007-09-27 13:57:58 +0000479 if (ss.ss_size < MINSIGSTKSZ)
480 goto out;
481 }
482
483 target_sigaltstack_used.ss_sp = ss.ss_sp;
484 target_sigaltstack_used.ss_size = ss.ss_size;
485 }
486
487 if (uoss) {
ths0da46a62007-10-20 20:23:07 +0000488 ret = -TARGET_EFAULT;
thsa04e1342007-09-27 13:57:58 +0000489 if (!access_ok(VERIFY_WRITE, uoss, sizeof(oss)))
490 goto out;
491 memcpy(uoss, &oss, sizeof(oss));
492 }
493
494 ret = 0;
495out:
496 return ret;
497}
498
ths0da46a62007-10-20 20:23:07 +0000499/* do_sigaction() return host values and errnos */
bellard66fb9762003-03-23 01:06:05 +0000500int do_sigaction(int sig, const struct target_sigaction *act,
501 struct target_sigaction *oact)
bellard31e31b82003-02-18 22:55:36 +0000502{
bellard66fb9762003-03-23 01:06:05 +0000503 struct emulated_sigaction *k;
bellard773b93e2004-01-04 17:15:59 +0000504 struct sigaction act1;
505 int host_sig;
ths0da46a62007-10-20 20:23:07 +0000506 int ret = 0;
bellard31e31b82003-02-18 22:55:36 +0000507
ths0aeaa8c2007-03-31 19:29:06 +0000508 if (sig < 1 || sig > TARGET_NSIG || sig == SIGKILL || sig == SIGSTOP)
bellard66fb9762003-03-23 01:06:05 +0000509 return -EINVAL;
510 k = &sigact_table[sig - 1];
bellard773b93e2004-01-04 17:15:59 +0000511#if defined(DEBUG_SIGNAL)
ths5fafdf22007-09-16 21:08:06 +0000512 fprintf(stderr, "sigaction sig=%d act=0x%08x, oact=0x%08x\n",
bellard66fb9762003-03-23 01:06:05 +0000513 sig, (int)act, (int)oact);
514#endif
515 if (oact) {
516 oact->_sa_handler = tswapl(k->sa._sa_handler);
517 oact->sa_flags = tswapl(k->sa.sa_flags);
ths388bb212007-05-13 13:58:00 +0000518#if !defined(TARGET_MIPS)
519 oact->sa_restorer = tswapl(k->sa.sa_restorer);
520#endif
bellard66fb9762003-03-23 01:06:05 +0000521 oact->sa_mask = k->sa.sa_mask;
522 }
523 if (act) {
524 k->sa._sa_handler = tswapl(act->_sa_handler);
525 k->sa.sa_flags = tswapl(act->sa_flags);
ths388bb212007-05-13 13:58:00 +0000526#if !defined(TARGET_MIPS)
527 k->sa.sa_restorer = tswapl(act->sa_restorer);
528#endif
bellard66fb9762003-03-23 01:06:05 +0000529 k->sa.sa_mask = act->sa_mask;
bellard773b93e2004-01-04 17:15:59 +0000530
531 /* we update the host linux signal state */
532 host_sig = target_to_host_signal(sig);
533 if (host_sig != SIGSEGV && host_sig != SIGBUS) {
534 sigfillset(&act1.sa_mask);
535 act1.sa_flags = SA_SIGINFO;
536 if (k->sa.sa_flags & TARGET_SA_RESTART)
537 act1.sa_flags |= SA_RESTART;
538 /* NOTE: it is important to update the host kernel signal
539 ignore state to avoid getting unexpected interrupted
540 syscalls */
541 if (k->sa._sa_handler == TARGET_SIG_IGN) {
542 act1.sa_sigaction = (void *)SIG_IGN;
543 } else if (k->sa._sa_handler == TARGET_SIG_DFL) {
544 act1.sa_sigaction = (void *)SIG_DFL;
545 } else {
546 act1.sa_sigaction = host_signal_handler;
547 }
ths0da46a62007-10-20 20:23:07 +0000548 ret = sigaction(host_sig, &act1, NULL);
bellard773b93e2004-01-04 17:15:59 +0000549 }
bellard66fb9762003-03-23 01:06:05 +0000550 }
ths0da46a62007-10-20 20:23:07 +0000551 return ret;
bellard66fb9762003-03-23 01:06:05 +0000552}
bellard31e31b82003-02-18 22:55:36 +0000553
bellard43fff232003-07-09 19:31:39 +0000554#ifndef offsetof
555#define offsetof(type, field) ((size_t) &((type *)0)->field)
556#endif
557
ths5fafdf22007-09-16 21:08:06 +0000558static inline int copy_siginfo_to_user(target_siginfo_t *tinfo,
bellard43fff232003-07-09 19:31:39 +0000559 const target_siginfo_t *info)
560{
561 tswap_siginfo(tinfo, info);
562 return 0;
563}
564
bellard66fb9762003-03-23 01:06:05 +0000565#ifdef TARGET_I386
566
567/* from the Linux kernel */
568
569struct target_fpreg {
570 uint16_t significand[4];
571 uint16_t exponent;
572};
573
574struct target_fpxreg {
575 uint16_t significand[4];
576 uint16_t exponent;
577 uint16_t padding[3];
578};
579
580struct target_xmmreg {
blueswir1992f48a2007-10-14 16:27:31 +0000581 abi_ulong element[4];
bellard66fb9762003-03-23 01:06:05 +0000582};
583
584struct target_fpstate {
585 /* Regular FPU environment */
blueswir1992f48a2007-10-14 16:27:31 +0000586 abi_ulong cw;
587 abi_ulong sw;
588 abi_ulong tag;
589 abi_ulong ipoff;
590 abi_ulong cssel;
591 abi_ulong dataoff;
592 abi_ulong datasel;
bellard66fb9762003-03-23 01:06:05 +0000593 struct target_fpreg _st[8];
594 uint16_t status;
595 uint16_t magic; /* 0xffff = regular FPU data only */
596
597 /* FXSR FPU environment */
blueswir1992f48a2007-10-14 16:27:31 +0000598 abi_ulong _fxsr_env[6]; /* FXSR FPU env is ignored */
599 abi_ulong mxcsr;
600 abi_ulong reserved;
bellard66fb9762003-03-23 01:06:05 +0000601 struct target_fpxreg _fxsr_st[8]; /* FXSR FPU reg data is ignored */
602 struct target_xmmreg _xmm[8];
blueswir1992f48a2007-10-14 16:27:31 +0000603 abi_ulong padding[56];
bellard66fb9762003-03-23 01:06:05 +0000604};
605
606#define X86_FXSR_MAGIC 0x0000
607
608struct target_sigcontext {
609 uint16_t gs, __gsh;
610 uint16_t fs, __fsh;
611 uint16_t es, __esh;
612 uint16_t ds, __dsh;
blueswir1992f48a2007-10-14 16:27:31 +0000613 abi_ulong edi;
614 abi_ulong esi;
615 abi_ulong ebp;
616 abi_ulong esp;
617 abi_ulong ebx;
618 abi_ulong edx;
619 abi_ulong ecx;
620 abi_ulong eax;
621 abi_ulong trapno;
622 abi_ulong err;
623 abi_ulong eip;
bellard66fb9762003-03-23 01:06:05 +0000624 uint16_t cs, __csh;
blueswir1992f48a2007-10-14 16:27:31 +0000625 abi_ulong eflags;
626 abi_ulong esp_at_signal;
bellard66fb9762003-03-23 01:06:05 +0000627 uint16_t ss, __ssh;
blueswir1992f48a2007-10-14 16:27:31 +0000628 abi_ulong fpstate; /* pointer */
629 abi_ulong oldmask;
630 abi_ulong cr2;
bellard66fb9762003-03-23 01:06:05 +0000631};
632
bellard66fb9762003-03-23 01:06:05 +0000633struct target_ucontext {
blueswir1992f48a2007-10-14 16:27:31 +0000634 abi_ulong tuc_flags;
635 abi_ulong tuc_link;
bellardb8076a72005-04-07 22:20:31 +0000636 target_stack_t tuc_stack;
637 struct target_sigcontext tuc_mcontext;
638 target_sigset_t tuc_sigmask; /* mask last for extensibility */
bellard66fb9762003-03-23 01:06:05 +0000639};
640
641struct sigframe
642{
blueswir1992f48a2007-10-14 16:27:31 +0000643 abi_ulong pretcode;
bellard66fb9762003-03-23 01:06:05 +0000644 int sig;
645 struct target_sigcontext sc;
646 struct target_fpstate fpstate;
blueswir1992f48a2007-10-14 16:27:31 +0000647 abi_ulong extramask[TARGET_NSIG_WORDS-1];
bellard66fb9762003-03-23 01:06:05 +0000648 char retcode[8];
649};
650
651struct rt_sigframe
652{
blueswir1992f48a2007-10-14 16:27:31 +0000653 abi_ulong pretcode;
bellard66fb9762003-03-23 01:06:05 +0000654 int sig;
blueswir1992f48a2007-10-14 16:27:31 +0000655 abi_ulong pinfo;
656 abi_ulong puc;
bellard66fb9762003-03-23 01:06:05 +0000657 struct target_siginfo info;
658 struct target_ucontext uc;
659 struct target_fpstate fpstate;
660 char retcode[8];
661};
662
663/*
664 * Set up a signal frame.
665 */
666
bellard66fb9762003-03-23 01:06:05 +0000667/* XXX: save x87 state */
668static int
669setup_sigcontext(struct target_sigcontext *sc, struct target_fpstate *fpstate,
670 CPUX86State *env, unsigned long mask)
671{
672 int err = 0;
673
bellarda52c7572003-06-21 13:14:12 +0000674 err |= __put_user(env->segs[R_GS].selector, (unsigned int *)&sc->gs);
675 err |= __put_user(env->segs[R_FS].selector, (unsigned int *)&sc->fs);
676 err |= __put_user(env->segs[R_ES].selector, (unsigned int *)&sc->es);
677 err |= __put_user(env->segs[R_DS].selector, (unsigned int *)&sc->ds);
bellard66fb9762003-03-23 01:06:05 +0000678 err |= __put_user(env->regs[R_EDI], &sc->edi);
679 err |= __put_user(env->regs[R_ESI], &sc->esi);
680 err |= __put_user(env->regs[R_EBP], &sc->ebp);
681 err |= __put_user(env->regs[R_ESP], &sc->esp);
682 err |= __put_user(env->regs[R_EBX], &sc->ebx);
683 err |= __put_user(env->regs[R_EDX], &sc->edx);
684 err |= __put_user(env->regs[R_ECX], &sc->ecx);
685 err |= __put_user(env->regs[R_EAX], &sc->eax);
bellard66099dd2003-05-08 15:34:02 +0000686 err |= __put_user(env->exception_index, &sc->trapno);
687 err |= __put_user(env->error_code, &sc->err);
bellard66fb9762003-03-23 01:06:05 +0000688 err |= __put_user(env->eip, &sc->eip);
bellarda52c7572003-06-21 13:14:12 +0000689 err |= __put_user(env->segs[R_CS].selector, (unsigned int *)&sc->cs);
bellard66fb9762003-03-23 01:06:05 +0000690 err |= __put_user(env->eflags, &sc->eflags);
691 err |= __put_user(env->regs[R_ESP], &sc->esp_at_signal);
bellarda52c7572003-06-21 13:14:12 +0000692 err |= __put_user(env->segs[R_SS].selector, (unsigned int *)&sc->ss);
bellarded2dcdf2003-05-29 20:06:27 +0000693
694 cpu_x86_fsave(env, (void *)fpstate, 1);
695 fpstate->status = fpstate->sw;
696 err |= __put_user(0xffff, &fpstate->magic);
697 err |= __put_user(fpstate, &sc->fpstate);
698
bellard66fb9762003-03-23 01:06:05 +0000699 /* non-iBCS2 extensions.. */
700 err |= __put_user(mask, &sc->oldmask);
bellarda52c7572003-06-21 13:14:12 +0000701 err |= __put_user(env->cr[2], &sc->cr2);
bellard66fb9762003-03-23 01:06:05 +0000702 return err;
703}
704
705/*
706 * Determine which stack to use..
707 */
708
709static inline void *
710get_sigframe(struct emulated_sigaction *ka, CPUX86State *env, size_t frame_size)
711{
712 unsigned long esp;
713
714 /* Default to using normal stack */
715 esp = env->regs[R_ESP];
bellard66fb9762003-03-23 01:06:05 +0000716 /* This is the X/Open sanctioned signal stack switching. */
thsa04e1342007-09-27 13:57:58 +0000717 if (ka->sa.sa_flags & TARGET_SA_ONSTACK) {
718 if (sas_ss_flags(esp) == 0)
719 esp = target_sigaltstack_used.ss_sp + target_sigaltstack_used.ss_size;
720 }
bellard66fb9762003-03-23 01:06:05 +0000721
722 /* This is the legacy signal stack switching. */
ths5fafdf22007-09-16 21:08:06 +0000723 else
bellarda52c7572003-06-21 13:14:12 +0000724 if ((env->segs[R_SS].selector & 0xffff) != __USER_DS &&
725 !(ka->sa.sa_flags & TARGET_SA_RESTORER) &&
726 ka->sa.sa_restorer) {
727 esp = (unsigned long) ka->sa.sa_restorer;
728 }
pbrook53a59602006-03-25 19:31:22 +0000729 return g2h((esp - frame_size) & -8ul);
bellard66fb9762003-03-23 01:06:05 +0000730}
731
bellard66fb9762003-03-23 01:06:05 +0000732static void setup_frame(int sig, struct emulated_sigaction *ka,
733 target_sigset_t *set, CPUX86State *env)
734{
735 struct sigframe *frame;
bellard92319442004-06-19 16:58:13 +0000736 int i, err = 0;
bellard66fb9762003-03-23 01:06:05 +0000737
738 frame = get_sigframe(ka, env, sizeof(*frame));
739
bellard66fb9762003-03-23 01:06:05 +0000740 if (!access_ok(VERIFY_WRITE, frame, sizeof(*frame)))
741 goto give_sigsegv;
bellard66fb9762003-03-23 01:06:05 +0000742 err |= __put_user((/*current->exec_domain
743 && current->exec_domain->signal_invmap
744 && sig < 32
745 ? current->exec_domain->signal_invmap[sig]
746 : */ sig),
747 &frame->sig);
748 if (err)
749 goto give_sigsegv;
750
751 setup_sigcontext(&frame->sc, &frame->fpstate, env, set->sig[0]);
752 if (err)
753 goto give_sigsegv;
754
bellard92319442004-06-19 16:58:13 +0000755 for(i = 1; i < TARGET_NSIG_WORDS; i++) {
756 if (__put_user(set->sig[i], &frame->extramask[i - 1]))
757 goto give_sigsegv;
758 }
bellard66fb9762003-03-23 01:06:05 +0000759
760 /* Set up to return from userspace. If provided, use a stub
761 already in userspace. */
762 if (ka->sa.sa_flags & TARGET_SA_RESTORER) {
763 err |= __put_user(ka->sa.sa_restorer, &frame->pretcode);
764 } else {
765 err |= __put_user(frame->retcode, &frame->pretcode);
766 /* This is popl %eax ; movl $,%eax ; int $0x80 */
767 err |= __put_user(0xb858, (short *)(frame->retcode+0));
j_mayer84409dd2007-04-06 08:56:50 +0000768#if defined(TARGET_X86_64)
769#warning "Fix this !"
770#else
bellard66fb9762003-03-23 01:06:05 +0000771 err |= __put_user(TARGET_NR_sigreturn, (int *)(frame->retcode+2));
j_mayer84409dd2007-04-06 08:56:50 +0000772#endif
bellard66fb9762003-03-23 01:06:05 +0000773 err |= __put_user(0x80cd, (short *)(frame->retcode+6));
774 }
775
776 if (err)
777 goto give_sigsegv;
778
779 /* Set up registers for signal handler */
pbrook53a59602006-03-25 19:31:22 +0000780 env->regs[R_ESP] = h2g(frame);
bellard66fb9762003-03-23 01:06:05 +0000781 env->eip = (unsigned long) ka->sa._sa_handler;
782
783 cpu_x86_load_seg(env, R_DS, __USER_DS);
784 cpu_x86_load_seg(env, R_ES, __USER_DS);
785 cpu_x86_load_seg(env, R_SS, __USER_DS);
786 cpu_x86_load_seg(env, R_CS, __USER_CS);
787 env->eflags &= ~TF_MASK;
788
789 return;
790
791give_sigsegv:
792 if (sig == TARGET_SIGSEGV)
793 ka->sa._sa_handler = TARGET_SIG_DFL;
794 force_sig(TARGET_SIGSEGV /* , current */);
795}
796
ths5fafdf22007-09-16 21:08:06 +0000797static void setup_rt_frame(int sig, struct emulated_sigaction *ka,
bellard9de5e442003-03-23 16:49:39 +0000798 target_siginfo_t *info,
bellard66fb9762003-03-23 01:06:05 +0000799 target_sigset_t *set, CPUX86State *env)
800{
801 struct rt_sigframe *frame;
bellard92319442004-06-19 16:58:13 +0000802 int i, err = 0;
bellard66fb9762003-03-23 01:06:05 +0000803
804 frame = get_sigframe(ka, env, sizeof(*frame));
805
bellard66fb9762003-03-23 01:06:05 +0000806 if (!access_ok(VERIFY_WRITE, frame, sizeof(*frame)))
807 goto give_sigsegv;
bellard66fb9762003-03-23 01:06:05 +0000808
809 err |= __put_user((/*current->exec_domain
810 && current->exec_domain->signal_invmap
811 && sig < 32
812 ? current->exec_domain->signal_invmap[sig]
813 : */sig),
814 &frame->sig);
blueswir1992f48a2007-10-14 16:27:31 +0000815 err |= __put_user((abi_ulong)&frame->info, &frame->pinfo);
816 err |= __put_user((abi_ulong)&frame->uc, &frame->puc);
bellard66fb9762003-03-23 01:06:05 +0000817 err |= copy_siginfo_to_user(&frame->info, info);
818 if (err)
819 goto give_sigsegv;
820
821 /* Create the ucontext. */
bellardb8076a72005-04-07 22:20:31 +0000822 err |= __put_user(0, &frame->uc.tuc_flags);
823 err |= __put_user(0, &frame->uc.tuc_link);
thsa04e1342007-09-27 13:57:58 +0000824 err |= __put_user(target_sigaltstack_used.ss_sp,
bellardb8076a72005-04-07 22:20:31 +0000825 &frame->uc.tuc_stack.ss_sp);
thsa04e1342007-09-27 13:57:58 +0000826 err |= __put_user(sas_ss_flags(get_sp_from_cpustate(env)),
bellardb8076a72005-04-07 22:20:31 +0000827 &frame->uc.tuc_stack.ss_flags);
thsa04e1342007-09-27 13:57:58 +0000828 err |= __put_user(target_sigaltstack_used.ss_size,
bellardb8076a72005-04-07 22:20:31 +0000829 &frame->uc.tuc_stack.ss_size);
830 err |= setup_sigcontext(&frame->uc.tuc_mcontext, &frame->fpstate,
bellard66fb9762003-03-23 01:06:05 +0000831 env, set->sig[0]);
bellard92319442004-06-19 16:58:13 +0000832 for(i = 0; i < TARGET_NSIG_WORDS; i++) {
bellardb8076a72005-04-07 22:20:31 +0000833 if (__put_user(set->sig[i], &frame->uc.tuc_sigmask.sig[i]))
bellard92319442004-06-19 16:58:13 +0000834 goto give_sigsegv;
835 }
bellard66fb9762003-03-23 01:06:05 +0000836
837 /* Set up to return from userspace. If provided, use a stub
838 already in userspace. */
839 if (ka->sa.sa_flags & TARGET_SA_RESTORER) {
840 err |= __put_user(ka->sa.sa_restorer, &frame->pretcode);
841 } else {
842 err |= __put_user(frame->retcode, &frame->pretcode);
843 /* This is movl $,%eax ; int $0x80 */
844 err |= __put_user(0xb8, (char *)(frame->retcode+0));
845 err |= __put_user(TARGET_NR_rt_sigreturn, (int *)(frame->retcode+1));
846 err |= __put_user(0x80cd, (short *)(frame->retcode+5));
847 }
848
849 if (err)
850 goto give_sigsegv;
851
852 /* Set up registers for signal handler */
853 env->regs[R_ESP] = (unsigned long) frame;
854 env->eip = (unsigned long) ka->sa._sa_handler;
855
856 cpu_x86_load_seg(env, R_DS, __USER_DS);
857 cpu_x86_load_seg(env, R_ES, __USER_DS);
858 cpu_x86_load_seg(env, R_SS, __USER_DS);
859 cpu_x86_load_seg(env, R_CS, __USER_CS);
860 env->eflags &= ~TF_MASK;
861
862 return;
863
864give_sigsegv:
865 if (sig == TARGET_SIGSEGV)
866 ka->sa._sa_handler = TARGET_SIG_DFL;
867 force_sig(TARGET_SIGSEGV /* , current */);
868}
869
870static int
871restore_sigcontext(CPUX86State *env, struct target_sigcontext *sc, int *peax)
872{
873 unsigned int err = 0;
874
bellard66fb9762003-03-23 01:06:05 +0000875 cpu_x86_load_seg(env, R_GS, lduw(&sc->gs));
876 cpu_x86_load_seg(env, R_FS, lduw(&sc->fs));
877 cpu_x86_load_seg(env, R_ES, lduw(&sc->es));
878 cpu_x86_load_seg(env, R_DS, lduw(&sc->ds));
879
880 env->regs[R_EDI] = ldl(&sc->edi);
881 env->regs[R_ESI] = ldl(&sc->esi);
882 env->regs[R_EBP] = ldl(&sc->ebp);
883 env->regs[R_ESP] = ldl(&sc->esp);
884 env->regs[R_EBX] = ldl(&sc->ebx);
885 env->regs[R_EDX] = ldl(&sc->edx);
886 env->regs[R_ECX] = ldl(&sc->ecx);
887 env->eip = ldl(&sc->eip);
888
889 cpu_x86_load_seg(env, R_CS, lduw(&sc->cs) | 3);
890 cpu_x86_load_seg(env, R_SS, lduw(&sc->ss) | 3);
ths5fafdf22007-09-16 21:08:06 +0000891
bellard66fb9762003-03-23 01:06:05 +0000892 {
893 unsigned int tmpflags;
894 tmpflags = ldl(&sc->eflags);
895 env->eflags = (env->eflags & ~0x40DD5) | (tmpflags & 0x40DD5);
896 // regs->orig_eax = -1; /* disable syscall checks */
897 }
898
bellard66fb9762003-03-23 01:06:05 +0000899 {
900 struct _fpstate * buf;
bellarded2dcdf2003-05-29 20:06:27 +0000901 buf = (void *)ldl(&sc->fpstate);
bellard66fb9762003-03-23 01:06:05 +0000902 if (buf) {
bellarded2dcdf2003-05-29 20:06:27 +0000903#if 0
bellard66fb9762003-03-23 01:06:05 +0000904 if (verify_area(VERIFY_READ, buf, sizeof(*buf)))
905 goto badframe;
bellarded2dcdf2003-05-29 20:06:27 +0000906#endif
907 cpu_x86_frstor(env, (void *)buf, 1);
bellard66fb9762003-03-23 01:06:05 +0000908 }
909 }
bellarded2dcdf2003-05-29 20:06:27 +0000910
bellard66fb9762003-03-23 01:06:05 +0000911 *peax = ldl(&sc->eax);
912 return err;
913#if 0
914badframe:
915 return 1;
916#endif
917}
918
919long do_sigreturn(CPUX86State *env)
920{
pbrook53a59602006-03-25 19:31:22 +0000921 struct sigframe *frame = (struct sigframe *)g2h(env->regs[R_ESP] - 8);
bellard66fb9762003-03-23 01:06:05 +0000922 target_sigset_t target_set;
923 sigset_t set;
924 int eax, i;
925
bellard447db212003-05-10 15:10:36 +0000926#if defined(DEBUG_SIGNAL)
927 fprintf(stderr, "do_sigreturn\n");
928#endif
bellard66fb9762003-03-23 01:06:05 +0000929 /* set blocked signals */
bellard92319442004-06-19 16:58:13 +0000930 if (__get_user(target_set.sig[0], &frame->sc.oldmask))
931 goto badframe;
932 for(i = 1; i < TARGET_NSIG_WORDS; i++) {
933 if (__get_user(target_set.sig[i], &frame->extramask[i - 1]))
934 goto badframe;
935 }
bellard66fb9762003-03-23 01:06:05 +0000936
bellard92319442004-06-19 16:58:13 +0000937 target_to_host_sigset_internal(&set, &target_set);
bellard66fb9762003-03-23 01:06:05 +0000938 sigprocmask(SIG_SETMASK, &set, NULL);
ths3b46e622007-09-17 08:09:54 +0000939
bellard66fb9762003-03-23 01:06:05 +0000940 /* restore registers */
941 if (restore_sigcontext(env, &frame->sc, &eax))
942 goto badframe;
943 return eax;
944
945badframe:
946 force_sig(TARGET_SIGSEGV);
947 return 0;
948}
949
950long do_rt_sigreturn(CPUX86State *env)
951{
pbrook53a59602006-03-25 19:31:22 +0000952 struct rt_sigframe *frame = (struct rt_sigframe *)g2h(env->regs[R_ESP] - 4);
bellard66fb9762003-03-23 01:06:05 +0000953 sigset_t set;
bellard66fb9762003-03-23 01:06:05 +0000954 int eax;
955
956#if 0
957 if (verify_area(VERIFY_READ, frame, sizeof(*frame)))
958 goto badframe;
959#endif
bellardb8076a72005-04-07 22:20:31 +0000960 target_to_host_sigset(&set, &frame->uc.tuc_sigmask);
bellard66fb9762003-03-23 01:06:05 +0000961 sigprocmask(SIG_SETMASK, &set, NULL);
ths5fafdf22007-09-16 21:08:06 +0000962
bellardb8076a72005-04-07 22:20:31 +0000963 if (restore_sigcontext(env, &frame->uc.tuc_mcontext, &eax))
bellard66fb9762003-03-23 01:06:05 +0000964 goto badframe;
965
thsa04e1342007-09-27 13:57:58 +0000966 if (do_sigaltstack(&frame->uc.tuc_stack, NULL, get_sp_from_cpustate(env)) == -EFAULT)
bellard66fb9762003-03-23 01:06:05 +0000967 goto badframe;
thsa04e1342007-09-27 13:57:58 +0000968
bellard66fb9762003-03-23 01:06:05 +0000969 return eax;
970
971badframe:
972 force_sig(TARGET_SIGSEGV);
973 return 0;
974}
975
bellard43fff232003-07-09 19:31:39 +0000976#elif defined(TARGET_ARM)
977
978struct target_sigcontext {
blueswir1992f48a2007-10-14 16:27:31 +0000979 abi_ulong trap_no;
980 abi_ulong error_code;
981 abi_ulong oldmask;
982 abi_ulong arm_r0;
983 abi_ulong arm_r1;
984 abi_ulong arm_r2;
985 abi_ulong arm_r3;
986 abi_ulong arm_r4;
987 abi_ulong arm_r5;
988 abi_ulong arm_r6;
989 abi_ulong arm_r7;
990 abi_ulong arm_r8;
991 abi_ulong arm_r9;
992 abi_ulong arm_r10;
993 abi_ulong arm_fp;
994 abi_ulong arm_ip;
995 abi_ulong arm_sp;
996 abi_ulong arm_lr;
997 abi_ulong arm_pc;
998 abi_ulong arm_cpsr;
999 abi_ulong fault_address;
bellard43fff232003-07-09 19:31:39 +00001000};
1001
bellard43fff232003-07-09 19:31:39 +00001002struct target_ucontext {
blueswir1992f48a2007-10-14 16:27:31 +00001003 abi_ulong tuc_flags;
1004 abi_ulong tuc_link;
bellardb8076a72005-04-07 22:20:31 +00001005 target_stack_t tuc_stack;
1006 struct target_sigcontext tuc_mcontext;
1007 target_sigset_t tuc_sigmask; /* mask last for extensibility */
bellard43fff232003-07-09 19:31:39 +00001008};
1009
1010struct sigframe
1011{
1012 struct target_sigcontext sc;
blueswir1992f48a2007-10-14 16:27:31 +00001013 abi_ulong extramask[TARGET_NSIG_WORDS-1];
1014 abi_ulong retcode;
bellard43fff232003-07-09 19:31:39 +00001015};
1016
1017struct rt_sigframe
1018{
1019 struct target_siginfo *pinfo;
1020 void *puc;
1021 struct target_siginfo info;
1022 struct target_ucontext uc;
blueswir1992f48a2007-10-14 16:27:31 +00001023 abi_ulong retcode;
bellard43fff232003-07-09 19:31:39 +00001024};
1025
1026#define TARGET_CONFIG_CPU_32 1
1027
1028/*
1029 * For ARM syscalls, we encode the syscall number into the instruction.
1030 */
1031#define SWI_SYS_SIGRETURN (0xef000000|(TARGET_NR_sigreturn + ARM_SYSCALL_BASE))
1032#define SWI_SYS_RT_SIGRETURN (0xef000000|(TARGET_NR_rt_sigreturn + ARM_SYSCALL_BASE))
1033
1034/*
1035 * For Thumb syscalls, we pass the syscall number via r7. We therefore
1036 * need two 16-bit instructions.
1037 */
1038#define SWI_THUMB_SIGRETURN (0xdf00 << 16 | 0x2700 | (TARGET_NR_sigreturn))
1039#define SWI_THUMB_RT_SIGRETURN (0xdf00 << 16 | 0x2700 | (TARGET_NR_rt_sigreturn))
1040
blueswir1992f48a2007-10-14 16:27:31 +00001041static const abi_ulong retcodes[4] = {
bellard43fff232003-07-09 19:31:39 +00001042 SWI_SYS_SIGRETURN, SWI_THUMB_SIGRETURN,
1043 SWI_SYS_RT_SIGRETURN, SWI_THUMB_RT_SIGRETURN
1044};
1045
1046
1047#define __put_user_error(x,p,e) __put_user(x, p)
1048#define __get_user_error(x,p,e) __get_user(x, p)
1049
1050static inline int valid_user_regs(CPUState *regs)
1051{
1052 return 1;
1053}
1054
1055static int
1056setup_sigcontext(struct target_sigcontext *sc, /*struct _fpstate *fpstate,*/
1057 CPUState *env, unsigned long mask)
1058{
1059 int err = 0;
1060
1061 __put_user_error(env->regs[0], &sc->arm_r0, err);
1062 __put_user_error(env->regs[1], &sc->arm_r1, err);
1063 __put_user_error(env->regs[2], &sc->arm_r2, err);
1064 __put_user_error(env->regs[3], &sc->arm_r3, err);
1065 __put_user_error(env->regs[4], &sc->arm_r4, err);
1066 __put_user_error(env->regs[5], &sc->arm_r5, err);
1067 __put_user_error(env->regs[6], &sc->arm_r6, err);
1068 __put_user_error(env->regs[7], &sc->arm_r7, err);
1069 __put_user_error(env->regs[8], &sc->arm_r8, err);
1070 __put_user_error(env->regs[9], &sc->arm_r9, err);
1071 __put_user_error(env->regs[10], &sc->arm_r10, err);
1072 __put_user_error(env->regs[11], &sc->arm_fp, err);
1073 __put_user_error(env->regs[12], &sc->arm_ip, err);
1074 __put_user_error(env->regs[13], &sc->arm_sp, err);
1075 __put_user_error(env->regs[14], &sc->arm_lr, err);
1076 __put_user_error(env->regs[15], &sc->arm_pc, err);
1077#ifdef TARGET_CONFIG_CPU_32
bellardb5ff1b32005-11-26 10:38:39 +00001078 __put_user_error(cpsr_read(env), &sc->arm_cpsr, err);
bellard43fff232003-07-09 19:31:39 +00001079#endif
1080
1081 __put_user_error(/* current->thread.trap_no */ 0, &sc->trap_no, err);
1082 __put_user_error(/* current->thread.error_code */ 0, &sc->error_code, err);
1083 __put_user_error(/* current->thread.address */ 0, &sc->fault_address, err);
1084 __put_user_error(mask, &sc->oldmask, err);
1085
1086 return err;
1087}
1088
1089static inline void *
1090get_sigframe(struct emulated_sigaction *ka, CPUState *regs, int framesize)
1091{
1092 unsigned long sp = regs->regs[13];
1093
bellard43fff232003-07-09 19:31:39 +00001094 /*
1095 * This is the X/Open sanctioned signal stack switching.
1096 */
thsa04e1342007-09-27 13:57:58 +00001097 if ((ka->sa.sa_flags & TARGET_SA_ONSTACK) && !sas_ss_flags(sp))
1098 sp = target_sigaltstack_used.ss_sp + target_sigaltstack_used.ss_size;
bellard43fff232003-07-09 19:31:39 +00001099 /*
1100 * ATPCS B01 mandates 8-byte alignment
1101 */
pbrook53a59602006-03-25 19:31:22 +00001102 return g2h((sp - framesize) & ~7);
bellard43fff232003-07-09 19:31:39 +00001103}
1104
1105static int
1106setup_return(CPUState *env, struct emulated_sigaction *ka,
blueswir1992f48a2007-10-14 16:27:31 +00001107 abi_ulong *rc, void *frame, int usig)
bellard43fff232003-07-09 19:31:39 +00001108{
blueswir1992f48a2007-10-14 16:27:31 +00001109 abi_ulong handler = (abi_ulong)ka->sa._sa_handler;
1110 abi_ulong retcode;
bellard43fff232003-07-09 19:31:39 +00001111 int thumb = 0;
1112#if defined(TARGET_CONFIG_CPU_32)
bellardb5ff1b32005-11-26 10:38:39 +00001113#if 0
blueswir1992f48a2007-10-14 16:27:31 +00001114 abi_ulong cpsr = env->cpsr;
bellard43fff232003-07-09 19:31:39 +00001115
bellard43fff232003-07-09 19:31:39 +00001116 /*
1117 * Maybe we need to deliver a 32-bit signal to a 26-bit task.
1118 */
1119 if (ka->sa.sa_flags & SA_THIRTYTWO)
1120 cpsr = (cpsr & ~MODE_MASK) | USR_MODE;
1121
1122#ifdef CONFIG_ARM_THUMB
1123 if (elf_hwcap & HWCAP_THUMB) {
1124 /*
1125 * The LSB of the handler determines if we're going to
1126 * be using THUMB or ARM mode for this signal handler.
1127 */
1128 thumb = handler & 1;
1129
1130 if (thumb)
1131 cpsr |= T_BIT;
1132 else
1133 cpsr &= ~T_BIT;
1134 }
thsa04e1342007-09-27 13:57:58 +00001135#endif /* CONFIG_ARM_THUMB */
1136#endif /* 0 */
bellard43fff232003-07-09 19:31:39 +00001137#endif /* TARGET_CONFIG_CPU_32 */
1138
1139 if (ka->sa.sa_flags & TARGET_SA_RESTORER) {
blueswir1992f48a2007-10-14 16:27:31 +00001140 retcode = (abi_ulong)ka->sa.sa_restorer;
bellard43fff232003-07-09 19:31:39 +00001141 } else {
1142 unsigned int idx = thumb;
1143
1144 if (ka->sa.sa_flags & TARGET_SA_SIGINFO)
1145 idx += 2;
1146
1147 if (__put_user(retcodes[idx], rc))
1148 return 1;
1149#if 0
blueswir1992f48a2007-10-14 16:27:31 +00001150 flush_icache_range((abi_ulong)rc,
1151 (abi_ulong)(rc + 1));
bellard43fff232003-07-09 19:31:39 +00001152#endif
blueswir1992f48a2007-10-14 16:27:31 +00001153 retcode = ((abi_ulong)rc) + thumb;
bellard43fff232003-07-09 19:31:39 +00001154 }
1155
1156 env->regs[0] = usig;
pbrook53a59602006-03-25 19:31:22 +00001157 env->regs[13] = h2g(frame);
bellard43fff232003-07-09 19:31:39 +00001158 env->regs[14] = retcode;
1159 env->regs[15] = handler & (thumb ? ~1 : ~3);
1160
bellardb5ff1b32005-11-26 10:38:39 +00001161#if 0
bellard43fff232003-07-09 19:31:39 +00001162#ifdef TARGET_CONFIG_CPU_32
1163 env->cpsr = cpsr;
1164#endif
bellardb5ff1b32005-11-26 10:38:39 +00001165#endif
bellard43fff232003-07-09 19:31:39 +00001166
1167 return 0;
1168}
1169
1170static void setup_frame(int usig, struct emulated_sigaction *ka,
1171 target_sigset_t *set, CPUState *regs)
1172{
1173 struct sigframe *frame = get_sigframe(ka, regs, sizeof(*frame));
bellard92319442004-06-19 16:58:13 +00001174 int i, err = 0;
bellard43fff232003-07-09 19:31:39 +00001175
1176 err |= setup_sigcontext(&frame->sc, /*&frame->fpstate,*/ regs, set->sig[0]);
1177
bellard92319442004-06-19 16:58:13 +00001178 for(i = 1; i < TARGET_NSIG_WORDS; i++) {
1179 if (__put_user(set->sig[i], &frame->extramask[i - 1]))
1180 return;
bellard43fff232003-07-09 19:31:39 +00001181 }
1182
1183 if (err == 0)
1184 err = setup_return(regs, ka, &frame->retcode, frame, usig);
1185 // return err;
1186}
1187
ths5fafdf22007-09-16 21:08:06 +00001188static void setup_rt_frame(int usig, struct emulated_sigaction *ka,
bellard43fff232003-07-09 19:31:39 +00001189 target_siginfo_t *info,
1190 target_sigset_t *set, CPUState *env)
1191{
1192 struct rt_sigframe *frame = get_sigframe(ka, env, sizeof(*frame));
thsa04e1342007-09-27 13:57:58 +00001193 struct target_sigaltstack stack;
bellard92319442004-06-19 16:58:13 +00001194 int i, err = 0;
bellard43fff232003-07-09 19:31:39 +00001195
bellard43fff232003-07-09 19:31:39 +00001196 if (!access_ok(VERIFY_WRITE, frame, sizeof (*frame)))
bellardedf779f2004-02-22 13:40:13 +00001197 return /* 1 */;
1198
blueswir1992f48a2007-10-14 16:27:31 +00001199 __put_user_error(&frame->info, (abi_ulong *)&frame->pinfo, err);
1200 __put_user_error(&frame->uc, (abi_ulong *)&frame->puc, err);
bellard43fff232003-07-09 19:31:39 +00001201 err |= copy_siginfo_to_user(&frame->info, info);
1202
1203 /* Clear all the bits of the ucontext we don't use. */
pbrook53a59602006-03-25 19:31:22 +00001204 memset(&frame->uc, 0, offsetof(struct target_ucontext, tuc_mcontext));
bellard43fff232003-07-09 19:31:39 +00001205
thsa04e1342007-09-27 13:57:58 +00001206 memset(&stack, 0, sizeof(stack));
1207 __put_user(target_sigaltstack_used.ss_sp, &stack.ss_sp);
1208 __put_user(target_sigaltstack_used.ss_size, &stack.ss_size);
1209 __put_user(sas_ss_flags(get_sp_from_cpustate(env)), &stack.ss_flags);
1210 if (!access_ok(VERIFY_WRITE, &frame->uc.tuc_stack, sizeof(stack)))
1211 err = 1;
1212 else
1213 memcpy(&frame->uc.tuc_stack, &stack, sizeof(stack));
1214
bellardb8076a72005-04-07 22:20:31 +00001215 err |= setup_sigcontext(&frame->uc.tuc_mcontext, /*&frame->fpstate,*/
bellard43fff232003-07-09 19:31:39 +00001216 env, set->sig[0]);
bellard92319442004-06-19 16:58:13 +00001217 for(i = 0; i < TARGET_NSIG_WORDS; i++) {
bellardb8076a72005-04-07 22:20:31 +00001218 if (__put_user(set->sig[i], &frame->uc.tuc_sigmask.sig[i]))
bellard92319442004-06-19 16:58:13 +00001219 return;
1220 }
bellard43fff232003-07-09 19:31:39 +00001221
1222 if (err == 0)
1223 err = setup_return(env, ka, &frame->retcode, frame, usig);
1224
1225 if (err == 0) {
1226 /*
1227 * For realtime signals we must also set the second and third
1228 * arguments for the signal handler.
1229 * -- Peter Maydell <pmaydell@chiark.greenend.org.uk> 2000-12-06
1230 */
blueswir1992f48a2007-10-14 16:27:31 +00001231 env->regs[1] = (abi_ulong)frame->pinfo;
1232 env->regs[2] = (abi_ulong)frame->puc;
bellard43fff232003-07-09 19:31:39 +00001233 }
1234
1235 // return err;
1236}
1237
1238static int
1239restore_sigcontext(CPUState *env, struct target_sigcontext *sc)
1240{
1241 int err = 0;
bellardb5ff1b32005-11-26 10:38:39 +00001242 uint32_t cpsr;
bellard43fff232003-07-09 19:31:39 +00001243
1244 __get_user_error(env->regs[0], &sc->arm_r0, err);
1245 __get_user_error(env->regs[1], &sc->arm_r1, err);
1246 __get_user_error(env->regs[2], &sc->arm_r2, err);
1247 __get_user_error(env->regs[3], &sc->arm_r3, err);
1248 __get_user_error(env->regs[4], &sc->arm_r4, err);
1249 __get_user_error(env->regs[5], &sc->arm_r5, err);
1250 __get_user_error(env->regs[6], &sc->arm_r6, err);
1251 __get_user_error(env->regs[7], &sc->arm_r7, err);
1252 __get_user_error(env->regs[8], &sc->arm_r8, err);
1253 __get_user_error(env->regs[9], &sc->arm_r9, err);
1254 __get_user_error(env->regs[10], &sc->arm_r10, err);
1255 __get_user_error(env->regs[11], &sc->arm_fp, err);
1256 __get_user_error(env->regs[12], &sc->arm_ip, err);
1257 __get_user_error(env->regs[13], &sc->arm_sp, err);
1258 __get_user_error(env->regs[14], &sc->arm_lr, err);
1259 __get_user_error(env->regs[15], &sc->arm_pc, err);
1260#ifdef TARGET_CONFIG_CPU_32
bellardb5ff1b32005-11-26 10:38:39 +00001261 __get_user_error(cpsr, &sc->arm_cpsr, err);
1262 cpsr_write(env, cpsr, 0xffffffff);
bellard43fff232003-07-09 19:31:39 +00001263#endif
1264
1265 err |= !valid_user_regs(env);
1266
1267 return err;
1268}
1269
1270long do_sigreturn(CPUState *env)
1271{
1272 struct sigframe *frame;
1273 target_sigset_t set;
1274 sigset_t host_set;
bellard92319442004-06-19 16:58:13 +00001275 int i;
bellard43fff232003-07-09 19:31:39 +00001276
1277 /*
1278 * Since we stacked the signal on a 64-bit boundary,
1279 * then 'sp' should be word aligned here. If it's
1280 * not, then the user is trying to mess with us.
1281 */
1282 if (env->regs[13] & 7)
1283 goto badframe;
1284
pbrook53a59602006-03-25 19:31:22 +00001285 frame = (struct sigframe *)g2h(env->regs[13]);
bellard43fff232003-07-09 19:31:39 +00001286
1287#if 0
1288 if (verify_area(VERIFY_READ, frame, sizeof (*frame)))
1289 goto badframe;
1290#endif
bellard92319442004-06-19 16:58:13 +00001291 if (__get_user(set.sig[0], &frame->sc.oldmask))
1292 goto badframe;
1293 for(i = 1; i < TARGET_NSIG_WORDS; i++) {
1294 if (__get_user(set.sig[i], &frame->extramask[i - 1]))
1295 goto badframe;
1296 }
bellard43fff232003-07-09 19:31:39 +00001297
bellard92319442004-06-19 16:58:13 +00001298 target_to_host_sigset_internal(&host_set, &set);
bellard43fff232003-07-09 19:31:39 +00001299 sigprocmask(SIG_SETMASK, &host_set, NULL);
1300
1301 if (restore_sigcontext(env, &frame->sc))
1302 goto badframe;
1303
1304#if 0
1305 /* Send SIGTRAP if we're single-stepping */
1306 if (ptrace_cancel_bpt(current))
1307 send_sig(SIGTRAP, current, 1);
1308#endif
1309 return env->regs[0];
1310
1311badframe:
1312 force_sig(SIGSEGV /* , current */);
1313 return 0;
1314}
1315
1316long do_rt_sigreturn(CPUState *env)
1317{
1318 struct rt_sigframe *frame;
bellard43fff232003-07-09 19:31:39 +00001319 sigset_t host_set;
1320
1321 /*
1322 * Since we stacked the signal on a 64-bit boundary,
1323 * then 'sp' should be word aligned here. If it's
1324 * not, then the user is trying to mess with us.
1325 */
1326 if (env->regs[13] & 7)
1327 goto badframe;
1328
1329 frame = (struct rt_sigframe *)env->regs[13];
1330
1331#if 0
1332 if (verify_area(VERIFY_READ, frame, sizeof (*frame)))
1333 goto badframe;
1334#endif
bellardb8076a72005-04-07 22:20:31 +00001335 target_to_host_sigset(&host_set, &frame->uc.tuc_sigmask);
bellard43fff232003-07-09 19:31:39 +00001336 sigprocmask(SIG_SETMASK, &host_set, NULL);
1337
bellardb8076a72005-04-07 22:20:31 +00001338 if (restore_sigcontext(env, &frame->uc.tuc_mcontext))
bellard43fff232003-07-09 19:31:39 +00001339 goto badframe;
1340
thsa04e1342007-09-27 13:57:58 +00001341 if (do_sigaltstack(&frame->uc.tuc_stack, NULL, get_sp_from_cpustate(env)) == -EFAULT)
1342 goto badframe;
1343
bellard43fff232003-07-09 19:31:39 +00001344#if 0
1345 /* Send SIGTRAP if we're single-stepping */
1346 if (ptrace_cancel_bpt(current))
1347 send_sig(SIGTRAP, current, 1);
1348#endif
1349 return env->regs[0];
1350
1351badframe:
1352 force_sig(SIGSEGV /* , current */);
1353 return 0;
1354}
1355
bellard6d5e2162004-09-30 22:04:13 +00001356#elif defined(TARGET_SPARC)
bellard80a9d032005-01-03 23:31:27 +00001357
bellard6d5e2162004-09-30 22:04:13 +00001358#define __SUNOS_MAXWIN 31
1359
1360/* This is what SunOS does, so shall I. */
1361struct target_sigcontext {
blueswir1992f48a2007-10-14 16:27:31 +00001362 abi_ulong sigc_onstack; /* state to restore */
bellard6d5e2162004-09-30 22:04:13 +00001363
blueswir1992f48a2007-10-14 16:27:31 +00001364 abi_ulong sigc_mask; /* sigmask to restore */
1365 abi_ulong sigc_sp; /* stack pointer */
1366 abi_ulong sigc_pc; /* program counter */
1367 abi_ulong sigc_npc; /* next program counter */
1368 abi_ulong sigc_psr; /* for condition codes etc */
1369 abi_ulong sigc_g1; /* User uses these two registers */
1370 abi_ulong sigc_o0; /* within the trampoline code. */
bellard6d5e2162004-09-30 22:04:13 +00001371
1372 /* Now comes information regarding the users window set
1373 * at the time of the signal.
1374 */
blueswir1992f48a2007-10-14 16:27:31 +00001375 abi_ulong sigc_oswins; /* outstanding windows */
bellard6d5e2162004-09-30 22:04:13 +00001376
1377 /* stack ptrs for each regwin buf */
1378 char *sigc_spbuf[__SUNOS_MAXWIN];
1379
1380 /* Windows to restore after signal */
1381 struct {
blueswir1992f48a2007-10-14 16:27:31 +00001382 abi_ulong locals[8];
1383 abi_ulong ins[8];
bellard6d5e2162004-09-30 22:04:13 +00001384 } sigc_wbuf[__SUNOS_MAXWIN];
1385};
1386/* A Sparc stack frame */
1387struct sparc_stackf {
blueswir1992f48a2007-10-14 16:27:31 +00001388 abi_ulong locals[8];
1389 abi_ulong ins[6];
bellard6d5e2162004-09-30 22:04:13 +00001390 struct sparc_stackf *fp;
blueswir1992f48a2007-10-14 16:27:31 +00001391 abi_ulong callers_pc;
bellard6d5e2162004-09-30 22:04:13 +00001392 char *structptr;
blueswir1992f48a2007-10-14 16:27:31 +00001393 abi_ulong xargs[6];
1394 abi_ulong xxargs[1];
bellard6d5e2162004-09-30 22:04:13 +00001395};
1396
1397typedef struct {
1398 struct {
blueswir1992f48a2007-10-14 16:27:31 +00001399 abi_ulong psr;
1400 abi_ulong pc;
1401 abi_ulong npc;
1402 abi_ulong y;
1403 abi_ulong u_regs[16]; /* globals and ins */
bellard6d5e2162004-09-30 22:04:13 +00001404 } si_regs;
1405 int si_mask;
1406} __siginfo_t;
1407
1408typedef struct {
1409 unsigned long si_float_regs [32];
1410 unsigned long si_fsr;
1411 unsigned long si_fpqdepth;
1412 struct {
1413 unsigned long *insn_addr;
1414 unsigned long insn;
1415 } si_fpqueue [16];
bellard74ccb342006-07-18 21:23:34 +00001416} qemu_siginfo_fpu_t;
bellard6d5e2162004-09-30 22:04:13 +00001417
1418
1419struct target_signal_frame {
1420 struct sparc_stackf ss;
1421 __siginfo_t info;
bellard74ccb342006-07-18 21:23:34 +00001422 qemu_siginfo_fpu_t *fpu_save;
blueswir1992f48a2007-10-14 16:27:31 +00001423 abi_ulong insns[2] __attribute__ ((aligned (8)));
1424 abi_ulong extramask[TARGET_NSIG_WORDS - 1];
1425 abi_ulong extra_size; /* Should be 0 */
bellard74ccb342006-07-18 21:23:34 +00001426 qemu_siginfo_fpu_t fpu_state;
bellard6d5e2162004-09-30 22:04:13 +00001427};
1428struct target_rt_signal_frame {
1429 struct sparc_stackf ss;
1430 siginfo_t info;
blueswir1992f48a2007-10-14 16:27:31 +00001431 abi_ulong regs[20];
bellard6d5e2162004-09-30 22:04:13 +00001432 sigset_t mask;
bellard74ccb342006-07-18 21:23:34 +00001433 qemu_siginfo_fpu_t *fpu_save;
bellard6d5e2162004-09-30 22:04:13 +00001434 unsigned int insns[2];
1435 stack_t stack;
1436 unsigned int extra_size; /* Should be 0 */
bellard74ccb342006-07-18 21:23:34 +00001437 qemu_siginfo_fpu_t fpu_state;
bellard6d5e2162004-09-30 22:04:13 +00001438};
1439
bellarde80cfcf2004-12-19 23:18:01 +00001440#define UREG_O0 16
1441#define UREG_O6 22
1442#define UREG_I0 0
1443#define UREG_I1 1
1444#define UREG_I2 2
blueswir15bfb56b2007-10-05 17:01:51 +00001445#define UREG_I3 3
1446#define UREG_I4 4
1447#define UREG_I5 5
bellarde80cfcf2004-12-19 23:18:01 +00001448#define UREG_I6 6
1449#define UREG_I7 7
1450#define UREG_L0 8
bellard6d5e2162004-09-30 22:04:13 +00001451#define UREG_FP UREG_I6
1452#define UREG_SP UREG_O6
1453
1454static inline void *get_sigframe(struct emulated_sigaction *sa, CPUState *env, unsigned long framesize)
1455{
1456 unsigned long sp;
1457
1458 sp = env->regwptr[UREG_FP];
bellard6d5e2162004-09-30 22:04:13 +00001459
1460 /* This is the X/Open sanctioned signal stack switching. */
thsa04e1342007-09-27 13:57:58 +00001461 if (sa->sa.sa_flags & TARGET_SA_ONSTACK) {
1462 if (!on_sig_stack(sp)
1463 && !((target_sigaltstack_used.ss_sp + target_sigaltstack_used.ss_size) & 7))
1464 sp = target_sigaltstack_used.ss_sp + target_sigaltstack_used.ss_size;
bellard6d5e2162004-09-30 22:04:13 +00001465 }
pbrook53a59602006-03-25 19:31:22 +00001466 return g2h(sp - framesize);
bellard6d5e2162004-09-30 22:04:13 +00001467}
1468
1469static int
blueswir1992f48a2007-10-14 16:27:31 +00001470setup___siginfo(__siginfo_t *si, CPUState *env, abi_ulong mask)
bellard6d5e2162004-09-30 22:04:13 +00001471{
1472 int err = 0, i;
1473
bellard6d5e2162004-09-30 22:04:13 +00001474 err |= __put_user(env->psr, &si->si_regs.psr);
bellard6d5e2162004-09-30 22:04:13 +00001475 err |= __put_user(env->pc, &si->si_regs.pc);
1476 err |= __put_user(env->npc, &si->si_regs.npc);
1477 err |= __put_user(env->y, &si->si_regs.y);
bellarda315a142005-01-30 22:59:18 +00001478 for (i=0; i < 8; i++) {
bellard6d5e2162004-09-30 22:04:13 +00001479 err |= __put_user(env->gregs[i], &si->si_regs.u_regs[i]);
1480 }
bellarda315a142005-01-30 22:59:18 +00001481 for (i=0; i < 8; i++) {
bellarde80cfcf2004-12-19 23:18:01 +00001482 err |= __put_user(env->regwptr[UREG_I0 + i], &si->si_regs.u_regs[i+8]);
bellard6d5e2162004-09-30 22:04:13 +00001483 }
bellard6d5e2162004-09-30 22:04:13 +00001484 err |= __put_user(mask, &si->si_mask);
1485 return err;
1486}
bellarde80cfcf2004-12-19 23:18:01 +00001487
bellard80a9d032005-01-03 23:31:27 +00001488#if 0
bellard6d5e2162004-09-30 22:04:13 +00001489static int
1490setup_sigcontext(struct target_sigcontext *sc, /*struct _fpstate *fpstate,*/
1491 CPUState *env, unsigned long mask)
1492{
1493 int err = 0;
1494
1495 err |= __put_user(mask, &sc->sigc_mask);
1496 err |= __put_user(env->regwptr[UREG_SP], &sc->sigc_sp);
1497 err |= __put_user(env->pc, &sc->sigc_pc);
1498 err |= __put_user(env->npc, &sc->sigc_npc);
1499 err |= __put_user(env->psr, &sc->sigc_psr);
1500 err |= __put_user(env->gregs[1], &sc->sigc_g1);
1501 err |= __put_user(env->regwptr[UREG_O0], &sc->sigc_o0);
1502
1503 return err;
1504}
bellard80a9d032005-01-03 23:31:27 +00001505#endif
bellard6d5e2162004-09-30 22:04:13 +00001506#define NF_ALIGNEDSZ (((sizeof(struct target_signal_frame) + 7) & (~7)))
1507
1508static void setup_frame(int sig, struct emulated_sigaction *ka,
1509 target_sigset_t *set, CPUState *env)
1510{
1511 struct target_signal_frame *sf;
1512 int sigframe_size, err, i;
1513
1514 /* 1. Make sure everything is clean */
1515 //synchronize_user_stack();
1516
1517 sigframe_size = NF_ALIGNEDSZ;
1518
1519 sf = (struct target_signal_frame *)
1520 get_sigframe(ka, env, sigframe_size);
1521
bellarde80cfcf2004-12-19 23:18:01 +00001522 //fprintf(stderr, "sf: %x pc %x fp %x sp %x\n", sf, env->pc, env->regwptr[UREG_FP], env->regwptr[UREG_SP]);
bellard6d5e2162004-09-30 22:04:13 +00001523#if 0
1524 if (invalid_frame_pointer(sf, sigframe_size))
1525 goto sigill_and_return;
1526#endif
1527 /* 2. Save the current process state */
1528 err = setup___siginfo(&sf->info, env, set->sig[0]);
1529 err |= __put_user(0, &sf->extra_size);
1530
1531 //err |= save_fpu_state(regs, &sf->fpu_state);
1532 //err |= __put_user(&sf->fpu_state, &sf->fpu_save);
1533
1534 err |= __put_user(set->sig[0], &sf->info.si_mask);
1535 for (i = 0; i < TARGET_NSIG_WORDS - 1; i++) {
1536 err |= __put_user(set->sig[i + 1], &sf->extramask[i]);
1537 }
1538
bellarda315a142005-01-30 22:59:18 +00001539 for (i = 0; i < 8; i++) {
bellarde80cfcf2004-12-19 23:18:01 +00001540 err |= __put_user(env->regwptr[i + UREG_L0], &sf->ss.locals[i]);
bellard6d5e2162004-09-30 22:04:13 +00001541 }
bellarda315a142005-01-30 22:59:18 +00001542 for (i = 0; i < 8; i++) {
bellarde80cfcf2004-12-19 23:18:01 +00001543 err |= __put_user(env->regwptr[i + UREG_I0], &sf->ss.ins[i]);
bellard6d5e2162004-09-30 22:04:13 +00001544 }
bellard6d5e2162004-09-30 22:04:13 +00001545 if (err)
1546 goto sigsegv;
1547
1548 /* 3. signal handler back-trampoline and parameters */
pbrook53a59602006-03-25 19:31:22 +00001549 env->regwptr[UREG_FP] = h2g(sf);
bellard6d5e2162004-09-30 22:04:13 +00001550 env->regwptr[UREG_I0] = sig;
pbrook53a59602006-03-25 19:31:22 +00001551 env->regwptr[UREG_I1] = h2g(&sf->info);
1552 env->regwptr[UREG_I2] = h2g(&sf->info);
bellard6d5e2162004-09-30 22:04:13 +00001553
1554 /* 4. signal handler */
1555 env->pc = (unsigned long) ka->sa._sa_handler;
1556 env->npc = (env->pc + 4);
1557 /* 5. return to kernel instructions */
1558 if (ka->sa.sa_restorer)
1559 env->regwptr[UREG_I7] = (unsigned long)ka->sa.sa_restorer;
1560 else {
pbrook53a59602006-03-25 19:31:22 +00001561 env->regwptr[UREG_I7] = h2g(&(sf->insns[0]) - 2);
bellard6d5e2162004-09-30 22:04:13 +00001562
1563 /* mov __NR_sigreturn, %g1 */
1564 err |= __put_user(0x821020d8, &sf->insns[0]);
1565
1566 /* t 0x10 */
1567 err |= __put_user(0x91d02010, &sf->insns[1]);
1568 if (err)
1569 goto sigsegv;
1570
1571 /* Flush instruction space. */
1572 //flush_sig_insns(current->mm, (unsigned long) &(sf->insns[0]));
bellard80a9d032005-01-03 23:31:27 +00001573 // tb_flush(env);
bellard6d5e2162004-09-30 22:04:13 +00001574 }
1575 return;
1576
bellard80a9d032005-01-03 23:31:27 +00001577 //sigill_and_return:
bellard6d5e2162004-09-30 22:04:13 +00001578 force_sig(TARGET_SIGILL);
1579sigsegv:
bellarde80cfcf2004-12-19 23:18:01 +00001580 //fprintf(stderr, "force_sig\n");
bellard6d5e2162004-09-30 22:04:13 +00001581 force_sig(TARGET_SIGSEGV);
1582}
1583static inline int
bellard74ccb342006-07-18 21:23:34 +00001584restore_fpu_state(CPUState *env, qemu_siginfo_fpu_t *fpu)
bellard6d5e2162004-09-30 22:04:13 +00001585{
1586 int err;
1587#if 0
1588#ifdef CONFIG_SMP
1589 if (current->flags & PF_USEDFPU)
1590 regs->psr &= ~PSR_EF;
1591#else
1592 if (current == last_task_used_math) {
1593 last_task_used_math = 0;
1594 regs->psr &= ~PSR_EF;
1595 }
1596#endif
1597 current->used_math = 1;
1598 current->flags &= ~PF_USEDFPU;
1599#endif
1600#if 0
1601 if (verify_area (VERIFY_READ, fpu, sizeof(*fpu)))
1602 return -EFAULT;
1603#endif
1604
bellardfafffae2006-10-28 12:09:16 +00001605#if 0
1606 /* XXX: incorrect */
bellard6d5e2162004-09-30 22:04:13 +00001607 err = __copy_from_user(&env->fpr[0], &fpu->si_float_regs[0],
1608 (sizeof(unsigned long) * 32));
bellardfafffae2006-10-28 12:09:16 +00001609#endif
bellard6d5e2162004-09-30 22:04:13 +00001610 err |= __get_user(env->fsr, &fpu->si_fsr);
1611#if 0
1612 err |= __get_user(current->thread.fpqdepth, &fpu->si_fpqdepth);
1613 if (current->thread.fpqdepth != 0)
1614 err |= __copy_from_user(&current->thread.fpqueue[0],
1615 &fpu->si_fpqueue[0],
1616 ((sizeof(unsigned long) +
1617 (sizeof(unsigned long *)))*16));
1618#endif
1619 return err;
1620}
1621
1622
ths5fafdf22007-09-16 21:08:06 +00001623static void setup_rt_frame(int sig, struct emulated_sigaction *ka,
bellard6d5e2162004-09-30 22:04:13 +00001624 target_siginfo_t *info,
1625 target_sigset_t *set, CPUState *env)
1626{
1627 fprintf(stderr, "setup_rt_frame: not implemented\n");
1628}
1629
1630long do_sigreturn(CPUState *env)
1631{
1632 struct target_signal_frame *sf;
bellarde80cfcf2004-12-19 23:18:01 +00001633 uint32_t up_psr, pc, npc;
bellard6d5e2162004-09-30 22:04:13 +00001634 target_sigset_t set;
bellarde80cfcf2004-12-19 23:18:01 +00001635 sigset_t host_set;
blueswir1992f48a2007-10-14 16:27:31 +00001636 abi_ulong fpu_save;
bellarde80cfcf2004-12-19 23:18:01 +00001637 int err, i;
bellard6d5e2162004-09-30 22:04:13 +00001638
pbrook53a59602006-03-25 19:31:22 +00001639 sf = (struct target_signal_frame *)g2h(env->regwptr[UREG_FP]);
bellard80a9d032005-01-03 23:31:27 +00001640#if 0
bellarde80cfcf2004-12-19 23:18:01 +00001641 fprintf(stderr, "sigreturn\n");
1642 fprintf(stderr, "sf: %x pc %x fp %x sp %x\n", sf, env->pc, env->regwptr[UREG_FP], env->regwptr[UREG_SP]);
bellard80a9d032005-01-03 23:31:27 +00001643#endif
bellarde80cfcf2004-12-19 23:18:01 +00001644 //cpu_dump_state(env, stderr, fprintf, 0);
bellard6d5e2162004-09-30 22:04:13 +00001645
1646 /* 1. Make sure we are not getting garbage from the user */
1647#if 0
1648 if (verify_area (VERIFY_READ, sf, sizeof (*sf)))
1649 goto segv_and_exit;
1650#endif
1651
1652 if (((uint) sf) & 3)
1653 goto segv_and_exit;
1654
1655 err = __get_user(pc, &sf->info.si_regs.pc);
1656 err |= __get_user(npc, &sf->info.si_regs.npc);
1657
bellard6d5e2162004-09-30 22:04:13 +00001658 if ((pc | npc) & 3)
1659 goto segv_and_exit;
1660
1661 /* 2. Restore the state */
bellarde80cfcf2004-12-19 23:18:01 +00001662 err |= __get_user(up_psr, &sf->info.si_regs.psr);
1663
bellard6d5e2162004-09-30 22:04:13 +00001664 /* User can only change condition codes and FPU enabling in %psr. */
bellarda315a142005-01-30 22:59:18 +00001665 env->psr = (up_psr & (PSR_ICC /* | PSR_EF */))
1666 | (env->psr & ~(PSR_ICC /* | PSR_EF */));
1667
1668 env->pc = pc;
1669 env->npc = npc;
bellarde80cfcf2004-12-19 23:18:01 +00001670 err |= __get_user(env->y, &sf->info.si_regs.y);
bellarda315a142005-01-30 22:59:18 +00001671 for (i=0; i < 8; i++) {
bellarde80cfcf2004-12-19 23:18:01 +00001672 err |= __get_user(env->gregs[i], &sf->info.si_regs.u_regs[i]);
1673 }
bellarda315a142005-01-30 22:59:18 +00001674 for (i=0; i < 8; i++) {
bellarde80cfcf2004-12-19 23:18:01 +00001675 err |= __get_user(env->regwptr[i + UREG_I0], &sf->info.si_regs.u_regs[i+8]);
1676 }
bellard6d5e2162004-09-30 22:04:13 +00001677
blueswir1992f48a2007-10-14 16:27:31 +00001678 err |= __get_user(fpu_save, (abi_ulong *)&sf->fpu_save);
bellard6d5e2162004-09-30 22:04:13 +00001679
bellarde80cfcf2004-12-19 23:18:01 +00001680 //if (fpu_save)
1681 // err |= restore_fpu_state(env, fpu_save);
bellard6d5e2162004-09-30 22:04:13 +00001682
1683 /* This is pretty much atomic, no amount locking would prevent
1684 * the races which exist anyways.
1685 */
1686 err |= __get_user(set.sig[0], &sf->info.si_mask);
bellarde80cfcf2004-12-19 23:18:01 +00001687 for(i = 1; i < TARGET_NSIG_WORDS; i++) {
1688 err |= (__get_user(set.sig[i], &sf->extramask[i - 1]));
1689 }
1690
1691 target_to_host_sigset_internal(&host_set, &set);
1692 sigprocmask(SIG_SETMASK, &host_set, NULL);
bellard6d5e2162004-09-30 22:04:13 +00001693
1694 if (err)
1695 goto segv_and_exit;
1696
bellard6d5e2162004-09-30 22:04:13 +00001697 return env->regwptr[0];
1698
1699segv_and_exit:
1700 force_sig(TARGET_SIGSEGV);
1701}
1702
1703long do_rt_sigreturn(CPUState *env)
1704{
1705 fprintf(stderr, "do_rt_sigreturn: not implemented\n");
1706 return -ENOSYS;
1707}
1708
blueswir15bfb56b2007-10-05 17:01:51 +00001709#ifdef TARGET_SPARC64
1710#define MC_TSTATE 0
1711#define MC_PC 1
1712#define MC_NPC 2
1713#define MC_Y 3
1714#define MC_G1 4
1715#define MC_G2 5
1716#define MC_G3 6
1717#define MC_G4 7
1718#define MC_G5 8
1719#define MC_G6 9
1720#define MC_G7 10
1721#define MC_O0 11
1722#define MC_O1 12
1723#define MC_O2 13
1724#define MC_O3 14
1725#define MC_O4 15
1726#define MC_O5 16
1727#define MC_O6 17
1728#define MC_O7 18
1729#define MC_NGREG 19
1730
blueswir1992f48a2007-10-14 16:27:31 +00001731typedef abi_ulong target_mc_greg_t;
blueswir15bfb56b2007-10-05 17:01:51 +00001732typedef target_mc_greg_t target_mc_gregset_t[MC_NGREG];
1733
1734struct target_mc_fq {
blueswir1992f48a2007-10-14 16:27:31 +00001735 abi_ulong *mcfq_addr;
blueswir15bfb56b2007-10-05 17:01:51 +00001736 uint32_t mcfq_insn;
1737};
1738
1739struct target_mc_fpu {
1740 union {
1741 uint32_t sregs[32];
1742 uint64_t dregs[32];
1743 //uint128_t qregs[16];
1744 } mcfpu_fregs;
blueswir1992f48a2007-10-14 16:27:31 +00001745 abi_ulong mcfpu_fsr;
1746 abi_ulong mcfpu_fprs;
1747 abi_ulong mcfpu_gsr;
blueswir15bfb56b2007-10-05 17:01:51 +00001748 struct target_mc_fq *mcfpu_fq;
1749 unsigned char mcfpu_qcnt;
1750 unsigned char mcfpu_qentsz;
1751 unsigned char mcfpu_enab;
1752};
1753typedef struct target_mc_fpu target_mc_fpu_t;
1754
1755typedef struct {
1756 target_mc_gregset_t mc_gregs;
1757 target_mc_greg_t mc_fp;
1758 target_mc_greg_t mc_i7;
1759 target_mc_fpu_t mc_fpregs;
1760} target_mcontext_t;
1761
1762struct target_ucontext {
1763 struct target_ucontext *uc_link;
blueswir1992f48a2007-10-14 16:27:31 +00001764 abi_ulong uc_flags;
blueswir15bfb56b2007-10-05 17:01:51 +00001765 target_sigset_t uc_sigmask;
1766 target_mcontext_t uc_mcontext;
1767};
1768
1769/* A V9 register window */
1770struct target_reg_window {
blueswir1992f48a2007-10-14 16:27:31 +00001771 abi_ulong locals[8];
1772 abi_ulong ins[8];
blueswir15bfb56b2007-10-05 17:01:51 +00001773};
1774
1775#define TARGET_STACK_BIAS 2047
1776
1777/* {set, get}context() needed for 64-bit SparcLinux userland. */
1778void sparc64_set_context(CPUSPARCState *env)
1779{
1780 struct target_ucontext *ucp = (struct target_ucontext *)
1781 env->regwptr[UREG_I0];
1782 target_mc_gregset_t *grp;
blueswir1992f48a2007-10-14 16:27:31 +00001783 abi_ulong pc, npc, tstate;
1784 abi_ulong fp, i7;
blueswir15bfb56b2007-10-05 17:01:51 +00001785 unsigned char fenab;
1786 int err;
1787 unsigned int i;
blueswir1992f48a2007-10-14 16:27:31 +00001788 abi_ulong *src, *dst;
blueswir15bfb56b2007-10-05 17:01:51 +00001789
1790 grp = &ucp->uc_mcontext.mc_gregs;
1791 err = get_user(pc, &((*grp)[MC_PC]));
1792 err |= get_user(npc, &((*grp)[MC_NPC]));
1793 if (err || ((pc | npc) & 3))
1794 goto do_sigsegv;
1795 if (env->regwptr[UREG_I1]) {
1796 target_sigset_t target_set;
1797 sigset_t set;
1798
1799 if (TARGET_NSIG_WORDS == 1) {
1800 if (get_user(target_set.sig[0], &ucp->uc_sigmask.sig[0]))
1801 goto do_sigsegv;
1802 } else {
1803 src = &ucp->uc_sigmask;
1804 dst = &target_set;
blueswir1992f48a2007-10-14 16:27:31 +00001805 for (i = 0; i < sizeof(target_sigset_t) / sizeof(abi_ulong);
blueswir15bfb56b2007-10-05 17:01:51 +00001806 i++, dst++, src++)
1807 err |= get_user(dst, src);
1808 if (err)
1809 goto do_sigsegv;
1810 }
1811 target_to_host_sigset_internal(&set, &target_set);
1812 sigprocmask(SIG_SETMASK, &set, NULL);
1813 }
1814 env->pc = pc;
1815 env->npc = npc;
1816 err |= get_user(env->y, &((*grp)[MC_Y]));
1817 err |= get_user(tstate, &((*grp)[MC_TSTATE]));
1818 env->asi = (tstate >> 24) & 0xff;
1819 PUT_CCR(env, tstate >> 32);
1820 PUT_CWP64(env, tstate & 0x1f);
1821 err |= get_user(env->gregs[1], (&(*grp)[MC_G1]));
1822 err |= get_user(env->gregs[2], (&(*grp)[MC_G2]));
1823 err |= get_user(env->gregs[3], (&(*grp)[MC_G3]));
1824 err |= get_user(env->gregs[4], (&(*grp)[MC_G4]));
1825 err |= get_user(env->gregs[5], (&(*grp)[MC_G5]));
1826 err |= get_user(env->gregs[6], (&(*grp)[MC_G6]));
1827 err |= get_user(env->gregs[7], (&(*grp)[MC_G7]));
1828 err |= get_user(env->regwptr[UREG_I0], (&(*grp)[MC_O0]));
1829 err |= get_user(env->regwptr[UREG_I1], (&(*grp)[MC_O1]));
1830 err |= get_user(env->regwptr[UREG_I2], (&(*grp)[MC_O2]));
1831 err |= get_user(env->regwptr[UREG_I3], (&(*grp)[MC_O3]));
1832 err |= get_user(env->regwptr[UREG_I4], (&(*grp)[MC_O4]));
1833 err |= get_user(env->regwptr[UREG_I5], (&(*grp)[MC_O5]));
1834 err |= get_user(env->regwptr[UREG_I6], (&(*grp)[MC_O6]));
1835 err |= get_user(env->regwptr[UREG_I7], (&(*grp)[MC_O7]));
1836
1837 err |= get_user(fp, &(ucp->uc_mcontext.mc_fp));
1838 err |= get_user(i7, &(ucp->uc_mcontext.mc_i7));
1839 err |= put_user(fp,
1840 (&(((struct target_reg_window *)(TARGET_STACK_BIAS+env->regwptr[UREG_I6]))->ins[6])));
1841 err |= put_user(i7,
1842 (&(((struct target_reg_window *)(TARGET_STACK_BIAS+env->regwptr[UREG_I6]))->ins[7])));
1843
1844 err |= get_user(fenab, &(ucp->uc_mcontext.mc_fpregs.mcfpu_enab));
1845 err |= get_user(env->fprs, &(ucp->uc_mcontext.mc_fpregs.mcfpu_fprs));
1846 src = &(ucp->uc_mcontext.mc_fpregs.mcfpu_fregs);
1847 dst = &env->fpr;
1848 for (i = 0; i < 64; i++, dst++, src++)
1849 err |= get_user(dst, src);
1850 err |= get_user(env->fsr,
1851 &(ucp->uc_mcontext.mc_fpregs.mcfpu_fsr));
1852 err |= get_user(env->gsr,
1853 &(ucp->uc_mcontext.mc_fpregs.mcfpu_gsr));
1854 if (err)
1855 goto do_sigsegv;
1856
1857 return;
1858 do_sigsegv:
1859 force_sig(SIGSEGV);
1860}
1861
1862void sparc64_get_context(CPUSPARCState *env)
1863{
1864 struct target_ucontext *ucp = (struct target_ucontext *)
1865 env->regwptr[UREG_I0];
1866 target_mc_gregset_t *grp;
1867 target_mcontext_t *mcp;
blueswir1992f48a2007-10-14 16:27:31 +00001868 abi_ulong fp, i7;
blueswir15bfb56b2007-10-05 17:01:51 +00001869 int err;
1870 unsigned int i;
blueswir1992f48a2007-10-14 16:27:31 +00001871 abi_ulong *src, *dst;
blueswir15bfb56b2007-10-05 17:01:51 +00001872 target_sigset_t target_set;
1873 sigset_t set;
1874
1875 mcp = &ucp->uc_mcontext;
1876 grp = &mcp->mc_gregs;
1877
1878 /* Skip over the trap instruction, first. */
1879 env->pc = env->npc;
1880 env->npc += 4;
1881
1882 err = 0;
1883
1884 sigprocmask(0, NULL, &set);
1885 host_to_target_sigset_internal(&target_set, &set);
1886 if (TARGET_NSIG_WORDS == 1)
1887 err |= put_user(target_set.sig[0],
blueswir1992f48a2007-10-14 16:27:31 +00001888 (abi_ulong *)&ucp->uc_sigmask);
blueswir15bfb56b2007-10-05 17:01:51 +00001889 else {
1890 src = &target_set;
1891 dst = &ucp->uc_sigmask;
blueswir1992f48a2007-10-14 16:27:31 +00001892 for (i = 0; i < sizeof(target_sigset_t) / sizeof(abi_ulong);
blueswir15bfb56b2007-10-05 17:01:51 +00001893 i++, dst++, src++)
1894 err |= put_user(src, dst);
1895 if (err)
1896 goto do_sigsegv;
1897 }
1898
1899 err |= put_user(env->tstate, &((*grp)[MC_TSTATE]));
1900 err |= put_user(env->pc, &((*grp)[MC_PC]));
1901 err |= put_user(env->npc, &((*grp)[MC_NPC]));
1902 err |= put_user(env->y, &((*grp)[MC_Y]));
1903 err |= put_user(env->gregs[1], &((*grp)[MC_G1]));
1904 err |= put_user(env->gregs[2], &((*grp)[MC_G2]));
1905 err |= put_user(env->gregs[3], &((*grp)[MC_G3]));
1906 err |= put_user(env->gregs[4], &((*grp)[MC_G4]));
1907 err |= put_user(env->gregs[5], &((*grp)[MC_G5]));
1908 err |= put_user(env->gregs[6], &((*grp)[MC_G6]));
1909 err |= put_user(env->gregs[7], &((*grp)[MC_G7]));
1910 err |= put_user(env->regwptr[UREG_I0], &((*grp)[MC_O0]));
1911 err |= put_user(env->regwptr[UREG_I1], &((*grp)[MC_O1]));
1912 err |= put_user(env->regwptr[UREG_I2], &((*grp)[MC_O2]));
1913 err |= put_user(env->regwptr[UREG_I3], &((*grp)[MC_O3]));
1914 err |= put_user(env->regwptr[UREG_I4], &((*grp)[MC_O4]));
1915 err |= put_user(env->regwptr[UREG_I5], &((*grp)[MC_O5]));
1916 err |= put_user(env->regwptr[UREG_I6], &((*grp)[MC_O6]));
1917 err |= put_user(env->regwptr[UREG_I7], &((*grp)[MC_O7]));
1918
1919 err |= get_user(fp,
1920 (&(((struct target_reg_window *)(TARGET_STACK_BIAS+env->regwptr[UREG_I6]))->ins[6])));
1921 err |= get_user(i7,
1922 (&(((struct target_reg_window *)(TARGET_STACK_BIAS+env->regwptr[UREG_I6]))->ins[7])));
1923 err |= put_user(fp, &(mcp->mc_fp));
1924 err |= put_user(i7, &(mcp->mc_i7));
1925
1926 src = &env->fpr;
1927 dst = &(ucp->uc_mcontext.mc_fpregs.mcfpu_fregs);
1928 for (i = 0; i < 64; i++, dst++, src++)
1929 err |= put_user(src, dst);
1930 err |= put_user(env->fsr, &(mcp->mc_fpregs.mcfpu_fsr));
1931 err |= put_user(env->gsr, &(mcp->mc_fpregs.mcfpu_gsr));
1932 err |= put_user(env->fprs, &(mcp->mc_fpregs.mcfpu_fprs));
1933
1934 if (err)
1935 goto do_sigsegv;
1936
1937 return;
1938 do_sigsegv:
1939 force_sig(SIGSEGV);
1940}
1941#endif
ths540635b2007-09-30 01:58:33 +00001942#elif defined(TARGET_MIPS64)
1943
1944# warning signal handling not implemented
1945
1946static void setup_frame(int sig, struct emulated_sigaction *ka,
1947 target_sigset_t *set, CPUState *env)
1948{
1949 fprintf(stderr, "setup_frame: not implemented\n");
1950}
1951
1952static void setup_rt_frame(int sig, struct emulated_sigaction *ka,
1953 target_siginfo_t *info,
1954 target_sigset_t *set, CPUState *env)
1955{
1956 fprintf(stderr, "setup_rt_frame: not implemented\n");
1957}
1958
1959long do_sigreturn(CPUState *env)
1960{
1961 fprintf(stderr, "do_sigreturn: not implemented\n");
1962 return -ENOSYS;
1963}
1964
1965long do_rt_sigreturn(CPUState *env)
1966{
1967 fprintf(stderr, "do_rt_sigreturn: not implemented\n");
1968 return -ENOSYS;
1969}
1970
1971#elif defined(TARGET_MIPSN32)
1972
1973# warning signal handling not implemented
1974
1975static void setup_frame(int sig, struct emulated_sigaction *ka,
1976 target_sigset_t *set, CPUState *env)
1977{
1978 fprintf(stderr, "setup_frame: not implemented\n");
1979}
1980
1981static void setup_rt_frame(int sig, struct emulated_sigaction *ka,
1982 target_siginfo_t *info,
1983 target_sigset_t *set, CPUState *env)
1984{
1985 fprintf(stderr, "setup_rt_frame: not implemented\n");
1986}
1987
1988long do_sigreturn(CPUState *env)
1989{
1990 fprintf(stderr, "do_sigreturn: not implemented\n");
1991 return -ENOSYS;
1992}
1993
1994long do_rt_sigreturn(CPUState *env)
1995{
1996 fprintf(stderr, "do_rt_sigreturn: not implemented\n");
1997 return -ENOSYS;
1998}
1999
bellard106ec872006-06-27 21:08:10 +00002000#elif defined(TARGET_MIPS)
2001
2002struct target_sigcontext {
2003 uint32_t sc_regmask; /* Unused */
2004 uint32_t sc_status;
2005 uint64_t sc_pc;
2006 uint64_t sc_regs[32];
2007 uint64_t sc_fpregs[32];
2008 uint32_t sc_ownedfp; /* Unused */
2009 uint32_t sc_fpc_csr;
2010 uint32_t sc_fpc_eir; /* Unused */
2011 uint32_t sc_used_math;
2012 uint32_t sc_dsp; /* dsp status, was sc_ssflags */
2013 uint64_t sc_mdhi;
2014 uint64_t sc_mdlo;
2015 target_ulong sc_hi1; /* Was sc_cause */
2016 target_ulong sc_lo1; /* Was sc_badvaddr */
2017 target_ulong sc_hi2; /* Was sc_sigset[4] */
2018 target_ulong sc_lo2;
2019 target_ulong sc_hi3;
2020 target_ulong sc_lo3;
2021};
2022
2023struct sigframe {
2024 uint32_t sf_ass[4]; /* argument save space for o32 */
2025 uint32_t sf_code[2]; /* signal trampoline */
2026 struct target_sigcontext sf_sc;
2027 target_sigset_t sf_mask;
2028};
2029
2030/* Install trampoline to jump back from signal handler */
2031static inline int install_sigtramp(unsigned int *tramp, unsigned int syscall)
2032{
2033 int err;
2034
2035 /*
2036 * Set up the return code ...
2037 *
2038 * li v0, __NR__foo_sigreturn
2039 * syscall
2040 */
2041
2042 err = __put_user(0x24020000 + syscall, tramp + 0);
2043 err |= __put_user(0x0000000c , tramp + 1);
2044 /* flush_cache_sigtramp((unsigned long) tramp); */
2045 return err;
2046}
2047
2048static inline int
2049setup_sigcontext(CPUState *regs, struct target_sigcontext *sc)
2050{
2051 int err = 0;
2052
thsead93602007-09-06 00:18:15 +00002053 err |= __put_user(regs->PC[regs->current_tc], &sc->sc_pc);
bellard106ec872006-06-27 21:08:10 +00002054
thsead93602007-09-06 00:18:15 +00002055#define save_gp_reg(i) do { \
2056 err |= __put_user(regs->gpr[i][regs->current_tc], &sc->sc_regs[i]); \
bellard106ec872006-06-27 21:08:10 +00002057 } while(0)
2058 __put_user(0, &sc->sc_regs[0]); save_gp_reg(1); save_gp_reg(2);
2059 save_gp_reg(3); save_gp_reg(4); save_gp_reg(5); save_gp_reg(6);
2060 save_gp_reg(7); save_gp_reg(8); save_gp_reg(9); save_gp_reg(10);
2061 save_gp_reg(11); save_gp_reg(12); save_gp_reg(13); save_gp_reg(14);
2062 save_gp_reg(15); save_gp_reg(16); save_gp_reg(17); save_gp_reg(18);
2063 save_gp_reg(19); save_gp_reg(20); save_gp_reg(21); save_gp_reg(22);
2064 save_gp_reg(23); save_gp_reg(24); save_gp_reg(25); save_gp_reg(26);
2065 save_gp_reg(27); save_gp_reg(28); save_gp_reg(29); save_gp_reg(30);
2066 save_gp_reg(31);
ths388bb212007-05-13 13:58:00 +00002067#undef save_gp_reg
bellard106ec872006-06-27 21:08:10 +00002068
thsead93602007-09-06 00:18:15 +00002069 err |= __put_user(regs->HI[0][regs->current_tc], &sc->sc_mdhi);
2070 err |= __put_user(regs->LO[0][regs->current_tc], &sc->sc_mdlo);
bellard106ec872006-06-27 21:08:10 +00002071
2072 /* Not used yet, but might be useful if we ever have DSP suppport */
2073#if 0
2074 if (cpu_has_dsp) {
2075 err |= __put_user(mfhi1(), &sc->sc_hi1);
2076 err |= __put_user(mflo1(), &sc->sc_lo1);
2077 err |= __put_user(mfhi2(), &sc->sc_hi2);
2078 err |= __put_user(mflo2(), &sc->sc_lo2);
2079 err |= __put_user(mfhi3(), &sc->sc_hi3);
2080 err |= __put_user(mflo3(), &sc->sc_lo3);
2081 err |= __put_user(rddsp(DSP_MASK), &sc->sc_dsp);
2082 }
2083 /* same with 64 bit */
ths388bb212007-05-13 13:58:00 +00002084#ifdef CONFIG_64BIT
bellard106ec872006-06-27 21:08:10 +00002085 err |= __put_user(regs->hi, &sc->sc_hi[0]);
2086 err |= __put_user(regs->lo, &sc->sc_lo[0]);
2087 if (cpu_has_dsp) {
2088 err |= __put_user(mfhi1(), &sc->sc_hi[1]);
2089 err |= __put_user(mflo1(), &sc->sc_lo[1]);
2090 err |= __put_user(mfhi2(), &sc->sc_hi[2]);
2091 err |= __put_user(mflo2(), &sc->sc_lo[2]);
2092 err |= __put_user(mfhi3(), &sc->sc_hi[3]);
2093 err |= __put_user(mflo3(), &sc->sc_lo[3]);
2094 err |= __put_user(rddsp(DSP_MASK), &sc->sc_dsp);
2095 }
ths388bb212007-05-13 13:58:00 +00002096#endif
2097#endif
bellard106ec872006-06-27 21:08:10 +00002098
ths388bb212007-05-13 13:58:00 +00002099#if 0
bellard106ec872006-06-27 21:08:10 +00002100 err |= __put_user(!!used_math(), &sc->sc_used_math);
2101
2102 if (!used_math())
2103 goto out;
2104
2105 /*
2106 * Save FPU state to signal context. Signal handler will "inherit"
2107 * current FPU state.
2108 */
2109 preempt_disable();
2110
2111 if (!is_fpu_owner()) {
2112 own_fpu();
2113 restore_fp(current);
2114 }
2115 err |= save_fp_context(sc);
2116
2117 preempt_enable();
2118 out:
2119#endif
2120 return err;
2121}
2122
2123static inline int
2124restore_sigcontext(CPUState *regs, struct target_sigcontext *sc)
2125{
2126 int err = 0;
2127
2128 err |= __get_user(regs->CP0_EPC, &sc->sc_pc);
2129
thsead93602007-09-06 00:18:15 +00002130 err |= __get_user(regs->HI[0][regs->current_tc], &sc->sc_mdhi);
2131 err |= __get_user(regs->LO[0][regs->current_tc], &sc->sc_mdlo);
bellard106ec872006-06-27 21:08:10 +00002132
thsead93602007-09-06 00:18:15 +00002133#define restore_gp_reg(i) do { \
2134 err |= __get_user(regs->gpr[i][regs->current_tc], &sc->sc_regs[i]); \
bellard106ec872006-06-27 21:08:10 +00002135 } while(0)
2136 restore_gp_reg( 1); restore_gp_reg( 2); restore_gp_reg( 3);
2137 restore_gp_reg( 4); restore_gp_reg( 5); restore_gp_reg( 6);
2138 restore_gp_reg( 7); restore_gp_reg( 8); restore_gp_reg( 9);
2139 restore_gp_reg(10); restore_gp_reg(11); restore_gp_reg(12);
2140 restore_gp_reg(13); restore_gp_reg(14); restore_gp_reg(15);
2141 restore_gp_reg(16); restore_gp_reg(17); restore_gp_reg(18);
2142 restore_gp_reg(19); restore_gp_reg(20); restore_gp_reg(21);
2143 restore_gp_reg(22); restore_gp_reg(23); restore_gp_reg(24);
2144 restore_gp_reg(25); restore_gp_reg(26); restore_gp_reg(27);
2145 restore_gp_reg(28); restore_gp_reg(29); restore_gp_reg(30);
2146 restore_gp_reg(31);
ths388bb212007-05-13 13:58:00 +00002147#undef restore_gp_reg
bellard106ec872006-06-27 21:08:10 +00002148
2149#if 0
2150 if (cpu_has_dsp) {
2151 err |= __get_user(treg, &sc->sc_hi1); mthi1(treg);
2152 err |= __get_user(treg, &sc->sc_lo1); mtlo1(treg);
2153 err |= __get_user(treg, &sc->sc_hi2); mthi2(treg);
2154 err |= __get_user(treg, &sc->sc_lo2); mtlo2(treg);
2155 err |= __get_user(treg, &sc->sc_hi3); mthi3(treg);
2156 err |= __get_user(treg, &sc->sc_lo3); mtlo3(treg);
2157 err |= __get_user(treg, &sc->sc_dsp); wrdsp(treg, DSP_MASK);
2158 }
ths388bb212007-05-13 13:58:00 +00002159#ifdef CONFIG_64BIT
bellard106ec872006-06-27 21:08:10 +00002160 err |= __get_user(regs->hi, &sc->sc_hi[0]);
2161 err |= __get_user(regs->lo, &sc->sc_lo[0]);
2162 if (cpu_has_dsp) {
2163 err |= __get_user(treg, &sc->sc_hi[1]); mthi1(treg);
2164 err |= __get_user(treg, &sc->sc_lo[1]); mthi1(treg);
2165 err |= __get_user(treg, &sc->sc_hi[2]); mthi2(treg);
2166 err |= __get_user(treg, &sc->sc_lo[2]); mthi2(treg);
2167 err |= __get_user(treg, &sc->sc_hi[3]); mthi3(treg);
2168 err |= __get_user(treg, &sc->sc_lo[3]); mthi3(treg);
2169 err |= __get_user(treg, &sc->sc_dsp); wrdsp(treg, DSP_MASK);
2170 }
ths388bb212007-05-13 13:58:00 +00002171#endif
bellard106ec872006-06-27 21:08:10 +00002172
2173 err |= __get_user(used_math, &sc->sc_used_math);
2174 conditional_used_math(used_math);
2175
2176 preempt_disable();
2177
2178 if (used_math()) {
2179 /* restore fpu context if we have used it before */
2180 own_fpu();
2181 err |= restore_fp_context(sc);
2182 } else {
2183 /* signal handler may have used FPU. Give it up. */
2184 lose_fpu();
2185 }
2186
2187 preempt_enable();
2188#endif
2189 return err;
2190}
2191/*
2192 * Determine which stack to use..
2193 */
2194static inline void *
2195get_sigframe(struct emulated_sigaction *ka, CPUState *regs, size_t frame_size)
2196{
2197 unsigned long sp;
2198
2199 /* Default to using normal stack */
thsead93602007-09-06 00:18:15 +00002200 sp = regs->gpr[29][regs->current_tc];
bellard106ec872006-06-27 21:08:10 +00002201
2202 /*
2203 * FPU emulator may have it's own trampoline active just
2204 * above the user stack, 16-bytes before the next lowest
2205 * 16 byte boundary. Try to avoid trashing it.
2206 */
2207 sp -= 32;
2208
bellard106ec872006-06-27 21:08:10 +00002209 /* This is the X/Open sanctioned signal stack switching. */
thsa04e1342007-09-27 13:57:58 +00002210 if ((ka->sa.sa_flags & TARGET_SA_ONSTACK) && (sas_ss_flags (sp) == 0)) {
2211 sp = target_sigaltstack_used.ss_sp + target_sigaltstack_used.ss_size;
2212 }
bellard106ec872006-06-27 21:08:10 +00002213
2214 return g2h((sp - frame_size) & ~7);
2215}
2216
ths5fafdf22007-09-16 21:08:06 +00002217static void setup_frame(int sig, struct emulated_sigaction * ka,
bellard106ec872006-06-27 21:08:10 +00002218 target_sigset_t *set, CPUState *regs)
2219{
2220 struct sigframe *frame;
2221 int i;
2222
2223 frame = get_sigframe(ka, regs, sizeof(*frame));
2224 if (!access_ok(VERIFY_WRITE, frame, sizeof (*frame)))
2225 goto give_sigsegv;
2226
2227 install_sigtramp(frame->sf_code, TARGET_NR_sigreturn);
2228
2229 if(setup_sigcontext(regs, &frame->sf_sc))
2230 goto give_sigsegv;
2231
2232 for(i = 0; i < TARGET_NSIG_WORDS; i++) {
2233 if(__put_user(set->sig[i], &frame->sf_mask.sig[i]))
2234 goto give_sigsegv;
2235 }
2236
2237 /*
2238 * Arguments to signal handler:
2239 *
2240 * a0 = signal number
2241 * a1 = 0 (should be cause)
2242 * a2 = pointer to struct sigcontext
2243 *
2244 * $25 and PC point to the signal handler, $29 points to the
2245 * struct sigframe.
2246 */
thsead93602007-09-06 00:18:15 +00002247 regs->gpr[ 4][regs->current_tc] = sig;
2248 regs->gpr[ 5][regs->current_tc] = 0;
2249 regs->gpr[ 6][regs->current_tc] = h2g(&frame->sf_sc);
2250 regs->gpr[29][regs->current_tc] = h2g(frame);
2251 regs->gpr[31][regs->current_tc] = h2g(frame->sf_code);
bellard106ec872006-06-27 21:08:10 +00002252 /* The original kernel code sets CP0_EPC to the handler
2253 * since it returns to userland using eret
2254 * we cannot do this here, and we must set PC directly */
thsead93602007-09-06 00:18:15 +00002255 regs->PC[regs->current_tc] = regs->gpr[25][regs->current_tc] = ka->sa._sa_handler;
bellard106ec872006-06-27 21:08:10 +00002256 return;
2257
2258give_sigsegv:
2259 force_sig(TARGET_SIGSEGV/*, current*/);
ths5fafdf22007-09-16 21:08:06 +00002260 return;
bellard106ec872006-06-27 21:08:10 +00002261}
2262
2263long do_sigreturn(CPUState *regs)
2264{
ths388bb212007-05-13 13:58:00 +00002265 struct sigframe *frame;
2266 sigset_t blocked;
2267 target_sigset_t target_set;
2268 int i;
bellard106ec872006-06-27 21:08:10 +00002269
2270#if defined(DEBUG_SIGNAL)
ths388bb212007-05-13 13:58:00 +00002271 fprintf(stderr, "do_sigreturn\n");
bellard106ec872006-06-27 21:08:10 +00002272#endif
thsead93602007-09-06 00:18:15 +00002273 frame = (struct sigframe *) regs->gpr[29][regs->current_tc];
ths388bb212007-05-13 13:58:00 +00002274 if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
bellard106ec872006-06-27 21:08:10 +00002275 goto badframe;
2276
ths388bb212007-05-13 13:58:00 +00002277 for(i = 0; i < TARGET_NSIG_WORDS; i++) {
bellard106ec872006-06-27 21:08:10 +00002278 if(__get_user(target_set.sig[i], &frame->sf_mask.sig[i]))
2279 goto badframe;
ths388bb212007-05-13 13:58:00 +00002280 }
bellard106ec872006-06-27 21:08:10 +00002281
ths388bb212007-05-13 13:58:00 +00002282 target_to_host_sigset_internal(&blocked, &target_set);
2283 sigprocmask(SIG_SETMASK, &blocked, NULL);
bellard106ec872006-06-27 21:08:10 +00002284
ths388bb212007-05-13 13:58:00 +00002285 if (restore_sigcontext(regs, &frame->sf_sc))
bellard106ec872006-06-27 21:08:10 +00002286 goto badframe;
2287
2288#if 0
ths388bb212007-05-13 13:58:00 +00002289 /*
2290 * Don't let your children do this ...
2291 */
2292 __asm__ __volatile__(
bellard106ec872006-06-27 21:08:10 +00002293 "move\t$29, %0\n\t"
2294 "j\tsyscall_exit"
2295 :/* no outputs */
2296 :"r" (&regs));
ths388bb212007-05-13 13:58:00 +00002297 /* Unreached */
bellard106ec872006-06-27 21:08:10 +00002298#endif
ths3b46e622007-09-17 08:09:54 +00002299
thsead93602007-09-06 00:18:15 +00002300 regs->PC[regs->current_tc] = regs->CP0_EPC;
ths388bb212007-05-13 13:58:00 +00002301 /* I am not sure this is right, but it seems to work
bellard106ec872006-06-27 21:08:10 +00002302 * maybe a problem with nested signals ? */
2303 regs->CP0_EPC = 0;
2304 return 0;
2305
2306badframe:
ths388bb212007-05-13 13:58:00 +00002307 force_sig(TARGET_SIGSEGV/*, current*/);
2308 return 0;
bellard106ec872006-06-27 21:08:10 +00002309}
2310
ths5fafdf22007-09-16 21:08:06 +00002311static void setup_rt_frame(int sig, struct emulated_sigaction *ka,
bellard106ec872006-06-27 21:08:10 +00002312 target_siginfo_t *info,
2313 target_sigset_t *set, CPUState *env)
2314{
2315 fprintf(stderr, "setup_rt_frame: not implemented\n");
2316}
2317
2318long do_rt_sigreturn(CPUState *env)
2319{
2320 fprintf(stderr, "do_rt_sigreturn: not implemented\n");
2321 return -ENOSYS;
2322}
bellard6d5e2162004-09-30 22:04:13 +00002323
bellardb346ff42003-06-15 20:05:50 +00002324#else
2325
2326static void setup_frame(int sig, struct emulated_sigaction *ka,
2327 target_sigset_t *set, CPUState *env)
2328{
2329 fprintf(stderr, "setup_frame: not implemented\n");
2330}
2331
ths5fafdf22007-09-16 21:08:06 +00002332static void setup_rt_frame(int sig, struct emulated_sigaction *ka,
bellardb346ff42003-06-15 20:05:50 +00002333 target_siginfo_t *info,
2334 target_sigset_t *set, CPUState *env)
2335{
2336 fprintf(stderr, "setup_rt_frame: not implemented\n");
2337}
2338
2339long do_sigreturn(CPUState *env)
2340{
2341 fprintf(stderr, "do_sigreturn: not implemented\n");
2342 return -ENOSYS;
2343}
2344
2345long do_rt_sigreturn(CPUState *env)
2346{
2347 fprintf(stderr, "do_rt_sigreturn: not implemented\n");
2348 return -ENOSYS;
2349}
2350
bellard66fb9762003-03-23 01:06:05 +00002351#endif
2352
2353void process_pending_signals(void *cpu_env)
2354{
2355 int sig;
blueswir1992f48a2007-10-14 16:27:31 +00002356 abi_ulong handler;
bellard9de5e442003-03-23 16:49:39 +00002357 sigset_t set, old_set;
2358 target_sigset_t target_old_set;
bellard66fb9762003-03-23 01:06:05 +00002359 struct emulated_sigaction *k;
2360 struct sigqueue *q;
ths3b46e622007-09-17 08:09:54 +00002361
bellard31e31b82003-02-18 22:55:36 +00002362 if (!signal_pending)
2363 return;
2364
bellard66fb9762003-03-23 01:06:05 +00002365 k = sigact_table;
2366 for(sig = 1; sig <= TARGET_NSIG; sig++) {
2367 if (k->pending)
bellard31e31b82003-02-18 22:55:36 +00002368 goto handle_signal;
bellard66fb9762003-03-23 01:06:05 +00002369 k++;
bellard31e31b82003-02-18 22:55:36 +00002370 }
2371 /* if no signal is pending, just return */
2372 signal_pending = 0;
2373 return;
bellard66fb9762003-03-23 01:06:05 +00002374
bellard31e31b82003-02-18 22:55:36 +00002375 handle_signal:
bellard66fb9762003-03-23 01:06:05 +00002376#ifdef DEBUG_SIGNAL
bellardbc8a22c2003-03-30 21:02:40 +00002377 fprintf(stderr, "qemu: process signal %d\n", sig);
bellard66fb9762003-03-23 01:06:05 +00002378#endif
2379 /* dequeue signal */
2380 q = k->first;
2381 k->first = q->next;
2382 if (!k->first)
2383 k->pending = 0;
ths3b46e622007-09-17 08:09:54 +00002384
bellard1fddef42005-04-17 19:16:13 +00002385 sig = gdb_handlesig (cpu_env, sig);
2386 if (!sig) {
2387 fprintf (stderr, "Lost signal\n");
2388 abort();
2389 }
bellard66fb9762003-03-23 01:06:05 +00002390
2391 handler = k->sa._sa_handler;
2392 if (handler == TARGET_SIG_DFL) {
2393 /* default handler : ignore some signal. The other are fatal */
ths5fafdf22007-09-16 21:08:06 +00002394 if (sig != TARGET_SIGCHLD &&
2395 sig != TARGET_SIGURG &&
bellard66fb9762003-03-23 01:06:05 +00002396 sig != TARGET_SIGWINCH) {
2397 force_sig(sig);
2398 }
2399 } else if (handler == TARGET_SIG_IGN) {
2400 /* ignore sig */
2401 } else if (handler == TARGET_SIG_ERR) {
2402 force_sig(sig);
2403 } else {
bellard9de5e442003-03-23 16:49:39 +00002404 /* compute the blocked signals during the handler execution */
2405 target_to_host_sigset(&set, &k->sa.sa_mask);
2406 /* SA_NODEFER indicates that the current signal should not be
2407 blocked during the handler */
2408 if (!(k->sa.sa_flags & TARGET_SA_NODEFER))
2409 sigaddset(&set, target_to_host_signal(sig));
ths3b46e622007-09-17 08:09:54 +00002410
bellard9de5e442003-03-23 16:49:39 +00002411 /* block signals in the handler using Linux */
2412 sigprocmask(SIG_BLOCK, &set, &old_set);
2413 /* save the previous blocked signal state to restore it at the
2414 end of the signal execution (see do_sigreturn) */
bellard92319442004-06-19 16:58:13 +00002415 host_to_target_sigset_internal(&target_old_set, &old_set);
bellard9de5e442003-03-23 16:49:39 +00002416
bellardbc8a22c2003-03-30 21:02:40 +00002417 /* if the CPU is in VM86 mode, we restore the 32 bit values */
j_mayer84409dd2007-04-06 08:56:50 +00002418#if defined(TARGET_I386) && !defined(TARGET_X86_64)
bellardbc8a22c2003-03-30 21:02:40 +00002419 {
2420 CPUX86State *env = cpu_env;
2421 if (env->eflags & VM_MASK)
2422 save_v86_state(env);
2423 }
2424#endif
bellard9de5e442003-03-23 16:49:39 +00002425 /* prepare the stack frame of the virtual CPU */
bellard66fb9762003-03-23 01:06:05 +00002426 if (k->sa.sa_flags & TARGET_SA_SIGINFO)
bellard9de5e442003-03-23 16:49:39 +00002427 setup_rt_frame(sig, k, &q->info, &target_old_set, cpu_env);
bellard66fb9762003-03-23 01:06:05 +00002428 else
bellard9de5e442003-03-23 16:49:39 +00002429 setup_frame(sig, k, &target_old_set, cpu_env);
bellard66fb9762003-03-23 01:06:05 +00002430 if (k->sa.sa_flags & TARGET_SA_RESETHAND)
2431 k->sa._sa_handler = TARGET_SIG_DFL;
bellard31e31b82003-02-18 22:55:36 +00002432 }
bellard66fb9762003-03-23 01:06:05 +00002433 if (q != &k->info)
2434 free_sigqueue(q);
bellard31e31b82003-02-18 22:55:36 +00002435}