mirror of
https://review.haiku-os.org/haiku
synced 2025-02-22 21:48:35 +01:00
runtime_loader: randomize position of relocatable images
Use B_RANDOMIZED_BASE for creating areas for relocatable segments.
This commit is contained in:
parent
31eb9b8261
commit
0cf91fc14f
@ -173,7 +173,7 @@ get_image_region_load_address(image_t* image, uint32 index, int32 lastDelta,
|
||||
if (index == 0) {
|
||||
// but only the first segment gets a free ride
|
||||
loadAddress = RLD_PROGRAM_BASE;
|
||||
addressSpecifier = B_BASE_ADDRESS;
|
||||
addressSpecifier = B_RANDOMIZED_BASE_ADDRESS;
|
||||
} else {
|
||||
loadAddress = image->regions[index].vmstart + lastDelta;
|
||||
addressSpecifier = B_EXACT_ADDRESS;
|
||||
@ -298,7 +298,7 @@ map_image(int fd, char const* path, image_t* image, bool fixed)
|
||||
addr_t loadAddress;
|
||||
size_t reservedSize = 0;
|
||||
size_t length = 0;
|
||||
uint32 addressSpecifier = B_ANY_ADDRESS;
|
||||
uint32 addressSpecifier = B_RANDOMIZED_ANY_ADDRESS;
|
||||
|
||||
for (uint32 i = 0; i < image->num_regions; i++) {
|
||||
// for BeOS compatibility: if we load an old BeOS executable, we
|
||||
|
Loading…
x
Reference in New Issue
Block a user