chiark / gitweb /
Can get addresses from Additional and Authority sections, and return
[adns.git] / src / reply.c
1 /*
2  * reply.c
3  * - main handling and parsing routine for received datagrams
4  */
5 /*
6  *  This file is part of adns, which is Copyright (C) 1997, 1998 Ian Jackson
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  */
22
23 #include <stdlib.h>
24 #include <string.h>
25
26 #include "internal.h"
27     
28 void adns__procdgram(adns_state ads, const byte *dgram, int dglen,
29                      int serv, struct timeval now) {
30   int cbyte, rrstart, wantedrrs, rri, foundsoa, foundns, cname_here;
31   int id, f1, f2, qdcount, ancount, nscount, arcount;
32   int flg_ra, flg_rd, flg_tc, flg_qr, opcode;
33   int rrtype, rrclass, rdlength, rdstart;
34   int anstart, nsstart, arstart;
35   int ownermatched, l, nrrs;
36   const typeinfo *typei;
37   adns_query qu, nqu;
38   dns_rcode rcode;
39   adns_status st;
40   vbuf tempvb;
41   byte *newquery, *rrsdata;
42   parseinfo pai;
43   
44   if (dglen<DNS_HDRSIZE) {
45     adns__diag(ads,serv,0,"received datagram too short for message header (%d)",dglen);
46     return;
47   }
48   cbyte= 0;
49   GET_W(cbyte,id);
50   GET_B(cbyte,f1);
51   GET_B(cbyte,f2);
52   GET_W(cbyte,qdcount);
53   GET_W(cbyte,ancount);
54   GET_W(cbyte,nscount);
55   GET_W(cbyte,arcount);
56   assert(cbyte == DNS_HDRSIZE);
57
58   flg_qr= f1&0x80;
59   opcode= (f1&0x78)>>3;
60   flg_tc= f1&0x02;
61   flg_rd= f1&0x01;
62   flg_ra= f2&0x80;
63   rcode= (f2&0x0f);
64
65   cname_here= 0;
66   
67   if (!flg_qr) {
68     adns__diag(ads,serv,0,"server sent us a query, not a response");
69     return;
70   }
71   if (opcode) {
72     adns__diag(ads,serv,0,"server sent us unknown opcode %d (wanted 0=QUERY)",opcode);
73     return;
74   }
75   if (!qdcount) {
76     adns__diag(ads,serv,0,"server sent reply without quoting our question");
77     return;
78   } else if (qdcount>1) {
79     adns__diag(ads,serv,0,"server claimed to answer %d questions with one message",
80                qdcount);
81     return;
82   }
83   for (qu= ads->timew.head; qu; qu= nqu) {
84     nqu= qu->next;
85     if (qu->id != id) continue;
86     if (dglen < qu->query_dglen) continue;
87     if (memcmp(qu->query_dgram+DNS_HDRSIZE,
88                dgram+DNS_HDRSIZE,
89                qu->query_dglen-DNS_HDRSIZE))
90       continue;
91     break;
92   }
93   if (!qu) {
94     if (ads->iflags & adns_if_debug) {
95       adns__vbuf_init(&tempvb);
96       adns__debug(ads,serv,0,"reply not found, id %02x, query owner %s",
97                   id, adns__diag_domain(ads,serv,0,&tempvb,dgram,dglen,DNS_HDRSIZE));
98       adns__vbuf_free(&tempvb);
99     }
100     return;
101   }
102   anstart= qu->query_dglen;
103   arstart= -1;
104
105   LIST_UNLINK(ads->timew,qu);
106   /* We're definitely going to do something with this query now */
107   
108   switch (rcode) {
109   case rcode_noerror:
110   case rcode_nxdomain:
111     break;
112   case rcode_formaterror:
113     adns__warn(ads,serv,qu,"server cannot understand our query (Format Error)");
114     adns__query_fail(qu,adns_s_serverfaulty);
115     return;
116   case rcode_servfail:
117     adns__query_fail(qu,adns_s_servfail);
118     return;
119   case rcode_notimp:
120     adns__warn(ads,serv,qu,"server claims not to implement our query");
121     adns__query_fail(qu,adns_s_notimplemented);
122     return;
123   case rcode_refused:
124     adns__warn(ads,serv,qu,"server refused our query");
125     adns__query_fail(qu,adns_s_refused);
126     return;
127   default:
128     adns__warn(ads,serv,qu,"server gave unknown response code %d",rcode);
129     adns__query_fail(qu,adns_s_reasonunknown);
130     return;
131   }
132
133   /* Now, take a look at the answer section, and see if it is complete.
134    * If it has any CNAMEs we stuff them in the answer.
135    */
136   wantedrrs= 0;
137   cbyte= anstart;
138   for (rri= 0; rri<ancount; rri++) {
139     rrstart= cbyte;
140     st= adns__findrr(qu,serv, dgram,dglen,&cbyte,
141                      &rrtype,&rrclass,&rdlength,&rdstart,
142                      &ownermatched);
143     if (st) { adns__query_fail(qu,st); return; }
144     if (rrtype == -1) goto x_truncated;
145
146     if (rrclass != DNS_CLASS_IN) {
147       adns__diag(ads,serv,qu,"ignoring answer RR with wrong class %d (expected IN=%d)",
148                  rrclass,DNS_CLASS_IN);
149       continue;
150     }
151     if (!ownermatched) {
152       if (ads->iflags & adns_if_debug) {
153         adns__debug(ads,serv,qu,"ignoring RR with an unexpected owner %s",
154                     adns__diag_domain(ads,serv,qu, &qu->vb, dgram,dglen,rrstart));
155       }
156       continue;
157     }
158     if (rrtype == adns_r_cname && /* fixme - implement adns_qf_nocname */
159         (qu->typei->type & adns__rrt_typemask) != adns_r_cname) {
160       if (!qu->cname_dgram) { /* Ignore second and subsequent CNAMEs */
161         qu->cname_begin= rdstart;
162         qu->cname_dglen= dglen;
163         st= adns__parse_domain(ads,serv,qu, &qu->vb,
164                                qu->flags & adns_qf_quoteok_cname ? pdf_quoteok : 0,
165                                dgram,dglen, &rdstart,rdstart+rdlength);
166         if (!qu->vb.used) goto x_truncated;
167         if (st) { adns__query_fail(qu,st); return; }
168         l= strlen(qu->vb.buf)+1;
169         qu->answer->cname= adns__alloc_interim(qu,l);
170         if (!qu->answer->cname) { adns__query_fail(qu,adns_s_nolocalmem); return; }
171
172         qu->cname_dgram= adns__alloc_mine(qu,dglen);
173         memcpy(qu->cname_dgram,dgram,dglen);
174
175         memcpy(qu->answer->cname,qu->vb.buf,l);
176         cname_here= 1;
177         /* If we find the answer section truncated after this point we restart
178          * the query at the CNAME; if beforehand then we obviously have to use
179          * TCP.  If there is no truncation we can use the whole answer if
180          * it contains the relevant info.
181          */
182       } else {
183         adns__debug(ads,serv,qu,"ignoring duplicate CNAME (%s, as well as %s)",
184                     adns__diag_domain(ads,serv,qu, &qu->vb, dgram,dglen,rdstart),
185                     qu->answer->cname);
186       }
187     } else if (rrtype == (qu->typei->type & adns__rrt_typemask)) {
188       wantedrrs++;
189     } else {
190       adns__debug(ads,serv,qu,"ignoring answer RR with irrelevant type %d",rrtype);
191     }
192   }
193
194   /* We defer handling truncated responses here, in case there was a CNAME
195    * which we could use.
196    */
197   if (flg_tc) goto x_truncated;
198   
199   nsstart= cbyte;
200
201   if (!wantedrrs) {
202     /* Oops, NODATA or NXDOMAIN or perhaps a referral (which would be a problem) */
203     
204     if (rcode == rcode_nxdomain) {
205       adns__query_fail(qu,adns_s_nxdomain);
206       return;
207     }
208
209     /* RFC2308: NODATA has _either_ a SOA _or_ _no_ NS records in authority section */
210     foundsoa= 0; foundns= 0;
211     for (rri= 0; rri<nscount; rri++) {
212       rrstart= cbyte;
213       st= adns__findrr(qu,serv, dgram,dglen,&cbyte,
214                        &rrtype,&rrclass,&rdlength,&rdstart, 0);
215       if (st) { adns__query_fail(qu,st); return; }
216       if (rrtype==-1) goto x_truncated;
217       if (rrclass != DNS_CLASS_IN) {
218         adns__diag(ads,serv,qu,
219                    "ignoring authority RR with wrong class %d (expected IN=%d)",
220                    rrclass,DNS_CLASS_IN);
221         continue;
222       }
223       if (rrtype == adns_r_soa_raw) { foundsoa= 1; break; }
224       else if (rrtype == adns_r_ns_raw) { foundns= 1; }
225     }
226
227     if (foundsoa || !foundns) {
228       /* Aha !  A NODATA response, good. */
229       adns__query_fail(qu,adns_s_nodata);
230       return;
231     }
232
233     /* Now what ?  No relevant answers, no SOA, and at least some NS's.
234      * Looks like a referral.  Just one last chance ... if we came across
235      * a CNAME in this datagram then we should probably do our own CNAME
236      * lookup now in the hope that we won't get a referral again.
237      */
238     if (cname_here) goto x_restartquery;
239
240     /* Bloody hell, I thought we asked for recursion ? */
241     if (flg_rd) {
242       adns__diag(ads,serv,qu,"server thinks we didn't ask for recursive lookup");
243     }
244     if (!flg_ra) {
245       adns__diag(ads,serv,qu,"server is not willing to do recursive lookups for us");
246       adns__query_fail(qu,adns_s_norecurse);
247     } else {
248       adns__diag(ads,serv,qu,"server claims to do recursion, but gave us a referral");
249       adns__query_fail(qu,adns_s_serverfaulty);
250     }
251     return;
252   }
253
254   /* Now, we have some RRs which we wanted. */
255
256   qu->answer->rrs.untyped= adns__alloc_interim(qu,qu->typei->rrsz*wantedrrs);
257   if (!qu->answer->rrs.untyped) { adns__query_fail(qu,adns_s_nolocalmem); return; }
258
259   typei= qu->typei;
260   cbyte= anstart;
261   rrsdata= qu->answer->rrs.bytes;
262
263   pai.ads= qu->ads;
264   pai.qu= qu;
265   pai.serv= serv;
266   pai.dgram= dgram;
267   pai.dglen= dglen;
268   pai.nsstart= nsstart;
269   pai.nscount= nscount;
270   pai.arcount= arcount;
271
272   for (rri=0, nrrs=0; rri<ancount; rri++) {
273     st= adns__findrr(qu,serv, dgram,dglen,&cbyte,
274                      &rrtype,&rrclass,&rdlength,&rdstart,
275                      &ownermatched);
276     assert(!st); assert(rrtype != -1);
277     if (rrclass != DNS_CLASS_IN ||
278         rrtype != (qu->typei->type & adns__rrt_typemask) ||
279         !ownermatched)
280       continue;
281     st= typei->parse(&pai, rdstart,rdstart+rdlength, rrsdata+nrrs*typei->rrsz);
282     if (st) { adns__query_fail(qu,st); return; }
283     if (rdstart==-1) goto x_truncated;
284     nrrs++;
285   }
286   assert(nrrs==wantedrrs);
287   qu->answer->nrrs= nrrs;
288
289   /* This may have generated some child queries ... */
290   if (qu->children.head) {
291     qu->state= query_child;
292     LIST_LINK_TAIL(ads->childw,qu);
293     return;
294   }
295
296   adns__query_done(qu);
297   return;
298
299  x_truncated:
300   
301   if (!flg_tc) {
302     adns__diag(ads,serv,qu,"server sent datagram which points outside itself");
303     adns__query_fail(qu,adns_s_serverfaulty);
304     return;
305   }
306   qu->flags |= adns_qf_usevc;
307   
308  x_restartquery:
309   
310   if (qu->cname_dgram) {
311     st= adns__mkquery_frdgram(qu->ads,&qu->vb,&qu->id,
312                               qu->cname_dgram, qu->cname_dglen, qu->cname_begin,
313                               qu->typei->type, qu->flags);
314     if (st) { adns__query_fail(qu,st); return; }
315     
316     newquery= realloc(qu->query_dgram,qu->vb.used);
317     if (!newquery) { adns__query_fail(qu,adns_s_nolocalmem); return; }
318     
319     qu->query_dgram= newquery;
320     qu->query_dglen= qu->vb.used;
321     memcpy(newquery,qu->vb.buf,qu->vb.used);
322   }
323   
324   adns__reset_cnameonly(qu);
325   adns__query_udp(qu,now);
326 }