1
0
Fork 0
Fork of a Golang DNSCrypt v2 protocol implementation + a command-line tool
Go to file
Mohammad Zolfaghari f28a1a337a
fix: pad function calculating minQuestionSize (#25)
fix problem with calculating closest divisible by 64
closes #24
2024-04-17 18:02:24 +02:00
.github/workflows code cleanup, go to 1.19 2023-03-15 18:57:22 +03:00
cmd fix(lint): lint 2023-04-11 16:42:55 +02:00
testdata Graceful shutdown of the DNSCrypt server (#6) 2021-03-19 15:42:48 +03:00
xsecretbox fix(lint): Add proper nolint to poly1305 2023-05-03 19:50:37 +02:00
.codecov.yml Set target coverage to 60% 2020-10-19 17:31:54 +03:00
.gitignore Upgrade dependencies, fix #15 2022-08-29 09:58:58 +03:00
.golangci.yml code cleanup, go to 1.19 2023-03-15 18:57:22 +03:00
LICENSE Init 2018-12-17 01:55:58 +03:00
Makefile all: fix Makefile 2020-11-30 19:40:06 +03:00
README.md change import URL 2023-03-06 23:26:40 +01:00
cert.go Fix linter warnings 2022-08-29 10:07:17 +03:00
cert_test.go Fix linter warnings 2022-08-29 10:07:17 +03:00
client.go all: fix another panic in cert parsing (#21) 2023-04-13 16:24:15 +03:00
client_test.go all: fix panic in cert parsing (#19) 2023-03-15 18:49:10 +03:00
constants.go Added UDPSize properties to client and server 2021-07-13 14:07:12 +03:00
doc.go minor doc changes 2021-06-02 11:31:07 +03:00
encrypted_query.go Merge branch 'ameshkov:master' into master 2023-03-28 22:13:02 +02:00
encrypted_query_test.go assert -> require 2021-07-13 13:13:59 +03:00
encrypted_response.go Merge branch 'ameshkov:master' into master 2023-03-28 22:13:02 +02:00
encrypted_response_test.go change import URL 2023-03-06 23:26:40 +01:00
generate.go Graceful shutdown of the DNSCrypt server (#6) 2021-03-19 15:42:48 +03:00
generate_test.go assert -> require 2021-07-13 13:13:59 +03:00
go.mod go get -u 2023-04-10 22:08:19 +02:00
go.sum fix(lint): lint 2023-04-11 16:42:55 +02:00
handler.go Graceful shutdown of the DNSCrypt server (#6) 2021-03-19 15:42:48 +03:00
server.go imp docs, rm unused field, go mod tidy (#13) 2021-08-31 20:33:03 +03:00
server_bench_test.go Graceful shutdown of the DNSCrypt server (#6) 2021-03-19 15:42:48 +03:00
server_tcp.go Fix linter warnings 2022-08-29 10:07:17 +03:00
server_test.go code cleanup, go to 1.19 2023-03-15 18:57:22 +03:00
server_udp.go Fix linter warnings 2022-08-29 10:07:17 +03:00
util.go fix: pad function calculating minQuestionSize (#25) 2024-04-17 18:02:24 +02:00
util_test.go fix: pad function calculating minQuestionSize (#25) 2024-04-17 18:02:24 +02:00

README.md

Code Coverage Go Report Card Go Doc

DNSCrypt Go

Golang-implementation of the DNSCrypt v2 protocol.

This repo includes everything you need to work with DNSCrypt. You can run your own resolver, make DNS lookups to other DNSCrypt resolvers, and you can use it as a library in your own projects.

Command-line tool

dnscrypt is a helper tool that can work as a DNSCrypt client or server.

Please note, that even though this tool can work as a server, it's purpose is merely testing. Use dnsproxy or AdGuard Home for real-life purposes.

How to install

Download and unpack an archive for your platform from the latest release.

Homebrew:

brew install ameshkov/tap/dnscrypt

How to configure

Generate a configuration file for running a DNSCrypt server:

./dnscrypt generate

[generate command options]
      -p, --provider-name= DNSCrypt provider name. Param is required.
      -o, --out=           Path to the resulting config file. Param is required.
      -k, --private-key=   Private key (hex-encoded)
      -t, --ttl=           Certificate time-to-live (seconds)

It will generate a configuration file that looks like this:

provider_name: 2.dnscrypt-cert.example.org
public_key: F11DDBCC4817E543845FDDD4CB881849B64226F3DE397625669D87B919BC4FB0
private_key: 5752095FFA56D963569951AFE70FE1690F378D13D8AD6F8054DFAA100907F8B6F11DDBCC4817E543845FDDD4CB881849B64226F3DE397625669D87B919BC4FB0
resolver_secret: 9E46E79FEB3AB3D45F4EB3EA957DEAF5D9639A0179F1850AFABA7E58F87C74C4
resolver_public: 9327C5E64783E19C339BD6B680A56DB85521CC6E4E0CA5DF5274E2D3CE026C6B
es_version: 1
certificate_ttl: 0s
  • provider_name - DNSCrypt resolver name.
  • public_key, private_key - keypair that is used by the DNSCrypt resolver to sign the certificate.
  • resolver_secret, resolver_public - keypair that is used by the DNSCrypt resolver to encrypt and decrypt messages.
  • es_version - crypto to use. Can be 1 (XSalsa20Poly1305) or 2 (XChacha20Poly1305).
  • certificate_ttl - certificate time-to-live. By default it's set to 0 and in this case 1-year cert is generated. The certificate is generated on dnscrypt start-up and it will only be valid for the specified amount of time. You should periodically restart dnscrypt to rotate the cert.

Converting dnscrypt-wrapper configuration

Also, to create a configuration, you can use the keys generated using dnscrypt-wrapper by running the command:

./dnscrypt convert-dnscrypt-wrapper

[convert-dnscrypt-wrapper command options]
      -p, --private-key=     Path to the DNSCrypt resolver private key file that is used for signing certificates. Param is required.
      -r, --resolver-secret= Path to the Short-term privacy key file for encrypting/decrypting DNS queries. If not specified, resolver_secret and resolver_public will be randomly generated.
      -n, --provider-name=   DNSCrypt provider name. Param is required.
      -o, --out=             Path to the resulting config file. Param is required.
      -t, --ttl=             Certificate time-to-live (seconds)

Running a server

This configuration file can be used to run a DNSCrypt forwarding server:

./dnscrypt server 

[server command options]
      -c, --config=  Path to the DNSCrypt configuration file. Param is required.
      -f, --forward= Forwards DNS queries to the specified address (default: 94.140.14.140:53)
      -l, --listen=  Listening addresses (default: 0.0.0.0)
      -p, --port=    Listening ports (default: 443)

Now you can go to https://dnscrypt.info/stamps and use provider_name and public_key from this configuration to generate a DNS stamp. Here's how it looks like for a server running on 127.0.0.1:443:

sdns://AQcAAAAAAAAADTEyNy4wLjAuMTo0NDMg8R3bzEgX5UOEX93Uy4gYSbZCJvPeOXYlZp2HuRm8T7AbMi5kbnNjcnlwdC1jZXJ0LmV4YW1wbGUub3Jn

Making lookups

You can use that stamp to send a DNSCrypt request to your server:

./dnscrypt lookup-stamp

[lookup-stamp command options]
      -n, --network= network type (tcp/udp) (default: udp)
      -s, --stamp=   DNSCrypt resolver stamp. Param is required.
      -d, --domain=  Domain to resolve. Param is required.
      -t, --type=    DNS query type (default: A)

You can also send a DNSCrypt request using a command that does not require stamps:

./dnscrypt lookup \

[lookup command options]
      -n, --network=       network type (tcp/udp) (default: udp)
      -p, --provider-name= DNSCrypt resolver provider name. Param is required.
      -k, --public-key=    DNSCrypt resolver public key. Param is required.
      -a, --addr=          Resolver address (IP[:port]). By default, the port is 443. Param is required.
      -d, --domain=        Domain to resolve. Param is required.
      -t, --type=          DNS query type (default: A)

Programming interface

Client

import (
    "dns.froth.zone/dnscrypt"
)

// AdGuard DNS stamp
stampStr := "sdns://AQMAAAAAAAAAETk0LjE0MC4xNC4xNDo1NDQzINErR_JS3PLCu_iZEIbq95zkSV2LFsigxDIuUso_OQhzIjIuZG5zY3J5cHQuZGVmYXVsdC5uczEuYWRndWFyZC5jb20"

// Initializing the DNSCrypt client
c := dnscrypt.Client{Net: "udp", Timeout: 10 * time.Second}

// Fetching and validating the server certificate
resolverInfo, err := c.Dial(stampStr)
if err != nil {
    return err
}

// Create a DNS request
req := dns.Msg{}
req.Id = dns.Id()
req.RecursionDesired = true
req.Question = []dns.Question{
    {
        Name: "google-public-dns-a.google.com.",
        Qtype: dns.TypeA,
        Qclass: dns.ClassINET,
    },
}

// Get the DNS response
reply, err := c.Exchange(&req, resolverInfo)

Server

import (
    "dns.froth.zone/dnscrypt"
)

// Prepare the test DNSCrypt server config
rc, err := dnscrypt.GenerateResolverConfig("example.org", nil)
if err != nil {
    return err
}

cert, err := rc.CreateCert()
if err != nil {
    return err
}

s := &dnscrypt.Server{
    ProviderName: rc.ProviderName,
    ResolverCert: cert,
    Handler:      dnscrypt.DefaultHandler,
}

// Prepare TCP listener
tcpConn, err := net.ListenTCP("tcp", &net.TCPAddr{IP: net.IPv4zero, Port: 443})
if err != nil {
    return err
}

// Prepare UDP listener
udpConn, err := net.ListenUDP("udp", &net.UDPAddr{IP: net.IPv4zero, Port: 443})
if err != nil {
    return err
}

// Start the server
go s.ServeUDP(udpConn)
go s.ServeTCP(tcpConn)