|
| 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 | + |
0 commit comments