Files
thehub/libs/server/protocol.cpp
T

226 lines
6.1 KiB
C++
Raw Permalink Normal View History

2017-11-09 19:34:51 +01:00
/*
* This file is part of the Flowee project
* Copyright (c) 2009-2010 Satoshi Nakamoto
* Copyright (c) 2009-2015 The Bitcoin Core developers
* Copyright (C) 2019 Tom Zander <tomz@freedommail.ch>
2017-11-09 19:34:51 +01:00
*
* 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/>.
*/
#include "protocol.h"
2013-04-13 00:13:08 -05:00
2011-08-11 18:40:12 +02:00
#include "util.h"
#include "utilstrencodings.h"
2013-04-13 00:13:08 -05:00
2011-10-07 11:02:21 -04:00
#ifndef WIN32
2011-08-11 18:40:12 +02:00
# include <arpa/inet.h>
#endif
namespace NetMsgType {
const char *VERSION="version";
const char *VERACK="verack";
const char *ADDR="addr";
const char *INV="inv";
const char *GETDATA="getdata";
const char *MERKLEBLOCK="merkleblock";
const char *GETBLOCKS="getblocks";
const char *GETHEADERS="getheaders";
const char *TX="tx";
const char *HEADERS="headers";
const char *BLOCK="block";
const char *GETADDR="getaddr";
const char *MEMPOOL="mempool";
const char *PING="ping";
const char *PONG="pong";
const char *NOTFOUND="notfound";
const char *FILTERLOAD="filterload";
const char *FILTERADD="filteradd";
const char *FILTERCLEAR="filterclear";
const char *REJECT="reject";
const char *SENDHEADERS="sendheaders";
2016-01-15 21:37:25 -08:00
// BUIP010 Xtreme Thinblocks - begin section
const char *THINBLOCK="thinblock";
const char *XTHINBLOCK="xthinblock";
const char *XBLOCKTX="xblocktx";
const char *GET_XBLOCKTX="get_xblocktx";
2016-02-29 13:15:11 -08:00
const char *GET_XTHIN="get_xthin";
2016-01-15 21:37:25 -08:00
// BUIP010 Xtreme Thinblocks - end section
2017-02-08 17:28:21 +01:00
const char *VERSION2="buversion"; // unfortunately the unlimited team wasn't very creative with naming.
const char *VERACK2="buverack";
const char *XPEDITEDREQUEST="req_xpedited";
const char *XPEDITEDBLK="Xb";
const char *XPEDITEDTxn="Xt";
const char *DSPROOF="dsproof-beta";
2017-02-08 17:28:21 +01:00
}
/** All known message types. Keep this in the same order as the list of
* messages above and in protocol.h.
*/
const static std::string allNetMessageTypes[] = {
NetMsgType::VERSION,
NetMsgType::VERACK,
NetMsgType::ADDR,
NetMsgType::INV,
NetMsgType::GETDATA,
NetMsgType::MERKLEBLOCK,
NetMsgType::GETBLOCKS,
NetMsgType::GETHEADERS,
NetMsgType::TX,
NetMsgType::HEADERS,
NetMsgType::BLOCK,
NetMsgType::GETADDR,
NetMsgType::MEMPOOL,
NetMsgType::PING,
NetMsgType::PONG,
NetMsgType::NOTFOUND,
NetMsgType::FILTERLOAD,
NetMsgType::FILTERADD,
NetMsgType::FILTERCLEAR,
NetMsgType::REJECT,
2016-01-15 21:37:25 -08:00
NetMsgType::SENDHEADERS,
// BUIP010 Xtreme Thinbocks - begin section
NetMsgType::THINBLOCK,
NetMsgType::XTHINBLOCK,
NetMsgType::XBLOCKTX,
NetMsgType::GET_XBLOCKTX,
2017-02-08 17:28:21 +01:00
NetMsgType::GET_XTHIN,
2016-01-15 21:37:25 -08:00
// BUIP010 Xtreme Thinbocks - end section
2017-02-08 17:28:21 +01:00
NetMsgType::VERSION2,
NetMsgType::VERACK2,
NetMsgType::XPEDITEDREQUEST,
NetMsgType::XPEDITEDBLK,
NetMsgType::XPEDITEDTxn,
};
const static std::vector<std::string> allNetMessageTypesVec(allNetMessageTypes, allNetMessageTypes+ARRAYLEN(allNetMessageTypes));
2014-10-27 20:24:31 -04:00
CMessageHeader::CMessageHeader(const MessageStartChars& pchMessageStartIn)
{
2014-10-27 20:24:31 -04:00
memcpy(pchMessageStart, pchMessageStartIn, MESSAGE_START_SIZE);
memset(pchCommand, 0, sizeof(pchCommand));
nMessageSize = -1;
nChecksum = 0;
}
2014-10-27 20:24:31 -04:00
CMessageHeader::CMessageHeader(const MessageStartChars& pchMessageStartIn, const char* pszCommand, unsigned int nMessageSizeIn)
{
2014-10-27 20:24:31 -04:00
memcpy(pchMessageStart, pchMessageStartIn, MESSAGE_START_SIZE);
2014-09-16 18:13:05 +02:00
memset(pchCommand, 0, sizeof(pchCommand));
strncpy(pchCommand, pszCommand, COMMAND_SIZE);
nMessageSize = nMessageSizeIn;
nChecksum = 0;
}
std::string CMessageHeader::GetCommand() const
{
2014-09-16 18:13:05 +02:00
return std::string(pchCommand, pchCommand + strnlen(pchCommand, COMMAND_SIZE));
}
2014-10-27 20:24:31 -04:00
bool CMessageHeader::IsValid(const MessageStartChars& pchMessageStartIn) const
{
// Check start string
2014-10-27 20:24:31 -04:00
if (memcmp(pchMessageStart, pchMessageStartIn, MESSAGE_START_SIZE) != 0)
return false;
// Check the command string for errors
for (const char* p1 = pchCommand; p1 < pchCommand + COMMAND_SIZE; p1++)
{
if (*p1 == 0)
{
// Must be all zeros after the first zero
for (; p1 < pchCommand + COMMAND_SIZE; p1++)
if (*p1 != 0)
return false;
}
else if (*p1 < ' ' || *p1 > 0x7E)
return false;
}
// Message size
if (nMessageSize > MAX_SIZE)
{
LogPrintf("CMessageHeader::IsValid(): (%s, %u bytes) nMessageSize > MAX_SIZE\n", GetCommand(), nMessageSize);
return false;
}
return true;
}
2011-08-11 18:40:12 +02:00
2012-01-03 23:33:31 +01:00
CAddress::CAddress() : CService()
2011-08-11 18:40:12 +02:00
{
Init();
}
2013-04-13 00:13:08 -05:00
CAddress::CAddress(CService ipIn, uint64_t nServicesIn) : CService(ipIn)
2011-08-11 18:40:12 +02:00
{
Init();
nServices = nServicesIn;
}
void CAddress::Init()
{
nServices = NODE_NETWORK;
nTime = 100000000;
}
2011-08-11 18:49:03 +02:00
CInv::CInv()
{
type = 0;
hash.SetNull();
2011-08-11 18:49:03 +02:00
}
CInv::CInv(int typeIn, const uint256& hashIn)
{
type = typeIn;
hash = hashIn;
}
bool operator<(const CInv& a, const CInv& b)
{
return (a.type < b.type || (a.type == b.type && a.hash < b.hash));
}
bool CInv::IsKnownType() const
{
2020-01-04 14:00:17 +01:00
return (type >= 1 && type < 8) || type == MSG_DOUBLESPENDPROOF;
2011-08-11 18:49:03 +02:00
}
const char* CInv::GetCommand() const
{
switch (type) {
case MSG_TX: return NetMsgType::TX;
case MSG_BLOCK: return NetMsgType::BLOCK;
case MSG_FILTERED_BLOCK: return "filtered block";
case MSG_THINBLOCK: return NetMsgType::THINBLOCK;
case MSG_XTHINBLOCK: return NetMsgType::XTHINBLOCK;
case 6: return NetMsgType::XBLOCKTX;
case 7: return NetMsgType::GET_XBLOCKTX;
case MSG_DOUBLESPENDPROOF: return NetMsgType::DSPROOF;
default:
return "unknown type";
}
2011-08-11 18:49:03 +02:00
}
std::string CInv::ToString() const
{
2014-01-16 16:15:27 +01:00
return strprintf("%s %s", GetCommand(), hash.ToString());
2011-08-11 18:49:03 +02:00
}
const std::vector<std::string> &getAllNetMessageTypes()
{
return allNetMessageTypesVec;
}