Writing new DNS providers
Writing a new DNS provider is a relatively straightforward process. You essentially need to implement the providers.DNSServiceProvider interface. and the system takes care of the rest.
Please do note that if you submit a new provider you will be assigned bugs related to the provider in the future (unless you designate someone else as the maintainer). More details here.
I'll ignore all the small stuff and get to the point.
A typical provider implements 3 methods and DNSControl takes care of the rest:
- GetZoneRecords() -- Download the list of DNS records and return them as a list of RecordConfig structs.
- GetZoneRecordsCorrections() -- Generate a list of corrections.
- GetNameservers() -- Query the API and return the list of parent nameservers.
These three functions are all that's needed for
dnscontrol preview
and dnscontrol push
.The goal of
GetZoneRecords()
is to download all the DNS records, convert them to models.RecordConfig
format, and return them as one big list (models.Records
).The goal of
GetZoneRecordsCorrections()
is to return a list of corrections. Each correction is a text string describing the change ("Delete CNAME record foo") and a function that, if called, will make the change (i.e. call the API and delete record foo). dnscontrol preview
simply prints the text strings. dnscontrol push
prints the strings and calls the functions. Because of how Go's functions work, the function will have everything it needs to make the change. Pretty cool, eh?Calculating the difference between existing and desired is difficult. Luckily the work is done for you.
GetZoneRecordsCorrections()
calls a a function in the pkg/diff2
module that generates a list of changes (usually an ADD, CHANGE, or DELETE) that can easily be turned into the API calls mentioned previously.So, what does all this mean?
It basically means that writing a provider is as simple as writing code that (1) downloads the existing records, (2) converts each records into
models.RecordConfig
, (3) write functions that perform adds, changes, and deletions.If you are new to Go, there are plenty of providers you can copy from. In fact, many non-Go programmers have learned Go by contributing to DNSControl.
Now that you understand the general process, here are the details.
A provider can be a DnsProvider, a Registrar, or both. We recommend you write the DnsProvider first, release it, and then write the Registrar if needed.
If you have any questions, please discuss them in the GitHub issue related to the request for this provider. Please let us know what was confusing so we can update this document with advice for future authors (or even better, update this document yourself.)
We are in the process of changing how providers work. Sadly this document hasn't been fully updated yet.
We are in the process of changing all providers from using
pkg/diff
to pkg/diff2
. diff2 is much easier to use as it does all the hard work for you. Providers are easier to write, there's less code for you to write, and fewer chances to make mistakes.New providers only need to implement diff2. Older providers are implemented both ways, with a flag (
--diff2
) enabling the newer code. Soon the new code will become the default, then the old code will be removed.The file
pkg/diff2/diff2.go
has instructions about how to use the new diff2 system. You can also do grep diff2.By providers/*/*.go
to find providers that use the new system.Each DNS provider's API is different. Some update one DNS record at a time. Others, the only change they permit is to upload the entire zone even if only one record changed! Others are somewhere in between: all records at a label must be updated at once, or all records in a RecordSet (the label + rType). diff2 provides functions for all of these situations:
diff2.ByRecord() -- Updates are done one DNS record at a time. New records are added. Changes and deletes refer to an ID assigned to the record by the provider. diff2.ByLabel() -- Updates are done for an entire label. Adds and changes are done by sending one or more records that will appear at that label (i.e. www.example.com). Deletes delete all records at that label. diff2.ByRecordSet() -- Similar to ByLabel() but updates are done on the label+type level. If www.example.com has 2 A records and 2 MX records,
Pick a similar provider as your base. Providers basically fall into three general categories:
NOTE: diff2 changes this. For now, you can simply run
grep diff2.By providers/*/*.go
to see which providers use ByZone, ByLabel, ByRecord, ByRecordSet and pick a similar provider to copy from.- zone: The API requires you to upload the entire zone every time. (BIND, NAMECHEAP).
- incremental-record: The API lets you add/change/delete individual DNS records. (CLOUDFLARE, DNSIMPLE, NAMEDOTCOM, GCLOUD, HEXONET)
- incremental-label: Like incremental-record, but if there are multiple records on a label (for example, example www.example.com has A and MX records), you have to replace all the records at that label. (GANDI_V5)
- incremental-label-type: Like incremental-record, but updates to any records at a label have to be done by type. For example, if a label (www.example.com) has many A and MX records, even the smallest change to one of the A records requires replacing all the A records. Any changes to the MX records requires replacing all the MX records. If an A record is converted to a CNAME, one must remove all the A records in one call, and add the CNAME record with another call. This is deceptively difficult to get right; if you have the choice between incremental-label-type and incremental-label, pick incremental-label. (DESEC, ROUTE53)
- registrar only: These providers are registrars but do not provide DNS service. (EASYNAME, INTERNETBS, OPENSRS)
All DNS providers use the "diff" module to detect differences. It takes two zones and returns records that are unchanged, created, deleted, and modified. The zone providers use the information to print a human-readable list of what is being changed, but upload the entire new zone. The incremental providers use the differences to update individual records or recordsets.
Create a directory for the provider called
providers/name
where name
is all lowercase and represents the commonly-used name for the service.The main driver should be called
providers/name/nameProvider.go
. The API abstraction is usually in a separate file (often called api.go
).If you are implementing a DNS Service Provider:
The function
GetDomainCorrections()
is a bit interesting. It returns a list of corrections to be made. These are in the form of functions that DNSControl can call to actually make the corrections.If you are implementing a DNS Registrar:
The function
GetRegistrarCorrections()
returns a list of corrections to be made. These are in the form of functions that DNSControl can call to actually make the corrections.Make sure the existing unit tests work. Add unit tests for any complex algorithms in the new code.
Run the unit tests with this command:
go test ./...
This is the most important kind of testing when adding a new provider. Integration tests use a test account and a real domain.
For example, this will run the tests using BIND:
cd integrationTest/
go test -v -verbose -provider BIND
(BIND is a good place to start since it doesn't require any API keys.)
This will run the tests on Amazon AWS Route53:
export R53_DOMAIN=dnscontroltest-r53.com # Use a test domain.
export R53_KEY_ID='CHANGE_TO_THE_ID'
export R53_KEY='CHANGE_TO_THE_KEY'
go test -v -verbose -provider ROUTE53
Some useful
go test
flags:- Slow tests? Add
-timeout n
to increase the timeout for testsgo test
kills the tests after 10 minutes by default. Some providers need more time.- This flag must be before the
-verbose
flag. Usually it is the first flag aftergo test
. - Example:
go test -timeout 20m -v -verbose -provider CLOUDFLAREAPI
- Run only certain tests using the
-start
and-end
flags.- Rather than running all the tests, run just the tests you want.
- These flags must be after the
-provider FOO
flag. - Example:
go test -v -verbose -provider ROUTE53 -start 10 -end 20
run tests 10-20 inclusive. - Example:
go test -v -verbose -provider ROUTE53 -start 5 -end 5
runs only test 5. - Example:
go test -v -verbose -provider ROUTE53 -start 20
skip the first 19 tests. - Example:
go test -v -verbose -provider ROUTE53 -end 20
only run the first 20 tests.
- If a test will always fail because the provider doesn't support the feature, you can opt out of the test. Look at
func makeTests()
in integrationTest/integration_test.go for more details.
There is a potential bug in how TXT records are handled. Sadly we haven't found an automated way to test for this bug. The manual steps are here in documentation/testing-txt-records.md
- Create
documentation/providers/PROVIDERNAME.md
: Use one of the other files in that directory as a base.
At this point you can submit a PR.
Actually you can submit the PR even earlier if you just want feedback, input, or have questions. This is just a good stopping place to submit a PR if you haven't already.
Some DNS providers have features that others do not. For example some support the SRV record. A provider announces what it can do using the capabilities system.
If a provider doesn't advertise a particular capability, the integration test system skips the appropriate tests. Therefore you might want to initially develop the provider with no particular capabilities advertised and code until all the integration tests work. Then enable capabilities one at a time to finish off the project.
Don't feel obligated to implement everything at once. In fact, we'd prefer a few small PRs than one big one. Focus on getting the basic provider working well before adding these extras.
Operational features have names like
providers.CanUseSRV
and providers.CanUseAlias
. The list of optional "capabilities" are in the file dnscontrol/providers/providers.go
(look for CanUseAlias
).Capabilities are processed early by DNSControl. For example if a provider doesn't support SRV records, DNSControl will error out when parsing
dnscontrol.js
rather than waiting until the API fails at the very end.Enable optional capabilities in the
nameProvider.go
file and run the integration tests to see what works and what doesn't. Fix any bugs and repeat, repeat, repeat until you have all the capabilities you want to implement.FYI: If a provider's capabilities changes, run
go generate
to update the documentation.go vet ./...
staticcheck ./...
golint is deprecated and frozen but it is still useful as it does a few checks that haven't been re-implemented in staticcheck. However golink fails on any file that uses generics, so be prepared to ignore errors about
expected '(', found '[' (and 1 more errors)
go get -u golang.org/x/lint/golint
go install golang.org/x/lint/golint
golint ./...
See documentation/release-engineering.md for tips about managing modules and checking for outdated dependencies.
In the repo root, open
.goreleaser.yml
and add the provider to Provider-specific changes
regexp.Here are some last-minute things to check before you submit your PR.
- 1.Run
go generate
to make sure all generated files are fresh. - 2.
- 3.
- 4.
- 5.Re-read the maintainer's responsibilities bullet list. By submitting a provider you agree to maintain it, respond to bugs, perioidically re-run the integration test to verify nothing has broken, and if we don't hear from you for 2 months we may disable the provider.
- 1.Remove the "provider-request" label from the PR.
- 2.