aboutsummaryrefslogtreecommitdiffstats
path: root/lib/kernel/doc/src/inet_res.xml
blob: 851a36aba90a95dc3d9414473d752ffff007b893 (plain) (blame)
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
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE erlref SYSTEM "erlref.dtd">

<erlref>
  <header>
    <copyright>
      <year>2009</year><year>2015</year>
      <holder>Ericsson AB. All Rights Reserved.</holder>
    </copyright>
    <legalnotice>
      Licensed under the Apache License, Version 2.0 (the "License");
      you may not use this file except in compliance with the License.
      You may obtain a copy of the License at
 
          http://www.apache.org/licenses/LICENSE-2.0

      Unless required by applicable law or agreed to in writing, software
      distributed under the License is distributed on an "AS IS" BASIS,
      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      See the License for the specific language governing permissions and
      limitations under the License.
    
    </legalnotice>

    <title>inet_res</title>
    <prepared>[email protected]</prepared>
    <docno></docno>
    <date>2009-09-11</date>
    <rev>A</rev>
  </header>
  <module>inet_res</module>
  <modulesummary>A Rudimentary DNS Client</modulesummary>
  <description>
    <p>Performs DNS name resolving towards recursive name servers</p>
    <p>See also 
      <seealso marker="erts:inet_cfg">
        ERTS User's Guide: Inet configuration
      </seealso> for more
      information on how to configure an Erlang runtime system for IP
      communication and how to enable this DNS client by defining
      <c><![CDATA['dns']]></c> as a lookup method. It then acts
      as a backend for the resolving functions in
      <seealso marker="kernel:inet">inet</seealso>.</p>
    <p>This DNS client can resolve DNS records even if it
      is not used for normal name resolving in the node.</p>
    <p>This is not a full-fledged resolver. It is just a
      DNS client that relies on asking trusted recursive nameservers.</p>
  </description>

  <section>
    <title>Name Resolving</title>
    <p>UDP queries are used unless resolver option
      <c>usevc</c> is <c>true</c>, which forces TCP queries.
      If the query is to large for UDP, TCP is used instead.
      For regular DNS queries 512 bytes is the size limit.
      When EDNS is enabled (resolver option
      <c>edns</c> is set to the EDNS version i.e <c>0</c>
      instead of <c>false</c>), resolver option
      <c>udp_payload_size</c> sets the limit. If a nameserver
      replies with the TC bit set (truncation), indicating
      the answer is incomplete, the query is retried
      to that nameserver using TCP. The resolver option
      <c>udp_payload_size</c> also sets the advertised
      size for the max allowed reply size, if EDNS is
      enabled, otherwise the nameserver uses the limit
      512 byte. If the reply is larger it gets truncated,
      forcing a TCP re-query.</p>
    <p>For UDP queries, the resolver options <c>timeout</c>
      and <c>retry</c> control retransmission.
      Each nameserver in the <c>nameservers</c> list is
      tried with a timeout of <c>timeout</c> / <c>retry</c>.
      Then all nameservers are tried again doubling the
      timeout, for a total of <c>retry</c> times.</p>
    <p>For queries that not use the <c>search</c> list,
      if the query to all <c>nameservers</c> results in
      <c>{error,nxdomain}</c>or an empty answer, the same
      query is tried for the <c>alt_nameservers</c>.</p>
  </section>

  <section>
    <title>Resolver Types</title>
    <p>The following data types concern the resolver:</p>
  </section>
  <datatypes>
    <datatype>
      <name name="res_option"/>
    </datatype>
    <datatype>
      <name name="nameserver"/>
    </datatype>
    <datatype>
      <name name="res_error"/>
    </datatype>
  </datatypes>
  <section>
    <title>DNS Types</title>
    <p><marker id="dns_types"/>
      The following data types concern the DNS client:</p>
  </section>
  <datatypes>
    <datatype>
      <name name="dns_name"/>
      <desc><p>A string with no adjacent dots.</p></desc>
    </datatype>
    <datatype>
      <name name="rr_type"/>
    </datatype>
    <datatype>
      <name name="dns_class"/>
    </datatype>
    <datatype>
      <name name="dns_msg"/>
      <desc>
        <p>This is the start of a hiearchy of opaque data structures
          that can be examined with access functions in inet_dns that
          return lists of {Field,Value} tuples. The arity 2 functions
          just return the value for a given field.</p>
<pre>
dns_msg() = DnsMsg
    inet_dns:msg(DnsMsg) ->
        [ {header, dns_header()}
        | {qdlist, dns_query()}
        | {anlist, dns_rr()}
        | {nslist, dns_rr()}
        | {arlist, dns_rr()} ]
    inet_dns:msg(DnsMsg, header) -> dns_header() % for example
    inet_dns:msg(DnsMsg, Field) -> Value

