ns_name.c revision 1.3 1 1.3 christos /* $NetBSD: ns_name.c,v 1.3 2004/11/07 02:19:49 christos Exp $ */
2 1.1 christos
3 1.1 christos /*
4 1.1 christos * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC")
5 1.1 christos * Copyright (c) 1996,1999 by Internet Software Consortium.
6 1.1 christos *
7 1.1 christos * Permission to use, copy, modify, and distribute this software for any
8 1.1 christos * purpose with or without fee is hereby granted, provided that the above
9 1.1 christos * copyright notice and this permission notice appear in all copies.
10 1.1 christos *
11 1.1 christos * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES
12 1.1 christos * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13 1.1 christos * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR
14 1.1 christos * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15 1.1 christos * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16 1.1 christos * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
17 1.1 christos * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18 1.1 christos */
19 1.1 christos
20 1.2 christos #include <sys/cdefs.h>
21 1.1 christos #ifndef lint
22 1.2 christos #ifdef notdef
23 1.3 christos static const char rcsid[] = "Id: ns_name.c,v 1.3.2.4.4.2 2004/05/04 03:27:47 marka Exp";
24 1.2 christos #else
25 1.3 christos __RCSID("$NetBSD: ns_name.c,v 1.3 2004/11/07 02:19:49 christos Exp $");
26 1.2 christos #endif
27 1.1 christos #endif
28 1.1 christos
29 1.1 christos #include "port_before.h"
30 1.1 christos
31 1.1 christos #include <sys/types.h>
32 1.1 christos
33 1.1 christos #include <netinet/in.h>
34 1.1 christos #include <arpa/nameser.h>
35 1.1 christos
36 1.1 christos #include <errno.h>
37 1.1 christos #include <resolv.h>
38 1.1 christos #include <string.h>
39 1.1 christos #include <ctype.h>
40 1.1 christos #include <stdlib.h>
41 1.1 christos #include <limits.h>
42 1.1 christos
43 1.1 christos #include "port_after.h"
44 1.1 christos
45 1.1 christos #ifdef SPRINTF_CHAR
46 1.1 christos # define SPRINTF(x) strlen(sprintf/**/x)
47 1.1 christos #else
48 1.1 christos # define SPRINTF(x) ((size_t)sprintf x)
49 1.1 christos #endif
50 1.1 christos
51 1.1 christos #define NS_TYPE_ELT 0x40 /* EDNS0 extended label type */
52 1.1 christos #define DNS_LABELTYPE_BITSTRING 0x41
53 1.1 christos
54 1.1 christos /* Data. */
55 1.1 christos
56 1.1 christos static const char digits[] = "0123456789";
57 1.1 christos
58 1.1 christos static const char digitvalue[256] = {
59 1.1 christos -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, /*16*/
60 1.1 christos -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, /*32*/
61 1.1 christos -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, /*48*/
62 1.1 christos 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, -1, -1, -1, -1, -1, -1, /*64*/
63 1.1 christos -1, 10, 11, 12, 13, 14, 15, -1, -1, -1, -1, -1, -1, -1, -1, -1, /*80*/
64 1.1 christos -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, /*96*/
65 1.1 christos -1, 10, 11, 12, 13, 14, 15, -1, -1, -1, -1, -1, -1, -1, -1, -1, /*112*/
66 1.1 christos -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, /*128*/
67 1.1 christos -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
68 1.1 christos -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
69 1.1 christos -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
70 1.1 christos -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
71 1.1 christos -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
72 1.1 christos -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
73 1.1 christos -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
74 1.1 christos -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, /*256*/
75 1.1 christos };
76 1.1 christos
77 1.1 christos /* Forward. */
78 1.1 christos
79 1.1 christos static int special(int);
80 1.1 christos static int printable(int);
81 1.1 christos static int dn_find(const u_char *, const u_char *,
82 1.1 christos const u_char * const *,
83 1.1 christos const u_char * const *);
84 1.1 christos static int encode_bitsring(const char **, const char *,
85 1.3 christos unsigned char **, unsigned char **,
86 1.3 christos unsigned const char *);
87 1.1 christos static int labellen(const u_char *);
88 1.3 christos static int decode_bitstring(const unsigned char **,
89 1.3 christos char *, const char *);
90 1.1 christos
91 1.1 christos /* Public. */
92 1.1 christos
93 1.1 christos /*
94 1.1 christos * ns_name_ntop(src, dst, dstsiz)
95 1.1 christos * Convert an encoded domain name to printable ascii as per RFC1035.
96 1.1 christos * return:
97 1.1 christos * Number of bytes written to buffer, or -1 (with errno set)
98 1.1 christos * notes:
99 1.1 christos * The root is returned as "."
100 1.1 christos * All other domains are returned in non absolute form
101 1.1 christos */
102 1.1 christos int
103 1.1 christos ns_name_ntop(const u_char *src, char *dst, size_t dstsiz)
104 1.1 christos {
105 1.1 christos const u_char *cp;
106 1.1 christos char *dn, *eom;
107 1.1 christos u_char c;
108 1.1 christos u_int n;
109 1.1 christos int l;
110 1.1 christos
111 1.1 christos cp = src;
112 1.1 christos dn = dst;
113 1.1 christos eom = dst + dstsiz;
114 1.1 christos
115 1.1 christos while ((n = *cp++) != 0) {
116 1.1 christos if ((n & NS_CMPRSFLGS) == NS_CMPRSFLGS) {
117 1.1 christos /* Some kind of compression pointer. */
118 1.1 christos errno = EMSGSIZE;
119 1.1 christos return (-1);
120 1.1 christos }
121 1.1 christos if (dn != dst) {
122 1.1 christos if (dn >= eom) {
123 1.1 christos errno = EMSGSIZE;
124 1.1 christos return (-1);
125 1.1 christos }
126 1.1 christos *dn++ = '.';
127 1.1 christos }
128 1.1 christos if ((l = labellen(cp - 1)) < 0) {
129 1.1 christos errno = EMSGSIZE; /* XXX */
130 1.1 christos return(-1);
131 1.1 christos }
132 1.1 christos if (dn + l >= eom) {
133 1.1 christos errno = EMSGSIZE;
134 1.1 christos return (-1);
135 1.1 christos }
136 1.1 christos if ((n & NS_CMPRSFLGS) == NS_TYPE_ELT) {
137 1.1 christos int m;
138 1.1 christos
139 1.1 christos if (n != DNS_LABELTYPE_BITSTRING) {
140 1.1 christos /* XXX: labellen should reject this case */
141 1.1 christos errno = EINVAL;
142 1.1 christos return(-1);
143 1.1 christos }
144 1.3 christos if ((m = decode_bitstring(&cp, dn, eom)) < 0)
145 1.1 christos {
146 1.1 christos errno = EMSGSIZE;
147 1.1 christos return(-1);
148 1.1 christos }
149 1.1 christos dn += m;
150 1.1 christos continue;
151 1.1 christos }
152 1.2 christos for (; l > 0; l--) {
153 1.1 christos c = *cp++;
154 1.1 christos if (special(c)) {
155 1.1 christos if (dn + 1 >= eom) {
156 1.1 christos errno = EMSGSIZE;
157 1.1 christos return (-1);
158 1.1 christos }
159 1.1 christos *dn++ = '\\';
160 1.1 christos *dn++ = (char)c;
161 1.1 christos } else if (!printable(c)) {
162 1.1 christos if (dn + 3 >= eom) {
163 1.1 christos errno = EMSGSIZE;
164 1.1 christos return (-1);
165 1.1 christos }
166 1.1 christos *dn++ = '\\';
167 1.1 christos *dn++ = digits[c / 100];
168 1.1 christos *dn++ = digits[(c % 100) / 10];
169 1.1 christos *dn++ = digits[c % 10];
170 1.1 christos } else {
171 1.1 christos if (dn >= eom) {
172 1.1 christos errno = EMSGSIZE;
173 1.1 christos return (-1);
174 1.1 christos }
175 1.1 christos *dn++ = (char)c;
176 1.1 christos }
177 1.1 christos }
178 1.1 christos }
179 1.1 christos if (dn == dst) {
180 1.1 christos if (dn >= eom) {
181 1.1 christos errno = EMSGSIZE;
182 1.1 christos return (-1);
183 1.1 christos }
184 1.1 christos *dn++ = '.';
185 1.1 christos }
186 1.1 christos if (dn >= eom) {
187 1.1 christos errno = EMSGSIZE;
188 1.1 christos return (-1);
189 1.1 christos }
190 1.1 christos *dn++ = '\0';
191 1.1 christos return (dn - dst);
192 1.1 christos }
193 1.1 christos
194 1.1 christos /*
195 1.1 christos * ns_name_pton(src, dst, dstsiz)
196 1.1 christos * Convert a ascii string into an encoded domain name as per RFC1035.
197 1.1 christos * return:
198 1.1 christos * -1 if it fails
199 1.1 christos * 1 if string was fully qualified
200 1.1 christos * 0 is string was not fully qualified
201 1.1 christos * notes:
202 1.1 christos * Enforces label and domain length limits.
203 1.1 christos */
204 1.1 christos
205 1.1 christos int
206 1.1 christos ns_name_pton(const char *src, u_char *dst, size_t dstsiz)
207 1.1 christos {
208 1.1 christos u_char *label, *bp, *eom;
209 1.1 christos int c, n, escaped, e = 0;
210 1.1 christos char *cp;
211 1.1 christos
212 1.1 christos escaped = 0;
213 1.1 christos bp = dst;
214 1.1 christos eom = dst + dstsiz;
215 1.1 christos label = bp++;
216 1.1 christos
217 1.1 christos while ((c = *src++) != 0) {
218 1.1 christos if (escaped) {
219 1.1 christos if (c == '[') { /* start a bit string label */
220 1.1 christos if ((cp = strchr(src, ']')) == NULL) {
221 1.1 christos errno = EINVAL; /* ??? */
222 1.1 christos return(-1);
223 1.1 christos }
224 1.3 christos if ((e = encode_bitsring(&src, cp + 2,
225 1.3 christos &label, &bp, eom))
226 1.1 christos != 0) {
227 1.1 christos errno = e;
228 1.1 christos return(-1);
229 1.1 christos }
230 1.1 christos escaped = 0;
231 1.1 christos label = bp++;
232 1.1 christos if ((c = *src++) == 0)
233 1.1 christos goto done;
234 1.1 christos else if (c != '.') {
235 1.1 christos errno = EINVAL;
236 1.1 christos return(-1);
237 1.1 christos }
238 1.1 christos continue;
239 1.1 christos }
240 1.1 christos else if ((cp = strchr(digits, c)) != NULL) {
241 1.1 christos n = (cp - digits) * 100;
242 1.1 christos if ((c = *src++) == 0 ||
243 1.1 christos (cp = strchr(digits, c)) == NULL) {
244 1.1 christos errno = EMSGSIZE;
245 1.1 christos return (-1);
246 1.1 christos }
247 1.1 christos n += (cp - digits) * 10;
248 1.1 christos if ((c = *src++) == 0 ||
249 1.1 christos (cp = strchr(digits, c)) == NULL) {
250 1.1 christos errno = EMSGSIZE;
251 1.1 christos return (-1);
252 1.1 christos }
253 1.1 christos n += (cp - digits);
254 1.1 christos if (n > 255) {
255 1.1 christos errno = EMSGSIZE;
256 1.1 christos return (-1);
257 1.1 christos }
258 1.1 christos c = n;
259 1.1 christos }
260 1.1 christos escaped = 0;
261 1.1 christos } else if (c == '\\') {
262 1.1 christos escaped = 1;
263 1.1 christos continue;
264 1.1 christos } else if (c == '.') {
265 1.1 christos c = (bp - label - 1);
266 1.1 christos if ((c & NS_CMPRSFLGS) != 0) { /* Label too big. */
267 1.1 christos errno = EMSGSIZE;
268 1.1 christos return (-1);
269 1.1 christos }
270 1.1 christos if (label >= eom) {
271 1.1 christos errno = EMSGSIZE;
272 1.1 christos return (-1);
273 1.1 christos }
274 1.1 christos *label = c;
275 1.1 christos /* Fully qualified ? */
276 1.1 christos if (*src == '\0') {
277 1.1 christos if (c != 0) {
278 1.1 christos if (bp >= eom) {
279 1.1 christos errno = EMSGSIZE;
280 1.1 christos return (-1);
281 1.1 christos }
282 1.1 christos *bp++ = '\0';
283 1.1 christos }
284 1.1 christos if ((bp - dst) > MAXCDNAME) {
285 1.1 christos errno = EMSGSIZE;
286 1.1 christos return (-1);
287 1.1 christos }
288 1.1 christos return (1);
289 1.1 christos }
290 1.1 christos if (c == 0 || *src == '.') {
291 1.1 christos errno = EMSGSIZE;
292 1.1 christos return (-1);
293 1.1 christos }
294 1.1 christos label = bp++;
295 1.1 christos continue;
296 1.1 christos }
297 1.1 christos if (bp >= eom) {
298 1.1 christos errno = EMSGSIZE;
299 1.1 christos return (-1);
300 1.1 christos }
301 1.1 christos *bp++ = (u_char)c;
302 1.1 christos }
303 1.1 christos c = (bp - label - 1);
304 1.1 christos if ((c & NS_CMPRSFLGS) != 0) { /* Label too big. */
305 1.1 christos errno = EMSGSIZE;
306 1.1 christos return (-1);
307 1.1 christos }
308 1.1 christos done:
309 1.1 christos if (label >= eom) {
310 1.1 christos errno = EMSGSIZE;
311 1.1 christos return (-1);
312 1.1 christos }
313 1.1 christos *label = c;
314 1.1 christos if (c != 0) {
315 1.1 christos if (bp >= eom) {
316 1.1 christos errno = EMSGSIZE;
317 1.1 christos return (-1);
318 1.1 christos }
319 1.1 christos *bp++ = 0;
320 1.1 christos }
321 1.1 christos if ((bp - dst) > MAXCDNAME) { /* src too big */
322 1.1 christos errno = EMSGSIZE;
323 1.1 christos return (-1);
324 1.1 christos }
325 1.1 christos return (0);
326 1.1 christos }
327 1.1 christos
328 1.1 christos /*
329 1.1 christos * ns_name_ntol(src, dst, dstsiz)
330 1.1 christos * Convert a network strings labels into all lowercase.
331 1.1 christos * return:
332 1.1 christos * Number of bytes written to buffer, or -1 (with errno set)
333 1.1 christos * notes:
334 1.1 christos * Enforces label and domain length limits.
335 1.1 christos */
336 1.1 christos
337 1.1 christos int
338 1.1 christos ns_name_ntol(const u_char *src, u_char *dst, size_t dstsiz)
339 1.1 christos {
340 1.1 christos const u_char *cp;
341 1.1 christos u_char *dn, *eom;
342 1.1 christos u_char c;
343 1.1 christos u_int n;
344 1.1 christos int l;
345 1.1 christos
346 1.1 christos cp = src;
347 1.1 christos dn = dst;
348 1.1 christos eom = dst + dstsiz;
349 1.1 christos
350 1.1 christos if (dn >= eom) {
351 1.1 christos errno = EMSGSIZE;
352 1.1 christos return (-1);
353 1.1 christos }
354 1.1 christos while ((n = *cp++) != 0) {
355 1.1 christos if ((n & NS_CMPRSFLGS) == NS_CMPRSFLGS) {
356 1.1 christos /* Some kind of compression pointer. */
357 1.1 christos errno = EMSGSIZE;
358 1.1 christos return (-1);
359 1.1 christos }
360 1.1 christos *dn++ = n;
361 1.1 christos if ((l = labellen(cp - 1)) < 0) {
362 1.1 christos errno = EMSGSIZE;
363 1.1 christos return (-1);
364 1.1 christos }
365 1.1 christos if (dn + l >= eom) {
366 1.1 christos errno = EMSGSIZE;
367 1.1 christos return (-1);
368 1.1 christos }
369 1.2 christos for (; l > 0; l--) {
370 1.1 christos c = *cp++;
371 1.1 christos if (isupper(c))
372 1.1 christos *dn++ = tolower(c);
373 1.1 christos else
374 1.1 christos *dn++ = c;
375 1.1 christos }
376 1.1 christos }
377 1.1 christos *dn++ = '\0';
378 1.1 christos return (dn - dst);
379 1.1 christos }
380 1.1 christos
381 1.1 christos /*
382 1.1 christos * ns_name_unpack(msg, eom, src, dst, dstsiz)
383 1.1 christos * Unpack a domain name from a message, source may be compressed.
384 1.1 christos * return:
385 1.1 christos * -1 if it fails, or consumed octets if it succeeds.
386 1.1 christos */
387 1.1 christos int
388 1.1 christos ns_name_unpack(const u_char *msg, const u_char *eom, const u_char *src,
389 1.1 christos u_char *dst, size_t dstsiz)
390 1.1 christos {
391 1.1 christos const u_char *srcp, *dstlim;
392 1.1 christos u_char *dstp;
393 1.1 christos int n, len, checked, l;
394 1.1 christos
395 1.1 christos len = -1;
396 1.1 christos checked = 0;
397 1.1 christos dstp = dst;
398 1.1 christos srcp = src;
399 1.1 christos dstlim = dst + dstsiz;
400 1.1 christos if (srcp < msg || srcp >= eom) {
401 1.1 christos errno = EMSGSIZE;
402 1.1 christos return (-1);
403 1.1 christos }
404 1.1 christos /* Fetch next label in domain name. */
405 1.1 christos while ((n = *srcp++) != 0) {
406 1.1 christos /* Check for indirection. */
407 1.1 christos switch (n & NS_CMPRSFLGS) {
408 1.1 christos case 0:
409 1.1 christos case NS_TYPE_ELT:
410 1.1 christos /* Limit checks. */
411 1.1 christos if ((l = labellen(srcp - 1)) < 0) {
412 1.1 christos errno = EMSGSIZE;
413 1.1 christos return(-1);
414 1.1 christos }
415 1.1 christos if (dstp + l + 1 >= dstlim || srcp + l >= eom) {
416 1.1 christos errno = EMSGSIZE;
417 1.1 christos return (-1);
418 1.1 christos }
419 1.1 christos checked += l + 1;
420 1.1 christos *dstp++ = n;
421 1.2 christos memcpy(dstp, srcp, (size_t)l);
422 1.1 christos dstp += l;
423 1.1 christos srcp += l;
424 1.1 christos break;
425 1.1 christos
426 1.1 christos case NS_CMPRSFLGS:
427 1.1 christos if (srcp >= eom) {
428 1.1 christos errno = EMSGSIZE;
429 1.1 christos return (-1);
430 1.1 christos }
431 1.1 christos if (len < 0)
432 1.1 christos len = srcp - src + 1;
433 1.1 christos srcp = msg + (((n & 0x3f) << 8) | (*srcp & 0xff));
434 1.1 christos if (srcp < msg || srcp >= eom) { /* Out of range. */
435 1.1 christos errno = EMSGSIZE;
436 1.1 christos return (-1);
437 1.1 christos }
438 1.1 christos checked += 2;
439 1.1 christos /*
440 1.1 christos * Check for loops in the compressed name;
441 1.1 christos * if we've looked at the whole message,
442 1.1 christos * there must be a loop.
443 1.1 christos */
444 1.1 christos if (checked >= eom - msg) {
445 1.1 christos errno = EMSGSIZE;
446 1.1 christos return (-1);
447 1.1 christos }
448 1.1 christos break;
449 1.1 christos
450 1.1 christos default:
451 1.1 christos errno = EMSGSIZE;
452 1.1 christos return (-1); /* flag error */
453 1.1 christos }
454 1.1 christos }
455 1.1 christos *dstp = '\0';
456 1.1 christos if (len < 0)
457 1.1 christos len = srcp - src;
458 1.1 christos return (len);
459 1.1 christos }
460 1.1 christos
461 1.1 christos /*
462 1.1 christos * ns_name_pack(src, dst, dstsiz, dnptrs, lastdnptr)
463 1.1 christos * Pack domain name 'domain' into 'comp_dn'.
464 1.1 christos * return:
465 1.1 christos * Size of the compressed name, or -1.
466 1.1 christos * notes:
467 1.1 christos * 'dnptrs' is an array of pointers to previous compressed names.
468 1.1 christos * dnptrs[0] is a pointer to the beginning of the message. The array
469 1.1 christos * ends with NULL.
470 1.1 christos * 'lastdnptr' is a pointer to the end of the array pointed to
471 1.1 christos * by 'dnptrs'.
472 1.1 christos * Side effects:
473 1.1 christos * The list of pointers in dnptrs is updated for labels inserted into
474 1.1 christos * the message as we compress the name. If 'dnptr' is NULL, we don't
475 1.1 christos * try to compress names. If 'lastdnptr' is NULL, we don't update the
476 1.1 christos * list.
477 1.1 christos */
478 1.1 christos int
479 1.1 christos ns_name_pack(const u_char *src, u_char *dst, int dstsiz,
480 1.1 christos const u_char **dnptrs, const u_char **lastdnptr)
481 1.1 christos {
482 1.1 christos u_char *dstp;
483 1.1 christos const u_char **cpp, **lpp, *eob, *msg;
484 1.1 christos const u_char *srcp;
485 1.1 christos int n, l, first = 1;
486 1.1 christos
487 1.1 christos srcp = src;
488 1.1 christos dstp = dst;
489 1.1 christos eob = dstp + dstsiz;
490 1.1 christos lpp = cpp = NULL;
491 1.1 christos if (dnptrs != NULL) {
492 1.1 christos if ((msg = *dnptrs++) != NULL) {
493 1.1 christos for (cpp = dnptrs; *cpp != NULL; cpp++)
494 1.2 christos ;
495 1.1 christos lpp = cpp; /* end of list to search */
496 1.1 christos }
497 1.1 christos } else
498 1.1 christos msg = NULL;
499 1.1 christos
500 1.1 christos /* make sure the domain we are about to add is legal */
501 1.1 christos l = 0;
502 1.1 christos do {
503 1.1 christos int l0;
504 1.1 christos
505 1.1 christos n = *srcp;
506 1.1 christos if ((n & NS_CMPRSFLGS) == NS_CMPRSFLGS) {
507 1.1 christos errno = EMSGSIZE;
508 1.1 christos return (-1);
509 1.1 christos }
510 1.1 christos if ((l0 = labellen(srcp)) < 0) {
511 1.1 christos errno = EINVAL;
512 1.1 christos return(-1);
513 1.1 christos }
514 1.1 christos l += l0 + 1;
515 1.1 christos if (l > MAXCDNAME) {
516 1.1 christos errno = EMSGSIZE;
517 1.1 christos return (-1);
518 1.1 christos }
519 1.1 christos srcp += l0 + 1;
520 1.1 christos } while (n != 0);
521 1.1 christos
522 1.1 christos /* from here on we need to reset compression pointer array on error */
523 1.1 christos srcp = src;
524 1.1 christos do {
525 1.1 christos /* Look to see if we can use pointers. */
526 1.1 christos n = *srcp;
527 1.1 christos if (n != 0 && msg != NULL) {
528 1.1 christos l = dn_find(srcp, msg, (const u_char * const *)dnptrs,
529 1.1 christos (const u_char * const *)lpp);
530 1.1 christos if (l >= 0) {
531 1.1 christos if (dstp + 1 >= eob) {
532 1.1 christos goto cleanup;
533 1.1 christos }
534 1.2 christos *dstp++ = ((u_int32_t)l >> 8) | NS_CMPRSFLGS;
535 1.1 christos *dstp++ = l % 256;
536 1.1 christos return (dstp - dst);
537 1.1 christos }
538 1.1 christos /* Not found, save it. */
539 1.1 christos if (lastdnptr != NULL && cpp < lastdnptr - 1 &&
540 1.1 christos (dstp - msg) < 0x4000 && first) {
541 1.1 christos *cpp++ = dstp;
542 1.1 christos *cpp = NULL;
543 1.1 christos first = 0;
544 1.1 christos }
545 1.1 christos }
546 1.1 christos /* copy label to buffer */
547 1.1 christos if ((n & NS_CMPRSFLGS) == NS_CMPRSFLGS) {
548 1.1 christos /* Should not happen. */
549 1.1 christos goto cleanup;
550 1.1 christos }
551 1.1 christos n = labellen(srcp);
552 1.1 christos if (dstp + 1 + n >= eob) {
553 1.1 christos goto cleanup;
554 1.1 christos }
555 1.2 christos memcpy(dstp, srcp, (size_t)(n + 1));
556 1.1 christos srcp += n + 1;
557 1.1 christos dstp += n + 1;
558 1.1 christos } while (n != 0);
559 1.1 christos
560 1.1 christos if (dstp > eob) {
561 1.1 christos cleanup:
562 1.1 christos if (msg != NULL)
563 1.1 christos *lpp = NULL;
564 1.1 christos errno = EMSGSIZE;
565 1.1 christos return (-1);
566 1.1 christos }
567 1.1 christos return (dstp - dst);
568 1.1 christos }
569 1.1 christos
570 1.1 christos /*
571 1.1 christos * ns_name_uncompress(msg, eom, src, dst, dstsiz)
572 1.1 christos * Expand compressed domain name to presentation format.
573 1.1 christos * return:
574 1.1 christos * Number of bytes read out of `src', or -1 (with errno set).
575 1.1 christos * note:
576 1.1 christos * Root domain returns as "." not "".
577 1.1 christos */
578 1.1 christos int
579 1.1 christos ns_name_uncompress(const u_char *msg, const u_char *eom, const u_char *src,
580 1.1 christos char *dst, size_t dstsiz)
581 1.1 christos {
582 1.1 christos u_char tmp[NS_MAXCDNAME];
583 1.1 christos int n;
584 1.1 christos
585 1.1 christos if ((n = ns_name_unpack(msg, eom, src, tmp, sizeof tmp)) == -1)
586 1.1 christos return (-1);
587 1.1 christos if (ns_name_ntop(tmp, dst, dstsiz) == -1)
588 1.1 christos return (-1);
589 1.1 christos return (n);
590 1.1 christos }
591 1.1 christos
592 1.1 christos /*
593 1.1 christos * ns_name_compress(src, dst, dstsiz, dnptrs, lastdnptr)
594 1.1 christos * Compress a domain name into wire format, using compression pointers.
595 1.1 christos * return:
596 1.1 christos * Number of bytes consumed in `dst' or -1 (with errno set).
597 1.1 christos * notes:
598 1.1 christos * 'dnptrs' is an array of pointers to previous compressed names.
599 1.1 christos * dnptrs[0] is a pointer to the beginning of the message.
600 1.1 christos * The list ends with NULL. 'lastdnptr' is a pointer to the end of the
601 1.1 christos * array pointed to by 'dnptrs'. Side effect is to update the list of
602 1.1 christos * pointers for labels inserted into the message as we compress the name.
603 1.1 christos * If 'dnptr' is NULL, we don't try to compress names. If 'lastdnptr'
604 1.1 christos * is NULL, we don't update the list.
605 1.1 christos */
606 1.1 christos int
607 1.1 christos ns_name_compress(const char *src, u_char *dst, size_t dstsiz,
608 1.1 christos const u_char **dnptrs, const u_char **lastdnptr)
609 1.1 christos {
610 1.1 christos u_char tmp[NS_MAXCDNAME];
611 1.1 christos
612 1.1 christos if (ns_name_pton(src, tmp, sizeof tmp) == -1)
613 1.1 christos return (-1);
614 1.2 christos return (ns_name_pack(tmp, dst, (int)dstsiz, dnptrs, lastdnptr));
615 1.1 christos }
616 1.1 christos
617 1.1 christos /*
618 1.1 christos * Reset dnptrs so that there are no active references to pointers at or
619 1.1 christos * after src.
620 1.1 christos */
621 1.1 christos void
622 1.1 christos ns_name_rollback(const u_char *src, const u_char **dnptrs,
623 1.1 christos const u_char **lastdnptr)
624 1.1 christos {
625 1.1 christos while (dnptrs < lastdnptr && *dnptrs != NULL) {
626 1.1 christos if (*dnptrs >= src) {
627 1.1 christos *dnptrs = NULL;
628 1.1 christos break;
629 1.1 christos }
630 1.1 christos dnptrs++;
631 1.1 christos }
632 1.1 christos }
633 1.1 christos
634 1.1 christos /*
635 1.1 christos * ns_name_skip(ptrptr, eom)
636 1.1 christos * Advance *ptrptr to skip over the compressed name it points at.
637 1.1 christos * return:
638 1.1 christos * 0 on success, -1 (with errno set) on failure.
639 1.1 christos */
640 1.1 christos int
641 1.1 christos ns_name_skip(const u_char **ptrptr, const u_char *eom)
642 1.1 christos {
643 1.1 christos const u_char *cp;
644 1.1 christos u_int n;
645 1.1 christos int l;
646 1.1 christos
647 1.1 christos cp = *ptrptr;
648 1.1 christos while (cp < eom && (n = *cp++) != 0) {
649 1.1 christos /* Check for indirection. */
650 1.1 christos switch (n & NS_CMPRSFLGS) {
651 1.1 christos case 0: /* normal case, n == len */
652 1.1 christos cp += n;
653 1.1 christos continue;
654 1.1 christos case NS_TYPE_ELT: /* EDNS0 extended label */
655 1.1 christos if ((l = labellen(cp - 1)) < 0) {
656 1.1 christos errno = EMSGSIZE; /* XXX */
657 1.1 christos return(-1);
658 1.1 christos }
659 1.1 christos cp += l;
660 1.1 christos continue;
661 1.1 christos case NS_CMPRSFLGS: /* indirection */
662 1.1 christos cp++;
663 1.1 christos break;
664 1.1 christos default: /* illegal type */
665 1.1 christos errno = EMSGSIZE;
666 1.1 christos return (-1);
667 1.1 christos }
668 1.1 christos break;
669 1.1 christos }
670 1.1 christos if (cp > eom) {
671 1.1 christos errno = EMSGSIZE;
672 1.1 christos return (-1);
673 1.1 christos }
674 1.1 christos *ptrptr = cp;
675 1.1 christos return (0);
676 1.1 christos }
677 1.1 christos
678 1.1 christos /* Private. */
679 1.1 christos
680 1.1 christos /*
681 1.1 christos * special(ch)
682 1.1 christos * Thinking in noninternationalized USASCII (per the DNS spec),
683 1.1 christos * is this characted special ("in need of quoting") ?
684 1.1 christos * return:
685 1.1 christos * boolean.
686 1.1 christos */
687 1.1 christos static int
688 1.1 christos special(int ch) {
689 1.1 christos switch (ch) {
690 1.1 christos case 0x22: /* '"' */
691 1.1 christos case 0x2E: /* '.' */
692 1.1 christos case 0x3B: /* ';' */
693 1.1 christos case 0x5C: /* '\\' */
694 1.1 christos case 0x28: /* '(' */
695 1.1 christos case 0x29: /* ')' */
696 1.1 christos /* Special modifiers in zone files. */
697 1.1 christos case 0x40: /* '@' */
698 1.1 christos case 0x24: /* '$' */
699 1.1 christos return (1);
700 1.1 christos default:
701 1.1 christos return (0);
702 1.1 christos }
703 1.1 christos }
704 1.1 christos
705 1.1 christos /*
706 1.1 christos * printable(ch)
707 1.1 christos * Thinking in noninternationalized USASCII (per the DNS spec),
708 1.1 christos * is this character visible and not a space when printed ?
709 1.1 christos * return:
710 1.1 christos * boolean.
711 1.1 christos */
712 1.1 christos static int
713 1.1 christos printable(int ch) {
714 1.1 christos return (ch > 0x20 && ch < 0x7f);
715 1.1 christos }
716 1.1 christos
717 1.1 christos /*
718 1.1 christos * Thinking in noninternationalized USASCII (per the DNS spec),
719 1.1 christos * convert this character to lower case if it's upper case.
720 1.1 christos */
721 1.1 christos static int
722 1.1 christos mklower(int ch) {
723 1.1 christos if (ch >= 0x41 && ch <= 0x5A)
724 1.1 christos return (ch + 0x20);
725 1.1 christos return (ch);
726 1.1 christos }
727 1.1 christos
728 1.1 christos /*
729 1.1 christos * dn_find(domain, msg, dnptrs, lastdnptr)
730 1.1 christos * Search for the counted-label name in an array of compressed names.
731 1.1 christos * return:
732 1.1 christos * offset from msg if found, or -1.
733 1.1 christos * notes:
734 1.1 christos * dnptrs is the pointer to the first name on the list,
735 1.1 christos * not the pointer to the start of the message.
736 1.1 christos */
737 1.1 christos static int
738 1.1 christos dn_find(const u_char *domain, const u_char *msg,
739 1.1 christos const u_char * const *dnptrs,
740 1.1 christos const u_char * const *lastdnptr)
741 1.1 christos {
742 1.1 christos const u_char *dn, *cp, *sp;
743 1.1 christos const u_char * const *cpp;
744 1.1 christos u_int n;
745 1.1 christos
746 1.1 christos for (cpp = dnptrs; cpp < lastdnptr; cpp++) {
747 1.1 christos sp = *cpp;
748 1.1 christos /*
749 1.1 christos * terminate search on:
750 1.1 christos * root label
751 1.1 christos * compression pointer
752 1.1 christos * unusable offset
753 1.1 christos */
754 1.1 christos while (*sp != 0 && (*sp & NS_CMPRSFLGS) == 0 &&
755 1.1 christos (sp - msg) < 0x4000) {
756 1.1 christos dn = domain;
757 1.1 christos cp = sp;
758 1.1 christos while ((n = *cp++) != 0) {
759 1.1 christos /*
760 1.1 christos * check for indirection
761 1.1 christos */
762 1.1 christos switch (n & NS_CMPRSFLGS) {
763 1.1 christos case 0: /* normal case, n == len */
764 1.1 christos n = labellen(cp - 1); /* XXX */
765 1.1 christos
766 1.1 christos if (n != *dn++)
767 1.1 christos goto next;
768 1.1 christos
769 1.2 christos for (; n > 0; n--)
770 1.1 christos if (mklower(*dn++) !=
771 1.1 christos mklower(*cp++))
772 1.1 christos goto next;
773 1.1 christos /* Is next root for both ? */
774 1.1 christos if (*dn == '\0' && *cp == '\0')
775 1.1 christos return (sp - msg);
776 1.1 christos if (*dn)
777 1.1 christos continue;
778 1.1 christos goto next;
779 1.1 christos case NS_CMPRSFLGS: /* indirection */
780 1.1 christos cp = msg + (((n & 0x3f) << 8) | *cp);
781 1.1 christos break;
782 1.1 christos
783 1.1 christos default: /* illegal type */
784 1.1 christos errno = EMSGSIZE;
785 1.1 christos return (-1);
786 1.1 christos }
787 1.1 christos }
788 1.1 christos next: ;
789 1.1 christos sp += *sp + 1;
790 1.1 christos }
791 1.1 christos }
792 1.1 christos errno = ENOENT;
793 1.1 christos return (-1);
794 1.1 christos }
795 1.1 christos
796 1.1 christos static int
797 1.3 christos decode_bitstring(const unsigned char **cpp, char *dn, const char *eom)
798 1.1 christos {
799 1.3 christos const unsigned char *cp = *cpp;
800 1.1 christos char *beg = dn, tc;
801 1.1 christos int b, blen, plen, i;
802 1.1 christos
803 1.1 christos if ((blen = (*cp & 0xff)) == 0)
804 1.1 christos blen = 256;
805 1.1 christos plen = (blen + 3) / 4;
806 1.1 christos plen += sizeof("\\[x/]") + (blen > 99 ? 3 : (blen > 9) ? 2 : 1);
807 1.1 christos if (dn + plen >= eom)
808 1.1 christos return(-1);
809 1.1 christos
810 1.1 christos cp++;
811 1.1 christos i = SPRINTF((dn, "\\[x"));
812 1.1 christos if (i < 0)
813 1.1 christos return (-1);
814 1.1 christos dn += i;
815 1.1 christos for (b = blen; b > 7; b -= 8, cp++) {
816 1.1 christos i = SPRINTF((dn, "%02x", *cp & 0xff));
817 1.1 christos if (i < 0)
818 1.1 christos return (-1);
819 1.1 christos dn += i;
820 1.1 christos }
821 1.1 christos if (b > 4) {
822 1.1 christos tc = *cp++;
823 1.1 christos i = SPRINTF((dn, "%02x", tc & (0xff << (8 - b))));
824 1.1 christos if (i < 0)
825 1.1 christos return (-1);
826 1.1 christos dn += i;
827 1.1 christos } else if (b > 0) {
828 1.1 christos tc = *cp++;
829 1.1 christos i = SPRINTF((dn, "%1x",
830 1.2 christos (((u_int32_t)tc >> 4) & 0x0f) & (0x0f << (4 - b))));
831 1.1 christos if (i < 0)
832 1.1 christos return (-1);
833 1.1 christos dn += i;
834 1.1 christos }
835 1.1 christos i = SPRINTF((dn, "/%d]", blen));
836 1.1 christos if (i < 0)
837 1.1 christos return (-1);
838 1.1 christos dn += i;
839 1.1 christos
840 1.1 christos *cpp = cp;
841 1.1 christos return(dn - beg);
842 1.1 christos }
843 1.1 christos
844 1.1 christos static int
845 1.3 christos encode_bitsring(const char **bp, const char *end, unsigned char **labelp,
846 1.3 christos unsigned char ** dst, unsigned const char *eom)
847 1.1 christos {
848 1.1 christos int afterslash = 0;
849 1.1 christos const char *cp = *bp;
850 1.3 christos unsigned char *tp;
851 1.3 christos char c;
852 1.1 christos const char *beg_blen;
853 1.1 christos char *end_blen = NULL;
854 1.1 christos int value = 0, count = 0, tbcount = 0, blen = 0;
855 1.1 christos
856 1.1 christos beg_blen = end_blen = NULL;
857 1.1 christos
858 1.1 christos /* a bitstring must contain at least 2 characters */
859 1.1 christos if (end - cp < 2)
860 1.1 christos return(EINVAL);
861 1.1 christos
862 1.1 christos /* XXX: currently, only hex strings are supported */
863 1.1 christos if (*cp++ != 'x')
864 1.1 christos return(EINVAL);
865 1.1 christos if (!isxdigit((*cp) & 0xff)) /* reject '\[x/BLEN]' */
866 1.1 christos return(EINVAL);
867 1.1 christos
868 1.1 christos for (tp = *dst + 1; cp < end && tp < eom; cp++) {
869 1.1 christos switch((c = *cp)) {
870 1.1 christos case ']': /* end of the bitstring */
871 1.1 christos if (afterslash) {
872 1.1 christos if (beg_blen == NULL)
873 1.1 christos return(EINVAL);
874 1.1 christos blen = (int)strtol(beg_blen, &end_blen, 10);
875 1.1 christos if (*end_blen != ']')
876 1.1 christos return(EINVAL);
877 1.1 christos }
878 1.1 christos if (count)
879 1.1 christos *tp++ = ((value << 4) & 0xff);
880 1.1 christos cp++; /* skip ']' */
881 1.1 christos goto done;
882 1.1 christos case '/':
883 1.1 christos afterslash = 1;
884 1.1 christos break;
885 1.1 christos default:
886 1.1 christos if (afterslash) {
887 1.1 christos if (!isdigit(c&0xff))
888 1.1 christos return(EINVAL);
889 1.1 christos if (beg_blen == NULL) {
890 1.1 christos
891 1.1 christos if (c == '0') {
892 1.1 christos /* blen never begings with 0 */
893 1.1 christos return(EINVAL);
894 1.1 christos }
895 1.1 christos beg_blen = cp;
896 1.1 christos }
897 1.1 christos } else {
898 1.1 christos if (!isxdigit(c&0xff))
899 1.1 christos return(EINVAL);
900 1.1 christos value <<= 4;
901 1.1 christos value += digitvalue[(int)c];
902 1.1 christos count += 4;
903 1.1 christos tbcount += 4;
904 1.1 christos if (tbcount > 256)
905 1.1 christos return(EINVAL);
906 1.1 christos if (count == 8) {
907 1.1 christos *tp++ = value;
908 1.1 christos count = 0;
909 1.1 christos }
910 1.1 christos }
911 1.1 christos break;
912 1.1 christos }
913 1.1 christos }
914 1.1 christos done:
915 1.1 christos if (cp >= end || tp >= eom)
916 1.1 christos return(EMSGSIZE);
917 1.1 christos
918 1.1 christos /*
919 1.1 christos * bit length validation:
920 1.1 christos * If a <length> is present, the number of digits in the <bit-data>
921 1.1 christos * MUST be just sufficient to contain the number of bits specified
922 1.1 christos * by the <length>. If there are insignificant bits in a final
923 1.1 christos * hexadecimal or octal digit, they MUST be zero.
924 1.1 christos * RFC 2673, Section 3.2.
925 1.1 christos */
926 1.1 christos if (blen > 0) {
927 1.1 christos int traillen;
928 1.1 christos
929 1.1 christos if (((blen + 3) & ~3) != tbcount)
930 1.1 christos return(EINVAL);
931 1.1 christos traillen = tbcount - blen; /* between 0 and 3 */
932 1.1 christos if (((value << (8 - traillen)) & 0xff) != 0)
933 1.1 christos return(EINVAL);
934 1.1 christos }
935 1.1 christos else
936 1.1 christos blen = tbcount;
937 1.1 christos if (blen == 256)
938 1.1 christos blen = 0;
939 1.1 christos
940 1.1 christos /* encode the type and the significant bit fields */
941 1.1 christos **labelp = DNS_LABELTYPE_BITSTRING;
942 1.1 christos **dst = blen;
943 1.1 christos
944 1.1 christos *bp = cp;
945 1.1 christos *dst = tp;
946 1.1 christos
947 1.1 christos return(0);
948 1.1 christos }
949 1.1 christos
950 1.1 christos static int
951 1.1 christos labellen(const u_char *lp)
952 1.1 christos {
953 1.1 christos int bitlen;
954 1.1 christos u_char l = *lp;
955 1.1 christos
956 1.1 christos if ((l & NS_CMPRSFLGS) == NS_CMPRSFLGS) {
957 1.1 christos /* should be avoided by the caller */
958 1.1 christos return(-1);
959 1.1 christos }
960 1.1 christos
961 1.1 christos if ((l & NS_CMPRSFLGS) == NS_TYPE_ELT) {
962 1.1 christos if (l == DNS_LABELTYPE_BITSTRING) {
963 1.1 christos if ((bitlen = *(lp + 1)) == 0)
964 1.1 christos bitlen = 256;
965 1.1 christos return((bitlen + 7 ) / 8 + 1);
966 1.1 christos }
967 1.1 christos return(-1); /* unknwon ELT */
968 1.1 christos }
969 1.1 christos return(l);
970 1.1 christos }
971