Clarify the values for list poison #193
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
In the Linux kernel, LIST_POISON1 (0x00100100) and LIST_POISON2 (0x00200200) mark freed list nodes so that any later access triggers a fault, catching use-after-free errors. These values are chosen because they lie in the kernel’s virtual address space, are unlikely to be valid pointers, and are easily recognizable in crash dumps.
In kernel space this works reliably because the kernel controls the address space and reserves low addresses. In userspace, however, memory is managed differently—with ASLR and possible mappings, these poison addresses might not be unmapped, so dereferencing them may not always fault. For userspace, using NULL (0x0) or custom invalid pointers—and combining poisoning with runtime checks—is a better strategy.
Change-Id: Ifd99e41497d20ce14950826ee20a36170d818e39