-
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
std::net::TcpStream::connect() and .to_socket_addrs() segfault when address is "localhost:8080", build is static and /etc/hosts is empty on arch linux. #100711
Comments
I'm unable to reproduce the issue. I tried stable, beta, nightly, with/without I'm also seeing thanks to your gdb backtrace that the crash seems to be inside What is your current |
Hey, yea, i was unable to reproduce it on my debian based vps. on the system it does occur, systemd-libs version is 251.4-1 yes, i updated it yesterday. |
@Urgau oh wait, i did put part of my original issue in a comment block, the condition were missing. |
Okay, thanks for the info.
Well, yes but mostly no. Generally a static build include mostly/every library it is dynamically linking to but sometimes some libraries aren't linked trough at linked time but figured out at run-time and here that's the case for the domain resolution, because there are many different ways it could be done and including all of them isn't possible.
Thanks I was about to ask. I'm now able to reproduce the crash and I'm almost at 100% sure it's a glibc bug. Unfortunately I would however advise you to use |
@Urgau thanks ! i see, still i wouldn't have expected to segfault a rust program without using unsafe, even though it segfault from glibc, couldn't rust handle it gracefully in one way or another ? anyway, thanks for the tips ! |
I also tested on a debian-based system and couldn't reproduced the crash. The problem probably comes from the recent
The segfault is not in the rust code it's in the
|
Well thank you for all the details ! :) |
Reproduce on manjaro |
glibc advise against static linking. see also: rust-lang/rust#100711
It's probably worth reporting this upstream. The segfault here is a null pointer dereference on this line: https://github.com/systemd/systemd/blob/b45730389ba025489ec8d445bc91534fef515c28/src/basic/memory-util.c#L12 I suspect that the problem is that thread-locals aren't initialized. Whether that's caused by our unsupported linkage, or it's some other kind of bug in rustc or glibc/systemd is unclear. But I'm a C novice, so that's not saying much. |
I think it would make sense to print a warning when trying to link glibc statically. |
Both of those function will segfault when trying to resolve localhost on any port if the following condition are met :
rustc -C target-feature=+crt-static main.rs
I tried this code:
I expected to see this happen: the address is resolved
Instead, this happened: the program segfault
rustc --version --verbose
:uname -a
: (This is Arch-linux lattest, i could not reproduce the bug on another distro, but still, it shouldn't segfault)For the backtrace, RUST_BACKTRACE=1 did not work and gave the following output :
so here is a backtrace made with gdb (don't mind the gef plugin being installed
Backtrace
The text was updated successfully, but these errors were encountered: