- Page fault
In
computer storage technology, a page is a fixed-length block of memory that is used as a unit of transfer betweenphysical memory and external storage like a disk, and a page fault is aninterrupt (or exception) to the software raised by the hardware, when a program accesses a page that is mapped in address space, but not loaded in physical memory.The hardware that detects this situation is the
memory management unit in a processor. Theexception handling software that handles the page fault is generally part of anoperating system . The operating system tries to handle the page fault by making the required page accessible at a location in physical memory or kills the program in case it is an illegal access.Contrary to what their name might suggest, page faults are not necessarily fatal and are common and necessary to increase the amount of memory available to programs in any operating system that utilizes
virtual memory , includingMicrosoft Windows ,Mac OS X ,Linux andUnix .Reasons for page fault
Hardware generates a page fault for page accesses where:
* the page corresponding to the requested address is not loaded in memory.
* the page corresponding to the memory address accessed is loaded, but its present status is not updated in hardware.The closely related exception known as the protection fault is generated for page accesses where:
* the page is not part of the program, and so is not mapped in program memory.
* the program does not have sufficient privileges to read or write the page.
* the page access is legal, but it is mapped withdemand paging .Protection fault can also be generated for many other invalid accesses not related to paging.On the
x86 architecture, accesses to pages that are not present and accesses to pages that do not conform to the permission attributes for a given page ("protection faults" as described above) are both reported via the page fault processor exception. Internally, the processor hardware provides information to the page fault handler that indicates what sort of access triggered the fault, so that these scenarios may be differentiated from the perspective of theoperating system . The usage of the term "protection fault" (when speaking in relation to page faults) is thus not to be confused with thegeneral protection fault exception, which is used to signal segmentation-based memory access violations, as well as a variety of other general protection related violations (such as the use of an instruction that is not valid at thecurrent privilege level ).Types
Minor page fault
If the page is loaded in memory at the time the fault is generated, but its status is not updated as 'present' in hardware, then it is called a minor or soft page fault. This could happen if the memory is shared by different programs and the page is already brought into memory for other programs. Since these faults do not involve disk latency, they are faster and less expensive than major page faults.
Major page fault
If the page is not loaded in memory at the time the fault is generated, then it is called a major or hard page fault. Major faults are more expensive than minor page faults and add disk latency to the interrupted program's execution. This is the mechanism used by an operating system to increase the amount of program memory available on demand. The operating system delays loading parts of the program from disk until the program attempts to use it and the page fault is generated.
Invalid page fault
If a page fault occurs that attempts to read the memory referenced by a null pointer, the system may alternatively generate an invalid page fault. The operating system maps a dummy page for catching null pointers.
Protection fault
When a program attempts invalid page accesses, for example trying to access pages not mapped into its memory, tries to write to read-only pages, or tries to modify privileged pages, the system hardware will generate a "protection fault". Not all protection faults are illegal accesses, and they are the mechanism used by an operating system to implement
copy on write access to share the same copy of memory among many programs until one of the programs wants to modify its copy.A program trying to access memory that belongs to another process is attempting 'illegal access' which generates a protection fault. The operating system handles this protection fault much like an invalid page fault: The operating system temporarily blocks 'write permission' until a page fault is generated, then creates new access information to allow the program to successfully find this memory.
Note that in terms of the
x86 architecture, memory protection violations reported via the page fault mechanism ("protection faults", as described in this article) are distinct from memory protection violations reported via thegeneral protection fault mechanism. The general protection fault mechanism is used to report segmentation-based memory access violations as well as other classes of protection violations. The page fault mechanism is used to report paging-based memory protection violations.Handling illegal accesses and invalid page faults
Illegal accesses and invalid page faults can result in a program crash, segmentation error, bus error or
core dump depending on the semantics of the operating system environment. Frequently these problems are the manifestation of software bugs, but the hardware memory errors frequently caused byoverclocking may corrupt pointers causing even correct software to fail.Operating systems such as Windows and
UNIX (and otherUNIX-like systems) provide differing mechanisms for reporting errors caused by page faults. Windows usesstructured exception handling to report page fault-based invalid accesses asaccess violation exceptions, and UNIX (and UNIX-like) systems typically usesignals , such asSIGSEGV , to report these error conditions to programs.If the program that received the error does not handle it, then the operating system typically performs some sort of default action, typically involving the termination of the running
process that caused the error condition, and a notification to the user that the program has malfunctioned. In this vein, recent versions of Windows often report such problems with less technical error messages simply stating something along the lines of "this program must close" (an experienced user orprogrammer with access to adebugger can still retrieve detailed information, if necessary). Additionally, recent Windows versions also write aminidump (similar in principle to acore dump ) describing the state of the crashed process for later analysis alongside such less-technical error messages.UNIX andUNIX-like operating systems typically report these conditions to the user with error messages such as "segmentation violation", or "bus error".Performance
Page faults, by their very nature, degrade the performance of a program or operating system and in the degenerate case can cause thrashing. Optimizations to programs and the operating system that reduce the number of page faults that occur improve the performance of the program or even the entire system. The two primary focuses of the optimization effort focus on reducing overall memory usage and improving
memory locality . Generally, making more physical memory available also reduces page faults. Manypage replacement algorithm s have been proposed, implementing a heuristic to reduce the incidence of page faults.How much does a page fault reduce the performance of your computer? An average hard disk has an average latency of 3ms, seek-time of 5ms and a transfer-time of 0.05ms/page. So the total time for paging comes in near 8ms (8 000 000 ns). If the memory access time is 200ns, then the page fault would make the system about 40000 times slower.
ee also
*
Demand paging References
*John L. Hennessy, David A. Patterson, "Computer Architecture, A Quantitative Approach" (ISBN 1-55860-724-2)
*Tanenbaum, Andrew S. "Operating Systems: Design and Implementation (Second Edition)". New Jersey: Prentice-Hall 1997.
*"Intel Architecture Software Developer's Manual"–Volume 3: System ProgrammingExternal links
*" [http://www.osronline.com/article.cfm?article=222 So What Is A Page Fault?] " from OSR Online (a Windows-specific explanation)
*" [http://www.redhat.com/docs/manuals/linux/RHL-9-Manual/admin-primer/s1-memory-virt-details.html Virtual Memory Details] " from the Red Hat website.
*" [http://msdn2.microsoft.com/en-us/library/ms681401.aspx UnhandledExceptionFilter (Windows)] " from [http://msdn.microsoft.com/library MSDN Online] .
Wikimedia Foundation. 2010.