分类: C/C++
2010-04-21 13:26:46
A segmentation fault (often shortened to segfault) or access violation is a particular error condition that can occur during the operation of . A segmentation fault occurs when a program attempts to access a location that it is not allowed to access, or attempts to access a memory location in a way that is not allowed (for example, attempting to write to a location, or to overwrite part of the ).
is one approach to and protection in the operating system. It has been superseded by for most purposes, but much of the terminology of segmentation is still used, "segmentation fault" being an example. Some operating systems still have segmentation at some logical level although paging is used as the main memory management policy.
On operating systems, a process that accesses an invalid memory address receives the . On , a process that accesses invalid memory receives the STATUS_ACCESS_VIOLATION .
Here is an example of code that should create a segmentation fault on platforms with memory protection:
int main(void)
{
char *s = "hello world";
*s = 'H';
}
When the program containing this code is , the "hello world" is placed in the section of the program binary marked as read-only; when loaded, the operating system places it with other strings and data in a read-only segment of memory. When executed, a variable, s, is set to point to the string's location, and an attempt is made to write an H character through the variable into the memory, causing a segmentation fault. Compiling such a program with a compiler that does not check for the assignment of read-only locations at compile time, and running it on a Unix-like operating system produces the following :
A few causes of segmentation fault can be summarized as follows,
Generally, segmentation faults occur because: a pointer is either NULL, or points to random memory (probably never initialized to anything), or points to memory that has been freed/deallocated/"deleted".
e.g.
char *p1 = NULL; // Initialized to null, which is OK,
// (but cannot be dereferenced on many systems).
char *p2; // Not initialized at all.
char *p3 = new char[20]; // Great! it's allocated,
delete [] p3; // but now it isn't anymore.
Now, referencing any of these variables could cause a segmentation fault.