2002-11-16 06:35:53 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 2002 Daniel M. Eischen <deischen@freebsd.org>
|
|
|
|
* 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.
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``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 OR CONTRIBUTORS 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.
|
|
|
|
*/
|
|
|
|
|
2003-06-11 00:56:59 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
2002-11-16 06:35:53 +00:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/lock.h>
|
|
|
|
#include <sys/mutex.h>
|
|
|
|
#include <sys/proc.h>
|
2010-06-30 18:03:42 +00:00
|
|
|
#include <sys/syscallsubr.h>
|
2002-11-16 06:35:53 +00:00
|
|
|
#include <sys/sysent.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/sysproto.h>
|
|
|
|
#include <sys/signalvar.h>
|
|
|
|
#include <sys/ucontext.h>
|
|
|
|
|
|
|
|
/*
|
2007-03-05 13:10:58 +00:00
|
|
|
* The first two fields of a ucontext_t are the signal mask and the machine
|
|
|
|
* context. The next field is uc_link; we want to avoid destroying the link
|
|
|
|
* when copying out contexts.
|
2002-11-16 06:35:53 +00:00
|
|
|
*/
|
2003-04-01 23:25:18 +00:00
|
|
|
#define UC_COPY_SIZE offsetof(ucontext_t, uc_link)
|
2002-11-16 06:35:53 +00:00
|
|
|
|
|
|
|
#ifndef _SYS_SYSPROTO_H_
|
|
|
|
struct getcontext_args {
|
|
|
|
struct __ucontext *ucp;
|
|
|
|
}
|
|
|
|
struct setcontext_args {
|
|
|
|
const struct __ucontext_t *ucp;
|
|
|
|
}
|
|
|
|
struct swapcontext_args {
|
|
|
|
struct __ucontext *oucp;
|
|
|
|
const struct __ucontext_t *ucp;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int
|
2011-09-16 13:58:51 +00:00
|
|
|
sys_getcontext(struct thread *td, struct getcontext_args *uap)
|
2002-11-16 06:35:53 +00:00
|
|
|
{
|
|
|
|
ucontext_t uc;
|
2003-04-17 22:21:57 +00:00
|
|
|
int ret;
|
2002-11-16 06:35:53 +00:00
|
|
|
|
|
|
|
if (uap->ucp == NULL)
|
|
|
|
ret = EINVAL;
|
|
|
|
else {
|
2003-11-09 20:31:04 +00:00
|
|
|
get_mcontext(td, &uc.uc_mcontext, GET_MC_CLEAR_RET);
|
2003-04-17 22:21:57 +00:00
|
|
|
PROC_LOCK(td->td_proc);
|
2003-03-31 22:49:17 +00:00
|
|
|
uc.uc_sigmask = td->td_sigmask;
|
2003-04-17 22:21:57 +00:00
|
|
|
PROC_UNLOCK(td->td_proc);
|
2011-02-05 15:10:27 +00:00
|
|
|
bzero(uc.__spare__, sizeof(uc.__spare__));
|
2002-11-16 06:35:53 +00:00
|
|
|
ret = copyout(&uc, uap->ucp, UC_COPY_SIZE);
|
|
|
|
}
|
|
|
|
return (ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2011-09-16 13:58:51 +00:00
|
|
|
sys_setcontext(struct thread *td, struct setcontext_args *uap)
|
2002-11-16 06:35:53 +00:00
|
|
|
{
|
|
|
|
ucontext_t uc;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (uap->ucp == NULL)
|
|
|
|
ret = EINVAL;
|
|
|
|
else {
|
|
|
|
ret = copyin(uap->ucp, &uc, UC_COPY_SIZE);
|
|
|
|
if (ret == 0) {
|
|
|
|
ret = set_mcontext(td, &uc.uc_mcontext);
|
|
|
|
if (ret == 0) {
|
2009-10-27 10:47:58 +00:00
|
|
|
kern_sigprocmask(td, SIG_SETMASK, &uc.uc_sigmask,
|
|
|
|
NULL, 0);
|
2002-11-16 06:35:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2003-04-01 23:25:18 +00:00
|
|
|
return (ret == 0 ? EJUSTRETURN : ret);
|
2002-11-16 06:35:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2011-09-16 13:58:51 +00:00
|
|
|
sys_swapcontext(struct thread *td, struct swapcontext_args *uap)
|
2002-11-16 06:35:53 +00:00
|
|
|
{
|
|
|
|
ucontext_t uc;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (uap->oucp == NULL || uap->ucp == NULL)
|
|
|
|
ret = EINVAL;
|
|
|
|
else {
|
2003-11-09 20:31:04 +00:00
|
|
|
get_mcontext(td, &uc.uc_mcontext, GET_MC_CLEAR_RET);
|
2011-02-05 15:10:27 +00:00
|
|
|
bzero(uc.__spare__, sizeof(uc.__spare__));
|
2003-04-17 22:21:57 +00:00
|
|
|
PROC_LOCK(td->td_proc);
|
2003-03-31 22:49:17 +00:00
|
|
|
uc.uc_sigmask = td->td_sigmask;
|
2003-04-17 22:21:57 +00:00
|
|
|
PROC_UNLOCK(td->td_proc);
|
2002-11-16 06:35:53 +00:00
|
|
|
ret = copyout(&uc, uap->oucp, UC_COPY_SIZE);
|
|
|
|
if (ret == 0) {
|
|
|
|
ret = copyin(uap->ucp, &uc, UC_COPY_SIZE);
|
|
|
|
if (ret == 0) {
|
|
|
|
ret = set_mcontext(td, &uc.uc_mcontext);
|
|
|
|
if (ret == 0) {
|
2009-10-27 10:47:58 +00:00
|
|
|
kern_sigprocmask(td, SIG_SETMASK,
|
|
|
|
&uc.uc_sigmask, NULL, 0);
|
2002-11-16 06:35:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2003-04-01 23:25:18 +00:00
|
|
|
return (ret == 0 ? EJUSTRETURN : ret);
|
2002-11-16 06:35:53 +00:00
|
|
|
}
|