-
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
Add workaround for archive reading bug in LLDB. #14672
Add workaround for archive reading bug in LLDB. #14672
Conversation
LLDB contains a bug that makes it crash if an archive it reads contains a file the name of which is exactly 16 bytes long. This bug recently has made it impossible to debug Rust applications with LLDB because some standard libraries triggered it indirectly: For rlibs, rustc includes the LLVM bytecode in the archive, giving it the extension ".bc.deflate". For liballoc (for example) this results in the 16 character filename "alloc.bc.deflate", which is bad. This commit replaces the ".bc.deflate" suffix with ".bytecode.deflate" which itself is already longer than 16 bytes, thus making sure that the bug won't be run into anymore. The bug could still be run into with 14 character filenames because then the .o files will trigger it. However, this is much more rare and working around it would introduce more complexity than necessary at the moment. It can always be done later on, if the need arises. Fixes rust-lang#14356.
Does LLDB die with any file exactly 16 characters? Whenever we suck in a native static library we prefix their object files with |
Yes, I'm pretty sure that could also trigger the crash. The offending code can be found here: |
It looks like it is indeed a problem: https://gist.github.com/alexcrichton/99dc5ed5400268ab0ed2. When I try to set a breakpoint LLDB dies. The problem is that whenever we suck in object files from library Perhaps we could just unconditionally rename files if they're 16 letters long? Something along the lines of:
I think we're only reading our own archives, so that should work for now. |
Ah, and a transcript of my LLDB crash:
|
Yes, that's the one. If we know all points where files are added and read from archives then just adding some prefix if needed is certainly a good idea. Fixing the If we go down the smart-prefixing approach, which I prefer if we can make it work reliably, then it would probably be a good idea to make the prefix something that points to the problem it solves, like |
Hm, I think I prefer the more principled strategy of not just throwing prefixes everywhere. I like your strategy of |
That means checking if something would end up with a 16-byte filename and only then prepending |
Sounds good to me, yeah. Once an object file has been included, we never look at it again (except to perhaps shuffle it into a staticlib), so we can name it whatever we want. |
OK, I'll look into it and update this PR. However, I can't say if I'll have time for this before Wednesday, next week. If you decided this was a small enough fix to do yourself before that, I certainly wouldn't object. |
Ok, thanks! I'll take over and push an update for the included object files as well. |
Continued in #14683 |
Thanks for taking over |
minor: fix typos
LLDB contains a bug that makes it crash if an archive it reads contains a file the name of which is exactly 16 bytes long. This bug recently has made it impossible to debug Rust applications with LLDB because some standard libraries triggered it indirectly:
For rlibs, rustc includes the LLVM bytecode in the archive, giving it the extension ".bc.deflate". For liballoc (for example) this results in the 16 character filename "alloc.bc.deflate", which is bad.
This commit replaces the ".bc.deflate" suffix with ".bytecode.deflate" which itself is already longer than 16 bytes, thus making sure that the bug won't be run into anymore.
The bug could still be run into with 14 character filenames because then the .o files will trigger it. However, this is much more rare and working around it would introduce more complexity than necessary at the moment. It can always be done later on, if the need arises.
Fixes #14356.
Q: Should we try to stay backwards compatible by looking for xxx.bc.deflate if xxx.bytecode.deflate is not found?