udhcp: add testing bits to dns en/decoder
[oweals/busybox.git] / networking / udhcp / domain_codec.c
1 /* vi: set sw=4 ts=4: */
2
3 /* RFC1035 domain compression routines (C) 2007 Gabriel Somlo <somlo at cmu.edu>
4  *
5  * Loosely based on the isc-dhcpd implementation by dhankins@isc.org
6  *
7  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
8  */
9 #ifdef DNS_COMPR_TESTING
10 # define FAST_FUNC /* nothing */
11 # define xmalloc malloc
12 # include <stdlib.h>
13 # include <stdint.h>
14 # include <string.h>
15 # include <stdio.h>
16 #else
17 # include "common.h"
18 #endif
19
20 #define NS_MAXDNAME  1025       /* max domain name length */
21 #define NS_MAXCDNAME  255       /* max compressed domain name length */
22 #define NS_MAXLABEL    63       /* max label length */
23 #define NS_MAXDNSRCH    6       /* max domains in search path */
24 #define NS_CMPRSFLGS 0xc0       /* name compression pointer flag */
25
26
27 /* expand a RFC1035-compressed list of domain names "cstr", of length "clen";
28  * returns a newly allocated string containing the space-separated domains,
29  * prefixed with the contents of string pre, or NULL if an error occurs.
30  */
31 char* FAST_FUNC dname_dec(const uint8_t *cstr, int clen, const char *pre)
32 {
33         char *ret = ret; /* for compiler */
34         char *dst = NULL;
35
36         /* We make two passes over the cstr string. First, we compute
37          * how long the resulting string would be. Then we allocate a
38          * new buffer of the required length, and fill it in with the
39          * expanded content. The advantage of this approach is not
40          * having to deal with requiring callers to supply their own
41          * buffer, then having to check if it's sufficiently large, etc.
42          */
43         while (1) {
44                 /* note: "return NULL" below are leak-safe since
45                  * dst isn't yet allocated */
46                 const uint8_t *c;
47                 unsigned crtpos, retpos, depth, len;
48
49                 crtpos = retpos = depth = len = 0;
50                 while (crtpos < clen) {
51                         c = cstr + crtpos;
52
53                         if ((*c & NS_CMPRSFLGS) == NS_CMPRSFLGS) {
54                                 /* pointer */
55                                 if (crtpos + 2 > clen) /* no offset to jump to? abort */
56                                         return NULL;
57                                 if (retpos == 0) /* toplevel? save return spot */
58                                         retpos = crtpos + 2;
59                                 depth++;
60                                 crtpos = ((c[0] & 0x3f) << 8) | c[1]; /* jump */
61                         } else if (*c) {
62                                 /* label */
63                                 if (crtpos + *c + 1 > clen) /* label too long? abort */
64                                         return NULL;
65                                 if (dst)
66                                         memcpy(dst + len, c + 1, *c);
67                                 len += *c + 1;
68                                 crtpos += *c + 1;
69                                 if (dst)
70                                         dst[len - 1] = '.';
71                         } else {
72                                 /* NUL: end of current domain name */
73                                 if (retpos == 0) {
74                                         /* toplevel? keep going */
75                                         crtpos++;
76                                 } else {
77                                         /* return to toplevel saved spot */
78                                         crtpos = retpos;
79                                         retpos = depth = 0;
80                                 }
81                                 if (dst)
82                                         dst[len - 1] = ' ';
83                         }
84
85                         if (depth > NS_MAXDNSRCH /* too many jumps? abort, it's a loop */
86                          || len > NS_MAXDNAME * NS_MAXDNSRCH /* result too long? abort */
87                         ) {
88                                 return NULL;
89                         }
90                 }
91
92                 if (!len) /* expanded string has 0 length? abort */
93                         return NULL;
94
95                 if (!dst) { /* first pass? */
96                         /* allocate dst buffer and copy pre */
97                         unsigned plen = strlen(pre);
98                         ret = dst = xmalloc(plen + len);
99                         memcpy(dst, pre, plen);
100                         dst += plen;
101                 } else {
102                         dst[len - 1] = '\0';
103                         break;
104                 }
105         }
106
107         return ret;
108 }
109
110 /* Convert a domain name (src) from human-readable "foo.blah.com" format into
111  * RFC1035 encoding "\003foo\004blah\003com\000". Return allocated string, or
112  * NULL if an error occurs.
113  */
114 static uint8_t *convert_dname(const char *src)
115 {
116         uint8_t c, *res, *lenptr, *dst;
117         int len;
118
119         res = xmalloc(strlen(src) + 2);
120         dst = lenptr = res;
121         dst++;
122
123         for (;;) {
124                 c = (uint8_t)*src++;
125                 if (c == '.' || c == '\0') {  /* end of label */
126                         len = dst - lenptr - 1;
127                         /* label too long, too short, or two '.'s in a row? abort */
128                         if (len > NS_MAXLABEL || len == 0 || (c == '.' && *src == '.')) {
129                                 free(res);
130                                 return NULL;
131                         }
132                         *lenptr = len;
133                         if (c == '\0' || *src == '\0')  /* "" or ".": end of src */
134                                 break;
135                         lenptr = dst++;
136                         continue;
137                 }
138                 if (c >= 'A' && c <= 'Z')  /* uppercase? convert to lower */
139                         c += ('a' - 'A');
140                 *dst++ = c;
141         }
142
143         if (dst - res >= NS_MAXCDNAME) {  /* dname too long? abort */
144                 free(res);
145                 return NULL;
146         }
147
148         *dst = 0;
149         return res;
150 }
151
152 /* returns the offset within cstr at which dname can be found, or -1
153  */
154 static int find_offset(const uint8_t *cstr, int clen, const uint8_t *dname)
155 {
156         const uint8_t *c, *d;
157         int off;
158
159         /* find all labels in cstr */
160         off = 0;
161         while (off < clen) {
162                 c = cstr + off;
163
164                 if ((*c & NS_CMPRSFLGS) == NS_CMPRSFLGS) {  /* pointer, skip */
165                         off += 2;
166                         continue;
167                 }
168                 if (*c) {  /* label, try matching dname */
169                         d = dname;
170                         while (1) {
171                                 unsigned len1 = *c + 1;
172                                 if (memcmp(c, d, len1) != 0)
173                                         break;
174                                 if (len1 == 1)  /* at terminating NUL - match, return offset */
175                                         return off;
176                                 d += len1;
177                                 c += len1;
178                                 if ((*c & NS_CMPRSFLGS) == NS_CMPRSFLGS)  /* pointer, jump */
179                                         c = cstr + (((c[0] & 0x3f) << 8) | c[1]);
180                         }
181                         off += cstr[off] + 1;
182                         continue;
183                 }
184                 /* NUL, skip */
185                 off++;
186         }
187
188         return -1;
189 }
190
191 /* computes string to be appended to cstr so that src would be added to
192  * the compression (best case, it's a 2-byte pointer to some offset within
193  * cstr; worst case, it's all of src, converted to <4>host<3>com<0> format).
194  * The computed string is returned directly; its length is returned via retlen;
195  * NULL and 0, respectively, are returned if an error occurs.
196  */
197 uint8_t* FAST_FUNC dname_enc(const uint8_t *cstr, int clen, const char *src, int *retlen)
198 {
199         uint8_t *d, *dname;
200         int off;
201
202         dname = convert_dname(src);
203         if (dname == NULL) {
204                 *retlen = 0;
205                 return NULL;
206         }
207
208         d = dname;
209         while (*d) {
210                 if (cstr) {
211                         off = find_offset(cstr, clen, d);
212                         if (off >= 0) { /* found a match, add pointer and return */
213                                 *d++ = NS_CMPRSFLGS | (off >> 8);
214                                 *d = off;
215                                 break;
216                         }
217                 }
218                 d += *d + 1;
219         }
220
221         *retlen = d - dname + 1;
222         return dname;
223 }
224
225 #ifdef DNS_COMPR_TESTING
226 /* gcc -Wall -DDNS_COMPR_TESTING domain_codec.c -o domain_codec && ./domain_codec */
227 int main(int argc, char **argv)
228 {
229         int len;
230         uint8_t *encoded;
231
232 #define DNAME_DEC(encoded,pre) dname_dec((uint8_t*)(encoded), sizeof(encoded), (pre))
233         printf("'%s'\n",       DNAME_DEC("\4host\3com\0", "test1:"));
234         printf("test2:'%s'\n", DNAME_DEC("\4host\3com\0\4host\3com\0", ""));
235         printf("test3:'%s'\n", DNAME_DEC("\4host\3com\0\xC0\0", ""));
236         printf("test4:'%s'\n", DNAME_DEC("\4host\3com\0\xC0\5", ""));
237         printf("test5:'%s'\n", DNAME_DEC("\4host\3com\0\xC0\5\1z\xC0\xA", ""));
238
239 #define DNAME_ENC(cache,source,lenp) dname_enc((uint8_t*)(cache), sizeof(cache), (source), (lenp))
240         encoded = dname_enc(NULL, 0, "test.net", &len);
241         printf("test6:'%s' len:%d\n", dname_dec(encoded, len, ""), len);
242         encoded = DNAME_ENC("\3net\0", "test.net", &len);
243         printf("test7:'%s' len:%d\n", dname_dec(encoded, len, ""), len);
244         encoded = DNAME_ENC("\4test\3net\0", "test.net", &len);
245         printf("test8:'%s' len:%d\n", dname_dec(encoded, len, ""), len);
246         return 0;
247 }
248 #endif