Git init
[external/c-ares.git] / ares_parse_aaaa_reply.c
1
2 /* Copyright 1998 by the Massachusetts Institute of Technology.
3  * Copyright 2005 Dominick Meglio
4  *
5  * Permission to use, copy, modify, and distribute this
6  * software and its documentation for any purpose and without
7  * fee is hereby granted, provided that the above copyright
8  * notice appear in all copies and that both that copyright
9  * notice and this permission notice appear in supporting
10  * documentation, and that the name of M.I.T. not be used in
11  * advertising or publicity pertaining to distribution of the
12  * software without specific, written prior permission.
13  * M.I.T. makes no representations about the suitability of
14  * this software for any purpose.  It is provided "as is"
15  * without express or implied warranty.
16  */
17
18 #include "ares_setup.h"
19
20 #ifdef HAVE_SYS_SOCKET_H
21 #  include <sys/socket.h>
22 #endif
23 #ifdef HAVE_NETINET_IN_H
24 #  include <netinet/in.h>
25 #endif
26 #ifdef HAVE_NETDB_H
27 #  include <netdb.h>
28 #endif
29 #ifdef HAVE_ARPA_INET_H
30 #  include <arpa/inet.h>
31 #endif
32 #ifdef HAVE_ARPA_NAMESER_H
33 #  include <arpa/nameser.h>
34 #else
35 #  include "nameser.h"
36 #endif
37 #ifdef HAVE_ARPA_NAMESER_COMPAT_H
38 #  include <arpa/nameser_compat.h>
39 #endif
40
41 #ifdef HAVE_STRINGS_H
42 #  include <strings.h>
43 #endif
44
45 #include <stdlib.h>
46 #include <string.h>
47 #ifdef HAVE_LIMITS_H
48 #  include <limits.h>
49 #endif
50
51 #include "ares.h"
52 #include "ares_dns.h"
53 #include "inet_net_pton.h"
54 #include "ares_private.h"
55
56 int ares_parse_aaaa_reply(const unsigned char *abuf, int alen,
57                           struct hostent **host, struct ares_addr6ttl *addrttls,
58                           int *naddrttls)
59 {
60   unsigned int qdcount, ancount;
61   int status, i, rr_type, rr_class, rr_len, rr_ttl, naddrs;
62   int cname_ttl = INT_MAX;  /* the TTL imposed by the CNAME chain */
63   int naliases;
64   long len;
65   const unsigned char *aptr;
66   char *hostname, *rr_name, *rr_data, **aliases;
67   struct ares_in6_addr *addrs;
68   struct hostent *hostent;
69   const int max_addr_ttls = (addrttls && naddrttls) ? *naddrttls : 0;
70
71   /* Set *host to NULL for all failure cases. */
72   if (host)
73     *host = NULL;
74   /* Same with *naddrttls. */
75   if (naddrttls)
76     *naddrttls = 0;
77
78   /* Give up if abuf doesn't have room for a header. */
79   if (alen < HFIXEDSZ)
80     return ARES_EBADRESP;
81
82   /* Fetch the question and answer count from the header. */
83   qdcount = DNS_HEADER_QDCOUNT(abuf);
84   ancount = DNS_HEADER_ANCOUNT(abuf);
85   if (qdcount != 1)
86     return ARES_EBADRESP;
87
88   /* Expand the name from the question, and skip past the question. */
89   aptr = abuf + HFIXEDSZ;
90   status = ares__expand_name_for_response(aptr, abuf, alen, &hostname, &len);
91   if (status != ARES_SUCCESS)
92     return status;
93   if (aptr + len + QFIXEDSZ > abuf + alen)
94     {
95       free(hostname);
96       return ARES_EBADRESP;
97     }
98   aptr += len + QFIXEDSZ;
99
100   /* Allocate addresses and aliases; ancount gives an upper bound for both. */
101   if (host)
102     {
103       addrs = malloc(ancount * sizeof(struct ares_in6_addr));
104       if (!addrs)
105         {
106           free(hostname);
107           return ARES_ENOMEM;
108         }
109       aliases = malloc((ancount + 1) * sizeof(char *));
110       if (!aliases)
111         {
112           free(hostname);
113           free(addrs);
114           return ARES_ENOMEM;
115         }
116     }
117   else
118     {
119       addrs = NULL;
120       aliases = NULL;
121     }
122   naddrs = 0;
123   naliases = 0;
124
125   /* Examine each answer resource record (RR) in turn. */
126   for (i = 0; i < (int)ancount; i++)
127     {
128       /* Decode the RR up to the data field. */
129       status = ares__expand_name_for_response(aptr, abuf, alen, &rr_name, &len);
130       if (status != ARES_SUCCESS)
131         break;
132       aptr += len;
133       if (aptr + RRFIXEDSZ > abuf + alen)
134         {
135           status = ARES_EBADRESP;
136           break;
137         }
138       rr_type = DNS_RR_TYPE(aptr);
139       rr_class = DNS_RR_CLASS(aptr);
140       rr_len = DNS_RR_LEN(aptr);
141       rr_ttl = DNS_RR_TTL(aptr);
142       aptr += RRFIXEDSZ;
143
144       if (rr_class == C_IN && rr_type == T_AAAA
145           && rr_len == sizeof(struct ares_in6_addr)
146           && strcasecmp(rr_name, hostname) == 0)
147         {
148           if (addrs)
149             {
150               if (aptr + sizeof(struct ares_in6_addr) > abuf + alen)
151               {
152                 status = ARES_EBADRESP;
153                 break;
154               }
155               memcpy(&addrs[naddrs], aptr, sizeof(struct ares_in6_addr));
156             }
157           if (naddrs < max_addr_ttls)
158             {
159               struct ares_addr6ttl * const at = &addrttls[naddrs];
160               if (aptr + sizeof(struct ares_in6_addr) > abuf + alen)
161               {
162                 status = ARES_EBADRESP;
163                 break;
164               }
165               memcpy(&at->ip6addr, aptr,  sizeof(struct ares_in6_addr));
166               at->ttl = rr_ttl;
167             }
168           naddrs++;
169           status = ARES_SUCCESS;
170         }
171
172       if (rr_class == C_IN && rr_type == T_CNAME)
173         {
174           /* Record the RR name as an alias. */
175           if (aliases)
176             aliases[naliases] = rr_name;
177           else
178             free(rr_name);
179           naliases++;
180
181           /* Decode the RR data and replace the hostname with it. */
182           status = ares__expand_name_for_response(aptr, abuf, alen, &rr_data,
183                                                   &len);
184           if (status != ARES_SUCCESS)
185             break;
186           free(hostname);
187           hostname = rr_data;
188
189           /* Take the min of the TTLs we see in the CNAME chain. */
190           if (cname_ttl > rr_ttl)
191             cname_ttl = rr_ttl;
192         }
193       else
194         free(rr_name);
195
196       aptr += rr_len;
197       if (aptr > abuf + alen)
198         {
199           status = ARES_EBADRESP;
200           break;
201         }
202     }
203
204   if (status == ARES_SUCCESS && naddrs == 0)
205     status = ARES_ENODATA;
206   if (status == ARES_SUCCESS)
207     {
208       /* We got our answer. */
209       if (naddrttls)
210         {
211           const int n = naddrs < max_addr_ttls ? naddrs : max_addr_ttls;
212           for (i = 0; i < n; i++)
213             {
214               /* Ensure that each A TTL is no larger than the CNAME TTL. */
215               if (addrttls[i].ttl > cname_ttl)
216                 addrttls[i].ttl = cname_ttl;
217             }
218           *naddrttls = n;
219         }
220       if (aliases)
221         aliases[naliases] = NULL;
222       if (host)
223         {
224           /* Allocate memory to build the host entry. */
225           hostent = malloc(sizeof(struct hostent));
226           if (hostent)
227             {
228               hostent->h_addr_list = malloc((naddrs + 1) * sizeof(char *));
229               if (hostent->h_addr_list)
230                 {
231                   /* Fill in the hostent and return successfully. */
232                   hostent->h_name = hostname;
233                   hostent->h_aliases = aliases;
234                   hostent->h_addrtype = AF_INET6;
235                   hostent->h_length = sizeof(struct ares_in6_addr);
236                   for (i = 0; i < naddrs; i++)
237                     hostent->h_addr_list[i] = (char *) &addrs[i];
238                   hostent->h_addr_list[naddrs] = NULL;
239                   *host = hostent;
240                   return ARES_SUCCESS;
241                 }
242               free(hostent);
243             }
244           status = ARES_ENOMEM;
245         }
246     }
247   if (aliases)
248     {
249       for (i = 0; i < naliases; i++)
250         free(aliases[i]);
251       free(aliases);
252     }
253   free(addrs);
254   free(hostname);
255   return status;
256 }