Merge remote branch 'refs/remotes/svn/trunk' into svn
[bitcoinplatinum.git] / net.h
blob698bd0b2a219dc8febec59ce5003dca79137d03c
1 // Copyright (c) 2009-2010 Satoshi Nakamoto
2 // Distributed under the MIT/X11 software license, see the accompanying
3 // file license.txt or http://www.opensource.org/licenses/mit-license.php.
5 class CMessageHeader;
6 class CAddress;
7 class CInv;
8 class CRequestTracker;
9 class CNode;
10 class CBlockIndex;
11 extern int nBestHeight;
15 static const unsigned short DEFAULT_PORT = 0x8d20; // htons(8333)
16 static const unsigned int PUBLISH_HOPS = 5;
17 enum
19 NODE_NETWORK = (1 << 0),
25 bool ConnectSocket(const CAddress& addrConnect, SOCKET& hSocketRet);
26 bool GetMyExternalIP(unsigned int& ipRet);
27 bool AddAddress(CAddress addr);
28 void AddressCurrentlyConnected(const CAddress& addr);
29 CNode* FindNode(unsigned int ip);
30 CNode* ConnectNode(CAddress addrConnect, int64 nTimeout=0);
31 void AbandonRequests(void (*fn)(void*, CDataStream&), void* param1);
32 bool AnySubscribed(unsigned int nChannel);
33 bool BindListenPort(string& strError=REF(string()));
34 void StartNode(void* parg);
35 bool StopNode();
45 // Message header
46 // (4) message start
47 // (12) command
48 // (4) size
49 // (4) checksum
51 extern char pchMessageStart[4];
53 class CMessageHeader
55 public:
56 enum { COMMAND_SIZE=12 };
57 char pchMessageStart[sizeof(::pchMessageStart)];
58 char pchCommand[COMMAND_SIZE];
59 unsigned int nMessageSize;
60 unsigned int nChecksum;
62 CMessageHeader()
64 memcpy(pchMessageStart, ::pchMessageStart, sizeof(pchMessageStart));
65 memset(pchCommand, 0, sizeof(pchCommand));
66 pchCommand[1] = 1;
67 nMessageSize = -1;
68 nChecksum = 0;
71 CMessageHeader(const char* pszCommand, unsigned int nMessageSizeIn)
73 memcpy(pchMessageStart, ::pchMessageStart, sizeof(pchMessageStart));
74 strncpy(pchCommand, pszCommand, COMMAND_SIZE);
75 nMessageSize = nMessageSizeIn;
76 nChecksum = 0;
79 IMPLEMENT_SERIALIZE
81 READWRITE(FLATDATA(pchMessageStart));
82 READWRITE(FLATDATA(pchCommand));
83 READWRITE(nMessageSize);
84 if (nVersion >= 209)
85 READWRITE(nChecksum);
88 string GetCommand()
90 if (pchCommand[COMMAND_SIZE-1] == 0)
91 return string(pchCommand, pchCommand + strlen(pchCommand));
92 else
93 return string(pchCommand, pchCommand + COMMAND_SIZE);
96 bool IsValid()
98 // Check start string
99 if (memcmp(pchMessageStart, ::pchMessageStart, sizeof(pchMessageStart)) != 0)
100 return false;
102 // Check the command string for errors
103 for (char* p1 = pchCommand; p1 < pchCommand + COMMAND_SIZE; p1++)
105 if (*p1 == 0)
107 // Must be all zeros after the first zero
108 for (; p1 < pchCommand + COMMAND_SIZE; p1++)
109 if (*p1 != 0)
110 return false;
112 else if (*p1 < ' ' || *p1 > 0x7E)
113 return false;
116 // Message size
117 if (nMessageSize > MAX_SIZE)
119 printf("CMessageHeader::IsValid() : (%s, %u bytes) nMessageSize > MAX_SIZE\n", GetCommand().c_str(), nMessageSize);
120 return false;
123 return true;
132 static const unsigned char pchIPv4[12] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0xff, 0xff };
134 class CAddress
136 public:
137 uint64 nServices;
138 unsigned char pchReserved[12];
139 unsigned int ip;
140 unsigned short port;
142 // disk only
143 unsigned int nTime;
145 // memory only
146 unsigned int nLastTry;
148 CAddress()
150 Init();
153 CAddress(unsigned int ipIn, unsigned short portIn=DEFAULT_PORT, uint64 nServicesIn=NODE_NETWORK)
155 Init();
156 ip = ipIn;
157 port = portIn;
158 nServices = nServicesIn;
161 explicit CAddress(const struct sockaddr_in& sockaddr, uint64 nServicesIn=NODE_NETWORK)
163 Init();
164 ip = sockaddr.sin_addr.s_addr;
165 port = sockaddr.sin_port;
166 nServices = nServicesIn;
169 explicit CAddress(const char* pszIn, uint64 nServicesIn=NODE_NETWORK)
171 Init();
172 SetAddress(pszIn);
173 nServices = nServicesIn;
176 explicit CAddress(string strIn, uint64 nServicesIn=NODE_NETWORK)
178 Init();
179 SetAddress(strIn.c_str());
180 nServices = nServicesIn;
183 void Init()
185 nServices = NODE_NETWORK;
186 memcpy(pchReserved, pchIPv4, sizeof(pchReserved));
187 ip = INADDR_NONE;
188 port = DEFAULT_PORT;
189 nTime = GetAdjustedTime();
190 nLastTry = 0;
193 bool SetAddress(const char* pszIn)
195 ip = INADDR_NONE;
196 port = DEFAULT_PORT;
197 char psz[100];
198 strlcpy(psz, pszIn, sizeof(psz));
199 unsigned int a=0, b=0, c=0, d=0, e=0;
200 if (sscanf(psz, "%u.%u.%u.%u:%u", &a, &b, &c, &d, &e) < 4)
201 return false;
202 char* pszPort = strchr(psz, ':');
203 if (pszPort)
205 *pszPort++ = '\0';
206 port = htons(atoi(pszPort));
207 if (atoi(pszPort) < 0 || atoi(pszPort) > USHRT_MAX)
208 port = htons(USHRT_MAX);
210 ip = inet_addr(psz);
211 return IsValid();
214 bool SetAddress(string strIn)
216 return SetAddress(strIn.c_str());
219 IMPLEMENT_SERIALIZE
221 if (nType & SER_DISK)
223 READWRITE(nVersion);
224 READWRITE(nTime);
226 READWRITE(nServices);
227 READWRITE(FLATDATA(pchReserved)); // for IPv6
228 READWRITE(ip);
229 READWRITE(port);
232 friend inline bool operator==(const CAddress& a, const CAddress& b)
234 return (memcmp(a.pchReserved, b.pchReserved, sizeof(a.pchReserved)) == 0 &&
235 a.ip == b.ip &&
236 a.port == b.port);
239 friend inline bool operator!=(const CAddress& a, const CAddress& b)
241 return (!(a == b));
244 friend inline bool operator<(const CAddress& a, const CAddress& b)
246 int ret = memcmp(a.pchReserved, b.pchReserved, sizeof(a.pchReserved));
247 if (ret < 0)
248 return true;
249 else if (ret == 0)
251 if (ntohl(a.ip) < ntohl(b.ip))
252 return true;
253 else if (a.ip == b.ip)
254 return ntohs(a.port) < ntohs(b.port);
256 return false;
259 vector<unsigned char> GetKey() const
261 CDataStream ss;
262 ss.reserve(18);
263 ss << FLATDATA(pchReserved) << ip << port;
265 #if defined(_MSC_VER) && _MSC_VER < 1300
266 return vector<unsigned char>((unsigned char*)&ss.begin()[0], (unsigned char*)&ss.end()[0]);
267 #else
268 return vector<unsigned char>(ss.begin(), ss.end());
269 #endif
272 struct sockaddr_in GetSockAddr() const
274 struct sockaddr_in sockaddr;
275 memset(&sockaddr, 0, sizeof(sockaddr));
276 sockaddr.sin_family = AF_INET;
277 sockaddr.sin_addr.s_addr = ip;
278 sockaddr.sin_port = port;
279 return sockaddr;
282 bool IsIPv4() const
284 return (memcmp(pchReserved, pchIPv4, sizeof(pchIPv4)) == 0);
287 bool IsRoutable() const
289 return IsValid() &&
290 !(GetByte(3) == 10 ||
291 (GetByte(3) == 192 && GetByte(2) == 168) ||
292 GetByte(3) == 127 ||
293 GetByte(3) == 0);
296 bool IsValid() const
298 // Clean up 3-byte shifted addresses caused by garbage in size field
299 // of addr messages from versions before 0.2.9 checksum.
300 // Two consecutive addr messages look like this:
301 // header20 vectorlen3 addr26 addr26 addr26 header20 vectorlen3 addr26 addr26 addr26...
302 // so if the first length field is garbled, it reads the second batch
303 // of addr misaligned by 3 bytes.
304 if (memcmp(pchReserved, pchIPv4+3, sizeof(pchIPv4)-3) == 0)
305 return false;
307 return (ip != 0 && ip != INADDR_NONE && port != htons(USHRT_MAX));
310 unsigned char GetByte(int n) const
312 return ((unsigned char*)&ip)[3-n];
315 string ToStringIPPort() const
317 return strprintf("%u.%u.%u.%u:%u", GetByte(3), GetByte(2), GetByte(1), GetByte(0), ntohs(port));
320 string ToStringIP() const
322 return strprintf("%u.%u.%u.%u", GetByte(3), GetByte(2), GetByte(1), GetByte(0));
325 string ToStringPort() const
327 return strprintf("%u", ntohs(port));
330 string ToStringLog() const
332 return "";
335 string ToString() const
337 return strprintf("%u.%u.%u.%u:%u", GetByte(3), GetByte(2), GetByte(1), GetByte(0), ntohs(port));
340 void print() const
342 printf("CAddress(%s)\n", ToString().c_str());
352 enum
354 MSG_TX = 1,
355 MSG_BLOCK,
358 static const char* ppszTypeName[] =
360 "ERROR",
361 "tx",
362 "block",
365 class CInv
367 public:
368 int type;
369 uint256 hash;
371 CInv()
373 type = 0;
374 hash = 0;
377 CInv(int typeIn, const uint256& hashIn)
379 type = typeIn;
380 hash = hashIn;
383 CInv(const string& strType, const uint256& hashIn)
385 int i;
386 for (i = 1; i < ARRAYLEN(ppszTypeName); i++)
388 if (strType == ppszTypeName[i])
390 type = i;
391 break;
394 if (i == ARRAYLEN(ppszTypeName))
395 throw std::out_of_range(strprintf("CInv::CInv(string, uint256) : unknown type '%s'", strType.c_str()));
396 hash = hashIn;
399 IMPLEMENT_SERIALIZE
401 READWRITE(type);
402 READWRITE(hash);
405 friend inline bool operator<(const CInv& a, const CInv& b)
407 return (a.type < b.type || (a.type == b.type && a.hash < b.hash));
410 bool IsKnownType() const
412 return (type >= 1 && type < ARRAYLEN(ppszTypeName));
415 const char* GetCommand() const
417 if (!IsKnownType())
418 throw std::out_of_range(strprintf("CInv::GetCommand() : type=% unknown type", type));
419 return ppszTypeName[type];
422 string ToString() const
424 return strprintf("%s %s", GetCommand(), hash.ToString().substr(0,20).c_str());
427 void print() const
429 printf("CInv(%s)\n", ToString().c_str());
437 class CRequestTracker
439 public:
440 void (*fn)(void*, CDataStream&);
441 void* param1;
443 explicit CRequestTracker(void (*fnIn)(void*, CDataStream&)=NULL, void* param1In=NULL)
445 fn = fnIn;
446 param1 = param1In;
449 bool IsNull()
451 return fn == NULL;
459 extern bool fClient;
460 extern uint64 nLocalServices;
461 extern CAddress addrLocalHost;
462 extern CNode* pnodeLocalHost;
463 extern uint64 nLocalHostNonce;
464 extern array<int, 10> vnThreadsRunning;
465 extern SOCKET hListenSocket;
467 extern vector<CNode*> vNodes;
468 extern CCriticalSection cs_vNodes;
469 extern map<vector<unsigned char>, CAddress> mapAddresses;
470 extern CCriticalSection cs_mapAddresses;
471 extern map<CInv, CDataStream> mapRelay;
472 extern deque<pair<int64, CInv> > vRelayExpiration;
473 extern CCriticalSection cs_mapRelay;
474 extern map<CInv, int64> mapAlreadyAskedFor;
476 // Settings
477 extern int fUseProxy;
478 extern CAddress addrProxy;
485 class CNode
487 public:
488 // socket
489 uint64 nServices;
490 SOCKET hSocket;
491 CDataStream vSend;
492 CDataStream vRecv;
493 CCriticalSection cs_vSend;
494 CCriticalSection cs_vRecv;
495 int64 nLastSend;
496 int64 nLastRecv;
497 int64 nLastSendEmpty;
498 int64 nTimeConnected;
499 unsigned int nHeaderStart;
500 unsigned int nMessageStart;
501 CAddress addr;
502 int nVersion;
503 string strSubVer;
504 bool fClient;
505 bool fInbound;
506 bool fNetworkNode;
507 bool fSuccessfullyConnected;
508 bool fDisconnect;
509 protected:
510 int nRefCount;
511 public:
512 int64 nReleaseTime;
513 map<uint256, CRequestTracker> mapRequests;
514 CCriticalSection cs_mapRequests;
515 uint256 hashContinue;
516 CBlockIndex* pindexLastGetBlocksBegin;
517 uint256 hashLastGetBlocksEnd;
518 int nStartingHeight;
520 // flood relay
521 vector<CAddress> vAddrToSend;
522 set<CAddress> setAddrKnown;
523 bool fGetAddr;
524 set<uint256> setKnown;
526 // inventory based relay
527 set<CInv> setInventoryKnown;
528 vector<CInv> vInventoryToSend;
529 CCriticalSection cs_inventory;
530 multimap<int64, CInv> mapAskFor;
532 // publish and subscription
533 vector<char> vfSubscribe;
536 CNode(SOCKET hSocketIn, CAddress addrIn, bool fInboundIn=false)
538 nServices = 0;
539 hSocket = hSocketIn;
540 vSend.SetType(SER_NETWORK);
541 vSend.SetVersion(0);
542 vRecv.SetType(SER_NETWORK);
543 vRecv.SetVersion(0);
544 // Version 0.2 obsoletes 20 Feb 2012
545 if (GetTime() > 1329696000)
547 vSend.SetVersion(209);
548 vRecv.SetVersion(209);
550 nLastSend = 0;
551 nLastRecv = 0;
552 nLastSendEmpty = GetTime();
553 nTimeConnected = GetTime();
554 nHeaderStart = -1;
555 nMessageStart = -1;
556 addr = addrIn;
557 nVersion = 0;
558 strSubVer = "";
559 fClient = false; // set by version message
560 fInbound = fInboundIn;
561 fNetworkNode = false;
562 fSuccessfullyConnected = false;
563 fDisconnect = false;
564 nRefCount = 0;
565 nReleaseTime = 0;
566 hashContinue = 0;
567 pindexLastGetBlocksBegin = 0;
568 hashLastGetBlocksEnd = 0;
569 nStartingHeight = -1;
570 fGetAddr = false;
571 vfSubscribe.assign(256, false);
573 // Push a version message
574 /// when NTP implemented, change to just nTime = GetAdjustedTime()
575 int64 nTime = (fInbound ? GetAdjustedTime() : GetTime());
576 CAddress addrYou = (fUseProxy ? CAddress("0.0.0.0") : addr);
577 CAddress addrMe = (fUseProxy ? CAddress("0.0.0.0") : addrLocalHost);
578 RAND_bytes((unsigned char*)&nLocalHostNonce, sizeof(nLocalHostNonce));
579 PushMessage("version", VERSION, nLocalServices, nTime, addrYou, addrMe,
580 nLocalHostNonce, string(pszSubVer), nBestHeight);
583 ~CNode()
585 if (hSocket != INVALID_SOCKET)
587 closesocket(hSocket);
588 hSocket = INVALID_SOCKET;
592 private:
593 CNode(const CNode&);
594 void operator=(const CNode&);
595 public:
598 int GetRefCount()
600 return max(nRefCount, 0) + (GetTime() < nReleaseTime ? 1 : 0);
603 CNode* AddRef(int64 nTimeout=0)
605 if (nTimeout != 0)
606 nReleaseTime = max(nReleaseTime, GetTime() + nTimeout);
607 else
608 nRefCount++;
609 return this;
612 void Release()
614 nRefCount--;
619 void AddAddressKnown(const CAddress& addr)
621 setAddrKnown.insert(addr);
624 void PushAddress(const CAddress& addr)
626 // Known checking here is only to save space from duplicates.
627 // SendMessages will filter it again for knowns that were added
628 // after addresses were pushed.
629 if (addr.IsValid() && !setAddrKnown.count(addr))
630 vAddrToSend.push_back(addr);
634 void AddInventoryKnown(const CInv& inv)
636 CRITICAL_BLOCK(cs_inventory)
637 setInventoryKnown.insert(inv);
640 void PushInventory(const CInv& inv)
642 CRITICAL_BLOCK(cs_inventory)
643 if (!setInventoryKnown.count(inv))
644 vInventoryToSend.push_back(inv);
647 void AskFor(const CInv& inv)
649 // We're using mapAskFor as a priority queue,
650 // the key is the earliest time the request can be sent
651 int64& nRequestTime = mapAlreadyAskedFor[inv];
652 printf("askfor %s %"PRI64d"\n", inv.ToString().c_str(), nRequestTime);
654 // Make sure not to reuse time indexes to keep things in the same order
655 int64 nNow = (GetTime() - 1) * 1000000;
656 static int64 nLastTime;
657 nLastTime = nNow = max(nNow, ++nLastTime);
659 // Each retry is 2 minutes after the last
660 nRequestTime = max(nRequestTime + 2 * 60 * 1000000, nNow);
661 mapAskFor.insert(make_pair(nRequestTime, inv));
666 void BeginMessage(const char* pszCommand)
668 cs_vSend.Enter();
669 if (nHeaderStart != -1)
670 AbortMessage();
671 nHeaderStart = vSend.size();
672 vSend << CMessageHeader(pszCommand, 0);
673 nMessageStart = vSend.size();
674 if (fDebug)
675 printf("%s ", DateTimeStrFormat("%x %H:%M:%S", GetTime()).c_str());
676 printf("sending: %s ", pszCommand);
679 void AbortMessage()
681 if (nHeaderStart == -1)
682 return;
683 vSend.resize(nHeaderStart);
684 nHeaderStart = -1;
685 nMessageStart = -1;
686 cs_vSend.Leave();
687 printf("(aborted)\n");
690 void EndMessage()
692 if (mapArgs.count("-dropmessagestest") && GetRand(atoi(mapArgs["-dropmessagestest"])) == 0)
694 printf("dropmessages DROPPING SEND MESSAGE\n");
695 AbortMessage();
696 return;
699 if (nHeaderStart == -1)
700 return;
702 // Set the size
703 unsigned int nSize = vSend.size() - nMessageStart;
704 memcpy((char*)&vSend[nHeaderStart] + offsetof(CMessageHeader, nMessageSize), &nSize, sizeof(nSize));
706 // Set the checksum
707 if (vSend.GetVersion() >= 209)
709 uint256 hash = Hash(vSend.begin() + nMessageStart, vSend.end());
710 unsigned int nChecksum = 0;
711 memcpy(&nChecksum, &hash, sizeof(nChecksum));
712 assert(nMessageStart - nHeaderStart >= offsetof(CMessageHeader, nChecksum) + sizeof(nChecksum));
713 memcpy((char*)&vSend[nHeaderStart] + offsetof(CMessageHeader, nChecksum), &nChecksum, sizeof(nChecksum));
716 printf("(%d bytes) ", nSize);
717 printf("\n");
719 nHeaderStart = -1;
720 nMessageStart = -1;
721 cs_vSend.Leave();
724 void EndMessageAbortIfEmpty()
726 if (nHeaderStart == -1)
727 return;
728 int nSize = vSend.size() - nMessageStart;
729 if (nSize > 0)
730 EndMessage();
731 else
732 AbortMessage();
735 const char* GetMessageCommand() const
737 if (nHeaderStart == -1)
738 return "";
739 return &vSend[nHeaderStart] + offsetof(CMessageHeader, pchCommand);
745 void PushMessage(const char* pszCommand)
749 BeginMessage(pszCommand);
750 EndMessage();
752 catch (...)
754 AbortMessage();
755 throw;
759 template<typename T1>
760 void PushMessage(const char* pszCommand, const T1& a1)
764 BeginMessage(pszCommand);
765 vSend << a1;
766 EndMessage();
768 catch (...)
770 AbortMessage();
771 throw;
775 template<typename T1, typename T2>
776 void PushMessage(const char* pszCommand, const T1& a1, const T2& a2)
780 BeginMessage(pszCommand);
781 vSend << a1 << a2;
782 EndMessage();
784 catch (...)
786 AbortMessage();
787 throw;
791 template<typename T1, typename T2, typename T3>
792 void PushMessage(const char* pszCommand, const T1& a1, const T2& a2, const T3& a3)
796 BeginMessage(pszCommand);
797 vSend << a1 << a2 << a3;
798 EndMessage();
800 catch (...)
802 AbortMessage();
803 throw;
807 template<typename T1, typename T2, typename T3, typename T4>
808 void PushMessage(const char* pszCommand, const T1& a1, const T2& a2, const T3& a3, const T4& a4)
812 BeginMessage(pszCommand);
813 vSend << a1 << a2 << a3 << a4;
814 EndMessage();
816 catch (...)
818 AbortMessage();
819 throw;
823 template<typename T1, typename T2, typename T3, typename T4, typename T5>
824 void PushMessage(const char* pszCommand, const T1& a1, const T2& a2, const T3& a3, const T4& a4, const T5& a5)
828 BeginMessage(pszCommand);
829 vSend << a1 << a2 << a3 << a4 << a5;
830 EndMessage();
832 catch (...)
834 AbortMessage();
835 throw;
839 template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6>
840 void PushMessage(const char* pszCommand, const T1& a1, const T2& a2, const T3& a3, const T4& a4, const T5& a5, const T6& a6)
844 BeginMessage(pszCommand);
845 vSend << a1 << a2 << a3 << a4 << a5 << a6;
846 EndMessage();
848 catch (...)
850 AbortMessage();
851 throw;
855 template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7>
856 void PushMessage(const char* pszCommand, const T1& a1, const T2& a2, const T3& a3, const T4& a4, const T5& a5, const T6& a6, const T7& a7)
860 BeginMessage(pszCommand);
861 vSend << a1 << a2 << a3 << a4 << a5 << a6 << a7;
862 EndMessage();
864 catch (...)
866 AbortMessage();
867 throw;
871 template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8>
872 void PushMessage(const char* pszCommand, const T1& a1, const T2& a2, const T3& a3, const T4& a4, const T5& a5, const T6& a6, const T7& a7, const T8& a8)
876 BeginMessage(pszCommand);
877 vSend << a1 << a2 << a3 << a4 << a5 << a6 << a7 << a8;
878 EndMessage();
880 catch (...)
882 AbortMessage();
883 throw;
887 template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9>
888 void PushMessage(const char* pszCommand, const T1& a1, const T2& a2, const T3& a3, const T4& a4, const T5& a5, const T6& a6, const T7& a7, const T8& a8, const T9& a9)
892 BeginMessage(pszCommand);
893 vSend << a1 << a2 << a3 << a4 << a5 << a6 << a7 << a8 << a9;
894 EndMessage();
896 catch (...)
898 AbortMessage();
899 throw;
904 void PushRequest(const char* pszCommand,
905 void (*fn)(void*, CDataStream&), void* param1)
907 uint256 hashReply;
908 RAND_bytes((unsigned char*)&hashReply, sizeof(hashReply));
910 CRITICAL_BLOCK(cs_mapRequests)
911 mapRequests[hashReply] = CRequestTracker(fn, param1);
913 PushMessage(pszCommand, hashReply);
916 template<typename T1>
917 void PushRequest(const char* pszCommand, const T1& a1,
918 void (*fn)(void*, CDataStream&), void* param1)
920 uint256 hashReply;
921 RAND_bytes((unsigned char*)&hashReply, sizeof(hashReply));
923 CRITICAL_BLOCK(cs_mapRequests)
924 mapRequests[hashReply] = CRequestTracker(fn, param1);
926 PushMessage(pszCommand, hashReply, a1);
929 template<typename T1, typename T2>
930 void PushRequest(const char* pszCommand, const T1& a1, const T2& a2,
931 void (*fn)(void*, CDataStream&), void* param1)
933 uint256 hashReply;
934 RAND_bytes((unsigned char*)&hashReply, sizeof(hashReply));
936 CRITICAL_BLOCK(cs_mapRequests)
937 mapRequests[hashReply] = CRequestTracker(fn, param1);
939 PushMessage(pszCommand, hashReply, a1, a2);
944 void PushGetBlocks(CBlockIndex* pindexBegin, uint256 hashEnd);
945 bool IsSubscribed(unsigned int nChannel);
946 void Subscribe(unsigned int nChannel, unsigned int nHops=0);
947 void CancelSubscribe(unsigned int nChannel);
948 void CloseSocketDisconnect();
949 void Cleanup();
961 inline void RelayInventory(const CInv& inv)
963 // Put on lists to offer to the other nodes
964 CRITICAL_BLOCK(cs_vNodes)
965 foreach(CNode* pnode, vNodes)
966 pnode->PushInventory(inv);
969 template<typename T>
970 void RelayMessage(const CInv& inv, const T& a)
972 CDataStream ss(SER_NETWORK);
973 ss.reserve(10000);
974 ss << a;
975 RelayMessage(inv, ss);
978 template<>
979 inline void RelayMessage<>(const CInv& inv, const CDataStream& ss)
981 CRITICAL_BLOCK(cs_mapRelay)
983 // Expire old relay messages
984 while (!vRelayExpiration.empty() && vRelayExpiration.front().first < GetTime())
986 mapRelay.erase(vRelayExpiration.front().second);
987 vRelayExpiration.pop_front();
990 // Save original serialized message so newer versions are preserved
991 mapRelay[inv] = ss;
992 vRelayExpiration.push_back(make_pair(GetTime() + 15 * 60, inv));
995 RelayInventory(inv);
1006 // Templates for the publish and subscription system.
1007 // The object being published as T& obj needs to have:
1008 // a set<unsigned int> setSources member
1009 // specializations of AdvertInsert and AdvertErase
1010 // Currently implemented for CTable and CProduct.
1013 template<typename T>
1014 void AdvertStartPublish(CNode* pfrom, unsigned int nChannel, unsigned int nHops, T& obj)
1016 // Add to sources
1017 obj.setSources.insert(pfrom->addr.ip);
1019 if (!AdvertInsert(obj))
1020 return;
1022 // Relay
1023 CRITICAL_BLOCK(cs_vNodes)
1024 foreach(CNode* pnode, vNodes)
1025 if (pnode != pfrom && (nHops < PUBLISH_HOPS || pnode->IsSubscribed(nChannel)))
1026 pnode->PushMessage("publish", nChannel, nHops, obj);
1029 template<typename T>
1030 void AdvertStopPublish(CNode* pfrom, unsigned int nChannel, unsigned int nHops, T& obj)
1032 uint256 hash = obj.GetHash();
1034 CRITICAL_BLOCK(cs_vNodes)
1035 foreach(CNode* pnode, vNodes)
1036 if (pnode != pfrom && (nHops < PUBLISH_HOPS || pnode->IsSubscribed(nChannel)))
1037 pnode->PushMessage("pub-cancel", nChannel, nHops, hash);
1039 AdvertErase(obj);
1042 template<typename T>
1043 void AdvertRemoveSource(CNode* pfrom, unsigned int nChannel, unsigned int nHops, T& obj)
1045 // Remove a source
1046 obj.setSources.erase(pfrom->addr.ip);
1048 // If no longer supported by any sources, cancel it
1049 if (obj.setSources.empty())
1050 AdvertStopPublish(pfrom, nChannel, nHops, obj);