]> CyberLeo.Net >> Repos - FreeBSD/releng/8.0.git/blob - sys/amd64/ia32/ia32_signal.c
Adjust to reflect 8.0-RELEASE.
[FreeBSD/releng/8.0.git] / sys / amd64 / ia32 / ia32_signal.c
1 /*-
2  * Copyright (c) 2003 Peter Wemm
3  * Copyright (c) 1982, 1987, 1990 The Regents of the University of California.
4  * All rights reserved.
5  *
6  * This code is derived from software contributed to Berkeley by
7  * William Jolitz.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in the
16  *    documentation and/or other materials provided with the distribution.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  */
33
34 #include <sys/cdefs.h>
35 __FBSDID("$FreeBSD$");
36
37 #include "opt_compat.h"
38
39 #include <sys/param.h>
40 #include <sys/exec.h>
41 #include <sys/fcntl.h>
42 #include <sys/imgact.h>
43 #include <sys/kernel.h>
44 #include <sys/lock.h>
45 #include <sys/malloc.h>
46 #include <sys/mutex.h>
47 #include <sys/mman.h>
48 #include <sys/namei.h>
49 #include <sys/pioctl.h>
50 #include <sys/proc.h>
51 #include <sys/procfs.h>
52 #include <sys/resourcevar.h>
53 #include <sys/systm.h>
54 #include <sys/signalvar.h>
55 #include <sys/stat.h>
56 #include <sys/sx.h>
57 #include <sys/syscall.h>
58 #include <sys/sysctl.h>
59 #include <sys/sysent.h>
60 #include <sys/vnode.h>
61
62 #include <vm/vm.h>
63 #include <vm/vm_kern.h>
64 #include <vm/vm_param.h>
65 #include <vm/pmap.h>
66 #include <vm/vm_map.h>
67 #include <vm/vm_object.h>
68 #include <vm/vm_extern.h>
69
70 #include <compat/freebsd32/freebsd32_signal.h>
71 #include <compat/freebsd32/freebsd32_util.h>
72 #include <compat/freebsd32/freebsd32_proto.h>
73 #include <compat/ia32/ia32_signal.h>
74 #include <machine/psl.h>
75 #include <machine/segments.h>
76 #include <machine/specialreg.h>
77 #include <machine/frame.h>
78 #include <machine/md_var.h>
79 #include <machine/pcb.h>
80 #include <machine/cpufunc.h>
81
82 #ifdef COMPAT_FREEBSD4
83 static void freebsd4_ia32_sendsig(sig_t, ksiginfo_t *, sigset_t *);
84 #endif
85 static void ia32_get_fpcontext(struct thread *td, struct ia32_mcontext *mcp);
86 static int ia32_set_fpcontext(struct thread *td, const struct ia32_mcontext *mcp);
87
88 #define CS_SECURE(cs)           (ISPL(cs) == SEL_UPL)
89 #define EFL_SECURE(ef, oef)     ((((ef) ^ (oef)) & ~PSL_USERCHANGE) == 0)
90
91 static void
92 ia32_get_fpcontext(struct thread *td, struct ia32_mcontext *mcp)
93 {
94
95         mcp->mc_ownedfp = fpugetregs(td, (struct savefpu *)&mcp->mc_fpstate);
96         mcp->mc_fpformat = fpuformat();
97 }
98
99 static int
100 ia32_set_fpcontext(struct thread *td, const struct ia32_mcontext *mcp)
101 {
102
103         if (mcp->mc_fpformat == _MC_FPFMT_NODEV)
104                 return (0);
105         else if (mcp->mc_fpformat != _MC_FPFMT_XMM)
106                 return (EINVAL);
107         else if (mcp->mc_ownedfp == _MC_FPOWNED_NONE)
108                 /* We don't care what state is left in the FPU or PCB. */
109                 fpstate_drop(td);
110         else if (mcp->mc_ownedfp == _MC_FPOWNED_FPU ||
111             mcp->mc_ownedfp == _MC_FPOWNED_PCB) {
112                 /*
113                  * XXX we violate the dubious requirement that fpusetregs()
114                  * be called with interrupts disabled.
115                  */
116                 fpusetregs(td, (struct savefpu *)&mcp->mc_fpstate);
117         } else
118                 return (EINVAL);
119         return (0);
120 }
121
122 /*
123  * Get machine context.
124  */
125 static int
126 ia32_get_mcontext(struct thread *td, struct ia32_mcontext *mcp, int flags)
127 {
128         struct trapframe *tp;
129
130         tp = td->td_frame;
131
132         PROC_LOCK(curthread->td_proc);
133         mcp->mc_onstack = sigonstack(tp->tf_rsp);
134         PROC_UNLOCK(curthread->td_proc);
135         /* Entry into kernel always sets TF_HASSEGS */
136         mcp->mc_gs = tp->tf_gs;
137         mcp->mc_fs = tp->tf_fs;
138         mcp->mc_es = tp->tf_es;
139         mcp->mc_ds = tp->tf_ds;
140         mcp->mc_edi = tp->tf_rdi;
141         mcp->mc_esi = tp->tf_rsi;
142         mcp->mc_ebp = tp->tf_rbp;
143         mcp->mc_isp = tp->tf_rsp;
144         if (flags & GET_MC_CLEAR_RET) {
145                 mcp->mc_eax = 0;
146                 mcp->mc_edx = 0;
147         } else {
148                 mcp->mc_eax = tp->tf_rax;
149                 mcp->mc_edx = tp->tf_rdx;
150         }
151         mcp->mc_ebx = tp->tf_rbx;
152         mcp->mc_ecx = tp->tf_rcx;
153         mcp->mc_eip = tp->tf_rip;
154         mcp->mc_cs = tp->tf_cs;
155         mcp->mc_eflags = tp->tf_rflags;
156         mcp->mc_esp = tp->tf_rsp;
157         mcp->mc_ss = tp->tf_ss;
158         mcp->mc_len = sizeof(*mcp);
159         ia32_get_fpcontext(td, mcp);
160         mcp->mc_fsbase = td->td_pcb->pcb_fsbase;
161         mcp->mc_gsbase = td->td_pcb->pcb_gsbase;
162         td->td_pcb->pcb_full_iret = 1;
163         return (0);
164 }
165
166 /*
167  * Set machine context.
168  *
169  * However, we don't set any but the user modifiable flags, and we won't
170  * touch the cs selector.
171  */
172 static int
173 ia32_set_mcontext(struct thread *td, const struct ia32_mcontext *mcp)
174 {
175         struct trapframe *tp;
176         long rflags;
177         int ret;
178
179         tp = td->td_frame;
180         if (mcp->mc_len != sizeof(*mcp))
181                 return (EINVAL);
182         rflags = (mcp->mc_eflags & PSL_USERCHANGE) |
183             (tp->tf_rflags & ~PSL_USERCHANGE);
184         ret = ia32_set_fpcontext(td, mcp);
185         if (ret != 0)
186                 return (ret);
187         tp->tf_gs = mcp->mc_gs;
188         tp->tf_fs = mcp->mc_fs;
189         tp->tf_es = mcp->mc_es;
190         tp->tf_ds = mcp->mc_ds;
191         tp->tf_flags = TF_HASSEGS;
192         tp->tf_rdi = mcp->mc_edi;
193         tp->tf_rsi = mcp->mc_esi;
194         tp->tf_rbp = mcp->mc_ebp;
195         tp->tf_rbx = mcp->mc_ebx;
196         tp->tf_rdx = mcp->mc_edx;
197         tp->tf_rcx = mcp->mc_ecx;
198         tp->tf_rax = mcp->mc_eax;
199         /* trapno, err */
200         tp->tf_rip = mcp->mc_eip;
201         tp->tf_rflags = rflags;
202         tp->tf_rsp = mcp->mc_esp;
203         tp->tf_ss = mcp->mc_ss;
204         td->td_pcb->pcb_flags |= PCB_FULLCTX;
205         td->td_pcb->pcb_full_iret = 1;
206         return (0);
207 }
208
209 /*
210  * The first two fields of a ucontext_t are the signal mask and
211  * the machine context.  The next field is uc_link; we want to
212  * avoid destroying the link when copying out contexts.
213  */
214 #define UC_COPY_SIZE    offsetof(struct ia32_ucontext, uc_link)
215
216 int
217 freebsd32_getcontext(struct thread *td, struct freebsd32_getcontext_args *uap)
218 {
219         struct ia32_ucontext uc;
220         int ret;
221
222         if (uap->ucp == NULL)
223                 ret = EINVAL;
224         else {
225                 ia32_get_mcontext(td, &uc.uc_mcontext, GET_MC_CLEAR_RET);
226                 PROC_LOCK(td->td_proc);
227                 uc.uc_sigmask = td->td_sigmask;
228                 PROC_UNLOCK(td->td_proc);
229                 ret = copyout(&uc, uap->ucp, UC_COPY_SIZE);
230         }
231         return (ret);
232 }
233
234 int
235 freebsd32_setcontext(struct thread *td, struct freebsd32_setcontext_args *uap)
236 {
237         struct ia32_ucontext uc;
238         int ret;        
239
240         if (uap->ucp == NULL)
241                 ret = EINVAL;
242         else {
243                 ret = copyin(uap->ucp, &uc, UC_COPY_SIZE);
244                 if (ret == 0) {
245                         ret = ia32_set_mcontext(td, &uc.uc_mcontext);
246                         if (ret == 0) {
247                                 SIG_CANTMASK(uc.uc_sigmask);
248                                 PROC_LOCK(td->td_proc);
249                                 td->td_sigmask = uc.uc_sigmask;
250                                 PROC_UNLOCK(td->td_proc);
251                         }
252                 }
253         }
254         return (ret == 0 ? EJUSTRETURN : ret);
255 }
256
257 int
258 freebsd32_swapcontext(struct thread *td, struct freebsd32_swapcontext_args *uap)
259 {
260         struct ia32_ucontext uc;
261         int ret;        
262
263         if (uap->oucp == NULL || uap->ucp == NULL)
264                 ret = EINVAL;
265         else {
266                 ia32_get_mcontext(td, &uc.uc_mcontext, GET_MC_CLEAR_RET);
267                 PROC_LOCK(td->td_proc);
268                 uc.uc_sigmask = td->td_sigmask;
269                 PROC_UNLOCK(td->td_proc);
270                 ret = copyout(&uc, uap->oucp, UC_COPY_SIZE);
271                 if (ret == 0) {
272                         ret = copyin(uap->ucp, &uc, UC_COPY_SIZE);
273                         if (ret == 0) {
274                                 ret = ia32_set_mcontext(td, &uc.uc_mcontext);
275                                 if (ret == 0) {
276                                         SIG_CANTMASK(uc.uc_sigmask);
277                                         PROC_LOCK(td->td_proc);
278                                         td->td_sigmask = uc.uc_sigmask;
279                                         PROC_UNLOCK(td->td_proc);
280                                 }
281                         }
282                 }
283         }
284         return (ret == 0 ? EJUSTRETURN : ret);
285 }
286
287 /*
288  * Send an interrupt to process.
289  *
290  * Stack is set up to allow sigcode stored
291  * at top to call routine, followed by kcall
292  * to sigreturn routine below.  After sigreturn
293  * resets the signal mask, the stack, and the
294  * frame pointer, it returns to the user
295  * specified pc, psl.
296  */
297 #ifdef COMPAT_FREEBSD4
298 static void
299 freebsd4_ia32_sendsig(sig_t catcher, ksiginfo_t *ksi, sigset_t *mask)
300 {
301         struct ia32_sigframe4 sf, *sfp;
302         struct siginfo32 siginfo;
303         struct proc *p;
304         struct thread *td;
305         struct sigacts *psp;
306         struct trapframe *regs;
307         int oonstack;
308         int sig;
309
310         td = curthread;
311         p = td->td_proc;
312         siginfo_to_siginfo32(&ksi->ksi_info, &siginfo);
313
314         PROC_LOCK_ASSERT(p, MA_OWNED);
315         sig = siginfo.si_signo;
316         psp = p->p_sigacts;
317         mtx_assert(&psp->ps_mtx, MA_OWNED);
318         regs = td->td_frame;
319         oonstack = sigonstack(regs->tf_rsp);
320
321         /* Save user context. */
322         bzero(&sf, sizeof(sf));
323         sf.sf_uc.uc_sigmask = *mask;
324         sf.sf_uc.uc_stack.ss_sp = (uintptr_t)td->td_sigstk.ss_sp;
325         sf.sf_uc.uc_stack.ss_size = td->td_sigstk.ss_size;
326         sf.sf_uc.uc_stack.ss_flags = (td->td_pflags & TDP_ALTSTACK)
327             ? ((oonstack) ? SS_ONSTACK : 0) : SS_DISABLE;
328         sf.sf_uc.uc_mcontext.mc_onstack = (oonstack) ? 1 : 0;
329         sf.sf_uc.uc_mcontext.mc_edi = regs->tf_rdi;
330         sf.sf_uc.uc_mcontext.mc_esi = regs->tf_rsi;
331         sf.sf_uc.uc_mcontext.mc_ebp = regs->tf_rbp;
332         sf.sf_uc.uc_mcontext.mc_isp = regs->tf_rsp; /* XXX */
333         sf.sf_uc.uc_mcontext.mc_ebx = regs->tf_rbx;
334         sf.sf_uc.uc_mcontext.mc_edx = regs->tf_rdx;
335         sf.sf_uc.uc_mcontext.mc_ecx = regs->tf_rcx;
336         sf.sf_uc.uc_mcontext.mc_eax = regs->tf_rax;
337         sf.sf_uc.uc_mcontext.mc_trapno = regs->tf_trapno;
338         sf.sf_uc.uc_mcontext.mc_err = regs->tf_err;
339         sf.sf_uc.uc_mcontext.mc_eip = regs->tf_rip;
340         sf.sf_uc.uc_mcontext.mc_cs = regs->tf_cs;
341         sf.sf_uc.uc_mcontext.mc_eflags = regs->tf_rflags;
342         sf.sf_uc.uc_mcontext.mc_esp = regs->tf_rsp;
343         sf.sf_uc.uc_mcontext.mc_ss = regs->tf_ss;
344         sf.sf_uc.uc_mcontext.mc_ds = regs->tf_ds;
345         sf.sf_uc.uc_mcontext.mc_es = regs->tf_es;
346         sf.sf_uc.uc_mcontext.mc_fs = regs->tf_fs;
347         sf.sf_uc.uc_mcontext.mc_gs = regs->tf_gs;
348
349         /* Allocate space for the signal handler context. */
350         if ((td->td_pflags & TDP_ALTSTACK) != 0 && !oonstack &&
351             SIGISMEMBER(psp->ps_sigonstack, sig)) {
352                 sfp = (struct ia32_sigframe4 *)(td->td_sigstk.ss_sp +
353                     td->td_sigstk.ss_size - sizeof(sf));
354         } else
355                 sfp = (struct ia32_sigframe4 *)regs->tf_rsp - 1;
356         PROC_UNLOCK(p);
357
358         /* Translate the signal if appropriate. */
359         if (p->p_sysent->sv_sigtbl && sig <= p->p_sysent->sv_sigsize)
360                 sig = p->p_sysent->sv_sigtbl[_SIG_IDX(sig)];
361
362         /* Build the argument list for the signal handler. */
363         sf.sf_signum = sig;
364         sf.sf_ucontext = (register_t)&sfp->sf_uc;
365         if (SIGISMEMBER(psp->ps_siginfo, sig)) {
366                 /* Signal handler installed with SA_SIGINFO. */
367                 sf.sf_siginfo = (u_int32_t)(uintptr_t)&sfp->sf_si;
368                 sf.sf_ah = (u_int32_t)(uintptr_t)catcher;
369
370                 /* Fill in POSIX parts */
371                 sf.sf_si = siginfo;
372                 sf.sf_si.si_signo = sig;
373         } else {
374                 /* Old FreeBSD-style arguments. */
375                 sf.sf_siginfo = siginfo.si_code;
376                 sf.sf_addr = (u_int32_t)siginfo.si_addr;
377                 sf.sf_ah = (u_int32_t)(uintptr_t)catcher;
378         }
379         mtx_unlock(&psp->ps_mtx);
380
381         /*
382          * Copy the sigframe out to the user's stack.
383          */
384         if (copyout(&sf, sfp, sizeof(*sfp)) != 0) {
385 #ifdef DEBUG
386                 printf("process %ld has trashed its stack\n", (long)p->p_pid);
387 #endif
388                 PROC_LOCK(p);
389                 sigexit(td, SIGILL);
390         }
391
392         regs->tf_rsp = (uintptr_t)sfp;
393         regs->tf_rip = FREEBSD32_PS_STRINGS - sz_freebsd4_ia32_sigcode;
394         regs->tf_rflags &= ~(PSL_T | PSL_D);
395         regs->tf_cs = _ucode32sel;
396         regs->tf_ss = _udatasel;
397         regs->tf_ds = _udatasel;
398         regs->tf_es = _udatasel;
399         td->td_pcb->pcb_full_iret = 1;
400         /* leave user %fs and %gs untouched */
401         PROC_LOCK(p);
402         mtx_lock(&psp->ps_mtx);
403 }
404 #endif  /* COMPAT_FREEBSD4 */
405
406 void
407 ia32_sendsig(sig_t catcher, ksiginfo_t *ksi, sigset_t *mask)
408 {
409         struct ia32_sigframe sf, *sfp;
410         struct siginfo32 siginfo;
411         struct proc *p;
412         struct thread *td;
413         struct sigacts *psp;
414         char *sp;
415         struct trapframe *regs;
416         int oonstack;
417         int sig;
418
419         siginfo_to_siginfo32(&ksi->ksi_info, &siginfo);
420         td = curthread;
421         p = td->td_proc;
422         PROC_LOCK_ASSERT(p, MA_OWNED);
423         sig = siginfo.si_signo;
424         psp = p->p_sigacts;
425 #ifdef COMPAT_FREEBSD4
426         if (SIGISMEMBER(psp->ps_freebsd4, sig)) {
427                 freebsd4_ia32_sendsig(catcher, ksi, mask);
428                 return;
429         }
430 #endif
431         mtx_assert(&psp->ps_mtx, MA_OWNED);
432         regs = td->td_frame;
433         oonstack = sigonstack(regs->tf_rsp);
434
435         /* Save user context. */
436         bzero(&sf, sizeof(sf));
437         sf.sf_uc.uc_sigmask = *mask;
438         sf.sf_uc.uc_stack.ss_sp = (uintptr_t)td->td_sigstk.ss_sp;
439         sf.sf_uc.uc_stack.ss_size = td->td_sigstk.ss_size;
440         sf.sf_uc.uc_stack.ss_flags = (td->td_pflags & TDP_ALTSTACK)
441             ? ((oonstack) ? SS_ONSTACK : 0) : SS_DISABLE;
442         sf.sf_uc.uc_mcontext.mc_onstack = (oonstack) ? 1 : 0;
443         sf.sf_uc.uc_mcontext.mc_edi = regs->tf_rdi;
444         sf.sf_uc.uc_mcontext.mc_esi = regs->tf_rsi;
445         sf.sf_uc.uc_mcontext.mc_ebp = regs->tf_rbp;
446         sf.sf_uc.uc_mcontext.mc_isp = regs->tf_rsp; /* XXX */
447         sf.sf_uc.uc_mcontext.mc_ebx = regs->tf_rbx;
448         sf.sf_uc.uc_mcontext.mc_edx = regs->tf_rdx;
449         sf.sf_uc.uc_mcontext.mc_ecx = regs->tf_rcx;
450         sf.sf_uc.uc_mcontext.mc_eax = regs->tf_rax;
451         sf.sf_uc.uc_mcontext.mc_trapno = regs->tf_trapno;
452         sf.sf_uc.uc_mcontext.mc_err = regs->tf_err;
453         sf.sf_uc.uc_mcontext.mc_eip = regs->tf_rip;
454         sf.sf_uc.uc_mcontext.mc_cs = regs->tf_cs;
455         sf.sf_uc.uc_mcontext.mc_eflags = regs->tf_rflags;
456         sf.sf_uc.uc_mcontext.mc_esp = regs->tf_rsp;
457         sf.sf_uc.uc_mcontext.mc_ss = regs->tf_ss;
458         sf.sf_uc.uc_mcontext.mc_ds = regs->tf_ds;
459         sf.sf_uc.uc_mcontext.mc_es = regs->tf_es;
460         sf.sf_uc.uc_mcontext.mc_fs = regs->tf_fs;
461         sf.sf_uc.uc_mcontext.mc_gs = regs->tf_gs;
462         sf.sf_uc.uc_mcontext.mc_len = sizeof(sf.sf_uc.uc_mcontext); /* magic */
463         ia32_get_fpcontext(td, &sf.sf_uc.uc_mcontext);
464         fpstate_drop(td);
465         sf.sf_uc.uc_mcontext.mc_fsbase = td->td_pcb->pcb_fsbase;
466         sf.sf_uc.uc_mcontext.mc_gsbase = td->td_pcb->pcb_gsbase;
467
468         /* Allocate space for the signal handler context. */
469         if ((td->td_pflags & TDP_ALTSTACK) != 0 && !oonstack &&
470             SIGISMEMBER(psp->ps_sigonstack, sig)) {
471                 sp = td->td_sigstk.ss_sp +
472                     td->td_sigstk.ss_size - sizeof(sf);
473         } else
474                 sp = (char *)regs->tf_rsp - sizeof(sf);
475         /* Align to 16 bytes. */
476         sfp = (struct ia32_sigframe *)((uintptr_t)sp & ~0xF);
477         PROC_UNLOCK(p);
478
479         /* Translate the signal if appropriate. */
480         if (p->p_sysent->sv_sigtbl && sig <= p->p_sysent->sv_sigsize)
481                 sig = p->p_sysent->sv_sigtbl[_SIG_IDX(sig)];
482
483         /* Build the argument list for the signal handler. */
484         sf.sf_signum = sig;
485         sf.sf_ucontext = (register_t)&sfp->sf_uc;
486         if (SIGISMEMBER(psp->ps_siginfo, sig)) {
487                 /* Signal handler installed with SA_SIGINFO. */
488                 sf.sf_siginfo = (u_int32_t)(uintptr_t)&sfp->sf_si;
489                 sf.sf_ah = (u_int32_t)(uintptr_t)catcher;
490
491                 /* Fill in POSIX parts */
492                 sf.sf_si = siginfo;
493                 sf.sf_si.si_signo = sig;
494         } else {
495                 /* Old FreeBSD-style arguments. */
496                 sf.sf_siginfo = siginfo.si_code;
497                 sf.sf_addr = (u_int32_t)siginfo.si_addr;
498                 sf.sf_ah = (u_int32_t)(uintptr_t)catcher;
499         }
500         mtx_unlock(&psp->ps_mtx);
501
502         /*
503          * Copy the sigframe out to the user's stack.
504          */
505         if (copyout(&sf, sfp, sizeof(*sfp)) != 0) {
506 #ifdef DEBUG
507                 printf("process %ld has trashed its stack\n", (long)p->p_pid);
508 #endif
509                 PROC_LOCK(p);
510                 sigexit(td, SIGILL);
511         }
512
513         regs->tf_rsp = (uintptr_t)sfp;
514         regs->tf_rip = FREEBSD32_PS_STRINGS - *(p->p_sysent->sv_szsigcode);
515         regs->tf_rflags &= ~(PSL_T | PSL_D);
516         regs->tf_cs = _ucode32sel;
517         regs->tf_ss = _udatasel;
518         regs->tf_ds = _udatasel;
519         regs->tf_es = _udatasel;
520         td->td_pcb->pcb_full_iret = 1;
521         /* XXXKIB leave user %fs and %gs untouched */
522         PROC_LOCK(p);
523         mtx_lock(&psp->ps_mtx);
524 }
525
526 /*
527  * System call to cleanup state after a signal
528  * has been taken.  Reset signal mask and
529  * stack state from context left by sendsig (above).
530  * Return to previous pc and psl as specified by
531  * context left by sendsig. Check carefully to
532  * make sure that the user has not modified the
533  * state to gain improper privileges.
534  */
535 #ifdef COMPAT_FREEBSD4
536 /*
537  * MPSAFE
538  */
539 int
540 freebsd4_freebsd32_sigreturn(td, uap)
541         struct thread *td;
542         struct freebsd4_freebsd32_sigreturn_args /* {
543                 const struct freebsd4_freebsd32_ucontext *sigcntxp;
544         } */ *uap;
545 {
546         struct ia32_ucontext4 uc;
547         struct proc *p = td->td_proc;
548         struct trapframe *regs;
549         const struct ia32_ucontext4 *ucp;
550         int cs, eflags, error;
551         ksiginfo_t ksi;
552
553         error = copyin(uap->sigcntxp, &uc, sizeof(uc));
554         if (error != 0)
555                 return (error);
556         ucp = &uc;
557         regs = td->td_frame;
558         eflags = ucp->uc_mcontext.mc_eflags;
559         /*
560          * Don't allow users to change privileged or reserved flags.
561          */
562         /*
563          * XXX do allow users to change the privileged flag PSL_RF.
564          * The cpu sets PSL_RF in tf_eflags for faults.  Debuggers
565          * should sometimes set it there too.  tf_eflags is kept in
566          * the signal context during signal handling and there is no
567          * other place to remember it, so the PSL_RF bit may be
568          * corrupted by the signal handler without us knowing.
569          * Corruption of the PSL_RF bit at worst causes one more or
570          * one less debugger trap, so allowing it is fairly harmless.
571          */
572         if (!EFL_SECURE(eflags & ~PSL_RF, regs->tf_rflags & ~PSL_RF)) {
573                 printf("freebsd4_freebsd32_sigreturn: eflags = 0x%x\n", eflags);
574                 return (EINVAL);
575         }
576
577         /*
578          * Don't allow users to load a valid privileged %cs.  Let the
579          * hardware check for invalid selectors, excess privilege in
580          * other selectors, invalid %eip's and invalid %esp's.
581          */
582         cs = ucp->uc_mcontext.mc_cs;
583         if (!CS_SECURE(cs)) {
584                 printf("freebsd4_sigreturn: cs = 0x%x\n", cs);
585                 ksiginfo_init_trap(&ksi);
586                 ksi.ksi_signo = SIGBUS;
587                 ksi.ksi_code = BUS_OBJERR;
588                 ksi.ksi_trapno = T_PROTFLT;
589                 ksi.ksi_addr = (void *)regs->tf_rip;
590                 trapsignal(td, &ksi);
591                 return (EINVAL);
592         }
593
594         regs->tf_rdi = ucp->uc_mcontext.mc_edi;
595         regs->tf_rsi = ucp->uc_mcontext.mc_esi;
596         regs->tf_rbp = ucp->uc_mcontext.mc_ebp;
597         regs->tf_rbx = ucp->uc_mcontext.mc_ebx;
598         regs->tf_rdx = ucp->uc_mcontext.mc_edx;
599         regs->tf_rcx = ucp->uc_mcontext.mc_ecx;
600         regs->tf_rax = ucp->uc_mcontext.mc_eax;
601         regs->tf_trapno = ucp->uc_mcontext.mc_trapno;
602         regs->tf_err = ucp->uc_mcontext.mc_err;
603         regs->tf_rip = ucp->uc_mcontext.mc_eip;
604         regs->tf_cs = cs;
605         regs->tf_rflags = ucp->uc_mcontext.mc_eflags;
606         regs->tf_rsp = ucp->uc_mcontext.mc_esp;
607         regs->tf_ss = ucp->uc_mcontext.mc_ss;
608         regs->tf_ds = ucp->uc_mcontext.mc_ds;
609         regs->tf_es = ucp->uc_mcontext.mc_es;
610         regs->tf_fs = ucp->uc_mcontext.mc_fs;
611         regs->tf_gs = ucp->uc_mcontext.mc_gs;
612
613         PROC_LOCK(p);
614         td->td_sigmask = ucp->uc_sigmask;
615         SIG_CANTMASK(td->td_sigmask);
616         signotify(td);
617         PROC_UNLOCK(p);
618         td->td_pcb->pcb_full_iret = 1;
619         return (EJUSTRETURN);
620 }
621 #endif  /* COMPAT_FREEBSD4 */
622
623 /*
624  * MPSAFE
625  */
626 int
627 freebsd32_sigreturn(td, uap)
628         struct thread *td;
629         struct freebsd32_sigreturn_args /* {
630                 const struct freebsd32_ucontext *sigcntxp;
631         } */ *uap;
632 {
633         struct ia32_ucontext uc;
634         struct proc *p = td->td_proc;
635         struct trapframe *regs;
636         const struct ia32_ucontext *ucp;
637         int cs, eflags, error, ret;
638         ksiginfo_t ksi;
639
640         error = copyin(uap->sigcntxp, &uc, sizeof(uc));
641         if (error != 0)
642                 return (error);
643         ucp = &uc;
644         regs = td->td_frame;
645         eflags = ucp->uc_mcontext.mc_eflags;
646         /*
647          * Don't allow users to change privileged or reserved flags.
648          */
649         /*
650          * XXX do allow users to change the privileged flag PSL_RF.
651          * The cpu sets PSL_RF in tf_eflags for faults.  Debuggers
652          * should sometimes set it there too.  tf_eflags is kept in
653          * the signal context during signal handling and there is no
654          * other place to remember it, so the PSL_RF bit may be
655          * corrupted by the signal handler without us knowing.
656          * Corruption of the PSL_RF bit at worst causes one more or
657          * one less debugger trap, so allowing it is fairly harmless.
658          */
659         if (!EFL_SECURE(eflags & ~PSL_RF, regs->tf_rflags & ~PSL_RF)) {
660                 printf("freebsd32_sigreturn: eflags = 0x%x\n", eflags);
661                 return (EINVAL);
662         }
663
664         /*
665          * Don't allow users to load a valid privileged %cs.  Let the
666          * hardware check for invalid selectors, excess privilege in
667          * other selectors, invalid %eip's and invalid %esp's.
668          */
669         cs = ucp->uc_mcontext.mc_cs;
670         if (!CS_SECURE(cs)) {
671                 printf("sigreturn: cs = 0x%x\n", cs);
672                 ksiginfo_init_trap(&ksi);
673                 ksi.ksi_signo = SIGBUS;
674                 ksi.ksi_code = BUS_OBJERR;
675                 ksi.ksi_trapno = T_PROTFLT;
676                 ksi.ksi_addr = (void *)regs->tf_rip;
677                 trapsignal(td, &ksi);
678                 return (EINVAL);
679         }
680
681         ret = ia32_set_fpcontext(td, &ucp->uc_mcontext);
682         if (ret != 0)
683                 return (ret);
684
685         regs->tf_rdi = ucp->uc_mcontext.mc_edi;
686         regs->tf_rsi = ucp->uc_mcontext.mc_esi;
687         regs->tf_rbp = ucp->uc_mcontext.mc_ebp;
688         regs->tf_rbx = ucp->uc_mcontext.mc_ebx;
689         regs->tf_rdx = ucp->uc_mcontext.mc_edx;
690         regs->tf_rcx = ucp->uc_mcontext.mc_ecx;
691         regs->tf_rax = ucp->uc_mcontext.mc_eax;
692         regs->tf_trapno = ucp->uc_mcontext.mc_trapno;
693         regs->tf_err = ucp->uc_mcontext.mc_err;
694         regs->tf_rip = ucp->uc_mcontext.mc_eip;
695         regs->tf_cs = cs;
696         regs->tf_rflags = ucp->uc_mcontext.mc_eflags;
697         regs->tf_rsp = ucp->uc_mcontext.mc_esp;
698         regs->tf_ss = ucp->uc_mcontext.mc_ss;
699         regs->tf_ds = ucp->uc_mcontext.mc_ds;
700         regs->tf_es = ucp->uc_mcontext.mc_es;
701         regs->tf_fs = ucp->uc_mcontext.mc_fs;
702         regs->tf_gs = ucp->uc_mcontext.mc_gs;
703         regs->tf_flags = TF_HASSEGS;
704
705         PROC_LOCK(p);
706         td->td_sigmask = ucp->uc_sigmask;
707         SIG_CANTMASK(td->td_sigmask);
708         signotify(td);
709         PROC_UNLOCK(p);
710         td->td_pcb->pcb_full_iret = 1;
711         return (EJUSTRETURN);
712 }
713
714 /*
715  * Clear registers on exec
716  */
717 void
718 ia32_setregs(td, entry, stack, ps_strings)
719         struct thread *td;
720         u_long entry;
721         u_long stack;
722         u_long ps_strings;
723 {
724         struct trapframe *regs = td->td_frame;
725         struct pcb *pcb = td->td_pcb;
726         
727         mtx_lock(&dt_lock);
728         if (td->td_proc->p_md.md_ldt != NULL)
729                 user_ldt_free(td);
730         else
731                 mtx_unlock(&dt_lock);
732
733         pcb->pcb_fsbase = 0;
734         pcb->pcb_gsbase = 0;
735         pcb->pcb_initial_fpucw = __INITIAL_FPUCW_I386__;
736
737         bzero((char *)regs, sizeof(struct trapframe));
738         regs->tf_rip = entry;
739         regs->tf_rsp = stack;
740         regs->tf_rflags = PSL_USER | (regs->tf_rflags & PSL_T);
741         regs->tf_ss = _udatasel;
742         regs->tf_cs = _ucode32sel;
743         regs->tf_rbx = ps_strings;
744         regs->tf_ds = _udatasel;
745         regs->tf_es = _udatasel;
746         regs->tf_fs = _ufssel;
747         regs->tf_gs = _ugssel;
748         regs->tf_flags = TF_HASSEGS;
749
750         load_cr0(rcr0() | CR0_MP | CR0_TS);
751         fpstate_drop(td);
752
753         /* Return via doreti so that we can change to a different %cs */
754         pcb->pcb_flags |= PCB_FULLCTX | PCB_32BIT;
755         pcb->pcb_flags &= ~PCB_GS32BIT;
756         td->td_pcb->pcb_full_iret = 1;
757         td->td_retval[1] = 0;
758 }