MacKextEthernetTap.cpp 18 KB

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