-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathstore.rs
850 lines (773 loc) · 24.8 KB
/
store.rs
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
// 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.
use crate::hex_utils;
use crate::io::{
PAYMENT_INFO_PERSISTENCE_PRIMARY_NAMESPACE, PAYMENT_INFO_PERSISTENCE_SECONDARY_NAMESPACE,
};
use crate::logger::{log_error, Logger};
use crate::types::DynStore;
use crate::Error;
use lightning::ln::channelmanager::PaymentId;
use lightning::ln::msgs::DecodeError;
use lightning::offers::offer::OfferId;
use lightning::util::ser::{Readable, Writeable};
use lightning::util::string::UntrustedString;
use lightning::{
_init_and_read_len_prefixed_tlv_fields, impl_writeable_tlv_based,
impl_writeable_tlv_based_enum, write_tlv_fields,
};
use lightning_types::payment::{PaymentHash, PaymentPreimage, PaymentSecret};
use bitcoin::{BlockHash, Txid};
use std::collections::hash_map;
use std::collections::HashMap;
use std::ops::Deref;
use std::sync::{Arc, Mutex};
use std::time::{Duration, SystemTime, UNIX_EPOCH};
/// Represents a payment.
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct PaymentDetails {
/// The identifier of this payment.
pub id: PaymentId,
/// The kind of the payment.
pub kind: PaymentKind,
/// The amount transferred.
pub amount_msat: Option<u64>,
/// The direction of the payment.
pub direction: PaymentDirection,
/// The status of the payment.
pub status: PaymentStatus,
/// The timestamp, in seconds since start of the UNIX epoch, when this entry was last updated.
pub latest_update_timestamp: u64,
}
impl PaymentDetails {
pub(crate) fn new(
id: PaymentId, kind: PaymentKind, amount_msat: Option<u64>, direction: PaymentDirection,
status: PaymentStatus,
) -> Self {
let latest_update_timestamp = SystemTime::now()
.duration_since(UNIX_EPOCH)
.unwrap_or(Duration::from_secs(0))
.as_secs();
Self { id, kind, amount_msat, direction, status, latest_update_timestamp }
}
pub(crate) fn update(&mut self, update: &PaymentDetailsUpdate) -> bool {
debug_assert_eq!(
self.id, update.id,
"We should only ever override payment data for the same payment id"
);
let mut updated = false;
macro_rules! update_if_necessary {
($val: expr, $update: expr) => {
if $val != $update {
$val = $update;
updated = true;
}
};
}
if let Some(hash_opt) = update.hash {
match self.kind {
PaymentKind::Bolt12Offer { ref mut hash, .. } => {
debug_assert_eq!(
self.direction,
PaymentDirection::Outbound,
"We should only ever override payment hash for outbound BOLT 12 payments"
);
update_if_necessary!(*hash, hash_opt);
},
PaymentKind::Bolt12Refund { ref mut hash, .. } => {
debug_assert_eq!(
self.direction,
PaymentDirection::Outbound,
"We should only ever override payment hash for outbound BOLT 12 payments"
);
update_if_necessary!(*hash, hash_opt);
},
_ => {
// We can omit updating the hash for BOLT11 payments as the payment hash
// will always be known from the beginning.
},
}
}
if let Some(preimage_opt) = update.preimage {
match self.kind {
PaymentKind::Bolt11 { ref mut preimage, .. } => {
update_if_necessary!(*preimage, preimage_opt)
},
PaymentKind::Bolt11Jit { ref mut preimage, .. } => {
update_if_necessary!(*preimage, preimage_opt)
},
PaymentKind::Bolt12Offer { ref mut preimage, .. } => {
update_if_necessary!(*preimage, preimage_opt)
},
PaymentKind::Bolt12Refund { ref mut preimage, .. } => {
update_if_necessary!(*preimage, preimage_opt)
},
PaymentKind::Spontaneous { ref mut preimage, .. } => {
update_if_necessary!(*preimage, preimage_opt)
},
_ => {},
}
}
if let Some(secret_opt) = update.secret {
match self.kind {
PaymentKind::Bolt11 { ref mut secret, .. } => {
update_if_necessary!(*secret, secret_opt)
},
PaymentKind::Bolt11Jit { ref mut secret, .. } => {
update_if_necessary!(*secret, secret_opt)
},
PaymentKind::Bolt12Offer { ref mut secret, .. } => {
update_if_necessary!(*secret, secret_opt)
},
PaymentKind::Bolt12Refund { ref mut secret, .. } => {
update_if_necessary!(*secret, secret_opt)
},
_ => {},
}
}
if let Some(amount_opt) = update.amount_msat {
update_if_necessary!(self.amount_msat, amount_opt);
}
if let Some(status) = update.status {
update_if_necessary!(self.status, status);
}
if let Some(confirmation_status) = update.confirmation_status {
match self.kind {
PaymentKind::Onchain { ref mut status, .. } => {
update_if_necessary!(*status, confirmation_status);
},
_ => {},
}
}
if updated {
self.latest_update_timestamp = SystemTime::now()
.duration_since(UNIX_EPOCH)
.unwrap_or(Duration::from_secs(0))
.as_secs();
}
updated
}
}
impl Writeable for PaymentDetails {
fn write<W: lightning::util::ser::Writer>(
&self, writer: &mut W,
) -> Result<(), lightning::io::Error> {
write_tlv_fields!(writer, {
(0, self.id, required), // Used to be `hash` for v0.2.1 and prior
// 1 briefly used to be lsp_fee_limits, could probably be reused at some point in the future.
// 2 used to be `preimage` before it was moved to `kind` in v0.3.0
(2, None::<Option<PaymentPreimage>>, required),
(3, self.kind, required),
// 4 used to be `secret` before it was moved to `kind` in v0.3.0
(4, None::<Option<PaymentSecret>>, required),
(5, self.latest_update_timestamp, required),
(6, self.amount_msat, required),
(8, self.direction, required),
(10, self.status, required)
});
Ok(())
}
}
impl Readable for PaymentDetails {
fn read<R: lightning::io::Read>(reader: &mut R) -> Result<PaymentDetails, DecodeError> {
let unix_time_secs = SystemTime::now()
.duration_since(UNIX_EPOCH)
.unwrap_or(Duration::from_secs(0))
.as_secs();
_init_and_read_len_prefixed_tlv_fields!(reader, {
(0, id, required), // Used to be `hash`
(1, lsp_fee_limits, option),
(2, preimage, required),
(3, kind_opt, option),
(4, secret, required),
(5, latest_update_timestamp, (default_value, unix_time_secs)),
(6, amount_msat, required),
(8, direction, required),
(10, status, required)
});
let id: PaymentId = id.0.ok_or(DecodeError::InvalidValue)?;
let preimage: Option<PaymentPreimage> = preimage.0.ok_or(DecodeError::InvalidValue)?;
let secret: Option<PaymentSecret> = secret.0.ok_or(DecodeError::InvalidValue)?;
let latest_update_timestamp: u64 =
latest_update_timestamp.0.ok_or(DecodeError::InvalidValue)?;
let amount_msat: Option<u64> = amount_msat.0.ok_or(DecodeError::InvalidValue)?;
let direction: PaymentDirection = direction.0.ok_or(DecodeError::InvalidValue)?;
let status: PaymentStatus = status.0.ok_or(DecodeError::InvalidValue)?;
let kind = if let Some(kind) = kind_opt {
// If we serialized the payment kind, use it.
// This will always be the case for any version after v0.2.1.
kind
} else {
// Otherwise we persisted with v0.2.1 or before, and puzzle together the kind from the
// provided fields.
// We used to track everything by hash, but switched to track everything by id
// post-v0.2.1. As both are serialized identically, we just switched the `0`-type field above
// from `PaymentHash` to `PaymentId` and serialize a separate `PaymentHash` in
// `PaymentKind` when needed. Here, for backwards compat, we can just re-create the
// `PaymentHash` from the id, as 'back then' `payment_hash == payment_id` was always
// true.
let hash = PaymentHash(id.0);
if secret.is_some() {
if let Some(lsp_fee_limits) = lsp_fee_limits {
PaymentKind::Bolt11Jit { hash, preimage, secret, lsp_fee_limits }
} else {
PaymentKind::Bolt11 { hash, preimage, secret }
}
} else {
PaymentKind::Spontaneous { hash, preimage }
}
};
Ok(PaymentDetails { id, kind, amount_msat, direction, status, latest_update_timestamp })
}
}
/// Represents the direction of a payment.
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub enum PaymentDirection {
/// The payment is inbound.
Inbound,
/// The payment is outbound.
Outbound,
}
impl_writeable_tlv_based_enum!(PaymentDirection,
(0, Inbound) => {},
(1, Outbound) => {}
);
/// Represents the current status of a payment.
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub enum PaymentStatus {
/// The payment is still pending.
Pending,
/// The payment succeeded.
Succeeded,
/// The payment failed.
Failed,
}
impl_writeable_tlv_based_enum!(PaymentStatus,
(0, Pending) => {},
(2, Succeeded) => {},
(4, Failed) => {}
);
/// Represents the kind of a payment.
#[derive(Clone, Debug, PartialEq, Eq)]
pub enum PaymentKind {
/// An on-chain payment.
Onchain {
/// The transaction identifier of this payment.
txid: Txid,
/// The confirmation status of this payment.
status: ConfirmationStatus,
},
/// A [BOLT 11] payment.
///
/// [BOLT 11]: https://github.com/lightning/bolts/blob/master/11-payment-encoding.md
Bolt11 {
/// The payment hash, i.e., the hash of the `preimage`.
hash: PaymentHash,
/// The pre-image used by the payment.
preimage: Option<PaymentPreimage>,
/// The secret used by the payment.
secret: Option<PaymentSecret>,
},
/// A [BOLT 11] payment intended to open an [LSPS 2] just-in-time channel.
///
/// [BOLT 11]: https://github.com/lightning/bolts/blob/master/11-payment-encoding.md
/// [LSPS 2]: https://github.com/BitcoinAndLightningLayerSpecs/lsp/blob/main/LSPS2/README.md
Bolt11Jit {
/// The payment hash, i.e., the hash of the `preimage`.
hash: PaymentHash,
/// The pre-image used by the payment.
preimage: Option<PaymentPreimage>,
/// The secret used by the payment.
secret: Option<PaymentSecret>,
/// Limits applying to how much fee we allow an LSP to deduct from the payment amount.
///
/// Allowing them to deduct this fee from the first inbound payment will pay for the LSP's
/// channel opening fees.
///
/// See [`LdkChannelConfig::accept_underpaying_htlcs`] for more information.
///
/// [`LdkChannelConfig::accept_underpaying_htlcs`]: lightning::util::config::ChannelConfig::accept_underpaying_htlcs
lsp_fee_limits: LSPFeeLimits,
},
/// A [BOLT 12] 'offer' payment, i.e., a payment for an [`Offer`].
///
/// [BOLT 12]: https://github.com/lightning/bolts/blob/master/12-offer-encoding.md
/// [`Offer`]: crate::lightning::offers::offer::Offer
Bolt12Offer {
/// The payment hash, i.e., the hash of the `preimage`.
hash: Option<PaymentHash>,
/// The pre-image used by the payment.
preimage: Option<PaymentPreimage>,
/// The secret used by the payment.
secret: Option<PaymentSecret>,
/// The ID of the offer this payment is for.
offer_id: OfferId,
/// The payer note for the payment.
///
/// Truncated to [`PAYER_NOTE_LIMIT`] characters.
///
/// This will always be `None` for payments serialized with version `v0.3.0`.
///
/// [`PAYER_NOTE_LIMIT`]: lightning::offers::invoice_request::PAYER_NOTE_LIMIT
payer_note: Option<UntrustedString>,
/// The quantity of an item requested in the offer.
///
/// This will always be `None` for payments serialized with version `v0.3.0`.
quantity: Option<u64>,
},
/// A [BOLT 12] 'refund' payment, i.e., a payment for a [`Refund`].
///
/// [BOLT 12]: https://github.com/lightning/bolts/blob/master/12-offer-encoding.md
/// [`Refund`]: lightning::offers::refund::Refund
Bolt12Refund {
/// The payment hash, i.e., the hash of the `preimage`.
hash: Option<PaymentHash>,
/// The pre-image used by the payment.
preimage: Option<PaymentPreimage>,
/// The secret used by the payment.
secret: Option<PaymentSecret>,
/// The payer note for the refund payment.
///
/// This will always be `None` for payments serialized with version `v0.3.0`.
payer_note: Option<UntrustedString>,
/// The quantity of an item that the refund is for.
///
/// This will always be `None` for payments serialized with version `v0.3.0`.
quantity: Option<u64>,
},
/// A spontaneous ("keysend") payment.
Spontaneous {
/// The payment hash, i.e., the hash of the `preimage`.
hash: PaymentHash,
/// The pre-image used by the payment.
preimage: Option<PaymentPreimage>,
},
}
impl_writeable_tlv_based_enum!(PaymentKind,
(0, Onchain) => {
(0, txid, required),
(2, status, required),
},
(2, Bolt11) => {
(0, hash, required),
(2, preimage, option),
(4, secret, option),
},
(4, Bolt11Jit) => {
(0, hash, required),
(2, preimage, option),
(4, secret, option),
(6, lsp_fee_limits, required),
},
(6, Bolt12Offer) => {
(0, hash, option),
(1, payer_note, option),
(2, preimage, option),
(3, quantity, option),
(4, secret, option),
(6, offer_id, required),
},
(8, Spontaneous) => {
(0, hash, required),
(2, preimage, option),
},
(10, Bolt12Refund) => {
(0, hash, option),
(1, payer_note, option),
(2, preimage, option),
(3, quantity, option),
(4, secret, option),
}
);
/// Represents the confirmation status of a transaction.
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub enum ConfirmationStatus {
/// The transaction is confirmed in the best chain.
Confirmed {
/// The hash of the block in which the transaction was confirmed.
block_hash: BlockHash,
/// The height under which the block was confirmed.
height: u32,
/// The time at which the block was confirmed.
timestamp: u64,
},
/// The transaction is unconfirmed.
Unconfirmed,
}
impl_writeable_tlv_based_enum!(ConfirmationStatus,
(0, Confirmed) => {
(0, block_hash, required),
(2, height, required),
(4, timestamp, required),
},
(2, Unconfirmed) => {},
);
/// Limits applying to how much fee we allow an LSP to deduct from the payment amount.
///
/// See [`LdkChannelConfig::accept_underpaying_htlcs`] for more information.
///
/// [`LdkChannelConfig::accept_underpaying_htlcs`]: lightning::util::config::ChannelConfig::accept_underpaying_htlcs
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub struct LSPFeeLimits {
/// The maximal total amount we allow any configured LSP withhold from us when forwarding the
/// payment.
pub max_total_opening_fee_msat: Option<u64>,
/// The maximal proportional fee, in parts-per-million millisatoshi, we allow any configured
/// LSP withhold from us when forwarding the payment.
pub max_proportional_opening_fee_ppm_msat: Option<u64>,
}
impl_writeable_tlv_based!(LSPFeeLimits, {
(0, max_total_opening_fee_msat, option),
(2, max_proportional_opening_fee_ppm_msat, option),
});
#[derive(Clone, Debug, PartialEq, Eq)]
pub(crate) struct PaymentDetailsUpdate {
pub id: PaymentId,
pub hash: Option<Option<PaymentHash>>,
pub preimage: Option<Option<PaymentPreimage>>,
pub secret: Option<Option<PaymentSecret>>,
pub amount_msat: Option<Option<u64>>,
pub direction: Option<PaymentDirection>,
pub status: Option<PaymentStatus>,
pub confirmation_status: Option<ConfirmationStatus>,
}
impl PaymentDetailsUpdate {
pub fn new(id: PaymentId) -> Self {
Self {
id,
hash: None,
preimage: None,
secret: None,
amount_msat: None,
direction: None,
status: None,
confirmation_status: None,
}
}
}
impl From<&PaymentDetails> for PaymentDetailsUpdate {
fn from(value: &PaymentDetails) -> Self {
let (hash, preimage, secret) = match value.kind {
PaymentKind::Bolt11 { hash, preimage, secret, .. } => (Some(hash), preimage, secret),
PaymentKind::Bolt11Jit { hash, preimage, secret, .. } => (Some(hash), preimage, secret),
PaymentKind::Bolt12Offer { hash, preimage, secret, .. } => (hash, preimage, secret),
PaymentKind::Bolt12Refund { hash, preimage, secret, .. } => (hash, preimage, secret),
PaymentKind::Spontaneous { hash, preimage, .. } => (Some(hash), preimage, None),
_ => (None, None, None),
};
let confirmation_status = match value.kind {
PaymentKind::Onchain { status, .. } => Some(status),
_ => None,
};
Self {
id: value.id,
hash: Some(hash),
preimage: Some(preimage),
secret: Some(secret),
amount_msat: Some(value.amount_msat),
direction: Some(value.direction),
status: Some(value.status),
confirmation_status,
}
}
}
pub(crate) struct PaymentStore<L: Deref>
where
L::Target: Logger,
{
payments: Mutex<HashMap<PaymentId, PaymentDetails>>,
kv_store: Arc<DynStore>,
logger: L,
}
impl<L: Deref> PaymentStore<L>
where
L::Target: Logger,
{
pub(crate) fn new(payments: Vec<PaymentDetails>, kv_store: Arc<DynStore>, logger: L) -> Self {
let payments = Mutex::new(HashMap::from_iter(
payments.into_iter().map(|payment| (payment.id, payment)),
));
Self { payments, kv_store, logger }
}
pub(crate) fn insert(&self, payment: PaymentDetails) -> Result<bool, Error> {
let mut locked_payments = self.payments.lock().unwrap();
let updated = locked_payments.insert(payment.id, payment.clone()).is_some();
self.persist_info(&payment.id, &payment)?;
Ok(updated)
}
pub(crate) fn insert_or_update(&self, payment: &PaymentDetails) -> Result<bool, Error> {
let mut locked_payments = self.payments.lock().unwrap();
let updated;
match locked_payments.entry(payment.id) {
hash_map::Entry::Occupied(mut e) => {
let update = payment.into();
updated = e.get_mut().update(&update);
if updated {
self.persist_info(&payment.id, e.get())?;
}
},
hash_map::Entry::Vacant(e) => {
e.insert(payment.clone());
self.persist_info(&payment.id, payment)?;
updated = true;
},
}
Ok(updated)
}
pub(crate) fn remove(&self, id: &PaymentId) -> Result<(), Error> {
let store_key = hex_utils::to_string(&id.0);
self.kv_store
.remove(
PAYMENT_INFO_PERSISTENCE_PRIMARY_NAMESPACE,
PAYMENT_INFO_PERSISTENCE_SECONDARY_NAMESPACE,
&store_key,
false,
)
.map_err(|e| {
log_error!(
self.logger,
"Removing payment data for key {}/{}/{} failed due to: {}",
PAYMENT_INFO_PERSISTENCE_PRIMARY_NAMESPACE,
PAYMENT_INFO_PERSISTENCE_SECONDARY_NAMESPACE,
store_key,
e
);
Error::PersistenceFailed
})
}
pub(crate) fn get(&self, id: &PaymentId) -> Option<PaymentDetails> {
self.payments.lock().unwrap().get(id).cloned()
}
pub(crate) fn update(&self, update: &PaymentDetailsUpdate) -> Result<bool, Error> {
let mut updated = false;
let mut locked_payments = self.payments.lock().unwrap();
if let Some(payment) = locked_payments.get_mut(&update.id) {
updated = payment.update(update);
if updated {
self.persist_info(&update.id, payment)?;
}
}
Ok(updated)
}
pub(crate) fn list_filter<F: FnMut(&&PaymentDetails) -> bool>(
&self, f: F,
) -> Vec<PaymentDetails> {
self.payments
.lock()
.unwrap()
.iter()
.map(|(_, p)| p)
.filter(f)
.cloned()
.collect::<Vec<PaymentDetails>>()
}
fn persist_info(&self, id: &PaymentId, payment: &PaymentDetails) -> Result<(), Error> {
let store_key = hex_utils::to_string(&id.0);
let data = payment.encode();
self.kv_store
.write(
PAYMENT_INFO_PERSISTENCE_PRIMARY_NAMESPACE,
PAYMENT_INFO_PERSISTENCE_SECONDARY_NAMESPACE,
&store_key,
&data,
)
.map_err(|e| {
log_error!(
self.logger,
"Write for key {}/{}/{} failed due to: {}",
PAYMENT_INFO_PERSISTENCE_PRIMARY_NAMESPACE,
PAYMENT_INFO_PERSISTENCE_SECONDARY_NAMESPACE,
store_key,
e
);
Error::PersistenceFailed
})?;
Ok(())
}
}
#[cfg(test)]
mod tests {
use super::*;
use bitcoin::io::Cursor;
use lightning::util::{
ser::Readable,
test_utils::{TestLogger, TestStore},
};
use std::sync::Arc;
/// We refactored `PaymentDetails` to hold a payment id and moved some required fields into
/// `PaymentKind`. Here, we keep the old layout available in order test de/ser compatibility.
#[derive(Clone, Debug, PartialEq, Eq)]
struct OldPaymentDetails {
pub hash: PaymentHash,
pub preimage: Option<PaymentPreimage>,
pub secret: Option<PaymentSecret>,
pub amount_msat: Option<u64>,
pub direction: PaymentDirection,
pub status: PaymentStatus,
pub lsp_fee_limits: Option<LSPFeeLimits>,
}
impl_writeable_tlv_based!(OldPaymentDetails, {
(0, hash, required),
(1, lsp_fee_limits, option),
(2, preimage, required),
(4, secret, required),
(6, amount_msat, required),
(8, direction, required),
(10, status, required)
});
#[test]
fn payment_info_is_persisted() {
let store: Arc<DynStore> = Arc::new(TestStore::new(false));
let logger = Arc::new(TestLogger::new());
let payment_store = PaymentStore::new(Vec::new(), Arc::clone(&store), logger);
let hash = PaymentHash([42u8; 32]);
let id = PaymentId([42u8; 32]);
assert!(payment_store.get(&id).is_none());
let store_key = hex_utils::to_string(&hash.0);
assert!(store
.read(
PAYMENT_INFO_PERSISTENCE_PRIMARY_NAMESPACE,
PAYMENT_INFO_PERSISTENCE_SECONDARY_NAMESPACE,
&store_key
)
.is_err());
let kind = PaymentKind::Bolt11 { hash, preimage: None, secret: None };
let payment =
PaymentDetails::new(id, kind, None, PaymentDirection::Inbound, PaymentStatus::Pending);
assert_eq!(Ok(false), payment_store.insert(payment.clone()));
assert!(payment_store.get(&id).is_some());
assert!(store
.read(
PAYMENT_INFO_PERSISTENCE_PRIMARY_NAMESPACE,
PAYMENT_INFO_PERSISTENCE_SECONDARY_NAMESPACE,
&store_key
)
.is_ok());
assert_eq!(Ok(true), payment_store.insert(payment));
assert!(payment_store.get(&id).is_some());
let mut update = PaymentDetailsUpdate::new(id);
update.status = Some(PaymentStatus::Succeeded);
assert_eq!(Ok(true), payment_store.update(&update));
assert!(payment_store.get(&id).is_some());
assert_eq!(PaymentStatus::Succeeded, payment_store.get(&id).unwrap().status);
}
#[test]
fn old_payment_details_deser_compat() {
// We refactored `PaymentDetails` to hold a payment id and moved some required fields into
// `PaymentKind`. Here, we test compatibility with the old layout.
let hash = PaymentHash([42u8; 32]);
let preimage = Some(PaymentPreimage([43u8; 32]));
let secret = Some(PaymentSecret([44u8; 32]));
let amount_msat = Some(45_000_000);
// Test `Bolt11` de/ser
{
let old_bolt11_payment = OldPaymentDetails {
hash,
preimage,
secret,
amount_msat,
direction: PaymentDirection::Inbound,
status: PaymentStatus::Pending,
lsp_fee_limits: None,
};
let old_bolt11_encoded = old_bolt11_payment.encode();
assert_eq!(
old_bolt11_payment,
OldPaymentDetails::read(&mut Cursor::new(old_bolt11_encoded.clone())).unwrap()
);
let bolt11_decoded =
PaymentDetails::read(&mut Cursor::new(old_bolt11_encoded)).unwrap();
let bolt11_reencoded = bolt11_decoded.encode();
assert_eq!(
bolt11_decoded,
PaymentDetails::read(&mut Cursor::new(bolt11_reencoded)).unwrap()
);
match bolt11_decoded.kind {
PaymentKind::Bolt11 { hash: h, preimage: p, secret: s } => {
assert_eq!(hash, h);
assert_eq!(preimage, p);
assert_eq!(secret, s);
},
_ => {
panic!("Unexpected kind!");
},
}
}
// Test `Bolt11Jit` de/ser
{
let lsp_fee_limits = Some(LSPFeeLimits {
max_total_opening_fee_msat: Some(46_000),
max_proportional_opening_fee_ppm_msat: Some(47_000),
});
let old_bolt11_jit_payment = OldPaymentDetails {
hash,
preimage,
secret,
amount_msat,
direction: PaymentDirection::Inbound,
status: PaymentStatus::Pending,
lsp_fee_limits,
};
let old_bolt11_jit_encoded = old_bolt11_jit_payment.encode();
assert_eq!(
old_bolt11_jit_payment,
OldPaymentDetails::read(&mut Cursor::new(old_bolt11_jit_encoded.clone())).unwrap()
);
let bolt11_jit_decoded =
PaymentDetails::read(&mut Cursor::new(old_bolt11_jit_encoded)).unwrap();
let bolt11_jit_reencoded = bolt11_jit_decoded.encode();
assert_eq!(
bolt11_jit_decoded,
PaymentDetails::read(&mut Cursor::new(bolt11_jit_reencoded)).unwrap()
);
match bolt11_jit_decoded.kind {
PaymentKind::Bolt11Jit { hash: h, preimage: p, secret: s, lsp_fee_limits: l } => {
assert_eq!(hash, h);
assert_eq!(preimage, p);
assert_eq!(secret, s);
assert_eq!(lsp_fee_limits, Some(l));
},
_ => {
panic!("Unexpected kind!");
},
}
}
// Test `Spontaneous` de/ser
{
let old_spontaneous_payment = OldPaymentDetails {
hash,
preimage,
secret: None,
amount_msat,
direction: PaymentDirection::Inbound,
status: PaymentStatus::Pending,
lsp_fee_limits: None,
};
let old_spontaneous_encoded = old_spontaneous_payment.encode();
assert_eq!(
old_spontaneous_payment,
OldPaymentDetails::read(&mut Cursor::new(old_spontaneous_encoded.clone())).unwrap()
);
let spontaneous_decoded =
PaymentDetails::read(&mut Cursor::new(old_spontaneous_encoded)).unwrap();
let spontaneous_reencoded = spontaneous_decoded.encode();
assert_eq!(
spontaneous_decoded,
PaymentDetails::read(&mut Cursor::new(spontaneous_reencoded)).unwrap()
);
match spontaneous_decoded.kind {
PaymentKind::Spontaneous { hash: h, preimage: p } => {
assert_eq!(hash, h);
assert_eq!(preimage, p);
},
_ => {
panic!("Unexpected kind!");
},
}
}
}
}