mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 19:52:45 +00:00 
			
		
		
		
	 2ad963d261
			
		
	
	
		2ad963d261
		
	
	
	
	
		
			
			This allows the page fault code to find the owning PageDirectory and corresponding process for faulting regions. The mapping is implemented as a global hash map right now, which is definitely not optimal. We can come up with something better when it becomes necessary.
		
			
				
	
	
		
			42 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <AK/HashMap.h>
 | |
| #include <AK/RefCounted.h>
 | |
| #include <AK/RefPtr.h>
 | |
| #include <Kernel/VM/PhysicalPage.h>
 | |
| #include <Kernel/VM/RangeAllocator.h>
 | |
| 
 | |
| class Process;
 | |
| 
 | |
| class PageDirectory : public RefCounted<PageDirectory> {
 | |
|     friend class MemoryManager;
 | |
| 
 | |
| public:
 | |
|     static NonnullRefPtr<PageDirectory> create_for_userspace(Process& process, const RangeAllocator* parent_range_allocator = nullptr)
 | |
|     {
 | |
|         return adopt(*new PageDirectory(process, parent_range_allocator));
 | |
|     }
 | |
|     static NonnullRefPtr<PageDirectory> create_at_fixed_address(PhysicalAddress paddr) { return adopt(*new PageDirectory(paddr)); }
 | |
|     static RefPtr<PageDirectory> find_by_pdb(u32);
 | |
| 
 | |
|     ~PageDirectory();
 | |
| 
 | |
|     u32 cr3() const { return m_directory_page->paddr().get(); }
 | |
|     PageDirectoryEntry* entries() { return reinterpret_cast<PageDirectoryEntry*>(cr3()); }
 | |
| 
 | |
|     void flush(VirtualAddress);
 | |
| 
 | |
|     RangeAllocator& range_allocator() { return m_range_allocator; }
 | |
| 
 | |
|     Process* process() { return m_process; }
 | |
|     const Process* process() const { return m_process; }
 | |
| 
 | |
| private:
 | |
|     PageDirectory(Process&, const RangeAllocator* parent_range_allocator);
 | |
|     explicit PageDirectory(PhysicalAddress);
 | |
| 
 | |
|     Process* m_process { nullptr };
 | |
|     RangeAllocator m_range_allocator;
 | |
|     RefPtr<PhysicalPage> m_directory_page;
 | |
|     HashMap<unsigned, RefPtr<PhysicalPage>> m_physical_pages;
 | |
| };
 |