Skip to content

Commit 22146a9

Browse files
authored
Merge pull request #3140 from valentinewallace/2024-06-pay-static-invoice
Support paying static invoices
2 parents f7cc40e + 6e27aec commit 22146a9

13 files changed

+687
-141
lines changed

fuzz/src/onion_message.rs

+5-6
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ use bitcoin::secp256k1::ecdsa::RecoverableSignature;
55
use bitcoin::secp256k1::schnorr;
66
use bitcoin::secp256k1::{self, PublicKey, Scalar, Secp256k1, SecretKey};
77

8-
use lightning::blinded_path::message::{BlindedMessagePath, MessageContext, OffersContext};
8+
use lightning::blinded_path::message::{
9+
AsyncPaymentsContext, BlindedMessagePath, MessageContext, OffersContext,
10+
};
911
use lightning::blinded_path::EmptyNodeIdLookUp;
1012
use lightning::ln::features::InitFeatures;
1113
use lightning::ln::msgs::{self, DecodeError, OnionMessageHandler};
@@ -124,12 +126,9 @@ impl AsyncPaymentsMessageHandler for TestAsyncPaymentsMessageHandler {
124126
Some(resp) => resp,
125127
None => return None,
126128
};
127-
Some((
128-
ReleaseHeldHtlc { payment_release_secret: message.payment_release_secret },
129-
responder.respond(),
130-
))
129+
Some((ReleaseHeldHtlc {}, responder.respond()))
131130
}
132-
fn release_held_htlc(&self, _message: ReleaseHeldHtlc) {}
131+
fn release_held_htlc(&self, _message: ReleaseHeldHtlc, _context: AsyncPaymentsContext) {}
133132
}
134133

135134
#[derive(Debug)]

lightning/src/blinded_path/message.rs

+44
Original file line numberDiff line numberDiff line change
@@ -280,6 +280,10 @@ pub enum MessageContext {
280280
///
281281
/// [`OffersMessage`]: crate::onion_message::offers::OffersMessage
282282
Offers(OffersContext),
283+
/// Context specific to an [`AsyncPaymentsMessage`].
284+
///
285+
/// [`AsyncPaymentsMessage`]: crate::onion_message::async_payments::AsyncPaymentsMessage
286+
AsyncPayments(AsyncPaymentsContext),
283287
/// Context specific to a [`CustomOnionMessageHandler::CustomMessage`].
284288
///
285289
/// [`CustomOnionMessageHandler::CustomMessage`]: crate::onion_message::messenger::CustomOnionMessageHandler::CustomMessage
@@ -363,9 +367,41 @@ pub enum OffersContext {
363367
},
364368
}
365369

370+
/// Contains data specific to an [`AsyncPaymentsMessage`].
371+
///
372+
/// [`AsyncPaymentsMessage`]: crate::onion_message::async_payments::AsyncPaymentsMessage
373+
#[derive(Clone, Debug)]
374+
pub enum AsyncPaymentsContext {
375+
/// Context contained within the reply [`BlindedMessagePath`] we put in outbound
376+
/// [`HeldHtlcAvailable`] messages, provided back to us in corresponding [`ReleaseHeldHtlc`]
377+
/// messages.
378+
///
379+
/// [`HeldHtlcAvailable`]: crate::onion_message::async_payments::HeldHtlcAvailable
380+
/// [`ReleaseHeldHtlc`]: crate::onion_message::async_payments::ReleaseHeldHtlc
381+
OutboundPayment {
382+
/// ID used when payment to the originating [`Offer`] was initiated. Useful for us to identify
383+
/// which of our pending outbound payments should be released to its often-offline payee.
384+
///
385+
/// [`Offer`]: crate::offers::offer::Offer
386+
payment_id: PaymentId,
387+
/// A nonce used for authenticating that a [`ReleaseHeldHtlc`] message is valid for a preceding
388+
/// [`HeldHtlcAvailable`] message.
389+
///
390+
/// [`ReleaseHeldHtlc`]: crate::onion_message::async_payments::ReleaseHeldHtlc
391+
/// [`HeldHtlcAvailable`]: crate::onion_message::async_payments::HeldHtlcAvailable
392+
nonce: Nonce,
393+
/// Authentication code for the [`PaymentId`].
394+
///
395+
/// Prevents the recipient from being able to deanonymize us by creating a blinded path to us
396+
/// containing the expected [`PaymentId`].
397+
hmac: Hmac<Sha256>,
398+
},
399+
}
400+
366401
impl_writeable_tlv_based_enum!(MessageContext,
367402
{0, Offers} => (),
368403
{1, Custom} => (),
404+
{2, AsyncPayments} => (),
369405
);
370406

371407
impl_writeable_tlv_based_enum!(OffersContext,
@@ -384,6 +420,14 @@ impl_writeable_tlv_based_enum!(OffersContext,
384420
},
385421
);
386422

423+
impl_writeable_tlv_based_enum!(AsyncPaymentsContext,
424+
(0, OutboundPayment) => {
425+
(0, payment_id, required),
426+
(2, nonce, required),
427+
(4, hmac, required),
428+
},
429+
);
430+
387431
/// Construct blinded onion message hops for the given `intermediate_nodes` and `recipient_node_id`.
388432
pub(super) fn blinded_hops<T: secp256k1::Signing + secp256k1::Verification>(
389433
secp_ctx: &Secp256k1<T>, intermediate_nodes: &[MessageForwardNode],

0 commit comments

Comments
 (0)