1 // This file is Copyright its original authors, visible in version control
4 // This file is licensed under the Apache License, Version 2.0 <LICENSE-APACHE
5 // or http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option.
7 // You may not use this file except in accordance with one or both of these
10 //! Data structures and encoding for refunds.
12 //! A [`Refund`] is an "offer for money" and is typically constructed by a merchant and presented
13 //! directly to the customer. The recipient responds with a [`Bolt12Invoice`] to be paid.
15 //! This is an [`InvoiceRequest`] produced *not* in response to an [`Offer`].
17 //! [`Bolt12Invoice`]: crate::offers::invoice::Bolt12Invoice
18 //! [`InvoiceRequest`]: crate::offers::invoice_request::InvoiceRequest
19 //! [`Offer`]: crate::offers::offer::Offer
22 //! extern crate bitcoin;
23 //! extern crate core;
24 //! extern crate lightning;
26 //! use core::convert::TryFrom;
27 //! use core::time::Duration;
29 //! use bitcoin::network::constants::Network;
30 //! use bitcoin::secp256k1::{KeyPair, PublicKey, Secp256k1, SecretKey};
31 //! use lightning::offers::parse::Bolt12ParseError;
32 //! use lightning::offers::refund::{Refund, RefundBuilder};
33 //! use lightning::util::ser::{Readable, Writeable};
35 //! # use lightning::blinded_path::BlindedPath;
36 //! # #[cfg(feature = "std")]
37 //! # use std::time::SystemTime;
39 //! # fn create_blinded_path() -> BlindedPath { unimplemented!() }
40 //! # fn create_another_blinded_path() -> BlindedPath { unimplemented!() }
42 //! # #[cfg(feature = "std")]
43 //! # fn build() -> Result<(), Bolt12ParseError> {
44 //! let secp_ctx = Secp256k1::new();
45 //! let keys = KeyPair::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[42; 32]).unwrap());
46 //! let pubkey = PublicKey::from(keys);
48 //! let expiration = SystemTime::now() + Duration::from_secs(24 * 60 * 60);
49 //! let refund = RefundBuilder::new("coffee, large".to_string(), vec![1; 32], pubkey, 20_000)?
50 //! .absolute_expiry(expiration.duration_since(SystemTime::UNIX_EPOCH).unwrap())
51 //! .issuer("Foo Bar".to_string())
52 //! .path(create_blinded_path())
53 //! .path(create_another_blinded_path())
54 //! .chain(Network::Bitcoin)
55 //! .payer_note("refund for order #12345".to_string())
58 //! // Encode as a bech32 string for use in a QR code.
59 //! let encoded_refund = refund.to_string();
61 //! // Parse from a bech32 string after scanning from a QR code.
62 //! let refund = encoded_refund.parse::<Refund>()?;
64 //! // Encode refund as raw bytes.
65 //! let mut bytes = Vec::new();
66 //! refund.write(&mut bytes).unwrap();
68 //! // Decode raw bytes into an refund.
69 //! let refund = Refund::try_from(bytes)?;
74 use bitcoin::blockdata::constants::ChainHash;
75 use bitcoin::network::constants::Network;
76 use bitcoin::secp256k1::{PublicKey, Secp256k1, self};
77 use core::convert::TryFrom;
79 use core::str::FromStr;
80 use core::time::Duration;
81 use crate::sign::EntropySource;
83 use crate::blinded_path::BlindedPath;
84 use crate::ln::PaymentHash;
85 use crate::ln::features::InvoiceRequestFeatures;
86 use crate::ln::inbound_payment::{ExpandedKey, IV_LEN, Nonce};
87 use crate::ln::msgs::{DecodeError, MAX_VALUE_MSAT};
88 use crate::offers::invoice::{BlindedPayInfo, DerivedSigningPubkey, ExplicitSigningPubkey, InvoiceBuilder};
89 use crate::offers::invoice_request::{InvoiceRequestTlvStream, InvoiceRequestTlvStreamRef};
90 use crate::offers::offer::{OfferTlvStream, OfferTlvStreamRef};
91 use crate::offers::parse::{Bech32Encode, Bolt12ParseError, Bolt12SemanticError, ParsedMessage};
92 use crate::offers::payer::{PayerContents, PayerTlvStream, PayerTlvStreamRef};
93 use crate::offers::signer::{Metadata, MetadataMaterial, self};
94 use crate::util::ser::{SeekReadable, WithoutLength, Writeable, Writer};
95 use crate::util::string::PrintableString;
97 use crate::prelude::*;
99 #[cfg(feature = "std")]
100 use std::time::SystemTime;
102 pub(super) const IV_BYTES: &[u8; IV_LEN] = b"LDK Refund ~~~~~";
104 /// Builds a [`Refund`] for the "offer for money" flow.
106 /// See [module-level documentation] for usage.
108 /// This is not exported to bindings users as builder patterns don't map outside of move semantics.
110 /// [module-level documentation]: self
111 pub struct RefundBuilder<'a, T: secp256k1::Signing> {
112 refund: RefundContents,
113 secp_ctx: Option<&'a Secp256k1<T>>,
116 impl<'a> RefundBuilder<'a, secp256k1::SignOnly> {
117 /// Creates a new builder for a refund using the [`Refund::payer_id`] for the public node id to
118 /// send to if no [`Refund::paths`] are set. Otherwise, it may be a transient pubkey.
120 /// Additionally, sets the required [`Refund::description`], [`Refund::payer_metadata`], and
121 /// [`Refund::amount_msats`].
123 description: String, metadata: Vec<u8>, payer_id: PublicKey, amount_msats: u64
124 ) -> Result<Self, Bolt12SemanticError> {
125 if amount_msats > MAX_VALUE_MSAT {
126 return Err(Bolt12SemanticError::InvalidAmount);
129 let metadata = Metadata::Bytes(metadata);
131 refund: RefundContents {
132 payer: PayerContents(metadata), description, absolute_expiry: None, issuer: None,
133 paths: None, chain: None, amount_msats, features: InvoiceRequestFeatures::empty(),
134 quantity: None, payer_id, payer_note: None,
141 impl<'a, T: secp256k1::Signing> RefundBuilder<'a, T> {
142 /// Similar to [`RefundBuilder::new`] except, if [`RefundBuilder::path`] is called, the payer id
143 /// is derived from the given [`ExpandedKey`] and nonce. This provides sender privacy by using a
144 /// different payer id for each refund, assuming a different nonce is used. Otherwise, the
145 /// provided `node_id` is used for the payer id.
147 /// Also, sets the metadata when [`RefundBuilder::build`] is called such that it can be used to
148 /// verify that an [`InvoiceRequest`] was produced for the refund given an [`ExpandedKey`].
150 /// [`InvoiceRequest`]: crate::offers::invoice_request::InvoiceRequest
151 /// [`ExpandedKey`]: crate::ln::inbound_payment::ExpandedKey
152 pub fn deriving_payer_id<ES: Deref>(
153 description: String, node_id: PublicKey, expanded_key: &ExpandedKey, entropy_source: ES,
154 secp_ctx: &'a Secp256k1<T>, amount_msats: u64
155 ) -> Result<Self, Bolt12SemanticError> where ES::Target: EntropySource {
156 if amount_msats > MAX_VALUE_MSAT {
157 return Err(Bolt12SemanticError::InvalidAmount);
160 let nonce = Nonce::from_entropy_source(entropy_source);
161 let derivation_material = MetadataMaterial::new(nonce, expanded_key, IV_BYTES);
162 let metadata = Metadata::DerivedSigningPubkey(derivation_material);
164 refund: RefundContents {
165 payer: PayerContents(metadata), description, absolute_expiry: None, issuer: None,
166 paths: None, chain: None, amount_msats, features: InvoiceRequestFeatures::empty(),
167 quantity: None, payer_id: node_id, payer_note: None,
169 secp_ctx: Some(secp_ctx),
173 /// Sets the [`Refund::absolute_expiry`] as seconds since the Unix epoch. Any expiry that has
174 /// already passed is valid and can be checked for using [`Refund::is_expired`].
176 /// Successive calls to this method will override the previous setting.
177 pub fn absolute_expiry(mut self, absolute_expiry: Duration) -> Self {
178 self.refund.absolute_expiry = Some(absolute_expiry);
182 /// Sets the [`Refund::issuer`].
184 /// Successive calls to this method will override the previous setting.
185 pub fn issuer(mut self, issuer: String) -> Self {
186 self.refund.issuer = Some(issuer);
190 /// Adds a blinded path to [`Refund::paths`]. Must include at least one path if only connected
191 /// by private channels or if [`Refund::payer_id`] is not a public node id.
193 /// Successive calls to this method will add another blinded path. Caller is responsible for not
194 /// adding duplicate paths.
195 pub fn path(mut self, path: BlindedPath) -> Self {
196 self.refund.paths.get_or_insert_with(Vec::new).push(path);
200 /// Sets the [`Refund::chain`] of the given [`Network`] for paying an invoice. If not
201 /// called, [`Network::Bitcoin`] is assumed.
203 /// Successive calls to this method will override the previous setting.
204 pub fn chain(mut self, network: Network) -> Self {
205 self.refund.chain = Some(ChainHash::using_genesis_block(network));
209 /// Sets [`Refund::quantity`] of items. This is purely for informational purposes. It is useful
210 /// when the refund pertains to a [`Bolt12Invoice`] that paid for more than one item from an
211 /// [`Offer`] as specified by [`InvoiceRequest::quantity`].
213 /// Successive calls to this method will override the previous setting.
215 /// [`Bolt12Invoice`]: crate::offers::invoice::Bolt12Invoice
216 /// [`InvoiceRequest::quantity`]: crate::offers::invoice_request::InvoiceRequest::quantity
217 /// [`Offer`]: crate::offers::offer::Offer
218 pub fn quantity(mut self, quantity: u64) -> Self {
219 self.refund.quantity = Some(quantity);
223 /// Sets the [`Refund::payer_note`].
225 /// Successive calls to this method will override the previous setting.
226 pub fn payer_note(mut self, payer_note: String) -> Self {
227 self.refund.payer_note = Some(payer_note);
231 /// Builds a [`Refund`] after checking for valid semantics.
232 pub fn build(mut self) -> Result<Refund, Bolt12SemanticError> {
233 if self.refund.chain() == self.refund.implied_chain() {
234 self.refund.chain = None;
237 // Create the metadata for stateless verification of a Bolt12Invoice.
238 if self.refund.payer.0.has_derivation_material() {
239 let mut metadata = core::mem::take(&mut self.refund.payer.0);
241 if self.refund.paths.is_none() {
242 metadata = metadata.without_keys();
245 let mut tlv_stream = self.refund.as_tlv_stream();
246 tlv_stream.0.metadata = None;
247 if metadata.derives_keys() {
248 tlv_stream.2.payer_id = None;
251 let (derived_metadata, keys) = metadata.derive_from(tlv_stream, self.secp_ctx);
252 metadata = derived_metadata;
253 if let Some(keys) = keys {
254 self.refund.payer_id = keys.public_key();
257 self.refund.payer.0 = metadata;
260 let mut bytes = Vec::new();
261 self.refund.write(&mut bytes).unwrap();
263 Ok(Refund { bytes, contents: self.refund })
268 impl<'a, T: secp256k1::Signing> RefundBuilder<'a, T> {
269 fn features_unchecked(mut self, features: InvoiceRequestFeatures) -> Self {
270 self.refund.features = features;
275 /// A `Refund` is a request to send an [`Bolt12Invoice`] without a preceding [`Offer`].
277 /// Typically, after an invoice is paid, the recipient may publish a refund allowing the sender to
278 /// recoup their funds. A refund may be used more generally as an "offer for money", such as with a
281 /// [`Bolt12Invoice`]: crate::offers::invoice::Bolt12Invoice
282 /// [`Offer`]: crate::offers::offer::Offer
283 #[derive(Clone, Debug)]
284 #[cfg_attr(test, derive(PartialEq))]
286 pub(super) bytes: Vec<u8>,
287 pub(super) contents: RefundContents,
290 /// The contents of a [`Refund`], which may be shared with an [`Bolt12Invoice`].
292 /// [`Bolt12Invoice`]: crate::offers::invoice::Bolt12Invoice
293 #[derive(Clone, Debug)]
294 #[cfg_attr(test, derive(PartialEq))]
295 pub(super) struct RefundContents {
296 payer: PayerContents,
299 absolute_expiry: Option<Duration>,
300 issuer: Option<String>,
301 paths: Option<Vec<BlindedPath>>,
302 // invoice_request fields
303 chain: Option<ChainHash>,
305 features: InvoiceRequestFeatures,
306 quantity: Option<u64>,
308 payer_note: Option<String>,
312 /// A complete description of the purpose of the refund. Intended to be displayed to the user
313 /// but with the caveat that it has not been verified in any way.
314 pub fn description(&self) -> PrintableString {
315 self.contents.description()
318 /// Duration since the Unix epoch when an invoice should no longer be sent.
320 /// If `None`, the refund does not expire.
321 pub fn absolute_expiry(&self) -> Option<Duration> {
322 self.contents.absolute_expiry()
325 /// Whether the refund has expired.
326 #[cfg(feature = "std")]
327 pub fn is_expired(&self) -> bool {
328 self.contents.is_expired()
331 /// The issuer of the refund, possibly beginning with `user@domain` or `domain`. Intended to be
332 /// displayed to the user but with the caveat that it has not been verified in any way.
333 pub fn issuer(&self) -> Option<PrintableString> {
334 self.contents.issuer()
337 /// Paths to the sender originating from publicly reachable nodes. Blinded paths provide sender
338 /// privacy by obfuscating its node id.
339 pub fn paths(&self) -> &[BlindedPath] {
340 self.contents.paths()
343 /// An unpredictable series of bytes, typically containing information about the derivation of
346 /// [`payer_id`]: Self::payer_id
347 pub fn payer_metadata(&self) -> &[u8] {
348 self.contents.metadata()
351 /// A chain that the refund is valid for.
352 pub fn chain(&self) -> ChainHash {
353 self.contents.chain()
356 /// The amount to refund in msats (i.e., the minimum lightning-payable unit for [`chain`]).
358 /// [`chain`]: Self::chain
359 pub fn amount_msats(&self) -> u64 {
360 self.contents.amount_msats()
363 /// Features pertaining to requesting an invoice.
364 pub fn features(&self) -> &InvoiceRequestFeatures {
365 &self.contents.features()
368 /// The quantity of an item that refund is for.
369 pub fn quantity(&self) -> Option<u64> {
370 self.contents.quantity()
373 /// A public node id to send to in the case where there are no [`paths`]. Otherwise, a possibly
374 /// transient pubkey.
376 /// [`paths`]: Self::paths
377 pub fn payer_id(&self) -> PublicKey {
378 self.contents.payer_id()
381 /// Payer provided note to include in the invoice.
382 pub fn payer_note(&self) -> Option<PrintableString> {
383 self.contents.payer_note()
386 /// Creates an [`InvoiceBuilder`] for the refund with the given required fields and using the
387 /// [`Duration`] since [`std::time::SystemTime::UNIX_EPOCH`] as the creation time.
389 /// See [`Refund::respond_with_no_std`] for further details where the aforementioned creation
390 /// time is used for the `created_at` parameter.
392 /// This is not exported to bindings users as builder patterns don't map outside of move semantics.
394 /// [`Duration`]: core::time::Duration
395 #[cfg(feature = "std")]
397 &self, payment_paths: Vec<(BlindedPayInfo, BlindedPath)>, payment_hash: PaymentHash,
398 signing_pubkey: PublicKey,
399 ) -> Result<InvoiceBuilder<ExplicitSigningPubkey>, Bolt12SemanticError> {
400 let created_at = std::time::SystemTime::now()
401 .duration_since(std::time::SystemTime::UNIX_EPOCH)
402 .expect("SystemTime::now() should come after SystemTime::UNIX_EPOCH");
404 self.respond_with_no_std(payment_paths, payment_hash, signing_pubkey, created_at)
407 /// Creates an [`InvoiceBuilder`] for the refund with the given required fields.
409 /// Unless [`InvoiceBuilder::relative_expiry`] is set, the invoice will expire two hours after
410 /// `created_at`, which is used to set [`Bolt12Invoice::created_at`]. Useful for `no-std` builds
411 /// where [`std::time::SystemTime`] is not available.
413 /// The caller is expected to remember the preimage of `payment_hash` in order to
414 /// claim a payment for the invoice.
416 /// The `signing_pubkey` is required to sign the invoice since refunds are not in response to an
417 /// offer, which does have a `signing_pubkey`.
419 /// The `payment_paths` parameter is useful for maintaining the payment recipient's privacy. It
420 /// must contain one or more elements ordered from most-preferred to least-preferred, if there's
421 /// a preference. Note, however, that any privacy is lost if a public node id is used for
422 /// `signing_pubkey`.
424 /// Errors if the request contains unknown required features.
426 /// This is not exported to bindings users as builder patterns don't map outside of move semantics.
428 /// [`Bolt12Invoice::created_at`]: crate::offers::invoice::Bolt12Invoice::created_at
429 pub fn respond_with_no_std(
430 &self, payment_paths: Vec<(BlindedPayInfo, BlindedPath)>, payment_hash: PaymentHash,
431 signing_pubkey: PublicKey, created_at: Duration
432 ) -> Result<InvoiceBuilder<ExplicitSigningPubkey>, Bolt12SemanticError> {
433 if self.features().requires_unknown_bits() {
434 return Err(Bolt12SemanticError::UnknownRequiredFeatures);
437 InvoiceBuilder::for_refund(self, payment_paths, created_at, payment_hash, signing_pubkey)
440 /// Creates an [`InvoiceBuilder`] for the refund using the given required fields and that uses
441 /// derived signing keys to sign the [`Bolt12Invoice`].
443 /// See [`Refund::respond_with`] for further details.
445 /// This is not exported to bindings users as builder patterns don't map outside of move semantics.
447 /// [`Bolt12Invoice`]: crate::offers::invoice::Bolt12Invoice
448 #[cfg(feature = "std")]
449 pub fn respond_using_derived_keys<ES: Deref>(
450 &self, payment_paths: Vec<(BlindedPayInfo, BlindedPath)>, payment_hash: PaymentHash,
451 expanded_key: &ExpandedKey, entropy_source: ES
452 ) -> Result<InvoiceBuilder<DerivedSigningPubkey>, Bolt12SemanticError>
454 ES::Target: EntropySource,
456 let created_at = std::time::SystemTime::now()
457 .duration_since(std::time::SystemTime::UNIX_EPOCH)
458 .expect("SystemTime::now() should come after SystemTime::UNIX_EPOCH");
460 self.respond_using_derived_keys_no_std(
461 payment_paths, payment_hash, created_at, expanded_key, entropy_source
465 /// Creates an [`InvoiceBuilder`] for the refund using the given required fields and that uses
466 /// derived signing keys to sign the [`Bolt12Invoice`].
468 /// See [`Refund::respond_with_no_std`] for further details.
470 /// This is not exported to bindings users as builder patterns don't map outside of move semantics.
472 /// [`Bolt12Invoice`]: crate::offers::invoice::Bolt12Invoice
473 pub fn respond_using_derived_keys_no_std<ES: Deref>(
474 &self, payment_paths: Vec<(BlindedPayInfo, BlindedPath)>, payment_hash: PaymentHash,
475 created_at: core::time::Duration, expanded_key: &ExpandedKey, entropy_source: ES
476 ) -> Result<InvoiceBuilder<DerivedSigningPubkey>, Bolt12SemanticError>
478 ES::Target: EntropySource,
480 if self.features().requires_unknown_bits() {
481 return Err(Bolt12SemanticError::UnknownRequiredFeatures);
484 let nonce = Nonce::from_entropy_source(entropy_source);
485 let keys = signer::derive_keys(nonce, expanded_key);
486 InvoiceBuilder::for_refund_using_keys(self, payment_paths, created_at, payment_hash, keys)
490 fn as_tlv_stream(&self) -> RefundTlvStreamRef {
491 self.contents.as_tlv_stream()
495 impl AsRef<[u8]> for Refund {
496 fn as_ref(&self) -> &[u8] {
501 impl RefundContents {
502 pub fn description(&self) -> PrintableString {
503 PrintableString(&self.description)
506 pub fn absolute_expiry(&self) -> Option<Duration> {
510 #[cfg(feature = "std")]
511 pub(super) fn is_expired(&self) -> bool {
512 match self.absolute_expiry {
513 Some(seconds_from_epoch) => match SystemTime::UNIX_EPOCH.elapsed() {
514 Ok(elapsed) => elapsed > seconds_from_epoch,
521 pub fn issuer(&self) -> Option<PrintableString> {
522 self.issuer.as_ref().map(|issuer| PrintableString(issuer.as_str()))
525 pub fn paths(&self) -> &[BlindedPath] {
526 self.paths.as_ref().map(|paths| paths.as_slice()).unwrap_or(&[])
529 pub(super) fn metadata(&self) -> &[u8] {
530 self.payer.0.as_bytes().map(|bytes| bytes.as_slice()).unwrap_or(&[])
533 pub(super) fn chain(&self) -> ChainHash {
534 self.chain.unwrap_or_else(|| self.implied_chain())
537 pub fn implied_chain(&self) -> ChainHash {
538 ChainHash::using_genesis_block(Network::Bitcoin)
541 pub fn amount_msats(&self) -> u64 {
545 /// Features pertaining to requesting an invoice.
546 pub fn features(&self) -> &InvoiceRequestFeatures {
550 /// The quantity of an item that refund is for.
551 pub fn quantity(&self) -> Option<u64> {
555 /// A public node id to send to in the case where there are no [`paths`]. Otherwise, a possibly
556 /// transient pubkey.
558 /// [`paths`]: Self::paths
559 pub fn payer_id(&self) -> PublicKey {
563 /// Payer provided note to include in the invoice.
564 pub fn payer_note(&self) -> Option<PrintableString> {
565 self.payer_note.as_ref().map(|payer_note| PrintableString(payer_note.as_str()))
568 pub(super) fn derives_keys(&self) -> bool {
569 self.payer.0.derives_keys()
572 pub(super) fn as_tlv_stream(&self) -> RefundTlvStreamRef {
573 let payer = PayerTlvStreamRef {
574 metadata: self.payer.0.as_bytes(),
577 let offer = OfferTlvStreamRef {
582 description: Some(&self.description),
584 absolute_expiry: self.absolute_expiry.map(|duration| duration.as_secs()),
585 paths: self.paths.as_ref(),
586 issuer: self.issuer.as_ref(),
592 if self.features == InvoiceRequestFeatures::empty() { None }
593 else { Some(&self.features) }
596 let invoice_request = InvoiceRequestTlvStreamRef {
597 chain: self.chain.as_ref(),
598 amount: Some(self.amount_msats),
600 quantity: self.quantity,
601 payer_id: Some(&self.payer_id),
602 payer_note: self.payer_note.as_ref(),
605 (payer, offer, invoice_request)
609 impl Writeable for Refund {
610 fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
611 WithoutLength(&self.bytes).write(writer)
615 impl Writeable for RefundContents {
616 fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
617 self.as_tlv_stream().write(writer)
621 type RefundTlvStream = (PayerTlvStream, OfferTlvStream, InvoiceRequestTlvStream);
623 type RefundTlvStreamRef<'a> = (
624 PayerTlvStreamRef<'a>,
625 OfferTlvStreamRef<'a>,
626 InvoiceRequestTlvStreamRef<'a>,
629 impl SeekReadable for RefundTlvStream {
630 fn read<R: io::Read + io::Seek>(r: &mut R) -> Result<Self, DecodeError> {
631 let payer = SeekReadable::read(r)?;
632 let offer = SeekReadable::read(r)?;
633 let invoice_request = SeekReadable::read(r)?;
635 Ok((payer, offer, invoice_request))
639 impl Bech32Encode for Refund {
640 const BECH32_HRP: &'static str = "lnr";
643 impl FromStr for Refund {
644 type Err = Bolt12ParseError;
646 fn from_str(s: &str) -> Result<Self, <Self as FromStr>::Err> {
647 Refund::from_bech32_str(s)
651 impl TryFrom<Vec<u8>> for Refund {
652 type Error = Bolt12ParseError;
654 fn try_from(bytes: Vec<u8>) -> Result<Self, Self::Error> {
655 let refund = ParsedMessage::<RefundTlvStream>::try_from(bytes)?;
656 let ParsedMessage { bytes, tlv_stream } = refund;
657 let contents = RefundContents::try_from(tlv_stream)?;
659 Ok(Refund { bytes, contents })
663 impl TryFrom<RefundTlvStream> for RefundContents {
664 type Error = Bolt12SemanticError;
666 fn try_from(tlv_stream: RefundTlvStream) -> Result<Self, Self::Error> {
668 PayerTlvStream { metadata: payer_metadata },
670 chains, metadata, currency, amount: offer_amount, description,
671 features: offer_features, absolute_expiry, paths, issuer, quantity_max, node_id,
673 InvoiceRequestTlvStream { chain, amount, features, quantity, payer_id, payer_note },
676 let payer = match payer_metadata {
677 None => return Err(Bolt12SemanticError::MissingPayerMetadata),
678 Some(metadata) => PayerContents(Metadata::Bytes(metadata)),
681 if metadata.is_some() {
682 return Err(Bolt12SemanticError::UnexpectedMetadata);
685 if chains.is_some() {
686 return Err(Bolt12SemanticError::UnexpectedChain);
689 if currency.is_some() || offer_amount.is_some() {
690 return Err(Bolt12SemanticError::UnexpectedAmount);
693 let description = match description {
694 None => return Err(Bolt12SemanticError::MissingDescription),
695 Some(description) => description,
698 if offer_features.is_some() {
699 return Err(Bolt12SemanticError::UnexpectedFeatures);
702 let absolute_expiry = absolute_expiry.map(Duration::from_secs);
704 if quantity_max.is_some() {
705 return Err(Bolt12SemanticError::UnexpectedQuantity);
708 if node_id.is_some() {
709 return Err(Bolt12SemanticError::UnexpectedSigningPubkey);
712 let amount_msats = match amount {
713 None => return Err(Bolt12SemanticError::MissingAmount),
714 Some(amount_msats) if amount_msats > MAX_VALUE_MSAT => {
715 return Err(Bolt12SemanticError::InvalidAmount);
717 Some(amount_msats) => amount_msats,
720 let features = features.unwrap_or_else(InvoiceRequestFeatures::empty);
722 let payer_id = match payer_id {
723 None => return Err(Bolt12SemanticError::MissingPayerId),
724 Some(payer_id) => payer_id,
728 payer, description, absolute_expiry, issuer, paths, chain, amount_msats, features,
729 quantity, payer_id, payer_note,
734 impl core::fmt::Display for Refund {
735 fn fmt(&self, f: &mut core::fmt::Formatter) -> Result<(), core::fmt::Error> {
736 self.fmt_bech32_str(f)
742 use super::{Refund, RefundBuilder, RefundTlvStreamRef};
744 use bitcoin::blockdata::constants::ChainHash;
745 use bitcoin::network::constants::Network;
746 use bitcoin::secp256k1::{KeyPair, Secp256k1, SecretKey};
747 use core::convert::TryFrom;
748 use core::time::Duration;
749 use crate::blinded_path::{BlindedHop, BlindedPath};
750 use crate::sign::KeyMaterial;
751 use crate::ln::features::{InvoiceRequestFeatures, OfferFeatures};
752 use crate::ln::inbound_payment::ExpandedKey;
753 use crate::ln::msgs::{DecodeError, MAX_VALUE_MSAT};
754 use crate::offers::invoice_request::InvoiceRequestTlvStreamRef;
755 use crate::offers::offer::OfferTlvStreamRef;
756 use crate::offers::parse::{Bolt12ParseError, Bolt12SemanticError};
757 use crate::offers::payer::PayerTlvStreamRef;
758 use crate::offers::test_utils::*;
759 use crate::util::ser::{BigSize, Writeable};
760 use crate::util::string::PrintableString;
763 fn to_bytes(&self) -> Vec<u8>;
766 impl<'a> ToBytes for RefundTlvStreamRef<'a> {
767 fn to_bytes(&self) -> Vec<u8> {
768 let mut buffer = Vec::new();
769 self.write(&mut buffer).unwrap();
775 fn builds_refund_with_defaults() {
776 let refund = RefundBuilder::new("foo".into(), vec![1; 32], payer_pubkey(), 1000).unwrap()
779 let mut buffer = Vec::new();
780 refund.write(&mut buffer).unwrap();
782 assert_eq!(refund.bytes, buffer.as_slice());
783 assert_eq!(refund.payer_metadata(), &[1; 32]);
784 assert_eq!(refund.description(), PrintableString("foo"));
785 assert_eq!(refund.absolute_expiry(), None);
786 #[cfg(feature = "std")]
787 assert!(!refund.is_expired());
788 assert_eq!(refund.paths(), &[]);
789 assert_eq!(refund.issuer(), None);
790 assert_eq!(refund.chain(), ChainHash::using_genesis_block(Network::Bitcoin));
791 assert_eq!(refund.amount_msats(), 1000);
792 assert_eq!(refund.features(), &InvoiceRequestFeatures::empty());
793 assert_eq!(refund.payer_id(), payer_pubkey());
794 assert_eq!(refund.payer_note(), None);
797 refund.as_tlv_stream(),
799 PayerTlvStreamRef { metadata: Some(&vec![1; 32]) },
805 description: Some(&String::from("foo")),
807 absolute_expiry: None,
813 InvoiceRequestTlvStreamRef {
818 payer_id: Some(&payer_pubkey()),
824 if let Err(e) = Refund::try_from(buffer) {
825 panic!("error parsing refund: {:?}", e);
830 fn fails_building_refund_with_invalid_amount() {
831 match RefundBuilder::new("foo".into(), vec![1; 32], payer_pubkey(), MAX_VALUE_MSAT + 1) {
832 Ok(_) => panic!("expected error"),
833 Err(e) => assert_eq!(e, Bolt12SemanticError::InvalidAmount),
838 fn builds_refund_with_metadata_derived() {
839 let desc = "foo".to_string();
840 let node_id = payer_pubkey();
841 let expanded_key = ExpandedKey::new(&KeyMaterial([42; 32]));
842 let entropy = FixedEntropy {};
843 let secp_ctx = Secp256k1::new();
845 let refund = RefundBuilder
846 ::deriving_payer_id(desc, node_id, &expanded_key, &entropy, &secp_ctx, 1000)
849 assert_eq!(refund.payer_id(), node_id);
851 // Fails verification with altered fields
853 .respond_with_no_std(payment_paths(), payment_hash(), recipient_pubkey(), now())
856 .sign(recipient_sign).unwrap();
857 assert!(invoice.verify(&expanded_key, &secp_ctx));
859 let mut tlv_stream = refund.as_tlv_stream();
860 tlv_stream.2.amount = Some(2000);
862 let mut encoded_refund = Vec::new();
863 tlv_stream.write(&mut encoded_refund).unwrap();
865 let invoice = Refund::try_from(encoded_refund).unwrap()
866 .respond_with_no_std(payment_paths(), payment_hash(), recipient_pubkey(), now())
869 .sign(recipient_sign).unwrap();
870 assert!(!invoice.verify(&expanded_key, &secp_ctx));
872 // Fails verification with altered metadata
873 let mut tlv_stream = refund.as_tlv_stream();
874 let metadata = tlv_stream.0.metadata.unwrap().iter().copied().rev().collect();
875 tlv_stream.0.metadata = Some(&metadata);
877 let mut encoded_refund = Vec::new();
878 tlv_stream.write(&mut encoded_refund).unwrap();
880 let invoice = Refund::try_from(encoded_refund).unwrap()
881 .respond_with_no_std(payment_paths(), payment_hash(), recipient_pubkey(), now())
884 .sign(recipient_sign).unwrap();
885 assert!(!invoice.verify(&expanded_key, &secp_ctx));
889 fn builds_refund_with_derived_payer_id() {
890 let desc = "foo".to_string();
891 let node_id = payer_pubkey();
892 let expanded_key = ExpandedKey::new(&KeyMaterial([42; 32]));
893 let entropy = FixedEntropy {};
894 let secp_ctx = Secp256k1::new();
896 let blinded_path = BlindedPath {
897 introduction_node_id: pubkey(40),
898 blinding_point: pubkey(41),
900 BlindedHop { blinded_node_id: pubkey(43), encrypted_payload: vec![0; 43] },
901 BlindedHop { blinded_node_id: node_id, encrypted_payload: vec![0; 44] },
905 let refund = RefundBuilder
906 ::deriving_payer_id(desc, node_id, &expanded_key, &entropy, &secp_ctx, 1000)
910 assert_ne!(refund.payer_id(), node_id);
913 .respond_with_no_std(payment_paths(), payment_hash(), recipient_pubkey(), now())
916 .sign(recipient_sign).unwrap();
917 assert!(invoice.verify(&expanded_key, &secp_ctx));
919 // Fails verification with altered fields
920 let mut tlv_stream = refund.as_tlv_stream();
921 tlv_stream.2.amount = Some(2000);
923 let mut encoded_refund = Vec::new();
924 tlv_stream.write(&mut encoded_refund).unwrap();
926 let invoice = Refund::try_from(encoded_refund).unwrap()
927 .respond_with_no_std(payment_paths(), payment_hash(), recipient_pubkey(), now())
930 .sign(recipient_sign).unwrap();
931 assert!(!invoice.verify(&expanded_key, &secp_ctx));
933 // Fails verification with altered payer_id
934 let mut tlv_stream = refund.as_tlv_stream();
935 let payer_id = pubkey(1);
936 tlv_stream.2.payer_id = Some(&payer_id);
938 let mut encoded_refund = Vec::new();
939 tlv_stream.write(&mut encoded_refund).unwrap();
941 let invoice = Refund::try_from(encoded_refund).unwrap()
942 .respond_with_no_std(payment_paths(), payment_hash(), recipient_pubkey(), now())
945 .sign(recipient_sign).unwrap();
946 assert!(!invoice.verify(&expanded_key, &secp_ctx));
950 fn builds_refund_with_absolute_expiry() {
951 let future_expiry = Duration::from_secs(u64::max_value());
952 let past_expiry = Duration::from_secs(0);
954 let refund = RefundBuilder::new("foo".into(), vec![1; 32], payer_pubkey(), 1000).unwrap()
955 .absolute_expiry(future_expiry)
958 let (_, tlv_stream, _) = refund.as_tlv_stream();
959 #[cfg(feature = "std")]
960 assert!(!refund.is_expired());
961 assert_eq!(refund.absolute_expiry(), Some(future_expiry));
962 assert_eq!(tlv_stream.absolute_expiry, Some(future_expiry.as_secs()));
964 let refund = RefundBuilder::new("foo".into(), vec![1; 32], payer_pubkey(), 1000).unwrap()
965 .absolute_expiry(future_expiry)
966 .absolute_expiry(past_expiry)
969 let (_, tlv_stream, _) = refund.as_tlv_stream();
970 #[cfg(feature = "std")]
971 assert!(refund.is_expired());
972 assert_eq!(refund.absolute_expiry(), Some(past_expiry));
973 assert_eq!(tlv_stream.absolute_expiry, Some(past_expiry.as_secs()));
977 fn builds_refund_with_paths() {
980 introduction_node_id: pubkey(40),
981 blinding_point: pubkey(41),
983 BlindedHop { blinded_node_id: pubkey(43), encrypted_payload: vec![0; 43] },
984 BlindedHop { blinded_node_id: pubkey(44), encrypted_payload: vec![0; 44] },
988 introduction_node_id: pubkey(40),
989 blinding_point: pubkey(41),
991 BlindedHop { blinded_node_id: pubkey(45), encrypted_payload: vec![0; 45] },
992 BlindedHop { blinded_node_id: pubkey(46), encrypted_payload: vec![0; 46] },
997 let refund = RefundBuilder::new("foo".into(), vec![1; 32], payer_pubkey(), 1000).unwrap()
998 .path(paths[0].clone())
999 .path(paths[1].clone())
1002 let (_, offer_tlv_stream, invoice_request_tlv_stream) = refund.as_tlv_stream();
1003 assert_eq!(refund.paths(), paths.as_slice());
1004 assert_eq!(refund.payer_id(), pubkey(42));
1005 assert_ne!(pubkey(42), pubkey(44));
1006 assert_eq!(offer_tlv_stream.paths, Some(&paths));
1007 assert_eq!(invoice_request_tlv_stream.payer_id, Some(&pubkey(42)));
1011 fn builds_refund_with_issuer() {
1012 let refund = RefundBuilder::new("foo".into(), vec![1; 32], payer_pubkey(), 1000).unwrap()
1013 .issuer("bar".into())
1016 let (_, tlv_stream, _) = refund.as_tlv_stream();
1017 assert_eq!(refund.issuer(), Some(PrintableString("bar")));
1018 assert_eq!(tlv_stream.issuer, Some(&String::from("bar")));
1020 let refund = RefundBuilder::new("foo".into(), vec![1; 32], payer_pubkey(), 1000).unwrap()
1021 .issuer("bar".into())
1022 .issuer("baz".into())
1025 let (_, tlv_stream, _) = refund.as_tlv_stream();
1026 assert_eq!(refund.issuer(), Some(PrintableString("baz")));
1027 assert_eq!(tlv_stream.issuer, Some(&String::from("baz")));
1031 fn builds_refund_with_chain() {
1032 let mainnet = ChainHash::using_genesis_block(Network::Bitcoin);
1033 let testnet = ChainHash::using_genesis_block(Network::Testnet);
1035 let refund = RefundBuilder::new("foo".into(), vec![1; 32], payer_pubkey(), 1000).unwrap()
1036 .chain(Network::Bitcoin)
1038 let (_, _, tlv_stream) = refund.as_tlv_stream();
1039 assert_eq!(refund.chain(), mainnet);
1040 assert_eq!(tlv_stream.chain, None);
1042 let refund = RefundBuilder::new("foo".into(), vec![1; 32], payer_pubkey(), 1000).unwrap()
1043 .chain(Network::Testnet)
1045 let (_, _, tlv_stream) = refund.as_tlv_stream();
1046 assert_eq!(refund.chain(), testnet);
1047 assert_eq!(tlv_stream.chain, Some(&testnet));
1049 let refund = RefundBuilder::new("foo".into(), vec![1; 32], payer_pubkey(), 1000).unwrap()
1050 .chain(Network::Regtest)
1051 .chain(Network::Testnet)
1053 let (_, _, tlv_stream) = refund.as_tlv_stream();
1054 assert_eq!(refund.chain(), testnet);
1055 assert_eq!(tlv_stream.chain, Some(&testnet));
1059 fn builds_refund_with_quantity() {
1060 let refund = RefundBuilder::new("foo".into(), vec![1; 32], payer_pubkey(), 1000).unwrap()
1063 let (_, _, tlv_stream) = refund.as_tlv_stream();
1064 assert_eq!(refund.quantity(), Some(10));
1065 assert_eq!(tlv_stream.quantity, Some(10));
1067 let refund = RefundBuilder::new("foo".into(), vec![1; 32], payer_pubkey(), 1000).unwrap()
1071 let (_, _, tlv_stream) = refund.as_tlv_stream();
1072 assert_eq!(refund.quantity(), Some(1));
1073 assert_eq!(tlv_stream.quantity, Some(1));
1077 fn builds_refund_with_payer_note() {
1078 let refund = RefundBuilder::new("foo".into(), vec![1; 32], payer_pubkey(), 1000).unwrap()
1079 .payer_note("bar".into())
1081 let (_, _, tlv_stream) = refund.as_tlv_stream();
1082 assert_eq!(refund.payer_note(), Some(PrintableString("bar")));
1083 assert_eq!(tlv_stream.payer_note, Some(&String::from("bar")));
1085 let refund = RefundBuilder::new("foo".into(), vec![1; 32], payer_pubkey(), 1000).unwrap()
1086 .payer_note("bar".into())
1087 .payer_note("baz".into())
1089 let (_, _, tlv_stream) = refund.as_tlv_stream();
1090 assert_eq!(refund.payer_note(), Some(PrintableString("baz")));
1091 assert_eq!(tlv_stream.payer_note, Some(&String::from("baz")));
1095 fn fails_responding_with_unknown_required_features() {
1096 match RefundBuilder::new("foo".into(), vec![1; 32], payer_pubkey(), 1000).unwrap()
1097 .features_unchecked(InvoiceRequestFeatures::unknown())
1099 .respond_with_no_std(payment_paths(), payment_hash(), recipient_pubkey(), now())
1101 Ok(_) => panic!("expected error"),
1102 Err(e) => assert_eq!(e, Bolt12SemanticError::UnknownRequiredFeatures),
1107 fn parses_refund_with_metadata() {
1108 let refund = RefundBuilder::new("foo".into(), vec![1; 32], payer_pubkey(), 1000).unwrap()
1110 if let Err(e) = refund.to_string().parse::<Refund>() {
1111 panic!("error parsing refund: {:?}", e);
1114 let mut tlv_stream = refund.as_tlv_stream();
1115 tlv_stream.0.metadata = None;
1117 match Refund::try_from(tlv_stream.to_bytes()) {
1118 Ok(_) => panic!("expected error"),
1120 assert_eq!(e, Bolt12ParseError::InvalidSemantics(Bolt12SemanticError::MissingPayerMetadata));
1126 fn parses_refund_with_description() {
1127 let refund = RefundBuilder::new("foo".into(), vec![1; 32], payer_pubkey(), 1000).unwrap()
1129 if let Err(e) = refund.to_string().parse::<Refund>() {
1130 panic!("error parsing refund: {:?}", e);
1133 let mut tlv_stream = refund.as_tlv_stream();
1134 tlv_stream.1.description = None;
1136 match Refund::try_from(tlv_stream.to_bytes()) {
1137 Ok(_) => panic!("expected error"),
1139 assert_eq!(e, Bolt12ParseError::InvalidSemantics(Bolt12SemanticError::MissingDescription));
1145 fn parses_refund_with_amount() {
1146 let refund = RefundBuilder::new("foo".into(), vec![1; 32], payer_pubkey(), 1000).unwrap()
1148 if let Err(e) = refund.to_string().parse::<Refund>() {
1149 panic!("error parsing refund: {:?}", e);
1152 let mut tlv_stream = refund.as_tlv_stream();
1153 tlv_stream.2.amount = None;
1155 match Refund::try_from(tlv_stream.to_bytes()) {
1156 Ok(_) => panic!("expected error"),
1158 assert_eq!(e, Bolt12ParseError::InvalidSemantics(Bolt12SemanticError::MissingAmount));
1162 let mut tlv_stream = refund.as_tlv_stream();
1163 tlv_stream.2.amount = Some(MAX_VALUE_MSAT + 1);
1165 match Refund::try_from(tlv_stream.to_bytes()) {
1166 Ok(_) => panic!("expected error"),
1168 assert_eq!(e, Bolt12ParseError::InvalidSemantics(Bolt12SemanticError::InvalidAmount));
1174 fn parses_refund_with_payer_id() {
1175 let refund = RefundBuilder::new("foo".into(), vec![1; 32], payer_pubkey(), 1000).unwrap()
1177 if let Err(e) = refund.to_string().parse::<Refund>() {
1178 panic!("error parsing refund: {:?}", e);
1181 let mut tlv_stream = refund.as_tlv_stream();
1182 tlv_stream.2.payer_id = None;
1184 match Refund::try_from(tlv_stream.to_bytes()) {
1185 Ok(_) => panic!("expected error"),
1187 assert_eq!(e, Bolt12ParseError::InvalidSemantics(Bolt12SemanticError::MissingPayerId));
1193 fn parses_refund_with_optional_fields() {
1194 let past_expiry = Duration::from_secs(0);
1197 introduction_node_id: pubkey(40),
1198 blinding_point: pubkey(41),
1200 BlindedHop { blinded_node_id: pubkey(43), encrypted_payload: vec![0; 43] },
1201 BlindedHop { blinded_node_id: pubkey(44), encrypted_payload: vec![0; 44] },
1205 introduction_node_id: pubkey(40),
1206 blinding_point: pubkey(41),
1208 BlindedHop { blinded_node_id: pubkey(45), encrypted_payload: vec![0; 45] },
1209 BlindedHop { blinded_node_id: pubkey(46), encrypted_payload: vec![0; 46] },
1214 let refund = RefundBuilder::new("foo".into(), vec![1; 32], payer_pubkey(), 1000).unwrap()
1215 .absolute_expiry(past_expiry)
1216 .issuer("bar".into())
1217 .path(paths[0].clone())
1218 .path(paths[1].clone())
1219 .chain(Network::Testnet)
1220 .features_unchecked(InvoiceRequestFeatures::unknown())
1222 .payer_note("baz".into())
1225 match refund.to_string().parse::<Refund>() {
1227 assert_eq!(refund.absolute_expiry(), Some(past_expiry));
1228 #[cfg(feature = "std")]
1229 assert!(refund.is_expired());
1230 assert_eq!(refund.paths(), &paths[..]);
1231 assert_eq!(refund.issuer(), Some(PrintableString("bar")));
1232 assert_eq!(refund.chain(), ChainHash::using_genesis_block(Network::Testnet));
1233 assert_eq!(refund.features(), &InvoiceRequestFeatures::unknown());
1234 assert_eq!(refund.quantity(), Some(10));
1235 assert_eq!(refund.payer_note(), Some(PrintableString("baz")));
1237 Err(e) => panic!("error parsing refund: {:?}", e),
1242 fn fails_parsing_refund_with_unexpected_fields() {
1243 let refund = RefundBuilder::new("foo".into(), vec![1; 32], payer_pubkey(), 1000).unwrap()
1245 if let Err(e) = refund.to_string().parse::<Refund>() {
1246 panic!("error parsing refund: {:?}", e);
1249 let metadata = vec![42; 32];
1250 let mut tlv_stream = refund.as_tlv_stream();
1251 tlv_stream.1.metadata = Some(&metadata);
1253 match Refund::try_from(tlv_stream.to_bytes()) {
1254 Ok(_) => panic!("expected error"),
1256 assert_eq!(e, Bolt12ParseError::InvalidSemantics(Bolt12SemanticError::UnexpectedMetadata));
1260 let chains = vec![ChainHash::using_genesis_block(Network::Testnet)];
1261 let mut tlv_stream = refund.as_tlv_stream();
1262 tlv_stream.1.chains = Some(&chains);
1264 match Refund::try_from(tlv_stream.to_bytes()) {
1265 Ok(_) => panic!("expected error"),
1267 assert_eq!(e, Bolt12ParseError::InvalidSemantics(Bolt12SemanticError::UnexpectedChain));
1271 let mut tlv_stream = refund.as_tlv_stream();
1272 tlv_stream.1.currency = Some(&b"USD");
1273 tlv_stream.1.amount = Some(1000);
1275 match Refund::try_from(tlv_stream.to_bytes()) {
1276 Ok(_) => panic!("expected error"),
1278 assert_eq!(e, Bolt12ParseError::InvalidSemantics(Bolt12SemanticError::UnexpectedAmount));
1282 let features = OfferFeatures::unknown();
1283 let mut tlv_stream = refund.as_tlv_stream();
1284 tlv_stream.1.features = Some(&features);
1286 match Refund::try_from(tlv_stream.to_bytes()) {
1287 Ok(_) => panic!("expected error"),
1289 assert_eq!(e, Bolt12ParseError::InvalidSemantics(Bolt12SemanticError::UnexpectedFeatures));
1293 let mut tlv_stream = refund.as_tlv_stream();
1294 tlv_stream.1.quantity_max = Some(10);
1296 match Refund::try_from(tlv_stream.to_bytes()) {
1297 Ok(_) => panic!("expected error"),
1299 assert_eq!(e, Bolt12ParseError::InvalidSemantics(Bolt12SemanticError::UnexpectedQuantity));
1303 let node_id = payer_pubkey();
1304 let mut tlv_stream = refund.as_tlv_stream();
1305 tlv_stream.1.node_id = Some(&node_id);
1307 match Refund::try_from(tlv_stream.to_bytes()) {
1308 Ok(_) => panic!("expected error"),
1310 assert_eq!(e, Bolt12ParseError::InvalidSemantics(Bolt12SemanticError::UnexpectedSigningPubkey));
1316 fn fails_parsing_refund_with_extra_tlv_records() {
1317 let secp_ctx = Secp256k1::new();
1318 let keys = KeyPair::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[42; 32]).unwrap());
1319 let refund = RefundBuilder::new("foo".into(), vec![1; 32], keys.public_key(), 1000).unwrap()
1322 let mut encoded_refund = Vec::new();
1323 refund.write(&mut encoded_refund).unwrap();
1324 BigSize(1002).write(&mut encoded_refund).unwrap();
1325 BigSize(32).write(&mut encoded_refund).unwrap();
1326 [42u8; 32].write(&mut encoded_refund).unwrap();
1328 match Refund::try_from(encoded_refund) {
1329 Ok(_) => panic!("expected error"),
1330 Err(e) => assert_eq!(e, Bolt12ParseError::Decode(DecodeError::InvalidValue)),