978c24b419808987a30fb807ea68818d40826317
[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 everyhwere, 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_ptr(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: Box::into_raw(Box::new(unsafe { &*self.inner }.clone())),
52                         is_owned: true,
53                 }
54         }
55 }
56 #[allow(unused)]
57 /// Used only if an object of this type is returned as a trait impl by a method
58 pub(crate) extern "C" fn RouteHop_clone_void(this_ptr: *const c_void) -> *mut c_void {
59         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeRouteHop)).clone() })) as *mut c_void
60 }
61 /// The node_id of the node at this hop.
62 #[no_mangle]
63 pub extern "C" fn RouteHop_get_pubkey(this_ptr: &RouteHop) -> crate::c_types::PublicKey {
64         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.pubkey;
65         crate::c_types::PublicKey::from_rust(&(*inner_val))
66 }
67 /// The node_id of the node at this hop.
68 #[no_mangle]
69 pub extern "C" fn RouteHop_set_pubkey(this_ptr: &mut RouteHop, mut val: crate::c_types::PublicKey) {
70         unsafe { &mut *this_ptr.inner }.pubkey = val.into_rust();
71 }
72 /// The channel that should be used from the previous hop to reach this node.
73 #[no_mangle]
74 pub extern "C" fn RouteHop_get_short_channel_id(this_ptr: &RouteHop) -> u64 {
75         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.short_channel_id;
76         (*inner_val)
77 }
78 /// The channel that should be used from the previous hop to reach this node.
79 #[no_mangle]
80 pub extern "C" fn RouteHop_set_short_channel_id(this_ptr: &mut RouteHop, mut val: u64) {
81         unsafe { &mut *this_ptr.inner }.short_channel_id = val;
82 }
83 /// The fee taken on this hop. For the last hop, this should be the full value of the payment.
84 #[no_mangle]
85 pub extern "C" fn RouteHop_get_fee_msat(this_ptr: &RouteHop) -> u64 {
86         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.fee_msat;
87         (*inner_val)
88 }
89 /// The fee taken on this hop. For the last hop, this should be the full value of the payment.
90 #[no_mangle]
91 pub extern "C" fn RouteHop_set_fee_msat(this_ptr: &mut RouteHop, mut val: u64) {
92         unsafe { &mut *this_ptr.inner }.fee_msat = val;
93 }
94 /// The CLTV delta added for this hop. For the last hop, this should be the full CLTV value
95 /// expected at the destination, in excess of the current block height.
96 #[no_mangle]
97 pub extern "C" fn RouteHop_get_cltv_expiry_delta(this_ptr: &RouteHop) -> u32 {
98         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.cltv_expiry_delta;
99         (*inner_val)
100 }
101 /// The CLTV delta added for this hop. For the last hop, this should be the full CLTV value
102 /// expected at the destination, in excess of the current block height.
103 #[no_mangle]
104 pub extern "C" fn RouteHop_set_cltv_expiry_delta(this_ptr: &mut RouteHop, mut val: u32) {
105         unsafe { &mut *this_ptr.inner }.cltv_expiry_delta = val;
106 }
107
108 use lightning::routing::router::Route as nativeRouteImport;
109 type nativeRoute = nativeRouteImport;
110
111 /// A route directs a payment from the sender (us) to the recipient. If the recipient supports MPP,
112 /// it can take multiple paths. Each path is composed of one or more hops through the network.
113 #[must_use]
114 #[repr(C)]
115 pub struct Route {
116         /// Nearly everyhwere, inner must be non-null, however in places where
117         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
118         pub inner: *mut nativeRoute,
119         pub is_owned: bool,
120 }
121
122 impl Drop for Route {
123         fn drop(&mut self) {
124                 if self.is_owned && !self.inner.is_null() {
125                         let _ = unsafe { Box::from_raw(self.inner) };
126                 }
127         }
128 }
129 #[no_mangle]
130 pub extern "C" fn Route_free(this_ptr: Route) { }
131 #[allow(unused)]
132 /// Used only if an object of this type is returned as a trait impl by a method
133 extern "C" fn Route_free_void(this_ptr: *mut c_void) {
134         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeRoute); }
135 }
136 #[allow(unused)]
137 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
138 impl Route {
139         pub(crate) fn take_ptr(mut self) -> *mut nativeRoute {
140                 assert!(self.is_owned);
141                 let ret = self.inner;
142                 self.inner = std::ptr::null_mut();
143                 ret
144         }
145 }
146 impl Clone for Route {
147         fn clone(&self) -> Self {
148                 Self {
149                         inner: Box::into_raw(Box::new(unsafe { &*self.inner }.clone())),
150                         is_owned: true,
151                 }
152         }
153 }
154 #[allow(unused)]
155 /// Used only if an object of this type is returned as a trait impl by a method
156 pub(crate) extern "C" fn Route_clone_void(this_ptr: *const c_void) -> *mut c_void {
157         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeRoute)).clone() })) as *mut c_void
158 }
159 /// The list of routes taken for a single (potentially-)multi-part payment. The pubkey of the
160 /// last RouteHop in each path must be the same.
161 /// Each entry represents a list of hops, NOT INCLUDING our own, where the last hop is the
162 /// destination. Thus, this must always be at least length one. While the maximum length of any
163 /// given path is variable, keeping the length of any path to less than 20 should currently
164 /// ensure it is viable.
165 #[no_mangle]
166 pub extern "C" fn Route_set_paths(this_ptr: &mut Route, mut val: crate::c_types::derived::CVec_CVec_RouteHopZZ) {
167         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_ptr()) } }); }; local_val_0 }); };
168         unsafe { &mut *this_ptr.inner }.paths = local_val;
169 }
170 #[must_use]
171 #[no_mangle]
172 pub extern "C" fn Route_new(mut paths_arg: crate::c_types::derived::CVec_CVec_RouteHopZZ) -> Route {
173         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_ptr()) } }); }; local_paths_arg_0 }); };
174         Route { inner: Box::into_raw(Box::new(nativeRoute {
175                 paths: local_paths_arg,
176         })), is_owned: true }
177 }
178 #[no_mangle]
179 pub extern "C" fn Route_write(obj: *const Route) -> crate::c_types::derived::CVec_u8Z {
180         crate::c_types::serialize_obj(unsafe { &(*(*obj).inner) })
181 }
182 #[no_mangle]
183 pub extern "C" fn Route_read(ser: crate::c_types::u8slice) -> Route {
184         if let Ok(res) = crate::c_types::deserialize_obj(ser) {
185                 Route { inner: Box::into_raw(Box::new(res)), is_owned: true }
186         } else {
187                 Route { inner: std::ptr::null_mut(), is_owned: true }
188         }
189 }
190
191 use lightning::routing::router::RouteHint as nativeRouteHintImport;
192 type nativeRouteHint = nativeRouteHintImport;
193
194 /// A channel descriptor which provides a last-hop route to get_route
195 #[must_use]
196 #[repr(C)]
197 pub struct RouteHint {
198         /// Nearly everyhwere, inner must be non-null, however in places where
199         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
200         pub inner: *mut nativeRouteHint,
201         pub is_owned: bool,
202 }
203
204 impl Drop for RouteHint {
205         fn drop(&mut self) {
206                 if self.is_owned && !self.inner.is_null() {
207                         let _ = unsafe { Box::from_raw(self.inner) };
208                 }
209         }
210 }
211 #[no_mangle]
212 pub extern "C" fn RouteHint_free(this_ptr: RouteHint) { }
213 #[allow(unused)]
214 /// Used only if an object of this type is returned as a trait impl by a method
215 extern "C" fn RouteHint_free_void(this_ptr: *mut c_void) {
216         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeRouteHint); }
217 }
218 #[allow(unused)]
219 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
220 impl RouteHint {
221         pub(crate) fn take_ptr(mut self) -> *mut nativeRouteHint {
222                 assert!(self.is_owned);
223                 let ret = self.inner;
224                 self.inner = std::ptr::null_mut();
225                 ret
226         }
227 }
228 /// The node_id of the non-target end of the route
229 #[no_mangle]
230 pub extern "C" fn RouteHint_get_src_node_id(this_ptr: &RouteHint) -> crate::c_types::PublicKey {
231         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.src_node_id;
232         crate::c_types::PublicKey::from_rust(&(*inner_val))
233 }
234 /// The node_id of the non-target end of the route
235 #[no_mangle]
236 pub extern "C" fn RouteHint_set_src_node_id(this_ptr: &mut RouteHint, mut val: crate::c_types::PublicKey) {
237         unsafe { &mut *this_ptr.inner }.src_node_id = val.into_rust();
238 }
239 /// The short_channel_id of this channel
240 #[no_mangle]
241 pub extern "C" fn RouteHint_get_short_channel_id(this_ptr: &RouteHint) -> u64 {
242         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.short_channel_id;
243         (*inner_val)
244 }
245 /// The short_channel_id of this channel
246 #[no_mangle]
247 pub extern "C" fn RouteHint_set_short_channel_id(this_ptr: &mut RouteHint, mut val: u64) {
248         unsafe { &mut *this_ptr.inner }.short_channel_id = val;
249 }
250 /// The fees which must be paid to use this channel
251 #[no_mangle]
252 pub extern "C" fn RouteHint_get_fees(this_ptr: &RouteHint) -> crate::routing::network_graph::RoutingFees {
253         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.fees;
254         crate::routing::network_graph::RoutingFees { inner: unsafe { ( (&((*inner_val)) as *const _) as *mut _) }, is_owned: false }
255 }
256 /// The fees which must be paid to use this channel
257 #[no_mangle]
258 pub extern "C" fn RouteHint_set_fees(this_ptr: &mut RouteHint, mut val: crate::routing::network_graph::RoutingFees) {
259         unsafe { &mut *this_ptr.inner }.fees = *unsafe { Box::from_raw(val.take_ptr()) };
260 }
261 /// The difference in CLTV values between this node and the next node.
262 #[no_mangle]
263 pub extern "C" fn RouteHint_get_cltv_expiry_delta(this_ptr: &RouteHint) -> u16 {
264         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.cltv_expiry_delta;
265         (*inner_val)
266 }
267 /// The difference in CLTV values between this node and the next node.
268 #[no_mangle]
269 pub extern "C" fn RouteHint_set_cltv_expiry_delta(this_ptr: &mut RouteHint, mut val: u16) {
270         unsafe { &mut *this_ptr.inner }.cltv_expiry_delta = val;
271 }
272 /// The minimum value, in msat, which must be relayed to the next hop.
273 #[no_mangle]
274 pub extern "C" fn RouteHint_get_htlc_minimum_msat(this_ptr: &RouteHint) -> u64 {
275         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.htlc_minimum_msat;
276         (*inner_val)
277 }
278 /// The minimum value, in msat, which must be relayed to the next hop.
279 #[no_mangle]
280 pub extern "C" fn RouteHint_set_htlc_minimum_msat(this_ptr: &mut RouteHint, mut val: u64) {
281         unsafe { &mut *this_ptr.inner }.htlc_minimum_msat = val;
282 }
283 #[must_use]
284 #[no_mangle]
285 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 {
286         RouteHint { inner: Box::into_raw(Box::new(nativeRouteHint {
287                 src_node_id: src_node_id_arg.into_rust(),
288                 short_channel_id: short_channel_id_arg,
289                 fees: *unsafe { Box::from_raw(fees_arg.take_ptr()) },
290                 cltv_expiry_delta: cltv_expiry_delta_arg,
291                 htlc_minimum_msat: htlc_minimum_msat_arg,
292         })), is_owned: true }
293 }
294 /// Gets a route from us to the given target node.
295 ///
296 /// Extra routing hops between known nodes and the target will be used if they are included in
297 /// last_hops.
298 ///
299 /// If some channels aren't announced, it may be useful to fill in a first_hops with the
300 /// results from a local ChannelManager::list_usable_channels() call. If it is filled in, our
301 /// view of our local channels (from net_graph_msg_handler) will be ignored, and only those in first_hops
302 /// will be used.
303 ///
304 /// Panics if first_hops contains channels without short_channel_ids
305 /// (ChannelManager::list_usable_channels will never include such channels).
306 ///
307 /// The fees on channels from us to next-hops are ignored (as they are assumed to all be
308 /// equal), however the enabled/disabled bit on such channels as well as the htlc_minimum_msat
309 /// *is* checked as they may change based on the receiving node.
310 #[no_mangle]
311 pub extern "C" fn get_route(our_node_id: crate::c_types::PublicKey, network: &crate::routing::network_graph::NetworkGraph, target: crate::c_types::PublicKey, mut 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 {
312         let mut local_first_hops_base = if first_hops.is_null() { 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[..]);
313         let mut local_last_hops = Vec::new(); for mut item in last_hops.as_slice().iter() { local_last_hops.push( { unsafe { &*item.inner } }); };
314         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);
315         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 } }), Err(mut e) => crate::c_types::CResultTempl::err( { crate::ln::msgs::LightningError { inner: Box::into_raw(Box::new(e)), is_owned: true } }) };
316         local_ret
317 }
318