Files
haiku-beta6/src/kernel/core/vm/vm.c
T

2895 lines
74 KiB
C
Raw Normal View History

2002-07-09 12:24:59 +00:00
/*
** Copyright 2002-2004, The Haiku Team. All rights reserved.
** Distributed under the terms of the Haiku License.
2004-06-06 01:14:18 +00:00
**
2002-07-09 12:24:59 +00:00
** Copyright 2001-2002, Travis Geiselbrecht. All rights reserved.
** Distributed under the terms of the NewOS License.
*/
#include <OS.h>
#include <KernelExport.h>
2002-07-11 22:21:56 +00:00
#include <kerrors.h>
2002-07-09 12:24:59 +00:00
#include <vm.h>
#include <vm_priv.h>
#include <vm_page.h>
#include <vm_cache.h>
#include <vm_store_anonymous_noswap.h>
#include <vm_store_device.h>
#include <vm_store_null.h>
2004-09-03 17:05:21 +00:00
#include <file_cache.h>
2002-07-09 12:24:59 +00:00
#include <memheap.h>
#include <debug.h>
#include <console.h>
#include <int.h>
#include <smp.h>
#include <lock.h>
#include <khash.h>
#include <thread.h>
#include <team.h>
2002-07-09 12:24:59 +00:00
2003-05-03 16:09:01 +00:00
#include <boot/stage2.h>
#include <boot/elf.h>
2002-07-09 12:24:59 +00:00
#include <arch/cpu.h>
#include <arch/vm.h>
#include <string.h>
#include <ctype.h>
#include <stdlib.h>
#include <stdio.h>
2004-06-15 15:25:25 +00:00
//#define TRACE_VM
#ifdef TRACE_VM
# define TRACE(x) dprintf x
#else
# define TRACE(x) ;
#endif
#define TRACE_PFAULT 0
#if TRACE_PFAULT
# define TRACEPFAULT dprintf("in pfault at line %d\n", __LINE__)
#else
# define TRACEPFAULT
#endif
2002-07-09 12:24:59 +00:00
#define ROUNDUP(a, b) (((a) + ((b)-1)) & ~((b)-1))
#define ROUNDOWN(a, b) (((a) / (b)) * (b))
extern vm_address_space *kernel_aspace;
2002-07-09 12:24:59 +00:00
#define REGION_HASH_TABLE_SIZE 1024
static region_id next_region_id;
static void *region_table;
static sem_id region_hash_sem;
static int max_commit;
static spinlock max_commit_lock;
2002-07-09 12:24:59 +00:00
// function declarations
static vm_region *_vm_create_region_struct(vm_address_space *aspace, const char *name, int wiring, int lock);
static int map_backing_store(vm_address_space *aspace, vm_store *store, void **vaddr,
off_t offset, addr_t size, int addr_type, int wiring, int lock, int mapping, vm_region **_region, const char *region_name);
static int vm_soft_fault(addr_t address, bool is_write, bool is_user);
static vm_region *vm_virtual_map_lookup(vm_virtual_map *map, addr_t address);
2002-07-09 12:24:59 +00:00
static int
region_compare(void *_r, const void *key)
2002-07-09 12:24:59 +00:00
{
vm_region *r = _r;
const region_id *id = key;
if (r->id == *id)
2002-07-09 12:24:59 +00:00
return 0;
return -1;
2002-07-09 12:24:59 +00:00
}
2002-11-29 08:38:52 +00:00
static uint32
region_hash(void *_r, const void *key, uint32 range)
2002-07-09 12:24:59 +00:00
{
vm_region *r = _r;
const region_id *id = key;
if (r != NULL)
return r->id % range;
return *id % range;
2002-07-09 12:24:59 +00:00
}
2002-11-29 08:38:52 +00:00
vm_region *
vm_get_region_by_id(region_id rid)
2002-07-09 12:24:59 +00:00
{
vm_region *region;
acquire_sem_etc(region_hash_sem, READ_COUNT, 0, 0);
2002-07-09 12:24:59 +00:00
region = hash_lookup(region_table, &rid);
if (region)
2002-07-09 12:24:59 +00:00
atomic_add(&region->ref_count, 1);
2002-07-09 12:24:59 +00:00
release_sem_etc(region_hash_sem, READ_COUNT, 0);
return region;
}
region_id
vm_find_region_by_name(aspace_id aid, const char *name)
2002-07-09 12:24:59 +00:00
{
vm_region *region = NULL;
vm_address_space *aspace;
region_id id = B_NAME_NOT_FOUND;
aspace = vm_get_aspace_by_id(aid);
if(aspace == NULL)
return ERR_VM_INVALID_ASPACE;
acquire_sem_etc(aspace->virtual_map.sem, READ_COUNT, 0, 0);
region = aspace->virtual_map.region_list;
for (; region != NULL; region = region->aspace_next) {
// ignore reserved space regions
if (region->id == RESERVED_REGION_ID)
continue;
if (strcmp(region->name, name) == 0) {
2002-07-09 12:24:59 +00:00
id = region->id;
break;
}
}
release_sem_etc(aspace->virtual_map.sem, READ_COUNT, 0);
vm_put_aspace(aspace);
return id;
}
static vm_region *
_vm_create_reserved_region_struct(vm_virtual_map *map)
{
vm_region *reserved = malloc(sizeof(vm_region));
if (reserved == NULL)
return NULL;
memset(reserved, 0, sizeof(vm_region));
reserved->id = RESERVED_REGION_ID;
// this marks it as reserved space
reserved->map = map;
return reserved;
}
static vm_region *
_vm_create_region_struct(vm_address_space *aspace, const char *name, int wiring, int lock)
2002-07-09 12:24:59 +00:00
{
vm_region *region = NULL;
// restrict the area name to B_OS_NAME_LENGTH
size_t length = strlen(name) + 1;
if (length > B_OS_NAME_LENGTH)
length = B_OS_NAME_LENGTH;
region = (vm_region *)malloc(sizeof(vm_region));
if (region == NULL)
2002-07-09 12:24:59 +00:00
return NULL;
region->name = (char *)malloc(length);
if (region->name == NULL) {
free(region);
2002-07-09 12:24:59 +00:00
return NULL;
}
strlcpy(region->name, name, length);
2002-07-09 12:24:59 +00:00
region->id = atomic_add(&next_region_id, 1);
region->base = 0;
region->size = 0;
region->lock = lock;
region->wiring = wiring;
region->ref_count = 1;
region->cache_ref = NULL;
region->cache_offset = 0;
region->aspace = aspace;
region->aspace_next = NULL;
region->map = &aspace->virtual_map;
region->cache_next = region->cache_prev = NULL;
region->hash_next = NULL;
return region;
}
static status_t
find_reserved_region(vm_virtual_map *map, addr_t start, addr_t size, vm_region *region)
{
vm_region *next, *last = NULL;
next = map->region_list;
while (next) {
if (next->base <= start && next->base + next->size >= start + size) {
// this region covers the requested range
if (next->id != RESERVED_REGION_ID) {
// but it's not reserved space, it's a real region
return ERR_VM_NO_REGION_SLOT;
}
break;
}
last = next;
next = next->aspace_next;
}
if (next == NULL)
return B_ENTRY_NOT_FOUND;
// now we have to transfer the requested part of the reserved
// range to the new region - and remove, resize or split the old
// reserved region.
if (start == next->base) {
// the region starts at the beginning of the reserved range
if (last)
last->aspace_next = region;
else
map->region_list = region;
if (size == next->size) {
// the new region fully covers the reversed range
region->aspace_next = next->aspace_next;
free(next);
} else {
// resize the reserved range behind the region
region->aspace_next = next;
next->base += size;
next->size -= size;
}
} else if (start + size == next->base + next->size) {
// the region is at the end of the reserved range
region->aspace_next = next->aspace_next;
next->aspace_next = region;
// resize the reserved range before the region
next->size = start - next->base;
} else {
// the region splits the reserved range into two separate ones
// we need a new reserved region to cover this space
vm_region *reserved = _vm_create_reserved_region_struct(map);
if (reserved == NULL)
return B_NO_MEMORY;
reserved->aspace_next = next->aspace_next;
region->aspace_next = reserved;
next->aspace_next = region;
// resize regions
reserved->size = next->base + next->size - start - size;
next->size = start - next->base;
reserved->base = start + size;
}
region->base = start;
region->size = size;
map->change_count++;
return B_OK;
}
2002-07-09 12:24:59 +00:00
// must be called with this address space's virtual_map.sem held
static status_t
find_and_insert_region_slot(vm_virtual_map *map, addr_t start, addr_t size, addr_t end, int addr_type, vm_region *region)
2002-07-09 12:24:59 +00:00
{
vm_region *last_r = NULL;
vm_region *next_r;
bool foundspot = false;
TRACE(("find_and_insert_region_slot: map %p, start 0x%lx, size %ld, end 0x%lx, addr_type %d, region %p\n",
map, start, size, end, addr_type, region));
2002-07-09 12:24:59 +00:00
// do some sanity checking
if (start < map->base || size == 0 || (end - 1) > (map->base + (map->size - 1)) || start + size > end)
return B_BAD_ADDRESS;
if (addr_type == B_EXACT_ADDRESS) {
// search for a reserved region
status_t status = find_reserved_region(map, start, size, region);
if (status == B_OK || status == ERR_VM_NO_REGION_SLOT)
return status;
// there was no reserved region, and the slot doesn't seem to be used already
// ToDo: this could be further optimized.
}
2002-07-09 12:24:59 +00:00
// walk up to the spot where we should start searching
next_r = map->region_list;
while (next_r) {
if (next_r->base >= start + size) {
2002-07-09 12:24:59 +00:00
// we have a winner
break;
}
last_r = next_r;
next_r = next_r->aspace_next;
}
#if 0
dprintf("last_r 0x%x, next_r 0x%x\n", last_r, next_r);
if(last_r) dprintf("last_r->base 0x%x, last_r->size 0x%x\n", last_r->base, last_r->size);
if(next_r) dprintf("next_r->base 0x%x, next_r->size 0x%x\n", next_r->base, next_r->size);
#endif
switch (addr_type) {
case B_ANY_ADDRESS:
case B_ANY_KERNEL_ADDRESS:
case B_ANY_KERNEL_BLOCK_ADDRESS:
case B_BASE_ADDRESS:
2002-07-09 12:24:59 +00:00
// find a hole big enough for a new region
if (!last_r) {
2002-07-09 12:24:59 +00:00
// see if we can build it at the beginning of the virtual map
if (!next_r || (next_r->base >= map->base + size)) {
2002-07-09 12:24:59 +00:00
foundspot = true;
region->base = map->base;
break;
}
last_r = next_r;
next_r = next_r->aspace_next;
}
// keep walking
while (next_r) {
if (next_r->base >= last_r->base + last_r->size + size) {
2002-07-09 12:24:59 +00:00
// we found a spot
foundspot = true;
region->base = last_r->base + last_r->size;
break;
}
last_r = next_r;
next_r = next_r->aspace_next;
}
if ((map->base + (map->size - 1)) >= (last_r->base + last_r->size + (size - 1))) {
2002-07-09 12:24:59 +00:00
// found a spot
foundspot = true;
region->base = last_r->base + last_r->size;
break;
}
break;
case B_EXACT_ADDRESS:
2002-07-09 12:24:59 +00:00
// see if we can create it exactly here
if (!last_r) {
if (!next_r || (next_r->base >= start + size)) {
2002-07-09 12:24:59 +00:00
foundspot = true;
region->base = start;
break;
}
} else {
if (next_r) {
if (last_r->base + last_r->size <= start && next_r->base >= start + size) {
2002-07-09 12:24:59 +00:00
foundspot = true;
region->base = start;
break;
}
} else {
if ((last_r->base + (last_r->size - 1)) <= start - 1) {
2002-07-09 12:24:59 +00:00
foundspot = true;
region->base = start;
}
}
}
break;
default:
return B_BAD_VALUE;
2002-07-09 12:24:59 +00:00
}
if (!foundspot)
2002-07-09 12:24:59 +00:00
return ERR_VM_NO_REGION_SLOT;
region->size = size;
if (last_r) {
region->aspace_next = last_r->aspace_next;
last_r->aspace_next = region;
} else {
region->aspace_next = map->region_list;
map->region_list = region;
2002-07-09 12:24:59 +00:00
}
map->change_count++;
return B_OK;
}
/** This inserts the area/region you pass into the virtual_map of the
* specified address space.
* It will also set the "_address" argument to its base address when
* the call succeeds.
* You need to hold the virtual_map semaphore.
*/
static status_t
insert_area(vm_address_space *addressSpace, void **_address,
uint32 addressSpec, addr_t size, vm_region *area)
{
addr_t searchBase, searchEnd;
status_t status;
switch (addressSpec) {
case B_EXACT_ADDRESS:
searchBase = (addr_t)*_address;
searchEnd = (addr_t)*_address + size;
break;
case B_BASE_ADDRESS:
searchBase = (addr_t)*_address;
searchEnd = addressSpace->virtual_map.base + (addressSpace->virtual_map.size - 1);
break;
case B_ANY_ADDRESS:
case B_ANY_KERNEL_ADDRESS:
case B_ANY_KERNEL_BLOCK_ADDRESS:
searchBase = addressSpace->virtual_map.base;
searchEnd = addressSpace->virtual_map.base + (addressSpace->virtual_map.size - 1);
break;
default:
return B_BAD_VALUE;
}
status = find_and_insert_region_slot(&addressSpace->virtual_map, searchBase, size,
searchEnd, addressSpec, area);
if (status == B_OK)
// ToDo: do we have to do anything about B_ANY_KERNEL_ADDRESS
// vs. B_ANY_KERNEL_BLOCK_ADDRESS here?
*_address = (void *)area->base;
return status;
2002-07-09 12:24:59 +00:00
}
2002-07-09 12:24:59 +00:00
// a ref to the cache holding this store must be held before entering here
static int
map_backing_store(vm_address_space *aspace, vm_store *store, void **_virtualAddress,
off_t offset, addr_t size, int addressSpec, int wiring, int lock,
int mapping, vm_region **_region, const char *region_name)
2002-07-09 12:24:59 +00:00
{
vm_cache *cache;
vm_cache_ref *cache_ref;
vm_region *region;
vm_cache *nu_cache;
vm_cache_ref *nu_cache_ref = NULL;
vm_store *nu_store;
int err;
2004-06-15 15:25:25 +00:00
TRACE(("map_backing_store: aspace %p, store %p, *vaddr %p, offset 0x%Lx, size %lu, addr_type %d, wiring %d, lock %d, _region %p, region_name '%s'\n",
aspace, store, *_virtualAddress, offset, size, addressSpec, wiring, lock, _region, region_name));
2002-07-09 12:24:59 +00:00
region = _vm_create_region_struct(aspace, region_name, wiring, lock);
if (!region)
return B_NO_MEMORY;
2002-07-09 12:24:59 +00:00
cache = store->cache;
cache_ref = cache->ref;
// if this is a private map, we need to create a new cache & store object
// pair to handle the private copies of pages as they are written to
if (mapping == REGION_PRIVATE_MAP) {
2002-07-09 12:24:59 +00:00
// create an anonymous store object
nu_store = vm_store_create_anonymous_noswap();
if (nu_store == NULL)
2002-07-09 12:24:59 +00:00
panic("map_backing_store: vm_create_store_anonymous_noswap returned NULL");
nu_cache = vm_cache_create(nu_store);
if (nu_cache == NULL)
2002-07-09 12:24:59 +00:00
panic("map_backing_store: vm_cache_create returned NULL");
nu_cache_ref = vm_cache_ref_create(nu_cache);
if (nu_cache_ref == NULL)
2002-07-09 12:24:59 +00:00
panic("map_backing_store: vm_cache_ref_create returned NULL");
nu_cache->temporary = 1;
nu_cache->scan_skip = cache->scan_skip;
2002-07-09 12:24:59 +00:00
nu_cache->source = cache;
// grab a ref to the cache object we're now linked to as a source
vm_cache_acquire_ref(cache_ref, true);
cache = nu_cache;
cache_ref = cache->ref;
store = nu_store;
}
mutex_lock(&cache_ref->lock);
// If we don't have enough committed space to cover through to the new end of region...
if (store->committed_size < offset + size) {
2002-07-09 12:24:59 +00:00
// try to commit more memory
off_t old_store_commitment = store->committed_size; // Note what we had
off_t commitment = (store->ops->commit)(store, offset + size); // Commit through to the new end
if (commitment < offset + size) { // Uh oh - didn't work
if (cache->temporary) {
// If this is a temporary cache, Check to see if we ran out of space and return error.
int state = disable_interrupts();
2002-07-09 12:24:59 +00:00
acquire_spinlock(&max_commit_lock);
if (max_commit - old_store_commitment + commitment < offset + size) {
release_spinlock(&max_commit_lock);
restore_interrupts(state);
2002-07-09 12:24:59 +00:00
mutex_unlock(&cache_ref->lock);
err = ERR_VM_WOULD_OVERCOMMIT;
goto err1a;
}
max_commit += (commitment - old_store_commitment) - (offset + size - cache->virtual_size);
cache->virtual_size = offset + size;
release_spinlock(&max_commit_lock);
restore_interrupts(state);
2002-07-09 12:24:59 +00:00
} else {
mutex_unlock(&cache_ref->lock);
err = ENOMEM;
goto err1a;
}
}
}
mutex_unlock(&cache_ref->lock);
vm_cache_acquire_ref(cache_ref, true);
acquire_sem_etc(aspace->virtual_map.sem, WRITE_COUNT, 0, 0);
// check to see if this aspace has entered DELETE state
if (aspace->state == VM_ASPACE_STATE_DELETION) {
2002-07-09 12:24:59 +00:00
// okay, someone is trying to delete this aspace now, so we can't
// insert the region, so back out
err = ERR_VM_INVALID_ASPACE;
goto err1b;
}
err = insert_area(aspace, _virtualAddress, addressSpec, size, region);
if (err < B_OK)
goto err1b;
2002-07-09 12:24:59 +00:00
// attach the cache to the region
region->cache_ref = cache_ref;
region->cache_offset = offset;
// point the cache back to the region
vm_cache_insert_region(cache_ref, region);
// insert the region in the global region hash table
acquire_sem_etc(region_hash_sem, WRITE_COUNT, 0 ,0);
hash_insert(region_table, region);
release_sem_etc(region_hash_sem, WRITE_COUNT, 0);
// grab a ref to the aspace (the region holds this)
atomic_add(&aspace->ref_count, 1);
release_sem_etc(aspace->virtual_map.sem, WRITE_COUNT, 0);
*_region = region;
return B_NO_ERROR;
err1b:
release_sem_etc(aspace->virtual_map.sem, WRITE_COUNT, 0);
vm_cache_release_ref(cache_ref);
goto err;
err1a:
if (nu_cache_ref) {
2002-07-09 12:24:59 +00:00
// had never acquired it's initial ref, so acquire and then release it
// this should clean up all the objects it references
vm_cache_acquire_ref(cache_ref, true);
vm_cache_release_ref(cache_ref);
}
err:
free(region->name);
free(region);
2002-07-09 12:24:59 +00:00
return err;
}
2004-06-09 02:18:18 +00:00
status_t
vm_unreserve_address_range(aspace_id aid, void *address, addr_t size)
{
vm_address_space *addressSpace;
vm_region *area, *last = NULL;
status_t status = B_OK;
addressSpace = vm_get_aspace_by_id(aid);
if (addressSpace == NULL)
return ERR_VM_INVALID_ASPACE;
acquire_sem_etc(addressSpace->virtual_map.sem, WRITE_COUNT, 0, 0);
// check to see if this aspace has entered DELETE state
if (addressSpace->state == VM_ASPACE_STATE_DELETION) {
// okay, someone is trying to delete this aspace now, so we can't
// insert the region, so back out
status = ERR_VM_INVALID_ASPACE;
goto out;
}
// search region list and remove any matching reserved ranges
area = addressSpace->virtual_map.region_list;
while (area) {
// the region must be completely part of the reserved range
if (area->id == RESERVED_REGION_ID && area->base >= (addr_t)address
2004-06-09 02:18:18 +00:00
&& area->base + area->size <= (addr_t)address + size) {
// remove reserved range
vm_region *reserved = area;
if (last)
last->aspace_next = reserved->aspace_next;
else
addressSpace->virtual_map.region_list = reserved->aspace_next;
area = reserved->aspace_next;
free(reserved);
continue;
}
last = area;
area = area->aspace_next;
}
out:
release_sem_etc(addressSpace->virtual_map.sem, WRITE_COUNT, 0);
vm_put_aspace(addressSpace);
return status;
}
status_t
vm_reserve_address_range(aspace_id aid, void **_address, uint32 addressSpec, addr_t size)
{
vm_address_space *addressSpace;
vm_region *area;
status_t status = B_OK;
addressSpace = vm_get_aspace_by_id(aid);
if (addressSpace == NULL)
return ERR_VM_INVALID_ASPACE;
area = _vm_create_reserved_region_struct(&addressSpace->virtual_map);
if (area == NULL) {
status = B_NO_MEMORY;
goto err1;
}
acquire_sem_etc(addressSpace->virtual_map.sem, WRITE_COUNT, 0, 0);
// check to see if this aspace has entered DELETE state
if (addressSpace->state == VM_ASPACE_STATE_DELETION) {
// okay, someone is trying to delete this aspace now, so we can't
// insert the region, so back out
status = ERR_VM_INVALID_ASPACE;
goto err2;
}
status = insert_area(addressSpace, _address, addressSpec, size, area);
if (status < B_OK)
goto err2;
// the region is now reserved!
release_sem_etc(addressSpace->virtual_map.sem, WRITE_COUNT, 0);
return B_OK;
err2:
release_sem_etc(addressSpace->virtual_map.sem, WRITE_COUNT, 0);
free(area);
err1:
vm_put_aspace(addressSpace);
return status;
}
region_id
vm_create_anonymous_region(aspace_id aid, const char *name, void **address,
int addr_type, addr_t size, int wiring, int lock)
2002-07-09 12:24:59 +00:00
{
vm_region *region;
vm_cache *cache;
vm_store *store;
vm_address_space *aspace;
vm_cache_ref *cache_ref;
vm_page *page = NULL;
status_t err;
2002-07-09 12:24:59 +00:00
TRACE(("create_anonymous_region: %s: size 0x%lx\n", name, size));
2002-07-09 12:24:59 +00:00
/* check parameters */
switch (addr_type) {
case B_ANY_ADDRESS:
case B_EXACT_ADDRESS:
case B_BASE_ADDRESS:
case B_ANY_KERNEL_ADDRESS:
break;
default:
return B_BAD_VALUE;
}
switch (wiring) {
case B_NO_LOCK:
case B_FULL_LOCK:
case B_LAZY_LOCK:
case B_CONTIGUOUS:
case B_ALREADY_WIRED:
break;
case B_LOMEM:
//case B_SLOWMEM:
dprintf("B_LOMEM/SLOWMEM is not yet supported!\n");
wiring = B_FULL_LOCK;
break;
default:
return B_BAD_VALUE;
}
2002-07-09 12:24:59 +00:00
aspace = vm_get_aspace_by_id(aid);
if (aspace == NULL)
2002-07-09 12:24:59 +00:00
return ERR_VM_INVALID_ASPACE;
size = PAGE_ALIGN(size);
if (wiring == B_CONTIGUOUS) {
// we try to allocate the page run here upfront as this may easily fail for obvious reasons
page = vm_page_allocate_page_run(PAGE_STATE_CLEAR, size / B_PAGE_SIZE);
if (page == NULL) {
vm_put_aspace(aspace);
return B_NO_MEMORY;
}
}
2002-07-09 12:24:59 +00:00
// create an anonymous store object
store = vm_store_create_anonymous_noswap();
if (store == NULL)
2002-07-09 12:24:59 +00:00
panic("vm_create_anonymous_region: vm_create_store_anonymous_noswap returned NULL");
cache = vm_cache_create(store);
if (cache == NULL)
2002-07-09 12:24:59 +00:00
panic("vm_create_anonymous_region: vm_cache_create returned NULL");
cache_ref = vm_cache_ref_create(cache);
if (cache_ref == NULL)
2002-07-09 12:24:59 +00:00
panic("vm_create_anonymous_region: vm_cache_ref_create returned NULL");
cache->temporary = 1;
switch (wiring) {
case B_LAZY_LOCK: // for now
case B_FULL_LOCK:
case B_CONTIGUOUS:
case B_ALREADY_WIRED:
cache->scan_skip = 1;
break;
case B_NO_LOCK:
//case B_LAZY_LOCK:
cache->scan_skip = 0;
break;
}
2002-07-09 12:24:59 +00:00
// dprintf("create_anonymous_region: calling map_backing store\n");
vm_cache_acquire_ref(cache_ref, true);
err = map_backing_store(aspace, store, address, 0, size, addr_type, wiring, lock, REGION_NO_PRIVATE_MAP, &region, name);
vm_cache_release_ref(cache_ref);
if (err < 0) {
2002-07-09 12:24:59 +00:00
vm_put_aspace(aspace);
if (wiring == B_CONTIGUOUS) {
// we had reserved the area space upfront...
addr_t pageNumber = page->ppn;
int32 i;
for (i = size / B_PAGE_SIZE; i-- > 0; pageNumber++) {
page = vm_lookup_page(pageNumber);
if (page == NULL)
panic("couldn't lookup physical page just allocated\n");
vm_page_set_state(page, PAGE_STATE_FREE);
}
}
2002-07-09 12:24:59 +00:00
return err;
}
// dprintf("create_anonymous_region: done calling map_backing store\n");
cache_ref = store->cache->ref;
switch (wiring) {
case B_NO_LOCK:
case B_LAZY_LOCK:
2002-07-09 12:24:59 +00:00
break; // do nothing
case B_FULL_LOCK:
{
2002-07-09 12:24:59 +00:00
// pages aren't mapped at this point, but we just simulate a fault on
// every page, which should allocate them
addr_t va;
2002-07-09 12:24:59 +00:00
// XXX remove
for (va = region->base; va < region->base + region->size; va += PAGE_SIZE) {
2002-07-09 12:24:59 +00:00
// dprintf("mapping wired pages: region 0x%x, cache_ref 0x%x 0x%x\n", region, cache_ref, region->cache_ref);
vm_soft_fault(va, false, false);
}
break;
}
case B_ALREADY_WIRED:
{
2002-07-09 12:24:59 +00:00
// the pages should already be mapped. This is only really useful during
// boot time. Find the appropriate vm_page objects and stick them in
// the cache object.
addr_t va;
addr_t pa;
uint32 flags;
2002-07-09 12:24:59 +00:00
int err;
off_t offset = 0;
mutex_lock(&cache_ref->lock);
(*aspace->translation_map.ops->lock)(&aspace->translation_map);
for (va = region->base; va < region->base + region->size; va += PAGE_SIZE, offset += PAGE_SIZE) {
err = (*aspace->translation_map.ops->query)(&aspace->translation_map, va, &pa, &flags);
if (err < 0) {
2002-07-09 12:24:59 +00:00
// dprintf("vm_create_anonymous_region: error looking up mapping for va 0x%x\n", va);
continue;
}
page = vm_lookup_page(pa / PAGE_SIZE);
if (page == NULL) {
2002-07-09 12:24:59 +00:00
// dprintf("vm_create_anonymous_region: error looking up vm_page structure for pa 0x%x\n", pa);
continue;
}
atomic_add(&page->ref_count, 1);
vm_page_set_state(page, PAGE_STATE_WIRED);
vm_cache_insert_page(cache_ref, page, offset);
}
(*aspace->translation_map.ops->unlock)(&aspace->translation_map);
mutex_unlock(&cache_ref->lock);
break;
}
case B_CONTIGUOUS:
{
addr_t physicalAddress = page->ppn * B_PAGE_SIZE;
addr_t virtualAddress;
off_t offset = 0;
2002-07-09 12:24:59 +00:00
mutex_lock(&cache_ref->lock);
(*aspace->translation_map.ops->lock)(&aspace->translation_map);
for (virtualAddress = region->base; virtualAddress < region->base + region->size;
virtualAddress += B_PAGE_SIZE, offset += B_PAGE_SIZE, physicalAddress += B_PAGE_SIZE) {
page = vm_lookup_page(physicalAddress / B_PAGE_SIZE);
if (page == NULL)
2002-07-09 12:24:59 +00:00
panic("couldn't lookup physical page just allocated\n");
2002-07-09 12:24:59 +00:00
atomic_add(&page->ref_count, 1);
err = (*aspace->translation_map.ops->map)(&aspace->translation_map,
virtualAddress, physicalAddress, lock);
if (err < 0)
2002-07-09 12:24:59 +00:00
panic("couldn't map physical page in page run\n");
2002-07-09 12:24:59 +00:00
vm_page_set_state(page, PAGE_STATE_WIRED);
vm_cache_insert_page(cache_ref, page, offset);
}
2002-07-09 12:24:59 +00:00
(*aspace->translation_map.ops->unlock)(&aspace->translation_map);
mutex_unlock(&cache_ref->lock);
break;
}
2002-07-09 12:24:59 +00:00
default:
break;
2002-07-09 12:24:59 +00:00
}
vm_put_aspace(aspace);
// dprintf("create_anonymous_region: done\n");
if (region == NULL)
return B_NO_MEMORY;
return region->id;
2002-07-09 12:24:59 +00:00
}
region_id
vm_map_physical_memory(aspace_id aid, const char *name, void **_address,
int addr_type, addr_t size, int lock, addr_t phys_addr)
2002-07-09 12:24:59 +00:00
{
vm_region *region;
vm_cache *cache;
vm_cache_ref *cache_ref;
vm_store *store;
addr_t map_offset;
2002-07-09 12:24:59 +00:00
int err;
vm_address_space *aspace = vm_get_aspace_by_id(aid);
TRACE(("vm_map_physical_memory(aspace = %ld, \"%s\", virtual = %p, spec = %d,"
" size = %lu, lock = %d, phys = %p)\n",
2004-06-15 15:25:25 +00:00
aid, name, _address, addr_type, size, lock, (void *)phys_addr));
if (aspace == NULL)
2002-07-09 12:24:59 +00:00
return ERR_VM_INVALID_ASPACE;
// if the physical address is somewhat inside a page,
// move the actual region down to align on a page boundary
map_offset = phys_addr % PAGE_SIZE;
size += map_offset;
phys_addr -= map_offset;
size = PAGE_ALIGN(size);
// create an device store object
store = vm_store_create_device(phys_addr);
if (store == NULL)
panic("vm_create_null_region: vm_store_create_device returned NULL");
2002-07-09 12:24:59 +00:00
cache = vm_cache_create(store);
if (cache == NULL)
panic("vm_create_null_region: vm_cache_create returned NULL");
2002-07-09 12:24:59 +00:00
cache_ref = vm_cache_ref_create(cache);
if (cache_ref == NULL)
panic("vm_create_null_region: vm_cache_ref_create returned NULL");
2002-07-09 12:24:59 +00:00
// tell the page scanner to skip over this region, it's pages are special
cache->scan_skip = 1;
vm_cache_acquire_ref(cache_ref, true);
2003-09-09 02:36:52 +00:00
err = map_backing_store(aspace, store, _address, 0, size, addr_type, 0, lock, REGION_NO_PRIVATE_MAP, &region, name);
2002-07-09 12:24:59 +00:00
vm_cache_release_ref(cache_ref);
vm_put_aspace(aspace);
2003-09-09 02:36:52 +00:00
if (err < 0)
2002-07-09 12:24:59 +00:00
return err;
// modify the pointer returned to be offset back into the new region
// the same way the physical address in was offset
*_address = (void *)((addr_t)*_address + map_offset);
2003-09-09 02:36:52 +00:00
2002-07-09 12:24:59 +00:00
return region->id;
}
region_id
vm_create_null_region(aspace_id aid, char *name, void **address, int addr_type, addr_t size)
2002-07-09 12:24:59 +00:00
{
vm_region *region;
vm_cache *cache;
vm_cache_ref *cache_ref;
vm_store *store;
// addr_t map_offset;
2002-07-09 12:24:59 +00:00
int err;
vm_address_space *aspace = vm_get_aspace_by_id(aid);
if (aspace == NULL)
2002-07-09 12:24:59 +00:00
return ERR_VM_INVALID_ASPACE;
size = PAGE_ALIGN(size);
// create an null store object
store = vm_store_create_null();
if (store == NULL)
2002-07-09 12:24:59 +00:00
panic("vm_map_physical_memory: vm_store_create_null returned NULL");
cache = vm_cache_create(store);
if (cache == NULL)
2002-07-09 12:24:59 +00:00
panic("vm_map_physical_memory: vm_cache_create returned NULL");
cache_ref = vm_cache_ref_create(cache);
if (cache_ref == NULL)
2002-07-09 12:24:59 +00:00
panic("vm_map_physical_memory: vm_cache_ref_create returned NULL");
// tell the page scanner to skip over this region, no pages will be mapped here
cache->scan_skip = 1;
vm_cache_acquire_ref(cache_ref, true);
err = map_backing_store(aspace, store, address, 0, size, addr_type, 0, B_KERNEL_READ_AREA, REGION_NO_PRIVATE_MAP, &region, name);
2002-07-09 12:24:59 +00:00
vm_cache_release_ref(cache_ref);
vm_put_aspace(aspace);
if (err < 0)
2002-07-09 12:24:59 +00:00
return err;
return region->id;
}
status_t
vm_create_vnode_cache(void *vnode, void **_cache)
2002-07-09 12:24:59 +00:00
{
vm_cache_ref *cache_ref;
vm_cache *cache;
2002-07-09 12:24:59 +00:00
vm_store *store;
// create a vnode store object
2004-09-03 17:05:21 +00:00
store = vm_create_vnode_store(vnode);
if (store == NULL) {
dprintf("vm_create_vnode_cache: couldn't create vnode store\n");
return B_NO_MEMORY;
}
cache = vm_cache_create(store);
if (cache == NULL) {
dprintf("vm_create_vnode_cache: vm_cache_create returned NULL\n");
return B_NO_MEMORY;
}
cache_ref = vm_cache_ref_create(cache);
if (cache_ref == NULL) {
dprintf("vm_create_vnode_cache: vm_cache_ref_create returned NULL\n");
return B_NO_MEMORY;
}
// acquire the cache ref once to represent the ref that the vnode will have
// this is one of the only places where we dont want to ref to ripple down to the store
vm_cache_acquire_ref(cache_ref, false);
*_cache = cache_ref;
return B_OK;
}
/** Will map the file at the path specified by \a name to an area in memory.
* The file will be mirrored beginning at the specified \a offset. The \a offset
* and \a size arguments have to be page aligned.
*/
static region_id
_vm_map_file(aspace_id aid, char *name, void **_address, uint32 addressSpec,
size_t size, int lock, int mapping, const char *path, off_t offset, bool kernel)
{
vm_cache_ref *cache_ref;
vm_region *area;
void *vnode;
status_t status;
2002-07-09 12:24:59 +00:00
vm_address_space *aspace = vm_get_aspace_by_id(aid);
if (aspace == NULL)
2002-07-09 12:24:59 +00:00
return ERR_VM_INVALID_ASPACE;
TRACE(("_vm_map_file(\"%s\", offset = %Ld, size = %lu, mapping %d)\n", path, offset, size, mapping));
offset = ROUNDOWN(offset, B_PAGE_SIZE);
2002-07-09 12:24:59 +00:00
size = PAGE_ALIGN(size);
// get the vnode for the object, this also grabs a ref to it
status = vfs_get_vnode_from_path(path, kernel, &vnode);
if (status < B_OK)
goto err1;
2002-07-09 12:24:59 +00:00
status = vfs_get_vnode_cache(vnode, (void **)&cache_ref);
if (status < B_OK)
goto err2;
2002-07-09 12:24:59 +00:00
// acquire a ref to the cache before we do work on it. Dont ripple the ref acquision to the vnode
// below because we'll have to release it later anyway, since we grabbed a ref to the vnode at
// vfs_get_vnode_from_path(). This puts the ref counts in sync.
vm_cache_acquire_ref(cache_ref, false);
status = map_backing_store(aspace, cache_ref->cache->store, _address, offset, size,
addressSpec, 0, lock, mapping, &area, name);
2002-07-09 12:24:59 +00:00
vm_cache_release_ref(cache_ref);
vm_put_aspace(aspace);
if (status < 0)
return status;
return area->id;
err2:
vfs_vnode_release_ref(vnode);
err1:
vm_put_aspace(aspace);
return status;
2002-07-09 12:24:59 +00:00
}
region_id
vm_map_file(aspace_id aid, char *name, void **address, int addr_type,
addr_t size, int lock, int mapping, const char *path, off_t offset)
2002-07-09 12:24:59 +00:00
{
return _vm_map_file(aid, name, address, addr_type, size, lock, mapping, path, offset, true);
}
region_id
_user_vm_map_file(const char *uname, void **uaddress, int addr_type,
addr_t size, int lock, int mapping, const char *upath, off_t offset)
2002-07-09 12:24:59 +00:00
{
char name[B_OS_NAME_LENGTH];
2002-07-09 12:24:59 +00:00
void *address;
char path[SYS_MAX_PATH_LEN];
int rc;
2002-07-09 12:24:59 +00:00
if (!IS_USER_ADDRESS(uname) || !IS_USER_ADDRESS(uaddress) || !IS_USER_ADDRESS(upath)
|| user_strlcpy(name, uname, B_OS_NAME_LENGTH) < B_OK
|| user_strlcpy(path, upath, SYS_MAX_PATH_LEN) < B_OK
|| user_memcpy(&address, uaddress, sizeof(address)) < B_OK)
return B_BAD_ADDRESS;
2002-07-09 12:24:59 +00:00
// userland created areas can always be accessed by the kernel
lock |= B_KERNEL_READ_AREA | B_KERNEL_WRITE_AREA;
2002-07-09 12:24:59 +00:00
rc = _vm_map_file(vm_get_current_user_aspace_id(), name, &address, addr_type, size, lock, mapping, path, offset, false);
if (rc < 0)
2002-07-09 12:24:59 +00:00
return rc;
if (user_memcpy(uaddress, &address, sizeof(address)) < B_OK)
return B_BAD_ADDRESS;
2002-07-09 12:24:59 +00:00
return rc;
}
region_id
vm_clone_region(aspace_id aid, char *name, void **address, int addr_type,
2002-07-09 12:24:59 +00:00
region_id source_region, int mapping, int lock)
{
vm_region *new_region;
vm_region *src_region;
int err;
vm_address_space *aspace = vm_get_aspace_by_id(aid);
if (aspace == NULL)
2002-07-09 12:24:59 +00:00
return ERR_VM_INVALID_ASPACE;
src_region = vm_get_region_by_id(source_region);
if (src_region == NULL) {
2002-07-09 12:24:59 +00:00
vm_put_aspace(aspace);
return ERR_VM_INVALID_REGION;
}
vm_cache_acquire_ref(src_region->cache_ref, true);
err = map_backing_store(aspace, src_region->cache_ref->cache->store, address, src_region->cache_offset, src_region->size,
addr_type, src_region->wiring, lock, mapping, &new_region, name);
vm_cache_release_ref(src_region->cache_ref);
// release the ref on the old region
vm_put_region(src_region);
vm_put_aspace(aspace);
if (err < 0)
2002-07-09 12:24:59 +00:00
return err;
return new_region->id;
2002-07-09 12:24:59 +00:00
}
static status_t
_vm_delete_region(vm_address_space *aspace, region_id rid)
2002-07-09 12:24:59 +00:00
{
status_t status = B_OK;
2002-07-09 12:24:59 +00:00
vm_region *region;
TRACE(("vm_delete_region: aspace id 0x%lx, region id 0x%lx\n", aspace->id, rid));
2002-07-09 12:24:59 +00:00
region = vm_get_region_by_id(rid);
if (region == NULL)
return B_BAD_VALUE;
2002-07-09 12:24:59 +00:00
if (region->aspace == aspace) {
vm_put_region(region);
// next put below will actually delete it
} else
status = B_NOT_ALLOWED;
2002-07-09 12:24:59 +00:00
vm_put_region(region);
return status;
2002-07-09 12:24:59 +00:00
}
status_t
vm_delete_region(aspace_id aid, region_id rid)
2002-07-09 12:24:59 +00:00
{
vm_address_space *aspace;
status_t err;
2002-07-09 12:24:59 +00:00
aspace = vm_get_aspace_by_id(aid);
if (aspace == NULL)
2002-07-09 12:24:59 +00:00
return ERR_VM_INVALID_ASPACE;
err = _vm_delete_region(aspace, rid);
vm_put_aspace(aspace);
return err;
}
static void
_vm_put_region(vm_region *region, bool aspace_locked)
2002-07-09 12:24:59 +00:00
{
vm_region *temp, *last = NULL;
vm_address_space *aspace;
bool removeit = false;
// we should never get here, but if we do, we can handle it
if (region->id == RESERVED_REGION_ID)
return;
2002-07-09 12:24:59 +00:00
acquire_sem_etc(region_hash_sem, WRITE_COUNT, 0, 0);
if (atomic_add(&region->ref_count, -1) == 1) {
2002-07-09 12:24:59 +00:00
hash_remove(region_table, region);
removeit = true;
}
release_sem_etc(region_hash_sem, WRITE_COUNT, 0);
if (!removeit)
2002-07-09 12:24:59 +00:00
return;
aspace = region->aspace;
// remove the region from the aspace's virtual map
if (!aspace_locked)
2002-07-09 12:24:59 +00:00
acquire_sem_etc(aspace->virtual_map.sem, WRITE_COUNT, 0, 0);
temp = aspace->virtual_map.region_list;
while (temp != NULL) {
if (region == temp) {
if (last != NULL) {
2002-07-09 12:24:59 +00:00
last->aspace_next = temp->aspace_next;
} else {
aspace->virtual_map.region_list = temp->aspace_next;
}
aspace->virtual_map.change_count++;
break;
}
last = temp;
temp = temp->aspace_next;
}
if (region == aspace->virtual_map.region_hint)
2002-07-09 12:24:59 +00:00
aspace->virtual_map.region_hint = NULL;
if (!aspace_locked)
2002-07-09 12:24:59 +00:00
release_sem_etc(aspace->virtual_map.sem, WRITE_COUNT, 0);
if (temp == NULL)
2002-07-09 12:24:59 +00:00
panic("vm_region_release_ref: region not found in aspace's region_list\n");
vm_cache_remove_region(region->cache_ref, region);
vm_cache_release_ref(region->cache_ref);
(*aspace->translation_map.ops->lock)(&aspace->translation_map);
(*aspace->translation_map.ops->unmap)(&aspace->translation_map, region->base,
region->base + (region->size - 1));
(*aspace->translation_map.ops->unlock)(&aspace->translation_map);
// now we can give up the area's reference to the address space
2002-07-09 12:24:59 +00:00
vm_put_aspace(aspace);
free(region->name);
free(region);
2002-07-09 12:24:59 +00:00
return;
}
void
vm_put_region(vm_region *region)
2002-07-09 12:24:59 +00:00
{
return _vm_put_region(region, false);
2002-07-09 12:24:59 +00:00
}
static status_t
vm_copy_on_write_area(vm_region *area)
{
vm_store *store;
vm_cache *upperCache, *lowerCache;
vm_cache_ref *upperCacheRef, *lowerCacheRef;
vm_translation_map *map;
vm_page *page;
uint32 protection;
status_t status;
// We need to separate the vm_cache from its vm_cache_ref: the area
// and its cache_ref goes into a new layer on top of the old one.
// So the old cache gets a new cache_ref and the area a new cache.
upperCacheRef = area->cache_ref;
lowerCache = upperCacheRef->cache;
// create an anonymous store object
store = vm_store_create_anonymous_noswap();
if (store == NULL)
return B_NO_MEMORY;
upperCache = vm_cache_create(store);
if (upperCache == NULL) {
status = B_NO_MEMORY;
goto err1;
}
lowerCacheRef = vm_cache_ref_create(lowerCache);
if (lowerCacheRef == NULL) {
status = B_NO_MEMORY;
goto err2;
}
// The area must be readable in the same way it was previously writable
protection = B_KERNEL_READ_AREA;
if (area->lock & B_READ_AREA)
protection |= B_READ_AREA;
// we need to hold the cache_ref lock when we want to switch its cache
mutex_lock(&upperCacheRef->lock);
mutex_lock(&lowerCacheRef->lock);
// ToDo: add a child counter to vm_cache - so that we can collapse a
// cache layer when possible (ie. "the other" area was deleted)
upperCache->temporary = 1;
upperCache->scan_skip = lowerCache->scan_skip;
upperCache->source = lowerCache;
upperCacheRef->cache = upperCache;
// we need to manually alter the ref_count
lowerCacheRef->ref_count = upperCacheRef->ref_count;
upperCacheRef->ref_count = 1;
// grab a ref to the cache object we're now linked to as a source
vm_cache_acquire_ref(lowerCacheRef, true);
// We now need to remap all pages from the area read-only, so that
// a copy will be created on next write access
map = &area->aspace->translation_map;
map->ops->lock(map);
map->ops->unmap(map, area->base, area->base + area->size - 1);
for (page = lowerCache->page_list; page; page = page->cache_next) {
map->ops->map(map, area->base + page->offset, page->ppn * B_PAGE_SIZE, protection);
}
map->ops->unlock(map);
mutex_unlock(&lowerCacheRef->lock);
mutex_unlock(&upperCacheRef->lock);
return B_OK;
err2:
free(upperCache);
err1:
store->ops->destroy(store);
return status;
}
area_id
vm_copy_area(aspace_id addressSpaceID, const char *name, void **_address, uint32 addressSpec,
uint32 protection, area_id sourceID)
{
vm_address_space *addressSpace;
vm_cache_ref *cacheRef;
vm_region *target, *source;
status_t status;
if ((protection & B_KERNEL_PROTECTION) == 0)
protection |= B_KERNEL_READ_AREA | B_KERNEL_WRITE_AREA;
if ((source = vm_get_region_by_id(sourceID)) == NULL)
return B_BAD_VALUE;
addressSpace = vm_get_aspace_by_id(addressSpaceID);
cacheRef = source->cache_ref;
if (addressSpec == B_CLONE_ADDRESS)
*_address = (void *)source->base;
// First, create a cache on top of the source area
status = map_backing_store(addressSpace, cacheRef->cache->store, _address,
source->cache_offset, source->size, addressSpec, source->wiring, protection,
protection & (B_KERNEL_WRITE_AREA | B_WRITE_AREA) ? REGION_PRIVATE_MAP : REGION_NO_PRIVATE_MAP,
&target, name);
if (status < B_OK)
goto err;
// If the source area is writable, we need to move it one layer up as well
if ((source->lock & (B_KERNEL_WRITE_AREA | B_WRITE_AREA)) != 0)
vm_copy_on_write_area(source);
// we want to return the ID of the newly created area
status = target->id;
err:
vm_put_aspace(addressSpace);
vm_put_region(source);
return status;
}
status_t
vm_get_page_mapping(aspace_id aid, addr_t vaddr, addr_t *paddr)
2002-07-09 12:24:59 +00:00
{
vm_address_space *aspace;
uint32 null_flags;
status_t err;
2002-07-09 12:24:59 +00:00
aspace = vm_get_aspace_by_id(aid);
if (aspace == NULL)
2002-07-09 12:24:59 +00:00
return ERR_VM_INVALID_ASPACE;
err = aspace->translation_map.ops->query(&aspace->translation_map,
vaddr, paddr, &null_flags);
2002-07-09 12:24:59 +00:00
vm_put_aspace(aspace);
return err;
}
static int
display_mem(int argc, char **argv)
2002-07-09 12:24:59 +00:00
{
int item_size;
int display_width;
int num = 1;
addr_t address;
2002-07-09 12:24:59 +00:00
int i;
int j;
if (argc < 2) {
dprintf("usage: dw/ds/db <address> [num]\n"
"\tdw - 4 bytes\n"
"\tds - 2 bytes\n"
"\tdb - 1 byte\n");
return 0;
2002-07-09 12:24:59 +00:00
}
address = strtoul(argv[1], NULL, 0);
2002-07-09 12:24:59 +00:00
if (argc >= 3) {
2002-07-09 12:24:59 +00:00
num = -1;
num = atoi(argv[2]);
}
// build the format string
if (strcmp(argv[0], "db") == 0) {
2002-07-09 12:24:59 +00:00
item_size = 1;
display_width = 16;
} else if (strcmp(argv[0], "ds") == 0) {
2002-07-09 12:24:59 +00:00
item_size = 2;
display_width = 8;
} else if (strcmp(argv[0], "dw") == 0) {
2002-07-09 12:24:59 +00:00
item_size = 4;
display_width = 4;
} else {
dprintf("display_mem called in an invalid way!\n");
return 0;
2002-07-09 12:24:59 +00:00
}
dprintf("[0x%lx] '", address);
for (j = 0; j < min(display_width, num) * item_size; j++) {
2002-07-09 12:24:59 +00:00
char c = *((char *)address + j);
if (!isalnum(c)) {
2002-07-09 12:24:59 +00:00
c = '.';
}
dprintf("%c", c);
}
dprintf("'");
for (i = 0; i < num; i++) {
if ((i % display_width) == 0 && i != 0) {
2002-07-09 12:24:59 +00:00
dprintf("\n[0x%lx] '", address + i * item_size);
for (j = 0; j < min(display_width, (num-i)) * item_size; j++) {
2002-07-09 12:24:59 +00:00
char c = *((char *)address + i * item_size + j);
if (!isalnum(c)) {
2002-07-09 12:24:59 +00:00
c = '.';
}
dprintf("%c", c);
}
dprintf("'");
}
switch (item_size) {
2002-07-09 12:24:59 +00:00
case 1:
dprintf(" 0x%02x", *((uint8 *)address + i));
break;
case 2:
dprintf(" 0x%04x", *((uint16 *)address + i));
break;
case 4:
dprintf(" 0x%08lx", *((uint32 *)address + i));
2002-07-09 12:24:59 +00:00
break;
default:
dprintf("huh?\n");
}
}
dprintf("\n");
return 0;
2002-07-09 12:24:59 +00:00
}
static int
dump_cache_ref(int argc, char **argv)
2002-07-09 12:24:59 +00:00
{
addr_t address;
2002-07-09 12:24:59 +00:00
vm_region *region;
vm_cache_ref *cache_ref;
if (argc < 2) {
2002-07-09 12:24:59 +00:00
dprintf("cache_ref: not enough arguments\n");
return 0;
2002-07-09 12:24:59 +00:00
}
if (strlen(argv[1]) < 2 || argv[1][0] != '0' || argv[1][1] != 'x') {
2002-07-09 12:24:59 +00:00
dprintf("cache_ref: invalid argument, pass address\n");
return 0;
2002-07-09 12:24:59 +00:00
}
address = atoul(argv[1]);
cache_ref = (vm_cache_ref *)address;
dprintf("cache_ref at %p:\n", cache_ref);
dprintf("cache: %p\n", cache_ref->cache);
dprintf("lock.holder: %ld\n", cache_ref->lock.holder);
dprintf("lock.sem: 0x%lx\n", cache_ref->lock.sem);
2002-07-09 12:24:59 +00:00
dprintf("region_list:\n");
for (region = cache_ref->region_list; region != NULL; region = region->cache_next) {
dprintf(" region 0x%lx: ", region->id);
2002-07-09 12:24:59 +00:00
dprintf("base_addr = 0x%lx ", region->base);
dprintf("size = 0x%lx ", region->size);
dprintf("name = '%s' ", region->name);
dprintf("lock = 0x%x\n", region->lock);
}
dprintf("ref_count: %ld\n", cache_ref->ref_count);
return 0;
2002-07-09 12:24:59 +00:00
}
static const char *
page_state_to_text(int state)
2002-07-09 12:24:59 +00:00
{
switch(state) {
case PAGE_STATE_ACTIVE:
return "active";
case PAGE_STATE_INACTIVE:
return "inactive";
case PAGE_STATE_BUSY:
return "busy";
case PAGE_STATE_MODIFIED:
return "modified";
case PAGE_STATE_FREE:
return "free";
case PAGE_STATE_CLEAR:
return "clear";
case PAGE_STATE_WIRED:
return "wired";
case PAGE_STATE_UNUSED:
return "unused";
default:
return "unknown";
}
}
static int
dump_cache(int argc, char **argv)
2002-07-09 12:24:59 +00:00
{
addr_t address;
2002-07-09 12:24:59 +00:00
vm_cache *cache;
vm_page *page;
if (argc < 2) {
2002-07-09 12:24:59 +00:00
dprintf("cache: not enough arguments\n");
return 0;
2002-07-09 12:24:59 +00:00
}
if (strlen(argv[1]) < 2 || argv[1][0] != '0' || argv[1][1] != 'x') {
2002-07-09 12:24:59 +00:00
dprintf("cache: invalid argument, pass address\n");
return 0;
2002-07-09 12:24:59 +00:00
}
address = atoul(argv[1]);
cache = (vm_cache *)address;
dprintf("cache at %p:\n", cache);
dprintf("cache_ref: %p\n", cache->ref);
dprintf("source: %p\n", cache->source);
dprintf("store: %p\n", cache->store);
// XXX 64-bit
dprintf("virtual_size: 0x%Lx\n", cache->virtual_size);
dprintf("temporary: %d\n", cache->temporary);
dprintf("scan_skip: %d\n", cache->scan_skip);
dprintf("page_list:\n");
for(page = cache->page_list; page != NULL; page = page->cache_next) {
// XXX offset is 64-bit
if(page->type == PAGE_TYPE_PHYSICAL)
dprintf(" %p ppn 0x%lx offset 0x%Lx type %d state %d (%s) ref_count %ld\n",
2002-07-09 12:24:59 +00:00
page, page->ppn, page->offset, page->type, page->state, page_state_to_text(page->state), page->ref_count);
else if(page->type == PAGE_TYPE_DUMMY)
dprintf(" %p DUMMY PAGE state %d (%s)\n", page, page->state, page_state_to_text(page->state));
else
dprintf(" %p UNKNOWN PAGE type %d\n", page, page->type);
}
return 0;
2002-07-09 12:24:59 +00:00
}
static void
_dump_region(vm_region *region)
2002-07-09 12:24:59 +00:00
{
dprintf("dump of region at %p:\n", region);
dprintf("name: '%s'\n", region->name);
dprintf("id: 0x%lx\n", region->id);
2002-07-09 12:24:59 +00:00
dprintf("base: 0x%lx\n", region->base);
dprintf("size: 0x%lx\n", region->size);
dprintf("lock: 0x%x\n", region->lock);
dprintf("wiring: 0x%x\n", region->wiring);
dprintf("ref_count: %ld\n", region->ref_count);
2002-07-09 12:24:59 +00:00
dprintf("cache_ref: %p\n", region->cache_ref);
// XXX 64-bit
dprintf("cache_offset: 0x%Lx\n", region->cache_offset);
dprintf("cache_next: %p\n", region->cache_next);
dprintf("cache_prev: %p\n", region->cache_prev);
}
static int
dump_region(int argc, char **argv)
2002-07-09 12:24:59 +00:00
{
// int i;
vm_region *region;
if (argc < 2) {
2002-07-09 12:24:59 +00:00
dprintf("region: not enough arguments\n");
return 0;
2002-07-09 12:24:59 +00:00
}
// if the argument looks like a hex number, treat it as such
if (strlen(argv[1]) > 2 && argv[1][0] == '0' && argv[1][1] == 'x') {
unsigned long num = strtoul(argv[1], NULL, 16);
2002-07-09 12:24:59 +00:00
region_id id = num;
region = hash_lookup(region_table, &id);
if (region == NULL) {
2002-07-09 12:24:59 +00:00
dprintf("invalid region id\n");
} else {
_dump_region(region);
}
return 0;
2002-07-09 12:24:59 +00:00
} else {
// walk through the region list, looking for the arguments as a name
struct hash_iterator iter;
hash_open(region_table, &iter);
while ((region = hash_next(region_table, &iter)) != NULL) {
if (region->name != NULL && strcmp(argv[1], region->name) == 0) {
2002-07-09 12:24:59 +00:00
_dump_region(region);
}
}
}
return 0;
2002-07-09 12:24:59 +00:00
}
region_id
find_region_by_address(addr_t address)
2002-07-09 12:24:59 +00:00
{
vm_address_space *aspace;
vm_region *region;
region_id result = B_ERROR;
2002-07-09 12:24:59 +00:00
aspace = vm_get_current_user_aspace();
for (region = aspace->virtual_map.region_list; region != NULL; region = region->aspace_next) {
if (region->id == RESERVED_REGION_ID)
continue;
if (address >= region->base && address <= region->base + region->size) {
result = region->id;
break;
2002-07-09 12:24:59 +00:00
}
}
2002-07-09 12:24:59 +00:00
vm_put_aspace(aspace);
return result;
}
region_id
find_region_by_name(const char *name)
2002-07-09 12:24:59 +00:00
{
vm_region *region;
struct hash_iterator iter;
hash_open(region_table, &iter);
while ((region = hash_next(region_table, &iter)) != NULL)
2002-07-09 12:24:59 +00:00
{
if (!strcmp(region->name,name))
return region->id;
}
hash_close(region_table, &iter, false);
return B_NAME_NOT_FOUND;
}
static int
dump_region_list(int argc, char **argv)
2002-07-09 12:24:59 +00:00
{
vm_region *region;
struct hash_iterator iter;
dprintf("addr\t id base\t\tsize\t\tprotect\tlock\tname\n");
2002-07-09 12:24:59 +00:00
hash_open(region_table, &iter);
while ((region = hash_next(region_table, &iter)) != NULL) {
dprintf("%p %5lx %p\t%p\t%d\t%d\t%s\n", region, region->id, (void *)region->base,
(void *)region->size, region->lock, region->wiring, region->name);
2002-07-09 12:24:59 +00:00
}
hash_close(region_table, &iter, false);
return 0;
2002-07-09 12:24:59 +00:00
}
status_t
vm_delete_areas(struct vm_address_space *aspace)
2002-07-09 12:24:59 +00:00
{
vm_region *area;
2002-07-09 12:24:59 +00:00
vm_region *next;
TRACE(("vm_delete_areas: called on aspace 0x%lx\n", aspace->id));
acquire_sem_etc(aspace->virtual_map.sem, WRITE_COUNT, 0, 0);
// delete all the regions in this aspace
for (area = aspace->virtual_map.region_list; area; area = next) {
next = area->aspace_next;
if (area->id == RESERVED_REGION_ID) {
// just remove it
free(area);
continue;
}
// decrement the ref on this region, may actually push the ref < 0, if there
// is a concurrent delete_area() on that specific area, but that's ok here
_vm_put_region(area, true);
}
release_sem_etc(aspace->virtual_map.sem, WRITE_COUNT, 0);
return B_OK;
}
static int32
vm_thread_dump_max_commit(void *unused)
2002-07-09 12:24:59 +00:00
{
int oldmax = -1;
(void)(unused);
for (;;) {
snooze(1000000);
if (oldmax != max_commit)
TRACE(("max_commit 0x%x\n", max_commit));
2002-07-09 12:24:59 +00:00
oldmax = max_commit;
}
}
static void
create_preloaded_image_areas(struct preloaded_image *image)
{
char name[B_OS_NAME_LENGTH];
void *address;
int32 length;
// use file name to create a good area name
char *fileName = strrchr(image->name, '/');
if (fileName == NULL)
fileName = image->name;
else
fileName++;
length = strlen(fileName);
// make sure there is enough space for the suffix
if (length > 25)
length = 25;
memcpy(name, fileName, length);
strcpy(name + length, "_text");
address = (void *)ROUNDOWN(image->text_region.start, PAGE_SIZE);
image->text_region.id = vm_create_anonymous_region(vm_get_kernel_aspace_id(), name, &address, B_EXACT_ADDRESS,
PAGE_ALIGN(image->text_region.size), B_ALREADY_WIRED, B_KERNEL_READ_AREA | B_KERNEL_WRITE_AREA);
strcpy(name + length, "_data");
address = (void *)ROUNDOWN(image->data_region.start, PAGE_SIZE);
image->data_region.id = vm_create_anonymous_region(vm_get_kernel_aspace_id(), name, &address, B_EXACT_ADDRESS,
PAGE_ALIGN(image->data_region.size), B_ALREADY_WIRED, B_KERNEL_READ_AREA | B_KERNEL_WRITE_AREA);
}
status_t
vm_init(kernel_args *ka)
2002-07-09 12:24:59 +00:00
{
int err = 0;
unsigned int i;
struct preloaded_image *image;
addr_t heap_base;
void *address;
2002-07-09 12:24:59 +00:00
TRACE(("vm_init: entry\n"));
2002-07-09 12:24:59 +00:00
err = vm_translation_map_module_init(ka);
err = arch_vm_init(ka);
// initialize some globals
next_region_id = 0;
region_hash_sem = -1;
max_commit = 0; // will be increased in vm_page_init
max_commit_lock = 0;
// map in the new heap and initialize it
heap_base = vm_alloc_from_ka_struct(ka, HEAP_SIZE, B_KERNEL_READ_AREA | B_KERNEL_WRITE_AREA);
TRACE(("heap at 0x%lx\n", heap_base));
heap_init(heap_base);
2002-07-09 12:24:59 +00:00
// initialize the free page list and physical page mapper
vm_page_init(ka);
// initialize the hash table that stores the pages mapped to caches
vm_cache_init(ka);
{
vm_region *region;
region_table = hash_init(REGION_HASH_TABLE_SIZE, (addr_t)&region->hash_next - (addr_t)region,
2002-07-09 12:24:59 +00:00
&region_compare, &region_hash);
if (region_table == NULL)
2002-07-09 12:24:59 +00:00
panic("vm_init: error creating aspace hash table\n");
}
vm_aspace_init();
2002-07-09 12:24:59 +00:00
// do any further initialization that the architecture dependant layers may need now
vm_translation_map_module_init2(ka);
arch_vm_init2(ka);
vm_page_init2(ka);
// allocate regions to represent stuff that already exists
address = (void *)ROUNDOWN(heap_base, PAGE_SIZE);
vm_create_anonymous_region(vm_get_kernel_aspace_id(), "kernel_heap", &address, B_EXACT_ADDRESS,
HEAP_SIZE, B_ALREADY_WIRED, B_KERNEL_READ_AREA | B_KERNEL_WRITE_AREA);
2002-07-09 12:24:59 +00:00
ka->kernel_image.name = "kernel";
// the lazy boot loader currently doesn't set the kernel's name...
create_preloaded_image_areas(&ka->kernel_image);
// allocate areas for preloaded images
for (image = ka->preloaded_images; image != NULL; image = image->next) {
create_preloaded_image_areas(image);
}
// allocate kernel stacks
for (i = 0; i < ka->num_cpus; i++) {
2002-07-09 12:24:59 +00:00
char temp[64];
sprintf(temp, "idle_thread%d_kstack", i);
address = (void *)ka->cpu_kstack[i].start;
vm_create_anonymous_region(vm_get_kernel_aspace_id(), temp, &address, B_EXACT_ADDRESS,
ka->cpu_kstack[i].size, B_ALREADY_WIRED, B_KERNEL_READ_AREA | B_KERNEL_WRITE_AREA);
2002-07-09 12:24:59 +00:00
}
{
void *null;
vm_map_physical_memory(vm_get_kernel_aspace_id(), "bootdir", &null, B_ANY_KERNEL_ADDRESS,
ka->bootdir_addr.size, B_KERNEL_READ_AREA, ka->bootdir_addr.start);
2002-07-09 12:24:59 +00:00
}
arch_vm_init_endvm(ka);
// add some debugger commands
add_debugger_command("regions", &dump_region_list, "Dump a list of all regions");
add_debugger_command("region", &dump_region, "Dump info about a particular region");
add_debugger_command("cache_ref", &dump_cache_ref, "Dump cache_ref data structure");
add_debugger_command("cache", &dump_cache, "Dump cache_ref data structure");
// add_debugger_command("dl", &display_mem, "dump memory long words (64-bit)");
add_debugger_command("dw", &display_mem, "dump memory words (32-bit)");
add_debugger_command("ds", &display_mem, "dump memory shorts (16-bit)");
add_debugger_command("db", &display_mem, "dump memory bytes (8-bit)");
2002-07-09 12:24:59 +00:00
TRACE(("vm_init: exit\n"));
2002-07-09 12:24:59 +00:00
return err;
}
status_t
vm_init_postsem(kernel_args *ka)
2002-07-09 12:24:59 +00:00
{
vm_region *region;
// fill in all of the semaphores that were not allocated before
// since we're still single threaded and only the kernel address space exists,
// it isn't that hard to find all of the ones we need to create
vm_translation_map_module_init_post_sem(ka);
vm_aspace_init_post_sem();
recursive_lock_init(&kernel_aspace->translation_map.lock, "vm translation rlock");
2002-07-09 12:24:59 +00:00
for (region = kernel_aspace->virtual_map.region_list; region; region = region->aspace_next) {
if (region->cache_ref->lock.sem < 0)
mutex_init(&region->cache_ref->lock, "cache_ref_mutex");
2002-07-09 12:24:59 +00:00
}
region_hash_sem = create_sem(WRITE_COUNT, "region_hash_sem");
return heap_init_postsem(ka);
}
status_t
vm_init_postthread(kernel_args *ka)
2002-07-09 12:24:59 +00:00
{
vm_page_init_postthread(ka);
{
thread_id thread = spawn_kernel_thread(&vm_thread_dump_max_commit, "max_commit_thread", B_NORMAL_PRIORITY, NULL);
resume_thread(thread);
2002-07-09 12:24:59 +00:00
}
vm_daemon_init();
return 0;
}
void
permit_page_faults(void)
{
struct thread *thread = thread_get_current_thread();
if (thread != NULL)
atomic_add(&thread->page_faults_allowed, 1);
}
void
forbid_page_faults(void)
{
struct thread *thread = thread_get_current_thread();
if (thread != NULL)
atomic_add(&thread->page_faults_allowed, -1);
}
int
vm_page_fault(addr_t address, addr_t fault_address, bool is_write, bool is_user, addr_t *newip)
2002-07-09 12:24:59 +00:00
{
int err;
2004-09-29 14:24:44 +00:00
TRACE(("vm_page_fault: page fault at 0x%x, ip 0x%x\n", address, fault_address));
2002-07-09 12:24:59 +00:00
*newip = 0;
err = vm_soft_fault(address, is_write, is_user);
if (err < 0) {
2004-09-29 14:24:44 +00:00
dprintf("vm_page_fault: vm_soft_fault returned error %d on fault at 0x%lx, ip 0x%lx, write %d, user %d, thread 0x%lx\n",
err, address, fault_address, is_write, is_user, thread_get_current_thread_id());
if (!is_user) {
2002-07-09 12:24:59 +00:00
struct thread *t = thread_get_current_thread();
if (t && t->fault_handler != 0) {
2002-07-09 12:24:59 +00:00
// this will cause the arch dependant page fault handler to
// modify the IP on the interrupt frame or whatever to return
// to this address
*newip = t->fault_handler;
} else {
// unhandled page fault in the kernel
panic("vm_page_fault: unhandled page fault in kernel space at 0x%lx, ip 0x%lx\n",
address, fault_address);
}
} else {
dprintf("vm_page_fault: killing team 0x%lx, ip 0x%lx\n", thread_get_current_thread()->team->id, fault_address);
2004-03-03 01:02:08 +00:00
kill_team(team_get_current_team_id());
2002-07-09 12:24:59 +00:00
}
}
return B_HANDLED_INTERRUPT;
2002-07-09 12:24:59 +00:00
}
static int
vm_soft_fault(addr_t originalAddress, bool isWrite, bool isUser)
2002-07-09 12:24:59 +00:00
{
vm_address_space *aspace;
vm_virtual_map *map;
vm_region *region;
vm_cache_ref *cache_ref;
vm_cache_ref *last_cache_ref;
vm_cache_ref *top_cache_ref;
off_t cache_offset;
vm_page dummy_page;
vm_page *page = NULL;
addr_t address;
2002-07-09 12:24:59 +00:00
int change_count;
int err;
2004-09-29 14:24:44 +00:00
TRACE(("vm_soft_fault: thid 0x%x address 0x%x, isWrite %d, isUser %d\n",
thread_get_current_thread_id(), address, isWrite, isUser));
2002-07-09 12:24:59 +00:00
address = ROUNDOWN(originalAddress, PAGE_SIZE);
2002-07-09 12:24:59 +00:00
if (IS_KERNEL_ADDRESS(address)) {
2002-07-09 12:24:59 +00:00
aspace = vm_get_kernel_aspace();
} else if (IS_USER_ADDRESS(address)) {
2002-07-09 12:24:59 +00:00
aspace = vm_get_current_user_aspace();
if (aspace == NULL) {
if (isUser == false) {
2002-07-09 12:24:59 +00:00
dprintf("vm_soft_fault: kernel thread accessing invalid user memory!\n");
return ERR_VM_PF_FATAL;
} else {
// XXX weird state.
panic("vm_soft_fault: non kernel thread accessing user memory that doesn't exist!\n");
}
}
} else {
// the hit was probably in the 64k DMZ between kernel and user space
// this keeps a user space thread from passing a buffer that crosses into kernel space
return ERR_VM_PF_FATAL;
}
map = &aspace->virtual_map;
atomic_add(&aspace->fault_count, 1);
// Get the area the fault was in
2002-07-09 12:24:59 +00:00
acquire_sem_etc(map->sem, READ_COUNT, 0, 0);
region = vm_virtual_map_lookup(map, address);
if (region == NULL) {
2002-07-09 12:24:59 +00:00
release_sem_etc(map->sem, READ_COUNT, 0);
vm_put_aspace(aspace);
dprintf("vm_soft_fault: va 0x%lx not covered by region in address space\n", originalAddress);
2002-07-09 12:24:59 +00:00
return ERR_VM_PF_BAD_ADDRESS; // BAD_ADDRESS
}
// check permissions
if (isUser && (region->lock & B_USER_PROTECTION) == 0) {
2002-07-09 12:24:59 +00:00
release_sem_etc(map->sem, READ_COUNT, 0);
vm_put_aspace(aspace);
2004-09-29 14:24:44 +00:00
dprintf("user access on kernel region 0x%lx at %p\n", region->id, (void *)originalAddress);
2002-07-09 12:24:59 +00:00
return ERR_VM_PF_BAD_PERM; // BAD_PERMISSION
}
if (isWrite && (region->lock & (B_WRITE_AREA | (isUser ? 0 : B_KERNEL_WRITE_AREA))) == 0) {
2002-07-09 12:24:59 +00:00
release_sem_etc(map->sem, READ_COUNT, 0);
vm_put_aspace(aspace);
dprintf("write access attempted on read-only region 0x%lx at %p\n", region->id, (void *)originalAddress);
2002-07-09 12:24:59 +00:00
return ERR_VM_PF_BAD_PERM; // BAD_PERMISSION
}
// We have the area, it was a valid access, so let's try to resolve the page fault now.
// At first, the top most cache from the area is investigated
TRACEPFAULT;
2002-07-09 12:24:59 +00:00
top_cache_ref = region->cache_ref;
cache_offset = address - region->base + region->cache_offset;
vm_cache_acquire_ref(top_cache_ref, true);
change_count = map->change_count;
release_sem_etc(map->sem, READ_COUNT, 0);
// See if this cache has a fault handler - this will do all the work for us
if (top_cache_ref->cache->store->ops->fault) {
// Note, since the page fault is resolved with interrupts enabled, the
// fault handler could be called more than one for the same reason -
// the store must take this into account
2002-07-09 12:24:59 +00:00
int err = (*top_cache_ref->cache->store->ops->fault)(top_cache_ref->cache->store, aspace, cache_offset);
vm_cache_release_ref(top_cache_ref);
vm_put_aspace(aspace);
return err;
}
// The top most cache has no fault handler, so let's see if the cache or its sources
// already have the page we're searching for (we're going from top to bottom)
TRACEPFAULT;
2002-07-09 12:24:59 +00:00
dummy_page.state = PAGE_STATE_INACTIVE;
dummy_page.type = PAGE_TYPE_DUMMY;
last_cache_ref = top_cache_ref;
for (cache_ref = top_cache_ref; cache_ref; cache_ref = (cache_ref->cache->source) ? cache_ref->cache->source->ref : NULL) {
2002-07-09 12:24:59 +00:00
mutex_lock(&cache_ref->lock);
TRACEPFAULT;
2002-07-09 12:24:59 +00:00
for (;;) {
2002-07-09 12:24:59 +00:00
page = vm_cache_lookup_page(cache_ref, cache_offset);
if (page != NULL && page->state != PAGE_STATE_BUSY) {
2002-07-09 12:24:59 +00:00
vm_page_set_state(page, PAGE_STATE_BUSY);
mutex_unlock(&cache_ref->lock);
break;
}
if (page == NULL)
2002-07-09 12:24:59 +00:00
break;
TRACEPFAULT;
2002-07-09 12:24:59 +00:00
// page must be busy
// ToDo: don't wait forever!
2002-07-09 12:24:59 +00:00
mutex_unlock(&cache_ref->lock);
snooze(20000);
2002-07-09 12:24:59 +00:00
mutex_lock(&cache_ref->lock);
}
TRACEPFAULT;
2002-07-09 12:24:59 +00:00
if (page != NULL)
2002-07-09 12:24:59 +00:00
break;
// The current cache does not contain the page we're looking for
TRACEPFAULT;
2002-07-09 12:24:59 +00:00
// If we're at the top most cache, insert the dummy page here to keep other threads
// from faulting on the same address and chasing us up the cache chain
if (cache_ref == top_cache_ref) {
2002-07-09 12:24:59 +00:00
dummy_page.state = PAGE_STATE_BUSY;
vm_cache_insert_page(cache_ref, &dummy_page, cache_offset);
}
// see if the vm_store has it
if (cache_ref->cache->store->ops->has_page != NULL
&& cache_ref->cache->store->ops->has_page(cache_ref->cache->store, cache_offset)) {
size_t bytesRead;
iovec vec;
vec.iov_len = bytesRead = B_PAGE_SIZE;
2002-07-09 12:24:59 +00:00
TRACEPFAULT;
2002-07-09 12:24:59 +00:00
mutex_unlock(&cache_ref->lock);
2002-07-09 12:24:59 +00:00
page = vm_page_allocate_page(PAGE_STATE_FREE);
aspace->translation_map.ops->get_physical_page(page->ppn * PAGE_SIZE, (addr_t *)&vec.iov_base, PHYSICAL_PAGE_CAN_WAIT);
// ToDo: handle errors here
err = cache_ref->cache->store->ops->read(cache_ref->cache->store, cache_offset, &vec, 1, &bytesRead);
aspace->translation_map.ops->put_physical_page((addr_t)vec.iov_base);
2002-07-09 12:24:59 +00:00
mutex_lock(&cache_ref->lock);
2002-07-09 12:24:59 +00:00
if (cache_ref == top_cache_ref) {
vm_cache_remove_page(cache_ref, &dummy_page);
dummy_page.state = PAGE_STATE_INACTIVE;
2002-07-09 12:24:59 +00:00
}
vm_cache_insert_page(cache_ref, page, cache_offset);
mutex_unlock(&cache_ref->lock);
break;
2002-07-09 12:24:59 +00:00
}
mutex_unlock(&cache_ref->lock);
last_cache_ref = cache_ref;
TRACEPFAULT;
2002-07-09 12:24:59 +00:00
}
TRACEPFAULT;
2002-07-09 12:24:59 +00:00
if (!cache_ref) {
// We rolled off the end of the cache chain, so we need to decide which
// cache will get the new page we're about to create.
cache_ref = isWrite ? top_cache_ref : last_cache_ref;
// Read-only pages come in the deepest cache - only the
// top most cache may have direct write access.
2002-07-09 12:24:59 +00:00
}
TRACEPFAULT;
2002-07-09 12:24:59 +00:00
if (page == NULL) {
// we still haven't found a page, so we allocate a clean one
2002-07-09 12:24:59 +00:00
page = vm_page_allocate_page(PAGE_STATE_CLEAR);
2004-09-29 14:24:44 +00:00
TRACE(("vm_soft_fault: just allocated page 0x%lx\n", page->ppn));
// Insert the new page into our cache, and replace it with the dummy page if necessary
2002-07-09 12:24:59 +00:00
mutex_lock(&cache_ref->lock);
// if we inserted a dummy page into this cache, we have to remove it now
if (dummy_page.state == PAGE_STATE_BUSY && dummy_page.cache == cache_ref->cache) {
2002-07-09 12:24:59 +00:00
vm_cache_remove_page(cache_ref, &dummy_page);
dummy_page.state = PAGE_STATE_INACTIVE;
}
2002-07-09 12:24:59 +00:00
vm_cache_insert_page(cache_ref, page, cache_offset);
mutex_unlock(&cache_ref->lock);
if (dummy_page.state == PAGE_STATE_BUSY) {
// we had inserted the dummy cache in another cache, so let's remove it from there
vm_cache_ref *temp_cache = dummy_page.cache->ref;
2002-07-09 12:24:59 +00:00
mutex_lock(&temp_cache->lock);
vm_cache_remove_page(temp_cache, &dummy_page);
mutex_unlock(&temp_cache->lock);
dummy_page.state = PAGE_STATE_INACTIVE;
}
}
// We now have the page and a cache it belongs to - we now need to make
// sure that the area's cache can access it, too, and sees the correct data
TRACEPFAULT;
2002-07-09 12:24:59 +00:00
if (page->cache != top_cache_ref->cache && isWrite) {
2002-07-09 12:24:59 +00:00
// now we have a page that has the data we want, but in the wrong cache object
// so we need to copy it and stick it into the top cache
vm_page *src_page = page;
void *src, *dest;
page = vm_page_allocate_page(PAGE_STATE_FREE);
// try to get a mapping for the src and dest page so we can copy it
for (;;) {
(*aspace->translation_map.ops->get_physical_page)(src_page->ppn * B_PAGE_SIZE, (addr_t *)&src, PHYSICAL_PAGE_CAN_WAIT);
err = (*aspace->translation_map.ops->get_physical_page)(page->ppn * B_PAGE_SIZE, (addr_t *)&dest, PHYSICAL_PAGE_NO_WAIT);
if (err == B_NO_ERROR)
2002-07-09 12:24:59 +00:00
break;
// it couldn't map the second one, so sleep and retry
// keeps an extremely rare deadlock from occuring
(*aspace->translation_map.ops->put_physical_page)((addr_t)src);
snooze(5000);
2002-07-09 12:24:59 +00:00
}
memcpy(dest, src, B_PAGE_SIZE);
(*aspace->translation_map.ops->put_physical_page)((addr_t)src);
(*aspace->translation_map.ops->put_physical_page)((addr_t)dest);
2002-07-09 12:24:59 +00:00
vm_page_set_state(src_page, PAGE_STATE_ACTIVE);
mutex_lock(&top_cache_ref->lock);
// Insert the new page into our cache, and replace it with the dummy page if necessary
// if we inserted a dummy page into this cache, we have to remove it now
if (dummy_page.state == PAGE_STATE_BUSY && dummy_page.cache == top_cache_ref->cache) {
2002-07-09 12:24:59 +00:00
vm_cache_remove_page(top_cache_ref, &dummy_page);
dummy_page.state = PAGE_STATE_INACTIVE;
}
2002-07-09 12:24:59 +00:00
vm_cache_insert_page(top_cache_ref, page, cache_offset);
mutex_unlock(&top_cache_ref->lock);
if (dummy_page.state == PAGE_STATE_BUSY) {
// we had inserted the dummy cache in another cache, so let's remove it from there
vm_cache_ref *temp_cache = dummy_page.cache->ref;
2002-07-09 12:24:59 +00:00
mutex_lock(&temp_cache->lock);
vm_cache_remove_page(temp_cache, &dummy_page);
mutex_unlock(&temp_cache->lock);
dummy_page.state = PAGE_STATE_INACTIVE;
}
}
TRACEPFAULT;
2002-07-09 12:24:59 +00:00
err = 0;
acquire_sem_etc(map->sem, READ_COUNT, 0, 0);
if (change_count != map->change_count) {
2002-07-09 12:24:59 +00:00
// something may have changed, see if the address is still valid
region = vm_virtual_map_lookup(map, address);
if (region == NULL
|| region->cache_ref != top_cache_ref
|| (address - region->base + region->cache_offset) != cache_offset) {
2002-07-09 12:24:59 +00:00
dprintf("vm_soft_fault: address space layout changed effecting ongoing soft fault\n");
err = ERR_VM_PF_BAD_ADDRESS; // BAD_ADDRESS
}
}
TRACEPFAULT;
2002-07-09 12:24:59 +00:00
if (err == 0) {
// All went fine, all there is left to do is to map the page into the address space
// If the page doesn't reside in the area's cache, we need to make sure it's
// mapped in read-only, so that we cannot overwrite someone else's data (copy-on-write)
2002-07-09 12:24:59 +00:00
int new_lock = region->lock;
if (page->cache != top_cache_ref->cache && !isWrite)
new_lock &= ~(isUser ? B_WRITE_AREA : B_KERNEL_WRITE_AREA);
2002-07-09 12:24:59 +00:00
atomic_add(&page->ref_count, 1);
(*aspace->translation_map.ops->lock)(&aspace->translation_map);
(*aspace->translation_map.ops->map)(&aspace->translation_map, address,
page->ppn * PAGE_SIZE, new_lock);
(*aspace->translation_map.ops->unlock)(&aspace->translation_map);
}
TRACEPFAULT;
2002-07-09 12:24:59 +00:00
release_sem_etc(map->sem, READ_COUNT, 0);
TRACEPFAULT;
2002-07-09 12:24:59 +00:00
if (dummy_page.state == PAGE_STATE_BUSY) {
// We still have the dummy page in the cache - that happens if we didn't need
// to allocate a new page before, but could use one in another cache
vm_cache_ref *temp_cache = dummy_page.cache->ref;
2002-07-09 12:24:59 +00:00
mutex_lock(&temp_cache->lock);
vm_cache_remove_page(temp_cache, &dummy_page);
mutex_unlock(&temp_cache->lock);
dummy_page.state = PAGE_STATE_INACTIVE;
}
TRACEPFAULT;
2002-07-09 12:24:59 +00:00
vm_page_set_state(page, PAGE_STATE_ACTIVE);
vm_cache_release_ref(top_cache_ref);
vm_put_aspace(aspace);
TRACEPFAULT;
2002-07-09 12:24:59 +00:00
return err;
}
static vm_region *
vm_virtual_map_lookup(vm_virtual_map *map, addr_t address)
2002-07-09 12:24:59 +00:00
{
vm_region *region;
// check the region_list region first
region = map->region_hint;
if (region && region->base <= address && (region->base + region->size) > address)
2002-07-09 12:24:59 +00:00
return region;
for (region = map->region_list; region != NULL; region = region->aspace_next) {
if (region->id == RESERVED_REGION_ID)
continue;
if (region->base <= address && (region->base + region->size) > address)
2002-07-09 12:24:59 +00:00
break;
}
if (region)
2002-07-09 12:24:59 +00:00
map->region_hint = region;
return region;
}
status_t
vm_get_physical_page(addr_t paddr, addr_t *_vaddr, int flags)
2002-07-09 12:24:59 +00:00
{
return (*kernel_aspace->translation_map.ops->get_physical_page)(paddr, _vaddr, flags);
2002-07-09 12:24:59 +00:00
}
status_t
vm_put_physical_page(addr_t vaddr)
2002-07-09 12:24:59 +00:00
{
return (*kernel_aspace->translation_map.ops->put_physical_page)(vaddr);
}
void
vm_increase_max_commit(addr_t delta)
2002-07-09 12:24:59 +00:00
{
int state;
// dprintf("vm_increase_max_commit: delta 0x%x\n", delta);
state = disable_interrupts();
2002-07-09 12:24:59 +00:00
acquire_spinlock(&max_commit_lock);
max_commit += delta;
release_spinlock(&max_commit_lock);
restore_interrupts(state);
2002-07-09 12:24:59 +00:00
}
// #pragma mark -
status_t
user_memcpy(void *to, const void *from, size_t size)
2002-07-09 12:24:59 +00:00
{
return arch_cpu_user_memcpy(to, from, size, &thread_get_current_thread()->fault_handler);
}
/** \brief Copies at most (\a size - 1) characters from the string in \a from to
* the string in \a to, NULL-terminating the result.
*
* \param to Pointer to the destination C-string.
* \param from Pointer to the source C-string.
* \param size Size in bytes of the string buffer pointed to by \a to.
*
* \return strlen(\a from).
*/
ssize_t
user_strlcpy(char *to, const char *from, size_t size)
{
return arch_cpu_user_strlcpy(to, from, size, &thread_get_current_thread()->fault_handler);
}
status_t
user_memset(void *s, char c, size_t count)
2002-07-09 12:24:59 +00:00
{
return arch_cpu_user_memset(s, c, count, &thread_get_current_thread()->fault_handler);
}
// #pragma mark -
long
lock_memory(void *buffer, ulong numBytes, ulong flags)
{
// The NewOS VM currently doesn't support locking - dunno if we'll
// ever change this, but if, we should definitely implement these
// functions :-)
2004-06-06 01:14:18 +00:00
return B_OK;
}
long
unlock_memory(void *buffer, ulong numBytes, ulong flags)
{
2004-06-06 01:14:18 +00:00
return B_OK;
}
2004-06-06 01:14:18 +00:00
/** According to the BeBook, this function should always succeed.
* This is no longer the case.
*/
long
get_memory_map(const void *address, ulong numBytes, physical_entry *table, long numEntries)
{
2004-06-06 01:14:18 +00:00
vm_address_space *addressSpace;
addr_t virtualAddress = (addr_t)address;
addr_t pageOffset = virtualAddress & (B_PAGE_SIZE - 1);
2004-06-06 01:14:18 +00:00
addr_t physicalAddress;
status_t status = B_OK;
int32 index = -1;
addr_t offset = 0;
uint32 flags;
2004-06-06 01:14:18 +00:00
TRACE(("get_memory_map(%p, %lu bytes, %ld entries)\n", address, numBytes, numEntries));
if (numEntries == 0 || numBytes == 0)
return B_BAD_VALUE;
// in which address space is the address to be found?
if (IS_USER_ADDRESS(virtualAddress))
2004-06-06 01:14:18 +00:00
addressSpace = vm_get_current_user_aspace();
else
addressSpace = vm_get_kernel_aspace();
if (addressSpace == NULL)
return B_ERROR;
(*addressSpace->translation_map.ops->lock)(&addressSpace->translation_map);
while (offset < numBytes) {
2004-06-06 01:14:18 +00:00
addr_t bytes = min(numBytes - offset, B_PAGE_SIZE);
status = (*addressSpace->translation_map.ops->query)(&addressSpace->translation_map,
(addr_t)address + offset, &physicalAddress, &flags);
if (status < 0)
break;
if (index < 0 && pageOffset > 0) {
physicalAddress += pageOffset;
if (bytes > B_PAGE_SIZE - pageOffset)
bytes = B_PAGE_SIZE - pageOffset;
}
2004-06-06 01:14:18 +00:00
// need to switch to the next physical_entry?
if (index < 0 || (addr_t)table[index].address != physicalAddress - table[index].size) {
if (++index + 1 > numEntries) {
// table to small
status = B_BUFFER_OVERFLOW;
break;
}
table[index].address = (void *)physicalAddress;
table[index].size = bytes;
} else {
// page does fit in current entry
table[index].size += bytes;
}
offset += bytes;
2004-06-06 01:14:18 +00:00
}
(*addressSpace->translation_map.ops->unlock)(&addressSpace->translation_map);
// close the entry list
if (status == B_OK) {
// if it's only one entry, we will silently accept the missing ending
if (numEntries == 1)
return B_OK;
2004-06-06 01:14:18 +00:00
if (++index + 1 > numEntries)
return B_BUFFER_OVERFLOW;
table[index].address = NULL;
table[index].size = 0;
}
return status;
}
area_id
area_for(void *address)
{
// ToDo: implement area_for()
return B_ERROR;
}
area_id
find_area(const char *name)
{
return vm_find_region_by_name(vm_get_kernel_aspace_id(), name);
// ToDo: works only for areas created in the kernel
}
static void
fill_area_info(struct vm_region *area, area_info *info, size_t size)
{
strlcpy(info->name, area->name, B_OS_NAME_LENGTH);
info->area = area->id;
info->address = (void *)area->base;
info->size = area->size;
info->protection = area->lock & B_USER_PROTECTION;
info->lock = B_FULL_LOCK;
info->team = 1;
info->ram_size = area->size;
info->copy_count = 0;
info->in_count = 0;
info->out_count = 0;
// ToDo: retrieve real values here!
}
status_t
_get_area_info(area_id area, area_info *info, size_t size)
{
vm_region *region;
if (size != sizeof(area_info) || info == NULL)
return B_BAD_VALUE;
region = vm_get_region_by_id(area);
if (region == NULL)
return B_BAD_VALUE;
fill_area_info(region, info, size);
vm_put_region(region);
return B_OK;
}
status_t
_get_next_area_info(team_id team, int32 *cookie, area_info *info, size_t size)
{
addr_t nextBase = *(addr_t *)cookie;
vm_address_space *addressSpace;
vm_region *area;
// we're already through the list
if (nextBase == (addr_t)-1)
return B_ENTRY_NOT_FOUND;
if (team == B_CURRENT_TEAM)
team = team_get_current_team_id();
if (!team_is_valid(team)
|| team_get_address_space(team, &addressSpace) != B_OK)
return B_BAD_VALUE;
acquire_sem_etc(addressSpace->virtual_map.sem, READ_COUNT, 0, 0);
for (area = addressSpace->virtual_map.region_list; area; area = area->aspace_next) {
if (area->base > nextBase)
break;
}
// make sure this area won't go away
if (area != NULL)
area = vm_get_region_by_id(area->id);
release_sem_etc(addressSpace->virtual_map.sem, READ_COUNT, 0);
vm_put_aspace(addressSpace);
if (area == NULL) {
nextBase = (addr_t)-1;
return B_ENTRY_NOT_FOUND;
}
fill_area_info(area, info, size);
*cookie = (int32)(area->base + area->size);
vm_put_region(area);
return B_OK;
}
status_t
set_area_protection(area_id area, uint32 newProtection)
{
// ToDo: implement set_area_protection()
return B_ERROR;
}
status_t
resize_area(area_id areaID, size_t newSize)
{
vm_cache_ref *cache;
vm_region *area, *current;
size_t oldSize;
bool failed = false;
// is newSize a multiple of B_PAGE_SIZE?
if (newSize & (B_PAGE_SIZE - 1))
return B_BAD_VALUE;
area = vm_get_region_by_id(areaID);
if (area == NULL)
return B_BAD_VALUE;
// Resize all areas of this area's cache
cache = area->cache_ref;
oldSize = area->size;
// ToDo: we should only allow to resize anonymous memory areas!
if (!cache->cache->temporary)
return B_NOT_ALLOWED;
mutex_lock(&cache->lock);
if (oldSize < newSize) {
// We need to check if all areas of this cache can be resized
for (current = cache->region_list; current; current = current->cache_next) {
if (current->aspace_next && current->aspace_next->base <= (current->base + newSize))
goto err;
}
}
// Okay, looks good so far, so let's do it
for (current = cache->region_list; current; current = current->cache_next) {
if (current->aspace_next && current->aspace_next->base <= (current->base + newSize)) {
failed = true;
break;
}
current->size = newSize;
// we also need to unmap all pages beyond the new size, if the area has shrinked
if (newSize < oldSize) {
vm_translation_map *map = &current->aspace->translation_map;
map->ops->lock(map);
map->ops->unmap(map, current->base + newSize, current->base + oldSize - 1);
map->ops->unlock(map);
}
}
if (failed) {
// This shouldn't really be possible, but hey, who knows
for (current = cache->region_list; current; current = current->cache_next)
current->size = oldSize;
goto err;
}
vm_cache_resize(cache, newSize);
mutex_unlock(&cache->lock);
// ToDo: we must honour the lock restrictions of this region
return B_OK;
err:
mutex_unlock(&cache->lock);
return B_ERROR;
}
area_id
map_physical_memory(const char *name, void *physicalAddress, size_t numBytes,
uint32 addressSpec, uint32 protection, void **_virtualAddress)
{
if ((protection & B_KERNEL_PROTECTION) == 0)
protection |= B_KERNEL_READ_AREA | B_KERNEL_WRITE_AREA;
return vm_map_physical_memory(vm_get_kernel_aspace_id(), name, _virtualAddress,
addressSpec, numBytes, protection, (addr_t)physicalAddress);
}
area_id
clone_area(const char *name, void **_address, uint32 addressSpec, uint32 protection,
area_id source)
{
return B_ERROR;
}
area_id
create_area_etc(struct team *team, const char *name, void **address, uint32 addressSpec,
uint32 size, uint32 lock, uint32 protection)
{
return vm_create_anonymous_region(team->aspace->id, (char *)name, address,
addressSpec, size, lock, protection);
}
area_id
create_area(const char *name, void **_address, uint32 addressSpec, size_t size, uint32 lock,
uint32 protection)
{
aspace_id addressSpace;
bool kernel = false;
if ((protection & B_KERNEL_PROTECTION) == 0)
protection |= B_KERNEL_READ_AREA | B_KERNEL_WRITE_AREA;
switch (addressSpec) {
2003-08-19 22:29:51 +00:00
case B_ANY_KERNEL_BLOCK_ADDRESS:
case B_ANY_KERNEL_ADDRESS:
kernel = true;
break;
case B_EXACT_ADDRESS:
if (IS_KERNEL_ADDRESS(*_address))
kernel = true;
break;
}
addressSpace = kernel ? vm_get_kernel_aspace_id() : vm_get_current_user_aspace_id();
return vm_create_anonymous_region(addressSpace, (char *)name, _address,
addressSpec, size, lock, protection);
}
status_t
delete_area_etc(struct team *team, area_id area)
{
return vm_delete_region(team->aspace->id, area);
}
status_t
delete_area(area_id area)
{
return vm_delete_region(vm_get_kernel_aspace_id(), area);
}
// #pragma mark -
area_id
_user_area_for(void *address)
{
return (area_id)find_region_by_address((addr_t)address);
}
area_id
_user_find_area(const char *name)
{
return vm_find_region_by_name(vm_get_current_user_aspace_id(), name);
// ToDo: works only for areas created in the calling team
}
status_t
_user_get_area_info(area_id area, area_info *userInfo)
{
area_info info;
status_t status;
if (!IS_USER_ADDRESS(userInfo))
return B_BAD_ADDRESS;
status = get_area_info(area, &info);
if (status < B_OK)
return status;
if (user_memcpy(userInfo, &info, sizeof(area_info)) < B_OK)
return B_BAD_ADDRESS;
return status;
}
status_t
_user_get_next_area_info(team_id team, int32 *userCookie, area_info *userInfo)
{
status_t status;
area_info info;
int32 cookie;
if (!IS_USER_ADDRESS(userCookie)
|| !IS_USER_ADDRESS(userInfo)
|| user_memcpy(&cookie, userCookie, sizeof(int32)) < B_OK)
return B_BAD_ADDRESS;
status = _get_next_area_info(team, &cookie, &info, sizeof(area_info));
if (status != B_OK)
return status;
if (user_memcpy(userCookie, &cookie, sizeof(int32)) < B_OK
|| user_memcpy(userInfo, &info, sizeof(area_info)) < B_OK)
return B_BAD_ADDRESS;
return status;
}
status_t
_user_set_area_protection(area_id area, uint32 newProtection)
{
// ToDo: implement set_area_protection()
return B_ERROR;
}
status_t
_user_resize_area(area_id area, size_t newSize)
{
return resize_area(area, newSize);
}
area_id
_user_clone_area(const char *userName, void **userAddress, uint32 addressSpec,
uint32 protection, area_id sourceArea)
{
char name[B_OS_NAME_LENGTH];
void *address;
area_id clonedArea;
if (!IS_USER_ADDRESS(userName)
|| !IS_USER_ADDRESS(userAddress)
|| user_strlcpy(name, userName, sizeof(name)) < B_OK
|| user_memcpy(&address, userAddress, sizeof(address)) < B_OK)
return B_BAD_ADDRESS;
clonedArea = clone_area(name, &address, addressSpec, protection, sourceArea);
if (clonedArea < B_OK)
return clonedArea;
if (user_memcpy(userAddress, &address, sizeof(address)) < B_OK) {
delete_area(clonedArea);
return B_BAD_ADDRESS;
}
return clonedArea;
}
area_id
_user_create_area(const char *userName, void **userAddress, uint32 addressSpec,
size_t size, uint32 lock, uint32 protection)
{
char name[B_OS_NAME_LENGTH];
area_id area;
void *address;
// filter out some unavailable values (for userland)
switch (addressSpec) {
case B_ANY_KERNEL_ADDRESS:
case B_ANY_KERNEL_BLOCK_ADDRESS:
return B_BAD_VALUE;
}
if (protection & B_KERNEL_PROTECTION)
return B_BAD_VALUE;
if (!IS_USER_ADDRESS(userName)
|| !IS_USER_ADDRESS(userAddress)
|| user_strlcpy(name, userName, sizeof(name)) < B_OK
|| user_memcpy(&address, userAddress, sizeof(address)) < B_OK)
return B_BAD_ADDRESS;
if (addressSpec == B_EXACT_ADDRESS
&& IS_KERNEL_ADDRESS(address))
return B_BAD_VALUE;
area = create_area(name, &address, addressSpec, size, lock, protection);
if (area >= B_OK && user_memcpy(userAddress, &address, sizeof(address)) < B_OK) {
delete_area(area);
return B_BAD_ADDRESS;
}
return area;
}
status_t
_user_delete_area(area_id area)
{
// Unlike the BeOS implementation, you can now only delete areas
// that you have created yourself from userland.
// The documentation to delete_area() explicetly states that this
// will be restricted in the future, and so it will.
return vm_delete_region(vm_get_current_user_aspace_id(), area);
}