Skip to content

Commit 3203a08

Browse files
committed
Merge pull request #5881
5d34e16 Add txn_clone.py test (Tom Harding) defd2d5 Better txn_doublespend.py test (Tom Harding) b2b3619 Implement CTransaction::IsEquivalentTo(...) (Tom Harding)
2 parents 987efae + 5d34e16 commit 3203a08

File tree

6 files changed

+234
-27
lines changed

6 files changed

+234
-27
lines changed

qa/pull-tester/rpc-tests.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ testScripts=(
2121
'mempool_resurrect_test.py'
2222
'txn_doublespend.py'
2323
'txn_doublespend.py --mineblock'
24+
'txn_clone.py'
25+
'txn_clone.py --mineblock'
2426
'getchaintips.py'
2527
'rawtransactions.py'
2628
'rest.py'

qa/rpc-tests/txn_clone.py

Lines changed: 167 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,167 @@
1+
#!/usr/bin/env python2
2+
# Copyright (c) 2014 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+
#
7+
# Test proper accounting with an equivalent malleability clone
8+
#
9+
10+
from test_framework import BitcoinTestFramework
11+
from bitcoinrpc.authproxy import AuthServiceProxy, JSONRPCException
12+
from decimal import Decimal
13+
from util import *
14+
import os
15+
import shutil
16+
17+
class TxnMallTest(BitcoinTestFramework):
18+
19+
def add_options(self, parser):
20+
parser.add_option("--mineblock", dest="mine_block", default=False, action="store_true",
21+
help="Test double-spend of 1-confirmed transaction")
22+
23+
def setup_network(self):
24+
# Start with split network:
25+
return super(TxnMallTest, self).setup_network(True)
26+
27+
def run_test(self):
28+
# All nodes should start with 1,250 BTC:
29+
starting_balance = 1250
30+
for i in range(4):
31+
assert_equal(self.nodes[i].getbalance(), starting_balance)
32+
self.nodes[i].getnewaddress("") # bug workaround, coins generated assigned to first getnewaddress!
33+
34+
# Assign coins to foo and bar accounts:
35+
self.nodes[0].settxfee(.001)
36+
37+
node0_address_foo = self.nodes[0].getnewaddress("foo")
38+
fund_foo_txid = self.nodes[0].sendfrom("", node0_address_foo, 1219)
39+
fund_foo_tx = self.nodes[0].gettransaction(fund_foo_txid)
40+
41+
node0_address_bar = self.nodes[0].getnewaddress("bar")
42+
fund_bar_txid = self.nodes[0].sendfrom("", node0_address_bar, 29)
43+
fund_bar_tx = self.nodes[0].gettransaction(fund_bar_txid)
44+
45+
assert_equal(self.nodes[0].getbalance(""),
46+
starting_balance - 1219 - 29 + fund_foo_tx["fee"] + fund_bar_tx["fee"])
47+
48+
# Coins are sent to node1_address
49+
node1_address = self.nodes[1].getnewaddress("from0")
50+
51+
# Send tx1, and another transaction tx2 that won't be cloned
52+
txid1 = self.nodes[0].sendfrom("foo", node1_address, 40, 0)
53+
txid2 = self.nodes[0].sendfrom("bar", node1_address, 20, 0)
54+
55+
# Construct a clone of tx1, to be malleated
56+
rawtx1 = self.nodes[0].getrawtransaction(txid1,1)
57+
clone_inputs = [{"txid":rawtx1["vin"][0]["txid"],"vout":rawtx1["vin"][0]["vout"]}]
58+
clone_outputs = {rawtx1["vout"][0]["scriptPubKey"]["addresses"][0]:rawtx1["vout"][0]["value"],
59+
rawtx1["vout"][1]["scriptPubKey"]["addresses"][0]:rawtx1["vout"][1]["value"]}
60+
clone_raw = self.nodes[0].createrawtransaction(clone_inputs, clone_outputs)
61+
62+
# 3 hex manipulations on the clone are required
63+
64+
# manipulation 1. sequence is at version+#inputs+input+sigstub
65+
posseq = 2*(4+1+36+1)
66+
seqbe = '%08x' % rawtx1["vin"][0]["sequence"]
67+
clone_raw = clone_raw[:posseq] + seqbe[6:8] + seqbe[4:6] + seqbe[2:4] + seqbe[0:2] + clone_raw[posseq + 8:]
68+
69+
# manipulation 2. createrawtransaction randomizes the order of its outputs, so swap them if necessary.
70+
# output 0 is at version+#inputs+input+sigstub+sequence+#outputs
71+
# 40 BTC serialized is 00286bee00000000
72+
pos0 = 2*(4+1+36+1+4+1)
73+
hex40 = "00286bee00000000"
74+
output_len = 16 + 2 + 2 * int("0x" + clone_raw[pos0 + 16 : pos0 + 16 + 2], 0)
75+
if (rawtx1["vout"][0]["value"] == 40 and clone_raw[pos0 : pos0 + 16] != hex40 or
76+
rawtx1["vout"][0]["value"] != 40 and clone_raw[pos0 : pos0 + 16] == hex40):
77+
output0 = clone_raw[pos0 : pos0 + output_len]
78+
output1 = clone_raw[pos0 + output_len : pos0 + 2 * output_len]
79+
clone_raw = clone_raw[:pos0] + output1 + output0 + clone_raw[pos0 + 2 * output_len:]
80+
81+
# manipulation 3. locktime is after outputs
82+
poslt = pos0 + 2 * output_len
83+
ltbe = '%08x' % rawtx1["locktime"]
84+
clone_raw = clone_raw[:poslt] + ltbe[6:8] + ltbe[4:6] + ltbe[2:4] + ltbe[0:2] + clone_raw[poslt + 8:]
85+
86+
# Use a different signature hash type to sign. This creates an equivalent but malleated clone.
87+
# Don't send the clone anywhere yet
88+
tx1_clone = self.nodes[0].signrawtransaction(clone_raw, None, None, "ALL|ANYONECANPAY")
89+
assert_equal(tx1_clone["complete"], True)
90+
91+
# Have node0 mine a block, if requested:
92+
if (self.options.mine_block):
93+
self.nodes[0].generate(1)
94+
sync_blocks(self.nodes[0:2])
95+
96+
tx1 = self.nodes[0].gettransaction(txid1)
97+
tx2 = self.nodes[0].gettransaction(txid2)
98+
99+
# Node0's balance should be starting balance, plus 50BTC for another
100+
# matured block, minus tx1 and tx2 amounts, and minus transaction fees:
101+
expected = starting_balance + fund_foo_tx["fee"] + fund_bar_tx["fee"]
102+
if self.options.mine_block: expected += 50
103+
expected += tx1["amount"] + tx1["fee"]
104+
expected += tx2["amount"] + tx2["fee"]
105+
assert_equal(self.nodes[0].getbalance(), expected)
106+
107+
# foo and bar accounts should be debited:
108+
assert_equal(self.nodes[0].getbalance("foo", 0), 1219 + tx1["amount"] + tx1["fee"])
109+
assert_equal(self.nodes[0].getbalance("bar", 0), 29 + tx2["amount"] + tx2["fee"])
110+
111+
if self.options.mine_block:
112+
assert_equal(tx1["confirmations"], 1)
113+
assert_equal(tx2["confirmations"], 1)
114+
# Node1's "from0" balance should be both transaction amounts:
115+
assert_equal(self.nodes[1].getbalance("from0"), -(tx1["amount"] + tx2["amount"]))
116+
else:
117+
assert_equal(tx1["confirmations"], 0)
118+
assert_equal(tx2["confirmations"], 0)
119+
120+
# Send clone and its parent to miner
121+
self.nodes[2].sendrawtransaction(fund_foo_tx["hex"])
122+
txid1_clone = self.nodes[2].sendrawtransaction(tx1_clone["hex"])
123+
# ... mine a block...
124+
self.nodes[2].generate(1)
125+
126+
# Reconnect the split network, and sync chain:
127+
connect_nodes(self.nodes[1], 2)
128+
self.nodes[2].generate(1) # Mine another block to make sure we sync
129+
sync_blocks(self.nodes)
130+
131+
# Re-fetch transaction info:
132+
tx1 = self.nodes[0].gettransaction(txid1)
133+
tx1_clone = self.nodes[0].gettransaction(txid1_clone)
134+
tx2 = self.nodes[0].gettransaction(txid2)
135+
136+
# Verify expected confirmations
137+
assert_equal(tx1["confirmations"], -1)
138+
assert_equal(tx1_clone["confirmations"], 2)
139+
assert_equal(tx2["confirmations"], 0)
140+
141+
# Check node0's total balance; should be same as before the clone, + 100 BTC for 2 matured,
142+
# less possible orphaned matured subsidy
143+
expected += 100
144+
if (self.options.mine_block):
145+
expected -= 50
146+
assert_equal(self.nodes[0].getbalance(), expected)
147+
assert_equal(self.nodes[0].getbalance("*", 0), expected)
148+
149+
# Check node0's individual account balances.
150+
# "foo" should have been debited by the equivalent clone of tx1
151+
assert_equal(self.nodes[0].getbalance("foo"), 1219 + tx1["amount"] + tx1["fee"])
152+
# "bar" should have been debited by (possibly unconfirmed) tx2
153+
assert_equal(self.nodes[0].getbalance("bar", 0), 29 + tx2["amount"] + tx2["fee"])
154+
# "" should have starting balance, less funding txes, plus subsidies
155+
assert_equal(self.nodes[0].getbalance("", 0), starting_balance
156+
- 1219
157+
+ fund_foo_tx["fee"]
158+
- 29
159+
+ fund_bar_tx["fee"]
160+
+ 100)
161+
162+
# Node1's "from0" account balance
163+
assert_equal(self.nodes[1].getbalance("from0", 0), -(tx1["amount"] + tx2["amount"]))
164+
165+
if __name__ == '__main__':
166+
TxnMallTest().main()
167+

qa/rpc-tests/txn_doublespend.py

Lines changed: 52 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
55

66
#
7-
# Test proper accounting with malleable transactions
7+
# Test proper accounting with a double-spend conflict
88
#
99

1010
from test_framework.test_framework import BitcoinTestFramework
@@ -31,28 +31,40 @@ def run_test(self):
3131
self.nodes[i].getnewaddress("") # bug workaround, coins generated assigned to first getnewaddress!
3232

3333
# Assign coins to foo and bar accounts:
34-
self.nodes[0].move("", "foo", 1220)
35-
self.nodes[0].move("", "bar", 30)
36-
assert_equal(self.nodes[0].getbalance(""), 0)
34+
node0_address_foo = self.nodes[0].getnewaddress("foo")
35+
fund_foo_txid = self.nodes[0].sendfrom("", node0_address_foo, 1219)
36+
fund_foo_tx = self.nodes[0].gettransaction(fund_foo_txid)
37+
38+
node0_address_bar = self.nodes[0].getnewaddress("bar")
39+
fund_bar_txid = self.nodes[0].sendfrom("", node0_address_bar, 29)
40+
fund_bar_tx = self.nodes[0].gettransaction(fund_bar_txid)
41+
42+
assert_equal(self.nodes[0].getbalance(""),
43+
starting_balance - 1219 - 29 + fund_foo_tx["fee"] + fund_bar_tx["fee"])
3744

3845
# Coins are sent to node1_address
3946
node1_address = self.nodes[1].getnewaddress("from0")
4047

41-
# First: use raw transaction API to send 1210 BTC to node1_address,
48+
# First: use raw transaction API to send 1240 BTC to node1_address,
4249
# but don't broadcast:
43-
(total_in, inputs) = gather_inputs(self.nodes[0], 1210)
44-
change_address = self.nodes[0].getnewaddress("foo")
50+
doublespend_fee = Decimal('-.02')
51+
rawtx_input_0 = {}
52+
rawtx_input_0["txid"] = fund_foo_txid
53+
rawtx_input_0["vout"] = find_output(self.nodes[0], fund_foo_txid, 1219)
54+
rawtx_input_1 = {}
55+
rawtx_input_1["txid"] = fund_bar_txid
56+
rawtx_input_1["vout"] = find_output(self.nodes[0], fund_bar_txid, 29)
57+
inputs = [rawtx_input_0, rawtx_input_1]
58+
change_address = self.nodes[0].getnewaddress()
4559
outputs = {}
46-
outputs[change_address] = 40
47-
outputs[node1_address] = 1210
60+
outputs[node1_address] = 1240
61+
outputs[change_address] = 1248 - 1240 + doublespend_fee
4862
rawtx = self.nodes[0].createrawtransaction(inputs, outputs)
4963
doublespend = self.nodes[0].signrawtransaction(rawtx)
5064
assert_equal(doublespend["complete"], True)
5165

52-
# Create two transaction from node[0] to node[1]; the
53-
# second must spend change from the first because the first
54-
# spends all mature inputs:
55-
txid1 = self.nodes[0].sendfrom("foo", node1_address, 1210, 0)
66+
# Create two spends using 1 50 BTC coin each
67+
txid1 = self.nodes[0].sendfrom("foo", node1_address, 40, 0)
5668
txid2 = self.nodes[0].sendfrom("bar", node1_address, 20, 0)
5769

5870
# Have node0 mine a block:
@@ -64,16 +76,16 @@ def run_test(self):
6476
tx2 = self.nodes[0].gettransaction(txid2)
6577

6678
# Node0's balance should be starting balance, plus 50BTC for another
67-
# matured block, minus 1210, minus 20, and minus transaction fees:
68-
expected = starting_balance
79+
# matured block, minus 40, minus 20, and minus transaction fees:
80+
expected = starting_balance + fund_foo_tx["fee"] + fund_bar_tx["fee"]
6981
if self.options.mine_block: expected += 50
7082
expected += tx1["amount"] + tx1["fee"]
7183
expected += tx2["amount"] + tx2["fee"]
7284
assert_equal(self.nodes[0].getbalance(), expected)
7385

7486
# foo and bar accounts should be debited:
75-
assert_equal(self.nodes[0].getbalance("foo"), 1220+tx1["amount"]+tx1["fee"])
76-
assert_equal(self.nodes[0].getbalance("bar"), 30+tx2["amount"]+tx2["fee"])
87+
assert_equal(self.nodes[0].getbalance("foo", 0), 1219+tx1["amount"]+tx1["fee"])
88+
assert_equal(self.nodes[0].getbalance("bar", 0), 29+tx2["amount"]+tx2["fee"])
7789

7890
if self.options.mine_block:
7991
assert_equal(tx1["confirmations"], 1)
@@ -84,8 +96,10 @@ def run_test(self):
8496
assert_equal(tx1["confirmations"], 0)
8597
assert_equal(tx2["confirmations"], 0)
8698

87-
# Now give doublespend to miner:
88-
mutated_txid = self.nodes[2].sendrawtransaction(doublespend["hex"])
99+
# Now give doublespend and its parents to miner:
100+
self.nodes[2].sendrawtransaction(fund_foo_tx["hex"])
101+
self.nodes[2].sendrawtransaction(fund_bar_tx["hex"])
102+
self.nodes[2].sendrawtransaction(doublespend["hex"])
89103
# ... mine a block...
90104
self.nodes[2].generate(1)
91105

@@ -103,17 +117,28 @@ def run_test(self):
103117
assert_equal(tx2["confirmations"], -1)
104118

105119
# Node0's total balance should be starting balance, plus 100BTC for
106-
# two more matured blocks, minus 1210 for the double-spend:
107-
expected = starting_balance + 100 - 1210
120+
# two more matured blocks, minus 1240 for the double-spend, plus fees (which are
121+
# negative):
122+
expected = starting_balance + 100 - 1240 + fund_foo_tx["fee"] + fund_bar_tx["fee"] + doublespend_fee
108123
assert_equal(self.nodes[0].getbalance(), expected)
109124
assert_equal(self.nodes[0].getbalance("*"), expected)
110125

111-
# foo account should be debited, but bar account should not:
112-
assert_equal(self.nodes[0].getbalance("foo"), 1220-1210)
113-
assert_equal(self.nodes[0].getbalance("bar"), 30)
114-
115-
# Node1's "from" account balance should be just the mutated send:
116-
assert_equal(self.nodes[1].getbalance("from0"), 1210)
126+
# Final "" balance is starting_balance - amount moved to accounts - doublespend + subsidies +
127+
# fees (which are negative)
128+
assert_equal(self.nodes[0].getbalance("foo"), 1219)
129+
assert_equal(self.nodes[0].getbalance("bar"), 29)
130+
assert_equal(self.nodes[0].getbalance(""), starting_balance
131+
-1219
132+
- 29
133+
-1240
134+
+ 100
135+
+ fund_foo_tx["fee"]
136+
+ fund_bar_tx["fee"]
137+
+ doublespend_fee)
138+
139+
# Node1's "from0" account balance should be just the doublespend:
140+
assert_equal(self.nodes[1].getbalance("from0"), 1240)
117141

118142
if __name__ == '__main__':
119143
TxnMallTest().main()
144+

src/primitives/transaction.cpp

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,15 @@ CTransaction& CTransaction::operator=(const CTransaction &tx) {
8787
return *this;
8888
}
8989

90+
bool CTransaction::IsEquivalentTo(const CTransaction& tx) const
91+
{
92+
CMutableTransaction tx1 = *this;
93+
CMutableTransaction tx2 = tx;
94+
for (unsigned int i = 0; i < tx1.vin.size(); i++) tx1.vin[i].scriptSig = CScript();
95+
for (unsigned int i = 0; i < tx2.vin.size(); i++) tx2.vin[i].scriptSig = CScript();
96+
return CTransaction(tx1) == CTransaction(tx2);
97+
}
98+
9099
CAmount CTransaction::GetValueOut() const
91100
{
92101
CAmount nValueOut = 0;

src/primitives/transaction.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,9 @@ class CTransaction
222222
return hash;
223223
}
224224

225+
// True if only scriptSigs are different
226+
bool IsEquivalentTo(const CTransaction& tx) const;
227+
225228
// Return sum of txouts.
226229
CAmount GetValueOut() const;
227230
// GetValueIn() is a method on CCoinsViewCache, because

src/wallet/wallet.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -419,6 +419,7 @@ void CWallet::SyncMetaData(pair<TxSpends::iterator, TxSpends::iterator> range)
419419
const uint256& hash = it->second;
420420
CWalletTx* copyTo = &mapWallet[hash];
421421
if (copyFrom == copyTo) continue;
422+
if (!copyFrom->IsEquivalentTo(*copyTo)) continue;
422423
copyTo->mapValue = copyFrom->mapValue;
423424
copyTo->vOrderForm = copyFrom->vOrderForm;
424425
// fTimeReceivedIsTxTime not copied on purpose

0 commit comments

Comments
 (0)