Page MenuHomePhabricator

Merge #13081: wallet: Add compile time checking for cs_wallet runtime locking assertions
ClosedPublic

Authored by nakihito on Aug 31 2019, 00:36.

Details

Summary

66b0b1b2a6 Add compile time checking for all cs_wallet runtime locking assertions (practicalswift)

Pull request description:

Add compile time checking for `cs_wallet` runtime locking assertions.

This PR is a subset of #12665. The PR was broken up to make reviewing easier.

The intention is that literally all `EXCLUSIVE_LOCKS_REQUIRED`/`LOCKS_EXCLUDED`:s added in this PR should follow either directly or indirectly from `AssertLockHeld(…)`/`AssertLockNotHeld(…)`:s already existing in the repo.

Consider the case where function `A(…)` contains `AssertLockHeld(cs_foo)` (without
first locking `cs_foo` in `A`), and that `B(…)` calls `A(…)` (without first locking `cs_main`):
* It _directly_ follows that: `A(…)` should have an `EXCLUSIVE_LOCKS_REQUIRED(cs_foo)` annotation.
* It _indirectly_ follows that: `B(…)` should have an `EXCLUSIVE_LOCKS_REQUIRED(cs_foo)` annotation.

Tree-SHA512: d561d89e98a823922107e56dbd493f0f82e22edac91e51e6422f17daf2b446a70c143b7b157ca618fadd33d0ec63eb7a57dde5a83bfdf1fc19d71459b43e21fd

Backport of Core PR13081
https://github.com/bitcoin/bitcoin/pull/13081/

Depends on D3998

Test Plan
./configure CXX=clang++ CC=clang
make check

Diff Detail

Repository
rABC Bitcoin ABC
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

Owners added a reviewer: Restricted Owners Package.Aug 31 2019, 00:36
This revision now requires changes to proceed.Sep 3 2019, 08:24

Added an instance of EXCLUSIVE_LOCKS_REQUIRED() to wallet/wallet.cpp.

This revision now requires changes to proceed.Sep 4 2019, 15:55
This revision is now accepted and ready to land.Sep 5 2019, 07:01