123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239 |
- /*
- * 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
- #include <algorithm>
- #include <utility>
- #include <dlfcn.h>
- #include "NetconEthernetTap.hpp"
- #include "../node/Utils.hpp"
- #include "../osdep/OSUtils.hpp"
- #include "../osdep/Phy.hpp"
- #include "lwip/tcp_impl.h"
- #include "netif/etharp.h"
- #include "lwip/ip.h"
- #include "lwip/ip_addr.h"
- #include "lwip/ip_frag.h"
- #include "lwip/tcp.h"
- #include "LWIPStack.hpp"
- #include "NetconService.hpp"
- #include "Intercept.h"
- #include "NetconUtilities.hpp"
- #define APPLICATION_POLL_FREQ 20
- #define ZT_LWIP_TCP_TIMER_INTERVAL 10
- #define STATUS_TMR_INTERVAL 500 // How often we check connection statuses
- 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) :
- _phy(this,false,true),
- _unixListenSocket((PhySocket *)0),
- _handler(handler),
- _arg(arg),
- _nwid(nwid),
- _mac(mac),
- _homePath(homePath),
- _mtu(mtu),
- _enabled(true),
- _run(true)
- {
- char sockPath[4096];
- Utils::snprintf(sockPath,sizeof(sockPath),"/tmp/.ztnc_%.16llx",(unsigned long long)nwid);
- _dev = sockPath;
- lwipstack = new LWIPStack("ext/bin/lwip/liblwip.so"); // ext/bin/liblwip.so.debug for debug symbols
- if(!lwipstack) // TODO double check this check
- throw std::runtime_error("unable to load lwip lib.");
- lwipstack->lwip_init();
- _unixListenSocket = _phy.unixListen(sockPath,(void *)this);
- if (!_unixListenSocket)
- throw std::runtime_error(std::string("unable to bind to ")+sockPath);
- _thread = Thread::start(this);
- }
- NetconEthernetTap::~NetconEthernetTap()
- {
- _run = false;
- _phy.whack();
- _phy.whack();
- Thread::join(_thread);
- _phy.close(_unixListenSocket,false);
- delete lwipstack;
- }
- void NetconEthernetTap::setEnabled(bool en)
- {
- _enabled = en;
- }
- bool NetconEthernetTap::enabled() const
- {
- return _enabled;
- }
- bool NetconEthernetTap::addIp(const InetAddress &ip)
- {
- 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());
- if (ip.isV4()) {
- // Set IP
- static ip_addr_t ipaddr, netmask, gw;
- IP4_ADDR(&gw,192,168,0,1);
- ipaddr.addr = *((u32_t *)ip.rawIpData());
- netmask.addr = *((u32_t *)ip.netmask().rawIpData());
- // Set up the lwip-netif for LWIP's sake
- lwipstack->netif_add(&interface,&ipaddr, &netmask, &gw, NULL, tapif_init, lwipstack->_ethernet_input);
- interface.state = this;
- interface.output = lwipstack->_etharp_output;
- _mac.copyTo(interface.hwaddr, 6);
- interface.mtu = _mtu;
- interface.name[0] = 't';
- interface.name[1] = 'p';
- interface.linkoutput = low_level_output;
- interface.hwaddr_len = 6;
- interface.flags = NETIF_FLAG_BROADCAST | NETIF_FLAG_ETHARP | NETIF_FLAG_IGMP;
- lwipstack->netif_set_default(&interface);
- lwipstack->netif_set_up(&interface);
- }
- }
- return true;
- }
- bool NetconEthernetTap::removeIp(const InetAddress &ip)
- {
- Mutex::Lock _l(_ips_m);
- std::vector<InetAddress>::iterator i(std::find(_ips.begin(),_ips.end(),ip));
- if (i == _ips.end())
- return false;
- _ips.erase(i);
- if (ip.isV4()) {
- // TODO: dealloc from LWIP
- }
- return true;
- }
- std::vector<InetAddress> NetconEthernetTap::ips() const
- {
- Mutex::Lock _l(_ips_m);
- return _ips;
- }
- void NetconEthernetTap::put(const MAC &from,const MAC &to,unsigned int etherType,const void *data,unsigned int len)
- {
- struct pbuf *p,*q;
- if (!_enabled)
- return;
- struct eth_hdr ethhdr;
- from.copyTo(ethhdr.src.addr, 6);
- to.copyTo(ethhdr.dest.addr, 6);
- ethhdr.type = Utils::hton((uint16_t)etherType);
- // We allocate a pbuf chain of pbufs from the pool.
- p = lwipstack->pbuf_alloc(PBUF_RAW, len+sizeof(struct eth_hdr), PBUF_POOL);
- if (p != NULL) {
- const char *dataptr = reinterpret_cast<const char *>(data);
- // First pbuf gets ethernet header at start
- q = p;
- if (q->len < sizeof(ethhdr)) {
- fprintf(stderr,"_put(): Dropped packet: first pbuf smaller than ethernet header\n");
- return;
- }
- memcpy(q->payload,ðhdr,sizeof(ethhdr));
- memcpy(q->payload + sizeof(ethhdr),dataptr,q->len - sizeof(ethhdr));
- dataptr += q->len - sizeof(ethhdr);
- // Remaining pbufs (if any) get rest of data
- while ((q = q->next)) {
- memcpy(q->payload,dataptr,q->len);
- dataptr += q->len;
- }
- } else {
- fprintf(stderr, "_put(): Dropped packet: no pbufs available\n");
- return;
- }
- {
- Mutex::Lock _l2(lwipstack->_lock);
- if(interface.input(p, &interface) != ERR_OK) {
- fprintf(stderr, "_put(): Error while RXing packet (netif->input)\n");
- }
- }
- }
- std::string NetconEthernetTap::deviceName() const
- {
- return _dev;
- }
- void NetconEthernetTap::setFriendlyName(const char *friendlyName)
- {
- }
- void NetconEthernetTap::scanMulticastGroups(std::vector<MulticastGroup> &added,std::vector<MulticastGroup> &removed)
- {
- std::vector<MulticastGroup> newGroups;
- Mutex::Lock _l(_multicastGroups_m);
- // TODO: get multicast subscriptions from LWIP
- std::vector<InetAddress> allIps(ips());
- for(std::vector<InetAddress>::iterator ip(allIps.begin());ip!=allIps.end();++ip)
- newGroups.push_back(MulticastGroup::deriveMulticastGroupForAddressResolution(*ip));
- std::sort(newGroups.begin(),newGroups.end());
- std::unique(newGroups.begin(),newGroups.end());
- for(std::vector<MulticastGroup>::iterator m(newGroups.begin());m!=newGroups.end();++m) {
- if (!std::binary_search(_multicastGroups.begin(),_multicastGroups.end(),*m))
- added.push_back(*m);
- }
- for(std::vector<MulticastGroup>::iterator m(_multicastGroups.begin());m!=_multicastGroups.end();++m) {
- if (!std::binary_search(newGroups.begin(),newGroups.end(),*m))
- removed.push_back(*m);
- }
- _multicastGroups.swap(newGroups);
- }
- TcpConnection *NetconEthernetTap::getConnectionByPCB(struct tcp_pcb *pcb)
- {
- for(size_t i=0; i<tcp_connections.size(); i++) {
- if(tcp_connections[i]->pcb == pcb)
- return tcp_connections[i];
- }
- return NULL;
- }
- TcpConnection *NetconEthernetTap::getConnectionByTheirFD(PhySocket *sock, int fd)
- {
- for(size_t i=0; i<tcp_connections.size(); i++) {
- if(tcp_connections[i]->perceived_fd == fd && tcp_connections[i]->rpcSock == sock)
- return tcp_connections[i];
- }
- return NULL;
- }
- /*
- * Closes a TcpConnection and associated LWIP PCB strcuture.
- */
- void NetconEthernetTap::closeConnection(TcpConnection *conn)
- {
- //lwipstack->_tcp_arg(conn->pcb, NULL);
- //lwipstack->_tcp_sent(conn->pcb, NULL);
- //lwipstack->_tcp_recv(conn->pcb, NULL);
- //lwipstack->_tcp_err(conn->pcb, NULL);
- //lwipstack->_tcp_poll(conn->pcb, NULL, 0);
- //lwipstack->_tcp_close(conn->pcb);
- //close(conn->their_fd);
- if(conn->dataSock) {
- close(_phy.getDescriptor(conn->dataSock));
- _phy.close(conn->dataSock,false);
- }
- /* Eventually we might want to use a map here instead */
- for(int i=0; i<tcp_connections.size(); i++) {
- if(tcp_connections[i] == conn) {
- tcp_connections.erase(tcp_connections.begin() + i);
- break;
- }
- }
- delete conn;
- }
- /*
- * Close a single RPC connection and associated PhySocket
- */
- void NetconEthernetTap::closeClient(PhySocket *sock)
- {
- for(size_t i=0; i<rpc_sockets.size(); i++) {
- if(rpc_sockets[i] == sock){
- rpc_sockets.erase(rpc_sockets.begin() + i);
- break;
- }
- }
- close(_phy.getDescriptor(sock));
- _phy.close(sock);
- }
- /*
- * Close all RPC and TCP connections
- */
- void NetconEthernetTap::closeAll()
- {
- while(rpc_sockets.size())
- closeClient(rpc_sockets.front());
- while(tcp_connections.size())
- closeConnection(tcp_connections.front());
- }
- #include <sys/resource.h>
- void NetconEthernetTap::threadMain()
- throw()
- {
- uint64_t prev_tcp_time = 0;
- uint64_t prev_status_time = 0;
- uint64_t prev_etharp_time = 0;
- /*
- fprintf(stderr, "- MEM_SIZE = %dM\n", MEM_SIZE / (1024*1024));
- fprintf(stderr, "- TCP_SND_BUF = %dK\n", TCP_SND_BUF / 1024);
- fprintf(stderr, "- MEMP_NUM_PBUF = %d\n", MEMP_NUM_PBUF);
- fprintf(stderr, "- MEMP_NUM_TCP_PCB = %d\n", MEMP_NUM_TCP_PCB);
- fprintf(stderr, "- MEMP_NUM_TCP_PCB_LISTEN = %d\n", MEMP_NUM_TCP_PCB_LISTEN);
- fprintf(stderr, "- MEMP_NUM_TCP_SEG = %d\n", MEMP_NUM_TCP_SEG);
- fprintf(stderr, "- PBUF_POOL_SIZE = %d\n", PBUF_POOL_SIZE);
- fprintf(stderr, "- TCP_SND_QUEUELEN = %d\n", TCP_SND_QUEUELEN);
- fprintf(stderr, "- TCP_MAXRTX = %d\n", TCP_MAXRTX);
- fprintf(stderr, "- IP_REASSEMBLY = %d\n", IP_REASSEMBLY);
- fprintf(stderr, "- TCP_WND = %d\n", TCP_WND);
- fprintf(stderr, "- TCP_MSS = %d\n", TCP_MSS);
- fprintf(stderr, "- ARP_TMR_INTERVAL = %d\n", ARP_TMR_INTERVAL);
- fprintf(stderr, "- TCP_TMR_INTERVAL = %d\n", TCP_TMR_INTERVAL);
- fprintf(stderr, "- IP_TMR_INTERVAL = %d\n", IP_TMR_INTERVAL);
- */
- // Main timer loop
- while (_run) {
- uint64_t now = OSUtils::now();
- uint64_t since_tcp = now - prev_tcp_time;
- uint64_t since_etharp = now - prev_etharp_time;
- uint64_t since_status = now - prev_status_time;
- uint64_t tcp_remaining = ZT_LWIP_TCP_TIMER_INTERVAL;
- uint64_t etharp_remaining = ARP_TMR_INTERVAL;
- uint64_t status_remaining = STATUS_TMR_INTERVAL;
- if (since_status >= STATUS_TMR_INTERVAL) {
- prev_status_time = now;
- if(rpc_sockets.size() || tcp_connections.size()) {
- /* Here we will periodically check the list of rpc_sockets for those that
- do not currently have any data connection associated with them. If they are
- unused, then we will try to read from them, if they fail, we can safely assume
- that the client has closed their end and we can close ours */
- for(size_t i = 0; i<tcp_connections.size(); i++) {
- if(tcp_connections[i]->listening) {
- char c;
- if (read(_phy.getDescriptor(tcp_connections[i]->dataSock), &c, 1) < 0) {
- // Still in listening state
- }
- else {
- // Here we should handle the case there there is incoming data (?)
- fprintf(stderr, "Listening socketpair closed. Removing RPC connection (%d)\n",
- _phy.getDescriptor(tcp_connections[i]->dataSock));
- closeConnection(tcp_connections[i]);
- }
- }
- }
- }
- fprintf(stderr, "tcp_conns = %d, rpc_socks = %d\n", tcp_connections.size(), rpc_sockets.size());
- for(size_t i=0, associated = 0; i<rpc_sockets.size(); i++, associated = 0) {
- for(size_t j=0; j<tcp_connections.size(); j++) {
- if (tcp_connections[j]->rpcSock == rpc_sockets[i])
- associated++;
- }
- if(!associated){
- // No TCP connections are associated, this is a candidate for removal
- unsigned char tmpbuf[BUF_SZ];
- if(read(_phy.getDescriptor(rpc_sockets[i]),&tmpbuf,BUF_SZ) < 0) {
- closeClient(rpc_sockets[i]);
- }
- else {
- // Handle RPC call, this is rare
- fprintf(stderr, "run(): RPC read during connection check\n");
- exit(0);
- phyOnUnixData(rpc_sockets[i],NULL,&tmpbuf,BUF_SZ);
- }
- }
- }
- }
- if (since_tcp >= ZT_LWIP_TCP_TIMER_INTERVAL) {
- prev_tcp_time = now;
- lwipstack->tcp_tmr();
- } else {
- tcp_remaining = ZT_LWIP_TCP_TIMER_INTERVAL - since_tcp;
- }
- if (since_etharp >= ARP_TMR_INTERVAL) {
- prev_etharp_time = now;
- lwipstack->etharp_tmr();
- } else {
- etharp_remaining = ARP_TMR_INTERVAL - since_etharp;
- }
- _phy.poll((unsigned long)std::min(tcp_remaining,etharp_remaining));
- }
- closeAll();
- dlclose(lwipstack->_libref);
- }
- void NetconEthernetTap::phyOnUnixClose(PhySocket *sock,void **uptr)
- {
- // FIXME: What do?
- }
- /*
- * Handles data on a client's data buffer. Data is sent to LWIP to be enqueued.
- */
- void NetconEthernetTap::phyOnFileDescriptorActivity(PhySocket *sock,void **uptr,bool readable,bool writable)
- {
- if(readable) {
- TcpConnection *conn = (TcpConnection*)*uptr;
- if(conn->dataSock) // Sometimes a connection may be closed via nc_recved, check first
- {
- //Mutex::Lock _l(lwipstack->_lock);
- lwipstack->_lock.lock();
- handle_write(conn);
- lwipstack->_lock.unlock();
- }
- }
- else {
- fprintf(stderr, "phyOnFileDescriptorActivity(): PhySocket not readable\n");
- }
- }
- // Unused -- no UDP or TCP from this thread/Phy<>
- void NetconEthernetTap::phyOnDatagram(PhySocket *sock,void **uptr,const struct sockaddr *from,void *data,unsigned long len) {}
- 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) {}
- /*
- * Add a new PhySocket for the client connection
- */
- void NetconEthernetTap::phyOnUnixAccept(PhySocket *sockL,PhySocket *sockN,void **uptrL,void **uptrN) {
- rpc_sockets.push_back(sockN);
- }
- /*
- * Processes incoming data on a client-specific RPC connection
- */
- void NetconEthernetTap::phyOnUnixData(PhySocket *sock,void **uptr,void *data,unsigned long len)
- {
- unsigned char *buf = (unsigned char*)data;
- switch(buf[0])
- {
- case RPC_SOCKET:
- fprintf(stderr, "RPC_SOCKET\n");
- struct socket_st socket_rpc;
- memcpy(&socket_rpc, &buf[1], sizeof(struct socket_st));
- handle_socket(sock, uptr, &socket_rpc);
- break;
- case RPC_LISTEN:
- fprintf(stderr, "RPC_LISTEN\n");
- struct listen_st listen_rpc;
- memcpy(&listen_rpc, &buf[1], sizeof(struct listen_st));
- handle_listen(sock, uptr, &listen_rpc);
- break;
- case RPC_BIND:
- fprintf(stderr, "RPC_BIND\n");
- struct bind_st bind_rpc;
- memcpy(&bind_rpc, &buf[1], sizeof(struct bind_st));
- handle_bind(sock, uptr, &bind_rpc);
- break;
- case RPC_KILL_INTERCEPT:
- fprintf(stderr, "RPC_KILL_INTERCEPT\n");
- break;
- case RPC_CONNECT:
- fprintf(stderr, "RPC_CONNECT\n");
- struct connect_st connect_rpc;
- memcpy(&connect_rpc, &buf[1], sizeof(struct connect_st));
- handle_connect(sock, uptr, &connect_rpc);
- break;
- case RPC_FD_MAP_COMPLETION:
- fprintf(stderr, "RPC_FD_MAP_COMPLETION\n");
- handle_retval(sock, uptr, buf);
- break;
- default:
- break;
- }
- }
- /*
- * Send a 'retval' and 'errno' to the client for an RPC over connection->rpcSock
- */
- int NetconEthernetTap::send_return_value(TcpConnection *conn, int retval, int _errno = 0)
- {
- if(conn) {
- int n = send_return_value(_phy.getDescriptor(conn->rpcSock), retval, _errno);
- if(n > 0)
- conn->pending = false;
- else {
- fprintf(stderr, "Unable to send return value to the intercept. Closing connection\n");
- closeConnection(conn);
- }
- return n;
- }
- return -1;
- }
- int NetconEthernetTap::send_return_value(int fd, int retval, int _errno = 0)
- {
- int sz = sizeof(char) + sizeof(retval) + sizeof(errno);
- char retmsg[sz];
- memset(&retmsg, '\0', sizeof(retmsg));
- retmsg[0]=RPC_RETVAL;
- memcpy(&retmsg[1], &retval, sizeof(retval));
- memcpy(&retmsg[1]+sizeof(retval), &_errno, sizeof(_errno));
- return write(fd, &retmsg, sz);
- }
- /*------------------------------------------------------------------------------
- --------------------------------- LWIP callbacks -------------------------------
- ------------------------------------------------------------------------------*/
- // NOTE: these are called from within LWIP, meaning that lwipstack->_lock is ALREADY
- // locked in this case!
- /*
- * Callback from LWIP for when a connection has been accepted and the PCB has been
- * put into an ACCEPT state.
- *
- * A socketpair is created, one end is kept and wrapped into a PhySocket object
- * for use in the main ZT I/O loop, and one end is sent to the client. The client
- * is then required to tell the service what new file descriptor it has allocated
- * for this connection. After the mapping is complete, the accepted socket can be
- * used.
- *
- * @param associated service state object
- * @param newly allocated PCB
- * @param error code
- * @return ERR_OK if everything is ok, -1 otherwise
- i := should be implemented in intercept lib
- I := is implemented in intercept lib
- X := is implemented in service
- ? := required treatment Unknown
- - := Not needed
- [ ] EAGAIN or EWOULDBLOCK - The socket is marked nonblocking and no connections are present
- to be accepted. POSIX.1-2001 allows either error to be returned for
- this case, and does not require these constants to have the same value,
- so a portable application should check for both possibilities.
- [I] EBADF - The descriptor is invalid.
- [I] ECONNABORTED - A connection has been aborted.
- [i] EFAULT - The addr argument is not in a writable part of the user address space.
- [-] EINTR - The system call was interrupted by a signal that was caught before a valid connection arrived; see signal(7).
- [I] EINVAL - Socket is not listening for connections, or addrlen is invalid (e.g., is negative).
- [I] EINVAL - (accept4()) invalid value in flags.
- [I] EMFILE - The per-process limit of open file descriptors has been reached.
- [ ] ENFILE - The system limit on the total number of open files has been reached.
- [ ] ENOBUFS, ENOMEM - Not enough free memory. This often means that the memory allocation is
- limited by the socket buffer limits, not by the system memory.
- [I] ENOTSOCK - The descriptor references a file, not a socket.
- [I] EOPNOTSUPP - The referenced socket is not of type SOCK_STREAM.
- [ ] EPROTO - Protocol error.
- *
- */
- err_t NetconEthernetTap::nc_accept(void *arg, struct tcp_pcb *newpcb, err_t err)
- {
- fprintf(stderr, "nc_accept()\n");
- Larg *l = (Larg*)arg;
- TcpConnection *conn = l->conn;
- NetconEthernetTap *tap = l->tap;
- int larg_fd = tap->_phy.getDescriptor(conn->dataSock);
- if(conn) {
- ZT_PHY_SOCKFD_TYPE fds[2];
- if(socketpair(PF_LOCAL, SOCK_STREAM, 0, fds) < 0) {
- if(errno < 0) {
- l->tap->send_return_value(conn, -1, errno);
- fprintf(stderr, "nc_accept(): unable to create socketpair\n");
- return ERR_MEM;
- }
- }
- TcpConnection *new_tcp_conn = new TcpConnection();
- new_tcp_conn->dataSock = tap->_phy.wrapSocket(fds[0], new_tcp_conn);
- new_tcp_conn->rpcSock = conn->rpcSock;
- new_tcp_conn->pcb = newpcb;
- new_tcp_conn->their_fd = fds[1];
- tap->tcp_connections.push_back(new_tcp_conn);
- int send_fd = tap->_phy.getDescriptor(conn->rpcSock);
- int n = write(larg_fd, "z", 1); // accept() in library waits for this byte
- if(n > 0) {
- if(sock_fd_write(send_fd, fds[1]) > 0) {
- close(fds[1]); // close other end of socketpair
- new_tcp_conn->pending = true;
- }
- else {
- fprintf(stderr, "nc_accept(%d): unable to send fd to client\n", larg_fd);
- }
- }
- else {
- fprintf(stderr, "nc_accept(%d): error writing signal byte (send_fd = %d, perceived_fd = %d)\n", larg_fd, send_fd, fds[1]);
- return -1;
- }
- tap->lwipstack->_tcp_arg(newpcb, new Larg(tap, new_tcp_conn));
- tap->lwipstack->_tcp_recv(newpcb, nc_recved);
- tap->lwipstack->_tcp_err(newpcb, nc_err);
- tap->lwipstack->_tcp_sent(newpcb, nc_sent);
- tap->lwipstack->_tcp_poll(newpcb, nc_poll, 0.5);
- tcp_accepted(conn->pcb); // Let lwIP know that it can queue additional incoming connections
- return ERR_OK;
- }
- else {
- fprintf(stderr, "nc_accept(%d): can't locate Connection object for PCB.\n", larg_fd);
- }
- return -1;
- }
- /*
- * Callback from LWIP for when data is available to be read from the network.
- *
- * Data is in the form of a linked list of struct pbufs, it is then recombined and
- * send to the client over the associated unix socket.
- *
- * @param associated service state object
- * @param allocated PCB
- * @param chain of pbufs
- * @param error code
- * @return ERR_OK if everything is ok, -1 otherwise
- *
- */
- err_t NetconEthernetTap::nc_recved(void *arg, struct tcp_pcb *tpcb, struct pbuf *p, err_t err)
- {
- Larg *l = (Larg*)arg;
- int n;
- struct pbuf* q = p;
- if(!l->conn) {
- fprintf(stderr, "nc_recved(): no connection object\n");
- return ERR_OK; // ?
- }
- if(p == NULL) {
- if(l->conn) {
- fprintf(stderr, "nc_recved(): closing connection\n");
- l->tap->closeConnection(l->conn);
- }
- else {
- fprintf(stderr, "nc_recved(): can't locate connection via (arg)\n");
- }
- return err;
- }
- q = p;
- while(p != NULL) { // Cycle through pbufs and write them to the socket
- if(p->len <= 0)
- break; // ?
- if((n = l->tap->_phy.streamSend(l->conn->dataSock,p->payload, p->len)) > 0) {
- if(n < p->len) {
- fprintf(stderr, "nc_recved(): unable to write entire pbuf to buffer\n");
- }
- l->tap->lwipstack->_tcp_recved(tpcb, n); // TODO: would it be more efficient to call this once at the end?
- }
- else {
- fprintf(stderr, "nc_recved(): No data written to intercept buffer\n");
- }
- p = p->next;
- }
- l->tap->lwipstack->_pbuf_free(q); // free pbufs
- return ERR_OK;
- }
- /*
- * Callback from LWIP when an internal error is associtated with the given (arg)
- *
- * Since the PCB related to this error might no longer exist, only its perviously
- * associated (arg) is provided to us.
- *
- * @param associated service state object
- * @param error code
- *
- */
- void NetconEthernetTap::nc_err(void *arg, err_t err)
- {
- Larg *l = (Larg*)arg;
- //fprintf(stderr, "larg = %x, nc_err() = %d\n", l, err);
- if(!l->conn)
- fprintf(stderr, "nc_err(): Connection is NULL!\n");
- if(l->conn) {
- switch(err)
- {
- case ERR_MEM:
- fprintf(stderr, "nc_err(): ERR_MEM->ENOMEM\n");
- l->tap->send_return_value(l->conn, -1, ENOMEM);
- break;
- case ERR_BUF:
- fprintf(stderr, "nc_err(): ERR_BUF->ENOBUFS\n");
- l->tap->send_return_value(l->conn, -1, ENOBUFS);
- break;
- case ERR_TIMEOUT:
- fprintf(stderr, "nc_err(): ERR_TIMEOUT->ETIMEDOUT\n");
- l->tap->send_return_value(l->conn, -1, ETIMEDOUT);
- break;
- case ERR_RTE:
- fprintf(stderr, "nc_err(): ERR_RTE->ENETUNREACH\n");
- l->tap->send_return_value(l->conn, -1, ENETUNREACH);
- break;
- case ERR_INPROGRESS:
- fprintf(stderr, "nc_err(): ERR_INPROGRESS->EINPROGRESS\n");
- l->tap->send_return_value(l->conn, -1, EINPROGRESS);
- break;
- case ERR_VAL:
- fprintf(stderr, "nc_err(): ERR_VAL->EINVAL\n");
- l->tap->send_return_value(l->conn, -1, EINVAL);
- break;
- case ERR_WOULDBLOCK:
- fprintf(stderr, "nc_err(): ERR_WOULDBLOCK->EWOULDBLOCK\n");
- l->tap->send_return_value(l->conn, -1, EWOULDBLOCK);
- break;
- case ERR_USE:
- fprintf(stderr, "nc_err(): ERR_USE->EADDRINUSE\n");
- l->tap->send_return_value(l->conn, -1, EADDRINUSE);
- break;
- case ERR_ISCONN:
- fprintf(stderr, "nc_err(): ERR_ISCONN->EISCONN\n");
- l->tap->send_return_value(l->conn, -1, EISCONN);
- break;
- case ERR_ABRT:
- fprintf(stderr, "nc_err(): ERR_ABRT->ECONNREFUSED\n");
- l->tap->send_return_value(l->conn, -1, ECONNREFUSED);
- break;
- // FIXME: Below are errors which don't have a standard errno correlate
- case ERR_RST:
- l->tap->send_return_value(l->conn, -1, -1);
- break;
- case ERR_CLSD:
- l->tap->send_return_value(l->conn, -1, -1);
- break;
- case ERR_CONN:
- l->tap->send_return_value(l->conn, -1, -1);
- break;
- case ERR_ARG:
- l->tap->send_return_value(l->conn, -1, -1);
- break;
- case ERR_IF:
- l->tap->send_return_value(l->conn, -1, -1);
- break;
- default:
- break;
- }
- fprintf(stderr, "nc_err(): closing connection\n");
- l->tap->closeConnection(l->conn);
- }
- else {
- fprintf(stderr, "nc_err(): can't locate connection object for PCB\n");
- }
- }
- /*
- * Callback from LWIP to do whatever work we might need to do.
- *
- * @param associated service state object
- * @param PCB we're polling on
- * @return ERR_OK if everything is ok, -1 otherwise
- *
- */
- err_t NetconEthernetTap::nc_poll(void* arg, struct tcp_pcb *tpcb)
- {
- //Larg *l = (Larg*)arg;
- /*
- Larg *l = (Larg*)arg;
- TcpConnection *conn = l->conn;
- NetconEthernetTap *tap = l->tap;
- if(conn && conn->idx) // if valid connection and non-zero index (indicating data present)
- tap->handle_write(conn);
- */
- return ERR_OK;
- }
- /*
- * Callback from LWIP to signal that 'len' bytes have successfully been sent.
- * As a result, we should put our socket back into a notify-on-readability state
- * since there is now room on the PCB buffer to write to.
- *
- * NOTE: This could be used to track the amount of data sent by a connection.
- *
- * @param associated service state object
- * @param relevant PCB
- * @param length of data sent
- * @return ERR_OK if everything is ok, -1 otherwise
- *
- */
- err_t NetconEthernetTap::nc_sent(void* arg, struct tcp_pcb *tpcb, u16_t len)
- {
- //fprintf(stderr, "nc_sent()\n");
- Larg *l = (Larg*)arg;
- if(len) {
- //fprintf(stderr, "ACKING len = %d, setting read-notify = true, (sndbuf = %d)\n", len, l->conn->pcb->snd_buf);
- l->tap->_phy.setNotifyReadable(l->conn->dataSock, true);
- //uint64_t now = OSUtils::now();
- //fprintf(stderr, "nc_sent(): now = %u\n", now);
- l->tap->_phy.whack();
- }
- return ERR_OK;
- }
- /*
- * Callback from LWIP which sends a return value to the client to signal that
- * a connection was established for this PCB
- *
- * @param associated service state object
- * @param relevant PCB
- * @param error code
- * @return ERR_OK if everything is ok, -1 otherwise
- *
- */
- err_t NetconEthernetTap::nc_connected(void *arg, struct tcp_pcb *tpcb, err_t err)
- {
- fprintf(stderr, "nc_connected()\n");
- Larg *l = (Larg*)arg;
- l->tap->send_return_value(l->conn, ERR_OK);
- return ERR_OK;
- }
- /*------------------------------------------------------------------------------
- ----------------------------- RPC Handler functions ----------------------------
- ------------------------------------------------------------------------------*/
- /**
- * Handles a return value (client's perceived fd) and completes a mapping
- * so that we know what connection an RPC call should be associated with.
- *
- * @param PhySocket associated with this RPC connection
- * @param structure containing the data and parameters for this client's RPC
- *
- */
- void NetconEthernetTap::handle_retval(PhySocket *sock, void **uptr, unsigned char* buf)
- {
- TcpConnection *conn = (TcpConnection*)*uptr;
- if(conn->pending) {
- memcpy(&(conn->perceived_fd), &buf[1], sizeof(int));
- //fprintf(stderr, "handle_retval(): Mapping [our=%d -> their=%d]\n",
- //_phy.getDescriptor(conn->dataSock), conn->perceived_fd);
- conn->pending = false;
- }
- }
- /*
- * Handles an RPC to bind an LWIP PCB to a given address and port
- *
- * @param PhySocket associated with this RPC connection
- * @param structure containing the data and parameters for this client's RPC
- *
- i := should be implemented in intercept lib
- I := is implemented in intercept lib
- X := is implemented in service
- ? := required treatment Unknown
- - := Not needed
- [ ] EACCES - The address is protected, and the user is not the superuser.
- [X] EADDRINUSE - The given address is already in use.
- [I] EBADF - sockfd is not a valid descriptor.
- [X] EINVAL - The socket is already bound to an address.
- [I] ENOTSOCK - sockfd is a descriptor for a file, not a socket.
- [X] ENOMEM - Insufficient kernel memory was available.
- - The following errors are specific to UNIX domain (AF_UNIX) sockets:
- [-] EACCES - Search permission is denied on a component of the path prefix. (See also path_resolution(7).)
- [-] EADDRNOTAVAIL - A nonexistent interface was requested or the requested address was not local.
- [-] EFAULT - addr points outside the user's accessible address space.
- [-] EINVAL - The addrlen is wrong, or the socket was not in the AF_UNIX family.
- [-] ELOOP - Too many symbolic links were encountered in resolving addr.
- [-] ENAMETOOLONG - s addr is too long.
- [-] ENOENT - The file does not exist.
- [-] ENOTDIR - A component of the path prefix is not a directory.
- [-] EROFS - The socket inode would reside on a read-only file system.
- */
- void NetconEthernetTap::handle_bind(PhySocket *sock, void **uptr, struct bind_st *bind_rpc)
- {
- struct sockaddr_in *connaddr;
- connaddr = (struct sockaddr_in *) &bind_rpc->addr;
- int conn_port = lwipstack->ntohs(connaddr->sin_port);
- ip_addr_t conn_addr;
- conn_addr.addr = *((u32_t *)_ips[0].rawIpData());
- TcpConnection *conn = getConnectionByTheirFD(sock, bind_rpc->sockfd);
- if(conn) {
- if(conn->pcb->state == CLOSED){
- int err = lwipstack->tcp_bind(conn->pcb, &conn_addr, conn_port);
- if(err != ERR_OK) {
- int ip = connaddr->sin_addr.s_addr;
- unsigned char d[4];
- d[0] = ip & 0xFF;
- d[1] = (ip >> 8) & 0xFF;
- d[2] = (ip >> 16) & 0xFF;
- d[3] = (ip >> 24) & 0xFF;
- fprintf(stderr, "handle_bind(): error binding to %d.%d.%d.%d : %d\n", d[0],d[1],d[2],d[3], conn_port);
- if(err == ERR_USE)
- send_return_value(conn, -1, EADDRINUSE);
- if(err == ERR_MEM)
- send_return_value(conn, -1, ENOMEM);
- if(err == ERR_BUF)
- send_return_value(conn, -1, ENOMEM); // FIXME: Closest match
- }
- else
- send_return_value(conn, ERR_OK, ERR_OK); // Success
- }
- else {
- fprintf(stderr, "handle_bind(): PCB not in CLOSED state. Ignoring BIND request.\n");
- send_return_value(conn, -1, EINVAL);
- }
- }
- else {
- fprintf(stderr, "handle_bind(): can't locate connection for PCB\n");
- send_return_value(conn, -1, EBADF);
- }
- }
- /*
- * Handles an RPC to put an LWIP PCB into LISTEN mode
- *
- * @param PhySocket associated with this RPC connection
- * @param structure containing the data and parameters for this client's RPC
- *
- i := should be implemented in intercept lib
- I := is implemented in intercept lib
- X := is implemented in service
- ? := required treatment Unknown
- - := Not needed
- [?] EADDRINUSE - Another socket is already listening on the same port.
- [IX] EBADF - The argument sockfd is not a valid descriptor.
- [I] ENOTSOCK - The argument sockfd is not a socket.
- [I] EOPNOTSUPP - The socket is not of a type that supports the listen() operation.
- */
- void NetconEthernetTap::handle_listen(PhySocket *sock, void **uptr, struct listen_st *listen_rpc)
- {
- TcpConnection *conn = getConnectionByTheirFD(sock, listen_rpc->sockfd);
- if(conn) {
- if(conn->pcb->state == LISTEN) {
- fprintf(stderr, "handle_listen(): PCB is already in listening state.\n");
- return;
- }
- struct tcp_pcb* listening_pcb;
- #ifdef TCP_LISTEN_BACKLOG
- listening_pcb = lwipstack->tcp_listen_with_backlog(conn->pcb, listen_rpc->backlog);
- #else
- listening_pcb = lwipstack->tcp_listen(conn->pcb);
- #endif
- if(listening_pcb != NULL) {
- conn->pcb = listening_pcb;
- lwipstack->tcp_accept(listening_pcb, nc_accept);
- lwipstack->tcp_arg(listening_pcb, new Larg(this, conn));
- /* we need to wait for the client to send us the fd allocated on their end
- for this listening socket */
- fcntl(_phy.getDescriptor(conn->dataSock), F_SETFL, O_NONBLOCK);
- conn->listening = true;
- conn->pending = true;
- send_return_value(conn, ERR_OK, ERR_OK);
- }
- else {
- /*
- fprintf(stderr, "handle_listen(): unable to allocate memory for new listening PCB\n");
- // FIXME: This does not have an equivalent errno value
- // lwip will reclaim space with a tcp_listen call since a PCB in a LISTEN
- // state takes up less space. If something goes wrong during the creation of a
- // new listening socket we should return an error that implies we can't use this
- // socket, even if the reason isn't describing what really happened internally.
- // See: http://lwip.wikia.com/wiki/Raw/TCP
- send_return_value(conn, -1, EBADF);
- */
- }
- }
- else {
- /*
- // We can't find a connection mapped to the socket fd provided
- fprintf(stderr, "handle_listen(): can't locate connection for PCB\n");
- send_return_value(conn, -1, EBADF);
- */
- }
- }
- /*
- * Handles an RPC to create a socket (LWIP PCB and associated socketpair)
- *
- * A socketpair is created, one end is kept and wrapped into a PhySocket object
- * for use in the main ZT I/O loop, and one end is sent to the client. The client
- * is then required to tell the service what new file descriptor it has allocated
- * for this connection. After the mapping is complete, the socket can be used.
- *
- * @param PhySocket associated with this RPC connection
- * @param structure containing the data and parameters for this client's RPC
- *
- i := should be implemented in intercept lib
- I := is implemented in intercept lib
- X := is implemented in service
- ? := required treatment Unknown
- - := Not needed
- [-] EACCES - Permission to create a socket of the specified type and/or protocol is denied.
- [I] EAFNOSUPPORT - The implementation does not support the specified address family.
- [I] EINVAL - Unknown protocol, or protocol family not available.
- [I] EINVAL - Invalid flags in type.
- [I] EMFILE - Process file table overflow.
- [?] ENFILE - The system limit on the total number of open files has been reached.
- [X] ENOBUFS or ENOMEM - Insufficient memory is available. The socket cannot be created until sufficient resources are freed.
- [?] EPROTONOSUPPORT - The protocol type or the specified protocol is not supported within this domain.
- */
- void NetconEthernetTap::handle_socket(PhySocket *sock, void **uptr, struct socket_st* socket_rpc)
- {
- int rpc_fd = _phy.getDescriptor(sock);
- struct tcp_pcb *newpcb = lwipstack->tcp_new();
- if(newpcb != NULL) {
- ZT_PHY_SOCKFD_TYPE fds[2];
- if(socketpair(PF_LOCAL, SOCK_STREAM, 0, fds) < 0) {
- if(errno < 0) {
- send_return_value(rpc_fd, -1, errno);
- return;
- }
- }
- TcpConnection *new_conn = new TcpConnection();
- new_conn->dataSock = _phy.wrapSocket(fds[0], new_conn);
- *uptr = new_conn;
- new_conn->rpcSock = sock;
- new_conn->pcb = newpcb;
- new_conn->their_fd = fds[1];
- tcp_connections.push_back(new_conn);
- sock_fd_write(_phy.getDescriptor(sock), fds[1]);
- close(fds[1]); // close other end of socketpair
- // Once the client tells us what its fd is on the other end, we can then complete the mapping
- new_conn->pending = true;
- }
- else {
- sock_fd_write(rpc_fd, -1); // Send a bad fd, to signal error
- fprintf(stderr, "handle_socket(): Memory not available for new PCB\n");
- send_return_value(rpc_fd, -1, ENOMEM);
- }
- }
- /*
- * Handles an RPC to connect to a given address and port
- *
- * @param PhySocket associated with this RPC connection
- * @param structure containing the data and parameters for this client's RPC
- --- Error handling in this method will only catch problems which are immedately
- apprent. Some errors will need to be caught in the nc_connected(0 callback
- i := should be implemented in intercept lib
- I := is implemented in intercept lib
- X := is implemented in service
- ? := required treatment Unknown
- - := Not needed
- [-] EACCES - For UNIX domain sockets, which are identified by pathname: Write permission is denied ...
- [?] EACCES, EPERM - The user tried to connect to a broadcast address without having the socket broadcast flag enabled ...
- [X] EADDRINUSE - Local address is already in use.
- [I] EAFNOSUPPORT - The passed address didn't have the correct address family in its sa_family field.
- [X] EAGAIN - No more free local ports or insufficient entries in the routing cache.
- [ ] EALREADY - The socket is nonblocking and a previous connection attempt has not yet been completed.
- [IX] EBADF - The file descriptor is not a valid index in the descriptor table.
- [ ] ECONNREFUSED - No-one listening on the remote address.
- [i] EFAULT - The socket structure address is outside the user's address space.
- [ ] EINPROGRESS - The socket is nonblocking and the connection cannot be completed immediately.
- [-] EINTR - The system call was interrupted by a signal that was caught.
- [X] EISCONN - The socket is already connected.
- [X] ENETUNREACH - Network is unreachable.
- [I] ENOTSOCK - The file descriptor is not associated with a socket.
- [X] ETIMEDOUT - Timeout while attempting connection.
- [X] EINVAL - Invalid argument, SVr4, generally makes sense to set this
- *
- */
- void NetconEthernetTap::handle_connect(PhySocket *sock, void **uptr, struct connect_st* connect_rpc)
- {
- TcpConnection *conn = (TcpConnection*)*uptr;
- 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);
- if(conn != NULL) {
- lwipstack->tcp_sent(conn->pcb, nc_sent);
- lwipstack->tcp_recv(conn->pcb, nc_recved);
- lwipstack->tcp_err(conn->pcb, nc_err);
- lwipstack->tcp_poll(conn->pcb, nc_poll, APPLICATION_POLL_FREQ);
- lwipstack->tcp_arg(conn->pcb, new Larg(this, conn));
- int err = 0;
- if((err = lwipstack->tcp_connect(conn->pcb,&conn_addr,conn_port, nc_connected)) < 0)
- {
- if(err == ERR_ISCONN) {
- send_return_value(conn, -1, EISCONN); // Already in connected state
- return;
- }
- if(err == ERR_USE) {
- send_return_value(conn, -1, EADDRINUSE); // Already in use
- return;
- }
- if(err == ERR_VAL) {
- send_return_value(conn, -1, EINVAL); // Invalid ipaddress parameter
- return;
- }
- if(err == ERR_RTE) {
- send_return_value(conn, -1, ENETUNREACH); // No route to host
- return;
- }
- if(err == ERR_BUF) {
- send_return_value(conn, -1, EAGAIN); // No more ports available
- return;
- }
- if(err == ERR_MEM)
- {
- /* Can occur for the following reasons: tcp_enqueue_flags()
- 1) tcp_enqueue_flags is always called with either SYN or FIN in flags.
- We need one available snd_buf byte to do that.
- This means we can't send FIN while snd_buf==0. A better fix would be to
- not include SYN and FIN sequence numbers in the snd_buf count.
- 2) Cannot allocate new pbuf
- 3) Cannot allocate new TCP segment
- */
- send_return_value(conn, -1, EAGAIN); // FIXME: Doesn't describe the problem well, but closest match
- return;
- }
- // 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!
- fprintf(stderr, "handle_connect(): unable to connect\n");
- send_return_value(conn, -1, EAGAIN);
- }
- // Everything seems to be ok, but we don't have enough info to retval
- conn->pending=true;
- }
- else {
- fprintf(stderr, "could not locate PCB based on their fd\n");
- send_return_value(conn, -1, EBADF);
- }
- }
- void NetconEthernetTap::handle_write(TcpConnection *conn)
- {
- float max = (float)TCP_SND_BUF;
- int r;
- if(!conn) {
- fprintf(stderr, "handle_write(): could not locate connection for this fd\n");
- return;
- }
- if(conn->idx < max) {
- if(!conn->pcb) {
- fprintf(stderr, "handle_write(): conn->pcb == NULL. Failed to write.\n");
- return;
- }
- int sndbuf = conn->pcb->snd_buf; // How much we are currently allowed to write to the connection
- /* PCB send buffer is full,turn off readability notifications for the
- corresponding PhySocket until nc_sent() is called and confirms that there is
- now space on the buffer */
- if(sndbuf == 0) {
- _phy.setNotifyReadable(conn->dataSock, false);
- return;
- }
- if(!conn->listening)
- lwipstack->_tcp_output(conn->pcb);
- if(conn->dataSock) {
- int read_fd = _phy.getDescriptor(conn->dataSock);
- if((r = read(read_fd, (&conn->buf)+conn->idx, sndbuf)) > 0) {
- conn->idx += r;
- /* Writes data pulled from the client's socket buffer to LWIP. This merely sends the
- * data to LWIP to be enqueued and eventually sent to the network. */
- if(r > 0) {
- int sz;
- // NOTE: this assumes that lwipstack->_lock is locked, either
- // because we are in a callback or have locked it manually.
- int err = lwipstack->_tcp_write(conn->pcb, &conn->buf, r, TCP_WRITE_FLAG_COPY);
- lwipstack->_tcp_output(conn->pcb);
- if(err != ERR_OK) {
- fprintf(stderr, "handle_write(): error while writing to PCB, (err = %d)\n", err);
- return;
- }
- else {
- sz = (conn->idx)-r;
- if(sz) {
- memmove(&conn->buf, (conn->buf+r), sz);
- }
- conn->idx -= r;
- return;
- }
- }
- else {
- fprintf(stderr, "handle_write(): LWIP stack full\n");
- return;
- }
- }
- }
- }
- }
- } // namespace ZeroTier
- #endif // ZT_ENABLE_NETCON
|