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