2002-09-03 19:52:59 +08:00
|
|
|
/***************************************************************************
|
2004-06-24 15:43:48 +08:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
1999-12-29 22:20:26 +08:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2011-04-20 21:17:42 +08:00
|
|
|
* Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al.
|
1999-12-29 22:20:26 +08:00
|
|
|
*
|
2002-09-03 19:52:59 +08:00
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
|
|
|
* are also available at http://curl.haxx.se/docs/copyright.html.
|
2004-06-24 15:43:48 +08:00
|
|
|
*
|
2001-01-03 17:29:33 +08:00
|
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
* copies of the Software, and permit persons to whom the Software is
|
2002-09-03 19:52:59 +08:00
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
1999-12-29 22:20:26 +08:00
|
|
|
*
|
2001-01-03 17:29:33 +08:00
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
1999-12-29 22:20:26 +08:00
|
|
|
*
|
2002-09-03 19:52:59 +08:00
|
|
|
***************************************************************************/
|
1999-12-29 22:20:26 +08:00
|
|
|
|
2000-08-24 22:26:33 +08:00
|
|
|
#include "setup.h"
|
|
|
|
|
1999-12-29 22:20:26 +08:00
|
|
|
#ifdef HAVE_UNISTD_H
|
2008-11-17 22:24:15 +08:00
|
|
|
# include <unistd.h>
|
1999-12-29 22:20:26 +08:00
|
|
|
#endif
|
2008-10-10 03:23:50 +08:00
|
|
|
#ifdef HAVE_SYS_SOCKET_H
|
2008-11-17 22:24:15 +08:00
|
|
|
# include <sys/socket.h>
|
2008-10-10 03:23:50 +08:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_NETINET_IN_H
|
2008-11-17 22:24:15 +08:00
|
|
|
# include <netinet/in.h>
|
2008-10-10 03:23:50 +08:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_ARPA_INET_H
|
2008-11-17 22:24:15 +08:00
|
|
|
# include <arpa/inet.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_NET_IF_H
|
|
|
|
# include <net/if.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_SYS_IOCTL_H
|
|
|
|
# include <sys/ioctl.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_NETDB_H
|
|
|
|
# include <netdb.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_SYS_SOCKIO_H
|
|
|
|
# include <sys/sockio.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_IFADDRS_H
|
|
|
|
# include <ifaddrs.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_STROPTS_H
|
|
|
|
# include <stropts.h>
|
|
|
|
#endif
|
2009-12-31 01:59:56 +08:00
|
|
|
#ifdef __VMS
|
2008-11-17 22:24:15 +08:00
|
|
|
# include <inet.h>
|
2008-10-10 03:23:50 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "inet_ntop.h"
|
|
|
|
#include "strequal.h"
|
2008-11-17 22:24:15 +08:00
|
|
|
#include "if2ip.h"
|
2008-10-10 03:23:50 +08:00
|
|
|
|
2008-10-25 11:52:21 +08:00
|
|
|
#define _MPRINTF_REPLACE /* use our functions only */
|
|
|
|
#include <curl/mprintf.h>
|
|
|
|
|
2009-04-21 19:46:16 +08:00
|
|
|
#include "curl_memory.h"
|
2008-10-25 11:52:21 +08:00
|
|
|
/* The last #include file should be: */
|
|
|
|
#include "memdebug.h"
|
|
|
|
|
2008-11-17 22:26:22 +08:00
|
|
|
/* ------------------------------------------------------------------ */
|
2008-11-17 22:24:15 +08:00
|
|
|
|
|
|
|
#if defined(HAVE_GETIFADDRS)
|
|
|
|
|
2008-10-10 03:23:50 +08:00
|
|
|
char *Curl_if2ip(int af, const char *interface, char *buf, int buf_size)
|
|
|
|
{
|
|
|
|
struct ifaddrs *iface, *head;
|
|
|
|
char *ip=NULL;
|
|
|
|
|
2011-04-20 21:17:42 +08:00
|
|
|
if(getifaddrs(&head) >= 0) {
|
|
|
|
for(iface=head; iface != NULL; iface=iface->ifa_next) {
|
|
|
|
if((iface->ifa_addr != NULL) &&
|
|
|
|
(iface->ifa_addr->sa_family == af) &&
|
|
|
|
curl_strequal(iface->ifa_name, interface)) {
|
2008-10-10 03:23:50 +08:00
|
|
|
void *addr;
|
2008-10-25 11:52:21 +08:00
|
|
|
char scope[12]="";
|
2008-12-04 14:24:00 +08:00
|
|
|
#ifdef ENABLE_IPV6
|
2011-04-20 21:17:42 +08:00
|
|
|
if(af == AF_INET6) {
|
2008-12-30 16:05:38 +08:00
|
|
|
unsigned int scopeid = 0;
|
2008-10-10 03:23:50 +08:00
|
|
|
addr = &((struct sockaddr_in6 *)iface->ifa_addr)->sin6_addr;
|
2008-12-30 16:05:38 +08:00
|
|
|
#ifdef HAVE_SOCKADDR_IN6_SIN6_SCOPE_ID
|
2008-10-25 11:52:21 +08:00
|
|
|
/* Include the scope of this interface as part of the address */
|
2008-10-10 03:23:50 +08:00
|
|
|
scopeid = ((struct sockaddr_in6 *)iface->ifa_addr)->sin6_scope_id;
|
2008-12-30 16:05:38 +08:00
|
|
|
#endif
|
2011-04-20 21:17:42 +08:00
|
|
|
if(scopeid)
|
2008-10-25 11:52:21 +08:00
|
|
|
snprintf(scope, sizeof(scope), "%%%u", scopeid);
|
|
|
|
}
|
|
|
|
else
|
2008-12-04 14:24:00 +08:00
|
|
|
#endif
|
2008-10-10 03:23:50 +08:00
|
|
|
addr = &((struct sockaddr_in *)iface->ifa_addr)->sin_addr;
|
|
|
|
ip = (char *) Curl_inet_ntop(af, addr, buf, buf_size);
|
2008-10-25 11:52:21 +08:00
|
|
|
strlcat(buf, scope, buf_size);
|
|
|
|
break;
|
2008-10-10 03:23:50 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
freeifaddrs(head);
|
|
|
|
}
|
|
|
|
return ip;
|
|
|
|
}
|
|
|
|
|
2008-11-17 22:24:15 +08:00
|
|
|
#elif defined(HAVE_IOCTL_SIOCGIFADDR)
|
2001-03-16 23:19:36 +08:00
|
|
|
|
2008-10-10 03:23:50 +08:00
|
|
|
char *Curl_if2ip(int af, const char *interface, char *buf, int buf_size)
|
1999-12-29 22:20:26 +08:00
|
|
|
{
|
2009-04-11 14:36:47 +08:00
|
|
|
struct ifreq req;
|
|
|
|
struct in_addr in;
|
|
|
|
struct sockaddr_in *s;
|
|
|
|
curl_socket_t dummy;
|
|
|
|
size_t len;
|
|
|
|
char *ip;
|
2004-06-24 15:43:48 +08:00
|
|
|
|
2008-10-10 03:23:50 +08:00
|
|
|
if(!interface || (af != AF_INET))
|
1999-12-29 22:20:26 +08:00
|
|
|
return NULL;
|
|
|
|
|
2009-04-11 14:36:47 +08:00
|
|
|
len = strlen(interface);
|
|
|
|
if(len >= sizeof(req.ifr_name))
|
|
|
|
return NULL;
|
|
|
|
|
1999-12-29 22:20:26 +08:00
|
|
|
dummy = socket(AF_INET, SOCK_STREAM, 0);
|
2009-04-11 14:36:47 +08:00
|
|
|
if(CURL_SOCKET_BAD == dummy)
|
1999-12-29 22:20:26 +08:00
|
|
|
return NULL;
|
|
|
|
|
2009-04-11 14:36:47 +08:00
|
|
|
memset(&req, 0, sizeof(req));
|
|
|
|
memcpy(req.ifr_name, interface, len+1);
|
|
|
|
req.ifr_addr.sa_family = AF_INET;
|
|
|
|
|
|
|
|
if(ioctl(dummy, SIOCGIFADDR, &req) < 0) {
|
2001-03-16 23:44:38 +08:00
|
|
|
sclose(dummy);
|
2009-04-11 14:36:47 +08:00
|
|
|
return NULL;
|
1999-12-29 22:20:26 +08:00
|
|
|
}
|
2009-04-11 14:36:47 +08:00
|
|
|
|
|
|
|
s = (struct sockaddr_in *)&req.ifr_addr;
|
|
|
|
memcpy(&in, &s->sin_addr, sizeof(in));
|
|
|
|
ip = (char *) Curl_inet_ntop(s->sin_family, &in, buf, buf_size);
|
|
|
|
|
|
|
|
sclose(dummy);
|
1999-12-29 22:20:26 +08:00
|
|
|
return ip;
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
2008-11-17 22:24:15 +08:00
|
|
|
|
2008-10-10 03:23:50 +08:00
|
|
|
char *Curl_if2ip(int af, const char *interf, char *buf, int buf_size)
|
2004-03-17 20:46:42 +08:00
|
|
|
{
|
2008-10-10 03:23:50 +08:00
|
|
|
(void) af;
|
2004-11-02 18:12:22 +08:00
|
|
|
(void) interf;
|
2004-05-05 21:42:23 +08:00
|
|
|
(void) buf;
|
|
|
|
(void) buf_size;
|
2004-03-17 20:46:42 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
2008-11-17 22:24:15 +08:00
|
|
|
|
1999-12-29 22:20:26 +08:00
|
|
|
#endif
|