2002-09-03 07:52:59 -04:00
|
|
|
/***************************************************************************
|
2004-06-24 03:43:48 -04:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
1999-12-29 09:20:26 -05:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2016-04-29 09:46:40 -04:00
|
|
|
* Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
2016-02-02 18:19:02 -05:00
|
|
|
* are also available at https://curl.haxx.se/docs/copyright.html.
|
2004-06-24 03:43:48 -04:00
|
|
|
*
|
2001-01-03 04:29:33 -05: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 07:52:59 -04:00
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
***************************************************************************/
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2013-01-06 13:06:49 -05:00
|
|
|
#include "curl_setup.h"
|
2000-08-24 10:26:33 -04:00
|
|
|
|
2008-10-09 15:23:50 -04:00
|
|
|
#ifdef HAVE_NETINET_IN_H
|
2008-11-17 09:24:15 -05:00
|
|
|
# include <netinet/in.h>
|
2008-10-09 15:23:50 -04:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_ARPA_INET_H
|
2008-11-17 09:24:15 -05: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-30 12:59:56 -05:00
|
|
|
#ifdef __VMS
|
2008-11-17 09:24:15 -05:00
|
|
|
# include <inet.h>
|
2008-10-09 15:23:50 -04:00
|
|
|
#endif
|
|
|
|
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "inet_ntop.h"
|
2016-09-30 11:15:05 -04:00
|
|
|
#include "strcase.h"
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "if2ip.h"
|
2016-04-29 09:46:40 -04:00
|
|
|
/* The last 3 #include files should be in this order */
|
2015-03-03 06:36:18 -05:00
|
|
|
#include "curl_printf.h"
|
2009-04-21 07:46:16 -04:00
|
|
|
#include "curl_memory.h"
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "memdebug.h"
|
2008-10-24 23:52:21 -04:00
|
|
|
|
2008-11-17 09:26:22 -05:00
|
|
|
/* ------------------------------------------------------------------ */
|
2008-11-17 09:24:15 -05:00
|
|
|
|
2014-12-16 07:29:01 -05:00
|
|
|
/* Return the scope of the given address. */
|
|
|
|
unsigned int Curl_ipv6_scope(const struct sockaddr *sa)
|
|
|
|
{
|
|
|
|
#ifndef ENABLE_IPV6
|
|
|
|
(void) sa;
|
|
|
|
#else
|
|
|
|
if(sa->sa_family == AF_INET6) {
|
2015-09-26 04:24:34 -04:00
|
|
|
const struct sockaddr_in6 * sa6 = (const struct sockaddr_in6 *)(void *) sa;
|
2016-11-23 01:53:24 -05:00
|
|
|
const unsigned char *b = sa6->sin6_addr.s6_addr;
|
2014-12-16 07:29:01 -05:00
|
|
|
unsigned short w = (unsigned short) ((b[0] << 8) | b[1]);
|
|
|
|
|
|
|
|
switch(w & 0xFFC0) {
|
|
|
|
case 0xFE80:
|
|
|
|
return IPV6_SCOPE_LINKLOCAL;
|
|
|
|
case 0xFEC0:
|
|
|
|
return IPV6_SCOPE_SITELOCAL;
|
|
|
|
case 0x0000:
|
|
|
|
w = b[1] | b[2] | b[3] | b[4] | b[5] | b[6] | b[7] | b[8] | b[9] |
|
|
|
|
b[10] | b[11] | b[12] | b[13] | b[14];
|
|
|
|
if(w || b[15] != 0x01)
|
|
|
|
break;
|
|
|
|
return IPV6_SCOPE_NODELOCAL;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return IPV6_SCOPE_GLOBAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-11-17 09:24:15 -05:00
|
|
|
#if defined(HAVE_GETIFADDRS)
|
|
|
|
|
2011-12-13 12:37:33 -05:00
|
|
|
bool Curl_if_is_interface_name(const char *interf)
|
2011-11-04 16:48:05 -04:00
|
|
|
{
|
|
|
|
bool result = FALSE;
|
|
|
|
|
|
|
|
struct ifaddrs *iface, *head;
|
|
|
|
|
|
|
|
if(getifaddrs(&head) >= 0) {
|
|
|
|
for(iface=head; iface != NULL; iface=iface->ifa_next) {
|
2016-09-30 11:15:05 -04:00
|
|
|
if(strcasecompare(iface->ifa_name, interf)) {
|
2011-11-04 16:48:05 -04:00
|
|
|
result = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
freeifaddrs(head);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-04-03 16:06:51 -04:00
|
|
|
if2ip_result_t Curl_if2ip(int af, unsigned int remote_scope,
|
2014-12-16 07:29:01 -05:00
|
|
|
unsigned int remote_scope_id, const char *interf,
|
|
|
|
char *buf, int buf_size)
|
2008-10-09 15:23:50 -04:00
|
|
|
{
|
|
|
|
struct ifaddrs *iface, *head;
|
2013-04-03 16:06:51 -04:00
|
|
|
if2ip_result_t res = IF2IP_NOT_FOUND;
|
2008-10-09 15:23:50 -04:00
|
|
|
|
2013-04-07 15:04:39 -04:00
|
|
|
#ifndef ENABLE_IPV6
|
|
|
|
(void) remote_scope;
|
2014-12-26 08:28:29 -05:00
|
|
|
|
|
|
|
#ifndef HAVE_SOCKADDR_IN6_SIN6_SCOPE_ID
|
|
|
|
(void) remote_scope_id;
|
|
|
|
#endif
|
|
|
|
|
2013-04-07 15:04:39 -04:00
|
|
|
#endif
|
|
|
|
|
2011-04-20 09:17:42 -04:00
|
|
|
if(getifaddrs(&head) >= 0) {
|
2014-12-26 08:28:29 -05:00
|
|
|
for(iface = head; iface != NULL; iface=iface->ifa_next) {
|
2013-04-03 16:06:51 -04:00
|
|
|
if(iface->ifa_addr != NULL) {
|
|
|
|
if(iface->ifa_addr->sa_family == af) {
|
2016-09-30 11:15:05 -04:00
|
|
|
if(strcasecompare(iface->ifa_name, interf)) {
|
2013-04-03 16:06:51 -04:00
|
|
|
void *addr;
|
|
|
|
char *ip;
|
2014-12-26 08:28:29 -05:00
|
|
|
char scope[12] = "";
|
2013-04-03 16:06:51 -04:00
|
|
|
char ipstr[64];
|
2008-12-04 01:24:00 -05:00
|
|
|
#ifdef ENABLE_IPV6
|
2013-04-03 16:06:51 -04:00
|
|
|
if(af == AF_INET6) {
|
|
|
|
unsigned int scopeid = 0;
|
2014-12-16 07:29:01 -05:00
|
|
|
unsigned int ifscope = Curl_ipv6_scope(iface->ifa_addr);
|
|
|
|
|
|
|
|
if(ifscope != remote_scope) {
|
|
|
|
/* We are interested only in interface addresses whose
|
|
|
|
scope matches the remote address we want to
|
|
|
|
connect to: global for global, link-local for
|
|
|
|
link-local, etc... */
|
|
|
|
if(res == IF2IP_NOT_FOUND) res = IF2IP_AF_NOT_SUPPORTED;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2015-09-26 04:24:34 -04:00
|
|
|
addr =
|
|
|
|
&((struct sockaddr_in6 *)(void *)iface->ifa_addr)->sin6_addr;
|
2008-12-30 03:05:38 -05:00
|
|
|
#ifdef HAVE_SOCKADDR_IN6_SIN6_SCOPE_ID
|
2013-04-03 16:06:51 -04:00
|
|
|
/* Include the scope of this interface as part of the address */
|
2015-09-26 04:24:34 -04:00
|
|
|
scopeid = ((struct sockaddr_in6 *)(void *)iface->ifa_addr)
|
|
|
|
->sin6_scope_id;
|
2014-12-16 07:29:01 -05:00
|
|
|
|
|
|
|
/* If given, scope id should match. */
|
|
|
|
if(remote_scope_id && scopeid != remote_scope_id) {
|
2014-12-26 08:28:29 -05:00
|
|
|
if(res == IF2IP_NOT_FOUND)
|
|
|
|
res = IF2IP_AF_NOT_SUPPORTED;
|
|
|
|
|
2013-04-03 16:06:51 -04:00
|
|
|
continue;
|
|
|
|
}
|
2014-12-16 07:29:01 -05:00
|
|
|
#endif
|
2013-04-03 16:06:51 -04:00
|
|
|
if(scopeid)
|
|
|
|
snprintf(scope, sizeof(scope), "%%%u", scopeid);
|
|
|
|
}
|
|
|
|
else
|
2008-12-04 01:24:00 -05:00
|
|
|
#endif
|
2015-09-26 04:24:34 -04:00
|
|
|
addr =
|
|
|
|
&((struct sockaddr_in *)(void *)iface->ifa_addr)->sin_addr;
|
2013-04-03 16:06:51 -04:00
|
|
|
res = IF2IP_FOUND;
|
|
|
|
ip = (char *) Curl_inet_ntop(af, addr, ipstr, sizeof(ipstr));
|
|
|
|
snprintf(buf, buf_size, "%s%s", ip, scope);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if((res == IF2IP_NOT_FOUND) &&
|
2016-09-30 11:15:05 -04:00
|
|
|
strcasecompare(iface->ifa_name, interf)) {
|
2013-04-03 16:06:51 -04:00
|
|
|
res = IF2IP_AF_NOT_SUPPORTED;
|
|
|
|
}
|
2008-10-09 15:23:50 -04:00
|
|
|
}
|
|
|
|
}
|
2014-12-26 08:28:29 -05:00
|
|
|
|
2008-10-09 15:23:50 -04:00
|
|
|
freeifaddrs(head);
|
|
|
|
}
|
2014-12-26 08:28:29 -05:00
|
|
|
|
2013-04-03 16:06:51 -04:00
|
|
|
return res;
|
2008-10-09 15:23:50 -04:00
|
|
|
}
|
|
|
|
|
2008-11-17 09:24:15 -05:00
|
|
|
#elif defined(HAVE_IOCTL_SIOCGIFADDR)
|
2001-03-16 10:19:36 -05:00
|
|
|
|
2011-12-13 12:37:33 -05:00
|
|
|
bool Curl_if_is_interface_name(const char *interf)
|
2011-11-04 16:48:05 -04:00
|
|
|
{
|
|
|
|
/* This is here just to support the old interfaces */
|
|
|
|
char buf[256];
|
|
|
|
|
2014-12-18 05:05:18 -05:00
|
|
|
return (Curl_if2ip(AF_INET, 0 /* unused */, 0, interf, buf, sizeof(buf)) ==
|
2013-04-03 16:06:51 -04:00
|
|
|
IF2IP_NOT_FOUND) ? FALSE : TRUE;
|
2011-11-04 16:48:05 -04:00
|
|
|
}
|
|
|
|
|
2013-04-03 16:06:51 -04:00
|
|
|
if2ip_result_t Curl_if2ip(int af, unsigned int remote_scope,
|
2014-12-16 07:29:01 -05:00
|
|
|
unsigned int remote_scope_id, const char *interf,
|
|
|
|
char *buf, int buf_size)
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
2009-04-11 02:36:47 -04:00
|
|
|
struct ifreq req;
|
|
|
|
struct in_addr in;
|
|
|
|
struct sockaddr_in *s;
|
|
|
|
curl_socket_t dummy;
|
|
|
|
size_t len;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2013-04-10 10:44:54 -04:00
|
|
|
(void)remote_scope;
|
2014-12-16 07:29:01 -05:00
|
|
|
(void)remote_scope_id;
|
2013-04-10 10:44:54 -04:00
|
|
|
|
2011-12-13 12:37:33 -05:00
|
|
|
if(!interf || (af != AF_INET))
|
2013-04-03 16:06:51 -04:00
|
|
|
return IF2IP_NOT_FOUND;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2011-12-13 12:37:33 -05:00
|
|
|
len = strlen(interf);
|
2009-04-11 02:36:47 -04:00
|
|
|
if(len >= sizeof(req.ifr_name))
|
2013-04-03 16:06:51 -04:00
|
|
|
return IF2IP_NOT_FOUND;
|
2009-04-11 02:36:47 -04:00
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
dummy = socket(AF_INET, SOCK_STREAM, 0);
|
2009-04-11 02:36:47 -04:00
|
|
|
if(CURL_SOCKET_BAD == dummy)
|
2013-04-03 16:06:51 -04:00
|
|
|
return IF2IP_NOT_FOUND;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2009-04-11 02:36:47 -04:00
|
|
|
memset(&req, 0, sizeof(req));
|
2011-12-13 12:37:33 -05:00
|
|
|
memcpy(req.ifr_name, interf, len+1);
|
2009-04-11 02:36:47 -04:00
|
|
|
req.ifr_addr.sa_family = AF_INET;
|
|
|
|
|
|
|
|
if(ioctl(dummy, SIOCGIFADDR, &req) < 0) {
|
2001-03-16 10:44:38 -05:00
|
|
|
sclose(dummy);
|
2013-04-03 16:06:51 -04:00
|
|
|
/* With SIOCGIFADDR, we cannot tell the difference between an interface
|
|
|
|
that does not exist and an interface that has no address of the
|
|
|
|
correct family. Assume the interface does not exist */
|
|
|
|
return IF2IP_NOT_FOUND;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
2009-04-11 02:36:47 -04:00
|
|
|
|
|
|
|
s = (struct sockaddr_in *)&req.ifr_addr;
|
|
|
|
memcpy(&in, &s->sin_addr, sizeof(in));
|
2013-04-03 16:06:51 -04:00
|
|
|
Curl_inet_ntop(s->sin_family, &in, buf, buf_size);
|
2009-04-11 02:36:47 -04:00
|
|
|
|
|
|
|
sclose(dummy);
|
2013-04-03 16:06:51 -04:00
|
|
|
return IF2IP_FOUND;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
2008-11-17 09:24:15 -05:00
|
|
|
|
2011-12-13 12:37:33 -05:00
|
|
|
bool Curl_if_is_interface_name(const char *interf)
|
2011-11-04 16:48:05 -04:00
|
|
|
{
|
2011-12-13 12:37:33 -05:00
|
|
|
(void) interf;
|
2011-12-13 10:08:42 -05:00
|
|
|
|
2011-11-04 16:48:05 -04:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2013-04-03 16:06:51 -04:00
|
|
|
if2ip_result_t Curl_if2ip(int af, unsigned int remote_scope,
|
2014-12-16 07:29:01 -05:00
|
|
|
unsigned int remote_scope_id, const char *interf,
|
|
|
|
char *buf, int buf_size)
|
2004-03-17 07:46:42 -05:00
|
|
|
{
|
2008-10-09 15:23:50 -04:00
|
|
|
(void) af;
|
2013-04-06 14:30:13 -04:00
|
|
|
(void) remote_scope;
|
2014-12-16 07:29:01 -05:00
|
|
|
(void) remote_scope_id;
|
2004-11-02 05:12:22 -05:00
|
|
|
(void) interf;
|
2004-05-05 09:42:23 -04:00
|
|
|
(void) buf;
|
|
|
|
(void) buf_size;
|
2013-04-03 16:06:51 -04:00
|
|
|
return IF2IP_NOT_FOUND;
|
2004-03-17 07:46:42 -05:00
|
|
|
}
|
2008-11-17 09:24:15 -05:00
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
#endif
|