12 releases
new 0.25.1 | Mar 18, 2025 |
---|---|
0.25.0-alpha.4 | Nov 28, 2024 |
0.25.0-alpha.1 | Jun 16, 2024 |
0.24.4 | Feb 19, 2025 |
0.24.0 | Oct 14, 2023 |
#185 in Network programming
44,010 downloads per month
Used in 28 crates
(20 directly)
2MB
32K
SLoC
Overview
Hickory DNS is a library which implements the DNS protocol and client side functions.
This library contains basic implementations for DNS record serialization, and communication. It is capable of performing query
, update
, and notify
operations. update
has been proven to be compatible with BIND9
and SIG0
signed records for updates. It is built on top of the tokio async-io project, this allows it to be integrated into other systems using the tokio and futures libraries. The Hickory DNS project contains other libraries for DNS: a resolver library for lookups, a server library for hosting zones, and variations on the TLS implementation over rustls and native-tls.
NOTICE This project was rebranded from Trust-DNS to Hickory DNS and has been moved to the https://github.com/hickory-dns/hickory-dns organization and repo, this crate/binary has been moved to hickory-client, from 0.24
and onward, for prior versions see trust-dns-client.
Status
The Hickory DNS Client is intended to be used for operating against a DNS server directly. It can be used for verifying records or updating records for servers that support SIG0 and dynamic update. The Client is also capable of validating DNSSEC. NSEC and NSEC3 validation are supported. Today, the Tokio async runtime is required.
Features
The client
is capable of DNSSEC validation as well as offering higher order functions for performing DNS operations:
- SyncDnssecClient - DNSSEC validation
- create - atomic create of a record, with authenticated request
- append - verify existence of a record and append to it
- compare_and_swap - atomic (depends on server) compare and swap
- delete_by_rdata - delete a specific record
- delete_rrset - delete an entire record set
- delete_all - delete all records sets with a given name
- notify - notify server that it should reload a zone
Optional protocol support
The following DNS protocols are optionally supported:
- Enable
dns-over-rustls
for DNS over TLS (DoT) - Enable
dns-over-https-rustls
for DNS over HTTP/2 (DoH) - Enable
dns-over-quic
for DNS over QUIC (DoQ) - Enable
dns-over-h3
for DNS over HTTP/3 (DoH3)
Example
use std::net::SocketAddr;
use std::str::FromStr;
use hickory_client::client::{Client, ClientHandle};
use hickory_client::proto::rr::{DNSClass, Name, Record, RecordType};
use hickory_client::proto::runtime::TokioRuntimeProvider;
use hickory_client::proto::udp::UdpClientStream;
use hickory_client::proto::xfer::DnsResponse;
let address = SocketAddr::from(([8, 8, 8, 8], 53));
let conn = UdpClientStream::builder(address, TokioRuntimeProvider::default()).build();
let (mut client, bg) = Client::connect(conn).await.unwrap();
tokio::spawn(bg);
// Specify the name, note the final '.' which specifies it's an FQDN
let name = Name::from_str("www.example.com.").unwrap();
// NOTE: see 'Setup a connection' example above
// Send the query and get a message response, see RecordType for all supported options
let response: DnsResponse = client
.query(name, DNSClass::IN, RecordType::A)
.await
.unwrap();
// Messages are the packets sent between client and server in DNS, DnsResponse's can be
// dereferenced to a Message. There are many fields to a Message, It's beyond the scope
// of these examples to explain them. See hickory_dns::op::message::Message for more details.
// generally we will be interested in the Message::answers
let answers: &[Record] = response.answers();
// Records are generic objects which can contain any data.
// In order to access it we need to first check what type of record it is
// In this case we are interested in A, IPv4 address
let a_data = answers
.iter()
.flat_map(|record| record.data().as_a())
.collect::<Vec<_>>();
assert!(!a_data.is_empty());
DNSSEC status
The current root key is bundled into the system, and used by default. This gives validation of DNSKEY and DS records back to the root. NSEC and NSEC3 are implemented.
To enable DNSSEC, enable the dnssec-ring
feature.
Minimum Rust Version
The current minimum rustc version for this project is 1.70
Versioning
Hickory DNS does it's best job to follow semver. Hickory DNS will be promoted to 1.0 upon stabilization of the publicly exposed APIs. This does not mean that Hickory DNS will necessarily break on upgrades between 0.x updates. Whenever possible, old APIs will be deprecated with notes on what replaced those deprecations. Hickory DNS will make a best effort to never break software which depends on it due to API changes, though this can not be guaranteed. Deprecated interfaces will be maintained for at minimum one major release after that in which they were deprecated (where possible), with the exception of the upgrade to 1.0 where all deprecated interfaces will be planned to be removed.
Dependencies
~14–33MB
~665K SLoC