Skip to content

Commit 918c681

Browse files
committed
First cut of decent aarch64 support.
1 parent f2005b7 commit 918c681

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+7769
-27
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ $ ./polyfill-glibc --target-glibc=2.17 /path/to/my-program
3737

3838
If running it _isn't_ this simple, then open a GitHub issue describing why not, and we'll try to improve things.
3939

40-
Note that at present, the `--target-glibc` operation of polyfill-glibc is only implemented for x86_64. If other architectures are of interest to you, open a GitHub issue so that we can gauge demand.
40+
Note that at present, the `--target-glibc` operation of polyfill-glibc is only implemented for x86_64 and aarch64. If other architectures are of interest to you, open a GitHub issue so that we can gauge demand.
4141

4242
If distributing shared libraries, polyfill-glibc can also be used to inspect dependencies (with the `--print-imports` and `--print-exports` operations), and to modify how shared libraries are loaded (with the `--set-rpath`, `--set-runpath`, and `--set-soname` operations). Consult [the documentation](docs/Command_line_options.md) for a full list of command line options.
4343

build.ninja

+49-3
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,19 @@ rule run_polyfill_glibc_txt
1616
rule run_polyfill_glibc
1717
command = ./polyfill-glibc --output $out $in $link_opt
1818

19-
build polyfill-glibc: link build/main.o build/renamer.o build/polyfiller.o build/x86_64/polyfiller.o build/erw.o build/v2f.o build/tokenise.o build/sht.o build/uuht.o build/arena.o build/reloc_kind.o build/common.o
19+
build polyfill-glibc: link build/main.o build/renamer.o build/polyfiller.o build/aarch64/polyfiller.o build/x86_64/polyfiller.o build/print_eh_frame.o build/erw.o build/v2f.o build/tokenise.o build/sht.o build/uuht.o build/arena.o build/reloc_kind.o build/common.o
2020
default polyfill-glibc
21+
build build/aarch64/polyfills.so: create_polyfill_so polyfill-glibc
22+
arch = aarch64
23+
target_glibc = 2.17
24+
build build/aarch64/polyfiller.o: cc src/aarch64/polyfiller.c | build/aarch64/assembled_gen.h
25+
build build/aarch64/assembled_gen.h: run build/aarch64/assembler src/aarch64/_init.s src/aarch64/atexit.s src/aarch64/c11_thread.s src/aarch64/fatal.s src/aarch64/glibc_2_18.s src/aarch64/glibc_2_25.s src/aarch64/glibc_2_26.s src/aarch64/glibc_2_30.s src/aarch64/glibc_2_31.s src/aarch64/glibc_2_34.s src/aarch64/glibc_2_36.s src/aarch64/stdbit.s src/aarch64/syscalls.s src/aarch64/syscalls_ac.s
26+
build build/aarch64/assembler: link build/aarch64/assembler.o build/tokenise.o build/sht.o build/uuht.o build/common.o
27+
build build/aarch64/assembler.o: cc src/aarch64/assembler.c | build/aarch64/assembler_gen.h
28+
build build/aarch64/assembler_gen.h: run build/aarch64/build_assembler src/aarch64/insn_encoding.txt
29+
build build/aarch64/build_assembler: link build/aarch64/build_assembler.o build/tokenise.o build/sht.o build/uuht.o
30+
build build/aarch64/build_assembler.o: cc src/aarch64/build_assembler.c
31+
build build/aarch64/renames.h: run build/parse_renames src/aarch64/renames.txt
2132
build build/x86_64/polyfills.so: create_polyfill_so polyfill-glibc
2233
arch = x86_64
2334
target_glibc = 2.3.2
@@ -39,9 +50,10 @@ build build/x86_64/set_relative_interp: link build/x86_64/set_relative_interp.o
3950
build build/x86_64/set_relative_interp.o: cc src/x86_64/set_relative_interp.c | build/x86_64/relative_interp_payload.h
4051
build build/polyfiller.o: cc src/polyfiller.c
4152
build build/main.o: cc src/main.c
42-
build build/renamer.o: cc src/renamer.c | build/x86_64/renames.h
53+
build build/renamer.o: cc src/renamer.c | build/aarch64/renames.h build/x86_64/renames.h
4354
build build/parse_renames: link build/parse_renames.o build/tokenise.o build/sht.o build/common.o
4455
build build/parse_renames.o: cc src/parse_renames.c
56+
build build/print_eh_frame.o: cc src/print_eh_frame.c
4557
build build/erw.o: cc src/erw.c
4658
build build/v2f.o: cc src/v2f.c
4759
build build/tokenise.o: cc src/tokenise.c
@@ -51,6 +63,35 @@ build build/arena.o: cc src/arena.c
5163
build build/reloc_kind.o: cc src/reloc_kind.c
5264
build build/common.o: cc src/common.c
5365

