OSXEthernetTap.cpp 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659
  1. /*
  2. * ZeroTier One - Network Virtualization Everywhere
  3. * Copyright (C) 2011-2016 ZeroTier, Inc. https://www.zerotier.com/
  4. *
  5. * This program is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation, either version 3 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. #include <stdint.h>
  19. #include <stdio.h>
  20. #include <stdlib.h>
  21. #include <string.h>
  22. #include <errno.h>
  23. #include <unistd.h>
  24. #include <signal.h>
  25. #include <fcntl.h>
  26. #include <sys/types.h>
  27. #include <sys/stat.h>
  28. #include <sys/ioctl.h>
  29. #include <sys/wait.h>
  30. #include <sys/select.h>
  31. #include <sys/cdefs.h>
  32. #include <sys/uio.h>
  33. #include <sys/param.h>
  34. #include <sys/sysctl.h>
  35. #include <sys/ioctl.h>
  36. #include <sys/socket.h>
  37. #include <netinet/in.h>
  38. #include <arpa/inet.h>
  39. #include <net/route.h>
  40. #include <net/if.h>
  41. #include <net/if_arp.h>
  42. #include <net/if_dl.h>
  43. #include <net/if_media.h>
  44. #include <netinet6/in6_var.h>
  45. #include <netinet/in_var.h>
  46. #include <netinet/icmp6.h>
  47. // OSX compile fix... in6_var defines this in a struct which namespaces it for C++ ... why?!?
  48. struct prf_ra {
  49. u_char onlink : 1;
  50. u_char autonomous : 1;
  51. u_char reserved : 6;
  52. } prf_ra;
  53. #include <netinet6/nd6.h>
  54. #include <ifaddrs.h>
  55. // These are KERNEL_PRIVATE... why?
  56. #ifndef SIOCAUTOCONF_START
  57. #define SIOCAUTOCONF_START _IOWR('i', 132, struct in6_ifreq) /* accept rtadvd on this interface */
  58. #endif
  59. #ifndef SIOCAUTOCONF_STOP
  60. #define SIOCAUTOCONF_STOP _IOWR('i', 133, struct in6_ifreq) /* stop accepting rtadv for this interface */
  61. #endif
  62. // --------------------------------------------------------------------------
  63. // --------------------------------------------------------------------------
  64. // This source is from:
  65. // http://www.opensource.apple.com/source/Libinfo/Libinfo-406.17/gen.subproj/getifmaddrs.c?txt
  66. // It's here because OSX 10.6 does not have this convenience function.
  67. #define SALIGN (sizeof(uint32_t) - 1)
  68. #define SA_RLEN(sa) ((sa)->sa_len ? (((sa)->sa_len + SALIGN) & ~SALIGN) : \
  69. (SALIGN + 1))
  70. #define MAX_SYSCTL_TRY 5
  71. #define RTA_MASKS (RTA_GATEWAY | RTA_IFP | RTA_IFA)
  72. /* FreeBSD uses NET_RT_IFMALIST and RTM_NEWMADDR from <sys/socket.h> */
  73. /* We can use NET_RT_IFLIST2 and RTM_NEWMADDR2 on Darwin */
  74. //#define DARWIN_COMPAT
  75. //#ifdef DARWIN_COMPAT
  76. #define GIM_SYSCTL_MIB NET_RT_IFLIST2
  77. #define GIM_RTM_ADDR RTM_NEWMADDR2
  78. //#else
  79. //#define GIM_SYSCTL_MIB NET_RT_IFMALIST
  80. //#define GIM_RTM_ADDR RTM_NEWMADDR
  81. //#endif
  82. // Not in 10.6 includes so use our own
  83. struct _intl_ifmaddrs {
  84. struct _intl_ifmaddrs *ifma_next;
  85. struct sockaddr *ifma_name;
  86. struct sockaddr *ifma_addr;
  87. struct sockaddr *ifma_lladdr;
  88. };
  89. static inline int _intl_getifmaddrs(struct _intl_ifmaddrs **pif)
  90. {
  91. int icnt = 1;
  92. int dcnt = 0;
  93. int ntry = 0;
  94. size_t len;
  95. size_t needed;
  96. int mib[6];
  97. int i;
  98. char *buf;
  99. char *data;
  100. char *next;
  101. char *p;
  102. struct ifma_msghdr2 *ifmam;
  103. struct _intl_ifmaddrs *ifa, *ift;
  104. struct rt_msghdr *rtm;
  105. struct sockaddr *sa;
  106. mib[0] = CTL_NET;
  107. mib[1] = PF_ROUTE;
  108. mib[2] = 0; /* protocol */
  109. mib[3] = 0; /* wildcard address family */
  110. mib[4] = GIM_SYSCTL_MIB;
  111. mib[5] = 0; /* no flags */
  112. do {
  113. if (sysctl(mib, 6, NULL, &needed, NULL, 0) < 0)
  114. return (-1);
  115. if ((buf = (char *)malloc(needed)) == NULL)
  116. return (-1);
  117. if (sysctl(mib, 6, buf, &needed, NULL, 0) < 0) {
  118. if (errno != ENOMEM || ++ntry >= MAX_SYSCTL_TRY) {
  119. free(buf);
  120. return (-1);
  121. }
  122. free(buf);
  123. buf = NULL;
  124. }
  125. } while (buf == NULL);
  126. for (next = buf; next < buf + needed; next += rtm->rtm_msglen) {
  127. rtm = (struct rt_msghdr *)(void *)next;
  128. if (rtm->rtm_version != RTM_VERSION)
  129. continue;
  130. switch (rtm->rtm_type) {
  131. case GIM_RTM_ADDR:
  132. ifmam = (struct ifma_msghdr2 *)(void *)rtm;
  133. if ((ifmam->ifmam_addrs & RTA_IFA) == 0)
  134. break;
  135. icnt++;
  136. p = (char *)(ifmam + 1);
  137. for (i = 0; i < RTAX_MAX; i++) {
  138. if ((RTA_MASKS & ifmam->ifmam_addrs &
  139. (1 << i)) == 0)
  140. continue;
  141. sa = (struct sockaddr *)(void *)p;
  142. len = SA_RLEN(sa);
  143. dcnt += len;
  144. p += len;
  145. }
  146. break;
  147. }
  148. }
  149. data = (char *)malloc(sizeof(struct _intl_ifmaddrs) * icnt + dcnt);
  150. if (data == NULL) {
  151. free(buf);
  152. return (-1);
  153. }
  154. ifa = (struct _intl_ifmaddrs *)(void *)data;
  155. data += sizeof(struct _intl_ifmaddrs) * icnt;
  156. memset(ifa, 0, sizeof(struct _intl_ifmaddrs) * icnt);
  157. ift = ifa;
  158. for (next = buf; next < buf + needed; next += rtm->rtm_msglen) {
  159. rtm = (struct rt_msghdr *)(void *)next;
  160. if (rtm->rtm_version != RTM_VERSION)
  161. continue;
  162. switch (rtm->rtm_type) {
  163. case GIM_RTM_ADDR:
  164. ifmam = (struct ifma_msghdr2 *)(void *)rtm;
  165. if ((ifmam->ifmam_addrs & RTA_IFA) == 0)
  166. break;
  167. p = (char *)(ifmam + 1);
  168. for (i = 0; i < RTAX_MAX; i++) {
  169. if ((RTA_MASKS & ifmam->ifmam_addrs &
  170. (1 << i)) == 0)
  171. continue;
  172. sa = (struct sockaddr *)(void *)p;
  173. len = SA_RLEN(sa);
  174. switch (i) {
  175. case RTAX_GATEWAY:
  176. ift->ifma_lladdr =
  177. (struct sockaddr *)(void *)data;
  178. memcpy(data, p, len);
  179. data += len;
  180. break;
  181. case RTAX_IFP:
  182. ift->ifma_name =
  183. (struct sockaddr *)(void *)data;
  184. memcpy(data, p, len);
  185. data += len;
  186. break;
  187. case RTAX_IFA:
  188. ift->ifma_addr =
  189. (struct sockaddr *)(void *)data;
  190. memcpy(data, p, len);
  191. data += len;
  192. break;
  193. default:
  194. data += len;
  195. break;
  196. }
  197. p += len;
  198. }
  199. ift->ifma_next = ift + 1;
  200. ift = ift->ifma_next;
  201. break;
  202. }
  203. }
  204. free(buf);
  205. if (ift > ifa) {
  206. ift--;
  207. ift->ifma_next = NULL;
  208. *pif = ifa;
  209. } else {
  210. *pif = NULL;
  211. free(ifa);
  212. }
  213. return (0);
  214. }
  215. static inline void _intl_freeifmaddrs(struct _intl_ifmaddrs *ifmp)
  216. {
  217. free(ifmp);
  218. }
  219. // --------------------------------------------------------------------------
  220. // --------------------------------------------------------------------------
  221. #include <string>
  222. #include <map>
  223. #include <set>
  224. #include <algorithm>
  225. #include "../node/Constants.hpp"
  226. #include "../node/Utils.hpp"
  227. #include "../node/Mutex.hpp"
  228. #include "../node/Dictionary.hpp"
  229. #include "OSUtils.hpp"
  230. #include "OSXEthernetTap.hpp"
  231. // ff:ff:ff:ff:ff:ff with no ADI
  232. static const ZeroTier::MulticastGroup _blindWildcardMulticastGroup(ZeroTier::MAC(0xff),0);
  233. static inline bool _setIpv6Stuff(const char *ifname,bool performNUD,bool acceptRouterAdverts)
  234. {
  235. struct in6_ndireq nd;
  236. struct in6_ifreq ifr;
  237. int s = socket(AF_INET6,SOCK_DGRAM,0);
  238. if (s <= 0)
  239. return false;
  240. memset(&nd,0,sizeof(nd));
  241. strncpy(nd.ifname,ifname,sizeof(nd.ifname));
  242. if (ioctl(s,SIOCGIFINFO_IN6,&nd)) {
  243. close(s);
  244. return false;
  245. }
  246. unsigned long oldFlags = (unsigned long)nd.ndi.flags;
  247. if (performNUD)
  248. nd.ndi.flags |= ND6_IFF_PERFORMNUD;
  249. else nd.ndi.flags &= ~ND6_IFF_PERFORMNUD;
  250. if (oldFlags != (unsigned long)nd.ndi.flags) {
  251. if (ioctl(s,SIOCSIFINFO_FLAGS,&nd)) {
  252. close(s);
  253. return false;
  254. }
  255. }
  256. memset(&ifr,0,sizeof(ifr));
  257. strncpy(ifr.ifr_name,ifname,sizeof(ifr.ifr_name));
  258. if (ioctl(s,acceptRouterAdverts ? SIOCAUTOCONF_START : SIOCAUTOCONF_STOP,&ifr)) {
  259. close(s);
  260. return false;
  261. }
  262. close(s);
  263. return true;
  264. }
  265. namespace ZeroTier {
  266. static long globalTapsRunning = 0;
  267. static Mutex globalTapCreateLock;
  268. OSXEthernetTap::OSXEthernetTap(
  269. const char *homePath,
  270. const MAC &mac,
  271. unsigned int mtu,
  272. unsigned int metric,
  273. uint64_t nwid,
  274. const char *friendlyName,
  275. void (*handler)(void *,uint64_t,const MAC &,const MAC &,unsigned int,unsigned int,const void *data,unsigned int len),
  276. void *arg) :
  277. _handler(handler),
  278. _arg(arg),
  279. _nwid(nwid),
  280. _homePath(homePath),
  281. _mtu(mtu),
  282. _metric(metric),
  283. _fd(0),
  284. _enabled(true)
  285. {
  286. char devpath[64],ethaddr[64],mtustr[32],metstr[32],nwids[32];
  287. struct stat stattmp;
  288. Utils::snprintf(nwids,sizeof(nwids),"%.16llx",nwid);
  289. if (mtu > 2800)
  290. throw std::runtime_error("max tap MTU is 2800");
  291. Mutex::Lock _gl(globalTapCreateLock);
  292. if (::stat("/dev/zt0",&stattmp)) {
  293. long kextpid = (long)vfork();
  294. if (kextpid == 0) {
  295. ::chdir(homePath);
  296. OSUtils::redirectUnixOutputs("/dev/null",(const char *)0);
  297. ::execl("/sbin/kextload","/sbin/kextload","-q","-repository",homePath,"tap.kext",(const char *)0);
  298. ::_exit(-1);
  299. } else if (kextpid > 0) {
  300. int exitcode = -1;
  301. ::waitpid(kextpid,&exitcode,0);
  302. }
  303. ::usleep(500); // give tap device driver time to start up and try again
  304. if (::stat("/dev/zt0",&stattmp))
  305. throw std::runtime_error("/dev/zt# tap devices do not exist and cannot load tap.kext");
  306. }
  307. // Try to reopen the last device we had, if we had one and it's still unused.
  308. bool recalledDevice = false;
  309. std::string devmapbuf;
  310. Dictionary devmap;
  311. if (OSUtils::readFile((_homePath + ZT_PATH_SEPARATOR_S + "devicemap").c_str(),devmapbuf)) {
  312. devmap.fromString(devmapbuf);
  313. std::string desiredDevice(devmap.get(nwids,""));
  314. if (desiredDevice.length() > 2) {
  315. Utils::snprintf(devpath,sizeof(devpath),"/dev/%s",desiredDevice.c_str());
  316. if (stat(devpath,&stattmp) == 0) {
  317. _fd = ::open(devpath,O_RDWR);
  318. if (_fd > 0) {
  319. _dev = desiredDevice;
  320. recalledDevice = true;
  321. }
  322. }
  323. }
  324. }
  325. // Open the first unused tap device if we didn't recall a previous one.
  326. if (!recalledDevice) {
  327. for(int i=0;i<64;++i) {
  328. Utils::snprintf(devpath,sizeof(devpath),"/dev/zt%d",i);
  329. if (stat(devpath,&stattmp))
  330. throw std::runtime_error("no more TAP devices available");
  331. _fd = ::open(devpath,O_RDWR);
  332. if (_fd > 0) {
  333. char foo[16];
  334. Utils::snprintf(foo,sizeof(foo),"zt%d",i);
  335. _dev = foo;
  336. break;
  337. }
  338. }
  339. }
  340. if (_fd <= 0)
  341. throw std::runtime_error("unable to open TAP device or no more devices available");
  342. if (fcntl(_fd,F_SETFL,fcntl(_fd,F_GETFL) & ~O_NONBLOCK) == -1) {
  343. ::close(_fd);
  344. throw std::runtime_error("unable to set flags on file descriptor for TAP device");
  345. }
  346. // Configure MAC address and MTU, bring interface up
  347. 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]);
  348. Utils::snprintf(mtustr,sizeof(mtustr),"%u",_mtu);
  349. Utils::snprintf(metstr,sizeof(metstr),"%u",_metric);
  350. long cpid = (long)vfork();
  351. if (cpid == 0) {
  352. ::execl("/sbin/ifconfig","/sbin/ifconfig",_dev.c_str(),"lladdr",ethaddr,"mtu",mtustr,"metric",metstr,"up",(const char *)0);
  353. ::_exit(-1);
  354. } else if (cpid > 0) {
  355. int exitcode = -1;
  356. ::waitpid(cpid,&exitcode,0);
  357. if (exitcode) {
  358. ::close(_fd);
  359. throw std::runtime_error("ifconfig failure setting link-layer address and activating tap interface");
  360. }
  361. }
  362. _setIpv6Stuff(_dev.c_str(),true,false);
  363. // Set close-on-exec so that devices cannot persist if we fork/exec for update
  364. fcntl(_fd,F_SETFD,fcntl(_fd,F_GETFD) | FD_CLOEXEC);
  365. ::pipe(_shutdownSignalPipe);
  366. ++globalTapsRunning;
  367. devmap[nwids] = _dev;
  368. OSUtils::writeFile((_homePath + ZT_PATH_SEPARATOR_S + "devicemap").c_str(),devmap.toString());
  369. _thread = Thread::start(this);
  370. }
  371. OSXEthernetTap::~OSXEthernetTap()
  372. {
  373. ::write(_shutdownSignalPipe[1],"\0",1); // causes thread to exit
  374. Thread::join(_thread);
  375. ::close(_fd);
  376. ::close(_shutdownSignalPipe[0]);
  377. ::close(_shutdownSignalPipe[1]);
  378. {
  379. Mutex::Lock _gl(globalTapCreateLock);
  380. if (--globalTapsRunning <= 0) {
  381. globalTapsRunning = 0; // sanity check -- should not be possible
  382. char tmp[16384];
  383. sprintf(tmp,"%s/%s",_homePath.c_str(),"tap.kext");
  384. long kextpid = (long)vfork();
  385. if (kextpid == 0) {
  386. OSUtils::redirectUnixOutputs("/dev/null",(const char *)0);
  387. ::execl("/sbin/kextunload","/sbin/kextunload",tmp,(const char *)0);
  388. ::_exit(-1);
  389. } else if (kextpid > 0) {
  390. int exitcode = -1;
  391. ::waitpid(kextpid,&exitcode,0);
  392. }
  393. }
  394. }
  395. }
  396. void OSXEthernetTap::setEnabled(bool en)
  397. {
  398. _enabled = en;
  399. // TODO: interface status change
  400. }
  401. bool OSXEthernetTap::enabled() const
  402. {
  403. return _enabled;
  404. }
  405. bool OSXEthernetTap::addIp(const InetAddress &ip)
  406. {
  407. if (!ip)
  408. return false;
  409. long cpid = (long)vfork();
  410. if (cpid == 0) {
  411. ::execl("/sbin/ifconfig","/sbin/ifconfig",_dev.c_str(),ip.isV4() ? "inet" : "inet6",ip.toString().c_str(),"alias",(const char *)0);
  412. ::_exit(-1);
  413. } else if (cpid > 0) {
  414. int exitcode = -1;
  415. ::waitpid(cpid,&exitcode,0);
  416. return (exitcode == 0);
  417. } // else return false...
  418. return false;
  419. }
  420. bool OSXEthernetTap::removeIp(const InetAddress &ip)
  421. {
  422. if (!ip)
  423. return true;
  424. std::vector<InetAddress> allIps(ips());
  425. for(std::vector<InetAddress>::iterator i(allIps.begin());i!=allIps.end();++i) {
  426. if (*i == ip) {
  427. long cpid = (long)vfork();
  428. if (cpid == 0) {
  429. execl("/sbin/ifconfig","/sbin/ifconfig",_dev.c_str(),"inet",ip.toIpString().c_str(),"-alias",(const char *)0);
  430. _exit(-1);
  431. } else if (cpid > 0) {
  432. int exitcode = -1;
  433. waitpid(cpid,&exitcode,0);
  434. return (exitcode == 0);
  435. }
  436. }
  437. }
  438. return false;
  439. }
  440. std::vector<InetAddress> OSXEthernetTap::ips() const
  441. {
  442. struct ifaddrs *ifa = (struct ifaddrs *)0;
  443. if (getifaddrs(&ifa))
  444. return std::vector<InetAddress>();
  445. std::vector<InetAddress> r;
  446. struct ifaddrs *p = ifa;
  447. while (p) {
  448. if ((!strcmp(p->ifa_name,_dev.c_str()))&&(p->ifa_addr)&&(p->ifa_netmask)&&(p->ifa_addr->sa_family == p->ifa_netmask->sa_family)) {
  449. switch(p->ifa_addr->sa_family) {
  450. case AF_INET: {
  451. struct sockaddr_in *sin = (struct sockaddr_in *)p->ifa_addr;
  452. struct sockaddr_in *nm = (struct sockaddr_in *)p->ifa_netmask;
  453. r.push_back(InetAddress(&(sin->sin_addr.s_addr),4,Utils::countBits((uint32_t)nm->sin_addr.s_addr)));
  454. } break;
  455. case AF_INET6: {
  456. struct sockaddr_in6 *sin = (struct sockaddr_in6 *)p->ifa_addr;
  457. struct sockaddr_in6 *nm = (struct sockaddr_in6 *)p->ifa_netmask;
  458. uint32_t b[4];
  459. memcpy(b,nm->sin6_addr.s6_addr,sizeof(b));
  460. 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])));
  461. } break;
  462. }
  463. }
  464. p = p->ifa_next;
  465. }
  466. if (ifa)
  467. freeifaddrs(ifa);
  468. std::sort(r.begin(),r.end());
  469. r.erase(std::unique(r.begin(),r.end()),r.end());
  470. return r;
  471. }
  472. void OSXEthernetTap::put(const MAC &from,const MAC &to,unsigned int etherType,const void *data,unsigned int len)
  473. {
  474. char putBuf[4096];
  475. if ((_fd > 0)&&(len <= _mtu)&&(_enabled)) {
  476. to.copyTo(putBuf,6);
  477. from.copyTo(putBuf + 6,6);
  478. *((uint16_t *)(putBuf + 12)) = htons((uint16_t)etherType);
  479. memcpy(putBuf + 14,data,len);
  480. len += 14;
  481. ::write(_fd,putBuf,len);
  482. }
  483. }
  484. std::string OSXEthernetTap::deviceName() const
  485. {
  486. return _dev;
  487. }
  488. void OSXEthernetTap::setFriendlyName(const char *friendlyName)
  489. {
  490. }
  491. void OSXEthernetTap::scanMulticastGroups(std::vector<MulticastGroup> &added,std::vector<MulticastGroup> &removed)
  492. {
  493. std::vector<MulticastGroup> newGroups;
  494. struct _intl_ifmaddrs *ifmap = (struct _intl_ifmaddrs *)0;
  495. if (!_intl_getifmaddrs(&ifmap)) {
  496. struct _intl_ifmaddrs *p = ifmap;
  497. while (p) {
  498. if (p->ifma_addr->sa_family == AF_LINK) {
  499. struct sockaddr_dl *in = (struct sockaddr_dl *)p->ifma_name;
  500. struct sockaddr_dl *la = (struct sockaddr_dl *)p->ifma_addr;
  501. if ((la->sdl_alen == 6)&&(in->sdl_nlen <= _dev.length())&&(!memcmp(_dev.data(),in->sdl_data,in->sdl_nlen)))
  502. newGroups.push_back(MulticastGroup(MAC(la->sdl_data + la->sdl_nlen,6),0));
  503. }
  504. p = p->ifma_next;
  505. }
  506. _intl_freeifmaddrs(ifmap);
  507. }
  508. std::vector<InetAddress> allIps(ips());
  509. for(std::vector<InetAddress>::iterator ip(allIps.begin());ip!=allIps.end();++ip)
  510. newGroups.push_back(MulticastGroup::deriveMulticastGroupForAddressResolution(*ip));
  511. std::sort(newGroups.begin(),newGroups.end());
  512. std::unique(newGroups.begin(),newGroups.end());
  513. for(std::vector<MulticastGroup>::iterator m(newGroups.begin());m!=newGroups.end();++m) {
  514. if (!std::binary_search(_multicastGroups.begin(),_multicastGroups.end(),*m))
  515. added.push_back(*m);
  516. }
  517. for(std::vector<MulticastGroup>::iterator m(_multicastGroups.begin());m!=_multicastGroups.end();++m) {
  518. if (!std::binary_search(newGroups.begin(),newGroups.end(),*m))
  519. removed.push_back(*m);
  520. }
  521. _multicastGroups.swap(newGroups);
  522. }
  523. void OSXEthernetTap::threadMain()
  524. throw()
  525. {
  526. fd_set readfds,nullfds;
  527. MAC to,from;
  528. int n,nfds,r;
  529. char getBuf[8194];
  530. Thread::sleep(500);
  531. FD_ZERO(&readfds);
  532. FD_ZERO(&nullfds);
  533. nfds = (int)std::max(_shutdownSignalPipe[0],_fd) + 1;
  534. r = 0;
  535. for(;;) {
  536. FD_SET(_shutdownSignalPipe[0],&readfds);
  537. FD_SET(_fd,&readfds);
  538. select(nfds,&readfds,&nullfds,&nullfds,(struct timeval *)0);
  539. if (FD_ISSET(_shutdownSignalPipe[0],&readfds)) // writes to shutdown pipe terminate thread
  540. break;
  541. if (FD_ISSET(_fd,&readfds)) {
  542. n = (int)::read(_fd,getBuf + r,sizeof(getBuf) - r);
  543. if (n < 0) {
  544. if ((errno != EINTR)&&(errno != ETIMEDOUT))
  545. break;
  546. } else {
  547. // Some tap drivers like to send the ethernet frame and the
  548. // payload in two chunks, so handle that by accumulating
  549. // data until we have at least a frame.
  550. r += n;
  551. if (r > 14) {
  552. if (r > ((int)_mtu + 14)) // sanity check for weird TAP behavior on some platforms
  553. r = _mtu + 14;
  554. if (_enabled) {
  555. to.setTo(getBuf,6);
  556. from.setTo(getBuf + 6,6);
  557. unsigned int etherType = ntohs(((const uint16_t *)getBuf)[6]);
  558. // TODO: VLAN support
  559. _handler(_arg,_nwid,from,to,etherType,0,(const void *)(getBuf + 14),r - 14);
  560. }
  561. r = 0;
  562. }
  563. }
  564. }
  565. }
  566. }
  567. } // namespace ZeroTier