2012-06-19 11:21:29 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2012 The Android Open Source Project
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* * Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* * Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
|
|
|
|
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2013-03-06 03:47:58 +01:00
|
|
|
#include "linker_phdr.h"
|
|
|
|
|
2012-06-19 11:21:29 +02:00
|
|
|
#include <errno.h>
|
2015-01-29 03:02:33 +01:00
|
|
|
#include <string.h>
|
2012-06-19 11:21:29 +02:00
|
|
|
#include <sys/mman.h>
|
2014-02-27 14:18:00 +01:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <unistd.h>
|
2012-06-19 11:21:29 +02:00
|
|
|
|
2013-03-06 03:47:58 +01:00
|
|
|
#include "linker.h"
|
|
|
|
#include "linker_debug.h"
|
2012-06-19 11:21:29 +02:00
|
|
|
|
2014-12-03 01:16:29 +01:00
|
|
|
static int GetTargetElfMachine() {
|
|
|
|
#if defined(__arm__)
|
|
|
|
return EM_ARM;
|
|
|
|
#elif defined(__aarch64__)
|
|
|
|
return EM_AARCH64;
|
|
|
|
#elif defined(__i386__)
|
|
|
|
return EM_386;
|
|
|
|
#elif defined(__mips__)
|
|
|
|
return EM_MIPS;
|
|
|
|
#elif defined(__x86_64__)
|
|
|
|
return EM_X86_64;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2012-06-19 11:21:29 +02:00
|
|
|
/**
|
|
|
|
TECHNICAL NOTE ON ELF LOADING.
|
|
|
|
|
|
|
|
An ELF file's program header table contains one or more PT_LOAD
|
|
|
|
segments, which corresponds to portions of the file that need to
|
|
|
|
be mapped into the process' address space.
|
|
|
|
|
|
|
|
Each loadable segment has the following important properties:
|
|
|
|
|
|
|
|
p_offset -> segment file offset
|
|
|
|
p_filesz -> segment file size
|
|
|
|
p_memsz -> segment memory size (always >= p_filesz)
|
|
|
|
p_vaddr -> segment's virtual address
|
|
|
|
p_flags -> segment flags (e.g. readable, writable, executable)
|
|
|
|
|
2014-02-11 02:46:57 +01:00
|
|
|
We will ignore the p_paddr and p_align fields of ElfW(Phdr) for now.
|
2012-06-19 11:21:29 +02:00
|
|
|
|
|
|
|
The loadable segments can be seen as a list of [p_vaddr ... p_vaddr+p_memsz)
|
|
|
|
ranges of virtual addresses. A few rules apply:
|
|
|
|
|
|
|
|
- the virtual address ranges should not overlap.
|
|
|
|
|
|
|
|
- if a segment's p_filesz is smaller than its p_memsz, the extra bytes
|
|
|
|
between them should always be initialized to 0.
|
|
|
|
|
|
|
|
- ranges do not necessarily start or end at page boundaries. Two distinct
|
|
|
|
segments can have their start and end on the same page. In this case, the
|
|
|
|
page inherits the mapping flags of the latter segment.
|
|
|
|
|
|
|
|
Finally, the real load addrs of each segment is not p_vaddr. Instead the
|
|
|
|
loader decides where to load the first segment, then will load all others
|
|
|
|
relative to the first one to respect the initial range layout.
|
|
|
|
|
|
|
|
For example, consider the following list:
|
|
|
|
|
|
|
|
[ offset:0, filesz:0x4000, memsz:0x4000, vaddr:0x30000 ],
|
|
|
|
[ offset:0x4000, filesz:0x2000, memsz:0x8000, vaddr:0x40000 ],
|
|
|
|
|
|
|
|
This corresponds to two segments that cover these virtual address ranges:
|
|
|
|
|
|
|
|
0x30000...0x34000
|
|
|
|
0x40000...0x48000
|
|
|
|
|
|
|
|
If the loader decides to load the first segment at address 0xa0000000
|
|
|
|
then the segments' load address ranges will be:
|
|
|
|
|
|
|
|
0xa0030000...0xa0034000
|
|
|
|
0xa0040000...0xa0048000
|
|
|
|
|
|
|
|
In other words, all segments must be loaded at an address that has the same
|
|
|
|
constant offset from their p_vaddr value. This offset is computed as the
|
|
|
|
difference between the first segment's load address, and its p_vaddr value.
|
|
|
|
|
|
|
|
However, in practice, segments do _not_ start at page boundaries. Since we
|
|
|
|
can only memory-map at page boundaries, this means that the bias is
|
|
|
|
computed as:
|
|
|
|
|
|
|
|
load_bias = phdr0_load_address - PAGE_START(phdr0->p_vaddr)
|
|
|
|
|
|
|
|
(NOTE: The value must be used as a 32-bit unsigned integer, to deal with
|
|
|
|
possible wrap around UINT32_MAX for possible large p_vaddr values).
|
|
|
|
|
|
|
|
And that the phdr0_load_address must start at a page boundary, with
|
|
|
|
the segment's real content starting at:
|
|
|
|
|
|
|
|
phdr0_load_address + PAGE_OFFSET(phdr0->p_vaddr)
|
|
|
|
|
|
|
|
Note that ELF requires the following condition to make the mmap()-ing work:
|
|
|
|
|
|
|
|
PAGE_OFFSET(phdr0->p_vaddr) == PAGE_OFFSET(phdr0->p_offset)
|
|
|
|
|
|
|
|
The load_bias must be added to any p_vaddr value read from the ELF file to
|
|
|
|
determine the corresponding memory address.
|
|
|
|
|
|
|
|
**/
|
|
|
|
|
2014-02-12 01:59:37 +01:00
|
|
|
#define MAYBE_MAP_FLAG(x, from, to) (((x) & (from)) ? (to) : 0)
|
2012-06-19 11:21:29 +02:00
|
|
|
#define PFLAGS_TO_PROT(x) (MAYBE_MAP_FLAG((x), PF_X, PROT_EXEC) | \
|
|
|
|
MAYBE_MAP_FLAG((x), PF_R, PROT_READ) | \
|
|
|
|
MAYBE_MAP_FLAG((x), PF_W, PROT_WRITE))
|
|
|
|
|
2015-10-15 21:07:25 +02:00
|
|
|
ElfReader::ElfReader()
|
|
|
|
: did_read_(false), did_load_(false), fd_(-1), file_offset_(0), file_size_(0), phdr_num_(0),
|
|
|
|
phdr_table_(nullptr), shdr_table_(nullptr), shdr_num_(0), dynamic_(nullptr), strtab_(nullptr),
|
|
|
|
strtab_size_(0), load_start_(nullptr), load_size_(0), load_bias_(0), loaded_phdr_(nullptr) {
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ElfReader::Read(const char* name, int fd, off64_t file_offset, off64_t file_size) {
|
|
|
|
CHECK(!did_read_);
|
|
|
|
CHECK(!did_load_);
|
|
|
|
name_ = name;
|
|
|
|
fd_ = fd;
|
|
|
|
file_offset_ = file_offset;
|
|
|
|
file_size_ = file_size;
|
|
|
|
|
|
|
|
if (ReadElfHeader() &&
|
|
|
|
VerifyElfHeader() &&
|
|
|
|
ReadProgramHeaders() &&
|
|
|
|
ReadSectionHeaders() &&
|
|
|
|
ReadDynamicSection()) {
|
|
|
|
did_read_ = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return did_read_;
|
2013-03-06 03:47:58 +01:00
|
|
|
}
|
2012-06-19 11:21:29 +02:00
|
|
|
|
2014-02-06 15:34:21 +01:00
|
|
|
bool ElfReader::Load(const android_dlextinfo* extinfo) {
|
2015-10-15 21:07:25 +02:00
|
|
|
CHECK(did_read_);
|
|
|
|
CHECK(!did_load_);
|
|
|
|
if (ReserveAddressSpace(extinfo) &&
|
|
|
|
LoadSegments() &&
|
|
|
|
FindPhdr()) {
|
|
|
|
did_load_ = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return did_load_;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* ElfReader::get_string(ElfW(Word) index) const {
|
|
|
|
CHECK(strtab_ != nullptr);
|
|
|
|
CHECK(index < strtab_size_);
|
|
|
|
|
|
|
|
return strtab_ + index;
|
2013-03-06 03:47:58 +01:00
|
|
|
}
|
2012-06-19 11:21:29 +02:00
|
|
|
|
2013-03-06 03:47:58 +01:00
|
|
|
bool ElfReader::ReadElfHeader() {
|
2014-10-21 21:09:18 +02:00
|
|
|
ssize_t rc = TEMP_FAILURE_RETRY(pread64(fd_, &header_, sizeof(header_), file_offset_));
|
2013-03-06 03:47:58 +01:00
|
|
|
if (rc < 0) {
|
2015-10-15 21:07:25 +02:00
|
|
|
DL_ERR("can't read file \"%s\": %s", name_.c_str(), strerror(errno));
|
2013-03-06 03:47:58 +01:00
|
|
|
return false;
|
|
|
|
}
|
2014-10-21 21:09:18 +02:00
|
|
|
|
2013-03-06 03:47:58 +01:00
|
|
|
if (rc != sizeof(header_)) {
|
2015-10-15 21:07:25 +02:00
|
|
|
DL_ERR("\"%s\" is too small to be an ELF executable: only found %zd bytes", name_.c_str(),
|
2013-10-01 03:43:46 +02:00
|
|
|
static_cast<size_t>(rc));
|
2013-03-06 03:47:58 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
2012-06-19 11:21:29 +02:00
|
|
|
}
|
|
|
|
|
2013-03-06 03:47:58 +01:00
|
|
|
bool ElfReader::VerifyElfHeader() {
|
2014-07-16 01:53:13 +02:00
|
|
|
if (memcmp(header_.e_ident, ELFMAG, SELFMAG) != 0) {
|
2015-10-15 21:07:25 +02:00
|
|
|
DL_ERR("\"%s\" has bad ELF magic", name_.c_str());
|
2013-03-06 03:47:58 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-10-05 02:01:33 +02:00
|
|
|
// Try to give a clear diagnostic for ELF class mismatches, since they're
|
|
|
|
// an easy mistake to make during the 32-bit/64-bit transition period.
|
|
|
|
int elf_class = header_.e_ident[EI_CLASS];
|
|
|
|
#if defined(__LP64__)
|
|
|
|
if (elf_class != ELFCLASS64) {
|
|
|
|
if (elf_class == ELFCLASS32) {
|
2015-10-15 21:07:25 +02:00
|
|
|
DL_ERR("\"%s\" is 32-bit instead of 64-bit", name_.c_str());
|
2013-10-05 02:01:33 +02:00
|
|
|
} else {
|
2015-10-15 21:07:25 +02:00
|
|
|
DL_ERR("\"%s\" has unknown ELF class: %d", name_.c_str(), elf_class);
|
2013-10-05 02:01:33 +02:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
if (elf_class != ELFCLASS32) {
|
|
|
|
if (elf_class == ELFCLASS64) {
|
2015-10-15 21:07:25 +02:00
|
|
|
DL_ERR("\"%s\" is 64-bit instead of 32-bit", name_.c_str());
|
2013-10-05 02:01:33 +02:00
|
|
|
} else {
|
2015-10-15 21:07:25 +02:00
|
|
|
DL_ERR("\"%s\" has unknown ELF class: %d", name_.c_str(), elf_class);
|
2013-10-05 02:01:33 +02:00
|
|
|
}
|
2013-03-06 03:47:58 +01:00
|
|
|
return false;
|
|
|
|
}
|
2013-10-05 02:01:33 +02:00
|
|
|
#endif
|
|
|
|
|
2013-03-06 03:47:58 +01:00
|
|
|
if (header_.e_ident[EI_DATA] != ELFDATA2LSB) {
|
2015-10-15 21:07:25 +02:00
|
|
|
DL_ERR("\"%s\" not little-endian: %d", name_.c_str(), header_.e_ident[EI_DATA]);
|
2013-03-06 03:47:58 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (header_.e_type != ET_DYN) {
|
2015-10-15 21:07:25 +02:00
|
|
|
DL_ERR("\"%s\" has unexpected e_type: %d", name_.c_str(), header_.e_type);
|
2013-03-06 03:47:58 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (header_.e_version != EV_CURRENT) {
|
2015-10-15 21:07:25 +02:00
|
|
|
DL_ERR("\"%s\" has unexpected e_version: %d", name_.c_str(), header_.e_version);
|
2013-03-06 03:47:58 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-12-03 01:16:29 +01:00
|
|
|
if (header_.e_machine != GetTargetElfMachine()) {
|
2015-10-15 21:07:25 +02:00
|
|
|
DL_ERR("\"%s\" has unexpected e_machine: %d", name_.c_str(), header_.e_machine);
|
2013-03-06 03:47:58 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2012-06-19 11:21:29 +02:00
|
|
|
}
|
|
|
|
|
2013-03-06 03:47:58 +01:00
|
|
|
// Loads the program header table from an ELF file into a read-only private
|
|
|
|
// anonymous mmap-ed block.
|
2015-10-15 21:07:25 +02:00
|
|
|
bool ElfReader::ReadProgramHeaders() {
|
2013-03-06 03:47:58 +01:00
|
|
|
phdr_num_ = header_.e_phnum;
|
|
|
|
|
|
|
|
// Like the kernel, we only accept program header tables that
|
|
|
|
// are smaller than 64KiB.
|
2014-02-11 02:46:57 +01:00
|
|
|
if (phdr_num_ < 1 || phdr_num_ > 65536/sizeof(ElfW(Phdr))) {
|
2015-10-15 21:07:25 +02:00
|
|
|
DL_ERR("\"%s\" has invalid e_phnum: %zd", name_.c_str(), phdr_num_);
|
2013-03-06 03:47:58 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-10-20 01:57:46 +02:00
|
|
|
if (!phdr_fragment_.Map(fd_, file_offset_, header_.e_phoff, phdr_num_ * sizeof(ElfW(Phdr)))) {
|
2015-10-15 21:07:25 +02:00
|
|
|
DL_ERR("\"%s\" phdr mmap failed: %s", name_.c_str(), strerror(errno));
|
2013-03-06 03:47:58 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-10-20 01:57:46 +02:00
|
|
|
phdr_table_ = static_cast<ElfW(Phdr)*>(phdr_fragment_.data());
|
2013-03-06 03:47:58 +01:00
|
|
|
return true;
|
|
|
|
}
|
2012-06-19 11:21:29 +02:00
|
|
|
|
2015-10-15 21:07:25 +02:00
|
|
|
bool ElfReader::ReadSectionHeaders() {
|
|
|
|
shdr_num_ = header_.e_shnum;
|
|
|
|
|
2015-11-20 19:42:02 +01:00
|
|
|
if (shdr_num_ == 0) {
|
|
|
|
DL_ERR("\"%s\" there are no section headers in this file", name_.c_str());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-10-15 21:07:25 +02:00
|
|
|
if (!shdr_fragment_.Map(fd_, file_offset_, header_.e_shoff, shdr_num_ * sizeof(ElfW(Shdr)))) {
|
|
|
|
DL_ERR("\"%s\" shdr mmap failed: %s", name_.c_str(), strerror(errno));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
shdr_table_ = static_cast<const ElfW(Shdr)*>(shdr_fragment_.data());
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ElfReader::ReadDynamicSection() {
|
|
|
|
// 1. Find .dynamic section (in section headers)
|
|
|
|
const ElfW(Shdr)* dynamic_shdr = nullptr;
|
|
|
|
for (size_t i = 0; i < shdr_num_; ++i) {
|
|
|
|
if (shdr_table_[i].sh_type == SHT_DYNAMIC) {
|
|
|
|
dynamic_shdr = &shdr_table_ [i];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dynamic_shdr == nullptr) {
|
2015-11-20 19:42:02 +01:00
|
|
|
DL_ERR("\"%s\" .dynamic section header was not found", name_.c_str());
|
2015-10-15 21:07:25 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dynamic_shdr->sh_link >= shdr_num_) {
|
|
|
|
DL_ERR("\"%s\" .dynamic section has invalid sh_link: %d", name_.c_str(), dynamic_shdr->sh_link);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
const ElfW(Shdr)* strtab_shdr = &shdr_table_[dynamic_shdr->sh_link];
|
|
|
|
|
|
|
|
if (strtab_shdr->sh_type != SHT_STRTAB) {
|
|
|
|
DL_ERR("\"%s\" .dynamic section has invalid link(%d) sh_type: %d (expected SHT_STRTAB)",
|
|
|
|
name_.c_str(), dynamic_shdr->sh_link, strtab_shdr->sh_type);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!dynamic_fragment_.Map(fd_, file_offset_, dynamic_shdr->sh_offset, dynamic_shdr->sh_size)) {
|
|
|
|
DL_ERR("\"%s\" dynamic section mmap failed: %s", name_.c_str(), strerror(errno));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
dynamic_ = static_cast<const ElfW(Dyn)*>(dynamic_fragment_.data());
|
|
|
|
|
|
|
|
if (!strtab_fragment_.Map(fd_, file_offset_, strtab_shdr->sh_offset, strtab_shdr->sh_size)) {
|
|
|
|
DL_ERR("\"%s\" strtab section mmap failed: %s", name_.c_str(), strerror(errno));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
strtab_ = static_cast<const char*>(strtab_fragment_.data());
|
|
|
|
strtab_size_ = strtab_fragment_.size();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-01-11 01:39:58 +01:00
|
|
|
/* Returns the size of the extent of all the possibly non-contiguous
|
|
|
|
* loadable segments in an ELF program header table. This corresponds
|
|
|
|
* to the page-aligned size in bytes that needs to be reserved in the
|
|
|
|
* process' address space. If there are no loadable segments, 0 is
|
|
|
|
* returned.
|
2012-06-19 11:21:29 +02:00
|
|
|
*
|
2014-08-29 21:02:36 +02:00
|
|
|
* If out_min_vaddr or out_max_vaddr are not null, they will be
|
2013-01-11 01:39:58 +01:00
|
|
|
* set to the minimum and maximum addresses of pages to be reserved,
|
|
|
|
* or 0 if there is nothing to load.
|
2012-06-19 11:21:29 +02:00
|
|
|
*/
|
2014-02-11 02:46:57 +01:00
|
|
|
size_t phdr_table_get_load_size(const ElfW(Phdr)* phdr_table, size_t phdr_count,
|
|
|
|
ElfW(Addr)* out_min_vaddr,
|
|
|
|
ElfW(Addr)* out_max_vaddr) {
|
|
|
|
ElfW(Addr) min_vaddr = UINTPTR_MAX;
|
|
|
|
ElfW(Addr) max_vaddr = 0;
|
2012-06-19 11:21:29 +02:00
|
|
|
|
2014-02-11 02:46:57 +01:00
|
|
|
bool found_pt_load = false;
|
|
|
|
for (size_t i = 0; i < phdr_count; ++i) {
|
|
|
|
const ElfW(Phdr)* phdr = &phdr_table[i];
|
2012-06-19 11:21:29 +02:00
|
|
|
|
2014-02-11 02:46:57 +01:00
|
|
|
if (phdr->p_type != PT_LOAD) {
|
|
|
|
continue;
|
2013-01-11 01:39:58 +01:00
|
|
|
}
|
2014-02-11 02:46:57 +01:00
|
|
|
found_pt_load = true;
|
|
|
|
|
|
|
|
if (phdr->p_vaddr < min_vaddr) {
|
|
|
|
min_vaddr = phdr->p_vaddr;
|
2013-01-11 01:39:58 +01:00
|
|
|
}
|
2014-02-11 02:46:57 +01:00
|
|
|
|
|
|
|
if (phdr->p_vaddr + phdr->p_memsz > max_vaddr) {
|
|
|
|
max_vaddr = phdr->p_vaddr + phdr->p_memsz;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!found_pt_load) {
|
|
|
|
min_vaddr = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
min_vaddr = PAGE_START(min_vaddr);
|
|
|
|
max_vaddr = PAGE_END(max_vaddr);
|
|
|
|
|
2014-08-29 21:02:36 +02:00
|
|
|
if (out_min_vaddr != nullptr) {
|
2014-02-11 02:46:57 +01:00
|
|
|
*out_min_vaddr = min_vaddr;
|
|
|
|
}
|
2014-08-29 21:02:36 +02:00
|
|
|
if (out_max_vaddr != nullptr) {
|
2014-02-11 02:46:57 +01:00
|
|
|
*out_max_vaddr = max_vaddr;
|
|
|
|
}
|
|
|
|
return max_vaddr - min_vaddr;
|
2012-06-19 11:21:29 +02:00
|
|
|
}
|
|
|
|
|
2013-03-06 03:47:58 +01:00
|
|
|
// Reserve a virtual address range big enough to hold all loadable
|
|
|
|
// segments of a program header table. This is done by creating a
|
|
|
|
// private anonymous mmap() with PROT_NONE.
|
2014-02-06 15:34:21 +01:00
|
|
|
bool ElfReader::ReserveAddressSpace(const android_dlextinfo* extinfo) {
|
2014-02-11 02:46:57 +01:00
|
|
|
ElfW(Addr) min_vaddr;
|
2013-01-11 01:39:58 +01:00
|
|
|
load_size_ = phdr_table_get_load_size(phdr_table_, phdr_num_, &min_vaddr);
|
2013-03-06 03:47:58 +01:00
|
|
|
if (load_size_ == 0) {
|
2015-10-15 21:07:25 +02:00
|
|
|
DL_ERR("\"%s\" has no loadable segments", name_.c_str());
|
2013-03-06 03:47:58 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-01-11 01:39:58 +01:00
|
|
|
uint8_t* addr = reinterpret_cast<uint8_t*>(min_vaddr);
|
2014-02-06 15:34:21 +01:00
|
|
|
void* start;
|
|
|
|
size_t reserved_size = 0;
|
|
|
|
bool reserved_hint = true;
|
2015-10-08 01:34:20 +02:00
|
|
|
bool strict_hint = false;
|
2015-06-06 07:16:23 +02:00
|
|
|
// Assume position independent executable by default.
|
2015-10-08 01:34:20 +02:00
|
|
|
void* mmap_hint = nullptr;
|
2014-02-06 15:34:21 +01:00
|
|
|
|
2014-08-29 21:02:36 +02:00
|
|
|
if (extinfo != nullptr) {
|
2014-02-06 15:34:21 +01:00
|
|
|
if (extinfo->flags & ANDROID_DLEXT_RESERVED_ADDRESS) {
|
|
|
|
reserved_size = extinfo->reserved_size;
|
|
|
|
reserved_hint = false;
|
|
|
|
} else if (extinfo->flags & ANDROID_DLEXT_RESERVED_ADDRESS_HINT) {
|
|
|
|
reserved_size = extinfo->reserved_size;
|
|
|
|
}
|
2015-06-06 07:16:23 +02:00
|
|
|
|
2015-10-08 01:34:20 +02:00
|
|
|
if (addr != nullptr && (extinfo->flags & ANDROID_DLEXT_FORCE_FIXED_VADDR) != 0) {
|
2015-06-06 07:16:23 +02:00
|
|
|
mmap_hint = addr;
|
2015-10-08 01:34:20 +02:00
|
|
|
} else if ((extinfo->flags & ANDROID_DLEXT_LOAD_AT_FIXED_ADDRESS) != 0) {
|
|
|
|
mmap_hint = extinfo->reserved_addr;
|
|
|
|
strict_hint = true;
|
2015-06-06 07:16:23 +02:00
|
|
|
}
|
2014-02-06 15:34:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (load_size_ > reserved_size) {
|
|
|
|
if (!reserved_hint) {
|
|
|
|
DL_ERR("reserved address space %zd smaller than %zd bytes needed for \"%s\"",
|
2015-10-15 21:07:25 +02:00
|
|
|
reserved_size - load_size_, load_size_, name_.c_str());
|
2014-02-06 15:34:21 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
int mmap_flags = MAP_PRIVATE | MAP_ANONYMOUS;
|
2015-06-06 07:16:23 +02:00
|
|
|
start = mmap(mmap_hint, load_size_, PROT_NONE, mmap_flags, -1, 0);
|
2014-02-06 15:34:21 +01:00
|
|
|
if (start == MAP_FAILED) {
|
2015-10-15 21:07:25 +02:00
|
|
|
DL_ERR("couldn't reserve %zd bytes of address space for \"%s\"", load_size_, name_.c_str());
|
2014-02-06 15:34:21 +01:00
|
|
|
return false;
|
|
|
|
}
|
2015-10-08 01:34:20 +02:00
|
|
|
if (strict_hint && (start != mmap_hint)) {
|
|
|
|
munmap(start, load_size_);
|
|
|
|
DL_ERR("couldn't reserve %zd bytes of address space at %p for \"%s\"",
|
|
|
|
load_size_, mmap_hint, name_.c_str());
|
|
|
|
return false;
|
|
|
|
}
|
2014-02-06 15:34:21 +01:00
|
|
|
} else {
|
|
|
|
start = extinfo->reserved_addr;
|
2013-03-06 03:47:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
load_start_ = start;
|
2013-01-11 01:39:58 +01:00
|
|
|
load_bias_ = reinterpret_cast<uint8_t*>(start) - addr;
|
2013-03-06 03:47:58 +01:00
|
|
|
return true;
|
2012-06-19 11:21:29 +02:00
|
|
|
}
|
|
|
|
|
2013-03-06 03:47:58 +01:00
|
|
|
bool ElfReader::LoadSegments() {
|
|
|
|
for (size_t i = 0; i < phdr_num_; ++i) {
|
2014-02-11 02:46:57 +01:00
|
|
|
const ElfW(Phdr)* phdr = &phdr_table_[i];
|
2012-06-19 11:21:29 +02:00
|
|
|
|
2013-03-06 03:47:58 +01:00
|
|
|
if (phdr->p_type != PT_LOAD) {
|
|
|
|
continue;
|
|
|
|
}
|
2012-06-19 11:21:29 +02:00
|
|
|
|
2013-03-06 03:47:58 +01:00
|
|
|
// Segment addresses in memory.
|
2014-02-11 02:46:57 +01:00
|
|
|
ElfW(Addr) seg_start = phdr->p_vaddr + load_bias_;
|
|
|
|
ElfW(Addr) seg_end = seg_start + phdr->p_memsz;
|
2012-06-19 11:21:29 +02:00
|
|
|
|
2014-02-11 02:46:57 +01:00
|
|
|
ElfW(Addr) seg_page_start = PAGE_START(seg_start);
|
|
|
|
ElfW(Addr) seg_page_end = PAGE_END(seg_end);
|
2012-06-19 11:21:29 +02:00
|
|
|
|
2014-02-11 02:46:57 +01:00
|
|
|
ElfW(Addr) seg_file_end = seg_start + phdr->p_filesz;
|
2012-06-19 11:21:29 +02:00
|
|
|
|
2013-03-06 03:47:58 +01:00
|
|
|
// File offsets.
|
2014-02-11 02:46:57 +01:00
|
|
|
ElfW(Addr) file_start = phdr->p_offset;
|
|
|
|
ElfW(Addr) file_end = file_start + phdr->p_filesz;
|
2012-06-19 11:21:29 +02:00
|
|
|
|
2014-02-11 02:46:57 +01:00
|
|
|
ElfW(Addr) file_page_start = PAGE_START(file_start);
|
|
|
|
ElfW(Addr) file_length = file_end - file_page_start;
|
2013-05-22 01:49:24 +02:00
|
|
|
|
2015-06-26 00:51:41 +02:00
|
|
|
if (file_size_ <= 0) {
|
2015-10-15 21:07:25 +02:00
|
|
|
DL_ERR("\"%s\" invalid file size: %" PRId64, name_.c_str(), file_size_);
|
2015-06-26 00:51:41 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-08-20 00:06:42 +02:00
|
|
|
if (file_end > static_cast<size_t>(file_size_)) {
|
2015-06-26 00:51:41 +02:00
|
|
|
DL_ERR("invalid ELF file \"%s\" load segment[%zd]:"
|
|
|
|
" p_offset (%p) + p_filesz (%p) ( = %p) past end of file (0x%" PRIx64 ")",
|
2015-10-15 21:07:25 +02:00
|
|
|
name_.c_str(), i, reinterpret_cast<void*>(phdr->p_offset),
|
2015-06-26 00:51:41 +02:00
|
|
|
reinterpret_cast<void*>(phdr->p_filesz),
|
|
|
|
reinterpret_cast<void*>(file_end), file_size_);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-05-22 01:49:24 +02:00
|
|
|
if (file_length != 0) {
|
2014-10-04 02:52:44 +02:00
|
|
|
void* seg_addr = mmap64(reinterpret_cast<void*>(seg_page_start),
|
2013-05-22 01:49:24 +02:00
|
|
|
file_length,
|
|
|
|
PFLAGS_TO_PROT(phdr->p_flags),
|
|
|
|
MAP_FIXED|MAP_PRIVATE,
|
|
|
|
fd_,
|
2014-10-04 02:52:44 +02:00
|
|
|
file_offset_ + file_page_start);
|
2013-05-22 01:49:24 +02:00
|
|
|
if (seg_addr == MAP_FAILED) {
|
2015-10-15 21:07:25 +02:00
|
|
|
DL_ERR("couldn't map \"%s\" segment %zd: %s", name_.c_str(), i, strerror(errno));
|
2013-05-22 01:49:24 +02:00
|
|
|
return false;
|
|
|
|
}
|
2013-03-06 03:47:58 +01:00
|
|
|
}
|
2012-06-19 11:21:29 +02:00
|
|
|
|
2013-03-06 03:47:58 +01:00
|
|
|
// if the segment is writable, and does not end on a page boundary,
|
|
|
|
// zero-fill it until the page limit.
|
|
|
|
if ((phdr->p_flags & PF_W) != 0 && PAGE_OFFSET(seg_file_end) > 0) {
|
2014-02-12 01:59:37 +01:00
|
|
|
memset(reinterpret_cast<void*>(seg_file_end), 0, PAGE_SIZE - PAGE_OFFSET(seg_file_end));
|
2013-03-06 03:47:58 +01:00
|
|
|
}
|
2012-06-19 11:21:29 +02:00
|
|
|
|
2013-03-06 03:47:58 +01:00
|
|
|
seg_file_end = PAGE_END(seg_file_end);
|
|
|
|
|
|
|
|
// seg_file_end is now the first page address after the file
|
|
|
|
// content. If seg_end is larger, we need to zero anything
|
|
|
|
// between them. This is done by using a private anonymous
|
|
|
|
// map for all extra pages.
|
|
|
|
if (seg_page_end > seg_file_end) {
|
2014-02-12 01:59:37 +01:00
|
|
|
void* zeromap = mmap(reinterpret_cast<void*>(seg_file_end),
|
2013-03-06 03:47:58 +01:00
|
|
|
seg_page_end - seg_file_end,
|
|
|
|
PFLAGS_TO_PROT(phdr->p_flags),
|
|
|
|
MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE,
|
|
|
|
-1,
|
|
|
|
0);
|
|
|
|
if (zeromap == MAP_FAILED) {
|
2015-10-15 21:07:25 +02:00
|
|
|
DL_ERR("couldn't zero fill \"%s\" gap: %s", name_.c_str(), strerror(errno));
|
2013-03-06 03:47:58 +01:00
|
|
|
return false;
|
|
|
|
}
|
2012-06-19 11:21:29 +02:00
|
|
|
}
|
2013-03-06 03:47:58 +01:00
|
|
|
}
|
|
|
|
return true;
|
2012-06-19 11:21:29 +02:00
|
|
|
}
|
|
|
|
|
2015-04-01 23:18:48 +02:00
|
|
|
/* Used internally. Used to set the protection bits of all loaded segments
|
|
|
|
* with optional extra flags (i.e. really PROT_WRITE). Used by
|
|
|
|
* phdr_table_protect_segments and phdr_table_unprotect_segments.
|
|
|
|
*/
|
|
|
|
static int _phdr_table_set_load_prot(const ElfW(Phdr)* phdr_table, size_t phdr_count,
|
|
|
|
ElfW(Addr) load_bias, int extra_prot_flags) {
|
|
|
|
const ElfW(Phdr)* phdr = phdr_table;
|
|
|
|
const ElfW(Phdr)* phdr_limit = phdr + phdr_count;
|
|
|
|
|
|
|
|
for (; phdr < phdr_limit; phdr++) {
|
|
|
|
if (phdr->p_type != PT_LOAD || (phdr->p_flags & PF_W) != 0) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
ElfW(Addr) seg_page_start = PAGE_START(phdr->p_vaddr) + load_bias;
|
|
|
|
ElfW(Addr) seg_page_end = PAGE_END(phdr->p_vaddr + phdr->p_memsz) + load_bias;
|
|
|
|
|
linker: never mark pages simultaneously writable / executable
When the Android dynamic linker handles a text relocation,
it first relaxes the permissions on the segment being modified,
performs the modifications, and then restores the page permissions.
The relaxation worked by adding PROT_WRITE to whatever protection
bits were set in the section. In effect, the pages were getting set
to PROT_READ|PROT_WRITE|PROT_EXEC, modified, then restored to
PROT_READ|PROT_EXEC
The SELinux kernel code differentiates between 4 different kinds
of executable memory:
* Executable stack (execstack)
* Executable heap (execheap)
* File-based executable code which has been modified (execmod)
* All other executable memory (execmem)
The execmod capability is only triggered by the kernel when a
dirty but non-executable mmap()ed page becomes executable. When that
occurs, an SELinux policy check is done to see if the execmod capability
is provided by policy.
However, if the page is already executable, and PROT_WRITE is added
to the page, it's considered an execmem permission check, not an execmod
permission check.
There are certain circumstances where we may want to distinguish between
execmod and execmem. This change adjusts the dynamic linker to avoid
using RWX pages, so that an RX -> RW -> RX transition will properly
be detected as an execmod permission check instead of an execmem permission
check.
Bug: 20013628
Change-Id: I14d7be29170b156942f9809023f3b2fc1f37846c
2015-04-02 01:57:50 +02:00
|
|
|
int prot = PFLAGS_TO_PROT(phdr->p_flags);
|
|
|
|
if ((extra_prot_flags & PROT_WRITE) != 0) {
|
|
|
|
// make sure we're never simultaneously writable / executable
|
|
|
|
prot &= ~PROT_EXEC;
|
|
|
|
}
|
|
|
|
|
2015-04-01 23:18:48 +02:00
|
|
|
int ret = mprotect(reinterpret_cast<void*>(seg_page_start),
|
|
|
|
seg_page_end - seg_page_start,
|
linker: never mark pages simultaneously writable / executable
When the Android dynamic linker handles a text relocation,
it first relaxes the permissions on the segment being modified,
performs the modifications, and then restores the page permissions.
The relaxation worked by adding PROT_WRITE to whatever protection
bits were set in the section. In effect, the pages were getting set
to PROT_READ|PROT_WRITE|PROT_EXEC, modified, then restored to
PROT_READ|PROT_EXEC
The SELinux kernel code differentiates between 4 different kinds
of executable memory:
* Executable stack (execstack)
* Executable heap (execheap)
* File-based executable code which has been modified (execmod)
* All other executable memory (execmem)
The execmod capability is only triggered by the kernel when a
dirty but non-executable mmap()ed page becomes executable. When that
occurs, an SELinux policy check is done to see if the execmod capability
is provided by policy.
However, if the page is already executable, and PROT_WRITE is added
to the page, it's considered an execmem permission check, not an execmod
permission check.
There are certain circumstances where we may want to distinguish between
execmod and execmem. This change adjusts the dynamic linker to avoid
using RWX pages, so that an RX -> RW -> RX transition will properly
be detected as an execmod permission check instead of an execmem permission
check.
Bug: 20013628
Change-Id: I14d7be29170b156942f9809023f3b2fc1f37846c
2015-04-02 01:57:50 +02:00
|
|
|
prot | extra_prot_flags);
|
2015-04-01 23:18:48 +02:00
|
|
|
if (ret < 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Restore the original protection modes for all loadable segments.
|
|
|
|
* You should only call this after phdr_table_unprotect_segments and
|
|
|
|
* applying all relocations.
|
|
|
|
*
|
|
|
|
* Input:
|
|
|
|
* phdr_table -> program header table
|
|
|
|
* phdr_count -> number of entries in tables
|
|
|
|
* load_bias -> load bias
|
|
|
|
* Return:
|
|
|
|
* 0 on error, -1 on failure (error code in errno).
|
|
|
|
*/
|
|
|
|
int phdr_table_protect_segments(const ElfW(Phdr)* phdr_table,
|
|
|
|
size_t phdr_count, ElfW(Addr) load_bias) {
|
|
|
|
return _phdr_table_set_load_prot(phdr_table, phdr_count, load_bias, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Change the protection of all loaded segments in memory to writable.
|
|
|
|
* This is useful before performing relocations. Once completed, you
|
|
|
|
* will have to call phdr_table_protect_segments to restore the original
|
|
|
|
* protection flags on all segments.
|
|
|
|
*
|
|
|
|
* Note that some writable segments can also have their content turned
|
|
|
|
* to read-only by calling phdr_table_protect_gnu_relro. This is no
|
|
|
|
* performed here.
|
|
|
|
*
|
|
|
|
* Input:
|
|
|
|
* phdr_table -> program header table
|
|
|
|
* phdr_count -> number of entries in tables
|
|
|
|
* load_bias -> load bias
|
|
|
|
* Return:
|
|
|
|
* 0 on error, -1 on failure (error code in errno).
|
|
|
|
*/
|
|
|
|
int phdr_table_unprotect_segments(const ElfW(Phdr)* phdr_table,
|
|
|
|
size_t phdr_count, ElfW(Addr) load_bias) {
|
|
|
|
return _phdr_table_set_load_prot(phdr_table, phdr_count, load_bias, PROT_WRITE);
|
|
|
|
}
|
|
|
|
|
2012-06-19 11:21:29 +02:00
|
|
|
/* Used internally by phdr_table_protect_gnu_relro and
|
|
|
|
* phdr_table_unprotect_gnu_relro.
|
|
|
|
*/
|
2014-02-11 02:46:57 +01:00
|
|
|
static int _phdr_table_set_gnu_relro_prot(const ElfW(Phdr)* phdr_table, size_t phdr_count,
|
|
|
|
ElfW(Addr) load_bias, int prot_flags) {
|
|
|
|
const ElfW(Phdr)* phdr = phdr_table;
|
|
|
|
const ElfW(Phdr)* phdr_limit = phdr + phdr_count;
|
|
|
|
|
|
|
|
for (phdr = phdr_table; phdr < phdr_limit; phdr++) {
|
|
|
|
if (phdr->p_type != PT_GNU_RELRO) {
|
|
|
|
continue;
|
2012-06-19 11:21:29 +02:00
|
|
|
}
|
2014-02-11 02:46:57 +01:00
|
|
|
|
|
|
|
// Tricky: what happens when the relro segment does not start
|
|
|
|
// or end at page boundaries? We're going to be over-protective
|
|
|
|
// here and put every page touched by the segment as read-only.
|
|
|
|
|
|
|
|
// This seems to match Ian Lance Taylor's description of the
|
|
|
|
// feature at http://www.airs.com/blog/archives/189.
|
|
|
|
|
|
|
|
// Extract:
|
|
|
|
// Note that the current dynamic linker code will only work
|
|
|
|
// correctly if the PT_GNU_RELRO segment starts on a page
|
|
|
|
// boundary. This is because the dynamic linker rounds the
|
|
|
|
// p_vaddr field down to the previous page boundary. If
|
|
|
|
// there is anything on the page which should not be read-only,
|
|
|
|
// the program is likely to fail at runtime. So in effect the
|
|
|
|
// linker must only emit a PT_GNU_RELRO segment if it ensures
|
|
|
|
// that it starts on a page boundary.
|
|
|
|
ElfW(Addr) seg_page_start = PAGE_START(phdr->p_vaddr) + load_bias;
|
|
|
|
ElfW(Addr) seg_page_end = PAGE_END(phdr->p_vaddr + phdr->p_memsz) + load_bias;
|
|
|
|
|
2014-02-12 01:59:37 +01:00
|
|
|
int ret = mprotect(reinterpret_cast<void*>(seg_page_start),
|
2014-02-11 02:46:57 +01:00
|
|
|
seg_page_end - seg_page_start,
|
|
|
|
prot_flags);
|
|
|
|
if (ret < 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
2012-06-19 11:21:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Apply GNU relro protection if specified by the program header. This will
|
|
|
|
* turn some of the pages of a writable PT_LOAD segment to read-only, as
|
|
|
|
* specified by one or more PT_GNU_RELRO segments. This must be always
|
|
|
|
* performed after relocations.
|
|
|
|
*
|
linker: avoid clobbering the .dynamic section of shared libs
This patch removes the DT_NEEDED hack which stores pointers
to soinfo structs in the .dynamic section of the library
being loaded.
Instead, it caches the soinfo struct pointers on the stack
during relocation time. After relocation time, i.e. when
calling constructors and destructors of the shared library
and its dependencies, uncached access is used instead,
doing lookups using the string table entries pointed to by
the DT_NEEDED entries.
By removing this hack, it is no longer needed to undo the
PT_GNURELRO protection, i.e., all non-writable mappings
can remain non-writable during their entire lifespan.
Even though, strictly speaking, the algorithmic complexity
has increased somewhat, the real-world adverse effect
is negligible on the systems I have tested.
Change-Id: I2361502560b96b5878f7f94a8e8a215350d70d64
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@gmail.com>
2012-08-14 12:30:09 +02:00
|
|
|
* The areas typically covered are .got and .data.rel.ro, these are
|
|
|
|
* read-only from the program's POV, but contain absolute addresses
|
|
|
|
* that need to be relocated before use.
|
2012-06-19 11:21:29 +02:00
|
|
|
*
|
|
|
|
* Input:
|
|
|
|
* phdr_table -> program header table
|
2012-08-16 01:56:00 +02:00
|
|
|
* phdr_count -> number of entries in tables
|
2012-06-19 11:21:29 +02:00
|
|
|
* load_bias -> load bias
|
|
|
|
* Return:
|
|
|
|
* 0 on error, -1 on failure (error code in errno).
|
|
|
|
*/
|
2015-03-31 03:43:38 +02:00
|
|
|
int phdr_table_protect_gnu_relro(const ElfW(Phdr)* phdr_table,
|
|
|
|
size_t phdr_count, ElfW(Addr) load_bias) {
|
2014-02-11 02:46:57 +01:00
|
|
|
return _phdr_table_set_gnu_relro_prot(phdr_table, phdr_count, load_bias, PROT_READ);
|
2012-06-19 11:21:29 +02:00
|
|
|
}
|
|
|
|
|
2014-02-27 14:18:00 +01:00
|
|
|
/* Serialize the GNU relro segments to the given file descriptor. This can be
|
|
|
|
* performed after relocations to allow another process to later share the
|
|
|
|
* relocated segment, if it was loaded at the same address.
|
|
|
|
*
|
|
|
|
* Input:
|
|
|
|
* phdr_table -> program header table
|
|
|
|
* phdr_count -> number of entries in tables
|
|
|
|
* load_bias -> load bias
|
|
|
|
* fd -> writable file descriptor to use
|
|
|
|
* Return:
|
|
|
|
* 0 on error, -1 on failure (error code in errno).
|
|
|
|
*/
|
2015-03-31 03:43:38 +02:00
|
|
|
int phdr_table_serialize_gnu_relro(const ElfW(Phdr)* phdr_table,
|
|
|
|
size_t phdr_count,
|
|
|
|
ElfW(Addr) load_bias,
|
2014-02-27 14:18:00 +01:00
|
|
|
int fd) {
|
|
|
|
const ElfW(Phdr)* phdr = phdr_table;
|
|
|
|
const ElfW(Phdr)* phdr_limit = phdr + phdr_count;
|
|
|
|
ssize_t file_offset = 0;
|
|
|
|
|
|
|
|
for (phdr = phdr_table; phdr < phdr_limit; phdr++) {
|
|
|
|
if (phdr->p_type != PT_GNU_RELRO) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
ElfW(Addr) seg_page_start = PAGE_START(phdr->p_vaddr) + load_bias;
|
|
|
|
ElfW(Addr) seg_page_end = PAGE_END(phdr->p_vaddr + phdr->p_memsz) + load_bias;
|
|
|
|
ssize_t size = seg_page_end - seg_page_start;
|
|
|
|
|
|
|
|
ssize_t written = TEMP_FAILURE_RETRY(write(fd, reinterpret_cast<void*>(seg_page_start), size));
|
|
|
|
if (written != size) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
void* map = mmap(reinterpret_cast<void*>(seg_page_start), size, PROT_READ,
|
|
|
|
MAP_PRIVATE|MAP_FIXED, fd, file_offset);
|
|
|
|
if (map == MAP_FAILED) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
file_offset += size;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Where possible, replace the GNU relro segments with mappings of the given
|
|
|
|
* file descriptor. This can be performed after relocations to allow a file
|
|
|
|
* previously created by phdr_table_serialize_gnu_relro in another process to
|
|
|
|
* replace the dirty relocated pages, saving memory, if it was loaded at the
|
|
|
|
* same address. We have to compare the data before we map over it, since some
|
|
|
|
* parts of the relro segment may not be identical due to other libraries in
|
|
|
|
* the process being loaded at different addresses.
|
|
|
|
*
|
|
|
|
* Input:
|
|
|
|
* phdr_table -> program header table
|
|
|
|
* phdr_count -> number of entries in tables
|
|
|
|
* load_bias -> load bias
|
|
|
|
* fd -> readable file descriptor to use
|
|
|
|
* Return:
|
|
|
|
* 0 on error, -1 on failure (error code in errno).
|
|
|
|
*/
|
2015-03-31 03:43:38 +02:00
|
|
|
int phdr_table_map_gnu_relro(const ElfW(Phdr)* phdr_table,
|
|
|
|
size_t phdr_count,
|
|
|
|
ElfW(Addr) load_bias,
|
2014-02-27 14:18:00 +01:00
|
|
|
int fd) {
|
|
|
|
// Map the file at a temporary location so we can compare its contents.
|
|
|
|
struct stat file_stat;
|
|
|
|
if (TEMP_FAILURE_RETRY(fstat(fd, &file_stat)) != 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
off_t file_size = file_stat.st_size;
|
2014-08-29 21:02:36 +02:00
|
|
|
void* temp_mapping = nullptr;
|
2014-04-30 16:48:40 +02:00
|
|
|
if (file_size > 0) {
|
2014-08-29 21:02:36 +02:00
|
|
|
temp_mapping = mmap(nullptr, file_size, PROT_READ, MAP_PRIVATE, fd, 0);
|
2014-04-30 16:48:40 +02:00
|
|
|
if (temp_mapping == MAP_FAILED) {
|
|
|
|
return -1;
|
|
|
|
}
|
2014-02-27 14:18:00 +01:00
|
|
|
}
|
|
|
|
size_t file_offset = 0;
|
|
|
|
|
|
|
|
// Iterate over the relro segments and compare/remap the pages.
|
|
|
|
const ElfW(Phdr)* phdr = phdr_table;
|
|
|
|
const ElfW(Phdr)* phdr_limit = phdr + phdr_count;
|
|
|
|
|
|
|
|
for (phdr = phdr_table; phdr < phdr_limit; phdr++) {
|
|
|
|
if (phdr->p_type != PT_GNU_RELRO) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
ElfW(Addr) seg_page_start = PAGE_START(phdr->p_vaddr) + load_bias;
|
|
|
|
ElfW(Addr) seg_page_end = PAGE_END(phdr->p_vaddr + phdr->p_memsz) + load_bias;
|
|
|
|
|
|
|
|
char* file_base = static_cast<char*>(temp_mapping) + file_offset;
|
|
|
|
char* mem_base = reinterpret_cast<char*>(seg_page_start);
|
|
|
|
size_t match_offset = 0;
|
|
|
|
size_t size = seg_page_end - seg_page_start;
|
|
|
|
|
2014-04-30 16:48:40 +02:00
|
|
|
if (file_size - file_offset < size) {
|
|
|
|
// File is too short to compare to this segment. The contents are likely
|
|
|
|
// different as well (it's probably for a different library version) so
|
|
|
|
// just don't bother checking.
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2014-02-27 14:18:00 +01:00
|
|
|
while (match_offset < size) {
|
|
|
|
// Skip over dissimilar pages.
|
|
|
|
while (match_offset < size &&
|
|
|
|
memcmp(mem_base + match_offset, file_base + match_offset, PAGE_SIZE) != 0) {
|
|
|
|
match_offset += PAGE_SIZE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Count similar pages.
|
|
|
|
size_t mismatch_offset = match_offset;
|
|
|
|
while (mismatch_offset < size &&
|
|
|
|
memcmp(mem_base + mismatch_offset, file_base + mismatch_offset, PAGE_SIZE) == 0) {
|
|
|
|
mismatch_offset += PAGE_SIZE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Map over similar pages.
|
|
|
|
if (mismatch_offset > match_offset) {
|
|
|
|
void* map = mmap(mem_base + match_offset, mismatch_offset - match_offset,
|
|
|
|
PROT_READ, MAP_PRIVATE|MAP_FIXED, fd, match_offset);
|
|
|
|
if (map == MAP_FAILED) {
|
|
|
|
munmap(temp_mapping, file_size);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
match_offset = mismatch_offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add to the base file offset in case there are multiple relro segments.
|
|
|
|
file_offset += size;
|
|
|
|
}
|
|
|
|
munmap(temp_mapping, file_size);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-10-26 02:38:02 +02:00
|
|
|
#if defined(__arm__)
|
2012-06-19 11:21:29 +02:00
|
|
|
|
|
|
|
# ifndef PT_ARM_EXIDX
|
|
|
|
# define PT_ARM_EXIDX 0x70000001 /* .ARM.exidx segment */
|
|
|
|
# endif
|
|
|
|
|
|
|
|
/* Return the address and size of the .ARM.exidx section in memory,
|
|
|
|
* if present.
|
|
|
|
*
|
|
|
|
* Input:
|
|
|
|
* phdr_table -> program header table
|
2012-08-16 01:56:00 +02:00
|
|
|
* phdr_count -> number of entries in tables
|
2012-06-19 11:21:29 +02:00
|
|
|
* load_bias -> load bias
|
|
|
|
* Output:
|
2014-08-29 21:02:36 +02:00
|
|
|
* arm_exidx -> address of table in memory (null on failure).
|
2012-06-19 11:21:29 +02:00
|
|
|
* arm_exidx_count -> number of items in table (0 on failure).
|
|
|
|
* Return:
|
|
|
|
* 0 on error, -1 on failure (_no_ error code in errno)
|
|
|
|
*/
|
2014-02-11 02:46:57 +01:00
|
|
|
int phdr_table_get_arm_exidx(const ElfW(Phdr)* phdr_table, size_t phdr_count,
|
|
|
|
ElfW(Addr) load_bias,
|
2015-01-23 01:04:25 +01:00
|
|
|
ElfW(Addr)** arm_exidx, size_t* arm_exidx_count) {
|
2014-02-11 02:46:57 +01:00
|
|
|
const ElfW(Phdr)* phdr = phdr_table;
|
|
|
|
const ElfW(Phdr)* phdr_limit = phdr + phdr_count;
|
|
|
|
|
|
|
|
for (phdr = phdr_table; phdr < phdr_limit; phdr++) {
|
|
|
|
if (phdr->p_type != PT_ARM_EXIDX) {
|
|
|
|
continue;
|
2012-06-19 11:21:29 +02:00
|
|
|
}
|
2014-02-11 02:46:57 +01:00
|
|
|
|
|
|
|
*arm_exidx = reinterpret_cast<ElfW(Addr)*>(load_bias + phdr->p_vaddr);
|
2015-01-23 01:04:25 +01:00
|
|
|
*arm_exidx_count = phdr->p_memsz / 8;
|
2014-02-11 02:46:57 +01:00
|
|
|
return 0;
|
|
|
|
}
|
2014-08-29 21:02:36 +02:00
|
|
|
*arm_exidx = nullptr;
|
2014-02-11 02:46:57 +01:00
|
|
|
*arm_exidx_count = 0;
|
|
|
|
return -1;
|
2012-06-19 11:21:29 +02:00
|
|
|
}
|
2013-10-26 02:38:02 +02:00
|
|
|
#endif
|
2012-06-19 11:21:29 +02:00
|
|
|
|
linker: avoid clobbering the .dynamic section of shared libs
This patch removes the DT_NEEDED hack which stores pointers
to soinfo structs in the .dynamic section of the library
being loaded.
Instead, it caches the soinfo struct pointers on the stack
during relocation time. After relocation time, i.e. when
calling constructors and destructors of the shared library
and its dependencies, uncached access is used instead,
doing lookups using the string table entries pointed to by
the DT_NEEDED entries.
By removing this hack, it is no longer needed to undo the
PT_GNURELRO protection, i.e., all non-writable mappings
can remain non-writable during their entire lifespan.
Even though, strictly speaking, the algorithmic complexity
has increased somewhat, the real-world adverse effect
is negligible on the systems I have tested.
Change-Id: I2361502560b96b5878f7f94a8e8a215350d70d64
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@gmail.com>
2012-08-14 12:30:09 +02:00
|
|
|
/* Return the address and size of the ELF file's .dynamic section in memory,
|
2014-08-29 21:02:36 +02:00
|
|
|
* or null if missing.
|
2012-06-19 11:21:29 +02:00
|
|
|
*
|
|
|
|
* Input:
|
|
|
|
* phdr_table -> program header table
|
2012-08-16 01:56:00 +02:00
|
|
|
* phdr_count -> number of entries in tables
|
2012-06-19 11:21:29 +02:00
|
|
|
* load_bias -> load bias
|
linker: avoid clobbering the .dynamic section of shared libs
This patch removes the DT_NEEDED hack which stores pointers
to soinfo structs in the .dynamic section of the library
being loaded.
Instead, it caches the soinfo struct pointers on the stack
during relocation time. After relocation time, i.e. when
calling constructors and destructors of the shared library
and its dependencies, uncached access is used instead,
doing lookups using the string table entries pointed to by
the DT_NEEDED entries.
By removing this hack, it is no longer needed to undo the
PT_GNURELRO protection, i.e., all non-writable mappings
can remain non-writable during their entire lifespan.
Even though, strictly speaking, the algorithmic complexity
has increased somewhat, the real-world adverse effect
is negligible on the systems I have tested.
Change-Id: I2361502560b96b5878f7f94a8e8a215350d70d64
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@gmail.com>
2012-08-14 12:30:09 +02:00
|
|
|
* Output:
|
2014-08-29 21:02:36 +02:00
|
|
|
* dynamic -> address of table in memory (null on failure).
|
2014-09-16 09:22:10 +02:00
|
|
|
* dynamic_flags -> protection flags for section (unset on failure)
|
2012-06-19 11:21:29 +02:00
|
|
|
* Return:
|
linker: avoid clobbering the .dynamic section of shared libs
This patch removes the DT_NEEDED hack which stores pointers
to soinfo structs in the .dynamic section of the library
being loaded.
Instead, it caches the soinfo struct pointers on the stack
during relocation time. After relocation time, i.e. when
calling constructors and destructors of the shared library
and its dependencies, uncached access is used instead,
doing lookups using the string table entries pointed to by
the DT_NEEDED entries.
By removing this hack, it is no longer needed to undo the
PT_GNURELRO protection, i.e., all non-writable mappings
can remain non-writable during their entire lifespan.
Even though, strictly speaking, the algorithmic complexity
has increased somewhat, the real-world adverse effect
is negligible on the systems I have tested.
Change-Id: I2361502560b96b5878f7f94a8e8a215350d70d64
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@gmail.com>
2012-08-14 12:30:09 +02:00
|
|
|
* void
|
2012-06-19 11:21:29 +02:00
|
|
|
*/
|
2014-02-11 02:46:57 +01:00
|
|
|
void phdr_table_get_dynamic_section(const ElfW(Phdr)* phdr_table, size_t phdr_count,
|
2014-09-16 09:22:10 +02:00
|
|
|
ElfW(Addr) load_bias, ElfW(Dyn)** dynamic,
|
|
|
|
ElfW(Word)* dynamic_flags) {
|
2014-09-05 23:57:59 +02:00
|
|
|
*dynamic = nullptr;
|
2015-03-31 03:43:38 +02:00
|
|
|
for (size_t i = 0; i<phdr_count; ++i) {
|
|
|
|
const ElfW(Phdr)& phdr = phdr_table[i];
|
|
|
|
if (phdr.p_type == PT_DYNAMIC) {
|
|
|
|
*dynamic = reinterpret_cast<ElfW(Dyn)*>(load_bias + phdr.p_vaddr);
|
2014-09-16 09:22:10 +02:00
|
|
|
if (dynamic_flags) {
|
2015-03-31 03:43:38 +02:00
|
|
|
*dynamic_flags = phdr.p_flags;
|
2014-09-16 09:22:10 +02:00
|
|
|
}
|
2014-09-06 01:42:53 +02:00
|
|
|
return;
|
|
|
|
}
|
2014-02-11 02:46:57 +01:00
|
|
|
}
|
2012-06-19 11:21:29 +02:00
|
|
|
}
|
|
|
|
|
2015-07-11 02:54:01 +02:00
|
|
|
/* Return the program interpreter string, or nullptr if missing.
|
|
|
|
*
|
|
|
|
* Input:
|
|
|
|
* phdr_table -> program header table
|
|
|
|
* phdr_count -> number of entries in tables
|
|
|
|
* load_bias -> load bias
|
|
|
|
* Return:
|
|
|
|
* pointer to the program interpreter string.
|
|
|
|
*/
|
|
|
|
const char* phdr_table_get_interpreter_name(const ElfW(Phdr) * phdr_table, size_t phdr_count,
|
|
|
|
ElfW(Addr) load_bias) {
|
|
|
|
for (size_t i = 0; i<phdr_count; ++i) {
|
|
|
|
const ElfW(Phdr)& phdr = phdr_table[i];
|
|
|
|
if (phdr.p_type == PT_INTERP) {
|
|
|
|
return reinterpret_cast<const char*>(load_bias + phdr.p_vaddr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2014-10-15 23:32:19 +02:00
|
|
|
// Sets loaded_phdr_ to the address of the program header table as it appears
|
|
|
|
// in the loaded segments in memory. This is in contrast with phdr_table_,
|
|
|
|
// which is temporary and will be released before the library is relocated.
|
2013-03-06 03:47:58 +01:00
|
|
|
bool ElfReader::FindPhdr() {
|
2014-02-11 02:46:57 +01:00
|
|
|
const ElfW(Phdr)* phdr_limit = phdr_table_ + phdr_num_;
|
2012-06-19 11:21:29 +02:00
|
|
|
|
2013-03-06 03:47:58 +01:00
|
|
|
// If there is a PT_PHDR, use it directly.
|
2014-02-11 02:46:57 +01:00
|
|
|
for (const ElfW(Phdr)* phdr = phdr_table_; phdr < phdr_limit; ++phdr) {
|
2013-03-06 03:47:58 +01:00
|
|
|
if (phdr->p_type == PT_PHDR) {
|
|
|
|
return CheckPhdr(load_bias_ + phdr->p_vaddr);
|
2012-06-19 11:21:29 +02:00
|
|
|
}
|
2013-03-06 03:47:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise, check the first loadable segment. If its file offset
|
|
|
|
// is 0, it starts with the ELF header, and we can trivially find the
|
|
|
|
// loaded program header from it.
|
2014-02-11 02:46:57 +01:00
|
|
|
for (const ElfW(Phdr)* phdr = phdr_table_; phdr < phdr_limit; ++phdr) {
|
2013-03-06 03:47:58 +01:00
|
|
|
if (phdr->p_type == PT_LOAD) {
|
|
|
|
if (phdr->p_offset == 0) {
|
2014-02-11 02:46:57 +01:00
|
|
|
ElfW(Addr) elf_addr = load_bias_ + phdr->p_vaddr;
|
2014-02-12 01:59:37 +01:00
|
|
|
const ElfW(Ehdr)* ehdr = reinterpret_cast<const ElfW(Ehdr)*>(elf_addr);
|
2014-02-11 02:46:57 +01:00
|
|
|
ElfW(Addr) offset = ehdr->e_phoff;
|
2015-01-23 01:04:25 +01:00
|
|
|
return CheckPhdr(reinterpret_cast<ElfW(Addr)>(ehdr) + offset);
|
2013-03-06 03:47:58 +01:00
|
|
|
}
|
|
|
|
break;
|
2012-06-19 11:21:29 +02:00
|
|
|
}
|
2013-03-06 03:47:58 +01:00
|
|
|
}
|
2012-06-19 11:21:29 +02:00
|
|
|
|
2015-10-15 21:07:25 +02:00
|
|
|
DL_ERR("can't find loaded phdr for \"%s\"", name_.c_str());
|
2013-03-06 03:47:58 +01:00
|
|
|
return false;
|
|
|
|
}
|
2012-06-19 11:21:29 +02:00
|
|
|
|
2013-03-06 03:47:58 +01:00
|
|
|
// Ensures that our program header is actually within a loadable
|
|
|
|
// segment. This should help catch badly-formed ELF files that
|
|
|
|
// would cause the linker to crash later when trying to access it.
|
2014-02-11 02:46:57 +01:00
|
|
|
bool ElfReader::CheckPhdr(ElfW(Addr) loaded) {
|
|
|
|
const ElfW(Phdr)* phdr_limit = phdr_table_ + phdr_num_;
|
|
|
|
ElfW(Addr) loaded_end = loaded + (phdr_num_ * sizeof(ElfW(Phdr)));
|
2015-10-20 01:57:46 +02:00
|
|
|
for (const ElfW(Phdr)* phdr = phdr_table_; phdr < phdr_limit; ++phdr) {
|
2013-03-06 03:47:58 +01:00
|
|
|
if (phdr->p_type != PT_LOAD) {
|
|
|
|
continue;
|
|
|
|
}
|
2014-02-11 02:46:57 +01:00
|
|
|
ElfW(Addr) seg_start = phdr->p_vaddr + load_bias_;
|
|
|
|
ElfW(Addr) seg_end = phdr->p_filesz + seg_start;
|
2013-03-06 03:47:58 +01:00
|
|
|
if (seg_start <= loaded && loaded_end <= seg_end) {
|
2014-02-11 02:46:57 +01:00
|
|
|
loaded_phdr_ = reinterpret_cast<const ElfW(Phdr)*>(loaded);
|
2013-03-06 03:47:58 +01:00
|
|
|
return true;
|
2012-06-19 11:21:29 +02:00
|
|
|
}
|
2013-03-06 03:47:58 +01:00
|
|
|
}
|
2015-10-15 21:07:25 +02:00
|
|
|
DL_ERR("\"%s\" loaded phdr %p not in loadable segment",
|
|
|
|
name_.c_str(), reinterpret_cast<void*>(loaded));
|
2013-03-06 03:47:58 +01:00
|
|
|
return false;
|
2012-06-19 11:21:29 +02:00
|
|
|
}
|