Skip to content

Commit 6cd6816

Browse files
committed
Merge branch '2020-06-refactor-chain-listener-move-chainmonitor' into 2020-06-refactor-chain-listener
2 parents 819a865 + 51a5a1a commit 6cd6816

File tree

8 files changed

+242
-194
lines changed

8 files changed

+242
-194
lines changed

fuzz/src/chanmon_consistency.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ use bitcoin::hashes::sha256::Hash as Sha256;
2929
use bitcoin::hash_types::{BlockHash, WPubkeyHash};
3030

3131
use lightning::chain;
32+
use lightning::chain::chainmonitor;
3233
use lightning::chain::channelmonitor;
3334
use lightning::chain::channelmonitor::{ChannelMonitor, ChannelMonitorUpdateErr, MonitorEvent};
3435
use lightning::chain::transaction::OutPoint;
@@ -83,7 +84,7 @@ impl Writer for VecWriter {
8384

8485
struct TestChainMonitor {
8586
pub logger: Arc<dyn Logger>,
86-
pub chain_monitor: Arc<channelmonitor::ChainMonitor<EnforcingChannelKeys, Arc<dyn chain::Filter>, Arc<TestBroadcaster>, Arc<FuzzEstimator>, Arc<dyn Logger>>>,
87+
pub chain_monitor: Arc<chainmonitor::ChainMonitor<EnforcingChannelKeys, Arc<dyn chain::Filter>, Arc<TestBroadcaster>, Arc<FuzzEstimator>, Arc<dyn Logger>>>,
8788
pub update_ret: Mutex<Result<(), channelmonitor::ChannelMonitorUpdateErr>>,
8889
// If we reload a node with an old copy of ChannelMonitors, the ChannelManager deserialization
8990
// logic will automatically force-close our channels for us (as we don't have an up-to-date
@@ -96,7 +97,7 @@ struct TestChainMonitor {
9697
impl TestChainMonitor {
9798
pub fn new(broadcaster: Arc<TestBroadcaster>, logger: Arc<dyn Logger>, feeest: Arc<FuzzEstimator>) -> Self {
9899
Self {
99-
chain_monitor: Arc::new(channelmonitor::ChainMonitor::new(None, broadcaster, logger.clone(), feeest)),
100+
chain_monitor: Arc::new(chainmonitor::ChainMonitor::new(None, broadcaster, logger.clone(), feeest)),
100101
logger,
101102
update_ret: Mutex::new(Ok(())),
102103
latest_monitors: Mutex::new(HashMap::new()),

fuzz/src/full_stack.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ use bitcoin::hash_types::{Txid, BlockHash, WPubkeyHash};
2727

2828
use lightning::chain;
2929
use lightning::chain::chaininterface::{BroadcasterInterface, ConfirmationTarget, FeeEstimator};
30-
use lightning::chain::channelmonitor;
30+
use lightning::chain::chainmonitor;
3131
use lightning::chain::transaction::OutPoint;
3232
use lightning::chain::keysinterface::{InMemoryChannelKeys, KeysInterface};
3333
use lightning::ln::channelmanager::{ChannelManager, PaymentHash, PaymentPreimage, PaymentSecret};
@@ -145,13 +145,13 @@ impl<'a> std::hash::Hash for Peer<'a> {
145145

146146
type ChannelMan = ChannelManager<
147147
EnforcingChannelKeys,
148-
Arc<channelmonitor::ChainMonitor<EnforcingChannelKeys, Arc<dyn chain::Filter>, Arc<TestBroadcaster>, Arc<FuzzEstimator>, Arc<dyn Logger>>>,
148+
Arc<chainmonitor::ChainMonitor<EnforcingChannelKeys, Arc<dyn chain::Filter>, Arc<TestBroadcaster>, Arc<FuzzEstimator>, Arc<dyn Logger>>>,
149149
Arc<TestBroadcaster>, Arc<KeyProvider>, Arc<FuzzEstimator>, Arc<dyn Logger>>;
150150
type PeerMan<'a> = PeerManager<Peer<'a>, Arc<ChannelMan>, Arc<NetGraphMsgHandler<Arc<dyn chain::Access>, Arc<dyn Logger>>>, Arc<dyn Logger>>;
151151

152152
struct MoneyLossDetector<'a> {
153153
manager: Arc<ChannelMan>,
154-
monitor: Arc<channelmonitor::ChainMonitor<EnforcingChannelKeys, Arc<dyn chain::Filter>, Arc<TestBroadcaster>, Arc<FuzzEstimator>, Arc<dyn Logger>>>,
154+
monitor: Arc<chainmonitor::ChainMonitor<EnforcingChannelKeys, Arc<dyn chain::Filter>, Arc<TestBroadcaster>, Arc<FuzzEstimator>, Arc<dyn Logger>>>,
155155
handler: PeerMan<'a>,
156156

157157
peers: &'a RefCell<[bool; 256]>,
@@ -165,7 +165,7 @@ struct MoneyLossDetector<'a> {
165165
impl<'a> MoneyLossDetector<'a> {
166166
pub fn new(peers: &'a RefCell<[bool; 256]>,
167167
manager: Arc<ChannelMan>,
168-
monitor: Arc<channelmonitor::ChainMonitor<EnforcingChannelKeys, Arc<dyn chain::Filter>, Arc<TestBroadcaster>, Arc<FuzzEstimator>, Arc<dyn Logger>>>,
168+
monitor: Arc<chainmonitor::ChainMonitor<EnforcingChannelKeys, Arc<dyn chain::Filter>, Arc<TestBroadcaster>, Arc<FuzzEstimator>, Arc<dyn Logger>>>,
169169
handler: PeerMan<'a>) -> Self {
170170
MoneyLossDetector {
171171
manager,
@@ -333,7 +333,7 @@ pub fn do_test(data: &[u8], logger: &Arc<dyn Logger>) {
333333
};
334334

335335
let broadcast = Arc::new(TestBroadcaster{});
336-
let monitor = Arc::new(channelmonitor::ChainMonitor::new(None, broadcast.clone(), Arc::clone(&logger), fee_est.clone()));
336+
let monitor = Arc::new(chainmonitor::ChainMonitor::new(None, broadcast.clone(), Arc::clone(&logger), fee_est.clone()));
337337

338338
let keys_manager = Arc::new(KeyProvider { node_secret: our_network_key.clone(), counter: AtomicU64::new(0) });
339339
let mut config = UserConfig::default();

lightning-net-tokio/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
//! type Logger = dyn lightning::util::logger::Logger;
3737
//! type ChainAccess = dyn lightning::chain::Access;
3838
//! type ChainFilter = dyn lightning::chain::Filter;
39-
//! type ChainMonitor = lightning::chain::channelmonitor::ChainMonitor<lightning::chain::keysinterface::InMemoryChannelKeys, Arc<ChainFilter>, Arc<TxBroadcaster>, Arc<FeeEstimator>, Arc<Logger>>;
39+
//! type ChainMonitor = lightning::chain::chainmonitor::ChainMonitor<lightning::chain::keysinterface::InMemoryChannelKeys, Arc<ChainFilter>, Arc<TxBroadcaster>, Arc<FeeEstimator>, Arc<Logger>>;
4040
//! type ChannelManager = lightning::ln::channelmanager::SimpleArcChannelManager<ChainMonitor, TxBroadcaster, FeeEstimator, Logger>;
4141
//! type PeerManager = lightning::ln::peer_handler::SimpleArcPeerManager<lightning_net_tokio::SocketDescriptor, ChainMonitor, TxBroadcaster, FeeEstimator, ChainAccess, Logger>;
4242
//!

lightning/src/chain/chainmonitor.rs

Lines changed: 227 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,227 @@
1+
// This file is Copyright its original authors, visible in version control
2+
// history.
3+
//
4+
// This file is licensed under the Apache License, Version 2.0 <LICENSE-APACHE
5+
// or http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option.
7+
// You may not use this file except in accordance with one or both of these
8+
// licenses.
9+
10+
//! Logic to connect off-chain channel management with on-chain transaction monitoring.
11+
//!
12+
//! [`ChainMonitor`] is an implementation of [`chain::Watch`] used both to process blocks and to
13+
//! update [`ChannelMonitor`]s accordingly. If any on-chain events need further processing, it will
14+
//! make those available as [`MonitorEvent`]s to be consumed.
15+
//!
16+
//! `ChainMonitor` is parameterized by an optional chain source, which must implement the
17+
//! [`chain::Filter`] trait. This provides a mechanism to signal new relevant outputs back to light
18+
//! clients, such that transactions spending those outputs are included in block data.
19+
//!
20+
//! `ChainMonitor` may be used directly to monitor channels locally or as a part of a distributed
21+
//! setup to monitor channels remotely. In the latter case, a custom `chain::Watch` implementation
22+
//! would be responsible for routing each update to a remote server and for retrieving monitor
23+
//! events. The remote server would make use of `ChainMonitor` for block processing and for
24+
//! servicing `ChannelMonitor` updates from the client.
25+
//!
26+
//! [`ChainMonitor`]: struct.ChainMonitor.html
27+
//! [`chain::Filter`]: ../trait.Filter.html
28+
//! [`chain::Watch`]: ../trait.Watch.html
29+
//! [`ChannelMonitor`]: ../channelmonitor/struct.ChannelMonitor.html
30+
//! [`MonitorEvent`]: ../channelmonitor/enum.MonitorEvent.html
31+
32+
use bitcoin::blockdata::block::BlockHeader;
33+
34+
use chain;
35+
use chain::Filter;
36+
use chain::chaininterface::{BroadcasterInterface, FeeEstimator};
37+
use chain::channelmonitor::{ChannelMonitor, ChannelMonitorUpdate, ChannelMonitorUpdateErr, MonitorEvent, MonitorUpdateError};
38+
use chain::transaction::{OutPoint, TransactionData};
39+
use chain::keysinterface::ChannelKeys;
40+
use util::logger::Logger;
41+
use util::events;
42+
use util::events::Event;
43+
44+
use std::collections::{HashMap, hash_map};
45+
use std::sync::Mutex;
46+
use std::ops::Deref;
47+
48+
/// An implementation of [`chain::Watch`] for monitoring channels.
49+
///
50+
/// Connected and disconnected blocks must be provided to `ChainMonitor` as documented by
51+
/// [`chain::Watch`]. May be used in conjunction with [`ChannelManager`] to monitor channels locally
52+
/// or used independently to monitor channels remotely. See the [module-level documentation] for
53+
/// details.
54+
///
55+
/// [`chain::Watch`]: ../trait.Watch.html
56+
/// [`ChannelManager`]: ../../ln/channelmanager/struct.ChannelManager.html
57+
/// [module-level documentation]: index.html
58+
pub struct ChainMonitor<ChanSigner: ChannelKeys, C: Deref, T: Deref, F: Deref, L: Deref>
59+
where C::Target: chain::Filter,
60+
T::Target: BroadcasterInterface,
61+
F::Target: FeeEstimator,
62+
L::Target: Logger,
63+
{
64+
/// The monitors
65+
pub monitors: Mutex<HashMap<OutPoint, ChannelMonitor<ChanSigner>>>,
66+
chain_source: Option<C>,
67+
broadcaster: T,
68+
logger: L,
69+
fee_estimator: F
70+
}
71+
72+
impl<ChanSigner: ChannelKeys, C: Deref, T: Deref, F: Deref, L: Deref> ChainMonitor<ChanSigner, C, T, F, L>
73+
where C::Target: chain::Filter,
74+
T::Target: BroadcasterInterface,
75+
F::Target: FeeEstimator,
76+
L::Target: Logger,
77+
{
78+
/// Dispatches to per-channel monitors, which are responsible for updating their on-chain view
79+
/// of a channel and reacting accordingly based on transactions in the connected block. See
80+
/// [`ChannelMonitor::block_connected`] for details. Any HTLCs that were resolved on chain will
81+
/// be returned by [`chain::Watch::release_pending_monitor_events`].
82+
///
83+
/// Calls back to [`chain::Filter`] if any monitor indicated new outputs to watch, returning
84+
/// `true` if so. Subsequent calls must not exclude any transactions matching the new outputs
85+
/// nor any in-block descendants of such transactions. It is not necessary to re-fetch the block
86+
/// to obtain updated `txdata`.
87+
///
88+
/// [`ChannelMonitor::block_connected`]: ../channelmonitor/struct.ChannelMonitor.html#method.block_connected
89+
/// [`chain::Watch::release_pending_monitor_events`]: ../trait.Watch.html#tymethod.release_pending_monitor_events
90+
/// [`chain::Filter`]: ../trait.Filter.html
91+
pub fn block_connected(&self, header: &BlockHeader, txdata: &TransactionData, height: u32) -> bool {
92+
let mut has_new_outputs_to_watch = false;
93+
{
94+
let mut monitors = self.monitors.lock().unwrap();
95+
for monitor in monitors.values_mut() {
96+
let mut txn_outputs = monitor.block_connected(header, txdata, height, &*self.broadcaster, &*self.fee_estimator, &*self.logger);
97+
has_new_outputs_to_watch |= !txn_outputs.is_empty();
98+
99+
if let Some(ref chain_source) = self.chain_source {
100+
for (txid, outputs) in txn_outputs.drain(..) {
101+
for (idx, output) in outputs.iter().enumerate() {
102+
chain_source.register_output(&OutPoint { txid, index: idx as u16 }, &output.script_pubkey);
103+
}
104+
}
105+
}
106+
}
107+
}
108+
has_new_outputs_to_watch
109+
}
110+
111+
/// Dispatches to per-channel monitors, which are responsible for updating their on-chain view
112+
/// of a channel based on the disconnected block. See [`ChannelMonitor::block_disconnected`] for
113+
/// details.
114+
///
115+
/// [`ChannelMonitor::block_disconnected`]: ../channelmonitor/struct.ChannelMonitor.html#method.block_disconnected
116+
pub fn block_disconnected(&self, header: &BlockHeader, disconnected_height: u32) {
117+
let mut monitors = self.monitors.lock().unwrap();
118+
for monitor in monitors.values_mut() {
119+
monitor.block_disconnected(header, disconnected_height, &*self.broadcaster, &*self.fee_estimator, &*self.logger);
120+
}
121+
}
122+
123+
/// Creates a new `ChainMonitor` used to watch on-chain activity pertaining to channels.
124+
///
125+
/// When an optional chain source implementing [`chain::Filter`] is provided, the chain monitor
126+
/// will call back to it indicating transactions and outputs of interest. This allows clients to
127+
/// pre-filter blocks or only fetch blocks matching a compact filter. Otherwise, clients may
128+
/// always need to fetch full blocks absent another means for determining which blocks contain
129+
/// transactions relevant to the watched channels.
130+
///
131+
/// [`chain::Filter`]: ../trait.Filter.html
132+
pub fn new(chain_source: Option<C>, broadcaster: T, logger: L, feeest: F) -> Self {
133+
Self {
134+
monitors: Mutex::new(HashMap::new()),
135+
chain_source,
136+
broadcaster,
137+
logger,
138+
fee_estimator: feeest,
139+
}
140+
}
141+
142+
/// Adds the monitor that watches the channel referred to by the given outpoint.
143+
///
144+
/// Calls back to [`chain::Filter`] with the funding transaction and outputs to watch.
145+
///
146+
/// [`chain::Filter`]: ../trait.Filter.html
147+
fn add_monitor(&self, outpoint: OutPoint, monitor: ChannelMonitor<ChanSigner>) -> Result<(), MonitorUpdateError> {
148+
let mut monitors = self.monitors.lock().unwrap();
149+
let entry = match monitors.entry(outpoint) {
150+
hash_map::Entry::Occupied(_) => return Err(MonitorUpdateError("Channel monitor for given outpoint is already present")),
151+
hash_map::Entry::Vacant(e) => e,
152+
};
153+
{
154+
let funding_txo = monitor.get_funding_txo();
155+
log_trace!(self.logger, "Got new Channel Monitor for channel {}", log_bytes!(funding_txo.0.to_channel_id()[..]));
156+
157+
if let Some(ref chain_source) = self.chain_source {
158+
chain_source.register_tx(&funding_txo.0.txid, &funding_txo.1);
159+
for (txid, outputs) in monitor.get_outputs_to_watch().iter() {
160+
for (idx, script_pubkey) in outputs.iter().enumerate() {
161+
chain_source.register_output(&OutPoint { txid: *txid, index: idx as u16 }, &script_pubkey);
162+
}
163+
}
164+
}
165+
}
166+
entry.insert(monitor);
167+
Ok(())
168+
}
169+
170+
/// Updates the monitor that watches the channel referred to by the given outpoint.
171+
fn update_monitor(&self, outpoint: OutPoint, update: ChannelMonitorUpdate) -> Result<(), MonitorUpdateError> {
172+
let mut monitors = self.monitors.lock().unwrap();
173+
match monitors.get_mut(&outpoint) {
174+
Some(orig_monitor) => {
175+
log_trace!(self.logger, "Updating Channel Monitor for channel {}", log_funding_info!(orig_monitor));
176+
orig_monitor.update_monitor(update, &self.broadcaster, &self.logger)
177+
},
178+
None => Err(MonitorUpdateError("No such monitor registered"))
179+
}
180+
}
181+
}
182+
183+
impl<ChanSigner: ChannelKeys, C: Deref + Sync + Send, T: Deref + Sync + Send, F: Deref + Sync + Send, L: Deref + Sync + Send> chain::Watch for ChainMonitor<ChanSigner, C, T, F, L>
184+
where C::Target: chain::Filter,
185+
T::Target: BroadcasterInterface,
186+
F::Target: FeeEstimator,
187+
L::Target: Logger,
188+
{
189+
type Keys = ChanSigner;
190+
191+
fn watch_channel(&self, funding_txo: OutPoint, monitor: ChannelMonitor<ChanSigner>) -> Result<(), ChannelMonitorUpdateErr> {
192+
match self.add_monitor(funding_txo, monitor) {
193+
Ok(_) => Ok(()),
194+
Err(_) => Err(ChannelMonitorUpdateErr::PermanentFailure),
195+
}
196+
}
197+
198+
fn update_channel(&self, funding_txo: OutPoint, update: ChannelMonitorUpdate) -> Result<(), ChannelMonitorUpdateErr> {
199+
match self.update_monitor(funding_txo, update) {
200+
Ok(_) => Ok(()),
201+
Err(_) => Err(ChannelMonitorUpdateErr::PermanentFailure),
202+
}
203+
}
204+
205+
fn release_pending_monitor_events(&self) -> Vec<MonitorEvent> {
206+
let mut pending_monitor_events = Vec::new();
207+
for chan in self.monitors.lock().unwrap().values_mut() {
208+
pending_monitor_events.append(&mut chan.get_and_clear_pending_monitor_events());
209+
}
210+
pending_monitor_events
211+
}
212+
}
213+
214+
impl<ChanSigner: ChannelKeys, C: Deref, T: Deref, F: Deref, L: Deref> events::EventsProvider for ChainMonitor<ChanSigner, C, T, F, L>
215+
where C::Target: chain::Filter,
216+
T::Target: BroadcasterInterface,
217+
F::Target: FeeEstimator,
218+
L::Target: Logger,
219+
{
220+
fn get_and_clear_pending_events(&self) -> Vec<Event> {
221+
let mut pending_events = Vec::new();
222+
for chan in self.monitors.lock().unwrap().values_mut() {
223+
pending_events.append(&mut chan.get_and_clear_pending_events());
224+
}
225+
pending_events
226+
}
227+
}

0 commit comments

Comments
 (0)