Short-circuit router for an outbound specified direct channel
[rust-lightning] / src / ln / router.rs
1 use secp256k1::key::PublicKey;
2 use secp256k1::{Secp256k1,Message};
3
4 use bitcoin::util::hash::Sha256dHash;
5
6 use ln::channelmanager;
7 use ln::msgs::{ErrorAction,HandleError,RoutingMessageHandler,MsgEncodable,NetAddress,GlobalFeatures};
8 use ln::msgs;
9
10 use std::cmp;
11 use std::sync::RwLock;
12 use std::collections::{HashMap,BinaryHeap};
13 use std::collections::hash_map::Entry;
14
15 /// A hop in a route
16 #[derive(Clone)]
17 pub struct RouteHop {
18         pub pubkey: PublicKey,
19         /// The channel that should be used from the previous hop to reach this node.
20         pub short_channel_id: u64,
21         /// The fee taken on this hop. For the last hop, this should be the full value of the payment.
22         pub fee_msat: u64,
23         /// The CLTV delta added for this hop. For the last hop, this should be the full CLTV value
24         /// expected at the destination, NOT a delta.
25         pub cltv_expiry_delta: u32,
26 }
27
28 /// A route from us through the network to a destination
29 #[derive(Clone)]
30 pub struct Route {
31         /// The list of hops, NOT INCLUDING our own, where the last hop is the destination. Thus, this
32         /// must always be at least length one. By protocol rules, this may not currently exceed 20 in
33         /// length.
34         pub hops: Vec<RouteHop>,
35 }
36
37 struct DirectionalChannelInfo {
38         src_node_id: PublicKey,
39         last_update: u32,
40         enabled: bool,
41         cltv_expiry_delta: u16,
42         htlc_minimum_msat: u64,
43         fee_base_msat: u32,
44         fee_proportional_millionths: u32,
45 }
46
47 struct ChannelInfo {
48         features: GlobalFeatures,
49         one_to_two: DirectionalChannelInfo,
50         two_to_one: DirectionalChannelInfo,
51 }
52
53 struct NodeInfo {
54         #[cfg(feature = "non_bitcoin_chain_hash_routing")]
55         channels: Vec<(u64, Sha256dHash)>,
56         #[cfg(not(feature = "non_bitcoin_chain_hash_routing"))]
57         channels: Vec<u64>,
58
59         lowest_inbound_channel_fee_base_msat: u32,
60         lowest_inbound_channel_fee_proportional_millionths: u32,
61
62         features: GlobalFeatures,
63         last_update: u32,
64         rgb: [u8; 3],
65         alias: [u8; 32],
66         addresses: Vec<NetAddress>,
67 }
68
69 struct NetworkMap {
70         #[cfg(feature = "non_bitcoin_chain_hash_routing")]
71         channels: HashMap<(u64, Sha256dHash), ChannelInfo>,
72         #[cfg(not(feature = "non_bitcoin_chain_hash_routing"))]
73         channels: HashMap<u64, ChannelInfo>,
74
75         our_node_id: PublicKey,
76         nodes: HashMap<PublicKey, NodeInfo>,
77 }
78
79 impl NetworkMap {
80         #[cfg(feature = "non_bitcoin_chain_hash_routing")]
81         #[inline]
82         fn get_key(short_channel_id: u64, chain_hash: Sha256dHash) -> (u64, Sha256dHash) {
83                 (short_channel_id, chain_hash)
84         }
85
86         #[cfg(not(feature = "non_bitcoin_chain_hash_routing"))]
87         #[inline]
88         fn get_key(short_channel_id: u64, _: Sha256dHash) -> u64 {
89                 short_channel_id
90         }
91 }
92
93 /// A channel descriptor which provides a last-hop route to get_route
94 pub struct RouteHint {
95         pub src_node_id: PublicKey,
96         pub short_channel_id: u64,
97         pub fee_base_msat: u64,
98         pub fee_proportional_millionths: u32,
99         pub cltv_expiry_delta: u16,
100         pub htlc_minimum_msat: u64,
101 }
102
103 /// Tracks a view of the network, receiving updates from peers and generating Routes to
104 /// payment destinations.
105 pub struct Router {
106         secp_ctx: Secp256k1,
107         network_map: RwLock<NetworkMap>,
108 }
109
110 macro_rules! secp_verify_sig {
111         ( $secp_ctx: expr, $msg: expr, $sig: expr, $pubkey: expr ) => {
112                 match $secp_ctx.verify($msg, $sig, $pubkey) {
113                         Ok(_) => {},
114                         Err(_) => return Err(HandleError{err: "Invalid signature from remote node", action: None}),
115                 }
116         };
117 }
118
119 impl RoutingMessageHandler for Router {
120         fn handle_node_announcement(&self, msg: &msgs::NodeAnnouncement) -> Result<(), HandleError> {
121                 let msg_hash = Message::from_slice(&Sha256dHash::from_data(&msg.contents.encode()[..])[..]).unwrap();
122                 secp_verify_sig!(self.secp_ctx, &msg_hash, &msg.signature, &msg.contents.node_id);
123
124                 let mut network = self.network_map.write().unwrap();
125                 match network.nodes.get_mut(&msg.contents.node_id) {
126                         None => Err(HandleError{err: "No existing channels for node_announcement", action: Some(ErrorAction::IgnoreError)}),
127                         Some(node) => {
128                                 if node.last_update >= msg.contents.timestamp {
129                                         return Err(HandleError{err: "Update older than last processed update", action: Some(ErrorAction::IgnoreError)});
130                                 }
131
132                                 node.features = msg.contents.features.clone();
133                                 node.last_update = msg.contents.timestamp;
134                                 node.rgb = msg.contents.rgb;
135                                 node.alias = msg.contents.alias;
136                                 node.addresses = msg.contents.addresses.clone();
137                                 Ok(())
138                         }
139                 }
140         }
141
142         fn handle_channel_announcement(&self, msg: &msgs::ChannelAnnouncement) -> Result<bool, HandleError> {
143                 let msg_hash = Message::from_slice(&Sha256dHash::from_data(&msg.contents.encode()[..])[..]).unwrap();
144                 secp_verify_sig!(self.secp_ctx, &msg_hash, &msg.node_signature_1, &msg.contents.node_id_1);
145                 secp_verify_sig!(self.secp_ctx, &msg_hash, &msg.node_signature_2, &msg.contents.node_id_2);
146                 secp_verify_sig!(self.secp_ctx, &msg_hash, &msg.bitcoin_signature_1, &msg.contents.bitcoin_key_1);
147                 secp_verify_sig!(self.secp_ctx, &msg_hash, &msg.bitcoin_signature_2, &msg.contents.bitcoin_key_2);
148
149                 //TODO: Call blockchain thing to ask if the short_channel_id is valid
150                 //TODO: Only allow bitcoin chain_hash
151
152                 if msg.contents.features.requires_unknown_bits() {
153                         return Err(HandleError{err: "Channel announcement required unknown feature flags", action: None});
154                 }
155
156                 let mut network = self.network_map.write().unwrap();
157
158                 match network.channels.entry(NetworkMap::get_key(msg.contents.short_channel_id, msg.contents.chain_hash)) {
159                         Entry::Occupied(_) => {
160                                 //TODO: because asking the blockchain if short_channel_id is valid is only optional
161                                 //in the blockchain API, we need to handle it smartly here, though its unclear
162                                 //exactly how...
163                                 return Err(HandleError{err: "Already have knowledge of channel", action: Some(ErrorAction::IgnoreError)})
164                         },
165                         Entry::Vacant(entry) => {
166                                 entry.insert(ChannelInfo {
167                                         features: msg.contents.features.clone(),
168                                         one_to_two: DirectionalChannelInfo {
169                                                 src_node_id: msg.contents.node_id_1.clone(),
170                                                 last_update: 0,
171                                                 enabled: false,
172                                                 cltv_expiry_delta: u16::max_value(),
173                                                 htlc_minimum_msat: u64::max_value(),
174                                                 fee_base_msat: u32::max_value(),
175                                                 fee_proportional_millionths: u32::max_value(),
176                                         },
177                                         two_to_one: DirectionalChannelInfo {
178                                                 src_node_id: msg.contents.node_id_2.clone(),
179                                                 last_update: 0,
180                                                 enabled: false,
181                                                 cltv_expiry_delta: u16::max_value(),
182                                                 htlc_minimum_msat: u64::max_value(),
183                                                 fee_base_msat: u32::max_value(),
184                                                 fee_proportional_millionths: u32::max_value(),
185                                         }
186                                 });
187                         }
188                 };
189
190                 macro_rules! add_channel_to_node {
191                         ( $node_id: expr ) => {
192                                 match network.nodes.entry($node_id) {
193                                         Entry::Occupied(node_entry) => {
194                                                 node_entry.into_mut().channels.push(NetworkMap::get_key(msg.contents.short_channel_id, msg.contents.chain_hash));
195                                         },
196                                         Entry::Vacant(node_entry) => {
197                                                 node_entry.insert(NodeInfo {
198                                                         channels: vec!(NetworkMap::get_key(msg.contents.short_channel_id, msg.contents.chain_hash)),
199                                                         lowest_inbound_channel_fee_base_msat: u32::max_value(),
200                                                         lowest_inbound_channel_fee_proportional_millionths: u32::max_value(),
201                                                         features: GlobalFeatures::new(),
202                                                         last_update: 0,
203                                                         rgb: [0; 3],
204                                                         alias: [0; 32],
205                                                         addresses: Vec::new(),
206                                                 });
207                                         }
208                                 }
209                         };
210                 }
211
212                 add_channel_to_node!(msg.contents.node_id_1);
213                 add_channel_to_node!(msg.contents.node_id_2);
214
215                 Ok(!msg.contents.features.supports_unknown_bits())
216         }
217
218         fn handle_htlc_fail_channel_update(&self, update: &msgs::HTLCFailChannelUpdate) {
219                 match update {
220                         &msgs::HTLCFailChannelUpdate::ChannelUpdateMessage { ref msg } => {
221                                 let _ = self.handle_channel_update(msg);
222                         },
223                         &msgs::HTLCFailChannelUpdate::ChannelClosed { ref short_channel_id } => {
224                                 let mut network = self.network_map.write().unwrap();
225                                 network.channels.remove(short_channel_id);
226                         },
227                 }
228         }
229
230         fn handle_channel_update(&self, msg: &msgs::ChannelUpdate) -> Result<(), HandleError> {
231                 let mut network = self.network_map.write().unwrap();
232                 let dest_node_id;
233                 let chan_enabled = msg.contents.flags & (1 << 1) != (1 << 1);
234                 let chan_was_enabled;
235
236                 match network.channels.get_mut(&NetworkMap::get_key(msg.contents.short_channel_id, msg.contents.chain_hash)) {
237                         None => return Err(HandleError{err: "Couldn't find channel for update", action: Some(ErrorAction::IgnoreError)}),
238                         Some(channel) => {
239                                 macro_rules! maybe_update_channel_info {
240                                         ( $target: expr) => {
241                                                 if $target.last_update >= msg.contents.timestamp {
242                                                         return Err(HandleError{err: "Update older than last processed update", action: Some(ErrorAction::IgnoreError)});
243                                                 }
244                                                 chan_was_enabled = $target.enabled;
245                                                 $target.last_update = msg.contents.timestamp;
246                                                 $target.enabled = chan_enabled;
247                                                 $target.cltv_expiry_delta = msg.contents.cltv_expiry_delta;
248                                                 $target.htlc_minimum_msat = msg.contents.htlc_minimum_msat;
249                                                 $target.fee_base_msat = msg.contents.fee_base_msat;
250                                                 $target.fee_proportional_millionths = msg.contents.fee_proportional_millionths;
251                                         }
252                                 }
253
254                                 let msg_hash = Message::from_slice(&Sha256dHash::from_data(&msg.contents.encode()[..])[..]).unwrap();
255                                 if msg.contents.flags & 1 == 1 {
256                                         dest_node_id = channel.one_to_two.src_node_id.clone();
257                                         secp_verify_sig!(self.secp_ctx, &msg_hash, &msg.signature, &channel.two_to_one.src_node_id);
258                                         maybe_update_channel_info!(channel.two_to_one);
259                                 } else {
260                                         dest_node_id = channel.two_to_one.src_node_id.clone();
261                                         secp_verify_sig!(self.secp_ctx, &msg_hash, &msg.signature, &channel.one_to_two.src_node_id);
262                                         maybe_update_channel_info!(channel.one_to_two);
263                                 }
264                         }
265                 }
266
267                 if chan_enabled {
268                         let node = network.nodes.get_mut(&dest_node_id).unwrap();
269                         node.lowest_inbound_channel_fee_base_msat = cmp::min(node.lowest_inbound_channel_fee_base_msat, msg.contents.fee_base_msat);
270                         node.lowest_inbound_channel_fee_proportional_millionths = cmp::min(node.lowest_inbound_channel_fee_proportional_millionths, msg.contents.fee_proportional_millionths);
271                 } else if chan_was_enabled {
272                         let mut lowest_inbound_channel_fee_base_msat = u32::max_value();
273                         let mut lowest_inbound_channel_fee_proportional_millionths = u32::max_value();
274
275                         {
276                                 let node = network.nodes.get(&dest_node_id).unwrap();
277
278                                 for chan_id in node.channels.iter() {
279                                         let chan = network.channels.get(chan_id).unwrap();
280                                         if chan.one_to_two.src_node_id == dest_node_id {
281                                                 lowest_inbound_channel_fee_base_msat = cmp::min(lowest_inbound_channel_fee_base_msat, chan.two_to_one.fee_base_msat);
282                                                 lowest_inbound_channel_fee_proportional_millionths = cmp::min(lowest_inbound_channel_fee_proportional_millionths, chan.two_to_one.fee_proportional_millionths);
283                                         } else {
284                                                 lowest_inbound_channel_fee_base_msat = cmp::min(lowest_inbound_channel_fee_base_msat, chan.one_to_two.fee_base_msat);
285                                                 lowest_inbound_channel_fee_proportional_millionths = cmp::min(lowest_inbound_channel_fee_proportional_millionths, chan.one_to_two.fee_proportional_millionths);
286                                         }
287                                 }
288                         }
289
290                         //TODO: satisfy the borrow-checker without a double-map-lookup :(
291                         let mut_node = network.nodes.get_mut(&dest_node_id).unwrap();
292                         mut_node.lowest_inbound_channel_fee_base_msat = lowest_inbound_channel_fee_base_msat;
293                         mut_node.lowest_inbound_channel_fee_proportional_millionths = lowest_inbound_channel_fee_proportional_millionths;
294                 }
295
296                 Ok(())
297         }
298 }
299
300 #[derive(Eq, PartialEq)]
301 struct RouteGraphNode {
302         pubkey: PublicKey,
303         lowest_fee_to_peer_through_node: u64,
304 }
305
306 impl cmp::Ord for RouteGraphNode {
307         fn cmp(&self, other: &RouteGraphNode) -> cmp::Ordering {
308                 other.lowest_fee_to_peer_through_node.cmp(&self.lowest_fee_to_peer_through_node)
309                         .then_with(|| other.pubkey.serialize().cmp(&self.pubkey.serialize()))
310         }
311 }
312
313 impl cmp::PartialOrd for RouteGraphNode {
314         fn partial_cmp(&self, other: &RouteGraphNode) -> Option<cmp::Ordering> {
315                 Some(self.cmp(other))
316         }
317 }
318
319 struct DummyDirectionalChannelInfo {
320         src_node_id: PublicKey,
321         cltv_expiry_delta: u32,
322         htlc_minimum_msat: u64,
323         fee_base_msat: u32,
324         fee_proportional_millionths: u32,
325 }
326
327 impl Router {
328         pub fn new(our_pubkey: PublicKey) -> Router {
329                 let mut nodes = HashMap::new();
330                 nodes.insert(our_pubkey.clone(), NodeInfo {
331                         channels: Vec::new(),
332                         lowest_inbound_channel_fee_base_msat: u32::max_value(),
333                         lowest_inbound_channel_fee_proportional_millionths: u32::max_value(),
334                         features: GlobalFeatures::new(),
335                         last_update: 0,
336                         rgb: [0; 3],
337                         alias: [0; 32],
338                         addresses: Vec::new(),
339                 });
340                 Router {
341                         secp_ctx: Secp256k1::new(),
342                         network_map: RwLock::new(NetworkMap {
343                                 channels: HashMap::new(),
344                                 our_node_id: our_pubkey,
345                                 nodes: nodes,
346                         }),
347                 }
348         }
349
350         /// Get network addresses by node id
351         pub fn get_addresses(&self, pubkey: &PublicKey) -> Option<Vec<NetAddress>> {
352                 let network = self.network_map.read().unwrap();
353                 network.nodes.get(pubkey).map(|n| n.addresses.clone())
354         }
355
356         /// Marks a node as having failed a route. This will avoid re-using the node in routes for now,
357         /// with an expotnential decay in node "badness". Note that there is deliberately no
358         /// mark_channel_bad as a node may simply lie and suggest that an upstream channel from it is
359         /// what failed the route and not the node itself. Instead, setting the blamed_upstream_node
360         /// boolean will reduce the penalty, returning the node to usability faster. If the node is
361         /// behaving correctly, it will disable the failing channel and we will use it again next time.
362         pub fn mark_node_bad(&self, _node_id: &PublicKey, _blamed_upstream_node: bool) {
363                 unimplemented!();
364         }
365
366         /// Gets a route from us to the given target node.
367         /// Extra routing hops between known nodes and the target will be used if they are included in
368         /// last_hops.
369         /// If some channels aren't announced, it may be useful to fill in a first_hops with the
370         /// results from a local ChannelManager::list_usable_channels() call. If it is filled in, our
371         /// (this Router's) view of our local channels will be ignored, and only those in first_hops
372         /// will be used. Panics if first_hops contains channels without short_channel_ids
373         /// (ChannelManager::list_usable_channels will never include such channels).
374         /// The fees on channels from us to next-hops are ignored (as they are assumed to all be
375         /// equal), however the enabled/disabled bit on such channels as well as the htlc_minimum_msat
376         /// *is* checked as they may change based on the receiving node.
377         pub fn get_route(&self, target: &PublicKey, first_hops: Option<&[channelmanager::ChannelDetails]>, last_hops: &[RouteHint], final_value_msat: u64, final_cltv: u32) -> Result<Route, HandleError> {
378                 // TODO: Obviously *only* using total fee cost sucks. We should consider weighting by
379                 // uptime/success in using a node in the past.
380                 let network = self.network_map.read().unwrap();
381
382                 if *target == network.our_node_id {
383                         return Err(HandleError{err: "Cannot generate a route to ourselves", action: None});
384                 }
385
386                 // We do a dest-to-source Dijkstra's sorting by each node's distance from the destination
387                 // plus the minimum per-HTLC fee to get from it to another node (aka "shitty A*").
388                 // TODO: There are a few tweaks we could do, including possibly pre-calculating more stuff
389                 // to use as the A* heuristic beyond just the cost to get one node further than the current
390                 // one.
391
392                 let dummy_directional_info = DummyDirectionalChannelInfo { // used for first_hops routes
393                         src_node_id: network.our_node_id.clone(),
394                         cltv_expiry_delta: 0,
395                         htlc_minimum_msat: 0,
396                         fee_base_msat: 0,
397                         fee_proportional_millionths: 0,
398                 };
399
400                 let mut targets = BinaryHeap::new(); //TODO: Do we care about switching to eg Fibbonaci heap?
401                 let mut dist = HashMap::with_capacity(network.nodes.len());
402
403                 let mut first_hop_targets = HashMap::with_capacity(if first_hops.is_some() { first_hops.as_ref().unwrap().len() } else { 0 });
404                 if let Some(hops) = first_hops {
405                         for chan in hops {
406                                 let short_channel_id = chan.short_channel_id.expect("first_hops should be filled in with usable channels, not pending ones");
407                                 if chan.remote_network_id == *target {
408                                         return Ok(Route {
409                                                 hops: vec![RouteHop {
410                                                         pubkey: chan.remote_network_id,
411                                                         short_channel_id,
412                                                         fee_msat: final_value_msat,
413                                                         cltv_expiry_delta: final_cltv,
414                                                 }],
415                                         });
416                                 }
417                                 first_hop_targets.insert(chan.remote_network_id, short_channel_id);
418                         }
419                         if first_hop_targets.is_empty() {
420                                 return Err(HandleError{err: "Cannot route when there are no outbound routes away from us", action: None});
421                         }
422                 }
423
424                 macro_rules! add_entry {
425                         // Adds entry which goes from the node pointed to by $directional_info to
426                         // $dest_node_id over the channel with id $chan_id with fees described in
427                         // $directional_info.
428                         ( $chan_id: expr, $dest_node_id: expr, $directional_info: expr, $starting_fee_msat: expr ) => {
429                                 //TODO: Explore simply adding fee to hit htlc_minimum_msat
430                                 if $starting_fee_msat as u64 + final_value_msat > $directional_info.htlc_minimum_msat {
431                                         let new_fee = $directional_info.fee_base_msat as u64 + ($starting_fee_msat + final_value_msat) * ($directional_info.fee_proportional_millionths as u64) / 1000000;
432                                         let mut total_fee = $starting_fee_msat as u64;
433                                         let mut hm_entry = dist.entry(&$directional_info.src_node_id);
434                                         let old_entry = hm_entry.or_insert_with(|| {
435                                                 let node = network.nodes.get(&$directional_info.src_node_id).unwrap();
436                                                 (u64::max_value(),
437                                                         node.lowest_inbound_channel_fee_base_msat as u64,
438                                                         node.lowest_inbound_channel_fee_proportional_millionths as u64,
439                                                         RouteHop {
440                                                                 pubkey: PublicKey::new(),
441                                                                 short_channel_id: 0,
442                                                                 fee_msat: 0,
443                                                                 cltv_expiry_delta: 0,
444                                                 })
445                                         });
446                                         if $directional_info.src_node_id != network.our_node_id {
447                                                 // Ignore new_fee for channel-from-us as we assume all channels-from-us
448                                                 // will have the same effective-fee
449                                                 total_fee += new_fee;
450                                                 total_fee += old_entry.2 * (final_value_msat + total_fee) / 1000000 + old_entry.1;
451                                         }
452                                         let new_graph_node = RouteGraphNode {
453                                                 pubkey: $directional_info.src_node_id,
454                                                 lowest_fee_to_peer_through_node: total_fee,
455                                         };
456                                         if old_entry.0 > total_fee {
457                                                 targets.push(new_graph_node);
458                                                 old_entry.0 = total_fee;
459                                                 old_entry.3 = RouteHop {
460                                                         pubkey: $dest_node_id.clone(),
461                                                         short_channel_id: $chan_id.clone(),
462                                                         fee_msat: new_fee, // This field is ignored on the last-hop anyway
463                                                         cltv_expiry_delta: $directional_info.cltv_expiry_delta as u32,
464                                                 }
465                                         }
466                                 }
467                         };
468                 }
469
470                 macro_rules! add_entries_to_cheapest_to_target_node {
471                         ( $node: expr, $node_id: expr, $fee_to_target_msat: expr ) => {
472                                 if first_hops.is_some() {
473                                         if let Some(first_hop) = first_hop_targets.get(&$node_id) {
474                                                 add_entry!(first_hop, $node_id, dummy_directional_info, $fee_to_target_msat);
475                                         }
476                                 }
477
478                                 for chan_id in $node.channels.iter() {
479                                         let chan = network.channels.get(chan_id).unwrap();
480                                         if chan.one_to_two.src_node_id == *$node_id {
481                                                 // ie $node is one, ie next hop in A* is two, via the two_to_one channel
482                                                 if first_hops.is_none() || chan.two_to_one.src_node_id != network.our_node_id {
483                                                         if chan.two_to_one.enabled {
484                                                                 add_entry!(chan_id, chan.one_to_two.src_node_id, chan.two_to_one, $fee_to_target_msat);
485                                                         }
486                                                 }
487                                         } else {
488                                                 if first_hops.is_none() || chan.one_to_two.src_node_id != network.our_node_id {
489                                                         if chan.one_to_two.enabled {
490                                                                 add_entry!(chan_id, chan.two_to_one.src_node_id, chan.one_to_two, $fee_to_target_msat);
491                                                         }
492                                                 }
493                                         }
494                                 }
495                         };
496                 }
497
498                 match network.nodes.get(target) {
499                         None => {},
500                         Some(node) => {
501                                 add_entries_to_cheapest_to_target_node!(node, target, 0);
502                         },
503                 }
504
505                 for hop in last_hops.iter() {
506                         if first_hops.is_none() || hop.src_node_id != network.our_node_id { // first_hop overrules last_hops
507                                 if network.nodes.get(&hop.src_node_id).is_some() {
508                                         if first_hops.is_some() {
509                                                 if let Some(first_hop) = first_hop_targets.get(&hop.src_node_id) {
510                                                         add_entry!(first_hop, hop.src_node_id, dummy_directional_info, 0);
511                                                 }
512                                         }
513                                         add_entry!(hop.short_channel_id, target, hop, 0);
514                                 }
515                         }
516                 }
517
518                 while let Some(RouteGraphNode { pubkey, lowest_fee_to_peer_through_node }) = targets.pop() {
519                         if pubkey == network.our_node_id {
520                                 let mut res = vec!(dist.remove(&network.our_node_id).unwrap().3);
521                                 while res.last().unwrap().pubkey != *target {
522                                         let new_entry = dist.remove(&res.last().unwrap().pubkey).unwrap().3;
523                                         res.last_mut().unwrap().fee_msat = new_entry.fee_msat;
524                                         res.last_mut().unwrap().cltv_expiry_delta = new_entry.cltv_expiry_delta;
525                                         res.push(new_entry);
526                                 }
527                                 res.last_mut().unwrap().fee_msat = final_value_msat;
528                                 res.last_mut().unwrap().cltv_expiry_delta = final_cltv;
529                                 return Ok(Route {
530                                         hops: res
531                                 });
532                         }
533
534                         match network.nodes.get(&pubkey) {
535                                 None => {},
536                                 Some(node) => {
537                                         let mut fee = lowest_fee_to_peer_through_node - node.lowest_inbound_channel_fee_base_msat as u64;
538                                         fee -= node.lowest_inbound_channel_fee_proportional_millionths as u64 * (fee + final_value_msat) / 1000000;
539                                         add_entries_to_cheapest_to_target_node!(node, &pubkey, fee);
540                                 },
541                         }
542                 }
543
544                 Err(HandleError{err: "Failed to find a path to the given destination", action: None})
545         }
546 }
547
548 #[cfg(test)]
549 mod tests {
550         use ln::channelmanager;
551         use ln::router::{Router,NodeInfo,NetworkMap,ChannelInfo,DirectionalChannelInfo,RouteHint};
552         use ln::msgs::GlobalFeatures;
553
554         use bitcoin::util::misc::hex_bytes;
555         use bitcoin::util::hash::Sha256dHash;
556
557         use secp256k1::key::{PublicKey,SecretKey};
558         use secp256k1::Secp256k1;
559
560         #[test]
561         fn route_test() {
562                 let secp_ctx = Secp256k1::new();
563                 let our_id = PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&secp_ctx, &hex_bytes("0101010101010101010101010101010101010101010101010101010101010101").unwrap()[..]).unwrap()).unwrap();
564                 let router = Router::new(our_id);
565
566                 // Build network from our_id to node8:
567                 //
568                 //        -1(1)2-  node1  -1(3)2-
569                 //       /                       \
570                 // our_id -1(12)2- node8 -1(13)2--- node3
571                 //       \                       /
572                 //        -1(2)2-  node2  -1(4)2-
573                 //
574                 //
575                 // chan1  1-to-2: disabled
576                 // chan1  2-to-1: enabled, 0 fee
577                 //
578                 // chan2  1-to-2: enabled, ignored fee
579                 // chan2  2-to-1: enabled, 0 fee
580                 //
581                 // chan3  1-to-2: enabled, 0 fee
582                 // chan3  2-to-1: enabled, 100 msat fee
583                 //
584                 // chan4  1-to-2: enabled, 100% fee
585                 // chan4  2-to-1: enabled, 0 fee
586                 //
587                 // chan12 1-to-2: enabled, ignored fee
588                 // chan12 2-to-1: enabled, 0 fee
589                 //
590                 // chan13 1-to-2: enabled, 200% fee
591                 // chan13 2-to-1: enabled, 0 fee
592                 //
593                 //
594                 //       -1(5)2- node4 -1(8)2--
595                 //       |         2          |
596                 //       |       (11)         |
597                 //      /          1           \
598                 // node3--1(6)2- node5 -1(9)2--- node7 (not in global route map)
599                 //      \                      /
600                 //       -1(7)2- node6 -1(10)2-
601                 //
602                 // chan5  1-to-2: enabled, 100 msat fee
603                 // chan5  2-to-1: enabled, 0 fee
604                 //
605                 // chan6  1-to-2: enabled, 0 fee
606                 // chan6  2-to-1: enabled, 0 fee
607                 //
608                 // chan7  1-to-2: enabled, 100% fee
609                 // chan7  2-to-1: enabled, 0 fee
610                 //
611                 // chan8  1-to-2: enabled, variable fee (0 then 1000 msat)
612                 // chan8  2-to-1: enabled, 0 fee
613                 //
614                 // chan9  1-to-2: enabled, 1001 msat fee
615                 // chan9  2-to-1: enabled, 0 fee
616                 //
617                 // chan10 1-to-2: enabled, 0 fee
618                 // chan10 2-to-1: enabled, 0 fee
619                 //
620                 // chan11 1-to-2: enabled, 0 fee
621                 // chan11 2-to-1: enabled, 0 fee
622
623                 let node1 = PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&secp_ctx, &hex_bytes("0202020202020202020202020202020202020202020202020202020202020202").unwrap()[..]).unwrap()).unwrap();
624                 let node2 = PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&secp_ctx, &hex_bytes("0303030303030303030303030303030303030303030303030303030303030303").unwrap()[..]).unwrap()).unwrap();
625                 let node3 = PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&secp_ctx, &hex_bytes("0404040404040404040404040404040404040404040404040404040404040404").unwrap()[..]).unwrap()).unwrap();
626                 let node4 = PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&secp_ctx, &hex_bytes("0505050505050505050505050505050505050505050505050505050505050505").unwrap()[..]).unwrap()).unwrap();
627                 let node5 = PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&secp_ctx, &hex_bytes("0606060606060606060606060606060606060606060606060606060606060606").unwrap()[..]).unwrap()).unwrap();
628                 let node6 = PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&secp_ctx, &hex_bytes("0707070707070707070707070707070707070707070707070707070707070707").unwrap()[..]).unwrap()).unwrap();
629                 let node7 = PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&secp_ctx, &hex_bytes("0808080808080808080808080808080808080808080808080808080808080808").unwrap()[..]).unwrap()).unwrap();
630                 let node8 = PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&secp_ctx, &hex_bytes("0909090909090909090909090909090909090909090909090909090909090909").unwrap()[..]).unwrap()).unwrap();
631
632                 let zero_hash = Sha256dHash::from_data(&[0; 32]);
633
634                 {
635                         let mut network = router.network_map.write().unwrap();
636
637                         network.nodes.insert(node1.clone(), NodeInfo {
638                                 channels: vec!(NetworkMap::get_key(1, zero_hash.clone()), NetworkMap::get_key(3, zero_hash.clone())),
639                                 lowest_inbound_channel_fee_base_msat: 100,
640                                 lowest_inbound_channel_fee_proportional_millionths: 0,
641                                 features: GlobalFeatures::new(),
642                                 last_update: 1,
643                                 rgb: [0; 3],
644                                 alias: [0; 32],
645                                 addresses: Vec::new(),
646                         });
647                         network.channels.insert(NetworkMap::get_key(1, zero_hash.clone()), ChannelInfo {
648                                 features: GlobalFeatures::new(),
649                                 one_to_two: DirectionalChannelInfo {
650                                         src_node_id: our_id.clone(),
651                                         last_update: 0,
652                                         enabled: false,
653                                         cltv_expiry_delta: u16::max_value(), // This value should be ignored
654                                         htlc_minimum_msat: 0,
655                                         fee_base_msat: u32::max_value(), // This value should be ignored
656                                         fee_proportional_millionths: u32::max_value(), // This value should be ignored
657                                 }, two_to_one: DirectionalChannelInfo {
658                                         src_node_id: node1.clone(),
659                                         last_update: 0,
660                                         enabled: true,
661                                         cltv_expiry_delta: 0,
662                                         htlc_minimum_msat: 0,
663                                         fee_base_msat: 0,
664                                         fee_proportional_millionths: 0,
665                                 },
666                         });
667                         network.nodes.insert(node2.clone(), NodeInfo {
668                                 channels: vec!(NetworkMap::get_key(2, zero_hash.clone()), NetworkMap::get_key(4, zero_hash.clone())),
669                                 lowest_inbound_channel_fee_base_msat: 0,
670                                 lowest_inbound_channel_fee_proportional_millionths: 0,
671                                 features: GlobalFeatures::new(),
672                                 last_update: 1,
673                                 rgb: [0; 3],
674                                 alias: [0; 32],
675                                 addresses: Vec::new(),
676                         });
677                         network.channels.insert(NetworkMap::get_key(2, zero_hash.clone()), ChannelInfo {
678                                 features: GlobalFeatures::new(),
679                                 one_to_two: DirectionalChannelInfo {
680                                         src_node_id: our_id.clone(),
681                                         last_update: 0,
682                                         enabled: true,
683                                         cltv_expiry_delta: u16::max_value(), // This value should be ignored
684                                         htlc_minimum_msat: 0,
685                                         fee_base_msat: u32::max_value(), // This value should be ignored
686                                         fee_proportional_millionths: u32::max_value(), // This value should be ignored
687                                 }, two_to_one: DirectionalChannelInfo {
688                                         src_node_id: node2.clone(),
689                                         last_update: 0,
690                                         enabled: true,
691                                         cltv_expiry_delta: 0,
692                                         htlc_minimum_msat: 0,
693                                         fee_base_msat: 0,
694                                         fee_proportional_millionths: 0,
695                                 },
696                         });
697                         network.nodes.insert(node8.clone(), NodeInfo {
698                                 channels: vec!(NetworkMap::get_key(12, zero_hash.clone()), NetworkMap::get_key(13, zero_hash.clone())),
699                                 lowest_inbound_channel_fee_base_msat: 0,
700                                 lowest_inbound_channel_fee_proportional_millionths: 0,
701                                 features: GlobalFeatures::new(),
702                                 last_update: 1,
703                                 rgb: [0; 3],
704                                 alias: [0; 32],
705                                 addresses: Vec::new(),
706                         });
707                         network.channels.insert(NetworkMap::get_key(12, zero_hash.clone()), ChannelInfo {
708                                 features: GlobalFeatures::new(),
709                                 one_to_two: DirectionalChannelInfo {
710                                         src_node_id: our_id.clone(),
711                                         last_update: 0,
712                                         enabled: true,
713                                         cltv_expiry_delta: u16::max_value(), // This value should be ignored
714                                         htlc_minimum_msat: 0,
715                                         fee_base_msat: u32::max_value(), // This value should be ignored
716                                         fee_proportional_millionths: u32::max_value(), // This value should be ignored
717                                 }, two_to_one: DirectionalChannelInfo {
718                                         src_node_id: node8.clone(),
719                                         last_update: 0,
720                                         enabled: true,
721                                         cltv_expiry_delta: 0,
722                                         htlc_minimum_msat: 0,
723                                         fee_base_msat: 0,
724                                         fee_proportional_millionths: 0,
725                                 },
726                         });
727                         network.nodes.insert(node3.clone(), NodeInfo {
728                                 channels: vec!(
729                                         NetworkMap::get_key(3, zero_hash.clone()),
730                                         NetworkMap::get_key(4, zero_hash.clone()),
731                                         NetworkMap::get_key(13, zero_hash.clone()),
732                                         NetworkMap::get_key(5, zero_hash.clone()),
733                                         NetworkMap::get_key(6, zero_hash.clone()),
734                                         NetworkMap::get_key(7, zero_hash.clone())),
735                                 lowest_inbound_channel_fee_base_msat: 0,
736                                 lowest_inbound_channel_fee_proportional_millionths: 0,
737                                 features: GlobalFeatures::new(),
738                                 last_update: 1,
739                                 rgb: [0; 3],
740                                 alias: [0; 32],
741                                 addresses: Vec::new(),
742                         });
743                         network.channels.insert(NetworkMap::get_key(3, zero_hash.clone()), ChannelInfo {
744                                 features: GlobalFeatures::new(),
745                                 one_to_two: DirectionalChannelInfo {
746                                         src_node_id: node1.clone(),
747                                         last_update: 0,
748                                         enabled: true,
749                                         cltv_expiry_delta: (3 << 8) | 1,
750                                         htlc_minimum_msat: 0,
751                                         fee_base_msat: 0,
752                                         fee_proportional_millionths: 0,
753                                 }, two_to_one: DirectionalChannelInfo {
754                                         src_node_id: node3.clone(),
755                                         last_update: 0,
756                                         enabled: true,
757                                         cltv_expiry_delta: (3 << 8) | 2,
758                                         htlc_minimum_msat: 0,
759                                         fee_base_msat: 100,
760                                         fee_proportional_millionths: 0,
761                                 },
762                         });
763                         network.channels.insert(NetworkMap::get_key(4, zero_hash.clone()), ChannelInfo {
764                                 features: GlobalFeatures::new(),
765                                 one_to_two: DirectionalChannelInfo {
766                                         src_node_id: node2.clone(),
767                                         last_update: 0,
768                                         enabled: true,
769                                         cltv_expiry_delta: (4 << 8) | 1,
770                                         htlc_minimum_msat: 0,
771                                         fee_base_msat: 0,
772                                         fee_proportional_millionths: 1000000,
773                                 }, two_to_one: DirectionalChannelInfo {
774                                         src_node_id: node3.clone(),
775                                         last_update: 0,
776                                         enabled: true,
777                                         cltv_expiry_delta: (4 << 8) | 2,
778                                         htlc_minimum_msat: 0,
779                                         fee_base_msat: 0,
780                                         fee_proportional_millionths: 0,
781                                 },
782                         });
783                         network.channels.insert(NetworkMap::get_key(13, zero_hash.clone()), ChannelInfo {
784                                 features: GlobalFeatures::new(),
785                                 one_to_two: DirectionalChannelInfo {
786                                         src_node_id: node8.clone(),
787                                         last_update: 0,
788                                         enabled: true,
789                                         cltv_expiry_delta: (13 << 8) | 1,
790                                         htlc_minimum_msat: 0,
791                                         fee_base_msat: 0,
792                                         fee_proportional_millionths: 2000000,
793                                 }, two_to_one: DirectionalChannelInfo {
794                                         src_node_id: node3.clone(),
795                                         last_update: 0,
796                                         enabled: true,
797                                         cltv_expiry_delta: (13 << 8) | 2,
798                                         htlc_minimum_msat: 0,
799                                         fee_base_msat: 0,
800                                         fee_proportional_millionths: 0,
801                                 },
802                         });
803                         network.nodes.insert(node4.clone(), NodeInfo {
804                                 channels: vec!(NetworkMap::get_key(5, zero_hash.clone()), NetworkMap::get_key(11, zero_hash.clone())),
805                                 lowest_inbound_channel_fee_base_msat: 0,
806                                 lowest_inbound_channel_fee_proportional_millionths: 0,
807                                 features: GlobalFeatures::new(),
808                                 last_update: 1,
809                                 rgb: [0; 3],
810                                 alias: [0; 32],
811                                 addresses: Vec::new(),
812                         });
813                         network.channels.insert(NetworkMap::get_key(5, zero_hash.clone()), ChannelInfo {
814                                 features: GlobalFeatures::new(),
815                                 one_to_two: DirectionalChannelInfo {
816                                         src_node_id: node3.clone(),
817                                         last_update: 0,
818                                         enabled: true,
819                                         cltv_expiry_delta: (5 << 8) | 1,
820                                         htlc_minimum_msat: 0,
821                                         fee_base_msat: 100,
822                                         fee_proportional_millionths: 0,
823                                 }, two_to_one: DirectionalChannelInfo {
824                                         src_node_id: node4.clone(),
825                                         last_update: 0,
826                                         enabled: true,
827                                         cltv_expiry_delta: (5 << 8) | 2,
828                                         htlc_minimum_msat: 0,
829                                         fee_base_msat: 0,
830                                         fee_proportional_millionths: 0,
831                                 },
832                         });
833                         network.nodes.insert(node5.clone(), NodeInfo {
834                                 channels: vec!(NetworkMap::get_key(6, zero_hash.clone()), NetworkMap::get_key(11, zero_hash.clone())),
835                                 lowest_inbound_channel_fee_base_msat: 0,
836                                 lowest_inbound_channel_fee_proportional_millionths: 0,
837                                 features: GlobalFeatures::new(),
838                                 last_update: 1,
839                                 rgb: [0; 3],
840                                 alias: [0; 32],
841                                 addresses: Vec::new(),
842                         });
843                         network.channels.insert(NetworkMap::get_key(6, zero_hash.clone()), ChannelInfo {
844                                 features: GlobalFeatures::new(),
845                                 one_to_two: DirectionalChannelInfo {
846                                         src_node_id: node3.clone(),
847                                         last_update: 0,
848                                         enabled: true,
849                                         cltv_expiry_delta: (6 << 8) | 1,
850                                         htlc_minimum_msat: 0,
851                                         fee_base_msat: 0,
852                                         fee_proportional_millionths: 0,
853                                 }, two_to_one: DirectionalChannelInfo {
854                                         src_node_id: node5.clone(),
855                                         last_update: 0,
856                                         enabled: true,
857                                         cltv_expiry_delta: (6 << 8) | 2,
858                                         htlc_minimum_msat: 0,
859                                         fee_base_msat: 0,
860                                         fee_proportional_millionths: 0,
861                                 },
862                         });
863                         network.channels.insert(NetworkMap::get_key(11, zero_hash.clone()), ChannelInfo {
864                                 features: GlobalFeatures::new(),
865                                 one_to_two: DirectionalChannelInfo {
866                                         src_node_id: node5.clone(),
867                                         last_update: 0,
868                                         enabled: true,
869                                         cltv_expiry_delta: (11 << 8) | 1,
870                                         htlc_minimum_msat: 0,
871                                         fee_base_msat: 0,
872                                         fee_proportional_millionths: 0,
873                                 }, two_to_one: DirectionalChannelInfo {
874                                         src_node_id: node4.clone(),
875                                         last_update: 0,
876                                         enabled: true,
877                                         cltv_expiry_delta: (11 << 8) | 2,
878                                         htlc_minimum_msat: 0,
879                                         fee_base_msat: 0,
880                                         fee_proportional_millionths: 0,
881                                 },
882                         });
883                         network.nodes.insert(node6.clone(), NodeInfo {
884                                 channels: vec!(NetworkMap::get_key(7, zero_hash.clone())),
885                                 lowest_inbound_channel_fee_base_msat: 0,
886                                 lowest_inbound_channel_fee_proportional_millionths: 0,
887                                 features: GlobalFeatures::new(),
888                                 last_update: 1,
889                                 rgb: [0; 3],
890                                 alias: [0; 32],
891                                 addresses: Vec::new(),
892                         });
893                         network.channels.insert(NetworkMap::get_key(7, zero_hash.clone()), ChannelInfo {
894                                 features: GlobalFeatures::new(),
895                                 one_to_two: DirectionalChannelInfo {
896                                         src_node_id: node3.clone(),
897                                         last_update: 0,
898                                         enabled: true,
899                                         cltv_expiry_delta: (7 << 8) | 1,
900                                         htlc_minimum_msat: 0,
901                                         fee_base_msat: 0,
902                                         fee_proportional_millionths: 1000000,
903                                 }, two_to_one: DirectionalChannelInfo {
904                                         src_node_id: node6.clone(),
905                                         last_update: 0,
906                                         enabled: true,
907                                         cltv_expiry_delta: (7 << 8) | 2,
908                                         htlc_minimum_msat: 0,
909                                         fee_base_msat: 0,
910                                         fee_proportional_millionths: 0,
911                                 },
912                         });
913                 }
914
915                 { // Simple route to 3 via 2
916                         let route = router.get_route(&node3, None, &Vec::new(), 100, 42).unwrap();
917                         assert_eq!(route.hops.len(), 2);
918
919                         assert_eq!(route.hops[0].pubkey, node2);
920                         assert_eq!(route.hops[0].short_channel_id, 2);
921                         assert_eq!(route.hops[0].fee_msat, 100);
922                         assert_eq!(route.hops[0].cltv_expiry_delta, (4 << 8) | 1);
923
924                         assert_eq!(route.hops[1].pubkey, node3);
925                         assert_eq!(route.hops[1].short_channel_id, 4);
926                         assert_eq!(route.hops[1].fee_msat, 100);
927                         assert_eq!(route.hops[1].cltv_expiry_delta, 42);
928                 }
929
930                 { // Route to 1 via 2 and 3 because our channel to 1 is disabled
931                         let route = router.get_route(&node1, None, &Vec::new(), 100, 42).unwrap();
932                         assert_eq!(route.hops.len(), 3);
933
934                         assert_eq!(route.hops[0].pubkey, node2);
935                         assert_eq!(route.hops[0].short_channel_id, 2);
936                         assert_eq!(route.hops[0].fee_msat, 200);
937                         assert_eq!(route.hops[0].cltv_expiry_delta, (4 << 8) | 1);
938
939                         assert_eq!(route.hops[1].pubkey, node3);
940                         assert_eq!(route.hops[1].short_channel_id, 4);
941                         assert_eq!(route.hops[1].fee_msat, 100);
942                         assert_eq!(route.hops[1].cltv_expiry_delta, (3 << 8) | 2);
943
944                         assert_eq!(route.hops[2].pubkey, node1);
945                         assert_eq!(route.hops[2].short_channel_id, 3);
946                         assert_eq!(route.hops[2].fee_msat, 100);
947                         assert_eq!(route.hops[2].cltv_expiry_delta, 42);
948                 }
949
950                 { // If we specify a channel to node8, that overrides our local channel view and that gets used
951                         let our_chans = vec![channelmanager::ChannelDetails {
952                                 channel_id: [0; 32],
953                                 short_channel_id: Some(42),
954                                 remote_network_id: node8.clone(),
955                                 channel_value_satoshis: 0,
956                                 user_id: 0,
957                         }];
958                         let route = router.get_route(&node3, Some(&our_chans), &Vec::new(), 100, 42).unwrap();
959                         assert_eq!(route.hops.len(), 2);
960
961                         assert_eq!(route.hops[0].pubkey, node8);
962                         assert_eq!(route.hops[0].short_channel_id, 42);
963                         assert_eq!(route.hops[0].fee_msat, 200);
964                         assert_eq!(route.hops[0].cltv_expiry_delta, (13 << 8) | 1);
965
966                         assert_eq!(route.hops[1].pubkey, node3);
967                         assert_eq!(route.hops[1].short_channel_id, 13);
968                         assert_eq!(route.hops[1].fee_msat, 100);
969                         assert_eq!(route.hops[1].cltv_expiry_delta, 42);
970                 }
971
972                 let mut last_hops = vec!(RouteHint {
973                                 src_node_id: node4.clone(),
974                                 short_channel_id: 8,
975                                 fee_base_msat: 0,
976                                 fee_proportional_millionths: 0,
977                                 cltv_expiry_delta: (8 << 8) | 1,
978                                 htlc_minimum_msat: 0,
979                         }, RouteHint {
980                                 src_node_id: node5.clone(),
981                                 short_channel_id: 9,
982                                 fee_base_msat: 1001,
983                                 fee_proportional_millionths: 0,
984                                 cltv_expiry_delta: (9 << 8) | 1,
985                                 htlc_minimum_msat: 0,
986                         }, RouteHint {
987                                 src_node_id: node6.clone(),
988                                 short_channel_id: 10,
989                                 fee_base_msat: 0,
990                                 fee_proportional_millionths: 0,
991                                 cltv_expiry_delta: (10 << 8) | 1,
992                                 htlc_minimum_msat: 0,
993                         });
994
995                 { // Simple test across 2, 3, 5, and 4 via a last_hop channel
996                         let route = router.get_route(&node7, None, &last_hops, 100, 42).unwrap();
997                         assert_eq!(route.hops.len(), 5);
998
999                         assert_eq!(route.hops[0].pubkey, node2);
1000                         assert_eq!(route.hops[0].short_channel_id, 2);
1001                         assert_eq!(route.hops[0].fee_msat, 100);
1002                         assert_eq!(route.hops[0].cltv_expiry_delta, (4 << 8) | 1);
1003
1004                         assert_eq!(route.hops[1].pubkey, node3);
1005                         assert_eq!(route.hops[1].short_channel_id, 4);
1006                         assert_eq!(route.hops[1].fee_msat, 0);
1007                         assert_eq!(route.hops[1].cltv_expiry_delta, (6 << 8) | 1);
1008
1009                         assert_eq!(route.hops[2].pubkey, node5);
1010                         assert_eq!(route.hops[2].short_channel_id, 6);
1011                         assert_eq!(route.hops[2].fee_msat, 0);
1012                         assert_eq!(route.hops[2].cltv_expiry_delta, (11 << 8) | 1);
1013
1014                         assert_eq!(route.hops[3].pubkey, node4);
1015                         assert_eq!(route.hops[3].short_channel_id, 11);
1016                         assert_eq!(route.hops[3].fee_msat, 0);
1017                         assert_eq!(route.hops[3].cltv_expiry_delta, (8 << 8) | 1);
1018
1019                         assert_eq!(route.hops[4].pubkey, node7);
1020                         assert_eq!(route.hops[4].short_channel_id, 8);
1021                         assert_eq!(route.hops[4].fee_msat, 100);
1022                         assert_eq!(route.hops[4].cltv_expiry_delta, 42);
1023                 }
1024
1025                 { // Simple test with outbound channel to 4 to test that last_hops and first_hops connect
1026                         let our_chans = vec![channelmanager::ChannelDetails {
1027                                 channel_id: [0; 32],
1028                                 short_channel_id: Some(42),
1029                                 remote_network_id: node4.clone(),
1030                                 channel_value_satoshis: 0,
1031                                 user_id: 0,
1032                         }];
1033                         let route = router.get_route(&node7, Some(&our_chans), &last_hops, 100, 42).unwrap();
1034                         assert_eq!(route.hops.len(), 2);
1035
1036                         assert_eq!(route.hops[0].pubkey, node4);
1037                         assert_eq!(route.hops[0].short_channel_id, 42);
1038                         assert_eq!(route.hops[0].fee_msat, 0);
1039                         assert_eq!(route.hops[0].cltv_expiry_delta, (8 << 8) | 1);
1040
1041                         assert_eq!(route.hops[1].pubkey, node7);
1042                         assert_eq!(route.hops[1].short_channel_id, 8);
1043                         assert_eq!(route.hops[1].fee_msat, 100);
1044                         assert_eq!(route.hops[1].cltv_expiry_delta, 42);
1045                 }
1046
1047                 last_hops[0].fee_base_msat = 1000;
1048
1049                 { // Revert to via 6 as the fee on 8 goes up
1050                         let route = router.get_route(&node7, None, &last_hops, 100, 42).unwrap();
1051                         assert_eq!(route.hops.len(), 4);
1052
1053                         assert_eq!(route.hops[0].pubkey, node2);
1054                         assert_eq!(route.hops[0].short_channel_id, 2);
1055                         assert_eq!(route.hops[0].fee_msat, 200); // fee increased as its % of value transferred across node
1056                         assert_eq!(route.hops[0].cltv_expiry_delta, (4 << 8) | 1);
1057
1058                         assert_eq!(route.hops[1].pubkey, node3);
1059                         assert_eq!(route.hops[1].short_channel_id, 4);
1060                         assert_eq!(route.hops[1].fee_msat, 100);
1061                         assert_eq!(route.hops[1].cltv_expiry_delta, (7 << 8) | 1);
1062
1063                         assert_eq!(route.hops[2].pubkey, node6);
1064                         assert_eq!(route.hops[2].short_channel_id, 7);
1065                         assert_eq!(route.hops[2].fee_msat, 0);
1066                         assert_eq!(route.hops[2].cltv_expiry_delta, (10 << 8) | 1);
1067
1068                         assert_eq!(route.hops[3].pubkey, node7);
1069                         assert_eq!(route.hops[3].short_channel_id, 10);
1070                         assert_eq!(route.hops[3].fee_msat, 100);
1071                         assert_eq!(route.hops[3].cltv_expiry_delta, 42);
1072                 }
1073
1074                 { // ...but still use 8 for larger payments as 6 has a variable feerate
1075                         let route = router.get_route(&node7, None, &last_hops, 2000, 42).unwrap();
1076                         assert_eq!(route.hops.len(), 5);
1077
1078                         assert_eq!(route.hops[0].pubkey, node2);
1079                         assert_eq!(route.hops[0].short_channel_id, 2);
1080                         assert_eq!(route.hops[0].fee_msat, 3000);
1081                         assert_eq!(route.hops[0].cltv_expiry_delta, (4 << 8) | 1);
1082
1083                         assert_eq!(route.hops[1].pubkey, node3);
1084                         assert_eq!(route.hops[1].short_channel_id, 4);
1085                         assert_eq!(route.hops[1].fee_msat, 0);
1086                         assert_eq!(route.hops[1].cltv_expiry_delta, (6 << 8) | 1);
1087
1088                         assert_eq!(route.hops[2].pubkey, node5);
1089                         assert_eq!(route.hops[2].short_channel_id, 6);
1090                         assert_eq!(route.hops[2].fee_msat, 0);
1091                         assert_eq!(route.hops[2].cltv_expiry_delta, (11 << 8) | 1);
1092
1093                         assert_eq!(route.hops[3].pubkey, node4);
1094                         assert_eq!(route.hops[3].short_channel_id, 11);
1095                         assert_eq!(route.hops[3].fee_msat, 1000);
1096                         assert_eq!(route.hops[3].cltv_expiry_delta, (8 << 8) | 1);
1097
1098                         assert_eq!(route.hops[4].pubkey, node7);
1099                         assert_eq!(route.hops[4].short_channel_id, 8);
1100                         assert_eq!(route.hops[4].fee_msat, 2000);
1101                         assert_eq!(route.hops[4].cltv_expiry_delta, 42);
1102                 }
1103         }
1104 }