New properly-asynchronous adnsresfilter seems 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
7 * Copyright (C) 1997-1999 Ian Jackson <ian@davenant.greenend.org.uk>
8 *
9 * It is part of adns, which is
10 * Copyright (C) 1997-1999 Ian Jackson <ian@davenant.greenend.org.uk>
11 * Copyright (C) 1999 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) {
11c8bf9b 50 adns__diag(ads,serv,0,"received datagram too short for message header (%d)",dglen);
168e26fe 51 return;
52 }
9a2b67d4 53 cbyte= 0;
54ed1d64 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);
5c596e4d 61 assert(cbyte == DNS_HDRSIZE);
168e26fe 62
7f702335 63 flg_qr= f1&0x80;
64 opcode= (f1&0x78)>>3;
f2ad23ee 65 flg_tc= f1&0x02;
7f702335 66 flg_rd= f1&0x01;
8312a1c2 67 flg_ra= f2&0x80;
1e9efa71 68 rcode= (f2&0x0f);
8312a1c2 69
1e9efa71 70 cname_here= 0;
71
9a2b67d4 72 if (!flg_qr) {
11c8bf9b 73 adns__diag(ads,serv,0,"server sent us a query, not a response");
168e26fe 74 return;
75 }
7f702335 76 if (opcode) {
11c8bf9b 77 adns__diag(ads,serv,0,"server sent us unknown opcode %d (wanted 0=QUERY)",opcode);
168e26fe 78 return;
79 }
80 if (!qdcount) {
11c8bf9b 81 adns__diag(ads,serv,0,"server sent reply without quoting our question");
168e26fe 82 return;
83 } else if (qdcount>1) {
11c8bf9b 84 adns__diag(ads,serv,0,"server claimed to answer %d questions with one message",
168e26fe 85 qdcount);
86 return;
87 }
d0a057ac 88 for (qu= viatcp ? ads->tcpw.head : ads->udpw.head; qu; qu= nqu) {
168e26fe 89 nqu= qu->next;
90 if (qu->id != id) continue;
11c8bf9b 91 if (dglen < qu->query_dglen) continue;
92 if (memcmp(qu->query_dgram+DNS_HDRSIZE,
93 dgram+DNS_HDRSIZE,
94 qu->query_dglen-DNS_HDRSIZE))
54ed1d64 95 continue;
c84b7355 96 if (viatcp) {
d0a057ac 97 assert(qu->state == query_tcpw);
c84b7355 98 } else {
d0a057ac 99 assert(qu->state == query_tosend);
c84b7355 100 if (!(qu->udpsent & (1<<serv))) continue;
101 }
168e26fe 102 break;
103 }
104 if (!qu) {
1e9efa71 105 if (ads->iflags & adns_if_debug) {
106 adns__vbuf_init(&tempvb);
107 adns__debug(ads,serv,0,"reply not found, id %02x, query owner %s",
cd363ffd 108 id, adns__diag_domain(ads,serv,0,&tempvb,dgram,dglen,DNS_HDRSIZE));
1e9efa71 109 adns__vbuf_free(&tempvb);
110 }
168e26fe 111 return;
112 }
1e9efa71 113 anstart= qu->query_dglen;
f318f883 114 arstart= -1;
5c596e4d 115
d0a057ac 116 if (viatcp) LIST_UNLINK(ads->tcpw,qu);
117 else LIST_UNLINK(ads->udpw,qu);
5c596e4d 118 /* We're definitely going to do something with this query now */
119
54ed1d64 120 switch (rcode) {
121 case rcode_noerror:
122 case rcode_nxdomain:
168e26fe 123 break;
54ed1d64 124 case rcode_formaterror:
7f702335 125 adns__warn(ads,serv,qu,"server cannot understand our query (Format Error)");
9b86645c 126 adns__query_fail(qu,adns_s_rcodeformaterror);
168e26fe 127 return;
5c596e4d 128 case rcode_servfail:
9b86645c 129 adns__query_fail(qu,adns_s_rcodeservfail);
168e26fe 130 return;
54ed1d64 131 case rcode_notimp:
7f702335 132 adns__warn(ads,serv,qu,"server claims not to implement our query");
9b86645c 133 adns__query_fail(qu,adns_s_rcodenotimplemented);
54ed1d64 134 return;
135 case rcode_refused:
7f702335 136 adns__warn(ads,serv,qu,"server refused our query");
9b86645c 137 adns__query_fail(qu,adns_s_rcoderefused);
54ed1d64 138 return;
139 default:
7f702335 140 adns__warn(ads,serv,qu,"server gave unknown response code %d",rcode);
9b86645c 141 adns__query_fail(qu,adns_s_rcodeunknown);
54ed1d64 142 return;
143 }
144
145 /* Now, take a look at the answer section, and see if it is complete.
146 * If it has any CNAMEs we stuff them in the answer.
147 */
148 wantedrrs= 0;
1e9efa71 149 cbyte= anstart;
54ed1d64 150 for (rri= 0; rri<ancount; rri++) {
151 rrstart= cbyte;
11c8bf9b 152 st= adns__findrr(qu,serv, dgram,dglen,&cbyte,
2c7b101b 153 &rrtype,&rrclass,&ttl, &rdlength,&rdstart,
11c8bf9b 154 &ownermatched);
1e9efa71 155 if (st) { adns__query_fail(qu,st); return; }
8312a1c2 156 if (rrtype == -1) goto x_truncated;
157
54ed1d64 158 if (rrclass != DNS_CLASS_IN) {
7f702335 159 adns__diag(ads,serv,qu,"ignoring answer RR with wrong class %d (expected IN=%d)",
54ed1d64 160 rrclass,DNS_CLASS_IN);
161 continue;
162 }
8312a1c2 163 if (!ownermatched) {
5c596e4d 164 if (ads->iflags & adns_if_debug) {
7f702335 165 adns__debug(ads,serv,qu,"ignoring RR with an unexpected owner %s",
cd363ffd 166 adns__diag_domain(ads,serv,qu, &qu->vb, dgram,dglen,rrstart));
8312a1c2 167 }
54ed1d64 168 continue;
169 }
940c3875 170 if (rrtype == adns_r_cname &&
7f702335 171 (qu->typei->type & adns__rrt_typemask) != adns_r_cname) {
59fbb06a 172 if (qu->flags & adns_qf_cname_forbid) {
173 adns__query_fail(qu,adns_s_prohibitedcname);
174 return;
125de2a9 175 } else if (qu->cname_dgram) { /* Ignore second and subsequent CNAME(s) */
9dbde8ca 176 adns__debug(ads,serv,qu,"allegedly canonical name %s is actually alias for %s",
177 qu->answer->cname,
178 adns__diag_domain(ads,serv,qu, &qu->vb, dgram,dglen,rdstart));
179 adns__query_fail(qu,adns_s_prohibitedcname);
180 return;
125de2a9 181 } else if (wantedrrs) { /* Ignore CNAME(s) after RR(s). */
182 adns__debug(ads,serv,qu,"ignoring CNAME (to %s) coexisting with RR",
183 adns__diag_domain(ads,serv,qu, &qu->vb, dgram,dglen,rdstart));
184 } else {
7f702335 185 qu->cname_begin= rdstart;
7f702335 186 qu->cname_dglen= dglen;
cd363ffd 187 st= adns__parse_domain(ads,serv,qu, &qu->vb,
188 qu->flags & adns_qf_quoteok_cname ? pdf_quoteok : 0,
7f702335 189 dgram,dglen, &rdstart,rdstart+rdlength);
11c8bf9b 190 if (!qu->vb.used) goto x_truncated;
191 if (st) { adns__query_fail(qu,st); return; }
192 l= strlen(qu->vb.buf)+1;
1be24aef 193 qu->answer->cname= adns__alloc_preserved(qu,l);
9b86645c 194 if (!qu->answer->cname) { adns__query_fail(qu,adns_s_nomemory); return; }
f2ad23ee 195
196 qu->cname_dgram= adns__alloc_mine(qu,dglen);
197 memcpy(qu->cname_dgram,dgram,dglen);
198
11c8bf9b 199 memcpy(qu->answer->cname,qu->vb.buf,l);
1e9efa71 200 cname_here= 1;
2c7b101b 201 adns__update_expires(qu,ttl,now);
7f702335 202 /* If we find the answer section truncated after this point we restart
203 * the query at the CNAME; if beforehand then we obviously have to use
204 * TCP. If there is no truncation we can use the whole answer if
205 * it contains the relevant info.
206 */
7f702335 207 }
5c596e4d 208 } else if (rrtype == (qu->typei->type & adns__rrt_typemask)) {
54ed1d64 209 wantedrrs++;
210 } else {
7f702335 211 adns__debug(ads,serv,qu,"ignoring answer RR with irrelevant type %d",rrtype);
54ed1d64 212 }
213 }
214
f2ad23ee 215 /* We defer handling truncated responses here, in case there was a CNAME
216 * which we could use.
217 */
218 if (flg_tc) goto x_truncated;
219
54ed1d64 220 nsstart= cbyte;
221
222 if (!wantedrrs) {
223 /* Oops, NODATA or NXDOMAIN or perhaps a referral (which would be a problem) */
54ed1d64 224
225 /* RFC2308: NODATA has _either_ a SOA _or_ _no_ NS records in authority section */
2c7b101b 226 foundsoa= 0; soattl= 0; foundns= 0;
54ed1d64 227 for (rri= 0; rri<nscount; rri++) {
8312a1c2 228 rrstart= cbyte;
11c8bf9b 229 st= adns__findrr(qu,serv, dgram,dglen,&cbyte,
2c7b101b 230 &rrtype,&rrclass,&ttl, &rdlength,&rdstart, 0);
11c8bf9b 231 if (st) { adns__query_fail(qu,st); return; }
8312a1c2 232 if (rrtype==-1) goto x_truncated;
233 if (rrclass != DNS_CLASS_IN) {
7f702335 234 adns__diag(ads,serv,qu,
235 "ignoring authority RR with wrong class %d (expected IN=%d)",
8312a1c2 236 rrclass,DNS_CLASS_IN);
237 continue;
238 }
2c7b101b 239 if (rrtype == adns_r_soa_raw) { foundsoa= 1; soattl= ttl; break; }
8312a1c2 240 else if (rrtype == adns_r_ns_raw) { foundns= 1; }
54ed1d64 241 }
2c7b101b 242
243 if (rcode == rcode_nxdomain) {
244 /* We still wanted to look for the SOA so we could find the TTL. */
245 adns__update_expires(qu,soattl,now);
7e6a84a1 246
247 if (qu->flags & adns_qf_search) {
248 adns__search_next(ads,qu,now);
249 } else {
250 adns__query_fail(qu,adns_s_nxdomain);
251 }
2c7b101b 252 return;
253 }
8312a1c2 254
255 if (foundsoa || !foundns) {
256 /* Aha ! A NODATA response, good. */
2c7b101b 257 adns__update_expires(qu,soattl,now);
11c8bf9b 258 adns__query_fail(qu,adns_s_nodata);
8312a1c2 259 return;
260 }
261
262 /* Now what ? No relevant answers, no SOA, and at least some NS's.
263 * Looks like a referral. Just one last chance ... if we came across
7f702335 264 * a CNAME in this datagram then we should probably do our own CNAME
265 * lookup now in the hope that we won't get a referral again.
8312a1c2 266 */
f2ad23ee 267 if (cname_here) goto x_restartquery;
8312a1c2 268
269 /* Bloody hell, I thought we asked for recursion ? */
7f702335 270 if (flg_rd) {
271 adns__diag(ads,serv,qu,"server thinks we didn't ask for recursive lookup");
272 }
8312a1c2 273 if (!flg_ra) {
7f702335 274 adns__diag(ads,serv,qu,"server is not willing to do recursive lookups for us");
11c8bf9b 275 adns__query_fail(qu,adns_s_norecurse);
7f702335 276 } else {
277 adns__diag(ads,serv,qu,"server claims to do recursion, but gave us a referral");
9b86645c 278 adns__query_fail(qu,adns_s_invalidresponse);
8312a1c2 279 }
54ed1d64 280 return;
281 }
282
8312a1c2 283 /* Now, we have some RRs which we wanted. */
54ed1d64 284
11c8bf9b 285 qu->answer->rrs.untyped= adns__alloc_interim(qu,qu->typei->rrsz*wantedrrs);
9b86645c 286 if (!qu->answer->rrs.untyped) { adns__query_fail(qu,adns_s_nomemory); return; }
5c596e4d 287
f2ad23ee 288 typei= qu->typei;
5c596e4d 289 cbyte= anstart;
f2ad23ee 290 rrsdata= qu->answer->rrs.bytes;
26eb6bdc 291
292 pai.ads= qu->ads;
293 pai.qu= qu;
294 pai.serv= serv;
295 pai.dgram= dgram;
296 pai.dglen= dglen;
297 pai.nsstart= nsstart;
298 pai.nscount= nscount;
299 pai.arcount= arcount;
ba1ddf08 300 pai.now= now;
26eb6bdc 301
302 for (rri=0, nrrs=0; rri<ancount; rri++) {
11c8bf9b 303 st= adns__findrr(qu,serv, dgram,dglen,&cbyte,
2c7b101b 304 &rrtype,&rrclass,&ttl, &rdlength,&rdstart,
11c8bf9b 305 &ownermatched);
5c596e4d 306 assert(!st); assert(rrtype != -1);
307 if (rrclass != DNS_CLASS_IN ||
7f702335 308 rrtype != (qu->typei->type & adns__rrt_typemask) ||
309 !ownermatched)
5c596e4d 310 continue;
2c7b101b 311 adns__update_expires(qu,ttl,now);
26eb6bdc 312 st= typei->parse(&pai, rdstart,rdstart+rdlength, rrsdata+nrrs*typei->rrsz);
11c8bf9b 313 if (st) { adns__query_fail(qu,st); return; }
7f702335 314 if (rdstart==-1) goto x_truncated;
f2ad23ee 315 nrrs++;
5c596e4d 316 }
f2ad23ee 317 assert(nrrs==wantedrrs);
318 qu->answer->nrrs= nrrs;
54ed1d64 319
5c596e4d 320 /* This may have generated some child queries ... */
321 if (qu->children.head) {
d0a057ac 322 qu->state= query_childw;
5c596e4d 323 LIST_LINK_TAIL(ads->childw,qu);
324 return;
54ed1d64 325 }
11c8bf9b 326 adns__query_done(qu);
5c596e4d 327 return;
8312a1c2 328
98db6da3 329 x_truncated:
f2ad23ee 330
5c596e4d 331 if (!flg_tc) {
7f702335 332 adns__diag(ads,serv,qu,"server sent datagram which points outside itself");
9b86645c 333 adns__query_fail(qu,adns_s_invalidresponse);
5c596e4d 334 return;
335 }
5c596e4d 336 qu->flags |= adns_qf_usevc;
f2ad23ee 337
338 x_restartquery:
f2ad23ee 339 if (qu->cname_dgram) {
340 st= adns__mkquery_frdgram(qu->ads,&qu->vb,&qu->id,
341 qu->cname_dgram, qu->cname_dglen, qu->cname_begin,
342 qu->typei->type, qu->flags);
343 if (st) { adns__query_fail(qu,st); return; }
344
345 newquery= realloc(qu->query_dgram,qu->vb.used);
9b86645c 346 if (!newquery) { adns__query_fail(qu,adns_s_nomemory); return; }
f2ad23ee 347
348 qu->query_dgram= newquery;
349 qu->query_dglen= qu->vb.used;
350 memcpy(newquery,qu->vb.buf,qu->vb.used);
351 }
352
d0a057ac 353 if (qu->state == query_tcpw) qu->state= query_tosend;
354 qu->retries= 0;
1be24aef 355 adns__reset_preserved(qu);
24d52b13 356 adns__query_send(qu,now);
5c596e4d 357}