remove the CVSish $Id$ lines
[platform/upstream/curl.git] / lib / curl_addrinfo.c
1 /***************************************************************************
2  *                                  _   _ ____  _
3  *  Project                     ___| | | |  _ \| |
4  *                             / __| | | | |_) | |
5  *                            | (__| |_| |  _ <| |___
6  *                             \___|\___/|_| \_\_____|
7  *
8  * Copyright (C) 1998 - 2010, Daniel Stenberg, <daniel@haxx.se>, et al.
9  *
10  * This software is licensed as described in the file COPYING, which
11  * you should have received as part of this distribution. The terms
12  * are also available at http://curl.haxx.se/docs/copyright.html.
13  *
14  * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15  * copies of the Software, and permit persons to whom the Software is
16  * furnished to do so, under the terms of the COPYING file.
17  *
18  * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19  * KIND, either express or implied.
20  *
21  ***************************************************************************/
22
23 #include "setup.h"
24
25 #include <curl/curl.h>
26
27 #ifdef HAVE_SYS_SOCKET_H
28 #  include <sys/socket.h>
29 #endif
30 #ifdef HAVE_NETINET_IN_H
31 #  include <netinet/in.h>
32 #endif
33 #ifdef HAVE_NETDB_H
34 #  include <netdb.h>
35 #endif
36 #ifdef HAVE_ARPA_INET_H
37 #  include <arpa/inet.h>
38 #endif
39
40 #ifdef __VMS
41 #  include <in.h>
42 #  include <inet.h>
43 #  include <stdlib.h>
44 #endif
45
46 #if defined(NETWARE) && defined(__NOVELL_LIBC__)
47 #  undef  in_addr_t
48 #  define in_addr_t unsigned long
49 #endif
50
51 #include "curl_addrinfo.h"
52
53 #define _MPRINTF_REPLACE /* use our functions only */
54 #include <curl/mprintf.h>
55
56 #include "curl_memory.h"
57 /* The last #include file should be: */
58 #include "memdebug.h"
59
60
61 /*
62  * Curl_freeaddrinfo()
63  *
64  * This is used to free a linked list of Curl_addrinfo structs along
65  * with all its associated allocated storage. This function should be
66  * called once for each successful call to Curl_getaddrinfo_ex() or to
67  * any function call which actually allocates a Curl_addrinfo struct.
68  */
69
70 #if defined(__INTEL_COMPILER) && (__INTEL_COMPILER == 910) && \
71     defined(__OPTIMIZE__) && defined(__unix__) &&  defined(__i386__)
72   /* workaround icc 9.1 optimizer issue */
73 # define vqualifier volatile
74 #else
75 # define vqualifier
76 #endif
77
78 void
79 Curl_freeaddrinfo(Curl_addrinfo *cahead)
80 {
81   Curl_addrinfo *vqualifier canext;
82   Curl_addrinfo *ca;
83
84   for(ca = cahead; ca != NULL; ca = canext) {
85
86     if(ca->ai_addr)
87       free(ca->ai_addr);
88
89     if(ca->ai_canonname)
90       free(ca->ai_canonname);
91
92     canext = ca->ai_next;
93
94     free(ca);
95   }
96 }
97
98
99 #ifdef HAVE_GETADDRINFO
100 /*
101  * Curl_getaddrinfo_ex()
102  *
103  * This is a wrapper function around system's getaddrinfo(), with
104  * the only difference that instead of returning a linked list of
105  * addrinfo structs this one returns a linked list of Curl_addrinfo
106  * ones. The memory allocated by this function *MUST* be free'd with
107  * Curl_freeaddrinfo().  For each successful call to this function
108  * there must be an associated call later to Curl_freeaddrinfo().
109  *
110  * There should be no single call to system's getaddrinfo() in the
111  * whole library, any such call should be 'routed' through this one.
112  */
113
114 int
115 Curl_getaddrinfo_ex(const char *nodename,
116                     const char *servname,
117                     const struct addrinfo *hints,
118                     Curl_addrinfo **result)
119 {
120   const struct addrinfo *ainext;
121   const struct addrinfo *ai;
122   struct addrinfo *aihead;
123   Curl_addrinfo *cafirst = NULL;
124   Curl_addrinfo *calast = NULL;
125   Curl_addrinfo *ca;
126   int error;
127
128   *result = NULL; /* assume failure */
129
130   error = getaddrinfo(nodename, servname, hints, &aihead);
131   if(error)
132     return error;
133
134   for(ai = aihead; ai != NULL; ai = ainext) {
135
136     if((ca = malloc(sizeof(Curl_addrinfo))) == NULL) {
137       error = EAI_MEMORY;
138       break;
139     }
140
141     /* copy each structure member individually, member ordering, */
142     /* size, or padding might be different for each structure.   */
143
144     ca->ai_flags     = ai->ai_flags;
145     ca->ai_family    = ai->ai_family;
146     ca->ai_socktype  = ai->ai_socktype;
147     ca->ai_protocol  = ai->ai_protocol;
148     ca->ai_addrlen   = 0;
149     ca->ai_addr      = NULL;
150     ca->ai_canonname = NULL;
151     ca->ai_next      = NULL;
152
153     if((ai->ai_addrlen > 0) && (ai->ai_addr != NULL)) {
154       ca->ai_addrlen  = ai->ai_addrlen;
155       if((ca->ai_addr = malloc(ca->ai_addrlen)) == NULL) {
156         error = EAI_MEMORY;
157         free(ca);
158         break;
159       }
160       memcpy(ca->ai_addr, ai->ai_addr, ca->ai_addrlen);
161     }
162
163     if(ai->ai_canonname != NULL) {
164       if((ca->ai_canonname = strdup(ai->ai_canonname)) == NULL) {
165         error = EAI_MEMORY;
166         if(ca->ai_addr)
167           free(ca->ai_addr);
168         free(ca);
169         break;
170       }
171     }
172
173     /* if the return list is empty, this becomes the first element */
174     if(!cafirst)
175       cafirst = ca;
176
177     /* add this element last in the return list */
178     if(calast)
179       calast->ai_next = ca;
180     calast = ca;
181
182     /* fetch next element fom the addrinfo list */
183     ainext = ai->ai_next;
184   }
185
186   /* destroy the addrinfo list */
187   if(aihead)
188     freeaddrinfo(aihead);
189
190   /* if we failed, also destroy the Curl_addrinfo list */
191   if(error) {
192     Curl_freeaddrinfo(cafirst);
193     cafirst = NULL;
194   }
195
196   *result = cafirst;
197
198   /* This is not a CURLcode */
199   return error;
200 }
201 #endif /* HAVE_GETADDRINFO */
202
203
204 /*
205  * Curl_he2ai()
206  *
207  * This function returns a pointer to the first element of a newly allocated
208  * Curl_addrinfo struct linked list filled with the data of a given hostent.
209  * Curl_addrinfo is meant to work like the addrinfo struct does for a IPv6
210  * stack, but usable also for IPv4, all hosts and environments.
211  *
212  * The memory allocated by this function *MUST* be free'd later on calling
213  * Curl_freeaddrinfo().  For each successful call to this function there
214  * must be an associated call later to Curl_freeaddrinfo().
215  *
216  *   Curl_addrinfo defined in "lib/curl_addrinfo.h"
217  *
218  *     struct Curl_addrinfo {
219  *       int                   ai_flags;
220  *       int                   ai_family;
221  *       int                   ai_socktype;
222  *       int                   ai_protocol;
223  *       curl_socklen_t        ai_addrlen;   * Follow rfc3493 struct addrinfo *
224  *       char                 *ai_canonname;
225  *       struct sockaddr      *ai_addr;
226  *       struct Curl_addrinfo *ai_next;
227  *     };
228  *     typedef struct Curl_addrinfo Curl_addrinfo;
229  *
230  *   hostent defined in <netdb.h>
231  *
232  *     struct hostent {
233  *       char    *h_name;
234  *       char    **h_aliases;
235  *       int     h_addrtype;
236  *       int     h_length;
237  *       char    **h_addr_list;
238  *     };
239  *
240  *   for backward compatibility:
241  *
242  *     #define h_addr  h_addr_list[0]
243  */
244
245 Curl_addrinfo *
246 Curl_he2ai(const struct hostent *he, int port)
247 {
248   Curl_addrinfo *ai;
249   Curl_addrinfo *prevai = NULL;
250   Curl_addrinfo *firstai = NULL;
251   struct sockaddr_in *addr;
252 #ifdef ENABLE_IPV6
253   struct sockaddr_in6 *addr6;
254 #endif
255   CURLcode result = CURLE_OK;
256   int i;
257   char *curr;
258
259   if(!he)
260     /* no input == no output! */
261     return NULL;
262
263   DEBUGASSERT((he->h_name != NULL) && (he->h_addr_list != NULL));
264
265   for(i=0; (curr = he->h_addr_list[i]) != NULL; i++) {
266
267     size_t ss_size;
268 #ifdef ENABLE_IPV6
269     if (he->h_addrtype == AF_INET6)
270       ss_size = sizeof (struct sockaddr_in6);
271     else
272 #endif
273       ss_size = sizeof (struct sockaddr_in);
274
275     if((ai = calloc(1, sizeof(Curl_addrinfo))) == NULL) {
276       result = CURLE_OUT_OF_MEMORY;
277       break;
278     }
279     if((ai->ai_canonname = strdup(he->h_name)) == NULL) {
280       result = CURLE_OUT_OF_MEMORY;
281       free(ai);
282       break;
283     }
284     if((ai->ai_addr = calloc(1, ss_size)) == NULL) {
285       result = CURLE_OUT_OF_MEMORY;
286       free(ai->ai_canonname);
287       free(ai);
288       break;
289     }
290
291     if(!firstai)
292       /* store the pointer we want to return from this function */
293       firstai = ai;
294
295     if(prevai)
296       /* make the previous entry point to this */
297       prevai->ai_next = ai;
298
299     ai->ai_family = he->h_addrtype;
300
301     /* we return all names as STREAM, so when using this address for TFTP
302        the type must be ignored and conn->socktype be used instead! */
303     ai->ai_socktype = SOCK_STREAM;
304
305     ai->ai_addrlen = (curl_socklen_t)ss_size;
306
307     /* leave the rest of the struct filled with zero */
308
309     switch (ai->ai_family) {
310     case AF_INET:
311       addr = (void *)ai->ai_addr; /* storage area for this info */
312
313       memcpy(&addr->sin_addr, curr, sizeof(struct in_addr));
314       addr->sin_family = (unsigned short)(he->h_addrtype);
315       addr->sin_port = htons((unsigned short)port);
316       break;
317
318 #ifdef ENABLE_IPV6
319     case AF_INET6:
320       addr6 = (void *)ai->ai_addr; /* storage area for this info */
321
322       memcpy(&addr6->sin6_addr, curr, sizeof(struct in6_addr));
323       addr6->sin6_family = (unsigned short)(he->h_addrtype);
324       addr6->sin6_port = htons((unsigned short)port);
325       break;
326 #endif
327     }
328
329     prevai = ai;
330   }
331
332   if(result != CURLE_OK) {
333     Curl_freeaddrinfo(firstai);
334     firstai = NULL;
335   }
336
337   return firstai;
338 }
339
340
341 struct namebuff {
342   struct hostent hostentry;
343   union {
344     struct in_addr  ina4;
345 #ifdef ENABLE_IPV6
346     struct in6_addr ina6;
347 #endif
348   } addrentry;
349   char *h_addr_list[2];
350 };
351
352
353 /*
354  * Curl_ip2addr()
355  *
356  * This function takes an internet address, in binary form, as input parameter
357  * along with its address family and the string version of the address, and it
358  * returns a Curl_addrinfo chain filled in correctly with information for the
359  * given address/host
360  */
361
362 Curl_addrinfo *
363 Curl_ip2addr(int af, const void *inaddr, const char *hostname, int port)
364 {
365   Curl_addrinfo *ai;
366
367 #if defined(__VMS) && \
368     defined(__INITIAL_POINTER_SIZE) && (__INITIAL_POINTER_SIZE == 64)
369 #pragma pointer_size save
370 #pragma pointer_size short
371 #pragma message disable PTRMISMATCH
372 #endif
373
374   struct hostent  *h;
375   struct namebuff *buf;
376   char  *addrentry;
377   char  *hoststr;
378   size_t addrsize;
379
380   DEBUGASSERT(inaddr && hostname);
381
382   buf = malloc(sizeof(struct namebuff));
383   if(!buf)
384     return NULL;
385
386   hoststr = strdup(hostname);
387   if(!hoststr) {
388     free(buf);
389     return NULL;
390   }
391
392   switch(af) {
393   case AF_INET:
394     addrsize = sizeof(struct in_addr);
395     addrentry = (void *)&buf->addrentry.ina4;
396     memcpy(addrentry, inaddr, sizeof(struct in_addr));
397     break;
398 #ifdef ENABLE_IPV6
399   case AF_INET6:
400     addrsize = sizeof(struct in6_addr);
401     addrentry = (void *)&buf->addrentry.ina6;
402     memcpy(addrentry, inaddr, sizeof(struct in6_addr));
403     break;
404 #endif
405   default:
406     free(hoststr);
407     free(buf);
408     return NULL;
409   }
410
411   h = &buf->hostentry;
412   h->h_name = hoststr;
413   h->h_aliases = NULL;
414   h->h_addrtype = (short)af;
415   h->h_length = (short)addrsize;
416   h->h_addr_list = &buf->h_addr_list[0];
417   h->h_addr_list[0] = addrentry;
418   h->h_addr_list[1] = NULL; /* terminate list of entries */
419
420 #if defined(__VMS) && \
421     defined(__INITIAL_POINTER_SIZE) && (__INITIAL_POINTER_SIZE == 64)
422 #pragma pointer_size restore
423 #pragma message enable PTRMISMATCH
424 #endif
425
426   ai = Curl_he2ai(h, port);
427
428   free(hoststr);
429   free(buf);
430
431   return ai;
432 }
433
434
435 #if defined(CURLDEBUG) && defined(HAVE_FREEADDRINFO)
436 /*
437  * curl_dofreeaddrinfo()
438  *
439  * This is strictly for memory tracing and are using the same style as the
440  * family otherwise present in memdebug.c. I put these ones here since they
441  * require a bunch of structs I didn't wanna include in memdebug.c
442  */
443
444 void
445 curl_dofreeaddrinfo(struct addrinfo *freethis,
446                     int line, const char *source)
447 {
448   (freeaddrinfo)(freethis);
449   curl_memlog("ADDR %s:%d freeaddrinfo(%p)\n",
450               source, line, (void *)freethis);
451 }
452 #endif /* defined(CURLDEBUG) && defined(HAVE_FREEADDRINFO) */
453
454
455 #if defined(CURLDEBUG) && defined(HAVE_GETADDRINFO)
456 /*
457  * curl_dogetaddrinfo()
458  *
459  * This is strictly for memory tracing and are using the same style as the
460  * family otherwise present in memdebug.c. I put these ones here since they
461  * require a bunch of structs I didn't wanna include in memdebug.c
462  */
463
464 int
465 curl_dogetaddrinfo(const char *hostname,
466                    const char *service,
467                    const struct addrinfo *hints,
468                    struct addrinfo **result,
469                    int line, const char *source)
470 {
471   int res=(getaddrinfo)(hostname, service, hints, result);
472   if(0 == res)
473     /* success */
474     curl_memlog("ADDR %s:%d getaddrinfo() = %p\n",
475                 source, line, (void *)*result);
476   else
477     curl_memlog("ADDR %s:%d getaddrinfo() failed\n",
478                 source, line);
479   return res;
480 }
481 #endif /* defined(CURLDEBUG) && defined(HAVE_GETADDRINFO) */
482