aboutsummaryrefslogtreecommitdiff
path: root/sys/compat/ia32/ia32_signal.h
blob: fbb50c4ef1f2e6d4fcff0b5f120b5c6ce9e6a4f5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
/*-
 * SPDX-License-Identifier: BSD-3-Clause
 *
 * Copyright (c) 1999 Marcel Moolenaar
 * Copyright (c) 2003 Peter Wemm
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer 
 *    in this position and unchanged.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 * 3. The name of the author may not be used to endorse or promote products
 *    derived from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

#ifndef	_COMPAT_IA32_IA32_SIGNAL_H
#define	_COMPAT_IA32_IA32_SIGNAL_H

#include <compat/freebsd32/freebsd32_signal.h>

#define	_MC_IA32_HASSEGS	0x1
#define	_MC_IA32_HASBASES	0x2
#define	_MC_IA32_HASFPXSTATE	0x4
#define	_MC_IA32_FLAG_MASK	\
    (_MC_IA32_HASSEGS | _MC_IA32_HASBASES | _MC_IA32_HASFPXSTATE)

struct ia32_mcontext {
	uint32_t	mc_onstack;		/* XXX - sigcontext compat. */
	uint32_t	mc_gs;			/* machine state (struct trapframe) */
	uint32_t	mc_fs;
	uint32_t	mc_es;
	uint32_t	mc_ds;
	uint32_t	mc_edi;
	uint32_t	mc_esi;
	uint32_t	mc_ebp;
	uint32_t	mc_isp;
	uint32_t	mc_ebx;
	uint32_t	mc_edx;
	uint32_t	mc_ecx;
	uint32_t	mc_eax;
	uint32_t	mc_trapno;
	uint32_t	mc_err;
	uint32_t	mc_eip;
	uint32_t	mc_cs;
	uint32_t	mc_eflags;
	uint32_t	mc_esp;
	uint32_t	mc_ss;
	uint32_t	mc_len;			/* sizeof(struct ia32_mcontext) */
	/* We use the same values for fpformat and ownedfp */
	uint32_t	mc_fpformat;
	uint32_t	mc_ownedfp;
	uint32_t	mc_flags;
	/*
	 * See <i386/include/npx.h> for the internals of mc_fpstate[].
	 */
	uint32_t	mc_fpstate[128] __aligned(16);
	uint32_t	mc_fsbase;
	uint32_t	mc_gsbase;
	uint32_t	mc_xfpustate;
	uint32_t	mc_xfpustate_len;
	uint32_t	mc_spare2[4];
};

struct ia32_ucontext {
	sigset_t		uc_sigmask;
	struct ia32_mcontext	uc_mcontext;
	uint32_t		uc_link;
	struct sigaltstack32	uc_stack;
	uint32_t		uc_flags;
	uint32_t		__spare__[4];
};

struct ia32_freebsd4_mcontext {
	uint32_t	mc_onstack;		/* XXX - sigcontext compat. */
	uint32_t	mc_gs;			/* machine state (struct trapframe) */
	uint32_t	mc_fs;
	uint32_t	mc_es;
	uint32_t	mc_ds;
	uint32_t	mc_edi;
	uint32_t	mc_esi;
	uint32_t	mc_ebp;
	uint32_t	mc_isp;
	uint32_t	mc_ebx;
	uint32_t	mc_edx;
	uint32_t	mc_ecx;
	uint32_t	mc_eax;
	uint32_t	mc_trapno;
	uint32_t	mc_err;
	uint32_t	mc_eip;
	uint32_t	mc_cs;
	uint32_t	mc_eflags;
	uint32_t	mc_esp;	
	uint32_t	mc_ss;
	uint32_t	mc_fpregs[28];
	uint32_t	__spare__[17];
};

struct ia32_freebsd4_ucontext {
	sigset_t		uc_sigmask;
	struct ia32_freebsd4_mcontext	uc_mcontext;
	uint32_t		uc_link;
	struct sigaltstack32	uc_stack;
	uint32_t		__spare__[8];
};

struct ia32_osigcontext {
	uint32_t	sc_onstack;
	uint32_t	sc_mask;
	uint32_t	sc_esp;	
	uint32_t	sc_ebp;
	uint32_t	sc_isp;
	uint32_t	sc_eip;
	uint32_t	sc_eflags;
	uint32_t	sc_es;
	uint32_t	sc_ds;
	uint32_t	sc_cs;
	uint32_t	sc_ss;
	uint32_t	sc_edi;
	uint32_t	sc_esi;
	uint32_t	sc_ebx;
	uint32_t	sc_edx;
	uint32_t	sc_ecx;
	uint32_t	sc_eax;
	uint32_t	sc_gs;
	uint32_t	sc_fs;
	uint32_t	sc_trapno;
	uint32_t	sc_err;
};

/*
 * Signal frames, arguments passed to application signal handlers.
 */

struct ia32_freebsd4_sigframe {
	uint32_t		sf_signum;
	uint32_t		sf_siginfo;	/* code or pointer to sf_si */
	uint32_t		sf_ucontext;	/* points to sf_uc */
	uint32_t		sf_addr;	/* undocumented 4th arg */
	uint32_t		sf_ah;		/* action/handler pointer */
	struct ia32_freebsd4_ucontext	sf_uc;		/* = *sf_ucontext */
	struct __siginfo32	sf_si;		/* = *sf_siginfo (SA_SIGINFO case) */
};

struct ia32_sigframe {
	uint32_t		sf_signum;
	uint32_t		sf_siginfo;	/* code or pointer to sf_si */
	uint32_t		sf_ucontext;	/* points to sf_uc */
	uint32_t		sf_addr;	/* undocumented 4th arg */
	uint32_t		sf_ah;		/* action/handler pointer */
	/* Beware, hole due to ucontext being 16 byte aligned! */
	struct ia32_ucontext	sf_uc;		/* = *sf_ucontext */
	struct __siginfo32	sf_si;		/* = *sf_siginfo (SA_SIGINFO case) */
};

struct ia32_osiginfo {
	struct ia32_osigcontext si_sc;
	int			si_signo;
	int			si_code;
	union sigval32		si_value;
};
struct ia32_osigframe {
	int			sf_signum;
	uint32_t		sf_arg2;	/* int or siginfo_t */
	uint32_t		sf_scp;
	uint32_t		sf_addr;
	uint32_t		sf_ah;		/* action/handler pointer */
	struct ia32_osiginfo	sf_siginfo;
};

struct ksiginfo;
struct image_params;
void ia32_sendsig(sig_t, struct ksiginfo *, sigset_t *);
void ia32_setregs(struct thread *td, struct image_params *imgp,
    uintptr_t stack);
int setup_lcall_gate(void);

#endif