]> asedeno.scripts.mit.edu Git - 1ts-debian.git/blob - libares/ares_expand_name.c
need automake as a build-dep, even though we don't use most of it
[1ts-debian.git] / libares / ares_expand_name.c
1 /* Copyright 1998 by the Massachusetts Institute of Technology.
2  *
3  * Permission to use, copy, modify, and distribute this
4  * software and its documentation for any purpose and without
5  * fee is hereby granted, provided that the above copyright
6  * notice appear in all copies and that both that copyright
7  * notice and this permission notice appear in supporting
8  * documentation, and that the name of M.I.T. not be used in
9  * advertising or publicity pertaining to distribution of the
10  * software without specific, written prior permission.
11  * M.I.T. makes no representations about the suitability of
12  * this software for any purpose.  It is provided "as is"
13  * without express or implied warranty.
14  */
15
16 static const char rcsid[] = "$Id: ares_expand_name.c,v 1.3 2000/02/17 18:43:07 ghudson Exp $";
17
18 #include <sys/types.h>
19 #include <netinet/in.h>
20 #include <arpa/nameser.h>
21 #include <stdlib.h>
22 #include "ares.h"
23
24 static int name_length(const unsigned char *encoded, const unsigned char *abuf,
25                        int alen);
26
27 /* Expand an RFC1035-encoded domain name given by encoded.  The
28  * containing message is given by abuf and alen.  The result given by
29  * *s, which is set to a NUL-terminated allocated buffer.  *enclen is
30  * set to the length of the encoded name (not the length of the
31  * expanded name; the goal is to tell the caller how many bytes to
32  * move forward to get past the encoded name).
33  *
34  * In the simple case, an encoded name is a series of labels, each
35  * composed of a one-byte length (limited to values between 0 and 63
36  * inclusive) followed by the label contents.  The name is terminated
37  * by a zero-length label.
38  *
39  * In the more complicated case, a label may be terminated by an
40  * indirection pointer, specified by two bytes with the high bits of
41  * the first byte (corresponding to INDIR_MASK) set to 11.  With the
42  * two high bits of the first byte stripped off, the indirection
43  * pointer gives an offset from the beginning of the containing
44  * message with more labels to decode.  Indirection can happen an
45  * arbitrary number of times, so we have to detect loops.
46  *
47  * Since the expanded name uses '.' as a label separator, we use
48  * backslashes to escape periods or backslashes in the expanded name.
49  */
50
51 int ares_expand_name(const unsigned char *encoded, const unsigned char *abuf,
52                      int alen, char **s, int *enclen)
53 {
54   int len, indir = 0;
55   char *q;
56   const unsigned char *p;
57
58   len = name_length(encoded, abuf, alen);
59   if (len == -1)
60     return ARES_EBADNAME;
61
62   *s = malloc(len + 1);
63   if (!*s)
64     return ARES_ENOMEM;
65   q = *s;
66
67   /* No error-checking necessary; it was all done by name_length(). */
68   p = encoded;
69   while (*p)
70     {
71       if ((*p & INDIR_MASK) == INDIR_MASK)
72         {
73           if (!indir)
74             {
75               *enclen = p + 2 - encoded;
76               indir = 1;
77             }
78           p = abuf + ((*p & ~INDIR_MASK) << 8 | *(p + 1));
79         }
80       else
81         {
82           len = *p;
83           p++;
84           while (len--)
85             {
86               if (*p == '.' || *p == '\\')
87                 *q++ = '\\';
88               *q++ = *p;
89               p++;
90             }
91           *q++ = '.';
92         }
93     }
94   if (!indir)
95     *enclen = p + 1 - encoded;
96
97   /* Nuke the trailing period if we wrote one. */
98   if (q > *s)
99     *(q - 1) = 0;
100
101   return ARES_SUCCESS;
102 }
103
104 /* Return the length of the expansion of an encoded domain name, or
105  * -1 if the encoding is invalid.
106  */
107 static int name_length(const unsigned char *encoded, const unsigned char *abuf,
108                        int alen)
109 {
110   int n = 0, offset, indir = 0;
111
112   /* Allow the caller to pass us abuf + alen and have us check for it. */
113   if (encoded == abuf + alen)
114     return -1;
115
116   while (*encoded)
117     {
118       if ((*encoded & INDIR_MASK) == INDIR_MASK)
119         {
120           /* Check the offset and go there. */
121           if (encoded + 1 >= abuf + alen)
122             return -1;
123           offset = (*encoded & ~INDIR_MASK) << 8 | *(encoded + 1);
124           if (offset >= alen)
125             return -1;
126           encoded = abuf + offset;
127
128           /* If we've seen more indirects than the message length,
129            * then there's a loop.
130            */
131           if (++indir > alen)
132             return -1;
133         }
134       else
135         {
136           offset = *encoded;
137           if (encoded + offset + 1 >= abuf + alen)
138             return -1;
139           encoded++;
140           while (offset--)
141             {
142               n += (*encoded == '.' || *encoded == '\\') ? 2 : 1;
143               encoded++;
144             }
145           n++;
146         }
147     }
148
149   /* If there were any labels at all, then the number of dots is one
150    * less than the number of labels, so subtract one.
151    */
152   return (n) ? n - 1 : n;
153 }