use of com.facebook.buck.cxx.elf.ElfSection in project buck by facebook.
the class ElfSymbolTableScrubberStepTest method test.
@Test
public void test() throws IOException {
ProjectWorkspace workspace = TestDataHelper.createProjectWorkspaceForScenario(this, "elf_shared_lib", tmp);
workspace.setUp();
ElfSymbolTableScrubberStep step = ElfSymbolTableScrubberStep.of(new ProjectFilesystem(tmp.getRoot()), tmp.getRoot().getFileSystem().getPath("libfoo.so"), ".dynsym", /* allowMissing */
false);
step.execute(TestExecutionContext.newInstance());
// Verify that the symbol table values and sizes are zero.
try (FileChannel channel = FileChannel.open(step.getFilesystem().resolve(step.getPath()), StandardOpenOption.READ)) {
MappedByteBuffer buffer = channel.map(READ_ONLY, 0, channel.size());
Elf elf = new Elf(buffer);
ElfSection section = elf.getSectionByName(SECTION).orElseThrow(AssertionError::new).getSecond();
ElfSymbolTable table = ElfSymbolTable.parse(elf.header.ei_class, section.body);
Set<Long> addresses = new HashSet<>();
table.entries.forEach(entry -> {
assertTrue(entry.st_value == 0 || addresses.add((entry.st_value)));
assertThat(entry.st_shndx, Matchers.equalTo(entry.st_shndx != 0 ? ElfSymbolTableScrubberStep.STABLE_SECTION : entry.st_shndx));
assertThat(entry.st_size, Matchers.equalTo(entry.st_info.st_type == ElfSymbolTable.Entry.Info.Type.STT_FUNC ? 0 : entry.st_size));
});
}
}
use of com.facebook.buck.cxx.elf.ElfSection in project buck by facebook.
the class ElfExtractSectionsStepTest method test.
@Test
public void test() throws IOException, InterruptedException {
// Only run if `objcopy` is available on the system.
Path objcopy = assumeObjcopy();
// Run the step.
ProjectWorkspace workspace = TestDataHelper.createProjectWorkspaceForScenario(this, "elf_shared_lib", tmp);
workspace.setUp();
ElfExtractSectionsStep step = ElfExtractSectionsStep.of(new ProjectFilesystem(tmp.getRoot()), ImmutableList.of(objcopy.toString()), tmp.getRoot().getFileSystem().getPath("libfoo.so"), tmp.getRoot().getFileSystem().getPath("libfoo.extracted.so"), ImmutableSet.of(".dynamic"));
step.execute(TestExecutionContext.newInstance());
// Verify that the program table section is empty.
try (FileChannel channel = FileChannel.open(step.getFilesystem().resolve(step.getOutput()), StandardOpenOption.READ)) {
MappedByteBuffer buffer = channel.map(READ_ONLY, 0, channel.size());
Elf elf = new Elf(buffer);
List<String> sections = new ArrayList<>();
for (int index = 0; index < elf.getNumberOfSections(); index++) {
ElfSection section = elf.getSectionByIndex(index);
if (section.header.sh_flags != 0) {
String name = elf.getSectionName(section.header);
sections.add(name);
}
}
assertThat(sections, Matchers.equalTo(ImmutableList.of(".dynamic")));
}
}
Aggregations