mirror of
https://github.com/torvalds/linux.git
synced 2024-11-16 17:12:06 +00:00
70b61e3621
When building with the Gold linker, the .bss and .brk areas of vmlinux
are shown as consecutive instead of having the same file offset. Allow
for either state, as long as things add up correctly.
Fixes: e6023367d7
("x86, kaslr: Prevent .bss from overlaping initrd")
Reported-by: Markus Trippelsdorf <markus@trippelsdorf.de>
Signed-off-by: Kees Cook <keescook@chromium.org>
Cc: Junjie Mao <eternal.n08@gmail.com>
Link: http://lkml.kernel.org/r/20141118001604.GA25045@www.outflux.net
Cc: stable@vger.kernel.org
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
40 lines
1.0 KiB
Perl
40 lines
1.0 KiB
Perl
#!/usr/bin/perl
|
|
#
|
|
# Calculate the amount of space needed to run the kernel, including room for
|
|
# the .bss and .brk sections.
|
|
#
|
|
# Usage:
|
|
# objdump -h a.out | perl calc_run_size.pl
|
|
use strict;
|
|
|
|
my $mem_size = 0;
|
|
my $file_offset = 0;
|
|
|
|
my $sections=" *[0-9]+ \.(?:bss|brk) +";
|
|
while (<>) {
|
|
if (/^$sections([0-9a-f]+) +(?:[0-9a-f]+ +){2}([0-9a-f]+)/) {
|
|
my $size = hex($1);
|
|
my $offset = hex($2);
|
|
$mem_size += $size;
|
|
if ($file_offset == 0) {
|
|
$file_offset = $offset;
|
|
} elsif ($file_offset != $offset) {
|
|
# BFD linker shows the same file offset in ELF.
|
|
# Gold linker shows them as consecutive.
|
|
next if ($file_offset + $mem_size == $offset + $size);
|
|
|
|
printf STDERR "file_offset: 0x%lx\n", $file_offset;
|
|
printf STDERR "mem_size: 0x%lx\n", $mem_size;
|
|
printf STDERR "offset: 0x%lx\n", $offset;
|
|
printf STDERR "size: 0x%lx\n", $size;
|
|
|
|
die ".bss and .brk are non-contiguous\n";
|
|
}
|
|
}
|
|
}
|
|
|
|
if ($file_offset == 0) {
|
|
die "Never found .bss or .brk file offset\n";
|
|
}
|
|
printf("%d\n", $mem_size + $file_offset);
|