getaddrinfo.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:22k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * getaddrinfo.c: getaddrinfo/getnameinfo replacement functions
  3.  *****************************************************************************
  4.  * Copyright (C) 2005 the VideoLAN team
  5.  * Copyright (C) 2002-2007 Rémi Denis-Courmont
  6.  * $Id: 5f73492df81c395fbcf65f4b42e527c1a96fd432 $
  7.  *
  8.  * Author: Rémi Denis-Courmont <rem # videolan.org>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. #ifdef HAVE_CONFIG_H
  25. # include "config.h"
  26. #endif
  27. #include <vlc_common.h>
  28. #include <vlc_charset.h>
  29. #include <stddef.h> /* size_t */
  30. #include <string.h> /* strlen(), memcpy(), memset(), strchr() */
  31. #include <stdlib.h> /* malloc(), free(), strtoul() */
  32. #include <errno.h>
  33. #include <assert.h>
  34. #ifdef HAVE_SYS_TYPES_H
  35. #   include <sys/types.h>
  36. #endif
  37. #ifdef HAVE_ARPA_INET_H
  38. #   include <arpa/inet.h>
  39. #endif
  40. #ifdef HAVE_NETINET_IN_H
  41. #   include <netinet/in.h>
  42. #endif
  43. #ifdef HAVE_UNISTD_H
  44. #   include <unistd.h>
  45. #endif
  46. #include <vlc_network.h>
  47. #ifndef NO_ADDRESS
  48. #   define NO_ADDRESS  NO_DATA
  49. #endif
  50. #ifndef INADDR_NONE
  51. #   define INADDR_NONE 0xFFFFFFFF
  52. #endif
  53. #ifndef AF_UNSPEC
  54. #   define AF_UNSPEC   0
  55. #endif
  56. #ifndef HAVE_GAI_STRERROR
  57. static const struct
  58. {
  59.     int        code;
  60.     const char msg[41];
  61. } gai_errlist[] =
  62. {
  63.     { 0,              "Error 0" },
  64.     { EAI_BADFLAGS,   "Invalid flag used" },
  65.     { EAI_NONAME,     "Host or service not found" },
  66.     { EAI_AGAIN,      "Temporary name service failure" },
  67.     { EAI_FAIL,       "Non-recoverable name service failure" },
  68.     { EAI_NODATA,     "No data for host name" },
  69.     { EAI_FAMILY,     "Unsupported address family" },
  70.     { EAI_SOCKTYPE,   "Unsupported socket type" },
  71.     { EAI_SERVICE,    "Incompatible service for socket type" },
  72.     { EAI_ADDRFAMILY, "Unavailable address family for host name" },
  73.     { EAI_MEMORY,     "Memory allocation failure" },
  74.     { EAI_OVERFLOW,   "Buffer overflow" },
  75.     { EAI_SYSTEM,     "System error" },
  76.     { 0,              "" },
  77. };
  78. static const char gai_unknownerr[] = "Unrecognized error number";
  79. /****************************************************************************
  80.  * Converts an EAI_* error code into human readable english text.
  81.  ****************************************************************************/
  82. const char *vlc_gai_strerror (int errnum)
  83. {
  84.     for (unsigned i = 0; *gai_errlist[i].msg; i++)
  85.         if (errnum == gai_errlist[i].code)
  86.             return gai_errlist[i].msg;
  87.     return gai_unknownerr;
  88. }
  89. #else /* ifndef HAVE_GAI_STRERROR */
  90. const char *vlc_gai_strerror (int errnum)
  91. {
  92.     return gai_strerror (errnum);
  93. }
  94. #endif
  95. #ifndef HAVE_GETNAMEINFO
  96. #define _NI_MASK (NI_NUMERICHOST|NI_NUMERICSERV|NI_NOFQDN|NI_NAMEREQD|
  97.                   NI_DGRAM)
  98. /*
  99.  * getnameinfo() non-thread-safe IPv4-only implementation,
  100.  * Address-family-independent address to hostname translation
  101.  * (reverse DNS lookup in case of IPv4).
  102.  *
  103.  * This is meant for use on old IP-enabled systems that are not IPv6-aware,
  104.  * and probably do not have getnameinfo(), but have the old gethostbyaddr()
  105.  * function.
  106.  *
  107.  * GNU C library 2.0.x is known to lack this function, even though it defines
  108.  * getaddrinfo().
  109.  */
  110. #ifdef WIN32
  111. static int WSAAPI
  112. stub_getnameinfo (const struct sockaddr *sa, socklen_t salen,
  113.              char *host, DWORD hostlen, char *serv, DWORD servlen, int flags)
  114. #else
  115. static int
  116. stub_getnameinfo (const struct sockaddr *sa, socklen_t salen,
  117.              char *host, int hostlen, char *serv, int servlen, int flags)
  118. #endif
  119. {
  120.     if (((size_t)salen < sizeof (struct sockaddr_in))
  121.      || (sa->sa_family != AF_INET))
  122.         return EAI_FAMILY;
  123.     else if (flags & (~_NI_MASK))
  124.         return EAI_BADFLAGS;
  125.     else
  126.     {
  127.         const struct sockaddr_in *addr;
  128.         addr = (const struct sockaddr_in *)sa;
  129.         if (host != NULL)
  130.         {
  131.             /* host name resolution */
  132.             if (!(flags & NI_NUMERICHOST))
  133.             {
  134.                 if (flags & NI_NAMEREQD)
  135.                     return EAI_NONAME;
  136.             }
  137.             /* inet_ntoa() is not thread-safe, do not use it */
  138.             uint32_t ipv4 = ntohl (addr->sin_addr.s_addr);
  139.             if (snprintf (host, hostlen, "%u.%u.%u.%u", ipv4 >> 24,
  140.                           (ipv4 >> 16) & 0xff, (ipv4 >> 8) & 0xff,
  141.                           ipv4 & 0xff) >= (int)hostlen)
  142.                 return EAI_OVERFLOW;
  143.         }
  144.         if (serv != NULL)
  145.         {
  146.             if (snprintf (serv, servlen, "%u",
  147.                           (unsigned int)ntohs (addr->sin_port)) >= (int)servlen)
  148.                 return EAI_OVERFLOW;
  149.         }
  150.     }
  151.     return 0;
  152. }
  153. #undef getnameinfo
  154. #define getnameifo stub_getnameinfo
  155. #endif /* if !HAVE_GETNAMEINFO */
  156. #ifndef HAVE_GETADDRINFO
  157. #define _AI_MASK (AI_PASSIVE|AI_CANONNAME|AI_NUMERICHOST)
  158. /*
  159.  * Converts the current herrno error value into an EAI_* error code.
  160.  * That error code is normally returned by getnameinfo() or getaddrinfo().
  161.  */
  162. static int
  163. gai_error_from_herrno (void)
  164. {
  165.     switch (h_errno)
  166.     {
  167.         case HOST_NOT_FOUND:
  168.             return EAI_NONAME;
  169.         case NO_ADDRESS:
  170. # if (NO_ADDRESS != NO_DATA)
  171.         case NO_DATA:
  172. # endif
  173.             return EAI_NODATA;
  174.         case NO_RECOVERY:
  175.             return EAI_FAIL;
  176.         case TRY_AGAIN:
  177.             return EAI_AGAIN;
  178.     }
  179.     return EAI_SYSTEM;
  180. }
  181. /*
  182.  * This functions must be used to free the memory allocated by getaddrinfo().
  183.  */
  184. #ifdef WIN32
  185. static void WSAAPI stub_freeaddrinfo (struct addrinfo *res)
  186. #else
  187. static void stub_freeaddrinfo (struct addrinfo *res)
  188. #endif
  189. {
  190.     if (res == NULL)
  191.         return;
  192.     free (res->ai_canonname);
  193.     free (res->ai_addr);
  194.     free (res->ai_next);
  195.     free (res);
  196. }
  197. /*
  198.  * Internal function that builds an addrinfo struct.
  199.  */
  200. static struct addrinfo *
  201. makeaddrinfo (int af, int type, int proto,
  202.               const struct sockaddr *addr, size_t addrlen,
  203.               const char *canonname)
  204. {
  205.     struct addrinfo *res;
  206.     res = (struct addrinfo *)malloc (sizeof (struct addrinfo));
  207.     if (res != NULL)
  208.     {
  209.         res->ai_flags = 0;
  210.         res->ai_family = af;
  211.         res->ai_socktype = type;
  212.         res->ai_protocol = proto;
  213.         res->ai_addrlen = addrlen;
  214.         res->ai_addr = malloc (addrlen);
  215.         res->ai_canonname = NULL;
  216.         res->ai_next = NULL;
  217.         if (res->ai_addr != NULL)
  218.         {
  219.             memcpy (res->ai_addr, addr, addrlen);
  220.             if (canonname != NULL)
  221.             {
  222.                 res->ai_canonname = strdup (canonname);
  223.                 if (res->ai_canonname != NULL)
  224.                     return res; /* success ! */
  225.             }
  226.             else
  227.                 return res;
  228.         }
  229.     }
  230.     /* failsafe */
  231.     vlc_freeaddrinfo (res);
  232.     return NULL;
  233. }
  234. static struct addrinfo *
  235. makeipv4info (int type, int proto, u_long ip, u_short port, const char *name)
  236. {
  237.     struct sockaddr_in addr;
  238.     memset (&addr, 0, sizeof (addr));
  239.     addr.sin_family = AF_INET;
  240. # ifdef HAVE_SA_LEN
  241.     addr.sin_len = sizeof (addr);
  242. # endif
  243.     addr.sin_port = port;
  244.     addr.sin_addr.s_addr = ip;
  245.     return makeaddrinfo (AF_INET, type, proto,
  246.                          (struct sockaddr*)&addr, sizeof (addr), name);
  247. }
  248. /*
  249.  * getaddrinfo() non-thread-safe IPv4-only implementation
  250.  * Address-family-independent hostname to address resolution.
  251.  *
  252.  * This is meant for IPv6-unaware systems that do probably not provide
  253.  * getaddrinfo(), but still have old function gethostbyname().
  254.  *
  255.  * Only UDP and TCP over IPv4 are supported here.
  256.  */
  257. #ifdef WIN32
  258. static int WSAAPI
  259. stub_getaddrinfo (const char *node, const char *service,
  260.              const struct addrinfo *hints, struct addrinfo **res)
  261. #else
  262. static int
  263. stub_getaddrinfo (const char *node, const char *service,
  264.              const struct addrinfo *hints, struct addrinfo **res)
  265. #endif
  266. {
  267.     struct addrinfo *info;
  268.     u_long ip;
  269.     u_short port;
  270.     int protocol = 0, flags = 0;
  271.     const char *name = NULL;
  272. #ifdef WIN32
  273.     /*
  274.      * Maybe you knew already that Winsock does not handle TCP/RST packets
  275.      * properly, so that when a TCP connection fails, it will wait until it
  276.      * times out even if the remote host did return a TCP/RST. However, it
  277.      * still sees the TCP/RST as the error code is 10061 instead of 10060.
  278.      * Basically, we have the stupid brainfucked behavior with DNS queries...
  279.      * When the recursive DNS server returns an error, Winsock waits about
  280.      * 2 seconds before it returns to the callers, even though it should know
  281.      * that is pointless. I'd like to know how come this hasn't been fixed
  282.      * for the past decade, or maybe not.
  283.      *
  284.      * Anyway, this is causing a severe delay when the SAP listener tries
  285.      * to resolve more than ten IPv6 numeric addresses. Modern systems will
  286.      * eventually realize that it is an IPv6 address, and won't try to resolve
  287.      * it as a IPv4 address via the Domain Name Service. Old systems
  288.      * (including Windows XP without the IPv6 stack) will not. It is normally
  289.      * not an issue as the DNS server usually returns an error very quickly.
  290.      * But it IS a severe issue on Windows, given the bug explained above.
  291.      * So here comes one more bug-to-bug Windows compatibility fix.
  292.      */
  293.     if ((node != NULL) && (strchr (node, ':') != NULL))
  294.        return EAI_NONAME;
  295. #endif
  296.     if (hints != NULL)
  297.     {
  298.         flags = hints->ai_flags;
  299.         if (flags & ~_AI_MASK)
  300.             return EAI_BADFLAGS;
  301.         /* only accept AF_INET and AF_UNSPEC */
  302.         if (hints->ai_family && (hints->ai_family != AF_INET))
  303.             return EAI_FAMILY;
  304.         /* protocol sanity check */
  305.         switch (hints->ai_socktype)
  306.         {
  307.             case SOCK_STREAM:
  308.                 protocol = IPPROTO_TCP;
  309.                 break;
  310.             case SOCK_DGRAM:
  311.                 protocol = IPPROTO_UDP;
  312.                 break;
  313. #ifndef SOCK_RAW
  314.             case SOCK_RAW:
  315. #endif
  316.             case 0:
  317.                 break;
  318.             default:
  319.                 return EAI_SOCKTYPE;
  320.         }
  321.         if (hints->ai_protocol && protocol
  322.          && (protocol != hints->ai_protocol))
  323.             return EAI_SERVICE;
  324.     }
  325.     *res = NULL;
  326.     /* default values */
  327.     if (node == NULL)
  328.     {
  329.         if (flags & AI_PASSIVE)
  330.             ip = htonl (INADDR_ANY);
  331.         else
  332.             ip = htonl (INADDR_LOOPBACK);
  333.     }
  334.     else
  335.     if ((ip = inet_addr (node)) == INADDR_NONE)
  336.     {
  337.         struct hostent *entry = NULL;
  338.         /* hostname resolution */
  339.         if (!(flags & AI_NUMERICHOST))
  340.             entry = gethostbyname (node);
  341.         if (entry == NULL)
  342.             return gai_error_from_herrno ();
  343.         if ((entry->h_length != 4) || (entry->h_addrtype != AF_INET))
  344.             return EAI_FAMILY;
  345.         ip = *((u_long *) entry->h_addr);
  346.         if (flags & AI_CANONNAME)
  347.             name = entry->h_name;
  348.     }
  349.     if ((flags & AI_CANONNAME) && (name == NULL))
  350.         name = node;
  351.     /* service resolution */
  352.     if (service == NULL)
  353.         port = 0;
  354.     else
  355.     {
  356.         unsigned long d;
  357.         char *end;
  358.         d = strtoul (service, &end, 0);
  359.         if (end[0] || (d > 65535u))
  360.             return EAI_SERVICE;
  361.         port = htons ((u_short)d);
  362.     }
  363.     /* building results... */
  364.     if ((!protocol) || (protocol == IPPROTO_UDP))
  365.     {
  366.         info = makeipv4info (SOCK_DGRAM, IPPROTO_UDP, ip, port, name);
  367.         if (info == NULL)
  368.         {
  369.             errno = ENOMEM;
  370.             return EAI_SYSTEM;
  371.         }
  372.         if (flags & AI_PASSIVE)
  373.             info->ai_flags |= AI_PASSIVE;
  374.         *res = info;
  375.     }
  376.     if ((!protocol) || (protocol == IPPROTO_TCP))
  377.     {
  378.         info = makeipv4info (SOCK_STREAM, IPPROTO_TCP, ip, port, name);
  379.         if (info == NULL)
  380.         {
  381.             errno = ENOMEM;
  382.             return EAI_SYSTEM;
  383.         }
  384.         info->ai_next = *res;
  385.         if (flags & AI_PASSIVE)
  386.             info->ai_flags |= AI_PASSIVE;
  387.         *res = info;
  388.     }
  389.     return 0;
  390. }
  391. #undef getaddrinfo
  392. #define getaddrifo stub_getaddrinfo
  393. #undef freeaddrinfo
  394. #define freeaddrifo stub_freeaddrinfo
  395. #endif /* if !HAVE_GETADDRINFO */
  396. #if defined( WIN32 ) && !defined( UNDER_CE )
  397.     /*
  398.      * Here is the kind of kludge you need to keep binary compatibility among
  399.      * varying OS versions...
  400.      */
  401. typedef int (WSAAPI * GETNAMEINFO) ( const struct sockaddr FAR *, socklen_t,
  402.                                            char FAR *, DWORD, char FAR *, DWORD, int );
  403. typedef int (WSAAPI * GETADDRINFO) (const char FAR *, const char FAR *,
  404.                                           const struct addrinfo FAR *,
  405.                                           struct addrinfo FAR * FAR *);
  406. typedef void (WSAAPI * FREEADDRINFO) ( struct addrinfo FAR * );
  407. static int WSAAPI _ws2_getnameinfo_bind ( const struct sockaddr FAR *, socklen_t,
  408.                                            char FAR *, DWORD, char FAR *, DWORD, int );
  409. static int WSAAPI _ws2_getaddrinfo_bind (const char FAR *, const char FAR *,
  410.                                           const struct addrinfo FAR *,
  411.                                           struct addrinfo FAR * FAR *);
  412. static GETNAMEINFO ws2_getnameinfo = _ws2_getnameinfo_bind;
  413. static GETADDRINFO ws2_getaddrinfo = _ws2_getaddrinfo_bind;
  414. static FREEADDRINFO ws2_freeaddrinfo;
  415. static FARPROC ws2_find_api (LPCTSTR name)
  416. {
  417.     FARPROC f = NULL;
  418.     HMODULE m = GetModuleHandle (TEXT("WS2_32"));
  419.     if (m != NULL)
  420.         f = GetProcAddress (m, name);
  421.     if (f == NULL)
  422.     {
  423.         /* Windows 2K IPv6 preview */
  424.         m = LoadLibrary (TEXT("WSHIP6"));
  425.         if (m != NULL)
  426.             f = GetProcAddress (m, name);
  427.     }
  428.     return f;
  429. }
  430. static WSAAPI int _ws2_getnameinfo_bind( const struct sockaddr FAR * sa, socklen_t salen,
  431.                char FAR *host, DWORD hostlen, char FAR *serv, DWORD servlen, int flags )
  432. {
  433.     GETNAMEINFO entry = (GETNAMEINFO)ws2_find_api (TEXT("getnameinfo"));
  434.     int result;
  435.     if (entry == NULL)
  436.     {
  437.         /* not found, use replacement API instead */
  438.         entry = stub_getnameinfo;
  439.     }
  440.     /* call API before replacing function pointer to avoid crash */
  441.     result = entry (sa, salen, host, hostlen, serv, servlen, flags);
  442.     ws2_getnameinfo = entry;
  443.     return result;
  444. }
  445. #undef getnameinfo
  446. #define getnameinfo ws2_getnameinfo
  447. static WSAAPI int _ws2_getaddrinfo_bind(const char FAR *node, const char FAR *service,
  448.                const struct addrinfo FAR *hints, struct addrinfo FAR * FAR *res)
  449. {
  450.     GETADDRINFO entry;
  451.     FREEADDRINFO freentry;
  452.     int result;
  453.     entry = (GETADDRINFO)ws2_find_api (TEXT("getaddrinfo"));
  454.     freentry = (FREEADDRINFO)ws2_find_api (TEXT("freeaddrinfo"));
  455.     if ((entry == NULL) ||  (freentry == NULL))
  456.     {
  457.         /* not found, use replacement API instead */
  458.         entry = stub_getaddrinfo;
  459.         freentry = stub_freeaddrinfo;
  460.     }
  461.     /* call API before replacing function pointer to avoid crash */
  462.     result = entry (node, service, hints, res);
  463.     ws2_freeaddrinfo = freentry;
  464.     ws2_getaddrinfo = entry;
  465.     return result;
  466. }
  467. #undef getaddrinfo
  468. #undef freeaddrinfo
  469. #define getaddrinfo ws2_getaddrinfo
  470. #define freeaddrinfo ws2_freeaddrinfo
  471. #define HAVE_GETADDRINFO
  472. #endif
  473. int vlc_getnameinfo( const struct sockaddr *sa, int salen,
  474.                      char *host, int hostlen, int *portnum, int flags )
  475. {
  476.     char psz_servbuf[6], *psz_serv;
  477.     int i_servlen, i_val;
  478.     flags |= NI_NUMERICSERV;
  479.     if( portnum != NULL )
  480.     {
  481.         psz_serv = psz_servbuf;
  482.         i_servlen = sizeof( psz_servbuf );
  483.     }
  484.     else
  485.     {
  486.         psz_serv = NULL;
  487.         i_servlen = 0;
  488.     }
  489.     i_val = getnameinfo(sa, salen, host, hostlen, psz_serv, i_servlen, flags);
  490.     if( portnum != NULL )
  491.         *portnum = atoi( psz_serv );
  492.     return i_val;
  493. }
  494. /**
  495.  * Resolves a host name to a list of socket addresses (like getaddrinfo()).
  496.  *
  497.  * @param p_this a VLC object
  498.  * @param node host name to resolve (encoded as UTF-8), or NULL
  499.  * @param i_port port number for the socket addresses
  500.  * @param p_hints parameters (see getaddrinfo() manual page)
  501.  * @param res pointer set to the resulting chained list.
  502.  * @return 0 on success, a getaddrinfo() error otherwise.
  503.  * On failure, *res is undefined. On success, it must be freed with
  504.  * vlc_freeaddrinfo().
  505.  */
  506. int vlc_getaddrinfo( vlc_object_t *p_this, const char *node,
  507.                      int i_port, const struct addrinfo *p_hints,
  508.                      struct addrinfo **res )
  509. {
  510.     struct addrinfo hints;
  511.     char psz_buf[NI_MAXHOST], psz_service[6];
  512.     /*
  513.      * In VLC, we always use port number as integer rather than strings
  514.      * for historical reasons (and portability).
  515.      */
  516.     if( ( i_port > 65535 ) || ( i_port < 0 ) )
  517.     {
  518.         msg_Err( p_this, "invalid port number %d specified", i_port );
  519.         return EAI_SERVICE;
  520.     }
  521.     /* cannot overflow */
  522.     snprintf( psz_service, 6, "%d", i_port );
  523.     /* Check if we have to force ipv4 or ipv6 */
  524.     memset (&hints, 0, sizeof (hints));
  525.     if (p_hints != NULL)
  526.     {
  527.         const int safe_flags =
  528.             AI_PASSIVE |
  529.             AI_CANONNAME |
  530.             AI_NUMERICHOST |
  531.             AI_NUMERICSERV |
  532. #ifdef AI_ALL
  533.             AI_ALL |
  534. #endif
  535. #ifdef AI_ADDRCONFIG
  536.             AI_ADDRCONFIG |
  537. #endif
  538. #ifdef AI_V4MAPPED
  539.             AI_V4MAPPED |
  540. #endif
  541.             0;
  542.         hints.ai_family = p_hints->ai_family;
  543.         hints.ai_socktype = p_hints->ai_socktype;
  544.         hints.ai_protocol = p_hints->ai_protocol;
  545.         /* Unfortunately, some flags chang the layout of struct addrinfo, so
  546.          * they cannot be copied blindly from p_hints to &hints. Therefore, we
  547.          * only copy flags that we know for sure are "safe".
  548.          */
  549.         hints.ai_flags = p_hints->ai_flags & safe_flags;
  550.     }
  551.     /* We only ever use port *numbers* */
  552.     hints.ai_flags |= AI_NUMERICSERV;
  553.     if( hints.ai_family == AF_UNSPEC )
  554.     {
  555. #ifdef AF_INET6
  556.         if (var_CreateGetBool (p_this, "ipv6"))
  557.             hints.ai_family = AF_INET6;
  558.         else
  559. #endif
  560.         if (var_CreateGetBool (p_this, "ipv4"))
  561.             hints.ai_family = AF_INET;
  562.     }
  563.     /*
  564.      * VLC extensions :
  565.      * - accept "" as NULL
  566.      * - ignore square brackets
  567.      */
  568.     if (node != NULL)
  569.     {
  570.         if (node[0] == '[')
  571.         {
  572.             size_t len = strlen (node + 1);
  573.             if ((len <= sizeof (psz_buf)) && (node[len] == ']'))
  574.             {
  575.                 assert (len > 0);
  576.                 memcpy (psz_buf, node + 1, len - 1);
  577.                 psz_buf[len - 1] = '';
  578.                 node = psz_buf;
  579.             }
  580.         }
  581.         if (node[0] == '')
  582.             node = NULL;
  583.     }
  584.     int ret;
  585.     node = ToLocale (node);
  586. #ifdef WIN32
  587.     /*
  588.      * Winsock tries to resolve numerical IPv4 addresses as AAAA
  589.      * and IPv6 addresses as A... There comes the bug-to-bug fix.
  590.      */
  591.     if ((hints.ai_flags & AI_NUMERICHOST) == 0)
  592.     {
  593.         hints.ai_flags |= AI_NUMERICHOST;
  594.         ret = getaddrinfo (node, psz_service, &hints, res);
  595.         if (ret == 0)
  596.             goto out;
  597.         hints.ai_flags &= ~AI_NUMERICHOST;
  598.     }
  599. #endif
  600. #ifdef AI_IDN
  601.     /* Run-time I18n Domain Names support */
  602.     hints.ai_flags |= AI_IDN;
  603.     ret = getaddrinfo (node, psz_service, &hints, res);
  604.     if (ret != EAI_BADFLAGS)
  605.         goto out;
  606.     /* IDN not available: disable and retry without it */
  607.     hints.ai_flags &= ~AI_IDN;
  608. #endif
  609.     ret = getaddrinfo (node, psz_service, &hints, res);
  610. out:
  611.     LocaleFree (node);
  612.     return ret;
  613. }
  614. void vlc_freeaddrinfo( struct addrinfo *infos )
  615. {
  616.     freeaddrinfo (infos);
  617. }
  618. /**
  619.  * inet_pton() replacement
  620.  */
  621. int vlc_inet_pton (int af, const char *src, void *dst)
  622. {
  623. #ifndef HAVE_INET_PTON
  624.     /* Windows Vista has inet_pton(), but not XP. */
  625.     /* We have a pretty good example of abstraction inversion here... */
  626.     struct addrinfo hints = {
  627.         .ai_family = af,
  628.         .ai_socktype = SOCK_DGRAM, /* make sure we have... */
  629.         .ai_protocol = IPPROTO_UDP, /* ...only one response */
  630.         .ai_flags = AI_NUMERICHOST,
  631.     }, *res;
  632.     if (getaddrinfo (src, NULL, &hints, &res))
  633.         return 0;
  634.     const void *data;
  635.     size_t len;
  636.     switch (af)
  637.     {
  638.         case AF_INET:
  639.             data = &((const struct sockaddr_in *)res->ai_addr)->sin_addr;
  640.             len = sizeof (struct in_addr);
  641.             break;
  642. #ifdef AF_INET6
  643.         case AF_INET6:
  644.             data = &((const struct sockaddr_in6 *)res->ai_addr)->sin6_addr;
  645.             len = sizeof (struct in6_addr);
  646.             break;
  647. #endif
  648.         default:
  649.             freeaddrinfo (res);
  650.             return -1;
  651.     }
  652.     memcpy (dst, data, len);
  653.     freeaddrinfo (res);
  654.     return 1;
  655. #else /* HAVE_INET_PTON */
  656.     return inet_pton( af, src, dst );
  657. #endif /* HAVE_INET_PTON */
  658. }
  659. /**
  660.  * inet_ntop() replacement
  661.  */
  662. const char *vlc_inet_ntop (int af, const void *src, char *dst, socklen_t cnt)
  663. {
  664. #ifndef HAVE_INET_NTOP
  665.     int ret = EAI_FAMILY;
  666.     switch (af)
  667.     {
  668. #ifdef AF_INET6
  669.         case AF_INET6:
  670.             {
  671.                 struct sockaddr_in6 addr;
  672.                 memset (&addr, 0, sizeof(addr));
  673.                 addr.sin6_family = AF_INET6;
  674.                 addr.sin6_addr = *(struct in6_addr *)src;
  675.                 ret = getnameinfo ((struct sockaddr *)&addr, sizeof (addr),
  676.                                    dst, cnt, NULL, 0, NI_NUMERICHOST);
  677.             }
  678. #endif
  679.         case AF_INET:
  680.             {
  681.                 struct sockaddr_in addr;
  682.                 memset(&addr, 0, sizeof(addr));
  683.                 addr.sin_family = AF_INET;
  684.                 addr.sin_addr = *(struct in_addr *)src;
  685.                 ret = getnameinfo ((struct sockaddr *)&addr, sizeof (addr),
  686.                                    dst, cnt, NULL, 0, NI_NUMERICHOST);
  687.             }
  688.     }
  689.     return (ret == 0) ? dst : NULL;
  690. #else /* HAVE_INET_NTOP */
  691.     return inet_ntop( af, src, dst, cnt );
  692. #endif /* HAVE_INET_NTOP */
  693. }