2005-12-20 18:54:45 +03:00
|
|
|
/*
|
2010-01-09 23:21:43 +03:00
|
|
|
* Copyright 2009-2010, Ingo Weinhold, ingo_weinhold@gmx.de.
|
2008-07-17 02:55:17 +04:00
|
|
|
* Copyright 2002-2008, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
|
2005-12-20 18:54:45 +03:00
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*
|
|
|
|
* Copyright 2001-2002, Travis Geiselbrecht. All rights reserved.
|
|
|
|
* Distributed under the terms of the NewOS License.
|
|
|
|
*/
|
2009-12-02 21:05:10 +03:00
|
|
|
#ifndef _KERNEL_VM_VM_ADDRESS_SPACE_H
|
|
|
|
#define _KERNEL_VM_VM_ADDRESS_SPACE_H
|
2005-12-20 18:54:45 +03:00
|
|
|
|
|
|
|
|
2007-09-27 16:21:33 +04:00
|
|
|
#include <OS.h>
|
|
|
|
|
2009-12-04 16:33:25 +03:00
|
|
|
#include <vm/vm_priv.h>
|
2009-12-03 15:41:11 +03:00
|
|
|
#include <vm/VMArea.h>
|
2010-01-14 06:26:12 +03:00
|
|
|
#include <vm/VMTranslationMap.h>
|
2009-12-02 19:12:15 +03:00
|
|
|
|
|
|
|
|
|
|
|
struct VMAddressSpace {
|
2009-12-03 15:41:11 +03:00
|
|
|
public:
|
2009-12-04 16:33:25 +03:00
|
|
|
class AreaIterator;
|
2009-12-03 15:41:11 +03:00
|
|
|
|
|
|
|
public:
|
2009-12-02 19:12:15 +03:00
|
|
|
VMAddressSpace(team_id id, addr_t base,
|
2009-12-04 17:45:08 +03:00
|
|
|
size_t size, const char* name);
|
|
|
|
virtual ~VMAddressSpace();
|
2009-12-02 19:12:15 +03:00
|
|
|
|
|
|
|
static status_t Init();
|
|
|
|
static status_t InitPostSem();
|
|
|
|
|
|
|
|
team_id ID() const { return fID; }
|
|
|
|
addr_t Base() const { return fBase; }
|
2009-12-04 16:33:25 +03:00
|
|
|
addr_t EndAddress() const { return fEndAddress; }
|
2010-01-09 23:21:43 +03:00
|
|
|
size_t Size() const { return fEndAddress - fBase + 1; }
|
2009-12-03 15:41:11 +03:00
|
|
|
size_t FreeSpace() const { return fFreeSpace; }
|
2009-12-02 19:12:15 +03:00
|
|
|
bool IsBeingDeleted() const { return fDeleting; }
|
|
|
|
|
2010-01-14 06:26:12 +03:00
|
|
|
VMTranslationMap* TranslationMap() { return fTranslationMap; }
|
2009-12-02 19:12:15 +03:00
|
|
|
|
|
|
|
status_t ReadLock()
|
|
|
|
{ return rw_lock_read_lock(&fLock); }
|
|
|
|
void ReadUnlock()
|
|
|
|
{ rw_lock_read_unlock(&fLock); }
|
|
|
|
status_t WriteLock()
|
|
|
|
{ return rw_lock_write_lock(&fLock); }
|
|
|
|
void WriteUnlock()
|
|
|
|
{ rw_lock_write_unlock(&fLock); }
|
|
|
|
|
|
|
|
int32 RefCount() const
|
|
|
|
{ return fRefCount; }
|
|
|
|
|
2010-01-07 17:09:56 +03:00
|
|
|
inline void Get() { atomic_add(&fRefCount, 1); }
|
|
|
|
inline void Put();
|
2009-12-02 19:12:15 +03:00
|
|
|
void RemoveAndPut();
|
|
|
|
|
|
|
|
void IncrementFaultCount()
|
|
|
|
{ atomic_add(&fFaultCount, 1); }
|
|
|
|
void IncrementChangeCount()
|
|
|
|
{ fChangeCount++; }
|
|
|
|
|
2009-12-04 17:45:08 +03:00
|
|
|
inline AreaIterator GetAreaIterator();
|
|
|
|
|
|
|
|
VMAddressSpace*& HashTableLink() { return fHashTableLink; }
|
2009-12-03 15:41:11 +03:00
|
|
|
|
2009-12-06 20:18:04 +03:00
|
|
|
virtual status_t InitObject();
|
|
|
|
|
2009-12-04 17:45:08 +03:00
|
|
|
virtual VMArea* FirstArea() const = 0;
|
|
|
|
virtual VMArea* NextArea(VMArea* area) const = 0;
|
2009-12-04 16:33:25 +03:00
|
|
|
|
2009-12-04 17:45:08 +03:00
|
|
|
virtual VMArea* LookupArea(addr_t address) const = 0;
|
2009-12-04 20:07:16 +03:00
|
|
|
virtual VMArea* CreateArea(const char* name, uint32 wiring,
|
|
|
|
uint32 protection) = 0;
|
|
|
|
virtual void DeleteArea(VMArea* area) = 0;
|
2009-12-04 17:45:08 +03:00
|
|
|
virtual status_t InsertArea(void** _address, uint32 addressSpec,
|
2009-12-06 20:18:04 +03:00
|
|
|
size_t size, VMArea* area) = 0;
|
2009-12-04 17:45:08 +03:00
|
|
|
virtual void RemoveArea(VMArea* area) = 0;
|
2009-12-02 19:12:15 +03:00
|
|
|
|
2009-12-04 17:45:08 +03:00
|
|
|
virtual bool CanResizeArea(VMArea* area, size_t newSize) = 0;
|
|
|
|
virtual status_t ResizeArea(VMArea* area, size_t newSize) = 0;
|
2009-12-06 20:18:04 +03:00
|
|
|
virtual status_t ShrinkAreaHead(VMArea* area, size_t newSize)
|
|
|
|
= 0;
|
|
|
|
virtual status_t ShrinkAreaTail(VMArea* area, size_t newSize)
|
|
|
|
= 0;
|
2009-12-04 17:45:08 +03:00
|
|
|
|
|
|
|
virtual status_t ReserveAddressRange(void** _address,
|
2009-12-04 16:33:25 +03:00
|
|
|
uint32 addressSpec, size_t size,
|
2009-12-04 17:45:08 +03:00
|
|
|
uint32 flags) = 0;
|
|
|
|
virtual status_t UnreserveAddressRange(addr_t address,
|
|
|
|
size_t size) = 0;
|
|
|
|
virtual void UnreserveAllAddressRanges() = 0;
|
2009-12-04 16:33:25 +03:00
|
|
|
|
2009-12-04 17:45:08 +03:00
|
|
|
virtual void Dump() const;
|
2009-12-03 15:41:11 +03:00
|
|
|
|
2009-12-02 19:12:15 +03:00
|
|
|
static status_t Create(team_id teamID, addr_t base, size_t size,
|
|
|
|
bool kernel,
|
|
|
|
VMAddressSpace** _addressSpace);
|
|
|
|
|
|
|
|
static team_id KernelID()
|
|
|
|
{ return sKernelAddressSpace->ID(); }
|
|
|
|
static VMAddressSpace* Kernel()
|
|
|
|
{ return sKernelAddressSpace; }
|
|
|
|
static VMAddressSpace* GetKernel();
|
|
|
|
|
|
|
|
static team_id CurrentID();
|
|
|
|
static VMAddressSpace* GetCurrent();
|
|
|
|
|
|
|
|
static VMAddressSpace* Get(team_id teamID);
|
|
|
|
|
2010-01-09 23:21:43 +03:00
|
|
|
static VMAddressSpace* DebugFirst();
|
|
|
|
static VMAddressSpace* DebugNext(VMAddressSpace* addressSpace);
|
|
|
|
|
2009-12-04 17:45:08 +03:00
|
|
|
protected:
|
2010-01-07 17:09:56 +03:00
|
|
|
static void _DeleteIfUnreferenced(team_id id);
|
|
|
|
|
2009-12-02 19:12:15 +03:00
|
|
|
static int _DumpCommand(int argc, char** argv);
|
|
|
|
static int _DumpListCommand(int argc, char** argv);
|
|
|
|
|
2009-12-04 17:45:08 +03:00
|
|
|
protected:
|
2009-12-02 19:12:15 +03:00
|
|
|
struct HashDefinition;
|
|
|
|
|
2009-12-04 17:45:08 +03:00
|
|
|
protected:
|
2009-12-02 19:12:15 +03:00
|
|
|
VMAddressSpace* fHashTableLink;
|
|
|
|
addr_t fBase;
|
2009-12-04 16:33:25 +03:00
|
|
|
addr_t fEndAddress; // base + (size - 1)
|
2009-12-03 15:41:11 +03:00
|
|
|
size_t fFreeSpace;
|
2009-12-02 19:12:15 +03:00
|
|
|
rw_lock fLock;
|
|
|
|
team_id fID;
|
|
|
|
int32 fRefCount;
|
|
|
|
int32 fFaultCount;
|
|
|
|
int32 fChangeCount;
|
2010-01-14 06:26:12 +03:00
|
|
|
VMTranslationMap* fTranslationMap;
|
2009-12-02 19:12:15 +03:00
|
|
|
bool fDeleting;
|
|
|
|
static VMAddressSpace* sKernelAddressSpace;
|
|
|
|
};
|
2005-12-20 18:54:45 +03:00
|
|
|
|
|
|
|
|
2010-01-07 17:09:56 +03:00
|
|
|
void
|
|
|
|
VMAddressSpace::Put()
|
|
|
|
{
|
|
|
|
team_id id = fID;
|
|
|
|
if (atomic_add(&fRefCount, -1) == 1)
|
|
|
|
_DeleteIfUnreferenced(id);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-12-04 16:33:25 +03:00
|
|
|
class VMAddressSpace::AreaIterator {
|
2009-12-03 15:41:11 +03:00
|
|
|
public:
|
2009-12-04 16:33:25 +03:00
|
|
|
AreaIterator()
|
2009-12-03 15:41:11 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2009-12-04 16:33:25 +03:00
|
|
|
AreaIterator(VMAddressSpace* addressSpace)
|
2009-12-03 15:41:11 +03:00
|
|
|
:
|
2009-12-04 17:45:08 +03:00
|
|
|
fAddressSpace(addressSpace),
|
|
|
|
fNext(addressSpace->FirstArea())
|
2009-12-03 15:41:11 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool HasNext() const
|
|
|
|
{
|
2009-12-04 16:33:25 +03:00
|
|
|
return fNext != NULL;
|
2009-12-03 15:41:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
VMArea* Next()
|
|
|
|
{
|
2009-12-04 16:33:25 +03:00
|
|
|
VMArea* result = fNext;
|
2009-12-07 04:56:01 +03:00
|
|
|
if (fNext != NULL)
|
|
|
|
fNext = fAddressSpace->NextArea(fNext);
|
2009-12-04 16:33:25 +03:00
|
|
|
return result;
|
2009-12-03 15:41:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void Rewind()
|
|
|
|
{
|
2009-12-04 17:45:08 +03:00
|
|
|
fNext = fAddressSpace->FirstArea();
|
2009-12-03 15:41:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2009-12-04 17:45:08 +03:00
|
|
|
VMAddressSpace* fAddressSpace;
|
|
|
|
VMArea* fNext;
|
2009-12-03 15:41:11 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-12-04 16:33:25 +03:00
|
|
|
inline VMAddressSpace::AreaIterator
|
|
|
|
VMAddressSpace::GetAreaIterator()
|
2009-12-03 15:41:11 +03:00
|
|
|
{
|
2009-12-04 16:33:25 +03:00
|
|
|
return AreaIterator(this);
|
2009-12-03 15:41:11 +03:00
|
|
|
}
|
|
|
|
|
2005-12-20 18:54:45 +03:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2010-01-16 01:32:51 +03:00
|
|
|
status_t vm_delete_areas(struct VMAddressSpace *aspace,
|
|
|
|
bool deletingAddressSpace);
|
2008-10-08 01:39:19 +04:00
|
|
|
#define vm_swap_address_space(from, to) arch_vm_aspace_swap(from, to)
|
2005-12-20 18:54:45 +03:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-12-02 19:12:15 +03:00
|
|
|
|
2009-12-02 21:05:10 +03:00
|
|
|
#endif /* _KERNEL_VM_VM_ADDRESS_SPACE_H */
|