1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
|
<?xml version="1.0" encoding="utf-8"?>
<!--
- Copyright (C) 2010 Internet Systems Consortium, Inc. ("ISC")
-
- Permission to use, copy, modify, and/or distribute this software for any
- purpose with or without fee is hereby granted, provided that the above
- copyright notice and this permission notice appear in all copies.
-
- THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
- REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
- AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
- INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
- LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
- OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- PERFORMANCE OF THIS SOFTWARE.
-->
<sect1 id="bind9.library">
<title>BIND 9 DNS Library Support</title>
<para>This version of BIND 9 "exports" its internal libraries so
that they can be used by third-party applications more easily (we
call them "export" libraries in this document). In addition to
all major DNS-related APIs BIND 9 is currently using, the export
libraries provide the following features:</para>
<itemizedlist>
<listitem>
<para>The newly created "DNS client" module. This is a higher
level API that provides an interface to name resolution,
single DNS transaction with a particular server, and dynamic
update. Regarding name resolution, it supports advanced
features such as DNSSEC validation and caching. This module
supports both synchronous and asynchronous mode.</para>
</listitem>
<listitem>
<para>The new "IRS" (Information Retrieval System) library.
It provides an interface to parse the traditional resolv.conf
file and more advanced, DNS-specific configuration file for
the rest of this package (see the description for the
dns.conf file below).</para>
</listitem>
<listitem>
<para>As part of the IRS library, newly implemented standard
address-name mapping functions, getaddrinfo() and
getnameinfo(), are provided. They use the DNSSEC-aware
validating resolver backend, and could use other advanced
features of the BIND 9 libraries such as caching. The
getaddrinfo() function resolves both A and AAAA RRs
concurrently (when the address family is unspecified).</para>
</listitem>
<listitem>
<para>An experimental framework to support other event
libraries than BIND 9's internal event task system.</para>
</listitem>
</itemizedlist>
<sect2>
<title>Prerequisite</title>
<para>GNU make is required to build the export libraries (other
part of BIND 9 can still be built with other types of make). In
the reminder of this document, "make" means GNU make. Note that
in some platforms you may need to invoke a different command name
than "make" (e.g. "gmake") to indicate it's GNU make.</para>
</sect2>
<sect2>
<title>Compilation</title>
<screen>
$ <userinput>./configure --enable-exportlib <replaceable>[other flags]</replaceable></userinput>
$ <userinput>make</userinput>
</screen>
<para>
This will create (in addition to usual BIND 9 programs) and a
separate set of libraries under the lib/export directory. For
example, <filename>lib/export/dns/libdns.a</filename> is the archive file of the
export version of the BIND 9 DNS library. Sample application
programs using the libraries will also be built under the
lib/export/samples directory (see below).</para>
</sect2>
<sect2>
<title>Installation</title>
<screen>
$ <userinput>cd lib/export</userinput>
$ <userinput>make install</userinput>
</screen>
<para>
This will install library object files under the directory
specified by the --with-export-libdir configure option (default:
EPREFIX/lib/bind9), and header files under the directory
specified by the --with-export-includedir configure option
(default: PREFIX/include/bind9).
Root privilege is normally required.
"<command>make install</command>" at the top directory will do the
same.
</para>
<para>
To see how to build your own
application after the installation, see
<filename>lib/export/samples/Makefile-postinstall.in</filename>.</para>
</sect2>
<sect2>
<title>Known Defects/Restrictions</title>
<itemizedlist>
<listitem>
<!-- TODO: what about AIX? -->
<para>Currently, win32 is not supported for the export
library. (Normal BIND 9 application can be built as
before).</para>
</listitem>
<listitem>
<para>The "fixed" RRset order is not (currently) supported in
the export library. If you want to use "fixed" RRset order
for, e.g. <command>named</command> while still building the
export library even without the fixed order support, build
them separately:
<screen>
$ <userinput>./configure --enable-fixed-rrset <replaceable>[other flags, but not --enable-exportlib]</replaceable></userinput>
$ <userinput>make</userinput>
$ <userinput>./configure --enable-exportlib <replaceable>[other flags, but not --enable-fixed-rrset]</replaceable></userinput>
$ <userinput>cd lib/export</userinput>
$ <userinput>make</userinput>
</screen>
</para>
</listitem>
<listitem>
<para>The client module and the IRS library currently do not
support DNSSEC validation using DLV (the underlying modules
can handle it, but there is no tunable interface to enable
the feature).</para>
</listitem>
<listitem>
<para>RFC 5011 is not supported in the validating stub
resolver of the export library. In fact, it is not clear
whether it should: trust anchors would be a system-wide
configuration which would be managed by an administrator,
while the stub resolver will be used by ordinary applications
run by a normal user.</para>
</listitem>
<listitem>
<para>Not all common <filename>/etc/resolv.conf</filename>
options are supported
in the IRS library. The only available options in this
version are "debug" and "ndots".</para>
</listitem>
</itemizedlist>
</sect2>
<sect2>
<title>The dns.conf File</title>
<para>The IRS library supports an "advanced" configuration file
related to the DNS library for configuration parameters that
would be beyond the capability of the
<filename>resolv.conf</filename> file.
Specifically, it is intended to provide DNSSEC related
configuration parameters. By default the path to this
configuration file is <filename>/etc/dns.conf</filename>.
This module is very
experimental and the configuration syntax or library interfaces
may change in future versions. Currently, only the
<command>trusted-keys</command>
statement is supported, whose syntax is the same as the same name
of statement for <filename>named.conf</filename>. (See
<xref linkend="trusted-keys" /> for details.)</para>
</sect2>
<sect2>
<title>Sample Applications</title>
<para>Some sample application programs using this API are
provided for reference. The following is a brief description of
these applications.
</para>
<sect3>
<title>sample: a simple stub resolver utility</title>
<para>
It sends a query of a given name (of a given optional RR type) to a
specified recursive server, and prints the result as a list of
RRs. It can also act as a validating stub resolver if a trust
anchor is given via a set of command line options.</para>
<para>
Usage: sample [options] server_address hostname
</para>
<para>
Options and Arguments:
</para>
<variablelist>
<varlistentry>
<term>
-t RRtype
</term>
<listitem><para>
specify the RR type of the query. The default is the A RR.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
[-a algorithm] [-e] -k keyname -K keystring
</term>
<listitem><para>
specify a command-line DNS key to validate the answer. For
example, to specify the following DNSKEY of example.com:
<literallayout>
example.com. 3600 IN DNSKEY 257 3 5 xxx
</literallayout>
specify the options as follows:
<screen>
<userinput>
-e -k example.com -K "xxx"
</userinput>
</screen>
-e means that this key is a zone's "key signing key" (as known
as "secure Entry point").
When -a is omitted rsasha1 will be used by default.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
-s domain:alt_server_address
</term>
<listitem><para>
specify a separate recursive server address for the specific
"domain". Example: -s example.com:2001:db8::1234
</para></listitem>
</varlistentry>
<varlistentry>
<term>server_address</term>
<listitem><para>
an IP(v4/v6) address of the recursive server to which queries
are sent.
</para></listitem>
</varlistentry>
<varlistentry>
<term>hostname</term>
<listitem><para>
the domain name for the query
</para></listitem>
</varlistentry>
</variablelist>
</sect3>
<sect3>
<title>sample-async: a simple stub resolver, working asynchronously</title>
<para>
Similar to "sample", but accepts a list
of (query) domain names as a separate file and resolves the names
asynchronously.</para>
<para>
Usage: sample-async [-s server_address] [-t RR_type] input_file</para>
<para>
Options and Arguments:
</para>
<variablelist>
<varlistentry>
<term>
-s server_address
</term>
<listitem>
an IPv4 address of the recursive server to which queries are sent.
(IPv6 addresses are not supported in this implementation)
</listitem>
</varlistentry>
<varlistentry>
<term>
-t RR_type
</term>
<listitem>
specify the RR type of the queries. The default is the A
RR.
</listitem>
</varlistentry>
<varlistentry>
<term>
input_file
</term>
<listitem>
a list of domain names to be resolved. each line
consists of a single domain name. Example:
<literallayout>
www.example.com
mx.examle.net
ns.xxx.example
</literallayout>
</listitem>
</varlistentry>
</variablelist>
</sect3>
<sect3>
<title>sample-request: a simple DNS transaction client</title>
<para>
It sends a query to a specified server, and
prints the response with minimal processing. It doesn't act as a
"stub resolver": it stops the processing once it gets any
response from the server, whether it's a referral or an alias
(CNAME or DNAME) that would require further queries to get the
ultimate answer. In other words, this utility acts as a very
simplified <command>dig</command>.
</para>
<para>
Usage: sample-request [-t RRtype] server_address hostname
</para>
<para>
Options and Arguments:
</para>
<variablelist>
<varlistentry>
<term>
-t RRtype
</term>
<listitem>
<para>
specify the RR type of
the queries. The default is the A RR.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
server_address
</term>
<listitem>
<para>
an IP(v4/v6)
address of the recursive server to which the query is sent.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
hostname
</term>
<listitem>
<para>
the domain name for the query
</para>
</listitem>
</varlistentry>
</variablelist>
</sect3>
<sect3>
<title>sample-gai: getaddrinfo() and getnameinfo() test code</title>
<para>
This is a test program
to check getaddrinfo() and getnameinfo() behavior. It takes a
host name as an argument, calls getaddrinfo() with the given host
name, and calls getnameinfo() with the resulting IP addresses
returned by getaddrinfo(). If the dns.conf file exists and
defines a trust anchor, the underlying resolver will act as a
validating resolver, and getaddrinfo()/getnameinfo() will fail
with an EAI_INSECUREDATA error when DNSSEC validation fails.
</para>
<para>
Usage: sample-gai hostname
</para>
</sect3>
<sect3>
<title>sample-update: a simple dynamic update client program</title>
<para>
It accepts a single update command as a
command-line argument, sends an update request message to the
authoritative server, and shows the response from the server. In
other words, this is a simplified <command>nsupdate</command>.
</para>
<para>
Usage: sample-update [options] (add|delete) "update data"
</para>
<para>
Options and Arguments:
</para>
<variablelist>
<varlistentry>
<term>
-a auth_server
</term>
<listitem><para>
An IP address of the authoritative server that has authority
for the zone containing the update name. This should normally
be the primary authoritative server that accepts dynamic
updates. It can also be a secondary server that is configured
to forward update requests to the primary server.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
-k keyfile
</term>
<listitem><para>
A TSIG key file to secure the update transaction. The keyfile
format is the same as that for the nsupdate utility.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
-p prerequisite
</term>
<listitem><para>
A prerequisite for the update (only one prerequisite can be
specified). The prerequisite format is the same as that is
accepted by the nsupdate utility.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
-r recursive_server
</term>
<listitem><para>
An IP address of a recursive server that this utility will
use. A recursive server may be necessary to identify the
authoritative server address to which the update request is
sent.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
-z zonename
</term>
<listitem><para>
The domain name of the zone that contains
</para></listitem>
</varlistentry>
<varlistentry>
<term>
(add|delete)
</term>
<listitem><para>
Specify the type of update operation. Either "add" or "delete"
must be specified.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
"update data"
</term>
<listitem><para>
Specify the data to be updated. A typical example of the data
would look like "name TTL RRtype RDATA".
</para></listitem>
</varlistentry>
</variablelist>
<note>In practice, either -a or -r must be specified. Others can
be optional; the underlying library routine tries to identify the
appropriate server and the zone name for the update.</note>
<para>
Examples: assuming the primary authoritative server of the
dynamic.example.com zone has an IPv6 address 2001:db8::1234,
</para>
<screen>
$ <userinput>sample-update -a sample-update -k Kxxx.+nnn+mmmm.key add "foo.dynamic.example.com 30 IN A 192.168.2.1"</userinput></screen>
<para>
adds an A RR for foo.dynamic.example.com using the given key.
</para>
<screen>
$ <userinput>sample-update -a sample-update -k Kxxx.+nnn+mmmm.key delete "foo.dynamic.example.com 30 IN A"</userinput></screen>
<para>
removes all A RRs for foo.dynamic.example.com using the given key.
</para>
<screen>
$ <userinput>sample-update -a sample-update -k Kxxx.+nnn+mmmm.key delete "foo.dynamic.example.com"</userinput></screen>
<para>
removes all RRs for foo.dynamic.example.com using the given key.
</para>
</sect3>
<sect3>
<title>nsprobe: domain/name server checker in terms of RFC 4074</title>
<para>
It checks a set
of domains to see the name servers of the domains behave
correctly in terms of RFC 4074. This is included in the set of
sample programs to show how the export library can be used in a
DNS-related application.
</para>
<para>
Usage: nsprobe [-d] [-v [-v...]] [-c cache_address] [input_file]
</para>
<para>
Options
</para>
<variablelist>
<varlistentry>
<term>
-d
</term>
<listitem><para>
run in the "debug" mode. with this option nsprobe will dump
every RRs it receives.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
-v
</term>
<listitem><para>
increase verbosity of other normal log messages. This can be
specified multiple times
</para></listitem>
</varlistentry>
<varlistentry>
<term>
-c cache_address
</term>
<listitem><para>
specify an IP address of a recursive (caching) name server.
nsprobe uses this server to get the NS RRset of each domain and
the A and/or AAAA RRsets for the name servers. The default
value is 127.0.0.1.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
input_file
</term>
<listitem><para>
a file name containing a list of domain (zone) names to be
probed. when omitted the standard input will be used. Each
line of the input file specifies a single domain name such as
"example.com". In general this domain name must be the apex
name of some DNS zone (unlike normal "host names" such as
"www.example.com"). nsprobe first identifies the NS RRsets for
the given domain name, and sends A and AAAA queries to these
servers for some "widely used" names under the zone;
specifically, adding "www" and "ftp" to the zone name.
</para></listitem>
</varlistentry>
</variablelist>
</sect3>
</sect2>
<sect2>
<title>Library References</title>
<para>As of this writing, there is no formal "manual" of the
libraries, except this document, header files (some of them
provide pretty detailed explanations), and sample application
programs.</para>
</sect2>
</sect1>
<!-- $Id: libdns.xml,v 1.3 2010/02/03 23:49:07 tbox Exp $ -->
|