风险提示:理性看待区块链,提高风险意识!
Bitcoin UTXO代码分析(三):与其它模块的交互
首页 > 币界资讯 > 区块链知识 2018-02-15 07:48
摘要
前两篇介绍了 UXTO 表示以及 CCoinViewCache的使用: Bitcoin UTXO代码分析(一):UTXO的相关表示 和 Bitcoin UTXO代码分析(二):CCoinsViewCache,这篇文章主要介绍 UTXO 和其他模块的交互:新块被激活的时候如何更新UTXO,内存池中的交 。
币界网报道:

前两篇介绍了 UXTO 表示以及 CCoinViewCache的使用: Bitcoin UTXO代码分析(一):UTXO的相关表示 和 Bitcoin UTXO代码分析(二):CCoinsViewCache,这篇文章主要介绍 UTXO 和其他模块的交互:新块被激活的时候如何更新UTXO,内存池中的交易和 UTXO 如何交互,以及 UTXO 的存储。

programming-code

Blockchain激活

Blockchain 发生变化时 UTXO 相关的逻辑:

bool CChainState::ConnectTip(CValidationState& state, const CChainParams& chainparams, CBlockIndex* pindexNew, const std::shared_ptr& pblock, ConnectTrace& connectTrace, DisconnectedBlockTransactions &disconnectpool)
 {
 ....
 {
 CCoinsViewCache view(pcoinsTip.get());
 bool rv = ConnectBlock(blockConnecting, state, pindexNew, view, chainparams);
 GetMainSignals().BlockChecked(blockConnecting, state);
 if (!rv) {
 if (state.IsInvalid())
 InvalidBlockFound(pindexNew, state);
 return error("ConnectTip(): ConnectBlock %s failed", pindexNew->GetBlockHash().ToString());
 }
 nTime3 = GetTimeMicros();
 nTimeConnectTotal += nTime3 - nTime2;
 LogPrint(BCLog::BENCH, " - Connect total: %.2fms [%.2fs (%.2fms/blk)]\n", (nTime3 - nTime2) * MILLI, nTimeConnectTotal * MICRO, nTimeConnectTotal * MILLI / nBlocksTotal);
 bool flushed = view.Flush();
 assert(flushed);
 }
 .....
 }
bool CChainState::DisconnectTip(CValidationState& state, const CChainParams& chainparams, DisconnectedBlockTransactions *disconnectpool)
 {
 ...
 {
 CCoinsViewCache view(pcoinsTip.get());
 assert(view.GetBestBlock() == pindexDelete->GetBlockHash());
 if (DisconnectBlock(block, pindexDelete, view) != DISCONNECT_OK)
 return error("DisconnectTip(): DisconnectBlock %s failed", pindexDelete->GetBlockHash().ToString());
 bool flushed = view.Flush();
 assert(flushed);
 }
 ...
 }

在 blockchain 结构重新组织,当前activeChain发生变化时,某些 block 会链接上 activeChain, 某些 block 会断掉跟 activeChain 的链接,内部会调用CChainState::ConnectTipCChainState::DisconnectTip,这里会生成临时的 CCoinsViewCache 对象,后端连接上全局的另一个 CCoinsViewCache实例 pcoinsTip, 在调用 ConnectBlock,DisconnectBlock 后,更新自己的状态到 pcoinsTip

Mempool相关

有一个对象专门用来处理 Mempool 相关的 UTXO,对象为CCoinsViewMemPool:

class CCoinsViewMemPool : public CCoinsViewBacked
 {
 protected:
 const CTxMemPool& mempool;
 public:
 CCoinsViewMemPool(CCoinsView* baseIn, const CTxMemPool& mempoolIn);
 bool GetCoin(const COutPoint &outpoint, Coin &coin) const override;
 };
 {
 ...
 CCoinsView viewDummy;
 CCoinsViewCache view(&viewDummy);
 {
 LOCK(mempool.cs);
 CCoinsViewCache &viewChain = *pcoinsTip;
 CCoinsViewMemPool viewMempool(&viewChain, mempool);
 view.SetBackend(viewMempool); // temporarily switch cache backend to db+mempool view
for (const CTxIn& txin : mtx.vin) {
 view.AccessCoin(txin.prevout); // Load entries from viewChain into view; can fail.
 }
 view.SetBackend(viewDummy); // switch back to avoid locking mempool for too long
 }
 ...
 }

在 rpc 请求时,比如: signrawtransaction,combinerawtransaction,构造了临时 viewcache 对象, 临时 viewMempool 对象 CCoinsViewMemPoolCCoinsViewMemPool被设为 view 的后端,这样确保 mtx 交易的父交易,数据来源包括当前 activeChain 的内存部分,磁盘部分,还有 mempool。

gettxout请求:

UniValue gettxout(const JSONRPCRequest& request)
 {
 ...
 if (fMempool) {
 LOCK(mempool.cs);
 CCoinsViewMemPool view(pcoinsTip.get(), mempool);
 if (!view.GetCoin(out, coin) || mempool.isSpent(out)) {
 return NullUniValue;
 }
 } else {
 if (!pcoinsTip->GetCoin(out, coin)) {
 return NullUniValue;
 }
 }
 ...
 }

rpc 请求 gettxout 处理时,如果include_mempool 为 true,会构造临时 ViewMemPool,方便外部用户查询 utxo 时,引入 mempool 中的 utxo。

检查 timelock 交易的代码:

bool CheckSequenceLocks(const CTransaction &tx, int flags, LockPoints* lp, bool useExistingLockPoints)
 {
 ...
 {
 CCoinsViewMemPool viewMemPool(pcoinsTip.get(), mempool);
 std::vector prevheights;
 prevheights.resize(tx.vin.size());
 for (size_t txinIndex = 0; txinIndex < tx.vin.size(); txinIndex++) { const CTxIn& txin = tx.vin[txinIndex]; Coin coin; if (!viewMemPool.GetCoin(txin.prevout, coin)) { return error("%s: Missing input", __func__); } if (coin.nHeight == MEMPOOL_HEIGHT) { // Assume all mempool transaction confirm in the next block prevheights[txinIndex] = tip->nHeight + 1;
 } else {
 prevheights[txinIndex] = coin.nHeight;
 }
 }
}
 ...
 }

评估使用timelock的交易时,需要再次构造临时 ViewMemPool,查询当前blockchain tip 对应的 coin 集合与内存池的 coin 集合。

有交易进入内存池时:

static bool AcceptToMemoryPoolWorker(const CChainParams& chainparams, CTxMemPool& pool, CValidationState& state, const CTransactionRef& ptx,bool* pfMissingInputs, int64_t nAcceptTime, std::list* plTxnReplaced,bool bypass_limits, const CAmount& nAbsurdFee, std::vector& coins_to_uncache)
 {
 .....
 CCoinsView dummy;
 CCoinsViewCache view(&dummy);
 LockPoints lp;
 {
 LOCK(pool.cs);
 CCoinsViewMemPool viewMemPool(pcoinsTip.get(), pool);
 view.SetBackend(viewMemPool);
 // do all inputs exist?
 for (const CTxIn txin : tx.vin) {
 if (!pcoinsTip->HaveCoinInCache(txin.prevout)) {
 coins_to_uncache.push_back(txin.prevout);
 }
 if (!view.HaveCoin(txin.prevout)) {
 // Are inputs missing because we already have the tx?
 for (size_t out = 0; out < tx.vout.size(); out++) { // Optimistically just do efficient check of cache for outputs if (pcoinsTip->HaveCoinInCache(COutPoint(hash, out))) {
 return state.Invalid(false, REJECT_DUPLICATE, "txn-already-known");
 }
 }
 // Otherwise assume this might be an orphan tx for which we just haven't seen parents yet
 if (pfMissingInputs) {
 *pfMissingInputs = true;
 }
 return false; // fMissingInputs and !state.IsInvalid() is used to detect this condition, don't set state.Invalid()
 }
 }
 // Bring the best block into scope
 view.GetBestBlock();
 view.SetBackend(dummy);
 ......
 }

AcceptToMemoryPoolWorker中,构造了临时 ccoinsviewcache 对象 view,临时 ccoinsviewMemPool 对象 viewmempool,view 后端数据来源是viewmempool。

UTXO的存储

utxo 的磁盘存储使用了 leveldb 键值对数据库, 键的序列化格式:

C[32 bytes of outpoint->hash][varint(outpoint->n]

struct CoinEntry {
 COutPoint* outpoint;
 char key;
 explicit CoinEntry(const COutPoint* ptr) : outpoint(const_cast<COutPoint*>(ptr)), key(DB_COIN) {}
 template
 void Serialize(Stream &s) const {
 s << key;
 s << outpoint->hash;
 s << VARINT(outpoint->n);
 }
 template
 void Unserialize(Stream& s) {
 s >> key;
 s >> outpoint->hash;
 s >> VARINT(outpoint->n);
 }
 };

value 对应的存储格式是就是 coin 对象的序列化形式:

VARINT((coinbase?1: 0) | (height <<1))

CTxout 的序列化格式(使用 CTxOutCompressor 类定制特殊压缩方式)。

template
 void Serialize(Stream &s) const {
 assert(!IsSpent());
 uint32_t code = nHeight * 2 + fCoinBase;
 ::Serialize(s, VARINT(code));
 ::Serialize(s, CTxOutCompressor(REF(out)));
 }

在每一个 CTxout 对象本身之前, 加上了一个变长编码的code = nHeight * 2 + fCoinBase数字,接着就是 txcout 本身:

class CTxOutCompressor
 {
 inline void SerializationOp(Stream& s, Operation ser_action) {
 if (!ser_action.ForRead()) {
 uint64_t nVal = CompressAmount(txout.nValue);
 READWRITE(VARINT(nVal));
 } else {
 uint64_t nVal = 0;
 READWRITE(VARINT(nVal));
 txout.nValue = DecompressAmount(nVal);
 }
 CScriptCompressor cscript(REF(txout.scriptPubKey));
 READWRITE(cscript);
 }
 }

接着是被压缩的数目, 使用CompressAmount成员函数中的算法:

uint64_t CTxOutCompressor::CompressAmount(uint64_t n)
 {
 if (n == 0)
 return 0;
 int e = 0;
 while (((n % 10) == 0) && e < 9) {
 n /= 10;
 e++;
 }
 if (e < 9) { int d = (n % 10); assert(d >= 1 && d <= 9);
 n /= 10;
 return 1 + (n*9 + d - 1)*10 + e;
 } else {
 return 1 + (n - 1)*10 + 9;
 }
 }

CTxout 中的锁定脚本使用CScriptCompressor 对象压缩存储:

class CScriptCompressor
 {
 template
 void Serialize(Stream &s) const {
 std::vector compr;
 if (Compress(compr)) {
 s << CFlatData(compr);
 return;
 }
 unsigned int nSize = script.size() + nSpecialScripts;
 s << VARINT(nSize);
 s << CFlatData(script);
 }
 }

基本思路, 对于 p2pkh 类型的脚本, 比如:

OP_DUP OP_HASH160 ab68025513c3dbd2f7b92a94e0581f5d50f654e7 OP_EQUALVERIFY OP_CHECKSIG,

压缩成:

[0x00][ab68025513c3dbd2f7b92a94e0581f5d50f654e7]

总共 21 字节。

p2sh 类型脚本, 比如:

OP_HASH160 20 0x620a6eeaf538ec9eb89b6ae83f2ed8ef98566a03 OP_EQUAL

压缩成:

[0x01][620a6eeaf538ec9eb89b6ae83f2ed8ef98566a03]

总共 21 字节。

p2pk 类型脚本, 比如:

33 0x022df8750480ad5b26950b25c7ba79d3e37d75f640f8e5d9bcd5b150a0f85014da OP_CHECKSIG

压缩成:

[0x2][2df8750480ad5b26950b25c7ba79d3e37d75f640f8e5d9bcd5b150a0f85014da]

总共 33 字节, 未压缩的 p2pk 脚本, 首字节是 0×04|(pubkey[64]&0×01), 接着是 32 字节的 pubkey 的 x 坐标。

对于其它不能被压缩的脚本, 如 segwit 的 scriptPubKey,采用下面方法:

unsigned int nSize = script.size() + nSpecialScripts;
 s << VARINT(nSize);
 s << CFlatData(script);
发表评论
发表评论
暂无评论
    相关阅读
    未来一年可以说是最难以预测的一年。地缘政治错综复杂、美国监管政策不确定。尽管美国股市似乎无法停止上涨,利率也只能下降,但我们知道,这两件事都不是板上钉钉的事。
    区块链
    2025-01-08 11:31:18
    周一,比特币和以太坊 ETF 共计流入 11 亿美元,在现货基金年初出现 3.2 亿美元流入后,形成了积极的势头。
    比特币
    2025-01-08 10:31:17
    Ripple宣布已集成Chainlink,为用户提供实时RLUSD定价数据,增强了稳定币在DeFi上的实用性和访问权限。DeFi开发人员还可以将RLUSD支持集成到他们的应用程序中,用于贷款和交易等多种用例。
    区块链
    2025-01-08 10:03:08
    莱特币在看涨突破后一周内上涨12%——282美元的目标现在就在眼前!
    区块链
    2025-01-08 09:41:19
    除了 Twitter 之外,还有其他地方可以追踪 AI 代理。
    区块链
    2025-01-08 09:31:18
    推荐专栏
    Boss Wallet Web3 Econom Pass
    Fully On-Chain & AI-Powered Meme Trading | #Xbit #DEX #Web3 | English: @XBITDEX | Chinese 华语 : @XBITDEX_ZH | Support: @XbitHelpDesk
    一位相信价值投资的币圈KOL。稳定盈利的缠论野生交易员 #BTC行情分析师 #价值投资 #链上数据分析
    爱Web 3,爱生活,爱科技,爱炒币的老韭菜
    热门币种
    更多
    币种
    美元价格
    24H涨跌幅
    BTC比特币
    60,963.61 USDT
    ¥435,103.38
    -2.72%
    ETH以太坊
    3,368.69 USDT
    ¥24,042.67
    -0.3%
    BNB币安币
    570.68 USDT
    ¥4,073.00
    -0.28%
    USDT泰达币
    1.02 USDT
    ¥7.25
    -0.19%
    SOL
    135.96 USDT
    ¥970.36
    +7.66%
    USDC
    1.00 USDT
    ¥7.15
    -0.01%
    TON
    7.59 USDT
    ¥54.14
    +4.55%
    XRP瑞波币
    0.47720 USDT
    ¥3.41
    +0.48%
    DOGE狗狗币
    0.12210 USDT
    ¥0.87140
    +2.43%
    ADA艾达币
    0.39050 USDT
    ¥2.79
    +3.88%
    热搜币种
    更多
    币种
    美元价格
    24H涨跌幅
    狗狗币
    0.3541 USDT
    ¥2.59
    -9.65%
    Filecoin
    5.3381 USDT
    ¥39.11
    -10.48%
    比特币
    96512.03 USDT
    ¥707,090.56
    -5.13%
    Gatechain Token
    17.9689 USDT
    ¥131.65
    -2.85%
    Horizen
    23.2652 USDT
    ¥170.45
    -17.39%
    dYdX
    1.4038 USDT
    ¥10.28
    -13.8%
    Solana
    198.71 USDT
    ¥1,455.84
    -8.68%
    柚子
    0.814 USDT
    ¥5.96
    -10.6%
    Shiba Inu
    2.174E-5 USDT
    ¥0.00
    -9.45%
    艾达币
    0.998 USDT
    ¥7.31
    -8.29%
    FTX Token
    2.9131 USDT
    ¥21.34
    -13.97%
    火币积分
    0.9291 USDT
    ¥6.81
    -29.01%
    最新快讯
    更多
    WEEX交易所WE-Launch上线Violet,投入WXT瓜分3100万枚VIOLET代币
    2025-01-08 12:00:34
    美国现货比特币ETF昨日净流入5346万美元
    2025-01-08 12:00:02
    昨日美国比特币现货ETF净流入5348万美元
    2025-01-08 11:59:02
    CertiKAlert:7天前部署的IPC代币存在漏洞,黑客通过闪电贷保护机制盗取约59万美元
    2025-01-08 11:58:42
    IREN:2024全年比特币挖矿产出达3984枚BTC
    2025-01-08 11:57:41
    昨日贝莱德IBIT净流入5.9718亿美元,交易量达31亿美元
    2025-01-08 11:54:57
    IPC代币疑遭攻击,损失约59万美元
    2025-01-08 11:53:10