What does the "bus error" message mean, and how does it differ from a segfault?
|
Bus errors are rare nowadays on x86 and occur when your processor cannot even attempt the memory access requested, typically:
Segmentation faults occur when accessing memory which does not belong to your process, they are very common and are typically the result of:
PS: To be more precise this is not manipulating the pointer itself that will cause issues, it's accessing the memory it points to (dereferencing). |
||||
|
|
A segfault is accessing memory that you're not allowed to access. It's read-only, you don't have permission, etc... A bus error is trying to access memory that can't possibly be there. You've used an address that's meaningless to the system, or the wrong kind of address for that operation. |
|||
|
|
From: Here |
|||
|
|
|
It normally means an un-aligned access. An attempt to access memory that isn't physically present would also give a bus error, but you won't see this if you're using a processor with an MMU and an OS that's not buggy, because you won't have any non-existent memory mapped to your process's address space. |
|||
|
|
|
One classic instance of a bus error is on certain architecures, such as the SPARC (at least some SPARCs, maybe this has been changed), is when you do a mis-aligned access. For instance:
This snippet tries to write the 32-bit integer value |
|||
|
|
|
A typical buffer overflow which results in Bus error is,
Here if size of the string in double quotes ("") is more than buf size it gives bus error. |
||||
|
|
|
It depends on your OS, CPU, Compiler, and possibly other factors. In general it means the CPU bus could not complete a command, or suffered a conflict, but that could mean a whole range of things depending on the environment and code being run. |
|||
|
|