Testnet seems to work a bit better now...

This commit is contained in:
Adam Ierymenko 2014-10-27 18:23:10 -07:00
parent fe7b429866
commit 934a575a74
5 changed files with 38 additions and 39 deletions

View File

@ -100,7 +100,6 @@ struct _NodeImpl
LOG("terminating: %s",reasonForTerminationStr.c_str()); LOG("terminating: %s",reasonForTerminationStr.c_str());
renv.shutdownInProgress = true; renv.shutdownInProgress = true;
Thread::sleep(500);
running = false; running = false;

View File

@ -510,7 +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; std::set< std::pair<Address,Address> > sentPairs;
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)
@ -526,7 +526,7 @@ static void doUnicast(const std::vector<std::string> &cmd)
pkt.i[1] = Utils::now(); 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);
++sentCount; sentPairs.insert(std::pair<Address,Address>(*s,*r));
} else if (stap) { } 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) {
@ -561,13 +561,13 @@ static void doUnicast(const std::vector<std::string> &cmd)
} }
} }
Thread::sleep(250); Thread::sleep(250);
} while ((receivedPairs.size() < sentCount)&&(Utils::now() < toutend)); } while ((receivedPairs.size() < sentPairs.size())&&(Utils::now() < toutend));
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)
continue; continue;
if (!receivedPairs.count(std::pair<Address,Address>(*s,*r))) { if ((sentPairs.count(std::pair<Address,Address>(*s,*r)))&&(!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()); printf("%s <- %s was never received (timed out)"ZT_EOL_S,r->toString().c_str(),s->toString().c_str());
} }
} }

View File

@ -25,8 +25,8 @@
* LLC. Start here: http://www.zerotier.com/ * LLC. Start here: http://www.zerotier.com/
*/ */
#ifndef ZT_CONDITION_HPP #ifndef ZT_SEMAPHORE_HPP
#define ZT_CONDITION_HPP #define ZT_SEMAPHORE_HPP
#include "../node/Constants.hpp" #include "../node/Constants.hpp"
#include "../node/NonCopyable.hpp" #include "../node/NonCopyable.hpp"
@ -38,30 +38,16 @@
namespace ZeroTier { namespace ZeroTier {
class Condition : NonCopyable class Semaphore : NonCopyable
{ {
public: public:
Condition() Semaphore() throw() { _sem = CreateSemaphore(NULL,0,0x7fffffff,NULL); }
~Semaphore() { CloseHandle(_sem); }
inline void wait(unsigned long ms = 0) const
throw() throw()
{ {
_sem = CreateSemaphore(NULL,0,1,NULL); if (ms > 0)
}
~Condition()
{
CloseHandle(_sem);
}
inline void wait() const
throw()
{
WaitForSingleObject(_sem,INFINITE);
}
inline void wait(unsigned long ms) const
throw()
{
if (ms)
WaitForSingleObject(_sem,(DWORD)ms); WaitForSingleObject(_sem,(DWORD)ms);
else WaitForSingleObject(_sem,INFINITE); else WaitForSingleObject(_sem,INFINITE);
} }
@ -88,51 +74,65 @@ private:
namespace ZeroTier { namespace ZeroTier {
class Condition : NonCopyable // This isn't quite a perfect semaphore, but the way we use it it's fine... we
// just want this to signal when queues are ready.
class Semaphore : NonCopyable
{ {
public: public:
Condition() Semaphore()
throw() throw()
{ {
pthread_mutex_init(&_mh,(const pthread_mutexattr_t *)0); pthread_mutex_init(&_mh,(const pthread_mutexattr_t *)0);
pthread_cond_init(&_cond,(const pthread_condattr_t *)0); pthread_cond_init(&_cond,(const pthread_condattr_t *)0);
_cnt = 0;
} }
~Condition() ~Semaphore()
{ {
pthread_cond_destroy(&_cond); pthread_cond_destroy(&_cond);
pthread_mutex_destroy(&_mh); pthread_mutex_destroy(&_mh);
} }
inline void wait() const inline void wait()
throw() throw()
{ {
pthread_mutex_lock(const_cast <pthread_mutex_t *>(&_mh)); pthread_mutex_lock(const_cast <pthread_mutex_t *>(&_mh));
pthread_cond_wait(const_cast <pthread_cond_t *>(&_cond),const_cast <pthread_mutex_t *>(&_mh)); if (_cnt <= 0)
pthread_cond_wait(const_cast <pthread_cond_t *>(&_cond),const_cast <pthread_mutex_t *>(&_mh));
if (_cnt > 0)
--_cnt;
pthread_mutex_unlock(const_cast <pthread_mutex_t *>(&_mh)); pthread_mutex_unlock(const_cast <pthread_mutex_t *>(&_mh));
} }
inline void wait(unsigned long ms) const inline void wait(unsigned long ms)
throw() throw()
{ {
uint64_t when = Utils::now() + (uint64_t)ms; uint64_t when = Utils::now() + (uint64_t)ms;
struct timespec ts; struct timespec ts;
ts.tv_sec = (unsigned long)(when / 1000); ts.tv_sec = (unsigned long)(when / 1000);
ts.tv_nsec = (unsigned long)(when % 1000) * 1000000; ts.tv_nsec = (unsigned long)(when % 1000) * 1000000;
pthread_mutex_lock(const_cast <pthread_mutex_t *>(&_mh)); pthread_mutex_lock(const_cast <pthread_mutex_t *>(&_mh));
pthread_cond_timedwait(const_cast <pthread_cond_t *>(&_cond),const_cast <pthread_mutex_t *>(&_mh),&ts); if (_cnt <= 0)
pthread_cond_timedwait(const_cast <pthread_cond_t *>(&_cond),const_cast <pthread_mutex_t *>(&_mh),&ts);
if (_cnt > 0)
--_cnt;
pthread_mutex_unlock(const_cast <pthread_mutex_t *>(&_mh)); pthread_mutex_unlock(const_cast <pthread_mutex_t *>(&_mh));
} }
inline void signal() const inline void signal()
throw() throw()
{ {
pthread_mutex_lock(const_cast <pthread_mutex_t *>(&_mh));
++_cnt;
pthread_mutex_unlock(const_cast <pthread_mutex_t *>(&_mh));
pthread_cond_signal(const_cast <pthread_cond_t *>(&_cond)); pthread_cond_signal(const_cast <pthread_cond_t *>(&_cond));
} }
private: private:
pthread_cond_t _cond; pthread_cond_t _cond;
pthread_mutex_t _mh; pthread_mutex_t _mh;
volatile int _cnt;
}; };
} // 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 "Condition.hpp" #include "Semaphore.hpp"
namespace ZeroTier { namespace ZeroTier {
@ -120,7 +120,7 @@ private:
std::map< InetAddress,TransferStats > _stats; std::map< InetAddress,TransferStats > _stats;
Mutex _stats_m; Mutex _stats_m;
Condition _waitCond; Semaphore _waitCond;
}; };
} // namespace ZeroTier } // namespace ZeroTier

View File

@ -40,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 "Condition.hpp" #include "Semaphore.hpp"
namespace ZeroTier { namespace ZeroTier {
@ -129,7 +129,7 @@ private:
std::vector< TestFrame > _pq; std::vector< TestFrame > _pq;
Mutex _pq_m; Mutex _pq_m;
Condition _pq_c; Semaphore _pq_c;
std::vector< TestFrame > _gq; std::vector< TestFrame > _gq;
Mutex _gq_m; Mutex _gq_m;