NetBSD/sys/compat/mach/mach_vm.c

740 lines
21 KiB
C
Raw Normal View History

/* $NetBSD: mach_vm.c,v 1.38 2003/11/27 23:44:49 manu Exp $ */
/*-
* Copyright (c) 2002-2003 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
* by Emmanuel Dreyfus
*
* 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: mach_vm.c,v 1.38 2003/11/27 23:44:49 manu Exp $");
#include <sys/types.h>
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/mount.h>
#include <sys/proc.h>
#include <sys/sa.h>
#include <sys/mman.h>
#include <sys/malloc.h>
#include <sys/vnode.h>
#include <sys/file.h>
#include <sys/filedesc.h>
#include <sys/exec.h>
#include <sys/syscallargs.h>
#include <uvm/uvm_prot.h>
#include <uvm/uvm_map.h>
2003-06-04 00:09:37 +04:00
#include <uvm/uvm_extern.h>
/* Too much debug output from here, but we might need it later... */
#undef DEBUG_MACH
#include <compat/mach/mach_types.h>
#include <compat/mach/mach_message.h>
#include <compat/mach/mach_clock.h>
#include <compat/mach/mach_vm.h>
#include <compat/mach/mach_errno.h>
#include <compat/mach/mach_port.h>
#include <compat/mach/mach_services.h>
#include <compat/mach/mach_syscallargs.h>
int
mach_vm_map(args)
struct mach_trap_args *args;
{
mach_vm_map_request_t *req = args->smsg;
mach_vm_map_reply_t *rep = args->rmsg;
size_t *msglen = args->rsize;
struct lwp *tl = args->tl;
struct proc *tp = tl->l_proc;
struct sys_mmap_args cup;
vaddr_t addr;
int error, flags;
void *ret;
DPRINTF(("mach_vm_map(addr = %p, size = 0x%08x, obj = 0x%x, "
"mask = 0x%08x, flags = 0x%x, offset = 0x%08llx, "
"copy = %d, cur_prot = 0x%x, max_prot = 0x%x, inh = 0x%x);\n",
(void *)req->req_address, req->req_size, req->req_object.name,
req->req_mask, req->req_flags, (off_t)req->req_offset, req->req_copy,
req->req_cur_protection, req->req_max_protection,
req->req_inherance));
2002-11-15 00:17:30 +03:00
#if 1
/* XXX Darwin fails on mapping a page at address 0 */
if (req->req_address == 0)
2003-03-04 01:07:39 +03:00
return mach_msg_error(args, ENOMEM);
#endif
req->req_size = round_page(req->req_size);
/* Where Mach uses 0x00ff, we use 0x0100 */
if ((req->req_mask & (req->req_mask + 1)) || (req->req_mask == 0))
req->req_mask = 0;
else
req->req_mask += 1;
if (req->req_flags & MACH_VM_FLAGS_ANYWHERE) {
SCARG(&cup, flags) = MAP_ANON;
flags = 0;
} else {
SCARG(&cup, flags) = MAP_ANON | MAP_FIXED;
flags = MAP_FIXED;
}
/*
* Use uvm_map_findspace to find a place which conforms to the
* requested alignement.
*/
vm_map_lock(&tp->p_vmspace->vm_map);
ret = uvm_map_findspace(&tp->p_vmspace->vm_map,
trunc_page(req->req_address), req->req_size, &addr,
NULL, 0, req->req_mask, flags);
vm_map_unlock(&tp->p_vmspace->vm_map);
if (ret == NULL)
return mach_msg_error(args, ENOMEM);
switch(req->req_inherance) {
case MACH_VM_INHERIT_SHARE:
SCARG(&cup, flags) |= MAP_INHERIT;
break;
2002-12-12 00:23:37 +03:00
case MACH_VM_INHERIT_COPY:
SCARG(&cup, flags) |= MAP_COPY;
break;
case MACH_VM_INHERIT_NONE:
break;
case MACH_VM_INHERIT_DONATE_COPY:
default:
uprintf("mach_vm_map: unsupported inherance flag %d\n",
req->req_inherance);
break;
}
SCARG(&cup, addr) = (void *)addr;
SCARG(&cup, len) = req->req_size;
SCARG(&cup, prot) = req->req_cur_protection;
SCARG(&cup, fd) = -1; /* XXX For now, no object mapping */
SCARG(&cup, pos) = req->req_offset;
if ((error = sys_mmap(tl, &cup, &rep->rep_retval)) != 0)
return mach_msg_error(args, error);
rep->rep_msgh.msgh_bits =
MACH_MSGH_REPLY_LOCAL_BITS(MACH_MSG_TYPE_MOVE_SEND_ONCE);
rep->rep_msgh.msgh_size = sizeof(*rep) - sizeof(rep->rep_trailer);
rep->rep_msgh.msgh_local_port = req->req_msgh.msgh_local_port;
rep->rep_msgh.msgh_id = req->req_msgh.msgh_id + 100;
rep->rep_trailer.msgh_trailer_size = 8;
*msglen = sizeof(*rep);
return 0;
}
int
mach_vm_allocate(args)
struct mach_trap_args *args;
{
mach_vm_allocate_request_t *req = args->smsg;
mach_vm_allocate_reply_t *rep = args->rmsg;
size_t *msglen = args->rsize;
struct lwp *tl = args->tl;
struct proc *tp = tl->l_proc;
struct sys_mmap_args cup;
2002-11-24 20:22:59 +03:00
vaddr_t addr;
size_t size;
int error;
addr = req->req_address;
size = req->req_size;
2002-11-24 20:22:59 +03:00
DPRINTF(("mach_vm_allocate(addr = %p, size = 0x%08x);\n",
(void *)addr, size));
size = round_page(size);
if (req->req_flags & MACH_VM_FLAGS_ANYWHERE)
addr = vm_map_min(&tp->p_vmspace->vm_map);
2002-11-24 20:22:59 +03:00
else
addr = trunc_page(addr);
if (((addr + size) > vm_map_max(&tp->p_vmspace->vm_map)) ||
((addr + size) <= addr))
addr = vm_map_min(&tp->p_vmspace->vm_map);
2002-11-15 00:17:30 +03:00
2002-11-24 20:22:59 +03:00
if (size == 0)
goto out;
2002-11-24 20:22:59 +03:00
SCARG(&cup, addr) = (caddr_t)addr;
SCARG(&cup, len) = size;
SCARG(&cup, prot) = PROT_READ | PROT_WRITE;
SCARG(&cup, flags) = MAP_ANON;
if ((req->req_flags & MACH_VM_FLAGS_ANYWHERE) == 0)
SCARG(&cup, flags) |= MAP_FIXED;
SCARG(&cup, fd) = -1;
SCARG(&cup, pos) = 0;
if ((error = sys_mmap(tl, &cup, &rep->rep_address)) != 0)
return mach_msg_error(args, error);
DPRINTF(("vm_allocate: success at %p\n", (void *)rep->rep_address));
2002-11-24 20:22:59 +03:00
out:
rep->rep_msgh.msgh_bits =
MACH_MSGH_REPLY_LOCAL_BITS(MACH_MSG_TYPE_MOVE_SEND_ONCE);
rep->rep_msgh.msgh_size = sizeof(*rep) - sizeof(rep->rep_trailer);
rep->rep_msgh.msgh_local_port = req->req_msgh.msgh_local_port;
rep->rep_msgh.msgh_id = req->req_msgh.msgh_id + 100;
rep->rep_trailer.msgh_trailer_size = 8;
*msglen = sizeof(*rep);
return 0;
}
2002-12-07 22:06:33 +03:00
int
mach_vm_deallocate(args)
struct mach_trap_args *args;
{
mach_vm_deallocate_request_t *req = args->smsg;
mach_vm_deallocate_reply_t *rep = args->rmsg;
size_t *msglen = args->rsize;
struct lwp *tl = args->tl;
struct sys_munmap_args cup;
int error;
2002-11-15 00:17:30 +03:00
DPRINTF(("mach_vm_deallocate(addr = %p, size = 0x%08x);\n",
(void *)req->req_address, req->req_size));
SCARG(&cup, addr) = (caddr_t)req->req_address;
SCARG(&cup, len) = req->req_size;
if ((error = sys_munmap(tl, &cup, &rep->rep_retval)) != 0)
return mach_msg_error(args, error);
rep->rep_msgh.msgh_bits =
MACH_MSGH_REPLY_LOCAL_BITS(MACH_MSG_TYPE_MOVE_SEND_ONCE);
rep->rep_msgh.msgh_size = sizeof(*rep) - sizeof(rep->rep_trailer);
rep->rep_msgh.msgh_local_port = req->req_msgh.msgh_local_port;
rep->rep_msgh.msgh_id = req->req_msgh.msgh_id + 100;
rep->rep_trailer.msgh_trailer_size = 8;
*msglen = sizeof(*rep);
return 0;
}
/*
* XXX This server message Id clashes with bootstrap_look_up
* Is there a wway to resolve this easily?
*/
#if 0
2002-12-07 22:06:33 +03:00
int
mach_vm_wire(args)
struct mach_trap_args *args;
2002-12-07 22:06:33 +03:00
{
mach_vm_wire_request_t *req = args->smsg;
mach_vm_wire_reply_t *rep = args->rmsg;
size_t *msglen = args->rsize;
struct lwp *tl = args->tl;
2002-12-07 22:06:33 +03:00
register_t retval;
int error;
DPRINTF(("mach_vm_wire(addr = %p, size = 0x%08x, prot = 0x%x);\n",
(void *)req->req_address, req->req_size, req->req_access));
2002-12-07 22:06:33 +03:00
bzero(&rep, sizeof(*rep));
2002-12-07 22:06:33 +03:00
if ((req->req_access & ~VM_PROT_ALL) != 0)
return mach_msg_error(args, EINVAL);
2002-12-07 22:06:33 +03:00
/*
* Mach maitains a count of how many times a page is wired
* and unwire it once the count is zero. We cannot do that yet.
*/
if (req->req_access == 0) {
2002-12-07 22:06:33 +03:00
struct sys_munlock_args cup;
SCARG(&cup, addr) = (void *)req->req_address;
SCARG(&cup, len) = req->req_size;
error = sys_munlock(tl, &cup, &retval);
2002-12-07 22:06:33 +03:00
} else {
struct sys_mlock_args cup;
SCARG(&cup, addr) = (void *)req->req_address;
SCARG(&cup, len) = req->req_size;
error = sys_mlock(tl, &cup, &retval);
2002-12-07 22:06:33 +03:00
}
if (error != 0)
return mach_msg_error(args, error);
2002-12-07 22:06:33 +03:00
if ((error = uvm_map_protect(&tl->l_proc->p_vmspace->vm_map,
req->req_address, req->req_address + req->req_size,
req->req_access, 0)) != 0)
return mach_msg_error(args, error);
2002-12-07 22:06:33 +03:00
rep->rep_msgh.msgh_bits =
2002-12-07 22:06:33 +03:00
MACH_MSGH_REPLY_LOCAL_BITS(MACH_MSG_TYPE_MOVE_SEND_ONCE);
rep->rep_msgh.msgh_size = sizeof(*rep) - sizeof(rep->rep_trailer);
rep->rep_msgh.msgh_local_port = req->req_msgh.msgh_local_port;
rep->rep_msgh.msgh_id = req->req_msgh.msgh_id + 100;
rep->rep_trailer.msgh_trailer_size = 8;
2002-12-07 22:06:33 +03:00
*msglen = sizeof(*rep);
return 0;
2002-12-07 22:06:33 +03:00
}
#endif
int
mach_vm_protect(args)
struct mach_trap_args *args;
{
mach_vm_protect_request_t *req = args->smsg;
mach_vm_protect_reply_t *rep = args->rmsg;
size_t *msglen = args->rsize;
struct lwp *tl = args->tl;
struct sys_mprotect_args cup;
register_t retval;
int error;
SCARG(&cup, addr) = (void *)req->req_addr;
SCARG(&cup, len) = req->req_size;
SCARG(&cup, prot) = req->req_prot;
if ((error = sys_mprotect(tl, &cup, &retval)) != 0)
return mach_msg_error(args, error);
rep->rep_msgh.msgh_bits =
MACH_MSGH_REPLY_LOCAL_BITS(MACH_MSG_TYPE_MOVE_SEND_ONCE);
rep->rep_msgh.msgh_size = sizeof(*rep) - sizeof(rep->rep_trailer);
rep->rep_msgh.msgh_local_port = req->req_msgh.msgh_local_port;
rep->rep_msgh.msgh_id = req->req_msgh.msgh_id + 100;
rep->rep_trailer.msgh_trailer_size = 8;
*msglen = sizeof(*rep);
return 0;
}
int
mach_sys_map_fd(l, v, retval)
struct lwp *l;
void *v;
register_t *retval;
{
struct mach_sys_map_fd_args /* {
syscallarg(int) fd;
syscallarg(mach_vm_offset_t) offset;
syscallarg(mach_vm_offset_t *) va;
syscallarg(mach_boolean_t) findspace;
syscallarg(mach_vm_size_t) size;
} */ *uap = v;
struct file *fp;
struct filedesc *fdp;
struct vnode *vp;
struct exec_vmcmd evc;
struct vm_map_entry *ret;
struct proc *p = l->l_proc;
register_t dontcare;
struct sys_munmap_args cup;
void *va;
int error;
if ((error = copyin(SCARG(uap, va), (void *)&va, sizeof(va))) != 0)
return error;
if (SCARG(uap, findspace) == 0) {
/* Make some free space XXX probably not The Right Way */
SCARG(&cup, addr) = va;
SCARG(&cup, len) = SCARG(uap, size);
(void)sys_munmap(l, &cup, &dontcare);
}
fdp = p->p_fd;
fp = fd_getfile(fdp, SCARG(uap, fd));
if (fp == NULL)
return EBADF;
FILE_USE(fp);
vp = (struct vnode *)fp->f_data;
2002-11-17 19:51:12 +03:00
vref(vp);
DPRINTF(("vm_map_fd: addr = %p len = 0x%08x\n", va, SCARG(uap, size)));
bzero(&evc, sizeof(evc));
evc.ev_addr = (u_long)va;
evc.ev_len = SCARG(uap, size);
evc.ev_prot = VM_PROT_ALL;
evc.ev_flags = SCARG(uap, findspace) ? 0 : VMCMD_FIXED;
evc.ev_proc = vmcmd_map_readvn;
evc.ev_offset = SCARG(uap, offset);
evc.ev_vp = vp;
2002-11-17 19:51:12 +03:00
vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
if ((error = (*evc.ev_proc)(p, &evc)) != 0) {
2002-11-17 19:51:12 +03:00
VOP_UNLOCK(vp, 0);
DPRINTF(("mach_sys_map_fd: mapping at %p failed\n", va));
if (SCARG(uap, findspace) == 0)
2002-11-17 19:51:12 +03:00
goto bad2;
2002-11-17 19:51:12 +03:00
vm_map_lock(&p->p_vmspace->vm_map);
if ((ret = uvm_map_findspace(&p->p_vmspace->vm_map,
vm_map_min(&p->p_vmspace->vm_map), evc.ev_len,
(vaddr_t *)&evc.ev_addr, NULL, 0, PAGE_SIZE, 0)) == NULL) {
2002-11-17 19:51:12 +03:00
vm_map_unlock(&p->p_vmspace->vm_map);
goto bad2;
}
vm_map_unlock(&p->p_vmspace->vm_map);
va = (void *)evc.ev_addr;
bzero(&evc, sizeof(evc));
evc.ev_addr = (u_long)va;
evc.ev_len = SCARG(uap, size);
evc.ev_prot = VM_PROT_ALL;
evc.ev_flags = 0;
evc.ev_proc = vmcmd_map_readvn;
evc.ev_offset = SCARG(uap, offset);
evc.ev_vp = vp;
DPRINTF(("mach_sys_map_fd: trying at %p\n", va));
2002-11-17 19:51:12 +03:00
vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
if ((error = (*evc.ev_proc)(p, &evc)) != 0)
2002-11-17 19:51:12 +03:00
goto bad1;
}
2002-11-17 19:51:12 +03:00
vput(vp);
FILE_UNUSE(fp, p);
2003-11-24 18:06:09 +03:00
DPRINTF(("mach_sys_map_fd: mapping at %p\n", (void *)evc.ev_addr));
va = (mach_vm_offset_t *)evc.ev_addr;
if ((error = copyout((void *)&va, SCARG(uap, va), sizeof(va))) != 0)
return error;
return 0;
2002-11-17 19:51:12 +03:00
bad1:
VOP_UNLOCK(vp, 0);
bad2:
vrele(vp);
FILE_UNUSE(fp, p);
DPRINTF(("mach_sys_map_fd: mapping at %p failed, error = %d\n",
(void *)evc.ev_addr, error));
return error;
}
2002-12-12 00:23:37 +03:00
int
mach_vm_inherit(args)
struct mach_trap_args *args;
2002-12-12 00:23:37 +03:00
{
mach_vm_inherit_request_t *req = args->smsg;
mach_vm_inherit_reply_t *rep = args->rmsg;
size_t *msglen = args->rsize;
struct lwp *tl = args->tl;
2002-12-12 00:23:37 +03:00
struct sys_minherit_args cup;
register_t retval;
int error;
SCARG(&cup, addr) = (void *)req->req_addr;
SCARG(&cup, len) = req->req_size;
/* Flags map well between Mach and NetBSD */
SCARG(&cup, inherit) = req->req_inh;
2002-12-12 00:23:37 +03:00
if ((error = sys_minherit(tl, &cup, &retval)) != 0)
return mach_msg_error(args, error);
2002-12-12 00:23:37 +03:00
rep->rep_msgh.msgh_bits =
2002-12-12 00:23:37 +03:00
MACH_MSGH_REPLY_LOCAL_BITS(MACH_MSG_TYPE_MOVE_SEND_ONCE);
rep->rep_msgh.msgh_size = sizeof(*rep) - sizeof(rep->rep_trailer);
rep->rep_msgh.msgh_local_port = req->req_msgh.msgh_local_port;
rep->rep_msgh.msgh_id = req->req_msgh.msgh_id + 100;
rep->rep_trailer.msgh_trailer_size = 8;
2002-12-12 00:23:37 +03:00
*msglen = sizeof(*rep);
return 0;
2002-12-12 00:23:37 +03:00
}
int
mach_make_memory_entry_64(args)
struct mach_trap_args *args;
{
mach_make_memory_entry_64_request_t *req = args->smsg;
mach_make_memory_entry_64_reply_t *rep = args->rmsg;
size_t *msglen = args->rsize;
struct lwp *l = args->l;
struct lwp *tl = args->tl;
struct mach_port *mp;
struct mach_right *mr;
struct mach_memory_entry *mme;
printf("mach_make_memory_entry_64, offset 0x%lx, size 0x%lx\n",
(u_long)req->req_offset, (u_long)req->req_size);
mp = mach_port_get();
mp->mp_flags |= (MACH_MP_INKERNEL | MACH_MP_DATA_ALLOCATED);
mp->mp_datatype = MACH_MP_MEMORY_ENTRY;
mme = malloc(sizeof(*mme), M_EMULDATA, M_WAITOK);
mme->mme_proc = tl->l_proc;
mme->mme_offset = req->req_offset;
mme->mme_size = req->req_size;
mp->mp_data = mme;
mr = mach_right_get(mp, l, MACH_PORT_TYPE_SEND, 0);
rep->rep_msgh.msgh_bits =
MACH_MSGH_REPLY_LOCAL_BITS(MACH_MSG_TYPE_MOVE_SEND_ONCE) |
MACH_MSGH_BITS_COMPLEX;
rep->rep_msgh.msgh_size = sizeof(*rep) - sizeof(rep->rep_trailer);
rep->rep_msgh.msgh_local_port = req->req_msgh.msgh_local_port;
rep->rep_msgh.msgh_id = req->req_msgh.msgh_id + 100;
rep->rep_obj_handle.name = (mach_port_t)mr->mr_name;
rep->rep_obj_handle.disposition = 0x11; /* XXX */
rep->rep_size = req->req_size;
rep->rep_trailer.msgh_trailer_size = 8;
*msglen = sizeof(*rep);
return 0;
}
2003-03-04 01:07:39 +03:00
int
mach_vm_region(args)
struct mach_trap_args *args;
{
mach_vm_region_request_t *req = args->smsg;
mach_vm_region_reply_t *rep = args->rmsg;
size_t *msglen = args->rsize;
struct lwp *tl = args->tl;
2003-03-04 01:07:39 +03:00
struct mach_vm_region_basic_info *rbi;
struct vm_map_entry *vme;
/* Sanity check req_count */
if (req->req_count > 9)
return mach_msg_error(args, EINVAL);
2003-03-04 01:07:39 +03:00
/*
* MACH_VM_REGION_BASIC_INFO is the only
* supported flavor in Darwin.
*/
if (req->req_flavor != MACH_VM_REGION_BASIC_INFO)
return mach_msg_error(args, EINVAL);
if (req->req_count != (sizeof(*rbi) / sizeof(int))) /* This is 8 */
2003-03-04 01:07:39 +03:00
return mach_msg_error(args, EINVAL);
*msglen = sizeof(*rep) + ((req->req_count - 9) * sizeof(int));
2003-03-04 01:07:39 +03:00
printf("pid = %d\n", tl->l_proc->p_pid);
vme = uvm_map_findspace(&tl->l_proc->p_vmspace->vm_map,
2003-03-04 01:07:39 +03:00
req->req_addr, 1, (vaddr_t *)&rep->rep_addr,
NULL, 0, 0, UVM_FLAG_FIXED);
printf("vme = %p\n", vme);
2003-03-04 01:07:39 +03:00
if (vme == NULL)
return mach_msg_error(args, ENOMEM);
rep->rep_msgh.msgh_bits =
MACH_MSGH_REPLY_LOCAL_BITS(MACH_MSG_TYPE_MOVE_SEND_ONCE) |
MACH_MSGH_BITS_COMPLEX;
rep->rep_msgh.msgh_size = *msglen - sizeof(rep->rep_trailer);
2003-03-04 01:07:39 +03:00
rep->rep_msgh.msgh_local_port = req->req_msgh.msgh_local_port;
rep->rep_msgh.msgh_id = req->req_msgh.msgh_id + 100;
rep->rep_body.msgh_descriptor_count = 1;
rep->rep_obj.address = NULL;
rep->rep_obj.size = 0;
2003-03-04 01:07:39 +03:00
rep->rep_obj.deallocate = 0;
rep->rep_obj.copy = 0;
rep->rep_obj.pad1 = 0x11;
rep->rep_obj.type = 0;
rep->rep_size = PAGE_SIZE; /* XXX Why? */
2003-03-04 01:07:39 +03:00
rep->rep_count = req->req_count;
rbi = (struct mach_vm_region_basic_info *)&rep->rep_info[0];
rbi->protection = vme->protection;
rbi->inheritance = 1; /* vme->inheritance */
2003-03-04 01:07:39 +03:00
rbi->shared = 0; /* XXX how can we know? */
rbi->offset = vme->offset;
rbi->behavior = MACH_VM_BEHAVIOR_DEFAULT; /* XXX What is it? */
rbi->user_wired_count = vme->wired_count;
/* XXX Why this? */
*(short *)((u_long)&rbi->user_wired_count + sizeof(short)) = 1;
2003-03-04 01:07:39 +03:00
rep->rep_info[rep->rep_count + 1] = 8; /* This is the trailer */
2003-03-04 01:07:39 +03:00
return 0;
}
2003-09-07 03:52:25 +04:00
int
mach_vm_region_64(args)
struct mach_trap_args *args;
{
mach_vm_region_64_request_t *req = args->smsg;
mach_vm_region_64_reply_t *rep = args->rmsg;
size_t *msglen = args->rsize;
struct lwp *tl = args->tl;
2003-09-07 03:52:25 +04:00
struct mach_vm_region_basic_info_64 *rbi;
struct vm_map_entry *vme;
/* Sanity check req_count */
if (req->req_count > 10)
return mach_msg_error(args, EINVAL);
2003-09-07 03:52:25 +04:00
/*
* MACH_VM_REGION_BASIC_INFO is the only
* supported flavor in Darwin.
*/
if (req->req_flavor != MACH_VM_REGION_BASIC_INFO)
return mach_msg_error(args, EINVAL);
if (req->req_count != (sizeof(*rbi) / sizeof(int))) /* This is 8 */
return mach_msg_error(args, EINVAL);
*msglen = sizeof(*rep) + ((req->req_count - 9) * sizeof(int));
vme = uvm_map_findspace(&tl->l_proc->p_vmspace->vm_map,
2003-09-07 03:52:25 +04:00
req->req_addr, 1, (vaddr_t *)&rep->rep_addr,
NULL, 0, 0, UVM_FLAG_FIXED);
if (vme == NULL)
return mach_msg_error(args, ENOMEM);
rep->rep_msgh.msgh_bits =
MACH_MSGH_REPLY_LOCAL_BITS(MACH_MSG_TYPE_MOVE_SEND_ONCE) |
MACH_MSGH_BITS_COMPLEX;
rep->rep_msgh.msgh_size = *msglen - sizeof(rep->rep_trailer);
rep->rep_msgh.msgh_local_port = req->req_msgh.msgh_local_port;
rep->rep_msgh.msgh_id = req->req_msgh.msgh_id + 100;
rep->rep_body.msgh_descriptor_count = 1;
rep->rep_obj.address = NULL;
rep->rep_obj.size = 0;
rep->rep_obj.deallocate = 0;
rep->rep_obj.copy = 0;
rep->rep_obj.pad1 = 0x11;
rep->rep_obj.type = 0;
rep->rep_size = PAGE_SIZE; /* XXX Why? */
rep->rep_count = req->req_count;
rbi = (struct mach_vm_region_basic_info_64 *)&rep->rep_info[0];
rbi->protection = vme->protection;
rbi->inheritance = 1; /* vme->inheritance */
rbi->shared = 0; /* XXX how can we know? */
rbi->offset = vme->offset;
rbi->behavior = MACH_VM_BEHAVIOR_DEFAULT; /* XXX What is it? */
rbi->user_wired_count = vme->wired_count;
/* XXX Why this? */
*(short *)((u_long)&rbi->user_wired_count + sizeof(short)) = 1;
rep->rep_info[rep->rep_count + 1] = 8; /* This is the trailer */
return 0;
}
2003-03-04 01:07:39 +03:00
int
mach_vm_msync(args)
struct mach_trap_args *args;
{
mach_vm_msync_request_t *req = args->smsg;
mach_vm_msync_reply_t *rep = args->rmsg;
size_t *msglen = args->rsize;
struct lwp *tl = args->tl;
2003-03-04 01:07:39 +03:00
struct sys___msync13_args cup;
int error;
register_t dontcare;
SCARG(&cup, addr) = (void *)req->req_addr;
SCARG(&cup, len) = req->req_size;
SCARG(&cup, flags) = 0;
if (req->req_flags & MACH_VM_SYNC_ASYNCHRONOUS)
SCARG(&cup, flags) |= MS_ASYNC;
if (req->req_flags & MACH_VM_SYNC_SYNCHRONOUS)
SCARG(&cup, flags) |= MS_SYNC;
if (req->req_flags & MACH_VM_SYNC_INVALIDATE)
SCARG(&cup, flags) |= MS_INVALIDATE;
error = sys___msync13(tl, &cup, &dontcare);
2003-03-04 01:07:39 +03:00
rep->rep_msgh.msgh_bits =
MACH_MSGH_REPLY_LOCAL_BITS(MACH_MSG_TYPE_MOVE_SEND_ONCE);
rep->rep_msgh.msgh_size = sizeof(*rep) - sizeof(rep->rep_trailer);
rep->rep_msgh.msgh_local_port = req->req_msgh.msgh_local_port;
rep->rep_msgh.msgh_id = req->req_msgh.msgh_id + 100;
rep->rep_retval = error;
rep->rep_trailer.msgh_trailer_size = 8;
*msglen = sizeof(*rep);
return 0;
}
2003-06-04 00:09:37 +04:00
/* XXX Do it for remote task */
2003-06-04 00:09:37 +04:00
int
mach_vm_copy(args)
struct mach_trap_args *args;
{
mach_vm_copy_request_t *req = args->smsg;
mach_vm_copy_reply_t *rep = args->rmsg;
size_t *msglen = args->rsize;
char tmpbuf[PAGE_SIZE];
int error;
caddr_t src, dst;
#ifdef DEBUG_MACH
printf("mach_vm_copy: src = 0x%08x, size = 0x%08x, addr = 0x%08x\n",
req->req_src, req->req_size, req->req_addr);
#endif
if ((req->req_src & (PAGE_SIZE - 1)) ||
(req->req_addr & (PAGE_SIZE - 1)) ||
(req->req_size & (PAGE_SIZE - 1)))
return mach_msg_error(args, EINVAL);
src = (caddr_t)req->req_src;
dst = (caddr_t)req->req_addr;
/* Is there an easy way of dealing with that efficiently? */
do {
if ((error = copyin(src, tmpbuf, PAGE_SIZE)) != 0)
return mach_msg_error(args, error);
if ((error = copyout(tmpbuf, dst, PAGE_SIZE)) != 0)
return mach_msg_error(args, error);
req->req_src += PAGE_SIZE;
req->req_addr += PAGE_SIZE;
req->req_size -= PAGE_SIZE;
} while (req->req_size != 0);
rep->rep_msgh.msgh_bits =
MACH_MSGH_REPLY_LOCAL_BITS(MACH_MSG_TYPE_MOVE_SEND_ONCE);
rep->rep_msgh.msgh_size = sizeof(*rep) - sizeof(rep->rep_trailer);
rep->rep_msgh.msgh_local_port = req->req_msgh.msgh_local_port;
rep->rep_msgh.msgh_id = req->req_msgh.msgh_id + 100;
rep->rep_retval = 0;
rep->rep_trailer.msgh_trailer_size = 8;
*msglen = sizeof(*rep);
return 0;
}