-
Notifications
You must be signed in to change notification settings - Fork 142
sdk/js: reach peers through a router the control plane names by /dnsaddr #513
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
3 commits
Select commit
Hold shift + click to select a range
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -202,4 +202,3 @@ func TestResponseRecorder(t *testing.T) { | |
| t.Fatalf("rec.Header(Content-Length) = %q, want 12", got) | ||
| } | ||
| } | ||
|
|
||
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
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
Oops, something went wrong.
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.
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.
5. API surfaces and secrets / General Correctness & Security
The empty
Rewritefunction does not automatically stripForwardedorX-Forwarded-*headers becauseProxyRequest.SetURLis not called here. Consequently, any client-suppliedX-Forwarded-*headers will be forwarded to the backend LLM/inference service since the explicitDelcalls were removed fromRoundTrip.Additionally, the previous
Directorimplementation blanked a missingUser-Agentto prevent Go's defaultUser-Agent(e.g.,Go-http-client/1.1) from being appended. This blanking behavior is now lost.Please update the
Rewritefunction to explicitly delete these headers and blank theUser-Agentif it is missing.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.
This is not what
ReverseProxydoes. InServeHTTP(Go 1.27,net/http/httputil/reverseproxy.go), whenRewriteis set the proxy deletesForwarded,X-Forwarded-For,X-Forwarded-HostandX-Forwarded-Protofrom the outbound request before callingRewrite, unconditionally;SetURLandSetXForwardedare what a Rewrite calls to add values back, and this one calls neither. TheUser-Agentblanking (if _, ok := outreq.Header["User-Agent"]; !ok { outreq.Header.Set("User-Agent", "") }) runs after both branches, so it applies in Rewrite mode as it did in Director mode; the Director's copy of it was redundant even before this change.17ed29d adds
TestInferenceService_ForwardingHeadersDoNotReachTheBackend, which sends the spoofedForwarded/X-Forwarded-*headers and noUser-Agentthroughsvc.Handler()to a recording backend and asserts none of them arrive and theUser-Agentis empty. With a Rewrite that copies the inbound headers through, the test fails on all four; with the empty Rewrite it passes.