Difference between revisions of "BIP 0060"

From Bitcoin Wiki
Jump to: navigation, search
(Specification)
(Update BIP text with latest version from https://github.com/bitcoin/bips/blob/b5723035e23896d0/bip-0060.mediawiki)
 
(5 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 
{{bip}}
 
{{bip}}
 +
{{BipMoved|bip-0060.mediawiki}}
  
 
<pre>
 
<pre>
 
   BIP: 60
 
   BIP: 60
 +
  Layer: Peer Services
 
   Title: Fixed Length "version" Message (Relay-Transactions Field)
 
   Title: Fixed Length "version" Message (Relay-Transactions Field)
 
   Author: Amir Taaki <genjix@riseup.net>
 
   Author: Amir Taaki <genjix@riseup.net>
 +
  Comments-Summary: Discouraged for implementation (one person)
 +
  Comments-URI: https://github.com/bitcoin/bips/wiki/Comments:BIP-0060
 
   Status: Draft
 
   Status: Draft
 
   Type: Standards Track
 
   Type: Standards Track
   Created: 16-06-2013
+
   Created: 2013-06-16
 +
  License: PD
 
</pre>
 
</pre>
  
Line 29: Line 34:
 
=== version ===
 
=== version ===
  
When a node creates an outgoing connection, it will immediately [[Version Handshake|advertise]] its version. The remote node will respond with its version. No futher communication is possible until both peers have exchanged their version.
+
When a node creates an outgoing connection, it will immediately advertise its version. The remote node will respond with its version. No futher communication is possible until both peers have exchanged their version.
  
 
Payload:
 
Payload:
Line 50: Line 55:
 
| 8 || nonce || uint64_t || Node random nonce, randomly generated every time a version packet is sent. This nonce is used to detect connections to self.
 
| 8 || nonce || uint64_t || Node random nonce, randomly generated every time a version packet is sent. This nonce is used to detect connections to self.
 
|-
 
|-
| ? || user_agent || [[#Variable length string|var_str]] || [[BIP_0014|User Agent]] (0x00 if string is 0 bytes long)
+
| ? || user_agent || var_str || [[bip-0014.mediawiki|User Agent]] (0x00 if string is 0 bytes long)
 
|-
 
|-
 
| 4 || start_height || int32_t || The last block received by the emitting node
 
| 4 || start_height || int32_t || The last block received by the emitting node
 
|-
 
|-
| 1 || relay || bool || Whether the remote peer should announce relayed transactions or not, see [[BIP 0037]], since version >= 70001
+
| 1 || relay || bool || Whether the remote peer should announce relayed transactions or not, see [[bip-0037.mediawiki|BIP 0037]], since version >= 70001
 
|}
 
|}
  
Line 66: Line 71:
 
| 1 || NODE_NETWORK || This node can be asked for full blocks instead of just headers.
 
| 1 || NODE_NETWORK || This node can be asked for full blocks instead of just headers.
 
|}
 
|}
 +
 +
=== Code Updates ===
 +
 +
fRelayTx is added to the PushMessage() call inside PushVersion() (net.cpp)
 +
 +
<pre>
 +
void CNode::PushVersion()
 +
{
 +
    /// when NTP implemented, change to just nTime = GetAdjustedTime()
 +
    int64 nTime = (fInbound ? GetAdjustedTime() : GetTime());
 +
    CAddress addrYou = (addr.IsRoutable() && !IsProxy(addr) ? addr : CAddress(CService("0.0.0.0",0)));
 +
    CAddress addrMe = GetLocalAddress(&addr);
 +
    RAND_bytes((unsigned char*)&nLocalHostNonce, sizeof(nLocalHostNonce));
 +
    printf("send version message: version %d, blocks=%d, us=%s, them=%s, peer=%s\n", PROTOCOL_VERSION, nBestHeight, addrMe.ToString().c_str(), addrYou.ToString().c_str(), addr.ToString().c_str());
 +
    PushMessage("version", PROTOCOL_VERSION, nLocalServices, nTime, addrYou, addrMe,
 +
                nLocalHostNonce, FormatSubVersion(CLIENT_NAME, CLIENT_VERSION, std::vector<string>()),
 +
                nBestHeight, true);
 +
}
 +
</pre>
 +
 +