dns_header() = DnsHeader
    inet_dns:header(DnsHeader) ->
        [ {id, integer()}
        | {qr, boolean()}
        | {opcode, 'query' | iquery | status | integer()}
        | {aa, boolean()}
        | {tc, boolean()}
        | {rd, boolean()}
        | {ra, boolean()}
        | {pr, boolean()}
        | {rcode, integer(0..16)} ]
    inet_dns:header(DnsHeader, Field) -> Value

query_type() = axfr | mailb | maila | any | rr_type()

dns_query() = DnsQuery
    inet_dns:dns_query(DnsQuery) ->
        [ {domain, dns_name()}
        | {type, query_type()}
        | {class, dns_class()} ]
    inet_dns:dns_query(DnsQuery, Field) -> Value

dns_rr() = DnsRr
    inet_dns:rr(DnsRr) -> DnsRrFields | DnsRrOptFields
    DnsRrFields = [ {domain, dns_name()}
                  | {type, rr_type()}
                  | {class, dns_class()}
                  | {ttl, integer()}
                  | {data, dns_data()} ]
    DnsRrOptFields = [ {domain, dns_name()}
                     | {type, opt}
                     | {udp_payload_size, integer()}
                     | {ext_rcode, integer()}
                     | {version, integer()}
                     | {z, integer()}
                     | {data, dns_data()} ]
    inet_dns:rr(DnsRr, Field) -> Value</pre>

<p>There is an info function for the types above:</p>

<pre>
inet_dns:record_type(dns_msg()) -> msg;
inet_dns:record_type(dns_header()) -> header;
inet_dns:record_type(dns_query()) -> dns_query;
inet_dns:record_type(dns_rr()) -> rr;
inet_dns:record_type(_) -> undefined.</pre>

