Network Working Group J. Levine
Internet-Draft Taughannock Networks
Intended status: Standards Track August 19, 2011
Expires: February 20, 2012
An Extension Language for the DNS
draft-levine-dnsextlang-00
Abstract
Adding new RRTYPEs to the DNS requires that DNS servers and
provisioning software be upgraded to support each new RRTYPE in
Master files. This document defines a DNS extension language
intended to allow most new RRTYPEs to be supported by adding a line
to a configuration file read by the DNS software, with no changed
software.
Status of this Memo
This Internet-Draft is submitted in full conformance with the
provisions of BCP 78 and BCP 79.
Internet-Drafts are working documents of the Internet Engineering
Task Force (IETF). Note that other groups may also distribute
working documents as Internet-Drafts. The list of current Internet-
Drafts is at http://datatracker.ietf.org/drafts/current/.
Internet-Drafts are draft documents valid for a maximum of six months
and may be updated, replaced, or obsoleted by other documents at any
time. It is inappropriate to use Internet-Drafts as reference
material or to cite them other than as "work in progress."
This Internet-Draft will expire on February 20, 2012.
Copyright Notice
Copyright (c) 2011 IETF Trust and the persons identified as the
document authors. All rights reserved.
This document is subject to BCP 78 and the IETF Trust's Legal
Provisions Relating to IETF Documents
(http://trustee.ietf.org/license-info) in effect on the date of
publication of this document. Please review these documents
carefully, as they describe your rights and restrictions with respect
to this document. Code Components extracted from this document must
include Simplified BSD License text as described in Section 4.e of
the Trust Legal Provisions and are provided without warranty as
Levine Expires February 20, 2012 [Page 1]
Internet-Draft DNS Extension Language August 2011
described in the Simplified BSD License.
Table of Contents
1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . . 3
2. Typical usage . . . . . . . . . . . . . . . . . . . . . . . . . 3
3. Extension language syntax . . . . . . . . . . . . . . . . . . . 3
3.1. Lexical structure . . . . . . . . . . . . . . . . . . . . . 3
3.2. Token structure . . . . . . . . . . . . . . . . . . . . . . 4
3.3. Field types . . . . . . . . . . . . . . . . . . . . . . . . 4
4. Examples . . . . . . . . . . . . . . . . . . . . . . . . . . . 6
5. Security considerations . . . . . . . . . . . . . . . . . . . . 6
6. IANA considerations . . . . . . . . . . . . . . . . . . . . . . 6
7. References . . . . . . . . . . . . . . . . . . . . . . . . . . 7
7.1. References - Normative . . . . . . . . . . . . . . . . . . 7
7.2. References - Informative . . . . . . . . . . . . . . . . . 7
Author's Address . . . . . . . . . . . . . . . . . . . . . . . . . 7
Levine Expires February 20, 2012 [Page 2]
Internet-Draft DNS Extension Language August 2011
1. Introduction
The Domain Name System[RFC1034] [RFC1035] is designed to be
extensible, with new record types, known as RRTYPEs, added as needed.
While it is straightforward in principle to add a new RRTYPE, in
practice it can be difficult due to the software changes needed to
add the new RRTYPE to the master file format read by many
authoritative DNS servers, and to the provisioning software used to
create and update the master files or the local equivalent.
While some new RRTYPEs, notably those for DNSSEC [RFC4033], require
that DNS servers do new special purpose processing, most new RRTYPEs
are, from the point of view of the DNS, just static data to return to
queries, perhaps with some additional section records if the record
includes another domain name. This document defines an extension
language to describe these RRTYPEs, so that server and provisioning
software can parse master file records for the RRTYPEs.
2. Typical usage
The extension language is written as lines of ASCII text, intended to
be stored in a file with a well-known name such as /etc/rrtypes. All
of the DNS software that needs to handle master file records would
read the file upon startup. To support a new RRTYPE, one would add a
suitable record to /etc/rrtypes, and then restart or signal DNS
software to reread the new contents of the file.
3. Extension language syntax
3.1. Lexical structure
Each line of the extension language file is a comment, if it is blank
or it starts with a # character, or a definition of an RRTYPE.
Definition lines are a sequence of tokens separated by white space.
If a line is very long, it may be continued by placing a backslash \
at the end of the line; the backslash, the following newline, and all
leading whitespace on the next line are disregarded. If a line is
broken between two tokens, there should be a space before the \
character. (This continuation convention only applies to lines in
the extension language file. The continuation rules for master
files, with parentheses around multi-line data, are unchanged.)
[ put some appropriate ABNF here ]
Levine Expires February 20, 2012 [Page 3]
Internet-Draft DNS Extension Language August 2011
3.2. Token structure
Each line starts with the a token containing the name of the RRTYPE,
a colon, and the numeric RRTYPE. The RRTYPE name should not be the
same as an existing RRTYPE or DNS class name (IN or CH) or bad things
will happen. The rest of the tokens on the line describe the fields
in the record. Each field is one or more octets long, and fields are
stored sequentially in the record:
FOO:999 field field[qual,qual] field ...
Some fields may be followed by a comma-separated list of qualifiers
in square brackets. The qualifiers further define the field, e.g.,
in a numeric field, the qualifiers may define symbolic names for
field values or bit masks.
3.3. Field types
Each field type is defined by a token name consisting of letters and
digits, starting with a letter.
3.3.1. Integer fields
Integer fields are defined by I1, I2, and I4 tokens, for fields one,
two, or four octets long. The corresponding value in a master record
is an unsigned integer number. A field may be followed by qualifiers
defining symbolic field values.
A symbolic field value is represented as NAME=NN where NAME is the
symbol and NN is the numeric value to be placed in the field. The
corresponding value in a master record is the symbol. The symbol can
contain any ASCII printing character other than comma, equal sign,
vertical bar, angle braces, or backslash. For example, to define the
type field in a CERT record [RFC4398]:
... I2[PKIX=1,SPKI=2,PGP=2,IPKIX=4,ISPKI=5,IPGP=6,ACPKIX=7,\
IACPKIX=8,URI=253,OID=254] ...
3.3.2. IP address fields
IP address fields are defined by A or AAAA tokens, for four-octet
IPv4 addresses or 16-octet IPv6 addresses. The corresponding value
in a master record is an IP address written in the usual way. There
are no qualifiers.
Levine Expires February 20, 2012 [Page 4]
Internet-Draft DNS Extension Language August 2011
3.3.3. Domain name fields
Domain name fields are defined by N tokens. The qualifier C means
the name is compressed. The qualifier A means that the DNS server
should do the usual additional record processing, including related A
and AAAA records if available. The qualifier M means the name is
really an e-mail address, i.e., the first component is the mailbox
and the rest is the actual domain name. Multiple qualifiers are
permitted, e.g. N[A,C] for a compressed name with additional record
processing.
The corresponding value in a master record is a domain name, written
in the usual way, with \. meaning a literal dot in a record.
[Are names written as absolute or relative to $ORIGIN? ]
3.3.4. String fields
String fields are defined by S tokens. The qualifier L means that
the string may be long, more than 255 bytes, in which case it is
stored in the record as multiple strings, with the location of the
boundary between the strings undefined. The qualifier M means that
there may be multiple strings, each stored as a string in the record.
A string field with either qualifier must be the last field in the
record.
The corresponding value in a master record is a string enclosed in
single or double quotes, or multiple strings if the M qualifier is
present. Embedded quotes may be escaped with a backslash, and a
double backslash represents a backslash. If a non-null string
contains no white space, quote characters, or backslashes, the quotes
may be omitted.
3.3.5. Base-64 fields
A base64 field is defined by a B token. The qualifier C means that
the field is stored in the record as a string with a preceding length
byte. A base64 field without a C qualifier must be the last field in
the record.
The corresponding value in a master record is a string represented as
base64 [RFC3548]. The value of a base64 field without a C qualifier
may include embedded spaces for readability, which are ignored.
3.3.6. Hex fields
A hex field is defined by an X token. There are no qualifiers. A
hex field must be the last field in the record.
Levine Expires February 20, 2012 [Page 5]
Internet-Draft DNS Extension Language August 2011
The corresponding value in a master record is a string represented as
an even number of hexadecimal digits. The value may include embedded
spaces for readability, which are ignored.
4. Examples
If a DNS server didn't already have support for MX records, they
could be defined as:
MX:15 I2 N[A,C]
The name is MX, the RRTYPE is 15, and the data includes a two-octet
number and a compressed domain name, with additional section records
for the domain name.
The SRV record could be defined as:
SRV:33 I2 I2 I2 N[A]
The name is SRV, the RRTYPE is 33. The record contains three two-
octet fields (the priority, weight, and port), and a domain name.
The domain name is not compressed, but the DNS server should include
additional section records for it.
5. Security considerations
The extension language makes it possible to create master files that
represent arbitrary DNS records. Since most DNS servers already
provide ways to represent arbitrary data, this doesn't introduce any
new security issues to the DNS and DNS servers, although it may
create security issues in provisioning software if the provisioning
system is intended to limit the kinds of records its users can
define.
Extension language files with accidentally or deliberately invalid
field definitions could provoke odd bugs in server or provisioning
software that doesn't check the syntax before using it.
6. IANA considerations
This document requests that IANA create a registry of DNS Extension
Language Field Types. Its initial contents are as follows
Levine Expires February 20, 2012 [Page 6]
Internet-Draft DNS Extension Language August 2011
+------+-----------------+
| TYPE | REFERENCE |
+------+-----------------+
| I1 | (this document) |
| I2 | (this document) |
| I4 | (this document) |
| A | (this document) |
| AAAA | (this document) |
| N | (this document) |
| S | (this document) |
| B | (this document) |
| X | (this document) |
+------+-----------------+
Table 1: DNS Extension Language Field Types Registry Initial Values
7. References
7.1. References - Normative
[RFC1034] Mockapetris, P., "Domain names - concepts and facilities",
STD 13, RFC 1034, November 1987.
[RFC1035] Mockapetris, P., "Domain names - implementation and
specification", STD 13, RFC 1035, November 1987.
[RFC3548] Josefsson, S., "The Base16, Base32, and Base64 Data
Encodings", RFC 3548, July 2003.
7.2. References - Informative
[RFC4033] Arends, R., Austein, R., Larson, M., Massey, D., and S.
Rose, "DNS Security Introduction and Requirements",
RFC 4033, March 2005.
[RFC4398] Josefsson, S., "Storing Certificates in the Domain Name
System (DNS)", RFC 4398, March 2006.
Levine Expires February 20, 2012 [Page 7]
Internet-Draft DNS Extension Language August 2011
Author's Address
John Levine
Taughannock Networks
PO Box 727
Trumansburg, NY 14886
Phone: +1 831 480 2300
Email: standards@taugh.com
URI: http://jl.ly
Levine Expires February 20, 2012 [Page 8]