mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-21 01:54:51 +08:00
206e22f019
This produces a PIE binary with a variety of p_align requirements, suitable for verifying that the load address meets that alignment requirement. Signed-off-by: Chris Kennelly <ckennelly@google.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Cc: Shuah Khan <shuah@kernel.org> Cc: Alexander Viro <viro@zeniv.linux.org.uk> Cc: Alexey Dobriyan <adobriyan@gmail.com> Cc: David Rientjes <rientjes@google.com> Cc: Fangrui Song <maskray@google.com> Cc: Hugh Dickens <hughd@google.com> Cc: Ian Rogers <irogers@google.com> Cc: "Kirill A. Shutemov" <kirill.shutemov@linux.intel.com> Cc: Mike Kravetz <mike.kravetz@oracle.com> Cc: Nick Desaulniers <ndesaulniers@google.com> Cc: Sandeep Patil <sspatil@google.com> Cc: Song Liu <songliubraving@fb.com> Cc: Suren Baghdasaryan <surenb@google.com> Link: https://lkml.kernel.org/r/20200820170541.1132271-3-ckennelly@google.com Link: https://lkml.kernel.org/r/20200821233848.3904680-3-ckennelly@google.com Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
69 lines
1.5 KiB
C
69 lines
1.5 KiB
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
#ifndef _GNU_SOURCE
|
|
#define _GNU_SOURCE
|
|
#endif
|
|
#include <link.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
struct Statistics {
|
|
unsigned long long load_address;
|
|
unsigned long long alignment;
|
|
};
|
|
|
|
int ExtractStatistics(struct dl_phdr_info *info, size_t size, void *data)
|
|
{
|
|
struct Statistics *stats = (struct Statistics *) data;
|
|
int i;
|
|
|
|
if (info->dlpi_name != NULL && info->dlpi_name[0] != '\0') {
|
|
// Ignore headers from other than the executable.
|
|
return 2;
|
|
}
|
|
|
|
stats->load_address = (unsigned long long) info->dlpi_addr;
|
|
stats->alignment = 0;
|
|
|
|
for (i = 0; i < info->dlpi_phnum; i++) {
|
|
if (info->dlpi_phdr[i].p_type != PT_LOAD)
|
|
continue;
|
|
|
|
if (info->dlpi_phdr[i].p_align > stats->alignment)
|
|
stats->alignment = info->dlpi_phdr[i].p_align;
|
|
}
|
|
|
|
return 1; // Terminate dl_iterate_phdr.
|
|
}
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
struct Statistics extracted;
|
|
unsigned long long misalign;
|
|
int ret;
|
|
|
|
ret = dl_iterate_phdr(ExtractStatistics, &extracted);
|
|
if (ret != 1) {
|
|
fprintf(stderr, "FAILED\n");
|
|
return 1;
|
|
}
|
|
|
|
if (extracted.alignment == 0) {
|
|
fprintf(stderr, "No alignment found\n");
|
|
return 1;
|
|
} else if (extracted.alignment & (extracted.alignment - 1)) {
|
|
fprintf(stderr, "Alignment is not a power of 2\n");
|
|
return 1;
|
|
}
|
|
|
|
misalign = extracted.load_address & (extracted.alignment - 1);
|
|
if (misalign) {
|
|
printf("alignment = %llu, load_address = %llu\n",
|
|
extracted.alignment, extracted.load_address);
|
|
fprintf(stderr, "FAILED\n");
|
|
return 1;
|
|
}
|
|
|
|
fprintf(stderr, "PASS\n");
|
|
return 0;
|
|
}
|