-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
backtraces broken on the Android bot #17520
Comments
I've locally enabled PIE for android and tested this with the latest NDK (r10d) generated for android-21 and an android emulator running the latest API (android-22), and it still fails with:
|
This is OK to do given: - PIE is supported on Android starting with API 16. - The bots are running API 18. - API < 16 now has a 12.5% market share[0] as of 2015-04-29. Unfortunately, this breaks backtrace support. See rust-lang#17520. Closes rust-lang#17437. [0] https://developer.android.com/about/dashboards/index.html
Triage: we're in the process of moving all of the bots to Travis/AppVeyor, so I'm not sure if this 1. is still true 2. will persist there. |
So after a bit of investigation, I found that android internally uses libunwind to handle its unwinding. It might be a good idea to try having rust use that ? If it's a good idea, I might start implementing it. |
It's an option. We only used libunwind for a handful of releases. We've started writing our own unwinder since none of the off the shelf options were reliable or performant enough for our needs. That's getting close to ready, and we will be including it in the NDK. |
@DanAlbert Oh, OK. So, if I make FFI bindings to |
Either statically linked or included in the APK. The former is probably simpler. |
Right. Thanks for the insights :D. I'll try figuring out how libunwinderstack works and hopefully draft a PR up over the next few days. EDIT: Just found out libunwinderstack is written in CPP. Hopefully that won't hinder me too much, but it is going to be a bit more painful that I had anticipated at first. |
So after some unfruitful attempts at making bindgen and libunwinderstack work together (I couldn't get bindgen to generate constructors for unwinderstack::Maps), I decided to investigate other options. In doing so, I found out that backtrace-rs has no trouble getting a correct stacktrace. Furthermore, I figured that rust's tracing part seemed correct (when using I'm going to be looking into the differences between backtrace-rs and the built-in backtracing of rust. I already have a few ideas. |
I've been investigating this over the last few days and I think the issue is a missing |
Found this in the NDK which might be the issue:
|
You're missing a small amount of scope there: that's wrapped in an
|
Thanks. I was trying to work out exactly where that function came from. I was ignoring non-arm androids, as they are not that common atm. Is there anything we need to do to test and then consume this fix? Or is just a case of waiting and re-enabling the tests once the change propagates to rust? |
idk about rust developers, but most of the time Android developers will use x86 emulators since they are much faster than an arm emulator.
Should be automatic once you get the update. Do you periodically update from upstream, or do you track AOSP's copy (a fair number of projects do that for Android libraries) or something? If you're tracking AOSP lmk and I'll get it updated. |
We have our own fork of AOSP that we need to bring back towards the official. We would need to bring any change into our own fork. |
Okay, I'll try to find some time this week to get AOSP's unwinder updated so you at least get this fix when you sync up with upstream. |
Two weeks late, but better than never: https://android-review.googlesource.com/c/platform/external/libunwind_llvm/+/567913 |
Gets us https://reviews.llvm.org/D39468 which lets us update the NDK's version of the unwinder. Test: make native Test: external/libcxx/run_tests.py # no regressions Bug: rust-lang/rust#17520 Change-Id: I1284fb151c00f1ae4350c73ad9033246720d5190 Signed-off-by: mydongistiny <[email protected]>
Gets us https://reviews.llvm.org/D39468 which lets us update the NDK's version of the unwinder. Test: make native Test: external/libcxx/run_tests.py # no regressions Bug: rust-lang/rust#17520 Change-Id: I1284fb151c00f1ae4350c73ad9033246720d5190
Gets us https://reviews.llvm.org/D39468 which lets us update the NDK's version of the unwinder. Test: make native Test: external/libcxx/run_tests.py # no regressions Bug: rust-lang/rust#17520 Change-Id: I1284fb151c00f1ae4350c73ad9033246720d5190 Signed-off-by: mydongistiny <[email protected]>
Gets us https://reviews.llvm.org/D39468 which lets us update the NDK's version of the unwinder. Test: make native Test: external/libcxx/run_tests.py # no regressions Bug: rust-lang/rust#17520 Change-Id: I1284fb151c00f1ae4350c73ad9033246720d5190 Signed-off-by: mydongistiny <[email protected]> Signed-off-by: Eliminater74 <[email protected]>
Is any progress here? |
I Bumped into this issue myself today. I built the binary with this command:
Rust compiler version:
This is what the backtrace looks like:
|
Latest output inside the emulator. This seems somewhat promising, as at least some symbols are showing up. It's not clear to me why we don't have them for the test case but do for std.
|
I'm encountering this issue on an Android 11 device... Any luck resolving it? I only get |
backtrace-rs doesn't work either. unwind at least produces a list of addresses, but crashes with a segfault when it hits a bad address. |
Hi, after many years, is there any solution? This is a critical issue, because stack traces are quite important to debug issues in production environments! I need to at least know a list of addresses (and do not segfault even if hit bad addr!), such that I can copy these addresses and symbolize on my computer. |
@s1341 Have you solved it? Thanks! |
I think backtraces are working for me... using backtrace-rs. |
@s1341 Hi do you use it in production environment, such as |
I use in release. What issues are you facing? Can you be more specific about when you have problems? |
@s1341 Hi thanks for your reply! My issue: rust-lang/backtrace-rs#445 |
internal: Cleanup proc-macro-srv some more
PIE is now required by Android (#17437) but it breaks backtrace support on the Android bot. It may just need to be updated to the current NDK / Android versions.
The text was updated successfully, but these errors were encountered: