2015-12-13 14:51:43 +01:00
|
|
|
// Copyright (c) 2009-2015 The Bitcoin Core developers
|
2014-12-13 05:09:33 +01:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2014-08-01 08:39:06 +02:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2014-06-24 05:10:24 +02:00
|
|
|
|
2020-03-19 23:46:56 +01:00
|
|
|
#include <core_io.h>
|
2014-09-14 12:43:56 +02:00
|
|
|
|
2020-03-19 23:46:56 +01:00
|
|
|
#include <primitives/block.h>
|
|
|
|
#include <primitives/transaction.h>
|
|
|
|
#include <script/script.h>
|
2021-07-13 18:30:17 +02:00
|
|
|
#include <script/sign.h>
|
2020-03-19 23:46:56 +01:00
|
|
|
#include <serialize.h>
|
|
|
|
#include <streams.h>
|
2015-09-04 16:11:34 +02:00
|
|
|
#include <univalue.h>
|
2023-01-03 09:58:11 +01:00
|
|
|
#include <util/string.h>
|
2021-06-27 08:33:13 +02:00
|
|
|
#include <util/strencodings.h>
|
2020-03-19 23:46:56 +01:00
|
|
|
#include <version.h>
|
2014-06-24 05:16:33 +02:00
|
|
|
|
2018-07-24 20:49:54 +02:00
|
|
|
#include <algorithm>
|
|
|
|
|
2015-05-31 15:36:44 +02:00
|
|
|
CScript ParseScript(const std::string& s)
|
2014-06-24 05:16:33 +02:00
|
|
|
{
|
|
|
|
CScript result;
|
|
|
|
|
2017-01-30 13:13:07 +01:00
|
|
|
static std::map<std::string, opcodetype> mapOpNames;
|
2014-06-24 05:16:33 +02:00
|
|
|
|
2014-06-24 01:32:54 +02:00
|
|
|
if (mapOpNames.empty())
|
2014-06-24 05:16:33 +02:00
|
|
|
{
|
2017-07-11 15:23:42 +02:00
|
|
|
for (unsigned int op = 0; op <= MAX_OPCODE; op++)
|
2014-06-24 05:16:33 +02:00
|
|
|
{
|
|
|
|
// Allow OP_RESERVED to get into mapOpNames
|
|
|
|
if (op < OP_NOP && op != OP_RESERVED)
|
|
|
|
continue;
|
|
|
|
|
2018-02-07 22:15:16 +01:00
|
|
|
const char* name = GetOpName(static_cast<opcodetype>(op));
|
2014-06-24 05:16:33 +02:00
|
|
|
if (strcmp(name, "OP_UNKNOWN") == 0)
|
|
|
|
continue;
|
2017-01-30 13:13:07 +01:00
|
|
|
std::string strName(name);
|
2018-02-07 22:15:16 +01:00
|
|
|
mapOpNames[strName] = static_cast<opcodetype>(op);
|
2014-06-24 05:16:33 +02:00
|
|
|
// Convenience: OP_ADD and just ADD are both recognized:
|
2020-10-03 12:55:15 +02:00
|
|
|
if (strName.compare(0, 3, "OP_") == 0) { // strName starts with "OP_"
|
|
|
|
mapOpNames[strName.substr(3)] = static_cast<opcodetype>(op);
|
|
|
|
}
|
2014-06-24 05:16:33 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-03 09:58:11 +01:00
|
|
|
std::vector<std::string> words = SplitString(s, " \t\n");
|
2014-06-24 05:16:33 +02:00
|
|
|
|
2014-06-24 01:32:54 +02:00
|
|
|
for (std::vector<std::string>::const_iterator w = words.begin(); w != words.end(); ++w)
|
2014-06-24 05:16:33 +02:00
|
|
|
{
|
2014-06-24 01:32:54 +02:00
|
|
|
if (w->empty())
|
2014-06-24 05:16:33 +02:00
|
|
|
{
|
2023-01-03 09:58:11 +01:00
|
|
|
// Empty string, ignore. (SplitString doesn't combine multiple separators)
|
2014-06-24 05:16:33 +02:00
|
|
|
}
|
2018-07-24 20:49:54 +02:00
|
|
|
else if (std::all_of(w->begin(), w->end(), ::IsDigit) ||
|
|
|
|
(w->front() == '-' && w->size() > 1 && std::all_of(w->begin()+1, w->end(), ::IsDigit)))
|
2014-06-24 05:16:33 +02:00
|
|
|
{
|
|
|
|
// Number
|
2022-12-20 17:18:10 +01:00
|
|
|
int64_t n = LocaleIndependentAtoi<int64_t>(*w);
|
2020-03-24 08:17:58 +01:00
|
|
|
|
|
|
|
//limit the range of numbers ParseScript accepts in decimal
|
|
|
|
//since numbers outside -0xFFFFFFFF...0xFFFFFFFF are illegal in scripts
|
|
|
|
if (n > int64_t{0xffffffff} || n < -1 * int64_t{0xffffffff}) {
|
|
|
|
throw std::runtime_error("script parse error: decimal numeric value only allowed in the "
|
|
|
|
"range -0xFFFFFFFF...0xFFFFFFFF");
|
|
|
|
}
|
|
|
|
|
2014-06-24 05:16:33 +02:00
|
|
|
result << n;
|
|
|
|
}
|
2018-07-24 20:49:54 +02:00
|
|
|
else if (w->substr(0,2) == "0x" && w->size() > 2 && IsHex(std::string(w->begin()+2, w->end())))
|
2014-06-24 05:16:33 +02:00
|
|
|
{
|
|
|
|
// Raw hex data, inserted NOT pushed onto stack:
|
2017-01-30 13:13:07 +01:00
|
|
|
std::vector<unsigned char> raw = ParseHex(std::string(w->begin()+2, w->end()));
|
2014-06-24 05:16:33 +02:00
|
|
|
result.insert(result.end(), raw.begin(), raw.end());
|
|
|
|
}
|
2018-07-24 20:49:54 +02:00
|
|
|
else if (w->size() >= 2 && w->front() == '\'' && w->back() == '\'')
|
2014-06-24 05:16:33 +02:00
|
|
|
{
|
|
|
|
// Single-quoted string, pushed as data. NOTE: this is poor-man's
|
|
|
|
// parsing, spaces/tabs/newlines in single-quoted strings won't work.
|
2014-06-24 01:32:54 +02:00
|
|
|
std::vector<unsigned char> value(w->begin()+1, w->end()-1);
|
2014-06-24 05:16:33 +02:00
|
|
|
result << value;
|
|
|
|
}
|
2014-06-24 01:32:54 +02:00
|
|
|
else if (mapOpNames.count(*w))
|
2014-06-24 05:16:33 +02:00
|
|
|
{
|
|
|
|
// opcode, e.g. OP_ADD or ADD:
|
2014-06-24 01:32:54 +02:00
|
|
|
result << mapOpNames[*w];
|
2014-06-24 05:16:33 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-01-30 13:13:07 +01:00
|
|
|
throw std::runtime_error("script parse error");
|
2014-06-24 05:16:33 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
2014-06-24 05:10:24 +02:00
|
|
|
|
2016-12-05 08:01:20 +01:00
|
|
|
bool DecodeHexTx(CMutableTransaction& tx, const std::string& strHexTx)
|
2014-06-24 05:10:24 +02:00
|
|
|
{
|
|
|
|
if (!IsHex(strHexTx))
|
|
|
|
return false;
|
|
|
|
|
2017-01-30 13:13:07 +01:00
|
|
|
std::vector<unsigned char> txData(ParseHex(strHexTx));
|
2014-06-24 05:10:24 +02:00
|
|
|
CDataStream ssData(txData, SER_NETWORK, PROTOCOL_VERSION);
|
|
|
|
try {
|
|
|
|
ssData >> tx;
|
2017-02-06 14:35:44 +01:00
|
|
|
if (!ssData.empty())
|
|
|
|
return false;
|
2014-06-24 05:10:24 +02:00
|
|
|
}
|
2014-12-07 13:29:06 +01:00
|
|
|
catch (const std::exception&) {
|
2014-06-24 05:10:24 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-08-10 21:37:50 +02:00
|
|
|
bool DecodeHexBlockHeader(CBlockHeader& header, const std::string& hex_header)
|
|
|
|
{
|
|
|
|
if (!IsHex(hex_header)) return false;
|
|
|
|
|
|
|
|
const std::vector<unsigned char> header_data{ParseHex(hex_header)};
|
|
|
|
CDataStream ser_header(header_data, SER_NETWORK, PROTOCOL_VERSION);
|
|
|
|
try {
|
|
|
|
ser_header >> header;
|
|
|
|
} catch (const std::exception&) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-10-30 03:56:33 +01:00
|
|
|
bool DecodeHexBlk(CBlock& block, const std::string& strHexBlk)
|
|
|
|
{
|
|
|
|
if (!IsHex(strHexBlk))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
std::vector<unsigned char> blockData(ParseHex(strHexBlk));
|
|
|
|
CDataStream ssBlock(blockData, SER_NETWORK, PROTOCOL_VERSION);
|
|
|
|
try {
|
|
|
|
ssBlock >> block;
|
|
|
|
}
|
2014-12-07 13:29:06 +01:00
|
|
|
catch (const std::exception&) {
|
2014-10-30 03:56:33 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-09-27 17:26:17 +02:00
|
|
|
bool ParseHashStr(const std::string& strHex, uint256& result)
|
2014-12-17 10:34:09 +01:00
|
|
|
{
|
2018-09-27 17:26:17 +02:00
|
|
|
if ((strHex.size() != 64) || !IsHex(strHex))
|
|
|
|
return false;
|
2014-07-29 17:12:44 +02:00
|
|
|
|
|
|
|
result.SetHex(strHex);
|
2018-09-27 17:26:17 +02:00
|
|
|
return true;
|
2014-07-29 17:12:44 +02:00
|
|
|
}
|
|
|
|
|
2017-01-30 13:13:07 +01:00
|
|
|
std::vector<unsigned char> ParseHexUV(const UniValue& v, const std::string& strName)
|
2014-07-29 17:12:44 +02:00
|
|
|
{
|
2017-01-30 13:13:07 +01:00
|
|
|
std::string strHex;
|
2014-07-29 17:12:44 +02:00
|
|
|
if (v.isStr())
|
|
|
|
strHex = v.getValStr();
|
|
|
|
if (!IsHex(strHex))
|
2017-01-30 13:13:07 +01:00
|
|
|
throw std::runtime_error(strName + " must be hexadecimal string (not '" + strHex + "')");
|
2014-07-29 17:12:44 +02:00
|
|
|
return ParseHex(strHex);
|
|
|
|
}
|
2021-07-13 18:30:17 +02:00
|
|
|
|
|
|
|
int ParseSighashString(const UniValue& sighash)
|
|
|
|
{
|
|
|
|
int hash_type = SIGHASH_ALL;
|
|
|
|
if (!sighash.isNull()) {
|
|
|
|
static std::map<std::string, int> map_sighash_values = {
|
|
|
|
{std::string("ALL"), int(SIGHASH_ALL)},
|
|
|
|
{std::string("ALL|ANYONECANPAY"), int(SIGHASH_ALL|SIGHASH_ANYONECANPAY)},
|
|
|
|
{std::string("NONE"), int(SIGHASH_NONE)},
|
|
|
|
{std::string("NONE|ANYONECANPAY"), int(SIGHASH_NONE|SIGHASH_ANYONECANPAY)},
|
|
|
|
{std::string("SINGLE"), int(SIGHASH_SINGLE)},
|
|
|
|
{std::string("SINGLE|ANYONECANPAY"), int(SIGHASH_SINGLE|SIGHASH_ANYONECANPAY)},
|
|
|
|
};
|
|
|
|
std::string strHashType = sighash.get_str();
|
|
|
|
const auto& it = map_sighash_values.find(strHashType);
|
|
|
|
if (it != map_sighash_values.end()) {
|
|
|
|
hash_type = it->second;
|
|
|
|
} else {
|
|
|
|
throw std::runtime_error(strHashType + " is not a valid sighash parameter.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return hash_type;
|
|
|
|
}
|