mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 04:22:55 +01:00
Merge #19526: log: Avoid treating remote misbehvior as local system error
fa56eda58e5ec2f2345bbe14c798e83f2abb4728 log: Avoid treating remote misbehvior as local system error (MarcoFalke) fa492895b572a1196ca8652006b6fc2fa1d16951 refactor: Switch ValidationState mode to C++11 enum class (MarcoFalke) Pull request description: When logging failures of `CheckBlockHeader` (high-hash), they are always logged as system error. This is problematic for several reasons: * Submitting a blockheader that fails `CheckBlockHeader` over RPC will result in a debug log line that starts with `ERROR`. Proper behaviour should be to log not anything and instead only return the failure reason to the RPC user. This pull does not fix this issue entirely, but is a good first step in the right direction. * A misbehaving peer that sends us an invalid block header that fails `CheckBlockHeader` will result in a debug log line that starts with `ERROR`. Proper behavior should be to log the remote peer misbehavior if logging for that category was enabled. This pull fixes this issue for `CheckBlockHeader` and other functions can be adjusted as well if needed in follow-ups. This should be a good first step in the right direction. ACKs for top commit: practicalswift: re-ACK fa56eda58e5ec2f2345bbe14c798e83f2abb4728 Tree-SHA512: 9793191f5cb57bdff7c93926e94877e8ca2ef89dcebcf9eb155899c733961839ec7c3f9b9f001dc082ada4234fe6e75f6df431301678d6822325840771166d77
This commit is contained in:
parent
9feb82056c
commit
9f64dc6552
@ -64,16 +64,18 @@ enum class BlockValidationResult {
|
|||||||
* by TxValidationState and BlockValidationState for validation information on transactions
|
* by TxValidationState and BlockValidationState for validation information on transactions
|
||||||
* and blocks respectively. */
|
* and blocks respectively. */
|
||||||
template <typename Result>
|
template <typename Result>
|
||||||
class ValidationState {
|
class ValidationState
|
||||||
|
{
|
||||||
private:
|
private:
|
||||||
enum mode_state {
|
enum class ModeState {
|
||||||
MODE_VALID, //!< everything ok
|
M_VALID, //!< everything ok
|
||||||
MODE_INVALID, //!< network rule violation (DoS value may be set)
|
M_INVALID, //!< network rule violation (DoS value may be set)
|
||||||
MODE_ERROR, //!< run-time error
|
M_ERROR, //!< run-time error
|
||||||
} m_mode{MODE_VALID};
|
} m_mode{ModeState::M_VALID};
|
||||||
Result m_result{};
|
Result m_result{};
|
||||||
std::string m_reject_reason;
|
std::string m_reject_reason;
|
||||||
std::string m_debug_message;
|
std::string m_debug_message;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
bool Invalid(Result result,
|
bool Invalid(Result result,
|
||||||
const std::string& reject_reason = "",
|
const std::string& reject_reason = "",
|
||||||
@ -82,19 +84,19 @@ public:
|
|||||||
m_result = result;
|
m_result = result;
|
||||||
m_reject_reason = reject_reason;
|
m_reject_reason = reject_reason;
|
||||||
m_debug_message = debug_message;
|
m_debug_message = debug_message;
|
||||||
if (m_mode != MODE_ERROR) m_mode = MODE_INVALID;
|
if (m_mode != ModeState::M_ERROR) m_mode = ModeState::M_INVALID;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
bool Error(const std::string& reject_reason)
|
bool Error(const std::string& reject_reason)
|
||||||
{
|
{
|
||||||
if (m_mode == MODE_VALID)
|
if (m_mode == ModeState::M_VALID)
|
||||||
m_reject_reason = reject_reason;
|
m_reject_reason = reject_reason;
|
||||||
m_mode = MODE_ERROR;
|
m_mode = ModeState::M_ERROR;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
bool IsValid() const { return m_mode == MODE_VALID; }
|
bool IsValid() const { return m_mode == ModeState::M_VALID; }
|
||||||
bool IsInvalid() const { return m_mode == MODE_INVALID; }
|
bool IsInvalid() const { return m_mode == ModeState::M_INVALID; }
|
||||||
bool IsError() const { return m_mode == MODE_ERROR; }
|
bool IsError() const { return m_mode == ModeState::M_ERROR; }
|
||||||
Result GetResult() const { return m_result; }
|
Result GetResult() const { return m_result; }
|
||||||
std::string GetRejectReason() const { return m_reject_reason; }
|
std::string GetRejectReason() const { return m_reject_reason; }
|
||||||
std::string GetDebugMessage() const { return m_debug_message; }
|
std::string GetDebugMessage() const { return m_debug_message; }
|
||||||
|
@ -4063,8 +4063,10 @@ bool BlockManager::AcceptBlockHeader(const CBlockHeader& block, BlockValidationS
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!CheckBlockHeader(block, state, chainparams.GetConsensus()))
|
if (!CheckBlockHeader(block, state, chainparams.GetConsensus())) {
|
||||||
return error("%s: Consensus::CheckBlockHeader: %s, %s", __func__, hash.ToString(), state.ToString());
|
LogPrint(BCLog::VALIDATION, "%s: Consensus::CheckBlockHeader: %s, %s\n", __func__, hash.ToString(), state.ToString());
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
// Get prev block index
|
// Get prev block index
|
||||||
CBlockIndex* pindexPrev = nullptr;
|
CBlockIndex* pindexPrev = nullptr;
|
||||||
|
Loading…
Reference in New Issue
Block a user