chiark / gitweb /
@@ -10,6 +10,9 @@
[adns] / src / parse.c
CommitLineData
98db6da3 1/*
2 * parse.c
3 * - parsing assistance functions (mainly for domains inside datagrams)
4 */
5/*
39f45e7e 6 * This file is part of adns, which is
7 * Copyright (C) 1997-2000,2003,2006 Ian Jackson
8 * Copyright (C) 1999-2000,2003,2006 Tony Finch
9 * Copyright (C) 1991 Massachusetts Institute of Technology
10 * (See the file INSTALL for full details.)
98db6da3 11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2, or (at your option)
15 * any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software Foundation,
24 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25 */
5c596e4d 26
27#include "internal.h"
28
29int vbuf__append_quoted1035(vbuf *vb, const byte *buf, int len) {
30 char qbuf[10];
31 int i, ch;
32
33 while (len) {
34 qbuf[0]= 0;
35 for (i=0; i<len; i++) {
36 ch= buf[i];
996e3b68 37 if (ch <= ' ' || ch >= 127) {
5c596e4d 38 sprintf(qbuf,"\\%03o",ch);
39 break;
996e3b68 40 } else if (!ctype_domainunquoted(ch)) {
41 sprintf(qbuf,"\\%c",ch);
42 break;
5c596e4d 43 }
44 }
9c344a42 45 if (!adns__vbuf_append(vb,buf,i) ||
46 !adns__vbuf_append(vb,qbuf,strlen(qbuf)))
5c596e4d 47 return 0;
61093792 48 if (i<len) i++;
49 buf+= i;
50 len-= i;
5c596e4d 51 }
52 return 1;
53}
54
11c8bf9b 55void adns__findlabel_start(findlabel_state *fls, adns_state ads,
56 int serv, adns_query qu,
403fa0e0 57 const byte *dgram, int dglen, int max,
58 int dmbegin, int *dmend_rlater) {
59 fls->ads= ads;
11c8bf9b 60 fls->qu= qu;
403fa0e0 61 fls->serv= serv;
62 fls->dgram= dgram;
63 fls->dglen= dglen;
64 fls->max= max;
65 fls->cbyte= dmbegin;
66 fls->namelen= 0;
67 fls->dmend_r= dmend_rlater;
403fa0e0 68}
5c596e4d 69
11c8bf9b 70adns_status adns__findlabel_next(findlabel_state *fls,
403fa0e0 71 int *lablen_r, int *labstart_r) {
84a760b6 72 int lablen, jumpto;
11c8bf9b 73 const char *dgram;
403fa0e0 74
11c8bf9b 75 dgram= fls->dgram;
5c596e4d 76 for (;;) {
1e9efa71 77 if (fls->cbyte >= fls->dglen) goto x_truncated;
9b86645c 78 if (fls->cbyte >= fls->max) goto x_badresponse;
1e9efa71 79 GET_B(fls->cbyte,lablen);
80 if (!(lablen & 0x0c0)) break;
9b86645c 81 if ((lablen & 0x0c0) != 0x0c0) return adns_s_unknownformat;
1e9efa71 82 if (fls->cbyte >= fls->dglen) goto x_truncated;
9b86645c 83 if (fls->cbyte >= fls->max) goto x_badresponse;
1e9efa71 84 GET_B(fls->cbyte,jumpto);
85 jumpto |= (lablen&0x3f)<<8;
403fa0e0 86 if (fls->dmend_r) *(fls->dmend_r)= fls->cbyte;
1e9efa71 87 fls->cbyte= jumpto;
403fa0e0 88 fls->dmend_r= 0; fls->max= fls->dglen+1;
5c596e4d 89 }
1e9efa71 90 if (labstart_r) *labstart_r= fls->cbyte;
5c596e4d 91 if (lablen) {
403fa0e0 92 if (fls->namelen) fls->namelen++;
93 fls->namelen+= lablen;
9b86645c 94 if (fls->namelen > DNS_MAXDOMAIN) return adns_s_answerdomaintoolong;
403fa0e0 95 fls->cbyte+= lablen;
96 if (fls->cbyte > fls->dglen) goto x_truncated;
9b86645c 97 if (fls->cbyte > fls->max) goto x_badresponse;
403fa0e0 98 } else {
99 if (fls->dmend_r) *(fls->dmend_r)= fls->cbyte;
5c596e4d 100 }
5c596e4d 101 *lablen_r= lablen;
102 return adns_s_ok;
103
104 x_truncated:
105 *lablen_r= -1;
106 return adns_s_ok;
403fa0e0 107
9b86645c 108 x_badresponse:
9c344a42 109 adns__diag(fls->ads,fls->serv,fls->qu,
110 "label in domain runs beyond end of domain");
9b86645c 111 return adns_s_invalidresponse;
5c596e4d 112}
113
11c8bf9b 114adns_status adns__parse_domain(adns_state ads, int serv, adns_query qu,
abfa75eb 115 vbuf *vb, parsedomain_flags flags,
9c344a42 116 const byte *dgram, int dglen, int *cbyte_io,
117 int max) {
403fa0e0 118 findlabel_state fls;
119
9c344a42 120 adns__findlabel_start(&fls,ads, serv,qu, dgram,dglen,max,
121 *cbyte_io,cbyte_io);
403fa0e0 122 vb->used= 0;
6f2c243f 123 return adns__parse_domain_more(&fls,ads,qu, vb,flags,dgram);
124}
125
126adns_status adns__parse_domain_more(findlabel_state *fls, adns_state ads,
9c344a42 127 adns_query qu, vbuf *vb,
128 parsedomain_flags flags,
6f2c243f 129 const byte *dgram) {
130 int lablen, labstart, i, ch, first;
131 adns_status st;
132
133 first= 1;
5c596e4d 134 for (;;) {
6f2c243f 135 st= adns__findlabel_next(fls,&lablen,&labstart);
5c596e4d 136 if (st) return st;
403fa0e0 137 if (lablen<0) { vb->used=0; return adns_s_ok; }
5c596e4d 138 if (!lablen) break;
6f2c243f 139 if (first) {
140 first= 0;
141 } else {
9b86645c 142 if (!adns__vbuf_append(vb,".",1)) return adns_s_nomemory;
6f2c243f 143 }
cd363ffd 144 if (flags & pdf_quoteok) {
11c8bf9b 145 if (!vbuf__append_quoted1035(vb,dgram+labstart,lablen))
9b86645c 146 return adns_s_nomemory;
5c596e4d 147 } else {
cfdca685 148 ch= dgram[labstart];
9c344a42 149 if (!ctype_alpha(ch) && !ctype_digit(ch))
150 return adns_s_answerdomaininvalid;
403fa0e0 151 for (i= labstart+1; i<labstart+lablen; i++) {
152 ch= dgram[i];
5c596e4d 153 if (ch != '-' && !ctype_alpha(ch) && !ctype_digit(ch))
9b86645c 154 return adns_s_answerdomaininvalid;
5c596e4d 155 }
11c8bf9b 156 if (!adns__vbuf_append(vb,dgram+labstart,lablen))
9b86645c 157 return adns_s_nomemory;
5c596e4d 158 }
159 }
9b86645c 160 if (!adns__vbuf_append(vb,"",1)) return adns_s_nomemory;
5c596e4d 161 return adns_s_ok;
5c596e4d 162}
7f702335 163
26eb6bdc 164adns_status adns__findrr_anychk(adns_query qu, int serv,
165 const byte *dgram, int dglen, int *cbyte_io,
9c344a42 166 int *type_r, int *class_r,
167 unsigned long *ttl_r,
2c7b101b 168 int *rdlen_r, int *rdstart_r,
9c344a42 169 const byte *eo_dgram, int eo_dglen,
170 int eo_cbyte, int *eo_matched_r) {
ca711a07 171 findlabel_state fls, eo_fls_buf;
172 findlabel_state *eo_fls; /* 0 iff we know it's not matching eo_... */
403fa0e0 173 int cbyte;
174
ca711a07 175 int tmp, rdlen;
2c7b101b 176 unsigned long ttl;
11c8bf9b 177 int lablen, labstart, ch;
178 int eo_lablen, eo_labstart, eo_ch;
5c596e4d 179 adns_status st;
180
181 cbyte= *cbyte_io;
5c596e4d 182
11c8bf9b 183 adns__findlabel_start(&fls,qu->ads, serv,qu, dgram,dglen,dglen,cbyte,&cbyte);
403fa0e0 184 if (eo_dgram) {
ca711a07 185 eo_fls= &eo_fls_buf;
186 adns__findlabel_start(eo_fls,qu->ads, -1,0,
9c344a42 187 eo_dgram,eo_dglen,eo_dglen,eo_cbyte,0);
403fa0e0 188 } else {
ca711a07 189 eo_fls= 0;
403fa0e0 190 }
191
5c596e4d 192 for (;;) {
403fa0e0 193 st= adns__findlabel_next(&fls,&lablen,&labstart);
5c596e4d 194 if (st) return st;
195 if (lablen<0) goto x_truncated;
196
ca711a07 197 if (eo_fls) {
198 st= adns__findlabel_next(eo_fls,&eo_lablen,&eo_labstart);
403fa0e0 199 assert(!st); assert(eo_lablen>=0);
ca711a07 200 if (lablen != eo_lablen) eo_fls= 0;
201 while (eo_fls && eo_lablen-- > 0) {
5c596e4d 202 ch= dgram[labstart++]; if (ctype_alpha(ch)) ch &= ~32;
203 eo_ch= eo_dgram[eo_labstart++]; if (ctype_alpha(eo_ch)) eo_ch &= ~32;
ca711a07 204 if (ch != eo_ch) eo_fls= 0;
5c596e4d 205 }
206 }
1e9efa71 207 if (!lablen) break;
5c596e4d 208 }
ca711a07 209 if (eo_matched_r) *eo_matched_r= !!eo_fls;
5c596e4d 210
211 if (cbyte+10>dglen) goto x_truncated;
212 GET_W(cbyte,tmp); *type_r= tmp;
213 GET_W(cbyte,tmp); *class_r= tmp;
2c7b101b 214
215 GET_L(cbyte,ttl);
216 if (ttl > MAXTTLBELIEVE) ttl= MAXTTLBELIEVE;
217 *ttl_r= ttl;
218
1e9efa71 219 GET_W(cbyte,rdlen); if (rdlen_r) *rdlen_r= rdlen;
5c596e4d 220 if (rdstart_r) *rdstart_r= cbyte;
221 cbyte+= rdlen;
222 if (cbyte>dglen) goto x_truncated;
223 *cbyte_io= cbyte;
224 return adns_s_ok;
225
226 x_truncated:
227 *type_r= -1;
1e9efa71 228 return 0;
5c596e4d 229}
11c8bf9b 230
231adns_status adns__findrr(adns_query qu, int serv,
232 const byte *dgram, int dglen, int *cbyte_io,
2c7b101b 233 int *type_r, int *class_r, unsigned long *ttl_r,
234 int *rdlen_r, int *rdstart_r,
11c8bf9b 235 int *ownermatchedquery_r) {
236 if (!ownermatchedquery_r) {
26eb6bdc 237 return adns__findrr_anychk(qu,serv,
238 dgram,dglen,cbyte_io,
2c7b101b 239 type_r,class_r,ttl_r,rdlen_r,rdstart_r,
26eb6bdc 240 0,0,0, 0);
11c8bf9b 241 } else if (!qu->cname_dgram) {
26eb6bdc 242 return adns__findrr_anychk(qu,serv,
243 dgram,dglen,cbyte_io,
2c7b101b 244 type_r,class_r,ttl_r,rdlen_r,rdstart_r,
26eb6bdc 245 qu->query_dgram,qu->query_dglen,DNS_HDRSIZE,
246 ownermatchedquery_r);
11c8bf9b 247 } else {
26eb6bdc 248 return adns__findrr_anychk(qu,serv,
249 dgram,dglen,cbyte_io,
2c7b101b 250 type_r,class_r,ttl_r,rdlen_r,rdstart_r,
26eb6bdc 251 qu->cname_dgram,qu->cname_dglen,qu->cname_begin,
252 ownermatchedquery_r);
11c8bf9b 253 }
254}