2013-07-04 20:56:19 +00:00
|
|
|
/*
|
|
|
|
* ZeroTier One - Global Peer to Peer Ethernet
|
|
|
|
* Copyright (C) 2012-2013 ZeroTier Networks LLC
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* --
|
|
|
|
*
|
|
|
|
* ZeroTier may be used and distributed under the terms of the GPLv3, which
|
|
|
|
* are available at: http://www.gnu.org/licenses/gpl-3.0.html
|
|
|
|
*
|
|
|
|
* If you would like to embed ZeroTier into a commercial application or
|
|
|
|
* redistribute it in a modified binary form, please contact ZeroTier Networks
|
|
|
|
* LLC. Start here: http://www.zerotier.com/
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <string>
|
2013-08-13 18:42:51 +00:00
|
|
|
#include <map>
|
2013-08-22 18:30:55 +00:00
|
|
|
#include <set>
|
|
|
|
#include <algorithm>
|
2013-08-13 18:42:51 +00:00
|
|
|
|
|
|
|
#include "Constants.hpp"
|
2013-07-04 20:56:19 +00:00
|
|
|
#include "EthernetTap.hpp"
|
|
|
|
#include "Logger.hpp"
|
|
|
|
#include "RuntimeEnvironment.hpp"
|
2013-07-09 18:06:55 +00:00
|
|
|
#include "Utils.hpp"
|
2013-07-04 20:56:19 +00:00
|
|
|
#include "Mutex.hpp"
|
2013-08-30 21:05:43 +00:00
|
|
|
#include "Utils.hpp"
|
2013-07-06 19:56:12 +00:00
|
|
|
|
|
|
|
// ff:ff:ff:ff:ff:ff with no ADI
|
|
|
|
static const ZeroTier::MulticastGroup _blindWildcardMulticastGroup(ZeroTier::MAC(0xff),0);
|
2013-07-04 20:56:19 +00:00
|
|
|
|
2013-07-09 18:06:55 +00:00
|
|
|
//
|
|
|
|
// TAP implementation for *nix OSes, with some specialization for different flavors
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifdef __UNIX_LIKE__ /////////////////////////////////////////////////////////
|
2013-07-04 20:56:19 +00:00
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/wait.h>
|
2013-07-09 18:06:55 +00:00
|
|
|
#include <sys/select.h>
|
2013-07-04 20:56:19 +00:00
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <net/if_arp.h>
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
|
2013-08-13 18:42:51 +00:00
|
|
|
// Command identifiers used with command finder static (on various *nixes)
|
|
|
|
#define ZT_UNIX_IP_COMMAND 1
|
|
|
|
#define ZT_UNIX_IFCONFIG_COMMAND 2
|
|
|
|
#define ZT_MAC_KEXTLOAD_COMMAND 3
|
|
|
|
#define ZT_MAC_IPCONFIG_COMMAND 4
|
|
|
|
|
|
|
|
// Finds external commands on startup
|
|
|
|
class _CommandFinder
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
_CommandFinder()
|
|
|
|
{
|
|
|
|
_findCmd(ZT_UNIX_IFCONFIG_COMMAND,"ifconfig");
|
2013-07-09 18:06:55 +00:00
|
|
|
#ifdef __LINUX__
|
2013-08-13 18:42:51 +00:00
|
|
|
_findCmd(ZT_UNIX_IP_COMMAND,"ip");
|
|
|
|
#endif
|
|
|
|
#ifdef __APPLE__
|
|
|
|
_findCmd(ZT_MAC_KEXTLOAD_COMMAND,"kextload");
|
|
|
|
_findCmd(ZT_MAC_IPCONFIG_COMMAND,"ipconfig");
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
// returns NULL if command was not found
|
|
|
|
inline const char *operator[](int id) const
|
|
|
|
throw()
|
|
|
|
{
|
|
|
|
std::map<int,std::string>::const_iterator c(_paths.find(id));
|
|
|
|
if (c == _paths.end())
|
|
|
|
return (const char *)0;
|
|
|
|
return c->second.c_str();
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
inline void _findCmd(int id,const char *name)
|
|
|
|
{
|
|
|
|
char tmp[4096];
|
2013-08-30 21:05:43 +00:00
|
|
|
ZeroTier::Utils::snprintf(tmp,sizeof(tmp),"/sbin/%s",name);
|
2013-08-13 18:42:51 +00:00
|
|
|
if (ZeroTier::Utils::fileExists(tmp)) {
|
|
|
|
_paths[id] = tmp;
|
|
|
|
return;
|
|
|
|
}
|
2013-08-30 21:05:43 +00:00
|
|
|
ZeroTier::Utils::snprintf(tmp,sizeof(tmp),"/usr/sbin/%s",name);
|
2013-08-13 18:42:51 +00:00
|
|
|
if (ZeroTier::Utils::fileExists(tmp)) {
|
|
|
|
_paths[id] = tmp;
|
|
|
|
return;
|
|
|
|
}
|
2013-08-30 21:05:43 +00:00
|
|
|
ZeroTier::Utils::snprintf(tmp,sizeof(tmp),"/bin/%s",name);
|
2013-08-13 18:42:51 +00:00
|
|
|
if (ZeroTier::Utils::fileExists(tmp)) {
|
|
|
|
_paths[id] = tmp;
|
|
|
|
return;
|
|
|
|
}
|
2013-08-30 21:05:43 +00:00
|
|
|
ZeroTier::Utils::snprintf(tmp,sizeof(tmp),"/usr/bin/%s",name);
|
2013-08-13 18:42:51 +00:00
|
|
|
if (ZeroTier::Utils::fileExists(tmp)) {
|
|
|
|
_paths[id] = tmp;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
std::map<int,std::string> _paths;
|
|
|
|
};
|
|
|
|
static const _CommandFinder UNIX_COMMANDS;
|
2013-07-09 18:06:55 +00:00
|
|
|
|
2013-08-13 18:42:51 +00:00
|
|
|
#ifdef __LINUX__
|
2013-07-04 20:56:19 +00:00
|
|
|
#include <linux/if.h>
|
|
|
|
#include <linux/if_tun.h>
|
|
|
|
#include <linux/if_addr.h>
|
|
|
|
#include <linux/if_ether.h>
|
2013-07-09 18:06:55 +00:00
|
|
|
#endif // __LINUX__
|
|
|
|
|
|
|
|
#ifdef __APPLE__
|
|
|
|
#include <sys/uio.h>
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/sysctl.h>
|
|
|
|
#include <net/route.h>
|
|
|
|
#include <net/if_dl.h>
|
|
|
|
#include <ifaddrs.h>
|
|
|
|
#endif // __APPLE__
|
|
|
|
|
2013-07-04 20:56:19 +00:00
|
|
|
namespace ZeroTier {
|
|
|
|
|
2013-07-09 18:06:55 +00:00
|
|
|
// Only permit one tap to be opened concurrently across the entire process
|
2013-07-04 20:56:19 +00:00
|
|
|
static Mutex __tapCreateLock;
|
|
|
|
|
2013-07-09 18:06:55 +00:00
|
|
|
#ifdef __LINUX__
|
|
|
|
EthernetTap::EthernetTap(
|
|
|
|
const RuntimeEnvironment *renv,
|
2013-08-21 12:13:48 +00:00
|
|
|
const char *tag,
|
2013-07-09 18:06:55 +00:00
|
|
|
const MAC &mac,
|
|
|
|
unsigned int mtu,
|
|
|
|
void (*handler)(void *,const MAC &,const MAC &,unsigned int,const Buffer<4096> &),
|
|
|
|
void *arg)
|
2013-07-04 20:56:19 +00:00
|
|
|
throw(std::runtime_error) :
|
|
|
|
_mac(mac),
|
|
|
|
_mtu(mtu),
|
|
|
|
_r(renv),
|
2013-07-09 18:06:55 +00:00
|
|
|
_handler(handler),
|
|
|
|
_arg(arg),
|
|
|
|
_fd(0)
|
2013-07-04 20:56:19 +00:00
|
|
|
{
|
|
|
|
char procpath[128];
|
|
|
|
Mutex::Lock _l(__tapCreateLock); // create only one tap at a time, globally
|
|
|
|
|
2013-07-09 18:06:55 +00:00
|
|
|
if (mtu > 4096)
|
|
|
|
throw std::runtime_error("max tap MTU is 4096");
|
|
|
|
|
2013-07-04 20:56:19 +00:00
|
|
|
_fd = ::open("/dev/net/tun",O_RDWR);
|
|
|
|
if (_fd <= 0)
|
2013-08-06 04:05:39 +00:00
|
|
|
throw std::runtime_error(std::string("could not open TUN/TAP device: ") + strerror(errno));
|
2013-07-04 20:56:19 +00:00
|
|
|
|
|
|
|
struct ifreq ifr;
|
|
|
|
memset(&ifr,0,sizeof(ifr));
|
|
|
|
|
|
|
|
{ // pick an unused device name
|
|
|
|
int devno = 0;
|
|
|
|
struct stat sbuf;
|
|
|
|
do {
|
2013-08-30 21:05:43 +00:00
|
|
|
Utils::snprintf(ifr.ifr_name,sizeof(ifr.ifr_name),"zt%d",devno++);
|
|
|
|
Utils::snprintf(procpath,sizeof(procpath),"/proc/sys/net/ipv4/conf/%s",ifr.ifr_name);
|
2013-07-04 20:56:19 +00:00
|
|
|
} while (stat(procpath,&sbuf) == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
ifr.ifr_flags = IFF_TAP | IFF_NO_PI;
|
|
|
|
if (ioctl(_fd,TUNSETIFF,(void *)&ifr) < 0) {
|
|
|
|
::close(_fd);
|
|
|
|
throw std::runtime_error("unable to configure TUN/TAP device for TAP operation");
|
|
|
|
}
|
|
|
|
|
|
|
|
strcpy(_dev,ifr.ifr_name);
|
|
|
|
|
|
|
|
ioctl(_fd,TUNSETPERSIST,0); // valgrind may generate a false alarm here
|
|
|
|
|
|
|
|
// Open an arbitrary socket to talk to netlink
|
|
|
|
int sock = socket(AF_INET,SOCK_DGRAM,0);
|
|
|
|
if (sock <= 0) {
|
|
|
|
::close(_fd);
|
|
|
|
throw std::runtime_error("unable to open netlink socket");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set MAC address
|
|
|
|
ifr.ifr_ifru.ifru_hwaddr.sa_family = ARPHRD_ETHER;
|
|
|
|
memcpy(ifr.ifr_ifru.ifru_hwaddr.sa_data,mac.data,6);
|
|
|
|
if (ioctl(sock,SIOCSIFHWADDR,(void *)&ifr) < 0) {
|
|
|
|
::close(_fd);
|
|
|
|
::close(sock);
|
|
|
|
throw std::runtime_error("unable to configure TAP hardware (MAC) address");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set MTU
|
|
|
|
ifr.ifr_ifru.ifru_mtu = (int)mtu;
|
|
|
|
if (ioctl(sock,SIOCSIFMTU,(void *)&ifr) < 0) {
|
|
|
|
::close(_fd);
|
|
|
|
::close(sock);
|
|
|
|
throw std::runtime_error("unable to configure TAP MTU");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fcntl(_fd,F_SETFL,fcntl(_fd,F_GETFL) & ~O_NONBLOCK) == -1) {
|
|
|
|
::close(_fd);
|
|
|
|
throw std::runtime_error("unable to set flags on file descriptor for TAP device");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Bring interface up */
|
|
|
|
if (ioctl(sock,SIOCGIFFLAGS,(void *)&ifr) < 0) {
|
|
|
|
::close(_fd);
|
|
|
|
::close(sock);
|
|
|
|
throw std::runtime_error("unable to get TAP interface flags");
|
|
|
|
}
|
|
|
|
ifr.ifr_flags |= IFF_UP;
|
|
|
|
if (ioctl(sock,SIOCSIFFLAGS,(void *)&ifr) < 0) {
|
|
|
|
::close(_fd);
|
|
|
|
::close(sock);
|
|
|
|
throw std::runtime_error("unable to set TAP interface flags");
|
|
|
|
}
|
|
|
|
|
|
|
|
::close(sock);
|
|
|
|
|
2013-07-09 18:06:55 +00:00
|
|
|
::pipe(_shutdownSignalPipe);
|
2013-07-04 20:56:19 +00:00
|
|
|
|
|
|
|
TRACE("tap %s created",_dev);
|
|
|
|
|
2013-08-08 13:19:36 +00:00
|
|
|
_thread = Thread::start(this);
|
2013-07-04 20:56:19 +00:00
|
|
|
}
|
2013-07-09 18:06:55 +00:00
|
|
|
#endif // __LINUX__
|
|
|
|
|
|
|
|
#ifdef __APPLE__
|
|
|
|
EthernetTap::EthernetTap(
|
|
|
|
const RuntimeEnvironment *renv,
|
2013-08-21 12:13:48 +00:00
|
|
|
const char *tag,
|
2013-07-09 18:06:55 +00:00
|
|
|
const MAC &mac,
|
|
|
|
unsigned int mtu,
|
|
|
|
void (*handler)(void *,const MAC &,const MAC &,unsigned int,const Buffer<4096> &),
|
|
|
|
void *arg)
|
2013-07-04 20:56:19 +00:00
|
|
|
throw(std::runtime_error) :
|
|
|
|
_mac(mac),
|
|
|
|
_mtu(mtu),
|
|
|
|
_r(renv),
|
2013-07-09 18:06:55 +00:00
|
|
|
_handler(handler),
|
|
|
|
_arg(arg),
|
2013-08-27 20:49:49 +00:00
|
|
|
_dhcp(false),
|
|
|
|
_dhcp6(false),
|
2013-07-09 18:06:55 +00:00
|
|
|
_fd(0)
|
2013-07-04 20:56:19 +00:00
|
|
|
{
|
|
|
|
char devpath[64],ethaddr[64],mtustr[16];
|
|
|
|
struct stat tmp;
|
|
|
|
Mutex::Lock _l(__tapCreateLock); // create only one tap at a time, globally
|
|
|
|
|
2013-07-09 18:06:55 +00:00
|
|
|
if (mtu > 4096)
|
|
|
|
throw std::runtime_error("max tap MTU is 4096");
|
|
|
|
|
2013-07-04 20:56:19 +00:00
|
|
|
// Check for existence of ZT tap devices, try to load module if not there
|
2013-08-13 18:42:51 +00:00
|
|
|
const char *kextload = UNIX_COMMANDS[ZT_MAC_KEXTLOAD_COMMAND];
|
|
|
|
if ((stat("/dev/zt0",&tmp))&&(kextload)) {
|
|
|
|
long kextpid;
|
2013-07-04 20:56:19 +00:00
|
|
|
char tmp[4096];
|
|
|
|
strcpy(tmp,_r->homePath.c_str());
|
2013-08-13 18:42:51 +00:00
|
|
|
if ((kextpid = (long)vfork()) == 0) {
|
2013-07-04 20:56:19 +00:00
|
|
|
chdir(tmp);
|
2013-08-13 18:42:51 +00:00
|
|
|
execl(kextload,kextload,"-q","-repository",tmp,"tap.kext",(const char *)0);
|
|
|
|
_exit(-1);
|
2013-07-04 20:56:19 +00:00
|
|
|
} else {
|
|
|
|
int exitcode = -1;
|
|
|
|
waitpid(kextpid,&exitcode,0);
|
|
|
|
usleep(500);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (stat("/dev/zt0",&tmp))
|
|
|
|
throw std::runtime_error("/dev/zt# tap devices do not exist and unable to load kernel extension");
|
|
|
|
|
|
|
|
// Open the first available device (ones in use will fail with resource busy)
|
|
|
|
for(int i=0;i<256;++i) {
|
2013-08-30 21:05:43 +00:00
|
|
|
Utils::snprintf(devpath,sizeof(devpath),"/dev/zt%d",i);
|
2013-07-04 20:56:19 +00:00
|
|
|
if (stat(devpath,&tmp))
|
|
|
|
throw std::runtime_error("no more TAP devices available");
|
|
|
|
_fd = ::open(devpath,O_RDWR);
|
|
|
|
if (_fd > 0) {
|
2013-08-30 21:05:43 +00:00
|
|
|
Utils::snprintf(_dev,sizeof(_dev),"zt%d",i);
|
2013-07-04 20:56:19 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (_fd <= 0)
|
|
|
|
throw std::runtime_error("unable to open TAP device or no more devices available");
|
|
|
|
|
|
|
|
if (fcntl(_fd,F_SETFL,fcntl(_fd,F_GETFL) & ~O_NONBLOCK) == -1) {
|
|
|
|
::close(_fd);
|
|
|
|
throw std::runtime_error("unable to set flags on file descriptor for TAP device");
|
|
|
|
}
|
|
|
|
|
2013-08-13 18:42:51 +00:00
|
|
|
const char *ifconfig = UNIX_COMMANDS[ZT_UNIX_IFCONFIG_COMMAND];
|
|
|
|
if (!ifconfig) {
|
|
|
|
::close(_fd);
|
|
|
|
throw std::runtime_error("unable to find 'ifconfig' command on system");
|
|
|
|
}
|
2013-07-04 20:56:19 +00:00
|
|
|
|
|
|
|
// Configure MAC address and MTU, bring interface up
|
2013-08-30 21:05:43 +00:00
|
|
|
Utils::snprintf(ethaddr,sizeof(ethaddr),"%.2x:%.2x:%.2x:%.2x:%.2x:%.2x",(int)mac[0],(int)mac[1],(int)mac[2],(int)mac[3],(int)mac[4],(int)mac[5]);
|
|
|
|
Utils::snprintf(mtustr,sizeof(mtustr),"%u",mtu);
|
2013-07-09 18:06:55 +00:00
|
|
|
long cpid;
|
2013-08-02 18:38:53 +00:00
|
|
|
if ((cpid = (long)vfork()) == 0) {
|
2013-08-13 18:42:51 +00:00
|
|
|
execl(ifconfig,ifconfig,_dev,"lladdr",ethaddr,"mtu",mtustr,"up",(const char *)0);
|
|
|
|
_exit(-1);
|
2013-07-04 20:56:19 +00:00
|
|
|
} else {
|
|
|
|
int exitcode = -1;
|
|
|
|
waitpid(cpid,&exitcode,0);
|
|
|
|
if (exitcode) {
|
|
|
|
::close(_fd);
|
|
|
|
throw std::runtime_error("ifconfig failure setting link-layer address and activating tap interface");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-09 00:36:33 +00:00
|
|
|
whack(); // turns on IPv6 on OSX
|
2013-07-04 20:56:19 +00:00
|
|
|
|
2013-07-09 18:06:55 +00:00
|
|
|
::pipe(_shutdownSignalPipe);
|
|
|
|
|
2013-08-08 13:19:36 +00:00
|
|
|
_thread = Thread::start(this);
|
2013-07-04 20:56:19 +00:00
|
|
|
}
|
2013-07-09 18:06:55 +00:00
|
|
|
#endif // __APPLE__
|
2013-07-04 20:56:19 +00:00
|
|
|
|
|
|
|
EthernetTap::~EthernetTap()
|
|
|
|
{
|
2013-07-09 18:06:55 +00:00
|
|
|
::write(_shutdownSignalPipe[1],"\0",1); // causes thread to exit
|
2013-08-08 13:19:36 +00:00
|
|
|
Thread::join(_thread);
|
2013-07-09 18:06:55 +00:00
|
|
|
::close(_fd);
|
2013-07-04 20:56:19 +00:00
|
|
|
}
|
|
|
|
|
2013-07-09 18:06:55 +00:00
|
|
|
#ifdef __APPLE__
|
2013-07-09 00:36:33 +00:00
|
|
|
void EthernetTap::whack()
|
|
|
|
{
|
2013-08-13 18:42:51 +00:00
|
|
|
const char *ipconfig = UNIX_COMMANDS[ZT_MAC_IPCONFIG_COMMAND];
|
|
|
|
if (ipconfig) {
|
|
|
|
long cpid = (long)vfork();
|
|
|
|
if (cpid == 0) {
|
|
|
|
execl(ipconfig,ipconfig,"set",_dev,"AUTOMATIC-V6",(const char *)0);
|
|
|
|
_exit(-1);
|
|
|
|
} else {
|
|
|
|
int exitcode = -1;
|
|
|
|
waitpid(cpid,&exitcode,0);
|
2013-07-09 00:36:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-07-09 18:06:55 +00:00
|
|
|
#else
|
|
|
|
void EthernetTap::whack() {}
|
|
|
|
#endif // __APPLE__ / !__APPLE__
|
2013-07-09 00:36:33 +00:00
|
|
|
|
2013-08-27 20:49:49 +00:00
|
|
|
bool EthernetTap::setDhcpEnabled(bool dhcp)
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
return _dhcp;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool EthernetTap::setDhcp6Enabled(bool dhcp)
|
|
|
|
{
|
|
|
|
return _dhcp6;
|
|
|
|
}
|
|
|
|
|
|
|
|
void EthernetTap::setDisplayName(const char *dn)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-07-09 18:06:55 +00:00
|
|
|
#ifdef __LINUX__
|
|
|
|
static bool ___removeIp(const char *_dev,const InetAddress &ip)
|
|
|
|
{
|
2013-08-13 18:42:51 +00:00
|
|
|
const char *ipcmd = UNIX_COMMANDS[ZT_UNIX_IP_COMMAND];
|
|
|
|
if (!ipcmd)
|
|
|
|
return false;
|
2013-08-02 18:38:53 +00:00
|
|
|
long cpid = (long)vfork();
|
2013-07-09 18:06:55 +00:00
|
|
|
if (cpid == 0) {
|
2013-08-13 18:42:51 +00:00
|
|
|
execl(ipcmd,ipcmd,"addr","del",ip.toString().c_str(),"dev",_dev,(const char *)0);
|
|
|
|
_exit(-1);
|
2013-07-09 18:06:55 +00:00
|
|
|
} else {
|
2013-08-13 18:42:51 +00:00
|
|
|
int exitcode = -1;
|
2013-07-09 18:06:55 +00:00
|
|
|
waitpid(cpid,&exitcode,0);
|
|
|
|
return (exitcode == 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool EthernetTap::addIP(const InetAddress &ip)
|
|
|
|
{
|
2013-08-13 18:42:51 +00:00
|
|
|
const char *ipcmd = UNIX_COMMANDS[ZT_UNIX_IP_COMMAND];
|
|
|
|
if (!ipcmd) {
|
|
|
|
LOG("ERROR: could not configure IP address for %s: unable to find 'ip' command on system (checked /sbin, /bin, /usr/sbin, /usr/bin)",_dev);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-07-09 18:06:55 +00:00
|
|
|
Mutex::Lock _l(_ips_m);
|
|
|
|
|
|
|
|
if (!ip)
|
|
|
|
return false;
|
|
|
|
if (_ips.count(ip) > 0)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// Remove and reconfigure if address is the same but netmask is different
|
|
|
|
for(std::set<InetAddress>::iterator i(_ips.begin());i!=_ips.end();++i) {
|
|
|
|
if (i->ipsEqual(ip)) {
|
|
|
|
if (___removeIp(_dev,*i)) {
|
|
|
|
_ips.erase(i);
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
LOG("WARNING: failed to remove old IP/netmask %s to replace with %s",i->toString().c_str(),ip.toString().c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
long cpid;
|
2013-08-02 18:38:53 +00:00
|
|
|
if ((cpid = (long)vfork()) == 0) {
|
2013-08-13 18:42:51 +00:00
|
|
|
execl(ipcmd,ipcmd,"addr","add",ip.toString().c_str(),"dev",_dev,(const char *)0);
|
|
|
|
_exit(-1);
|
2013-07-09 18:06:55 +00:00
|
|
|
} else {
|
|
|
|
int exitcode = -1;
|
|
|
|
waitpid(cpid,&exitcode,0);
|
|
|
|
if (exitcode == 0) {
|
|
|
|
_ips.insert(ip);
|
|
|
|
return true;
|
|
|
|
} else return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#endif // __LINUX__
|
|
|
|
|
|
|
|
#ifdef __APPLE__
|
2013-07-06 17:34:35 +00:00
|
|
|
static bool ___removeIp(const char *_dev,const InetAddress &ip)
|
2013-07-04 20:56:19 +00:00
|
|
|
{
|
2013-08-13 18:42:51 +00:00
|
|
|
const char *ifconfig = UNIX_COMMANDS[ZT_UNIX_IFCONFIG_COMMAND];
|
|
|
|
if (!ifconfig)
|
|
|
|
return false;
|
|
|
|
long cpid;
|
|
|
|
if ((cpid = (long)vfork()) == 0) {
|
|
|
|
execl(ifconfig,ifconfig,_dev,"inet",ip.toIpString().c_str(),"-alias",(const char *)0);
|
|
|
|
_exit(-1);
|
2013-07-04 20:56:19 +00:00
|
|
|
} else {
|
|
|
|
int exitcode = -1;
|
|
|
|
waitpid(cpid,&exitcode,0);
|
2013-07-06 17:34:35 +00:00
|
|
|
return (exitcode == 0);
|
2013-07-04 20:56:19 +00:00
|
|
|
}
|
2013-07-06 17:34:35 +00:00
|
|
|
return false; // never reached, make compiler shut up about return value
|
2013-07-04 20:56:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool EthernetTap::addIP(const InetAddress &ip)
|
|
|
|
{
|
2013-08-13 18:42:51 +00:00
|
|
|
const char *ifconfig = UNIX_COMMANDS[ZT_UNIX_IFCONFIG_COMMAND];
|
|
|
|
if (!ifconfig) {
|
|
|
|
LOG("ERROR: could not configure IP address for %s: unable to find 'ifconfig' command on system (checked /sbin, /bin, /usr/sbin, /usr/bin)",_dev);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-07-04 20:56:19 +00:00
|
|
|
Mutex::Lock _l(_ips_m);
|
|
|
|
|
|
|
|
if (!ip)
|
|
|
|
return false;
|
|
|
|
if (_ips.count(ip) > 0)
|
2013-07-06 17:34:35 +00:00
|
|
|
return true; // IP/netmask already assigned
|
2013-07-04 20:56:19 +00:00
|
|
|
|
|
|
|
// Remove and reconfigure if address is the same but netmask is different
|
|
|
|
for(std::set<InetAddress>::iterator i(_ips.begin());i!=_ips.end();++i) {
|
2013-07-06 17:34:35 +00:00
|
|
|
if ((i->ipsEqual(ip))&&(i->netmaskBits() != ip.netmaskBits())) {
|
|
|
|
if (___removeIp(_dev,*i)) {
|
|
|
|
_ips.erase(i);
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
LOG("WARNING: failed to remove old IP/netmask %s to replace with %s",i->toString().c_str(),ip.toString().c_str());
|
|
|
|
}
|
2013-07-04 20:56:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-13 18:42:51 +00:00
|
|
|
long cpid;
|
|
|
|
if ((cpid = (long)vfork()) == 0) {
|
|
|
|
execl(ifconfig,ifconfig,_dev,ip.isV4() ? "inet" : "inet6",ip.toString().c_str(),"alias",(const char *)0);
|
|
|
|
_exit(-1);
|
2013-07-04 20:56:19 +00:00
|
|
|
} else {
|
|
|
|
int exitcode = -1;
|
|
|
|
waitpid(cpid,&exitcode,0);
|
|
|
|
if (exitcode == 0) {
|
|
|
|
_ips.insert(ip);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2013-07-09 18:06:55 +00:00
|
|
|
#endif // __APPLE__
|
2013-07-04 20:56:19 +00:00
|
|
|
|
|
|
|
bool EthernetTap::removeIP(const InetAddress &ip)
|
|
|
|
{
|
|
|
|
Mutex::Lock _l(_ips_m);
|
2013-07-06 17:34:35 +00:00
|
|
|
if (_ips.count(ip) > 0) {
|
|
|
|
if (___removeIp(_dev,ip)) {
|
|
|
|
_ips.erase(ip);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2013-07-04 20:56:19 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-08-27 20:49:49 +00:00
|
|
|
std::set<InetAddress> EthernetTap::allIps() const
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
return ips();
|
|
|
|
}
|
|
|
|
|
2013-07-04 20:56:19 +00:00
|
|
|
void EthernetTap::put(const MAC &from,const MAC &to,unsigned int etherType,const void *data,unsigned int len)
|
|
|
|
{
|
2013-07-09 18:06:55 +00:00
|
|
|
char putBuf[4096 + 14];
|
2013-07-04 20:56:19 +00:00
|
|
|
if ((_fd > 0)&&(len <= _mtu)) {
|
|
|
|
for(int i=0;i<6;++i)
|
2013-07-09 18:06:55 +00:00
|
|
|
putBuf[i] = to.data[i];
|
2013-07-04 20:56:19 +00:00
|
|
|
for(int i=0;i<6;++i)
|
2013-07-09 18:06:55 +00:00
|
|
|
putBuf[i+6] = from.data[i];
|
|
|
|
*((uint16_t *)(putBuf + 12)) = htons((uint16_t)etherType);
|
|
|
|
memcpy(putBuf + 14,data,len);
|
2013-07-04 20:56:19 +00:00
|
|
|
len += 14;
|
2013-10-28 17:22:23 +00:00
|
|
|
|
2013-07-09 18:06:55 +00:00
|
|
|
int n = ::write(_fd,putBuf,len);
|
2013-07-04 20:56:19 +00:00
|
|
|
if (n <= 0) {
|
|
|
|
LOG("error writing packet to Ethernet tap device: %s",strerror(errno));
|
|
|
|
} else if (n != (int)len) {
|
|
|
|
// Saw this gremlin once, so log it if we see it again... OSX tap
|
|
|
|
// or something seems to have goofy issues with certain MTUs.
|
2013-07-09 18:06:55 +00:00
|
|
|
LOG("ERROR: write underrun: %s tap write() wrote %d of %u bytes of frame",_dev,n,len);
|
2013-07-04 20:56:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-09 18:06:55 +00:00
|
|
|
std::string EthernetTap::deviceName() const
|
2013-07-04 20:56:19 +00:00
|
|
|
{
|
2013-07-09 18:06:55 +00:00
|
|
|
return std::string(_dev);
|
|
|
|
}
|
2013-07-04 20:56:19 +00:00
|
|
|
|
2013-07-09 18:06:55 +00:00
|
|
|
#ifdef __LINUX__
|
|
|
|
bool EthernetTap::updateMulticastGroups(std::set<MulticastGroup> &groups)
|
|
|
|
{
|
|
|
|
char *ptr,*ptr2;
|
|
|
|
unsigned char mac[6];
|
|
|
|
std::set<MulticastGroup> newGroups;
|
2013-07-04 20:56:19 +00:00
|
|
|
|
2013-07-09 18:06:55 +00:00
|
|
|
int fd = ::open("/proc/net/dev_mcast",O_RDONLY);
|
|
|
|
if (fd > 0) {
|
|
|
|
char buf[131072];
|
|
|
|
int n = (int)::read(fd,buf,sizeof(buf));
|
|
|
|
if ((n > 0)&&(n < (int)sizeof(buf))) {
|
|
|
|
buf[n] = (char)0;
|
|
|
|
for(char *l=strtok_r(buf,"\r\n",&ptr);(l);l=strtok_r((char *)0,"\r\n",&ptr)) {
|
|
|
|
int fno = 0;
|
|
|
|
char *devname = (char *)0;
|
|
|
|
char *mcastmac = (char *)0;
|
|
|
|
for(char *f=strtok_r(l," \t",&ptr2);(f);f=strtok_r((char *)0," \t",&ptr2)) {
|
|
|
|
if (fno == 1)
|
|
|
|
devname = f;
|
|
|
|
else if (fno == 4)
|
|
|
|
mcastmac = f;
|
|
|
|
++fno;
|
2013-07-04 20:56:19 +00:00
|
|
|
}
|
2013-07-09 18:06:55 +00:00
|
|
|
if ((devname)&&(!strcmp(devname,_dev))&&(mcastmac)&&(Utils::unhex(mcastmac,mac,6) == 6))
|
|
|
|
newGroups.insert(MulticastGroup(MAC(mac),0));
|
2013-07-04 20:56:19 +00:00
|
|
|
}
|
|
|
|
}
|
2013-07-09 18:06:55 +00:00
|
|
|
::close(fd);
|
2013-07-04 20:56:19 +00:00
|
|
|
}
|
|
|
|
|
2013-07-09 18:06:55 +00:00
|
|
|
{
|
|
|
|
Mutex::Lock _l(_ips_m);
|
|
|
|
for(std::set<InetAddress>::const_iterator i(_ips.begin());i!=_ips.end();++i)
|
|
|
|
newGroups.insert(MulticastGroup::deriveMulticastGroupForAddressResolution(*i));
|
|
|
|
}
|
2013-07-04 20:56:19 +00:00
|
|
|
|
2013-07-09 18:06:55 +00:00
|
|
|
bool changed = false;
|
2013-07-04 20:56:19 +00:00
|
|
|
|
2013-07-09 18:06:55 +00:00
|
|
|
newGroups.insert(_blindWildcardMulticastGroup); // always join this
|
|
|
|
|
|
|
|
for(std::set<MulticastGroup>::iterator mg(newGroups.begin());mg!=newGroups.end();++mg) {
|
|
|
|
if (!groups.count(*mg)) {
|
|
|
|
groups.insert(*mg);
|
|
|
|
changed = true;
|
|
|
|
}
|
2013-07-04 20:56:19 +00:00
|
|
|
}
|
2013-07-09 18:06:55 +00:00
|
|
|
for(std::set<MulticastGroup>::iterator mg(groups.begin());mg!=groups.end();) {
|
|
|
|
if (!newGroups.count(*mg)) {
|
|
|
|
groups.erase(mg++);
|
|
|
|
changed = true;
|
|
|
|
} else ++mg;
|
|
|
|
}
|
|
|
|
|
|
|
|
return changed;
|
2013-07-04 20:56:19 +00:00
|
|
|
}
|
2013-07-09 18:11:57 +00:00
|
|
|
#endif // __LINUX__
|
2013-07-04 20:56:19 +00:00
|
|
|
|
2013-07-09 18:06:55 +00:00
|
|
|
#ifdef __APPLE__
|
2013-07-04 20:56:19 +00:00
|
|
|
bool EthernetTap::updateMulticastGroups(std::set<MulticastGroup> &groups)
|
|
|
|
{
|
|
|
|
std::set<MulticastGroup> newGroups;
|
|
|
|
struct ifmaddrs *ifmap = (struct ifmaddrs *)0;
|
|
|
|
if (!getifmaddrs(&ifmap)) {
|
|
|
|
struct ifmaddrs *p = ifmap;
|
|
|
|
while (p) {
|
|
|
|
if (p->ifma_addr->sa_family == AF_LINK) {
|
|
|
|
struct sockaddr_dl *in = (struct sockaddr_dl *)p->ifma_name;
|
|
|
|
struct sockaddr_dl *la = (struct sockaddr_dl *)p->ifma_addr;
|
|
|
|
if ((la->sdl_alen == 6)&&(in->sdl_nlen <= sizeof(_dev))&&(!memcmp(_dev,in->sdl_data,in->sdl_nlen)))
|
|
|
|
newGroups.insert(MulticastGroup(MAC(la->sdl_data + la->sdl_nlen),0));
|
|
|
|
}
|
|
|
|
p = p->ifma_next;
|
|
|
|
}
|
|
|
|
freeifmaddrs(ifmap);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
Mutex::Lock _l(_ips_m);
|
|
|
|
for(std::set<InetAddress>::const_iterator i(_ips.begin());i!=_ips.end();++i)
|
|
|
|
newGroups.insert(MulticastGroup::deriveMulticastGroupForAddressResolution(*i));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool changed = false;
|
|
|
|
|
2013-07-06 19:56:12 +00:00
|
|
|
newGroups.insert(_blindWildcardMulticastGroup); // always join this
|
|
|
|
|
2013-07-04 20:56:19 +00:00
|
|
|
for(std::set<MulticastGroup>::iterator mg(newGroups.begin());mg!=newGroups.end();++mg) {
|
|
|
|
if (!groups.count(*mg)) {
|
|
|
|
groups.insert(*mg);
|
|
|
|
changed = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for(std::set<MulticastGroup>::iterator mg(groups.begin());mg!=groups.end();) {
|
|
|
|
if (!newGroups.count(*mg)) {
|
|
|
|
groups.erase(mg++);
|
|
|
|
changed = true;
|
|
|
|
} else ++mg;
|
|
|
|
}
|
|
|
|
|
|
|
|
return changed;
|
|
|
|
}
|
2013-07-09 18:06:55 +00:00
|
|
|
#endif // __APPLE__
|
|
|
|
|
2013-08-05 20:06:16 +00:00
|
|
|
void EthernetTap::threadMain()
|
2013-07-09 18:06:55 +00:00
|
|
|
throw()
|
|
|
|
{
|
|
|
|
fd_set readfds,nullfds;
|
|
|
|
MAC to,from;
|
2013-10-28 17:22:23 +00:00
|
|
|
int n,nfds,r;
|
|
|
|
char getBuf[8194];
|
2013-07-09 18:06:55 +00:00
|
|
|
Buffer<4096> data;
|
|
|
|
|
2013-08-09 21:20:40 +00:00
|
|
|
// Wait for a moment after startup -- wait for Network to finish
|
|
|
|
// constructing itself.
|
|
|
|
Thread::sleep(500);
|
|
|
|
|
2013-07-09 18:06:55 +00:00
|
|
|
FD_ZERO(&readfds);
|
|
|
|
FD_ZERO(&nullfds);
|
2013-10-28 17:22:23 +00:00
|
|
|
nfds = (int)std::max(_shutdownSignalPipe[0],_fd) + 1;
|
2013-07-09 18:06:55 +00:00
|
|
|
|
2013-10-28 17:22:23 +00:00
|
|
|
r = 0;
|
2013-07-09 18:06:55 +00:00
|
|
|
for(;;) {
|
|
|
|
FD_SET(_shutdownSignalPipe[0],&readfds);
|
|
|
|
FD_SET(_fd,&readfds);
|
|
|
|
select(nfds,&readfds,&nullfds,&nullfds,(struct timeval *)0);
|
|
|
|
|
|
|
|
if (FD_ISSET(_shutdownSignalPipe[0],&readfds)) // writes to shutdown pipe terminate thread
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (FD_ISSET(_fd,&readfds)) {
|
2013-10-28 17:22:23 +00:00
|
|
|
n = (int)::read(_fd,getBuf + r,sizeof(getBuf) - r);
|
|
|
|
if (n < 0) {
|
2013-07-09 18:06:55 +00:00
|
|
|
if ((errno != EINTR)&&(errno != ETIMEDOUT)) {
|
|
|
|
TRACE("unexpected error reading from tap: %s",strerror(errno));
|
|
|
|
break;
|
|
|
|
}
|
2013-10-28 17:22:23 +00:00
|
|
|
} else {
|
|
|
|
// Some tap drivers like to send the ethernet frame and the
|
|
|
|
// payload in two chunks, so handle that by accumulating
|
|
|
|
// data until we have at least a frame.
|
|
|
|
r += n;
|
|
|
|
if (r > 14) {
|
|
|
|
if (r > (_mtu + 14)) // sanity check for weird TAP behavior on some platforms
|
|
|
|
r = _mtu + 14;
|
|
|
|
for(int i=0;i<6;++i)
|
|
|
|
to.data[i] = (unsigned char)getBuf[i];
|
|
|
|
for(int i=0;i<6;++i)
|
|
|
|
from.data[i] = (unsigned char)getBuf[i + 6];
|
|
|
|
unsigned int etherType = ntohs(((const uint16_t *)getBuf)[6]);
|
|
|
|
if (etherType != 0x8100) { // VLAN tagged frames are not supported!
|
|
|
|
data.copyFrom(getBuf + 14,(unsigned int)r - 14);
|
|
|
|
_handler(_arg,from,to,etherType,data);
|
|
|
|
}
|
|
|
|
r = 0;
|
|
|
|
}
|
2013-07-09 18:06:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-07-04 20:56:19 +00:00
|
|
|
|
|
|
|
} // namespace ZeroTier
|
|
|
|
|
2013-07-09 18:06:55 +00:00
|
|
|
#endif // __UNIX_LIKE__ //////////////////////////////////////////////////////
|
|
|
|
|
2013-08-23 21:39:21 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
2013-07-09 18:06:55 +00:00
|
|
|
|
2013-08-23 21:39:21 +00:00
|
|
|
#ifdef __WINDOWS__ ///////////////////////////////////////////////////////////
|
2013-08-23 02:33:32 +00:00
|
|
|
|
2013-08-23 21:39:21 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <string.h>
|
2013-08-14 17:23:25 +00:00
|
|
|
#include <WinSock2.h>
|
|
|
|
#include <Windows.h>
|
2013-08-21 14:18:05 +00:00
|
|
|
#include <iphlpapi.h>
|
2013-08-14 17:23:25 +00:00
|
|
|
#include <ws2ipdef.h>
|
2013-08-21 14:18:05 +00:00
|
|
|
#include <WS2tcpip.h>
|
|
|
|
#include <tchar.h>
|
|
|
|
#include <winreg.h>
|
2013-08-25 22:18:02 +00:00
|
|
|
#include <wchar.h>
|
2013-08-26 21:22:20 +00:00
|
|
|
#include <nldef.h>
|
|
|
|
#include <netioapi.h>
|
2013-08-25 22:18:02 +00:00
|
|
|
|
|
|
|
#include "..\vsprojects\TapDriver\tap-windows.h"
|
2013-08-14 17:23:25 +00:00
|
|
|
|
|
|
|
namespace ZeroTier {
|
|
|
|
|
2013-08-26 21:22:20 +00:00
|
|
|
// Helper function to get an adapter's LUID and index from its GUID. The LUID is
|
|
|
|
// constant but the index can change, so go ahead and just look them both up by
|
|
|
|
// the GUID which is constant. (The GUID is the instance ID in the registry.)
|
|
|
|
static inline std::pair<NET_LUID,NET_IFINDEX> _findAdapterByGuid(const GUID &guid)
|
|
|
|
throw(std::runtime_error)
|
|
|
|
{
|
|
|
|
MIB_IF_TABLE2 *ift = (MIB_IF_TABLE2 *)0;
|
|
|
|
|
|
|
|
if (GetIfTable2Ex(MibIfTableRaw,&ift) != NO_ERROR)
|
|
|
|
throw std::runtime_error("GetIfTable2Ex() failed");
|
|
|
|
|
|
|
|
for(ULONG i=0;i<ift->NumEntries;++i) {
|
|
|
|
if (ift->Table[i].InterfaceGuid == guid) {
|
|
|
|
std::pair<NET_LUID,NET_IFINDEX> tmp(ift->Table[i].InterfaceLuid,ift->Table[i].InterfaceIndex);
|
2013-08-27 15:15:14 +00:00
|
|
|
FreeMibTable(ift);
|
2013-08-26 21:22:20 +00:00
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
FreeMibTable(&ift);
|
|
|
|
|
|
|
|
throw std::runtime_error("interface not found");
|
|
|
|
}
|
|
|
|
|
2013-08-22 18:30:55 +00:00
|
|
|
static Mutex _systemTapInitLock;
|
|
|
|
|
2013-08-14 17:23:25 +00:00
|
|
|
EthernetTap::EthernetTap(
|
|
|
|
const RuntimeEnvironment *renv,
|
2013-08-21 14:18:05 +00:00
|
|
|
const char *tag,
|
2013-08-14 17:23:25 +00:00
|
|
|
const MAC &mac,
|
|
|
|
unsigned int mtu,
|
|
|
|
void (*handler)(void *,const MAC &,const MAC &,unsigned int,const Buffer<4096> &),
|
|
|
|
void *arg)
|
|
|
|
throw(std::runtime_error) :
|
|
|
|
_mac(mac),
|
|
|
|
_mtu(mtu),
|
|
|
|
_r(renv),
|
|
|
|
_handler(handler),
|
2013-08-25 22:18:02 +00:00
|
|
|
_arg(arg),
|
2013-08-27 19:55:32 +00:00
|
|
|
_dhcp(false),
|
|
|
|
_dhcp6(false),
|
2013-08-25 22:18:02 +00:00
|
|
|
_tap(INVALID_HANDLE_VALUE),
|
|
|
|
_injectSemaphore(INVALID_HANDLE_VALUE),
|
|
|
|
_run(true)
|
2013-08-14 17:23:25 +00:00
|
|
|
{
|
2013-08-23 21:39:21 +00:00
|
|
|
char subkeyName[4096];
|
|
|
|
char subkeyClass[4096];
|
|
|
|
char data[4096];
|
2013-08-22 18:30:55 +00:00
|
|
|
|
2013-08-26 21:22:20 +00:00
|
|
|
if (mtu > ZT_IF_MTU)
|
|
|
|
throw std::runtime_error("MTU too large for Windows tap");
|
|
|
|
|
2013-08-26 21:48:47 +00:00
|
|
|
#ifdef _WIN64
|
2013-08-27 15:15:14 +00:00
|
|
|
const char *devcon = "\\devcon64.exe";
|
2013-08-26 21:48:47 +00:00
|
|
|
#else
|
2013-08-27 15:15:14 +00:00
|
|
|
BOOL f64 = FALSE;
|
|
|
|
const char *devcon = ((IsWow64Process(GetCurrentProcess(),&f64) == TRUE) ? "\\devcon64.exe" : "\\devcon32.exe");
|
2013-08-26 21:48:47 +00:00
|
|
|
#endif
|
|
|
|
|
2013-08-23 21:39:21 +00:00
|
|
|
Mutex::Lock _l(_systemTapInitLock); // only init one tap at a time, process-wide
|
2013-08-22 18:30:55 +00:00
|
|
|
|
2013-08-21 14:18:05 +00:00
|
|
|
HKEY nwAdapters;
|
2013-08-22 18:30:55 +00:00
|
|
|
if (RegOpenKeyExA(HKEY_LOCAL_MACHINE,"SYSTEM\\CurrentControlSet\\Control\\Class\\{4D36E972-E325-11CE-BFC1-08002BE10318}",0,KEY_READ|KEY_WRITE,&nwAdapters) != ERROR_SUCCESS)
|
2013-08-21 14:18:05 +00:00
|
|
|
throw std::runtime_error("unable to open registry key for network adapter enumeration");
|
|
|
|
|
2013-08-22 18:30:55 +00:00
|
|
|
std::set<std::string> existingDeviceInstances;
|
2013-08-23 21:39:21 +00:00
|
|
|
std::string mySubkeyName;
|
2013-08-22 18:30:55 +00:00
|
|
|
|
2013-08-25 22:18:02 +00:00
|
|
|
// Enumerate tap instances and look for one tagged with this tag
|
2013-08-21 14:18:05 +00:00
|
|
|
for(DWORD subkeyIndex=0;subkeyIndex!=-1;) {
|
2013-08-22 18:30:55 +00:00
|
|
|
DWORD type;
|
|
|
|
DWORD dataLen;
|
2013-08-21 14:18:05 +00:00
|
|
|
DWORD subkeyNameLen = sizeof(subkeyName);
|
|
|
|
DWORD subkeyClassLen = sizeof(subkeyClass);
|
|
|
|
FILETIME lastWriteTime;
|
|
|
|
switch (RegEnumKeyExA(nwAdapters,subkeyIndex++,subkeyName,&subkeyNameLen,(DWORD *)0,subkeyClass,&subkeyClassLen,&lastWriteTime)) {
|
|
|
|
case ERROR_NO_MORE_ITEMS: subkeyIndex = -1; break;
|
2013-08-22 18:30:55 +00:00
|
|
|
case ERROR_SUCCESS:
|
|
|
|
type = 0;
|
|
|
|
dataLen = sizeof(data);
|
|
|
|
if (RegGetValueA(nwAdapters,subkeyName,"ComponentId",RRF_RT_ANY,&type,(PVOID)data,&dataLen) == ERROR_SUCCESS) {
|
2013-08-21 14:18:05 +00:00
|
|
|
data[dataLen] = '\0';
|
2013-08-25 22:18:02 +00:00
|
|
|
if (!strnicmp(data,"zttap",5)) {
|
2013-08-22 18:30:55 +00:00
|
|
|
std::string instanceId;
|
|
|
|
type = 0;
|
|
|
|
dataLen = sizeof(data);
|
|
|
|
if (RegGetValueA(nwAdapters,subkeyName,"NetCfgInstanceId",RRF_RT_ANY,&type,(PVOID)data,&dataLen) == ERROR_SUCCESS) {
|
|
|
|
instanceId.assign(data,dataLen);
|
|
|
|
existingDeviceInstances.insert(instanceId);
|
|
|
|
}
|
|
|
|
|
2013-08-26 21:48:47 +00:00
|
|
|
std::string instanceIdPath;
|
|
|
|
type = 0;
|
|
|
|
dataLen = sizeof(data);
|
|
|
|
if (RegGetValueA(nwAdapters,subkeyName,"DeviceInstanceID",RRF_RT_ANY,&type,(PVOID)data,&dataLen) == ERROR_SUCCESS)
|
|
|
|
instanceIdPath.assign(data,dataLen);
|
|
|
|
|
|
|
|
if ((_myDeviceInstanceId.length() == 0)&&(instanceId.length() != 0)&&(instanceIdPath.length() != 0)) {
|
2013-08-22 18:30:55 +00:00
|
|
|
type = 0;
|
|
|
|
dataLen = sizeof(data);
|
|
|
|
if (RegGetValueA(nwAdapters,subkeyName,"_ZeroTierTapIdentifier",RRF_RT_ANY,&type,(PVOID)data,&dataLen) == ERROR_SUCCESS) {
|
|
|
|
data[dataLen] = '\0';
|
|
|
|
if (!strcmp(data,tag)) {
|
2013-08-25 22:18:02 +00:00
|
|
|
_myDeviceInstanceId = instanceId;
|
2013-08-26 21:48:47 +00:00
|
|
|
_myDeviceInstanceIdPath = instanceIdPath;
|
2013-08-25 22:18:02 +00:00
|
|
|
mySubkeyName = subkeyName;
|
|
|
|
subkeyIndex = -1; // break outer loop
|
2013-08-22 18:30:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-08-21 14:18:05 +00:00
|
|
|
}
|
2013-08-22 18:30:55 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If there is no device, try to create one
|
2013-08-23 02:33:32 +00:00
|
|
|
if (_myDeviceInstanceId.length() == 0) {
|
2013-08-22 18:30:55 +00:00
|
|
|
// Execute devcon to install an instance of the Microsoft Loopback Adapter
|
|
|
|
STARTUPINFOA startupInfo;
|
|
|
|
startupInfo.cb = sizeof(startupInfo);
|
|
|
|
PROCESS_INFORMATION processInfo;
|
|
|
|
memset(&startupInfo,0,sizeof(STARTUPINFOA));
|
|
|
|
memset(&processInfo,0,sizeof(PROCESS_INFORMATION));
|
2013-08-25 22:18:02 +00:00
|
|
|
if (!CreateProcessA(NULL,(LPSTR)(std::string("\"") + _r->homePath + devcon + "\" install \"" + _r->homePath + "\\ztTap100.inf\" ztTap100").c_str(),NULL,NULL,FALSE,0,NULL,NULL,&startupInfo,&processInfo)) {
|
2013-08-22 18:30:55 +00:00
|
|
|
RegCloseKey(nwAdapters);
|
|
|
|
throw std::runtime_error(std::string("unable to find or execute devcon at ")+devcon);
|
|
|
|
}
|
|
|
|
WaitForSingleObject(processInfo.hProcess,INFINITE);
|
|
|
|
CloseHandle(processInfo.hProcess);
|
|
|
|
CloseHandle(processInfo.hThread);
|
2013-08-25 22:18:02 +00:00
|
|
|
|
|
|
|
// Scan for the new instance by simply looking for taps that weren't
|
|
|
|
// there originally.
|
2013-08-22 18:30:55 +00:00
|
|
|
for(DWORD subkeyIndex=0;subkeyIndex!=-1;) {
|
|
|
|
DWORD type;
|
|
|
|
DWORD dataLen;
|
|
|
|
DWORD subkeyNameLen = sizeof(subkeyName);
|
|
|
|
DWORD subkeyClassLen = sizeof(subkeyClass);
|
|
|
|
FILETIME lastWriteTime;
|
|
|
|
switch (RegEnumKeyExA(nwAdapters,subkeyIndex++,subkeyName,&subkeyNameLen,(DWORD *)0,subkeyClass,&subkeyClassLen,&lastWriteTime)) {
|
|
|
|
case ERROR_NO_MORE_ITEMS: subkeyIndex = -1; break;
|
|
|
|
case ERROR_SUCCESS:
|
|
|
|
type = 0;
|
|
|
|
dataLen = sizeof(data);
|
|
|
|
if (RegGetValueA(nwAdapters,subkeyName,"ComponentId",RRF_RT_ANY,&type,(PVOID)data,&dataLen) == ERROR_SUCCESS) {
|
|
|
|
data[dataLen] = '\0';
|
2013-08-25 22:18:02 +00:00
|
|
|
if (!strnicmp(data,"zttap",5)) {
|
2013-08-22 18:30:55 +00:00
|
|
|
type = 0;
|
|
|
|
dataLen = sizeof(data);
|
|
|
|
if (RegGetValueA(nwAdapters,subkeyName,"NetCfgInstanceId",RRF_RT_ANY,&type,(PVOID)data,&dataLen) == ERROR_SUCCESS) {
|
|
|
|
if (existingDeviceInstances.count(std::string(data,dataLen)) == 0) {
|
2013-08-26 21:22:20 +00:00
|
|
|
RegSetKeyValueA(nwAdapters,subkeyName,"_ZeroTierTapIdentifier",REG_SZ,tag,(DWORD)(strlen(tag)+1));
|
2013-08-23 02:33:32 +00:00
|
|
|
_myDeviceInstanceId.assign(data,dataLen);
|
2013-08-26 21:48:47 +00:00
|
|
|
type = 0;
|
|
|
|
dataLen = sizeof(data);
|
|
|
|
if (RegGetValueA(nwAdapters,subkeyName,"DeviceInstanceID",RRF_RT_ANY,&type,(PVOID)data,&dataLen) == ERROR_SUCCESS)
|
|
|
|
_myDeviceInstanceIdPath.assign(data,dataLen);
|
2013-08-23 21:39:21 +00:00
|
|
|
mySubkeyName = subkeyName;
|
2013-08-22 18:30:55 +00:00
|
|
|
subkeyIndex = -1; // break outer loop
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2013-08-21 14:18:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-27 15:55:56 +00:00
|
|
|
// If we have a device, configure it
|
2013-08-23 21:39:21 +00:00
|
|
|
if (_myDeviceInstanceId.length() > 0) {
|
|
|
|
char tmps[4096];
|
2013-08-30 21:05:43 +00:00
|
|
|
unsigned int tmpsl = Utils::snprintf(tmps,sizeof(tmps),"%.2X-%.2X-%.2X-%.2X-%.2X-%.2X",(unsigned int)mac.data[0],(unsigned int)mac.data[1],(unsigned int)mac.data[2],(unsigned int)mac.data[3],(unsigned int)mac.data[4],(unsigned int)mac.data[5]) + 1;
|
2013-08-25 22:18:02 +00:00
|
|
|
RegSetKeyValueA(nwAdapters,mySubkeyName.c_str(),"NetworkAddress",REG_SZ,tmps,tmpsl);
|
|
|
|
RegSetKeyValueA(nwAdapters,mySubkeyName.c_str(),"MAC",REG_SZ,tmps,tmpsl);
|
2013-08-23 21:39:21 +00:00
|
|
|
DWORD tmp = mtu;
|
|
|
|
RegSetKeyValueA(nwAdapters,mySubkeyName.c_str(),"MTU",REG_DWORD,(LPCVOID)&tmp,sizeof(tmp));
|
|
|
|
tmp = 0;
|
|
|
|
RegSetKeyValueA(nwAdapters,mySubkeyName.c_str(),"EnableDHCP",REG_DWORD,(LPCVOID)&tmp,sizeof(tmp));
|
|
|
|
}
|
|
|
|
|
2013-08-27 15:55:56 +00:00
|
|
|
// Done with registry
|
2013-08-21 14:18:05 +00:00
|
|
|
RegCloseKey(nwAdapters);
|
2013-08-22 18:30:55 +00:00
|
|
|
|
2013-08-27 15:55:56 +00:00
|
|
|
// If we didn't get a device, we can't start
|
2013-08-23 02:33:32 +00:00
|
|
|
if (_myDeviceInstanceId.length() == 0)
|
2013-08-25 22:18:02 +00:00
|
|
|
throw std::runtime_error("unable to create new tap adapter");
|
|
|
|
|
2013-08-27 15:55:56 +00:00
|
|
|
// Convert device GUID junk... blech
|
2013-08-26 21:22:20 +00:00
|
|
|
{
|
|
|
|
char nobraces[128];
|
|
|
|
const char *nbtmp1 = _myDeviceInstanceId.c_str();
|
|
|
|
char *nbtmp2 = nobraces;
|
|
|
|
while (*nbtmp1) {
|
|
|
|
if ((*nbtmp1 != '{')&&(*nbtmp1 != '}'))
|
|
|
|
*nbtmp2++ = *nbtmp1;
|
|
|
|
++nbtmp1;
|
|
|
|
}
|
|
|
|
*nbtmp2 = (char)0;
|
|
|
|
if (UuidFromStringA((RPC_CSTR)nobraces,&_deviceGuid) != RPC_S_OK)
|
|
|
|
throw std::runtime_error("unable to convert instance ID GUID to native GUID (invalid NetCfgInstanceId in registry?)");
|
|
|
|
}
|
|
|
|
|
2013-08-27 19:55:32 +00:00
|
|
|
setDhcpEnabled(false);
|
|
|
|
setDhcp6Enabled(false);
|
|
|
|
|
2013-08-27 15:55:56 +00:00
|
|
|
// Disable and enable interface to ensure registry settings take effect
|
2013-08-26 21:48:47 +00:00
|
|
|
{
|
|
|
|
STARTUPINFOA startupInfo;
|
|
|
|
startupInfo.cb = sizeof(startupInfo);
|
|
|
|
PROCESS_INFORMATION processInfo;
|
|
|
|
memset(&startupInfo,0,sizeof(STARTUPINFOA));
|
|
|
|
memset(&processInfo,0,sizeof(PROCESS_INFORMATION));
|
|
|
|
if (!CreateProcessA(NULL,(LPSTR)(std::string("\"") + _r->homePath + devcon + "\" disable @" + _myDeviceInstanceIdPath).c_str(),NULL,NULL,FALSE,0,NULL,NULL,&startupInfo,&processInfo)) {
|
|
|
|
RegCloseKey(nwAdapters);
|
|
|
|
throw std::runtime_error(std::string("unable to find or execute devcon at ")+devcon);
|
|
|
|
}
|
|
|
|
WaitForSingleObject(processInfo.hProcess,INFINITE);
|
|
|
|
CloseHandle(processInfo.hProcess);
|
|
|
|
CloseHandle(processInfo.hThread);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
STARTUPINFOA startupInfo;
|
|
|
|
startupInfo.cb = sizeof(startupInfo);
|
|
|
|
PROCESS_INFORMATION processInfo;
|
|
|
|
memset(&startupInfo,0,sizeof(STARTUPINFOA));
|
|
|
|
memset(&processInfo,0,sizeof(PROCESS_INFORMATION));
|
|
|
|
if (!CreateProcessA(NULL,(LPSTR)(std::string("\"") + _r->homePath + devcon + "\" enable @" + _myDeviceInstanceIdPath).c_str(),NULL,NULL,FALSE,0,NULL,NULL,&startupInfo,&processInfo)) {
|
|
|
|
RegCloseKey(nwAdapters);
|
|
|
|
throw std::runtime_error(std::string("unable to find or execute devcon at ")+devcon);
|
|
|
|
}
|
|
|
|
WaitForSingleObject(processInfo.hProcess,INFINITE);
|
|
|
|
CloseHandle(processInfo.hProcess);
|
|
|
|
CloseHandle(processInfo.hThread);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Open the tap, which is in this weird Windows analog of /dev
|
2013-08-26 21:22:20 +00:00
|
|
|
char tapPath[4096];
|
2013-08-30 21:05:43 +00:00
|
|
|
Utils::snprintf(tapPath,sizeof(tapPath),"\\\\.\\Global\\%s.tap",_myDeviceInstanceId.c_str());
|
2013-08-27 15:55:56 +00:00
|
|
|
_tap = CreateFileA(tapPath,GENERIC_READ|GENERIC_WRITE,0,NULL,OPEN_EXISTING,FILE_ATTRIBUTE_SYSTEM|FILE_FLAG_OVERLAPPED,NULL);
|
2013-08-25 22:18:02 +00:00
|
|
|
if (_tap == INVALID_HANDLE_VALUE)
|
|
|
|
throw std::runtime_error("unable to open tap in \\\\.\\Global\\ namespace");
|
2013-08-23 02:33:32 +00:00
|
|
|
|
2013-08-27 15:55:56 +00:00
|
|
|
// Set media status to enabled
|
2013-08-25 22:18:02 +00:00
|
|
|
uint32_t tmpi = 1;
|
|
|
|
DWORD bytesReturned = 0;
|
|
|
|
DeviceIoControl(_tap,TAP_WIN_IOCTL_SET_MEDIA_STATUS,&tmpi,sizeof(tmpi),&tmpi,sizeof(tmpi),&bytesReturned,NULL);
|
|
|
|
|
2013-08-27 15:55:56 +00:00
|
|
|
// Initialized overlapped I/O structures and related events
|
2013-08-25 22:18:02 +00:00
|
|
|
memset(&_tapOvlRead,0,sizeof(_tapOvlRead));
|
|
|
|
_tapOvlRead.hEvent = CreateEvent(NULL,TRUE,FALSE,NULL);
|
|
|
|
memset(&_tapOvlWrite,0,sizeof(_tapOvlWrite));
|
|
|
|
_tapOvlWrite.hEvent = CreateEvent(NULL,TRUE,FALSE,NULL);
|
|
|
|
|
2013-08-27 15:55:56 +00:00
|
|
|
// Start background thread that actually performs I/O
|
2013-08-25 22:18:02 +00:00
|
|
|
_injectSemaphore = CreateSemaphore(NULL,0,1,NULL);
|
|
|
|
_thread = Thread::start(this);
|
2013-08-14 17:23:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
EthernetTap::~EthernetTap()
|
|
|
|
{
|
2013-08-25 22:18:02 +00:00
|
|
|
_run = false;
|
|
|
|
ReleaseSemaphore(_injectSemaphore,1,NULL);
|
|
|
|
Thread::join(_thread);
|
|
|
|
CloseHandle(_tap);
|
|
|
|
CloseHandle(_tapOvlRead.hEvent);
|
|
|
|
CloseHandle(_tapOvlWrite.hEvent);
|
|
|
|
CloseHandle(_injectSemaphore);
|
2013-08-27 15:15:14 +00:00
|
|
|
|
|
|
|
// Disable network device on shutdown
|
|
|
|
#ifdef _WIN64
|
|
|
|
const char *devcon = "\\devcon64.exe";
|
|
|
|
#else
|
|
|
|
BOOL f64 = FALSE;
|
|
|
|
const char *devcon = ((IsWow64Process(GetCurrentProcess(),&f64) == TRUE) ? "\\devcon64.exe" : "\\devcon32.exe");
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
STARTUPINFOA startupInfo;
|
|
|
|
startupInfo.cb = sizeof(startupInfo);
|
|
|
|
PROCESS_INFORMATION processInfo;
|
|
|
|
memset(&startupInfo,0,sizeof(STARTUPINFOA));
|
|
|
|
memset(&processInfo,0,sizeof(PROCESS_INFORMATION));
|
|
|
|
if (CreateProcessA(NULL,(LPSTR)(std::string("\"") + _r->homePath + devcon + "\" disable @" + _myDeviceInstanceIdPath).c_str(),NULL,NULL,FALSE,0,NULL,NULL,&startupInfo,&processInfo)) {
|
|
|
|
WaitForSingleObject(processInfo.hProcess,INFINITE);
|
|
|
|
CloseHandle(processInfo.hProcess);
|
|
|
|
CloseHandle(processInfo.hThread);
|
|
|
|
}
|
|
|
|
}
|
2013-08-14 17:23:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void EthernetTap::whack()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-08-27 19:55:32 +00:00
|
|
|
bool EthernetTap::setDhcpEnabled(bool dhcp)
|
|
|
|
{
|
|
|
|
HKEY tcpIpInterfaces;
|
|
|
|
if (RegOpenKeyExA(HKEY_LOCAL_MACHINE,"SYSTEM\\CurrentControlSet\\services\\Tcpip\\Parameters\\Interfaces",0,KEY_READ|KEY_WRITE,&tcpIpInterfaces) == ERROR_SUCCESS) {
|
|
|
|
_dhcp = dhcp;
|
|
|
|
DWORD enable = (dhcp ? 1 : 0);
|
|
|
|
RegSetKeyValueA(tcpIpInterfaces,_myDeviceInstanceId.c_str(),"EnableDHCP",REG_DWORD,&enable,sizeof(enable));
|
|
|
|
RegCloseKey(tcpIpInterfaces);
|
|
|
|
} else _dhcp = false;
|
|
|
|
|
|
|
|
return _dhcp;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool EthernetTap::setDhcp6Enabled(bool dhcp)
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
return _dhcp6;
|
|
|
|
}
|
|
|
|
|
|
|
|
void EthernetTap::setDisplayName(const char *dn)
|
|
|
|
{
|
|
|
|
HKEY ifp;
|
|
|
|
if (RegOpenKeyExA(HKEY_LOCAL_MACHINE,(std::string("SYSTEM\\CurrentControlSet\\Control\\Network\\{4D36E972-E325-11CE-BFC1-08002BE10318}\\") + _myDeviceInstanceId).c_str(),0,KEY_READ|KEY_WRITE,&ifp) == ERROR_SUCCESS) {
|
2013-08-27 20:11:39 +00:00
|
|
|
RegSetKeyValueA(ifp,"Connection","Name",REG_SZ,(LPCVOID)dn,(DWORD)(strlen(dn)+1));
|
2013-08-27 19:55:32 +00:00
|
|
|
RegCloseKey(ifp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-14 17:23:25 +00:00
|
|
|
bool EthernetTap::addIP(const InetAddress &ip)
|
|
|
|
{
|
2013-08-26 21:22:20 +00:00
|
|
|
Mutex::Lock _l(_ips_m);
|
|
|
|
|
|
|
|
if (_ips.count(ip))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
if (!ip.port())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
try {
|
|
|
|
std::pair<NET_LUID,NET_IFINDEX> ifidx = _findAdapterByGuid(_deviceGuid);
|
|
|
|
MIB_UNICASTIPADDRESS_ROW ipr;
|
|
|
|
|
|
|
|
InitializeUnicastIpAddressEntry(&ipr);
|
|
|
|
if (ip.isV4()) {
|
|
|
|
ipr.Address.Ipv4.sin_family = AF_INET;
|
|
|
|
ipr.Address.Ipv4.sin_addr.S_un.S_addr = *((const uint32_t *)ip.rawIpData());
|
|
|
|
ipr.OnLinkPrefixLength = ip.port();
|
|
|
|
} else if (ip.isV6()) {
|
|
|
|
} else return false;
|
|
|
|
|
|
|
|
ipr.PrefixOrigin = IpPrefixOriginManual;
|
|
|
|
ipr.SuffixOrigin = IpSuffixOriginManual;
|
|
|
|
ipr.ValidLifetime = 0xffffffff;
|
|
|
|
ipr.PreferredLifetime = 0xffffffff;
|
|
|
|
|
|
|
|
ipr.InterfaceLuid = ifidx.first;
|
|
|
|
ipr.InterfaceIndex = ifidx.second;
|
|
|
|
|
|
|
|
if (CreateUnicastIpAddressEntry(&ipr) == NO_ERROR) {
|
|
|
|
_ips.insert(ip);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
} catch ( ... ) {}
|
|
|
|
|
2013-08-14 17:23:25 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool EthernetTap::removeIP(const InetAddress &ip)
|
|
|
|
{
|
2013-08-26 21:22:20 +00:00
|
|
|
try {
|
|
|
|
MIB_UNICASTIPADDRESS_TABLE *ipt = (MIB_UNICASTIPADDRESS_TABLE *)0;
|
|
|
|
std::pair<NET_LUID,NET_IFINDEX> ifidx = _findAdapterByGuid(_deviceGuid);
|
|
|
|
|
|
|
|
if (GetUnicastIpAddressTable(AF_UNSPEC,&ipt) == NO_ERROR) {
|
|
|
|
for(DWORD i=0;i<ipt->NumEntries;++i) {
|
|
|
|
if ((ipt->Table[i].InterfaceLuid.Value == ifidx.first.Value)&&(ipt->Table[i].InterfaceIndex == ifidx.second)) {
|
|
|
|
InetAddress addr;
|
|
|
|
switch(ipt->Table[i].Address.si_family) {
|
|
|
|
case AF_INET:
|
|
|
|
addr.set(&(ipt->Table[i].Address.Ipv4.sin_addr.S_un.S_addr),4,ipt->Table[i].OnLinkPrefixLength);
|
|
|
|
break;
|
|
|
|
case AF_INET6:
|
|
|
|
addr.set(ipt->Table[i].Address.Ipv6.sin6_addr.u.Byte,16,ipt->Table[i].OnLinkPrefixLength);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (addr == ip) {
|
|
|
|
DeleteUnicastIpAddressEntry(&(ipt->Table[i]));
|
2013-08-27 15:15:14 +00:00
|
|
|
FreeMibTable(ipt);
|
2013-08-26 21:22:20 +00:00
|
|
|
Mutex::Lock _l(_ips_m);
|
|
|
|
_ips.erase(ip);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
FreeMibTable(&ipt);
|
|
|
|
}
|
|
|
|
} catch ( ... ) {}
|
2013-08-14 17:23:25 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-08-26 21:22:20 +00:00
|
|
|
std::set<InetAddress> EthernetTap::allIps() const
|
|
|
|
{
|
2013-08-27 20:45:22 +00:00
|
|
|
static const InetAddress ifLoopback("fe80::1",64);
|
2013-08-26 21:22:20 +00:00
|
|
|
std::set<InetAddress> addrs;
|
|
|
|
|
|
|
|
try {
|
|
|
|
MIB_UNICASTIPADDRESS_TABLE *ipt = (MIB_UNICASTIPADDRESS_TABLE *)0;
|
|
|
|
std::pair<NET_LUID,NET_IFINDEX> ifidx = _findAdapterByGuid(_deviceGuid);
|
|
|
|
|
|
|
|
if (GetUnicastIpAddressTable(AF_UNSPEC,&ipt) == NO_ERROR) {
|
|
|
|
for(DWORD i=0;i<ipt->NumEntries;++i) {
|
|
|
|
if ((ipt->Table[i].InterfaceLuid.Value == ifidx.first.Value)&&(ipt->Table[i].InterfaceIndex == ifidx.second)) {
|
|
|
|
switch(ipt->Table[i].Address.si_family) {
|
|
|
|
case AF_INET:
|
|
|
|
addrs.insert(InetAddress(&(ipt->Table[i].Address.Ipv4.sin_addr.S_un.S_addr),4,ipt->Table[i].OnLinkPrefixLength));
|
|
|
|
break;
|
2013-08-27 20:45:22 +00:00
|
|
|
case AF_INET6: {
|
|
|
|
InetAddress ip(ipt->Table[i].Address.Ipv6.sin6_addr.u.Byte,16,ipt->Table[i].OnLinkPrefixLength);
|
|
|
|
if (ip != ifLoopback) // don't include fe80::1
|
|
|
|
addrs.insert(ip);
|
|
|
|
} break;
|
2013-08-26 21:22:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-08-27 15:15:14 +00:00
|
|
|
FreeMibTable(ipt);
|
2013-08-26 21:22:20 +00:00
|
|
|
}
|
|
|
|
} catch ( ... ) {}
|
|
|
|
|
|
|
|
return addrs;
|
|
|
|
}
|
|
|
|
|
2013-08-14 17:23:25 +00:00
|
|
|
void EthernetTap::put(const MAC &from,const MAC &to,unsigned int etherType,const void *data,unsigned int len)
|
|
|
|
{
|
2013-08-23 02:33:32 +00:00
|
|
|
if (len > (ZT_IF_MTU))
|
|
|
|
return;
|
|
|
|
|
|
|
|
{
|
|
|
|
Mutex::Lock _l(_injectPending_m);
|
|
|
|
_injectPending.push( std::pair<Array<char,ZT_IF_MTU + 32>,unsigned int>(Array<char,ZT_IF_MTU + 32>(),len + 14) );
|
|
|
|
char *d = _injectPending.back().first.data;
|
|
|
|
memcpy(d,to.data,6);
|
|
|
|
memcpy(d + 6,from.data,6);
|
|
|
|
*((uint16_t *)(d + 12)) = Utils::hton(etherType);
|
|
|
|
memcpy(d + 14,data,len);
|
|
|
|
}
|
|
|
|
|
2013-08-25 22:18:02 +00:00
|
|
|
ReleaseSemaphore(_injectSemaphore,1,NULL);
|
2013-08-14 17:23:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string EthernetTap::deviceName() const
|
|
|
|
{
|
2013-08-23 02:33:32 +00:00
|
|
|
return _myDeviceInstanceId;
|
2013-08-14 17:23:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool EthernetTap::updateMulticastGroups(std::set<MulticastGroup> &groups)
|
|
|
|
{
|
2013-08-27 20:45:22 +00:00
|
|
|
std::set<MulticastGroup> newGroups;
|
|
|
|
|
|
|
|
std::set<InetAddress> ipaddrs(allIps());
|
|
|
|
for(std::set<InetAddress>::const_iterator i(ipaddrs.begin());i!=ipaddrs.end();++i)
|
|
|
|
newGroups.insert(MulticastGroup::deriveMulticastGroupForAddressResolution(*i));
|
|
|
|
|
|
|
|
bool changed = false;
|
|
|
|
|
|
|
|
newGroups.insert(_blindWildcardMulticastGroup); // always join this
|
|
|
|
|
|
|
|
for(std::set<MulticastGroup>::iterator mg(newGroups.begin());mg!=newGroups.end();++mg) {
|
|
|
|
if (!groups.count(*mg)) {
|
|
|
|
groups.insert(*mg);
|
|
|
|
changed = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for(std::set<MulticastGroup>::iterator mg(groups.begin());mg!=groups.end();) {
|
|
|
|
if (!newGroups.count(*mg)) {
|
|
|
|
groups.erase(mg++);
|
|
|
|
changed = true;
|
|
|
|
} else ++mg;
|
|
|
|
}
|
|
|
|
|
|
|
|
return changed;
|
2013-08-14 17:23:25 +00:00
|
|
|
}
|
|
|
|
|
2013-08-23 21:39:21 +00:00
|
|
|
void EthernetTap::threadMain()
|
|
|
|
throw()
|
2013-08-14 17:23:25 +00:00
|
|
|
{
|
2013-08-25 22:18:02 +00:00
|
|
|
HANDLE wait4[3];
|
|
|
|
wait4[0] = _injectSemaphore;
|
|
|
|
wait4[1] = _tapOvlRead.hEvent;
|
|
|
|
wait4[2] = _tapOvlWrite.hEvent;
|
|
|
|
|
|
|
|
ReadFile(_tap,_tapReadBuf,sizeof(_tapReadBuf),NULL,&_tapOvlRead);
|
|
|
|
bool writeInProgress = false;
|
|
|
|
|
|
|
|
for(;;) {
|
|
|
|
if (!_run) break;
|
|
|
|
WaitForMultipleObjectsEx(3,wait4,FALSE,INFINITE,TRUE);
|
|
|
|
if (!_run) break;
|
|
|
|
|
|
|
|
if (HasOverlappedIoCompleted(&_tapOvlRead)) {
|
|
|
|
DWORD bytesRead = 0;
|
|
|
|
if (GetOverlappedResult(_tap,&_tapOvlRead,&bytesRead,FALSE)) {
|
|
|
|
if (bytesRead > 14) {
|
|
|
|
MAC to(_tapReadBuf);
|
|
|
|
MAC from(_tapReadBuf + 6);
|
|
|
|
unsigned int etherType = Utils::ntoh(*((const uint16_t *)(_tapReadBuf + 12)));
|
|
|
|
Buffer<4096> tmp(_tapReadBuf + 14,bytesRead - 14);
|
2013-08-26 21:22:20 +00:00
|
|
|
//printf("GOT FRAME: %u bytes: %s\r\n",(unsigned int)bytesRead,Utils::hex(_tapReadBuf,bytesRead).c_str());
|
|
|
|
_handler(_arg,from,to,etherType,tmp);
|
2013-08-25 22:18:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
ReadFile(_tap,_tapReadBuf,sizeof(_tapReadBuf),NULL,&_tapOvlRead);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (writeInProgress) {
|
|
|
|
if (HasOverlappedIoCompleted(&_tapOvlWrite)) {
|
|
|
|
writeInProgress = false;
|
|
|
|
_injectPending_m.lock();
|
|
|
|
_injectPending.pop();
|
|
|
|
} else continue; // still writing, so skip code below and wait
|
|
|
|
} else _injectPending_m.lock();
|
|
|
|
|
|
|
|
if (!_injectPending.empty()) {
|
|
|
|
WriteFile(_tap,_injectPending.front().first.data,_injectPending.front().second,NULL,&_tapOvlWrite);
|
|
|
|
writeInProgress = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
_injectPending_m.unlock();
|
|
|
|
}
|
|
|
|
|
|
|
|
CancelIo(_tap);
|
2013-08-14 17:23:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace ZeroTier
|
2013-07-04 20:56:19 +00:00
|
|
|
|
2013-08-23 21:39:21 +00:00
|
|
|
#endif // __WINDOWS__ ////////////////////////////////////////////////////////
|