ad02608bcbef32e07616ebc37d18312edc934d66
[rust-lightning] / lightning-c-bindings / src / chain / mod.rs
1 //! Structs and traits which allow other parts of rust-lightning to interact with the blockchain.
2
3 use std::ffi::c_void;
4 use bitcoin::hashes::Hash;
5 use crate::c_types::*;
6
7 pub mod chaininterface;
8 pub mod chainmonitor;
9 pub mod channelmonitor;
10 pub mod transaction;
11 pub mod keysinterface;
12 /// An error when accessing the chain via [`Access`].
13 ///
14 /// [`Access`]: trait.Access.html
15 #[must_use]
16 #[derive(Clone)]
17 #[repr(C)]
18 pub enum AccessError {
19         /// The requested chain is unknown.
20         UnknownChain,
21         /// The requested transaction doesn't exist or hasn't confirmed.
22         UnknownTx,
23 }
24 use lightning::chain::AccessError as nativeAccessError;
25 impl AccessError {
26         #[allow(unused)]
27         pub(crate) fn to_native(&self) -> nativeAccessError {
28                 match self {
29                         AccessError::UnknownChain => nativeAccessError::UnknownChain,
30                         AccessError::UnknownTx => nativeAccessError::UnknownTx,
31                 }
32         }
33         #[allow(unused)]
34         pub(crate) fn into_native(self) -> nativeAccessError {
35                 match self {
36                         AccessError::UnknownChain => nativeAccessError::UnknownChain,
37                         AccessError::UnknownTx => nativeAccessError::UnknownTx,
38                 }
39         }
40         #[allow(unused)]
41         pub(crate) fn from_native(native: &nativeAccessError) -> Self {
42                 match native {
43                         nativeAccessError::UnknownChain => AccessError::UnknownChain,
44                         nativeAccessError::UnknownTx => AccessError::UnknownTx,
45                 }
46         }
47         #[allow(unused)]
48         pub(crate) fn native_into(native: nativeAccessError) -> Self {
49                 match native {
50                         nativeAccessError::UnknownChain => AccessError::UnknownChain,
51                         nativeAccessError::UnknownTx => AccessError::UnknownTx,
52                 }
53         }
54 }
55 #[no_mangle]
56 pub extern "C" fn AccessError_clone(orig: &AccessError) -> AccessError {
57         orig.clone()
58 }
59 /// The `Access` trait defines behavior for accessing chain data and state, such as blocks and
60 /// UTXOs.
61 #[repr(C)]
62 pub struct Access {
63         pub this_arg: *mut c_void,
64         /// Returns the transaction output of a funding transaction encoded by [`short_channel_id`].
65         /// Returns an error if `genesis_hash` is for a different chain or if such a transaction output
66         /// is unknown.
67         ///
68         /// [`short_channel_id`]: https://github.com/lightningnetwork/lightning-rfc/blob/master/07-routing-gossip.md#definition-of-short_channel_id
69         #[must_use]
70         pub get_utxo: extern "C" fn (this_arg: *const c_void, genesis_hash: *const [u8; 32], short_channel_id: u64) -> crate::c_types::derived::CResult_TxOutAccessErrorZ,
71         pub free: Option<extern "C" fn(this_arg: *mut c_void)>,
72 }
73 unsafe impl Send for Access {}
74 unsafe impl Sync for Access {}
75
76 use lightning::chain::Access as rustAccess;
77 impl rustAccess for Access {
78         fn get_utxo(&self, genesis_hash: &bitcoin::hash_types::BlockHash, short_channel_id: u64) -> Result<bitcoin::blockdata::transaction::TxOut, lightning::chain::AccessError> {
79                 let mut ret = (self.get_utxo)(self.this_arg, genesis_hash.as_inner(), short_channel_id);
80                 let mut local_ret = match ret.result_ok { true => Ok( { (*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.result)) }).into_rust() }), false => Err( { (*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.err)) }).into_native() })};
81                 local_ret
82         }
83 }
84
85 // We're essentially a pointer already, or at least a set of pointers, so allow us to be used
86 // directly as a Deref trait in higher-level structs:
87 impl std::ops::Deref for Access {
88         type Target = Self;
89         fn deref(&self) -> &Self {
90                 self
91         }
92 }
93 /// Calls the free function if one is set
94 #[no_mangle]
95 pub extern "C" fn Access_free(this_ptr: Access) { }
96 impl Drop for Access {
97         fn drop(&mut self) {
98                 if let Some(f) = self.free {
99                         f(self.this_arg);
100                 }
101         }
102 }
103 /// The `Watch` trait defines behavior for watching on-chain activity pertaining to channels as
104 /// blocks are connected and disconnected.
105 ///
106 /// Each channel is associated with a [`ChannelMonitor`]. Implementations of this trait are
107 /// responsible for maintaining a set of monitors such that they can be updated accordingly as
108 /// channel state changes and HTLCs are resolved. See method documentation for specific
109 /// requirements.
110 ///
111 /// Implementations **must** ensure that updates are successfully applied and persisted upon method
112 /// completion. If an update fails with a [`PermanentFailure`], then it must immediately shut down
113 /// without taking any further action such as persisting the current state.
114 ///
115 /// If an implementation maintains multiple instances of a channel's monitor (e.g., by storing
116 /// backup copies), then it must ensure that updates are applied across all instances. Otherwise, it
117 /// could result in a revoked transaction being broadcast, allowing the counterparty to claim all
118 /// funds in the channel. See [`ChannelMonitorUpdateErr`] for more details about how to handle
119 /// multiple instances.
120 ///
121 /// [`ChannelMonitor`]: channelmonitor/struct.ChannelMonitor.html
122 /// [`ChannelMonitorUpdateErr`]: channelmonitor/enum.ChannelMonitorUpdateErr.html
123 /// [`PermanentFailure`]: channelmonitor/enum.ChannelMonitorUpdateErr.html#variant.PermanentFailure
124 #[repr(C)]
125 pub struct Watch {
126         pub this_arg: *mut c_void,
127         /// Watches a channel identified by `funding_txo` using `monitor`.
128         ///
129         /// Implementations are responsible for watching the chain for the funding transaction along
130         /// with any spends of outputs returned by [`get_outputs_to_watch`]. In practice, this means
131         /// calling [`block_connected`] and [`block_disconnected`] on the monitor.
132         ///
133         /// [`get_outputs_to_watch`]: channelmonitor/struct.ChannelMonitor.html#method.get_outputs_to_watch
134         /// [`block_connected`]: channelmonitor/struct.ChannelMonitor.html#method.block_connected
135         /// [`block_disconnected`]: channelmonitor/struct.ChannelMonitor.html#method.block_disconnected
136         #[must_use]
137         pub watch_channel: extern "C" fn (this_arg: *const c_void, funding_txo: crate::chain::transaction::OutPoint, monitor: crate::chain::channelmonitor::ChannelMonitor) -> crate::c_types::derived::CResult_NoneChannelMonitorUpdateErrZ,
138         /// Updates a channel identified by `funding_txo` by applying `update` to its monitor.
139         ///
140         /// Implementations must call [`update_monitor`] with the given update. See
141         /// [`ChannelMonitorUpdateErr`] for invariants around returning an error.
142         ///
143         /// [`update_monitor`]: channelmonitor/struct.ChannelMonitor.html#method.update_monitor
144         /// [`ChannelMonitorUpdateErr`]: channelmonitor/enum.ChannelMonitorUpdateErr.html
145         #[must_use]
146         pub update_channel: extern "C" fn (this_arg: *const c_void, funding_txo: crate::chain::transaction::OutPoint, update: crate::chain::channelmonitor::ChannelMonitorUpdate) -> crate::c_types::derived::CResult_NoneChannelMonitorUpdateErrZ,
147         /// Returns any monitor events since the last call. Subsequent calls must only return new
148         /// events.
149         #[must_use]
150         pub release_pending_monitor_events: extern "C" fn (this_arg: *const c_void) -> crate::c_types::derived::CVec_MonitorEventZ,
151         pub free: Option<extern "C" fn(this_arg: *mut c_void)>,
152 }
153 unsafe impl Send for Watch {}
154 unsafe impl Sync for Watch {}
155
156 use lightning::chain::Watch as rustWatch;
157 impl rustWatch<crate::chain::keysinterface::Sign> for Watch {
158         fn watch_channel(&self, funding_txo: lightning::chain::transaction::OutPoint, monitor: lightning::chain::channelmonitor::ChannelMonitor<crate::chain::keysinterface::Sign>) -> Result<(), lightning::chain::channelmonitor::ChannelMonitorUpdateErr> {
159                 let mut ret = (self.watch_channel)(self.this_arg, crate::chain::transaction::OutPoint { inner: Box::into_raw(Box::new(funding_txo)), is_owned: true }, crate::chain::channelmonitor::ChannelMonitor { inner: Box::into_raw(Box::new(monitor)), is_owned: true });
160                 let mut local_ret = match ret.result_ok { true => Ok( { () /*(*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.result)) })*/ }), false => Err( { (*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.err)) }).into_native() })};
161                 local_ret
162         }
163         fn update_channel(&self, funding_txo: lightning::chain::transaction::OutPoint, update: lightning::chain::channelmonitor::ChannelMonitorUpdate) -> Result<(), lightning::chain::channelmonitor::ChannelMonitorUpdateErr> {
164                 let mut ret = (self.update_channel)(self.this_arg, crate::chain::transaction::OutPoint { inner: Box::into_raw(Box::new(funding_txo)), is_owned: true }, crate::chain::channelmonitor::ChannelMonitorUpdate { inner: Box::into_raw(Box::new(update)), is_owned: true });
165                 let mut local_ret = match ret.result_ok { true => Ok( { () /*(*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.result)) })*/ }), false => Err( { (*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.err)) }).into_native() })};
166                 local_ret
167         }
168         fn release_pending_monitor_events(&self) -> Vec<lightning::chain::channelmonitor::MonitorEvent> {
169                 let mut ret = (self.release_pending_monitor_events)(self.this_arg);
170                 let mut local_ret = Vec::new(); for mut item in ret.into_rust().drain(..) { local_ret.push( { item.into_native() }); };
171                 local_ret
172         }
173 }
174
175 // We're essentially a pointer already, or at least a set of pointers, so allow us to be used
176 // directly as a Deref trait in higher-level structs:
177 impl std::ops::Deref for Watch {
178         type Target = Self;
179         fn deref(&self) -> &Self {
180                 self
181         }
182 }
183 /// Calls the free function if one is set
184 #[no_mangle]
185 pub extern "C" fn Watch_free(this_ptr: Watch) { }
186 impl Drop for Watch {
187         fn drop(&mut self) {
188                 if let Some(f) = self.free {
189                         f(self.this_arg);
190                 }
191         }
192 }
193 /// The `Filter` trait defines behavior for indicating chain activity of interest pertaining to
194 /// channels.
195 ///
196 /// This is useful in order to have a [`Watch`] implementation convey to a chain source which
197 /// transactions to be notified of. Notification may take the form of pre-filtering blocks or, in
198 /// the case of [BIP 157]/[BIP 158], only fetching a block if the compact filter matches. If
199 /// receiving full blocks from a chain source, any further filtering is unnecessary.
200 ///
201 /// After an output has been registered, subsequent block retrievals from the chain source must not
202 /// exclude any transactions matching the new criteria nor any in-block descendants of such
203 /// transactions.
204 ///
205 /// Note that use as part of a [`Watch`] implementation involves reentrancy. Therefore, the `Filter`
206 /// should not block on I/O. Implementations should instead queue the newly monitored data to be
207 /// processed later. Then, in order to block until the data has been processed, any `Watch`
208 /// invocation that has called the `Filter` must return [`TemporaryFailure`].
209 ///
210 /// [`Watch`]: trait.Watch.html
211 /// [`TemporaryFailure`]: channelmonitor/enum.ChannelMonitorUpdateErr.html#variant.TemporaryFailure
212 /// [BIP 157]: https://github.com/bitcoin/bips/blob/master/bip-0157.mediawiki
213 /// [BIP 158]: https://github.com/bitcoin/bips/blob/master/bip-0158.mediawiki
214 #[repr(C)]
215 pub struct Filter {
216         pub this_arg: *mut c_void,
217         /// Registers interest in a transaction with `txid` and having an output with `script_pubkey` as
218         /// a spending condition.
219         pub register_tx: extern "C" fn (this_arg: *const c_void, txid: *const [u8; 32], script_pubkey: crate::c_types::u8slice),
220         /// Registers interest in spends of a transaction output identified by `outpoint` having
221         /// `script_pubkey` as the spending condition.
222         pub register_output: extern "C" fn (this_arg: *const c_void, outpoint: &crate::chain::transaction::OutPoint, script_pubkey: crate::c_types::u8slice),
223         pub free: Option<extern "C" fn(this_arg: *mut c_void)>,
224 }
225 unsafe impl Send for Filter {}
226 unsafe impl Sync for Filter {}
227
228 use lightning::chain::Filter as rustFilter;
229 impl rustFilter for Filter {
230         fn register_tx(&self, txid: &bitcoin::hash_types::Txid, script_pubkey: &bitcoin::blockdata::script::Script) {
231                 (self.register_tx)(self.this_arg, txid.as_inner(), crate::c_types::u8slice::from_slice(&script_pubkey[..]))
232         }
233         fn register_output(&self, outpoint: &lightning::chain::transaction::OutPoint, script_pubkey: &bitcoin::blockdata::script::Script) {
234                 (self.register_output)(self.this_arg, &crate::chain::transaction::OutPoint { inner: unsafe { (outpoint as *const _) as *mut _ }, is_owned: false }, crate::c_types::u8slice::from_slice(&script_pubkey[..]))
235         }
236 }
237
238 // We're essentially a pointer already, or at least a set of pointers, so allow us to be used
239 // directly as a Deref trait in higher-level structs:
240 impl std::ops::Deref for Filter {
241         type Target = Self;
242         fn deref(&self) -> &Self {
243                 self
244         }
245 }
246 /// Calls the free function if one is set
247 #[no_mangle]
248 pub extern "C" fn Filter_free(this_ptr: Filter) { }
249 impl Drop for Filter {
250         fn drop(&mut self) {
251                 if let Some(f) = self.free {
252                         f(self.this_arg);
253                 }
254         }
255 }