This commit is contained in:
Adam Ierymenko 2014-10-27 17:32:37 -07:00
parent 295f6a20e0
commit fe7b429866
5 changed files with 61 additions and 57 deletions

View File

@ -223,7 +223,7 @@ static void doHelp(const std::vector<std::string> &cmd)
printf("---------- leave <address/*/**> <network ID>"ZT_EOL_S); printf("---------- leave <address/*/**> <network ID>"ZT_EOL_S);
printf("---------- listnetworks <address/*/**>"ZT_EOL_S); printf("---------- listnetworks <address/*/**>"ZT_EOL_S);
printf("---------- listpeers <address/*/**>"ZT_EOL_S); printf("---------- listpeers <address/*/**>"ZT_EOL_S);
printf("---------- unicast <address/*/**> <address/*/**> <network ID> <frame length, min: 8> [<timeout, default: 2>]"ZT_EOL_S); printf("---------- unicast <address/*/**> <address/*/**> <network ID> <frame length, min: 16> [<timeout, default: 2>]"ZT_EOL_S);
printf("---------- quit"ZT_EOL_S); printf("---------- quit"ZT_EOL_S);
} }
@ -248,7 +248,7 @@ static void doMKSN(const std::vector<std::string> &cmd)
for(std::vector<Address>::iterator a(nodes.begin());a!=nodes.end();++a) for(std::vector<Address>::iterator a(nodes.begin());a!=nodes.end();++a)
printf("%s started (supernode)"ZT_EOL_S,a->toString().c_str()); printf("%s started (supernode)"ZT_EOL_S,a->toString().c_str());
printf("---------- root topology is: %s"ZT_EOL_S,rootTopology.c_str()); //printf("---------- root topology is: %s"ZT_EOL_S,rootTopology.c_str());
} }
static void doMKN(const std::vector<std::string> &cmd) static void doMKN(const std::vector<std::string> &cmd)
@ -469,7 +469,7 @@ static void doListPeers(const std::vector<std::string> &cmd)
static void doUnicast(const std::vector<std::string> &cmd) static void doUnicast(const std::vector<std::string> &cmd)
{ {
union { union {
uint64_t ts; uint64_t i[2];
unsigned char data[2800]; unsigned char data[2800];
} pkt; } pkt;
@ -484,10 +484,8 @@ static void doUnicast(const std::vector<std::string> &cmd)
if (cmd.size() >= 6) if (cmd.size() >= 6)
tout = Utils::strToU64(cmd[5].c_str()) * 1000ULL; tout = Utils::strToU64(cmd[5].c_str()) * 1000ULL;
if (frameLen < 8) { if (frameLen < 16)
doHelp(cmd); frameLen = 16;
return;
}
if (frameLen > 2800) if (frameLen > 2800)
frameLen = 2800; frameLen = 2800;
@ -512,6 +510,7 @@ static void doUnicast(const std::vector<std::string> &cmd)
for(unsigned int i=0;i<frameLen;++i) for(unsigned int i=0;i<frameLen;++i)
pkt.data[i] = (unsigned char)prng.next32(); pkt.data[i] = (unsigned char)prng.next32();
unsigned long sentCount = 0;
for(std::vector<Address>::iterator s(senders.begin());s!=senders.end();++s) { for(std::vector<Address>::iterator s(senders.begin());s!=senders.end();++s) {
for(std::vector<Address>::iterator r(receivers.begin());r!=receivers.end();++r) { for(std::vector<Address>::iterator r(receivers.begin());r!=receivers.end();++r) {
if (*s == *r) if (*s == *r)
@ -523,45 +522,54 @@ static void doUnicast(const std::vector<std::string> &cmd)
SharedPtr<TestEthernetTap> rtap(receiver->tapFactory.getByNwid(nwid)); SharedPtr<TestEthernetTap> rtap(receiver->tapFactory.getByNwid(nwid));
if ((stap)&&(rtap)) { if ((stap)&&(rtap)) {
pkt.ts = Utils::now(); pkt.i[0] = s->toInt();
pkt.i[1] = Utils::now();
stap->injectPacketFromHost(stap->mac(),rtap->mac(),0xdead,pkt.data,frameLen); stap->injectPacketFromHost(stap->mac(),rtap->mac(),0xdead,pkt.data,frameLen);
printf("%s -> %s etherType 0xdead network %.16llx length %u"ZT_EOL_S,s->toString().c_str(),r->toString().c_str(),nwid,frameLen); printf("%s -> %s etherType 0xdead network %.16llx length %u"ZT_EOL_S,s->toString().c_str(),r->toString().c_str(),nwid,frameLen);
} else if (stap) ++sentCount;
} else if (stap) {
printf("%s -> !%s (receiver not a member of %.16llx)"ZT_EOL_S,s->toString().c_str(),r->toString().c_str(),nwid); printf("%s -> !%s (receiver not a member of %.16llx)"ZT_EOL_S,s->toString().c_str(),r->toString().c_str(),nwid);
else if (rtap) } else if (rtap) {
printf("%s -> !%s (sender not a member of %.16llx)"ZT_EOL_S,s->toString().c_str(),r->toString().c_str(),nwid); printf("%s -> !%s (sender not a member of %.16llx)"ZT_EOL_S,s->toString().c_str(),r->toString().c_str(),nwid);
else printf("%s -> !%s (neither party is a member of %.16llx)"ZT_EOL_S,s->toString().c_str(),r->toString().c_str(),nwid); } else {
printf("%s -> !%s (neither party is a member of %.16llx)"ZT_EOL_S,s->toString().c_str(),r->toString().c_str(),nwid);
}
} }
} }
printf("---------- waiting up to %llu seconds..."ZT_EOL_S,tout / 1000ULL); printf("---------- waiting up to %llu seconds..."ZT_EOL_S,tout / 1000ULL);
std::set<Address> receivedFrom; std::set< std::pair<Address,Address> > receivedPairs;
std::vector<TestEthernetTap::TestFrame> frames;
uint64_t toutend = Utils::now() + tout; uint64_t toutend = Utils::now() + tout;
do { do {
std::vector<TestEthernetTap::TestFrame> frames;
for(std::vector<Address>::iterator r(receivers.begin());r!=receivers.end();++r) { for(std::vector<Address>::iterator r(receivers.begin());r!=receivers.end();++r) {
SimNode *receiver = nodes[*r]; SimNode *receiver = nodes[*r];
SharedPtr<TestEthernetTap> rtap(receiver->tapFactory.getByNwid(nwid)); SharedPtr<TestEthernetTap> rtap(receiver->tapFactory.getByNwid(nwid));
if (rtap) { if (rtap) {
rtap->get(frames,true); rtap->get(frames);
for(std::vector<TestEthernetTap::TestFrame>::iterator f(frames.begin());f!=frames.end();++f) { for(std::vector<TestEthernetTap::TestFrame>::iterator f(frames.begin());f!=frames.end();++f) {
if ((f->len == frameLen)&&(!memcmp(f->data + 8,pkt.data + 8,frameLen - 8))) { if ((f->len == frameLen)&&(!memcmp(f->data + 16,pkt.data + 16,frameLen - 16))) {
receivedFrom.insert(*r); uint64_t ints[2];
uint64_t ints = 0; memcpy(ints,f->data,16);
memcpy(&ints,f->data,8); printf("%s <- %.10llx received test packet, latency == %llums"ZT_EOL_S,r->toString().c_str(),ints[0],f->timestamp - ints[1]);
printf("%s received test packet, latency == %llums"ZT_EOL_S,r->toString().c_str(),f->timestamp - ints); receivedPairs.insert(std::pair<Address,Address>(Address(ints[0]),*r));
} else { } else {
printf("%s received spurious packet, length == %u, etherType == %.4x"ZT_EOL_S,r->toString().c_str(),f->len,f->etherType); printf("%s !! got spurious packet, length == %u, etherType == %.4x"ZT_EOL_S,r->toString().c_str(),f->len,f->etherType);
} }
} }
} }
} }
} while ((receivedFrom.size() < receivers.size())&&(Utils::now() < toutend)); Thread::sleep(250);
} while ((receivedPairs.size() < sentCount)&&(Utils::now() < toutend));
for(std::vector<Address>::iterator r(receivers.begin());r!=receivers.end();++r) { for(std::vector<Address>::iterator s(senders.begin());s!=senders.end();++s) {
if (!receivedFrom.count(*r)) { for(std::vector<Address>::iterator r(receivers.begin());r!=receivers.end();++r) {
printf("%s did not receive test packet: timed out"ZT_EOL_S,r->toString().c_str()); if (*s == *r)
continue;
if (!receivedPairs.count(std::pair<Address,Address>(*s,*r))) {
printf("%s <- %s was never received (timed out)"ZT_EOL_S,r->toString().c_str(),s->toString().c_str());
}
} }
} }
} }
@ -593,7 +601,7 @@ int main(int argc,char **argv)
} else { } else {
for(std::vector<Address>::iterator a(snodes.begin());a!=snodes.end();++a) for(std::vector<Address>::iterator a(snodes.begin());a!=snodes.end();++a)
printf("%s started (supernode)"ZT_EOL_S,a->toString().c_str()); printf("%s started (supernode)"ZT_EOL_S,a->toString().c_str());
printf("---------- root topology is: %s"ZT_EOL_S,rootTopology.c_str()); //printf("---------- root topology is: %s"ZT_EOL_S,rootTopology.c_str());
std::vector<Address> nodes(scanForNewNodes()); std::vector<Address> nodes(scanForNewNodes());
for(std::vector<Address>::iterator a(nodes.begin());a!=nodes.end();++a) for(std::vector<Address>::iterator a(nodes.begin());a!=nodes.end();++a)
printf("%s started (normal peer)"ZT_EOL_S,a->toString().c_str()); printf("%s started (normal peer)"ZT_EOL_S,a->toString().c_str());

View File

@ -28,16 +28,14 @@
#ifndef ZT_CONDITION_HPP #ifndef ZT_CONDITION_HPP
#define ZT_CONDITION_HPP #define ZT_CONDITION_HPP
#include "Constants.hpp" #include "../node/Constants.hpp"
#include "NonCopyable.hpp" #include "../node/NonCopyable.hpp"
#ifdef __WINDOWS__ #ifdef __WINDOWS__
#include <Windows.h> #include <Windows.h>
#include <stdlib.h> #include <stdlib.h>
#include "Utils.hpp"
namespace ZeroTier { namespace ZeroTier {
class Condition : NonCopyable class Condition : NonCopyable
@ -85,7 +83,8 @@ private:
#include <time.h> #include <time.h>
#include <stdlib.h> #include <stdlib.h>
#include <pthread.h> #include <pthread.h>
#include "Utils.hpp"
#include "../node/Utils.hpp"
namespace ZeroTier { namespace ZeroTier {

View File

@ -35,7 +35,7 @@
#include "../node/Constants.hpp" #include "../node/Constants.hpp"
#include "../node/SocketManager.hpp" #include "../node/SocketManager.hpp"
#include "../node/Mutex.hpp" #include "../node/Mutex.hpp"
#include "../node/Condition.hpp" #include "Condition.hpp"
namespace ZeroTier { namespace ZeroTier {
@ -96,10 +96,8 @@ public:
*/ */
inline void enqueue(const InetAddress &from,const void *data,unsigned int len) inline void enqueue(const InetAddress &from,const void *data,unsigned int len)
{ {
{ Mutex::Lock _l(_inbox_m);
Mutex::Lock _l(_inbox_m); _inbox.push_back(std::pair< InetAddress,Buffer<ZT_SOCKET_MAX_MESSAGE_LEN> >(from,Buffer<ZT_SOCKET_MAX_MESSAGE_LEN>(data,len)));
_inbox.push_back(std::pair< InetAddress,Buffer<ZT_SOCKET_MAX_MESSAGE_LEN> >(from,Buffer<ZT_SOCKET_MAX_MESSAGE_LEN>(data,len)));
}
_waitCond.signal(); _waitCond.signal();
} }

View File

@ -80,9 +80,9 @@ TestEthernetTap::~TestEthernetTap()
static const TestFrame zf; static const TestFrame zf;
{ {
Mutex::Lock _l(_pq_m); Mutex::Lock _l(_pq_m);
_pq.push(zf); // 0 length frame = exit _pq.push_back(zf); // 0 length frame = exit
_pq_c.signal();
} }
_pq_c.signal();
Thread::join(_thread); Thread::join(_thread);
} }
@ -138,9 +138,9 @@ bool TestEthernetTap::injectPacketFromHost(const MAC &from,const MAC &to,unsigne
{ {
Mutex::Lock _l(_pq_m); Mutex::Lock _l(_pq_m);
_pq.push(TestFrame(from,to,data,etherType & 0xffff,len)); _pq.push_back(TestFrame(from,to,data,etherType & 0xffff,len));
_pq_c.signal();
} }
_pq_c.signal();
return true; return true;
} }
@ -148,23 +148,25 @@ bool TestEthernetTap::injectPacketFromHost(const MAC &from,const MAC &to,unsigne
void TestEthernetTap::threadMain() void TestEthernetTap::threadMain()
throw() throw()
{ {
TestFrame tf; std::vector<TestFrame> q;
for(;;) { for(;;) {
tf.len = 0;
{ {
Mutex::Lock _l(_pq_m); Mutex::Lock _l(_pq_m);
if (!_pq.empty()) { q = _pq;
if (_pq.front().len == 0) _pq.clear();
break; }
memcpy(&tf,&(_pq.front()),sizeof(tf));
_pq.pop(); for(std::vector<TestFrame>::iterator f(q.begin());f!=q.end();++f) {
if (!f->len)
return; // empty frame signals thread to die
else if (_enabled) {
try {
_handler(_arg,f->from,f->to,f->etherType,Buffer<4096>(f->data,f->len));
} catch ( ... ) {} // handlers should not throw
} }
} }
if ((tf.len > 0)&&(_enabled)) _pq_c.wait(1000);
_handler(_arg,tf.from,tf.to,tf.etherType,Buffer<4096>(tf.data,tf.len));
_pq_c.wait();
} }
} }

View File

@ -32,8 +32,6 @@
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <stdexcept>
#include <queue>
#include <string> #include <string>
#include "../node/Constants.hpp" #include "../node/Constants.hpp"
@ -42,7 +40,7 @@
#include "../node/SharedPtr.hpp" #include "../node/SharedPtr.hpp"
#include "../node/Thread.hpp" #include "../node/Thread.hpp"
#include "../node/Mutex.hpp" #include "../node/Mutex.hpp"
#include "../node/Condition.hpp" #include "Condition.hpp"
namespace ZeroTier { namespace ZeroTier {
@ -109,12 +107,11 @@ public:
inline uint64_t nwid() const { return _nwid; } inline uint64_t nwid() const { return _nwid; }
// Get things that have been put() and empty queue // Get things that have been put() and empty queue
inline void get(std::vector<TestFrame> &v,bool clearQueue = true) inline void get(std::vector<TestFrame> &v)
{ {
Mutex::Lock _l(_gq_m); Mutex::Lock _l(_gq_m);
v = _gq; v = _gq;
if (clearQueue) _gq.clear();
_gq.clear();
} }
void threadMain() void threadMain()
@ -130,7 +127,7 @@ private:
std::string _dev; std::string _dev;
volatile bool _enabled; volatile bool _enabled;
std::queue< TestFrame > _pq; std::vector< TestFrame > _pq;
Mutex _pq_m; Mutex _pq_m;
Condition _pq_c; Condition _pq_c;