2010-03-12 16:58:41 +01:00
|
|
|
/* The kernel calls that are implemented in this file:
|
|
|
|
* m_type: SYS_SETMCONTEXT
|
|
|
|
* m_type: SYS_GETMCONTEXT
|
|
|
|
*
|
|
|
|
* The parameters for these kernel calls are:
|
|
|
|
* m1_i1: PR_ENDPT # proc endpoint doing call
|
|
|
|
* m1_p1: PR_MEM_PTR # pointer to mcontext structure
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2010-04-02 00:22:33 +02:00
|
|
|
#include "kernel/system.h"
|
2010-03-12 16:58:41 +01:00
|
|
|
#include <string.h>
|
|
|
|
#include <machine/mcontext.h>
|
|
|
|
|
|
|
|
#if USE_MCONTEXT
|
|
|
|
/*===========================================================================*
|
|
|
|
* do_getmcontext *
|
|
|
|
*===========================================================================*/
|
2012-03-25 20:25:53 +02:00
|
|
|
int do_getmcontext(struct proc * caller, message * m_ptr)
|
2010-03-12 16:58:41 +01:00
|
|
|
{
|
|
|
|
/* Retrieve machine context of a process */
|
|
|
|
|
|
|
|
register struct proc *rp;
|
|
|
|
int proc_nr, r;
|
|
|
|
mcontext_t mc;
|
|
|
|
|
|
|
|
if (! isokendpt(m_ptr->PR_ENDPT, &proc_nr)) return(EINVAL);
|
|
|
|
if (iskerneln(proc_nr)) return(EPERM);
|
|
|
|
rp = proc_addr(proc_nr);
|
|
|
|
|
|
|
|
#if (_MINIX_CHIP == _CHIP_INTEL)
|
2010-07-01 14:31:53 +02:00
|
|
|
if (!proc_used_fpu(rp))
|
2010-03-12 16:58:41 +01:00
|
|
|
return(OK); /* No state to copy */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Get the mcontext structure into our address space. */
|
|
|
|
if ((r = data_copy(m_ptr->PR_ENDPT, (vir_bytes) m_ptr->PR_CTX_PTR, KERNEL,
|
|
|
|
(vir_bytes) &mc, (phys_bytes) sizeof(struct __mcontext))) != OK)
|
|
|
|
return(r);
|
|
|
|
|
|
|
|
#if (_MINIX_CHIP == _CHIP_INTEL)
|
|
|
|
/* Copy FPU state */
|
|
|
|
mc.mc_fpu_flags = 0;
|
2010-07-01 14:23:25 +02:00
|
|
|
if (proc_used_fpu(rp)) {
|
2010-06-07 09:43:17 +02:00
|
|
|
/* make sure that the FPU context is saved into proc structure first */
|
2010-09-15 16:11:25 +02:00
|
|
|
save_fpu(rp);
|
2011-07-18 19:44:17 +02:00
|
|
|
mc.mc_fpu_flags = rp->p_misc_flags & MF_FPU_INITIALIZED;
|
2012-04-19 15:06:47 +02:00
|
|
|
memcpy(&(mc.mc_fpu_state), rp->p_seg.fpu_state, FPU_XFP_SIZE);
|
2010-03-12 16:58:41 +01:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/* Copy the mcontext structure to the user's address space. */
|
|
|
|
if ((r = data_copy(KERNEL, (vir_bytes) &mc, m_ptr->PR_ENDPT,
|
|
|
|
(vir_bytes) m_ptr->PR_CTX_PTR,
|
|
|
|
(phys_bytes) sizeof(struct __mcontext))) != OK)
|
|
|
|
return(r);
|
|
|
|
|
|
|
|
return(OK);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*===========================================================================*
|
|
|
|
* do_setmcontext *
|
|
|
|
*===========================================================================*/
|
2012-03-25 20:25:53 +02:00
|
|
|
int do_setmcontext(struct proc * caller, message * m_ptr)
|
2010-03-12 16:58:41 +01:00
|
|
|
{
|
|
|
|
/* Set machine context of a process */
|
|
|
|
|
|
|
|
register struct proc *rp;
|
|
|
|
int proc_nr, r;
|
|
|
|
mcontext_t mc;
|
|
|
|
|
|
|
|
if (!isokendpt(m_ptr->PR_ENDPT, &proc_nr)) return(EINVAL);
|
|
|
|
rp = proc_addr(proc_nr);
|
|
|
|
|
|
|
|
/* Get the mcontext structure into our address space. */
|
|
|
|
if ((r = data_copy(m_ptr->PR_ENDPT, (vir_bytes) m_ptr->PR_CTX_PTR, KERNEL,
|
|
|
|
(vir_bytes) &mc, (phys_bytes) sizeof(struct __mcontext))) != OK)
|
|
|
|
return(r);
|
|
|
|
|
|
|
|
#if (_MINIX_CHIP == _CHIP_INTEL)
|
|
|
|
/* Copy FPU state */
|
|
|
|
if (mc.mc_fpu_flags & MF_FPU_INITIALIZED) {
|
|
|
|
rp->p_misc_flags |= MF_FPU_INITIALIZED;
|
2012-04-19 15:06:47 +02:00
|
|
|
memcpy(rp->p_seg.fpu_state, &(mc.mc_fpu_state), FPU_XFP_SIZE);
|
2010-03-12 16:58:41 +01:00
|
|
|
} else
|
|
|
|
rp->p_misc_flags &= ~MF_FPU_INITIALIZED;
|
2010-06-07 09:43:17 +02:00
|
|
|
/* force reloading FPU in either case */
|
2010-09-15 16:11:25 +02:00
|
|
|
release_fpu(rp);
|
2010-03-12 16:58:41 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
return(OK);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|