Update auto-generated bindings
[rust-lightning] / lightning-c-bindings / src / routing / router.rs
1 //! The top-level routing/network map tracking logic lives here.
2 //!
3 //! You probably want to create a NetGraphMsgHandler and use that as your RoutingMessageHandler and then
4 //! interrogate it to get routes for your own payments.
5
6 use std::ffi::c_void;
7 use bitcoin::hashes::Hash;
8 use crate::c_types::*;
9
10
11 use lightning::routing::router::RouteHop as nativeRouteHopImport;
12 type nativeRouteHop = nativeRouteHopImport;
13
14 /// A hop in a route
15 #[must_use]
16 #[repr(C)]
17 pub struct RouteHop {
18         /// Nearly everywhere, inner must be non-null, however in places where
19         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
20         pub inner: *mut nativeRouteHop,
21         pub is_owned: bool,
22 }
23
24 impl Drop for RouteHop {
25         fn drop(&mut self) {
26                 if self.is_owned && !self.inner.is_null() {
27                         let _ = unsafe { Box::from_raw(self.inner) };
28                 }
29         }
30 }
31 #[no_mangle]
32 pub extern "C" fn RouteHop_free(this_ptr: RouteHop) { }
33 #[allow(unused)]
34 /// Used only if an object of this type is returned as a trait impl by a method
35 extern "C" fn RouteHop_free_void(this_ptr: *mut c_void) {
36         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeRouteHop); }
37 }
38 #[allow(unused)]
39 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
40 impl RouteHop {
41         pub(crate) fn take_inner(mut self) -> *mut nativeRouteHop {
42                 assert!(self.is_owned);
43                 let ret = self.inner;
44                 self.inner = std::ptr::null_mut();
45                 ret
46         }
47 }
48 impl Clone for RouteHop {
49         fn clone(&self) -> Self {
50                 Self {
51                         inner: if self.inner.is_null() { std::ptr::null_mut() } else {
52                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
53                         is_owned: true,
54                 }
55         }
56 }
57 #[allow(unused)]
58 /// Used only if an object of this type is returned as a trait impl by a method
59 pub(crate) extern "C" fn RouteHop_clone_void(this_ptr: *const c_void) -> *mut c_void {
60         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeRouteHop)).clone() })) as *mut c_void
61 }
62 #[no_mangle]
63 pub extern "C" fn RouteHop_clone(orig: &RouteHop) -> RouteHop {
64         orig.clone()
65 }
66 /// The node_id of the node at this hop.
67 #[no_mangle]
68 pub extern "C" fn RouteHop_get_pubkey(this_ptr: &RouteHop) -> crate::c_types::PublicKey {
69         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.pubkey;
70         crate::c_types::PublicKey::from_rust(&(*inner_val))
71 }
72 /// The node_id of the node at this hop.
73 #[no_mangle]
74 pub extern "C" fn RouteHop_set_pubkey(this_ptr: &mut RouteHop, mut val: crate::c_types::PublicKey) {
75         unsafe { &mut *this_ptr.inner }.pubkey = val.into_rust();
76 }
77 /// The node_announcement features of the node at this hop. For the last hop, these may be
78 /// amended to match the features present in the invoice this node generated.
79 #[no_mangle]
80 pub extern "C" fn RouteHop_get_node_features(this_ptr: &RouteHop) -> crate::ln::features::NodeFeatures {
81         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.node_features;
82         crate::ln::features::NodeFeatures { inner: unsafe { ( (&((*inner_val)) as *const _) as *mut _) }, is_owned: false }
83 }
84 /// The node_announcement features of the node at this hop. For the last hop, these may be
85 /// amended to match the features present in the invoice this node generated.
86 #[no_mangle]
87 pub extern "C" fn RouteHop_set_node_features(this_ptr: &mut RouteHop, mut val: crate::ln::features::NodeFeatures) {
88         unsafe { &mut *this_ptr.inner }.node_features = *unsafe { Box::from_raw(val.take_inner()) };
89 }
90 /// The channel that should be used from the previous hop to reach this node.
91 #[no_mangle]
92 pub extern "C" fn RouteHop_get_short_channel_id(this_ptr: &RouteHop) -> u64 {
93         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.short_channel_id;
94         (*inner_val)
95 }
96 /// The channel that should be used from the previous hop to reach this node.
97 #[no_mangle]
98 pub extern "C" fn RouteHop_set_short_channel_id(this_ptr: &mut RouteHop, mut val: u64) {
99         unsafe { &mut *this_ptr.inner }.short_channel_id = val;
100 }
101 /// The channel_announcement features of the channel that should be used from the previous hop
102 /// to reach this node.
103 #[no_mangle]
104 pub extern "C" fn RouteHop_get_channel_features(this_ptr: &RouteHop) -> crate::ln::features::ChannelFeatures {
105         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.channel_features;
106         crate::ln::features::ChannelFeatures { inner: unsafe { ( (&((*inner_val)) as *const _) as *mut _) }, is_owned: false }
107 }
108 /// The channel_announcement features of the channel that should be used from the previous hop
109 /// to reach this node.
110 #[no_mangle]
111 pub extern "C" fn RouteHop_set_channel_features(this_ptr: &mut RouteHop, mut val: crate::ln::features::ChannelFeatures) {
112         unsafe { &mut *this_ptr.inner }.channel_features = *unsafe { Box::from_raw(val.take_inner()) };
113 }
114 /// The fee taken on this hop. For the last hop, this should be the full value of the payment.
115 #[no_mangle]
116 pub extern "C" fn RouteHop_get_fee_msat(this_ptr: &RouteHop) -> u64 {
117         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.fee_msat;
118         (*inner_val)
119 }
120 /// The fee taken on this hop. For the last hop, this should be the full value of the payment.
121 #[no_mangle]
122 pub extern "C" fn RouteHop_set_fee_msat(this_ptr: &mut RouteHop, mut val: u64) {
123         unsafe { &mut *this_ptr.inner }.fee_msat = val;
124 }
125 /// The CLTV delta added for this hop. For the last hop, this should be the full CLTV value
126 /// expected at the destination, in excess of the current block height.
127 #[no_mangle]
128 pub extern "C" fn RouteHop_get_cltv_expiry_delta(this_ptr: &RouteHop) -> u32 {
129         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.cltv_expiry_delta;
130         (*inner_val)
131 }
132 /// The CLTV delta added for this hop. For the last hop, this should be the full CLTV value
133 /// expected at the destination, in excess of the current block height.
134 #[no_mangle]
135 pub extern "C" fn RouteHop_set_cltv_expiry_delta(this_ptr: &mut RouteHop, mut val: u32) {
136         unsafe { &mut *this_ptr.inner }.cltv_expiry_delta = val;
137 }
138 #[must_use]
139 #[no_mangle]
140 pub extern "C" fn RouteHop_new(mut pubkey_arg: crate::c_types::PublicKey, mut node_features_arg: crate::ln::features::NodeFeatures, mut short_channel_id_arg: u64, mut channel_features_arg: crate::ln::features::ChannelFeatures, mut fee_msat_arg: u64, mut cltv_expiry_delta_arg: u32) -> RouteHop {
141         RouteHop { inner: Box::into_raw(Box::new(nativeRouteHop {
142                 pubkey: pubkey_arg.into_rust(),
143                 node_features: *unsafe { Box::from_raw(node_features_arg.take_inner()) },
144                 short_channel_id: short_channel_id_arg,
145                 channel_features: *unsafe { Box::from_raw(channel_features_arg.take_inner()) },
146                 fee_msat: fee_msat_arg,
147                 cltv_expiry_delta: cltv_expiry_delta_arg,
148         })), is_owned: true }
149 }
150
151 use lightning::routing::router::Route as nativeRouteImport;
152 type nativeRoute = nativeRouteImport;
153
154 /// A route directs a payment from the sender (us) to the recipient. If the recipient supports MPP,
155 /// it can take multiple paths. Each path is composed of one or more hops through the network.
156 #[must_use]
157 #[repr(C)]
158 pub struct Route {
159         /// Nearly everywhere, inner must be non-null, however in places where
160         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
161         pub inner: *mut nativeRoute,
162         pub is_owned: bool,
163 }
164
165 impl Drop for Route {
166         fn drop(&mut self) {
167                 if self.is_owned && !self.inner.is_null() {
168                         let _ = unsafe { Box::from_raw(self.inner) };
169                 }
170         }
171 }
172 #[no_mangle]
173 pub extern "C" fn Route_free(this_ptr: Route) { }
174 #[allow(unused)]
175 /// Used only if an object of this type is returned as a trait impl by a method
176 extern "C" fn Route_free_void(this_ptr: *mut c_void) {
177         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeRoute); }
178 }
179 #[allow(unused)]
180 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
181 impl Route {
182         pub(crate) fn take_inner(mut self) -> *mut nativeRoute {
183                 assert!(self.is_owned);
184                 let ret = self.inner;
185                 self.inner = std::ptr::null_mut();
186                 ret
187         }
188 }
189 impl Clone for Route {
190         fn clone(&self) -> Self {
191                 Self {
192                         inner: if self.inner.is_null() { std::ptr::null_mut() } else {
193                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
194                         is_owned: true,
195                 }
196         }
197 }
198 #[allow(unused)]
199 /// Used only if an object of this type is returned as a trait impl by a method
200 pub(crate) extern "C" fn Route_clone_void(this_ptr: *const c_void) -> *mut c_void {
201         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeRoute)).clone() })) as *mut c_void
202 }
203 #[no_mangle]
204 pub extern "C" fn Route_clone(orig: &Route) -> Route {
205         orig.clone()
206 }
207 /// The list of routes taken for a single (potentially-)multi-part payment. The pubkey of the
208 /// last RouteHop in each path must be the same.
209 /// Each entry represents a list of hops, NOT INCLUDING our own, where the last hop is the
210 /// destination. Thus, this must always be at least length one. While the maximum length of any
211 /// given path is variable, keeping the length of any path to less than 20 should currently
212 /// ensure it is viable.
213 #[no_mangle]
214 pub extern "C" fn Route_set_paths(this_ptr: &mut Route, mut val: crate::c_types::derived::CVec_CVec_RouteHopZZ) {
215         let mut local_val = Vec::new(); for mut item in val.into_rust().drain(..) { local_val.push( { let mut local_val_0 = Vec::new(); for mut item in item.into_rust().drain(..) { local_val_0.push( { *unsafe { Box::from_raw(item.take_inner()) } }); }; local_val_0 }); };
216         unsafe { &mut *this_ptr.inner }.paths = local_val;
217 }
218 #[must_use]
219 #[no_mangle]
220 pub extern "C" fn Route_new(mut paths_arg: crate::c_types::derived::CVec_CVec_RouteHopZZ) -> Route {
221         let mut local_paths_arg = Vec::new(); for mut item in paths_arg.into_rust().drain(..) { local_paths_arg.push( { let mut local_paths_arg_0 = Vec::new(); for mut item in item.into_rust().drain(..) { local_paths_arg_0.push( { *unsafe { Box::from_raw(item.take_inner()) } }); }; local_paths_arg_0 }); };
222         Route { inner: Box::into_raw(Box::new(nativeRoute {
223                 paths: local_paths_arg,
224         })), is_owned: true }
225 }
226 #[no_mangle]
227 pub extern "C" fn Route_write(obj: &Route) -> crate::c_types::derived::CVec_u8Z {
228         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
229 }
230 #[no_mangle]
231 pub(crate) extern "C" fn Route_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
232         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeRoute) })
233 }
234 #[no_mangle]
235 pub extern "C" fn Route_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_RouteDecodeErrorZ {
236         let res = crate::c_types::deserialize_obj(ser);
237         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::routing::router::Route { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
238         local_res
239 }
240
241 use lightning::routing::router::RouteHint as nativeRouteHintImport;
242 type nativeRouteHint = nativeRouteHintImport;
243
244 /// A channel descriptor which provides a last-hop route to get_route
245 #[must_use]
246 #[repr(C)]
247 pub struct RouteHint {
248         /// Nearly everywhere, inner must be non-null, however in places where
249         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
250         pub inner: *mut nativeRouteHint,
251         pub is_owned: bool,
252 }
253
254 impl Drop for RouteHint {
255         fn drop(&mut self) {
256                 if self.is_owned && !self.inner.is_null() {
257                         let _ = unsafe { Box::from_raw(self.inner) };
258                 }
259         }
260 }
261 #[no_mangle]
262 pub extern "C" fn RouteHint_free(this_ptr: RouteHint) { }
263 #[allow(unused)]
264 /// Used only if an object of this type is returned as a trait impl by a method
265 extern "C" fn RouteHint_free_void(this_ptr: *mut c_void) {
266         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeRouteHint); }
267 }
268 #[allow(unused)]
269 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
270 impl RouteHint {
271         pub(crate) fn take_inner(mut self) -> *mut nativeRouteHint {
272                 assert!(self.is_owned);
273                 let ret = self.inner;
274                 self.inner = std::ptr::null_mut();
275                 ret
276         }
277 }
278 impl Clone for RouteHint {
279         fn clone(&self) -> Self {
280                 Self {
281                         inner: if self.inner.is_null() { std::ptr::null_mut() } else {
282                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
283                         is_owned: true,
284                 }
285         }
286 }
287 #[allow(unused)]
288 /// Used only if an object of this type is returned as a trait impl by a method
289 pub(crate) extern "C" fn RouteHint_clone_void(this_ptr: *const c_void) -> *mut c_void {
290         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeRouteHint)).clone() })) as *mut c_void
291 }
292 #[no_mangle]
293 pub extern "C" fn RouteHint_clone(orig: &RouteHint) -> RouteHint {
294         orig.clone()
295 }
296 /// The node_id of the non-target end of the route
297 #[no_mangle]
298 pub extern "C" fn RouteHint_get_src_node_id(this_ptr: &RouteHint) -> crate::c_types::PublicKey {
299         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.src_node_id;
300         crate::c_types::PublicKey::from_rust(&(*inner_val))
301 }
302 /// The node_id of the non-target end of the route
303 #[no_mangle]
304 pub extern "C" fn RouteHint_set_src_node_id(this_ptr: &mut RouteHint, mut val: crate::c_types::PublicKey) {
305         unsafe { &mut *this_ptr.inner }.src_node_id = val.into_rust();
306 }
307 /// The short_channel_id of this channel
308 #[no_mangle]
309 pub extern "C" fn RouteHint_get_short_channel_id(this_ptr: &RouteHint) -> u64 {
310         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.short_channel_id;
311         (*inner_val)
312 }
313 /// The short_channel_id of this channel
314 #[no_mangle]
315 pub extern "C" fn RouteHint_set_short_channel_id(this_ptr: &mut RouteHint, mut val: u64) {
316         unsafe { &mut *this_ptr.inner }.short_channel_id = val;
317 }
318 /// The fees which must be paid to use this channel
319 #[no_mangle]
320 pub extern "C" fn RouteHint_get_fees(this_ptr: &RouteHint) -> crate::routing::network_graph::RoutingFees {
321         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.fees;
322         crate::routing::network_graph::RoutingFees { inner: unsafe { ( (&((*inner_val)) as *const _) as *mut _) }, is_owned: false }
323 }
324 /// The fees which must be paid to use this channel
325 #[no_mangle]
326 pub extern "C" fn RouteHint_set_fees(this_ptr: &mut RouteHint, mut val: crate::routing::network_graph::RoutingFees) {
327         unsafe { &mut *this_ptr.inner }.fees = *unsafe { Box::from_raw(val.take_inner()) };
328 }
329 /// The difference in CLTV values between this node and the next node.
330 #[no_mangle]
331 pub extern "C" fn RouteHint_get_cltv_expiry_delta(this_ptr: &RouteHint) -> u16 {
332         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.cltv_expiry_delta;
333         (*inner_val)
334 }
335 /// The difference in CLTV values between this node and the next node.
336 #[no_mangle]
337 pub extern "C" fn RouteHint_set_cltv_expiry_delta(this_ptr: &mut RouteHint, mut val: u16) {
338         unsafe { &mut *this_ptr.inner }.cltv_expiry_delta = val;
339 }
340 /// The minimum value, in msat, which must be relayed to the next hop.
341 #[no_mangle]
342 pub extern "C" fn RouteHint_get_htlc_minimum_msat(this_ptr: &RouteHint) -> u64 {
343         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.htlc_minimum_msat;
344         (*inner_val)
345 }
346 /// The minimum value, in msat, which must be relayed to the next hop.
347 #[no_mangle]
348 pub extern "C" fn RouteHint_set_htlc_minimum_msat(this_ptr: &mut RouteHint, mut val: u64) {
349         unsafe { &mut *this_ptr.inner }.htlc_minimum_msat = val;
350 }
351 #[must_use]
352 #[no_mangle]
353 pub extern "C" fn RouteHint_new(mut src_node_id_arg: crate::c_types::PublicKey, mut short_channel_id_arg: u64, mut fees_arg: crate::routing::network_graph::RoutingFees, mut cltv_expiry_delta_arg: u16, mut htlc_minimum_msat_arg: u64) -> RouteHint {
354         RouteHint { inner: Box::into_raw(Box::new(nativeRouteHint {
355                 src_node_id: src_node_id_arg.into_rust(),
356                 short_channel_id: short_channel_id_arg,
357                 fees: *unsafe { Box::from_raw(fees_arg.take_inner()) },
358                 cltv_expiry_delta: cltv_expiry_delta_arg,
359                 htlc_minimum_msat: htlc_minimum_msat_arg,
360         })), is_owned: true }
361 }
362 /// Gets a route from us to the given target node.
363 ///
364 /// Extra routing hops between known nodes and the target will be used if they are included in
365 /// last_hops.
366 ///
367 /// If some channels aren't announced, it may be useful to fill in a first_hops with the
368 /// results from a local ChannelManager::list_usable_channels() call. If it is filled in, our
369 /// view of our local channels (from net_graph_msg_handler) will be ignored, and only those in first_hops
370 /// will be used.
371 ///
372 /// Panics if first_hops contains channels without short_channel_ids
373 /// (ChannelManager::list_usable_channels will never include such channels).
374 ///
375 /// The fees on channels from us to next-hops are ignored (as they are assumed to all be
376 /// equal), however the enabled/disabled bit on such channels as well as the htlc_minimum_msat
377 /// *is* checked as they may change based on the receiving node.
378 #[no_mangle]
379 pub extern "C" fn get_route(mut our_node_id: crate::c_types::PublicKey, network: &crate::routing::network_graph::NetworkGraph, mut target: crate::c_types::PublicKey, first_hops: *mut crate::c_types::derived::CVec_ChannelDetailsZ, mut last_hops: crate::c_types::derived::CVec_RouteHintZ, mut final_value_msat: u64, mut final_cltv: u32, mut logger: crate::util::logger::Logger) -> crate::c_types::derived::CResult_RouteLightningErrorZ {
380         let mut local_first_hops_base = if first_hops == std::ptr::null_mut() { None } else { Some( { let mut local_first_hops_0 = Vec::new(); for mut item in unsafe { &mut *first_hops }.as_slice().iter() { local_first_hops_0.push( { unsafe { &*item.inner } }); }; local_first_hops_0 }) }; let mut local_first_hops = local_first_hops_base.as_ref().map(|a| &a[..]);
381         let mut local_last_hops = Vec::new(); for mut item in last_hops.as_slice().iter() { local_last_hops.push( { unsafe { &*item.inner } }); };
382         let mut ret = lightning::routing::router::get_route(&our_node_id.into_rust(), unsafe { &*network.inner }, &target.into_rust(), local_first_hops, &local_last_hops[..], final_value_msat, final_cltv, logger);
383         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::routing::router::Route { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::ln::msgs::LightningError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
384         local_ret
385 }
386