tcp-proxy.cpp 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  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. // HACK! Will eventually use epoll() or something in Phy<> instead of select().
  19. // Also be sure to change ulimit -n and fs.file-max in /etc/sysctl.conf on relays.
  20. #if defined(__linux__) || defined(__LINUX__) || defined(__LINUX) || defined(LINUX)
  21. #include <linux/posix_types.h>
  22. #include <bits/types.h>
  23. #undef __FD_SETSIZE
  24. #define __FD_SETSIZE 1048576
  25. #undef FD_SETSIZE
  26. #define FD_SETSIZE 1048576
  27. #endif
  28. #include <stdio.h>
  29. #include <stdlib.h>
  30. #include <string.h>
  31. #include <time.h>
  32. #include <stdint.h>
  33. #include <unistd.h>
  34. #include <signal.h>
  35. #include <map>
  36. #include <set>
  37. #include <string>
  38. #include <algorithm>
  39. #include <vector>
  40. #include "../osdep/Phy.hpp"
  41. #include "../node/Metrics.hpp"
  42. #define ZT_TCP_PROXY_CONNECTION_TIMEOUT_SECONDS 300
  43. #define ZT_TCP_PROXY_TCP_PORT 443
  44. using namespace ZeroTier;
  45. /*
  46. * ZeroTier TCP Proxy Server
  47. *
  48. * This implements a simple packet encapsulation that is designed to look like
  49. * a TLS connection. It's not a TLS connection, but it sends TLS format record
  50. * headers. It could be extended in the future to implement a fake TLS
  51. * handshake.
  52. *
  53. * At the moment, each packet is just made to look like TLS application data:
  54. * <[1] TLS content type> - currently 0x17 for "application data"
  55. * <[1] TLS major version> - currently 0x03 for TLS 1.2
  56. * <[1] TLS minor version> - currently 0x03 for TLS 1.2
  57. * <[2] payload length> - 16-bit length of payload in bytes
  58. * <[...] payload> - Message payload
  59. *
  60. * TCP is inherently inefficient for encapsulating Ethernet, since TCP and TCP
  61. * like protocols over TCP lead to double-ACKs. So this transport is only used
  62. * to enable access when UDP or other datagram protocols are not available.
  63. *
  64. * Clients send a greeting, which is a four-byte message that contains:
  65. * <[1] ZeroTier major version>
  66. * <[1] minor version>
  67. * <[2] revision>
  68. *
  69. * If a client has sent a greeting, it uses the new version of this protocol
  70. * in which every encapsulated ZT packet is prepended by an IP address where
  71. * it should be forwarded (or where it came from for replies). This causes
  72. * this proxy to act as a remote UDP socket similar to a socks proxy, which
  73. * will allow us to move this function off the rootservers and onto dedicated
  74. * proxy nodes.
  75. *
  76. * Older ZT clients that do not send this message get their packets relayed
  77. * to/from 127.0.0.1:9993, which will allow them to talk to and relay via
  78. * the ZT node on the same machine as the proxy. We'll only support this for
  79. * as long as such nodes appear to be in the wild.
  80. */
  81. struct TcpProxyService;
  82. struct TcpProxyService
  83. {
  84. Phy<TcpProxyService *> *phy;
  85. int udpPortCounter;
  86. struct Client
  87. {
  88. char tcpReadBuf[131072];
  89. char tcpWriteBuf[131072];
  90. unsigned long tcpWritePtr;
  91. unsigned long tcpReadPtr;
  92. PhySocket *tcp;
  93. PhySocket *udp;
  94. time_t lastActivity;
  95. bool newVersion;
  96. };
  97. std::map< PhySocket *,Client > clients;
  98. PhySocket *getUnusedUdp(void *uptr)
  99. {
  100. for(int i=0;i<65535;++i) {
  101. ++udpPortCounter;
  102. if (udpPortCounter > 0xfffe)
  103. udpPortCounter = 1024;
  104. struct sockaddr_in laddr;
  105. memset(&laddr,0,sizeof(struct sockaddr_in));
  106. laddr.sin_family = AF_INET;
  107. laddr.sin_port = htons((uint16_t)udpPortCounter);
  108. PhySocket *udp = phy->udpBind(reinterpret_cast<struct sockaddr *>(&laddr),uptr);
  109. if (udp)
  110. return udp;
  111. }
  112. return (PhySocket *)0;
  113. }
  114. void phyOnDatagram(PhySocket *sock,void **uptr,const struct sockaddr *localAddr,const struct sockaddr *from,void *data,unsigned long len)
  115. {
  116. if (!*uptr)
  117. return;
  118. if ((from->sa_family == AF_INET)&&(len >= 16)&&(len < 2048)) {
  119. Client &c = *((Client *)*uptr);
  120. c.lastActivity = time((time_t *)0);
  121. unsigned long mlen = len;
  122. if (c.newVersion)
  123. mlen += 7; // new clients get IP info
  124. if ((c.tcpWritePtr + 5 + mlen) <= sizeof(c.tcpWriteBuf)) {
  125. if (!c.tcpWritePtr)
  126. phy->setNotifyWritable(c.tcp,true);
  127. c.tcpWriteBuf[c.tcpWritePtr++] = 0x17; // look like TLS data
  128. c.tcpWriteBuf[c.tcpWritePtr++] = 0x03; // look like TLS 1.2
  129. c.tcpWriteBuf[c.tcpWritePtr++] = 0x03; // look like TLS 1.2
  130. c.tcpWriteBuf[c.tcpWritePtr++] = (char)((mlen >> 8) & 0xff);
  131. c.tcpWriteBuf[c.tcpWritePtr++] = (char)(mlen & 0xff);
  132. if (c.newVersion) {
  133. c.tcpWriteBuf[c.tcpWritePtr++] = (char)4; // IPv4
  134. *((uint32_t *)(c.tcpWriteBuf + c.tcpWritePtr)) = ((const struct sockaddr_in *)from)->sin_addr.s_addr;
  135. c.tcpWritePtr += 4;
  136. *((uint16_t *)(c.tcpWriteBuf + c.tcpWritePtr)) = ((const struct sockaddr_in *)from)->sin_port;
  137. c.tcpWritePtr += 2;
  138. }
  139. for(unsigned long i=0;i<len;++i)
  140. c.tcpWriteBuf[c.tcpWritePtr++] = ((const char *)data)[i];
  141. }
  142. printf("<< UDP %s:%d -> %.16llx\n",inet_ntoa(reinterpret_cast<const struct sockaddr_in *>(from)->sin_addr),(int)ntohs(reinterpret_cast<const struct sockaddr_in *>(from)->sin_port),(unsigned long long)&c);
  143. }
  144. }
  145. void phyOnTcpConnect(PhySocket *sock,void **uptr,bool success)
  146. {
  147. // unused, we don't initiate outbound connections
  148. }
  149. void phyOnTcpAccept(PhySocket *sockL,PhySocket *sockN,void **uptrL,void **uptrN,const struct sockaddr *from)
  150. {
  151. Client &c = clients[sockN];
  152. PhySocket *udp = getUnusedUdp((void *)&c);
  153. if (!udp) {
  154. phy->close(sockN);
  155. clients.erase(sockN);
  156. printf("** TCP rejected, no more UDP ports to assign\n");
  157. return;
  158. }
  159. c.tcpWritePtr = 0;
  160. c.tcpReadPtr = 0;
  161. c.tcp = sockN;
  162. c.udp = udp;
  163. c.lastActivity = time((time_t *)0);
  164. c.newVersion = false;
  165. *uptrN = (void *)&c;
  166. printf("<< TCP from %s -> %.16llx\n",inet_ntoa(reinterpret_cast<const struct sockaddr_in *>(from)->sin_addr),(unsigned long long)&c);
  167. }
  168. void phyOnTcpClose(PhySocket *sock,void **uptr)
  169. {
  170. if (!*uptr)
  171. return;
  172. Client &c = *((Client *)*uptr);
  173. phy->close(c.udp);
  174. clients.erase(sock);
  175. printf("** TCP %.16llx closed\n",(unsigned long long)*uptr);
  176. }
  177. void phyOnTcpData(PhySocket *sock,void **uptr,void *data,unsigned long len)
  178. {
  179. Client &c = *((Client *)*uptr);
  180. c.lastActivity = time((time_t *)0);
  181. for(unsigned long i=0;i<len;++i) {
  182. if (c.tcpReadPtr >= sizeof(c.tcpReadBuf)) {
  183. phy->close(sock);
  184. return;
  185. }
  186. c.tcpReadBuf[c.tcpReadPtr++] = ((const char *)data)[i];
  187. if (c.tcpReadPtr >= 5) {
  188. unsigned long mlen = ( ((((unsigned long)c.tcpReadBuf[3]) & 0xff) << 8) | (((unsigned long)c.tcpReadBuf[4]) & 0xff) );
  189. if (c.tcpReadPtr >= (mlen + 5)) {
  190. if (mlen == 4) {
  191. // Right now just sending this means the client is 'new enough' for the IP header
  192. c.newVersion = true;
  193. printf("<< TCP %.16llx HELLO\n",(unsigned long long)*uptr);
  194. } else if (mlen >= 7) {
  195. char *payload = c.tcpReadBuf + 5;
  196. unsigned long payloadLen = mlen;
  197. struct sockaddr_in dest;
  198. memset(&dest,0,sizeof(dest));
  199. if (c.newVersion) {
  200. if (*payload == (char)4) {
  201. // New clients tell us where their packets go.
  202. ++payload;
  203. dest.sin_family = AF_INET;
  204. dest.sin_addr.s_addr = *((uint32_t *)payload);
  205. payload += 4;
  206. dest.sin_port = *((uint16_t *)payload); // will be in network byte order already
  207. payload += 2;
  208. payloadLen -= 7;
  209. }
  210. } else {
  211. // For old clients we will just proxy everything to a local ZT instance. The
  212. // fact that this will come from 127.0.0.1 will in turn prevent that instance
  213. // from doing unite() with us. It'll just forward. There will not be many of
  214. // these.
  215. dest.sin_family = AF_INET;
  216. dest.sin_addr.s_addr = htonl(0x7f000001); // 127.0.0.1
  217. dest.sin_port = htons(9993);
  218. }
  219. // Note: we do not relay to privileged ports... just an abuse prevention rule.
  220. if ((ntohs(dest.sin_port) > 1024)&&(payloadLen >= 16)) {
  221. phy->udpSend(c.udp,(const struct sockaddr *)&dest,payload,payloadLen);
  222. printf(">> TCP %.16llx to %s:%d\n",(unsigned long long)*uptr,inet_ntoa(dest.sin_addr),(int)ntohs(dest.sin_port));
  223. }
  224. }
  225. memmove(c.tcpReadBuf,c.tcpReadBuf + (mlen + 5),c.tcpReadPtr -= (mlen + 5));
  226. }
  227. }
  228. }
  229. }
  230. void phyOnTcpWritable(PhySocket *sock,void **uptr)
  231. {
  232. Client &c = *((Client *)*uptr);
  233. if (c.tcpWritePtr) {
  234. long n = phy->streamSend(sock,c.tcpWriteBuf,c.tcpWritePtr);
  235. if (n > 0) {
  236. memmove(c.tcpWriteBuf,c.tcpWriteBuf + n,c.tcpWritePtr -= (unsigned long)n);
  237. if (!c.tcpWritePtr)
  238. phy->setNotifyWritable(sock,false);
  239. }
  240. } else phy->setNotifyWritable(sock,false);
  241. }
  242. void doHousekeeping()
  243. {
  244. std::vector<PhySocket *> toClose;
  245. time_t now = time((time_t *)0);
  246. for(std::map< PhySocket *,Client >::iterator c(clients.begin());c!=clients.end();++c) {
  247. if ((now - c->second.lastActivity) >= ZT_TCP_PROXY_CONNECTION_TIMEOUT_SECONDS) {
  248. toClose.push_back(c->first);
  249. toClose.push_back(c->second.udp);
  250. }
  251. }
  252. for(std::vector<PhySocket *>::iterator s(toClose.begin());s!=toClose.end();++s)
  253. phy->close(*s);
  254. }
  255. };
  256. int main(int argc,char **argv)
  257. {
  258. signal(SIGPIPE,SIG_IGN);
  259. signal(SIGHUP,SIG_IGN);
  260. srand(time((time_t *)0));
  261. TcpProxyService svc;
  262. Phy<TcpProxyService *> phy(&svc,false,true);
  263. svc.phy = &phy;
  264. svc.udpPortCounter = 1023;
  265. {
  266. struct sockaddr_in laddr;
  267. memset(&laddr,0,sizeof(laddr));
  268. laddr.sin_family = AF_INET;
  269. laddr.sin_port = htons(ZT_TCP_PROXY_TCP_PORT);
  270. if (!phy.tcpListen((const struct sockaddr *)&laddr)) {
  271. fprintf(stderr,"%s: fatal error: unable to bind TCP port %d\n",argv[0],ZT_TCP_PROXY_TCP_PORT);
  272. return 1;
  273. }
  274. }
  275. time_t lastDidHousekeeping = time((time_t *)0);
  276. for(;;) {
  277. phy.poll(120000);
  278. time_t now = time((time_t *)0);
  279. if ((now - lastDidHousekeeping) > 120) {
  280. lastDidHousekeeping = now;
  281. svc.doHousekeeping();
  282. }
  283. }
  284. return 0;
  285. }