Skip to content

Commit 3a779dc

Browse files
domob1812patricklodder
authored andcommitted
Check auxpow PoW before the auxpow itself.
This reverses the order in which the auxpow structure and the PoW on it are verified. By checking the PoW first, we make it harder for random nodes to pass data of their choosing into CAuxPow::check. Cherry-picked from: namecoin/namecoin-core@b6e3241b Conflicts resolved: - CAuxPow member name mismatch - source code from validation.cpp resides in dogecoin.cpp
1 parent afbbe00 commit 3a779dc

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

src/auxpow.cpp

+4
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,10 @@ CAuxPow::check(const uint256& hashAuxBlock, int nChainId,
101101
!= parentBlock.hashMerkleRoot)
102102
return error("Aux POW merkle root incorrect");
103103

104+
// Check that there is at least one input.
105+
if (tx->vin.empty())
106+
return error("Aux POW coinbase has no inputs");
107+
104108
const CScript script = tx->vin[0].scriptSig;
105109

106110
// Check that the same work is not submitted twice to our chain.

src/dogecoin.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -115,11 +115,12 @@ bool CheckAuxPowProofOfWork(const CBlockHeader& block, const Consensus::Params&
115115
if (!block.IsAuxpow())
116116
return error("%s : auxpow on block with non-auxpow version", __func__);
117117

118-
if (!block.auxpow->check(block.GetHash(), block.GetChainId(), params))
119-
return error("%s : AUX POW is not valid", __func__);
120118
if (!CheckProofOfWork(block.auxpow->getParentBlockPoWHash(), block.nBits, params))
121119
return error("%s : AUX proof of work failed", __func__);
122120

121+
if (!block.auxpow->check(block.GetHash(), block.GetChainId(), params))
122+
return error("%s : AUX POW is not valid", __func__);
123+
123124
return true;
124125
}
125126

src/test/auxpow_tests.cpp

+9
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,15 @@ BOOST_AUTO_TEST_CASE(check_auxpow)
203203
builder.setCoinbase(scr);
204204
BOOST_CHECK(builder.get().check(hashAux, ourChainId, params));
205205

206+
/* An auxpow without any inputs in the parent coinbase tx should be
207+
handled gracefully (and be considered invalid). */
208+
CMutableTransaction mtx(*builder.parentBlock.vtx[0]);
209+
mtx.vin.clear();
210+
builder.parentBlock.vtx.clear();
211+
builder.parentBlock.vtx.push_back (MakeTransactionRef(std::move (mtx)));
212+
builder.parentBlock.hashMerkleRoot = BlockMerkleRoot(builder.parentBlock);
213+
BOOST_CHECK(!builder.get().check(hashAux, ourChainId, params));
214+
206215
/* Check that the auxpow is invalid if we change either the aux block's
207216
hash or the chain ID. */
208217
uint256 modifiedAux(hashAux);

0 commit comments

Comments
 (0)