- Notifications
You must be signed in to change notification settings - Fork43
OCaml implementation of the DNS protocol
License
mirage/ocaml-dns
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
(c) 2017-2019 Hannes Mehnert (robur.io, Center for the Cultivation of Technology)
%%VERSION%%
This library supports most of the domain name system used in the wild. Itadheres to strict conventions. Failing early and hard. It is mostlyimplemented in the pure fragment of OCaml (no mutation, isolated IO, noexceptions).
It all started out as an experiment to run a recursive resolver, but afterinitial prototypes it turned out that every configurable recursive resolverneeds a fully-fledged authoritative nameserver as well (for overriding variouszones such as.localhost
and reverse lookups of RFC 1918 IP ranges).
Legacy resource record types are not dealt with, and there is no plan to supportISDN
,MAILA
,MAILB
,WKS
,MB
,HINFO
, ... .AXFR
,IXFR
,andUPDATE
is only handled via TCP connections. The only resource classsupported isIN
(the Internet). Truncated hmac inTSIG
are not supported(always the full length of the hash algorithm is used).
Please readthe blog article for a moredetailed overview.
This library is published under the 2 clause BSD license.
- RFC 1034 Domain Names - Concepts and Facilities
- RFC 1035 Domain Names - Implementation and Specification
- RFC 1876 A Means for Expressing Location Information in the Domain Name System
- RFC 1912 Common DNS Operational and Configuration Errors
- RFC 1995 Incremental Zone Transfer in DNS
- RFC 1996 A Mechanism for Prompt Notification of Zone Changes (DNS NOTIFY)
- RFC 2136 Dynamic Updates in the domain name system (DNS UPDATE)
- RFC 2181 Clarifications to the DNS Specification
- RFC 2308 Negative Caching of DNS Queries (DNS NCACHE)
- RFC 2782 A DNS RR for specifying the location of services (DNS SRV)
- RFC 2845 Secret Key Transaction Authentication for DNS (TSIG)
- RFC 3596 DNS Extensions to Support IP Version 6
- RFC 4033 DNS Security Introduction and Requirements
- RFC 4034 Resource Records for the DNS Security Extensions
- RFC 4035 Protocol Modifications for the DNS Security Extensions
- RFC 4255 Using DNS to Securely Publish Secure Shell (SSH) Key Fingerprints
- RFC 4343 Domain Name System (DNS) Case Insensitivity Clarification
- RFC 4509 Use of SHA-256 in DNSSEC Delegation Signer (DS) Resource Records (RRs)
- RFC 4592 The Role of Wildcards in the Domain Name System
- RFC 4635 HMAC SHA TSIG Algorithm Identifiers
*
RFC 5001 DNS Name Server Identifier (NSID) Option- RFC 5155 DNS Security (DNSSEC) Hashed Authenticated Denial of Existence
- RFC 5358 Preventing Use of Recursive Nameservers in Reflector Attacks
- RFC 5452 Measures for Making DNS More Resilient against Forged Answers
- RFC 5936 DNS Zone Transfer Protocol (AXFR)
- RFC 6594 Use of the SHA-256 Algorithm with RSA, Digital Signature Algorithm (DSA), and Elliptic Curve DSA (ECDSA) in SSHFP Resource Records
- RFC 6605 Elliptic Curve Digital Signature Algorithm (DSA) for DNSSEC
- RFC 6698 The DNS-Based Authentication of Named Entities (DANE) Transport Layer Security (TLS) Protocol: TLSA
- RFC 6761 Special-Use Domain Names
*
RFC 6762 Multicast DNS- RFC 6844 DNS Certification Authority Authorization (CAA) Resource Record
- RFC 6890 Special-Purpose IP Address Registries
- RFC 6891 Extension Mechanisms for DNS (EDNS(0))
- RFC 6895 Domain Name System (DNS) IANA Considerations (BCP 42)
- RFC 7129 Authenticated Denial of Existence in the DNS
- RFC 7479 Using Ed25519 in SSHFP Resource Records
- RFC 7626 DNS Privacy Considerations
- RFC 7766 DNS Transport over TCP - Implementation Requirements
- RFC 7816 DNS Query Name Minimisation to Improve Privacy
- RFC 7828 The edns-tcp-keepalive EDNS0 Option
*
RFC 7830 The EDNS(0) Padding Option*
RFC 7873 Domain Name System (DNS) Cookies- RFC 8080 Edwards-Curve Digital Security Algorithm (EdDSA) for DNSSEC
- RFC 8109 Initializing a DNS Resolver with Priming Queries
- draft-ietf-dnsop-let-localhost-be-localhost-02 Let 'localhost' be localhost.
*
: Please note that the RFCs marked with*
are only partially implemented(i.e. only wire format, but no logic handling the feature).
You first need to installOCaml (at least 4.08.2) andopam, the OCaml package manager (at least 2.0.0) onyour machine (you can use opam to install an up-to-date OCaml (opam switch 4.08.2
)).
You may want to follow themirage installationinstructions to getmirage
installed on yourcomputer.
To minimize the amount of run-time dependencies for each individualfunctionality, the library is split into multiple opam packages (core, server,client, resolver, cli, certify), with multiple ocamlfind libraries for thedifferent backends (no optional dependencies) -- i.e.dns-server.mirage
contains the MirageOS-specific DNS server code.
Now the µDNS library is installed, and you can try out the examples. Find someexamples at theunikernel repository.
API documentationis available online.
The pre-4.0.0 versions of ocaml-dns had a significantly different interface,and so applications using them will need to be rewritten to follow thestricter coding style used in the post-4.0.0 branches. The major improvementsfrom 1.x to the 4.x series are:
- data (rrset) is defined in a single GADT in
Rr_map
- added support for: notify, dynamic update, zone transfer, tsig (hmac authentication), edns
- no mutable data structures, leading to easier reasoning about library state
- switched to an independent
domain_name
library which uses a faster and morecompactstring array
instead ofstring list
for storing domain names - integration with LetsEncrypt for provisioning valid X.509 certificates
- no use of exceptions, instead preferring explicit result values from API functions
Please get in touch onmirageos-devel@lists.xenproject.org or on the Discuss forumathttps://discuss.ocaml.org (with themirageos
tag) if you have any questionsabout migrating (or just general questions).
To work with theopam packages provided whendeveloping modifications to DNS, or when pinning a specific version,you will have to pin the sameversion for all of them:
: csh syntaxset version=4.99.0set repo=git+https://github.com/mirage/ocaml-dns.git# the -y parameter means "force" or# "do go ahead and register a new package"# the -n parameter means# "just register the pin, don't actually install it yet"foreach pkg ( dns dns-{certify,cli,client,resolver,server,mirage,tsig,stub} ) opam pin add -y -n$pkg.$version --dev$repoend
: bash syntaxversion=4.99.0repo=git+https://github.com/mirage/ocaml-dns.gitforpkgin dns dns-{certify,cli,client,resolver,server,mirage,tsig,stub}do opam pin add -y -n$pkg.$version --dev$repodone
Now you can install the packages you need, for instance:
opam install dns-client
or
opam install dns-resolver
About
OCaml implementation of the DNS protocol