MacKextEthernetTap.cpp 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699
  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: 2025-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. ::close(_fd);
  392. ::close(_shutdownSignalPipe[0]);
  393. ::close(_shutdownSignalPipe[1]);
  394. {
  395. Mutex::Lock _gl(globalTapCreateLock);
  396. if (--globalTapsRunning <= 0) {
  397. globalTapsRunning = 0; // sanity check -- should not be possible
  398. char tmp[16384];
  399. sprintf(tmp,"%s/%s",_homePath.c_str(),"tap.kext");
  400. long kextpid = (long)fork();
  401. if (kextpid == 0) {
  402. OSUtils::redirectUnixOutputs("/dev/null",(const char *)0);
  403. ::execl("/sbin/kextunload","/sbin/kextunload",tmp,(const char *)0);
  404. ::_exit(-1);
  405. } else if (kextpid > 0) {
  406. int exitcode = -1;
  407. ::waitpid(kextpid,&exitcode,0);
  408. }
  409. }
  410. }
  411. }
  412. void MacKextEthernetTap::setEnabled(bool en)
  413. {
  414. _enabled = en;
  415. // TODO: interface status change
  416. }
  417. bool MacKextEthernetTap::enabled() const
  418. {
  419. return _enabled;
  420. }
  421. bool MacKextEthernetTap::addIp(const InetAddress &ip)
  422. {
  423. if (!ip)
  424. return false;
  425. long cpid = (long)fork();
  426. if (cpid == 0) {
  427. char tmp[128];
  428. ::execl("/sbin/ifconfig","/sbin/ifconfig",_dev.c_str(),(ip.ss_family == AF_INET6) ? "inet6" : "inet",ip.toString(tmp),"alias",(const char *)0);
  429. ::_exit(-1);
  430. } else if (cpid > 0) {
  431. int exitcode = -1;
  432. ::waitpid(cpid,&exitcode,0);
  433. return (exitcode == 0);
  434. } // else return false...
  435. return false;
  436. }
  437. bool MacKextEthernetTap::removeIp(const InetAddress &ip)
  438. {
  439. if (!ip)
  440. return true;
  441. std::vector<InetAddress> allIps(ips());
  442. for(std::vector<InetAddress>::iterator i(allIps.begin());i!=allIps.end();++i) {
  443. if (*i == ip) {
  444. long cpid = (long)fork();
  445. if (cpid == 0) {
  446. char tmp[128];
  447. execl("/sbin/ifconfig","/sbin/ifconfig",_dev.c_str(),(ip.ss_family == AF_INET6) ? "inet6" : "inet",ip.toIpString(tmp),"-alias",(const char *)0);
  448. _exit(-1);
  449. } else if (cpid > 0) {
  450. int exitcode = -1;
  451. waitpid(cpid,&exitcode,0);
  452. return (exitcode == 0);
  453. }
  454. }
  455. }
  456. return false;
  457. }
  458. std::vector<InetAddress> MacKextEthernetTap::ips() const
  459. {
  460. struct ifaddrs *ifa = (struct ifaddrs *)0;
  461. if (getifaddrs(&ifa))
  462. return std::vector<InetAddress>();
  463. std::vector<InetAddress> r;
  464. struct ifaddrs *p = ifa;
  465. while (p) {
  466. if ((!strcmp(p->ifa_name,_dev.c_str()))&&(p->ifa_addr)&&(p->ifa_netmask)&&(p->ifa_addr->sa_family == p->ifa_netmask->sa_family)) {
  467. switch(p->ifa_addr->sa_family) {
  468. case AF_INET: {
  469. struct sockaddr_in *sin = (struct sockaddr_in *)p->ifa_addr;
  470. struct sockaddr_in *nm = (struct sockaddr_in *)p->ifa_netmask;
  471. r.push_back(InetAddress(&(sin->sin_addr.s_addr),4,Utils::countBits((uint32_t)nm->sin_addr.s_addr)));
  472. } break;
  473. case AF_INET6: {
  474. struct sockaddr_in6 *sin = (struct sockaddr_in6 *)p->ifa_addr;
  475. struct sockaddr_in6 *nm = (struct sockaddr_in6 *)p->ifa_netmask;
  476. uint32_t b[4];
  477. memcpy(b,nm->sin6_addr.s6_addr,sizeof(b));
  478. 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])));
  479. } break;
  480. }
  481. }
  482. p = p->ifa_next;
  483. }
  484. if (ifa)
  485. freeifaddrs(ifa);
  486. std::sort(r.begin(),r.end());
  487. r.erase(std::unique(r.begin(),r.end()),r.end());
  488. return r;
  489. }
  490. void MacKextEthernetTap::put(const MAC &from,const MAC &to,unsigned int etherType,const void *data,unsigned int len)
  491. {
  492. char putBuf[ZT_MAX_MTU + 64];
  493. if ((_fd > 0)&&(len <= _mtu)&&(_enabled)) {
  494. to.copyTo(putBuf,6);
  495. from.copyTo(putBuf + 6,6);
  496. *((uint16_t *)(putBuf + 12)) = htons((uint16_t)etherType);
  497. memcpy(putBuf + 14,data,len);
  498. len += 14;
  499. ::write(_fd,putBuf,len);
  500. }
  501. }
  502. std::string MacKextEthernetTap::deviceName() const
  503. {
  504. return _dev;
  505. }
  506. void MacKextEthernetTap::setFriendlyName(const char *friendlyName)
  507. {
  508. }
  509. void MacKextEthernetTap::scanMulticastGroups(std::vector<MulticastGroup> &added,std::vector<MulticastGroup> &removed)
  510. {
  511. std::vector<MulticastGroup> newGroups;
  512. struct _intl_ifmaddrs *ifmap = (struct _intl_ifmaddrs *)0;
  513. if (!_intl_getifmaddrs(&ifmap)) {
  514. struct _intl_ifmaddrs *p = ifmap;
  515. while (p) {
  516. if (p->ifma_addr->sa_family == AF_LINK) {
  517. struct sockaddr_dl *in = (struct sockaddr_dl *)p->ifma_name;
  518. struct sockaddr_dl *la = (struct sockaddr_dl *)p->ifma_addr;
  519. if ((la->sdl_alen == 6)&&(in->sdl_nlen <= _dev.length())&&(!memcmp(_dev.data(),in->sdl_data,in->sdl_nlen)))
  520. newGroups.push_back(MulticastGroup(MAC(la->sdl_data + la->sdl_nlen,6),0));
  521. }
  522. p = p->ifma_next;
  523. }
  524. _intl_freeifmaddrs(ifmap);
  525. }
  526. std::vector<InetAddress> allIps(ips());
  527. for(std::vector<InetAddress>::iterator ip(allIps.begin());ip!=allIps.end();++ip)
  528. newGroups.push_back(MulticastGroup::deriveMulticastGroupForAddressResolution(*ip));
  529. std::sort(newGroups.begin(),newGroups.end());
  530. std::unique(newGroups.begin(),newGroups.end());
  531. for(std::vector<MulticastGroup>::iterator m(newGroups.begin());m!=newGroups.end();++m) {
  532. if (!std::binary_search(_multicastGroups.begin(),_multicastGroups.end(),*m))
  533. added.push_back(*m);
  534. }
  535. for(std::vector<MulticastGroup>::iterator m(_multicastGroups.begin());m!=_multicastGroups.end();++m) {
  536. if (!std::binary_search(newGroups.begin(),newGroups.end(),*m))
  537. removed.push_back(*m);
  538. }
  539. _multicastGroups.swap(newGroups);
  540. }
  541. void MacKextEthernetTap::setMtu(unsigned int mtu)
  542. {
  543. if (mtu != _mtu) {
  544. _mtu = mtu;
  545. long cpid = (long)fork();
  546. if (cpid == 0) {
  547. char tmp[64];
  548. OSUtils::ztsnprintf(tmp,sizeof(tmp),"%u",mtu);
  549. execl("/sbin/ifconfig","/sbin/ifconfig",_dev.c_str(),"mtu",tmp,(const char *)0);
  550. _exit(-1);
  551. } else if (cpid > 0) {
  552. int exitcode = -1;
  553. waitpid(cpid,&exitcode,0);
  554. }
  555. }
  556. }
  557. void MacKextEthernetTap::threadMain()
  558. throw()
  559. {
  560. fd_set readfds,nullfds;
  561. MAC to,from;
  562. int n,nfds,r;
  563. char getBuf[ZT_MAX_MTU + 64];
  564. Thread::sleep(500);
  565. FD_ZERO(&readfds);
  566. FD_ZERO(&nullfds);
  567. nfds = (int)std::max(_shutdownSignalPipe[0],_fd) + 1;
  568. r = 0;
  569. for(;;) {
  570. FD_SET(_shutdownSignalPipe[0],&readfds);
  571. FD_SET(_fd,&readfds);
  572. select(nfds,&readfds,&nullfds,&nullfds,(struct timeval *)0);
  573. if (FD_ISSET(_shutdownSignalPipe[0],&readfds)) // writes to shutdown pipe terminate thread
  574. break;
  575. if (FD_ISSET(_fd,&readfds)) {
  576. n = (int)::read(_fd,getBuf + r,sizeof(getBuf) - r);
  577. if (n < 0) {
  578. if ((errno != EINTR)&&(errno != ETIMEDOUT))
  579. break;
  580. } else {
  581. // Some tap drivers like to send the ethernet frame and the
  582. // payload in two chunks, so handle that by accumulating
  583. // data until we have at least a frame.
  584. r += n;
  585. if (r > 14) {
  586. if (r > ((int)_mtu + 14)) // sanity check for weird TAP behavior on some platforms
  587. r = _mtu + 14;
  588. if (_enabled) {
  589. to.setTo(getBuf,6);
  590. from.setTo(getBuf + 6,6);
  591. unsigned int etherType = ntohs(((const uint16_t *)getBuf)[6]);
  592. // TODO: VLAN support
  593. _handler(_arg,(void *)0,_nwid,from,to,etherType,0,(const void *)(getBuf + 14),r - 14);
  594. }
  595. r = 0;
  596. }
  597. }
  598. }
  599. }
  600. }
  601. void MacKextEthernetTap::setDns(const char *domain, const std::vector<InetAddress> &servers)
  602. {
  603. MacDNSHelper::setDNS(_nwid, domain, servers);
  604. }
  605. } // namespace ZeroTier