mirror of
https://github.com/GrapheneOS/hardened_malloc.git
synced 2024-12-18 04:14:23 -05:00
mte: note why 0 tag is excluded
This commit is contained in:
parent
009f2dad76
commit
b560431c01
@ -577,7 +577,8 @@ static void *tag_and_clear_slab_slot(struct slab_metadata *metadata, void *slot_
|
|||||||
// is constructed.
|
// is constructed.
|
||||||
u8 *slot_tags = metadata->arm_mte_tags;
|
u8 *slot_tags = metadata->arm_mte_tags;
|
||||||
|
|
||||||
// Tag exclusion mask
|
// Tag exclusion mask. 0 tag is always excluded to detect accesses to slab memory via untagged
|
||||||
|
// pointers. Moreover, 0 tag is excluded in bionic via PR_MTE_TAG_MASK prctl
|
||||||
u64 tem = (1 << 0) | (1 << RESERVED_TAG);
|
u64 tem = (1 << 0) | (1 << RESERVED_TAG);
|
||||||
|
|
||||||
// current or previous tag of left neighbor or 0 if there's no left neighbor or if it was never used
|
// current or previous tag of left neighbor or 0 if there's no left neighbor or if it was never used
|
||||||
|
Loading…
Reference in New Issue
Block a user