README.html: mention signatures as possibly being on the web page
[adns] / README
1 GNU adns
2
3 Advanced, easy to use, asynchronous-capable DNS client library and
4 utilities.
5
6 adns is a resolver library for C (and C++) programs, and a collection
7 of useful DNS resolver utilities.
8
9 C library
10
11 In contrast with the standard interfaces, gethostbyname et al and
12 libresolv, it has the following features:
13 * It is reasonably easy to use for simple programs which just want to
14 translate names to addresses, look up MX records, etc.
15 * It can be used in an asynchronous, non-blocking, manner. Many
16 queries can be handled simultaneously.
17 * Responses are decoded automatically into a natural representation
18 for a C program - there is no need to deal with DNS packet and
19 RRDATA formats.
20 * Sanity checking (eg, name syntax checking, reverse/forward
21 correspondence, CNAME pointing to CNAME) is performed automatically
22 by default.
23 * Time-to-live, CNAME and other similar information is returned in an
24 easy-to-use form, without getting in the way.
25 * There is no global state in the library; resolver state is an
26 opaque data structure which the client creates explicitly. A
27 program can have several instances of the resolver.
28 * Errors are reported to the application in a way that distinguishes
29 the various causes of failure properly.
30 * adns understands conventional resolv.conf, but this can overridden
31 by environment variables.
32 * Flexibility. For example, the application can tell adns to: ignore
33 environment variables (for setuid programs), disable hostname
34 syntax sanity checks to return arbitrary data, override or ignore
35 resolv.conf in favour of supplied configuration, etc.
36 * Believed to be correct ! For example, will correctly back off to
37 TCP in case of long replies or queries, or to other nameservers if
38 several are available. It has sensible handling of bad responses
39 etc.
40
41 DNS utility programs
42
43 adns also comes with a number of utility programs for use from the
44 command line and in scripts:
45 * adnslogres is a much faster version of Apache's logresolv program.
46 * adnsresfilter is a filter which copies its input to its output,
47 replacing IP addresses by the corresponding names, without unduly
48 delaying the output. For example, you can usefully pipe the output
49 of netstat -n, tcpdump -ln, and the like, into it.
50 * adnshost is a general-purpose DNS lookup utility which can be used
51 easily in from the command line and from shell scripts to do simple
52 lookups. In a more advanced mode it can be used as a
53 general-purpose DNS helper program for scripting languages which
54 can invoke and communicate with subprocesses. See the [1]adnshost
55 usage message for a summary of its capabilities.
56
57 Documentation
58
59 I'm afraid there is no manual yet. However, competent C programmers
60 should be able to use the library based on the [2]commented adns.h
61 header file, and the usage messages for the programs should be
62 sufficient.
63
64 Feedback
65
66 I'd be pleased if you would let me know if you're using my library in
67 your project, and what you think of it.
68
69 Bug reports should be reported to the [3]GNU Debbugs. Send an email to
70 submit@debbugs.gnu.org and at the top of your email, in a paragraph of
71 its own, write the single line
72 Package: adns
73
74 Your bug report will be published via to the adns-discuss list.
75
76 Feedback and discussion takes place on the adns-discuss list. You can
77 mail me privately at ijackson@chiark.greenend.org.uk.
78
79 Mailinglists
80
81 I have set up mailinglists adns-announce and adns-discuss. The
82 announcements list is moderated and will contain only announcements of
83 important bugs, new versions, etc.
84
85 There are [4]archives and subscription web pages, or you can subscribe
86 by sending mail containing the word `subscribe' to
87 adns-announce-REQUEST@chiark.greenend.org.uk or
88 adns-discuss-REQUEST@chiark.greenend.org.uk.
89
90 Documentation
91
92 * [5]adns.h API header file with documentation comments
93 * [6]usage message for adnshost
94
95 Download and source code
96
97 * The [7]current release as a gzipped tarfile.
98 * [8]Previous versions.
99 * [9]master git (version control) repository browser.
100
101 adns is also available from the [10]GNU Project FTP servers and their
102 [11]mirrors.
103
104 Installation note
105
106 adns requires a real nameserver like [12]BIND running on the same
107 system or a nearby one, which must be willing to provide `recursive
108 service'. I.e., adns is a `stub resolver'.
109
110 adns requires that your real nameserver is on the same machine, or
111 connected via a secure network, so that an attacker cannot fake the
112 replies to adns's queries.
113
114 References and related projects
115
116 * [13]Python bindings by Andy Dustman.
117 * [14]liboop event loop library has a built-in binding for adns.
118 * [15]port to MS Visual Studio 6 C++ by Jarle Aase.
119
120 Copyright and licensing
121
122 adns is Copyright 1997-2000,2003,2006,2014 Ian Jackson, Copyright 2014
123 Mark Wooding, Copyright 1999-2000,2003,2006 Tony Finch, and Copyright
124 (C) 1991 Massachusetts Institute of Technology.
125
126 adns is free software; you can redistribute it and/or modify it under
127 the terms of the GNU General Public License as published by the Free
128 Software Foundation; either version 3 of the License, or (at your
129 option) any later version.
130
131 This program and documentation is distributed in the hope that it will
132 be useful, but without any warranty; without even the implied warranty
133 of merchantability or fitness for a particular purpose. See the [16]GNU
134 General Public License for more details.
135
136 You should have received a copy of the GNU General Public License along
137 with adns, or one should be available above; if not, write to the
138 [17]Free Software Foundation or email ijackson@chiark.greenend.org.uk.
139 __________________________________________________________________
140
141 Ian Jackson / ijackson@chiark.greenend.org.uk.
142
143 [18]GNU home page; [19]chiark home page; [20]site or mirror home page
144
145 This web page is Copyright (C)1996-2005,2014 Ian Jackson. See the
146 [21]Copyright/acknowledgements.
147
148 References
149
150 1. http://www.chiark.greenend.org.uk/~ian/adns/adnshost.txt
151 2. http://www.chiark.greenend.org.uk/~ian/adns/adns.h.txt
152 3. http://debbugs.gnu.org/
153 4. http://www.chiark.greenend.org.uk/mailman/listinfo
154 5. http://www.chiark.greenend.org.uk/~ian/adns/adns.h.txt
155 6. http://www.chiark.greenend.org.uk/~ian/adns/adnshost.txt
156 7. http://www.chiark.greenend.org.uk/~ian/adns/adns.tar.gz
157 8. http://www.chiark.greenend.org.uk/~ian/adns/ftp/
158 9. http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git/adns.git/
159 10. http://www.gnu.org/
160 11. http://www.gnu.org/order/ftp.html
161 12. http://www.isc.org/view.cgi?/products/BIND/index.phtml
162 13. http://code.google.com/p/adns-python
163 14. http://www.lysator.liu.se/liboop/
164 15. http://adns.jgaa.com/
165 16. http://www.chiark.greenend.org.uk/~ian/COPYING.txt
166 17. http://www.fsf.org/
167 18. http://www.gnu.org/
168 19. http://www.chiark.greenend.org.uk/
169 20. file://localhost/
170 21. http://www.chiark.greenend.org.uk/~ian/sw-www-copy.html