mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-29 16:38:05 +08:00
* output.h (Output_segment::set_section_addresses): Change function
signature. Update all callers. * output.cc (Output_segment::is_first_section_relro): Ignore TLS sections. (Output_segment::set_section_addresses): Align after last TLS section. Add padding before last relro section instead of after.
This commit is contained in:
@ -1,3 +1,12 @@
|
|||||||
|
2010-10-17 Cary Coutant <ccoutant@google.com>
|
||||||
|
|
||||||
|
* output.h (Output_segment::set_section_addresses): Change function
|
||||||
|
signature. Update all callers.
|
||||||
|
* output.cc (Output_segment::is_first_section_relro): Ignore TLS
|
||||||
|
sections.
|
||||||
|
(Output_segment::set_section_addresses): Align after last TLS
|
||||||
|
section. Add padding before last relro section instead of after.
|
||||||
|
|
||||||
2010-10-17 Doug Kwan <dougkwan@google.com>
|
2010-10-17 Doug Kwan <dougkwan@google.com>
|
||||||
|
|
||||||
* gold/arm.cc (Target_arm::got_section): Use correct order and set
|
* gold/arm.cc (Target_arm::got_section): Use correct order and set
|
||||||
|
@ -2658,7 +2658,7 @@ Layout::set_segment_offsets(const Target* target, Output_segment* load_seg,
|
|||||||
unsigned int shndx_hold = *pshndx;
|
unsigned int shndx_hold = *pshndx;
|
||||||
bool has_relro = false;
|
bool has_relro = false;
|
||||||
uint64_t new_addr = (*p)->set_section_addresses(this, false, addr,
|
uint64_t new_addr = (*p)->set_section_addresses(this, false, addr,
|
||||||
&increase_relro,
|
increase_relro,
|
||||||
&has_relro,
|
&has_relro,
|
||||||
&off, pshndx);
|
&off, pshndx);
|
||||||
|
|
||||||
@ -2688,7 +2688,7 @@ Layout::set_segment_offsets(const Target* target, Output_segment* load_seg,
|
|||||||
off = orig_off + ((addr - orig_addr) & (abi_pagesize - 1));
|
off = orig_off + ((addr - orig_addr) & (abi_pagesize - 1));
|
||||||
off = align_file_offset(off, addr, abi_pagesize);
|
off = align_file_offset(off, addr, abi_pagesize);
|
||||||
new_addr = (*p)->set_section_addresses(this, true, addr,
|
new_addr = (*p)->set_section_addresses(this, true, addr,
|
||||||
&increase_relro,
|
increase_relro,
|
||||||
&has_relro,
|
&has_relro,
|
||||||
&off, pshndx);
|
&off, pshndx);
|
||||||
}
|
}
|
||||||
|
@ -3575,13 +3575,17 @@ Output_segment::has_any_data_sections() const
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Return whether the first data section is a relro section.
|
// Return whether the first data section (not counting TLS sections)
|
||||||
|
// is a relro section.
|
||||||
|
|
||||||
bool
|
bool
|
||||||
Output_segment::is_first_section_relro() const
|
Output_segment::is_first_section_relro() const
|
||||||
{
|
{
|
||||||
for (int i = 0; i < static_cast<int>(ORDER_MAX); ++i)
|
for (int i = 0; i < static_cast<int>(ORDER_MAX); ++i)
|
||||||
{
|
{
|
||||||
|
if (i == static_cast<int>(ORDER_TLS_DATA)
|
||||||
|
|| i == static_cast<int>(ORDER_TLS_BSS))
|
||||||
|
continue;
|
||||||
const Output_data_list* pdl = &this->output_lists_[i];
|
const Output_data_list* pdl = &this->output_lists_[i];
|
||||||
if (!pdl->empty())
|
if (!pdl->empty())
|
||||||
{
|
{
|
||||||
@ -3656,19 +3660,17 @@ Output_segment::has_dynamic_reloc_list(const Output_data_list* pdl) const
|
|||||||
// Set the section addresses for an Output_segment. If RESET is true,
|
// Set the section addresses for an Output_segment. If RESET is true,
|
||||||
// reset the addresses first. ADDR is the address and *POFF is the
|
// reset the addresses first. ADDR is the address and *POFF is the
|
||||||
// file offset. Set the section indexes starting with *PSHNDX.
|
// file offset. Set the section indexes starting with *PSHNDX.
|
||||||
// *PINCREASE_RELRO is the size of the portion of the first non-relro
|
// INCREASE_RELRO is the size of the portion of the first non-relro
|
||||||
// section that should be included in the PT_GNU_RELRO segment; if
|
// section that should be included in the PT_GNU_RELRO segment.
|
||||||
// there is alignment padding between the last relro section and the
|
// If this segment has relro sections, and has been aligned for
|
||||||
// next section, we add that padding to that size and return the
|
// that purpose, set *HAS_RELRO to TRUE. Return the address of
|
||||||
// updated value. If this segment has relro sections, and has been
|
// the immediately following segment. Update *HAS_RELRO, *POFF,
|
||||||
// aligned for that purpose, set *HAS_RELRO to TRUE.
|
// and *PSHNDX.
|
||||||
// Return the address of the immediately following segment. Update
|
|
||||||
// *PINCREASE_RELRO, *HAS_RELRO, *POFF, and *PSHNDX.
|
|
||||||
|
|
||||||
uint64_t
|
uint64_t
|
||||||
Output_segment::set_section_addresses(const Layout* layout, bool reset,
|
Output_segment::set_section_addresses(const Layout* layout, bool reset,
|
||||||
uint64_t addr,
|
uint64_t addr,
|
||||||
unsigned int* pincrease_relro,
|
unsigned int increase_relro,
|
||||||
bool* has_relro,
|
bool* has_relro,
|
||||||
off_t* poff,
|
off_t* poff,
|
||||||
unsigned int* pshndx)
|
unsigned int* pshndx)
|
||||||
@ -3678,6 +3680,8 @@ Output_segment::set_section_addresses(const Layout* layout, bool reset,
|
|||||||
uint64_t last_relro_pad = 0;
|
uint64_t last_relro_pad = 0;
|
||||||
off_t orig_off = *poff;
|
off_t orig_off = *poff;
|
||||||
|
|
||||||
|
bool in_tls = false;
|
||||||
|
|
||||||
// If we have relro sections, we need to pad forward now so that the
|
// If we have relro sections, we need to pad forward now so that the
|
||||||
// relro sections plus INCREASE_RELRO end on a common page boundary.
|
// relro sections plus INCREASE_RELRO end on a common page boundary.
|
||||||
if (parameters->options().relro()
|
if (parameters->options().relro()
|
||||||
@ -3687,7 +3691,7 @@ Output_segment::set_section_addresses(const Layout* layout, bool reset,
|
|||||||
uint64_t relro_size = 0;
|
uint64_t relro_size = 0;
|
||||||
off_t off = *poff;
|
off_t off = *poff;
|
||||||
uint64_t max_align = 0;
|
uint64_t max_align = 0;
|
||||||
for (int i = 0; i < static_cast<int>(ORDER_MAX); ++i)
|
for (int i = 0; i <= static_cast<int>(ORDER_RELRO_LAST); ++i)
|
||||||
{
|
{
|
||||||
Output_data_list* pdl = &this->output_lists_[i];
|
Output_data_list* pdl = &this->output_lists_[i];
|
||||||
Output_data_list::iterator p;
|
Output_data_list::iterator p;
|
||||||
@ -3695,13 +3699,23 @@ Output_segment::set_section_addresses(const Layout* layout, bool reset,
|
|||||||
{
|
{
|
||||||
if (!(*p)->is_section())
|
if (!(*p)->is_section())
|
||||||
break;
|
break;
|
||||||
Output_section* pos = (*p)->output_section();
|
|
||||||
if (!pos->is_relro())
|
|
||||||
break;
|
|
||||||
uint64_t align = (*p)->addralign();
|
uint64_t align = (*p)->addralign();
|
||||||
if (align > max_align)
|
if (align > max_align)
|
||||||
max_align = align;
|
max_align = align;
|
||||||
|
if ((*p)->is_section_flag_set(elfcpp::SHF_TLS))
|
||||||
|
in_tls = true;
|
||||||
|
else if (in_tls)
|
||||||
|
{
|
||||||
|
// Align the first non-TLS section to the alignment
|
||||||
|
// of the TLS segment.
|
||||||
|
align = max_align;
|
||||||
|
in_tls = false;
|
||||||
|
}
|
||||||
relro_size = align_address(relro_size, align);
|
relro_size = align_address(relro_size, align);
|
||||||
|
// Ignore the size of the .tbss section.
|
||||||
|
if ((*p)->is_section_flag_set(elfcpp::SHF_TLS)
|
||||||
|
&& (*p)->is_section_type(elfcpp::SHT_NOBITS))
|
||||||
|
continue;
|
||||||
if ((*p)->is_address_valid())
|
if ((*p)->is_address_valid())
|
||||||
relro_size += (*p)->data_size();
|
relro_size += (*p)->data_size();
|
||||||
else
|
else
|
||||||
@ -3716,14 +3730,12 @@ Output_segment::set_section_addresses(const Layout* layout, bool reset,
|
|||||||
if (p != pdl->end())
|
if (p != pdl->end())
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
relro_size += *pincrease_relro;
|
relro_size += increase_relro;
|
||||||
// Pad the total relro size to a multiple of the maximum
|
// Pad the total relro size to a multiple of the maximum
|
||||||
// section alignment seen.
|
// section alignment seen.
|
||||||
uint64_t aligned_size = align_address(relro_size, max_align);
|
uint64_t aligned_size = align_address(relro_size, max_align);
|
||||||
// Note the amount of padding added after the last relro section.
|
// Note the amount of padding added after the last relro section.
|
||||||
last_relro_pad = aligned_size - relro_size;
|
last_relro_pad = aligned_size - relro_size;
|
||||||
// Adjust *PINCREASE_RELRO to include the padding.
|
|
||||||
*pincrease_relro += last_relro_pad;
|
|
||||||
*has_relro = true;
|
*has_relro = true;
|
||||||
|
|
||||||
uint64_t page_align = parameters->target().common_pagesize();
|
uint64_t page_align = parameters->target().common_pagesize();
|
||||||
@ -3749,7 +3761,7 @@ Output_segment::set_section_addresses(const Layout* layout, bool reset,
|
|||||||
this->are_addresses_set_ = true;
|
this->are_addresses_set_ = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool in_tls = false;
|
in_tls = false;
|
||||||
|
|
||||||
this->offset_ = orig_off;
|
this->offset_ = orig_off;
|
||||||
|
|
||||||
@ -3757,14 +3769,14 @@ Output_segment::set_section_addresses(const Layout* layout, bool reset,
|
|||||||
uint64_t ret;
|
uint64_t ret;
|
||||||
for (int i = 0; i < static_cast<int>(ORDER_MAX); ++i)
|
for (int i = 0; i < static_cast<int>(ORDER_MAX); ++i)
|
||||||
{
|
{
|
||||||
addr = this->set_section_list_addresses(layout, reset,
|
|
||||||
&this->output_lists_[i],
|
|
||||||
addr, poff, pshndx, &in_tls);
|
|
||||||
if (i == static_cast<int>(ORDER_RELRO_LAST))
|
if (i == static_cast<int>(ORDER_RELRO_LAST))
|
||||||
{
|
{
|
||||||
*poff += last_relro_pad;
|
*poff += last_relro_pad;
|
||||||
addr += last_relro_pad;
|
addr += last_relro_pad;
|
||||||
}
|
}
|
||||||
|
addr = this->set_section_list_addresses(layout, reset,
|
||||||
|
&this->output_lists_[i],
|
||||||
|
addr, poff, pshndx, &in_tls);
|
||||||
if (i < static_cast<int>(ORDER_SMALL_BSS))
|
if (i < static_cast<int>(ORDER_SMALL_BSS))
|
||||||
{
|
{
|
||||||
this->filesz_ = *poff - orig_off;
|
this->filesz_ = *poff - orig_off;
|
||||||
|
@ -3908,7 +3908,7 @@ class Output_segment
|
|||||||
// *PSHNDX. This should only be called for a PT_LOAD segment.
|
// *PSHNDX. This should only be called for a PT_LOAD segment.
|
||||||
uint64_t
|
uint64_t
|
||||||
set_section_addresses(const Layout*, bool reset, uint64_t addr,
|
set_section_addresses(const Layout*, bool reset, uint64_t addr,
|
||||||
unsigned int* pincrease_relro, bool* has_relro,
|
unsigned int increase_relro, bool* has_relro,
|
||||||
off_t* poff, unsigned int* pshndx);
|
off_t* poff, unsigned int* pshndx);
|
||||||
|
|
||||||
// Set the minimum alignment of this segment. This may be adjusted
|
// Set the minimum alignment of this segment. This may be adjusted
|
||||||
|
Reference in New Issue
Block a user