chiark / gitweb /
unknown rr types seem to work
[adns] / src / reply.c
CommitLineData
98db6da3 1/*
2 * reply.c
3 * - main handling and parsing routine for received datagrams
4 */
5/*
a79ac5ba 6 * This file is
89435c42 7 * Copyright (C) 1997-2000 Ian Jackson <ian@davenant.greenend.org.uk>
a79ac5ba 8 *
9 * It is part of adns, which is
89435c42 10 * Copyright (C) 1997-2000 Ian Jackson <ian@davenant.greenend.org.uk>
c6826df6 11 * Copyright (C) 1999-2000 Tony Finch <dot@dotat.at>
98db6da3 12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2, or (at your option)
16 * any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software Foundation,
25 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
26 */
d05cc330 27
f2ad23ee 28#include <stdlib.h>
d05cc330 29
f2ad23ee 30#include "internal.h"
54ed1d64 31
5c596e4d 32void adns__procdgram(adns_state ads, const byte *dgram, int dglen,
c84b7355 33 int serv, int viatcp, struct timeval now) {
1e9efa71 34 int cbyte, rrstart, wantedrrs, rri, foundsoa, foundns, cname_here;
11c8bf9b 35 int id, f1, f2, qdcount, ancount, nscount, arcount;
36 int flg_ra, flg_rd, flg_tc, flg_qr, opcode;
f2ad23ee 37 int rrtype, rrclass, rdlength, rdstart;
5c596e4d 38 int anstart, nsstart, arstart;
f318f883 39 int ownermatched, l, nrrs;
2c7b101b 40 unsigned long ttl, soattl;
f2ad23ee 41 const typeinfo *typei;
5c596e4d 42 adns_query qu, nqu;
43 dns_rcode rcode;
54ed1d64 44 adns_status st;
1e9efa71 45 vbuf tempvb;
f2ad23ee 46 byte *newquery, *rrsdata;
26eb6bdc 47 parseinfo pai;
168e26fe 48
5c596e4d 49 if (dglen<DNS_HDRSIZE) {
9c344a42 50 adns__diag(ads,serv,0,"received datagram"
51 " too short for message header (%d)",dglen);
168e26fe 52 return;
53 }
9a2b67d4 54 cbyte= 0;
54ed1d64 55 GET_W(cbyte,id);
56 GET_B(cbyte,f1);
57 GET_B(cbyte,f2);
58 GET_W(cbyte,qdcount);
59 GET_W(cbyte,ancount);
60 GET_W(cbyte,nscount);
61 GET_W(cbyte,arcount);
5c596e4d 62 assert(cbyte == DNS_HDRSIZE);
168e26fe 63
7f702335 64 flg_qr= f1&0x80;
65 opcode= (f1&0x78)>>3;
f2ad23ee 66 flg_tc= f1&0x02;
7f702335 67 flg_rd= f1&0x01;
8312a1c2 68 flg_ra= f2&0x80;
1e9efa71 69 rcode= (f2&0x0f);
8312a1c2 70
1e9efa71 71 cname_here= 0;
72
9a2b67d4 73 if (!flg_qr) {
11c8bf9b 74 adns__diag(ads,serv,0,"server sent us a query, not a response");
168e26fe 75 return;
76 }
7f702335 77 if (opcode) {
9c344a42 78 adns__diag(ads,serv,0,"server sent us unknown opcode"
79 " %d (wanted 0=QUERY)",opcode);
168e26fe 80 return;
81 }
47eed012 82
83 qu= 0;
84 /* See if we can find the relevant query, or leave qu=0 otherwise ... */
85
86 if (qdcount == 1) {
87 for (qu= viatcp ? ads->tcpw.head : ads->udpw.head; qu; qu= nqu) {
88 nqu= qu->next;
89 if (qu->id != id) continue;
90 if (dglen < qu->query_dglen) continue;
91 if (memcmp(qu->query_dgram+DNS_HDRSIZE,
92 dgram+DNS_HDRSIZE,
93 qu->query_dglen-DNS_HDRSIZE))
94 continue;
95 if (viatcp) {
96 assert(qu->state == query_tcpw);
97 } else {
98 assert(qu->state == query_tosend);
99 if (!(qu->udpsent & (1<<serv))) continue;
100 }
101 break;
c84b7355 102 }
47eed012 103 if (qu) {
104 /* We're definitely going to do something with this query now */
105 if (viatcp) LIST_UNLINK(ads->tcpw,qu);
106 else LIST_UNLINK(ads->udpw,qu);
1e9efa71 107 }
168e26fe 108 }
5c596e4d 109
47eed012 110 /* If we're going to ignore the packet, we return as soon as we have
111 * failed the query (if any) and printed the warning message (if
112 * any).
113 */
54ed1d64 114 switch (rcode) {
115 case rcode_noerror:
116 case rcode_nxdomain:
168e26fe 117 break;
54ed1d64 118 case rcode_formaterror:
9c344a42 119 adns__warn(ads,serv,qu,"server cannot understand our query"
120 " (Format Error)");
47eed012 121 if (qu) adns__query_fail(qu,adns_s_rcodeformaterror);
168e26fe 122 return;
5c596e4d 123 case rcode_servfail:
47eed012 124 if (qu) adns__query_fail(qu,adns_s_rcodeservfail);
ebb95bff 125 else adns__debug(ads,serv,qu,"server failure on unidentifiable query");
168e26fe 126 return;
54ed1d64 127 case rcode_notimp:
7f702335 128 adns__warn(ads,serv,qu,"server claims not to implement our query");
47eed012 129 if (qu) adns__query_fail(qu,adns_s_rcodenotimplemented);
54ed1d64 130 return;
131 case rcode_refused:
6064dcef 132 adns__debug(ads,serv,qu,"server refused our query");
47eed012 133 if (qu) adns__query_fail(qu,adns_s_rcoderefused);
54ed1d64 134 return;
135 default:
7f702335 136 adns__warn(ads,serv,qu,"server gave unknown response code %d",rcode);
47eed012 137 if (qu) adns__query_fail(qu,adns_s_rcodeunknown);
138 return;
139 }
140
141 if (!qu) {
142 if (!qdcount) {
143 adns__diag(ads,serv,0,"server sent reply without quoting our question");
144 } else if (qdcount>1) {
9c344a42 145 adns__diag(ads,serv,0,"server claimed to answer %d"
146 " questions with one message", qdcount);
47eed012 147 } else if (ads->iflags & adns_if_debug) {
148 adns__vbuf_init(&tempvb);
149 adns__debug(ads,serv,0,"reply not found, id %02x, query owner %s",
9c344a42 150 id, adns__diag_domain(ads,serv,0,&tempvb,
151 dgram,dglen,DNS_HDRSIZE));
47eed012 152 adns__vbuf_free(&tempvb);
153 }
54ed1d64 154 return;
155 }
156
9c344a42 157 /* We're definitely going to do something with this packet and this
158 * query now. */
47eed012 159
160 anstart= qu->query_dglen;
161 arstart= -1;
162
54ed1d64 163 /* Now, take a look at the answer section, and see if it is complete.
164 * If it has any CNAMEs we stuff them in the answer.
165 */
166 wantedrrs= 0;
1e9efa71 167 cbyte= anstart;
54ed1d64 168 for (rri= 0; rri<ancount; rri++) {
169 rrstart= cbyte;
11c8bf9b 170 st= adns__findrr(qu,serv, dgram,dglen,&cbyte,
2c7b101b 171 &rrtype,&rrclass,&ttl, &rdlength,&rdstart,
11c8bf9b 172 &ownermatched);
1e9efa71 173 if (st) { adns__query_fail(qu,st); return; }
8312a1c2 174 if (rrtype == -1) goto x_truncated;
175
54ed1d64 176 if (rrclass != DNS_CLASS_IN) {
9c344a42 177 adns__diag(ads,serv,qu,"ignoring answer RR with wrong class %d"
178 " (expected IN=%d)", rrclass,DNS_CLASS_IN);
54ed1d64 179 continue;
180 }
8312a1c2 181 if (!ownermatched) {
5c596e4d 182 if (ads->iflags & adns_if_debug) {
7f702335 183 adns__debug(ads,serv,qu,"ignoring RR with an unexpected owner %s",
9c344a42 184 adns__diag_domain(ads,serv,qu, &qu->vb,
185 dgram,dglen,rrstart));
8312a1c2 186 }
54ed1d64 187 continue;
188 }
940c3875 189 if (rrtype == adns_r_cname &&
7d0aaee4 190 (qu->answer->type & adns_rrt_typemask) != adns_r_cname) {
59fbb06a 191 if (qu->flags & adns_qf_cname_forbid) {
192 adns__query_fail(qu,adns_s_prohibitedcname);
193 return;
125de2a9 194 } else if (qu->cname_dgram) { /* Ignore second and subsequent CNAME(s) */
9c344a42 195 adns__debug(ads,serv,qu,"allegedly canonical name %s"
196 " is actually alias for %s", qu->answer->cname,
197 adns__diag_domain(ads,serv,qu, &qu->vb,
198 dgram,dglen,rdstart));
9dbde8ca 199 adns__query_fail(qu,adns_s_prohibitedcname);
200 return;
125de2a9 201 } else if (wantedrrs) { /* Ignore CNAME(s) after RR(s). */
202 adns__debug(ads,serv,qu,"ignoring CNAME (to %s) coexisting with RR",
9c344a42 203 adns__diag_domain(ads,serv,qu, &qu->vb,
204 dgram,dglen,rdstart));
125de2a9 205 } else {
7f702335 206 qu->cname_begin= rdstart;
7f702335 207 qu->cname_dglen= dglen;
cd363ffd 208 st= adns__parse_domain(ads,serv,qu, &qu->vb,
85021e18 209 qu->flags & adns_qf_quotefail_cname
210 ? 0 : pdf_quoteok,
7f702335 211 dgram,dglen, &rdstart,rdstart+rdlength);
11c8bf9b 212 if (!qu->vb.used) goto x_truncated;
213 if (st) { adns__query_fail(qu,st); return; }
214 l= strlen(qu->vb.buf)+1;
1be24aef 215 qu->answer->cname= adns__alloc_preserved(qu,l);
9c344a42 216 if (!qu->answer->cname) {
217 adns__query_fail(qu,adns_s_nomemory);
218 return;
219 }
f2ad23ee 220
221 qu->cname_dgram= adns__alloc_mine(qu,dglen);
222 memcpy(qu->cname_dgram,dgram,dglen);
223
11c8bf9b 224 memcpy(qu->answer->cname,qu->vb.buf,l);
1e9efa71 225 cname_here= 1;
2c7b101b 226 adns__update_expires(qu,ttl,now);
7f702335 227 /* If we find the answer section truncated after this point we restart
228 * the query at the CNAME; if beforehand then we obviously have to use
229 * TCP. If there is no truncation we can use the whole answer if
230 * it contains the relevant info.
231 */
7f702335 232 }
7d0aaee4 233 } else if (rrtype == (qu->answer->type & adns_rrt_typemask)) {
54ed1d64 234 wantedrrs++;
235 } else {
9c344a42 236 adns__debug(ads,serv,qu,"ignoring answer RR"
237 " with irrelevant type %d",rrtype);
54ed1d64 238 }
239 }
240
f2ad23ee 241 /* We defer handling truncated responses here, in case there was a CNAME
242 * which we could use.
243 */
244 if (flg_tc) goto x_truncated;
245
54ed1d64 246 nsstart= cbyte;
247
248 if (!wantedrrs) {
9c344a42 249 /* Oops, NODATA or NXDOMAIN or perhaps a referral
250 * (which would be a problem) */
54ed1d64 251
9c344a42 252 /* RFC2308: NODATA has _either_ a SOA _or_ _no_ NS records
253 * in authority section */
2c7b101b 254 foundsoa= 0; soattl= 0; foundns= 0;
54ed1d64 255 for (rri= 0; rri<nscount; rri++) {
8312a1c2 256 rrstart= cbyte;
11c8bf9b 257 st= adns__findrr(qu,serv, dgram,dglen,&cbyte,
2c7b101b 258 &rrtype,&rrclass,&ttl, &rdlength,&rdstart, 0);
11c8bf9b 259 if (st) { adns__query_fail(qu,st); return; }
8312a1c2 260 if (rrtype==-1) goto x_truncated;
261 if (rrclass != DNS_CLASS_IN) {
7f702335 262 adns__diag(ads,serv,qu,
9c344a42 263 "ignoring authority RR with wrong class %d"
264 " (expected IN=%d)", rrclass,DNS_CLASS_IN);
8312a1c2 265 continue;
266 }
2c7b101b 267 if (rrtype == adns_r_soa_raw) { foundsoa= 1; soattl= ttl; break; }
8312a1c2 268 else if (rrtype == adns_r_ns_raw) { foundns= 1; }
54ed1d64 269 }
2c7b101b 270
271 if (rcode == rcode_nxdomain) {
272 /* We still wanted to look for the SOA so we could find the TTL. */
273 adns__update_expires(qu,soattl,now);
7e6a84a1 274
85021e18 275 if (qu->flags & adns_qf_search && !qu->cname_dgram) {
7e6a84a1 276 adns__search_next(ads,qu,now);
277 } else {
278 adns__query_fail(qu,adns_s_nxdomain);
279 }
2c7b101b 280 return;
281 }
8312a1c2 282
283 if (foundsoa || !foundns) {
284 /* Aha ! A NODATA response, good. */
2c7b101b 285 adns__update_expires(qu,soattl,now);
11c8bf9b 286 adns__query_fail(qu,adns_s_nodata);
8312a1c2 287 return;
288 }
289
290 /* Now what ? No relevant answers, no SOA, and at least some NS's.
291 * Looks like a referral. Just one last chance ... if we came across
7f702335 292 * a CNAME in this datagram then we should probably do our own CNAME
293 * lookup now in the hope that we won't get a referral again.
8312a1c2 294 */
f2ad23ee 295 if (cname_here) goto x_restartquery;
8312a1c2 296
297 /* Bloody hell, I thought we asked for recursion ? */
298 if (!flg_ra) {
9c344a42 299 adns__diag(ads,serv,qu,"server is not willing"
300 " to do recursive lookups for us");
11c8bf9b 301 adns__query_fail(qu,adns_s_norecurse);
7f702335 302 } else {
49ebbd58 303 if (!flg_rd)
9c344a42 304 adns__diag(ads,serv,qu,"server thinks"
305 " we didn't ask for recursive lookup");
49ebbd58 306 else
9c344a42 307 adns__debug(ads,serv,qu,"server claims to do recursion,"
308 " but gave us a referral");
9b86645c 309 adns__query_fail(qu,adns_s_invalidresponse);
8312a1c2 310 }
54ed1d64 311 return;
312 }
313
8312a1c2 314 /* Now, we have some RRs which we wanted. */
54ed1d64 315
11c8bf9b 316 qu->answer->rrs.untyped= adns__alloc_interim(qu,qu->typei->rrsz*wantedrrs);
9c344a42 317 if (!qu->answer->rrs.untyped) {
318 adns__query_fail(qu,adns_s_nomemory);
319 return;
320 }
5c596e4d 321
f2ad23ee 322 typei= qu->typei;
5c596e4d 323 cbyte= anstart;
f2ad23ee 324 rrsdata= qu->answer->rrs.bytes;
26eb6bdc 325
326 pai.ads= qu->ads;
327 pai.qu= qu;
328 pai.serv= serv;
329 pai.dgram= dgram;
330 pai.dglen= dglen;
331 pai.nsstart= nsstart;
332 pai.nscount= nscount;
333 pai.arcount= arcount;
ba1ddf08 334 pai.now= now;
26eb6bdc 335
336 for (rri=0, nrrs=0; rri<ancount; rri++) {
11c8bf9b 337 st= adns__findrr(qu,serv, dgram,dglen,&cbyte,
2c7b101b 338 &rrtype,&rrclass,&ttl, &rdlength,&rdstart,
11c8bf9b 339 &ownermatched);
5c596e4d 340 assert(!st); assert(rrtype != -1);
341 if (rrclass != DNS_CLASS_IN ||
7d0aaee4 342 rrtype != (qu->answer->type & adns_rrt_typemask) ||
7f702335 343 !ownermatched)
5c596e4d 344 continue;
2c7b101b 345 adns__update_expires(qu,ttl,now);
26eb6bdc 346 st= typei->parse(&pai, rdstart,rdstart+rdlength, rrsdata+nrrs*typei->rrsz);
11c8bf9b 347 if (st) { adns__query_fail(qu,st); return; }
7f702335 348 if (rdstart==-1) goto x_truncated;
f2ad23ee 349 nrrs++;
5c596e4d 350 }
f2ad23ee 351 assert(nrrs==wantedrrs);
352 qu->answer->nrrs= nrrs;
54ed1d64 353
5c596e4d 354 /* This may have generated some child queries ... */
355 if (qu->children.head) {
d0a057ac 356 qu->state= query_childw;
5c596e4d 357 LIST_LINK_TAIL(ads->childw,qu);
358 return;
54ed1d64 359 }
11c8bf9b 360 adns__query_done(qu);
5c596e4d 361 return;
8312a1c2 362
98db6da3 363 x_truncated:
f2ad23ee 364
5c596e4d 365 if (!flg_tc) {
7f702335 366 adns__diag(ads,serv,qu,"server sent datagram which points outside itself");
9b86645c 367 adns__query_fail(qu,adns_s_invalidresponse);
5c596e4d 368 return;
369 }
5c596e4d 370 qu->flags |= adns_qf_usevc;
f2ad23ee 371
372 x_restartquery:
f2ad23ee 373 if (qu->cname_dgram) {
374 st= adns__mkquery_frdgram(qu->ads,&qu->vb,&qu->id,
9c344a42 375 qu->cname_dgram,qu->cname_dglen,qu->cname_begin,
7d0aaee4 376 qu->answer->type, qu->flags);
f2ad23ee 377 if (st) { adns__query_fail(qu,st); return; }
378
379 newquery= realloc(qu->query_dgram,qu->vb.used);
9b86645c 380 if (!newquery) { adns__query_fail(qu,adns_s_nomemory); return; }
f2ad23ee 381
382 qu->query_dgram= newquery;
383 qu->query_dglen= qu->vb.used;
384 memcpy(newquery,qu->vb.buf,qu->vb.used);
385 }
386
d0a057ac 387 if (qu->state == query_tcpw) qu->state= query_tosend;
388 qu->retries= 0;
1be24aef 389 adns__reset_preserved(qu);
24d52b13 390 adns__query_send(qu,now);
5c596e4d 391}