Fix junk filling for mremap(2)-based huge reallocation.
If mremap(2) is used for huge reallocation, physical pages are mapped to new virtual addresses rather than data being copied to new pages. This bypasses the normal junk filling that would happen during allocation, so add junk filling that is specific to this case.
This commit is contained in:
parent
cb657e3170
commit
940fdfd5ee
10
src/huge.c
10
src/huge.c
@ -171,6 +171,16 @@ huge_ralloc(void *ptr, size_t oldsize, size_t size, size_t extra,
|
|||||||
abort();
|
abort();
|
||||||
memcpy(ret, ptr, copysize);
|
memcpy(ret, ptr, copysize);
|
||||||
chunk_dealloc_mmap(ptr, oldsize);
|
chunk_dealloc_mmap(ptr, oldsize);
|
||||||
|
} else if (config_fill && zero == false && opt_junk && oldsize
|
||||||
|
< newsize) {
|
||||||
|
/*
|
||||||
|
* mremap(2) clobbers the original mapping, so
|
||||||
|
* junk/zero filling is not preserved. There is no
|
||||||
|
* need to zero fill here, since any trailing
|
||||||
|
* uninititialized memory is demand-zeroed by the
|
||||||
|
* kernel, but junk filling must be redone.
|
||||||
|
*/
|
||||||
|
memset(ret + oldsize, 0xa5, newsize - oldsize);
|
||||||
}
|
}
|
||||||
} else
|
} else
|
||||||
#endif
|
#endif
|
||||||
|
@ -92,11 +92,14 @@ test_junk(size_t sz_min, size_t sz_max)
|
|||||||
s = (char *)rallocx(s, sz+1, 0);
|
s = (char *)rallocx(s, sz+1, 0);
|
||||||
assert_ptr_not_null((void *)s,
|
assert_ptr_not_null((void *)s,
|
||||||
"Unexpected rallocx() failure");
|
"Unexpected rallocx() failure");
|
||||||
|
if (!config_mremap || sz+1 <= arena_maxclass) {
|
||||||
assert_ptr_eq(most_recently_junked, junked,
|
assert_ptr_eq(most_recently_junked, junked,
|
||||||
"Expected region of size %zu to be junk-filled",
|
"Expected region of size %zu to be "
|
||||||
|
"junk-filled",
|
||||||
sz);
|
sz);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
dallocx(s, 0);
|
dallocx(s, 0);
|
||||||
assert_ptr_eq(most_recently_junked, (void *)s,
|
assert_ptr_eq(most_recently_junked, (void *)s,
|
||||||
|
Loading…
Reference in New Issue
Block a user