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