OVERVIEW
This ATL COM component provides very simple Internet name resolving functionality (Domain Name System or DNS). For example, it can automagically find the email (SMTP) servers available for your machine (see “DNS Magic: Who’s my email server?” for details).
CONTENTS
- OVERVIEW
- INTRODUCTION TO DNS
- COMPONENT FEATURES
- USAGE
- SAMPLE CODE (VBScript)
- IMPLEMENTATION
- TO DO LIST
- REFERENCE DOCUMENTATION
INTRODUCTION TO DNS
- an ip address (e.g. “209.10.73.138”)
- a hostname (e.g. “www.kartmann.com”)
- a canonical name (i.e. the real name of an IP alias)
- a mail server name
- etc…
- Reply immediately if it knows the answer (i.e. if the query is about data in its name space)
- Reply immediately if the answer is in its cache (DNS data has a Time-To-Live; the data in the cache must not have expired yet).
- Reply with a alternate server name for the request (non-recursive queries). The resolver must then send the same query to the alternate server.
- Send queries to foreign name servers, wait for answers and transmit them to the resolver (recursive queries).
What the Hell is DNS?
The Domain Name System (DNS) is a distributed host information database used in the Internet.
Most (if not all) Internet software (e.g. ping, telnet, ftp, web browsers, etc…) use the DNS database to resolve IP addresses so that you, the user, can type the name of a machine instead of its IP address (user-friendly, isn’t it?).
Let me give you an example: when you type a Web address in your favorite browser (e.g. “www.kartmann.com”), the browser fetches the corresponding IP address in the DNS database and uses this address to connect to the Web server.
Information held in the DNS database can be:
Information in the DNS is held in Resource Records (RR). RRs come in several types, which correspond to the varieties of data that can be contained in the DNS. Many RFCs (most of them still experimental) propose additional RR types, like the geographical location (RFC 1712), digital certificates (RFC 2538), cryptographic keys (RFC 2536), etc…
A application or library (or COM object) acting as a DNS client is called a resolver.
The DNS Protocol
Application programs can use the domain name system via a resolver library (or COM object in our case). The resolver sends queries corresponding to the library function, and waits for responses from the local name server. The local name server can either:
- “A” (value 1) a host address
- “CNAME” (value 5) the canonical name for an alias
- “PTR” (value 12) a domain name pointer
- “MX” (value 15) a mail exchanger
- etc…
- “IN” (value 1) the Internet
- “CS” (value 2) the CSNET class (Obsolete)
- “CH” (value 3) the CHAOS class (MIT)
- “HS” (value 4) Hesiod (MIT)
- berkeley sockets: the berkeley C library provides a very basic implementation of the DNS via functions gethostbyname (resolve an hostname into its ip address) and gethostbyaddr (reverse: from the ip address, finds the corresponding hostname).
- Winsock: on Windows, you have the same functions (and their asynchronous versions WSAAsyncGetHostByName and WSAAsyncGetHostByAddr).
- BIND: the Berkeley Internet Name Domain is the most popular implementation of the DNS specifications (full implementation with client and server software).
- Start a MS-DOS command prompt and type the nslookup command:
C:> <B>nslookup</B> Default Server: mynameserver.mydomain.com Address: XXX.XXX.XXX.XXX > <B>myhost.mydomain.com</B> Server: mynameserver.mydomain.com Address: XXX.XXX.XXX.XXX Name: myhost.mydomain.com Address: YYY.YYY.YYY.YYY > <B>yourhost.mydomain.com</B> *** mynameserver.mydomain.com can't find yourhost.mydomain.com: Non-existent domain
- Start a MS-DOS command prompt and type the nslookup command:
C:> <B>nslookup</B> Default Server: youserver.yourdomain Address: X.X.X.X > <B>set type=MX</B> > <B>microsoft.com</B> microsoft.com MX preference = 10, mail exchanger = mail1.microsoft.com microsoft.com MX preference = 20, mail exchanger = mail2.microsoft.com microsoft.com MX preference = 30, mail exchanger = mail3.microsoft.com microsoft.com MX preference = 40, mail exchanger = mail4.microsoft.com microsoft.com MX preference = 50, mail exchanger = mail5.microsoft.com
Queries and Responses are usually sent via UDP (datagrams), in one (or more) packets (some implementations use TCP instead of UDP).
Resource Records
Information in the DNS is held in Resource Records (RR); when a server replies to a resolver, it sends resource records in its response. RRs come in different types and formats, as describes in this section. General Resource Record Format
All RRs have the same top level format shown below:
Where:
NAME | an owner name, i.e., the name of the node to which this resource record pertains. |
TYPE | two octets containing one of the RR TYPE codes. Valid types include: |
CLASS | two octets containing one of the RR CLASS codes. Valid classes are: |
TTL | a 32 bit signed integer that specifies the time interval (in seconds) that the resource record may be cached before the source of the information should again be consulted. Zero values are interpreted to mean that the RR can only be used for the transaction in progress, and should not be cached. |
RDLENGTH | an unsigned 16 bit integer that specifies the length in octets of the RDATA field. |
RDATA | a variable length string of octets that describes the resource. The format of this information varies according to the TYPE and CLASS of the resource record. See below for list of the most common types. |
Standard Resource Record Formats
Internet Address Format (A)
The A RR contains an IPv4 address (32 bits):
Canonical Name Format (CNAME)
The CNAME RR contains a resource name (sequence of labels):
Domain Name Pointer Format (PTR)
The PTR RR contains a resource name (sequence of labels):
Mail eXchanger Format (MX)
The MX RR contains a preference (integer, 16 bits) and a resource name (sequence of labels):
Well Known DNS Implementations
Resolver Tool: nslookup
Windows NT provides a DNS resolver via the command-line program nslookup (probably a port of the nslookup program shipped with BIND). With this program, you can read information from the DNS database.
Here’s an example sesssion of the nslookup program:
In the kit, you’ll find the BIND implementation of nslookup (runs on Windows 95/98) as well as the NT implementation of nslookup (see sub-directory ‘nslookup’). Type ‘help’ to get the full syntax of nslookup commands:
> <B>help</B> Commands: (identifiers are shown in uppercase, [] means optional) NAME - print info about the host/domain NAME using default server NAME1 NAME2 - as above, but use NAME2 as server help or ? - print info on common commands set OPTION - set an option all - print options, current server and host [no]debug - print debugging information [no]d2 - print exhaustive debugging information [no]defname - append domain name to each query [no]recurse - ask for recursive answer to query [no]search - use domain search list [no]vc - always use a virtual circuit domain=NAME - set default domain name to NAME srchlist=N1[/N2/.../N6] - set domain to N1 and search list to N1,N2, etc. root=NAME - set root server to NAME retry=X - set number of retries to X timeout=X - set initial time-out interval to X seconds type=X - set query type (ex. A,ANY,CNAME,MX,NS,PTR,SOA,SRV) querytype=X - same as type class=X - set query class (ex. IN (Internet), ANY) [no]msxfr - use MS fast zone transfer ixfrver=X - current version to use in IXFR transfer request server NAME - set default server to NAME, using current default server lserver NAME - set default server to NAME, using initial server finger [USER] - finger the optional NAME at the current default host root - set current default server to the root ls [opt] DOMAIN [> FILE] - list addresses in DOMAIN (optional: output to FILE) -a - list canonical names and aliases -d - list all records -t TYPE - list records of the given type (e.g. A,CNAME,MX,NS,PTR etc.) view FILE - sort an 'ls' output file and view it with pg exit - exit the program > |
DNS Magic: Who’s my email server?
There’s a strong link between Internet email and the DNS. Mail servers use the DNS information database to route email messages from the originator to the recipient.
Basically, when the recipient email address is “someone@somewhere.com”, the mail server searches the mail server (or Mail eXchanger) for domain “somewhere.com” in the DNS database. It then connects to the mail server (on port 25) and sends the email using SMTP.
Mail servers are registered in the DNS database as “Mail eXchanger” (“MX”) records. Note that there can be several registered mail servers for a given domain (with a preference assigned to each server).
Using nslookup, you can find the email server of your domain, as shown in the sample session below.
The lowest preference indicates the best (primary) mail server. A mailer would try it first and if it cannot connect to this server, it would use other servers (by order of preference).
You can test this “DNS Magic” by using the nslookup program shipped with Windows NT, the nslookup shipped with this article (in sub-directory nslookup) or with the DNS Magic HTML page. This component provides method ISimpleDNSClient::GetEmailServers() to find the registered email servers for a given domain.
For more about email and DNS, please see the reference documentation.
COMPONENT FEATURES
This component:
- implements the basics of DNS, as defined in RFC1034 and RFC1035,
- sends DNS requests via UDP
- receives and process DNS replies via UDP
- supports multiple (up to 6) DNS servers (if first doesn’t reply, try with second, etc…)
- finds DNS server addresses in local configuration (Windows Registry)
- provides extended error information (ISupportErrorInfo and IErrorInfo are implemented)
- provides very small executable: 72 KB (MinSize) to 84 KB (MinDependency)
- requires no Graphical User Interface: the component can be used in non-GUI applications, like a Windows NT Service.
- is integrated with SimpleEmailClient (another component): the latter calls method GetEmailServers to automatically find SMTP servers
- runs on Windows NT 4.0 SP5, Windows 95 (not tested) and Windows 98 (not tested)
- compiles with VC++ 6.0 SP3
USAGE
To use this component:
- create an instance of the component,
- put/get properties from interface ISimpleDNSClient:
- ServerAddresses
- Separator
- call a method from interface ISimpleDNSClient:
- Resolve
- GetEmailServers
- GetDNSDomain
- FindPrimaryServer
- handle errors (try/catch in C++, On Error Resume Next in VBScript)
SAMPLE CODE (VBScript)
Dim oDNS <font color="#008000"> ' Create object instance</font> Set oDNS = CreateObject("Emmanuel.SimpleDNSClient.1") <font color="#008000"> ' Declare output variable </font> Dim found_names <font color="#008000"> ' Set the server address(es) [optional on Windows NT, </font> <font color="#008000"> ' mandatory on Win95/98]</font> oDNS.ServerAddresses = "99.99.99.99" <font color="#008000"> ' Set separator for output variable (if multiple </font> <font color="#008000"> ' results are found)</font> oDNS.Separator = ", " <font color="#008000"> ' (1) Find IP address of hostname "www.microsoft.com" </font> <font color="#008000"> ' (Internet class, type A)</font> On Error Resume Next oDNS.Resolve "www.microsoft.com", found_names, "C_IN", "T_A" If Err <> 0 Then MsgBox Err.Description Else ' Show resolved names (within dialog box) MsgBox "Found names:" & vbCrLf & vbCrLf & found_names End If <font color="#008000"> ' (2) Find Email Servers for domain "microsoft.com"</font> On Error Resume Next oDNS.GetEmailServers "microsoft.com", found_names If Err <> 0 Then MsgBox Err.Description Else <font color="#008000"> ' Show resolved names (within dialog box)</font> MsgBox "Found names:" & vbCrLf & vbCrLf & found_names End If |
Please refer to the test HTML files “Test Simple DNS Resolver” and “Test DNS Magic” for a full VBSsript example (see GUI below).
IMPLEMENTATION
This component relies on a porting of the BIND resolver library. It’s available on the project DNSResolverLibrary (.dsp) in the kit. Please refer to the Component online documentation for more details.
The next version will be implemented in Java (hopefully).
TO DO LIST
- Support All DNS Resource Records (only “T_A”, “T_MX”, “T_CNAME”, “T_NS” and “T_PTR” are supported)
- Support DNS Security extensions (RFC 2535, “Domain Name System Security Extensions”)
REFERENCE DOCUMENTATION
- Book: “DNS and BIND”, by Paul Albitz & Cricket Liu, O’Reilly & Associates
If you have to deal with DNS, I strongly recommend you to read this book: it’s a very good presentation of DNS, from the protocol itself to the configuration tricks of a DNS server (using BIND).
http://www.oreilly.com/catalog/dns3/index.html - BIND (Berkeley Internet Name Domain), the reference implementation of the Domain Name System (DNS) protocols.
http://www.isc.org/products/BIND - A deprecated version of BIND, but who compiles and runs on Windows NT
ftp://ftp.is.co.za/networking/ip/dns/bind/nt/kahn/ntbind497rel.zip - RFC 1034: “DOMAIN NAMES – CONCEPTS AND FACILITIES”
http://www.ietf.org/rfc/rfc1034.txt - RFC 1035: “DOMAIN NAMES – IMPLEMENTATION AND SPECIFICATION”
http://www.ietf.org/rfc/rfc1035.txt - RFC 0974: “Mail routing and the domain system”
http://www.ietf.org/rfc/rfc0974.txt - RFC 1712: “DNS Encoding of Geographical Location”
http://www.ietf.org/rfc/rfc1712.txt - RFC 2181: “Clarifications to the DNS Specification”
http://www.ietf.org/rfc/rfc2181.txt - RFC 2671: “Extension Mechanisms for DNS (EDNS0)”
http://www.ietf.org/rfc/rfc2671.txt - RFC 2535: “Domain Name System Security Extensions”
http://www.ietf.org/rfc/rfc2535.txt - RFC 2536: “DSA KEYs and SIGs in the Domain Name System (DNS)”
http://www.ietf.org/rfc/rfc2536.txt - RFC 2538: “Storing Certificates in the Domain Name System (DNS)”
http://www.ietf.org/rfc/rfc2538.txt
Downloads
Download source project – 401 Kb
Download self-extracting kit – 245 Kb