Refund the proc emuldata struct for future use. For now move flags from
thread emuldata to proc emuldata as it was originally intended. As we can have both 64 & 32 bit Linuxulator running any eventhandler can be called twice for us. To prevent this move eventhandlers code from linux_emul.c to the linux_common.ko module. Differential Revision: https://reviews.freebsd.org/D1073
This commit is contained in:
parent
67d3974849
commit
bc27367760
@ -130,10 +130,6 @@ static boolean_t linux32_trans_osrel(const Elf_Note *note, int32_t *osrel);
|
|||||||
static void linux_vdso_install(void *param);
|
static void linux_vdso_install(void *param);
|
||||||
static void linux_vdso_deinstall(void *param);
|
static void linux_vdso_deinstall(void *param);
|
||||||
|
|
||||||
static eventhandler_tag linux_exit_tag;
|
|
||||||
static eventhandler_tag linux_exec_tag;
|
|
||||||
static eventhandler_tag linux_thread_dtor_tag;
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Linux syscalls return negative errno's, we do positive and map them
|
* Linux syscalls return negative errno's, we do positive and map them
|
||||||
* Reference:
|
* Reference:
|
||||||
@ -1170,12 +1166,6 @@ linux_elf_modevent(module_t mod, int type, void *data)
|
|||||||
linux_ioctl_register_handler(*lihp);
|
linux_ioctl_register_handler(*lihp);
|
||||||
LIST_INIT(&futex_list);
|
LIST_INIT(&futex_list);
|
||||||
mtx_init(&futex_mtx, "ftllk", NULL, MTX_DEF);
|
mtx_init(&futex_mtx, "ftllk", NULL, MTX_DEF);
|
||||||
linux_exit_tag = EVENTHANDLER_REGISTER(process_exit,
|
|
||||||
linux_proc_exit, NULL, 1000);
|
|
||||||
linux_exec_tag = EVENTHANDLER_REGISTER(process_exec,
|
|
||||||
linux_proc_exec, NULL, 1000);
|
|
||||||
linux_thread_dtor_tag = EVENTHANDLER_REGISTER(thread_dtor,
|
|
||||||
linux_thread_dtor, NULL, EVENTHANDLER_PRI_ANY);
|
|
||||||
stclohz = (stathz ? stathz : hz);
|
stclohz = (stathz ? stathz : hz);
|
||||||
if (bootverbose)
|
if (bootverbose)
|
||||||
printf("Linux ELF exec handler installed\n");
|
printf("Linux ELF exec handler installed\n");
|
||||||
@ -1197,9 +1187,6 @@ linux_elf_modevent(module_t mod, int type, void *data)
|
|||||||
SET_FOREACH(lihp, linux_ioctl_handler_set)
|
SET_FOREACH(lihp, linux_ioctl_handler_set)
|
||||||
linux_ioctl_unregister_handler(*lihp);
|
linux_ioctl_unregister_handler(*lihp);
|
||||||
mtx_destroy(&futex_mtx);
|
mtx_destroy(&futex_mtx);
|
||||||
EVENTHANDLER_DEREGISTER(process_exit, linux_exit_tag);
|
|
||||||
EVENTHANDLER_DEREGISTER(process_exec, linux_exec_tag);
|
|
||||||
EVENTHANDLER_DEREGISTER(thread_dtor, linux_thread_dtor_tag);
|
|
||||||
if (bootverbose)
|
if (bootverbose)
|
||||||
printf("Linux ELF exec handler removed\n");
|
printf("Linux ELF exec handler removed\n");
|
||||||
} else
|
} else
|
||||||
|
@ -28,13 +28,15 @@
|
|||||||
__FBSDID("$FreeBSD$");
|
__FBSDID("$FreeBSD$");
|
||||||
|
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
#include <sys/module.h>
|
#include <sys/systm.h>
|
||||||
#include <sys/malloc.h>
|
#include <sys/exec.h>
|
||||||
#include <sys/module.h>
|
#include <sys/imgact.h>
|
||||||
#include <sys/types.h>
|
#include <sys/imgact_elf.h>
|
||||||
#include <sys/kernel.h>
|
#include <sys/kernel.h>
|
||||||
#include <sys/proc.h>
|
#include <sys/malloc.h>
|
||||||
|
#include <sys/eventhandler.h>
|
||||||
|
|
||||||
|
#include <compat/linux/linux_emul.h>
|
||||||
#include <compat/linux/linux_mib.h>
|
#include <compat/linux/linux_mib.h>
|
||||||
#include <compat/linux/linux_util.h>
|
#include <compat/linux/linux_util.h>
|
||||||
|
|
||||||
@ -42,6 +44,10 @@ MODULE_VERSION(linux_common, 1);
|
|||||||
|
|
||||||
SET_DECLARE(linux_device_handler_set, struct linux_device_handler);
|
SET_DECLARE(linux_device_handler_set, struct linux_device_handler);
|
||||||
|
|
||||||
|
static eventhandler_tag linux_exec_tag;
|
||||||
|
static eventhandler_tag linux_thread_dtor_tag;
|
||||||
|
static eventhandler_tag linux_exit_tag;
|
||||||
|
|
||||||
|
|
||||||
static int
|
static int
|
||||||
linux_common_modevent(module_t mod, int type, void *data)
|
linux_common_modevent(module_t mod, int type, void *data)
|
||||||
@ -51,6 +57,12 @@ linux_common_modevent(module_t mod, int type, void *data)
|
|||||||
switch(type) {
|
switch(type) {
|
||||||
case MOD_LOAD:
|
case MOD_LOAD:
|
||||||
linux_osd_jail_register();
|
linux_osd_jail_register();
|
||||||
|
linux_exit_tag = EVENTHANDLER_REGISTER(process_exit,
|
||||||
|
linux_proc_exit, NULL, 1000);
|
||||||
|
linux_exec_tag = EVENTHANDLER_REGISTER(process_exec,
|
||||||
|
linux_proc_exec, NULL, 1000);
|
||||||
|
linux_thread_dtor_tag = EVENTHANDLER_REGISTER(thread_dtor,
|
||||||
|
linux_thread_dtor, NULL, EVENTHANDLER_PRI_ANY);
|
||||||
SET_FOREACH(ldhp, linux_device_handler_set)
|
SET_FOREACH(ldhp, linux_device_handler_set)
|
||||||
linux_device_register_handler(*ldhp);
|
linux_device_register_handler(*ldhp);
|
||||||
break;
|
break;
|
||||||
@ -58,6 +70,9 @@ linux_common_modevent(module_t mod, int type, void *data)
|
|||||||
linux_osd_jail_deregister();
|
linux_osd_jail_deregister();
|
||||||
SET_FOREACH(ldhp, linux_device_handler_set)
|
SET_FOREACH(ldhp, linux_device_handler_set)
|
||||||
linux_device_unregister_handler(*ldhp);
|
linux_device_unregister_handler(*ldhp);
|
||||||
|
EVENTHANDLER_DEREGISTER(process_exit, linux_exit_tag);
|
||||||
|
EVENTHANDLER_DEREGISTER(process_exec, linux_exec_tag);
|
||||||
|
EVENTHANDLER_DEREGISTER(thread_dtor, linux_thread_dtor_tag);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
return (EOPNOTSUPP);
|
return (EOPNOTSUPP);
|
||||||
|
@ -30,8 +30,6 @@
|
|||||||
#include <sys/cdefs.h>
|
#include <sys/cdefs.h>
|
||||||
__FBSDID("$FreeBSD$");
|
__FBSDID("$FreeBSD$");
|
||||||
|
|
||||||
#include "opt_compat.h"
|
|
||||||
|
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
#include <sys/systm.h>
|
#include <sys/systm.h>
|
||||||
#include <sys/imgact.h>
|
#include <sys/imgact.h>
|
||||||
@ -40,7 +38,6 @@ __FBSDID("$FreeBSD$");
|
|||||||
#include <sys/lock.h>
|
#include <sys/lock.h>
|
||||||
#include <sys/malloc.h>
|
#include <sys/malloc.h>
|
||||||
#include <sys/mutex.h>
|
#include <sys/mutex.h>
|
||||||
#include <sys/sdt.h>
|
|
||||||
#include <sys/sx.h>
|
#include <sys/sx.h>
|
||||||
#include <sys/proc.h>
|
#include <sys/proc.h>
|
||||||
#include <sys/syscallsubr.h>
|
#include <sys/syscallsubr.h>
|
||||||
@ -48,60 +45,13 @@ __FBSDID("$FreeBSD$");
|
|||||||
#include <sys/sysproto.h>
|
#include <sys/sysproto.h>
|
||||||
#include <sys/unistd.h>
|
#include <sys/unistd.h>
|
||||||
|
|
||||||
#ifdef COMPAT_LINUX32
|
|
||||||
#include <machine/../linux32/linux.h>
|
|
||||||
#include <machine/../linux32/linux32_proto.h>
|
|
||||||
#else
|
|
||||||
#include <machine/../linux/linux.h>
|
|
||||||
#include <machine/../linux/linux_proto.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include <compat/linux/linux_dtrace.h>
|
|
||||||
#include <compat/linux/linux_emul.h>
|
#include <compat/linux/linux_emul.h>
|
||||||
#include <compat/linux/linux_futex.h>
|
|
||||||
#include <compat/linux/linux_misc.h>
|
#include <compat/linux/linux_misc.h>
|
||||||
#include <compat/linux/linux_util.h>
|
#include <compat/linux/linux_util.h>
|
||||||
|
|
||||||
/**
|
|
||||||
* Special DTrace provider for the linuxulator.
|
|
||||||
*
|
|
||||||
* In this file we define the provider for the entire linuxulator. All
|
|
||||||
* modules (= files of the linuxulator) use it.
|
|
||||||
*
|
|
||||||
* We define a different name depending on the emulated bitsize, see
|
|
||||||
* ../../<ARCH>/linux{,32}/linux.h, e.g.:
|
|
||||||
* native bitsize = linuxulator
|
|
||||||
* amd64, 32bit emulation = linuxulator32
|
|
||||||
*/
|
|
||||||
LIN_SDT_PROVIDER_DEFINE(LINUX_DTRACE);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* DTrace probes in this module.
|
|
||||||
*/
|
|
||||||
LIN_SDT_PROBE_DEFINE1(emul, em_find, entry, "struct thread *");
|
|
||||||
LIN_SDT_PROBE_DEFINE0(emul, em_find, return);
|
|
||||||
LIN_SDT_PROBE_DEFINE3(emul, proc_init, entry, "struct thread *",
|
|
||||||
"struct thread *", "int");
|
|
||||||
LIN_SDT_PROBE_DEFINE0(emul, proc_init, create_thread);
|
|
||||||
LIN_SDT_PROBE_DEFINE0(emul, proc_init, fork);
|
|
||||||
LIN_SDT_PROBE_DEFINE0(emul, proc_init, exec);
|
|
||||||
LIN_SDT_PROBE_DEFINE0(emul, proc_init, return);
|
|
||||||
LIN_SDT_PROBE_DEFINE1(emul, proc_exit, entry, "struct proc *");
|
|
||||||
LIN_SDT_PROBE_DEFINE1(emul, linux_thread_detach, entry, "struct thread *");
|
|
||||||
LIN_SDT_PROBE_DEFINE0(emul, linux_thread_detach, futex_failed);
|
|
||||||
LIN_SDT_PROBE_DEFINE1(emul, linux_thread_detach, child_clear_tid_error, "int");
|
|
||||||
LIN_SDT_PROBE_DEFINE0(emul, linux_thread_detach, return);
|
|
||||||
LIN_SDT_PROBE_DEFINE2(emul, proc_exec, entry, "struct proc *",
|
|
||||||
"struct image_params *");
|
|
||||||
LIN_SDT_PROBE_DEFINE0(emul, proc_exec, return);
|
|
||||||
LIN_SDT_PROBE_DEFINE0(emul, linux_schedtail, entry);
|
|
||||||
LIN_SDT_PROBE_DEFINE1(emul, linux_schedtail, copyout_error, "int");
|
|
||||||
LIN_SDT_PROBE_DEFINE0(emul, linux_schedtail, return);
|
|
||||||
LIN_SDT_PROBE_DEFINE1(emul, linux_set_tid_address, entry, "int *");
|
|
||||||
LIN_SDT_PROBE_DEFINE0(emul, linux_set_tid_address, return);
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* This returns reference to the emuldata entry (if found)
|
* This returns reference to the thread emuldata entry (if found)
|
||||||
*
|
*
|
||||||
* Hold PROC_LOCK when referencing emuldata from other threads.
|
* Hold PROC_LOCK when referencing emuldata from other threads.
|
||||||
*/
|
*/
|
||||||
@ -110,41 +60,51 @@ em_find(struct thread *td)
|
|||||||
{
|
{
|
||||||
struct linux_emuldata *em;
|
struct linux_emuldata *em;
|
||||||
|
|
||||||
LIN_SDT_PROBE1(emul, em_find, entry, td);
|
|
||||||
|
|
||||||
em = td->td_emuldata;
|
em = td->td_emuldata;
|
||||||
|
|
||||||
LIN_SDT_PROBE1(emul, em_find, return, em);
|
|
||||||
|
|
||||||
return (em);
|
return (em);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* This returns reference to the proc pemuldata entry (if found)
|
||||||
|
*
|
||||||
|
* Hold PROC_LOCK when referencing proc pemuldata from other threads.
|
||||||
|
* Hold LINUX_PEM_LOCK wher referencing pemuldata members.
|
||||||
|
*/
|
||||||
|
struct linux_pemuldata *
|
||||||
|
pem_find(struct proc *p)
|
||||||
|
{
|
||||||
|
struct linux_pemuldata *pem;
|
||||||
|
|
||||||
|
pem = p->p_emuldata;
|
||||||
|
|
||||||
|
return (pem);
|
||||||
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
linux_proc_init(struct thread *td, struct thread *newtd, int flags)
|
linux_proc_init(struct thread *td, struct thread *newtd, int flags)
|
||||||
{
|
{
|
||||||
struct linux_emuldata *em;
|
struct linux_emuldata *em;
|
||||||
|
struct linux_pemuldata *pem;
|
||||||
LIN_SDT_PROBE3(emul, proc_init, entry, td, newtd, flags);
|
|
||||||
|
|
||||||
if (newtd != NULL) {
|
if (newtd != NULL) {
|
||||||
/* non-exec call */
|
/* non-exec call */
|
||||||
em = malloc(sizeof(*em), M_TEMP, M_WAITOK | M_ZERO);
|
em = malloc(sizeof(*em), M_TEMP, M_WAITOK | M_ZERO);
|
||||||
em->pdeath_signal = 0;
|
em->pdeath_signal = 0;
|
||||||
em->flags = 0;
|
|
||||||
em->robust_futexes = NULL;
|
em->robust_futexes = NULL;
|
||||||
if (flags & LINUX_CLONE_THREAD) {
|
if (flags & LINUX_CLONE_THREAD) {
|
||||||
LIN_SDT_PROBE0(emul, proc_init, create_thread);
|
|
||||||
|
|
||||||
em->em_tid = newtd->td_tid;
|
em->em_tid = newtd->td_tid;
|
||||||
} else {
|
} else {
|
||||||
LIN_SDT_PROBE0(emul, proc_init, fork);
|
|
||||||
|
|
||||||
em->em_tid = newtd->td_proc->p_pid;
|
em->em_tid = newtd->td_proc->p_pid;
|
||||||
|
|
||||||
|
pem = malloc(sizeof(*pem), M_TEMP, M_WAITOK | M_ZERO);
|
||||||
|
sx_init(&pem->pem_sx, "lpemlk");
|
||||||
|
newtd->td_proc->p_emuldata = pem;
|
||||||
}
|
}
|
||||||
newtd->td_emuldata = em;
|
newtd->td_emuldata = em;
|
||||||
} else {
|
} else {
|
||||||
/* exec */
|
/* exec */
|
||||||
LIN_SDT_PROBE0(emul, proc_init, exec);
|
|
||||||
|
|
||||||
/* lookup the old one */
|
/* lookup the old one */
|
||||||
em = em_find(td);
|
em = em_find(td);
|
||||||
@ -155,24 +115,32 @@ linux_proc_init(struct thread *td, struct thread *newtd, int flags)
|
|||||||
|
|
||||||
em->child_clear_tid = NULL;
|
em->child_clear_tid = NULL;
|
||||||
em->child_set_tid = NULL;
|
em->child_set_tid = NULL;
|
||||||
|
|
||||||
LIN_SDT_PROBE0(emul, proc_init, return);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
linux_proc_exit(void *arg __unused, struct proc *p)
|
linux_proc_exit(void *arg __unused, struct proc *p)
|
||||||
{
|
{
|
||||||
|
struct linux_pemuldata *pem;
|
||||||
struct thread *td = curthread;
|
struct thread *td = curthread;
|
||||||
|
|
||||||
if (__predict_false(SV_CURPROC_ABI() != SV_ABI_LINUX)) {
|
if (__predict_false(SV_CURPROC_ABI() != SV_ABI_LINUX))
|
||||||
LIN_SDT_PROBE1(emul, proc_exit, entry, p);
|
return;
|
||||||
(p->p_sysent->sv_thread_detach)(td);
|
|
||||||
}
|
pem = pem_find(p);
|
||||||
|
if (pem == NULL)
|
||||||
|
return;
|
||||||
|
(p->p_sysent->sv_thread_detach)(td);
|
||||||
|
|
||||||
|
p->p_emuldata = NULL;
|
||||||
|
|
||||||
|
sx_destroy(&pem->pem_sx);
|
||||||
|
free(pem, M_TEMP);
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
linux_common_execve(struct thread *td, struct image_args *eargs)
|
linux_common_execve(struct thread *td, struct image_args *eargs)
|
||||||
{
|
{
|
||||||
|
struct linux_pemuldata *pem;
|
||||||
struct linux_emuldata *em;
|
struct linux_emuldata *em;
|
||||||
struct proc *p;
|
struct proc *p;
|
||||||
int error;
|
int error;
|
||||||
@ -199,16 +167,21 @@ linux_common_execve(struct thread *td, struct image_args *eargs)
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* In a case of transition from Linux binary execing to
|
* In a case of transition from Linux binary execing to
|
||||||
* FreeBSD binary we destroy linux emuldata thread entry.
|
* FreeBSD binary we destroy linux emuldata thread & proc entries.
|
||||||
*/
|
*/
|
||||||
if (SV_CURPROC_ABI() != SV_ABI_LINUX) {
|
if (SV_CURPROC_ABI() != SV_ABI_LINUX) {
|
||||||
PROC_LOCK(p);
|
PROC_LOCK(p);
|
||||||
em = em_find(td);
|
em = em_find(td);
|
||||||
KASSERT(em != NULL, ("proc_exec: emuldata not found.\n"));
|
KASSERT(em != NULL, ("proc_exec: thread emuldata not found.\n"));
|
||||||
td->td_emuldata = NULL;
|
td->td_emuldata = NULL;
|
||||||
|
|
||||||
|
pem = pem_find(p);
|
||||||
|
KASSERT(pem != NULL, ("proc_exec: proc pemuldata not found.\n"));
|
||||||
|
p->p_emuldata = NULL;
|
||||||
PROC_UNLOCK(p);
|
PROC_UNLOCK(p);
|
||||||
|
|
||||||
free(em, M_TEMP);
|
free(em, M_TEMP);
|
||||||
|
free(pem, M_TEMP);
|
||||||
}
|
}
|
||||||
return (0);
|
return (0);
|
||||||
}
|
}
|
||||||
@ -224,70 +197,13 @@ linux_proc_exec(void *arg __unused, struct proc *p, struct image_params *imgp)
|
|||||||
*/
|
*/
|
||||||
if (__predict_false((imgp->sysent->sv_flags & SV_ABI_MASK) ==
|
if (__predict_false((imgp->sysent->sv_flags & SV_ABI_MASK) ==
|
||||||
SV_ABI_LINUX)) {
|
SV_ABI_LINUX)) {
|
||||||
LIN_SDT_PROBE2(emul, proc_exec, entry, p, imgp);
|
|
||||||
if (SV_PROC_ABI(p) == SV_ABI_LINUX)
|
if (SV_PROC_ABI(p) == SV_ABI_LINUX)
|
||||||
linux_proc_init(td, NULL, 0);
|
linux_proc_init(td, NULL, 0);
|
||||||
else
|
else
|
||||||
linux_proc_init(td, td, 0);
|
linux_proc_init(td, td, 0);
|
||||||
|
|
||||||
LIN_SDT_PROBE0(emul, proc_exec, return);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
|
||||||
linux_thread_detach(struct thread *td)
|
|
||||||
{
|
|
||||||
struct linux_sys_futex_args cup;
|
|
||||||
struct linux_emuldata *em;
|
|
||||||
int *child_clear_tid;
|
|
||||||
int null = 0;
|
|
||||||
int error;
|
|
||||||
|
|
||||||
LIN_SDT_PROBE1(emul, linux_thread_detach, entry, td);
|
|
||||||
|
|
||||||
em = em_find(td);
|
|
||||||
KASSERT(em != NULL, ("thread_detach: emuldata not found.\n"));
|
|
||||||
|
|
||||||
LINUX_CTR1(exit, "thread detach(%d)", em->em_tid);
|
|
||||||
|
|
||||||
release_futexes(td, em);
|
|
||||||
|
|
||||||
child_clear_tid = em->child_clear_tid;
|
|
||||||
|
|
||||||
if (child_clear_tid != NULL) {
|
|
||||||
|
|
||||||
LINUX_CTR2(exit, "thread detach(%d) %p",
|
|
||||||
em->em_tid, child_clear_tid);
|
|
||||||
|
|
||||||
error = copyout(&null, child_clear_tid, sizeof(null));
|
|
||||||
if (error) {
|
|
||||||
LIN_SDT_PROBE1(emul, linux_thread_detach,
|
|
||||||
child_clear_tid_error, error);
|
|
||||||
|
|
||||||
LIN_SDT_PROBE0(emul, linux_thread_detach, return);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
cup.uaddr = child_clear_tid;
|
|
||||||
cup.op = LINUX_FUTEX_WAKE;
|
|
||||||
cup.val = 1; /* wake one */
|
|
||||||
cup.timeout = NULL;
|
|
||||||
cup.uaddr2 = NULL;
|
|
||||||
cup.val3 = 0;
|
|
||||||
error = linux_sys_futex(td, &cup);
|
|
||||||
/*
|
|
||||||
* this cannot happen at the moment and if this happens it
|
|
||||||
* probably means there is a user space bug
|
|
||||||
*/
|
|
||||||
if (error) {
|
|
||||||
LIN_SDT_PROBE0(emul, linux_thread_detach, futex_failed);
|
|
||||||
printf(LMSG("futex stuff in thread_detach failed.\n"));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
LIN_SDT_PROBE0(emul, linux_thread_detach, return);
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
void
|
||||||
linux_thread_dtor(void *arg __unused, struct thread *td)
|
linux_thread_dtor(void *arg __unused, struct thread *td)
|
||||||
{
|
{
|
||||||
@ -311,12 +227,10 @@ linux_schedtail(struct thread *td)
|
|||||||
int error = 0;
|
int error = 0;
|
||||||
int *child_set_tid;
|
int *child_set_tid;
|
||||||
|
|
||||||
LIN_SDT_PROBE1(emul, linux_schedtail, entry, td);
|
|
||||||
|
|
||||||
p = td->td_proc;
|
p = td->td_proc;
|
||||||
|
|
||||||
em = em_find(td);
|
em = em_find(td);
|
||||||
KASSERT(em != NULL, ("linux_schedtail: emuldata not found.\n"));
|
KASSERT(em != NULL, ("linux_schedtail: thread emuldata not found.\n"));
|
||||||
child_set_tid = em->child_set_tid;
|
child_set_tid = em->child_set_tid;
|
||||||
|
|
||||||
if (child_set_tid != NULL) {
|
if (child_set_tid != NULL) {
|
||||||
@ -324,34 +238,6 @@ linux_schedtail(struct thread *td)
|
|||||||
sizeof(em->em_tid));
|
sizeof(em->em_tid));
|
||||||
LINUX_CTR4(clone, "schedtail(%d) %p stored %d error %d",
|
LINUX_CTR4(clone, "schedtail(%d) %p stored %d error %d",
|
||||||
td->td_tid, child_set_tid, em->em_tid, error);
|
td->td_tid, child_set_tid, em->em_tid, error);
|
||||||
|
|
||||||
if (error != 0) {
|
|
||||||
LIN_SDT_PROBE1(emul, linux_schedtail, copyout_error,
|
|
||||||
error);
|
|
||||||
}
|
|
||||||
} else
|
} else
|
||||||
LINUX_CTR1(clone, "schedtail(%d)", em->em_tid);
|
LINUX_CTR1(clone, "schedtail(%d)", em->em_tid);
|
||||||
|
|
||||||
LIN_SDT_PROBE0(emul, linux_schedtail, return);
|
|
||||||
}
|
|
||||||
|
|
||||||
int
|
|
||||||
linux_set_tid_address(struct thread *td, struct linux_set_tid_address_args *args)
|
|
||||||
{
|
|
||||||
struct linux_emuldata *em;
|
|
||||||
|
|
||||||
LIN_SDT_PROBE1(emul, linux_set_tid_address, entry, args->tidptr);
|
|
||||||
|
|
||||||
em = em_find(td);
|
|
||||||
KASSERT(em != NULL, ("set_tid_address: emuldata not found.\n"));
|
|
||||||
|
|
||||||
em->child_clear_tid = args->tidptr;
|
|
||||||
|
|
||||||
td->td_retval[0] = em->em_tid;
|
|
||||||
|
|
||||||
LINUX_CTR3(set_tid_address, "tidptr(%d) %p, returns %d",
|
|
||||||
em->em_tid, args->tidptr, td->td_retval[0]);
|
|
||||||
|
|
||||||
LIN_SDT_PROBE0(emul, linux_set_tid_address, return);
|
|
||||||
return (0);
|
|
||||||
}
|
}
|
||||||
|
@ -41,7 +41,7 @@ struct linux_emuldata {
|
|||||||
int *child_clear_tid;/* in clone(): Child's TID to clear on exit */
|
int *child_clear_tid;/* in clone(): Child's TID to clear on exit */
|
||||||
|
|
||||||
int pdeath_signal; /* parent death signal */
|
int pdeath_signal; /* parent death signal */
|
||||||
int flags; /* different emuldata flags */
|
int flags; /* thread emuldata flags */
|
||||||
int em_tid; /* thread id */
|
int em_tid; /* thread id */
|
||||||
|
|
||||||
struct linux_robust_list_head *robust_futexes;
|
struct linux_robust_list_head *robust_futexes;
|
||||||
@ -49,10 +49,6 @@ struct linux_emuldata {
|
|||||||
|
|
||||||
struct linux_emuldata *em_find(struct thread *);
|
struct linux_emuldata *em_find(struct thread *);
|
||||||
|
|
||||||
/* emuldata flags */
|
|
||||||
#define LINUX_XDEPR_REQUEUEOP 0x00000001 /* uses deprecated
|
|
||||||
futex REQUEUE op*/
|
|
||||||
|
|
||||||
void linux_proc_init(struct thread *, struct thread *, int);
|
void linux_proc_init(struct thread *, struct thread *, int);
|
||||||
void linux_proc_exit(void *, struct proc *);
|
void linux_proc_exit(void *, struct proc *);
|
||||||
void linux_schedtail(struct thread *);
|
void linux_schedtail(struct thread *);
|
||||||
@ -61,4 +57,19 @@ void linux_thread_dtor(void *arg __unused, struct thread *);
|
|||||||
void linux_thread_detach(struct thread *);
|
void linux_thread_detach(struct thread *);
|
||||||
int linux_common_execve(struct thread *, struct image_args *);
|
int linux_common_execve(struct thread *, struct image_args *);
|
||||||
|
|
||||||
|
/* process emuldata flags */
|
||||||
|
#define LINUX_XDEPR_REQUEUEOP 0x00000001 /* uses deprecated
|
||||||
|
futex REQUEUE op*/
|
||||||
|
struct linux_pemuldata {
|
||||||
|
uint32_t flags; /* process emuldata flags */
|
||||||
|
struct sx pem_sx; /* lock for this struct */
|
||||||
|
};
|
||||||
|
|
||||||
|
#define LINUX_PEM_XLOCK(p) sx_xlock(&(p)->pem_sx)
|
||||||
|
#define LINUX_PEM_XUNLOCK(p) sx_xunlock(&(p)->pem_sx)
|
||||||
|
#define LINUX_PEM_SLOCK(p) sx_slock(&(p)->pem_sx)
|
||||||
|
#define LINUX_PEM_SUNLOCK(p) sx_sunlock(&(p)->pem_sx)
|
||||||
|
|
||||||
|
struct linux_pemuldata *pem_find(struct proc *);
|
||||||
|
|
||||||
#endif /* !_LINUX_EMUL_H_ */
|
#endif /* !_LINUX_EMUL_H_ */
|
||||||
|
@ -58,6 +58,7 @@ __FBSDID("$FreeBSD$");
|
|||||||
#endif
|
#endif
|
||||||
#include <compat/linux/linux_signal.h>
|
#include <compat/linux/linux_signal.h>
|
||||||
#include <compat/linux/linux_emul.h>
|
#include <compat/linux/linux_emul.h>
|
||||||
|
#include <compat/linux/linux_futex.h>
|
||||||
#include <compat/linux/linux_misc.h>
|
#include <compat/linux/linux_misc.h>
|
||||||
#include <compat/linux/linux_util.h>
|
#include <compat/linux/linux_util.h>
|
||||||
|
|
||||||
@ -404,3 +405,63 @@ linux_exit(struct thread *td, struct linux_exit_args *args)
|
|||||||
exit1(td, W_EXITCODE(args->rval, 0));
|
exit1(td, W_EXITCODE(args->rval, 0));
|
||||||
/* NOTREACHED */
|
/* NOTREACHED */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
linux_set_tid_address(struct thread *td, struct linux_set_tid_address_args *args)
|
||||||
|
{
|
||||||
|
struct linux_emuldata *em;
|
||||||
|
|
||||||
|
em = em_find(td);
|
||||||
|
KASSERT(em != NULL, ("set_tid_address: emuldata not found.\n"));
|
||||||
|
|
||||||
|
em->child_clear_tid = args->tidptr;
|
||||||
|
|
||||||
|
td->td_retval[0] = em->em_tid;
|
||||||
|
|
||||||
|
LINUX_CTR3(set_tid_address, "tidptr(%d) %p, returns %d",
|
||||||
|
em->em_tid, args->tidptr, td->td_retval[0]);
|
||||||
|
|
||||||
|
return (0);
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
linux_thread_detach(struct thread *td)
|
||||||
|
{
|
||||||
|
struct linux_sys_futex_args cup;
|
||||||
|
struct linux_emuldata *em;
|
||||||
|
int *child_clear_tid;
|
||||||
|
int error;
|
||||||
|
|
||||||
|
em = em_find(td);
|
||||||
|
KASSERT(em != NULL, ("thread_detach: emuldata not found.\n"));
|
||||||
|
|
||||||
|
LINUX_CTR1(exit, "thread detach(%d)", em->em_tid);
|
||||||
|
|
||||||
|
release_futexes(td, em);
|
||||||
|
|
||||||
|
child_clear_tid = em->child_clear_tid;
|
||||||
|
|
||||||
|
if (child_clear_tid != NULL) {
|
||||||
|
|
||||||
|
LINUX_CTR2(exit, "thread detach(%d) %p",
|
||||||
|
em->em_tid, child_clear_tid);
|
||||||
|
|
||||||
|
error = suword32(child_clear_tid, 0);
|
||||||
|
if (error != 0)
|
||||||
|
return;
|
||||||
|
|
||||||
|
cup.uaddr = child_clear_tid;
|
||||||
|
cup.op = LINUX_FUTEX_WAKE;
|
||||||
|
cup.val = 1; /* wake one */
|
||||||
|
cup.timeout = NULL;
|
||||||
|
cup.uaddr2 = NULL;
|
||||||
|
cup.val3 = 0;
|
||||||
|
error = linux_sys_futex(td, &cup);
|
||||||
|
/*
|
||||||
|
* this cannot happen at the moment and if this happens it
|
||||||
|
* probably means there is a user space bug
|
||||||
|
*/
|
||||||
|
if (error != 0)
|
||||||
|
linux_msg(td, "futex stuff in thread_detach failed.");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -653,7 +653,7 @@ int
|
|||||||
linux_sys_futex(struct thread *td, struct linux_sys_futex_args *args)
|
linux_sys_futex(struct thread *td, struct linux_sys_futex_args *args)
|
||||||
{
|
{
|
||||||
int clockrt, nrwake, op_ret, ret;
|
int clockrt, nrwake, op_ret, ret;
|
||||||
struct linux_emuldata *em;
|
struct linux_pemuldata *pem;
|
||||||
struct waiting_proc *wp;
|
struct waiting_proc *wp;
|
||||||
struct futex *f, *f2;
|
struct futex *f, *f2;
|
||||||
struct l_timespec timeout;
|
struct l_timespec timeout;
|
||||||
@ -973,12 +973,12 @@ linux_sys_futex(struct thread *td, struct linux_sys_futex_args *args)
|
|||||||
* Glibc versions prior to 2.3.3 fall back to FUTEX_WAKE when
|
* Glibc versions prior to 2.3.3 fall back to FUTEX_WAKE when
|
||||||
* FUTEX_REQUEUE returned EINVAL.
|
* FUTEX_REQUEUE returned EINVAL.
|
||||||
*/
|
*/
|
||||||
em = em_find(td);
|
pem = pem_find(td->td_proc);
|
||||||
if ((em->flags & LINUX_XDEPR_REQUEUEOP) == 0) {
|
if ((pem->flags & LINUX_XDEPR_REQUEUEOP) == 0) {
|
||||||
linux_msg(td,
|
linux_msg(td,
|
||||||
"linux_sys_futex: "
|
"linux_sys_futex: "
|
||||||
"unsupported futex_requeue op\n");
|
"unsupported futex_requeue op\n");
|
||||||
em->flags |= LINUX_XDEPR_REQUEUEOP;
|
pem->flags |= LINUX_XDEPR_REQUEUEOP;
|
||||||
LIN_SDT_PROBE0(futex, linux_sys_futex,
|
LIN_SDT_PROBE0(futex, linux_sys_futex,
|
||||||
deprecated_requeue);
|
deprecated_requeue);
|
||||||
}
|
}
|
||||||
|
@ -53,6 +53,7 @@ __FBSDID("$FreeBSD$");
|
|||||||
#include <sys/racct.h>
|
#include <sys/racct.h>
|
||||||
#include <sys/resourcevar.h>
|
#include <sys/resourcevar.h>
|
||||||
#include <sys/sched.h>
|
#include <sys/sched.h>
|
||||||
|
#include <sys/sdt.h>
|
||||||
#include <sys/signalvar.h>
|
#include <sys/signalvar.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#include <sys/syscallsubr.h>
|
#include <sys/syscallsubr.h>
|
||||||
@ -83,6 +84,7 @@ __FBSDID("$FreeBSD$");
|
|||||||
#include <machine/../linux/linux_proto.h>
|
#include <machine/../linux/linux_proto.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include <compat/linux/linux_dtrace.h>
|
||||||
#include <compat/linux/linux_file.h>
|
#include <compat/linux/linux_file.h>
|
||||||
#include <compat/linux/linux_mib.h>
|
#include <compat/linux/linux_mib.h>
|
||||||
#include <compat/linux/linux_signal.h>
|
#include <compat/linux/linux_signal.h>
|
||||||
@ -91,6 +93,19 @@ __FBSDID("$FreeBSD$");
|
|||||||
#include <compat/linux/linux_emul.h>
|
#include <compat/linux/linux_emul.h>
|
||||||
#include <compat/linux/linux_misc.h>
|
#include <compat/linux/linux_misc.h>
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Special DTrace provider for the linuxulator.
|
||||||
|
*
|
||||||
|
* In this file we define the provider for the entire linuxulator. All
|
||||||
|
* modules (= files of the linuxulator) use it.
|
||||||
|
*
|
||||||
|
* We define a different name depending on the emulated bitsize, see
|
||||||
|
* ../../<ARCH>/linux{,32}/linux.h, e.g.:
|
||||||
|
* native bitsize = linuxulator
|
||||||
|
* amd64, 32bit emulation = linuxulator32
|
||||||
|
*/
|
||||||
|
LIN_SDT_PROVIDER_DEFINE(LINUX_DTRACE);
|
||||||
|
|
||||||
int stclohz; /* Statistics clock frequency */
|
int stclohz; /* Statistics clock frequency */
|
||||||
|
|
||||||
static unsigned int linux_to_bsd_resource[LINUX_RLIM_NLIMITS] = {
|
static unsigned int linux_to_bsd_resource[LINUX_RLIM_NLIMITS] = {
|
||||||
|
@ -10,7 +10,7 @@ CFLAGS+=-DCOMPAT_FREEBSD32 -DCOMPAT_LINUX32
|
|||||||
VDSO= linux${SFX}_vdso
|
VDSO= linux${SFX}_vdso
|
||||||
|
|
||||||
KMOD= linux
|
KMOD= linux
|
||||||
SRCS= linux_fork.c linux${SFX}_dummy.c linux_emul.c linux_file.c \
|
SRCS= linux_fork.c linux${SFX}_dummy.c linux_file.c \
|
||||||
linux_futex.c linux_getcwd.c linux_ioctl.c linux_ipc.c \
|
linux_futex.c linux_getcwd.c linux_ioctl.c linux_ipc.c \
|
||||||
linux${SFX}_machdep.c linux_misc.c linux_signal.c \
|
linux${SFX}_machdep.c linux_misc.c linux_signal.c \
|
||||||
linux_socket.c linux_stats.c linux_sysctl.c linux${SFX}_sysent.c \
|
linux_socket.c linux_stats.c linux_sysctl.c linux${SFX}_sysent.c \
|
||||||
@ -30,7 +30,8 @@ SRCS+= opt_apic.h
|
|||||||
OBJS= ${VDSO}.so
|
OBJS= ${VDSO}.so
|
||||||
|
|
||||||
.if ${MACHINE_CPUARCH} == "i386"
|
.if ${MACHINE_CPUARCH} == "i386"
|
||||||
SRCS+= linux_ptrace.c imgact_linux.c linux_util.c linux_mib.c opt_cpu.h
|
SRCS+= linux_ptrace.c imgact_linux.c linux_util.c linux_mib.c \
|
||||||
|
linux_emul.c opt_cpu.h
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
.if ${MACHINE_CPUARCH} == "i386"
|
.if ${MACHINE_CPUARCH} == "i386"
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
.PATH: ${.CURDIR}/../../compat/linux
|
.PATH: ${.CURDIR}/../../compat/linux
|
||||||
|
|
||||||
KMOD= linux_common
|
KMOD= linux_common
|
||||||
SRCS= linux_common.c linux_mib.c linux_util.c \
|
SRCS= linux_common.c linux_mib.c linux_util.c linux_emul.c \
|
||||||
opt_compat.h device_if.h vnode_if.h bus_if.h
|
opt_compat.h device_if.h vnode_if.h bus_if.h
|
||||||
|
|
||||||
EXPORT_SYMS=
|
EXPORT_SYMS=
|
||||||
|
Loading…
x
Reference in New Issue
Block a user