Sub-systems are shutdown concurrently:
However there's interdependency between them. Specifically, chanRouter depends on the current cc.chainViewinstance but calls to GetBlock might block indefinitely until the chainView is called to stop.
One situation where this is manifested is on the garbage_collect_link_nodes itest where a channel is opened between Alice and Dave and immediately after that Bob and Carol are restarted. It might be the case that Bob (or Carol) is in the middle of a GetBlock() call and on the remotewallet implementation that cashes out to a loop that is only returned from once the wallet is told to shutdown. But that only happens later in the server shutdown routine, so the wallet shutdown deadlocks.
Currently this is solved in the itest with a dummy Sleep call but ideally this should be solved either by performing subsystem shutdown in parallel (so that the wallet shutting down bubbles up an error to chanRouter) or by requiring the chainView methods to accept a context parameter, so that the caller itself can cancel them.
Sub-systems are shutdown concurrently:
dcrlnd/server.go
Line 1411 in 2975978
However there's interdependency between them. Specifically,
chanRouterdepends on the currentcc.chainViewinstance but calls toGetBlockmight block indefinitely until thechainViewis called to stop.One situation where this is manifested is on the
garbage_collect_link_nodesitest where a channel is opened between Alice and Dave and immediately after that Bob and Carol are restarted. It might be the case that Bob (or Carol) is in the middle of aGetBlock()call and on theremotewalletimplementation that cashes out to a loop that is only returned from once the wallet is told to shutdown. But that only happens later in the server shutdown routine, so the wallet shutdown deadlocks.Currently this is solved in the itest with a dummy
Sleepcall but ideally this should be solved either by performing subsystem shutdown in parallel (so that the wallet shutting down bubbles up an error to chanRouter) or by requiring thechainViewmethods to accept acontextparameter, so that the caller itself can cancel them.