Update auto-generated bindings to latest upstream
[ldk-c-bindings] / lightning-c-bindings / src / chain / chainmonitor.rs
1 // This file is Copyright its original authors, visible in version control
2 // history and in the source files from which this was generated.
3 //
4 // This file is licensed under the license available in the LICENSE or LICENSE.md
5 // file in the root of this repository or, if no such file exists, the same
6 // license as that which applies to the original source files from which this
7 // source was automatically generated.
8
9 //! Logic to connect off-chain channel management with on-chain transaction monitoring.
10 //!
11 //! [`ChainMonitor`] is an implementation of [`chain::Watch`] used both to process blocks and to
12 //! update [`ChannelMonitor`]s accordingly. If any on-chain events need further processing, it will
13 //! make those available as [`MonitorEvent`]s to be consumed.
14 //!
15 //! [`ChainMonitor`] is parameterized by an optional chain source, which must implement the
16 //! [`chain::Filter`] trait. This provides a mechanism to signal new relevant outputs back to light
17 //! clients, such that transactions spending those outputs are included in block data.
18 //!
19 //! [`ChainMonitor`] may be used directly to monitor channels locally or as a part of a distributed
20 //! setup to monitor channels remotely. In the latter case, a custom [`chain::Watch`] implementation
21 //! would be responsible for routing each update to a remote server and for retrieving monitor
22 //! events. The remote server would make use of [`ChainMonitor`] for block processing and for
23 //! servicing [`ChannelMonitor`] updates from the client.
24
25 use std::ffi::c_void;
26 use bitcoin::hashes::Hash;
27 use crate::c_types::*;
28
29
30 use lightning::chain::chainmonitor::ChainMonitor as nativeChainMonitorImport;
31 type nativeChainMonitor = nativeChainMonitorImport<crate::chain::keysinterface::Sign, crate::chain::Filter, crate::chain::chaininterface::BroadcasterInterface, crate::chain::chaininterface::FeeEstimator, crate::util::logger::Logger, crate::chain::channelmonitor::Persist>;
32
33 /// An implementation of [`chain::Watch`] for monitoring channels.
34 ///
35 /// Connected and disconnected blocks must be provided to `ChainMonitor` as documented by
36 /// [`chain::Watch`]. May be used in conjunction with [`ChannelManager`] to monitor channels locally
37 /// or used independently to monitor channels remotely. See the [module-level documentation] for
38 /// details.
39 ///
40 /// [`ChannelManager`]: crate::ln::channelmanager::ChannelManager
41 /// [module-level documentation]: crate::chain::chainmonitor
42 #[must_use]
43 #[repr(C)]
44 pub struct ChainMonitor {
45         /// A pointer to the opaque Rust object.
46
47         /// Nearly everywhere, inner must be non-null, however in places where
48         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
49         pub inner: *mut nativeChainMonitor,
50         /// Indicates that this is the only struct which contains the same pointer.
51
52         /// Rust functions which take ownership of an object provided via an argument require
53         /// this to be true and invalidate the object pointed to by inner.
54         pub is_owned: bool,
55 }
56
57 impl Drop for ChainMonitor {
58         fn drop(&mut self) {
59                 if self.is_owned && !<*mut nativeChainMonitor>::is_null(self.inner) {
60                         let _ = unsafe { Box::from_raw(self.inner) };
61                 }
62         }
63 }
64 /// Frees any resources used by the ChainMonitor, if is_owned is set and inner is non-NULL.
65 #[no_mangle]
66 pub extern "C" fn ChainMonitor_free(this_obj: ChainMonitor) { }
67 #[allow(unused)]
68 /// Used only if an object of this type is returned as a trait impl by a method
69 extern "C" fn ChainMonitor_free_void(this_ptr: *mut c_void) {
70         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeChainMonitor); }
71 }
72 #[allow(unused)]
73 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
74 impl ChainMonitor {
75         pub(crate) fn take_inner(mut self) -> *mut nativeChainMonitor {
76                 assert!(self.is_owned);
77                 let ret = self.inner;
78                 self.inner = std::ptr::null_mut();
79                 ret
80         }
81 }
82 /// Dispatches to per-channel monitors, which are responsible for updating their on-chain view
83 /// of a channel and reacting accordingly based on transactions in the connected block. See
84 /// [`ChannelMonitor::block_connected`] for details. Any HTLCs that were resolved on chain will
85 /// be returned by [`chain::Watch::release_pending_monitor_events`].
86 ///
87 /// Calls back to [`chain::Filter`] if any monitor indicated new outputs to watch. Subsequent
88 /// calls must not exclude any transactions matching the new outputs nor any in-block
89 /// descendants of such transactions. It is not necessary to re-fetch the block to obtain
90 /// updated `txdata`.
91 #[no_mangle]
92 pub extern "C" fn ChainMonitor_block_connected(this_arg: &ChainMonitor, header: *const [u8; 80], mut txdata: crate::c_types::derived::CVec_C2Tuple_usizeTransactionZZ, mut height: u32) {
93         let mut local_txdata = Vec::new(); for mut item in txdata.into_rust().drain(..) { local_txdata.push( { let (mut orig_txdata_0_0, mut orig_txdata_0_1) = item.to_rust(); let mut local_txdata_0 = (orig_txdata_0_0, orig_txdata_0_1.into_bitcoin()); local_txdata_0 }); };
94         unsafe { &*this_arg.inner }.block_connected(&::bitcoin::consensus::encode::deserialize(unsafe { &*header }).unwrap(), &local_txdata.iter().map(|(a, b)| (*a, b)).collect::<Vec<_>>()[..], height)
95 }
96
97 /// Dispatches to per-channel monitors, which are responsible for updating their on-chain view
98 /// of a channel and reacting accordingly to newly confirmed transactions. For details, see
99 /// [`ChannelMonitor::transactions_confirmed`].
100 ///
101 /// Used instead of [`block_connected`] by clients that are notified of transactions rather than
102 /// blocks. May be called before or after [`update_best_block`] for transactions in the
103 /// corresponding block. See [`update_best_block`] for further calling expectations.
104 ///
105 /// [`block_connected`]: Self::block_connected
106 /// [`update_best_block`]: Self::update_best_block
107 #[no_mangle]
108 pub extern "C" fn ChainMonitor_transactions_confirmed(this_arg: &ChainMonitor, header: *const [u8; 80], mut txdata: crate::c_types::derived::CVec_C2Tuple_usizeTransactionZZ, mut height: u32) {
109         let mut local_txdata = Vec::new(); for mut item in txdata.into_rust().drain(..) { local_txdata.push( { let (mut orig_txdata_0_0, mut orig_txdata_0_1) = item.to_rust(); let mut local_txdata_0 = (orig_txdata_0_0, orig_txdata_0_1.into_bitcoin()); local_txdata_0 }); };
110         unsafe { &*this_arg.inner }.transactions_confirmed(&::bitcoin::consensus::encode::deserialize(unsafe { &*header }).unwrap(), &local_txdata.iter().map(|(a, b)| (*a, b)).collect::<Vec<_>>()[..], height)
111 }
112
113 /// Dispatches to per-channel monitors, which are responsible for updating their on-chain view
114 /// of a channel and reacting accordingly based on the new chain tip. For details, see
115 /// [`ChannelMonitor::update_best_block`].
116 ///
117 /// Used instead of [`block_connected`] by clients that are notified of transactions rather than
118 /// blocks. May be called before or after [`transactions_confirmed`] for the corresponding
119 /// block.
120 ///
121 /// Must be called after new blocks become available for the most recent block. Intermediary
122 /// blocks, however, may be safely skipped. In the event of a chain re-organization, this only
123 /// needs to be called for the most recent block assuming `transaction_unconfirmed` is called
124 /// for any affected transactions.
125 ///
126 /// [`block_connected`]: Self::block_connected
127 /// [`transactions_confirmed`]: Self::transactions_confirmed
128 /// [`transaction_unconfirmed`]: Self::transaction_unconfirmed
129 #[no_mangle]
130 pub extern "C" fn ChainMonitor_update_best_block(this_arg: &ChainMonitor, header: *const [u8; 80], mut height: u32) {
131         unsafe { &*this_arg.inner }.update_best_block(&::bitcoin::consensus::encode::deserialize(unsafe { &*header }).unwrap(), height)
132 }
133
134 /// Dispatches to per-channel monitors, which are responsible for updating their on-chain view
135 /// of a channel based on the disconnected block. See [`ChannelMonitor::block_disconnected`] for
136 /// details.
137 #[no_mangle]
138 pub extern "C" fn ChainMonitor_block_disconnected(this_arg: &ChainMonitor, header: *const [u8; 80], mut disconnected_height: u32) {
139         unsafe { &*this_arg.inner }.block_disconnected(&::bitcoin::consensus::encode::deserialize(unsafe { &*header }).unwrap(), disconnected_height)
140 }
141
142 /// Dispatches to per-channel monitors, which are responsible for updating their on-chain view
143 /// of a channel based on transactions unconfirmed as a result of a chain reorganization. See
144 /// [`ChannelMonitor::transaction_unconfirmed`] for details.
145 ///
146 /// Used instead of [`block_disconnected`] by clients that are notified of transactions rather
147 /// than blocks. May be called before or after [`update_best_block`] for transactions in the
148 /// corresponding block. See [`update_best_block`] for further calling expectations. 
149 ///
150 /// [`block_disconnected`]: Self::block_disconnected
151 /// [`update_best_block`]: Self::update_best_block
152 #[no_mangle]
153 pub extern "C" fn ChainMonitor_transaction_unconfirmed(this_arg: &ChainMonitor, txid: *const [u8; 32]) {
154         unsafe { &*this_arg.inner }.transaction_unconfirmed(&::bitcoin::hash_types::Txid::from_slice(&unsafe { &*txid }[..]).unwrap())
155 }
156
157 /// Returns the set of txids that should be monitored for re-organization out of the chain.
158 #[must_use]
159 #[no_mangle]
160 pub extern "C" fn ChainMonitor_get_relevant_txids(this_arg: &ChainMonitor) -> crate::c_types::derived::CVec_TxidZ {
161         let mut ret = unsafe { &*this_arg.inner }.get_relevant_txids();
162         let mut local_ret = Vec::new(); for mut item in ret.drain(..) { local_ret.push( { crate::c_types::ThirtyTwoBytes { data: item.into_inner() } }); };
163         local_ret.into()
164 }
165
166 /// Creates a new `ChainMonitor` used to watch on-chain activity pertaining to channels.
167 ///
168 /// When an optional chain source implementing [`chain::Filter`] is provided, the chain monitor
169 /// will call back to it indicating transactions and outputs of interest. This allows clients to
170 /// pre-filter blocks or only fetch blocks matching a compact filter. Otherwise, clients may
171 /// always need to fetch full blocks absent another means for determining which blocks contain
172 /// transactions relevant to the watched channels.
173 #[must_use]
174 #[no_mangle]
175 pub extern "C" fn ChainMonitor_new(chain_source: *mut crate::chain::Filter, mut broadcaster: crate::chain::chaininterface::BroadcasterInterface, mut logger: crate::util::logger::Logger, mut feeest: crate::chain::chaininterface::FeeEstimator, mut persister: crate::chain::channelmonitor::Persist) -> ChainMonitor {
176         let mut local_chain_source = if chain_source == std::ptr::null_mut() { None } else { Some( { unsafe { *Box::from_raw(chain_source) } }) };
177         let mut ret = lightning::chain::chainmonitor::ChainMonitor::new(local_chain_source, broadcaster, logger, feeest, persister);
178         ChainMonitor { inner: Box::into_raw(Box::new(ret)), is_owned: true }
179 }
180
181 impl From<nativeChainMonitor> for crate::chain::Watch {
182         fn from(obj: nativeChainMonitor) -> Self {
183                 let mut rust_obj = ChainMonitor { inner: Box::into_raw(Box::new(obj)), is_owned: true };
184                 let mut ret = ChainMonitor_as_Watch(&rust_obj);
185                 // We want to free rust_obj when ret gets drop()'d, not rust_obj, so wipe rust_obj's pointer and set ret's free() fn
186                 rust_obj.inner = std::ptr::null_mut();
187                 ret.free = Some(ChainMonitor_free_void);
188                 ret
189         }
190 }
191 /// Constructs a new Watch which calls the relevant methods on this_arg.
192 /// This copies the `inner` pointer in this_arg and thus the returned Watch must be freed before this_arg is
193 #[no_mangle]
194 pub extern "C" fn ChainMonitor_as_Watch(this_arg: &ChainMonitor) -> crate::chain::Watch {
195         crate::chain::Watch {
196                 this_arg: unsafe { (*this_arg).inner as *mut c_void },
197                 free: None,
198                 watch_channel: ChainMonitor_Watch_watch_channel,
199                 update_channel: ChainMonitor_Watch_update_channel,
200                 release_pending_monitor_events: ChainMonitor_Watch_release_pending_monitor_events,
201         }
202 }
203
204 #[must_use]
205 extern "C" fn ChainMonitor_Watch_watch_channel(this_arg: *const c_void, mut funding_outpoint: crate::chain::transaction::OutPoint, mut monitor: crate::chain::channelmonitor::ChannelMonitor) -> crate::c_types::derived::CResult_NoneChannelMonitorUpdateErrZ {
206         let mut ret = <nativeChainMonitor as lightning::chain::Watch<_>>::watch_channel(unsafe { &mut *(this_arg as *mut nativeChainMonitor) }, *unsafe { Box::from_raw(funding_outpoint.take_inner()) }, *unsafe { Box::from_raw(monitor.take_inner()) });
207         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { 0u8 /*o*/ }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::chain::channelmonitor::ChannelMonitorUpdateErr::native_into(e) }).into() };
208         local_ret
209 }
210 #[must_use]
211 extern "C" fn ChainMonitor_Watch_update_channel(this_arg: *const c_void, mut funding_txo: crate::chain::transaction::OutPoint, mut update: crate::chain::channelmonitor::ChannelMonitorUpdate) -> crate::c_types::derived::CResult_NoneChannelMonitorUpdateErrZ {
212         let mut ret = <nativeChainMonitor as lightning::chain::Watch<_>>::update_channel(unsafe { &mut *(this_arg as *mut nativeChainMonitor) }, *unsafe { Box::from_raw(funding_txo.take_inner()) }, *unsafe { Box::from_raw(update.take_inner()) });
213         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { 0u8 /*o*/ }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::chain::channelmonitor::ChannelMonitorUpdateErr::native_into(e) }).into() };
214         local_ret
215 }
216 #[must_use]
217 extern "C" fn ChainMonitor_Watch_release_pending_monitor_events(this_arg: *const c_void) -> crate::c_types::derived::CVec_MonitorEventZ {
218         let mut ret = <nativeChainMonitor as lightning::chain::Watch<_>>::release_pending_monitor_events(unsafe { &mut *(this_arg as *mut nativeChainMonitor) }, );
219         let mut local_ret = Vec::new(); for mut item in ret.drain(..) { local_ret.push( { crate::chain::channelmonitor::MonitorEvent::native_into(item) }); };
220         local_ret.into()
221 }
222
223 impl From<nativeChainMonitor> for crate::util::events::EventsProvider {
224         fn from(obj: nativeChainMonitor) -> Self {
225                 let mut rust_obj = ChainMonitor { inner: Box::into_raw(Box::new(obj)), is_owned: true };
226                 let mut ret = ChainMonitor_as_EventsProvider(&rust_obj);
227                 // We want to free rust_obj when ret gets drop()'d, not rust_obj, so wipe rust_obj's pointer and set ret's free() fn
228                 rust_obj.inner = std::ptr::null_mut();
229                 ret.free = Some(ChainMonitor_free_void);
230                 ret
231         }
232 }
233 /// Constructs a new EventsProvider which calls the relevant methods on this_arg.
234 /// This copies the `inner` pointer in this_arg and thus the returned EventsProvider must be freed before this_arg is
235 #[no_mangle]
236 pub extern "C" fn ChainMonitor_as_EventsProvider(this_arg: &ChainMonitor) -> crate::util::events::EventsProvider {
237         crate::util::events::EventsProvider {
238                 this_arg: unsafe { (*this_arg).inner as *mut c_void },
239                 free: None,
240                 get_and_clear_pending_events: ChainMonitor_EventsProvider_get_and_clear_pending_events,
241         }
242 }
243
244 #[must_use]
245 extern "C" fn ChainMonitor_EventsProvider_get_and_clear_pending_events(this_arg: *const c_void) -> crate::c_types::derived::CVec_EventZ {
246         let mut ret = <nativeChainMonitor as lightning::util::events::EventsProvider<>>::get_and_clear_pending_events(unsafe { &mut *(this_arg as *mut nativeChainMonitor) }, );
247         let mut local_ret = Vec::new(); for mut item in ret.drain(..) { local_ret.push( { crate::util::events::Event::native_into(item) }); };
248         local_ret.into()
249 }
250