2023-08-16 19:27:31 +02:00
|
|
|
// Copyright (c) 2009-2020 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>
|
2020-05-27 13:15:53 +02:00
|
|
|
#include <string>
|
2018-07-24 20:49:54 +02:00
|
|
|
|
2020-11-20 05:34:17 +01:00
|
|
|
namespace {
|
2021-09-03 05:58:09 +02:00
|
|
|
class OpCodeParser
|
2020-11-20 05:34:17 +01:00
|
|
|
{
|
2021-09-03 05:58:09 +02:00
|
|
|
private:
|
|
|
|
std::map<std::string, opcodetype> mapOpNames;
|
2014-06-24 05:16:33 +02:00
|
|
|
|
2021-09-03 05:58:09 +02:00
|
|
|
public:
|
|
|
|
OpCodeParser()
|
|
|
|
{
|
|
|
|
for (unsigned int op = 0; op <= MAX_OPCODE; ++op) {
|
2014-06-24 05:16:33 +02:00
|
|
|
// Allow OP_RESERVED to get into mapOpNames
|
2021-10-08 15:39:46 +02:00
|
|
|
if (op < OP_NOP && op != OP_RESERVED) {
|
2014-06-24 05:16:33 +02:00
|
|
|
continue;
|
2021-10-08 15:39:46 +02:00
|
|
|
}
|
2014-06-24 05:16:33 +02:00
|
|
|
|
2020-05-27 13:15:53 +02:00
|
|
|
std::string strName = GetOpName(static_cast<opcodetype>(op));
|
2021-10-08 15:39:46 +02:00
|
|
|
if (strName == "OP_UNKNOWN") {
|
2014-06-24 05:16:33 +02:00
|
|
|
continue;
|
2021-10-08 15:39:46 +02:00
|
|
|
}
|
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:
|
2021-10-08 15:39:46 +02:00
|
|
|
if (strName.compare(0, 3, "OP_") == 0) { // strName starts with "OP_"
|
2020-10-03 12:55:15 +02:00
|
|
|
mapOpNames[strName.substr(3)] = static_cast<opcodetype>(op);
|
|
|
|
}
|
2014-06-24 05:16:33 +02:00
|
|
|
}
|
|
|
|
}
|
2021-09-03 05:58:09 +02:00
|
|
|
opcodetype Parse(const std::string& s) const
|
|
|
|
{
|
|
|
|
auto it = mapOpNames.find(s);
|
|
|
|
if (it == mapOpNames.end()) throw std::runtime_error("script parse error: unknown opcode");
|
|
|
|
return it->second;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
opcodetype ParseOpCode(const std::string& s)
|
|
|
|
{
|
|
|
|
static const OpCodeParser ocp;
|
|
|
|
return ocp.Parse(s);
|
2020-11-20 05:34:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
CScript ParseScript(const std::string& s)
|
|
|
|
{
|
|
|
|
CScript result;
|
|
|
|
|
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
|
|
|
|
2021-10-08 15:39:46 +02:00
|
|
|
for (const std::string& w : words) {
|
|
|
|
if (w.empty()) {
|
2023-01-03 09:58:11 +01:00
|
|
|
// Empty string, ignore. (SplitString doesn't combine multiple separators)
|
2021-10-08 15:39:46 +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
|
2021-10-08 15:39:46 +02:00
|
|
|
const auto num{ToIntegral<int64_t>(w)};
|
2020-03-24 08:17:58 +01:00
|
|
|
|
2021-10-08 15:39:46 +02:00
|
|
|
// limit the range of numbers ParseScript accepts in decimal
|
|
|
|
// since numbers outside -0xFFFFFFFF...0xFFFFFFFF are illegal in scripts
|
|
|
|
if (!num.has_value() || num > int64_t{0xffffffff} || num < -1 * int64_t{0xffffffff}) {
|
2020-03-24 08:17:58 +01:00
|
|
|
throw std::runtime_error("script parse error: decimal numeric value only allowed in the "
|
|
|
|
"range -0xFFFFFFFF...0xFFFFFFFF");
|
|
|
|
}
|
|
|
|
|
2021-10-08 15:39:46 +02:00
|
|
|
result << num.value();
|
|
|
|
} 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:
|
2021-10-08 15:39:46 +02: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());
|
2021-10-08 15:39:46 +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.
|
2021-10-08 15:39:46 +02:00
|
|
|
std::vector<unsigned char> value(w.begin() + 1, w.end() - 1);
|
2014-06-24 05:16:33 +02:00
|
|
|
result << value;
|
2021-10-08 15:39:46 +02:00
|
|
|
} else {
|
2020-11-20 05:34:17 +01:00
|
|
|
// opcode, e.g. OP_ADD or ADD:
|
2021-10-08 15:39:46 +02:00
|
|
|
result << ParseOpCode(w);
|
2014-06-24 05:16:33 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
2014-06-24 05:10:24 +02:00
|
|
|
|
2024-01-24 13:16:05 +01:00
|
|
|
static bool DecodeTx(CMutableTransaction& tx, const std::vector<unsigned char>& tx_data)
|
2014-06-24 05:10:24 +02:00
|
|
|
{
|
2024-01-24 13:16:05 +01:00
|
|
|
CDataStream ssData(tx_data, SER_NETWORK, PROTOCOL_VERSION);
|
2014-06-24 05:10:24 +02:00
|
|
|
try {
|
|
|
|
ssData >> tx;
|
2024-01-24 13:16:05 +01:00
|
|
|
if (!ssData.empty()) {
|
2017-02-06 14:35:44 +01:00
|
|
|
return false;
|
2024-01-24 13:16:05 +01:00
|
|
|
}
|
|
|
|
} catch (const std::exception&) {
|
2014-06-24 05:10:24 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2024-01-24 13:16:05 +01:00
|
|
|
bool DecodeHexTx(CMutableTransaction& tx, const std::string& hex_tx)
|
|
|
|
{
|
|
|
|
if (!IsHex(hex_tx)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<unsigned char> txData(ParseHex(hex_tx));
|
|
|
|
return DecodeTx(tx, txData);
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|