Performance upgrades to ztproxy
This commit is contained in:
@@ -38,6 +38,7 @@
|
|||||||
#include <string>
|
#include <string>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
#include <sys/select.h>
|
||||||
|
|
||||||
#include <queue>
|
#include <queue>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
@@ -46,6 +47,7 @@
|
|||||||
#include <fstream>
|
#include <fstream>
|
||||||
#include <map>
|
#include <map>
|
||||||
|
|
||||||
|
#include "RingBuffer.hpp"
|
||||||
#include "ztproxy.hpp"
|
#include "ztproxy.hpp"
|
||||||
#include "libzt.h"
|
#include "libzt.h"
|
||||||
|
|
||||||
@@ -104,90 +106,137 @@ namespace ZeroTier {
|
|||||||
void ZTProxy::threadMain()
|
void ZTProxy::threadMain()
|
||||||
throw()
|
throw()
|
||||||
{
|
{
|
||||||
|
TcpConnection *conn = NULL;
|
||||||
|
|
||||||
|
uint32_t msecs = 1;
|
||||||
|
struct timeval tv;
|
||||||
|
tv.tv_sec = msecs / 1000;
|
||||||
|
tv.tv_usec = (msecs % 1000) * 1000;
|
||||||
|
int ret = 0;
|
||||||
|
|
||||||
|
// Main I/O loop
|
||||||
|
// Moves data between client application socket and libzt VirtualSocket
|
||||||
while(_run) {
|
while(_run) {
|
||||||
_phy.poll(10);
|
|
||||||
|
_phy.poll(5);
|
||||||
|
|
||||||
|
conn_m.lock();
|
||||||
|
// build fd_sets to select upon
|
||||||
|
FD_ZERO(&read_set);
|
||||||
|
FD_ZERO(&write_set);
|
||||||
|
nfds = 0;
|
||||||
|
for (int i=0; i<clist.size(); i++) {
|
||||||
|
FD_SET(clist[i]->zfd, &read_set);
|
||||||
|
FD_SET(clist[i]->zfd, &write_set);
|
||||||
|
nfds = clist[i]->zfd > nfds ? clist[i]->zfd : nfds;
|
||||||
|
}
|
||||||
|
|
||||||
|
ret = zts_select(nfds + 1, &read_set, &write_set, NULL, &tv);
|
||||||
|
|
||||||
|
if (ret > 0) {
|
||||||
|
for (int fd_i=0; fd_i<nfds+1; fd_i++) {
|
||||||
|
|
||||||
|
// RX, Handle data incoming from libzt
|
||||||
|
if (FD_ISSET(fd_i, &read_set)) {
|
||||||
|
int wr = 0, rd = 0;
|
||||||
|
conn = zmap[fd_i];
|
||||||
|
if (conn == NULL) {
|
||||||
|
DEBUG_ERROR("invalid conn=%p", conn);
|
||||||
|
exit(0);
|
||||||
|
}
|
||||||
|
// read data from libzt and place it on ring buffer
|
||||||
|
conn->rx_m.lock();
|
||||||
|
if (conn->RXbuf->count() > 0) {
|
||||||
|
DEBUG_INFO("libzt has incoming data on fd=%d, we will receive it via conn=%p, sock=%p", conn->zfd, conn, conn->client_sock);
|
||||||
|
}
|
||||||
|
if ((rd = zts_read(conn->zfd, conn->RXbuf->get_buf(),ZT_MAX_MTU)) < 0) {
|
||||||
|
DEBUG_ERROR("there was an error while reading data from libzt, err=%d", rd);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
//DEBUG_INFO("LIBZT -> RXBUFFER = %d bytes", rd);
|
||||||
|
conn->RXbuf->produce(rd);
|
||||||
|
}
|
||||||
|
// attempt to write data to client from buffer
|
||||||
|
if ((wr = _phy.streamSend(conn->client_sock, conn->RXbuf->get_buf(), conn->RXbuf->count())) < 0) {
|
||||||
|
DEBUG_ERROR("there was an error while writing the data from the RXbuf to the client PhySocket, err=%d", wr);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
//DEBUG_INFO("RXBUFFER -> CLIENT = %d bytes", wr);
|
||||||
|
conn->RXbuf->consume(wr);
|
||||||
|
}
|
||||||
|
conn->rx_m.unlock();
|
||||||
|
}
|
||||||
|
|
||||||
|
// TX, Handle data outgoing from client to libzt
|
||||||
|
if (FD_ISSET(fd_i, &write_set)) {
|
||||||
|
int rd, wr = 0;
|
||||||
|
conn = zmap[fd_i];
|
||||||
|
if (conn == NULL) {
|
||||||
|
DEBUG_ERROR("invalid conn=%p", conn);
|
||||||
|
exit(0);
|
||||||
|
}
|
||||||
|
// read data from client and place it on ring buffer
|
||||||
|
|
||||||
|
//
|
||||||
|
conn->tx_m.lock();
|
||||||
|
if (conn->TXbuf->count() > 0) {
|
||||||
|
DEBUG_INFO("client has outgoing data of len=%d on fd=%d, we will send it via conn=%p, sock=%p", conn->TXbuf->count(), conn->zfd, conn, conn->client_sock);
|
||||||
|
wr = zts_write(conn->zfd, conn->TXbuf->get_buf(), conn->TXbuf->count());
|
||||||
|
if (wr < 0) {
|
||||||
|
DEBUG_ERROR("there was an error while sending the data over libzt, err=%d", wr);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
//DEBUG_INFO("TXBUFFER -> LIBZT = %d bytes", wr);
|
||||||
|
conn->TXbuf->consume(wr); // data is presumed sent, mark it as such in the ringbuffer
|
||||||
|
}
|
||||||
|
}
|
||||||
|
conn->tx_m.unlock();
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
conn_m.unlock();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void ZTProxy::phyOnTcpData(PhySocket *sock,void **uptr,void *data,unsigned long len)
|
void ZTProxy::phyOnTcpData(PhySocket *sock,void **uptr,void *data,unsigned long len)
|
||||||
{
|
{
|
||||||
DEBUG_INFO("phyOnTcpData(sock=%p, len=%lu)", sock, len);
|
int wr = 0, zfd = -1, err = 0;
|
||||||
|
DEBUG_INFO("sock=%p, len=%lu", sock, len);
|
||||||
unsigned char *buf = (unsigned char*)data;
|
unsigned char *buf = (unsigned char*)data;
|
||||||
std::string host = _internal_addr;
|
std::string host = _internal_addr;
|
||||||
|
|
||||||
// Get the TcpConnection object
|
// Get the TcpConnection object
|
||||||
TcpConnection *conn = cmap[sock];
|
TcpConnection *conn = cmap[sock];
|
||||||
if(conn == NULL) {
|
if(conn == NULL) {
|
||||||
conn = cmap[dmap[sock]];
|
DEBUG_ERROR("no connection object");
|
||||||
if(conn == NULL) {
|
return;
|
||||||
DEBUG_ERROR("no connection object");
|
|
||||||
return; // Nothing
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!conn->destination_sock) { // no connection yet
|
if(conn->zfd < 0) { // no connection yet
|
||||||
|
DEBUG_INFO("no connection yet, proxying...");
|
||||||
if(host != "")
|
if(host != "")
|
||||||
{
|
{
|
||||||
uint16_t dest_port, ipv;
|
uint16_t dest_port, ipv;
|
||||||
dest_port = _internal_port;
|
dest_port = _internal_port;
|
||||||
|
|
||||||
// Save buffer to TcpConnection's write buffer, we'll forward
|
|
||||||
// this data along only after the phyOnTcpConnect callback is called successfully
|
|
||||||
// Got data for connection but it hasn't been fully established, save to buffer for later writing
|
|
||||||
conn->tcp_client_m.lock();
|
|
||||||
memcpy(conn->client_buf, buf, len);
|
|
||||||
conn->client_buf_len = len;
|
|
||||||
conn->tcp_client_m.unlock();
|
|
||||||
|
|
||||||
host = _internal_addr;
|
host = _internal_addr;
|
||||||
|
|
||||||
// check for address type
|
ipv = host.find(":") != std::string::npos ? 6 : 4;
|
||||||
if(host.find(":") != std::string::npos)
|
|
||||||
ipv = 6;
|
|
||||||
else
|
|
||||||
ipv = 4;
|
|
||||||
|
|
||||||
bool connected;
|
if(ipv == 4) {
|
||||||
if(ipv == 4)
|
|
||||||
{
|
|
||||||
// Connect to proxied host via libzt
|
// Connect to proxied host via libzt
|
||||||
DEBUG_INFO("ipv4, %s -> %s:%d", host.c_str(), host.c_str(), dest_port);
|
DEBUG_INFO("attempting to proxy [0.0.0.0:%d -> %s:%d]", _proxy_listen_port, host.c_str(), dest_port);
|
||||||
struct sockaddr_in in4;
|
struct sockaddr_in in4;
|
||||||
memset(&in4,0,sizeof(in4));
|
memset(&in4,0,sizeof(in4));
|
||||||
in4.sin_family = AF_INET;
|
in4.sin_family = AF_INET;
|
||||||
in4.sin_addr.s_addr = inet_addr(host.c_str());
|
in4.sin_addr.s_addr = inet_addr(host.c_str());
|
||||||
in4.sin_port = Utils::hton(dest_port);
|
in4.sin_port = Utils::hton(dest_port);
|
||||||
int sockfd = zts_socket(AF_INET, SOCK_STREAM, 0);
|
zfd = zts_socket(AF_INET, SOCK_STREAM, 0);
|
||||||
if(zts_connect(sockfd, (const struct sockaddr *)&in4, sizeof(in4)) < 0) {
|
err = zts_connect(zfd, (const struct sockaddr *)&in4, sizeof(in4));
|
||||||
DEBUG_ERROR("error while connecting to remote host");
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
conn->destination_sock = _phy.wrapSocket(sockfd);
|
|
||||||
conn->origin_sock = sock;
|
|
||||||
cmap[conn->destination_sock] = conn;
|
|
||||||
// Once connection through libzt is established, write data we received from the local host
|
|
||||||
conn->tcp_client_m.lock();
|
|
||||||
int n = 0, tot = conn->client_buf_len;
|
|
||||||
while(tot > 0) {
|
|
||||||
if((n = _phy.streamSend(conn->destination_sock, conn->client_buf, conn->client_buf_len)) > 0) {
|
|
||||||
tot -= n;
|
|
||||||
if(n < conn->client_buf_len) { // If we couldn't write the entire buffer
|
|
||||||
memmove(conn->client_buf, conn->client_buf+n, BUF_SZ-n);
|
|
||||||
conn->client_buf_len-=n;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
conn->client_buf_len = 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
DEBUG_ERROR(" an error occured while writing to the destination_sock");
|
|
||||||
}
|
|
||||||
conn->tcp_client_m.unlock();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
if(ipv == 6)
|
if(ipv == 6) {
|
||||||
{
|
// Connect to proxied host via libzt
|
||||||
DEBUG_INFO("ipv6, %s -> [%s]:%d\n", host.c_str(), host.c_str(), dest_port);
|
//DEBUG_INFO("attempting to proxy [0.0.0.0:%d -> %s:%d]", _proxy_listen_port, host.c_str(), dest_port);
|
||||||
struct sockaddr_in6 in6;
|
struct sockaddr_in6 in6;
|
||||||
memset(&in6,0,sizeof(in6));
|
memset(&in6,0,sizeof(in6));
|
||||||
in6.sin6_family = AF_INET;
|
in6.sin6_family = AF_INET;
|
||||||
@@ -195,126 +244,122 @@ namespace ZeroTier {
|
|||||||
server = gethostbyname2((char*)host.c_str(),AF_INET6);
|
server = gethostbyname2((char*)host.c_str(),AF_INET6);
|
||||||
memmove((char *) &in6.sin6_addr.s6_addr, (char *) server->h_addr, server->h_length);
|
memmove((char *) &in6.sin6_addr.s6_addr, (char *) server->h_addr, server->h_length);
|
||||||
in6.sin6_port = Utils::hton(dest_port);
|
in6.sin6_port = Utils::hton(dest_port);
|
||||||
conn->destination_sock = _phy.tcpConnect((const struct sockaddr *)&in6, connected, this);
|
zfd = zts_socket(AF_INET, SOCK_STREAM, 0);
|
||||||
|
err = zts_connect(zfd, (const struct sockaddr *)&in6, sizeof(in6));
|
||||||
}
|
}
|
||||||
dmap[conn->destination_sock] = conn->origin_sock; // for reverse lookup from callbacks
|
if (zfd < 0 || err < 0) {
|
||||||
if(!conn->destination_sock) {
|
// now release TX buffer contents we previously saved, since we can't connect
|
||||||
DEBUG_ERROR(" there was an error connecting to the remote host");
|
DEBUG_ERROR("error while connecting to remote host (zfd=%d, err=%d)", zfd, err);
|
||||||
|
conn->tx_m.lock();
|
||||||
|
DEBUG_INFO("resetting TX buffer");
|
||||||
|
conn->TXbuf->reset();
|
||||||
|
conn->tx_m.unlock();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
else {
|
||||||
}
|
DEBUG_INFO("successfully connected to remote host");
|
||||||
else {
|
|
||||||
// Read data from localhost socket and send it into libzt
|
|
||||||
conn->tcp_client_m.lock();
|
|
||||||
int n = 0, tot = len;
|
|
||||||
while(tot > 0) {
|
|
||||||
if((n = _phy.streamSend(conn->destination_sock, buf, tot)) > 0) {
|
|
||||||
tot -= n;
|
|
||||||
printf("sent %d into libzt", n);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
conn->tcp_client_m.unlock();
|
|
||||||
|
conn_m.lock();
|
||||||
|
// on success, add connection entry to map, set physock for later
|
||||||
|
clist.push_back(conn);
|
||||||
|
conn->zfd = zfd;
|
||||||
|
conn->client_sock = sock;
|
||||||
|
cmap[conn->client_sock] = conn;
|
||||||
|
zmap[zfd] = conn;
|
||||||
|
conn_m.unlock();
|
||||||
}
|
}
|
||||||
|
// Write data coming from client TCP connection to its TX buffer, later emptied into libzt by threadMain I/O loop
|
||||||
|
conn->tx_m.lock();
|
||||||
|
if ((wr = conn->TXbuf->write((const unsigned char *)data, len)) < 0) {
|
||||||
|
DEBUG_ERROR("there was an error while writing data from client to tx buffer, err=%d", wr);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
DEBUG_INFO("CLIENT -> TXBUFFER = %d bytes", wr);
|
||||||
|
}
|
||||||
|
conn->tx_m.unlock();
|
||||||
}
|
}
|
||||||
|
|
||||||
void ZTProxy::phyOnDatagram(PhySocket *sock,void **uptr,const struct sockaddr *localAddr,const struct sockaddr *from,void *data,unsigned long len)
|
void ZTProxy::phyOnDatagram(PhySocket *sock,void **uptr,const struct sockaddr *localAddr,const struct sockaddr *from,void *data,unsigned long len)
|
||||||
{
|
{
|
||||||
// Not used, connections are handled via user space network stack and VirtualTap
|
// Not used, connections are handled via user space network stack and VirtualTap
|
||||||
DEBUG_INFO("phyOnDatagram");
|
DEBUG_INFO("not used. exiting...");
|
||||||
exit(0);
|
exit(0);
|
||||||
}
|
}
|
||||||
void ZTProxy::phyOnTcpWritable(PhySocket *sock,void **uptr)
|
void ZTProxy::phyOnTcpWritable(PhySocket *sock,void **uptr)
|
||||||
{
|
{
|
||||||
// Not used, connections are handled via user space network stack and VirtualTap
|
// Not used, connections are handled via user space network stack and VirtualTap
|
||||||
DEBUG_INFO("phyOnTcpWritable");
|
DEBUG_INFO();
|
||||||
exit(0);
|
//exit(0);
|
||||||
}
|
}
|
||||||
void ZTProxy::phyOnFileDescriptorActivity(PhySocket *sock,void **uptr,bool readable,bool writable)
|
void ZTProxy::phyOnFileDescriptorActivity(PhySocket *sock,void **uptr,bool readable,bool writable)
|
||||||
{
|
{
|
||||||
// Not used, connections are handled via user space network stack and VirtualTap
|
// Not used, connections are handled via user space network stack and VirtualTap
|
||||||
DEBUG_INFO("phyOnFileDescriptorActivity, sock=%p", sock);
|
DEBUG_INFO("sock=%p", sock);
|
||||||
exit(0);
|
//exit(0);
|
||||||
}
|
}
|
||||||
void ZTProxy::phyOnTcpConnect(PhySocket *sock,void **uptr,bool success)
|
void ZTProxy::phyOnTcpConnect(PhySocket *sock,void **uptr,bool success)
|
||||||
{
|
{
|
||||||
// Not used, connections are handled via user space network stack and VirtualTap
|
// Not used, connections are handled via user space network stack and VirtualTap
|
||||||
DEBUG_INFO("phyOnTcpConnect, sock=%p", sock);
|
DEBUG_INFO("sock=%p", sock);
|
||||||
exit(0);
|
//exit(0);
|
||||||
}
|
}
|
||||||
void ZTProxy::phyOnUnixClose(PhySocket *sock,void **uptr)
|
void ZTProxy::phyOnUnixClose(PhySocket *sock,void **uptr)
|
||||||
{
|
{
|
||||||
// Not used, connections are handled via user space network stack and VirtualTap
|
// Not used, connections are handled via user space network stack and VirtualTap
|
||||||
DEBUG_INFO("phyOnUnixClose, sock=%p", sock);
|
DEBUG_INFO("sock=%p", sock);
|
||||||
exit(0);
|
//exit(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
void ZTProxy::phyOnTcpAccept(PhySocket *sockL,PhySocket *sockN,void **uptrL,void **uptrN,const struct sockaddr *from)
|
void ZTProxy::phyOnTcpAccept(PhySocket *sockL,PhySocket *sockN,void **uptrL,void **uptrN,const struct sockaddr *from)
|
||||||
{
|
{
|
||||||
DEBUG_INFO("phyOnTcpAccept, sockL=%p, sockN=%p", sockL, sockN);
|
DEBUG_INFO("sockL=%p, sockN=%p", sockL, sockN);
|
||||||
TcpConnection *conn;
|
TcpConnection *conn = new TcpConnection();
|
||||||
// try to recycle TcpConnection objects instead of allocating new ones
|
conn->client_sock = sockN;
|
||||||
if(cqueue.size()) {
|
cmap[sockN]=conn;
|
||||||
conn = cqueue.front();
|
|
||||||
cqueue.pop();
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
conn = new TcpConnection();
|
|
||||||
}
|
|
||||||
conn->origin_sock = sockN;
|
|
||||||
cmap[sockN]=conn; // add new connection
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void ZTProxy::phyOnUnixData(PhySocket *sock,void **uptr,void *data,ssize_t len)
|
void ZTProxy::phyOnUnixData(PhySocket *sock,void **uptr,void *data,ssize_t len)
|
||||||
{
|
{
|
||||||
DEBUG_INFO("phyOnUnixData(sock=%p, len=%lu)", sock, len);
|
DEBUG_INFO("sock=%p, len=%lu", sock, len);
|
||||||
unsigned char *buf = (unsigned char*)data;
|
unsigned char *buf = (unsigned char*)data;
|
||||||
// Get the TcpConnection object
|
|
||||||
TcpConnection *conn = cmap[sock];
|
TcpConnection *conn = cmap[sock];
|
||||||
if(conn == NULL) {
|
if(conn == NULL) {
|
||||||
conn = cmap[dmap[sock]];
|
DEBUG_ERROR("no connection object");
|
||||||
if(conn == NULL) {
|
return;
|
||||||
DEBUG_ERROR("no connection object");
|
|
||||||
return; // Nothing
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
else // If connection to host already established, just forward the data in the correct direction
|
else // If connection to host already established, just forward the data in the correct direction
|
||||||
{
|
{
|
||||||
int n = 0;
|
|
||||||
if(sock == conn->destination_sock) { // RX
|
|
||||||
conn->tcp_client_m.lock();
|
|
||||||
if(!conn->client_buf_len) // If nothing is buffered, attempt to write, otherwise copy to buffer to preserver order
|
|
||||||
n = _phy.streamSend(conn->origin_sock, buf, len);
|
|
||||||
if(n < len) {
|
|
||||||
memcpy(conn->client_buf+conn->client_buf_len, buf+n, len-n);
|
|
||||||
conn->client_buf_len += len-n;
|
|
||||||
_phy.setNotifyWritable(conn->origin_sock, true);
|
|
||||||
}
|
|
||||||
conn->tcp_client_m.unlock();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
void ZTProxy::phyOnUnixWritable(PhySocket *sock,void **uptr,bool lwip_invoked)
|
void ZTProxy::phyOnUnixWritable(PhySocket *sock,void **uptr,bool lwip_invoked)
|
||||||
{
|
{
|
||||||
DEBUG_INFO("phyOnUnixWritable, sock=%p", sock);
|
DEBUG_INFO("sock=%p", sock);
|
||||||
exit(0);
|
exit(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
void ZTProxy::phyOnTcpClose(PhySocket *sock,void **uptr)
|
void ZTProxy::phyOnTcpClose(PhySocket *sock,void **uptr)
|
||||||
{
|
{
|
||||||
DEBUG_INFO("phyOnTcpClose, sock=%p", sock);
|
DEBUG_INFO("sock=%p", sock);
|
||||||
|
conn_m.lock();
|
||||||
TcpConnection *conn = cmap[sock];
|
TcpConnection *conn = cmap[sock];
|
||||||
if(conn)
|
if(conn) {
|
||||||
{
|
conn->client_sock=NULL;
|
||||||
conn->origin_sock=NULL;
|
cmap.erase(sock);
|
||||||
conn->destination_sock=NULL;
|
for (int i=0; i<clist.size(); i++) {
|
||||||
conn->client_buf_len=0;
|
if (conn == clist[i]) {
|
||||||
cqueue.push(conn);
|
clist.erase(clist.begin()+i);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
zmap[conn->zfd] = NULL;
|
||||||
|
delete conn;
|
||||||
|
conn = NULL;
|
||||||
}
|
}
|
||||||
cmap.erase(sock);
|
|
||||||
dmap.erase(sock);
|
|
||||||
close(_phy.getDescriptor(sock));
|
close(_phy.getDescriptor(sock));
|
||||||
|
conn_m.unlock();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -346,4 +391,3 @@ int main(int argc, char **argv)
|
|||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
//#endif
|
|
||||||
@@ -35,6 +35,9 @@
|
|||||||
#include "OSUtils.hpp"
|
#include "OSUtils.hpp"
|
||||||
|
|
||||||
#include <queue>
|
#include <queue>
|
||||||
|
#include <vector>
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <sys/select.h>
|
||||||
|
|
||||||
#define BUF_SZ 1024*1024
|
#define BUF_SZ 1024*1024
|
||||||
|
|
||||||
@@ -43,18 +46,29 @@ namespace ZeroTier {
|
|||||||
typedef void PhySocket;
|
typedef void PhySocket;
|
||||||
class ZTProxy;
|
class ZTProxy;
|
||||||
|
|
||||||
struct TcpConnection
|
class TcpConnection
|
||||||
{
|
{
|
||||||
PhySocket *origin_sock;
|
public:
|
||||||
PhySocket *destination_sock;
|
int zfd;
|
||||||
char client_buf[BUF_SZ];
|
PhySocket *client_sock;
|
||||||
int client_buf_len;
|
RingBuffer<unsigned char> *TXbuf;
|
||||||
|
RingBuffer<unsigned char> *RXbuf;
|
||||||
|
Mutex tx_m, rx_m;
|
||||||
|
|
||||||
char server_buf[BUF_SZ];
|
TcpConnection() {
|
||||||
int server_buf_len;
|
printf("TcpConnection()\n");
|
||||||
|
zfd = -1;
|
||||||
|
TXbuf = new RingBuffer<unsigned char>(BUF_SZ);
|
||||||
|
RXbuf = new RingBuffer<unsigned char>(BUF_SZ);
|
||||||
|
}
|
||||||
|
|
||||||
Mutex tcp_client_m;
|
~TcpConnection() {
|
||||||
Mutex tcp_server_m;
|
printf("~TcpConnection()\n");
|
||||||
|
delete TXbuf;
|
||||||
|
delete RXbuf;
|
||||||
|
TXbuf = NULL;
|
||||||
|
RXbuf = NULL;
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
class ZTProxy
|
class ZTProxy
|
||||||
@@ -90,6 +104,10 @@ namespace ZeroTier {
|
|||||||
volatile bool _enabled;
|
volatile bool _enabled;
|
||||||
volatile bool _run;
|
volatile bool _run;
|
||||||
|
|
||||||
|
Mutex conn_m;
|
||||||
|
fd_set read_set, write_set;
|
||||||
|
int nfds = 0;
|
||||||
|
|
||||||
int _proxy_listen_port;
|
int _proxy_listen_port;
|
||||||
int _internal_port;
|
int _internal_port;
|
||||||
std::string _nwid;
|
std::string _nwid;
|
||||||
@@ -100,10 +118,12 @@ namespace ZeroTier {
|
|||||||
PhySocket *_tcpListenSocket;
|
PhySocket *_tcpListenSocket;
|
||||||
PhySocket *_tcpListenSocket6;
|
PhySocket *_tcpListenSocket6;
|
||||||
|
|
||||||
|
// mapping from ZeroTier VirtualSocket fd to TcpConnection pointer
|
||||||
|
std::map<int, TcpConnection*> zmap;
|
||||||
|
// mapping from ZeroTier PhySocket to TcpConnection pointer
|
||||||
std::map<PhySocket*, TcpConnection*> cmap;
|
std::map<PhySocket*, TcpConnection*> cmap;
|
||||||
std::map<PhySocket*, PhySocket*> dmap;
|
|
||||||
|
|
||||||
std::queue<TcpConnection*> cqueue; // for recycling TcpConnection objects
|
std::vector<TcpConnection*> clist;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user