Skip to content
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

[client] Fix dns forwarder handling of requested record types #3615

Merged
merged 2 commits into from
Apr 3, 2025

Conversation

lixmal
Copy link
Contributor

@lixmal lixmal commented Apr 2, 2025

Describe your changes

The forwarder always responded with whatever A or AAAA records it got, regardless of the query type.

Issue ticket number and link

Checklist

  • Is it a bug fix
  • Is a typo/documentation fix
  • Is a feature enhancement
  • It is a refactor
  • Created tests that fail without the change (if possible)
  • Extended the README / documentation, if necessary

@Copilot Copilot bot review requested due to automatic review settings April 2, 2025 16:14
Copy link
Contributor

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This pull request fixes the DNS forwarder so that it only responds with the record types requested (A or AAAA) instead of returning any record type.

  • Introduces a switch-case in the DNS query handler to select the appropriate network for A or AAAA queries and returns a “not implemented” response for other types.
  • Updates the resolver lookup to use net.DefaultResolver.LookupNetIP with the new netip type conversions and refactors the addition of IP addresses into a helper function.
  • Updates the upstream timeout constant usage across DNS upstream endpoints and tests.

Reviewed Changes

Copilot reviewed 5 out of 5 changed files in this pull request and generated no comments.

Show a summary per file
File Description
client/internal/dnsfwd/forwarder.go Implements type-specific handling for A/AAAA queries and refactors IP record addition.
client/internal/dns/upstream_test.go Updates timeout constant usage in tests.
client/internal/dns/upstream_ios.go Updates timeout constant usage for iOS-specific DNS upstream.
client/internal/dns/upstream_android.go Updates timeout constant usage for Android-specific DNS upstream.
client/internal/dns/upstream.go Introduces UpstreamTimeout constant and updates timeout usages.

Copy link

sonarqubecloud bot commented Apr 2, 2025

@lixmal lixmal merged commit 80702b9 into main Apr 3, 2025
31 checks passed
@lixmal lixmal deleted the fix-forwarder-types branch April 3, 2025 11:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants