123 lines
3.0 KiB
C
123 lines
3.0 KiB
C
/* $Id: getroute.c,v 1.4 2014/03/31 12:27:14 nanard Exp $ */
|
|
/* MiniUPnP project
|
|
* http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/
|
|
* (c) 2006-2013 Thomas Bernard
|
|
* This software is subject to the conditions detailed
|
|
* in the LICENCE file provided within the distribution */
|
|
|
|
#include <stdio.h>
|
|
#include <syslog.h>
|
|
#include <unistd.h>
|
|
#include <string.h>
|
|
#include <sys/socket.h>
|
|
#include <net/if.h>
|
|
#include <net/route.h>
|
|
#include <netinet/in.h>
|
|
#ifdef AF_LINK
|
|
#include <net/if_dl.h>
|
|
#endif
|
|
|
|
#include "../config.h"
|
|
#include "../upnputils.h"
|
|
|
|
|
|
int
|
|
get_src_for_route_to(const struct sockaddr * dst,
|
|
void * src, size_t * src_len,
|
|
int * index)
|
|
{
|
|
int found = 0;
|
|
int s;
|
|
int l, i;
|
|
char * p;
|
|
struct sockaddr * sa;
|
|
struct {
|
|
struct rt_msghdr m_rtm;
|
|
char m_space[512];
|
|
} m_rtmsg;
|
|
#define rtm m_rtmsg.m_rtm
|
|
|
|
if(dst == NULL)
|
|
return -1;
|
|
#ifdef __APPLE__
|
|
if(dst->sa_family == AF_INET6) {
|
|
syslog(LOG_ERR, "Sorry, get_src_for_route_to() is known to fail with IPV6 on OS X...");
|
|
return -1;
|
|
}
|
|
#endif
|
|
s = socket(PF_ROUTE, SOCK_RAW, dst->sa_family);
|
|
if(s < 0) {
|
|
syslog(LOG_ERR, "socket(PF_ROUTE) failed : %m");
|
|
return -1;
|
|
}
|
|
memset(&rtm, 0, sizeof(rtm));
|
|
rtm.rtm_type = RTM_GET;
|
|
rtm.rtm_flags = RTF_UP;
|
|
rtm.rtm_version = RTM_VERSION;
|
|
rtm.rtm_seq = 1;
|
|
rtm.rtm_addrs = RTA_DST; /* destination address */
|
|
memcpy(m_rtmsg.m_space, dst, sizeof(struct sockaddr));
|
|
rtm.rtm_msglen = sizeof(struct rt_msghdr) + sizeof(struct sockaddr);
|
|
if(write(s, &m_rtmsg, rtm.rtm_msglen) < 0) {
|
|
syslog(LOG_ERR, "write: %m");
|
|
close(s);
|
|
return -1;
|
|
}
|
|
|
|
do {
|
|
l = read(s, &m_rtmsg, sizeof(m_rtmsg));
|
|
if(l<0) {
|
|
syslog(LOG_ERR, "read: %m");
|
|
close(s);
|
|
return -1;
|
|
}
|
|
syslog(LOG_DEBUG, "read l=%d seq=%d pid=%d",
|
|
l, rtm.rtm_seq, rtm.rtm_pid);
|
|
} while(l > 0 && (rtm.rtm_pid != getpid() || rtm.rtm_seq != 1));
|
|
close(s);
|
|
p = m_rtmsg.m_space;
|
|
if(rtm.rtm_addrs) {
|
|
for(i=1; i<0x8000; i <<= 1) {
|
|
if(i & rtm.rtm_addrs) {
|
|
char tmp[256] = { 0 };
|
|
sa = (struct sockaddr *)p;
|
|
sockaddr_to_string(sa, tmp, sizeof(tmp));
|
|
syslog(LOG_DEBUG, "type=%d sa_len=%d sa_family=%d %s",
|
|
i, SA_LEN(sa), sa->sa_family, tmp);
|
|
if((i == RTA_DST || i == RTA_GATEWAY) &&
|
|
(src_len && src)) {
|
|
size_t len = 0;
|
|
void * paddr = NULL;
|
|
if(sa->sa_family == AF_INET) {
|
|
paddr = &((struct sockaddr_in *)sa)->sin_addr;
|
|
len = sizeof(struct in_addr);
|
|
} else if(sa->sa_family == AF_INET6) {
|
|
paddr = &((struct sockaddr_in6 *)sa)->sin6_addr;
|
|
len = sizeof(struct in6_addr);
|
|
}
|
|
if(paddr) {
|
|
if(*src_len < len) {
|
|
syslog(LOG_WARNING, "cannot copy src. %u<%u",
|
|
(unsigned)*src_len, (unsigned)len);
|
|
return -1;
|
|
}
|
|
memcpy(src, paddr, len);
|
|
*src_len = len;
|
|
found = 1;
|
|
}
|
|
}
|
|
#ifdef AF_LINK
|
|
if(sa->sa_family == AF_LINK) {
|
|
struct sockaddr_dl * sdl = (struct sockaddr_dl *)sa;
|
|
if(index)
|
|
*index = sdl->sdl_index;
|
|
}
|
|
#endif
|
|
p += SA_LEN(sa);
|
|
}
|
|
}
|
|
}
|
|
return found ? 0 : -1;
|
|
}
|
|
|