<p>So; inet_dns:(inet_dns:record_type(X))(X) will convert
any of these data structures into a {Field,Value} list.</p>
      </desc>
    </datatype>
    <datatype>
      <name name="dns_data"/>
      <desc><p><c><anno>Regexp</anno></c> is a string with characters encoded in the
         UTF-8 coding standard.</p>
      </desc>
    </datatype>
  </datatypes>


  <funcs>

    <func>
      <name name="getbyname" arity="2"/>
      <name name="getbyname" arity="3"/>
      <fsummary>Resolve a DNS record of the given type for the given host
      </fsummary>
      <desc>
        <p>Resolve a DNS record of the given type for the given host,
          of class <c>in</c>. On success returns a <c>hostent()</c> record with
          <c>dns_data()</c> elements in the address list field.
        </p><p>
          This function uses the resolver option <c>search</c> that
          is a list of domain names. If the name to resolve contains
          no dots, it is prepended to each domain name in the
          search list, and they are tried in order. If the name
          contains dots, it is first tried as an absolute name
          and if that fails the search list is used. If the name
          has a trailing dot it is simply supposed to be
          an absolute name and the search list is not used.
        </p>
      </desc>
    </func>

    <func>
      <name name="gethostbyaddr" arity="1"/>
      <name name="gethostbyaddr" arity="2"/>
      <fsummary>Return a hostent record for the host with the given address
      </fsummary>
      <desc>
        <p>Backend functions used by
          <seealso marker="kernel:inet#gethostbyaddr/1">
            inet:gethostbyaddr/1
          </seealso>.
        </p>
      </desc>
    </func>

    <func>
      <name name="gethostbyname" arity="1"/>
      <name name="gethostbyname" arity="2"/>
      <name name="gethostbyname" arity="3"/>
      <fsummary>Return a hostent record for the host with the given name
      </fsummary>
      <desc>
        <p>Backend functions used by
          <seealso marker="kernel:inet#gethostbyname/1">
            inet:gethostbyname/1,2
          </seealso>.
        </p><p>
          This function uses the resolver option <c>search</c> just like 
          <seealso marker="#getbyname/2">getbyname/2,3</seealso>.
        </p><p>
          If the resolver option <c>inet6</c> is <c>true</c>,
          an IPv6 address is looked up, and if that fails
          the IPv4 address is looked up and returned on
          IPv6 mapped IPv4 format.
        </p>
      </desc>
    </func>

    <func>
      <name name="lookup" arity="3"/>
      <name name="lookup" arity="4"/>
      <name name="lookup" arity="5"/>
      <fsummary>Resolve the DNS data for the record of the given type and class
        for the given name
      </fsummary>
      <desc>
        <p>Resolve the DNS data for the record of the given type and class
          for the given name. On success filters out the answer records
          with the correct <c><anno>Class</anno></c> and <c><anno>Type</anno></c> and returns
          a list of their data fields. So a lookup for type <c>any</c>
          will give an empty answer since the answer records have
          specific types that are not <c>any</c>. An empty answer
          as well as a failed lookup returns an empty list.
        </p><p>
          Calls <seealso marker="#resolve/3">resolve/2..4</seealso>
          with the same arguments and filters the result, so
          <c><anno>Opts</anno></c> is explained there.
        </p>
      </desc>      
    </func>

    <func>
      <name name="resolve" arity="3"/>
      <name name="resolve" arity="4"/>
      <name name="resolve" arity="5"/>
      <fsummary>Resolve a DNS record of the given type and class
        for the given name
      </fsummary>
      <desc>
        <p>Resolve a DNS record of the given type and class for the given name.
          The returned <c>dns_msg()</c> can be examined using
          access functions in <c>inet_db</c> as described 
          in <seealso marker="#dns_types">DNS Types</seealso>.
        </p><p>
          If <c><anno>Name</anno></c> is an <c>ip_address()</c>, the domain name
          to query for is generated as the standard reverse
          ".IN-ADDR.ARPA." name for an IPv4 address, or the
          ".IP6.ARPA." name for an IPv6 address.
          In this case you most probably want to use
          <c><anno>Class</anno> = in</c> and <c><anno>Type</anno> = ptr</c> but it
          is not done automatically.
        </p><p>
          <c><anno>Opts</anno></c> override the corresponding resolver options.
          If the option <c>nameservers</c> is given, it is
          also assumed that it is the complete list of nameserves,
          so the resolver option <c>alt_nameserves</c> is ignored.
          Of course, if that option is also given to this function,
          it is used.
        </p><p>
          The <c>verbose</c> option (or rather <c>{verbose,true}</c>),
          causes diagnostics printout through
          <seealso marker="stdlib:io#format/3">io:format/2</seealso>
          of queries, replies retransmissions, etc, similar
          to from utilities like <c>dig</c>, <c>nslookup</c> et.al.
        </p><p>
          If <c><anno>Opt</anno></c> is an arbitrary atom it is interpreted
          as <c>{<anno>Opt</anno>,true}</c> unless the atom string starts with
          <c>"no"</c> making the interpretation <c>{<anno>Opt</anno>,false}</c>.
          For example: <c>usevc</c> is an alias for <c>{usevc,true}</c>,
          and <c>nousevc</c> an alias for <c>{usevc,false}</c>.
        </p><p>
          The <c>inet6</c> option currently has no effect on this function.
          You probably want to use <c><anno>Type</anno> = a | aaaa</c> instead.
        </p>
      </desc>      
    </func>

  </funcs>



  <section>
    <title>Examples</title>
    <p>Access functions example: how
      <seealso marker="#lookup/3">lookup/3</seealso>
      could have been implemented using
      <seealso marker="#resolve/3">resolve/3</seealso>
      from outside the module.
    </p><code type="none">
    example_lookup(Name, Class, Type) ->
        case inet_res:resolve(Name, Class, Type) of
            {ok,Msg} ->
                [inet_dns:rr(RR, data)
                 || RR &lt;- inet_dns:msg(Msg, anlist),
                    inet_dns:rr(RR, type) =:= Type,
                    inet_dns:rr(RR, class) =:= Class];
            {error,_} ->
                []
        end.</code>
  </section>



  <section>
    <title>Legacy Functions</title>
    <p>These have been deprecated due to the annoying double
      meaning of the nameservers/timeout argument, and
      because they had no decent place for a resolver options list.</p>
  </section>

  <funcs>

    <func>
      <name name="nslookup" arity="3"/>
      <name name="nslookup" arity="4" clause_i="1"/>
      <name name="nslookup" arity="4" clause_i="2"/>
      <fsummary>Resolve a DNS record of the given type and class
        for the given name
      </fsummary>
      <type variable="Name"/>
      <type variable="Class"/>
      <type variable="Type"/>
      <type variable="Timeout" name_i="2"/>
      <type variable="Nameservers"/>
      <type variable="Reason"/>
      <desc>
        <p>Resolve a DNS record of the given type and class for the given name.
        </p>
      </desc>      
    </func>

    <func>
      <name name="nnslookup" arity="4"/>
      <name name="nnslookup" arity="5"/>
      <fsummary>Resolve a DNS record of the given type and class
        for the given name
      </fsummary>
      <desc>
        <p>Resolve a DNS record of the given type and class for the given name.
        </p>
      </desc>      
    </func>

  </funcs>

</erlref>