[compiler-rt] [compiler-rt] Fixed Android 8.1 `getauxval(AT_PAGESZ)` crashes if called from `.preinit_array`. (#113427) (PR #116121)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Dec 6 07:16:12 PST 2024
================
@@ -1214,6 +1220,16 @@ uptr GetPageSize() {
CHECK_EQ(rv, 0);
return (uptr)pz;
# elif SANITIZER_USE_GETAUXVAL
+# if SANITIZER_ANDROID && __ANDROID_API__ < 35
+ // The 16 KB page size was introduced in Android 15 (API level 35), while
----------------
funsafe-ptr wrote:
I think `getpagesize` is pretty safe, It returns a constant value.
https://android.googlesource.com/platform/bionic/+/master/libc/platform/bionic/page.h#26
```fish
❯ lldb -- ./a.out
(lldb) target create "./a.out"
Current executable set to '/data/data/com.termux/files/home/a.out' (aarch64).
(lldb) b getpagesize
Breakpoint 1: no locations (pending).
WARNING: Unable to resolve breakpoint to any actual locations.
(lldb) run
Process 18654 launched: '/data/data/com.termux/files/home/a.out' (aarch64)
1 location added to breakpoint 1
Process 18654 stopped
* thread #1, name = 'a.out', stop reason = breakpoint 1.1
frame #0: 0x0000007fb7cc8458 libc.so`getpagesize
libc.so`getpagesize:
-> 0x7fb7cc8458 <+0>: orr w0, wzr, #0x1000
0x7fb7cc845c <+4>: ret
libc.so`getpgrp:
0x7fb7cc8460 <+0>: mov w0, wzr
0x7fb7cc8464 <+4>: b 0x7fb7cbf690 ; symbol stub for: getpgid
(lldb) dis
libc.so`getpagesize:
-> 0x7fb7cc8458 <+0>: orr w0, wzr, #0x1000
0x7fb7cc845c <+4>: ret
```
Even though it's deprecated, Android still recommends it.
https://source.android.com/docs/core/architecture/16kb-page-size/getting-page-size#use-code
https://github.com/llvm/llvm-project/pull/116121
More information about the llvm-commits
mailing list