HomePhabricator

gui: Fix race in WalletModel::pollBalanceChanged

Description

gui: Fix race in WalletModel::pollBalanceChanged

Summary:
Poll function was wrongly setting cached height to the current chain height
instead of the chain height at the time of polling.

This bug could cause balances to appear out of date, and was first introduced
https://github.com/bitcoin/bitcoin/pull/10244/commits/a0704a8996bb950ae3c4d5b5a30e9dfe34cde1d3#r378452145
Before that commit, there wasn't a problem because cs_main was held during the
poll update.

Currently, the problem should be rare. But if
8937d99ce81a27ae5e1012a28323c0e26d89c50b from PR17954 were merged, the problem
would get worse, because the wrong cachedNumBlocks value would be set if the
wallet was polled in the interval between a block being connected and it
processing the BlockConnected notification.

MarcoFalke <falke.marco@gmail.com> also points out that a0704a8996b could lead
to GUI hangs as well, because previously the pollBalanceChanged method, which
runs on the GUI thread, would only make a nonblocking TRY_LOCK(cs_main) call,
but after could make blocking LOCK(cs_main) calls, potentially locking up the
GUI.

Thanks to John Newbery <john@johnnewbery.com> for finding this bug this while
reviewing PR17954.

This is a backport of Core PR18123

Test Plan: ninja && src/qt/bitcoin-qt

Reviewers: #bitcoin_abc, deadalnix

Reviewed By: #bitcoin_abc, deadalnix

Differential Revision: https://reviews.bitcoinabc.org/D8764

Details

Provenance
Russell Yanofsky <russ@yanofsky.org>Authored on Feb 11 2020, 21:53
PiRKCommitted on Jan 2 2021, 08:36
PiRKPushed on Jan 2 2021, 08:36
Reviewer
Restricted Project
Differential Revision
D8764: gui: Fix race in WalletModel::pollBalanceChanged
Parents
rABC3a5000226682: Get rid of VARINT default argument
Branches
Unknown
Tags
Unknown