mirror of
https://github.com/GrapheneOS/hardened_malloc.git
synced 2024-10-01 01:36:01 -04:00
special case division for page size slabs
This commit is contained in:
parent
ec78add6ab
commit
4777ee0c85
7
malloc.c
7
malloc.c
@ -292,7 +292,12 @@ static void *get_slab(struct size_class *c, size_t slab_size, struct slab_metada
|
|||||||
|
|
||||||
static struct slab_metadata *get_metadata(struct size_class *c, size_t slab_size, void *p) {
|
static struct slab_metadata *get_metadata(struct size_class *c, size_t slab_size, void *p) {
|
||||||
size_t offset = (char *)p - (char *)c->class_region_start;
|
size_t offset = (char *)p - (char *)c->class_region_start;
|
||||||
size_t index = offset / slab_size;
|
size_t index;
|
||||||
|
if (slab_size == PAGE_SIZE) {
|
||||||
|
index = offset >> PAGE_SHIFT;
|
||||||
|
} else {
|
||||||
|
index = offset / slab_size;
|
||||||
|
}
|
||||||
// still caught without this check either as a read access violation or "double free"
|
// still caught without this check either as a read access violation or "double free"
|
||||||
if (index >= c->metadata_allocated) {
|
if (index >= c->metadata_allocated) {
|
||||||
fatal_error("invalid free within a slab yet to be used");
|
fatal_error("invalid free within a slab yet to be used");
|
||||||
|
Loading…
Reference in New Issue
Block a user