3103a283bb668842ab77349c1c6ce0137ec0471b
[rust-lightning] / lightning-c-bindings / src / chain / keysinterface.rs
1 //! keysinterface provides keys into rust-lightning and defines some useful enums which describe
2 //! spendable on-chain outputs which the user owns and is responsible for using just as any other
3 //! on-chain output which is theirs.
4
5 use std::ffi::c_void;
6 use bitcoin::hashes::Hash;
7 use crate::c_types::*;
8
9 /// When on-chain outputs are created by rust-lightning (which our counterparty is not able to
10 /// claim at any point in the future) an event is generated which you must track and be able to
11 /// spend on-chain. The information needed to do this is provided in this enum, including the
12 /// outpoint describing which txid and output index is available, the full output which exists at
13 /// that txid/index, and any keys or other information required to sign.
14 #[must_use]
15 #[derive(Clone)]
16 #[repr(C)]
17 pub enum SpendableOutputDescriptor {
18         /// An output to a script which was provided via KeysInterface, thus you should already know
19         /// how to spend it. No keys are provided as rust-lightning was never given any keys - only the
20         /// script_pubkey as it appears in the output.
21         /// These may include outputs from a transaction punishing our counterparty or claiming an HTLC
22         /// on-chain using the payment preimage or after it has timed out.
23         StaticOutput {
24                 outpoint: crate::chain::transaction::OutPoint,
25                 output: crate::c_types::TxOut,
26         },
27         /// An output to a P2WSH script which can be spent with a single signature after a CSV delay.
28         ///
29         /// The witness in the spending input should be:
30         /// <BIP 143 signature> <empty vector> (MINIMALIF standard rule) <provided witnessScript>
31         ///
32         /// Note that the nSequence field in the spending input must be set to to_self_delay
33         /// (which means the transaction is not broadcastable until at least to_self_delay
34         /// blocks after the outpoint confirms).
35         ///
36         /// These are generally the result of a \"revocable\" output to us, spendable only by us unless
37         /// it is an output from an old state which we broadcast (which should never happen).
38         ///
39         /// To derive the delayed_payment key which is used to sign for this input, you must pass the
40         /// holder delayed_payment_base_key (ie the private key which corresponds to the pubkey in
41         /// ChannelKeys::pubkeys().delayed_payment_basepoint) and the provided per_commitment_point to
42         /// chan_utils::derive_private_key. The public key can be generated without the secret key
43         /// using chan_utils::derive_public_key and only the delayed_payment_basepoint which appears in
44         /// ChannelKeys::pubkeys().
45         ///
46         /// To derive the revocation_pubkey provided here (which is used in the witness
47         /// script generation), you must pass the counterparty revocation_basepoint (which appears in the
48         /// call to ChannelKeys::ready_channel) and the provided per_commitment point
49         /// to chan_utils::derive_public_revocation_key.
50         ///
51         /// The witness script which is hashed and included in the output script_pubkey may be
52         /// regenerated by passing the revocation_pubkey (derived as above), our delayed_payment pubkey
53         /// (derived as above), and the to_self_delay contained here to
54         /// chan_utils::get_revokeable_redeemscript.
55         DynamicOutputP2WSH {
56                 outpoint: crate::chain::transaction::OutPoint,
57                 per_commitment_point: crate::c_types::PublicKey,
58                 to_self_delay: u16,
59                 output: crate::c_types::TxOut,
60                 key_derivation_params: crate::c_types::derived::C2Tuple_u64u64Z,
61                 revocation_pubkey: crate::c_types::PublicKey,
62         },
63         /// An output to a P2WPKH, spendable exclusively by our payment key (ie the private key which
64         /// corresponds to the public key in ChannelKeys::pubkeys().payment_point).
65         /// The witness in the spending input, is, thus, simply:
66         /// <BIP 143 signature> <payment key>
67         ///
68         /// These are generally the result of our counterparty having broadcast the current state,
69         /// allowing us to claim the non-HTLC-encumbered outputs immediately.
70         StaticOutputCounterpartyPayment {
71                 outpoint: crate::chain::transaction::OutPoint,
72                 output: crate::c_types::TxOut,
73                 key_derivation_params: crate::c_types::derived::C2Tuple_u64u64Z,
74         },
75 }
76 use lightning::chain::keysinterface::SpendableOutputDescriptor as nativeSpendableOutputDescriptor;
77 impl SpendableOutputDescriptor {
78         #[allow(unused)]
79         pub(crate) fn to_native(&self) -> nativeSpendableOutputDescriptor {
80                 match self {
81                         SpendableOutputDescriptor::StaticOutput {ref outpoint, ref output, } => {
82                                 let mut outpoint_nonref = (*outpoint).clone();
83                                 let mut output_nonref = (*output).clone();
84                                 nativeSpendableOutputDescriptor::StaticOutput {
85                                         outpoint: *unsafe { Box::from_raw(outpoint_nonref.take_ptr()) },
86                                         output: output_nonref.into_rust(),
87                                 }
88                         },
89                         SpendableOutputDescriptor::DynamicOutputP2WSH {ref outpoint, ref per_commitment_point, ref to_self_delay, ref output, ref key_derivation_params, ref revocation_pubkey, } => {
90                                 let mut outpoint_nonref = (*outpoint).clone();
91                                 let mut per_commitment_point_nonref = (*per_commitment_point).clone();
92                                 let mut to_self_delay_nonref = (*to_self_delay).clone();
93                                 let mut output_nonref = (*output).clone();
94                                 let mut key_derivation_params_nonref = (*key_derivation_params).clone();
95                                 let (mut orig_key_derivation_params_nonref_0, mut orig_key_derivation_params_nonref_1) = key_derivation_params_nonref.to_rust(); let mut local_key_derivation_params_nonref = (orig_key_derivation_params_nonref_0, orig_key_derivation_params_nonref_1);
96                                 let mut revocation_pubkey_nonref = (*revocation_pubkey).clone();
97                                 nativeSpendableOutputDescriptor::DynamicOutputP2WSH {
98                                         outpoint: *unsafe { Box::from_raw(outpoint_nonref.take_ptr()) },
99                                         per_commitment_point: per_commitment_point_nonref.into_rust(),
100                                         to_self_delay: to_self_delay_nonref,
101                                         output: output_nonref.into_rust(),
102                                         key_derivation_params: local_key_derivation_params_nonref,
103                                         revocation_pubkey: revocation_pubkey_nonref.into_rust(),
104                                 }
105                         },
106                         SpendableOutputDescriptor::StaticOutputCounterpartyPayment {ref outpoint, ref output, ref key_derivation_params, } => {
107                                 let mut outpoint_nonref = (*outpoint).clone();
108                                 let mut output_nonref = (*output).clone();
109                                 let mut key_derivation_params_nonref = (*key_derivation_params).clone();
110                                 let (mut orig_key_derivation_params_nonref_0, mut orig_key_derivation_params_nonref_1) = key_derivation_params_nonref.to_rust(); let mut local_key_derivation_params_nonref = (orig_key_derivation_params_nonref_0, orig_key_derivation_params_nonref_1);
111                                 nativeSpendableOutputDescriptor::StaticOutputCounterpartyPayment {
112                                         outpoint: *unsafe { Box::from_raw(outpoint_nonref.take_ptr()) },
113                                         output: output_nonref.into_rust(),
114                                         key_derivation_params: local_key_derivation_params_nonref,
115                                 }
116                         },
117                 }
118         }
119         #[allow(unused)]
120         pub(crate) fn into_native(self) -> nativeSpendableOutputDescriptor {
121                 match self {
122                         SpendableOutputDescriptor::StaticOutput {mut outpoint, mut output, } => {
123                                 nativeSpendableOutputDescriptor::StaticOutput {
124                                         outpoint: *unsafe { Box::from_raw(outpoint.take_ptr()) },
125                                         output: output.into_rust(),
126                                 }
127                         },
128                         SpendableOutputDescriptor::DynamicOutputP2WSH {mut outpoint, mut per_commitment_point, mut to_self_delay, mut output, mut key_derivation_params, mut revocation_pubkey, } => {
129                                 let (mut orig_key_derivation_params_0, mut orig_key_derivation_params_1) = key_derivation_params.to_rust(); let mut local_key_derivation_params = (orig_key_derivation_params_0, orig_key_derivation_params_1);
130                                 nativeSpendableOutputDescriptor::DynamicOutputP2WSH {
131                                         outpoint: *unsafe { Box::from_raw(outpoint.take_ptr()) },
132                                         per_commitment_point: per_commitment_point.into_rust(),
133                                         to_self_delay: to_self_delay,
134                                         output: output.into_rust(),
135                                         key_derivation_params: local_key_derivation_params,
136                                         revocation_pubkey: revocation_pubkey.into_rust(),
137                                 }
138                         },
139                         SpendableOutputDescriptor::StaticOutputCounterpartyPayment {mut outpoint, mut output, mut key_derivation_params, } => {
140                                 let (mut orig_key_derivation_params_0, mut orig_key_derivation_params_1) = key_derivation_params.to_rust(); let mut local_key_derivation_params = (orig_key_derivation_params_0, orig_key_derivation_params_1);
141                                 nativeSpendableOutputDescriptor::StaticOutputCounterpartyPayment {
142                                         outpoint: *unsafe { Box::from_raw(outpoint.take_ptr()) },
143                                         output: output.into_rust(),
144                                         key_derivation_params: local_key_derivation_params,
145                                 }
146                         },
147                 }
148         }
149         #[allow(unused)]
150         pub(crate) fn from_native(native: &nativeSpendableOutputDescriptor) -> Self {
151                 match native {
152                         nativeSpendableOutputDescriptor::StaticOutput {ref outpoint, ref output, } => {
153                                 let mut outpoint_nonref = (*outpoint).clone();
154                                 let mut output_nonref = (*output).clone();
155                                 SpendableOutputDescriptor::StaticOutput {
156                                         outpoint: crate::chain::transaction::OutPoint { inner: Box::into_raw(Box::new(outpoint_nonref)), is_owned: true },
157                                         output: crate::c_types::TxOut::from_rust(output_nonref),
158                                 }
159                         },
160                         nativeSpendableOutputDescriptor::DynamicOutputP2WSH {ref outpoint, ref per_commitment_point, ref to_self_delay, ref output, ref key_derivation_params, ref revocation_pubkey, } => {
161                                 let mut outpoint_nonref = (*outpoint).clone();
162                                 let mut per_commitment_point_nonref = (*per_commitment_point).clone();
163                                 let mut to_self_delay_nonref = (*to_self_delay).clone();
164                                 let mut output_nonref = (*output).clone();
165                                 let mut key_derivation_params_nonref = (*key_derivation_params).clone();
166                                 let (mut orig_key_derivation_params_nonref_0, mut orig_key_derivation_params_nonref_1) = key_derivation_params_nonref; let mut local_key_derivation_params_nonref = (orig_key_derivation_params_nonref_0, orig_key_derivation_params_nonref_1).into();
167                                 let mut revocation_pubkey_nonref = (*revocation_pubkey).clone();
168                                 SpendableOutputDescriptor::DynamicOutputP2WSH {
169                                         outpoint: crate::chain::transaction::OutPoint { inner: Box::into_raw(Box::new(outpoint_nonref)), is_owned: true },
170                                         per_commitment_point: crate::c_types::PublicKey::from_rust(&per_commitment_point_nonref),
171                                         to_self_delay: to_self_delay_nonref,
172                                         output: crate::c_types::TxOut::from_rust(output_nonref),
173                                         key_derivation_params: local_key_derivation_params_nonref,
174                                         revocation_pubkey: crate::c_types::PublicKey::from_rust(&revocation_pubkey_nonref),
175                                 }
176                         },
177                         nativeSpendableOutputDescriptor::StaticOutputCounterpartyPayment {ref outpoint, ref output, ref key_derivation_params, } => {
178                                 let mut outpoint_nonref = (*outpoint).clone();
179                                 let mut output_nonref = (*output).clone();
180                                 let mut key_derivation_params_nonref = (*key_derivation_params).clone();
181                                 let (mut orig_key_derivation_params_nonref_0, mut orig_key_derivation_params_nonref_1) = key_derivation_params_nonref; let mut local_key_derivation_params_nonref = (orig_key_derivation_params_nonref_0, orig_key_derivation_params_nonref_1).into();
182                                 SpendableOutputDescriptor::StaticOutputCounterpartyPayment {
183                                         outpoint: crate::chain::transaction::OutPoint { inner: Box::into_raw(Box::new(outpoint_nonref)), is_owned: true },
184                                         output: crate::c_types::TxOut::from_rust(output_nonref),
185                                         key_derivation_params: local_key_derivation_params_nonref,
186                                 }
187                         },
188                 }
189         }
190         #[allow(unused)]
191         pub(crate) fn native_into(native: nativeSpendableOutputDescriptor) -> Self {
192                 match native {
193                         nativeSpendableOutputDescriptor::StaticOutput {mut outpoint, mut output, } => {
194                                 SpendableOutputDescriptor::StaticOutput {
195                                         outpoint: crate::chain::transaction::OutPoint { inner: Box::into_raw(Box::new(outpoint)), is_owned: true },
196                                         output: crate::c_types::TxOut::from_rust(output),
197                                 }
198                         },
199                         nativeSpendableOutputDescriptor::DynamicOutputP2WSH {mut outpoint, mut per_commitment_point, mut to_self_delay, mut output, mut key_derivation_params, mut revocation_pubkey, } => {
200                                 let (mut orig_key_derivation_params_0, mut orig_key_derivation_params_1) = key_derivation_params; let mut local_key_derivation_params = (orig_key_derivation_params_0, orig_key_derivation_params_1).into();
201                                 SpendableOutputDescriptor::DynamicOutputP2WSH {
202                                         outpoint: crate::chain::transaction::OutPoint { inner: Box::into_raw(Box::new(outpoint)), is_owned: true },
203                                         per_commitment_point: crate::c_types::PublicKey::from_rust(&per_commitment_point),
204                                         to_self_delay: to_self_delay,
205                                         output: crate::c_types::TxOut::from_rust(output),
206                                         key_derivation_params: local_key_derivation_params,
207                                         revocation_pubkey: crate::c_types::PublicKey::from_rust(&revocation_pubkey),
208                                 }
209                         },
210                         nativeSpendableOutputDescriptor::StaticOutputCounterpartyPayment {mut outpoint, mut output, mut key_derivation_params, } => {
211                                 let (mut orig_key_derivation_params_0, mut orig_key_derivation_params_1) = key_derivation_params; let mut local_key_derivation_params = (orig_key_derivation_params_0, orig_key_derivation_params_1).into();
212                                 SpendableOutputDescriptor::StaticOutputCounterpartyPayment {
213                                         outpoint: crate::chain::transaction::OutPoint { inner: Box::into_raw(Box::new(outpoint)), is_owned: true },
214                                         output: crate::c_types::TxOut::from_rust(output),
215                                         key_derivation_params: local_key_derivation_params,
216                                 }
217                         },
218                 }
219         }
220 }
221 #[no_mangle]
222 pub extern "C" fn SpendableOutputDescriptor_free(this_ptr: SpendableOutputDescriptor) { }
223 #[no_mangle]
224 pub extern "C" fn SpendableOutputDescriptor_clone(orig: &SpendableOutputDescriptor) -> SpendableOutputDescriptor {
225         orig.clone()
226 }
227 /// Set of lightning keys needed to operate a channel as described in BOLT 3.
228 ///
229 /// Signing services could be implemented on a hardware wallet. In this case,
230 /// the current ChannelKeys would be a front-end on top of a communication
231 /// channel connected to your secure device and lightning key material wouldn't
232 /// reside on a hot server. Nevertheless, a this deployment would still need
233 /// to trust the ChannelManager to avoid loss of funds as this latest component
234 /// could ask to sign commitment transaction with HTLCs paying to attacker pubkeys.
235 ///
236 /// A more secure iteration would be to use hashlock (or payment points) to pair
237 /// invoice/incoming HTLCs with outgoing HTLCs to implement a no-trust-ChannelManager
238 /// at the price of more state and computation on the hardware wallet side. In the future,
239 /// we are looking forward to design such interface.
240 ///
241 /// In any case, ChannelMonitor or fallback watchtowers are always going to be trusted
242 /// to act, as liveness and breach reply correctness are always going to be hard requirements
243 /// of LN security model, orthogonal of key management issues.
244 ///
245 /// If you're implementing a custom signer, you almost certainly want to implement
246 /// Readable/Writable to serialize out a unique reference to this set of keys so
247 /// that you can serialize the full ChannelManager object.
248 ///
249 #[repr(C)]
250 pub struct ChannelKeys {
251         pub this_arg: *mut c_void,
252         /// Gets the per-commitment point for a specific commitment number
253         ///
254         /// Note that the commitment number starts at (1 << 48) - 1 and counts backwards.
255         #[must_use]
256         pub get_per_commitment_point: extern "C" fn (this_arg: *const c_void, idx: u64) -> crate::c_types::PublicKey,
257         /// Gets the commitment secret for a specific commitment number as part of the revocation process
258         ///
259         /// An external signer implementation should error here if the commitment was already signed
260         /// and should refuse to sign it in the future.
261         ///
262         /// May be called more than once for the same index.
263         ///
264         /// Note that the commitment number starts at (1 << 48) - 1 and counts backwards.
265         /// TODO: return a Result so we can signal a validation error
266         #[must_use]
267         pub release_commitment_secret: extern "C" fn (this_arg: *const c_void, idx: u64) -> crate::c_types::ThirtyTwoBytes,
268         /// Gets the holder's channel public keys and basepoints
269         pub pubkeys: crate::ln::chan_utils::ChannelPublicKeys,
270         /// Fill in the pubkeys field as a reference to it will be given to Rust after this returns
271         /// Note that this takes a pointer to this object, not the this_ptr like other methods do
272         /// This function pointer may be NULL if pubkeys is filled in when this object is created and never needs updating.
273         pub set_pubkeys: Option<extern "C" fn(&ChannelKeys)>,
274         /// Gets arbitrary identifiers describing the set of keys which are provided back to you in
275         /// some SpendableOutputDescriptor types. These should be sufficient to identify this
276         /// ChannelKeys object uniquely and lookup or re-derive its keys.
277         #[must_use]
278         pub key_derivation_params: extern "C" fn (this_arg: *const c_void) -> crate::c_types::derived::C2Tuple_u64u64Z,
279         /// Create a signature for a counterparty's commitment transaction and associated HTLC transactions.
280         ///
281         /// Note that if signing fails or is rejected, the channel will be force-closed.
282         #[must_use]
283         pub sign_counterparty_commitment: extern "C" fn (this_arg: *const c_void, commitment_tx: &crate::ln::chan_utils::CommitmentTransaction) -> crate::c_types::derived::CResult_C2Tuple_SignatureCVec_SignatureZZNoneZ,
284         /// Create a signature for a holder's commitment transaction. This will only ever be called with
285         /// the same commitment_tx (or a copy thereof), though there are currently no guarantees
286         /// that it will not be called multiple times.
287         /// An external signer implementation should check that the commitment has not been revoked.
288         #[must_use]
289         pub sign_holder_commitment: extern "C" fn (this_arg: *const c_void, commitment_tx: &crate::ln::chan_utils::HolderCommitmentTransaction) -> crate::c_types::derived::CResult_SignatureNoneZ,
290         /// Create a signature for each HTLC transaction spending a holder's commitment transaction.
291         ///
292         /// Unlike sign_holder_commitment, this may be called multiple times with *different*
293         /// commitment_tx values. While this will never be called with a revoked
294         /// commitment_tx, it is possible that it is called with the second-latest
295         /// commitment_tx (only if we haven't yet revoked it) if some watchtower/secondary
296         /// ChannelMonitor decided to broadcast before it had been updated to the latest.
297         ///
298         /// Either an Err should be returned, or a Vec with one entry for each HTLC which exists in
299         /// commitment_tx.
300         #[must_use]
301         pub sign_holder_commitment_htlc_transactions: extern "C" fn (this_arg: *const c_void, commitment_tx: &crate::ln::chan_utils::HolderCommitmentTransaction) -> crate::c_types::derived::CResult_CVec_SignatureZNoneZ,
302         /// Create a signature for the given input in a transaction spending an HTLC or commitment
303         /// transaction output when our counterparty broadcasts an old state.
304         ///
305         /// A justice transaction may claim multiples outputs at the same time if timelocks are
306         /// similar, but only a signature for the input at index `input` should be signed for here.
307         /// It may be called multiples time for same output(s) if a fee-bump is needed with regards
308         /// to an upcoming timelock expiration.
309         ///
310         /// Amount is value of the output spent by this input, committed to in the BIP 143 signature.
311         ///
312         /// per_commitment_key is revocation secret which was provided by our counterparty when they
313         /// revoked the state which they eventually broadcast. It's not a _holder_ secret key and does
314         /// not allow the spending of any funds by itself (you need our holder revocation_secret to do
315         /// so).
316         ///
317         /// htlc holds HTLC elements (hash, timelock) if the output being spent is a HTLC output, thus
318         /// changing the format of the witness script (which is committed to in the BIP 143
319         /// signatures).
320         #[must_use]
321         pub sign_justice_transaction: extern "C" fn (this_arg: *const c_void, justice_tx: crate::c_types::Transaction, input: usize, amount: u64, per_commitment_key: *const [u8; 32], htlc: &crate::ln::chan_utils::HTLCOutputInCommitment) -> crate::c_types::derived::CResult_SignatureNoneZ,
322         /// Create a signature for a claiming transaction for a HTLC output on a counterparty's commitment
323         /// transaction, either offered or received.
324         ///
325         /// Such a transaction may claim multiples offered outputs at same time if we know the
326         /// preimage for each when we create it, but only the input at index `input` should be
327         /// signed for here. It may be called multiple times for same output(s) if a fee-bump is
328         /// needed with regards to an upcoming timelock expiration.
329         ///
330         /// Witness_script is either a offered or received script as defined in BOLT3 for HTLC
331         /// outputs.
332         ///
333         /// Amount is value of the output spent by this input, committed to in the BIP 143 signature.
334         ///
335         /// Per_commitment_point is the dynamic point corresponding to the channel state
336         /// detected onchain. It has been generated by our counterparty and is used to derive
337         /// channel state keys, which are then included in the witness script and committed to in the
338         /// BIP 143 signature.
339         #[must_use]
340         pub sign_counterparty_htlc_transaction: extern "C" fn (this_arg: *const c_void, htlc_tx: crate::c_types::Transaction, input: usize, amount: u64, per_commitment_point: crate::c_types::PublicKey, htlc: &crate::ln::chan_utils::HTLCOutputInCommitment) -> crate::c_types::derived::CResult_SignatureNoneZ,
341         /// Create a signature for a (proposed) closing transaction.
342         ///
343         /// Note that, due to rounding, there may be one \"missing\" satoshi, and either party may have
344         /// chosen to forgo their output as dust.
345         #[must_use]
346         pub sign_closing_transaction: extern "C" fn (this_arg: *const c_void, closing_tx: crate::c_types::Transaction) -> crate::c_types::derived::CResult_SignatureNoneZ,
347         /// Signs a channel announcement message with our funding key, proving it comes from one
348         /// of the channel participants.
349         ///
350         /// Note that if this fails or is rejected, the channel will not be publicly announced and
351         /// our counterparty may (though likely will not) close the channel on us for violating the
352         /// protocol.
353         #[must_use]
354         pub sign_channel_announcement: extern "C" fn (this_arg: *const c_void, msg: &crate::ln::msgs::UnsignedChannelAnnouncement) -> crate::c_types::derived::CResult_SignatureNoneZ,
355         /// Set the counterparty static channel data, including basepoints,
356         /// counterparty_selected/holder_selected_contest_delay and funding outpoint.
357         /// This is done as soon as the funding outpoint is known.  Since these are static channel data,
358         /// they MUST NOT be allowed to change to different values once set.
359         ///
360         /// channel_parameters.is_populated() MUST be true.
361         ///
362         /// We bind holder_selected_contest_delay late here for API convenience.
363         ///
364         /// Will be called before any signatures are applied.
365         pub ready_channel: extern "C" fn (this_arg: *mut c_void, channel_parameters: &crate::ln::chan_utils::ChannelTransactionParameters),
366         pub clone: Option<extern "C" fn (this_arg: *const c_void) -> *mut c_void>,
367         pub write: extern "C" fn (this_arg: *const c_void) -> crate::c_types::derived::CVec_u8Z,
368         pub free: Option<extern "C" fn(this_arg: *mut c_void)>,
369 }
370 unsafe impl Send for ChannelKeys {}
371 #[no_mangle]
372 pub extern "C" fn ChannelKeys_clone(orig: &ChannelKeys) -> ChannelKeys {
373         ChannelKeys {
374                 this_arg: if let Some(f) = orig.clone { (f)(orig.this_arg) } else { orig.this_arg },
375                 get_per_commitment_point: orig.get_per_commitment_point.clone(),
376                 release_commitment_secret: orig.release_commitment_secret.clone(),
377                 pubkeys: orig.pubkeys.clone(),
378                 set_pubkeys: orig.set_pubkeys.clone(),
379                 key_derivation_params: orig.key_derivation_params.clone(),
380                 sign_counterparty_commitment: orig.sign_counterparty_commitment.clone(),
381                 sign_holder_commitment: orig.sign_holder_commitment.clone(),
382                 sign_holder_commitment_htlc_transactions: orig.sign_holder_commitment_htlc_transactions.clone(),
383                 sign_justice_transaction: orig.sign_justice_transaction.clone(),
384                 sign_counterparty_htlc_transaction: orig.sign_counterparty_htlc_transaction.clone(),
385                 sign_closing_transaction: orig.sign_closing_transaction.clone(),
386                 sign_channel_announcement: orig.sign_channel_announcement.clone(),
387                 ready_channel: orig.ready_channel.clone(),
388                 clone: orig.clone.clone(),
389                 write: orig.write.clone(),
390                 free: orig.free.clone(),
391         }
392 }
393 impl Clone for ChannelKeys {
394         fn clone(&self) -> Self {
395                 ChannelKeys_clone(self)
396         }
397 }
398 impl lightning::util::ser::Writeable for ChannelKeys {
399         fn write<W: lightning::util::ser::Writer>(&self, w: &mut W) -> Result<(), ::std::io::Error> {
400                 let vec = (self.write)(self.this_arg);
401                 w.write_all(vec.as_slice())
402         }
403 }
404
405 use lightning::chain::keysinterface::ChannelKeys as rustChannelKeys;
406 impl rustChannelKeys for ChannelKeys {
407         fn get_per_commitment_point<T:bitcoin::secp256k1::Signing + bitcoin::secp256k1::Verification>(&self, idx: u64, _secp_ctx: &bitcoin::secp256k1::Secp256k1<T>) -> bitcoin::secp256k1::key::PublicKey {
408                 let mut ret = (self.get_per_commitment_point)(self.this_arg, idx);
409                 ret.into_rust()
410         }
411         fn release_commitment_secret(&self, idx: u64) -> [u8; 32] {
412                 let mut ret = (self.release_commitment_secret)(self.this_arg, idx);
413                 ret.data
414         }
415         fn pubkeys(&self) -> &lightning::ln::chan_utils::ChannelPublicKeys {
416                 if let Some(f) = self.set_pubkeys {
417                         (f)(self);
418                 }
419                 unsafe { &*self.pubkeys.inner }
420         }
421         fn key_derivation_params(&self) -> (u64, u64) {
422                 let mut ret = (self.key_derivation_params)(self.this_arg);
423                 let (mut orig_ret_0, mut orig_ret_1) = ret.to_rust(); let mut local_ret = (orig_ret_0, orig_ret_1);
424                 local_ret
425         }
426         fn sign_counterparty_commitment<T:bitcoin::secp256k1::Signing + bitcoin::secp256k1::Verification>(&self, commitment_tx: &lightning::ln::chan_utils::CommitmentTransaction, _secp_ctx: &bitcoin::secp256k1::Secp256k1<T>) -> Result<(bitcoin::secp256k1::Signature, Vec<bitcoin::secp256k1::Signature>), ()> {
427                 let mut ret = (self.sign_counterparty_commitment)(self.this_arg, &crate::ln::chan_utils::CommitmentTransaction { inner: unsafe { (commitment_tx as *const _) as *mut _ }, is_owned: false });
428                 let mut local_ret = match ret.result_ok { true => Ok( { let (mut orig_ret_0_0, mut orig_ret_0_1) = (*unsafe { Box::from_raw(ret.contents.result.take_ptr()) }).to_rust(); let mut local_orig_ret_0_1 = Vec::new(); for mut item in orig_ret_0_1.into_rust().drain(..) { local_orig_ret_0_1.push( { item.into_rust() }); }; let mut local_ret_0 = (orig_ret_0_0.into_rust(), local_orig_ret_0_1); local_ret_0 }), false => Err( { () /*(*unsafe { Box::from_raw(ret.contents.err.take_ptr()) })*/ })};
429                 local_ret
430         }
431         fn sign_holder_commitment<T:bitcoin::secp256k1::Signing + bitcoin::secp256k1::Verification>(&self, commitment_tx: &lightning::ln::chan_utils::HolderCommitmentTransaction, _secp_ctx: &bitcoin::secp256k1::Secp256k1<T>) -> Result<bitcoin::secp256k1::Signature, ()> {
432                 let mut ret = (self.sign_holder_commitment)(self.this_arg, &crate::ln::chan_utils::HolderCommitmentTransaction { inner: unsafe { (commitment_tx as *const _) as *mut _ }, is_owned: false });
433                 let mut local_ret = match ret.result_ok { true => Ok( { (*unsafe { Box::from_raw(ret.contents.result.take_ptr()) }).into_rust() }), false => Err( { () /*(*unsafe { Box::from_raw(ret.contents.err.take_ptr()) })*/ })};
434                 local_ret
435         }
436         fn sign_holder_commitment_htlc_transactions<T:bitcoin::secp256k1::Signing + bitcoin::secp256k1::Verification>(&self, commitment_tx: &lightning::ln::chan_utils::HolderCommitmentTransaction, _secp_ctx: &bitcoin::secp256k1::Secp256k1<T>) -> Result<Vec<bitcoin::secp256k1::Signature>, ()> {
437                 let mut ret = (self.sign_holder_commitment_htlc_transactions)(self.this_arg, &crate::ln::chan_utils::HolderCommitmentTransaction { inner: unsafe { (commitment_tx as *const _) as *mut _ }, is_owned: false });
438                 let mut local_ret = match ret.result_ok { true => Ok( { let mut local_ret_0 = Vec::new(); for mut item in (*unsafe { Box::from_raw(ret.contents.result.take_ptr()) }).into_rust().drain(..) { local_ret_0.push( { item.into_rust() }); }; local_ret_0 }), false => Err( { () /*(*unsafe { Box::from_raw(ret.contents.err.take_ptr()) })*/ })};
439                 local_ret
440         }
441         fn sign_justice_transaction<T:bitcoin::secp256k1::Signing + bitcoin::secp256k1::Verification>(&self, justice_tx: &bitcoin::blockdata::transaction::Transaction, input: usize, amount: u64, per_commitment_key: &bitcoin::secp256k1::key::SecretKey, htlc: &Option<lightning::ln::chan_utils::HTLCOutputInCommitment>, _secp_ctx: &bitcoin::secp256k1::Secp256k1<T>) -> Result<bitcoin::secp256k1::Signature, ()> {
442                 let mut local_justice_tx = ::bitcoin::consensus::encode::serialize(justice_tx);
443                 let mut local_htlc = &crate::ln::chan_utils::HTLCOutputInCommitment { inner: unsafe { (if htlc.is_none() { std::ptr::null() } else {  { (htlc.as_ref().unwrap()) } } as *const _) as *mut _ }, is_owned: false };
444                 let mut ret = (self.sign_justice_transaction)(self.this_arg, crate::c_types::Transaction::from_vec(local_justice_tx), input, amount, per_commitment_key.as_ref(), local_htlc);
445                 let mut local_ret = match ret.result_ok { true => Ok( { (*unsafe { Box::from_raw(ret.contents.result.take_ptr()) }).into_rust() }), false => Err( { () /*(*unsafe { Box::from_raw(ret.contents.err.take_ptr()) })*/ })};
446                 local_ret
447         }
448         fn sign_counterparty_htlc_transaction<T:bitcoin::secp256k1::Signing + bitcoin::secp256k1::Verification>(&self, htlc_tx: &bitcoin::blockdata::transaction::Transaction, input: usize, amount: u64, per_commitment_point: &bitcoin::secp256k1::key::PublicKey, htlc: &lightning::ln::chan_utils::HTLCOutputInCommitment, _secp_ctx: &bitcoin::secp256k1::Secp256k1<T>) -> Result<bitcoin::secp256k1::Signature, ()> {
449                 let mut local_htlc_tx = ::bitcoin::consensus::encode::serialize(htlc_tx);
450                 let mut ret = (self.sign_counterparty_htlc_transaction)(self.this_arg, crate::c_types::Transaction::from_vec(local_htlc_tx), input, amount, crate::c_types::PublicKey::from_rust(&per_commitment_point), &crate::ln::chan_utils::HTLCOutputInCommitment { inner: unsafe { (htlc as *const _) as *mut _ }, is_owned: false });
451                 let mut local_ret = match ret.result_ok { true => Ok( { (*unsafe { Box::from_raw(ret.contents.result.take_ptr()) }).into_rust() }), false => Err( { () /*(*unsafe { Box::from_raw(ret.contents.err.take_ptr()) })*/ })};
452                 local_ret
453         }
454         fn sign_closing_transaction<T:bitcoin::secp256k1::Signing>(&self, closing_tx: &bitcoin::blockdata::transaction::Transaction, _secp_ctx: &bitcoin::secp256k1::Secp256k1<T>) -> Result<bitcoin::secp256k1::Signature, ()> {
455                 let mut local_closing_tx = ::bitcoin::consensus::encode::serialize(closing_tx);
456                 let mut ret = (self.sign_closing_transaction)(self.this_arg, crate::c_types::Transaction::from_vec(local_closing_tx));
457                 let mut local_ret = match ret.result_ok { true => Ok( { (*unsafe { Box::from_raw(ret.contents.result.take_ptr()) }).into_rust() }), false => Err( { () /*(*unsafe { Box::from_raw(ret.contents.err.take_ptr()) })*/ })};
458                 local_ret
459         }
460         fn sign_channel_announcement<T:bitcoin::secp256k1::Signing>(&self, msg: &lightning::ln::msgs::UnsignedChannelAnnouncement, _secp_ctx: &bitcoin::secp256k1::Secp256k1<T>) -> Result<bitcoin::secp256k1::Signature, ()> {
461                 let mut ret = (self.sign_channel_announcement)(self.this_arg, &crate::ln::msgs::UnsignedChannelAnnouncement { inner: unsafe { (msg as *const _) as *mut _ }, is_owned: false });
462                 let mut local_ret = match ret.result_ok { true => Ok( { (*unsafe { Box::from_raw(ret.contents.result.take_ptr()) }).into_rust() }), false => Err( { () /*(*unsafe { Box::from_raw(ret.contents.err.take_ptr()) })*/ })};
463                 local_ret
464         }
465         fn ready_channel(&mut self, channel_parameters: &lightning::ln::chan_utils::ChannelTransactionParameters) {
466                 (self.ready_channel)(self.this_arg, &crate::ln::chan_utils::ChannelTransactionParameters { inner: unsafe { (channel_parameters as *const _) as *mut _ }, is_owned: false })
467         }
468 }
469
470 // We're essentially a pointer already, or at least a set of pointers, so allow us to be used
471 // directly as a Deref trait in higher-level structs:
472 impl std::ops::Deref for ChannelKeys {
473         type Target = Self;
474         fn deref(&self) -> &Self {
475                 self
476         }
477 }
478 /// Calls the free function if one is set
479 #[no_mangle]
480 pub extern "C" fn ChannelKeys_free(this_ptr: ChannelKeys) { }
481 impl Drop for ChannelKeys {
482         fn drop(&mut self) {
483                 if let Some(f) = self.free {
484                         f(self.this_arg);
485                 }
486         }
487 }
488 /// A trait to describe an object which can get user secrets and key material.
489 #[repr(C)]
490 pub struct KeysInterface {
491         pub this_arg: *mut c_void,
492         /// Get node secret key (aka node_id or network_key)
493         #[must_use]
494         pub get_node_secret: extern "C" fn (this_arg: *const c_void) -> crate::c_types::SecretKey,
495         /// Get destination redeemScript to encumber static protocol exit points.
496         #[must_use]
497         pub get_destination_script: extern "C" fn (this_arg: *const c_void) -> crate::c_types::derived::CVec_u8Z,
498         /// Get shutdown_pubkey to use as PublicKey at channel closure
499         #[must_use]
500         pub get_shutdown_pubkey: extern "C" fn (this_arg: *const c_void) -> crate::c_types::PublicKey,
501         /// Get a new set of ChannelKeys for per-channel secrets. These MUST be unique even if you
502         /// restarted with some stale data!
503         #[must_use]
504         pub get_channel_keys: extern "C" fn (this_arg: *const c_void, inbound: bool, channel_value_satoshis: u64) -> crate::chain::keysinterface::ChannelKeys,
505         /// Gets a unique, cryptographically-secure, random 32 byte value. This is used for encrypting
506         /// onion packets and for temporary channel IDs. There is no requirement that these be
507         /// persisted anywhere, though they must be unique across restarts.
508         #[must_use]
509         pub get_secure_random_bytes: extern "C" fn (this_arg: *const c_void) -> crate::c_types::ThirtyTwoBytes,
510         /// Reads a `ChanKeySigner` for this `KeysInterface` from the given input stream.
511         /// This is only called during deserialization of other objects which contain
512         /// `ChannelKeys`-implementing objects (ie `ChannelMonitor`s and `ChannelManager`s).
513         /// The bytes are exactly those which `<Self::ChanKeySigner as Writeable>::write()` writes, and
514         /// contain no versioning scheme. You may wish to include your own version prefix and ensure
515         /// you've read all of the provided bytes to ensure no corruption occurred.
516         #[must_use]
517         pub read_chan_signer: extern "C" fn (this_arg: *const c_void, reader: crate::c_types::u8slice) -> crate::c_types::derived::CResult_ChanKeySignerDecodeErrorZ,
518         pub free: Option<extern "C" fn(this_arg: *mut c_void)>,
519 }
520 unsafe impl Send for KeysInterface {}
521 unsafe impl Sync for KeysInterface {}
522
523 use lightning::chain::keysinterface::KeysInterface as rustKeysInterface;
524 impl rustKeysInterface for KeysInterface {
525         type ChanKeySigner = crate::chain::keysinterface::ChannelKeys;
526         fn get_node_secret(&self) -> bitcoin::secp256k1::key::SecretKey {
527                 let mut ret = (self.get_node_secret)(self.this_arg);
528                 ret.into_rust()
529         }
530         fn get_destination_script(&self) -> bitcoin::blockdata::script::Script {
531                 let mut ret = (self.get_destination_script)(self.this_arg);
532                 ::bitcoin::blockdata::script::Script::from(ret.into_rust())
533         }
534         fn get_shutdown_pubkey(&self) -> bitcoin::secp256k1::key::PublicKey {
535                 let mut ret = (self.get_shutdown_pubkey)(self.this_arg);
536                 ret.into_rust()
537         }
538         fn get_channel_keys(&self, inbound: bool, channel_value_satoshis: u64) -> crate::chain::keysinterface::ChannelKeys {
539                 let mut ret = (self.get_channel_keys)(self.this_arg, inbound, channel_value_satoshis);
540                 ret
541         }
542         fn get_secure_random_bytes(&self) -> [u8; 32] {
543                 let mut ret = (self.get_secure_random_bytes)(self.this_arg);
544                 ret.data
545         }
546         fn read_chan_signer(&self, reader: &[u8]) -> Result<crate::chain::keysinterface::ChannelKeys, lightning::ln::msgs::DecodeError> {
547                 let mut local_reader = crate::c_types::u8slice::from_slice(reader);
548                 let mut ret = (self.read_chan_signer)(self.this_arg, local_reader);
549                 let mut local_ret = match ret.result_ok { true => Ok( { (*unsafe { Box::from_raw(ret.contents.result.take_ptr()) }) }), false => Err( { *unsafe { Box::from_raw((*unsafe { Box::from_raw(ret.contents.err.take_ptr()) }).take_ptr()) } })};
550                 local_ret
551         }
552 }
553
554 // We're essentially a pointer already, or at least a set of pointers, so allow us to be used
555 // directly as a Deref trait in higher-level structs:
556 impl std::ops::Deref for KeysInterface {
557         type Target = Self;
558         fn deref(&self) -> &Self {
559                 self
560         }
561 }
562 /// Calls the free function if one is set
563 #[no_mangle]
564 pub extern "C" fn KeysInterface_free(this_ptr: KeysInterface) { }
565 impl Drop for KeysInterface {
566         fn drop(&mut self) {
567                 if let Some(f) = self.free {
568                         f(self.this_arg);
569                 }
570         }
571 }
572
573 use lightning::chain::keysinterface::InMemoryChannelKeys as nativeInMemoryChannelKeysImport;
574 type nativeInMemoryChannelKeys = nativeInMemoryChannelKeysImport;
575
576 /// A simple implementation of ChannelKeys that just keeps the private keys in memory.
577 ///
578 /// This implementation performs no policy checks and is insufficient by itself as
579 /// a secure external signer.
580 #[must_use]
581 #[repr(C)]
582 pub struct InMemoryChannelKeys {
583         /// Nearly everywhere, inner must be non-null, however in places where
584         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
585         pub inner: *mut nativeInMemoryChannelKeys,
586         pub is_owned: bool,
587 }
588
589 impl Drop for InMemoryChannelKeys {
590         fn drop(&mut self) {
591                 if self.is_owned && !self.inner.is_null() {
592                         let _ = unsafe { Box::from_raw(self.inner) };
593                 }
594         }
595 }
596 #[no_mangle]
597 pub extern "C" fn InMemoryChannelKeys_free(this_ptr: InMemoryChannelKeys) { }
598 #[allow(unused)]
599 /// Used only if an object of this type is returned as a trait impl by a method
600 extern "C" fn InMemoryChannelKeys_free_void(this_ptr: *mut c_void) {
601         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeInMemoryChannelKeys); }
602 }
603 #[allow(unused)]
604 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
605 impl InMemoryChannelKeys {
606         pub(crate) fn take_ptr(mut self) -> *mut nativeInMemoryChannelKeys {
607                 assert!(self.is_owned);
608                 let ret = self.inner;
609                 self.inner = std::ptr::null_mut();
610                 ret
611         }
612 }
613 impl Clone for InMemoryChannelKeys {
614         fn clone(&self) -> Self {
615                 Self {
616                         inner: Box::into_raw(Box::new(unsafe { &*self.inner }.clone())),
617                         is_owned: true,
618                 }
619         }
620 }
621 #[allow(unused)]
622 /// Used only if an object of this type is returned as a trait impl by a method
623 pub(crate) extern "C" fn InMemoryChannelKeys_clone_void(this_ptr: *const c_void) -> *mut c_void {
624         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeInMemoryChannelKeys)).clone() })) as *mut c_void
625 }
626 #[no_mangle]
627 pub extern "C" fn InMemoryChannelKeys_clone(orig: &InMemoryChannelKeys) -> InMemoryChannelKeys {
628         InMemoryChannelKeys { inner: Box::into_raw(Box::new(unsafe { &*orig.inner }.clone())), is_owned: true }
629 }
630 /// Private key of anchor tx
631 #[no_mangle]
632 pub extern "C" fn InMemoryChannelKeys_get_funding_key(this_ptr: &InMemoryChannelKeys) -> *const [u8; 32] {
633         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.funding_key;
634         (*inner_val).as_ref()
635 }
636 /// Private key of anchor tx
637 #[no_mangle]
638 pub extern "C" fn InMemoryChannelKeys_set_funding_key(this_ptr: &mut InMemoryChannelKeys, mut val: crate::c_types::SecretKey) {
639         unsafe { &mut *this_ptr.inner }.funding_key = val.into_rust();
640 }
641 /// Holder secret key for blinded revocation pubkey
642 #[no_mangle]
643 pub extern "C" fn InMemoryChannelKeys_get_revocation_base_key(this_ptr: &InMemoryChannelKeys) -> *const [u8; 32] {
644         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.revocation_base_key;
645         (*inner_val).as_ref()
646 }
647 /// Holder secret key for blinded revocation pubkey
648 #[no_mangle]
649 pub extern "C" fn InMemoryChannelKeys_set_revocation_base_key(this_ptr: &mut InMemoryChannelKeys, mut val: crate::c_types::SecretKey) {
650         unsafe { &mut *this_ptr.inner }.revocation_base_key = val.into_rust();
651 }
652 /// Holder secret key used for our balance in counterparty-broadcasted commitment transactions
653 #[no_mangle]
654 pub extern "C" fn InMemoryChannelKeys_get_payment_key(this_ptr: &InMemoryChannelKeys) -> *const [u8; 32] {
655         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.payment_key;
656         (*inner_val).as_ref()
657 }
658 /// Holder secret key used for our balance in counterparty-broadcasted commitment transactions
659 #[no_mangle]
660 pub extern "C" fn InMemoryChannelKeys_set_payment_key(this_ptr: &mut InMemoryChannelKeys, mut val: crate::c_types::SecretKey) {
661         unsafe { &mut *this_ptr.inner }.payment_key = val.into_rust();
662 }
663 /// Holder secret key used in HTLC tx
664 #[no_mangle]
665 pub extern "C" fn InMemoryChannelKeys_get_delayed_payment_base_key(this_ptr: &InMemoryChannelKeys) -> *const [u8; 32] {
666         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.delayed_payment_base_key;
667         (*inner_val).as_ref()
668 }
669 /// Holder secret key used in HTLC tx
670 #[no_mangle]
671 pub extern "C" fn InMemoryChannelKeys_set_delayed_payment_base_key(this_ptr: &mut InMemoryChannelKeys, mut val: crate::c_types::SecretKey) {
672         unsafe { &mut *this_ptr.inner }.delayed_payment_base_key = val.into_rust();
673 }
674 /// Holder htlc secret key used in commitment tx htlc outputs
675 #[no_mangle]
676 pub extern "C" fn InMemoryChannelKeys_get_htlc_base_key(this_ptr: &InMemoryChannelKeys) -> *const [u8; 32] {
677         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.htlc_base_key;
678         (*inner_val).as_ref()
679 }
680 /// Holder htlc secret key used in commitment tx htlc outputs
681 #[no_mangle]
682 pub extern "C" fn InMemoryChannelKeys_set_htlc_base_key(this_ptr: &mut InMemoryChannelKeys, mut val: crate::c_types::SecretKey) {
683         unsafe { &mut *this_ptr.inner }.htlc_base_key = val.into_rust();
684 }
685 /// Commitment seed
686 #[no_mangle]
687 pub extern "C" fn InMemoryChannelKeys_get_commitment_seed(this_ptr: &InMemoryChannelKeys) -> *const [u8; 32] {
688         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.commitment_seed;
689         &(*inner_val)
690 }
691 /// Commitment seed
692 #[no_mangle]
693 pub extern "C" fn InMemoryChannelKeys_set_commitment_seed(this_ptr: &mut InMemoryChannelKeys, mut val: crate::c_types::ThirtyTwoBytes) {
694         unsafe { &mut *this_ptr.inner }.commitment_seed = val.data;
695 }
696 /// Create a new InMemoryChannelKeys
697 #[must_use]
698 #[no_mangle]
699 pub extern "C" fn InMemoryChannelKeys_new(mut funding_key: crate::c_types::SecretKey, mut revocation_base_key: crate::c_types::SecretKey, mut payment_key: crate::c_types::SecretKey, mut delayed_payment_base_key: crate::c_types::SecretKey, mut htlc_base_key: crate::c_types::SecretKey, mut commitment_seed: crate::c_types::ThirtyTwoBytes, mut channel_value_satoshis: u64, mut key_derivation_params: crate::c_types::derived::C2Tuple_u64u64Z) -> crate::chain::keysinterface::InMemoryChannelKeys {
700         let (mut orig_key_derivation_params_0, mut orig_key_derivation_params_1) = key_derivation_params.to_rust(); let mut local_key_derivation_params = (orig_key_derivation_params_0, orig_key_derivation_params_1);
701         let mut ret = lightning::chain::keysinterface::InMemoryChannelKeys::new(&bitcoin::secp256k1::Secp256k1::new(), funding_key.into_rust(), revocation_base_key.into_rust(), payment_key.into_rust(), delayed_payment_base_key.into_rust(), htlc_base_key.into_rust(), commitment_seed.data, channel_value_satoshis, local_key_derivation_params);
702         crate::chain::keysinterface::InMemoryChannelKeys { inner: Box::into_raw(Box::new(ret)), is_owned: true }
703 }
704
705 /// Counterparty pubkeys.
706 /// Will panic if ready_channel wasn't called.
707 #[must_use]
708 #[no_mangle]
709 pub extern "C" fn InMemoryChannelKeys_counterparty_pubkeys(this_arg: &InMemoryChannelKeys) -> crate::ln::chan_utils::ChannelPublicKeys {
710         let mut ret = unsafe { &*this_arg.inner }.counterparty_pubkeys();
711         crate::ln::chan_utils::ChannelPublicKeys { inner: unsafe { ( (&(*ret) as *const _) as *mut _) }, is_owned: false }
712 }
713
714 /// The contest_delay value specified by our counterparty and applied on holder-broadcastable
715 /// transactions, ie the amount of time that we have to wait to recover our funds if we
716 /// broadcast a transaction.
717 /// Will panic if ready_channel wasn't called.
718 #[must_use]
719 #[no_mangle]
720 pub extern "C" fn InMemoryChannelKeys_counterparty_selected_contest_delay(this_arg: &InMemoryChannelKeys) -> u16 {
721         let mut ret = unsafe { &*this_arg.inner }.counterparty_selected_contest_delay();
722         ret
723 }
724
725 /// The contest_delay value specified by us and applied on transactions broadcastable
726 /// by our counterparty, ie the amount of time that they have to wait to recover their funds
727 /// if they broadcast a transaction.
728 /// Will panic if ready_channel wasn't called.
729 #[must_use]
730 #[no_mangle]
731 pub extern "C" fn InMemoryChannelKeys_holder_selected_contest_delay(this_arg: &InMemoryChannelKeys) -> u16 {
732         let mut ret = unsafe { &*this_arg.inner }.holder_selected_contest_delay();
733         ret
734 }
735
736 /// Whether the holder is the initiator
737 /// Will panic if ready_channel wasn't called.
738 #[must_use]
739 #[no_mangle]
740 pub extern "C" fn InMemoryChannelKeys_is_outbound(this_arg: &InMemoryChannelKeys) -> bool {
741         let mut ret = unsafe { &*this_arg.inner }.is_outbound();
742         ret
743 }
744
745 /// Funding outpoint
746 /// Will panic if ready_channel wasn't called.
747 #[must_use]
748 #[no_mangle]
749 pub extern "C" fn InMemoryChannelKeys_funding_outpoint(this_arg: &InMemoryChannelKeys) -> crate::chain::transaction::OutPoint {
750         let mut ret = unsafe { &*this_arg.inner }.funding_outpoint();
751         crate::chain::transaction::OutPoint { inner: unsafe { ( (&(*ret) as *const _) as *mut _) }, is_owned: false }
752 }
753
754 /// Obtain a ChannelTransactionParameters for this channel, to be used when verifying or
755 /// building transactions.
756 ///
757 /// Will panic if ready_channel wasn't called.
758 #[must_use]
759 #[no_mangle]
760 pub extern "C" fn InMemoryChannelKeys_get_channel_parameters(this_arg: &InMemoryChannelKeys) -> crate::ln::chan_utils::ChannelTransactionParameters {
761         let mut ret = unsafe { &*this_arg.inner }.get_channel_parameters();
762         crate::ln::chan_utils::ChannelTransactionParameters { inner: unsafe { ( (&(*ret) as *const _) as *mut _) }, is_owned: false }
763 }
764
765 impl From<nativeInMemoryChannelKeys> for crate::chain::keysinterface::ChannelKeys {
766         fn from(obj: nativeInMemoryChannelKeys) -> Self {
767                 let mut rust_obj = InMemoryChannelKeys { inner: Box::into_raw(Box::new(obj)), is_owned: true };
768                 let mut ret = InMemoryChannelKeys_as_ChannelKeys(&rust_obj);
769                 // 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
770                 rust_obj.inner = std::ptr::null_mut();
771                 ret.free = Some(InMemoryChannelKeys_free_void);
772                 ret
773         }
774 }
775 #[no_mangle]
776 pub extern "C" fn InMemoryChannelKeys_as_ChannelKeys(this_arg: *const InMemoryChannelKeys) -> crate::chain::keysinterface::ChannelKeys {
777         crate::chain::keysinterface::ChannelKeys {
778                 this_arg: unsafe { (*this_arg).inner as *mut c_void },
779                 free: None,
780                 get_per_commitment_point: InMemoryChannelKeys_ChannelKeys_get_per_commitment_point,
781                 release_commitment_secret: InMemoryChannelKeys_ChannelKeys_release_commitment_secret,
782
783                 pubkeys: crate::ln::chan_utils::ChannelPublicKeys { inner: std::ptr::null_mut(), is_owned: true },
784                 set_pubkeys: Some(InMemoryChannelKeys_ChannelKeys_set_pubkeys),
785                 key_derivation_params: InMemoryChannelKeys_ChannelKeys_key_derivation_params,
786                 sign_counterparty_commitment: InMemoryChannelKeys_ChannelKeys_sign_counterparty_commitment,
787                 sign_holder_commitment: InMemoryChannelKeys_ChannelKeys_sign_holder_commitment,
788                 sign_holder_commitment_htlc_transactions: InMemoryChannelKeys_ChannelKeys_sign_holder_commitment_htlc_transactions,
789                 sign_justice_transaction: InMemoryChannelKeys_ChannelKeys_sign_justice_transaction,
790                 sign_counterparty_htlc_transaction: InMemoryChannelKeys_ChannelKeys_sign_counterparty_htlc_transaction,
791                 sign_closing_transaction: InMemoryChannelKeys_ChannelKeys_sign_closing_transaction,
792                 sign_channel_announcement: InMemoryChannelKeys_ChannelKeys_sign_channel_announcement,
793                 ready_channel: InMemoryChannelKeys_ChannelKeys_ready_channel,
794                 clone: Some(InMemoryChannelKeys_clone_void),
795                 write: InMemoryChannelKeys_write_void,
796         }
797 }
798 use lightning::chain::keysinterface::ChannelKeys as ChannelKeysTraitImport;
799 #[must_use]
800 extern "C" fn InMemoryChannelKeys_ChannelKeys_get_per_commitment_point(this_arg: *const c_void, mut idx: u64) -> crate::c_types::PublicKey {
801         let mut ret = unsafe { &mut *(this_arg as *mut nativeInMemoryChannelKeys) }.get_per_commitment_point(idx, &bitcoin::secp256k1::Secp256k1::new());
802         crate::c_types::PublicKey::from_rust(&ret)
803 }
804 #[must_use]
805 extern "C" fn InMemoryChannelKeys_ChannelKeys_release_commitment_secret(this_arg: *const c_void, mut idx: u64) -> crate::c_types::ThirtyTwoBytes {
806         let mut ret = unsafe { &mut *(this_arg as *mut nativeInMemoryChannelKeys) }.release_commitment_secret(idx);
807         crate::c_types::ThirtyTwoBytes { data: ret }
808 }
809 #[must_use]
810 extern "C" fn InMemoryChannelKeys_ChannelKeys_pubkeys(this_arg: *const c_void) -> crate::ln::chan_utils::ChannelPublicKeys {
811         let mut ret = unsafe { &mut *(this_arg as *mut nativeInMemoryChannelKeys) }.pubkeys();
812         crate::ln::chan_utils::ChannelPublicKeys { inner: unsafe { ( (&(*ret) as *const _) as *mut _) }, is_owned: false }
813 }
814 extern "C" fn InMemoryChannelKeys_ChannelKeys_set_pubkeys(trait_self_arg: &ChannelKeys) {
815         // This is a bit race-y in the general case, but for our specific use-cases today, we're safe
816         // Specifically, we must ensure that the first time we're called it can never be in parallel
817         if trait_self_arg.pubkeys.inner.is_null() {
818                 unsafe { &mut *(trait_self_arg as *const ChannelKeys  as *mut ChannelKeys) }.pubkeys = InMemoryChannelKeys_ChannelKeys_pubkeys(trait_self_arg.this_arg);
819         }
820 }
821 #[must_use]
822 extern "C" fn InMemoryChannelKeys_ChannelKeys_key_derivation_params(this_arg: *const c_void) -> crate::c_types::derived::C2Tuple_u64u64Z {
823         let mut ret = unsafe { &mut *(this_arg as *mut nativeInMemoryChannelKeys) }.key_derivation_params();
824         let (mut orig_ret_0, mut orig_ret_1) = ret; let mut local_ret = (orig_ret_0, orig_ret_1).into();
825         local_ret
826 }
827 #[must_use]
828 extern "C" fn InMemoryChannelKeys_ChannelKeys_sign_counterparty_commitment(this_arg: *const c_void, commitment_tx: &crate::ln::chan_utils::CommitmentTransaction) -> crate::c_types::derived::CResult_C2Tuple_SignatureCVec_SignatureZZNoneZ {
829         let mut ret = unsafe { &mut *(this_arg as *mut nativeInMemoryChannelKeys) }.sign_counterparty_commitment(unsafe { &*commitment_tx.inner }, &bitcoin::secp256k1::Secp256k1::new());
830         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { let (mut orig_ret_0_0, mut orig_ret_0_1) = o; let mut local_orig_ret_0_1 = Vec::new(); for item in orig_ret_0_1.drain(..) { local_orig_ret_0_1.push( { crate::c_types::Signature::from_rust(&item) }); }; let mut local_ret_0 = (crate::c_types::Signature::from_rust(&orig_ret_0_0), local_orig_ret_0_1.into()).into(); local_ret_0 }), Err(mut e) => crate::c_types::CResultTempl::err( { 0u8 /*e*/ }) };
831         local_ret
832 }
833 #[must_use]
834 extern "C" fn InMemoryChannelKeys_ChannelKeys_sign_holder_commitment(this_arg: *const c_void, commitment_tx: &crate::ln::chan_utils::HolderCommitmentTransaction) -> crate::c_types::derived::CResult_SignatureNoneZ {
835         let mut ret = unsafe { &mut *(this_arg as *mut nativeInMemoryChannelKeys) }.sign_holder_commitment(unsafe { &*commitment_tx.inner }, &bitcoin::secp256k1::Secp256k1::new());
836         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::c_types::Signature::from_rust(&o) }), Err(mut e) => crate::c_types::CResultTempl::err( { 0u8 /*e*/ }) };
837         local_ret
838 }
839 #[must_use]
840 extern "C" fn InMemoryChannelKeys_ChannelKeys_sign_holder_commitment_htlc_transactions(this_arg: *const c_void, commitment_tx: &crate::ln::chan_utils::HolderCommitmentTransaction) -> crate::c_types::derived::CResult_CVec_SignatureZNoneZ {
841         let mut ret = unsafe { &mut *(this_arg as *mut nativeInMemoryChannelKeys) }.sign_holder_commitment_htlc_transactions(unsafe { &*commitment_tx.inner }, &bitcoin::secp256k1::Secp256k1::new());
842         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { let mut local_ret_0 = Vec::new(); for item in o.drain(..) { local_ret_0.push( { crate::c_types::Signature::from_rust(&item) }); }; local_ret_0.into() }), Err(mut e) => crate::c_types::CResultTempl::err( { 0u8 /*e*/ }) };
843         local_ret
844 }
845 #[must_use]
846 extern "C" fn InMemoryChannelKeys_ChannelKeys_sign_justice_transaction(this_arg: *const c_void, mut justice_tx: crate::c_types::Transaction, mut input: usize, mut amount: u64, per_commitment_key: *const [u8; 32], htlc: &crate::ln::chan_utils::HTLCOutputInCommitment) -> crate::c_types::derived::CResult_SignatureNoneZ {
847         let mut local_htlc = if htlc.inner.is_null() { None } else { Some((* { unsafe { &*htlc.inner } }).clone()) };
848         let mut ret = unsafe { &mut *(this_arg as *mut nativeInMemoryChannelKeys) }.sign_justice_transaction(&justice_tx.into_bitcoin(), input, amount, &::bitcoin::secp256k1::key::SecretKey::from_slice(&unsafe { *per_commitment_key}[..]).unwrap(), &local_htlc, &bitcoin::secp256k1::Secp256k1::new());
849         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::c_types::Signature::from_rust(&o) }), Err(mut e) => crate::c_types::CResultTempl::err( { 0u8 /*e*/ }) };
850         local_ret
851 }
852 #[must_use]
853 extern "C" fn InMemoryChannelKeys_ChannelKeys_sign_counterparty_htlc_transaction(this_arg: *const c_void, mut htlc_tx: crate::c_types::Transaction, mut input: usize, mut amount: u64, mut per_commitment_point: crate::c_types::PublicKey, htlc: &crate::ln::chan_utils::HTLCOutputInCommitment) -> crate::c_types::derived::CResult_SignatureNoneZ {
854         let mut ret = unsafe { &mut *(this_arg as *mut nativeInMemoryChannelKeys) }.sign_counterparty_htlc_transaction(&htlc_tx.into_bitcoin(), input, amount, &per_commitment_point.into_rust(), unsafe { &*htlc.inner }, &bitcoin::secp256k1::Secp256k1::new());
855         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::c_types::Signature::from_rust(&o) }), Err(mut e) => crate::c_types::CResultTempl::err( { 0u8 /*e*/ }) };
856         local_ret
857 }
858 #[must_use]
859 extern "C" fn InMemoryChannelKeys_ChannelKeys_sign_closing_transaction(this_arg: *const c_void, mut closing_tx: crate::c_types::Transaction) -> crate::c_types::derived::CResult_SignatureNoneZ {
860         let mut ret = unsafe { &mut *(this_arg as *mut nativeInMemoryChannelKeys) }.sign_closing_transaction(&closing_tx.into_bitcoin(), &bitcoin::secp256k1::Secp256k1::new());
861         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::c_types::Signature::from_rust(&o) }), Err(mut e) => crate::c_types::CResultTempl::err( { 0u8 /*e*/ }) };
862         local_ret
863 }
864 #[must_use]
865 extern "C" fn InMemoryChannelKeys_ChannelKeys_sign_channel_announcement(this_arg: *const c_void, msg: &crate::ln::msgs::UnsignedChannelAnnouncement) -> crate::c_types::derived::CResult_SignatureNoneZ {
866         let mut ret = unsafe { &mut *(this_arg as *mut nativeInMemoryChannelKeys) }.sign_channel_announcement(unsafe { &*msg.inner }, &bitcoin::secp256k1::Secp256k1::new());
867         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::c_types::Signature::from_rust(&o) }), Err(mut e) => crate::c_types::CResultTempl::err( { 0u8 /*e*/ }) };
868         local_ret
869 }
870 extern "C" fn InMemoryChannelKeys_ChannelKeys_ready_channel(this_arg: *mut c_void, channel_parameters: &crate::ln::chan_utils::ChannelTransactionParameters) {
871         unsafe { &mut *(this_arg as *mut nativeInMemoryChannelKeys) }.ready_channel(unsafe { &*channel_parameters.inner })
872 }
873
874 #[no_mangle]
875 pub extern "C" fn InMemoryChannelKeys_write(obj: *const InMemoryChannelKeys) -> crate::c_types::derived::CVec_u8Z {
876         crate::c_types::serialize_obj(unsafe { &(*(*obj).inner) })
877 }
878 #[no_mangle]
879 pub(crate) extern "C" fn InMemoryChannelKeys_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
880         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeInMemoryChannelKeys) })
881 }
882 #[no_mangle]
883 pub extern "C" fn InMemoryChannelKeys_read(ser: crate::c_types::u8slice) -> InMemoryChannelKeys {
884         if let Ok(res) = crate::c_types::deserialize_obj(ser) {
885                 InMemoryChannelKeys { inner: Box::into_raw(Box::new(res)), is_owned: true }
886         } else {
887                 InMemoryChannelKeys { inner: std::ptr::null_mut(), is_owned: true }
888         }
889 }
890
891 use lightning::chain::keysinterface::KeysManager as nativeKeysManagerImport;
892 type nativeKeysManager = nativeKeysManagerImport;
893
894 /// Simple KeysInterface implementor that takes a 32-byte seed for use as a BIP 32 extended key
895 /// and derives keys from that.
896 ///
897 /// Your node_id is seed/0'
898 /// ChannelMonitor closes may use seed/1'
899 /// Cooperative closes may use seed/2'
900 /// The two close keys may be needed to claim on-chain funds!
901 #[must_use]
902 #[repr(C)]
903 pub struct KeysManager {
904         /// Nearly everywhere, inner must be non-null, however in places where
905         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
906         pub inner: *mut nativeKeysManager,
907         pub is_owned: bool,
908 }
909
910 impl Drop for KeysManager {
911         fn drop(&mut self) {
912                 if self.is_owned && !self.inner.is_null() {
913                         let _ = unsafe { Box::from_raw(self.inner) };
914                 }
915         }
916 }
917 #[no_mangle]
918 pub extern "C" fn KeysManager_free(this_ptr: KeysManager) { }
919 #[allow(unused)]
920 /// Used only if an object of this type is returned as a trait impl by a method
921 extern "C" fn KeysManager_free_void(this_ptr: *mut c_void) {
922         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeKeysManager); }
923 }
924 #[allow(unused)]
925 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
926 impl KeysManager {
927         pub(crate) fn take_ptr(mut self) -> *mut nativeKeysManager {
928                 assert!(self.is_owned);
929                 let ret = self.inner;
930                 self.inner = std::ptr::null_mut();
931                 ret
932         }
933 }
934 /// Constructs a KeysManager from a 32-byte seed. If the seed is in some way biased (eg your
935 /// CSRNG is busted) this may panic (but more importantly, you will possibly lose funds).
936 /// starting_time isn't strictly required to actually be a time, but it must absolutely,
937 /// without a doubt, be unique to this instance. ie if you start multiple times with the same
938 /// seed, starting_time must be unique to each run. Thus, the easiest way to achieve this is to
939 /// simply use the current time (with very high precision).
940 ///
941 /// The seed MUST be backed up safely prior to use so that the keys can be re-created, however,
942 /// obviously, starting_time should be unique every time you reload the library - it is only
943 /// used to generate new ephemeral key data (which will be stored by the individual channel if
944 /// necessary).
945 ///
946 /// Note that the seed is required to recover certain on-chain funds independent of
947 /// ChannelMonitor data, though a current copy of ChannelMonitor data is also required for any
948 /// channel, and some on-chain during-closing funds.
949 ///
950 /// Note that until the 0.1 release there is no guarantee of backward compatibility between
951 /// versions. Once the library is more fully supported, the docs will be updated to include a
952 /// detailed description of the guarantee.
953 #[must_use]
954 #[no_mangle]
955 pub extern "C" fn KeysManager_new(seed: *const [u8; 32], mut network: crate::bitcoin::network::Network, mut starting_time_secs: u64, mut starting_time_nanos: u32) -> KeysManager {
956         let mut ret = lightning::chain::keysinterface::KeysManager::new(unsafe { &*seed}, network.into_bitcoin(), starting_time_secs, starting_time_nanos);
957         KeysManager { inner: Box::into_raw(Box::new(ret)), is_owned: true }
958 }
959
960 /// Derive an old set of ChannelKeys for per-channel secrets based on a key derivation
961 /// parameters.
962 /// Key derivation parameters are accessible through a per-channel secrets
963 /// ChannelKeys::key_derivation_params and is provided inside DynamicOuputP2WSH in case of
964 /// onchain output detection for which a corresponding delayed_payment_key must be derived.
965 #[must_use]
966 #[no_mangle]
967 pub extern "C" fn KeysManager_derive_channel_keys(this_arg: &KeysManager, mut channel_value_satoshis: u64, mut params_1: u64, mut params_2: u64) -> crate::chain::keysinterface::InMemoryChannelKeys {
968         let mut ret = unsafe { &*this_arg.inner }.derive_channel_keys(channel_value_satoshis, params_1, params_2);
969         crate::chain::keysinterface::InMemoryChannelKeys { inner: Box::into_raw(Box::new(ret)), is_owned: true }
970 }
971
972 impl From<nativeKeysManager> for crate::chain::keysinterface::KeysInterface {
973         fn from(obj: nativeKeysManager) -> Self {
974                 let mut rust_obj = KeysManager { inner: Box::into_raw(Box::new(obj)), is_owned: true };
975                 let mut ret = KeysManager_as_KeysInterface(&rust_obj);
976                 // 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
977                 rust_obj.inner = std::ptr::null_mut();
978                 ret.free = Some(KeysManager_free_void);
979                 ret
980         }
981 }
982 #[no_mangle]
983 pub extern "C" fn KeysManager_as_KeysInterface(this_arg: *const KeysManager) -> crate::chain::keysinterface::KeysInterface {
984         crate::chain::keysinterface::KeysInterface {
985                 this_arg: unsafe { (*this_arg).inner as *mut c_void },
986                 free: None,
987                 get_node_secret: KeysManager_KeysInterface_get_node_secret,
988                 get_destination_script: KeysManager_KeysInterface_get_destination_script,
989                 get_shutdown_pubkey: KeysManager_KeysInterface_get_shutdown_pubkey,
990                 get_channel_keys: KeysManager_KeysInterface_get_channel_keys,
991                 get_secure_random_bytes: KeysManager_KeysInterface_get_secure_random_bytes,
992                 read_chan_signer: KeysManager_KeysInterface_read_chan_signer,
993         }
994 }
995 use lightning::chain::keysinterface::KeysInterface as KeysInterfaceTraitImport;
996 #[must_use]
997 extern "C" fn KeysManager_KeysInterface_get_node_secret(this_arg: *const c_void) -> crate::c_types::SecretKey {
998         let mut ret = unsafe { &mut *(this_arg as *mut nativeKeysManager) }.get_node_secret();
999         crate::c_types::SecretKey::from_rust(ret)
1000 }
1001 #[must_use]
1002 extern "C" fn KeysManager_KeysInterface_get_destination_script(this_arg: *const c_void) -> crate::c_types::derived::CVec_u8Z {
1003         let mut ret = unsafe { &mut *(this_arg as *mut nativeKeysManager) }.get_destination_script();
1004         ret.into_bytes().into()
1005 }
1006 #[must_use]
1007 extern "C" fn KeysManager_KeysInterface_get_shutdown_pubkey(this_arg: *const c_void) -> crate::c_types::PublicKey {
1008         let mut ret = unsafe { &mut *(this_arg as *mut nativeKeysManager) }.get_shutdown_pubkey();
1009         crate::c_types::PublicKey::from_rust(&ret)
1010 }
1011 #[must_use]
1012 extern "C" fn KeysManager_KeysInterface_get_channel_keys(this_arg: *const c_void, mut _inbound: bool, mut channel_value_satoshis: u64) -> crate::chain::keysinterface::ChannelKeys {
1013         let mut ret = unsafe { &mut *(this_arg as *mut nativeKeysManager) }.get_channel_keys(_inbound, channel_value_satoshis);
1014         ret.into()
1015 }
1016 #[must_use]
1017 extern "C" fn KeysManager_KeysInterface_get_secure_random_bytes(this_arg: *const c_void) -> crate::c_types::ThirtyTwoBytes {
1018         let mut ret = unsafe { &mut *(this_arg as *mut nativeKeysManager) }.get_secure_random_bytes();
1019         crate::c_types::ThirtyTwoBytes { data: ret }
1020 }
1021 #[must_use]
1022 extern "C" fn KeysManager_KeysInterface_read_chan_signer(this_arg: *const c_void, mut reader: crate::c_types::u8slice) -> crate::c_types::derived::CResult_ChanKeySignerDecodeErrorZ {
1023         let mut ret = unsafe { &mut *(this_arg as *mut nativeKeysManager) }.read_chan_signer(reader.to_slice());
1024         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { o.into() }), Err(mut e) => crate::c_types::CResultTempl::err( { crate::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }) };
1025         local_ret
1026 }
1027