66+
build build/aarch64/test/arc4random.txt: run build/aarch64/test/arc4random build/aarch64/polyfills.so
67+
build build/aarch64/test/arc4random: link build/aarch64/test/arc4random.o build/test/syscall_filter.o
68+
link_opt = -ldl
69+
build build/aarch64/test/arc4random.o: cc test/aarch64/arc4random.c
70+
71+
build build/aarch64/test/memfd_pread_pwrite.txt: run build/aarch64/test/memfd_pread_pwrite build/aarch64/polyfills.so
72+
build build/aarch64/test/memfd_pread_pwrite: link build/aarch64/test/memfd_pread_pwrite.o build/test/syscall_filter.o
73+
link_opt = -ldl
74+
build build/aarch64/test/memfd_pread_pwrite.o: cc test/aarch64/memfd_pread_pwrite.c
75+
76+
build build/aarch64/test/nan.txt: run build/aarch64/test/nan build/aarch64/polyfills.so
77+
build build/aarch64/test/nan: link build/aarch64/test/nan.o
78+
link_opt = -ldl
79+
build build/aarch64/test/nan.o: cc test/aarch64/nan.c
80+
81+
build build/aarch64/test/stdbit.txt: run build/aarch64/test/stdbit build/aarch64/polyfills.so
82+
build build/aarch64/test/stdbit: link build/aarch64/test/stdbit.o
83+
link_opt = -ldl
84+
build build/aarch64/test/stdbit.o: cc test/aarch64/stdbit.c
85+
86+
build build/aarch64/test/totalorder.txt: run build/aarch64/test/totalorder build/aarch64/polyfills.so
87+
build build/aarch64/test/totalorder: link build/aarch64/test/totalorder.o
88+
link_opt = -ldl
89+
build build/aarch64/test/totalorder.o: cc test/aarch64/totalorder.c
90+
91+
build build/aarch64/test/twalk_r.txt: run build/x86_64/test/twalk_r build/aarch64/polyfills.so
92+
93+
build test/aarch64: phony build/aarch64/test/arc4random.txt build/aarch64/test/memfd_pread_pwrite.txt build/aarch64/test/nan.txt build/aarch64/test/stdbit.txt build/aarch64/test/totalorder.txt build/aarch64/test/twalk_r.txt
94+
5495
build build/x86_64/test/arc4random.txt: run build/x86_64/test/arc4random build/x86_64/polyfills.so
5596
build build/x86_64/test/arc4random: link build/x86_64/test/arc4random.o build/test/syscall_filter.o
5697
link_opt = -ldl
@@ -61,6 +102,11 @@ build build/x86_64/test/glibc_2_38: link build/x86_64/test/glibc_2_38.o
61102
link_opt = -ldl
62103
build build/x86_64/test/glibc_2_38.o: cc test/x86_64/glibc_2_38.c
63104

105+
build build/x86_64/test/memfd_pread_pwrite.txt: run build/x86_64/test/memfd_pread_pwrite build/x86_64/polyfills.so
106+
build build/x86_64/test/memfd_pread_pwrite: link build/x86_64/test/memfd_pread_pwrite.o build/test/syscall_filter.o
107+
link_opt = -ldl
108+
build build/x86_64/test/memfd_pread_pwrite.o: cc test/x86_64/memfd_pread_pwrite.c
109+
64110
build build/x86_64/test/nan.txt: run build/x86_64/test/nan build/x86_64/polyfills.so
65111
build build/x86_64/test/nan: link build/x86_64/test/nan.o
66112
link_opt = -ldl
@@ -86,7 +132,7 @@ build build/x86_64/test/twalk_r: link build/x86_64/test/twalk_r.o
86132
link_opt = -ldl
87133
build build/x86_64/test/twalk_r.o: cc test/x86_64/twalk_r.c
88134

