Bitcoin Core  0.21.1
P2P Digital Currency
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules
protocol.h
Go to the documentation of this file.
1 // Copyright (c) 2009-2010 Satoshi Nakamoto
2 // Copyright (c) 2009-2019 The Bitcoin Core developers
3 // Distributed under the MIT software license, see the accompanying
4 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5 
6 #ifndef __cplusplus
7 #error This header can only be compiled as C++.
8 #endif
9 
10 #ifndef BITCOIN_PROTOCOL_H
11 #define BITCOIN_PROTOCOL_H
12 
13 #include <netaddress.h>
14 #include <primitives/transaction.h>
15 #include <serialize.h>
16 #include <uint256.h>
17 #include <version.h>
18 
19 #include <stdint.h>
20 #include <string>
21 
29 {
30 public:
31  static constexpr size_t MESSAGE_START_SIZE = 4;
32  static constexpr size_t COMMAND_SIZE = 12;
33  static constexpr size_t MESSAGE_SIZE_SIZE = 4;
34  static constexpr size_t CHECKSUM_SIZE = 4;
35  static constexpr size_t MESSAGE_SIZE_OFFSET = MESSAGE_START_SIZE + COMMAND_SIZE;
36  static constexpr size_t CHECKSUM_OFFSET = MESSAGE_SIZE_OFFSET + MESSAGE_SIZE_SIZE;
37  static constexpr size_t HEADER_SIZE = MESSAGE_START_SIZE + COMMAND_SIZE + MESSAGE_SIZE_SIZE + CHECKSUM_SIZE;
38  typedef unsigned char MessageStartChars[MESSAGE_START_SIZE];
39 
40  explicit CMessageHeader();
41 
45  CMessageHeader(const MessageStartChars& pchMessageStartIn, const char* pszCommand, unsigned int nMessageSizeIn);
46 
47  std::string GetCommand() const;
48  bool IsCommandValid() const;
49 
50  SERIALIZE_METHODS(CMessageHeader, obj) { READWRITE(obj.pchMessageStart, obj.pchCommand, obj.nMessageSize, obj.pchChecksum); }
51 
54  uint32_t nMessageSize;
56 };
57 
62 namespace NetMsgType {
63 
68 extern const char* VERSION;
73 extern const char* VERACK;
78 extern const char* ADDR;
84 extern const char *ADDRV2;
90 extern const char *SENDADDRV2;
95 extern const char* INV;
99 extern const char* GETDATA;
105 extern const char* MERKLEBLOCK;
110 extern const char* GETBLOCKS;
116 extern const char* GETHEADERS;
120 extern const char* TX;
126 extern const char* HEADERS;
130 extern const char* BLOCK;
135 extern const char* GETADDR;
141 extern const char* MEMPOOL;
146 extern const char* PING;
152 extern const char* PONG;
158 extern const char* NOTFOUND;
166 extern const char* FILTERLOAD;
174 extern const char* FILTERADD;
182 extern const char* FILTERCLEAR;
188 extern const char* SENDHEADERS;
194 extern const char* FEEFILTER;
202 extern const char* SENDCMPCT;
208 extern const char* CMPCTBLOCK;
214 extern const char* GETBLOCKTXN;
220 extern const char* BLOCKTXN;
226 extern const char* GETCFILTERS;
231 extern const char* CFILTER;
239 extern const char* GETCFHEADERS;
244 extern const char* CFHEADERS;
251 extern const char* GETCFCHECKPT;
256 extern const char* CFCHECKPT;
262 extern const char* WTXIDRELAY;
263 }; // namespace NetMsgType
264 
265 /* Get a vector of all valid message types (see above) */
266 const std::vector<std::string>& getAllNetMessageTypes();
267 
269 enum ServiceFlags : uint64_t {
270  // NOTE: When adding here, be sure to update serviceFlagToStr too
271  // Nothing
273  // NODE_NETWORK means that the node is capable of serving the complete block chain. It is currently
274  // set by all Bitcoin Core non pruned nodes, and is unset by SPV clients or other light clients.
275  NODE_NETWORK = (1 << 0),
276  // NODE_GETUTXO means the node is capable of responding to the getutxo protocol request.
277  // Bitcoin Core does not support this but a patch set called Bitcoin XT does.
278  // See BIP 64 for details on how this is implemented.
279  NODE_GETUTXO = (1 << 1),
280  // NODE_BLOOM means the node is capable and willing to handle bloom-filtered connections.
281  // Bitcoin Core nodes used to support this by default, without advertising this bit,
282  // but no longer do as of protocol version 70011 (= NO_BLOOM_VERSION)
283  NODE_BLOOM = (1 << 2),
284  // NODE_WITNESS indicates that a node can be asked for blocks and transactions including
285  // witness data.
286  NODE_WITNESS = (1 << 3),
287  // NODE_COMPACT_FILTERS means the node will service basic block filter requests.
288  // See BIP157 and BIP158 for details on how this is implemented.
290  // NODE_NETWORK_LIMITED means the same as NODE_NETWORK with the limitation of only
291  // serving the last 288 (2 day) blocks
292  // See BIP159 for details on how this is implemented.
293  NODE_NETWORK_LIMITED = (1 << 10),
294 
295  // Bits 24-31 are reserved for temporary experiments. Just pick a bit that
296  // isn't getting used, or one not being used much, and notify the
297  // bitcoin-development mailing list. Remember that service bits are just
298  // unauthenticated advertisements, so your code must be robust against
299  // collisions and other cases where nodes may be advertising a service they
300  // do not actually support. Other service bits should be allocated via the
301  // BIP process.
302 };
303 
309 std::vector<std::string> serviceFlagsToStr(uint64_t flags);
310 
336 
338 void SetServiceFlagsIBDCache(bool status);
339 
345 static inline bool HasAllDesirableServiceFlags(ServiceFlags services)
346 {
347  return !(GetDesirableServiceFlags(services) & (~services));
348 }
349 
354 static inline bool MayHaveUsefulAddressDB(ServiceFlags services)
355 {
356  return (services & NODE_NETWORK) || (services & NODE_NETWORK_LIMITED);
357 }
358 
360 class CAddress : public CService
361 {
362  static constexpr uint32_t TIME_INIT{100000000};
363 
364 public:
365  CAddress() : CService{} {};
366  CAddress(CService ipIn, ServiceFlags nServicesIn) : CService{ipIn}, nServices{nServicesIn} {};
367  CAddress(CService ipIn, ServiceFlags nServicesIn, uint32_t nTimeIn) : CService{ipIn}, nTime{nTimeIn}, nServices{nServicesIn} {};
368 
370  {
371  SER_READ(obj, obj.nTime = TIME_INIT);
372  int nVersion = s.GetVersion();
373  if (s.GetType() & SER_DISK) {
374  READWRITE(nVersion);
375  }
376  if ((s.GetType() & SER_DISK) ||
377  (nVersion != INIT_PROTO_VERSION && !(s.GetType() & SER_GETHASH))) {
378  // The only time we serialize a CAddress object without nTime is in
379  // the initial VERSION messages which contain two CAddress records.
380  // At that point, the serialization version is INIT_PROTO_VERSION.
381  // After the version handshake, serialization version is >=
382  // MIN_PEER_PROTO_VERSION and all ADDR messages are serialized with
383  // nTime.
384  READWRITE(obj.nTime);
385  }
386  if (nVersion & ADDRV2_FORMAT) {
387  uint64_t services_tmp;
388  SER_WRITE(obj, services_tmp = obj.nServices);
390  SER_READ(obj, obj.nServices = static_cast<ServiceFlags>(services_tmp));
391  } else {
392  READWRITE(Using<CustomUintFormatter<8>>(obj.nServices));
393  }
394  READWRITEAS(CService, obj);
395  }
396 
397  // disk and network only
398  uint32_t nTime{TIME_INIT};
399 
401 };
402 
404 const uint32_t MSG_WITNESS_FLAG = 1 << 30;
405 const uint32_t MSG_TYPE_MASK = 0xffffffff >> 2;
406 
411 enum GetDataMsg : uint32_t {
413  MSG_TX = 1,
415  MSG_WTX = 5,
416  // The following can only occur in getdata. Invs always use TX/WTX or BLOCK.
421  // MSG_FILTERED_WITNESS_BLOCK is defined in BIP144 as reserved for future
422  // use and remains unused.
423  // MSG_FILTERED_WITNESS_BLOCK = MSG_FILTERED_BLOCK | MSG_WITNESS_FLAG,
424 };
425 
427 class CInv
428 {
429 public:
430  CInv();
431  CInv(uint32_t typeIn, const uint256& hashIn);
432 
433  SERIALIZE_METHODS(CInv, obj) { READWRITE(obj.type, obj.hash); }
434 
435  friend bool operator<(const CInv& a, const CInv& b);
436 
437  std::string GetCommand() const;
438  std::string ToString() const;
439 
440  // Single-message helper methods
441  bool IsMsgTx() const { return type == MSG_TX; }
442  bool IsMsgBlk() const { return type == MSG_BLOCK; }
443  bool IsMsgWtx() const { return type == MSG_WTX; }
444  bool IsMsgFilteredBlk() const { return type == MSG_FILTERED_BLOCK; }
445  bool IsMsgCmpctBlk() const { return type == MSG_CMPCT_BLOCK; }
446  bool IsMsgWitnessBlk() const { return type == MSG_WITNESS_BLOCK; }
447 
448  // Combined-message helper methods
449  bool IsGenTxMsg() const
450  {
451  return type == MSG_TX || type == MSG_WTX || type == MSG_WITNESS_TX;
452  }
453  bool IsGenBlkMsg() const
454  {
456  }
457 
458  uint32_t type;
460 };
461 
463 GenTxid ToGenTxid(const CInv& inv);
464 
465 #endif // BITCOIN_PROTOCOL_H
bool IsCommandValid() const
Definition: protocol.cpp:118
const char * GETCFILTERS
getcfilters requests compact filters for a range of blocks.
Definition: protocol.cpp:41
const char * PING
The ping message is sent periodically to help confirm that the receiving peer is still connected...
Definition: protocol.cpp:29
bool IsMsgBlk() const
Definition: protocol.h:442
const char * FILTERLOAD
The filterload message tells the receiving peer to filter all relayed transactions and requested merk...
Definition: protocol.cpp:32
const char * MERKLEBLOCK
The merkleblock message is a reply to a getdata message which requested a block using the inventory t...
Definition: protocol.cpp:21
uint8_t pchChecksum[CHECKSUM_SIZE]
Definition: protocol.h:55
const char * BLOCKTXN
Contains a BlockTransactions.
Definition: protocol.cpp:40
const char * SENDADDRV2
The sendaddrv2 message signals support for receiving ADDRV2 messages (BIP155).
Definition: protocol.cpp:18
ServiceFlags
nServices flags
Definition: protocol.h:269
static constexpr size_t MESSAGE_SIZE_SIZE
Definition: protocol.h:33
const std::vector< std::string > & getAllNetMessageTypes()
Definition: protocol.cpp:190
const char * GETADDR
The getaddr message requests an addr message from the receiving node, preferably one with lots of IP ...
Definition: protocol.cpp:27
bool IsMsgWitnessBlk() const
Definition: protocol.h:446
inv message data
Definition: protocol.h:427
const char * SENDCMPCT
Contains a 1-byte bool and 8-byte LE version number.
Definition: protocol.cpp:37
char pchCommand[COMMAND_SIZE]
Definition: protocol.h:53
Formatter for integers in CompactSize format.
Definition: serialize.h:544
const char * CFHEADERS
cfheaders is a response to a getcfheaders request containing a filter header and a vector of filter h...
Definition: protocol.cpp:44
bool IsMsgTx() const
Definition: protocol.h:441
Defined in BIP152.
Definition: protocol.h:418
GenTxid ToGenTxid(const CInv &inv)
Convert a TX/WITNESS_TX/WTX CInv to a GenTxid.
Definition: protocol.cpp:235
SERIALIZE_METHODS(CAddress, obj)
Definition: protocol.h:369
const uint32_t MSG_WITNESS_FLAG
getdata message type flags
Definition: protocol.h:404
uint32_t nMessageSize
Definition: protocol.h:54
bool IsMsgCmpctBlk() const
Definition: protocol.h:445
const char * CFILTER
cfilter is a response to a getcfilters request containing a single compact filter.
Definition: protocol.cpp:42
const uint32_t MSG_TYPE_MASK
Definition: protocol.h:405
#define READWRITEAS(type, obj)
Definition: serialize.h:176
const char * PONG
The pong message replies to a ping message, proving to the pinging node that the ponging node is stil...
Definition: protocol.cpp:30
const char * WTXIDRELAY
Indicates that a node prefers to relay transactions via wtxid, rather than txid.
Definition: protocol.cpp:47
const char * HEADERS
The headers message sends one or more block headers to a node which previously requested certain head...
Definition: protocol.cpp:25
static Wrapper< Formatter, T & > Using(T &&t)
Cause serialization/deserialization of an object to be done using a specified formatter class...
Definition: serialize.h:476
const char * GETCFCHECKPT
getcfcheckpt requests evenly spaced compact filter headers, enabling parallelized download and valida...
Definition: protocol.cpp:45
const char * INV
The inv message (inventory message) transmits one or more inventories of objects known to the transmi...
Definition: protocol.cpp:19
static constexpr int ADDRV2_FORMAT
A flag that is ORed into the protocol version to designate that addresses should be serialized in (un...
Definition: netaddress.h:32
ServiceFlags GetDesirableServiceFlags(ServiceFlags services)
Gets the set of service flags which are "desirable" for a given peer.
Definition: protocol.cpp:138
const char * GETHEADERS
The getheaders message requests a headers message that provides block headers starting from a particu...
Definition: protocol.cpp:23
static constexpr size_t COMMAND_SIZE
Definition: protocol.h:32
static bool HasAllDesirableServiceFlags(ServiceFlags services)
A shortcut for (services & GetDesirableServiceFlags(services)) == GetDesirableServiceFlags(services)...
Definition: protocol.h:345
Bitcoin protocol message types.
Definition: protocol.cpp:13
const char * ADDRV2
The addrv2 message relays connection information for peers on the network just like the addr message...
Definition: protocol.cpp:17
static const int INIT_PROTO_VERSION
initial proto version, to be increased after version/verack negotiation
Definition: version.h:15
A combination of a network address (CNetAddr) and a (TCP) port.
Definition: netaddress.h:523
const char * SENDHEADERS
Indicates that a node prefers to receive new block announcements via a "headers" message rather than ...
Definition: protocol.cpp:35
const char * MEMPOOL
The mempool message requests the TXIDs of transactions that the receiving node has verified as valid ...
Definition: protocol.cpp:28
A CService with information about it as peer.
Definition: protocol.h:360
uint256 hash
Definition: protocol.h:459
const char * ADDR
The addr (IP address) message relays connection information for peers on the network.
Definition: protocol.cpp:16
bool IsGenBlkMsg() const
Definition: protocol.h:453
Defined in BIP144.
Definition: protocol.h:419
const char * FILTERCLEAR
The filterclear message tells the receiving peer to remove a previously-set bloom filter...
Definition: protocol.cpp:34
std::string GetCommand() const
Definition: protocol.cpp:113
static constexpr size_t CHECKSUM_SIZE
Definition: protocol.h:34
bool IsGenTxMsg() const
Definition: protocol.h:449
const char * NOTFOUND
The notfound message is a reply to a getdata message which requested an object the receiving node doe...
Definition: protocol.cpp:31
const char * BLOCK
The block message transmits a single serialized block.
Definition: protocol.cpp:26
const char * FEEFILTER
The feefilter message tells the receiving peer not to inv us any txs which do not meet the specified ...
Definition: protocol.cpp:36
const char * GETCFHEADERS
getcfheaders requests a compact filter header and the filter hashes for a range of blocks...
Definition: protocol.cpp:43
static bool MayHaveUsefulAddressDB(ServiceFlags services)
Checks if a peer with the given service flags may be capable of having a robust address-storage DB...
Definition: protocol.h:354
bool IsMsgWtx() const
Definition: protocol.h:443
unsigned char MessageStartChars[MESSAGE_START_SIZE]
Definition: protocol.h:38
static constexpr size_t MESSAGE_SIZE_OFFSET
Definition: protocol.h:35
static constexpr size_t MESSAGE_START_SIZE
Definition: protocol.h:31
const char * GETBLOCKS
The getblocks message requests an inv message that provides block header hashes starting from a parti...
Definition: protocol.cpp:22
void SetServiceFlagsIBDCache(bool status)
Set the current IBD status in order to figure out the desirable service flags.
Definition: protocol.cpp:145
int flags
Definition: bitcoin-tx.cpp:506
const char * VERACK
The verack message acknowledges a previously-received version message, informing the connecting node ...
Definition: protocol.cpp:15
256-bit opaque blob.
Definition: uint256.h:124
ServiceFlags nServices
Definition: protocol.h:400
const char * CMPCTBLOCK
Contains a CBlockHeaderAndShortTxIDs object - providing a header and list of "short txids"...
Definition: protocol.cpp:38
SERIALIZE_METHODS(CMessageHeader, obj)
Definition: protocol.h:50
static constexpr uint32_t TIME_INIT
Definition: protocol.h:362
const char * VERSION
The version message provides information about the transmitting node to the receiving node at the beg...
Definition: protocol.cpp:14
CAddress()
Definition: protocol.h:365
std::vector< std::string > serviceFlagsToStr(uint64_t flags)
Convert service flags (a bitmask of NODE_*) to human readable strings.
Definition: protocol.cpp:222
Serialization wrapper class for custom integers and enums.
Definition: serialize.h:508
CAddress(CService ipIn, ServiceFlags nServicesIn)
Definition: protocol.h:366
uint32_t type
Definition: protocol.h:458
const char * GETDATA
The getdata message requests one or more data objects from another node.
Definition: protocol.cpp:20
GetDataMsg
getdata / inv message types.
Definition: protocol.h:411
const char * CFCHECKPT
cfcheckpt is a response to a getcfcheckpt request containing a vector of evenly spaced filter headers...
Definition: protocol.cpp:46
static constexpr size_t HEADER_SIZE
Definition: protocol.h:37
CInv()
Definition: protocol.cpp:149
#define SER_READ(obj, code)
Definition: serialize.h:177
bool IsMsgFilteredBlk() const
Definition: protocol.h:444
const char * TX
The tx message transmits a single transaction.
Definition: protocol.cpp:24
Defined in BIP37.
Definition: protocol.h:417
#define SER_WRITE(obj, code)
Definition: serialize.h:178
std::string ToString() const
Definition: protocol.cpp:181
#define READWRITE(...)
Definition: serialize.h:175
std::string GetCommand() const
Definition: protocol.cpp:162
Defined in BIP 339.
Definition: protocol.h:415
CAddress(CService ipIn, ServiceFlags nServicesIn, uint32_t nTimeIn)
Definition: protocol.h:367
friend bool operator<(const CInv &a, const CInv &b)
Definition: protocol.cpp:157
Defined in BIP144.
Definition: protocol.h:420
uint32_t nTime
Definition: protocol.h:398
char pchMessageStart[MESSAGE_START_SIZE]
Definition: protocol.h:52
A generic txid reference (txid or wtxid).
Definition: transaction.h:400
static constexpr size_t CHECKSUM_OFFSET
Definition: protocol.h:36
const char * FILTERADD
The filteradd message tells the receiving peer to add a single element to a previously-set bloom filt...
Definition: protocol.cpp:33
const char * GETBLOCKTXN
Contains a BlockTransactionsRequest Peer should respond with "blocktxn" message.
Definition: protocol.cpp:39
Message header.
Definition: protocol.h:28
SERIALIZE_METHODS(CInv, obj)
Definition: protocol.h:433