#include <sys/param.h>
#include <sys/lock.h>
#include <sys/mutex.h>
#include <sys/systm.h>
#include <sys/proc.h>
#include <vm/vm.h>
#include <vm/pmap.h>
#include <vm/vm_extern.h>
#include <vm/vm_map.h>
#include <machine/mmuvar.h>
#include <machine/pcb.h>
#include <machine/vmparam.h>
#include <machine/ifunc.h>
#ifdef __powerpc64__
int subyte_remap(volatile void *addr, int byte);
int subyte_direct(volatile void *addr, int byte);
int copyinstr_remap(const void *udaddr, void *kaddr, size_t len, size_t *done);
int copyinstr_direct(const void *udaddr, void *kaddr, size_t len, size_t *done);
int copyout_remap(const void *kaddr, void *udaddr, size_t len);
int copyout_direct(const void *kaddr, void *udaddr, size_t len);
int copyin_remap(const void *uaddr, void *kaddr, size_t len);
int copyin_direct(const void *uaddr, void *kaddr, size_t len);
int suword16_remap(volatile void *addr, int word);
int suword16_direct(volatile void *addr, int word);
int suword32_remap(volatile void *addr, int word);
int suword32_direct(volatile void *addr, int word);
int suword_remap(volatile void *addr, long word);
int suword_direct(volatile void *addr, long word);
int suword64_remap(volatile void *addr, int64_t word);
int suword64_direct(volatile void *addr, int64_t word);
int fubyte_remap(volatile const void *addr);
int fubyte_direct(volatile const void *addr);
int fuword16_remap(volatile const void *addr);
int fuword16_direct(volatile const void *addr);
int fueword32_remap(volatile const void *addr, int32_t *val);
int fueword32_direct(volatile const void *addr, int32_t *val);
int fueword64_remap(volatile const void *addr, int64_t *val);
int fueword64_direct(volatile const void *addr, int64_t *val);
int fueword_remap(volatile const void *addr, long *val);
int fueword_direct(volatile const void *addr, long *val);
int casueword32_remap(volatile uint32_t *addr, uint32_t old, uint32_t *oldvalp,
uint32_t new);
int casueword32_direct(volatile uint32_t *addr, uint32_t old, uint32_t *oldvalp,
uint32_t new);
int casueword_remap(volatile u_long *addr, u_long old, u_long *oldvalp,
u_long new);
int casueword_direct(volatile u_long *addr, u_long old, u_long *oldvalp,
u_long new);
#define DEFINE_COPY_FUNC(ret, func, args) \
DEFINE_IFUNC(, ret, func, args) \
{ \
return (PMAP_RESOLVE_FUNC(map_user_ptr) ? \
func##_remap : func##_direct); \
}
DEFINE_COPY_FUNC(int, subyte, (volatile void *, int))
DEFINE_COPY_FUNC(int, copyinstr, (const void *, void *, size_t, size_t *))
DEFINE_COPY_FUNC(int, copyin, (const void *, void *, size_t))
DEFINE_COPY_FUNC(int, copyout, (const void *, void *, size_t))
DEFINE_COPY_FUNC(int, suword, (volatile void *, long))
DEFINE_COPY_FUNC(int, suword16, (volatile void *, int))
DEFINE_COPY_FUNC(int, suword32, (volatile void *, int))
DEFINE_COPY_FUNC(int, suword64, (volatile void *, int64_t))
DEFINE_COPY_FUNC(int, fubyte, (volatile const void *))
DEFINE_COPY_FUNC(int, fuword16, (volatile const void *))
DEFINE_COPY_FUNC(int, fueword32, (volatile const void *, int32_t *))
DEFINE_COPY_FUNC(int, fueword64, (volatile const void *, int64_t *))
DEFINE_COPY_FUNC(int, fueword, (volatile const void *, long *))
DEFINE_COPY_FUNC(int, casueword32,
(volatile uint32_t *, uint32_t, uint32_t *, uint32_t))
DEFINE_COPY_FUNC(int, casueword, (volatile u_long *, u_long, u_long *, u_long))
#define REMAP(x) x##_remap
#else
#define REMAP(x) x
#endif
int
REMAP(copyout)(const void *kaddr, void *udaddr, size_t len)
{
struct thread *td;
pmap_t pm;
jmp_buf env;
const char *kp;
char *up, *p;
size_t l;
td = curthread;
pm = &td->td_proc->p_vmspace->vm_pmap;
td->td_pcb->pcb_onfault = &env;
if (setjmp(env)) {
td->td_pcb->pcb_onfault = NULL;
return (EFAULT);
}
kp = kaddr;
up = udaddr;
while (len > 0) {
if (pmap_map_user_ptr(pm, up, (void **)&p, len, &l)) {
td->td_pcb->pcb_onfault = NULL;
return (EFAULT);
}
bcopy(kp, p, l);
up += l;
kp += l;
len -= l;
}
td->td_pcb->pcb_onfault = NULL;
return (0);
}
int
REMAP(copyin)(const void *udaddr, void *kaddr, size_t len)
{
struct thread *td;
pmap_t pm;
jmp_buf env;
const char *up;
char *kp, *p;
size_t l;
td = curthread;
pm = &td->td_proc->p_vmspace->vm_pmap;
td->td_pcb->pcb_onfault = &env;
if (setjmp(env)) {
td->td_pcb->pcb_onfault = NULL;
return (EFAULT);
}
kp = kaddr;
up = udaddr;
while (len > 0) {
if (pmap_map_user_ptr(pm, up, (void **)&p, len, &l)) {
td->td_pcb->pcb_onfault = NULL;
return (EFAULT);
}
bcopy(p, kp, l);
up += l;
kp += l;
len -= l;
}
td->td_pcb->pcb_onfault = NULL;
return (0);
}
int
REMAP(copyinstr)(const void *udaddr, void *kaddr, size_t len, size_t *done)
{
struct thread *td;
pmap_t pm;
jmp_buf env;
const char *up;
char *kp, *p;
size_t i, l, t;
int rv;
td = curthread;
pm = &td->td_proc->p_vmspace->vm_pmap;
t = 0;
rv = ENAMETOOLONG;
td->td_pcb->pcb_onfault = &env;
if (setjmp(env)) {
rv = EFAULT;
goto done;
}
kp = kaddr;
up = udaddr;
while (len > 0) {
if (pmap_map_user_ptr(pm, up, (void **)&p, len, &l)) {
rv = EFAULT;
goto done;
}
for (i = 0; len > 0 && i < l; i++, t++, len--) {
if ((*kp++ = *p++) == 0) {
i++, t++;
rv = 0;
goto done;
}
}
up += l;
}
done:
td->td_pcb->pcb_onfault = NULL;
if (done != NULL) {
*done = t;
}
return (rv);
}
int
REMAP(subyte)(volatile void *addr, int byte)
{
struct thread *td;
pmap_t pm;
jmp_buf env;
char *p;
td = curthread;
pm = &td->td_proc->p_vmspace->vm_pmap;
td->td_pcb->pcb_onfault = &env;
if (setjmp(env)) {
td->td_pcb->pcb_onfault = NULL;
return (-1);
}
if (pmap_map_user_ptr(pm, addr, (void **)&p, sizeof(*p), NULL)) {
td->td_pcb->pcb_onfault = NULL;
return (-1);
}
*p = (char)byte;
td->td_pcb->pcb_onfault = NULL;
return (0);
}
int
REMAP(suword16)(volatile void *addr, int word)
{
struct thread *td;
pmap_t pm;
jmp_buf env;
int16_t *p;
td = curthread;
pm = &td->td_proc->p_vmspace->vm_pmap;
td->td_pcb->pcb_onfault = &env;
if (setjmp(env)) {
td->td_pcb->pcb_onfault = NULL;
return (-1);
}
if (pmap_map_user_ptr(pm, addr, (void **)&p, sizeof(*p), NULL)) {
td->td_pcb->pcb_onfault = NULL;
return (-1);
}
*p = (int16_t)word;
td->td_pcb->pcb_onfault = NULL;
return (0);
}
#ifdef __powerpc64__
int
REMAP(suword32)(volatile void *addr, int word)
{
struct thread *td;
pmap_t pm;
jmp_buf env;
int *p;
td = curthread;
pm = &td->td_proc->p_vmspace->vm_pmap;
td->td_pcb->pcb_onfault = &env;
if (setjmp(env)) {
td->td_pcb->pcb_onfault = NULL;
return (-1);
}
if (pmap_map_user_ptr(pm, addr, (void **)&p, sizeof(*p), NULL)) {
td->td_pcb->pcb_onfault = NULL;
return (-1);
}
*p = word;
td->td_pcb->pcb_onfault = NULL;
return (0);
}
#else
int
REMAP(suword32)(volatile void *addr, int32_t word)
{
REMAP( return (suword)(addr, (long)word));
}
#endif
int
REMAP(suword)(volatile void *addr, long word)
{
struct thread *td;
pmap_t pm;
jmp_buf env;
long *p;
td = curthread;
pm = &td->td_proc->p_vmspace->vm_pmap;
td->td_pcb->pcb_onfault = &env;
if (setjmp(env)) {
td->td_pcb->pcb_onfault = NULL;
return (-1);
}
if (pmap_map_user_ptr(pm, addr, (void **)&p, sizeof(*p), NULL)) {
td->td_pcb->pcb_onfault = NULL;
return (-1);
}
*p = word;
td->td_pcb->pcb_onfault = NULL;
return (0);
}
#ifdef __powerpc64__
int
REMAP(suword64)(volatile void *addr, int64_t word)
{
return (REMAP(suword)(addr, (long)word));
}
#endif
int
REMAP(fubyte)(volatile const void *addr)
{
struct thread *td;
pmap_t pm;
jmp_buf env;
u_char *p;
int val;
td = curthread;
pm = &td->td_proc->p_vmspace->vm_pmap;
td->td_pcb->pcb_onfault = &env;
if (setjmp(env)) {
td->td_pcb->pcb_onfault = NULL;
return (-1);
}
if (pmap_map_user_ptr(pm, addr, (void **)&p, sizeof(*p), NULL)) {
td->td_pcb->pcb_onfault = NULL;
return (-1);
}
val = *p;
td->td_pcb->pcb_onfault = NULL;
return (val);
}
int
REMAP(fuword16)(volatile const void *addr)
{
struct thread *td;
pmap_t pm;
jmp_buf env;
uint16_t *p, val;
td = curthread;
pm = &td->td_proc->p_vmspace->vm_pmap;
td->td_pcb->pcb_onfault = &env;
if (setjmp(env)) {
td->td_pcb->pcb_onfault = NULL;
return (-1);
}
if (pmap_map_user_ptr(pm, addr, (void **)&p, sizeof(*p), NULL)) {
td->td_pcb->pcb_onfault = NULL;
return (-1);
}
val = *p;
td->td_pcb->pcb_onfault = NULL;
return (val);
}
int
REMAP(fueword32)(volatile const void *addr, int32_t *val)
{
struct thread *td;
pmap_t pm;
jmp_buf env;
int32_t *p;
td = curthread;
pm = &td->td_proc->p_vmspace->vm_pmap;
td->td_pcb->pcb_onfault = &env;
if (setjmp(env)) {
td->td_pcb->pcb_onfault = NULL;
return (-1);
}
if (pmap_map_user_ptr(pm, addr, (void **)&p, sizeof(*p), NULL)) {
td->td_pcb->pcb_onfault = NULL;
return (-1);
}
*val = *p;
td->td_pcb->pcb_onfault = NULL;
return (0);
}
#ifdef __powerpc64__
int
REMAP(fueword64)(volatile const void *addr, int64_t *val)
{
struct thread *td;
pmap_t pm;
jmp_buf env;
int64_t *p;
td = curthread;
pm = &td->td_proc->p_vmspace->vm_pmap;
td->td_pcb->pcb_onfault = &env;
if (setjmp(env)) {
td->td_pcb->pcb_onfault = NULL;
return (-1);
}
if (pmap_map_user_ptr(pm, addr, (void **)&p, sizeof(*p), NULL)) {
td->td_pcb->pcb_onfault = NULL;
return (-1);
}
*val = *p;
td->td_pcb->pcb_onfault = NULL;
return (0);
}
#endif
int
REMAP(fueword)(volatile const void *addr, long *val)
{
struct thread *td;
pmap_t pm;
jmp_buf env;
long *p;
td = curthread;
pm = &td->td_proc->p_vmspace->vm_pmap;
td->td_pcb->pcb_onfault = &env;
if (setjmp(env)) {
td->td_pcb->pcb_onfault = NULL;
return (-1);
}
if (pmap_map_user_ptr(pm, addr, (void **)&p, sizeof(*p), NULL)) {
td->td_pcb->pcb_onfault = NULL;
return (-1);
}
*val = *p;
td->td_pcb->pcb_onfault = NULL;
return (0);
}
int
REMAP(casueword32)(volatile uint32_t *addr, uint32_t old, uint32_t *oldvalp,
uint32_t new)
{
struct thread *td;
pmap_t pm;
jmp_buf env;
uint32_t *p, val;
int res;
td = curthread;
pm = &td->td_proc->p_vmspace->vm_pmap;
td->td_pcb->pcb_onfault = &env;
if (setjmp(env)) {
td->td_pcb->pcb_onfault = NULL;
return (-1);
}
if (pmap_map_user_ptr(pm, (void *)(uintptr_t)addr, (void **)&p,
sizeof(*p), NULL)) {
td->td_pcb->pcb_onfault = NULL;
return (-1);
}
res = 0;
__asm __volatile (
"lwarx %0, 0, %3\n\t"
"cmplw %4, %0\n\t"
"bne 1f\n\t"
"stwcx. %5, 0, %3\n\t"
"bne- 2f\n\t"
"b 3f\n\t"
"1:\n\t"
"stwcx. %0, 0, %3\n\t"
"2:li %2, 1\n\t"
"3:\n\t"
: "=&r" (val), "=m" (*p), "+&r" (res)
: "r" (p), "r" (old), "r" (new), "m" (*p)
: "cr0", "memory");
td->td_pcb->pcb_onfault = NULL;
*oldvalp = val;
return (res);
}
#ifndef __powerpc64__
int
REMAP(casueword)(volatile u_long *addr, u_long old, u_long *oldvalp, u_long new)
{
return (casueword32((volatile uint32_t *)addr, old,
(uint32_t *)oldvalp, new));
}
#else
int
REMAP(casueword)(volatile u_long *addr, u_long old, u_long *oldvalp, u_long new)
{
struct thread *td;
pmap_t pm;
jmp_buf env;
u_long *p, val;
int res;
td = curthread;
pm = &td->td_proc->p_vmspace->vm_pmap;
td->td_pcb->pcb_onfault = &env;
if (setjmp(env)) {
td->td_pcb->pcb_onfault = NULL;
return (-1);
}
if (pmap_map_user_ptr(pm, (void *)(uintptr_t)addr, (void **)&p,
sizeof(*p), NULL)) {
td->td_pcb->pcb_onfault = NULL;
return (-1);
}
res = 0;
__asm __volatile (
"ldarx %0, 0, %3\n\t"
"cmpld %4, %0\n\t"
"bne 1f\n\t"
"stdcx. %5, 0, %3\n\t"
"bne- 2f\n\t"
"b 3f\n\t"
"1:\n\t"
"stdcx. %0, 0, %3\n\t"
"2:li %2, 1\n\t"
"3:\n\t"
: "=&r" (val), "=m" (*p), "+&r" (res)
: "r" (p), "r" (old), "r" (new), "m" (*p)
: "cr0", "memory");
td->td_pcb->pcb_onfault = NULL;
*oldvalp = val;
return (res);
}
#endif