89-
build test/x86_64: phony build/x86_64/test/arc4random.txt build/x86_64/test/glibc_2_38.txt build/x86_64/test/qsort_r.txt build/x86_64/test/stdbit.txt build/x86_64/test/totalorder.txt build/x86_64/test/twalk_r.txt
135+
build test/x86_64: phony build/x86_64/test/arc4random.txt build/x86_64/test/glibc_2_38.txt build/x86_64/test/qsort_r.txt build/x86_64/test/memfd_pread_pwrite.txt build/x86_64/test/nan.txt build/x86_64/test/stdbit.txt build/x86_64/test/totalorder.txt build/x86_64/test/twalk_r.txt
90136

91137
build build/test/getauxval.txt: run build/test/getauxval_pf build/test/getauxval_imp.txt build/test/getauxval_imp_pf.txt
92138
build build/test/getauxval_imp_pf.txt: run_polyfill_glibc_txt build/test/getauxval_pf | polyfill-glibc

docs/Command_line_options.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Flags that change the effect of other actions: `--output`, `--dry`, `--page-size
2020

2121
Takes as an argument a glibc version, for example `--target-glibc=2.17`. The action identifies all dependencies that the file has on glibc functions and variables newer than the specified version, and employs [various strategies](How_does_polyfill_glibc_work.md) to remove those dependencies.
2222

23-
Note that `--target-glibc` is currently only implemented for x86_64 files. If other architectures are of interest to you, open a GitHub issue so that we can gauge interest.
23+
Note that `--target-glibc` is currently only implemented for x86_64 files and aarch64 files. If other architectures are of interest to you, open a GitHub issue so that we can gauge interest.
2424

2525
If there are any strong dependencies that `--target-glibc` cannot remove, then it'll fail and report the problematic dependencies, for example:
2626

@@ -174,7 +174,7 @@ The `--polyfill-cfi` flag controls whether CFI is provided for statically linked
174174

175175
In some cases, `--target-glibc` and `--rename-dynamic-symbols` can cause additional executable code to be statically linked into the file. For some people, this can be undesirable, and so `--create-polyfill-so` and `--use-polyfill-so` are provided instead, with the effect of putting the additional executable code in a separate shared object and then dynamically linking against that shared object.
176176

177-
If the `--create-polyfill-so` flag is specified, then the behaviour of `--rename-dynamic-symbols` is modified: whenever `polyfill::NAME` is given as the new symbol name (regardless of whether the old symbol name is present), then `NAME@POLYFILL` is added as an _export_ to the file, with the statically linked code as the implementation of that export. The behaviour of `--target-glibc` is similarly modified: any statically linked code that _could_ be used to remove a problematic dependency (regardless of whether the problem is present) is added an _export_ to the file. The `--create-polyfill-so` flag is usually used in combination with the special input filename `empty:x86_64`, which denotes an empty ELF file. Accordingly, an invocation like the following can be used to create a shared object called `polyfills.so` with all the code required to polyfill back to glibc 2.3.2:
177+
If the `--create-polyfill-so` flag is specified, then the behaviour of `--rename-dynamic-symbols` is modified: whenever `polyfill::NAME` is given as the new symbol name (regardless of whether the old symbol name is present), then `NAME@POLYFILL` is added as an _export_ to the file, with the statically linked code as the implementation of that export. The behaviour of `--target-glibc` is similarly modified: any statically linked code that _could_ be used to remove a problematic dependency (regardless of whether the problem is present) is added an _export_ to the file. The `--create-polyfill-so` flag is usually used in combination with the special input filename `empty:x86_64` or `empty:aarch64`, which denotes an empty ELF file. Accordingly, an invocation like the following can be used to create a shared object called `polyfills.so` with all the code required to polyfill back to glibc 2.3.2:
178178
```
179179
polyfill-glibc empty:x86_64 --add-hash --add-gnu-hash --create-polyfill-so --target-glibc=2.3.2 --output polyfills.so
180180
```

docs/Limitations.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Limitations of polyfill-glibc
22

3-
Currently, the `--target-glibc` operation of polyfill-glibc is only implemented for x86_64. If other architectures are of interest to you, open a GitHub issue so that we can gauge interest. Note that lower level operations, for example `--set-rpath`, are implemented for all architectures.
3+
Currently, the `--target-glibc` operation of polyfill-glibc is only implemented for x86_64 and aarch64. If other architectures are of interest to you, open a GitHub issue so that we can gauge interest. Note that lower level operations, for example `--set-rpath`, are implemented for all architectures.
44

55
Polyfills have not yet been written for every glibc function. If you're hitting such a case, open a GitHub issue so that we can gauge interest.
66

0 commit comments

Comments
 (0)