2017-10-17 04:25:15 +02:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# Copyright (c) 2010 ArtForz -- public domain half-a-node
|
|
|
|
# Copyright (c) 2012 Jeff Garzik
|
2019-02-21 02:03:13 +01:00
|
|
|
# Copyright (c) 2010-2019 The Bitcoin Core developers
|
2017-10-17 04:25:15 +02:00
|
|
|
# Distributed under the MIT software license, see the accompanying
|
|
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2018-03-18 15:26:45 +01:00
|
|
|
"""Bitcoin test framework primitive and message structures
|
2017-10-17 04:25:15 +02:00
|
|
|
|
|
|
|
CBlock, CTransaction, CBlockHeader, CTxIn, CTxOut, etc....:
|
|
|
|
data structures that should map to corresponding structures in
|
|
|
|
bitcoin/primitives
|
|
|
|
|
|
|
|
msg_block, msg_tx, msg_headers, etc.:
|
|
|
|
data structures that represent network messages
|
|
|
|
|
2018-09-24 04:34:42 +02:00
|
|
|
ser_*, deser_*: functions that handle serialization/deserialization.
|
|
|
|
|
|
|
|
Classes use __slots__ to ensure extraneous attributes aren't accidentally added
|
|
|
|
by tests, compromising their intended effect.
|
|
|
|
"""
|
2017-10-17 04:25:15 +02:00
|
|
|
from codecs import encode
|
|
|
|
import copy
|
|
|
|
import hashlib
|
|
|
|
from io import BytesIO
|
|
|
|
import random
|
|
|
|
import socket
|
|
|
|
import struct
|
|
|
|
import time
|
|
|
|
|
|
|
|
from test_framework.siphash import siphash256
|
2019-02-18 16:35:48 +01:00
|
|
|
from test_framework.util import hex_str_to_bytes, assert_equal
|
2017-10-17 04:25:15 +02:00
|
|
|
|
|
|
|
MIN_VERSION_SUPPORTED = 60001
|
|
|
|
MY_VERSION = 70014 # past bip-31 for ping/pong
|
|
|
|
MY_SUBVERSION = b"/python-mininode-tester:0.0.3/"
|
|
|
|
MY_RELAY = 1 # from version 70001 onwards, fRelay should be appended to version messages (BIP37)
|
|
|
|
|
2018-08-08 17:24:59 +02:00
|
|
|
MAX_LOCATOR_SZ = 101
|
2017-10-17 04:25:15 +02:00
|
|
|
MAX_BLOCK_BASE_SIZE = 1000000
|
|
|
|
|
2017-11-17 18:54:39 +01:00
|
|
|
COIN = 100000000 # 1 btc in satoshis
|
|
|
|
|
|
|
|
BIP125_SEQUENCE_NUMBER = 0xfffffffd # Sequence number that is BIP 125 opt-in and BIP 68-opt-out
|
2017-10-17 04:25:15 +02:00
|
|
|
|
|
|
|
NODE_NETWORK = (1 << 0)
|
|
|
|
# NODE_GETUTXO = (1 << 1)
|
Disable bloom filtering by default.
BIP 37 bloom filters have been well-known to be a significant DoS
target for some time. However, in order to provide continuity for
SPV clients relying on it, the NODE_BLOOM service flag was added,
and left as a default, to ensure sufficient nodes exist with such a
flag.
NODE_BLOOM is, at this point, well-established and, as long as
there exist 0.18 nodes with default config (which I'd anticipate
will be true for many years), will be available from some peers. By
that time, the continued slowdown of BIP 37-based filtering will
likely have rendered it useless (though this is already largely the
case). Further, BIP 37 was deliberately never updated to support
witness-based filtering as newer wallets are expected to migrate to
some yet-to-be-network-exposed filters.
2019-06-05 17:02:35 +02:00
|
|
|
# NODE_BLOOM = (1 << 2)
|
2017-10-17 04:25:15 +02:00
|
|
|
NODE_WITNESS = (1 << 3)
|
2017-12-11 17:56:24 +01:00
|
|
|
NODE_NETWORK_LIMITED = (1 << 10)
|
2017-10-17 04:25:15 +02:00
|
|
|
|
2017-11-22 17:45:14 +01:00
|
|
|
MSG_TX = 1
|
|
|
|
MSG_BLOCK = 2
|
|
|
|
MSG_WITNESS_FLAG = 1 << 30
|
|
|
|
MSG_TYPE_MASK = 0xffffffff >> 2
|
|
|
|
|
2017-10-17 04:25:15 +02:00
|
|
|
# Serialization/deserialization tools
|
|
|
|
def sha256(s):
|
|
|
|
return hashlib.new('sha256', s).digest()
|
|
|
|
|
|
|
|
def hash256(s):
|
|
|
|
return sha256(sha256(s))
|
|
|
|
|
|
|
|
def ser_compact_size(l):
|
|
|
|
r = b""
|
|
|
|
if l < 253:
|
|
|
|
r = struct.pack("B", l)
|
|
|
|
elif l < 0x10000:
|
|
|
|
r = struct.pack("<BH", 253, l)
|
|
|
|
elif l < 0x100000000:
|
|
|
|
r = struct.pack("<BI", 254, l)
|
|
|
|
else:
|
|
|
|
r = struct.pack("<BQ", 255, l)
|
|
|
|
return r
|
|
|
|
|
|
|
|
def deser_compact_size(f):
|
|
|
|
nit = struct.unpack("<B", f.read(1))[0]
|
|
|
|
if nit == 253:
|
|
|
|
nit = struct.unpack("<H", f.read(2))[0]
|
|
|
|
elif nit == 254:
|
|
|
|
nit = struct.unpack("<I", f.read(4))[0]
|
|
|
|
elif nit == 255:
|
|
|
|
nit = struct.unpack("<Q", f.read(8))[0]
|
|
|
|
return nit
|
|
|
|
|
|
|
|
def deser_string(f):
|
|
|
|
nit = deser_compact_size(f)
|
|
|
|
return f.read(nit)
|
|
|
|
|
|
|
|
def ser_string(s):
|
|
|
|
return ser_compact_size(len(s)) + s
|
|
|
|
|
|
|
|
def deser_uint256(f):
|
|
|
|
r = 0
|
|
|
|
for i in range(8):
|
|
|
|
t = struct.unpack("<I", f.read(4))[0]
|
|
|
|
r += t << (i * 32)
|
|
|
|
return r
|
|
|
|
|
|
|
|
|
|
|
|
def ser_uint256(u):
|
|
|
|
rs = b""
|
|
|
|
for i in range(8):
|
|
|
|
rs += struct.pack("<I", u & 0xFFFFFFFF)
|
|
|
|
u >>= 32
|
|
|
|
return rs
|
|
|
|
|
|
|
|
|
|
|
|
def uint256_from_str(s):
|
|
|
|
r = 0
|
|
|
|
t = struct.unpack("<IIIIIIII", s[:32])
|
|
|
|
for i in range(8):
|
|
|
|
r += t[i] << (i * 32)
|
|
|
|
return r
|
|
|
|
|
|
|
|
|
|
|
|
def uint256_from_compact(c):
|
|
|
|
nbytes = (c >> 24) & 0xFF
|
|
|
|
v = (c & 0xFFFFFF) << (8 * (nbytes - 3))
|
|
|
|
return v
|
|
|
|
|
|
|
|
|
|
|
|
def deser_vector(f, c):
|
|
|
|
nit = deser_compact_size(f)
|
|
|
|
r = []
|
|
|
|
for i in range(nit):
|
|
|
|
t = c()
|
|
|
|
t.deserialize(f)
|
|
|
|
r.append(t)
|
|
|
|
return r
|
|
|
|
|
|
|
|
|
|
|
|
# ser_function_name: Allow for an alternate serialization function on the
|
|
|
|
# entries in the vector (we use this for serializing the vector of transactions
|
|
|
|
# for a witness block).
|
|
|
|
def ser_vector(l, ser_function_name=None):
|
|
|
|
r = ser_compact_size(len(l))
|
|
|
|
for i in l:
|
|
|
|
if ser_function_name:
|
|
|
|
r += getattr(i, ser_function_name)()
|
|
|
|
else:
|
|
|
|
r += i.serialize()
|
|
|
|
return r
|
|
|
|
|
|
|
|
|
|
|
|
def deser_uint256_vector(f):
|
|
|
|
nit = deser_compact_size(f)
|
|
|
|
r = []
|
|
|
|
for i in range(nit):
|
|
|
|
t = deser_uint256(f)
|
|
|
|
r.append(t)
|
|
|
|
return r
|
|
|
|
|
|
|
|
|
|
|
|
def ser_uint256_vector(l):
|
|
|
|
r = ser_compact_size(len(l))
|
|
|
|
for i in l:
|
|
|
|
r += ser_uint256(i)
|
|
|
|
return r
|
|
|
|
|
|
|
|
|
|
|
|
def deser_string_vector(f):
|
|
|
|
nit = deser_compact_size(f)
|
|
|
|
r = []
|
|
|
|
for i in range(nit):
|
|
|
|
t = deser_string(f)
|
|
|
|
r.append(t)
|
|
|
|
return r
|
|
|
|
|
|
|
|
|
|
|
|
def ser_string_vector(l):
|
|
|
|
r = ser_compact_size(len(l))
|
|
|
|
for sv in l:
|
|
|
|
r += ser_string(sv)
|
|
|
|
return r
|
|
|
|
|
|
|
|
|
|
|
|
# Deserialize from a hex string representation (eg from RPC)
|
|
|
|
def FromHex(obj, hex_string):
|
|
|
|
obj.deserialize(BytesIO(hex_str_to_bytes(hex_string)))
|
|
|
|
return obj
|
|
|
|
|
|
|
|
# Convert a binary-serializable object to hex (eg for submission via RPC)
|
|
|
|
def ToHex(obj):
|
2019-02-18 16:35:48 +01:00
|
|
|
return obj.serialize().hex()
|
2017-10-17 04:25:15 +02:00
|
|
|
|
|
|
|
# Objects that map to bitcoind objects, which can be serialized/deserialized
|
|
|
|
|
2018-09-24 04:34:42 +02:00
|
|
|
|
|
|
|
class CAddress:
|
|
|
|
__slots__ = ("ip", "nServices", "pchReserved", "port", "time")
|
|
|
|
|
2017-10-17 04:25:15 +02:00
|
|
|
def __init__(self):
|
2017-12-11 20:54:13 +01:00
|
|
|
self.time = 0
|
2017-10-17 04:25:15 +02:00
|
|
|
self.nServices = 1
|
|
|
|
self.pchReserved = b"\x00" * 10 + b"\xff" * 2
|
|
|
|
self.ip = "0.0.0.0"
|
|
|
|
self.port = 0
|
|
|
|
|
2017-12-11 20:54:13 +01:00
|
|
|
def deserialize(self, f, with_time=True):
|
|
|
|
if with_time:
|
|
|
|
self.time = struct.unpack("<i", f.read(4))[0]
|
2017-10-17 04:25:15 +02:00
|
|
|
self.nServices = struct.unpack("<Q", f.read(8))[0]
|
|
|
|
self.pchReserved = f.read(12)
|
|
|
|
self.ip = socket.inet_ntoa(f.read(4))
|
|
|
|
self.port = struct.unpack(">H", f.read(2))[0]
|
|
|
|
|
2017-12-11 20:54:13 +01:00
|
|
|
def serialize(self, with_time=True):
|
2017-10-17 04:25:15 +02:00
|
|
|
r = b""
|
2017-12-11 20:54:13 +01:00
|
|
|
if with_time:
|
|
|
|
r += struct.pack("<i", self.time)
|
2017-10-17 04:25:15 +02:00
|
|
|
r += struct.pack("<Q", self.nServices)
|
|
|
|
r += self.pchReserved
|
|
|
|
r += socket.inet_aton(self.ip)
|
|
|
|
r += struct.pack(">H", self.port)
|
|
|
|
return r
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "CAddress(nServices=%i ip=%s port=%i)" % (self.nServices,
|
|
|
|
self.ip, self.port)
|
|
|
|
|
2018-09-24 04:34:42 +02:00
|
|
|
|
|
|
|
class CInv:
|
|
|
|
__slots__ = ("hash", "type")
|
|
|
|
|
2017-10-17 04:25:15 +02:00
|
|
|
typemap = {
|
|
|
|
0: "Error",
|
|
|
|
1: "TX",
|
|
|
|
2: "Block",
|
|
|
|
1|MSG_WITNESS_FLAG: "WitnessTx",
|
|
|
|
2|MSG_WITNESS_FLAG : "WitnessBlock",
|
|
|
|
4: "CompactBlock"
|
|
|
|
}
|
|
|
|
|
|
|
|
def __init__(self, t=0, h=0):
|
|
|
|
self.type = t
|
|
|
|
self.hash = h
|
|
|
|
|
|
|
|
def deserialize(self, f):
|
|
|
|
self.type = struct.unpack("<i", f.read(4))[0]
|
|
|
|
self.hash = deser_uint256(f)
|
|
|
|
|
|
|
|
def serialize(self):
|
|
|
|
r = b""
|
|
|
|
r += struct.pack("<i", self.type)
|
|
|
|
r += ser_uint256(self.hash)
|
|
|
|
return r
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "CInv(type=%s hash=%064x)" \
|
|
|
|
% (self.typemap[self.type], self.hash)
|
|
|
|
|
|
|
|
|
2018-09-24 04:34:42 +02:00
|
|
|
class CBlockLocator:
|
|
|
|
__slots__ = ("nVersion", "vHave")
|
|
|
|
|
2017-10-17 04:25:15 +02:00
|
|
|
def __init__(self):
|
|
|
|
self.nVersion = MY_VERSION
|
|
|
|
self.vHave = []
|
|
|
|
|
|
|
|
def deserialize(self, f):
|
|
|
|
self.nVersion = struct.unpack("<i", f.read(4))[0]
|
|
|
|
self.vHave = deser_uint256_vector(f)
|
|
|
|
|
|
|
|
def serialize(self):
|
|
|
|
r = b""
|
|
|
|
r += struct.pack("<i", self.nVersion)
|
|
|
|
r += ser_uint256_vector(self.vHave)
|
|
|
|
return r
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "CBlockLocator(nVersion=%i vHave=%s)" \
|
|
|
|
% (self.nVersion, repr(self.vHave))
|
|
|
|
|
|
|
|
|
2018-09-24 04:34:42 +02:00
|
|
|
class COutPoint:
|
|
|
|
__slots__ = ("hash", "n")
|
|
|
|
|
2017-10-17 04:25:15 +02:00
|
|
|
def __init__(self, hash=0, n=0):
|
|
|
|
self.hash = hash
|
|
|
|
self.n = n
|
|
|
|
|
|
|
|
def deserialize(self, f):
|
|
|
|
self.hash = deser_uint256(f)
|
|
|
|
self.n = struct.unpack("<I", f.read(4))[0]
|
|
|
|
|
|
|
|
def serialize(self):
|
|
|
|
r = b""
|
|
|
|
r += ser_uint256(self.hash)
|
|
|
|
r += struct.pack("<I", self.n)
|
|
|
|
return r
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "COutPoint(hash=%064x n=%i)" % (self.hash, self.n)
|
|
|
|
|
|
|
|
|
2018-09-24 04:34:42 +02:00
|
|
|
class CTxIn:
|
|
|
|
__slots__ = ("nSequence", "prevout", "scriptSig")
|
|
|
|
|
2017-10-17 04:25:15 +02:00
|
|
|
def __init__(self, outpoint=None, scriptSig=b"", nSequence=0):
|
|
|
|
if outpoint is None:
|
|
|
|
self.prevout = COutPoint()
|
|
|
|
else:
|
|
|
|
self.prevout = outpoint
|
|
|
|
self.scriptSig = scriptSig
|
|
|
|
self.nSequence = nSequence
|
|
|
|
|
|
|
|
def deserialize(self, f):
|
|
|
|
self.prevout = COutPoint()
|
|
|
|
self.prevout.deserialize(f)
|
|
|
|
self.scriptSig = deser_string(f)
|
|
|
|
self.nSequence = struct.unpack("<I", f.read(4))[0]
|
|
|
|
|
|
|
|
def serialize(self):
|
|
|
|
r = b""
|
|
|
|
r += self.prevout.serialize()
|
|
|
|
r += ser_string(self.scriptSig)
|
|
|
|
r += struct.pack("<I", self.nSequence)
|
|
|
|
return r
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "CTxIn(prevout=%s scriptSig=%s nSequence=%i)" \
|
2019-02-18 16:35:48 +01:00
|
|
|
% (repr(self.prevout), self.scriptSig.hex(),
|
2017-10-17 04:25:15 +02:00
|
|
|
self.nSequence)
|
|
|
|
|
|
|
|
|
2018-09-24 04:34:42 +02:00
|
|
|
class CTxOut:
|
|
|
|
__slots__ = ("nValue", "scriptPubKey")
|
|
|
|
|
2017-10-17 04:25:15 +02:00
|
|
|
def __init__(self, nValue=0, scriptPubKey=b""):
|
|
|
|
self.nValue = nValue
|
|
|
|
self.scriptPubKey = scriptPubKey
|
|
|
|
|
|
|
|
def deserialize(self, f):
|
|
|
|
self.nValue = struct.unpack("<q", f.read(8))[0]
|
|
|
|
self.scriptPubKey = deser_string(f)
|
|
|
|
|
|
|
|
def serialize(self):
|
|
|
|
r = b""
|
|
|
|
r += struct.pack("<q", self.nValue)
|
|
|
|
r += ser_string(self.scriptPubKey)
|
|
|
|
return r
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "CTxOut(nValue=%i.%08i scriptPubKey=%s)" \
|
|
|
|
% (self.nValue // COIN, self.nValue % COIN,
|
2019-02-18 16:35:48 +01:00
|
|
|
self.scriptPubKey.hex())
|
2017-10-17 04:25:15 +02:00
|
|
|
|
|
|
|
|
2018-09-24 04:34:42 +02:00
|
|
|
class CScriptWitness:
|
|
|
|
__slots__ = ("stack",)
|
|
|
|
|
2017-10-17 04:25:15 +02:00
|
|
|
def __init__(self):
|
|
|
|
# stack is a vector of strings
|
|
|
|
self.stack = []
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "CScriptWitness(%s)" % \
|
2019-02-18 16:35:48 +01:00
|
|
|
(",".join([x.hex() for x in self.stack]))
|
2017-10-17 04:25:15 +02:00
|
|
|
|
|
|
|
def is_null(self):
|
|
|
|
if self.stack:
|
|
|
|
return False
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
2018-09-24 04:34:42 +02:00
|
|
|
class CTxInWitness:
|
|
|
|
__slots__ = ("scriptWitness",)
|
|
|
|
|
2017-10-17 04:25:15 +02:00
|
|
|
def __init__(self):
|
|
|
|
self.scriptWitness = CScriptWitness()
|
|
|
|
|
|
|
|
def deserialize(self, f):
|
|
|
|
self.scriptWitness.stack = deser_string_vector(f)
|
|
|
|
|
|
|
|
def serialize(self):
|
|
|
|
return ser_string_vector(self.scriptWitness.stack)
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return repr(self.scriptWitness)
|
|
|
|
|
|
|
|
def is_null(self):
|
|
|
|
return self.scriptWitness.is_null()
|
|
|
|
|
|
|
|
|
2018-09-24 04:34:42 +02:00
|
|
|
class CTxWitness:
|
|
|
|
__slots__ = ("vtxinwit",)
|
|
|
|
|
2017-10-17 04:25:15 +02:00
|
|
|
def __init__(self):
|
|
|
|
self.vtxinwit = []
|
|
|
|
|
|
|
|
def deserialize(self, f):
|
|
|
|
for i in range(len(self.vtxinwit)):
|
|
|
|
self.vtxinwit[i].deserialize(f)
|
|
|
|
|
|
|
|
def serialize(self):
|
|
|
|
r = b""
|
|
|
|
# This is different than the usual vector serialization --
|
|
|
|
# we omit the length of the vector, which is required to be
|
|
|
|
# the same length as the transaction's vin vector.
|
|
|
|
for x in self.vtxinwit:
|
|
|
|
r += x.serialize()
|
|
|
|
return r
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "CTxWitness(%s)" % \
|
|
|
|
(';'.join([repr(x) for x in self.vtxinwit]))
|
|
|
|
|
|
|
|
def is_null(self):
|
|
|
|
for x in self.vtxinwit:
|
|
|
|
if not x.is_null():
|
|
|
|
return False
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
2018-09-24 04:34:42 +02:00
|
|
|
class CTransaction:
|
|
|
|
__slots__ = ("hash", "nLockTime", "nVersion", "sha256", "vin", "vout",
|
|
|
|
"wit")
|
|
|
|
|
2017-10-17 04:25:15 +02:00
|
|
|
def __init__(self, tx=None):
|
|
|
|
if tx is None:
|
|
|
|
self.nVersion = 1
|
|
|
|
self.vin = []
|
|
|
|
self.vout = []
|
|
|
|
self.wit = CTxWitness()
|
|
|
|
self.nLockTime = 0
|
|
|
|
self.sha256 = None
|
|
|
|
self.hash = None
|
|
|
|
else:
|
|
|
|
self.nVersion = tx.nVersion
|
|
|
|
self.vin = copy.deepcopy(tx.vin)
|
|
|
|
self.vout = copy.deepcopy(tx.vout)
|
|
|
|
self.nLockTime = tx.nLockTime
|
|
|
|
self.sha256 = tx.sha256
|
|
|
|
self.hash = tx.hash
|
|
|
|
self.wit = copy.deepcopy(tx.wit)
|
|
|
|
|
|
|
|
def deserialize(self, f):
|
|
|
|
self.nVersion = struct.unpack("<i", f.read(4))[0]
|
|
|
|
self.vin = deser_vector(f, CTxIn)
|
|
|
|
flags = 0
|
|
|
|
if len(self.vin) == 0:
|
|
|
|
flags = struct.unpack("<B", f.read(1))[0]
|
|
|
|
# Not sure why flags can't be zero, but this
|
|
|
|
# matches the implementation in bitcoind
|
|
|
|
if (flags != 0):
|
|
|
|
self.vin = deser_vector(f, CTxIn)
|
|
|
|
self.vout = deser_vector(f, CTxOut)
|
|
|
|
else:
|
|
|
|
self.vout = deser_vector(f, CTxOut)
|
|
|
|
if flags != 0:
|
|
|
|
self.wit.vtxinwit = [CTxInWitness() for i in range(len(self.vin))]
|
|
|
|
self.wit.deserialize(f)
|
2018-12-11 19:26:41 +01:00
|
|
|
else:
|
|
|
|
self.wit = CTxWitness()
|
2017-10-17 04:25:15 +02:00
|
|
|
self.nLockTime = struct.unpack("<I", f.read(4))[0]
|
|
|
|
self.sha256 = None
|
|
|
|
self.hash = None
|
|
|
|
|
|
|
|
def serialize_without_witness(self):
|
|
|
|
r = b""
|
|
|
|
r += struct.pack("<i", self.nVersion)
|
|
|
|
r += ser_vector(self.vin)
|
|
|
|
r += ser_vector(self.vout)
|
|
|
|
r += struct.pack("<I", self.nLockTime)
|
|
|
|
return r
|
|
|
|
|
|
|
|
# Only serialize with witness when explicitly called for
|
|
|
|
def serialize_with_witness(self):
|
|
|
|
flags = 0
|
|
|
|
if not self.wit.is_null():
|
|
|
|
flags |= 1
|
|
|
|
r = b""
|
|
|
|
r += struct.pack("<i", self.nVersion)
|
|
|
|
if flags:
|
|
|
|
dummy = []
|
|
|
|
r += ser_vector(dummy)
|
|
|
|
r += struct.pack("<B", flags)
|
|
|
|
r += ser_vector(self.vin)
|
|
|
|
r += ser_vector(self.vout)
|
|
|
|
if flags & 1:
|
|
|
|
if (len(self.wit.vtxinwit) != len(self.vin)):
|
|
|
|
# vtxinwit must have the same length as vin
|
|
|
|
self.wit.vtxinwit = self.wit.vtxinwit[:len(self.vin)]
|
|
|
|
for i in range(len(self.wit.vtxinwit), len(self.vin)):
|
|
|
|
self.wit.vtxinwit.append(CTxInWitness())
|
|
|
|
r += self.wit.serialize()
|
|
|
|
r += struct.pack("<I", self.nLockTime)
|
|
|
|
return r
|
|
|
|
|
2017-12-01 01:49:01 +01:00
|
|
|
# Regular serialization is with witness -- must explicitly
|
|
|
|
# call serialize_without_witness to exclude witness data.
|
2017-10-17 04:25:15 +02:00
|
|
|
def serialize(self):
|
2017-12-01 01:49:01 +01:00
|
|
|
return self.serialize_with_witness()
|
2017-10-17 04:25:15 +02:00
|
|
|
|
|
|
|
# Recalculate the txid (transaction hash without witness)
|
|
|
|
def rehash(self):
|
|
|
|
self.sha256 = None
|
|
|
|
self.calc_sha256()
|
2017-11-17 18:54:39 +01:00
|
|
|
return self.hash
|
2017-10-17 04:25:15 +02:00
|
|
|
|
|
|
|
# We will only cache the serialization without witness in
|
|
|
|
# self.sha256 and self.hash -- those are expected to be the txid.
|
|
|
|
def calc_sha256(self, with_witness=False):
|
|
|
|
if with_witness:
|
|
|
|
# Don't cache the result, just return it
|
|
|
|
return uint256_from_str(hash256(self.serialize_with_witness()))
|
|
|
|
|
|
|
|
if self.sha256 is None:
|
|
|
|
self.sha256 = uint256_from_str(hash256(self.serialize_without_witness()))
|
2017-12-01 01:49:01 +01:00
|
|
|
self.hash = encode(hash256(self.serialize_without_witness())[::-1], 'hex_codec').decode('ascii')
|
2017-10-17 04:25:15 +02:00
|
|
|
|
|
|
|
def is_valid(self):
|
|
|
|
self.calc_sha256()
|
|
|
|
for tout in self.vout:
|
|
|
|
if tout.nValue < 0 or tout.nValue > 21000000 * COIN:
|
|
|
|
return False
|
|
|
|
return True
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "CTransaction(nVersion=%i vin=%s vout=%s wit=%s nLockTime=%i)" \
|
|
|
|
% (self.nVersion, repr(self.vin), repr(self.vout), repr(self.wit), self.nLockTime)
|
|
|
|
|
|
|
|
|
2018-09-24 04:34:42 +02:00
|
|
|
class CBlockHeader:
|
|
|
|
__slots__ = ("hash", "hashMerkleRoot", "hashPrevBlock", "nBits", "nNonce",
|
|
|
|
"nTime", "nVersion", "sha256")
|
|
|
|
|
2017-10-17 04:25:15 +02:00
|
|
|
def __init__(self, header=None):
|
|
|
|
if header is None:
|
|
|
|
self.set_null()
|
|
|
|
else:
|
|
|
|
self.nVersion = header.nVersion
|
|
|
|
self.hashPrevBlock = header.hashPrevBlock
|
|
|
|
self.hashMerkleRoot = header.hashMerkleRoot
|
|
|
|
self.nTime = header.nTime
|
|
|
|
self.nBits = header.nBits
|
|
|
|
self.nNonce = header.nNonce
|
|
|
|
self.sha256 = header.sha256
|
|
|
|
self.hash = header.hash
|
|
|
|
self.calc_sha256()
|
|
|
|
|
|
|
|
def set_null(self):
|
|
|
|
self.nVersion = 1
|
|
|
|
self.hashPrevBlock = 0
|
|
|
|
self.hashMerkleRoot = 0
|
|
|
|
self.nTime = 0
|
|
|
|
self.nBits = 0
|
|
|
|
self.nNonce = 0
|
|
|
|
self.sha256 = None
|
|
|
|
self.hash = None
|
|
|
|
|
|
|
|
def deserialize(self, f):
|
|
|
|
self.nVersion = struct.unpack("<i", f.read(4))[0]
|
|
|
|
self.hashPrevBlock = deser_uint256(f)
|
|
|
|
self.hashMerkleRoot = deser_uint256(f)
|
|
|
|
self.nTime = struct.unpack("<I", f.read(4))[0]
|
|
|
|
self.nBits = struct.unpack("<I", f.read(4))[0]
|
|
|
|
self.nNonce = struct.unpack("<I", f.read(4))[0]
|
|
|
|
self.sha256 = None
|
|
|
|
self.hash = None
|
|
|
|
|
|
|
|
def serialize(self):
|
|
|
|
r = b""
|
|
|
|
r += struct.pack("<i", self.nVersion)
|
|
|
|
r += ser_uint256(self.hashPrevBlock)
|
|
|
|
r += ser_uint256(self.hashMerkleRoot)
|
|
|
|
r += struct.pack("<I", self.nTime)
|
|
|
|
r += struct.pack("<I", self.nBits)
|
|
|
|
r += struct.pack("<I", self.nNonce)
|
|
|
|
return r
|
|
|
|
|
|
|
|
def calc_sha256(self):
|
|
|
|
if self.sha256 is None:
|
|
|
|
r = b""
|
|
|
|
r += struct.pack("<i", self.nVersion)
|
|
|
|
r += ser_uint256(self.hashPrevBlock)
|
|
|
|
r += ser_uint256(self.hashMerkleRoot)
|
|
|
|
r += struct.pack("<I", self.nTime)
|
|
|
|
r += struct.pack("<I", self.nBits)
|
|
|
|
r += struct.pack("<I", self.nNonce)
|
|
|
|
self.sha256 = uint256_from_str(hash256(r))
|
|
|
|
self.hash = encode(hash256(r)[::-1], 'hex_codec').decode('ascii')
|
|
|
|
|
|
|
|
def rehash(self):
|
|
|
|
self.sha256 = None
|
|
|
|
self.calc_sha256()
|
|
|
|
return self.sha256
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "CBlockHeader(nVersion=%i hashPrevBlock=%064x hashMerkleRoot=%064x nTime=%s nBits=%08x nNonce=%08x)" \
|
|
|
|
% (self.nVersion, self.hashPrevBlock, self.hashMerkleRoot,
|
|
|
|
time.ctime(self.nTime), self.nBits, self.nNonce)
|
|
|
|
|
2019-01-23 16:44:13 +01:00
|
|
|
BLOCK_HEADER_SIZE = len(CBlockHeader().serialize())
|
|
|
|
assert_equal(BLOCK_HEADER_SIZE, 80)
|
2017-10-17 04:25:15 +02:00
|
|
|
|
|
|
|
class CBlock(CBlockHeader):
|
2018-09-24 04:34:42 +02:00
|
|
|
__slots__ = ("vtx",)
|
|
|
|
|
2017-10-17 04:25:15 +02:00
|
|
|
def __init__(self, header=None):
|
|
|
|
super(CBlock, self).__init__(header)
|
|
|
|
self.vtx = []
|
|
|
|
|
|
|
|
def deserialize(self, f):
|
|
|
|
super(CBlock, self).deserialize(f)
|
|
|
|
self.vtx = deser_vector(f, CTransaction)
|
|
|
|
|
2019-04-02 16:18:12 +02:00
|
|
|
def serialize(self, with_witness=True):
|
2017-10-17 04:25:15 +02:00
|
|
|
r = b""
|
|
|
|
r += super(CBlock, self).serialize()
|
|
|
|
if with_witness:
|
|
|
|
r += ser_vector(self.vtx, "serialize_with_witness")
|
|
|
|
else:
|
2017-12-01 01:49:01 +01:00
|
|
|
r += ser_vector(self.vtx, "serialize_without_witness")
|
2017-10-17 04:25:15 +02:00
|
|
|
return r
|
|
|
|
|
|
|
|
# Calculate the merkle root given a vector of transaction hashes
|
|
|
|
@classmethod
|
|
|
|
def get_merkle_root(cls, hashes):
|
|
|
|
while len(hashes) > 1:
|
|
|
|
newhashes = []
|
|
|
|
for i in range(0, len(hashes), 2):
|
|
|
|
i2 = min(i+1, len(hashes)-1)
|
|
|
|
newhashes.append(hash256(hashes[i] + hashes[i2]))
|
|
|
|
hashes = newhashes
|
|
|
|
return uint256_from_str(hashes[0])
|
|
|
|
|
|
|
|
def calc_merkle_root(self):
|
|
|
|
hashes = []
|
|
|
|
for tx in self.vtx:
|
|
|
|
tx.calc_sha256()
|
|
|
|
hashes.append(ser_uint256(tx.sha256))
|
|
|
|
return self.get_merkle_root(hashes)
|
|
|
|
|
|
|
|
def calc_witness_merkle_root(self):
|
|
|
|
# For witness root purposes, the hash of the
|
|
|
|
# coinbase, with witness, is defined to be 0...0
|
|
|
|
hashes = [ser_uint256(0)]
|
|
|
|
|
|
|
|
for tx in self.vtx[1:]:
|
|
|
|
# Calculate the hashes with witness data
|
|
|
|
hashes.append(ser_uint256(tx.calc_sha256(True)))
|
|
|
|
|
|
|
|
return self.get_merkle_root(hashes)
|
|
|
|
|
|
|
|
def is_valid(self):
|
|
|
|
self.calc_sha256()
|
|
|
|
target = uint256_from_compact(self.nBits)
|
|
|
|
if self.sha256 > target:
|
|
|
|
return False
|
|
|
|
for tx in self.vtx:
|
|
|
|
if not tx.is_valid():
|
|
|
|
return False
|
|
|
|
if self.calc_merkle_root() != self.hashMerkleRoot:
|
|
|
|
return False
|
|
|
|
return True
|
|
|
|
|
|
|
|
def solve(self):
|
|
|
|
self.rehash()
|
|
|
|
target = uint256_from_compact(self.nBits)
|
|
|
|
while self.sha256 > target:
|
|
|
|
self.nNonce += 1
|
|
|
|
self.rehash()
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "CBlock(nVersion=%i hashPrevBlock=%064x hashMerkleRoot=%064x nTime=%s nBits=%08x nNonce=%08x vtx=%s)" \
|
|
|
|
% (self.nVersion, self.hashPrevBlock, self.hashMerkleRoot,
|
|
|
|
time.ctime(self.nTime), self.nBits, self.nNonce, repr(self.vtx))
|
|
|
|
|
|
|
|
|
2018-09-24 04:34:42 +02:00
|
|
|
class PrefilledTransaction:
|
|
|
|
__slots__ = ("index", "tx")
|
|
|
|
|
2017-10-17 04:25:15 +02:00
|
|
|
def __init__(self, index=0, tx = None):
|
|
|
|
self.index = index
|
|
|
|
self.tx = tx
|
|
|
|
|
|
|
|
def deserialize(self, f):
|
|
|
|
self.index = deser_compact_size(f)
|
|
|
|
self.tx = CTransaction()
|
|
|
|
self.tx.deserialize(f)
|
|
|
|
|
2017-12-01 01:49:01 +01:00
|
|
|
def serialize(self, with_witness=True):
|
2017-10-17 04:25:15 +02:00
|
|
|
r = b""
|
|
|
|
r += ser_compact_size(self.index)
|
|
|
|
if with_witness:
|
|
|
|
r += self.tx.serialize_with_witness()
|
|
|
|
else:
|
|
|
|
r += self.tx.serialize_without_witness()
|
|
|
|
return r
|
|
|
|
|
2017-12-01 01:49:01 +01:00
|
|
|
def serialize_without_witness(self):
|
|
|
|
return self.serialize(with_witness=False)
|
|
|
|
|
2017-10-17 04:25:15 +02:00
|
|
|
def serialize_with_witness(self):
|
|
|
|
return self.serialize(with_witness=True)
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "PrefilledTransaction(index=%d, tx=%s)" % (self.index, repr(self.tx))
|
|
|
|
|
2018-09-24 04:34:42 +02:00
|
|
|
|
2017-10-17 04:25:15 +02:00
|
|
|
# This is what we send on the wire, in a cmpctblock message.
|
2018-09-24 04:34:42 +02:00
|
|
|
class P2PHeaderAndShortIDs:
|
|
|
|
__slots__ = ("header", "nonce", "prefilled_txn", "prefilled_txn_length",
|
|
|
|
"shortids", "shortids_length")
|
|
|
|
|
2017-10-17 04:25:15 +02:00
|
|
|
def __init__(self):
|
|
|
|
self.header = CBlockHeader()
|
|
|
|
self.nonce = 0
|
|
|
|
self.shortids_length = 0
|
|
|
|
self.shortids = []
|
|
|
|
self.prefilled_txn_length = 0
|
|
|
|
self.prefilled_txn = []
|
|
|
|
|
|
|
|
def deserialize(self, f):
|
|
|
|
self.header.deserialize(f)
|
|
|
|
self.nonce = struct.unpack("<Q", f.read(8))[0]
|
|
|
|
self.shortids_length = deser_compact_size(f)
|
|
|
|
for i in range(self.shortids_length):
|
|
|
|
# shortids are defined to be 6 bytes in the spec, so append
|
|
|
|
# two zero bytes and read it in as an 8-byte number
|
|
|
|
self.shortids.append(struct.unpack("<Q", f.read(6) + b'\x00\x00')[0])
|
|
|
|
self.prefilled_txn = deser_vector(f, PrefilledTransaction)
|
|
|
|
self.prefilled_txn_length = len(self.prefilled_txn)
|
|
|
|
|
|
|
|
# When using version 2 compact blocks, we must serialize with_witness.
|
|
|
|
def serialize(self, with_witness=False):
|
|
|
|
r = b""
|
|
|
|
r += self.header.serialize()
|
|
|
|
r += struct.pack("<Q", self.nonce)
|
|
|
|
r += ser_compact_size(self.shortids_length)
|
|
|
|
for x in self.shortids:
|
|
|
|
# We only want the first 6 bytes
|
|
|
|
r += struct.pack("<Q", x)[0:6]
|
|
|
|
if with_witness:
|
|
|
|
r += ser_vector(self.prefilled_txn, "serialize_with_witness")
|
|
|
|
else:
|
2017-12-01 01:49:01 +01:00
|
|
|
r += ser_vector(self.prefilled_txn, "serialize_without_witness")
|
2017-10-17 04:25:15 +02:00
|
|
|
return r
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "P2PHeaderAndShortIDs(header=%s, nonce=%d, shortids_length=%d, shortids=%s, prefilled_txn_length=%d, prefilledtxn=%s" % (repr(self.header), self.nonce, self.shortids_length, repr(self.shortids), self.prefilled_txn_length, repr(self.prefilled_txn))
|
|
|
|
|
2018-09-24 04:34:42 +02:00
|
|
|
|
2017-10-17 04:25:15 +02:00
|
|
|
# P2P version of the above that will use witness serialization (for compact
|
|
|
|
# block version 2)
|
|
|
|
class P2PHeaderAndShortWitnessIDs(P2PHeaderAndShortIDs):
|
2018-09-24 04:34:42 +02:00
|
|
|
__slots__ = ()
|
2017-10-17 04:25:15 +02:00
|
|
|
def serialize(self):
|
|
|
|
return super(P2PHeaderAndShortWitnessIDs, self).serialize(with_witness=True)
|
|
|
|
|
|
|
|
# Calculate the BIP 152-compact blocks shortid for a given transaction hash
|
|
|
|
def calculate_shortid(k0, k1, tx_hash):
|
|
|
|
expected_shortid = siphash256(k0, k1, tx_hash)
|
|
|
|
expected_shortid &= 0x0000ffffffffffff
|
|
|
|
return expected_shortid
|
|
|
|
|
2018-09-24 04:34:42 +02:00
|
|
|
|
2017-10-17 04:25:15 +02:00
|
|
|
# This version gets rid of the array lengths, and reinterprets the differential
|
|
|
|
# encoding into indices that can be used for lookup.
|
2018-09-24 04:34:42 +02:00
|
|
|
class HeaderAndShortIDs:
|
|
|
|
__slots__ = ("header", "nonce", "prefilled_txn", "shortids", "use_witness")
|
|
|
|
|
2017-10-17 04:25:15 +02:00
|
|
|
def __init__(self, p2pheaders_and_shortids = None):
|
|
|
|
self.header = CBlockHeader()
|
|
|
|
self.nonce = 0
|
|
|
|
self.shortids = []
|
|
|
|
self.prefilled_txn = []
|
|
|
|
self.use_witness = False
|
|
|
|
|
2018-12-10 21:11:37 +01:00
|
|
|
if p2pheaders_and_shortids is not None:
|
2017-10-17 04:25:15 +02:00
|
|
|
self.header = p2pheaders_and_shortids.header
|
|
|
|
self.nonce = p2pheaders_and_shortids.nonce
|
|
|
|
self.shortids = p2pheaders_and_shortids.shortids
|
|
|
|
last_index = -1
|
|
|
|
for x in p2pheaders_and_shortids.prefilled_txn:
|
|
|
|
self.prefilled_txn.append(PrefilledTransaction(x.index + last_index + 1, x.tx))
|
|
|
|
last_index = self.prefilled_txn[-1].index
|
|
|
|
|
|
|
|
def to_p2p(self):
|
|
|
|
if self.use_witness:
|
|
|
|
ret = P2PHeaderAndShortWitnessIDs()
|
|
|
|
else:
|
|
|
|
ret = P2PHeaderAndShortIDs()
|
|
|
|
ret.header = self.header
|
|
|
|
ret.nonce = self.nonce
|
|
|
|
ret.shortids_length = len(self.shortids)
|
|
|
|
ret.shortids = self.shortids
|
|
|
|
ret.prefilled_txn_length = len(self.prefilled_txn)
|
|
|
|
ret.prefilled_txn = []
|
|
|
|
last_index = -1
|
|
|
|
for x in self.prefilled_txn:
|
|
|
|
ret.prefilled_txn.append(PrefilledTransaction(x.index - last_index - 1, x.tx))
|
|
|
|
last_index = x.index
|
|
|
|
return ret
|
|
|
|
|
|
|
|
def get_siphash_keys(self):
|
|
|
|
header_nonce = self.header.serialize()
|
|
|
|
header_nonce += struct.pack("<Q", self.nonce)
|
|
|
|
hash_header_nonce_as_str = sha256(header_nonce)
|
|
|
|
key0 = struct.unpack("<Q", hash_header_nonce_as_str[0:8])[0]
|
|
|
|
key1 = struct.unpack("<Q", hash_header_nonce_as_str[8:16])[0]
|
|
|
|
return [ key0, key1 ]
|
|
|
|
|
|
|
|
# Version 2 compact blocks use wtxid in shortids (rather than txid)
|
|
|
|
def initialize_from_block(self, block, nonce=0, prefill_list = [0], use_witness = False):
|
|
|
|
self.header = CBlockHeader(block)
|
|
|
|
self.nonce = nonce
|
|
|
|
self.prefilled_txn = [ PrefilledTransaction(i, block.vtx[i]) for i in prefill_list ]
|
|
|
|
self.shortids = []
|
|
|
|
self.use_witness = use_witness
|
|
|
|
[k0, k1] = self.get_siphash_keys()
|
|
|
|
for i in range(len(block.vtx)):
|
|
|
|
if i not in prefill_list:
|
|
|
|
tx_hash = block.vtx[i].sha256
|
|
|
|
if use_witness:
|
|
|
|
tx_hash = block.vtx[i].calc_sha256(with_witness=True)
|
|
|
|
self.shortids.append(calculate_shortid(k0, k1, tx_hash))
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "HeaderAndShortIDs(header=%s, nonce=%d, shortids=%s, prefilledtxn=%s" % (repr(self.header), self.nonce, repr(self.shortids), repr(self.prefilled_txn))
|
|
|
|
|
|
|
|
|
2018-09-24 04:34:42 +02:00
|
|
|
class BlockTransactionsRequest:
|
|
|
|
__slots__ = ("blockhash", "indexes")
|
2017-10-17 04:25:15 +02:00
|
|
|
|
|
|
|
def __init__(self, blockhash=0, indexes = None):
|
|
|
|
self.blockhash = blockhash
|
2018-12-10 21:11:37 +01:00
|
|
|
self.indexes = indexes if indexes is not None else []
|
2017-10-17 04:25:15 +02:00
|
|
|
|
|
|
|
def deserialize(self, f):
|
|
|
|
self.blockhash = deser_uint256(f)
|
|
|
|
indexes_length = deser_compact_size(f)
|
|
|
|
for i in range(indexes_length):
|
|
|
|
self.indexes.append(deser_compact_size(f))
|
|
|
|
|
|
|
|
def serialize(self):
|
|
|
|
r = b""
|
|
|
|
r += ser_uint256(self.blockhash)
|
|
|
|
r += ser_compact_size(len(self.indexes))
|
|
|
|
for x in self.indexes:
|
|
|
|
r += ser_compact_size(x)
|
|
|
|
return r
|
|
|
|
|
|
|
|
# helper to set the differentially encoded indexes from absolute ones
|
|
|
|
def from_absolute(self, absolute_indexes):
|
|
|
|
self.indexes = []
|
|
|
|
last_index = -1
|
|
|
|
for x in absolute_indexes:
|
|
|
|
self.indexes.append(x-last_index-1)
|
|
|
|
last_index = x
|
|
|
|
|
|
|
|
def to_absolute(self):
|
|
|
|
absolute_indexes = []
|
|
|
|
last_index = -1
|
|
|
|
for x in self.indexes:
|
|
|
|
absolute_indexes.append(x+last_index+1)
|
|
|
|
last_index = absolute_indexes[-1]
|
|
|
|
return absolute_indexes
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "BlockTransactionsRequest(hash=%064x indexes=%s)" % (self.blockhash, repr(self.indexes))
|
|
|
|
|
|
|
|
|
2018-09-24 04:34:42 +02:00
|
|
|
class BlockTransactions:
|
|
|
|
__slots__ = ("blockhash", "transactions")
|
2017-10-17 04:25:15 +02:00
|
|
|
|
|
|
|
def __init__(self, blockhash=0, transactions = None):
|
|
|
|
self.blockhash = blockhash
|
2018-12-10 21:11:37 +01:00
|
|
|
self.transactions = transactions if transactions is not None else []
|
2017-10-17 04:25:15 +02:00
|
|
|
|
|
|
|
def deserialize(self, f):
|
|
|
|
self.blockhash = deser_uint256(f)
|
|
|
|
self.transactions = deser_vector(f, CTransaction)
|
|
|
|
|
2017-12-01 01:49:01 +01:00
|
|
|
def serialize(self, with_witness=True):
|
2017-10-17 04:25:15 +02:00
|
|
|
r = b""
|
|
|
|
r += ser_uint256(self.blockhash)
|
|
|
|
if with_witness:
|
|
|
|
r += ser_vector(self.transactions, "serialize_with_witness")
|
|
|
|
else:
|
2017-12-01 01:49:01 +01:00
|
|
|
r += ser_vector(self.transactions, "serialize_without_witness")
|
2017-10-17 04:25:15 +02:00
|
|
|
return r
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "BlockTransactions(hash=%064x transactions=%s)" % (self.blockhash, repr(self.transactions))
|
|
|
|
|
2018-09-24 04:34:42 +02:00
|
|
|
|
|
|
|
class CPartialMerkleTree:
|
2018-09-24 22:45:58 +02:00
|
|
|
__slots__ = ("nTransactions", "vBits", "vHash")
|
2018-09-24 04:34:42 +02:00
|
|
|
|
2018-06-20 22:03:25 +02:00
|
|
|
def __init__(self):
|
|
|
|
self.nTransactions = 0
|
|
|
|
self.vHash = []
|
|
|
|
self.vBits = []
|
|
|
|
|
|
|
|
def deserialize(self, f):
|
|
|
|
self.nTransactions = struct.unpack("<i", f.read(4))[0]
|
|
|
|
self.vHash = deser_uint256_vector(f)
|
|
|
|
vBytes = deser_string(f)
|
|
|
|
self.vBits = []
|
|
|
|
for i in range(len(vBytes) * 8):
|
|
|
|
self.vBits.append(vBytes[i//8] & (1 << (i % 8)) != 0)
|
|
|
|
|
|
|
|
def serialize(self):
|
|
|
|
r = b""
|
|
|
|
r += struct.pack("<i", self.nTransactions)
|
|
|
|
r += ser_uint256_vector(self.vHash)
|
|
|
|
vBytesArray = bytearray([0x00] * ((len(self.vBits) + 7)//8))
|
|
|
|
for i in range(len(self.vBits)):
|
|
|
|
vBytesArray[i // 8] |= self.vBits[i] << (i % 8)
|
|
|
|
r += ser_string(bytes(vBytesArray))
|
|
|
|
return r
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "CPartialMerkleTree(nTransactions=%d, vHash=%s, vBits=%s)" % (self.nTransactions, repr(self.vHash), repr(self.vBits))
|
|
|
|
|
2018-09-24 04:34:42 +02:00
|
|
|
|
|
|
|
class CMerkleBlock:
|
|
|
|
__slots__ = ("header", "txn")
|
|
|
|
|
2018-06-20 22:03:25 +02:00
|
|
|
def __init__(self):
|
|
|
|
self.header = CBlockHeader()
|
|
|
|
self.txn = CPartialMerkleTree()
|
|
|
|
|
|
|
|
def deserialize(self, f):
|
|
|
|
self.header.deserialize(f)
|
|
|
|
self.txn.deserialize(f)
|
|
|
|
|
|
|
|
def serialize(self):
|
|
|
|
r = b""
|
|
|
|
r += self.header.serialize()
|
|
|
|
r += self.txn.serialize()
|
|
|
|
return r
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "CMerkleBlock(header=%s, txn=%s)" % (repr(self.header), repr(self.txn))
|
|
|
|
|
2017-10-17 04:25:15 +02:00
|
|
|
|
|
|
|
# Objects that correspond to messages on the wire
|
2018-09-24 04:34:42 +02:00
|
|
|
class msg_version:
|
|
|
|
__slots__ = ("addrFrom", "addrTo", "nNonce", "nRelay", "nServices",
|
|
|
|
"nStartingHeight", "nTime", "nVersion", "strSubVer")
|
2017-10-17 04:25:15 +02:00
|
|
|
command = b"version"
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self.nVersion = MY_VERSION
|
|
|
|
self.nServices = NODE_NETWORK | NODE_WITNESS
|
|
|
|
self.nTime = int(time.time())
|
|
|
|
self.addrTo = CAddress()
|
|
|
|
self.addrFrom = CAddress()
|
|
|
|
self.nNonce = random.getrandbits(64)
|
|
|
|
self.strSubVer = MY_SUBVERSION
|
|
|
|
self.nStartingHeight = -1
|
|
|
|
self.nRelay = MY_RELAY
|
|
|
|
|
|
|
|
def deserialize(self, f):
|
|
|
|
self.nVersion = struct.unpack("<i", f.read(4))[0]
|
|
|
|
self.nServices = struct.unpack("<Q", f.read(8))[0]
|
|
|
|
self.nTime = struct.unpack("<q", f.read(8))[0]
|
|
|
|
self.addrTo = CAddress()
|
2017-12-11 20:54:13 +01:00
|
|
|
self.addrTo.deserialize(f, False)
|
2017-10-17 04:25:15 +02:00
|
|
|
|
2018-08-23 16:10:13 +02:00
|
|
|
self.addrFrom = CAddress()
|
|
|
|
self.addrFrom.deserialize(f, False)
|
|
|
|
self.nNonce = struct.unpack("<Q", f.read(8))[0]
|
|
|
|
self.strSubVer = deser_string(f)
|
2017-10-17 04:25:15 +02:00
|
|
|
|
2018-08-23 16:10:13 +02:00
|
|
|
self.nStartingHeight = struct.unpack("<i", f.read(4))[0]
|
2017-10-17 04:25:15 +02:00
|
|
|
|
|
|
|
if self.nVersion >= 70001:
|
|
|
|
# Relay field is optional for version 70001 onwards
|
|
|
|
try:
|
|
|
|
self.nRelay = struct.unpack("<b", f.read(1))[0]
|
|
|
|
except:
|
|
|
|
self.nRelay = 0
|
|
|
|
else:
|
|
|
|
self.nRelay = 0
|
|
|
|
|
|
|
|
def serialize(self):
|
|
|
|
r = b""
|
|
|
|
r += struct.pack("<i", self.nVersion)
|
|
|
|
r += struct.pack("<Q", self.nServices)
|
|
|
|
r += struct.pack("<q", self.nTime)
|
2017-12-11 20:54:13 +01:00
|
|
|
r += self.addrTo.serialize(False)
|
|
|
|
r += self.addrFrom.serialize(False)
|
2017-10-17 04:25:15 +02:00
|
|
|
r += struct.pack("<Q", self.nNonce)
|
|
|
|
r += ser_string(self.strSubVer)
|
|
|
|
r += struct.pack("<i", self.nStartingHeight)
|
|
|
|
r += struct.pack("<b", self.nRelay)
|
|
|
|
return r
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return 'msg_version(nVersion=%i nServices=%i nTime=%s addrTo=%s addrFrom=%s nNonce=0x%016X strSubVer=%s nStartingHeight=%i nRelay=%i)' \
|
|
|
|
% (self.nVersion, self.nServices, time.ctime(self.nTime),
|
|
|
|
repr(self.addrTo), repr(self.addrFrom), self.nNonce,
|
|
|
|
self.strSubVer, self.nStartingHeight, self.nRelay)
|
|
|
|
|
|
|
|
|
2018-09-24 04:34:42 +02:00
|
|
|
class msg_verack:
|
|
|
|
__slots__ = ()
|
2017-10-17 04:25:15 +02:00
|
|
|
command = b"verack"
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def deserialize(self, f):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def serialize(self):
|
|
|
|
return b""
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "msg_verack()"
|
|
|
|
|
|
|
|
|
2018-09-24 04:34:42 +02:00
|
|
|
class msg_addr:
|
|
|
|
__slots__ = ("addrs",)
|
2017-10-17 04:25:15 +02:00
|
|
|
command = b"addr"
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self.addrs = []
|
|
|
|
|
|
|
|
def deserialize(self, f):
|
|
|
|
self.addrs = deser_vector(f, CAddress)
|
|
|
|
|
|
|
|
def serialize(self):
|
|
|
|
return ser_vector(self.addrs)
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "msg_addr(addrs=%s)" % (repr(self.addrs))
|
|
|
|
|
|
|
|
|
2018-09-24 04:34:42 +02:00
|
|
|
class msg_inv:
|
|
|
|
__slots__ = ("inv",)
|
2017-10-17 04:25:15 +02:00
|
|
|
command = b"inv"
|
|
|
|
|
|
|
|
def __init__(self, inv=None):
|
|
|
|
if inv is None:
|
|
|
|
self.inv = []
|
|
|
|
else:
|
|
|
|
self.inv = inv
|
|
|
|
|
|
|
|
def deserialize(self, f):
|
|
|
|
self.inv = deser_vector(f, CInv)
|
|
|
|
|
|
|
|
def serialize(self):
|
|
|
|
return ser_vector(self.inv)
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "msg_inv(inv=%s)" % (repr(self.inv))
|
|
|
|
|
|
|
|
|
2018-09-24 04:34:42 +02:00
|
|
|
class msg_getdata:
|
|
|
|
__slots__ = ("inv",)
|
2017-10-17 04:25:15 +02:00
|
|
|
command = b"getdata"
|
|
|
|
|
|
|
|
def __init__(self, inv=None):
|
2018-12-10 21:11:37 +01:00
|
|
|
self.inv = inv if inv is not None else []
|
2017-10-17 04:25:15 +02:00
|
|
|
|
|
|
|
def deserialize(self, f):
|
|
|
|
self.inv = deser_vector(f, CInv)
|
|
|
|
|
|
|
|
def serialize(self):
|
|
|
|
return ser_vector(self.inv)
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "msg_getdata(inv=%s)" % (repr(self.inv))
|
|
|
|
|
|
|
|
|
2018-09-24 04:34:42 +02:00
|
|
|
class msg_getblocks:
|
|
|
|
__slots__ = ("locator", "hashstop")
|
2017-10-17 04:25:15 +02:00
|
|
|
command = b"getblocks"
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self.locator = CBlockLocator()
|
|
|
|
self.hashstop = 0
|
|
|
|
|
|
|
|
def deserialize(self, f):
|
|
|
|
self.locator = CBlockLocator()
|
|
|
|
self.locator.deserialize(f)
|
|
|
|
self.hashstop = deser_uint256(f)
|
|
|
|
|
|
|
|
def serialize(self):
|
|
|
|
r = b""
|
|
|
|
r += self.locator.serialize()
|
|
|
|
r += ser_uint256(self.hashstop)
|
|
|
|
return r
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "msg_getblocks(locator=%s hashstop=%064x)" \
|
|
|
|
% (repr(self.locator), self.hashstop)
|
|
|
|
|
|
|
|
|
2018-09-24 04:34:42 +02:00
|
|
|
class msg_tx:
|
|
|
|
__slots__ = ("tx",)
|
2017-10-17 04:25:15 +02:00
|
|
|
command = b"tx"
|
|
|
|
|
|
|
|
def __init__(self, tx=CTransaction()):
|
|
|
|
self.tx = tx
|
|
|
|
|
|
|
|
def deserialize(self, f):
|
|
|
|
self.tx.deserialize(f)
|
|
|
|
|
|
|
|
def serialize(self):
|
|
|
|
return self.tx.serialize_without_witness()
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "msg_tx(tx=%s)" % (repr(self.tx))
|
|
|
|
|
2018-09-24 04:34:42 +02:00
|
|
|
|
2017-10-17 04:25:15 +02:00
|
|
|
class msg_witness_tx(msg_tx):
|
2018-09-24 04:34:42 +02:00
|
|
|
__slots__ = ()
|
2017-10-17 04:25:15 +02:00
|
|
|
|
|
|
|
def serialize(self):
|
|
|
|
return self.tx.serialize_with_witness()
|
|
|
|
|
|
|
|
|
2018-09-24 04:34:42 +02:00
|
|
|
class msg_block:
|
|
|
|
__slots__ = ("block",)
|
2017-10-17 04:25:15 +02:00
|
|
|
command = b"block"
|
|
|
|
|
|
|
|
def __init__(self, block=None):
|
|
|
|
if block is None:
|
|
|
|
self.block = CBlock()
|
|
|
|
else:
|
|
|
|
self.block = block
|
|
|
|
|
|
|
|
def deserialize(self, f):
|
|
|
|
self.block.deserialize(f)
|
|
|
|
|
|
|
|
def serialize(self):
|
tests: Make msg_block a witness block
This diff has been generated with the following script, but is better
reviewed without looking at the script.
# -BEGIN VERIFY SCRIPT-
echo "Use msg_witness_block everywhere, except for tests that require msg_block"
# This could be a separate commit, but it is combined with the
# following scripts to reduce the overall diff
sed -i -e 's/msg_block/msg_witness_block/g' ./test/functional/{feature_assumevalid,feature_cltv,feature_dersig,feature_versionbits_warning,p2p_fingerprint,p2p_sendheaders,p2p_unrequested_blocks,example_test,rpc_blockchain}.py
echo "Rename msg_block to msg_no_witness_block"
# Rename msg_block to msg_no_witness_block in all tests (not the
# framework)
sed -i -e 's/msg_block/msg_no_witness_block/g' $(git grep -l msg_block ./test/functional/*.py)
# Derive msg_no_witness_block from msg_block
# Make msg_block a witness block in messages.py
patch -p1 --fuzz 0 << EOF
diff --git a/test/functional/test_framework/messages.py b/test/functional/test_framework/messages.py
index 00190e4cbd..e454ed5987 100755
--- a/test/functional/test_framework/messages.py
+++ b/test/functional/test_framework/messages.py
@@ -1133 +1133 @@ class msg_block:
- return self.block.serialize(with_witness=False)
+ return self.block.serialize()
@@ -1155 +1155 @@ class msg_generic:
-class msg_witness_block(msg_block):
+class msg_no_witness_block(msg_block):
@@ -1158,2 +1158 @@ class msg_witness_block(msg_block):
- r = self.block.serialize()
- return r
+ return self.block.serialize(with_witness=False)
@@ -1445 +1444 @@ class msg_blocktxn:
- r += self.block_transactions.serialize(with_witness=False)
+ r += self.block_transactions.serialize()
@@ -1452 +1451 @@ class msg_blocktxn:
-class msg_witness_blocktxn(msg_blocktxn):
+class msg_no_witness_blocktxn(msg_blocktxn):
@@ -1456,3 +1455 @@ class msg_witness_blocktxn(msg_blocktxn):
- r = b""
- r += self.block_transactions.serialize()
- return r
+ return self.block_transactions.serialize(with_witness=False)
EOF
# Conclude rename of msg_block to msg_no_witness_block
sed -i -e 's/msg_witness_block/msg_block/g' $(git grep -l msg_witness_block)
# -END VERIFY SCRIPT-
2019-05-08 16:21:25 +02:00
|
|
|
return self.block.serialize()
|
2017-10-17 04:25:15 +02:00
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "msg_block(block=%s)" % (repr(self.block))
|
|
|
|
|
2018-09-24 04:34:42 +02:00
|
|
|
|
2017-10-17 04:25:15 +02:00
|
|
|
# for cases where a user needs tighter control over what is sent over the wire
|
|
|
|
# note that the user must supply the name of the command, and the data
|
2018-09-24 04:34:42 +02:00
|
|
|
class msg_generic:
|
|
|
|
__slots__ = ("command", "data")
|
|
|
|
|
2017-10-17 04:25:15 +02:00
|
|
|
def __init__(self, command, data=None):
|
|
|
|
self.command = command
|
|
|
|
self.data = data
|
|
|
|
|
|
|
|
def serialize(self):
|
|
|
|
return self.data
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "msg_generic()"
|
|
|
|
|
|
|
|
|
tests: Make msg_block a witness block
This diff has been generated with the following script, but is better
reviewed without looking at the script.
# -BEGIN VERIFY SCRIPT-
echo "Use msg_witness_block everywhere, except for tests that require msg_block"
# This could be a separate commit, but it is combined with the
# following scripts to reduce the overall diff
sed -i -e 's/msg_block/msg_witness_block/g' ./test/functional/{feature_assumevalid,feature_cltv,feature_dersig,feature_versionbits_warning,p2p_fingerprint,p2p_sendheaders,p2p_unrequested_blocks,example_test,rpc_blockchain}.py
echo "Rename msg_block to msg_no_witness_block"
# Rename msg_block to msg_no_witness_block in all tests (not the
# framework)
sed -i -e 's/msg_block/msg_no_witness_block/g' $(git grep -l msg_block ./test/functional/*.py)
# Derive msg_no_witness_block from msg_block
# Make msg_block a witness block in messages.py
patch -p1 --fuzz 0 << EOF
diff --git a/test/functional/test_framework/messages.py b/test/functional/test_framework/messages.py
index 00190e4cbd..e454ed5987 100755
--- a/test/functional/test_framework/messages.py
+++ b/test/functional/test_framework/messages.py
@@ -1133 +1133 @@ class msg_block:
- return self.block.serialize(with_witness=False)
+ return self.block.serialize()
@@ -1155 +1155 @@ class msg_generic:
-class msg_witness_block(msg_block):
+class msg_no_witness_block(msg_block):
@@ -1158,2 +1158 @@ class msg_witness_block(msg_block):
- r = self.block.serialize()
- return r
+ return self.block.serialize(with_witness=False)
@@ -1445 +1444 @@ class msg_blocktxn:
- r += self.block_transactions.serialize(with_witness=False)
+ r += self.block_transactions.serialize()
@@ -1452 +1451 @@ class msg_blocktxn:
-class msg_witness_blocktxn(msg_blocktxn):
+class msg_no_witness_blocktxn(msg_blocktxn):
@@ -1456,3 +1455 @@ class msg_witness_blocktxn(msg_blocktxn):
- r = b""
- r += self.block_transactions.serialize()
- return r
+ return self.block_transactions.serialize(with_witness=False)
EOF
# Conclude rename of msg_block to msg_no_witness_block
sed -i -e 's/msg_witness_block/msg_block/g' $(git grep -l msg_witness_block)
# -END VERIFY SCRIPT-
2019-05-08 16:21:25 +02:00
|
|
|
class msg_no_witness_block(msg_block):
|
2018-09-24 04:34:42 +02:00
|
|
|
__slots__ = ()
|
2017-10-17 04:25:15 +02:00
|
|
|
def serialize(self):
|
tests: Make msg_block a witness block
This diff has been generated with the following script, but is better
reviewed without looking at the script.
# -BEGIN VERIFY SCRIPT-
echo "Use msg_witness_block everywhere, except for tests that require msg_block"
# This could be a separate commit, but it is combined with the
# following scripts to reduce the overall diff
sed -i -e 's/msg_block/msg_witness_block/g' ./test/functional/{feature_assumevalid,feature_cltv,feature_dersig,feature_versionbits_warning,p2p_fingerprint,p2p_sendheaders,p2p_unrequested_blocks,example_test,rpc_blockchain}.py
echo "Rename msg_block to msg_no_witness_block"
# Rename msg_block to msg_no_witness_block in all tests (not the
# framework)
sed -i -e 's/msg_block/msg_no_witness_block/g' $(git grep -l msg_block ./test/functional/*.py)
# Derive msg_no_witness_block from msg_block
# Make msg_block a witness block in messages.py
patch -p1 --fuzz 0 << EOF
diff --git a/test/functional/test_framework/messages.py b/test/functional/test_framework/messages.py
index 00190e4cbd..e454ed5987 100755
--- a/test/functional/test_framework/messages.py
+++ b/test/functional/test_framework/messages.py
@@ -1133 +1133 @@ class msg_block:
- return self.block.serialize(with_witness=False)
+ return self.block.serialize()
@@ -1155 +1155 @@ class msg_generic:
-class msg_witness_block(msg_block):
+class msg_no_witness_block(msg_block):
@@ -1158,2 +1158 @@ class msg_witness_block(msg_block):
- r = self.block.serialize()
- return r
+ return self.block.serialize(with_witness=False)
@@ -1445 +1444 @@ class msg_blocktxn:
- r += self.block_transactions.serialize(with_witness=False)
+ r += self.block_transactions.serialize()
@@ -1452 +1451 @@ class msg_blocktxn:
-class msg_witness_blocktxn(msg_blocktxn):
+class msg_no_witness_blocktxn(msg_blocktxn):
@@ -1456,3 +1455 @@ class msg_witness_blocktxn(msg_blocktxn):
- r = b""
- r += self.block_transactions.serialize()
- return r
+ return self.block_transactions.serialize(with_witness=False)
EOF
# Conclude rename of msg_block to msg_no_witness_block
sed -i -e 's/msg_witness_block/msg_block/g' $(git grep -l msg_witness_block)
# -END VERIFY SCRIPT-
2019-05-08 16:21:25 +02:00
|
|
|
return self.block.serialize(with_witness=False)
|
2017-10-17 04:25:15 +02:00
|
|
|
|
2018-09-24 04:34:42 +02:00
|
|
|
|
|
|
|
class msg_getaddr:
|
|
|
|
__slots__ = ()
|
2017-10-17 04:25:15 +02:00
|
|
|
command = b"getaddr"
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def deserialize(self, f):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def serialize(self):
|
|
|
|
return b""
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "msg_getaddr()"
|
|
|
|
|
|
|
|
|
2018-09-24 04:34:42 +02:00
|
|
|
class msg_ping:
|
|
|
|
__slots__ = ("nonce",)
|
2017-10-17 04:25:15 +02:00
|
|
|
command = b"ping"
|
|
|
|
|
|
|
|
def __init__(self, nonce=0):
|
|
|
|
self.nonce = nonce
|
|
|
|
|
|
|
|
def deserialize(self, f):
|
|
|
|
self.nonce = struct.unpack("<Q", f.read(8))[0]
|
|
|
|
|
|
|
|
def serialize(self):
|
|
|
|
r = b""
|
|
|
|
r += struct.pack("<Q", self.nonce)
|
|
|
|
return r
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "msg_ping(nonce=%08x)" % self.nonce
|
|
|
|
|
|
|
|
|
2018-09-24 04:34:42 +02:00
|
|
|
class msg_pong:
|
|
|
|
__slots__ = ("nonce",)
|
2017-10-17 04:25:15 +02:00
|
|
|
command = b"pong"
|
|
|
|
|
|
|
|
def __init__(self, nonce=0):
|
|
|
|
self.nonce = nonce
|
|
|
|
|
|
|
|
def deserialize(self, f):
|
|
|
|
self.nonce = struct.unpack("<Q", f.read(8))[0]
|
|
|
|
|
|
|
|
def serialize(self):
|
|
|
|
r = b""
|
|
|
|
r += struct.pack("<Q", self.nonce)
|
|
|
|
return r
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "msg_pong(nonce=%08x)" % self.nonce
|
|
|
|
|
|
|
|
|
2018-09-24 04:34:42 +02:00
|
|
|
class msg_mempool:
|
|
|
|
__slots__ = ()
|
2017-10-17 04:25:15 +02:00
|
|
|
command = b"mempool"
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def deserialize(self, f):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def serialize(self):
|
|
|
|
return b""
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "msg_mempool()"
|
|
|
|
|
2018-09-24 04:34:42 +02:00
|
|
|
|
2018-09-16 02:01:20 +02:00
|
|
|
class msg_notfound:
|
|
|
|
__slots__ = ("vec", )
|
|
|
|
command = b"notfound"
|
|
|
|
|
|
|
|
def __init__(self, vec=None):
|
|
|
|
self.vec = vec or []
|
|
|
|
|
|
|
|
def deserialize(self, f):
|
|
|
|
self.vec = deser_vector(f, CInv)
|
|
|
|
|
|
|
|
def serialize(self):
|
|
|
|
return ser_vector(self.vec)
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "msg_notfound(vec=%s)" % (repr(self.vec))
|
|
|
|
|
|
|
|
|
2018-09-24 04:34:42 +02:00
|
|
|
class msg_sendheaders:
|
|
|
|
__slots__ = ()
|
2017-10-17 04:25:15 +02:00
|
|
|
command = b"sendheaders"
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def deserialize(self, f):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def serialize(self):
|
|
|
|
return b""
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "msg_sendheaders()"
|
|
|
|
|
|
|
|
|
|
|
|
# getheaders message has
|
|
|
|
# number of entries
|
|
|
|
# vector of hashes
|
|
|
|
# hash_stop (hash of last desired block header, 0 to get as many as possible)
|
2018-09-24 04:34:42 +02:00
|
|
|
class msg_getheaders:
|
|
|
|
__slots__ = ("hashstop", "locator",)
|
2017-10-17 04:25:15 +02:00
|
|
|
command = b"getheaders"
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self.locator = CBlockLocator()
|
|
|
|
self.hashstop = 0
|
|
|
|
|
|
|
|
def deserialize(self, f):
|
|
|
|
self.locator = CBlockLocator()
|
|
|
|
self.locator.deserialize(f)
|
|
|
|
self.hashstop = deser_uint256(f)
|
|
|
|
|
|
|
|
def serialize(self):
|
|
|
|
r = b""
|
|
|
|
r += self.locator.serialize()
|
|
|
|
r += ser_uint256(self.hashstop)
|
|
|
|
return r
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "msg_getheaders(locator=%s, stop=%064x)" \
|
|
|
|
% (repr(self.locator), self.hashstop)
|
|
|
|
|
|
|
|
|
|
|
|
# headers message has
|
|
|
|
# <count> <vector of block headers>
|
2018-09-24 04:34:42 +02:00
|
|
|
class msg_headers:
|
|
|
|
__slots__ = ("headers",)
|
2017-10-17 04:25:15 +02:00
|
|
|
command = b"headers"
|
|
|
|
|
|
|
|
def __init__(self, headers=None):
|
|
|
|
self.headers = headers if headers is not None else []
|
|
|
|
|
|
|
|
def deserialize(self, f):
|
|
|
|
# comment in bitcoind indicates these should be deserialized as blocks
|
|
|
|
blocks = deser_vector(f, CBlock)
|
|
|
|
for x in blocks:
|
|
|
|
self.headers.append(CBlockHeader(x))
|
|
|
|
|
|
|
|
def serialize(self):
|
|
|
|
blocks = [CBlock(x) for x in self.headers]
|
|
|
|
return ser_vector(blocks)
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "msg_headers(headers=%s)" % repr(self.headers)
|
|
|
|
|
|
|
|
|
2018-09-24 04:34:42 +02:00
|
|
|
class msg_reject:
|
|
|
|
__slots__ = ("code", "data", "message", "reason")
|
2017-10-17 04:25:15 +02:00
|
|
|
command = b"reject"
|
|
|
|
REJECT_MALFORMED = 1
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self.message = b""
|
|
|
|
self.code = 0
|
|
|
|
self.reason = b""
|
|
|
|
self.data = 0
|
|
|
|
|
|
|
|
def deserialize(self, f):
|
|
|
|
self.message = deser_string(f)
|
|
|
|
self.code = struct.unpack("<B", f.read(1))[0]
|
|
|
|
self.reason = deser_string(f)
|
|
|
|
if (self.code != self.REJECT_MALFORMED and
|
|
|
|
(self.message == b"block" or self.message == b"tx")):
|
|
|
|
self.data = deser_uint256(f)
|
|
|
|
|
|
|
|
def serialize(self):
|
|
|
|
r = ser_string(self.message)
|
|
|
|
r += struct.pack("<B", self.code)
|
|
|
|
r += ser_string(self.reason)
|
|
|
|
if (self.code != self.REJECT_MALFORMED and
|
|
|
|
(self.message == b"block" or self.message == b"tx")):
|
|
|
|
r += ser_uint256(self.data)
|
|
|
|
return r
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "msg_reject: %s %d %s [%064x]" \
|
|
|
|
% (self.message, self.code, self.reason, self.data)
|
|
|
|
|
2018-09-24 04:34:42 +02:00
|
|
|
|
|
|
|
class msg_feefilter:
|
|
|
|
__slots__ = ("feerate",)
|
2017-10-17 04:25:15 +02:00
|
|
|
command = b"feefilter"
|
|
|
|
|
|
|
|
def __init__(self, feerate=0):
|
|
|
|
self.feerate = feerate
|
|
|
|
|
|
|
|
def deserialize(self, f):
|
|
|
|
self.feerate = struct.unpack("<Q", f.read(8))[0]
|
|
|
|
|
|
|
|
def serialize(self):
|
|
|
|
r = b""
|
|
|
|
r += struct.pack("<Q", self.feerate)
|
|
|
|
return r
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "msg_feefilter(feerate=%08x)" % self.feerate
|
|
|
|
|
2018-09-24 04:34:42 +02:00
|
|
|
|
|
|
|
class msg_sendcmpct:
|
|
|
|
__slots__ = ("announce", "version")
|
2017-10-17 04:25:15 +02:00
|
|
|
command = b"sendcmpct"
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self.announce = False
|
|
|
|
self.version = 1
|
|
|
|
|
|
|
|
def deserialize(self, f):
|
|
|
|
self.announce = struct.unpack("<?", f.read(1))[0]
|
|
|
|
self.version = struct.unpack("<Q", f.read(8))[0]
|
|
|
|
|
|
|
|
def serialize(self):
|
|
|
|
r = b""
|
|
|
|
r += struct.pack("<?", self.announce)
|
|
|
|
r += struct.pack("<Q", self.version)
|
|
|
|
return r
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "msg_sendcmpct(announce=%s, version=%lu)" % (self.announce, self.version)
|
|
|
|
|
2018-09-24 04:34:42 +02:00
|
|
|
|
|
|
|
class msg_cmpctblock:
|
|
|
|
__slots__ = ("header_and_shortids",)
|
2017-10-17 04:25:15 +02:00
|
|
|
command = b"cmpctblock"
|
|
|
|
|
|
|
|
def __init__(self, header_and_shortids = None):
|
|
|
|
self.header_and_shortids = header_and_shortids
|
|
|
|
|
|
|
|
def deserialize(self, f):
|
|
|
|
self.header_and_shortids = P2PHeaderAndShortIDs()
|
|
|
|
self.header_and_shortids.deserialize(f)
|
|
|
|
|
|
|
|
def serialize(self):
|
|
|
|
r = b""
|
|
|
|
r += self.header_and_shortids.serialize()
|
|
|
|
return r
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "msg_cmpctblock(HeaderAndShortIDs=%s)" % repr(self.header_and_shortids)
|
|
|
|
|
2018-09-24 04:34:42 +02:00
|
|
|
|
|
|
|
class msg_getblocktxn:
|
|
|
|
__slots__ = ("block_txn_request",)
|
2017-10-17 04:25:15 +02:00
|
|
|
command = b"getblocktxn"
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self.block_txn_request = None
|
|
|
|
|
|
|
|
def deserialize(self, f):
|
|
|
|
self.block_txn_request = BlockTransactionsRequest()
|
|
|
|
self.block_txn_request.deserialize(f)
|
|
|
|
|
|
|
|
def serialize(self):
|
|
|
|
r = b""
|
|
|
|
r += self.block_txn_request.serialize()
|
|
|
|
return r
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "msg_getblocktxn(block_txn_request=%s)" % (repr(self.block_txn_request))
|
|
|
|
|
2018-09-24 04:34:42 +02:00
|
|
|
|
|
|
|
class msg_blocktxn:
|
|
|
|
__slots__ = ("block_transactions",)
|
2017-10-17 04:25:15 +02:00
|
|
|
command = b"blocktxn"
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self.block_transactions = BlockTransactions()
|
|
|
|
|
|
|
|
def deserialize(self, f):
|
|
|
|
self.block_transactions.deserialize(f)
|
|
|
|
|
|
|
|
def serialize(self):
|
|
|
|
r = b""
|
tests: Make msg_block a witness block
This diff has been generated with the following script, but is better
reviewed without looking at the script.
# -BEGIN VERIFY SCRIPT-
echo "Use msg_witness_block everywhere, except for tests that require msg_block"
# This could be a separate commit, but it is combined with the
# following scripts to reduce the overall diff
sed -i -e 's/msg_block/msg_witness_block/g' ./test/functional/{feature_assumevalid,feature_cltv,feature_dersig,feature_versionbits_warning,p2p_fingerprint,p2p_sendheaders,p2p_unrequested_blocks,example_test,rpc_blockchain}.py
echo "Rename msg_block to msg_no_witness_block"
# Rename msg_block to msg_no_witness_block in all tests (not the
# framework)
sed -i -e 's/msg_block/msg_no_witness_block/g' $(git grep -l msg_block ./test/functional/*.py)
# Derive msg_no_witness_block from msg_block
# Make msg_block a witness block in messages.py
patch -p1 --fuzz 0 << EOF
diff --git a/test/functional/test_framework/messages.py b/test/functional/test_framework/messages.py
index 00190e4cbd..e454ed5987 100755
--- a/test/functional/test_framework/messages.py
+++ b/test/functional/test_framework/messages.py
@@ -1133 +1133 @@ class msg_block:
- return self.block.serialize(with_witness=False)
+ return self.block.serialize()
@@ -1155 +1155 @@ class msg_generic:
-class msg_witness_block(msg_block):
+class msg_no_witness_block(msg_block):
@@ -1158,2 +1158 @@ class msg_witness_block(msg_block):
- r = self.block.serialize()
- return r
+ return self.block.serialize(with_witness=False)
@@ -1445 +1444 @@ class msg_blocktxn:
- r += self.block_transactions.serialize(with_witness=False)
+ r += self.block_transactions.serialize()
@@ -1452 +1451 @@ class msg_blocktxn:
-class msg_witness_blocktxn(msg_blocktxn):
+class msg_no_witness_blocktxn(msg_blocktxn):
@@ -1456,3 +1455 @@ class msg_witness_blocktxn(msg_blocktxn):
- r = b""
- r += self.block_transactions.serialize()
- return r
+ return self.block_transactions.serialize(with_witness=False)
EOF
# Conclude rename of msg_block to msg_no_witness_block
sed -i -e 's/msg_witness_block/msg_block/g' $(git grep -l msg_witness_block)
# -END VERIFY SCRIPT-
2019-05-08 16:21:25 +02:00
|
|
|
r += self.block_transactions.serialize()
|
2017-10-17 04:25:15 +02:00
|
|
|
return r
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "msg_blocktxn(block_transactions=%s)" % (repr(self.block_transactions))
|
|
|
|
|
2018-09-24 04:34:42 +02:00
|
|
|
|
tests: Make msg_block a witness block
This diff has been generated with the following script, but is better
reviewed without looking at the script.
# -BEGIN VERIFY SCRIPT-
echo "Use msg_witness_block everywhere, except for tests that require msg_block"
# This could be a separate commit, but it is combined with the
# following scripts to reduce the overall diff
sed -i -e 's/msg_block/msg_witness_block/g' ./test/functional/{feature_assumevalid,feature_cltv,feature_dersig,feature_versionbits_warning,p2p_fingerprint,p2p_sendheaders,p2p_unrequested_blocks,example_test,rpc_blockchain}.py
echo "Rename msg_block to msg_no_witness_block"
# Rename msg_block to msg_no_witness_block in all tests (not the
# framework)
sed -i -e 's/msg_block/msg_no_witness_block/g' $(git grep -l msg_block ./test/functional/*.py)
# Derive msg_no_witness_block from msg_block
# Make msg_block a witness block in messages.py
patch -p1 --fuzz 0 << EOF
diff --git a/test/functional/test_framework/messages.py b/test/functional/test_framework/messages.py
index 00190e4cbd..e454ed5987 100755
--- a/test/functional/test_framework/messages.py
+++ b/test/functional/test_framework/messages.py
@@ -1133 +1133 @@ class msg_block:
- return self.block.serialize(with_witness=False)
+ return self.block.serialize()
@@ -1155 +1155 @@ class msg_generic:
-class msg_witness_block(msg_block):
+class msg_no_witness_block(msg_block):
@@ -1158,2 +1158 @@ class msg_witness_block(msg_block):
- r = self.block.serialize()
- return r
+ return self.block.serialize(with_witness=False)
@@ -1445 +1444 @@ class msg_blocktxn:
- r += self.block_transactions.serialize(with_witness=False)
+ r += self.block_transactions.serialize()
@@ -1452 +1451 @@ class msg_blocktxn:
-class msg_witness_blocktxn(msg_blocktxn):
+class msg_no_witness_blocktxn(msg_blocktxn):
@@ -1456,3 +1455 @@ class msg_witness_blocktxn(msg_blocktxn):
- r = b""
- r += self.block_transactions.serialize()
- return r
+ return self.block_transactions.serialize(with_witness=False)
EOF
# Conclude rename of msg_block to msg_no_witness_block
sed -i -e 's/msg_witness_block/msg_block/g' $(git grep -l msg_witness_block)
# -END VERIFY SCRIPT-
2019-05-08 16:21:25 +02:00
|
|
|
class msg_no_witness_blocktxn(msg_blocktxn):
|
2018-09-24 04:34:42 +02:00
|
|
|
__slots__ = ()
|
|
|
|
|
2017-10-17 04:25:15 +02:00
|
|
|
def serialize(self):
|
tests: Make msg_block a witness block
This diff has been generated with the following script, but is better
reviewed without looking at the script.
# -BEGIN VERIFY SCRIPT-
echo "Use msg_witness_block everywhere, except for tests that require msg_block"
# This could be a separate commit, but it is combined with the
# following scripts to reduce the overall diff
sed -i -e 's/msg_block/msg_witness_block/g' ./test/functional/{feature_assumevalid,feature_cltv,feature_dersig,feature_versionbits_warning,p2p_fingerprint,p2p_sendheaders,p2p_unrequested_blocks,example_test,rpc_blockchain}.py
echo "Rename msg_block to msg_no_witness_block"
# Rename msg_block to msg_no_witness_block in all tests (not the
# framework)
sed -i -e 's/msg_block/msg_no_witness_block/g' $(git grep -l msg_block ./test/functional/*.py)
# Derive msg_no_witness_block from msg_block
# Make msg_block a witness block in messages.py
patch -p1 --fuzz 0 << EOF
diff --git a/test/functional/test_framework/messages.py b/test/functional/test_framework/messages.py
index 00190e4cbd..e454ed5987 100755
--- a/test/functional/test_framework/messages.py
+++ b/test/functional/test_framework/messages.py
@@ -1133 +1133 @@ class msg_block:
- return self.block.serialize(with_witness=False)
+ return self.block.serialize()
@@ -1155 +1155 @@ class msg_generic:
-class msg_witness_block(msg_block):
+class msg_no_witness_block(msg_block):
@@ -1158,2 +1158 @@ class msg_witness_block(msg_block):
- r = self.block.serialize()
- return r
+ return self.block.serialize(with_witness=False)
@@ -1445 +1444 @@ class msg_blocktxn:
- r += self.block_transactions.serialize(with_witness=False)
+ r += self.block_transactions.serialize()
@@ -1452 +1451 @@ class msg_blocktxn:
-class msg_witness_blocktxn(msg_blocktxn):
+class msg_no_witness_blocktxn(msg_blocktxn):
@@ -1456,3 +1455 @@ class msg_witness_blocktxn(msg_blocktxn):
- r = b""
- r += self.block_transactions.serialize()
- return r
+ return self.block_transactions.serialize(with_witness=False)
EOF
# Conclude rename of msg_block to msg_no_witness_block
sed -i -e 's/msg_witness_block/msg_block/g' $(git grep -l msg_witness_block)
# -END VERIFY SCRIPT-
2019-05-08 16:21:25 +02:00
|
|
|
return self.block_transactions.serialize(with_witness=False)
|