2015-09-02 22:17:38 +00:00
|
|
|
/*
|
|
|
|
* ZeroTier One - Network Virtualization Everywhere
|
|
|
|
* Copyright (C) 2011-2015 ZeroTier, Inc.
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* --
|
|
|
|
*
|
|
|
|
* ZeroTier may be used and distributed under the terms of the GPLv3, which
|
|
|
|
* are available at: http://www.gnu.org/licenses/gpl-3.0.html
|
|
|
|
*
|
|
|
|
* If you would like to embed ZeroTier into a commercial application or
|
|
|
|
* redistribute it in a modified binary form, please contact ZeroTier Networks
|
|
|
|
* LLC. Start here: http://www.zerotier.com/
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef ZT_ENABLE_NETCON
|
|
|
|
|
2015-09-03 23:05:18 +00:00
|
|
|
#include <algorithm>
|
|
|
|
#include <utility>
|
|
|
|
|
2015-09-02 22:17:38 +00:00
|
|
|
#include "NetconEthernetTap.hpp"
|
|
|
|
|
2015-09-02 22:51:28 +00:00
|
|
|
#include "../node/Utils.hpp"
|
2015-09-02 22:17:38 +00:00
|
|
|
#include "../osdep/OSUtils.hpp"
|
|
|
|
#include "../osdep/Phy.hpp"
|
|
|
|
|
2015-09-10 17:56:01 +00:00
|
|
|
#include "lwip/tcp_impl.h"
|
|
|
|
#include "netif/etharp.h"
|
|
|
|
#include "lwip/ip.h"
|
|
|
|
#include "lwip/ip_addr.h"
|
|
|
|
#include "lwip/ip_frag.h"
|
|
|
|
|
|
|
|
#include "LWIPStack.hpp"
|
|
|
|
#include "NetconService.h"
|
|
|
|
#include "Intercept.h"
|
|
|
|
#include "NetconUtilities.hpp"
|
|
|
|
|
|
|
|
#define APPLICATION_POLL_FREQ 1
|
|
|
|
|
2015-09-02 22:17:38 +00:00
|
|
|
namespace ZeroTier {
|
|
|
|
|
|
|
|
NetconEthernetTap::NetconEthernetTap(
|
|
|
|
const char *homePath,
|
|
|
|
const MAC &mac,
|
|
|
|
unsigned int mtu,
|
|
|
|
unsigned int metric,
|
|
|
|
uint64_t nwid,
|
|
|
|
const char *friendlyName,
|
|
|
|
void (*handler)(void *,uint64_t,const MAC &,const MAC &,unsigned int,unsigned int,const void *,unsigned int),
|
|
|
|
void *arg) :
|
2015-09-03 23:05:18 +00:00
|
|
|
_phy(this,false,true),
|
2015-09-02 22:51:28 +00:00
|
|
|
_unixListenSocket((PhySocket *)0),
|
2015-09-02 22:17:38 +00:00
|
|
|
_handler(handler),
|
|
|
|
_arg(arg),
|
|
|
|
_nwid(nwid),
|
|
|
|
_homePath(homePath),
|
|
|
|
_mtu(mtu),
|
2015-09-02 22:51:28 +00:00
|
|
|
_enabled(true),
|
|
|
|
_run(true)
|
2015-09-02 22:17:38 +00:00
|
|
|
{
|
2015-09-02 22:51:28 +00:00
|
|
|
char sockPath[4096];
|
|
|
|
Utils::snprintf(sockPath,sizeof(sockPath),"/tmp/.ztnc_%.16llx",(unsigned long long)nwid);
|
|
|
|
_dev = sockPath;
|
|
|
|
|
2015-09-10 17:56:01 +00:00
|
|
|
lwipstack = new LWIPStack("/root/dev/netcon/liblwip.so");
|
|
|
|
if(!lwipstack) // TODO double check this check
|
|
|
|
throw std::runtime_error("unable to load lwip lib.");
|
|
|
|
lwipstack->lwip_init();
|
|
|
|
|
2015-09-03 23:05:18 +00:00
|
|
|
_unixListenSocket = _phy.unixListen(sockPath,(void *)this);
|
2015-09-02 23:15:22 +00:00
|
|
|
if (!_unixListenSocket)
|
2015-09-02 22:51:28 +00:00
|
|
|
throw std::runtime_error(std::string("unable to bind to ")+sockPath);
|
2015-09-02 22:17:38 +00:00
|
|
|
_thread = Thread::start(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
NetconEthernetTap::~NetconEthernetTap()
|
|
|
|
{
|
2015-09-02 22:51:28 +00:00
|
|
|
_run = false;
|
2015-09-03 23:05:18 +00:00
|
|
|
_phy.whack();
|
|
|
|
_phy.whack();
|
2015-09-02 22:51:28 +00:00
|
|
|
Thread::join(_thread);
|
2015-09-03 23:05:18 +00:00
|
|
|
_phy.close(_unixListenSocket,false);
|
2015-09-02 22:17:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void NetconEthernetTap::setEnabled(bool en)
|
|
|
|
{
|
|
|
|
_enabled = en;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool NetconEthernetTap::enabled() const
|
|
|
|
{
|
|
|
|
return _enabled;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool NetconEthernetTap::addIp(const InetAddress &ip)
|
|
|
|
{
|
2015-09-03 23:05:18 +00:00
|
|
|
Mutex::Lock _l(_ips_m);
|
|
|
|
if (std::find(_ips.begin(),_ips.end(),ip) == _ips.end()) {
|
|
|
|
_ips.push_back(ip);
|
|
|
|
std::sort(_ips.begin(),_ips.end());
|
|
|
|
|
|
|
|
// TODO: alloc IP in LWIP
|
2015-09-10 17:56:01 +00:00
|
|
|
//netif_set_addr(netif, ipaddr, netmask, gw);
|
2015-09-03 23:05:18 +00:00
|
|
|
}
|
2015-09-02 22:17:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool NetconEthernetTap::removeIp(const InetAddress &ip)
|
|
|
|
{
|
2015-09-03 23:05:18 +00:00
|
|
|
Mutex::Lock _l(_ips_m);
|
2015-09-03 23:44:04 +00:00
|
|
|
std::vector<InetAddress>::iterator i(std::find(_ips.begin(),_ips.end(),ip));
|
2015-09-03 23:05:18 +00:00
|
|
|
if (i == _ips.end())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
_ips.erase(i);
|
|
|
|
// TODO: dealloc IP from LWIP
|
|
|
|
|
|
|
|
return true;
|
2015-09-02 22:17:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<InetAddress> NetconEthernetTap::ips() const
|
|
|
|
{
|
2015-09-03 23:05:18 +00:00
|
|
|
Mutex::Lock _l(_ips_m);
|
|
|
|
return _ips;
|
2015-09-02 22:17:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void NetconEthernetTap::put(const MAC &from,const MAC &to,unsigned int etherType,const void *data,unsigned int len)
|
|
|
|
{
|
2015-09-02 22:51:28 +00:00
|
|
|
if (!_enabled)
|
|
|
|
return;
|
2015-09-02 22:17:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string NetconEthernetTap::deviceName() const
|
|
|
|
{
|
|
|
|
return _dev;
|
|
|
|
}
|
|
|
|
|
|
|
|
void NetconEthernetTap::setFriendlyName(const char *friendlyName)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void NetconEthernetTap::scanMulticastGroups(std::vector<MulticastGroup> &added,std::vector<MulticastGroup> &removed)
|
|
|
|
{
|
2015-09-03 23:05:18 +00:00
|
|
|
// TODO: get multicast subscriptions from LWIP
|
2015-09-02 22:17:38 +00:00
|
|
|
}
|
|
|
|
|
2015-09-10 21:44:01 +00:00
|
|
|
|
|
|
|
NetconConnection *NetconEthernetTap::getConnectionByPCB(struct tcp_pcb *pcb)
|
|
|
|
{
|
|
|
|
NetconConnection *c;
|
|
|
|
for(int i=0; i<clients.size(); i++) {
|
|
|
|
c = clients[i]->containsPCB(pcb);
|
|
|
|
if(c) {
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
}
|
2015-09-10 22:19:43 +00:00
|
|
|
return NULL;
|
2015-09-10 21:44:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NetconConnection *NetconEthernetTap::getConnectionByThisFD(int fd)
|
|
|
|
{
|
|
|
|
NetconConnection *c;
|
|
|
|
for(int i=0; i<clients.size(); i++) {
|
2015-09-10 22:19:43 +00:00
|
|
|
for(int j=0; j<clients[i]->connections[j].size(); j++) {
|
|
|
|
if(_phy.getDescriptor(clients[i]->connection[j]->sock) == fd) {
|
|
|
|
return clients[i]->connections[j];
|
|
|
|
}
|
2015-09-10 21:44:01 +00:00
|
|
|
}
|
|
|
|
}
|
2015-09-10 22:19:43 +00:00
|
|
|
return NULL;
|
2015-09-10 21:44:01 +00:00
|
|
|
}
|
|
|
|
|
2015-09-10 22:19:43 +00:00
|
|
|
NetconClient *NetconEthernetTap::getClientByPCB(struct tcp_pcb *pcb)
|
|
|
|
{
|
|
|
|
for(int i=0; i<clients.size(); i++) {
|
|
|
|
if(clients[i].containsPCB(pcb)) {
|
|
|
|
return clients[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-09-10 21:44:01 +00:00
|
|
|
void NetconEthernetTap::closeClient(NetconClient *client)
|
|
|
|
{
|
|
|
|
// erase from clients vector
|
|
|
|
client->close();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-09-02 22:17:38 +00:00
|
|
|
void NetconEthernetTap::threadMain()
|
|
|
|
throw()
|
2015-09-02 22:51:28 +00:00
|
|
|
{
|
2015-09-10 17:56:01 +00:00
|
|
|
static ip_addr_t ipaddr, netmask, gw;
|
|
|
|
char ip_str[16] = {0}, nm_str[16] = {0}, gw_str[16] = {0};
|
|
|
|
IP4_ADDR(&gw, 192,168,0,1);
|
|
|
|
IP4_ADDR(&netmask, 255,255,255,0);
|
|
|
|
IP4_ADDR(&ipaddr, 192,168,0,2);
|
|
|
|
strncpy(ip_str, lwipstack->ipaddr_ntoa(&ipaddr), sizeof(ip_str));
|
|
|
|
strncpy(nm_str, lwipstack->ipaddr_ntoa(&netmask), sizeof(nm_str));
|
|
|
|
strncpy(gw_str, lwipstack->ipaddr_ntoa(&gw), sizeof(gw_str));
|
|
|
|
|
|
|
|
unsigned long tcp_time = ARP_TMR_INTERVAL / 5000;
|
|
|
|
unsigned long ipreass_time = TCP_TMR_INTERVAL / 1000;
|
|
|
|
unsigned long etharp_time = IP_TMR_INTERVAL / 1000;
|
|
|
|
unsigned long prev_tcp_time = 0;
|
|
|
|
unsigned long prev_etharp_time = 0;
|
|
|
|
unsigned long curr_time;
|
|
|
|
unsigned long since_tcp;
|
|
|
|
unsigned long since_etharp;
|
|
|
|
|
|
|
|
struct timeval tv;
|
|
|
|
struct timeval tv_sel;
|
2015-09-02 22:51:28 +00:00
|
|
|
|
2015-09-10 17:56:01 +00:00
|
|
|
while (_run) {
|
|
|
|
gettimeofday(&tv, NULL);
|
|
|
|
curr_time = (unsigned long)(tv.tv_sec) * 1000 + (unsigned long)(tv.tv_usec) / 1000;
|
|
|
|
|
|
|
|
since_tcp = curr_time - prev_tcp_time;
|
|
|
|
since_etharp = curr_time - prev_etharp_time;
|
|
|
|
int min_time = min(since_tcp, since_etharp) * 1000; // usec
|
|
|
|
|
|
|
|
if(since_tcp > tcp_time)
|
|
|
|
{
|
|
|
|
prev_tcp_time = curr_time+1;
|
|
|
|
lwipstack->tcp_tmr();
|
|
|
|
}
|
|
|
|
|
|
|
|
if(since_etharp > etharp_time)
|
|
|
|
{
|
|
|
|
prev_etharp_time = curr_time;
|
|
|
|
lwipstack->etharp_tmr();
|
|
|
|
}
|
|
|
|
// should be set every time since tv_sel is modified after each select() call
|
|
|
|
tv_sel.tv_sec = 0;
|
|
|
|
tv_sel.tv_usec = min_time;
|
|
|
|
|
|
|
|
_phy.poll(min_time * 1000); // conversion from usec to millisec, TODO: double check
|
2015-09-02 22:51:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: cleanup -- destroy LWIP state, kill any clients, unload .so, etc.
|
|
|
|
}
|
|
|
|
|
2015-09-03 23:05:18 +00:00
|
|
|
// Unused -- no UDP or TCP from this thread/Phy<>
|
2015-09-02 22:51:28 +00:00
|
|
|
void NetconEthernetTap::phyOnDatagram(PhySocket *sock,void **uptr,const struct sockaddr *from,void *data,unsigned long len) {}
|
2015-09-10 17:56:01 +00:00
|
|
|
|
2015-09-02 22:51:28 +00:00
|
|
|
void NetconEthernetTap::phyOnTcpConnect(PhySocket *sock,void **uptr,bool success) {}
|
|
|
|
void NetconEthernetTap::phyOnTcpAccept(PhySocket *sockL,PhySocket *sockN,void **uptrL,void **uptrN,const struct sockaddr *from) {}
|
|
|
|
void NetconEthernetTap::phyOnTcpClose(PhySocket *sock,void **uptr) {}
|
|
|
|
void NetconEthernetTap::phyOnTcpData(PhySocket *sock,void **uptr,void *data,unsigned long len) {}
|
|
|
|
void NetconEthernetTap::phyOnTcpWritable(PhySocket *sock,void **uptr) {}
|
|
|
|
|
|
|
|
void NetconEthernetTap::phyOnUnixAccept(PhySocket *sockL,PhySocket *sockN,void **uptrL,void **uptrN)
|
|
|
|
{
|
2015-09-10 21:44:01 +00:00
|
|
|
NetconClient *newClient = new NetconClient();
|
|
|
|
newClient->addConnection(NetconConnectionType.RPC, *uptrN)
|
2015-09-02 22:51:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void NetconEthernetTap::phyOnUnixClose(PhySocket *sock,void **uptr)
|
|
|
|
{
|
2015-09-10 21:44:01 +00:00
|
|
|
*uptr->close();
|
2015-09-02 22:51:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void NetconEthernetTap::phyOnUnixData(PhySocket *sock,void **uptr,void *data,unsigned long len)
|
|
|
|
{
|
2015-09-10 20:52:18 +00:00
|
|
|
NetconConnection *c = *uptr->getConnection(sock);
|
2015-09-10 17:56:01 +00:00
|
|
|
int r;
|
2015-09-10 20:52:18 +00:00
|
|
|
if(c->type == NetconConnectionType.BUFFER) {
|
2015-09-10 17:56:01 +00:00
|
|
|
if(c) {
|
|
|
|
if(c->idx < DEFAULT_READ_BUFFER_SIZE) {
|
|
|
|
if((r = read(sws->sock, (&c->buf)+c->idx, DEFAULT_READ_BUFFER_SIZE-(c->idx))) > 0) {
|
|
|
|
c->idx += r;
|
|
|
|
handle_write(c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2015-09-10 21:44:01 +00:00
|
|
|
// can't find connection for this fd
|
2015-09-10 17:56:01 +00:00
|
|
|
}
|
|
|
|
}
|
2015-09-10 20:52:18 +00:00
|
|
|
if(c->type == NetconConnectionType.RPC)
|
2015-09-10 17:56:01 +00:00
|
|
|
{
|
2015-09-10 21:44:01 +00:00
|
|
|
NetconClient *client = (NetconClient*)*uptr;
|
|
|
|
switch((unsigned char*)data[0])
|
2015-09-10 17:56:01 +00:00
|
|
|
{
|
|
|
|
case RPC_SOCKET:
|
|
|
|
struct socket_st socket_rpc;
|
|
|
|
memcpy(&socket_rpc, &data[1], sizeof(struct socket_st));
|
2015-09-10 20:52:18 +00:00
|
|
|
client->tid = socket_rpc.__tid;
|
|
|
|
handle_socket(client, &socket_rpc);
|
2015-09-10 17:56:01 +00:00
|
|
|
break;
|
|
|
|
case RPC_LISTEN:
|
|
|
|
struct listen_st listen_rpc;
|
|
|
|
memcpy(&listen_rpc, &data[1], sizeof(struct listen_st));
|
2015-09-10 20:52:18 +00:00
|
|
|
client->tid = listen_rpc.__tid;
|
|
|
|
handle_listen(client, &listen_rpc);
|
2015-09-10 17:56:01 +00:00
|
|
|
break;
|
|
|
|
case RPC_BIND:
|
|
|
|
struct bind_st bind_rpc;
|
|
|
|
memcpy(&bind_rpc, &data[1], sizeof(struct bind_st));
|
2015-09-10 20:52:18 +00:00
|
|
|
client->tid = bind_rpc.__tid;
|
|
|
|
handle_bind(client, &bind_rpc);
|
2015-09-10 17:56:01 +00:00
|
|
|
break;
|
|
|
|
case RPC_KILL_INTERCEPT:
|
2015-09-10 21:44:01 +00:00
|
|
|
client->close();
|
2015-09-10 17:56:01 +00:00
|
|
|
break;
|
|
|
|
case RPC_CONNECT:
|
|
|
|
struct connect_st connect_rpc;
|
|
|
|
memcpy(&connect_rpc, &data[1], sizeof(struct connect_st));
|
2015-09-10 20:52:18 +00:00
|
|
|
client->tid = connect_rpc.__tid;
|
2015-09-10 21:44:01 +00:00
|
|
|
handle_connect(client, &connect_rpc);
|
2015-09-10 17:56:01 +00:00
|
|
|
break;
|
|
|
|
case RPC_FD_MAP_COMPLETION:
|
2015-09-10 20:52:18 +00:00
|
|
|
handle_retval(client, data);
|
2015-09-10 17:56:01 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2015-09-02 22:51:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void NetconEthernetTap::phyOnUnixWritable(PhySocket *sock,void **uptr)
|
2015-09-02 22:17:38 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2015-09-10 21:44:01 +00:00
|
|
|
int NetconEthernetTap::send_return_value(NetconClient *client, int retval)
|
2015-09-10 17:56:01 +00:00
|
|
|
{
|
2015-09-10 21:44:01 +00:00
|
|
|
if(!client->waiting_for_retval){
|
|
|
|
// intercept isn't waiting for return value. Why are we here?
|
2015-09-10 17:56:01 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
char retmsg[4];
|
|
|
|
memset(&retmsg, '\0', sizeof(retmsg));
|
|
|
|
retmsg[0]=RPC_RETVAL;
|
|
|
|
memcpy(&retmsg[1], &retval, sizeof(retval));
|
2015-09-10 21:44:01 +00:00
|
|
|
int n = write(_phy.getDescriptor(client->rpc->sock), &retmsg, sizeof(retmsg));
|
2015-09-10 17:56:01 +00:00
|
|
|
|
|
|
|
if(n > 0) {
|
2015-09-10 21:44:01 +00:00
|
|
|
// signal that we've satisfied this requirement
|
|
|
|
client->waiting_for_retval = false;
|
2015-09-10 17:56:01 +00:00
|
|
|
}
|
|
|
|
else {
|
2015-09-10 21:44:01 +00:00
|
|
|
// unable to send return value to the intercept
|
|
|
|
closeClient(client);
|
2015-09-10 17:56:01 +00:00
|
|
|
}
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*------------------------------------------------------------------------------
|
|
|
|
--------------------------------- LWIP callbacks -------------------------------
|
|
|
|
------------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
err_t NetconEthernetTap::nc_poll(void* arg, struct tcp_pcb *tpcb)
|
|
|
|
{
|
2015-09-10 21:44:01 +00:00
|
|
|
NetconConnection *c = getConnectionByPCB(tpcb); // TODO: make sure this works, if not, use arg to look up the connection
|
2015-09-10 17:56:01 +00:00
|
|
|
if(c)
|
|
|
|
handle_write(c);
|
|
|
|
return ERR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
err_t NetconEthernetTap::nc_accept(void* arg, struct tcp_pcb *newpcb, err_t err)
|
|
|
|
{
|
2015-09-10 22:19:43 +00:00
|
|
|
NetconClient *client = getConnectionByThisFD((intptr_t)arg);
|
|
|
|
|
|
|
|
if(client)
|
|
|
|
{
|
|
|
|
int *their_fd;
|
|
|
|
int our_fd;
|
|
|
|
PhySocket *new_sock = _phy.createSocketPair(*their_fd, client)
|
|
|
|
NetconConnection c = addConnection(NetconConnectionType.BUFFER, new_sock);
|
|
|
|
our_fd = _phy.getDescriptor(c->sock);
|
|
|
|
if(c == NULL) return -1;
|
|
|
|
|
|
|
|
c->owner->unmapped_conn = c;
|
2015-09-10 17:56:01 +00:00
|
|
|
// write byte to let accept call know we have a new connection
|
2015-09-10 22:19:43 +00:00
|
|
|
int n = write(our_fd, "z", 1);
|
2015-09-10 17:56:01 +00:00
|
|
|
if(n > 0) {
|
2015-09-10 22:19:43 +00:00
|
|
|
sock_fd_write(c->owner->rpc, *their_fd);
|
2015-09-10 17:56:01 +00:00
|
|
|
}
|
|
|
|
else {
|
2015-09-10 22:19:43 +00:00
|
|
|
// unknown error writing signal byte to listening socket
|
2015-09-10 17:56:01 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2015-09-10 22:19:43 +00:00
|
|
|
lwipstack->tcp_arg(newpcb, (void*)(intptr_t)(our_fd));
|
2015-09-10 17:56:01 +00:00
|
|
|
lwipstack->tcp_recv(newpcb, nc_recved);
|
|
|
|
lwipstack->tcp_err(newpcb, nc_err);
|
|
|
|
lwipstack->tcp_sent(newpcb, nc_sent);
|
|
|
|
lwipstack->tcp_poll(newpcb, nc_poll, APPLICATION_POLL_FREQ);
|
|
|
|
tcp_accepted(c->pcb);
|
|
|
|
return ERR_OK;
|
2015-09-10 22:19:43 +00:00
|
|
|
}
|
2015-09-10 17:56:01 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
err_t NetconEthernetTap::nc_recved(void *arg, struct tcp_pcb *tpcb, struct pbuf *p, err_t err)
|
|
|
|
{
|
|
|
|
int n;
|
|
|
|
struct pbuf* q = p;
|
2015-09-10 22:19:43 +00:00
|
|
|
NetconConnection *c = getConnectionByPCB(tpcb); // TODO: make sure this works, if not, use arg as "buf sock"
|
|
|
|
int our_fd = _phy.getDescriptor(c->sock);
|
|
|
|
|
2015-09-10 17:56:01 +00:00
|
|
|
if(c) {
|
|
|
|
//dwr(c->owner->tid, "nc_recved(%d)\n", (intptr_t)arg);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
//dwr(-1, "nc_recved(%d): unable to locate connection\n", (intptr_t)arg);
|
|
|
|
return ERR_OK; // ?
|
|
|
|
}
|
|
|
|
if(p == NULL) {
|
|
|
|
//dwr(c->owner->tid, "nc_recved() = %s\n", lwiperror(err));
|
|
|
|
if(c)
|
|
|
|
//dwr(c->owner->tid, "nc_recved()\n");
|
|
|
|
if(c) {
|
|
|
|
//dwr(c->owner->tid, "closing connection\n");
|
|
|
|
nc_close(tpcb);
|
2015-09-10 22:19:43 +00:00
|
|
|
close(our_fd); /* TODO: Check logic */
|
|
|
|
//nc_service->remove_connection(c);
|
|
|
|
c->owner->close(c);
|
2015-09-10 17:56:01 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
//dwr(-1, "can't locate connection via (arg)\n");
|
|
|
|
}
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
q = p;
|
|
|
|
while(p != NULL) { // Cycle through pbufs and write them to the socket
|
|
|
|
//dwr(c->owner->tid, "writing data to mapped sock (%d)\n", c->our_fd);
|
|
|
|
if(p->len <= 0)
|
|
|
|
break; // ?
|
2015-09-10 22:19:43 +00:00
|
|
|
if((n = write(our_fd, p->payload, p->len)) > 0) {
|
2015-09-10 17:56:01 +00:00
|
|
|
if(n < p->len) {
|
|
|
|
//dwr(c->owner->tid, "ERROR: unable to write entire pbuf to buffer\n");
|
|
|
|
}
|
|
|
|
lwipstack->tcp_recved(tpcb, n);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
//dwr(c->owner->tid, "ERROR: No data written to intercept buffer.\n");
|
|
|
|
}
|
|
|
|
p = p->next;
|
|
|
|
}
|
|
|
|
lwipstack->pbuf_free(q); /* free pbufs */
|
|
|
|
return ERR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void NetconEthernetTap::nc_err(void *arg, err_t err)
|
|
|
|
{
|
2015-09-10 21:44:01 +00:00
|
|
|
NetconConnection *c = getConnectionByThisFD((intptr)arg);
|
2015-09-10 17:56:01 +00:00
|
|
|
if(c) {
|
2015-09-10 22:19:43 +00:00
|
|
|
//nc_service->remove_connection(c);
|
|
|
|
c->owner->close(c);
|
|
|
|
//tcp_close(c->pcb);
|
2015-09-10 17:56:01 +00:00
|
|
|
}
|
|
|
|
else {
|
2015-09-10 21:44:01 +00:00
|
|
|
// can't locate connection object for PCB
|
2015-09-10 17:56:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void NetconEthernetTap::nc_close(struct tcp_pcb* tpcb)
|
|
|
|
{
|
2015-09-10 22:19:43 +00:00
|
|
|
//NetconConnection *c = getConnectionByPCB(tpcb);
|
2015-09-10 17:56:01 +00:00
|
|
|
lwipstack->tcp_arg(tpcb, NULL);
|
|
|
|
lwipstack->tcp_sent(tpcb, NULL);
|
|
|
|
lwipstack->tcp_recv(tpcb, NULL);
|
|
|
|
lwipstack->tcp_err(tpcb, NULL);
|
|
|
|
lwipstack->tcp_poll(tpcb, NULL, 0);
|
2015-09-10 21:44:01 +00:00
|
|
|
lwipstack->tcp_close(tpcb);
|
2015-09-10 17:56:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
err_t NetconEthernetTap::nc_send(struct tcp_pcb *tpcb)
|
|
|
|
{
|
|
|
|
return ERR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
err_t NetconEthernetTap::nc_sent(void* arg, struct tcp_pcb *tpcb, u16_t len)
|
|
|
|
{
|
2015-09-10 22:19:43 +00:00
|
|
|
//NetconConnection *c = _phy->getConnectionByPCB(tpcb);
|
|
|
|
//if(c)
|
|
|
|
//c->data_sent += len;
|
2015-09-10 17:56:01 +00:00
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
err_t NetconEthernetTap::nc_connected(void *arg, struct tcp_pcb *tpcb, err_t err)
|
|
|
|
{
|
2015-09-10 21:44:01 +00:00
|
|
|
for(int i=0; i<clients.size(); i++) {
|
|
|
|
if(clients[i].containsPCB(tpcb)) {
|
|
|
|
send_return_value(clients[i],err);
|
|
|
|
}
|
2015-09-10 17:56:01 +00:00
|
|
|
}
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*------------------------------------------------------------------------------
|
|
|
|
----------------------------- RPC Handler functions ----------------------------
|
|
|
|
------------------------------------------------------------------------------*/
|
|
|
|
|
2015-09-10 20:52:18 +00:00
|
|
|
void NetconEthernetTap::handle_bind(NetconClient *client, struct bind_st *bind_rpc)
|
2015-09-10 17:56:01 +00:00
|
|
|
{
|
|
|
|
// FIXME: Is this hack still needed?
|
|
|
|
struct sockaddr_in *connaddr;
|
|
|
|
connaddr = (struct sockaddr_in *) &bind_rpc->addr;
|
|
|
|
int conn_port = lwipstack->ntohs(connaddr->sin_port);
|
|
|
|
ip_addr_t conn_addr;
|
|
|
|
IP4_ADDR(&conn_addr, 192,168,0,2);
|
|
|
|
|
|
|
|
int ip = connaddr->sin_addr.s_addr;
|
|
|
|
unsigned char bytes[4];
|
|
|
|
bytes[0] = ip & 0xFF;
|
|
|
|
bytes[1] = (ip >> 8) & 0xFF;
|
|
|
|
bytes[2] = (ip >> 16) & 0xFF;
|
|
|
|
bytes[3] = (ip >> 24) & 0xFF;
|
2015-09-10 20:52:18 +00:00
|
|
|
// "binding to: %d.%d.%d.%d", bytes[0], bytes[1], bytes[2], bytes[3]
|
|
|
|
NetconConnection *c = client->getConnectionByTheirFD(bind_rpc->sockfd);
|
|
|
|
if(c) {
|
2015-09-10 17:56:01 +00:00
|
|
|
if(c->pcb->state == CLOSED){
|
|
|
|
int err = lwipstack->tcp_bind(c->pcb, &conn_addr, conn_port);
|
|
|
|
if(err != ERR_OK) {
|
2015-09-10 20:52:18 +00:00
|
|
|
// error while binding to addr/port
|
2015-09-10 17:56:01 +00:00
|
|
|
}
|
|
|
|
else {
|
2015-09-10 20:52:18 +00:00
|
|
|
// bind successful
|
2015-09-10 17:56:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2015-09-10 20:52:18 +00:00
|
|
|
// PCB not in CLOSED state. Ignoring BIND request.
|
2015-09-10 17:56:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2015-09-10 20:52:18 +00:00
|
|
|
// can't locate connection for PCB
|
2015-09-10 17:56:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-10 20:52:18 +00:00
|
|
|
void NetconEthernetTap::handle_listen(NetconClient *client, struct listen_st *listen_rpc)
|
2015-09-10 17:56:01 +00:00
|
|
|
{
|
2015-09-10 20:52:18 +00:00
|
|
|
NetconConnection *c = client->getConnectionByTheirFD(listen_rpc->sockfd);
|
2015-09-10 17:56:01 +00:00
|
|
|
if(c) {
|
|
|
|
if(c->pcb->state == LISTEN) {
|
2015-09-10 20:52:18 +00:00
|
|
|
// PCB is already in listening state.
|
2015-09-10 17:56:01 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
struct tcp_pcb* listening_pcb = lwipstack->tcp_listen(c->pcb);
|
|
|
|
if(listening_pcb != NULL) {
|
|
|
|
c->pcb = listening_pcb;
|
|
|
|
lwipstack->tcp_accept(listening_pcb, nc_accept);
|
2015-09-10 20:52:18 +00:00
|
|
|
int our_fd = _phy.getDescriptor(c->sock);
|
|
|
|
lwipstack->tcp_arg(listening_pcb, (void*)(intptr_t)our_fd);
|
|
|
|
client->waiting_for_retval=true;
|
2015-09-10 17:56:01 +00:00
|
|
|
}
|
|
|
|
else {
|
2015-09-10 20:52:18 +00:00
|
|
|
// unable to allocate memory for new listening PCB
|
2015-09-10 17:56:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2015-09-10 20:52:18 +00:00
|
|
|
// can't locate connection for PCB
|
2015-09-10 17:56:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-10 20:52:18 +00:00
|
|
|
void NetconEthernetTap::handle_retval(NetconClient *client, unsigned char* buf)
|
2015-09-10 17:56:01 +00:00
|
|
|
{
|
2015-09-10 20:52:18 +00:00
|
|
|
if(client->unmapped_conn != NULL) {
|
|
|
|
memcpy(&(client->unmapped_conn->their_fd), &buf[1], sizeof(int));
|
2015-09-10 21:44:01 +00:00
|
|
|
client->unmapped_conn = NULL;
|
2015-09-10 17:56:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-10 20:52:18 +00:00
|
|
|
void NetconEthernetTap::handle_socket(NetconClient *client, struct socket_st* socket_rpc)
|
2015-09-10 17:56:01 +00:00
|
|
|
{
|
|
|
|
struct tcp_pcb *pcb = lwipstack->tcp_new();
|
|
|
|
if(pcb != NULL) {
|
2015-09-10 20:52:18 +00:00
|
|
|
int *their_fd;
|
2015-09-10 22:19:43 +00:00
|
|
|
NetconConnection *new_conn = client->addConnection(NetconConnectionType.BUFFER, _phy.createSocketPair(*their_fd, client));
|
|
|
|
new_conn->their_fd = *their_fd;
|
2015-09-10 20:52:18 +00:00
|
|
|
new_conn->pcb = pcb;
|
2015-09-10 22:19:43 +00:00
|
|
|
sock_fd_write(_phy.getDescriptor(client->rpc->sock), *their_fd);
|
2015-09-10 21:44:01 +00:00
|
|
|
client->unmapped_conn = new_conn;
|
2015-09-10 17:56:01 +00:00
|
|
|
}
|
|
|
|
else {
|
2015-09-10 20:52:18 +00:00
|
|
|
// Memory not available for new PCB
|
2015-09-10 17:56:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-10 20:52:18 +00:00
|
|
|
void NetconEthernetTap::handle_connect(NetconClient *client, struct connect_st* connect_rpc)
|
2015-09-10 17:56:01 +00:00
|
|
|
{
|
|
|
|
// FIXME: Parse out address information -- Probably a more elegant way to do this
|
|
|
|
struct sockaddr_in *connaddr;
|
|
|
|
connaddr = (struct sockaddr_in *) &connect_rpc->__addr;
|
|
|
|
int conn_port = lwipstack->ntohs(connaddr->sin_port);
|
|
|
|
ip_addr_t conn_addr = convert_ip((struct sockaddr_in *)&connect_rpc->__addr);
|
2015-09-10 20:52:18 +00:00
|
|
|
NetconConnection *c = client->getConnectionByTheirFD(connect_rpc->__fd);
|
2015-09-10 22:19:43 +00:00
|
|
|
int our_fd = _phy.getDescriptor(c->sock);
|
2015-09-10 17:56:01 +00:00
|
|
|
|
|
|
|
if(c!= NULL) {
|
|
|
|
lwipstack->tcp_sent(c->pcb, nc_sent); // FIXME: Move?
|
|
|
|
lwipstack->tcp_recv(c->pcb, nc_recved);
|
2015-09-10 19:46:37 +00:00
|
|
|
lwipstack->tcp_err(c->pcb, nc_err);
|
2015-09-10 17:56:01 +00:00
|
|
|
lwipstack->tcp_poll(c->pcb, nc_poll, APPLICATION_POLL_FREQ);
|
2015-09-10 22:19:43 +00:00
|
|
|
lwipstack->tcp_arg(c->pcb,(void*)(intptr_t)our_fd);
|
2015-09-10 17:56:01 +00:00
|
|
|
|
|
|
|
int err = 0;
|
|
|
|
if((err = lwipstack->tcp_connect(c->pcb,&conn_addr,conn_port, nc_connected)) < 0)
|
|
|
|
{
|
|
|
|
// dwr(h->tid, "tcp_connect() = %s\n", lwiperror(err));
|
|
|
|
// We should only return a value if failure happens immediately
|
|
|
|
// Otherwise, we still need to wait for a callback from lwIP.
|
|
|
|
// - This is because an ERR_OK from tcp_connect() only verifies
|
|
|
|
// that the SYN packet was enqueued onto the stack properly,
|
|
|
|
// that's it!
|
|
|
|
// - Most instances of a retval for a connect() should happen
|
|
|
|
// in the nc_connect() and nc_err() callbacks!
|
2015-09-10 20:52:18 +00:00
|
|
|
send_return_value(client, err);
|
2015-09-10 17:56:01 +00:00
|
|
|
}
|
|
|
|
// Everything seems to be ok, but we don't have enough info to retval
|
2015-09-10 20:52:18 +00:00
|
|
|
client->waiting_for_retval=true;
|
2015-09-10 17:56:01 +00:00
|
|
|
}
|
|
|
|
else {
|
2015-09-10 20:52:18 +00:00
|
|
|
// could not locate PCB based on their fd
|
2015-09-10 17:56:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void NetconEthernetTap::handle_write(NetconConnection *c)
|
|
|
|
{
|
|
|
|
if(c) {
|
|
|
|
int sndbuf = c->pcb->snd_buf;
|
|
|
|
float avail = (float)sndbuf;
|
|
|
|
float max = (float)TCP_SND_BUF;
|
|
|
|
float load = 1.0 - (avail / max);
|
|
|
|
|
|
|
|
if(load >= 0.9) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
int write_allowance = sndbuf < c->idx ? sndbuf : c->idx;
|
|
|
|
int sz;
|
|
|
|
|
2015-09-10 20:52:18 +00:00
|
|
|
if(write_allowance > 0) {
|
2015-09-10 17:56:01 +00:00
|
|
|
int err = lwipstack->tcp_write(c->pcb, &c->buf, write_allowance, TCP_WRITE_FLAG_COPY);
|
|
|
|
if(err != ERR_OK) {
|
2015-09-10 20:52:18 +00:00
|
|
|
// error while writing to PCB
|
2015-09-10 17:56:01 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
sz = (c->idx)-write_allowance;
|
|
|
|
if(sz) {
|
|
|
|
memmove(&c->buf, (c->buf+write_allowance), sz);
|
|
|
|
}
|
|
|
|
c->idx -= write_allowance;
|
2015-09-10 21:44:01 +00:00
|
|
|
//c->data_sent += write_allowance;
|
2015-09-10 17:56:01 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2015-09-10 20:52:18 +00:00
|
|
|
// lwIP stack full
|
2015-09-10 17:56:01 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2015-09-10 20:52:18 +00:00
|
|
|
// could not locate connection for this fd
|
2015-09-10 17:56:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-02 22:17:38 +00:00
|
|
|
} // namespace ZeroTier
|
|
|
|
|
|
|
|
#endif // ZT_ENABLE_NETCON
|