-
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
Reload nameserver information on lookup failure #41582
Merged
bors
merged 1 commit into
rust-lang:master
from
jonhoo:reread-nameservers-on-lookup-fail
May 6, 2017
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Submodule liblibc
updated
25 files
+2 −2 | Cargo.lock | |
+1 −1 | Cargo.toml | |
+19 −0 | README.md | |
+1 −1 | appveyor.yml | |
+0 −2 | ci/run-docker.sh | |
+16 −0 | libc-test/build.rs | |
+2 −0 | src/unix/bsd/mod.rs | |
+17 −0 | src/unix/mod.rs | |
+1 −1 | src/unix/notbsd/android/b64/mod.rs | |
+12 −0 | src/unix/notbsd/android/mod.rs | |
+1 −1 | src/unix/notbsd/linux/mips/mips32.rs | |
+1 −1 | src/unix/notbsd/linux/mips/mips64.rs | |
+1 −0 | src/unix/notbsd/linux/mips/mod.rs | |
+37 −0 | src/unix/notbsd/linux/mod.rs | |
+2 −1 | src/unix/notbsd/linux/musl/mod.rs | |
+1 −0 | src/unix/notbsd/linux/other/b32/arm.rs | |
+1 −0 | src/unix/notbsd/linux/other/b32/powerpc.rs | |
+1 −0 | src/unix/notbsd/linux/other/b32/x86.rs | |
+1 −0 | src/unix/notbsd/linux/other/b64/aarch64.rs | |
+1 −0 | src/unix/notbsd/linux/other/b64/powerpc64.rs | |
+1 −0 | src/unix/notbsd/linux/other/b64/sparc64.rs | |
+1 −0 | src/unix/notbsd/linux/other/b64/x86_64.rs | |
+1 −1 | src/unix/notbsd/linux/other/mod.rs | |
+2 −1 | src/unix/notbsd/linux/s390x.rs | |
+113 −45 | src/unix/solaris/mod.rs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Doesn't this still result in surprising behaviour if e.g. the contents of /etc/resolv.conf change without the old resolver becoming unusable?
For instance, if I change my DNS resolver without making the old resolver unreachable, I'll never hit this error and any running rust applications will continue to use the old resolver...indefinitely.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes. Though if the resolution happens successfully, what is the problem? It's also quite hard to get around that particular case. We could always call
res_init
, but that seems a little wasteful. The real solution to this is to fix libc (most libcs do not have this problem — glibc is the major exception). Applications that want to be robust against this could always calllibc::res_init
directly though of course.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Playing devil's advocate, "successful" doesn't imply "correct".
How wasteful? Perhaps this is worth measuring.
What do you mean? What would "fixing" libc look like? What do other libcs do in contrast to glibc?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
True, though that sounds like a very weird setup indeed. One in which you can connect using the resolution information from the old server, but you need to instead connect to the server provided by a new resolver?
I did some benchmarks above (#41582 (comment)), and it's not terrible (especially because it doesn't require a syscall), but if we can avoid doing something...
No other libcs have this issue. Some of them don't cache
/etc/resolv.conf
, some integrate with NSS or similar services, which know when the cache should be flushed. I haven't looked into it too carefully. It is unclear what the "right" solution is given that glibc wants to be both fast (i.e., don't do a file read on every connect), and not rely on other services (like NSS).