/* * Copyright 2010, Ingo Weinhold, ingo_weinhold@gmx.de. * Distributed under the terms of the MIT License. */ #include #include #include #include #include #include #include // #pragma mark - VMTranslationMap VMTranslationMap::VMTranslationMap() : fMapCount(0) { recursive_lock_init(&fLock, "translation map"); } VMTranslationMap::~VMTranslationMap() { recursive_lock_destroy(&fLock); } /*! Unmaps a range of pages of an area. The default implementation just iterates over all virtual pages of the range and calls UnmapPage(). This is obviously not particularly efficient. */ void VMTranslationMap::UnmapPages(VMArea* area, addr_t base, size_t size, bool updatePageQueue, bool deletingAddressSpace) { ASSERT(base % B_PAGE_SIZE == 0); ASSERT(size % B_PAGE_SIZE == 0); addr_t address = base; addr_t end = address + size; #if DEBUG_PAGE_ACCESS for (; address != end; address += B_PAGE_SIZE) { phys_addr_t physicalAddress; uint32 flags; if (Query(address, &physicalAddress, &flags) == B_OK && (flags & PAGE_PRESENT) != 0) { vm_page* page = vm_lookup_page(physicalAddress / B_PAGE_SIZE); if (page != NULL) { DEBUG_PAGE_ACCESS_START(page); UnmapPage(area, address, updatePageQueue, deletingAddressSpace); DEBUG_PAGE_ACCESS_END(page); } else UnmapPage(area, address, updatePageQueue, deletingAddressSpace); } } #else for (; address != end; address += B_PAGE_SIZE) UnmapPage(area, address, updatePageQueue, deletingAddressSpace); #endif } /*! Unmaps all of an area's pages. If \a deletingAddressSpace is \c true, the address space the area belongs to is in the process of being destroyed and isn't used by anyone anymore. For some architectures this can be used for optimizations (e.g. not unmapping pages or at least not needing to invalidate TLB entries). If \a ignoreTopCachePageFlags is \c true, the area is in the process of being destroyed and its top cache is otherwise unreferenced. I.e. all mapped pages that live in the top cache area going to be freed and the page accessed and modified flags don't need to be propagated. The default implementation iterates over all mapping objects, and calls UnmapPage() (with \c _flags specified to avoid calls to PageUnmapped). It skips unmapping pages owned by the top cache if \a deletingAddressSpace is \c true, or if \a ignoreTopCachePageFlags is set. This behavior should be sufficient for most (if not all) architectures. */ void VMTranslationMap::UnmapArea(VMArea* area, bool deletingAddressSpace, bool ignoreTopCachePageFlags) { if (area->cache_type == CACHE_TYPE_DEVICE || area->wiring != B_NO_LOCK) { UnmapPages(area, area->Base(), area->Size(), true, deletingAddressSpace); return; } const bool unmapPages = !deletingAddressSpace || !ignoreTopCachePageFlags; Lock(); VMAreaMappings mappings; mappings.TakeFrom(&area->mappings); for (VMAreaMappings::Iterator it = mappings.GetIterator(); vm_page_mapping* mapping = it.Next();) { vm_page* page = mapping->page; page->mappings.Remove(mapping); VMCache* cache = page->Cache(); bool pageFullyUnmapped = false; if (!page->IsMapped()) { atomic_add(&gMappedPagesCount, -1); pageFullyUnmapped = true; } if (unmapPages || cache != area->cache) { const addr_t address = area->Base() + ((page->cache_offset * B_PAGE_SIZE) - area->cache_offset); // UnmapPage should skip flushing and calling PageUnmapped when we pass &flags. uint32 flags = 0; status_t status = UnmapPage(area, address, false, deletingAddressSpace, &flags); if (status == B_ENTRY_NOT_FOUND) { panic("page %p has mapping for area %p (%#" B_PRIxADDR "), but " "has no translation map entry", page, area, address); continue; } if (status != B_OK) { panic("unmapping page %p for area %p (%#" B_PRIxADDR ") failed: %x", page, area, address, status); continue; } // Transfer the accessed/dirty flags to the page. if ((flags & PAGE_ACCESSED) != 0) page->accessed = true; if ((flags & PAGE_MODIFIED) != 0) page->modified = true; if (pageFullyUnmapped) { DEBUG_PAGE_ACCESS_START(page); if (cache->temporary) vm_page_set_state(page, PAGE_STATE_INACTIVE); else if (page->modified) vm_page_set_state(page, PAGE_STATE_MODIFIED); else vm_page_set_state(page, PAGE_STATE_CACHED); DEBUG_PAGE_ACCESS_END(page); } } } // This should Flush(), if necessary. Unlock(); bool isKernelSpace = area->address_space == VMAddressSpace::Kernel(); uint32 freeFlags = CACHE_DONT_WAIT_FOR_MEMORY | (isKernelSpace ? CACHE_DONT_LOCK_KERNEL_SPACE : 0); while (vm_page_mapping* mapping = mappings.RemoveHead()) vm_free_page_mapping(mapping->page->physical_page_number, mapping, freeFlags); } /*! Print mapping information for a virtual address. The method navigates the paging structures and prints all relevant information on the way. The method is invoked from a KDL command. The default implementation is a no-op. \param virtualAddress The virtual address to look up. */ void VMTranslationMap::DebugPrintMappingInfo(addr_t virtualAddress) { #if KDEBUG kprintf("VMTranslationMap::DebugPrintMappingInfo not implemented\n"); #endif } /*! Find virtual addresses mapped to the given physical address. For each virtual address the method finds, it invokes the callback object's HandleVirtualAddress() method. When that method returns \c true, the search is terminated and \c true is returned. The method is invoked from a KDL command. The default implementation is a no-op. \param physicalAddress The physical address to search for. \param callback Callback object to be notified of each found virtual address. \return \c true, if for a found virtual address the callback's HandleVirtualAddress() returned \c true, \c false otherwise. */ bool VMTranslationMap::DebugGetReverseMappingInfo(phys_addr_t physicalAddress, ReverseMappingInfoCallback& callback) { #if KDEBUG kprintf("VMTranslationMap::DebugGetReverseMappingInfo not implemented\n"); #endif return false; } /*! Called by UnmapPage() after performing the architecture specific part. Looks up the page, updates its flags, removes the page-area mapping, and requeues the page, if necessary. If \c mappingsQueue is unspecified, then it unlocks the map and frees the page-area mapping. If \c mappingsQueue is specified, then it adds the removed mapping to the queue and does NOT unlock the map. */ void VMTranslationMap::PageUnmapped(VMArea* area, page_num_t pageNumber, bool accessed, bool modified, bool updatePageQueue, VMAreaMappings* mappingsQueue) { if (area->cache_type == CACHE_TYPE_DEVICE) { if (mappingsQueue == NULL) recursive_lock_unlock(&fLock); return; } // get the page vm_page* page = vm_lookup_page(pageNumber); ASSERT_PRINT(page != NULL, "page number: %#" B_PRIxPHYSADDR ", accessed: %d, modified: %d", pageNumber, accessed, modified); if (mappingsQueue != NULL) { DEBUG_PAGE_ACCESS_START(page); } else { DEBUG_PAGE_ACCESS_CHECK(page); } // transfer the accessed/dirty flags to the page page->accessed |= accessed; page->modified |= modified; // remove the mapping object/decrement the wired_count of the page vm_page_mapping* mapping = NULL; if (area->wiring == B_NO_LOCK) { vm_page_mappings::Iterator iterator = page->mappings.GetIterator(); while ((mapping = iterator.Next()) != NULL) { if (mapping->area == area) { area->mappings.Remove(mapping); page->mappings.Remove(mapping); break; } } ASSERT_PRINT(mapping != NULL, "page: %p, page number: %#" B_PRIxPHYSADDR ", accessed: %d, modified: %d", page, pageNumber, accessed, modified); } else page->DecrementWiredCount(); if (mappingsQueue == NULL) recursive_lock_unlock(&fLock); if (!page->IsMapped()) { atomic_add(&gMappedPagesCount, -1); if (updatePageQueue) { if (page->Cache()->temporary) vm_page_set_state(page, PAGE_STATE_INACTIVE); else if (page->modified) vm_page_set_state(page, PAGE_STATE_MODIFIED); else vm_page_set_state(page, PAGE_STATE_CACHED); } } if (mappingsQueue != NULL) { DEBUG_PAGE_ACCESS_END(page); } if (mapping != NULL) { if (mappingsQueue == NULL) { bool isKernelSpace = area->address_space == VMAddressSpace::Kernel(); vm_free_page_mapping(pageNumber, mapping, CACHE_DONT_WAIT_FOR_MEMORY | (isKernelSpace ? CACHE_DONT_LOCK_KERNEL_SPACE : 0)); } else { mappingsQueue->Add(mapping); } } } /*! Called by ClearAccessedAndModified() after performing the architecture specific part. Looks up the page and removes the page-area mapping. */ void VMTranslationMap::UnaccessedPageUnmapped(VMArea* area, page_num_t pageNumber) { if (area->cache_type == CACHE_TYPE_DEVICE) { recursive_lock_unlock(&fLock); return; } // get the page vm_page* page = vm_lookup_page(pageNumber); ASSERT_PRINT(page != NULL, "page number: %#" B_PRIxPHYSADDR, pageNumber); // remove the mapping object/decrement the wired_count of the page vm_page_mapping* mapping = NULL; if (area->wiring == B_NO_LOCK) { vm_page_mappings::Iterator iterator = page->mappings.GetIterator(); while ((mapping = iterator.Next()) != NULL) { if (mapping->area == area) { area->mappings.Remove(mapping); page->mappings.Remove(mapping); break; } } ASSERT_PRINT(mapping != NULL, "page: %p, page number: %#" B_PRIxPHYSADDR, page, pageNumber); } else page->DecrementWiredCount(); recursive_lock_unlock(&fLock); if (!page->IsMapped()) atomic_add(&gMappedPagesCount, -1); if (mapping != NULL) { vm_free_page_mapping(pageNumber, mapping, CACHE_DONT_WAIT_FOR_MEMORY | CACHE_DONT_LOCK_KERNEL_SPACE); // Since this is called by the page daemon, we never want to lock // the kernel address space. } } // #pragma mark - ReverseMappingInfoCallback VMTranslationMap::ReverseMappingInfoCallback::~ReverseMappingInfoCallback() { } // #pragma mark - VMPhysicalPageMapper VMPhysicalPageMapper::VMPhysicalPageMapper() { } VMPhysicalPageMapper::~VMPhysicalPageMapper() { }