-
Notifications
You must be signed in to change notification settings - Fork 456
Expand file tree
/
Copy pathupgrade_downgrade_tests.rs
More file actions
1425 lines (1222 loc) · 57.9 KB
/
upgrade_downgrade_tests.rs
File metadata and controls
1425 lines (1222 loc) · 57.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// This file is Copyright its original authors, visible in version control
// history.
//
// This file is licensed under the Apache License, Version 2.0 <LICENSE-APACHE
// or http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option.
// You may not use this file except in accordance with one or both of these
// licenses.
//! Tests which test upgrading from previous versions of LDK or downgrading to previous versions of
//! LDK.
use lightning_0_2::commitment_signed_dance as commitment_signed_dance_0_2;
use lightning_0_2::events::Event as Event_0_2;
use lightning_0_2::get_monitor as get_monitor_0_2;
use lightning_0_2::ln::channelmanager::PaymentId as PaymentId_0_2;
use lightning_0_2::ln::channelmanager::RecipientOnionFields as RecipientOnionFields_0_2;
use lightning_0_2::ln::functional_test_utils as lightning_0_2_utils;
use lightning_0_2::ln::msgs::ChannelMessageHandler as _;
use lightning_0_2::routing::router as router_0_2;
use lightning_0_2::util::ser::Writeable as _;
use lightning_0_1::commitment_signed_dance as commitment_signed_dance_0_1;
use lightning_0_1::events::ClosureReason as ClosureReason_0_1;
use lightning_0_1::expect_pending_htlcs_forwardable_ignore as expect_pending_htlcs_forwardable_ignore_0_1;
use lightning_0_1::get_monitor as get_monitor_0_1;
use lightning_0_1::ln::channelmanager::PaymentId as PaymentId_0_1;
use lightning_0_1::ln::channelmanager::RecipientOnionFields as RecipientOnionFields_0_1;
use lightning_0_1::ln::functional_test_utils as lightning_0_1_utils;
use lightning_0_1::ln::msgs::ChannelMessageHandler as _;
use lightning_0_1::routing::router as router_0_1;
use lightning_0_1::util::ser::Writeable as _;
use lightning_0_0_125::chain::ChannelMonitorUpdateStatus as ChannelMonitorUpdateStatus_0_0_125;
use lightning_0_0_125::check_added_monitors as check_added_monitors_0_0_125;
use lightning_0_0_125::events::ClosureReason as ClosureReason_0_0_125;
use lightning_0_0_125::expect_payment_claimed as expect_payment_claimed_0_0_125;
use lightning_0_0_125::get_htlc_update_msgs as get_htlc_update_msgs_0_0_125;
use lightning_0_0_125::get_monitor as get_monitor_0_0_125;
use lightning_0_0_125::get_revoke_commit_msgs as get_revoke_commit_msgs_0_0_125;
use lightning_0_0_125::ln::channelmanager::PaymentId as PaymentId_0_0_125;
use lightning_0_0_125::ln::channelmanager::RecipientOnionFields as RecipientOnionFields_0_0_125;
use lightning_0_0_125::ln::functional_test_utils as lightning_0_0_125_utils;
use lightning_0_0_125::ln::msgs::ChannelMessageHandler as _;
use lightning_0_0_125::routing::router as router_0_0_125;
use lightning_0_0_125::util::ser::Writeable as _;
use lightning_0_3::events::bump_transaction::sync::WalletSourceSync as _;
use lightning_0_3::events::{
Event as Event_0_3, HTLCHandlingFailureType as HTLCHandlingFailureType_0_3,
};
use lightning_0_3::expect_payment_claimable as expect_payment_claimable_0_3;
use lightning_0_3::get_event_msg as get_event_msg_0_3;
use lightning_0_3::get_monitor as get_monitor_0_3;
use lightning_0_3::ln::channelmanager::PaymentId as PaymentId_0_3;
use lightning_0_3::ln::functional_test_utils as lightning_0_3_utils;
use lightning_0_3::ln::functional_test_utils::{
PaymentFailedConditions as PaymentFailedConditions_0_3, ReconnectArgs as ReconnectArgs_0_3,
SendEvent as SendEvent_0_3,
};
use lightning_0_3::ln::funding::SpliceContribution as SpliceContribution_0_3;
use lightning_0_3::ln::msgs::BaseMessageHandler as _;
use lightning_0_3::ln::msgs::ChannelMessageHandler as _;
use lightning_0_3::ln::msgs::MessageSendEvent as MessageSendEvent_0_3;
use lightning_0_3::ln::outbound_payment::RecipientOnionFields as RecipientOnionFields_0_3;
use lightning_0_3::ln::splicing_tests::lock_splice as lock_splice_0_3;
use lightning_0_3::ln::splicing_tests::splice_channel as splice_channel_0_3;
use lightning_0_3::ln::types::ChannelId as ChannelId_0_3;
use lightning_0_3::reload_node as reload_node_0_3;
use lightning_0_3::routing::router as router_0_3;
use lightning_0_3::types::payment::{
PaymentHash as PaymentHash_0_3, PaymentPreimage as PaymentPreimage_0_3,
PaymentSecret as PaymentSecret_0_3,
};
use lightning_0_3::util::ser::Writeable as _;
use lightning::chain::channelmonitor::{ANTI_REORG_DELAY, HTLC_FAIL_BACK_BUFFER};
use lightning::check_spends;
use lightning::events::{ClosureReason, Event};
use lightning::expect_payment_claimable;
use lightning::ln::functional_test_utils as lightning_local_utils;
use lightning::ln::functional_test_utils::{ReconnectArgs, SendEvent};
use lightning::ln::msgs::ChannelMessageHandler as _;
use lightning::reload_node;
use lightning::sign::OutputSpender;
use lightning::types::payment::{PaymentHash, PaymentPreimage, PaymentSecret};
use lightning::util::ser::Writeable as _;
use bitcoin::script::Builder;
use bitcoin::secp256k1::Secp256k1;
use bitcoin::{opcodes, Amount, TxOut};
use std::sync::Arc;
#[test]
fn simple_upgrade() {
// Tests a simple case of upgrading from LDK 0.1 with a pending payment
let (node_a_ser, node_b_ser, mon_a_ser, mon_b_ser, preimage_bytes);
{
let chanmon_cfgs = lightning_0_1_utils::create_chanmon_cfgs(2);
let node_cfgs = lightning_0_1_utils::create_node_cfgs(2, &chanmon_cfgs);
let node_chanmgrs = lightning_0_1_utils::create_node_chanmgrs(2, &node_cfgs, &[None, None]);
let nodes = lightning_0_1_utils::create_network(2, &node_cfgs, &node_chanmgrs);
let chan_id = lightning_0_1_utils::create_announced_chan_between_nodes(&nodes, 0, 1).2;
let payment_preimage =
lightning_0_1_utils::route_payment(&nodes[0], &[&nodes[1]], 1_000_000);
preimage_bytes = payment_preimage.0 .0;
node_a_ser = nodes[0].node.encode();
node_b_ser = nodes[1].node.encode();
mon_a_ser = get_monitor_0_1!(nodes[0], chan_id).encode();
mon_b_ser = get_monitor_0_1!(nodes[1], chan_id).encode();
}
// Create a dummy node to reload over with the 0.1 state
let mut chanmon_cfgs = lightning_0_3_utils::create_chanmon_cfgs(2);
// Our TestChannelSigner will fail as we're jumping ahead, so disable its state-based checks
chanmon_cfgs[0].keys_manager.disable_all_state_policy_checks = true;
chanmon_cfgs[1].keys_manager.disable_all_state_policy_checks = true;
let node_cfgs = lightning_0_3_utils::create_node_cfgs(2, &chanmon_cfgs);
let (persister_a, persister_b, chain_mon_a, chain_mon_b);
let node_chanmgrs = lightning_0_3_utils::create_node_chanmgrs(2, &node_cfgs, &[None, None]);
let (node_a, node_b);
let mut nodes = lightning_0_3_utils::create_network(2, &node_cfgs, &node_chanmgrs);
let config = lightning_0_3_utils::test_default_channel_config();
let a_mons = &[&mon_a_ser[..]];
reload_node_0_3!(
nodes[0],
config.clone(),
&node_a_ser,
a_mons,
persister_a,
chain_mon_a,
node_a
);
reload_node_0_3!(
nodes[1],
config,
&node_b_ser,
&[&mon_b_ser],
persister_b,
chain_mon_b,
node_b
);
lightning_0_3_utils::reconnect_nodes(ReconnectArgs_0_3::new(&nodes[0], &nodes[1]));
let preimage = PaymentPreimage_0_3(preimage_bytes);
lightning_0_3_utils::claim_payment(&nodes[0], &[&nodes[1]], preimage);
}
#[test]
fn test_125_dangling_post_update_actions() {
// Tests a failure of upgrading from 0.0.125 to 0.1 when there's a dangling
// `MonitorUpdateCompletionAction` due to the bug fixed in
// 93b4479e472e6767af5df90fecdcdfb79074e260.
let (node_d_ser, mon_ser);
{
// First, we get RAA-source monitor updates held by using async persistence (note that this
// issue was first identified as a consequence of the bug fixed in
// 93b4479e472e6767af5df90fecdcdfb79074e260 but in order to replicate that bug we need a
// complicated multi-threaded race that is not deterministic, thus we "cheat" here by using
// async persistence). We do this by simply claiming an MPP payment and not completing the
// second channel's `ChannelMonitorUpdate`, blocking RAA `ChannelMonitorUpdate`s from the
// first (which is ultimately a very similar bug to the one fixed in 93b4479e472e6767af5df).
//
// Then, we claim a second payment on the channel, which ultimately doesn't have its
// `ChannelMonitorUpdate` completion handled due to the presence of the blocked
// `ChannelMonitorUpdate`. The claim also generates a post-update completion action, but
// the `ChannelMonitorUpdate` isn't queued due to the RAA-update block.
let chanmon_cfgs = lightning_0_0_125_utils::create_chanmon_cfgs(4);
let node_cfgs = lightning_0_0_125_utils::create_node_cfgs(4, &chanmon_cfgs);
let node_chanmgrs =
lightning_0_0_125_utils::create_node_chanmgrs(4, &node_cfgs, &[None, None, None, None]);
let nodes = lightning_0_0_125_utils::create_network(4, &node_cfgs, &node_chanmgrs);
let node_b_id = nodes[1].node.get_our_node_id();
let node_d_id = nodes[3].node.get_our_node_id();
lightning_0_0_125_utils::create_announced_chan_between_nodes_with_value(
&nodes, 0, 1, 100_000, 0,
);
lightning_0_0_125_utils::create_announced_chan_between_nodes_with_value(
&nodes, 0, 2, 100_000, 0,
);
let chan_id_1_3 = lightning_0_0_125_utils::create_announced_chan_between_nodes_with_value(
&nodes, 1, 3, 100_000, 0,
)
.2;
let chan_id_2_3 = lightning_0_0_125_utils::create_announced_chan_between_nodes_with_value(
&nodes, 2, 3, 100_000, 0,
)
.2;
let (preimage, hash, secret) =
lightning_0_0_125_utils::get_payment_preimage_hash(&nodes[3], Some(15_000_000), None);
let pay_params = router_0_0_125::PaymentParameters::from_node_id(
node_d_id,
lightning_0_0_125_utils::TEST_FINAL_CLTV,
)
.with_bolt11_features(nodes[3].node.bolt11_invoice_features())
.unwrap();
let route_params =
router_0_0_125::RouteParameters::from_payment_params_and_value(pay_params, 15_000_000);
let route = lightning_0_0_125_utils::get_route(&nodes[0], &route_params).unwrap();
let onion = RecipientOnionFields_0_0_125::secret_only(secret);
let id = PaymentId_0_0_125(hash.0);
nodes[0].node.send_payment_with_route(route, hash, onion, id).unwrap();
check_added_monitors_0_0_125!(nodes[0], 2);
let paths = &[&[&nodes[1], &nodes[3]][..], &[&nodes[2], &nodes[3]]];
lightning_0_0_125_utils::pass_along_route(&nodes[0], paths, 15_000_000, hash, secret);
let preimage_2 = lightning_0_0_125_utils::route_payment(&nodes[1], &[&nodes[3]], 100_000).0;
chanmon_cfgs[3].persister.set_update_ret(ChannelMonitorUpdateStatus_0_0_125::InProgress);
chanmon_cfgs[3].persister.set_update_ret(ChannelMonitorUpdateStatus_0_0_125::InProgress);
nodes[3].node.claim_funds(preimage);
check_added_monitors_0_0_125!(nodes[3], 2);
let (outpoint, update_id, _) = {
let latest_monitors = nodes[3].chain_monitor.latest_monitor_update_id.lock().unwrap();
latest_monitors.get(&chan_id_1_3).unwrap().clone()
};
nodes[3].chain_monitor.chain_monitor.channel_monitor_updated(outpoint, update_id).unwrap();
expect_payment_claimed_0_0_125!(nodes[3], hash, 15_000_000);
let ds_fulfill = get_htlc_update_msgs_0_0_125!(nodes[3], node_b_id);
// Due to an unrelated test bug in 0.0.125, we have to leave the `ChannelMonitorUpdate` for
// the previous node un-completed or we will panic when dropping the `Node`.
chanmon_cfgs[1].persister.set_update_ret(ChannelMonitorUpdateStatus_0_0_125::InProgress);
nodes[1].node.handle_update_fulfill_htlc(&node_d_id, &ds_fulfill.update_fulfill_htlcs[0]);
check_added_monitors_0_0_125!(nodes[1], 1);
nodes[1].node.handle_commitment_signed(&node_d_id, &ds_fulfill.commitment_signed);
check_added_monitors_0_0_125!(nodes[1], 1);
// The `ChannelMonitorUpdate` generated by the RAA from node B to node D will be blocked.
let (bs_raa, _) = get_revoke_commit_msgs_0_0_125!(nodes[1], node_d_id);
nodes[3].node.handle_revoke_and_ack(&node_b_id, &bs_raa);
check_added_monitors_0_0_125!(nodes[3], 0);
// Now that there is a blocked update in the B <-> D channel, we can claim the second
// payment across it, which, while it will generate a `ChannelMonitorUpdate`, will not
// complete its post-update actions.
nodes[3].node.claim_funds(preimage_2);
check_added_monitors_0_0_125!(nodes[3], 1);
// Finally, we set up the failure by force-closing the channel in question, ensuring that
// 0.1 will not create a per-peer state for node B.
let err = "Force Closing Channel".to_owned();
nodes[3].node.force_close_without_broadcasting_txn(&chan_id_1_3, &node_b_id, err).unwrap();
let reason =
ClosureReason_0_0_125::HolderForceClosed { broadcasted_latest_txn: Some(false) };
let peers = &[node_b_id];
lightning_0_0_125_utils::check_closed_event(&nodes[3], 1, reason, false, peers, 100_000);
lightning_0_0_125_utils::check_closed_broadcast(&nodes[3], 1, true);
check_added_monitors_0_0_125!(nodes[3], 1);
node_d_ser = nodes[3].node.encode();
mon_ser = get_monitor_0_0_125!(nodes[3], chan_id_2_3).encode();
}
// Create a dummy node to reload over with the 0.0.125 state
let mut chanmon_cfgs = lightning_local_utils::create_chanmon_cfgs(4);
// Our TestChannelSigner will fail as we're jumping ahead, so disable its state-based checks
chanmon_cfgs[0].keys_manager.disable_all_state_policy_checks = true;
chanmon_cfgs[1].keys_manager.disable_all_state_policy_checks = true;
chanmon_cfgs[2].keys_manager.disable_all_state_policy_checks = true;
chanmon_cfgs[3].keys_manager.disable_all_state_policy_checks = true;
let node_cfgs = lightning_local_utils::create_node_cfgs(4, &chanmon_cfgs);
let (persister, chain_mon);
let node_chanmgrs =
lightning_local_utils::create_node_chanmgrs(4, &node_cfgs, &[None, None, None, None]);
let node;
let mut nodes = lightning_local_utils::create_network(4, &node_cfgs, &node_chanmgrs);
// Finally, reload the node in the latest LDK. This previously failed.
let config = lightning_local_utils::test_default_channel_config();
reload_node!(nodes[3], config, &node_d_ser, &[&mon_ser], persister, chain_mon, node);
}
#[test]
fn test_0_1_legacy_remote_key_derivation() {
// Test that a channel opened with a v1/legacy `remote_key` derivation will be properly spent
// even after upgrading and opting into the new v2 derivation for new channels.
let (node_a_ser, node_b_ser, mon_a_ser, mon_b_ser, commitment_tx, channel_id);
let node_a_blocks;
{
let chanmon_cfgs = lightning_0_1_utils::create_chanmon_cfgs(2);
let node_cfgs = lightning_0_1_utils::create_node_cfgs(2, &chanmon_cfgs);
let node_chanmgrs = lightning_0_1_utils::create_node_chanmgrs(2, &node_cfgs, &[None, None]);
let nodes = lightning_0_1_utils::create_network(2, &node_cfgs, &node_chanmgrs);
let node_a_id = nodes[0].node.get_our_node_id();
let chan_id = lightning_0_1_utils::create_announced_chan_between_nodes(&nodes, 0, 1).2;
channel_id = chan_id.0;
let err = "".to_owned();
nodes[1].node.force_close_broadcasting_latest_txn(&chan_id, &node_a_id, err).unwrap();
commitment_tx = nodes[1].tx_broadcaster.txn_broadcasted.lock().unwrap().split_off(0);
assert_eq!(commitment_tx.len(), 1);
lightning_0_1_utils::check_added_monitors(&nodes[1], 1);
let reason = ClosureReason_0_1::HolderForceClosed { broadcasted_latest_txn: Some(true) };
lightning_0_1_utils::check_closed_event(&nodes[1], 1, reason, false, &[node_a_id], 100000);
lightning_0_1_utils::check_closed_broadcast(&nodes[1], 1, true);
node_a_ser = nodes[0].node.encode();
node_b_ser = nodes[1].node.encode();
mon_a_ser = get_monitor_0_1!(nodes[0], chan_id).encode();
mon_b_ser = get_monitor_0_1!(nodes[1], chan_id).encode();
node_a_blocks = Arc::clone(&nodes[0].blocks);
}
// Create a dummy node to reload over with the 0.1 state
let chanmon_cfgs = lightning_local_utils::create_chanmon_cfgs(2);
let node_cfgs = lightning_local_utils::create_node_cfgs(2, &chanmon_cfgs);
let (persister_a, persister_b, chain_mon_a, chain_mon_b);
let node_chanmgrs = lightning_local_utils::create_node_chanmgrs(2, &node_cfgs, &[None, None]);
let (node_a, node_b);
let mut nodes = lightning_local_utils::create_network(2, &node_cfgs, &node_chanmgrs);
let config = lightning_local_utils::test_default_channel_config();
let a_mons = &[&mon_a_ser[..]];
reload_node!(nodes[0], config.clone(), &node_a_ser, a_mons, persister_a, chain_mon_a, node_a);
reload_node!(nodes[1], config, &node_b_ser, &[&mon_b_ser], persister_b, chain_mon_b, node_b);
nodes[0].blocks = node_a_blocks;
let node_b_id = nodes[1].node.get_our_node_id();
lightning_local_utils::mine_transaction(&nodes[0], &commitment_tx[0]);
let reason = ClosureReason::CommitmentTxConfirmed;
lightning_local_utils::check_closed_event(&nodes[0], 1, reason, &[node_b_id], 100_000);
lightning_local_utils::check_added_monitors(&nodes[0], 1);
lightning_local_utils::check_closed_broadcast(&nodes[0], 1, false);
lightning_local_utils::connect_blocks(&nodes[0], ANTI_REORG_DELAY - 1);
let mut spendable_event = nodes[0].chain_monitor.chain_monitor.get_and_clear_pending_events();
assert_eq!(spendable_event.len(), 1);
if let Event::SpendableOutputs { outputs, channel_id: ev_id, counterparty_node_id: _ } =
spendable_event.pop().unwrap()
{
assert_eq!(ev_id.unwrap().0, channel_id);
assert_eq!(outputs.len(), 1);
let spk = Builder::new().push_opcode(opcodes::all::OP_RETURN).into_script();
let spend_tx = nodes[0]
.keys_manager
.backing
.spend_spendable_outputs(&[&outputs[0]], Vec::new(), spk, 253, None, &Secp256k1::new())
.unwrap();
check_spends!(spend_tx, commitment_tx[0]);
} else {
panic!("Wrong event");
}
}
fn do_test_0_1_htlc_forward_after_splice(fail_htlc: bool) {
// Test what happens if an HTLC set to be forwarded in 0.1 is forwarded after the inbound
// channel is spliced. In the initial splice code, this could have led to a dangling HTLC if
// the HTLC is failed as the backwards-failure would use the channel's original SCID which is
// no longer valid.
// In some later splice code, this also failed because the `KeysManager` would have tried to
// rotate the `to_remote` key, which we aren't able to do in the splicing protocol.
let (node_a_ser, node_b_ser, node_c_ser, mon_a_1_ser, mon_b_1_ser, mon_b_2_ser, mon_c_1_ser);
let (node_a_id, node_b_id, node_c_id);
let (chan_id_bytes_a, chan_id_bytes_b);
let (payment_secret_bytes, payment_hash_bytes, payment_preimage_bytes);
let (node_a_blocks, node_b_blocks, node_c_blocks);
const EXTRA_BLOCKS_BEFORE_FAIL: u32 = 145;
{
let chanmon_cfgs = lightning_0_1_utils::create_chanmon_cfgs(3);
let node_cfgs = lightning_0_1_utils::create_node_cfgs(3, &chanmon_cfgs);
let node_chanmgrs =
lightning_0_1_utils::create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
let nodes = lightning_0_1_utils::create_network(3, &node_cfgs, &node_chanmgrs);
node_a_id = nodes[0].node.get_our_node_id();
node_b_id = nodes[1].node.get_our_node_id();
node_c_id = nodes[2].node.get_our_node_id();
let chan_id_a = lightning_0_1_utils::create_announced_chan_between_nodes_with_value(
&nodes, 0, 1, 10_000_000, 0,
)
.2;
chan_id_bytes_a = chan_id_a.0;
let chan_id_b = lightning_0_1_utils::create_announced_chan_between_nodes_with_value(
&nodes, 1, 2, 50_000, 0,
)
.2;
chan_id_bytes_b = chan_id_b.0;
// Ensure all nodes are at the same initial height.
let node_max_height = nodes.iter().map(|node| node.best_block_info().1).max().unwrap();
for node in &nodes {
let blocks_to_mine = node_max_height - node.best_block_info().1;
if blocks_to_mine > 0 {
lightning_0_1_utils::connect_blocks(node, blocks_to_mine);
}
}
let (preimage, hash, secret) =
lightning_0_1_utils::get_payment_preimage_hash(&nodes[2], Some(1_000_000), None);
payment_preimage_bytes = preimage.0;
payment_hash_bytes = hash.0;
payment_secret_bytes = secret.0;
let pay_params = router_0_1::PaymentParameters::from_node_id(
node_c_id,
lightning_0_1_utils::TEST_FINAL_CLTV,
)
.with_bolt11_features(nodes[2].node.bolt11_invoice_features())
.unwrap();
let route_params =
router_0_1::RouteParameters::from_payment_params_and_value(pay_params, 1_000_000);
let mut route = lightning_0_1_utils::get_route(&nodes[0], &route_params).unwrap();
route.paths[0].hops[1].cltv_expiry_delta =
EXTRA_BLOCKS_BEFORE_FAIL + HTLC_FAIL_BACK_BUFFER + 1;
if fail_htlc {
// Pay more than the channel's value (and probably not enough fee)
route.paths[0].hops[1].fee_msat = 50_000_000;
}
let onion = RecipientOnionFields_0_1::secret_only(secret);
let id = PaymentId_0_1(hash.0);
nodes[0].node.send_payment_with_route(route, hash, onion, id).unwrap();
lightning_0_1_utils::check_added_monitors(&nodes[0], 1);
let send_event = lightning_0_1_utils::SendEvent::from_node(&nodes[0]);
nodes[1].node.handle_update_add_htlc(node_a_id, &send_event.msgs[0]);
commitment_signed_dance_0_1!(nodes[1], nodes[0], send_event.commitment_msg, false);
expect_pending_htlcs_forwardable_ignore_0_1!(nodes[1]);
// We now have an HTLC pending in node B's forwarding queue with the original channel's
// SCID as the source.
// We now upgrade to 0.2 and splice before forwarding that HTLC...
node_a_ser = nodes[0].node.encode();
node_b_ser = nodes[1].node.encode();
node_c_ser = nodes[2].node.encode();
mon_a_1_ser = get_monitor_0_1!(nodes[0], chan_id_a).encode();
mon_b_1_ser = get_monitor_0_1!(nodes[1], chan_id_a).encode();
mon_b_2_ser = get_monitor_0_1!(nodes[1], chan_id_b).encode();
mon_c_1_ser = get_monitor_0_1!(nodes[2], chan_id_b).encode();
node_a_blocks = Arc::clone(&nodes[0].blocks);
node_b_blocks = Arc::clone(&nodes[1].blocks);
node_c_blocks = Arc::clone(&nodes[2].blocks);
}
// Create a dummy node to reload over with the 0.1 state
let mut chanmon_cfgs = lightning_0_3_utils::create_chanmon_cfgs(3);
// Our TestChannelSigner will fail as we're jumping ahead, so disable its state-based checks
chanmon_cfgs[0].keys_manager.disable_all_state_policy_checks = true;
chanmon_cfgs[1].keys_manager.disable_all_state_policy_checks = true;
chanmon_cfgs[2].keys_manager.disable_all_state_policy_checks = true;
chanmon_cfgs[0].tx_broadcaster.blocks = node_a_blocks;
chanmon_cfgs[1].tx_broadcaster.blocks = node_b_blocks;
chanmon_cfgs[2].tx_broadcaster.blocks = node_c_blocks;
let node_cfgs = lightning_0_3_utils::create_node_cfgs(3, &chanmon_cfgs);
let (persister_a, persister_b, persister_c, chain_mon_a, chain_mon_b, chain_mon_c);
let node_chanmgrs =
lightning_0_3_utils::create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
let (node_a, node_b, node_c);
let mut nodes = lightning_0_3_utils::create_network(3, &node_cfgs, &node_chanmgrs);
let config = lightning_0_3_utils::test_default_channel_config();
let a_mons = &[&mon_a_1_ser[..]];
reload_node_0_3!(
nodes[0],
config.clone(),
&node_a_ser,
a_mons,
persister_a,
chain_mon_a,
node_a
);
let b_mons = &[&mon_b_1_ser[..], &mon_b_2_ser[..]];
reload_node_0_3!(
nodes[1],
config.clone(),
&node_b_ser,
b_mons,
persister_b,
chain_mon_b,
node_b
);
let c_mons = &[&mon_c_1_ser[..]];
reload_node_0_3!(nodes[2], config, &node_c_ser, c_mons, persister_c, chain_mon_c, node_c);
lightning_0_3_utils::reconnect_nodes(ReconnectArgs_0_3::new(&nodes[0], &nodes[1]));
let mut reconnect_b_c_args = ReconnectArgs_0_3::new(&nodes[1], &nodes[2]);
reconnect_b_c_args.send_channel_ready = (true, true);
reconnect_b_c_args.send_announcement_sigs = (true, true);
lightning_0_3_utils::reconnect_nodes(reconnect_b_c_args);
let contribution = SpliceContribution_0_3::splice_out(vec![TxOut {
value: Amount::from_sat(1_000),
script_pubkey: nodes[0].wallet_source.get_change_script().unwrap(),
}]);
let splice_tx =
splice_channel_0_3(&nodes[0], &nodes[1], ChannelId_0_3(chan_id_bytes_a), contribution);
for node in nodes.iter() {
lightning_0_3_utils::mine_transaction(node, &splice_tx);
lightning_0_3_utils::connect_blocks(node, ANTI_REORG_DELAY - 1);
}
let splice_locked =
get_event_msg_0_3!(nodes[0], MessageSendEvent_0_3::SendSpliceLocked, node_b_id);
lock_splice_0_3(&nodes[0], &nodes[1], &splice_locked, false);
for node in nodes.iter() {
lightning_0_3_utils::connect_blocks(node, EXTRA_BLOCKS_BEFORE_FAIL - ANTI_REORG_DELAY);
}
// Now release the HTLC to be failed back to node A
nodes[1].node.process_pending_htlc_forwards();
let pay_secret = PaymentSecret_0_3(payment_secret_bytes);
let pay_hash = PaymentHash_0_3(payment_hash_bytes);
let pay_preimage = PaymentPreimage_0_3(payment_preimage_bytes);
if fail_htlc {
let failure = HTLCHandlingFailureType_0_3::Forward {
node_id: Some(node_c_id),
channel_id: ChannelId_0_3(chan_id_bytes_b),
};
lightning_0_3_utils::expect_and_process_pending_htlcs_and_htlc_handling_failed(
&nodes[1],
&[failure],
);
lightning_0_3_utils::check_added_monitors(&nodes[1], 1);
let updates = lightning_0_3_utils::get_htlc_update_msgs(&nodes[1], &node_a_id);
nodes[0].node.handle_update_fail_htlc(node_b_id, &updates.update_fail_htlcs[0]);
lightning_0_3_utils::do_commitment_signed_dance(
&nodes[0],
&nodes[1],
&updates.commitment_signed,
false,
false,
);
let conditions = PaymentFailedConditions_0_3::new();
lightning_0_3_utils::expect_payment_failed_conditions(
&nodes[0], pay_hash, false, conditions,
);
} else {
lightning_0_3_utils::check_added_monitors(&nodes[1], 1);
let forward_event = SendEvent_0_3::from_node(&nodes[1]);
nodes[2].node.handle_update_add_htlc(node_b_id, &forward_event.msgs[0]);
let commitment = &forward_event.commitment_msg;
lightning_0_3_utils::do_commitment_signed_dance(
&nodes[2], &nodes[1], commitment, false, false,
);
lightning_0_3_utils::expect_and_process_pending_htlcs(&nodes[2], false);
expect_payment_claimable_0_3!(nodes[2], pay_hash, pay_secret, 1_000_000);
lightning_0_3_utils::claim_payment(&nodes[0], &[&nodes[1], &nodes[2]], pay_preimage);
}
}
#[test]
fn test_0_1_htlc_forward_after_splice() {
do_test_0_1_htlc_forward_after_splice(true);
do_test_0_1_htlc_forward_after_splice(false);
}
#[derive(PartialEq, Eq)]
enum MidHtlcForwardCase {
// Restart the upgraded node after locking an HTLC forward into the inbound edge, but before
// decoding the onion.
PreOnionDecode,
// Restart the upgraded node after locking an HTLC forward into the inbound edge + decoding the
// onion.
PostOnionDecode,
// Restart the upgraded node after the HTLC has been decoded and placed in the pending intercepted
// HTLCs map.
Intercept,
}
#[test]
fn upgrade_pre_htlc_forward_onion_decode() {
do_upgrade_mid_htlc_forward(MidHtlcForwardCase::PreOnionDecode);
}
#[test]
fn upgrade_mid_htlc_forward() {
do_upgrade_mid_htlc_forward(MidHtlcForwardCase::PostOnionDecode);
}
#[test]
fn upgrade_mid_htlc_intercept_forward() {
do_upgrade_mid_htlc_forward(MidHtlcForwardCase::Intercept);
}
fn do_upgrade_mid_htlc_forward(test: MidHtlcForwardCase) {
// In 0.3, we started reconstructing the `ChannelManager`'s HTLC forwards maps from the HTLCs
// contained in `Channel`s, as part of removing the requirement to regularly persist the
// `ChannelManager`. However, HTLC forwards can only be reconstructed this way if they were
// received on 0.3 or higher. Test that HTLC forwards that were serialized on <=0.2 will still
// succeed when read on 0.3+.
let (node_a_ser, node_b_ser, node_c_ser, mon_a_1_ser, mon_b_1_ser, mon_b_2_ser, mon_c_1_ser);
let (node_a_id, node_b_id, node_c_id);
let (payment_secret_bytes, payment_hash_bytes, payment_preimage_bytes);
let chan_id_bytes_b_c;
{
let chanmon_cfgs = lightning_0_2_utils::create_chanmon_cfgs(3);
let node_cfgs = lightning_0_2_utils::create_node_cfgs(3, &chanmon_cfgs);
let mut intercept_cfg = lightning_0_2_utils::test_default_channel_config();
intercept_cfg.accept_intercept_htlcs = true;
let cfgs = &[None, Some(intercept_cfg), None];
let node_chanmgrs = lightning_0_2_utils::create_node_chanmgrs(3, &node_cfgs, cfgs);
let nodes = lightning_0_2_utils::create_network(3, &node_cfgs, &node_chanmgrs);
node_a_id = nodes[0].node.get_our_node_id();
node_b_id = nodes[1].node.get_our_node_id();
node_c_id = nodes[2].node.get_our_node_id();
let chan_id_a = lightning_0_2_utils::create_announced_chan_between_nodes_with_value(
&nodes, 0, 1, 10_000_000, 0,
)
.2;
let chan_id_b = lightning_0_2_utils::create_announced_chan_between_nodes_with_value(
&nodes, 1, 2, 50_000, 0,
)
.2;
chan_id_bytes_b_c = chan_id_b.0;
// Ensure all nodes are at the same initial height.
let node_max_height = nodes.iter().map(|node| node.best_block_info().1).max().unwrap();
for node in &nodes {
let blocks_to_mine = node_max_height - node.best_block_info().1;
if blocks_to_mine > 0 {
lightning_0_2_utils::connect_blocks(node, blocks_to_mine);
}
}
// Initiate an HTLC to be sent over node_a -> node_b -> node_c
let (preimage, hash, secret) =
lightning_0_2_utils::get_payment_preimage_hash(&nodes[2], Some(1_000_000), None);
payment_preimage_bytes = preimage.0;
payment_hash_bytes = hash.0;
payment_secret_bytes = secret.0;
let pay_params = router_0_2::PaymentParameters::from_node_id(
node_c_id,
lightning_0_2_utils::TEST_FINAL_CLTV,
)
.with_bolt11_features(nodes[2].node.bolt11_invoice_features())
.unwrap();
let route_params =
router_0_2::RouteParameters::from_payment_params_and_value(pay_params, 1_000_000);
let mut route = lightning_0_2_utils::get_route(&nodes[0], &route_params).unwrap();
if test == MidHtlcForwardCase::Intercept {
route.paths[0].hops[1].short_channel_id = nodes[1].node.get_intercept_scid();
}
let onion = RecipientOnionFields_0_2::secret_only(secret);
let id = PaymentId_0_2(hash.0);
nodes[0].node.send_payment_with_route(route, hash, onion, id).unwrap();
lightning_0_2_utils::check_added_monitors(&nodes[0], 1);
let send_event = lightning_0_2_utils::SendEvent::from_node(&nodes[0]);
// Lock in the HTLC on the inbound edge of node_b without initiating the outbound edge.
nodes[1].node.handle_update_add_htlc(node_a_id, &send_event.msgs[0]);
commitment_signed_dance_0_2!(nodes[1], nodes[0], send_event.commitment_msg, false);
if test != MidHtlcForwardCase::PreOnionDecode {
nodes[1].node.test_process_pending_update_add_htlcs();
}
let events = nodes[1].node.get_and_clear_pending_events();
if test == MidHtlcForwardCase::Intercept {
assert_eq!(events.len(), 1);
assert!(matches!(events[0], Event_0_2::HTLCIntercepted { .. }));
} else {
assert!(events.is_empty());
}
node_a_ser = nodes[0].node.encode();
node_b_ser = nodes[1].node.encode();
node_c_ser = nodes[2].node.encode();
mon_a_1_ser = get_monitor_0_2!(nodes[0], chan_id_a).encode();
mon_b_1_ser = get_monitor_0_2!(nodes[1], chan_id_a).encode();
mon_b_2_ser = get_monitor_0_2!(nodes[1], chan_id_b).encode();
mon_c_1_ser = get_monitor_0_2!(nodes[2], chan_id_b).encode();
}
// Create a dummy node to reload over with the 0.2 state
let mut chanmon_cfgs = lightning_0_3_utils::create_chanmon_cfgs(3);
// Our TestChannelSigner will fail as we're jumping ahead, so disable its state-based checks
chanmon_cfgs[0].keys_manager.disable_all_state_policy_checks = true;
chanmon_cfgs[1].keys_manager.disable_all_state_policy_checks = true;
chanmon_cfgs[2].keys_manager.disable_all_state_policy_checks = true;
let node_cfgs = lightning_0_3_utils::create_node_cfgs(3, &chanmon_cfgs);
let (persister_a, persister_b, persister_c, chain_mon_a, chain_mon_b, chain_mon_c);
let node_chanmgrs =
lightning_0_3_utils::create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
let (node_a, node_b, node_c);
let mut nodes = lightning_0_3_utils::create_network(3, &node_cfgs, &node_chanmgrs);
let config = lightning_0_3_utils::test_default_channel_config();
let a_mons = &[&mon_a_1_ser[..]];
reload_node_0_3!(
nodes[0],
config.clone(),
&node_a_ser,
a_mons,
persister_a,
chain_mon_a,
node_a
);
let b_mons = &[&mon_b_1_ser[..], &mon_b_2_ser[..]];
reload_node_0_3!(
nodes[1],
config.clone(),
&node_b_ser,
b_mons,
persister_b,
chain_mon_b,
node_b
);
let c_mons = &[&mon_c_1_ser[..]];
reload_node_0_3!(nodes[2], config, &node_c_ser, c_mons, persister_c, chain_mon_c, node_c);
lightning_0_3_utils::reconnect_nodes(ReconnectArgs_0_3::new(&nodes[0], &nodes[1]));
let mut reconnect_b_c_args = ReconnectArgs_0_3::new(&nodes[1], &nodes[2]);
reconnect_b_c_args.send_channel_ready = (true, true);
reconnect_b_c_args.send_announcement_sigs = (true, true);
lightning_0_3_utils::reconnect_nodes(reconnect_b_c_args);
// Now release the HTLC from node_b to node_c, to be claimed back to node_a
nodes[1].node.process_pending_htlc_forwards();
if test == MidHtlcForwardCase::Intercept {
let events = nodes[1].node.get_and_clear_pending_events();
assert_eq!(events.len(), 1);
let (intercept_id, expected_outbound_amt_msat) = match events[0] {
Event_0_3::HTLCIntercepted { intercept_id, expected_outbound_amount_msat, .. } => {
(intercept_id, expected_outbound_amount_msat)
},
_ => panic!(),
};
nodes[1]
.node
.forward_intercepted_htlc(
intercept_id,
&ChannelId_0_3(chan_id_bytes_b_c),
nodes[2].node.get_our_node_id(),
expected_outbound_amt_msat,
)
.unwrap();
nodes[1].node.process_pending_htlc_forwards();
}
let pay_secret = PaymentSecret_0_3(payment_secret_bytes);
let pay_hash = PaymentHash_0_3(payment_hash_bytes);
let pay_preimage = PaymentPreimage_0_3(payment_preimage_bytes);
lightning_0_3_utils::check_added_monitors(&nodes[1], 1);
let forward_event = SendEvent_0_3::from_node(&nodes[1]);
nodes[2].node.handle_update_add_htlc(node_b_id, &forward_event.msgs[0]);
let commitment = &forward_event.commitment_msg;
lightning_0_3_utils::do_commitment_signed_dance(&nodes[2], &nodes[1], commitment, false, false);
lightning_0_3_utils::expect_and_process_pending_htlcs(&nodes[2], false);
expect_payment_claimable_0_3!(nodes[2], pay_hash, pay_secret, 1_000_000);
lightning_0_3_utils::claim_payment(&nodes[0], &[&nodes[1], &nodes[2]], pay_preimage);
}
#[test]
fn test_0_3_pending_forward_upgrade() {
// Tests upgrading from 0.3 with a pending HTLC forward.
// Phase 1: Create state in 0.3 with a pending forward (HTLC locked on inbound edge of node B)
// Phase 2: Reload with local lightning and complete the payment
let (node_a_ser, node_b_ser, node_c_ser, mon_a_1_ser, mon_b_1_ser, mon_b_2_ser, mon_c_1_ser);
let (node_a_id, node_b_id, _node_c_id);
let (payment_secret_bytes, payment_hash_bytes, payment_preimage_bytes);
{
let chanmon_cfgs = lightning_0_3_utils::create_chanmon_cfgs(3);
let node_cfgs = lightning_0_3_utils::create_node_cfgs(3, &chanmon_cfgs);
let node_chanmgrs =
lightning_0_3_utils::create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
let nodes = lightning_0_3_utils::create_network(3, &node_cfgs, &node_chanmgrs);
node_a_id = nodes[0].node.get_our_node_id();
node_b_id = nodes[1].node.get_our_node_id();
_node_c_id = nodes[2].node.get_our_node_id();
let chan_id_a = lightning_0_3_utils::create_announced_chan_between_nodes_with_value(
&nodes, 0, 1, 10_000_000, 0,
)
.2;
let chan_id_b = lightning_0_3_utils::create_announced_chan_between_nodes_with_value(
&nodes, 1, 2, 50_000, 0,
)
.2;
// Ensure all nodes are at the same initial height.
let node_max_height = nodes.iter().map(|node| node.best_block_info().1).max().unwrap();
for node in &nodes {
let blocks_to_mine = node_max_height - node.best_block_info().1;
if blocks_to_mine > 0 {
lightning_0_3_utils::connect_blocks(node, blocks_to_mine);
}
}
// Initiate an HTLC to be sent over node_a -> node_b -> node_c
let (preimage, hash, secret) =
lightning_0_3_utils::get_payment_preimage_hash(&nodes[2], Some(1_000_000), None);
payment_preimage_bytes = preimage.0;
payment_hash_bytes = hash.0;
payment_secret_bytes = secret.0;
let pay_params = router_0_3::PaymentParameters::from_node_id(
_node_c_id,
lightning_0_3_utils::TEST_FINAL_CLTV,
)
.with_bolt11_features(nodes[2].node.bolt11_invoice_features())
.unwrap();
let route_params =
router_0_3::RouteParameters::from_payment_params_and_value(pay_params, 1_000_000);
let route = lightning_0_3_utils::get_route(&nodes[0], &route_params).unwrap();
let onion = RecipientOnionFields_0_3::secret_only(secret);
let id = PaymentId_0_3(hash.0);
nodes[0].node.send_payment_with_route(route, hash, onion, id).unwrap();
lightning_0_3_utils::check_added_monitors(&nodes[0], 1);
let send_event = SendEvent_0_3::from_node(&nodes[0]);
// Lock in the HTLC on the inbound edge of node_b without initiating the outbound edge.
nodes[1].node.handle_update_add_htlc(node_a_id, &send_event.msgs[0]);
lightning_0_3_utils::do_commitment_signed_dance(
&nodes[1],
&nodes[0],
&send_event.commitment_msg,
false,
false,
);
// Process the pending update_add_htlcs but don't forward yet
nodes[1].node.test_process_pending_update_add_htlcs();
let events = nodes[1].node.get_and_clear_pending_events();
assert!(events.is_empty());
node_a_ser = nodes[0].node.encode();
node_b_ser = nodes[1].node.encode();
node_c_ser = nodes[2].node.encode();
mon_a_1_ser = get_monitor_0_3!(nodes[0], chan_id_a).encode();
mon_b_1_ser = get_monitor_0_3!(nodes[1], chan_id_a).encode();
mon_b_2_ser = get_monitor_0_3!(nodes[1], chan_id_b).encode();
mon_c_1_ser = get_monitor_0_3!(nodes[2], chan_id_b).encode();
}
// Create a dummy node to reload over with the 0.3 state
let mut chanmon_cfgs = lightning_local_utils::create_chanmon_cfgs(3);
// Our TestChannelSigner will fail as we're jumping ahead, so disable its state-based checks
chanmon_cfgs[0].keys_manager.disable_all_state_policy_checks = true;
chanmon_cfgs[1].keys_manager.disable_all_state_policy_checks = true;
chanmon_cfgs[2].keys_manager.disable_all_state_policy_checks = true;
let node_cfgs = lightning_local_utils::create_node_cfgs(3, &chanmon_cfgs);
let (persister_a, persister_b, persister_c, chain_mon_a, chain_mon_b, chain_mon_c);
let node_chanmgrs =
lightning_local_utils::create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
let (node_a, node_b, node_c);
let mut nodes = lightning_local_utils::create_network(3, &node_cfgs, &node_chanmgrs);
let config = lightning_local_utils::test_default_channel_config();
let a_mons = &[&mon_a_1_ser[..]];
reload_node!(nodes[0], config.clone(), &node_a_ser, a_mons, persister_a, chain_mon_a, node_a);
let b_mons = &[&mon_b_1_ser[..], &mon_b_2_ser[..]];
reload_node!(nodes[1], config.clone(), &node_b_ser, b_mons, persister_b, chain_mon_b, node_b);
let c_mons = &[&mon_c_1_ser[..]];
reload_node!(nodes[2], config, &node_c_ser, c_mons, persister_c, chain_mon_c, node_c);
lightning_local_utils::reconnect_nodes(ReconnectArgs::new(&nodes[0], &nodes[1]));
let mut reconnect_b_c_args = ReconnectArgs::new(&nodes[1], &nodes[2]);
reconnect_b_c_args.send_channel_ready = (true, true);
reconnect_b_c_args.send_announcement_sigs = (true, true);
lightning_local_utils::reconnect_nodes(reconnect_b_c_args);
// Now release the HTLC from node_b to node_c, to be claimed back to node_a
nodes[1].node.process_pending_htlc_forwards();
let pay_secret = PaymentSecret(payment_secret_bytes);
let pay_hash = PaymentHash(payment_hash_bytes);
let pay_preimage = PaymentPreimage(payment_preimage_bytes);
lightning_local_utils::check_added_monitors(&nodes[1], 1);
let forward_event = SendEvent::from_node(&nodes[1]);
nodes[2].node.handle_update_add_htlc(node_b_id, &forward_event.msgs[0]);
let commitment = &forward_event.commitment_msg;
lightning_local_utils::do_commitment_signed_dance(
&nodes[2], &nodes[1], commitment, false, false,
);
lightning_local_utils::expect_and_process_pending_htlcs(&nodes[2], false);
expect_payment_claimable!(nodes[2], pay_hash, pay_secret, 1_000_000);
lightning_local_utils::claim_payment(&nodes[0], &[&nodes[1], &nodes[2]], pay_preimage);
}
#[test]
fn test_0_2_pending_forward_upgrade_fails() {
// Tests that upgrading directly from 0.2 to local lightning fails with DecodeError::InvalidValue
// when there's a pending HTLC forward, because in 0.5 we started requiring new pending_htlc
// fields that started being written in 0.3.
// XXX update this
use lightning::ln::channelmanager::ChannelManagerReadArgs;
use lightning::ln::msgs::DecodeError;
use lightning::util::ser::ReadableArgs;
let (node_b_ser, mon_b_1_ser, mon_b_2_ser);
{
let chanmon_cfgs = lightning_0_2_utils::create_chanmon_cfgs(3);
let node_cfgs = lightning_0_2_utils::create_node_cfgs(3, &chanmon_cfgs);
let node_chanmgrs =
lightning_0_2_utils::create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
let nodes = lightning_0_2_utils::create_network(3, &node_cfgs, &node_chanmgrs);
let chan_id_a = lightning_0_2_utils::create_announced_chan_between_nodes_with_value(
&nodes, 0, 1, 10_000_000, 0,
)
.2;
let chan_id_b = lightning_0_2_utils::create_announced_chan_between_nodes_with_value(
&nodes, 1, 2, 50_000, 0,
)
.2;
// Send HTLC from node_a to node_c, hold at node_b (don't call process_pending_htlc_forwards)
let node_a_id = nodes[0].node.get_our_node_id();
let node_c_id = nodes[2].node.get_our_node_id();
let (_preimage, hash, secret) =
lightning_0_2_utils::get_payment_preimage_hash(&nodes[2], Some(1_000_000), None);
let pay_params = router_0_2::PaymentParameters::from_node_id(
node_c_id,
lightning_0_2_utils::TEST_FINAL_CLTV,
)
.with_bolt11_features(nodes[2].node.bolt11_invoice_features())
.unwrap();
let route_params =
router_0_2::RouteParameters::from_payment_params_and_value(pay_params, 1_000_000);
let route = lightning_0_2_utils::get_route(&nodes[0], &route_params).unwrap();
let onion = RecipientOnionFields_0_2::secret_only(secret);
let id = PaymentId_0_2(hash.0);
nodes[0].node.send_payment_with_route(route, hash, onion, id).unwrap();
lightning_0_2_utils::check_added_monitors(&nodes[0], 1);
let send_event = lightning_0_2_utils::SendEvent::from_node(&nodes[0]);
// Lock in the HTLC on the inbound edge of node_b without initiating the outbound edge.
nodes[1].node.handle_update_add_htlc(node_a_id, &send_event.msgs[0]);
commitment_signed_dance_0_2!(nodes[1], nodes[0], send_event.commitment_msg, false);
// Process the pending HTLC to create a pending forward (but don't actually forward it)
nodes[1].node.test_process_pending_update_add_htlcs();
// Serialize node_b with the pending forward
node_b_ser = nodes[1].node.encode();
mon_b_1_ser = get_monitor_0_2!(nodes[1], chan_id_a).encode();
mon_b_2_ser = get_monitor_0_2!(nodes[1], chan_id_b).encode();
}
// Try to reload using local lightning - this should fail with DecodeError::InvalidValue
let mut chanmon_cfgs = lightning_local_utils::create_chanmon_cfgs(1);
chanmon_cfgs[0].keys_manager.disable_all_state_policy_checks = true;