ld: add an error in case of address space overflow.
ld/ * ldlang.c (lang_check_section_addresses): Check for address space overflow. * testsuite/ld-checks/checks.exp (overflow_check): New procedure * testsuite/ld-checks/over.s: New test source. * testsuite/ld-checks/over.d: New test. * testsuite/ld-checks/over2.s: New test source. * testsuite/ld-checks/over2.d: New test.
This commit is contained in:
parent
4b5900d8b8
commit
d40e34db39
10
ld/ChangeLog
10
ld/ChangeLog
@ -1,3 +1,13 @@
|
|||||||
|
2017-03-13 Tristan Gingold <gingold@adacore.com>
|
||||||
|
|
||||||
|
* ldlang.c (lang_check_section_addresses): Check for address space
|
||||||
|
overflow.
|
||||||
|
* testsuite/ld-checks/checks.exp (overflow_check): New procedure
|
||||||
|
* testsuite/ld-checks/over.s: New test source.
|
||||||
|
* testsuite/ld-checks/over.d: New test.
|
||||||
|
* testsuite/ld-checks/over2.s: New test source.
|
||||||
|
* testsuite/ld-checks/over2.d: New test.
|
||||||
|
|
||||||
2017-03-13 Alexey Neyman <stilor@att.net>
|
2017-03-13 Alexey Neyman <stilor@att.net>
|
||||||
|
|
||||||
* emulparams/elf32ppccommon.sh (LIBPATH_SUFFIX): Set from target
|
* emulparams/elf32ppccommon.sh (LIBPATH_SUFFIX): Set from target
|
||||||
|
20
ld/ldlang.c
20
ld/ldlang.c
@ -4768,6 +4768,7 @@ lang_check_section_addresses (void)
|
|||||||
asection *s, *p;
|
asection *s, *p;
|
||||||
struct check_sec *sections;
|
struct check_sec *sections;
|
||||||
size_t i, count;
|
size_t i, count;
|
||||||
|
bfd_vma addr_mask;
|
||||||
bfd_vma s_start;
|
bfd_vma s_start;
|
||||||
bfd_vma s_end;
|
bfd_vma s_end;
|
||||||
bfd_vma p_start = 0;
|
bfd_vma p_start = 0;
|
||||||
@ -4775,6 +4776,25 @@ lang_check_section_addresses (void)
|
|||||||
lang_memory_region_type *m;
|
lang_memory_region_type *m;
|
||||||
bfd_boolean overlays;
|
bfd_boolean overlays;
|
||||||
|
|
||||||
|
/* Detect address space overflow. */
|
||||||
|
addr_mask = ((bfd_vma) 1 <<
|
||||||
|
(bfd_arch_bits_per_address (link_info.output_bfd) - 1)) - 1;
|
||||||
|
addr_mask = (addr_mask << 1) + 1;
|
||||||
|
for (s = link_info.output_bfd->sections; s != NULL; s = s->next)
|
||||||
|
{
|
||||||
|
s_end = (s->vma + s->size) & addr_mask;
|
||||||
|
if (s_end != 0 && s_end < s->vma)
|
||||||
|
einfo (_("%X%P: section %s VMA wraps around address space\n"),
|
||||||
|
s->name);
|
||||||
|
else
|
||||||
|
{
|
||||||
|
s_end = (s->lma + s->size) & addr_mask;
|
||||||
|
if (s_end != 0 && s_end < s->lma)
|
||||||
|
einfo (_("%X%P: section %s LMA wraps around address space\n"),
|
||||||
|
s->name);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (bfd_count_sections (link_info.output_bfd) <= 1)
|
if (bfd_count_sections (link_info.output_bfd) <= 1)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
@ -78,4 +78,17 @@ proc section_check {} {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
proc overflow_check {} {
|
||||||
|
# Test only on some 32-bit targets that are often tested
|
||||||
|
if { ![istarget i?86-*-*]
|
||||||
|
&& ![istarget powerpc-*-*]
|
||||||
|
&& ![istarget arm*-*-*] } {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
run_dump_test "over"
|
||||||
|
run_dump_test "over2"
|
||||||
|
}
|
||||||
|
|
||||||
section_check
|
section_check
|
||||||
|
overflow_check
|
||||||
|
4
ld/testsuite/ld-checks/over.d
Normal file
4
ld/testsuite/ld-checks/over.d
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
#name: section size overflow
|
||||||
|
#source: over.s
|
||||||
|
#ld: -Ttext=0xfffffffc
|
||||||
|
#error: .* section .text VMA wraps around address space
|
7
ld/testsuite/ld-checks/over.s
Normal file
7
ld/testsuite/ld-checks/over.s
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
.text
|
||||||
|
.globl _start
|
||||||
|
_start:
|
||||||
|
.long 0
|
||||||
|
.long 0
|
||||||
|
.long 0
|
||||||
|
.long 0
|
8
ld/testsuite/ld-checks/over2.d
Normal file
8
ld/testsuite/ld-checks/over2.d
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
#name: section size overflow
|
||||||
|
#source: over2.s
|
||||||
|
#ld: -Ttext=0xfffffffc
|
||||||
|
#nm: -n
|
||||||
|
|
||||||
|
#...
|
||||||
|
fffffffc T _start
|
||||||
|
#pass
|
4
ld/testsuite/ld-checks/over2.s
Normal file
4
ld/testsuite/ld-checks/over2.s
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
.text
|
||||||
|
.globl _start
|
||||||
|
_start:
|
||||||
|
.long 0
|
Loading…
x
Reference in New Issue
Block a user