GithubHelp home page GithubHelp logo

Comments (5)

gnarea avatar gnarea commented on July 18, 2024

Thanks for taking the time to suggest this enhancement @singpolyma!

I can see how a more granular failure result can be helpful in some cases, but can you please elaborate on what you're trying to achieve?

From a DNSSEC standpoint, there could be four possible outcomes. "there was DNSSEC and it passed" and "there was no DNSSEC" correspond to secure and insecure respectively, but there are two other failure statuses that could be relevant.

This sounds like a good idea in principle, but as a high-level where the primary functionality is DoH and DNSSEC is secondary, I need to be careful we're not making things too complicated, which is why learning about your specific use case can be helpful.

from doh-jvm.

singpolyma avatar singpolyma commented on July 18, 2024

from doh-jvm.

gnarea avatar gnarea commented on July 18, 2024

Thanks. Apologies for the delay.

Those are two very different use cases.

The first use case seems straightforward. We could introduce a new exception (e.g., DNSSECVerificationException) and throw it instead of LookupFailureException when the ad flag in the responseMessage below is false:

if (responseMessage.rcode != Rcode.NOERROR) {
val rcodeString = Rcode.string(responseMessage.rcode)
throw LookupFailureException("Lookup failed with $rcodeString error")
}

We'd welcome a PR for that. If you'd like to proceed with it, please make sure to follow the current coding conventions and add a unit test for every new code execution branch (I think this will just introduce an if block, so one unit test will suffice). Also, FYI, you'll be prompted to sign a CLA.

The second use case deserves further consideration and, if I'm reading it correctly, we'd be talking about a different feature request: offer the option to disable DNSSEC verification (as a new optional parameter in lookUp()).

If DNSSEC verification fails, you wouldn't get an answer (e.g., dnssec-failed.org/A), so you'd have to repeat the query with DNSSEC verification disabled. I think this library should support the option to disable DNSSEC verification, but it should be up to the user to repeat the query with DNSSEC disabled.

Also, if we're introducing a flag to disable DNSSEC verification, we should consider the other DNSSEC-related flag that someone might want to include in the query: whether to include the RRSIG records for the answers. Even if we don't implement this second flag now, we should keep in mind that it's there when we name the first parameter (e.g., verifyDnssec: boolean = true instead of dnssec : boolean = true).

from doh-jvm.

singpolyma avatar singpolyma commented on July 18, 2024

I have no interest in disabling verification. If DNSSEC verification fails then that should be either an error or no result, of course.

I'm only interested in knowing if DNSSEC existed and was verified or else was not present. I don't want not present to be an error, just to know when it happened.

from doh-jvm.

singpolyma avatar singpolyma commented on July 18, 2024

So I think maybe your other feature you mentioned (returning RRSIG records if present) would be the thing to do here? If there are no RRSIG then we know there was no DNSSEC.

from doh-jvm.

Related Issues (8)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.