update copyright dates and ADNS_VERSION_STRING
[adns] / src / parse.c
CommitLineData
e576be50 1/*
2 * parse.c
3 * - parsing assistance functions (mainly for domains inside 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 */
98a3f706 27
28#include "internal.h"
29
30int vbuf__append_quoted1035(vbuf *vb, const byte *buf, int len) {
31 char qbuf[10];
32 int i, ch;
33
34 while (len) {
35 qbuf[0]= 0;
36 for (i=0; i<len; i++) {
37 ch= buf[i];
8af5175d 38 if (ch <= ' ' || ch >= 127) {
98a3f706 39 sprintf(qbuf,"\\%03o",ch);
40 break;
8af5175d 41 } else if (!ctype_domainunquoted(ch)) {
42 sprintf(qbuf,"\\%c",ch);
43 break;
98a3f706 44 }
45 }
609133ee 46 if (!adns__vbuf_append(vb,buf,i) ||
47 !adns__vbuf_append(vb,qbuf,strlen(qbuf)))
98a3f706 48 return 0;
9ec44266 49 if (i<len) i++;
50 buf+= i;
51 len-= i;
98a3f706 52 }
53 return 1;
54}
55
3955725c 56void adns__findlabel_start(findlabel_state *fls, adns_state ads,
57 int serv, adns_query qu,
f1e474dd 58 const byte *dgram, int dglen, int max,
59 int dmbegin, int *dmend_rlater) {
60 fls->ads= ads;
3955725c 61 fls->qu= qu;
f1e474dd 62 fls->serv= serv;
63 fls->dgram= dgram;
64 fls->dglen= dglen;
65 fls->max= max;
66 fls->cbyte= dmbegin;
67 fls->namelen= 0;
68 fls->dmend_r= dmend_rlater;
f1e474dd 69}
98a3f706 70
3955725c 71adns_status adns__findlabel_next(findlabel_state *fls,
f1e474dd 72 int *lablen_r, int *labstart_r) {
6b891b5a 73 int lablen, jumpto;
3955725c 74 const char *dgram;
f1e474dd 75
3955725c 76 dgram= fls->dgram;
98a3f706 77 for (;;) {
86e7b8d9 78 if (fls->cbyte >= fls->dglen) goto x_truncated;
ea1e31e3 79 if (fls->cbyte >= fls->max) goto x_badresponse;
86e7b8d9 80 GET_B(fls->cbyte,lablen);
81 if (!(lablen & 0x0c0)) break;
ea1e31e3 82 if ((lablen & 0x0c0) != 0x0c0) return adns_s_unknownformat;
86e7b8d9 83 if (fls->cbyte >= fls->dglen) goto x_truncated;
ea1e31e3 84 if (fls->cbyte >= fls->max) goto x_badresponse;
86e7b8d9 85 GET_B(fls->cbyte,jumpto);
86 jumpto |= (lablen&0x3f)<<8;
f1e474dd 87 if (fls->dmend_r) *(fls->dmend_r)= fls->cbyte;
86e7b8d9 88 fls->cbyte= jumpto;
f1e474dd 89 fls->dmend_r= 0; fls->max= fls->dglen+1;
98a3f706 90 }
86e7b8d9 91 if (labstart_r) *labstart_r= fls->cbyte;
98a3f706 92 if (lablen) {
f1e474dd 93 if (fls->namelen) fls->namelen++;
94 fls->namelen+= lablen;
ea1e31e3 95 if (fls->namelen > DNS_MAXDOMAIN) return adns_s_answerdomaintoolong;
f1e474dd 96 fls->cbyte+= lablen;
97 if (fls->cbyte > fls->dglen) goto x_truncated;
ea1e31e3 98 if (fls->cbyte > fls->max) goto x_badresponse;
f1e474dd 99 } else {
100 if (fls->dmend_r) *(fls->dmend_r)= fls->cbyte;
98a3f706 101 }
98a3f706 102 *lablen_r= lablen;
103 return adns_s_ok;
104
105 x_truncated:
106 *lablen_r= -1;
107 return adns_s_ok;
f1e474dd 108
ea1e31e3 109 x_badresponse:
609133ee 110 adns__diag(fls->ads,fls->serv,fls->qu,
111 "label in domain runs beyond end of domain");
ea1e31e3 112 return adns_s_invalidresponse;
98a3f706 113}
114
3955725c 115adns_status adns__parse_domain(adns_state ads, int serv, adns_query qu,
07b2653a 116 vbuf *vb, parsedomain_flags flags,
609133ee 117 const byte *dgram, int dglen, int *cbyte_io,
118 int max) {
f1e474dd 119 findlabel_state fls;
120
609133ee 121 adns__findlabel_start(&fls,ads, serv,qu, dgram,dglen,max,
122 *cbyte_io,cbyte_io);
f1e474dd 123 vb->used= 0;
eaa44731 124 return adns__parse_domain_more(&fls,ads,qu, vb,flags,dgram);
125}
126
127adns_status adns__parse_domain_more(findlabel_state *fls, adns_state ads,
609133ee 128 adns_query qu, vbuf *vb,
129 parsedomain_flags flags,
eaa44731 130 const byte *dgram) {
131 int lablen, labstart, i, ch, first;
132 adns_status st;
133
134 first= 1;
98a3f706 135 for (;;) {
eaa44731 136 st= adns__findlabel_next(fls,&lablen,&labstart);
98a3f706 137 if (st) return st;
f1e474dd 138 if (lablen<0) { vb->used=0; return adns_s_ok; }
98a3f706 139 if (!lablen) break;
eaa44731 140 if (first) {
141 first= 0;
142 } else {
ea1e31e3 143 if (!adns__vbuf_append(vb,".",1)) return adns_s_nomemory;
eaa44731 144 }
828d89bd 145 if (flags & pdf_quoteok) {
3955725c 146 if (!vbuf__append_quoted1035(vb,dgram+labstart,lablen))
ea1e31e3 147 return adns_s_nomemory;
98a3f706 148 } else {
ffbda80c 149 ch= dgram[labstart];
609133ee 150 if (!ctype_alpha(ch) && !ctype_digit(ch))
151 return adns_s_answerdomaininvalid;
f1e474dd 152 for (i= labstart+1; i<labstart+lablen; i++) {
153 ch= dgram[i];
98a3f706 154 if (ch != '-' && !ctype_alpha(ch) && !ctype_digit(ch))
ea1e31e3 155 return adns_s_answerdomaininvalid;
98a3f706 156 }
3955725c 157 if (!adns__vbuf_append(vb,dgram+labstart,lablen))
ea1e31e3 158 return adns_s_nomemory;
98a3f706 159 }
160 }
ea1e31e3 161 if (!adns__vbuf_append(vb,"",1)) return adns_s_nomemory;
98a3f706 162 return adns_s_ok;
98a3f706 163}
31144a72 164
1dfe95d8 165adns_status adns__findrr_anychk(adns_query qu, int serv,
166 const byte *dgram, int dglen, int *cbyte_io,
609133ee 167 int *type_r, int *class_r,
168 unsigned long *ttl_r,
73dba56e 169 int *rdlen_r, int *rdstart_r,
609133ee 170 const byte *eo_dgram, int eo_dglen,
171 int eo_cbyte, int *eo_matched_r) {
f1e474dd 172 findlabel_state fls, eo_fls;
173 int cbyte;
174
175 int tmp, rdlen, mismatch;
73dba56e 176 unsigned long ttl;
3955725c 177 int lablen, labstart, ch;
178 int eo_lablen, eo_labstart, eo_ch;
98a3f706 179 adns_status st;
180
181 cbyte= *cbyte_io;
98a3f706 182
3955725c 183 adns__findlabel_start(&fls,qu->ads, serv,qu, dgram,dglen,dglen,cbyte,&cbyte);
f1e474dd 184 if (eo_dgram) {
609133ee 185 adns__findlabel_start(&eo_fls,qu->ads, -1,0,
186 eo_dgram,eo_dglen,eo_dglen,eo_cbyte,0);
f1e474dd 187 mismatch= 0;
188 } else {
189 mismatch= 1;
190 }
191
98a3f706 192 for (;;) {
f1e474dd 193 st= adns__findlabel_next(&fls,&lablen,&labstart);
98a3f706 194 if (st) return st;
195 if (lablen<0) goto x_truncated;
196
197 if (!mismatch) {
f1e474dd 198 st= adns__findlabel_next(&eo_fls,&eo_lablen,&eo_labstart);
199 assert(!st); assert(eo_lablen>=0);
98a3f706 200 if (lablen != eo_lablen) mismatch= 1;
86e7b8d9 201 while (!mismatch && eo_lablen-- > 0) {
98a3f706 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;
204 if (ch != eo_ch) mismatch= 1;
205 }
206 }
86e7b8d9 207 if (!lablen) break;
98a3f706 208 }
209 if (eo_matched_r) *eo_matched_r= !mismatch;
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;
73dba56e 214
215 GET_L(cbyte,ttl);
216 if (ttl > MAXTTLBELIEVE) ttl= MAXTTLBELIEVE;
217 *ttl_r= ttl;
218
86e7b8d9 219 GET_W(cbyte,rdlen); if (rdlen_r) *rdlen_r= rdlen;
98a3f706 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;
86e7b8d9 228 return 0;
98a3f706 229}
3955725c 230
231adns_status adns__findrr(adns_query qu, int serv,
232 const byte *dgram, int dglen, int *cbyte_io,
73dba56e 233 int *type_r, int *class_r, unsigned long *ttl_r,
234 int *rdlen_r, int *rdstart_r,
3955725c 235 int *ownermatchedquery_r) {
236 if (!ownermatchedquery_r) {
1dfe95d8 237 return adns__findrr_anychk(qu,serv,
238 dgram,dglen,cbyte_io,
73dba56e 239 type_r,class_r,ttl_r,rdlen_r,rdstart_r,
1dfe95d8 240 0,0,0, 0);
3955725c 241 } else if (!qu->cname_dgram) {
1dfe95d8 242 return adns__findrr_anychk(qu,serv,
243 dgram,dglen,cbyte_io,
73dba56e 244 type_r,class_r,ttl_r,rdlen_r,rdstart_r,
1dfe95d8 245 qu->query_dgram,qu->query_dglen,DNS_HDRSIZE,
246 ownermatchedquery_r);
3955725c 247 } else {
1dfe95d8 248 return adns__findrr_anychk(qu,serv,
249 dgram,dglen,cbyte_io,
73dba56e 250 type_r,class_r,ttl_r,rdlen_r,rdstart_r,
1dfe95d8 251 qu->cname_dgram,qu->cname_dglen,qu->cname_begin,
252 ownermatchedquery_r);
3955725c 253 }
254}