NetBSD/sys/compat/svr4_32/svr4_32_lwp.c

230 lines
5.8 KiB
C
Raw Normal View History

/* $NetBSD: svr4_32_lwp.c,v 1.5 2003/01/20 08:27:40 martin Exp $ */
/*-
* Copyright (c) 1999 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
* by Christos Zoulas.
*
* 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.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the NetBSD
* Foundation, Inc. and its contributors.
* 4. Neither the name of The NetBSD Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. 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 FOUNDATION 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.
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: svr4_32_lwp.c,v 1.5 2003/01/20 08:27:40 martin Exp $");
#include <sys/param.h>
#include <sys/kernel.h>
#include <sys/systm.h>
#include <sys/queue.h>
#include <sys/mbuf.h>
#include <sys/file.h>
#include <sys/mount.h>
#include <sys/time.h>
#include <sys/resourcevar.h>
#include <sys/proc.h>
#include <sys/user.h>
#include <sys/socket.h>
#include <sys/socketvar.h>
2003-01-19 19:41:46 +03:00
#include <sys/sa.h>
#include <sys/syscallargs.h>
#include <sys/un.h>
#include <sys/stat.h>
#include <compat/svr4_32/svr4_32_types.h>
#include <compat/svr4_32/svr4_32_util.h>
#include <compat/svr4_32/svr4_32_socket.h>
#include <compat/svr4_32/svr4_32_signal.h>
#include <compat/svr4/svr4_sockmod.h>
#include <compat/svr4_32/svr4_32_lwp.h>
#include <compat/svr4_32/svr4_32_ucontext.h>
#include <compat/svr4_32/svr4_32_syscallargs.h>
#if 0
int
svr4_32_sys__lwp_self(p, v, retval)
struct proc *p;
void *v;
register_t *retval;
{
return sys_getpid(p, v, retval);
}
#endif
2003-01-19 19:41:46 +03:00
int
2003-01-19 19:41:46 +03:00
svr4_32_sys__lwp_create(l, v, retval)
struct lwp *l;
void *v;
register_t *retval;
{
struct svr4_32_sys__lwp_create_args *uap = v;
2003-01-19 19:41:46 +03:00
struct sys__lwp_create_args lc;
int flags;
flags = 0;
if (SCARG(uap, flags) & SVR4_LWP_DETACHED)
2003-01-19 19:41:46 +03:00
flags &= LWP_DETACHED;
if (SCARG(uap, flags) & SVR4_LWP_SUSPENDED)
2003-01-19 19:41:46 +03:00
flags &= LWP_SUSPENDED;
if (SCARG(uap, flags) & SVR4___LWP_ASLWP) {
2003-01-19 19:41:46 +03:00
/* XXX Punt! */
}
2003-01-19 19:41:46 +03:00
#if 0
/* XXX this is probably incorrect */
SCARG(&lc, ucp) = (ucontext_t *)SCARG(uap, uc);
SCARG(&lc, new_lwp) = SCARG(uap, lwpid);
#endif
SCARG(&lc, flags) = flags;
return sys__lwp_create(l, &lc, retval);
}
int
2003-01-19 19:41:46 +03:00
svr4_32_sys__lwp_kill(l, v, retval)
struct lwp *l;
void *v;
register_t *retval;
{
struct svr4_32_sys__lwp_kill_args *uap = v;
struct sys_kill_args ap;
SCARG(&ap, pid) = SCARG(uap, lwpid);
SCARG(&ap, signum) = SCARG(uap, signum);
2003-01-19 19:41:46 +03:00
return sys_kill(l, &ap, retval);
}
int
2003-01-19 19:41:46 +03:00
svr4_32_sys__lwp_info(l, v, retval)
struct lwp *l;
void *v;
register_t *retval;
{
struct svr4_32_sys__lwp_info_args *uap = v;
2003-01-19 19:41:46 +03:00
struct proc *p = l->l_proc;
struct svr4_32_lwpinfo lwpinfo;
int error;
TIMEVAL_TO_TIMESPEC(&p->p_stats->p_ru.ru_stime, &lwpinfo.lwp_stime);
TIMEVAL_TO_TIMESPEC(&p->p_stats->p_ru.ru_utime, &lwpinfo.lwp_utime);
2001-02-11 04:10:24 +03:00
if ((error = copyout(&lwpinfo, (caddr_t)(u_long)SCARG(uap, lwpinfo),
sizeof(lwpinfo))) == -1)
return error;
return 0;
}
int
2003-01-19 19:41:46 +03:00
svr4_32_sys__lwp_exit(l, v, retval)
struct lwp *l;
void *v;
register_t *retval;
{
2003-01-19 19:41:46 +03:00
return sys__lwp_exit(l, NULL, retval);
}
int
2003-01-19 19:41:46 +03:00
svr4_32_sys__lwp_wait(l, v, retval)
struct lwp *l;
void *v;
register_t *retval;
{
struct svr4_32_sys__lwp_wait_args *uap = v;
2003-01-19 19:41:46 +03:00
struct sys__lwp_wait_args ap;
2003-01-19 19:41:46 +03:00
SCARG(&ap, wait_for) = SCARG(uap, wait_for);
SCARG(&ap, departed) = NETBSD32PTR64(SCARG(uap, departed_lwp));
2003-01-19 19:41:46 +03:00
return sys__lwp_wait(l, &ap, retval);
}
int
2003-01-19 19:41:46 +03:00
svr4_32_sys__lwp_suspend(l, v, retval)
struct lwp *l;
void *v;
register_t *retval;
{
struct svr4_32_sys__lwp_suspend_args *uap = v;
2003-01-19 19:41:46 +03:00
struct sys__lwp_suspend_args ap;
2003-01-19 19:41:46 +03:00
SCARG(&ap, target) = SCARG(uap, lwpid);
2003-01-19 19:41:46 +03:00
return sys__lwp_suspend(l, &ap, retval);
}
int
2003-01-19 19:41:46 +03:00
svr4_32_sys__lwp_continue(l, v, retval)
struct lwp *l;
void *v;
register_t *retval;
{
struct svr4_32_sys__lwp_continue_args *uap = v;
2003-01-19 19:41:46 +03:00
struct sys__lwp_continue_args ap;
2003-01-19 19:41:46 +03:00
SCARG(&ap, target) = SCARG(uap, lwpid);
2003-01-19 19:41:46 +03:00
return sys__lwp_continue(l, &ap, retval);
}
int
2003-01-19 19:41:46 +03:00
svr4_32_sys__lwp_getprivate(l, v, retval)
struct lwp *l;
void *v;
register_t *retval;
{
2003-01-19 19:41:46 +03:00
/* XXX NJWLWP: Replace with call to native version if we ever
* implement that. */
*retval = (register_t)l->l_private;
return 0;
}
int
2003-01-19 19:41:46 +03:00
svr4_32_sys__lwp_setprivate(l, v, retval)
struct lwp *l;
void *v;
register_t *retval;
{
2003-01-19 19:41:46 +03:00
#if 0
struct svr4_32_sys__lwp_setprivate_args *uap = v;
2003-01-19 19:41:46 +03:00
/* XXX NJWLWP: Replace with call to native version if we ever
* implement that. */
return copyin(SCARG(uap, buffer), &l->l_private, sizeof(void *));
#endif
return 0;
}