tcp-proxy.cpp 10 KB

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