Browse Source

Bring BSDEthernetTap into the current century.

Adam Ierymenko 10 years ago
parent
commit
ddaf3ef347
2 changed files with 81 additions and 36 deletions
  1. 60 20
      osdep/BSDEthernetTap.cpp
  2. 21 16
      osdep/BSDEthernetTap.hpp

+ 60 - 20
osdep/BSDEthernetTap.cpp

@@ -59,10 +59,12 @@
 #include <map>
 #include <map>
 #include <set>
 #include <set>
 #include <algorithm>
 #include <algorithm>
+#include <utility>
 
 
 #include "../node/Constants.hpp"
 #include "../node/Constants.hpp"
 #include "../node/Utils.hpp"
 #include "../node/Utils.hpp"
 #include "../node/Mutex.hpp"
 #include "../node/Mutex.hpp"
+#include "OSUtils.hpp"
 #include "BSDEthernetTap.hpp"
 #include "BSDEthernetTap.hpp"
 
 
 #define ZT_BASE32_CHARS "0123456789abcdefghijklmnopqrstuv"
 #define ZT_BASE32_CHARS "0123456789abcdefghijklmnopqrstuv"
@@ -73,17 +75,17 @@ static const ZeroTier::MulticastGroup _blindWildcardMulticastGroup(ZeroTier::MAC
 namespace ZeroTier {
 namespace ZeroTier {
 
 
 BSDEthernetTap::BSDEthernetTap(
 BSDEthernetTap::BSDEthernetTap(
+	const char *homePath,
 	const MAC &mac,
 	const MAC &mac,
 	unsigned int mtu,
 	unsigned int mtu,
 	unsigned int metric,
 	unsigned int metric,
 	uint64_t nwid,
 	uint64_t nwid,
-	const char *desiredDevice,
 	const char *friendlyName,
 	const char *friendlyName,
-	void (*handler)(void *,const MAC &,const MAC &,unsigned int,const Buffer<4096> &),
+	void (*handler)(void *,uint64_t,const MAC &,const MAC &,unsigned int,unsigned int,const void *,unsigned int),
 	void *arg) :
 	void *arg) :
-	EthernetTap("BSDEthernetTap",mac,mtu,metric),
 	_handler(handler),
 	_handler(handler),
 	_arg(arg),
 	_arg(arg),
+	_nwid(nwid),
 	_mtu(mtu),
 	_mtu(mtu),
 	_metric(metric),
 	_metric(metric),
 	_fd(0),
 	_fd(0),
@@ -117,11 +119,11 @@ BSDEthernetTap::BSDEthernetTap(
 
 
 	// On BSD we create taps and they can have high numbers, so use ones starting
 	// On BSD we create taps and they can have high numbers, so use ones starting
 	// at 9993 to not conflict with other stuff. Then we rename it to zt<base32 of nwid>
 	// at 9993 to not conflict with other stuff. Then we rename it to zt<base32 of nwid>
-	std::map<std::string,bool> devFiles(Utils::listDirectory("/dev"));
+	std::vector<std::string> devFiles(OSUtils::listDirectory("/dev"));
 	for(int i=9993;i<(9993+128);++i) {
 	for(int i=9993;i<(9993+128);++i) {
 		Utils::snprintf(tmpdevname,sizeof(tmpdevname),"tap%d",i);
 		Utils::snprintf(tmpdevname,sizeof(tmpdevname),"tap%d",i);
 		Utils::snprintf(devpath,sizeof(devpath),"/dev/%s",tmpdevname);
 		Utils::snprintf(devpath,sizeof(devpath),"/dev/%s",tmpdevname);
-		if (devFiles.count(std::string(tmpdevname)) == 0) {
+		if (std::find(devFiles.begin(),devFiles.end(),std::string(tmpdevname)) == devFiles.end()) {
 			long cpid = (long)vfork();
 			long cpid = (long)vfork();
 			if (cpid == 0) {
 			if (cpid == 0) {
 				::execl("/sbin/ifconfig","/sbin/ifconfig",tmpdevname,"create",(const char *)0);
 				::execl("/sbin/ifconfig","/sbin/ifconfig",tmpdevname,"create",(const char *)0);
@@ -207,7 +209,6 @@ BSDEthernetTap::~BSDEthernetTap()
 void BSDEthernetTap::setEnabled(bool en)
 void BSDEthernetTap::setEnabled(bool en)
 {
 {
 	_enabled = en;
 	_enabled = en;
-	// TODO: interface status change
 }
 }
 
 
 bool BSDEthernetTap::enabled() const
 bool BSDEthernetTap::enabled() const
@@ -234,12 +235,12 @@ bool BSDEthernetTap::addIP(const InetAddress &ip)
 	if (!ip)
 	if (!ip)
 		return false;
 		return false;
 
 
-	std::set<InetAddress> allIps(ips());
-	if (allIps.count(ip) > 0)
+	std::vector<InetAddress> allIps(ips());
+	if (std::find(allIps.begin(),allIps.end(),ip) != allIps.end())
 		return true; // IP/netmask already assigned
 		return true; // IP/netmask already assigned
 
 
 	// Remove and reconfigure if address is the same but netmask is different
 	// Remove and reconfigure if address is the same but netmask is different
-	for(std::set<InetAddress>::iterator i(allIps.begin());i!=allIps.end();++i) {
+	for(std::vector<InetAddress>::iterator i(allIps.begin());i!=allIps.end();++i) {
 		if ((i->ipsEqual(ip))&&(i->netmaskBits() != ip.netmaskBits())) {
 		if ((i->ipsEqual(ip))&&(i->netmaskBits() != ip.netmaskBits())) {
 			if (___removeIp(_dev,*i))
 			if (___removeIp(_dev,*i))
 				break;
 				break;
@@ -260,7 +261,8 @@ bool BSDEthernetTap::addIP(const InetAddress &ip)
 
 
 bool BSDEthernetTap::removeIP(const InetAddress &ip)
 bool BSDEthernetTap::removeIP(const InetAddress &ip)
 {
 {
-	if (ips().count(ip) > 0) {
+	std::vector<InetAddress> allIps(ips());
+	if (std::find(allIps.begin(),allIps.end(),ip) != allIps.end()) {
 		if (___removeIp(_dev,ip))
 		if (___removeIp(_dev,ip))
 			return true;
 			return true;
 	}
 	}
@@ -273,7 +275,7 @@ std::set<InetAddress> BSDEthernetTap::ips() const
 	if (getifaddrs(&ifa))
 	if (getifaddrs(&ifa))
 		return std::set<InetAddress>();
 		return std::set<InetAddress>();
 
 
-	std::set<InetAddress> r;
+	std::vector<InetAddress> r;
 
 
 	struct ifaddrs *p = ifa;
 	struct ifaddrs *p = ifa;
 	while (p) {
 	while (p) {
@@ -282,14 +284,14 @@ std::set<InetAddress> BSDEthernetTap::ips() const
 				case AF_INET: {
 				case AF_INET: {
 					struct sockaddr_in *sin = (struct sockaddr_in *)p->ifa_addr;
 					struct sockaddr_in *sin = (struct sockaddr_in *)p->ifa_addr;
 					struct sockaddr_in *nm = (struct sockaddr_in *)p->ifa_netmask;
 					struct sockaddr_in *nm = (struct sockaddr_in *)p->ifa_netmask;
-					r.insert(InetAddress(&(sin->sin_addr.s_addr),4,Utils::countBits((uint32_t)nm->sin_addr.s_addr)));
+					r.push_back(InetAddress(&(sin->sin_addr.s_addr),4,Utils::countBits((uint32_t)nm->sin_addr.s_addr)));
 				}	break;
 				}	break;
 				case AF_INET6: {
 				case AF_INET6: {
 					struct sockaddr_in6 *sin = (struct sockaddr_in6 *)p->ifa_addr;
 					struct sockaddr_in6 *sin = (struct sockaddr_in6 *)p->ifa_addr;
 					struct sockaddr_in6 *nm = (struct sockaddr_in6 *)p->ifa_netmask;
 					struct sockaddr_in6 *nm = (struct sockaddr_in6 *)p->ifa_netmask;
 					uint32_t b[4];
 					uint32_t b[4];
 					memcpy(b,nm->sin6_addr.s6_addr,sizeof(b));
 					memcpy(b,nm->sin6_addr.s6_addr,sizeof(b));
-					r.insert(InetAddress(sin->sin6_addr.s6_addr,16,Utils::countBits(b[0]) + Utils::countBits(b[1]) + Utils::countBits(b[2]) + Utils::countBits(b[3])));
+					r.push_back(InetAddress(sin->sin6_addr.s6_addr,16,Utils::countBits(b[0]) + Utils::countBits(b[1]) + Utils::countBits(b[2]) + Utils::countBits(b[3])));
 				}	break;
 				}	break;
 			}
 			}
 		}
 		}
@@ -299,6 +301,9 @@ std::set<InetAddress> BSDEthernetTap::ips() const
 	if (ifa)
 	if (ifa)
 		freeifaddrs(ifa);
 		freeifaddrs(ifa);
 
 
+	std::sort(r.begin(),r.end());
+	std::unique(r.begin(),r.end());
+
 	return r;
 	return r;
 }
 }
 
 
@@ -324,6 +329,45 @@ void BSDEthernetTap::setFriendlyName(const char *friendlyName)
 {
 {
 }
 }
 
 
+void BSDEthernetTap::scanMulticastGroups(std::vector<MulticastGroup> &added,std::vector<MulticastGroup> &removed)
+{
+	std::vector<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 <= _dev.length())&&(!memcmp(_dev.data(),in->sdl_data,in->sdl_nlen)))
+					newGroups.push_back(MulticastGroup(MAC(la->sdl_data + la->sdl_nlen,6),0));
+			}
+			p = p->ifma_next;
+		}
+		freeifmaddrs(ifmap);
+	}
+
+	std::vector<InetAddress> allIps(ips());
+	for(std::vector<InetAddress>::iterator ip(allIps.begin());ip!=allIps.end();++ip)
+		newGroups.push_back(MulticastGroup::deriveMulticastGroupForAddressResolution(*ip));
+
+	std::sort(newGroups.begin(),newGroups.end());
+	std::unique(newGroups.begin(),newGroups.end());
+
+	for(std::vector<MulticastGroup>::iterator m(newGroups.begin());m!=newGroups.end();++m) {
+		if (!std::binary_search(_multicastGroups.begin(),_multicastGroups.end(),*m))
+			added.push_back(*m);
+	}
+	for(std::vector<MulticastGroup>::iterator m(_multicastGroups.begin());m!=_multicastGroups.end();++m) {
+		if (!std::binary_search(newGroups.begin(),newGroups.end(),*m))
+			removed.push_back(*m);
+	}
+
+	_multicastGroups.swap(newGroups);
+}
+
+/*
 bool BSDEthernetTap::updateMulticastGroups(std::set<MulticastGroup> &groups)
 bool BSDEthernetTap::updateMulticastGroups(std::set<MulticastGroup> &groups)
 {
 {
 	std::set<MulticastGroup> newGroups;
 	std::set<MulticastGroup> newGroups;
@@ -365,11 +409,7 @@ bool BSDEthernetTap::updateMulticastGroups(std::set<MulticastGroup> &groups)
 
 
 	return changed;
 	return changed;
 }
 }
-
-bool BSDEthernetTap::injectPacketFromHost(const MAC &from,const MAC &to,unsigned int etherType,const void *data,unsigned int len)
-{
-	return false;
-}
+*/
 
 
 void BSDEthernetTap::threadMain()
 void BSDEthernetTap::threadMain()
 	throw()
 	throw()
@@ -378,7 +418,6 @@ void BSDEthernetTap::threadMain()
 	MAC to,from;
 	MAC to,from;
 	int n,nfds,r;
 	int n,nfds,r;
 	char getBuf[8194];
 	char getBuf[8194];
-	Buffer<4096> data;
 
 
 	// Wait for a moment after startup -- wait for Network to finish
 	// Wait for a moment after startup -- wait for Network to finish
 	// constructing itself.
 	// constructing itself.
@@ -416,7 +455,8 @@ void BSDEthernetTap::threadMain()
 						from.setTo(getBuf + 6,6);
 						from.setTo(getBuf + 6,6);
 						unsigned int etherType = ntohs(((const uint16_t *)getBuf)[6]);
 						unsigned int etherType = ntohs(((const uint16_t *)getBuf)[6]);
 						data.copyFrom(getBuf + 14,(unsigned int)r - 14);
 						data.copyFrom(getBuf + 14,(unsigned int)r - 14);
-						_handler(_arg,from,to,etherType,data);
+						// TODO: VLAN support
+						_handler(_arg,_nwid,from,to,etherType,0,(const void *)(getBuf + 14),r - 14);
 					}
 					}
 
 
 					r = 0;
 					r = 0;

+ 21 - 16
osdep/BSDEthernetTap.hpp

@@ -31,47 +31,52 @@
 #include <stdio.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <stdlib.h>
 
 
+#include <string>
+#include <vector>
 #include <stdexcept>
 #include <stdexcept>
 
 
-#include "EthernetTap.hpp"
+#include "../node/Constants.hpp"
+#include "../node/MulticastGroup.hpp"
+#include "../node/MAC.hpp"
 #include "Thread.hpp"
 #include "Thread.hpp"
 
 
 namespace ZeroTier {
 namespace ZeroTier {
 
 
-class BSDEthernetTap : public EthernetTap
+class BSDEthernetTap
 {
 {
 public:
 public:
 	BSDEthernetTap(
 	BSDEthernetTap(
+		const char *homePath,
 		const MAC &mac,
 		const MAC &mac,
 		unsigned int mtu,
 		unsigned int mtu,
 		unsigned int metric,
 		unsigned int metric,
 		uint64_t nwid,
 		uint64_t nwid,
-		const char *desiredDevice,
 		const char *friendlyName,
 		const char *friendlyName,
-		void (*handler)(void *,const MAC &,const MAC &,unsigned int,const Buffer<4096> &),
+		void (*handler)(void *,uint64_t,const MAC &,const MAC &,unsigned int,unsigned int,const void *,unsigned int),
 		void *arg);
 		void *arg);
 
 
-	virtual ~BSDEthernetTap();
+	~BSDEthernetTap();
 
 
-	virtual void setEnabled(bool en);
-	virtual bool enabled() const;
-	virtual bool addIP(const InetAddress &ip);
-	virtual bool removeIP(const InetAddress &ip);
-	virtual std::set<InetAddress> ips() const;
-	virtual void put(const MAC &from,const MAC &to,unsigned int etherType,const void *data,unsigned int len);
-	virtual std::string deviceName() const;
-	virtual void setFriendlyName(const char *friendlyName);
-	virtual bool updateMulticastGroups(std::set<MulticastGroup> &groups);
-	virtual bool injectPacketFromHost(const MAC &from,const MAC &to,unsigned int etherType,const void *data,unsigned int len);
+	void setEnabled(bool en);
+	bool enabled() const;
+	bool addIp(const InetAddress &ip);
+	bool removeIp(const InetAddress &ip);
+	std::vector<InetAddress> ips() const;
+	void put(const MAC &from,const MAC &to,unsigned int etherType,const void *data,unsigned int len);
+	std::string deviceName() const;
+	void setFriendlyName(const char *friendlyName);
+	void scanMulticastGroups(std::vector<MulticastGroup> &added,std::vector<MulticastGroup> &removed);
 
 
 	void threadMain()
 	void threadMain()
 		throw();
 		throw();
 
 
 private:
 private:
-	void (*_handler)(void *,const MAC &,const MAC &,unsigned int,const Buffer<4096> &);
+	void (*_handler)(void *,uint64_t,const MAC &,const MAC &,unsigned int,unsigned int,const void *,unsigned int);
 	void *_arg;
 	void *_arg;
+	uint64_t _nwid;
 	Thread _thread;
 	Thread _thread;
 	std::string _dev;
 	std::string _dev;
+	std::vector<MulticastGroup> _multicastGroups;
 	unsigned int _mtu;
 	unsigned int _mtu;
 	unsigned int _metric;
 	unsigned int _metric;
 	int _fd;
 	int _fd;