-
Notifications
You must be signed in to change notification settings - Fork 4.7k
FilePoll: support readable+writable on one poll (fixes c-ares TCP DNS assertion) #29955
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
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
bce472d
FilePoll: support readable+writable on one poll; sync dns.zig c-ares …
Jarred-Sumner 30af659
FilePoll: fix macOS kevent error-check ordering; cut dns.zig resync s…
robobun d99f287
test: force c-ares onto TCP via local TC=1 UDP server + TCP responder
robobun a62dc4d
[autofix.ci] apply automated fixes
autofix-ci[bot] a623339
kevent: test EV_ERROR bit (xnu ORs it into action flags); fix uv_even…
robobun 5eb10fc
Merge remote-tracking branch 'origin/main' into jarred/filepoll-bidir…
robobun 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
This file contains hidden or 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 hidden or 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| // c-ares opens a TCP socket when the UDP response has TC=1. At | ||
| // ares_open_connection() it reports (readable=1, writable=1) for that fd via | ||
| // the sock_state_cb so it learns when the nonblocking connect() completes. | ||
| // onDNSSocketState registers both directions on one FilePoll; before the fix, | ||
| // unregisterWithFd asserted !(poll_readable && poll_writable) and crashed the | ||
| // debug build, and on epoll the second register()'s CTL_MOD silently dropped | ||
| // the first direction's mask so the response was never read. | ||
| // | ||
| // The server and resolver run together in a subprocess: the assertion aborts | ||
| // the whole process, and the busy-loop on EPOLLOUT (pre-fix) would otherwise | ||
| // starve the test runner. | ||
| import { expect, test } from "bun:test"; | ||
| import { bunEnv, bunExe, isWindows } from "harness"; | ||
| import { join } from "node:path"; | ||
|
|
||
| test.skipIf(isWindows)("c-ares TCP DNS fd registers readable+writable on one FilePoll without asserting", async () => { | ||
| await using proc = Bun.spawn({ | ||
| cmd: [bunExe(), join(import.meta.dir, "dns-tcp-bidirectional-poll-fixture.ts")], | ||
| env: bunEnv, | ||
| stdout: "pipe", | ||
| stderr: "pipe", | ||
| }); | ||
|
|
||
| const [stdout, stderr, exitCode] = await Promise.all([proc.stdout.text(), proc.stderr.text(), proc.exited]); | ||
|
|
||
| expect(stderr.trim()).toBe(""); | ||
| expect(stdout.trim()).toBe('[["hello"]]'); | ||
| expect(exitCode).toBe(0); | ||
| }); |
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.