2014-04-29 12:26:51 +00:00
|
|
|
/*
|
|
|
|
* This file is part of the TREZOR project.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2014 Pavol Rusnak <stick@satoshilabs.com>
|
|
|
|
*
|
|
|
|
* This library is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include "transaction.h"
|
|
|
|
#include "ecdsa.h"
|
|
|
|
#include "coins.h"
|
|
|
|
#include "util.h"
|
|
|
|
#include "debug.h"
|
|
|
|
#include "protect.h"
|
|
|
|
#include "layout2.h"
|
2014-11-15 01:01:21 +00:00
|
|
|
#include "crypto.h"
|
2014-12-20 19:34:19 +00:00
|
|
|
#include "ripemd160.h"
|
|
|
|
#include "base58.h"
|
2016-10-10 09:26:52 +00:00
|
|
|
#include "address.h"
|
2014-04-29 12:26:51 +00:00
|
|
|
#include "messages.pb.h"
|
2014-12-21 18:39:20 +00:00
|
|
|
#include "types.pb.h"
|
2014-04-29 12:26:51 +00:00
|
|
|
|
2016-04-29 20:15:55 +00:00
|
|
|
static const uint8_t segwit_header[2] = {0,1};
|
|
|
|
|
2014-04-29 12:26:51 +00:00
|
|
|
uint32_t op_push(uint32_t i, uint8_t *out) {
|
|
|
|
if (i < 0x4C) {
|
|
|
|
out[0] = i & 0xFF;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (i < 0xFF) {
|
|
|
|
out[0] = 0x4C;
|
|
|
|
out[1] = i & 0xFF;
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
if (i < 0xFFFF) {
|
|
|
|
out[0] = 0x4D;
|
|
|
|
out[1] = i & 0xFF;
|
|
|
|
out[2] = (i >> 8) & 0xFF;
|
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
out[0] = 0x4E;
|
|
|
|
out[1] = i & 0xFF;
|
|
|
|
out[2] = (i >> 8) & 0xFF;
|
|
|
|
out[3] = (i >> 16) & 0xFF;
|
|
|
|
out[4] = (i >> 24) & 0xFF;
|
|
|
|
return 5;
|
|
|
|
}
|
|
|
|
|
2017-03-29 14:43:48 +00:00
|
|
|
bool compute_address(const CoinType *coin,
|
|
|
|
InputScriptType script_type,
|
|
|
|
const HDNode *node,
|
|
|
|
bool has_multisig, const MultisigRedeemScriptType *multisig,
|
2017-05-04 16:54:54 +00:00
|
|
|
char address[MAX_ADDR_SIZE]) {
|
2017-03-29 14:43:48 +00:00
|
|
|
|
|
|
|
uint8_t raw[32];
|
|
|
|
uint8_t digest[MAX_ADDR_RAW_SIZE];
|
|
|
|
size_t prelen;
|
|
|
|
|
|
|
|
if (has_multisig) {
|
|
|
|
if (cryptoMultisigPubkeyIndex(multisig, node->public_key) < 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (compile_script_multisig_hash(multisig, digest) == 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (script_type == InputScriptType_SPENDWITNESS) {
|
|
|
|
// segwit p2wsh: script hash is single sha256
|
2017-05-04 16:54:54 +00:00
|
|
|
if (!coin->has_segwit || !coin->segwit) {
|
|
|
|
return 0;
|
|
|
|
}
|
2017-05-12 23:03:03 +00:00
|
|
|
// disable native segwit for now
|
|
|
|
return 0;
|
2017-03-29 14:43:48 +00:00
|
|
|
} else if (script_type == InputScriptType_SPENDP2SHWITNESS) {
|
|
|
|
// segwit p2wsh encapsuled in p2sh address
|
2017-05-04 16:54:54 +00:00
|
|
|
if (!coin->has_segwit || !coin->segwit) {
|
|
|
|
return 0;
|
|
|
|
}
|
2017-03-29 14:43:48 +00:00
|
|
|
if (!coin->has_address_type_p2sh) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
raw[0] = 0; // push version
|
|
|
|
raw[1] = 32; // push 32 bytes
|
|
|
|
memcpy(raw+2, digest, 32); // push hash
|
|
|
|
sha256_Raw(raw, 34, digest);
|
|
|
|
prelen = address_prefix_bytes_len(coin->address_type_p2sh);
|
|
|
|
address_write_prefix_bytes(coin->address_type_p2sh, raw);
|
|
|
|
ripemd160(digest, 32, raw + prelen);
|
|
|
|
if (!base58_encode_check(raw, prelen + 20, address, MAX_ADDR_SIZE)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// non-segwit p2sh multisig
|
|
|
|
prelen = address_prefix_bytes_len(coin->address_type_p2sh);
|
|
|
|
address_write_prefix_bytes(coin->address_type_p2sh, raw);
|
|
|
|
ripemd160(digest, 32, raw + prelen);
|
|
|
|
if (!base58_encode_check(raw, prelen + 20, address, MAX_ADDR_SIZE)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (script_type == InputScriptType_SPENDWITNESS) {
|
|
|
|
// segwit p2wpkh: pubkey hash is ripemd160 of sha256
|
2017-05-04 16:54:54 +00:00
|
|
|
if (!coin->has_segwit || !coin->segwit) {
|
|
|
|
return 0;
|
|
|
|
}
|
2017-05-12 23:03:03 +00:00
|
|
|
// disable native segwit for now
|
|
|
|
return 0;
|
2017-03-29 14:43:48 +00:00
|
|
|
} else if (script_type == InputScriptType_SPENDP2SHWITNESS) {
|
|
|
|
// segwit p2wpkh embedded in p2sh
|
2017-05-04 16:54:54 +00:00
|
|
|
if (!coin->has_segwit || !coin->segwit) {
|
|
|
|
return 0;
|
|
|
|
}
|
2017-03-29 14:43:48 +00:00
|
|
|
if (!coin->has_address_type_p2sh) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
prelen = address_prefix_bytes_len(coin->address_type_p2sh);
|
|
|
|
raw[0] = 0; // version byte
|
|
|
|
raw[1] = 20; // push 20 bytes
|
|
|
|
ecdsa_get_pubkeyhash(node->public_key, raw + 2);
|
|
|
|
sha256_Raw(raw, 22, digest);
|
|
|
|
address_write_prefix_bytes(coin->address_type_p2sh, raw);
|
|
|
|
ripemd160(digest, 32, raw + prelen);
|
|
|
|
if (!base58_encode_check(raw, prelen + 20, address, MAX_ADDR_SIZE)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ecdsa_get_address(node->public_key, coin->address_type, address, MAX_ADDR_SIZE);
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-04-29 12:26:51 +00:00
|
|
|
int compile_output(const CoinType *coin, const HDNode *root, TxOutputType *in, TxOutputBinType *out, bool needs_confirm)
|
|
|
|
{
|
2014-12-20 19:34:19 +00:00
|
|
|
memset(out, 0, sizeof(TxOutputBinType));
|
|
|
|
out->amount = in->amount;
|
2016-10-09 19:38:51 +00:00
|
|
|
uint8_t addr_raw[MAX_ADDR_RAW_SIZE];
|
2016-12-28 18:16:50 +00:00
|
|
|
size_t addr_raw_len;
|
2014-12-20 19:34:19 +00:00
|
|
|
|
2017-05-03 16:57:47 +00:00
|
|
|
if (in->script_type == OutputScriptType_PAYTOOPRETURN) {
|
|
|
|
// only 0 satoshi allowed for OP_RETURN
|
|
|
|
if (in->amount != 0) {
|
|
|
|
return 0; // failed to compile output
|
|
|
|
}
|
|
|
|
uint32_t r = 0;
|
|
|
|
out->script_pubkey.bytes[0] = 0x6A; r++; // OP_RETURN
|
|
|
|
r += op_push(in->op_return_data.size, out->script_pubkey.bytes + r);
|
|
|
|
memcpy(out->script_pubkey.bytes + r, in->op_return_data.bytes, in->op_return_data.size); r += in->op_return_data.size;
|
|
|
|
out->script_pubkey.size = r;
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2017-03-29 14:43:48 +00:00
|
|
|
if (in->address_n_count > 0) {
|
|
|
|
HDNode node;
|
|
|
|
InputScriptType input_script_type;
|
2016-04-27 21:38:59 +00:00
|
|
|
|
2017-03-29 14:43:48 +00:00
|
|
|
switch (in->script_type) {
|
2017-05-03 16:57:47 +00:00
|
|
|
case OutputScriptType_PAYTOADDRESS:
|
|
|
|
input_script_type = InputScriptType_SPENDADDRESS;
|
|
|
|
break;
|
|
|
|
case OutputScriptType_PAYTOMULTISIG:
|
|
|
|
input_script_type = InputScriptType_SPENDMULTISIG;
|
|
|
|
break;
|
|
|
|
case OutputScriptType_PAYTOWITNESS:
|
2017-05-12 23:03:03 +00:00
|
|
|
// disable native segwit for now
|
|
|
|
return 0;
|
2017-05-03 16:57:47 +00:00
|
|
|
case OutputScriptType_PAYTOP2SHWITNESS:
|
|
|
|
input_script_type = InputScriptType_SPENDP2SHWITNESS;
|
|
|
|
break;
|
|
|
|
default:
|
2017-03-29 14:43:48 +00:00
|
|
|
return 0; // failed to compile output
|
|
|
|
}
|
|
|
|
memcpy(&node, root, sizeof(HDNode));
|
|
|
|
if (hdnode_private_ckd_cached(&node, in->address_n, in->address_n_count, NULL) == 0) {
|
|
|
|
return 0; // failed to compile output
|
|
|
|
}
|
|
|
|
hdnode_fill_public_key(&node);
|
|
|
|
if (!compute_address(coin, input_script_type, &node,
|
|
|
|
in->has_multisig, &in->multisig,
|
2017-05-04 16:54:54 +00:00
|
|
|
in->address)) {
|
2017-03-29 14:43:48 +00:00
|
|
|
return 0; // failed to compile output
|
2014-04-29 12:26:51 +00:00
|
|
|
}
|
2017-03-29 14:43:48 +00:00
|
|
|
} else if (!in->has_address) {
|
|
|
|
return 0; // failed to compile output
|
|
|
|
}
|
|
|
|
|
|
|
|
addr_raw_len = base58_decode_check(in->address, addr_raw, MAX_ADDR_RAW_SIZE);
|
|
|
|
size_t prefix_len;
|
|
|
|
if (address_check_prefix(addr_raw, coin->address_type) // p2pkh
|
2017-05-12 23:03:03 +00:00
|
|
|
&& addr_raw_len == 20 + (prefix_len = address_prefix_bytes_len(coin->address_type))) {
|
2014-04-29 12:26:51 +00:00
|
|
|
out->script_pubkey.bytes[0] = 0x76; // OP_DUP
|
|
|
|
out->script_pubkey.bytes[1] = 0xA9; // OP_HASH_160
|
|
|
|
out->script_pubkey.bytes[2] = 0x14; // pushing 20 bytes
|
2017-03-29 14:43:48 +00:00
|
|
|
memcpy(out->script_pubkey.bytes + 3, addr_raw + prefix_len, 20);
|
2014-04-29 12:26:51 +00:00
|
|
|
out->script_pubkey.bytes[23] = 0x88; // OP_EQUALVERIFY
|
|
|
|
out->script_pubkey.bytes[24] = 0xAC; // OP_CHECKSIG
|
|
|
|
out->script_pubkey.size = 25;
|
2017-03-29 14:43:48 +00:00
|
|
|
} else if (address_check_prefix(addr_raw, coin->address_type_p2sh) // p2sh
|
|
|
|
&& addr_raw_len == 20 + (prefix_len = address_prefix_bytes_len(coin->address_type_p2sh))) {
|
2014-12-20 19:34:19 +00:00
|
|
|
out->script_pubkey.bytes[0] = 0xA9; // OP_HASH_160
|
|
|
|
out->script_pubkey.bytes[1] = 0x14; // pushing 20 bytes
|
2017-03-29 14:43:48 +00:00
|
|
|
memcpy(out->script_pubkey.bytes + 2, addr_raw + prefix_len, 20);
|
2014-04-29 12:26:51 +00:00
|
|
|
out->script_pubkey.bytes[22] = 0x87; // OP_EQUAL
|
|
|
|
out->script_pubkey.size = 23;
|
2017-03-29 14:43:48 +00:00
|
|
|
} else {
|
|
|
|
return 0;
|
2014-04-29 12:26:51 +00:00
|
|
|
}
|
|
|
|
|
2017-03-29 14:43:48 +00:00
|
|
|
if (needs_confirm) {
|
|
|
|
layoutConfirmOutput(coin, in);
|
|
|
|
if (!protectButton(ButtonRequestType_ButtonRequest_ConfirmOutput, false)) {
|
|
|
|
return -1; // user aborted
|
|
|
|
}
|
2015-02-04 19:04:59 +00:00
|
|
|
}
|
|
|
|
|
2017-03-29 14:43:48 +00:00
|
|
|
return out->script_pubkey.size;
|
2014-04-29 12:26:51 +00:00
|
|
|
}
|
|
|
|
|
2016-10-09 19:38:51 +00:00
|
|
|
uint32_t compile_script_sig(uint32_t address_type, const uint8_t *pubkeyhash, uint8_t *out)
|
2014-04-29 12:26:51 +00:00
|
|
|
{
|
|
|
|
if (coinByAddressType(address_type)) { // valid coin type
|
|
|
|
out[0] = 0x76; // OP_DUP
|
|
|
|
out[1] = 0xA9; // OP_HASH_160
|
|
|
|
out[2] = 0x14; // pushing 20 bytes
|
|
|
|
memcpy(out + 3, pubkeyhash, 20);
|
|
|
|
out[23] = 0x88; // OP_EQUALVERIFY
|
|
|
|
out[24] = 0xAC; // OP_CHECKSIG
|
|
|
|
return 25;
|
|
|
|
} else {
|
|
|
|
return 0; // unsupported
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-06 18:12:55 +00:00
|
|
|
// if out == NULL just compute the length
|
|
|
|
uint32_t compile_script_multisig(const MultisigRedeemScriptType *multisig, uint8_t *out)
|
|
|
|
{
|
|
|
|
if (!multisig->has_m) return 0;
|
2014-12-16 15:50:12 +00:00
|
|
|
const uint32_t m = multisig->m;
|
|
|
|
const uint32_t n = multisig->pubkeys_count;
|
2014-12-10 18:50:10 +00:00
|
|
|
if (m < 1 || m > 15) return 0;
|
|
|
|
if (n < 1 || n > 15) return 0;
|
2014-12-06 18:12:55 +00:00
|
|
|
uint32_t i, r = 0;
|
|
|
|
if (out) {
|
|
|
|
out[r] = 0x50 + m; r++;
|
|
|
|
for (i = 0; i < n; i++) {
|
2014-12-13 19:33:49 +00:00
|
|
|
out[r] = 33; r++; // OP_PUSH 33
|
2014-12-16 17:49:49 +00:00
|
|
|
const uint8_t *pubkey = cryptoHDNodePathToPubkey(&(multisig->pubkeys[i]));
|
|
|
|
if (!pubkey) return 0;
|
|
|
|
memcpy(out + r, pubkey, 33); r += 33;
|
2014-12-06 18:12:55 +00:00
|
|
|
}
|
|
|
|
out[r] = 0x50 + n; r++;
|
|
|
|
out[r] = 0xAE; r++; // OP_CHECKMULTISIG
|
|
|
|
} else {
|
2014-12-13 19:33:49 +00:00
|
|
|
r = 1 + 34 * n + 2;
|
2014-12-06 18:12:55 +00:00
|
|
|
}
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2014-12-10 17:04:51 +00:00
|
|
|
uint32_t compile_script_multisig_hash(const MultisigRedeemScriptType *multisig, uint8_t *hash)
|
|
|
|
{
|
|
|
|
if (!multisig->has_m) return 0;
|
2014-12-16 15:50:12 +00:00
|
|
|
const uint32_t m = multisig->m;
|
|
|
|
const uint32_t n = multisig->pubkeys_count;
|
2014-12-10 18:50:10 +00:00
|
|
|
if (m < 1 || m > 15) return 0;
|
|
|
|
if (n < 1 || n > 15) return 0;
|
2014-12-10 17:04:51 +00:00
|
|
|
|
|
|
|
SHA256_CTX ctx;
|
|
|
|
sha256_Init(&ctx);
|
|
|
|
|
2014-12-21 17:58:56 +00:00
|
|
|
uint8_t d[2];
|
|
|
|
d[0] = 0x50 + m; sha256_Update(&ctx, d, 1);
|
2014-12-13 19:33:49 +00:00
|
|
|
uint32_t i;
|
2014-12-10 17:04:51 +00:00
|
|
|
for (i = 0; i < n; i++) {
|
2014-12-21 17:58:56 +00:00
|
|
|
d[0] = 33; sha256_Update(&ctx, d, 1); // OP_PUSH 33
|
2014-12-16 17:49:49 +00:00
|
|
|
const uint8_t *pubkey = cryptoHDNodePathToPubkey(&(multisig->pubkeys[i]));
|
|
|
|
if (!pubkey) return 0;
|
|
|
|
sha256_Update(&ctx, pubkey, 33);
|
2014-12-10 17:04:51 +00:00
|
|
|
}
|
2014-12-21 17:58:56 +00:00
|
|
|
d[0] = 0x50 + n;
|
|
|
|
d[1] = 0xAE;
|
|
|
|
sha256_Update(&ctx, d, 2);
|
2014-12-10 17:04:51 +00:00
|
|
|
|
2016-04-26 09:53:58 +00:00
|
|
|
sha256_Final(&ctx, hash);
|
2014-12-10 17:04:51 +00:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-12-06 18:12:55 +00:00
|
|
|
uint32_t serialize_script_sig(const uint8_t *signature, uint32_t signature_len, const uint8_t *pubkey, uint32_t pubkey_len, uint8_t *out)
|
2014-04-29 12:26:51 +00:00
|
|
|
{
|
|
|
|
uint32_t r = 0;
|
|
|
|
r += op_push(signature_len + 1, out + r);
|
|
|
|
memcpy(out + r, signature, signature_len); r += signature_len;
|
|
|
|
out[r] = 0x01; r++;
|
|
|
|
r += op_push(pubkey_len, out + r);
|
|
|
|
memcpy(out + r, pubkey, pubkey_len); r += pubkey_len;
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2014-12-06 18:12:55 +00:00
|
|
|
uint32_t serialize_script_multisig(const MultisigRedeemScriptType *multisig, uint8_t *out)
|
|
|
|
{
|
|
|
|
uint32_t i, r = 0;
|
|
|
|
out[r] = 0x00; r++;
|
|
|
|
for (i = 0; i < multisig->signatures_count; i++) {
|
|
|
|
if (multisig->signatures[i].size == 0) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
r += op_push(multisig->signatures[i].size + 1, out + r);
|
|
|
|
memcpy(out + r, multisig->signatures[i].bytes, multisig->signatures[i].size); r += multisig->signatures[i].size;
|
|
|
|
out[r] = 0x01; r++;
|
|
|
|
}
|
|
|
|
uint32_t script_len = compile_script_multisig(multisig, 0);
|
2014-12-20 01:36:28 +00:00
|
|
|
if (script_len == 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
2014-12-06 18:12:55 +00:00
|
|
|
r += op_push(script_len, out + r);
|
|
|
|
r += compile_script_multisig(multisig, out + r);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2014-04-29 12:26:51 +00:00
|
|
|
// tx methods
|
|
|
|
|
2016-04-29 19:17:06 +00:00
|
|
|
uint32_t tx_prevout_hash(SHA256_CTX *ctx, const TxInputType *input)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < 32; i++) {
|
|
|
|
sha256_Update(ctx, &(input->prev_hash.bytes[31 - i]), 1);
|
|
|
|
}
|
|
|
|
sha256_Update(ctx, (const uint8_t *)&input->prev_index, 4);
|
|
|
|
return 36;
|
|
|
|
}
|
|
|
|
|
2016-04-29 20:15:55 +00:00
|
|
|
uint32_t tx_script_hash(SHA256_CTX *ctx, uint32_t size, const uint8_t *data)
|
|
|
|
{
|
|
|
|
int r = ser_length_hash(ctx, size);
|
|
|
|
sha256_Update(ctx, data, size);
|
|
|
|
return r + size;
|
|
|
|
}
|
|
|
|
|
2016-04-29 19:17:06 +00:00
|
|
|
uint32_t tx_sequence_hash(SHA256_CTX *ctx, const TxInputType *input)
|
|
|
|
{
|
|
|
|
sha256_Update(ctx, (const uint8_t *)&input->sequence, 4);
|
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t tx_output_hash(SHA256_CTX *ctx, const TxOutputBinType *output)
|
|
|
|
{
|
|
|
|
uint32_t r = 0;
|
|
|
|
sha256_Update(ctx, (const uint8_t *)&output->amount, 8); r += 8;
|
2016-04-29 20:15:55 +00:00
|
|
|
r += tx_script_hash(ctx, output->script_pubkey.size, output->script_pubkey.bytes);
|
2016-04-29 19:17:06 +00:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2016-04-29 20:15:55 +00:00
|
|
|
uint32_t tx_serialize_script(uint32_t size, const uint8_t *data, uint8_t *out)
|
|
|
|
{
|
|
|
|
int r = ser_length(size, out);
|
|
|
|
memcpy(out + r, data, size);
|
|
|
|
return r + size;
|
|
|
|
}
|
|
|
|
|
2014-04-29 12:26:51 +00:00
|
|
|
uint32_t tx_serialize_header(TxStruct *tx, uint8_t *out)
|
|
|
|
{
|
2016-04-29 20:15:55 +00:00
|
|
|
int r = 4;
|
2014-04-29 12:26:51 +00:00
|
|
|
memcpy(out, &(tx->version), 4);
|
2016-04-29 20:15:55 +00:00
|
|
|
if (tx->is_segwit) {
|
|
|
|
memcpy(out + r, segwit_header, 2);
|
|
|
|
r += 2;
|
|
|
|
}
|
|
|
|
return r + ser_length(tx->inputs_len, out + r);
|
2014-04-29 12:26:51 +00:00
|
|
|
}
|
|
|
|
|
2014-12-21 18:39:20 +00:00
|
|
|
uint32_t tx_serialize_header_hash(TxStruct *tx)
|
|
|
|
{
|
2016-04-29 20:15:55 +00:00
|
|
|
int r = 4;
|
2014-12-21 18:39:20 +00:00
|
|
|
sha256_Update(&(tx->ctx), (const uint8_t *)&(tx->version), 4);
|
2016-04-29 20:15:55 +00:00
|
|
|
if (tx->is_segwit) {
|
|
|
|
sha256_Update(&(tx->ctx), segwit_header, 2);
|
|
|
|
r += 2;
|
|
|
|
}
|
|
|
|
return r + ser_length_hash(&(tx->ctx), tx->inputs_len);
|
2014-12-21 18:39:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t tx_serialize_input(TxStruct *tx, const TxInputType *input, uint8_t *out)
|
2014-04-29 12:26:51 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
if (tx->have_inputs >= tx->inputs_len) {
|
|
|
|
// already got all inputs
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
uint32_t r = 0;
|
|
|
|
if (tx->have_inputs == 0) {
|
|
|
|
r += tx_serialize_header(tx, out + r);
|
|
|
|
}
|
|
|
|
for (i = 0; i < 32; i++) {
|
2014-12-21 18:39:20 +00:00
|
|
|
*(out + r + i) = input->prev_hash.bytes[31 - i];
|
|
|
|
}
|
|
|
|
r += 32;
|
|
|
|
memcpy(out + r, &input->prev_index, 4); r += 4;
|
2016-04-29 20:15:55 +00:00
|
|
|
r += tx_serialize_script(input->script_sig.size, input->script_sig.bytes, out + r);
|
2014-12-21 18:39:20 +00:00
|
|
|
memcpy(out + r, &input->sequence, 4); r += 4;
|
|
|
|
|
|
|
|
tx->have_inputs++;
|
|
|
|
tx->size += r;
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t tx_serialize_input_hash(TxStruct *tx, const TxInputType *input)
|
|
|
|
{
|
|
|
|
if (tx->have_inputs >= tx->inputs_len) {
|
|
|
|
// already got all inputs
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
uint32_t r = 0;
|
|
|
|
if (tx->have_inputs == 0) {
|
|
|
|
r += tx_serialize_header_hash(tx);
|
|
|
|
}
|
2016-04-29 19:17:06 +00:00
|
|
|
r += tx_prevout_hash(&(tx->ctx), input);
|
2016-04-29 20:15:55 +00:00
|
|
|
r += tx_script_hash(&(tx->ctx), input->script_sig.size, input->script_sig.bytes);
|
2016-04-29 19:17:06 +00:00
|
|
|
r += tx_sequence_hash(&(tx->ctx), input);
|
2014-04-29 12:26:51 +00:00
|
|
|
|
|
|
|
tx->have_inputs++;
|
|
|
|
tx->size += r;
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t tx_serialize_middle(TxStruct *tx, uint8_t *out)
|
|
|
|
{
|
|
|
|
return ser_length(tx->outputs_len, out);
|
|
|
|
}
|
|
|
|
|
2014-12-21 18:39:20 +00:00
|
|
|
uint32_t tx_serialize_middle_hash(TxStruct *tx)
|
|
|
|
{
|
|
|
|
return ser_length_hash(&(tx->ctx), tx->outputs_len);
|
|
|
|
}
|
|
|
|
|
2014-04-29 12:26:51 +00:00
|
|
|
uint32_t tx_serialize_footer(TxStruct *tx, uint8_t *out)
|
|
|
|
{
|
|
|
|
memcpy(out, &(tx->lock_time), 4);
|
|
|
|
if (tx->add_hash_type) {
|
|
|
|
uint32_t ht = 1;
|
|
|
|
memcpy(out + 4, &ht, 4);
|
|
|
|
return 8;
|
|
|
|
} else {
|
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-21 18:39:20 +00:00
|
|
|
uint32_t tx_serialize_footer_hash(TxStruct *tx)
|
|
|
|
{
|
|
|
|
sha256_Update(&(tx->ctx), (const uint8_t *)&(tx->lock_time), 4);
|
|
|
|
if (tx->add_hash_type) {
|
|
|
|
uint32_t ht = 1;
|
|
|
|
sha256_Update(&(tx->ctx), (const uint8_t *)&ht, 4);
|
|
|
|
return 8;
|
|
|
|
} else {
|
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t tx_serialize_output(TxStruct *tx, const TxOutputBinType *output, uint8_t *out)
|
2014-04-29 12:26:51 +00:00
|
|
|
{
|
|
|
|
if (tx->have_inputs < tx->inputs_len) {
|
|
|
|
// not all inputs provided
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (tx->have_outputs >= tx->outputs_len) {
|
|
|
|
// already got all outputs
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
uint32_t r = 0;
|
|
|
|
if (tx->have_outputs == 0) {
|
|
|
|
r += tx_serialize_middle(tx, out + r);
|
|
|
|
}
|
2014-12-21 18:39:20 +00:00
|
|
|
memcpy(out + r, &output->amount, 8); r += 8;
|
2016-04-29 20:15:55 +00:00
|
|
|
r += tx_serialize_script(output->script_pubkey.size, output->script_pubkey.bytes, out + r);
|
2014-04-29 12:26:51 +00:00
|
|
|
tx->have_outputs++;
|
2016-05-01 00:47:15 +00:00
|
|
|
if (tx->have_outputs == tx->outputs_len
|
|
|
|
&& !tx->is_segwit) {
|
2014-04-29 12:26:51 +00:00
|
|
|
r += tx_serialize_footer(tx, out + r);
|
|
|
|
}
|
|
|
|
tx->size += r;
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2014-12-21 18:39:20 +00:00
|
|
|
uint32_t tx_serialize_output_hash(TxStruct *tx, const TxOutputBinType *output)
|
|
|
|
{
|
|
|
|
if (tx->have_inputs < tx->inputs_len) {
|
|
|
|
// not all inputs provided
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (tx->have_outputs >= tx->outputs_len) {
|
|
|
|
// already got all outputs
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
uint32_t r = 0;
|
|
|
|
if (tx->have_outputs == 0) {
|
|
|
|
r += tx_serialize_middle_hash(tx);
|
|
|
|
}
|
2016-04-29 19:17:06 +00:00
|
|
|
r += tx_output_hash(&(tx->ctx), output);
|
2014-12-21 18:39:20 +00:00
|
|
|
tx->have_outputs++;
|
2016-05-01 00:47:15 +00:00
|
|
|
if (tx->have_outputs == tx->outputs_len
|
|
|
|
&& !tx->is_segwit) {
|
2014-12-21 18:39:20 +00:00
|
|
|
r += tx_serialize_footer_hash(tx);
|
|
|
|
}
|
|
|
|
tx->size += r;
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2016-10-19 07:37:46 +00:00
|
|
|
uint32_t tx_serialize_extra_data_hash(TxStruct *tx, const uint8_t *data, uint32_t datalen)
|
|
|
|
{
|
|
|
|
if (tx->have_inputs < tx->inputs_len) {
|
|
|
|
// not all inputs provided
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (tx->have_outputs < tx->outputs_len) {
|
|
|
|
// not all inputs provided
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (tx->extra_data_received + datalen > tx->extra_data_len) {
|
|
|
|
// we are receiving too much data
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
sha256_Update(&(tx->ctx), data, datalen);
|
|
|
|
tx->extra_data_received += datalen;
|
|
|
|
tx->size += datalen;
|
|
|
|
return datalen;
|
|
|
|
}
|
|
|
|
|
|
|
|
void tx_init(TxStruct *tx, uint32_t inputs_len, uint32_t outputs_len, uint32_t version, uint32_t lock_time, uint32_t extra_data_len, bool add_hash_type)
|
2014-04-29 12:26:51 +00:00
|
|
|
{
|
|
|
|
tx->inputs_len = inputs_len;
|
|
|
|
tx->outputs_len = outputs_len;
|
|
|
|
tx->version = version;
|
|
|
|
tx->lock_time = lock_time;
|
|
|
|
tx->add_hash_type = add_hash_type;
|
|
|
|
tx->have_inputs = 0;
|
|
|
|
tx->have_outputs = 0;
|
2016-10-19 07:37:46 +00:00
|
|
|
tx->extra_data_len = extra_data_len;
|
|
|
|
tx->extra_data_received = 0;
|
2014-04-29 12:26:51 +00:00
|
|
|
tx->size = 0;
|
2016-05-01 00:47:15 +00:00
|
|
|
tx->is_segwit = false;
|
2014-04-29 12:26:51 +00:00
|
|
|
sha256_Init(&(tx->ctx));
|
|
|
|
}
|
|
|
|
|
|
|
|
void tx_hash_final(TxStruct *t, uint8_t *hash, bool reverse)
|
|
|
|
{
|
2016-04-26 09:53:58 +00:00
|
|
|
sha256_Final(&(t->ctx), hash);
|
2014-04-29 12:26:51 +00:00
|
|
|
sha256_Raw(hash, 32, hash);
|
|
|
|
if (!reverse) return;
|
|
|
|
uint8_t i, k;
|
|
|
|
for (i = 0; i < 16; i++) {
|
|
|
|
k = hash[31 - i];
|
|
|
|
hash[31 - i] = hash[i];
|
|
|
|
hash[i] = k;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t transactionEstimateSize(uint32_t inputs, uint32_t outputs)
|
|
|
|
{
|
|
|
|
return 10 + inputs * 149 + outputs * 35;
|
|
|
|
}
|