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