Authority section
Additional section
You'll also find opcode, response code, type, and class values defined in arpa/nameser.h as well as routines to extract this information from a message. We'll discuss these routines, part of the name server library, shortly.query identification number (2 octets) query response (1 bit) opcode (4 bits) authoritative answer (1 bit) truncation (1 bit) recursion desired (1 bit) recursion available (1 bit) reserved (3 bits) response code (4 bits) question count (2 octets) answer record count (2 octets) name server record count (2 octets) additional record count (2 octets)
The question section is described on pages 28-29 of RFC 1035. It looks like this:
The answer, authority, and additional sections are described on pages 29-30 of RFC 1035. These sections comprise some number of resource records that look like this:domain name (variable length) query type (2 octets) query class (2 octets)
The header section contains a count of how many of these resource records are in each section.domain name (variable length) type (2 octets) class (2 octets) TTL (4 octets) resource data length (2 octets) resource data (variable length)
You can imagine how much of a DNS message could be devoted to storing names. The developers of DNS recognized this and came up with a simple way to compress domain names.6 venera 3 isi 3 edu 0
The first two bits of the length octet indicate whether a length/label pair or a pointer to a length/label pair follows. If the first two bits are zero, then the length and label follow. As you may remember from way back in Chapter 2, "How Does DNS Work?", a label is limited to 63 characters. That's because the length field has only the remaining six bits for the length of the label -- enough to represent the lengths 0-63. If the first two bits of the length octet are ones, then what follows is not a length but a pointer. The pointer is the last six bits of the length octet and the next octet -- 14 bits in total. The pointer is an offset from the start of the DNS message. Now, when vaxa.isi.edu is compressed into a buffer containing only venera.isi.edu, this is what results:
The 0xC0 is a byte with the high two bits ones and the rest of the bits zeros. Since the high two bits are ones, this is a pointer instead of a length. The pointer value is seven -- the last six bits of the first octet are zeros and the second octet is seven. At offset seven in this buffer, you find the rest of the domain name that begins with vaxa, which is isi.edu.byte offset: 0 123456 7 890 1 234 5 6 7890 1 2 -------------+--------------+-------- pkt contents: 6 venera 3 isi 3 edu 0 4 vaxa 0xC0 7
In this example, we only showed compressing two domain names in a buffer, not a whole DNS message. A DNS message would have had a header as well as other fields. This example is intended only to give you an idea of how the domain name compression works. Now the good news: you don't really need to care how names are compressed as long as the library routines do it properly. What you do need to know is how parsing a DNS response message can get messed up if you are off by one byte. For example, try to expand the name starting with byte two instead of byte one. You'll discover that "v" doesn't make a very good length octet or pointer.
In case you're wondering why we're not using the BIND 9 resolver routines in our code, well, they haven't been written yet. BIND 9 includes library routines to perform lots of powerful DNS functions, but they're oriented toward the BIND 9's name server's needs and are very complicated to use, we're told. The developers tell us that a simpler resolver library is coming and that in the meantime, we should use the BIND 8 resolver library. A program linked against the BIND 8 library routines will work just fine with a BIND 9 name server.
Here are the header files you must include:
Now let's look at the resolver library routines.#include <sys/types.h> #include <netinet/in.h> #include <arpa/nameser.h> #include <resolv.h>
res_search |
res_search is the "highest level" resolver routine, and is called by gethostbyname. res_search applies the search algorithm to the domain name passed to it. That is, it takes the domain name it receives (dname), "completes" the name (if it's not fully qualified) by adding the various domain names from the resolver search list, and calls res_query until it receives a successful response, indicating that it found a valid, fully qualified domain name. In addition to implementing the search algorithm, res_search looks in the file referenced by your HOSTALIASES environment variable. (The HOSTALIASES variable was described in Chapter 6, "Configuring Hosts".) So it also takes care of any "private" host aliases you might have. res_search returns the size of the response or fills in h_errno and returns -1 if there was an error or the answer count is zero. (h_errno is like errno, but for DNS lookups.)Therefore, the only parameter that's really of interest to res_search is dname ; the others are just passed through to res_query and the other resolver routines. The other arguments are:int res_search(const char *dname, int class, int type, u_char *answer, int anslen)
res_query |
res_query is one of the "midlevel" resolver routines. It does all the real work in looking up the domain name: it makes a query message by calling res_mkquery, sends the query by calling res_send, and looks at enough of the response to determine whether your question was answered. In many cases, res_query is called by res_search, which just feeds it the different domain names to look up. As you'd expect, these two functions have the same arguments. res_query returns the size of the response, or it fills in h_errno and returns -1 if there was an error or the answer count was zero.int res_query(const char *dname, int class, int type, u_char *answer, int anslen)
res_mkquery |
res_mkquery creates the query message. It fills in all the header fields, compresses the domain name into the question section, and fills in the other question fields.The dname, class, and type arguments are the same as for res_search and res_query. The remaining arguments are:int res_mkquery(int op, const char *dname, int class, int type, const u_char *data, int datalen, const u_char *newrr, u_char *buf, int buflen)
res_send |
res_send implements the retry algorithm. It sends the query message, msg, in a UDP datagram, but it can also send it over a TCP stream. The response message is stored in answer. This routine, of all the resolver routines, is the only one to use black magic (unless you know all about connected datagram sockets). You've seen these arguments before in the other resolver routines:int res_send(const u_char *msg, int msglen, u_char *answer, int anslen)
res_init |
res_init reads resolv.conf and initializes a data structure called _res (more about that later). All the previously discussed routines will call res_init if they detect that it hasn't been called previously. Or you can call it on your own; this is useful if you want to change some of the defaults before calling the first resolver library routine. If there are any lines in resolv.conf that res_init doesn't understand, it ignores them. res_init always returns zero, even if the manpage reserves the right to return -1.int res_init(void)
herror and h_errno |
herror is a routine like perror, except that it prints out a string based on the value of the external variable h_errno instead of errno. The only argument is:extern int h_errno; int herror(const char *s)
The options field is a simple bit mask of the enabled options. To turn on a feature, turn on the corresponding bit in the options field. Bit masks for each of the options are defined in resolv.h; the options are:struct _ _res_state { int retrans; /* retransmission time interval */ int retry; /* number of times to retransmit */ u_long options; /* option flags - see below. */ int nscount; /* number of name servers */ struct sockaddr_in nsaddr_list[MAXNS]; /* address of name server */ #define nsaddr nsaddr_list[0] /* for backward compatibility */ u_short id; /* current packet id */ char *dnsrch[MAXDNSRCH+1]; /* components of domain to search */ char defdname[MAXDNAME]; /* default domain */ u_long pfcode; /* RES_PRF_ flags - see below. */ unsigned ndots:4; /* threshold for initial abs. query */ unsigned nsort:4; /* number of elements in sort_list[] */ char unused[3]; struct { struct in_addr addr; /* address to sort on */ u_int32_t mask; } sort_list[MAXRESOLVSORT]; };
Following are the name server library routines.#include <sys/types.h> #include <netinet/in.h> #include <netdb.h> #include <arpa/nameser.h> #include <resolv.h>
ns_initparse |
ns_initparse is the first routine you must call before you use the other name server library routines. ns_initparse fills in the data structure pointed to by handle, which is a parameter passed to other routines. The arguments are:int ns_initparse(const u_char *msg, int msglen, ns_msg *handle)
ns_msg_base, ns_msg_end, and ns_msg_size |
These routines return a pointer to the start of the message, a pointer to the end of the message, and the size of the message. They return the data you passed into ns_initparse. The only argument is:const u_char *ns_msg_base(ns_msg handle) const u_char *ns_msg_end(ns_msg handle) int ns_msg_size(ns_msg handle)
ns_msg_id |
ns_msg _id returns the identification from the header section (described earlier) of the response message. The only argument is:u_int16_t ns_msg_id(ns_msg handle)
ns_msg_get_flag |
ns_msg _ get_ flag returns the "flag" fields from the header section of the response message. Its arguments are:u_int16_t ns_msg_get_flag(ns_msg handle, ns_flag flag)
ns_f_qr /* Question/Response */ ns_f_opcode /* Operation Code */ ns_f_aa /* Authoritative Answer */ ns_f_tc /* Truncation Occurred */ ns_f_rd /* Recursion Desired */ ns_f_ra /* Recursion Available */ ns_f_z /* Must Be Zero */ ns_f_ad /* Authentic Data (DNSSEC) */ ns_f_cd /* Checking Disabled (DNSSEC) * ns_f_rcode /* Response Code */ ns_f_max
ns_msg_count |
ns_msg_count returns a counter from the header section of the response message. Its arguments are:u_int16_t ns_msg_count(ns_msg handle, ns_sect section)
ns_s_qd /* Query: Question section */ ns_s_zn /* Update: Zone section */ ns_s_an /* Query: Answer section */ ns_s_pr /* Update: Prerequisite section */ ns_s_ns /* Query: Name Server section */ ns_s_ud /* Update: Update section */ ns_s_ar /* Query|Update: Additional records section */
ns_parserr |
ns_parserr extracts information about a response record and stores it in rr, whichis a parameter passed to other name server libarary routines. The arguments are:int ns_parserr(ns_msg *handle, ns_sect section, int rrnum, ns_rr *rr)
ns_rr routines |
These routines return individual fields from a response record. Their only argument is:char *ns_rr_name(ns_rr rr) u_int16_t ns_rr_type(ns_rr rr) u_int16_t ns_rr_class(ns_rr rr) u_int32_t ns_rr_ttl(ns_rr rr) u_int16_t ns_rr_rdlen(ns_rr rr) const u_char *ns_rr_rdata(ns_rr rr)
ns_name_compress |
ns_name_compress compresses a domain name. You won't normally call this routine yourself -- you'll let res_mkquery do it for you. However, if you need to compress a name for some reason, this is the tool to do it. The arguments are:int ns_name_compress(const char *exp_dn, u_char *comp_dn, size_t length, const u_char **dnptrs, const u_char **lastdnptr)
ns_name_uncompress |
ns_name_uncompress expands a "compressed" domain name. You'll use this routine if you parse a name server response message, as we do in check_soa, the C program that follows. The arguments are:int ns_name_uncompress(const u_char *msg, const u_char *eomorig, const u_char *comp_dn, char *exp_dn, size_t length)
ns_name_skip |
ns_name_skip is like ns_name_uncompress, but instead of uncompressing the name, it just skips over it. The arguments are:int ns_name_skip(const u_char **ptrptr, const u_char *eom)
ns_get16 and ns_put16 |
The DNS messages have fields that are unsigned short integer (type, class, and data length, to name a few). ns_get16 returns a 16-bit integer pointed to by cp, and ns_put16 assigns the 16-bit value of s to the location pointed to by cp.u_int ns_get16(const u_char *cp) void ns_put16(u_int s, u_char *cp)
You won't always want to parse the DNS response manually. An "intermediate" way to parse the response is to call p_query, which calls fp_query, to print out the DNS message. Then use Perl or awk to grab what you need. Cricket has been known to wimp out this way.
Here are the header files that are needed, the declarations for external variables, and the declarations of functions. Notice that we use both h_errno (for the resolver routines) and errno. We limit this program to checking 20 name servers. You'll rarely see a zone with more than 10 name servers, so an upper limit of 20 should suffice:
The main body of the program is small. We have an array of string pointers, nsList, to store the names of the name servers for the zone. We call the resolver function res_init to initialize the _res structure. It wasn't necessary for this program to call res_init explicitly since it would have been called by the first resolver routine that used the _res structure. However, if we had wanted to modify the value of any of the _res fields before calling the first resolver routine, we would have made the modifications right after calling res_init. Next, the program calls findNameServers to find all the name servers for the zone referenced in argv[1] and to store them in nsList. Last, the program calls queryNameServers to query each of the name servers in nsList for the SOA record for the zone:/**************************************************************** * check_soa -- Retrieve the SOA record from each name server * * for a given zone and print out the serial number. * * * * usage: check_soa zone * * * * The following errors are reported: * * o There is no address for a server. * * o There is no server running on this host. * * o There was no response from a server. * * o The server is not authoritative for the zone. * * o The response had an error response code. * * o The response had more than one answer. * * o The response answer did not contain an SOA record. * * o The expansion of a compressed domain name failed. * ****************************************************************/ /* Various header files */ #include <sys/types.h> #include <netinet/in.h> #include <netdb.h> #include <stdio.h> #include <errno.h> #include <arpa/nameser.h> #include <resolv.h> /* Error variables */ extern int h_errno; /* for resolver errors */ extern int errno; /* general system errors */ /* Our own routines; code included later in this chapter */ void nsError( ); /* report resolver errors */ void findNameServers( ); /* find a zone's name servers */ void addNameServers( ); /* add name servers to our list */ void queryNameServers( ); /* grab SOA records from servers */ void returnCodeError( ); /* report response message errors */ /* Maximum number of name servers we will check */ #define MAX_NS 20
The routine findNameServers follows. This routine queries the local name server for the NS records for the zone. It then calls addNameServers to parse the response message and store away all the name servers it finds. The header files, arpa/nameser.h and resolv.h, contain declarations we make extensive use of:main(argc, argv) int argc; char *argv[]; { char *nsList[MAX_NS]; /* list of name servers */ int nsNum = 0; /* number of name servers in list */ /* sanity check: one (and only one) argument? */ if(argc != 2){ (void) fprintf(stderr, "usage: %s zone\n", argv[0]); exit(1); } (void) res_init( ); /* * Find the name servers for the zone. * The name servers are written into nsList. */ findNameServers(argv[1], nsList, &nsNum); /* * Query each name server for the zone's SOA record. * The name servers are read from nsList. */ queryNameServers(argv[1], nsList, nsNum); exit(0); }
Notice that we don't explicitly check for finding zero name server records. We don't need to check because res_query flags that case as an error; it returns -1 and sets herrno to NO_DATA. If res_query returns -1, we call our own routine, nsError, to print out an error string from h_errno instead of using herror. The herror routine isn't a good fit for our program because its messages assume you are looking up address data (e.g., if h_ errno is NO_DATA, the error message is "No address associated with name")./**************************************************************** * findNameServers -- find all of the name servers for the * * given zone and store their names in nsList. nsNum is * * the number of servers in the nsList array. * ****************************************************************/ void findNameServers(domain, nsList, nsNum) char *domain; char *nsList[]; int *nsNum; { union { HEADER hdr; /* defined in resolv.h */ u_char buf[NS_PACKETSZ]; /* defined in arpa/nameser.h */ } response; /* response buffers */ int responseLen; /* buffer length */ ns_msg handle; /* handle for response message */ /* * Look up the NS records for the given domain name. * We expect the domain name to be a fully qualified, so * we use res_query( ). If we'd wanted the resolver search * algorithm, we would have used res_search( ) instead. */ if((responseLen = res_query(domain, /* the zone we care about */ ns_c_in, /* Internet class records */ ns_t_ns, /* Look up name server records*/ (u_char *)&response, /*response buffer*/ sizeof(response))) /*buffer size */ < 0){ /*If negative */ nsError(h_errno, domain); /* report the error */ exit(1); /* and quit */ } /* * Initialize a handle to this response. The handle will * be used later to extract information from the response. */ if (ns_initparse(response.buf, responseLen, &handle) < 0) { fprintf(stderr, "ns_initparse: %s\n", strerror(errno)); return; } /* * Create a list of name servers from the response. * NS records may be in the answer section and/or in the * authority section depending on the DNS implementation. * Walk through both. The name server addresses may be in * the additional records section, but we will ignore them * since it is much easier to call gethostbyname( ) later * than to parse and store the addresses here. */ /* * Add the name servers from the answer section. */ addNameServers(nsList, nsNum, handle, ns_s_an); /* * Add the name servers from the authority section. */ addNameServers(nsList, nsNum, handle, ns_s_ns); } /**************************************************************** * addNameServers -- Look at the resource records from a * * section. Save the names of all name servers. * ****************************************************************/ void addNameServers(nsList, nsNum, handle, section) char *nsList[]; int *nsNum; ns_msg handle; ns_sect section; { int rrnum; /* resource record number */ ns_rr rr; /* expanded resource record */ int i, dup; /* misc variables */ /* * Look at all the resource records in this section. */ for(rrnum = 0; rrnum < ns_msg_count(handle, section); rrnum++) { /* * Expand the resource record number rrnum into rr. */ if (ns_parserr(&handle, section, rrnum, &rr)) { fprintf(stderr, "ns_parserr: %s\n", strerror(errno)); } /* * If the record type is NS, save the name of the * name server. */ if (ns_rr_type(rr) == ns_t_ns) { /* * Allocate storage for the name. Like any good * programmer should, we test malloc's return value, * and quit if it fails. */ nsList[*nsNum] = (char *) malloc (MAXDNAME); if(nsList[*nsNum] == NULL){ (void) fprintf(stderr, "malloc failed\n"); exit(1); } /* Expand the name server's domain name */ if (ns_name_uncompress( ns_msg_base(handle),/* Start of the message */ ns_msg_end(handle), /* End of the message */ ns_rr_rdata(rr), /* Position in the message */ nsList[*nsNum], /* Result */ MAXDNAME) /* Size of nsList buffer */ < 0) { /* Negative: error */ (void) fprintf(stderr, "ns_name_uncompress failed\n"); exit(1); } /* * Check the domain name we've just unpacked and add it to * the list of name servers if it is not a duplicate. * If it is a duplicate, just ignore it. */ for(i = 0, dup=0; (i < *nsNum) && !dup; i++) dup = !strcasecmp(nsList[i], nsList[*nsNum]); if(dup) free(nsList[*nsNum]); else (*nsNum)++; } } }
The next routine queries each name server that we've found for an SOA record. In this routine, we change the value of several of the _res structure fields. By changing the nsaddr_list field, we change which name server res_send queries. We disable the search list by turning off bits in the options field -- all the domain names that this program handles are fully qualified:
Notice that we use recursive queries when we call gethostbyname, but nonrecursive queries when we look up the SOA record. gethostbyname may need to query other name servers to find the host's address. But we don't want the name server querying another server when we ask it for the SOA record -- it's supposed to be authoritative for this zone, after all. Allowing the name server to ask another server for the SOA record would defeat the error check./****************************************************************** * queryNameServers -- Query each of the name servers in nsList * * for the SOA record of the given zone. Report any * * errors encountered (e.g., a name server not running or * * the response not being an authoritative response). If * * there are no errors, print out the serial number for the zone. * ******************************************************************/ void queryNameServers(domain, nsList, nsNum) char *domain; char *nsList[]; int nsNum; { union { HEADER hdr; /* defined in resolv.h */ u_char buf[NS_PACKETSZ]; /* defined in arpa/nameser.h */ } query, response; /* query and response buffers */ int responseLen, queryLen; /* buffer lengths */ u_char *cp; /* character pointer to parse DNS message */ struct in_addr saveNsAddr[MAXNS]; /* addrs saved from _res */ int nsCount; /* count of addresses saved from _res */ struct hostent *host; /* structure for looking up ns addr */ int i; /* counter variable */ ns_msg handle; /* handle for response message */ ns_rr rr; /* expanded resource record */ /* * Save the _res name server list since * we will need to restore it later. */ nsCount = _res.nscount; for(i = 0; i < nsCount; i++) saveNsAddr[i] = _res.nsaddr_list[i].sin_addr; /* * Turn off the search algorithm and turn off appending * the local domain name before we call gethostbyname( ); * the name server's domain names will be fully qualified. */ _res.options &= ~(RES_DNSRCH | RES_DEFNAMES); /* * Query each name server for the zone's SOA record. */ for(nsNum-- ; nsNum >= 0; nsNum--){ /* * First, we have to get the IP address of every name server. * So far, all we have are domain names. We use gethostbyname( ) * to get the addresses, rather than anything fancy. * But first, we have to restore certain values in _res * because _res affects gethostbyname( ). (We altered * _res in the previous iteration through the loop.) * * We can't just call res_init( ) again to restore * these values since some of the _res fields are * initialized when the variable is declared, not when * res_init( ) is called. */ _res.options |= RES_RECURSE; /* recursion on (default) */ _res.retry = 4; /* 4 retries (default) */ _res.nscount = nsCount; /* original name servers */ for(i = 0; i < nsCount; i++) _res.nsaddr_list[i].sin_addr = saveNsAddr[i]; /* Look up the name server's address */ host = gethostbyname(nsList[nsNum]); if (host == NULL) { (void) fprintf(stderr,"There is no address for %s\n", nsList[nsNum]); continue; /* nsNum for-loop */ } /* * Now get ready for the real fun. host contains IP * addresses for the name server we're testing. * Store the first address for host in the _res * structure. Soon, we'll look up the SOA record... */ (void) memcpy((void *)&_res.nsaddr_list[0].sin_addr, (void *)host->h_addr_list[0], (size_t)host->h_length); _res.nscount = 1; /* * Turn off recursion. We don't want the name server * querying another server for the SOA record; this name * server ought to be authoritative for this data. */ _res.options &= ~RES_RECURSE; /* * Reduce the number of retries. We may be checking * several name servers, so we don't want to wait too * long for any one server. With two retries and only * one address to query, we'll wait at most 15 seconds. */ _res.retry = 2; /* * We want to see the response code in the next * response, so we must make the query message and * send it ourselves instead of having res_query( ) * do it for us. If res_query( ) returned -1, there * might not be a response to look at. * * There is no need to check for res_mkquery( ) * returning -1. If the compression was going to * fail, it would have failed when we called * res_query( ) earlier with this domain name. */ queryLen = res_mkquery( ns_o_query, /* regular query */ domain, /* the zone to look up */ ns_c_in, /* Internet type */ ns_t_soa, /* look up an SOA record */ (u_char *)NULL, /* always NULL */ 0, /* length of NULL */ (u_char *)NULL, /* always NULL */ (u_char *)&query,/* buffer for the query */ sizeof(query)); /* size of the buffer */ /* * Send the query message. If there is no name server * running on the target host, res_send( ) returns -1 * and errno is ECONNREFUSED. First, clear out errno. */ errno = 0; if((responseLen = res_send((u_char *)&query,/* the query */ queryLen, /* true length*/ (u_char *)&response,/*buffer */ sizeof(response))) /*buf size*/ < 0){ /* error */ if(errno == ECONNREFUSED) { /* no server on the host */ (void) fprintf(stderr, "There is no name server running on %s\n", nsList[nsNum]); } else { /* anything else: no response */ (void) fprintf(stderr, "There was no response from %s\n", nsList[nsNum]); } continue; /* nsNum for-loop */ } /* * Initialize a handle to this response. The handle will * be used later to extract information from the response. */ if (ns_initparse(response.buf, responseLen, &handle) < 0) { fprintf(stderr, "ns_initparse: %s\n", strerror(errno)); return; } /* * If the response reports an error, issue a message * and proceed to the next server in the list. */ if(ns_msg_getflag(handle, ns_f_rcode) != ns_r_noerror){ returnCodeError(ns_msg_getflag(handle, ns_f_rcode), nsList[nsNum]); continue; /* nsNum for-loop */ } /* * Did we receive an authoritative response? Check the * authoritative answer bit. If this name server isn't * authoritative, report it, and go on to the next server. */ if(!ns_msg_getflag(handle, ns_f_aa)){ (void) fprintf(stderr, "%s is not authoritative for %s\n", nsList[nsNum], domain); continue; /* nsNum for-loop */ } /* * The response should only contain one answer; if more, * report the error, and proceed to the next server. */ if(ns_msg_count(handle, ns_s_an) != 1){ (void) fprintf(stderr, "%s: expected 1 answer, got %d\n", nsList[nsNum], ns_msg_count(handle, ns_s_an)); continue; /* nsNum for-loop */ } /* * Expand the answer section record number 0 into rr. */ if (ns_parserr(&handle, ns_s_an, 0, &rr)) { if (errno != ENODEV){ fprintf(stderr, "ns_parserr: %s\n", strerror(errno)); } } /* * We asked for an SOA record; if we got something else, * report the error and proceed to the next server. */ if (ns_rr_type(rr) != ns_t_soa) { (void) fprintf(stderr, "%s: expected answer type %d, got %d\n", nsList[nsNum], ns_t_soa, ns_rr_type(rr)); continue; /* nsNum for-loop */ } /* * Set cp to point the the SOA record. */ cp = (u_char *)ns_rr_rdata(rr); /* * Skip the SOA origin and mail address, which we don't * care about. Both are standard "compressed names." */ ns_name_skip(&cp, ns_msg_end(handle)); ns_name_skip(&cp, ns_msg_end(handle)); /* cp now points to the serial number; print it. */ (void) printf("%s has serial number %d\n", nsList[nsNum], ns_get32(cp)); } /* end of nsNum for-loop */ }
The next two routines print out error messages:
To compile this program using the resolver and name server routines in libc:/**************************************************************** * nsError -- Print an error message from h_errno for a failure * * looking up NS records. res_query( ) converts the DNS * * message return code to a smaller list of errors and * * places the error value in h_errno. There is a routine * * called herror( ) for printing out strings from h_errno * * like perror( ) does for errno. Unfortunately, the * * herror( ) messages assume you are looking up address * * records for hosts. In this program, we are looking up * * NS records for zones, so we need our own list of error * * strings. * ****************************************************************/ void nsError(error, domain) int error; char *domain; { switch(error){ case HOST_NOT_FOUND: (void) fprintf(stderr, "Unknown zone: %s\n", domain); break; case NO_DATA: (void) fprintf(stderr, "No NS records for %s\n", domain); break; case TRY_AGAIN: (void) fprintf(stderr, "No response for NS query\n"); break; default: (void) fprintf(stderr, "Unexpected error\n"); break; } } /**************************************************************** * returnCodeError -- print out an error message from a DNS * * response return code. * ****************************************************************/ void returnCodeError(rcode, nameserver) ns_rcode rcode; char *nameserver; { (void) fprintf(stderr, "%s: ", nameserver); switch(rcode){ case ns_r_formerr: (void) fprintf(stderr, "FORMERR response\n"); break; case ns_r_servfail: (void) fprintf(stderr, "SERVFAIL response\n"); break; case ns_r_nxdomain: (void) fprintf(stderr, "NXDOMAIN response\n"); break; case ns_r_notimpl: (void) fprintf(stderr, "NOTIMP response\n"); break; case ns_r_refused: (void) fprintf(stderr, "REFUSED response\n"); break; default: (void) fprintf(stderr, "unexpected return code\n"); break; } }
Or, if you've newly compiled the BIND code as we describe in Appendix C, "Compiling and Installing BIND on Linux", and want to use the latest header files and resolver library:% cc -o check_soa check_soa.c
Here is what the output looks like:% cc -o check_soa -I/usr/local/src/bind/src/include \ check_soa.c /usr/local/src/bind/src/lib/libbind.a
If you look back at the shell script output, it looks the same, except that the shell script's output is sorted by the name server's name. What you can't see is that the C program ran much faster.% check_soa mit.edu BITSY.MIT.EDU has serial number 1995 W20NS.MIT.EDU has serial number 1995 STRAWB.MIT.EDU has serial number 1995