Additionally the protocol version is increased from 70001 to 70002.
  
 
==Copyright==
 
==Copyright==
  
 
This document is placed in the public domain.
 
This document is placed in the public domain.
 
[[Category:Developer]]
 
[[Category:Technical]]
 
[[Category:BIP|D]]
 

Latest revision as of 18:00, 24 September 2019

This page describes a BIP (Bitcoin Improvement Proposal).
Please see BIP 2 for more information about BIPs and creating them. Please do not just create a wiki page.

Please do not modify this page. This is a mirror of the BIP from the source Git repository here.

  BIP: 60
  Layer: Peer Services
  Title: Fixed Length "version" Message (Relay-Transactions Field)
  Author: Amir Taaki <genjix@riseup.net>
  Comments-Summary: Discouraged for implementation (one person)
  Comments-URI: https://github.com/bitcoin/bips/wiki/Comments:BIP-0060
  Status: Draft
  Type: Standards Track
  Created: 2013-06-16
  License: PD

Abstract

BIP 0037 introduced a new flag to version messages which says whether to relay new transaction messages to that node.

The protocol version was upgraded to 70001, and the (now accepted) BIP 0037 became implemented.

The implementation is problematic because the RelayTransactions flag is an optional part of the version message stream.

Motivation

One property of Bitcoin messages is their fixed number of fields. This keeps the format simple and easily understood. Adding optional fields to messages will cause deserialisation issues when other fields come after the optional one.

As an example, the length of version messages might be checked to ensure the byte stream is consistent. With optional fields, this checking is no longer possible. This is desirable to check for consistency inside internal deserialization code, and proper formatting of version messages originating from other nodes. In the future with diversification of the Bitcoin network, it will become desirable to enforce this kind of strict adherance to standard messages with field length compliance with every protocol version.

Another property of fixed-length field messages is the ability to pass stream operators around for deserialization. This property is also lost, as now the deserialisation code must know the remaining length of bytes to parse. The parser now requires an additional piece of information (remaining size of the stream) for parsing instead of being a dumb reader.

Specification

version

When a node creates an outgoing connection, it will immediately advertise its version. The remote node will respond with its version. No futher communication is possible until both peers have exchanged their version.

Payload:

Field Size Description Data type Comments
4 version int32_t Identifies protocol version being used by the node
8 services uint64_t bitfield of features to be enabled for this connection
8 timestamp int64_t standard UNIX timestamp in seconds
26 addr_recv net_addr The network address of the node receiving this message
version >= 106
26 addr_from net_addr The network address of the node emitting this message
8 nonce uint64_t Node random nonce, randomly generated every time a version packet is sent. This nonce is used to detect connections to self.
 ? user_agent var_str User Agent (0x00 if string is 0 bytes long)
4 start_height int32_t The last block received by the emitting node
1 relay bool Whether the remote peer should announce relayed transactions or not, see BIP 0037, since version >= 70001

A "verack" packet shall be sent if the version packet was accepted.

The following services are currently assigned:

Value Name Description
1 NODE_NETWORK This node can be asked for full blocks instead of just headers.

Code Updates

fRelayTx is added to the PushMessage() call inside PushVersion() (net.cpp)

void CNode::PushVersion()
{
    /// when NTP implemented, change to just nTime = GetAdjustedTime()
    int64 nTime = (fInbound ? GetAdjustedTime() : GetTime());
    CAddress addrYou = (addr.IsRoutable() && !IsProxy(addr) ? addr : CAddress(CService("0.0.0.0",0)));
    CAddress addrMe = GetLocalAddress(&addr);
    RAND_bytes((unsigned char*)&nLocalHostNonce, sizeof(nLocalHostNonce));
    printf("send version message: version %d, blocks=%d, us=%s, them=%s, peer=%s\n", PROTOCOL_VERSION, nBestHeight, addrMe.ToString().c_str(), addrYou.ToString().c_str(), addr.ToString().c_str());
    PushMessage("version", PROTOCOL_VERSION, nLocalServices, nTime, addrYou, addrMe,
                nLocalHostNonce, FormatSubVersion(CLIENT_NAME, CLIENT_VERSION, std::vector<string>()),
                nBestHeight, true);
}

Additionally the protocol version is increased from 70001 to 70002.

Copyright

This document is placed in the public domain.