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.
11 extern int nBestHeight;
15 inline unsigned short GetDefaultPort() { return fTestNet ? htons(18333) : htons(8333); }
16 static const unsigned int PUBLISH_HOPS = 5;
19 NODE_NETWORK = (1 << 0),
25 bool ConnectSocket(const CAddress& addrConnect, SOCKET& hSocketRet);
26 bool GetMyExternalIP(unsigned int& ipRet);
27 bool AddAddress(CAddress addr, int64 nTimePenalty=0);
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);
51 extern char pchMessageStart[4];
56 enum { COMMAND_SIZE=12 };
57 char pchMessageStart[sizeof(::pchMessageStart)];
58 char pchCommand[COMMAND_SIZE];
59 unsigned int nMessageSize;
60 unsigned int nChecksum;
64 memcpy(pchMessageStart, ::pchMessageStart, sizeof(pchMessageStart));
65 memset(pchCommand, 0, sizeof(pchCommand));
71 CMessageHeader(const char* pszCommand, unsigned int nMessageSizeIn)
73 memcpy(pchMessageStart, ::pchMessageStart, sizeof(pchMessageStart));
74 strncpy(pchCommand, pszCommand, COMMAND_SIZE);
75 nMessageSize = nMessageSizeIn;
81 READWRITE(FLATDATA(pchMessageStart));
82 READWRITE(FLATDATA(pchCommand));
83 READWRITE(nMessageSize);
90 if (pchCommand[COMMAND_SIZE-1] == 0)
91 return string(pchCommand, pchCommand + strlen(pchCommand));
93 return string(pchCommand, pchCommand + COMMAND_SIZE);
99 if (memcmp(pchMessageStart, ::pchMessageStart, sizeof(pchMessageStart)) != 0)
102 // Check the command string for errors
103 for (char* p1 = pchCommand; p1 < pchCommand + COMMAND_SIZE; p1++)
107 // Must be all zeros after the first zero
108 for (; p1 < pchCommand + COMMAND_SIZE; p1++)
112 else if (*p1 < ' ' || *p1 > 0x7E)
117 if (nMessageSize > MAX_SIZE)
119 printf("CMessageHeader::IsValid() : (%s, %u bytes) nMessageSize > MAX_SIZE\n", GetCommand().c_str(), nMessageSize);
132 static const unsigned char pchIPv4[12] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0xff, 0xff };
138 unsigned char pchReserved[12];
142 // disk and network only
146 unsigned int nLastTry;
153 CAddress(unsigned int ipIn, unsigned short portIn=0, uint64 nServicesIn=NODE_NETWORK)
157 port = (portIn == 0 ? GetDefaultPort() : portIn);
158 nServices = nServicesIn;
161 explicit CAddress(const struct sockaddr_in& sockaddr, uint64 nServicesIn=NODE_NETWORK)
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)
173 nServices = nServicesIn;
176 explicit CAddress(string strIn, uint64 nServicesIn=NODE_NETWORK)
179 SetAddress(strIn.c_str());
180 nServices = nServicesIn;
185 nServices = NODE_NETWORK;
186 memcpy(pchReserved, pchIPv4, sizeof(pchReserved));
188 port = GetDefaultPort();
193 bool SetAddress(const char* pszIn)
196 port = GetDefaultPort();
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)
202 char* pszPort = strchr(psz, ':');
206 port = htons(atoi(pszPort));
207 if (atoi(pszPort) < 0 || atoi(pszPort) > USHRT_MAX)
208 port = htons(USHRT_MAX);
214 bool SetAddress(string strIn)
216 return SetAddress(strIn.c_str());
222 const_cast<CAddress*>(this)->Init();
223 if (nType & SER_DISK)
225 if ((nType & SER_DISK) || (nVersion >= 31402 && !(nType & SER_GETHASH)))
227 READWRITE(nServices);
228 READWRITE(FLATDATA(pchReserved)); // for IPv6
233 friend inline bool operator==(const CAddress& a, const CAddress& b)
235 return (memcmp(a.pchReserved, b.pchReserved, sizeof(a.pchReserved)) == 0 &&
240 friend inline bool operator!=(const CAddress& a, const CAddress& b)
245 friend inline bool operator<(const CAddress& a, const CAddress& b)
247 int ret = memcmp(a.pchReserved, b.pchReserved, sizeof(a.pchReserved));
252 if (ntohl(a.ip) < ntohl(b.ip))
254 else if (a.ip == b.ip)
255 return ntohs(a.port) < ntohs(b.port);
260 vector<unsigned char> GetKey() const
264 ss << FLATDATA(pchReserved) << ip << port;
266 #if defined(_MSC_VER) && _MSC_VER < 1300
267 return vector<unsigned char>((unsigned char*)&ss.begin()[0], (unsigned char*)&ss.end()[0]);
269 return vector<unsigned char>(ss.begin(), ss.end());
273 struct sockaddr_in GetSockAddr() const
275 struct sockaddr_in sockaddr;
276 memset(&sockaddr, 0, sizeof(sockaddr));
277 sockaddr.sin_family = AF_INET;
278 sockaddr.sin_addr.s_addr = ip;
279 sockaddr.sin_port = port;
285 return (memcmp(pchReserved, pchIPv4, sizeof(pchIPv4)) == 0);
288 bool IsRoutable() const
291 !(GetByte(3) == 10 ||
292 (GetByte(3) == 192 && GetByte(2) == 168) ||
299 // Clean up 3-byte shifted addresses caused by garbage in size field
300 // of addr messages from versions before 0.2.9 checksum.
301 // Two consecutive addr messages look like this:
302 // header20 vectorlen3 addr26 addr26 addr26 header20 vectorlen3 addr26 addr26 addr26...
303 // so if the first length field is garbled, it reads the second batch
304 // of addr misaligned by 3 bytes.
305 if (memcmp(pchReserved, pchIPv4+3, sizeof(pchIPv4)-3) == 0)
308 return (ip != 0 && ip != INADDR_NONE && port != htons(USHRT_MAX));
311 unsigned char GetByte(int n) const
313 return ((unsigned char*)&ip)[3-n];
316 string ToStringIPPort() const
318 return strprintf("%u.%u.%u.%u:%u", GetByte(3), GetByte(2), GetByte(1), GetByte(0), ntohs(port));
321 string ToStringIP() const
323 return strprintf("%u.%u.%u.%u", GetByte(3), GetByte(2), GetByte(1), GetByte(0));
326 string ToStringPort() const
328 return strprintf("%u", ntohs(port));
331 string ToStringLog() const
336 string ToString() const
338 return strprintf("%u.%u.%u.%u:%u", GetByte(3), GetByte(2), GetByte(1), GetByte(0), ntohs(port));
343 printf("CAddress(%s)\n", ToString().c_str());
359 static const char* ppszTypeName[] =
378 CInv(int typeIn, const uint256& hashIn)
384 CInv(const string& strType, const uint256& hashIn)
387 for (i = 1; i < ARRAYLEN(ppszTypeName); i++)
389 if (strType == ppszTypeName[i])
395 if (i == ARRAYLEN(ppszTypeName))
396 throw std::out_of_range(strprintf("CInv::CInv(string, uint256) : unknown type '%s'", strType.c_str()));
406 friend inline bool operator<(const CInv& a, const CInv& b)
408 return (a.type < b.type || (a.type == b.type && a.hash < b.hash));
411 bool IsKnownType() const
413 return (type >= 1 && type < ARRAYLEN(ppszTypeName));
416 const char* GetCommand() const
419 throw std::out_of_range(strprintf("CInv::GetCommand() : type=%d unknown type", type));
420 return ppszTypeName[type];
423 string ToString() const
425 return strprintf("%s %s", GetCommand(), hash.ToString().substr(0,20).c_str());
430 printf("CInv(%s)\n", ToString().c_str());
438 class CRequestTracker
441 void (*fn)(void*, CDataStream&);
444 explicit CRequestTracker(void (*fnIn)(void*, CDataStream&)=NULL, void* param1In=NULL)
461 extern uint64 nLocalServices;
462 extern CAddress addrLocalHost;
463 extern CNode* pnodeLocalHost;
464 extern uint64 nLocalHostNonce;
465 extern array<int, 10> vnThreadsRunning;
466 extern SOCKET hListenSocket;
468 extern vector<CNode*> vNodes;
469 extern CCriticalSection cs_vNodes;
470 extern map<vector<unsigned char>, CAddress> mapAddresses;
471 extern CCriticalSection cs_mapAddresses;
472 extern map<CInv, CDataStream> mapRelay;
473 extern deque<pair<int64, CInv> > vRelayExpiration;
474 extern CCriticalSection cs_mapRelay;
475 extern map<CInv, int64> mapAlreadyAskedFor;
478 extern int fUseProxy;
479 extern CAddress addrProxy;
494 CCriticalSection cs_vSend;
495 CCriticalSection cs_vRecv;
498 int64 nLastSendEmpty;
499 int64 nTimeConnected;
500 unsigned int nHeaderStart;
501 unsigned int nMessageStart;
508 bool fSuccessfullyConnected;
514 map<uint256, CRequestTracker> mapRequests;
515 CCriticalSection cs_mapRequests;
516 uint256 hashContinue;
517 CBlockIndex* pindexLastGetBlocksBegin;
518 uint256 hashLastGetBlocksEnd;
522 vector<CAddress> vAddrToSend;
523 set<CAddress> setAddrKnown;
525 set<uint256> setKnown;
527 // inventory based relay
528 set<CInv> setInventoryKnown;
529 vector<CInv> vInventoryToSend;
530 CCriticalSection cs_inventory;
531 multimap<int64, CInv> mapAskFor;
533 // publish and subscription
534 vector<char> vfSubscribe;
537 CNode(SOCKET hSocketIn, CAddress addrIn, bool fInboundIn=false)
541 vSend.SetType(SER_NETWORK);
543 vRecv.SetType(SER_NETWORK);
545 // Version 0.2 obsoletes 20 Feb 2012
546 if (GetTime() > 1329696000)
548 vSend.SetVersion(209);
549 vRecv.SetVersion(209);
553 nLastSendEmpty = GetTime();
554 nTimeConnected = GetTime();
560 fClient = false; // set by version message
561 fInbound = fInboundIn;
562 fNetworkNode = false;
563 fSuccessfullyConnected = false;
568 pindexLastGetBlocksBegin = 0;
569 hashLastGetBlocksEnd = 0;
570 nStartingHeight = -1;
572 vfSubscribe.assign(256, false);
574 // Be shy and don't send version until we hear
581 if (hSocket != INVALID_SOCKET)
583 closesocket(hSocket);
584 hSocket = INVALID_SOCKET;
590 void operator=(const CNode&);
596 return max(nRefCount, 0) + (GetTime() < nReleaseTime ? 1 : 0);
599 CNode* AddRef(int64 nTimeout=0)
602 nReleaseTime = max(nReleaseTime, GetTime() + nTimeout);
615 void AddAddressKnown(const CAddress& addr)
617 setAddrKnown.insert(addr);
620 void PushAddress(const CAddress& addr)
622 // Known checking here is only to save space from duplicates.
623 // SendMessages will filter it again for knowns that were added
624 // after addresses were pushed.
625 if (addr.IsValid() && !setAddrKnown.count(addr))
626 vAddrToSend.push_back(addr);
630 void AddInventoryKnown(const CInv& inv)
632 CRITICAL_BLOCK(cs_inventory)
633 setInventoryKnown.insert(inv);
636 void PushInventory(const CInv& inv)
638 CRITICAL_BLOCK(cs_inventory)
639 if (!setInventoryKnown.count(inv))
640 vInventoryToSend.push_back(inv);
643 void AskFor(const CInv& inv)
645 // We're using mapAskFor as a priority queue,
646 // the key is the earliest time the request can be sent
647 int64& nRequestTime = mapAlreadyAskedFor[inv];
648 printf("askfor %s %"PRI64d"\n", inv.ToString().c_str(), nRequestTime);
650 // Make sure not to reuse time indexes to keep things in the same order
651 int64 nNow = (GetTime() - 1) * 1000000;
652 static int64 nLastTime;
653 nLastTime = nNow = max(nNow, ++nLastTime);
655 // Each retry is 2 minutes after the last
656 nRequestTime = max(nRequestTime + 2 * 60 * 1000000, nNow);
657 mapAskFor.insert(make_pair(nRequestTime, inv));
662 void BeginMessage(const char* pszCommand)
665 if (nHeaderStart != -1)
667 nHeaderStart = vSend.size();
668 vSend << CMessageHeader(pszCommand, 0);
669 nMessageStart = vSend.size();
671 printf("%s ", DateTimeStrFormat("%x %H:%M:%S", GetTime()).c_str());
672 printf("sending: %s ", pszCommand);
677 if (nHeaderStart == -1)
679 vSend.resize(nHeaderStart);
683 printf("(aborted)\n");
688 if (mapArgs.count("-dropmessagestest") && GetRand(atoi(mapArgs["-dropmessagestest"])) == 0)
690 printf("dropmessages DROPPING SEND MESSAGE\n");
695 if (nHeaderStart == -1)
699 unsigned int nSize = vSend.size() - nMessageStart;
700 memcpy((char*)&vSend[nHeaderStart] + offsetof(CMessageHeader, nMessageSize), &nSize, sizeof(nSize));
703 if (vSend.GetVersion() >= 209)
705 uint256 hash = Hash(vSend.begin() + nMessageStart, vSend.end());
706 unsigned int nChecksum = 0;
707 memcpy(&nChecksum, &hash, sizeof(nChecksum));
708 assert(nMessageStart - nHeaderStart >= offsetof(CMessageHeader, nChecksum) + sizeof(nChecksum));
709 memcpy((char*)&vSend[nHeaderStart] + offsetof(CMessageHeader, nChecksum), &nChecksum, sizeof(nChecksum));
712 printf("(%d bytes) ", nSize);
720 void EndMessageAbortIfEmpty()
722 if (nHeaderStart == -1)
724 int nSize = vSend.size() - nMessageStart;
735 /// when NTP implemented, change to just nTime = GetAdjustedTime()
736 int64 nTime = (fInbound ? GetAdjustedTime() : GetTime());
737 CAddress addrYou = (fUseProxy ? CAddress("0.0.0.0") : addr);
738 CAddress addrMe = (fUseProxy ? CAddress("0.0.0.0") : addrLocalHost);
739 RAND_bytes((unsigned char*)&nLocalHostNonce, sizeof(nLocalHostNonce));
740 PushMessage("version", VERSION, nLocalServices, nTime, addrYou, addrMe,
741 nLocalHostNonce, string(pszSubVer), nBestHeight);
747 void PushMessage(const char* pszCommand)
751 BeginMessage(pszCommand);
761 template<typename T1>
762 void PushMessage(const char* pszCommand, const T1& a1)
766 BeginMessage(pszCommand);
777 template<typename T1, typename T2>
778 void PushMessage(const char* pszCommand, const T1& a1, const T2& a2)
782 BeginMessage(pszCommand);
793 template<typename T1, typename T2, typename T3>
794 void PushMessage(const char* pszCommand, const T1& a1, const T2& a2, const T3& a3)
798 BeginMessage(pszCommand);
799 vSend << a1 << a2 << a3;
809 template<typename T1, typename T2, typename T3, typename T4>
810 void PushMessage(const char* pszCommand, const T1& a1, const T2& a2, const T3& a3, const T4& a4)
814 BeginMessage(pszCommand);
815 vSend << a1 << a2 << a3 << a4;
825 template<typename T1, typename T2, typename T3, typename T4, typename T5>
826 void PushMessage(const char* pszCommand, const T1& a1, const T2& a2, const T3& a3, const T4& a4, const T5& a5)
830 BeginMessage(pszCommand);
831 vSend << a1 << a2 << a3 << a4 << a5;
841 template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6>
842 void PushMessage(const char* pszCommand, const T1& a1, const T2& a2, const T3& a3, const T4& a4, const T5& a5, const T6& a6)
846 BeginMessage(pszCommand);
847 vSend << a1 << a2 << a3 << a4 << a5 << a6;
857 template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7>
858 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)
862 BeginMessage(pszCommand);
863 vSend << a1 << a2 << a3 << a4 << a5 << a6 << a7;
873 template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8>
874 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)
878 BeginMessage(pszCommand);
879 vSend << a1 << a2 << a3 << a4 << a5 << a6 << a7 << a8;
889 template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9>
890 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)
894 BeginMessage(pszCommand);
895 vSend << a1 << a2 << a3 << a4 << a5 << a6 << a7 << a8 << a9;
906 void PushRequest(const char* pszCommand,
907 void (*fn)(void*, CDataStream&), void* param1)
910 RAND_bytes((unsigned char*)&hashReply, sizeof(hashReply));
912 CRITICAL_BLOCK(cs_mapRequests)
913 mapRequests[hashReply] = CRequestTracker(fn, param1);
915 PushMessage(pszCommand, hashReply);
918 template<typename T1>
919 void PushRequest(const char* pszCommand, const T1& a1,
920 void (*fn)(void*, CDataStream&), void* param1)
923 RAND_bytes((unsigned char*)&hashReply, sizeof(hashReply));
925 CRITICAL_BLOCK(cs_mapRequests)
926 mapRequests[hashReply] = CRequestTracker(fn, param1);
928 PushMessage(pszCommand, hashReply, a1);
931 template<typename T1, typename T2>
932 void PushRequest(const char* pszCommand, const T1& a1, const T2& a2,
933 void (*fn)(void*, CDataStream&), void* param1)
936 RAND_bytes((unsigned char*)&hashReply, sizeof(hashReply));
938 CRITICAL_BLOCK(cs_mapRequests)
939 mapRequests[hashReply] = CRequestTracker(fn, param1);
941 PushMessage(pszCommand, hashReply, a1, a2);
946 void PushGetBlocks(CBlockIndex* pindexBegin, uint256 hashEnd);
947 bool IsSubscribed(unsigned int nChannel);
948 void Subscribe(unsigned int nChannel, unsigned int nHops=0);
949 void CancelSubscribe(unsigned int nChannel);
950 void CloseSocketDisconnect();
963 inline void RelayInventory(const CInv& inv)
965 // Put on lists to offer to the other nodes
966 CRITICAL_BLOCK(cs_vNodes)
967 foreach(CNode* pnode, vNodes)
968 pnode->PushInventory(inv);
972 void RelayMessage(const CInv& inv, const T& a)
974 CDataStream ss(SER_NETWORK);
977 RelayMessage(inv, ss);
981 inline void RelayMessage<>(const CInv& inv, const CDataStream& ss)
983 CRITICAL_BLOCK(cs_mapRelay)
985 // Expire old relay messages
986 while (!vRelayExpiration.empty() && vRelayExpiration.front().first < GetTime())
988 mapRelay.erase(vRelayExpiration.front().second);
989 vRelayExpiration.pop_front();
992 // Save original serialized message so newer versions are preserved
994 vRelayExpiration.push_back(make_pair(GetTime() + 15 * 60, inv));
1008 // Templates for the publish and subscription system.
1009 // The object being published as T& obj needs to have:
1010 // a set<unsigned int> setSources member
1011 // specializations of AdvertInsert and AdvertErase
1012 // Currently implemented for CTable and CProduct.
1015 template<typename T>
1016 void AdvertStartPublish(CNode* pfrom, unsigned int nChannel, unsigned int nHops, T& obj)
1019 obj.setSources.insert(pfrom->addr.ip);
1021 if (!AdvertInsert(obj))
1025 CRITICAL_BLOCK(cs_vNodes)
1026 foreach(CNode* pnode, vNodes)
1027 if (pnode != pfrom && (nHops < PUBLISH_HOPS || pnode->IsSubscribed(nChannel)))
1028 pnode->PushMessage("publish", nChannel, nHops, obj);
1031 template<typename T>
1032 void AdvertStopPublish(CNode* pfrom, unsigned int nChannel, unsigned int nHops, T& obj)
1034 uint256 hash = obj.GetHash();
1036 CRITICAL_BLOCK(cs_vNodes)
1037 foreach(CNode* pnode, vNodes)
1038 if (pnode != pfrom && (nHops < PUBLISH_HOPS || pnode->IsSubscribed(nChannel)))
1039 pnode->PushMessage("pub-cancel", nChannel, nHops, hash);
1044 template<typename T>
1045 void AdvertRemoveSource(CNode* pfrom, unsigned int nChannel, unsigned int nHops, T& obj)
1048 obj.setSources.erase(pfrom->addr.ip);
1050 // If no longer supported by any sources, cancel it
1051 if (obj.setSources.empty())
1052 AdvertStopPublish(pfrom, nChannel, nHops, obj);