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 `offer` messages.
12 //! An [`Offer`] represents an "offer to be paid." It is typically constructed by a merchant and
13 //! published as a QR code to be scanned by a customer. The customer uses the offer to request an
14 //! invoice from the merchant to be paid.
17 //! extern crate bitcoin;
18 //! extern crate core;
19 //! extern crate lightning;
21 //! use core::convert::TryFrom;
22 //! use core::num::NonZeroU64;
23 //! use core::time::Duration;
25 //! use bitcoin::secp256k1::{KeyPair, PublicKey, Secp256k1, SecretKey};
26 //! use lightning::offers::offer::{Offer, OfferBuilder, Quantity};
27 //! use lightning::offers::parse::Bolt12ParseError;
28 //! use lightning::util::ser::{Readable, Writeable};
30 //! # use lightning::blinded_path::BlindedPath;
31 //! # #[cfg(feature = "std")]
32 //! # use std::time::SystemTime;
34 //! # fn create_blinded_path() -> BlindedPath { unimplemented!() }
35 //! # fn create_another_blinded_path() -> BlindedPath { unimplemented!() }
37 //! # #[cfg(feature = "std")]
38 //! # fn build() -> Result<(), Bolt12ParseError> {
39 //! let secp_ctx = Secp256k1::new();
40 //! let keys = KeyPair::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[42; 32]).unwrap());
41 //! let pubkey = PublicKey::from(keys);
43 //! let expiration = SystemTime::now() + Duration::from_secs(24 * 60 * 60);
44 //! let offer = OfferBuilder::new("coffee, large".to_string(), pubkey)
45 //! .amount_msats(20_000)
46 //! .supported_quantity(Quantity::Unbounded)
47 //! .absolute_expiry(expiration.duration_since(SystemTime::UNIX_EPOCH).unwrap())
48 //! .issuer("Foo Bar".to_string())
49 //! .path(create_blinded_path())
50 //! .path(create_another_blinded_path())
53 //! // Encode as a bech32 string for use in a QR code.
54 //! let encoded_offer = offer.to_string();
56 //! // Parse from a bech32 string after scanning from a QR code.
57 //! let offer = encoded_offer.parse::<Offer>()?;
59 //! // Encode offer as raw bytes.
60 //! let mut bytes = Vec::new();
61 //! offer.write(&mut bytes).unwrap();
63 //! // Decode raw bytes into an offer.
64 //! let offer = Offer::try_from(bytes)?;
69 use bitcoin::blockdata::constants::ChainHash;
70 use bitcoin::network::constants::Network;
71 use bitcoin::secp256k1::{KeyPair, PublicKey, Secp256k1, self};
72 use core::convert::TryFrom;
73 use core::num::NonZeroU64;
75 use core::str::FromStr;
76 use core::time::Duration;
77 use crate::sign::EntropySource;
79 use crate::blinded_path::BlindedPath;
80 use crate::ln::features::OfferFeatures;
81 use crate::ln::inbound_payment::{ExpandedKey, IV_LEN, Nonce};
82 use crate::ln::msgs::MAX_VALUE_MSAT;
83 use crate::offers::invoice_request::{DerivedPayerId, ExplicitPayerId, InvoiceRequestBuilder};
84 use crate::offers::merkle::TlvStream;
85 use crate::offers::parse::{Bech32Encode, Bolt12ParseError, Bolt12SemanticError, ParsedMessage};
86 use crate::offers::signer::{Metadata, MetadataMaterial, self};
87 use crate::util::ser::{HighZeroBytesDroppedBigSize, WithoutLength, Writeable, Writer};
88 use crate::util::string::PrintableString;
90 use crate::prelude::*;
92 #[cfg(feature = "std")]
93 use std::time::SystemTime;
95 pub(super) const IV_BYTES: &[u8; IV_LEN] = b"LDK Offer ~~~~~~";
97 /// Builds an [`Offer`] for the "offer to be paid" flow.
99 /// See [module-level documentation] for usage.
101 /// This is not exported to bindings users as builder patterns don't map outside of move semantics.
103 /// [module-level documentation]: self
104 pub struct OfferBuilder<'a, M: MetadataStrategy, T: secp256k1::Signing> {
105 offer: OfferContents,
106 metadata_strategy: core::marker::PhantomData<M>,
107 secp_ctx: Option<&'a Secp256k1<T>>,
110 /// Indicates how [`Offer::metadata`] may be set.
112 /// This is not exported to bindings users as builder patterns don't map outside of move semantics.
113 pub trait MetadataStrategy {}
115 /// [`Offer::metadata`] may be explicitly set or left empty.
117 /// This is not exported to bindings users as builder patterns don't map outside of move semantics.
118 pub struct ExplicitMetadata {}
120 /// [`Offer::metadata`] will be derived.
122 /// This is not exported to bindings users as builder patterns don't map outside of move semantics.
123 pub struct DerivedMetadata {}
125 impl MetadataStrategy for ExplicitMetadata {}
126 impl MetadataStrategy for DerivedMetadata {}
128 impl<'a> OfferBuilder<'a, ExplicitMetadata, secp256k1::SignOnly> {
129 /// Creates a new builder for an offer setting the [`Offer::description`] and using the
130 /// [`Offer::signing_pubkey`] for signing invoices. The associated secret key must be remembered
131 /// while the offer is valid.
133 /// Use a different pubkey per offer to avoid correlating offers.
134 pub fn new(description: String, signing_pubkey: PublicKey) -> Self {
136 offer: OfferContents {
137 chains: None, metadata: None, amount: None, description,
138 features: OfferFeatures::empty(), absolute_expiry: None, issuer: None, paths: None,
139 supported_quantity: Quantity::One, signing_pubkey,
141 metadata_strategy: core::marker::PhantomData,
146 /// Sets the [`Offer::metadata`] to the given bytes.
148 /// Successive calls to this method will override the previous setting.
149 pub fn metadata(mut self, metadata: Vec<u8>) -> Result<Self, Bolt12SemanticError> {
150 self.offer.metadata = Some(Metadata::Bytes(metadata));
155 impl<'a, T: secp256k1::Signing> OfferBuilder<'a, DerivedMetadata, T> {
156 /// Similar to [`OfferBuilder::new`] except, if [`OfferBuilder::path`] is called, the signing
157 /// pubkey is derived from the given [`ExpandedKey`] and [`EntropySource`]. This provides
158 /// recipient privacy by using a different signing pubkey for each offer. Otherwise, the
159 /// provided `node_id` is used for the signing pubkey.
161 /// Also, sets the metadata when [`OfferBuilder::build`] is called such that it can be used by
162 /// [`InvoiceRequest::verify`] to determine if the request was produced for the offer given an
165 /// [`InvoiceRequest::verify`]: crate::offers::invoice_request::InvoiceRequest::verify
166 /// [`ExpandedKey`]: crate::ln::inbound_payment::ExpandedKey
167 pub fn deriving_signing_pubkey<ES: Deref>(
168 description: String, node_id: PublicKey, expanded_key: &ExpandedKey, entropy_source: ES,
169 secp_ctx: &'a Secp256k1<T>
170 ) -> Self where ES::Target: EntropySource {
171 let nonce = Nonce::from_entropy_source(entropy_source);
172 let derivation_material = MetadataMaterial::new(nonce, expanded_key, IV_BYTES);
173 let metadata = Metadata::DerivedSigningPubkey(derivation_material);
175 offer: OfferContents {
176 chains: None, metadata: Some(metadata), amount: None, description,
177 features: OfferFeatures::empty(), absolute_expiry: None, issuer: None, paths: None,
178 supported_quantity: Quantity::One, signing_pubkey: node_id,
180 metadata_strategy: core::marker::PhantomData,
181 secp_ctx: Some(secp_ctx),
186 impl<'a, M: MetadataStrategy, T: secp256k1::Signing> OfferBuilder<'a, M, T> {
187 /// Adds the chain hash of the given [`Network`] to [`Offer::chains`]. If not called,
188 /// the chain hash of [`Network::Bitcoin`] is assumed to be the only one supported.
190 /// See [`Offer::chains`] on how this relates to the payment currency.
192 /// Successive calls to this method will add another chain hash.
193 pub fn chain(mut self, network: Network) -> Self {
194 let chains = self.offer.chains.get_or_insert_with(Vec::new);
195 let chain = ChainHash::using_genesis_block(network);
196 if !chains.contains(&chain) {
203 /// Sets the [`Offer::amount`] as an [`Amount::Bitcoin`].
205 /// Successive calls to this method will override the previous setting.
206 pub fn amount_msats(self, amount_msats: u64) -> Self {
207 self.amount(Amount::Bitcoin { amount_msats })
210 /// Sets the [`Offer::amount`].
212 /// Successive calls to this method will override the previous setting.
213 pub(super) fn amount(mut self, amount: Amount) -> Self {
214 self.offer.amount = Some(amount);
218 /// Sets the [`Offer::absolute_expiry`] as seconds since the Unix epoch. Any expiry that has
219 /// already passed is valid and can be checked for using [`Offer::is_expired`].
221 /// Successive calls to this method will override the previous setting.
222 pub fn absolute_expiry(mut self, absolute_expiry: Duration) -> Self {
223 self.offer.absolute_expiry = Some(absolute_expiry);
227 /// Sets the [`Offer::issuer`].
229 /// Successive calls to this method will override the previous setting.
230 pub fn issuer(mut self, issuer: String) -> Self {
231 self.offer.issuer = Some(issuer);
235 /// Adds a blinded path to [`Offer::paths`]. Must include at least one path if only connected by
236 /// private channels or if [`Offer::signing_pubkey`] is not a public node id.
238 /// Successive calls to this method will add another blinded path. Caller is responsible for not
239 /// adding duplicate paths.
240 pub fn path(mut self, path: BlindedPath) -> Self {
241 self.offer.paths.get_or_insert_with(Vec::new).push(path);
245 /// Sets the quantity of items for [`Offer::supported_quantity`]. If not called, defaults to
246 /// [`Quantity::One`].
248 /// Successive calls to this method will override the previous setting.
249 pub fn supported_quantity(mut self, quantity: Quantity) -> Self {
250 self.offer.supported_quantity = quantity;
254 /// Builds an [`Offer`] from the builder's settings.
255 pub fn build(mut self) -> Result<Offer, Bolt12SemanticError> {
256 match self.offer.amount {
257 Some(Amount::Bitcoin { amount_msats }) => {
258 if amount_msats > MAX_VALUE_MSAT {
259 return Err(Bolt12SemanticError::InvalidAmount);
262 Some(Amount::Currency { .. }) => return Err(Bolt12SemanticError::UnsupportedCurrency),
266 if let Some(chains) = &self.offer.chains {
267 if chains.len() == 1 && chains[0] == self.offer.implied_chain() {
268 self.offer.chains = None;
272 Ok(self.build_without_checks())
275 fn build_without_checks(mut self) -> Offer {
276 // Create the metadata for stateless verification of an InvoiceRequest.
277 if let Some(mut metadata) = self.offer.metadata.take() {
278 if metadata.has_derivation_material() {
279 if self.offer.paths.is_none() {
280 metadata = metadata.without_keys();
283 let mut tlv_stream = self.offer.as_tlv_stream();
284 debug_assert_eq!(tlv_stream.metadata, None);
285 tlv_stream.metadata = None;
286 if metadata.derives_keys() {
287 tlv_stream.node_id = None;
290 let (derived_metadata, keys) = metadata.derive_from(tlv_stream, self.secp_ctx);
291 metadata = derived_metadata;
292 if let Some(keys) = keys {
293 self.offer.signing_pubkey = keys.public_key();
297 self.offer.metadata = Some(metadata);
300 let mut bytes = Vec::new();
301 self.offer.write(&mut bytes).unwrap();
303 Offer { bytes, contents: self.offer }
308 impl<'a, M: MetadataStrategy, T: secp256k1::Signing> OfferBuilder<'a, M, T> {
309 fn features_unchecked(mut self, features: OfferFeatures) -> Self {
310 self.offer.features = features;
314 pub(super) fn build_unchecked(self) -> Offer {
315 self.build_without_checks()
319 /// An `Offer` is a potentially long-lived proposal for payment of a good or service.
321 /// An offer is a precursor to an [`InvoiceRequest`]. A merchant publishes an offer from which a
322 /// customer may request an [`Bolt12Invoice`] for a specific quantity and using an amount sufficient
323 /// to cover that quantity (i.e., at least `quantity * amount`). See [`Offer::amount`].
325 /// Offers may be denominated in currency other than bitcoin but are ultimately paid using the
328 /// Through the use of [`BlindedPath`]s, offers provide recipient privacy.
330 /// [`InvoiceRequest`]: crate::offers::invoice_request::InvoiceRequest
331 /// [`Bolt12Invoice`]: crate::offers::invoice::Bolt12Invoice
332 #[derive(Clone, Debug)]
333 #[cfg_attr(test, derive(PartialEq))]
335 // The serialized offer. Needed when creating an `InvoiceRequest` if the offer contains unknown
337 pub(super) bytes: Vec<u8>,
338 pub(super) contents: OfferContents,
341 /// The contents of an [`Offer`], which may be shared with an [`InvoiceRequest`] or a
342 /// [`Bolt12Invoice`].
344 /// [`InvoiceRequest`]: crate::offers::invoice_request::InvoiceRequest
345 /// [`Bolt12Invoice`]: crate::offers::invoice::Bolt12Invoice
346 #[derive(Clone, Debug)]
347 #[cfg_attr(test, derive(PartialEq))]
348 pub(super) struct OfferContents {
349 chains: Option<Vec<ChainHash>>,
350 metadata: Option<Metadata>,
351 amount: Option<Amount>,
353 features: OfferFeatures,
354 absolute_expiry: Option<Duration>,
355 issuer: Option<String>,
356 paths: Option<Vec<BlindedPath>>,
357 supported_quantity: Quantity,
358 signing_pubkey: PublicKey,
361 macro_rules! offer_accessors { ($self: ident, $contents: expr) => {
362 // TODO: Return a slice once ChainHash has constants.
363 // - https://github.com/rust-bitcoin/rust-bitcoin/pull/1283
364 // - https://github.com/rust-bitcoin/rust-bitcoin/pull/1286
365 /// The chains that may be used when paying a requested invoice (e.g., bitcoin mainnet).
366 /// Payments must be denominated in units of the minimal lightning-payable unit (e.g., msats)
367 /// for the selected chain.
368 pub fn chains(&$self) -> Vec<$crate::bitcoin::blockdata::constants::ChainHash> {
372 // TODO: Link to corresponding method in `InvoiceRequest`.
373 /// Opaque bytes set by the originator. Useful for authentication and validating fields since it
374 /// is reflected in `invoice_request` messages along with all the other fields from the `offer`.
375 pub fn metadata(&$self) -> Option<&Vec<u8>> {
379 /// The minimum amount required for a successful payment of a single item.
380 pub fn amount(&$self) -> Option<&$crate::offers::offer::Amount> {
384 /// A complete description of the purpose of the payment. Intended to be displayed to the user
385 /// but with the caveat that it has not been verified in any way.
386 pub fn description(&$self) -> $crate::util::string::PrintableString {
387 $contents.description()
390 /// Features pertaining to the offer.
391 pub fn offer_features(&$self) -> &$crate::ln::features::OfferFeatures {
392 &$contents.features()
395 /// Duration since the Unix epoch when an invoice should no longer be requested.
397 /// If `None`, the offer does not expire.
398 pub fn absolute_expiry(&$self) -> Option<core::time::Duration> {
399 $contents.absolute_expiry()
402 /// The issuer of the offer, possibly beginning with `user@domain` or `domain`. Intended to be
403 /// displayed to the user but with the caveat that it has not been verified in any way.
404 pub fn issuer(&$self) -> Option<$crate::util::string::PrintableString> {
408 /// Paths to the recipient originating from publicly reachable nodes. Blinded paths provide
409 /// recipient privacy by obfuscating its node id.
410 pub fn paths(&$self) -> &[$crate::blinded_path::BlindedPath] {
414 /// The quantity of items supported.
415 pub fn supported_quantity(&$self) -> $crate::offers::offer::Quantity {
416 $contents.supported_quantity()
419 /// The public key used by the recipient to sign invoices.
420 pub fn signing_pubkey(&$self) -> $crate::bitcoin::secp256k1::PublicKey {
421 $contents.signing_pubkey()
426 offer_accessors!(self, self.contents);
428 pub(super) fn implied_chain(&self) -> ChainHash {
429 self.contents.implied_chain()
432 /// Returns whether the given chain is supported by the offer.
433 pub fn supports_chain(&self, chain: ChainHash) -> bool {
434 self.contents.supports_chain(chain)
437 /// Whether the offer has expired.
438 #[cfg(feature = "std")]
439 pub fn is_expired(&self) -> bool {
440 self.contents.is_expired()
443 /// Returns whether the given quantity is valid for the offer.
444 pub fn is_valid_quantity(&self, quantity: u64) -> bool {
445 self.contents.is_valid_quantity(quantity)
448 /// Returns whether a quantity is expected in an [`InvoiceRequest`] for the offer.
450 /// [`InvoiceRequest`]: crate::offers::invoice_request::InvoiceRequest
451 pub fn expects_quantity(&self) -> bool {
452 self.contents.expects_quantity()
455 /// Similar to [`Offer::request_invoice`] except it:
456 /// - derives the [`InvoiceRequest::payer_id`] such that a different key can be used for each
458 /// - sets the [`InvoiceRequest::payer_metadata`] when [`InvoiceRequestBuilder::build`] is
459 /// called such that it can be used by [`Bolt12Invoice::verify`] to determine if the invoice
460 /// was requested using a base [`ExpandedKey`] from which the payer id was derived.
462 /// Useful to protect the sender's privacy.
464 /// This is not exported to bindings users as builder patterns don't map outside of move semantics.
466 /// [`InvoiceRequest::payer_id`]: crate::offers::invoice_request::InvoiceRequest::payer_id
467 /// [`InvoiceRequest::payer_metadata`]: crate::offers::invoice_request::InvoiceRequest::payer_metadata
468 /// [`Bolt12Invoice::verify`]: crate::offers::invoice::Bolt12Invoice::verify
469 /// [`ExpandedKey`]: crate::ln::inbound_payment::ExpandedKey
470 pub fn request_invoice_deriving_payer_id<'a, 'b, ES: Deref, T: secp256k1::Signing>(
471 &'a self, expanded_key: &ExpandedKey, entropy_source: ES, secp_ctx: &'b Secp256k1<T>
472 ) -> Result<InvoiceRequestBuilder<'a, 'b, DerivedPayerId, T>, Bolt12SemanticError>
474 ES::Target: EntropySource,
476 if self.offer_features().requires_unknown_bits() {
477 return Err(Bolt12SemanticError::UnknownRequiredFeatures);
480 Ok(InvoiceRequestBuilder::deriving_payer_id(self, expanded_key, entropy_source, secp_ctx))
483 /// Similar to [`Offer::request_invoice_deriving_payer_id`] except uses `payer_id` for the
484 /// [`InvoiceRequest::payer_id`] instead of deriving a different key for each request.
486 /// Useful for recurring payments using the same `payer_id` with different invoices.
488 /// This is not exported to bindings users as builder patterns don't map outside of move semantics.
490 /// [`InvoiceRequest::payer_id`]: crate::offers::invoice_request::InvoiceRequest::payer_id
491 pub fn request_invoice_deriving_metadata<ES: Deref>(
492 &self, payer_id: PublicKey, expanded_key: &ExpandedKey, entropy_source: ES
493 ) -> Result<InvoiceRequestBuilder<ExplicitPayerId, secp256k1::SignOnly>, Bolt12SemanticError>
495 ES::Target: EntropySource,
497 if self.offer_features().requires_unknown_bits() {
498 return Err(Bolt12SemanticError::UnknownRequiredFeatures);
501 Ok(InvoiceRequestBuilder::deriving_metadata(self, payer_id, expanded_key, entropy_source))
504 /// Creates an [`InvoiceRequestBuilder`] for the offer with the given `metadata` and `payer_id`,
505 /// which will be reflected in the `Bolt12Invoice` response.
507 /// The `metadata` is useful for including information about the derivation of `payer_id` such
508 /// that invoice response handling can be stateless. Also serves as payer-provided entropy while
509 /// hashing in the signature calculation.
511 /// This should not leak any information such as by using a simple BIP-32 derivation path.
512 /// Otherwise, payments may be correlated.
514 /// Errors if the offer contains unknown required features.
516 /// This is not exported to bindings users as builder patterns don't map outside of move semantics.
518 /// [`InvoiceRequest`]: crate::offers::invoice_request::InvoiceRequest
519 pub fn request_invoice(
520 &self, metadata: Vec<u8>, payer_id: PublicKey
521 ) -> Result<InvoiceRequestBuilder<ExplicitPayerId, secp256k1::SignOnly>, Bolt12SemanticError> {
522 if self.offer_features().requires_unknown_bits() {
523 return Err(Bolt12SemanticError::UnknownRequiredFeatures);
526 Ok(InvoiceRequestBuilder::new(self, metadata, payer_id))
530 pub(super) fn as_tlv_stream(&self) -> OfferTlvStreamRef {
531 self.contents.as_tlv_stream()
535 impl AsRef<[u8]> for Offer {
536 fn as_ref(&self) -> &[u8] {
542 pub fn chains(&self) -> Vec<ChainHash> {
543 self.chains.as_ref().cloned().unwrap_or_else(|| vec![self.implied_chain()])
546 pub fn implied_chain(&self) -> ChainHash {
547 ChainHash::using_genesis_block(Network::Bitcoin)
550 pub fn supports_chain(&self, chain: ChainHash) -> bool {
551 self.chains().contains(&chain)
554 pub fn metadata(&self) -> Option<&Vec<u8>> {
555 self.metadata.as_ref().and_then(|metadata| metadata.as_bytes())
558 pub fn amount(&self) -> Option<&Amount> {
562 pub fn description(&self) -> PrintableString {
563 PrintableString(&self.description)
566 pub fn features(&self) -> &OfferFeatures {
570 pub fn absolute_expiry(&self) -> Option<Duration> {
574 #[cfg(feature = "std")]
575 pub(super) fn is_expired(&self) -> bool {
576 match self.absolute_expiry {
577 Some(seconds_from_epoch) => match SystemTime::UNIX_EPOCH.elapsed() {
578 Ok(elapsed) => elapsed > seconds_from_epoch,
585 pub fn issuer(&self) -> Option<PrintableString> {
586 self.issuer.as_ref().map(|issuer| PrintableString(issuer.as_str()))
589 pub fn paths(&self) -> &[BlindedPath] {
590 self.paths.as_ref().map(|paths| paths.as_slice()).unwrap_or(&[])
593 pub(super) fn check_amount_msats_for_quantity(
594 &self, amount_msats: Option<u64>, quantity: Option<u64>
595 ) -> Result<(), Bolt12SemanticError> {
596 let offer_amount_msats = match self.amount {
598 Some(Amount::Bitcoin { amount_msats }) => amount_msats,
599 Some(Amount::Currency { .. }) => return Err(Bolt12SemanticError::UnsupportedCurrency),
602 if !self.expects_quantity() || quantity.is_some() {
603 let expected_amount_msats = offer_amount_msats.checked_mul(quantity.unwrap_or(1))
604 .ok_or(Bolt12SemanticError::InvalidAmount)?;
605 let amount_msats = amount_msats.unwrap_or(expected_amount_msats);
607 if amount_msats < expected_amount_msats {
608 return Err(Bolt12SemanticError::InsufficientAmount);
611 if amount_msats > MAX_VALUE_MSAT {
612 return Err(Bolt12SemanticError::InvalidAmount);
619 pub fn supported_quantity(&self) -> Quantity {
620 self.supported_quantity
623 pub(super) fn check_quantity(&self, quantity: Option<u64>) -> Result<(), Bolt12SemanticError> {
624 let expects_quantity = self.expects_quantity();
626 None if expects_quantity => Err(Bolt12SemanticError::MissingQuantity),
627 Some(_) if !expects_quantity => Err(Bolt12SemanticError::UnexpectedQuantity),
628 Some(quantity) if !self.is_valid_quantity(quantity) => {
629 Err(Bolt12SemanticError::InvalidQuantity)
635 fn is_valid_quantity(&self, quantity: u64) -> bool {
636 match self.supported_quantity {
637 Quantity::Bounded(n) => quantity <= n.get(),
638 Quantity::Unbounded => quantity > 0,
639 Quantity::One => quantity == 1,
643 fn expects_quantity(&self) -> bool {
644 match self.supported_quantity {
645 Quantity::Bounded(_) => true,
646 Quantity::Unbounded => true,
647 Quantity::One => false,
651 pub(super) fn signing_pubkey(&self) -> PublicKey {
655 /// Verifies that the offer metadata was produced from the offer in the TLV stream.
656 pub(super) fn verify<T: secp256k1::Signing>(
657 &self, bytes: &[u8], key: &ExpandedKey, secp_ctx: &Secp256k1<T>
658 ) -> Result<Option<KeyPair>, ()> {
659 match self.metadata() {
661 let tlv_stream = TlvStream::new(bytes).range(OFFER_TYPES).filter(|record| {
662 match record.r#type {
663 OFFER_METADATA_TYPE => false,
664 OFFER_NODE_ID_TYPE => !self.metadata.as_ref().unwrap().derives_keys(),
668 signer::verify_metadata(
669 metadata, key, IV_BYTES, self.signing_pubkey(), tlv_stream, secp_ctx
676 pub(super) fn as_tlv_stream(&self) -> OfferTlvStreamRef {
677 let (currency, amount) = match &self.amount {
678 None => (None, None),
679 Some(Amount::Bitcoin { amount_msats }) => (None, Some(*amount_msats)),
680 Some(Amount::Currency { iso4217_code, amount }) => (
681 Some(iso4217_code), Some(*amount)
686 if self.features == OfferFeatures::empty() { None } else { Some(&self.features) }
690 chains: self.chains.as_ref(),
691 metadata: self.metadata(),
694 description: Some(&self.description),
696 absolute_expiry: self.absolute_expiry.map(|duration| duration.as_secs()),
697 paths: self.paths.as_ref(),
698 issuer: self.issuer.as_ref(),
699 quantity_max: self.supported_quantity.to_tlv_record(),
700 node_id: Some(&self.signing_pubkey),
705 impl Writeable for Offer {
706 fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
707 WithoutLength(&self.bytes).write(writer)
711 impl Writeable for OfferContents {
712 fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
713 self.as_tlv_stream().write(writer)
717 /// The minimum amount required for an item in an [`Offer`], denominated in either bitcoin or
718 /// another currency.
719 #[derive(Clone, Debug, PartialEq)]
721 /// An amount of bitcoin.
723 /// The amount in millisatoshi.
726 /// An amount of currency specified using ISO 4712.
728 /// The currency that the amount is denominated in.
729 iso4217_code: CurrencyCode,
730 /// The amount in the currency unit adjusted by the ISO 4712 exponent (e.g., USD cents).
735 /// An ISO 4712 three-letter currency code (e.g., USD).
736 pub type CurrencyCode = [u8; 3];
738 /// Quantity of items supported by an [`Offer`].
739 #[derive(Clone, Copy, Debug, PartialEq)]
741 /// Up to a specific number of items (inclusive). Use when more than one item can be requested
742 /// but is limited (e.g., because of per customer or inventory limits).
744 /// May be used with `NonZeroU64::new(1)` but prefer to use [`Quantity::One`] if only one item
747 /// One or more items. Use when more than one item can be requested without any limit.
749 /// Only one item. Use when only a single item can be requested.
754 fn to_tlv_record(&self) -> Option<u64> {
756 Quantity::Bounded(n) => Some(n.get()),
757 Quantity::Unbounded => Some(0),
758 Quantity::One => None,
763 /// Valid type range for offer TLV records.
764 pub(super) const OFFER_TYPES: core::ops::Range<u64> = 1..80;
766 /// TLV record type for [`Offer::metadata`].
767 const OFFER_METADATA_TYPE: u64 = 4;
769 /// TLV record type for [`Offer::signing_pubkey`].
770 const OFFER_NODE_ID_TYPE: u64 = 22;
772 tlv_stream!(OfferTlvStream, OfferTlvStreamRef, OFFER_TYPES, {
773 (2, chains: (Vec<ChainHash>, WithoutLength)),
774 (OFFER_METADATA_TYPE, metadata: (Vec<u8>, WithoutLength)),
775 (6, currency: CurrencyCode),
776 (8, amount: (u64, HighZeroBytesDroppedBigSize)),
777 (10, description: (String, WithoutLength)),
778 (12, features: (OfferFeatures, WithoutLength)),
779 (14, absolute_expiry: (u64, HighZeroBytesDroppedBigSize)),
780 (16, paths: (Vec<BlindedPath>, WithoutLength)),
781 (18, issuer: (String, WithoutLength)),
782 (20, quantity_max: (u64, HighZeroBytesDroppedBigSize)),
783 (OFFER_NODE_ID_TYPE, node_id: PublicKey),
786 impl Bech32Encode for Offer {
787 const BECH32_HRP: &'static str = "lno";
790 impl FromStr for Offer {
791 type Err = Bolt12ParseError;
793 fn from_str(s: &str) -> Result<Self, <Self as FromStr>::Err> {
794 Self::from_bech32_str(s)
798 impl TryFrom<Vec<u8>> for Offer {
799 type Error = Bolt12ParseError;
801 fn try_from(bytes: Vec<u8>) -> Result<Self, Self::Error> {
802 let offer = ParsedMessage::<OfferTlvStream>::try_from(bytes)?;
803 let ParsedMessage { bytes, tlv_stream } = offer;
804 let contents = OfferContents::try_from(tlv_stream)?;
805 Ok(Offer { bytes, contents })
809 impl TryFrom<OfferTlvStream> for OfferContents {
810 type Error = Bolt12SemanticError;
812 fn try_from(tlv_stream: OfferTlvStream) -> Result<Self, Self::Error> {
814 chains, metadata, currency, amount, description, features, absolute_expiry, paths,
815 issuer, quantity_max, node_id,
818 let metadata = metadata.map(|metadata| Metadata::Bytes(metadata));
820 let amount = match (currency, amount) {
821 (None, None) => None,
822 (None, Some(amount_msats)) if amount_msats > MAX_VALUE_MSAT => {
823 return Err(Bolt12SemanticError::InvalidAmount);
825 (None, Some(amount_msats)) => Some(Amount::Bitcoin { amount_msats }),
826 (Some(_), None) => return Err(Bolt12SemanticError::MissingAmount),
827 (Some(iso4217_code), Some(amount)) => Some(Amount::Currency { iso4217_code, amount }),
830 let description = match description {
831 None => return Err(Bolt12SemanticError::MissingDescription),
832 Some(description) => description,
835 let features = features.unwrap_or_else(OfferFeatures::empty);
837 let absolute_expiry = absolute_expiry
838 .map(|seconds_from_epoch| Duration::from_secs(seconds_from_epoch));
840 let supported_quantity = match quantity_max {
841 None => Quantity::One,
842 Some(0) => Quantity::Unbounded,
843 Some(n) => Quantity::Bounded(NonZeroU64::new(n).unwrap()),
846 let signing_pubkey = match node_id {
847 None => return Err(Bolt12SemanticError::MissingSigningPubkey),
848 Some(node_id) => node_id,
852 chains, metadata, amount, description, features, absolute_expiry, issuer, paths,
853 supported_quantity, signing_pubkey,
858 impl core::fmt::Display for Offer {
859 fn fmt(&self, f: &mut core::fmt::Formatter) -> Result<(), core::fmt::Error> {
860 self.fmt_bech32_str(f)
866 use super::{Amount, Offer, OfferBuilder, OfferTlvStreamRef, Quantity};
868 use bitcoin::blockdata::constants::ChainHash;
869 use bitcoin::network::constants::Network;
870 use bitcoin::secp256k1::Secp256k1;
871 use core::convert::TryFrom;
872 use core::num::NonZeroU64;
873 use core::time::Duration;
874 use crate::blinded_path::{BlindedHop, BlindedPath};
875 use crate::sign::KeyMaterial;
876 use crate::ln::features::OfferFeatures;
877 use crate::ln::inbound_payment::ExpandedKey;
878 use crate::ln::msgs::{DecodeError, MAX_VALUE_MSAT};
879 use crate::offers::parse::{Bolt12ParseError, Bolt12SemanticError};
880 use crate::offers::test_utils::*;
881 use crate::util::ser::{BigSize, Writeable};
882 use crate::util::string::PrintableString;
885 fn builds_offer_with_defaults() {
886 let offer = OfferBuilder::new("foo".into(), pubkey(42)).build().unwrap();
888 let mut buffer = Vec::new();
889 offer.write(&mut buffer).unwrap();
891 assert_eq!(offer.bytes, buffer.as_slice());
892 assert_eq!(offer.chains(), vec![ChainHash::using_genesis_block(Network::Bitcoin)]);
893 assert!(offer.supports_chain(ChainHash::using_genesis_block(Network::Bitcoin)));
894 assert_eq!(offer.metadata(), None);
895 assert_eq!(offer.amount(), None);
896 assert_eq!(offer.description(), PrintableString("foo"));
897 assert_eq!(offer.offer_features(), &OfferFeatures::empty());
898 assert_eq!(offer.absolute_expiry(), None);
899 #[cfg(feature = "std")]
900 assert!(!offer.is_expired());
901 assert_eq!(offer.paths(), &[]);
902 assert_eq!(offer.issuer(), None);
903 assert_eq!(offer.supported_quantity(), Quantity::One);
904 assert_eq!(offer.signing_pubkey(), pubkey(42));
907 offer.as_tlv_stream(),
913 description: Some(&String::from("foo")),
915 absolute_expiry: None,
919 node_id: Some(&pubkey(42)),
923 if let Err(e) = Offer::try_from(buffer) {
924 panic!("error parsing offer: {:?}", e);
929 fn builds_offer_with_chains() {
930 let mainnet = ChainHash::using_genesis_block(Network::Bitcoin);
931 let testnet = ChainHash::using_genesis_block(Network::Testnet);
933 let offer = OfferBuilder::new("foo".into(), pubkey(42))
934 .chain(Network::Bitcoin)
937 assert!(offer.supports_chain(mainnet));
938 assert_eq!(offer.chains(), vec![mainnet]);
939 assert_eq!(offer.as_tlv_stream().chains, None);
941 let offer = OfferBuilder::new("foo".into(), pubkey(42))
942 .chain(Network::Testnet)
945 assert!(offer.supports_chain(testnet));
946 assert_eq!(offer.chains(), vec![testnet]);
947 assert_eq!(offer.as_tlv_stream().chains, Some(&vec![testnet]));
949 let offer = OfferBuilder::new("foo".into(), pubkey(42))
950 .chain(Network::Testnet)
951 .chain(Network::Testnet)
954 assert!(offer.supports_chain(testnet));
955 assert_eq!(offer.chains(), vec![testnet]);
956 assert_eq!(offer.as_tlv_stream().chains, Some(&vec![testnet]));
958 let offer = OfferBuilder::new("foo".into(), pubkey(42))
959 .chain(Network::Bitcoin)
960 .chain(Network::Testnet)
963 assert!(offer.supports_chain(mainnet));
964 assert!(offer.supports_chain(testnet));
965 assert_eq!(offer.chains(), vec![mainnet, testnet]);
966 assert_eq!(offer.as_tlv_stream().chains, Some(&vec![mainnet, testnet]));
970 fn builds_offer_with_metadata() {
971 let offer = OfferBuilder::new("foo".into(), pubkey(42))
972 .metadata(vec![42; 32]).unwrap()
975 assert_eq!(offer.metadata(), Some(&vec![42; 32]));
976 assert_eq!(offer.as_tlv_stream().metadata, Some(&vec![42; 32]));
978 let offer = OfferBuilder::new("foo".into(), pubkey(42))
979 .metadata(vec![42; 32]).unwrap()
980 .metadata(vec![43; 32]).unwrap()
983 assert_eq!(offer.metadata(), Some(&vec![43; 32]));
984 assert_eq!(offer.as_tlv_stream().metadata, Some(&vec![43; 32]));
988 fn builds_offer_with_metadata_derived() {
989 let desc = "foo".to_string();
990 let node_id = recipient_pubkey();
991 let expanded_key = ExpandedKey::new(&KeyMaterial([42; 32]));
992 let entropy = FixedEntropy {};
993 let secp_ctx = Secp256k1::new();
995 let offer = OfferBuilder
996 ::deriving_signing_pubkey(desc, node_id, &expanded_key, &entropy, &secp_ctx)
999 assert_eq!(offer.signing_pubkey(), node_id);
1001 let invoice_request = offer.request_invoice(vec![1; 32], payer_pubkey()).unwrap()
1003 .sign(payer_sign).unwrap();
1004 assert!(invoice_request.verify(&expanded_key, &secp_ctx).is_ok());
1006 // Fails verification with altered offer field
1007 let mut tlv_stream = offer.as_tlv_stream();
1008 tlv_stream.amount = Some(100);
1010 let mut encoded_offer = Vec::new();
1011 tlv_stream.write(&mut encoded_offer).unwrap();
1013 let invoice_request = Offer::try_from(encoded_offer).unwrap()
1014 .request_invoice(vec![1; 32], payer_pubkey()).unwrap()
1016 .sign(payer_sign).unwrap();
1017 assert!(invoice_request.verify(&expanded_key, &secp_ctx).is_err());
1019 // Fails verification with altered metadata
1020 let mut tlv_stream = offer.as_tlv_stream();
1021 let metadata = tlv_stream.metadata.unwrap().iter().copied().rev().collect();
1022 tlv_stream.metadata = Some(&metadata);
1024 let mut encoded_offer = Vec::new();
1025 tlv_stream.write(&mut encoded_offer).unwrap();
1027 let invoice_request = Offer::try_from(encoded_offer).unwrap()
1028 .request_invoice(vec![1; 32], payer_pubkey()).unwrap()
1030 .sign(payer_sign).unwrap();
1031 assert!(invoice_request.verify(&expanded_key, &secp_ctx).is_err());
1035 fn builds_offer_with_derived_signing_pubkey() {
1036 let desc = "foo".to_string();
1037 let node_id = recipient_pubkey();
1038 let expanded_key = ExpandedKey::new(&KeyMaterial([42; 32]));
1039 let entropy = FixedEntropy {};
1040 let secp_ctx = Secp256k1::new();
1042 let blinded_path = BlindedPath {
1043 introduction_node_id: pubkey(40),
1044 blinding_point: pubkey(41),
1046 BlindedHop { blinded_node_id: pubkey(42), encrypted_payload: vec![0; 43] },
1047 BlindedHop { blinded_node_id: node_id, encrypted_payload: vec![0; 44] },
1051 let offer = OfferBuilder
1052 ::deriving_signing_pubkey(desc, node_id, &expanded_key, &entropy, &secp_ctx)
1056 assert_ne!(offer.signing_pubkey(), node_id);
1058 let invoice_request = offer.request_invoice(vec![1; 32], payer_pubkey()).unwrap()
1060 .sign(payer_sign).unwrap();
1061 assert!(invoice_request.verify(&expanded_key, &secp_ctx).is_ok());
1063 // Fails verification with altered offer field
1064 let mut tlv_stream = offer.as_tlv_stream();
1065 tlv_stream.amount = Some(100);
1067 let mut encoded_offer = Vec::new();
1068 tlv_stream.write(&mut encoded_offer).unwrap();
1070 let invoice_request = Offer::try_from(encoded_offer).unwrap()
1071 .request_invoice(vec![1; 32], payer_pubkey()).unwrap()
1073 .sign(payer_sign).unwrap();
1074 assert!(invoice_request.verify(&expanded_key, &secp_ctx).is_err());
1076 // Fails verification with altered signing pubkey
1077 let mut tlv_stream = offer.as_tlv_stream();
1078 let signing_pubkey = pubkey(1);
1079 tlv_stream.node_id = Some(&signing_pubkey);
1081 let mut encoded_offer = Vec::new();
1082 tlv_stream.write(&mut encoded_offer).unwrap();
1084 let invoice_request = Offer::try_from(encoded_offer).unwrap()
1085 .request_invoice(vec![1; 32], payer_pubkey()).unwrap()
1087 .sign(payer_sign).unwrap();
1088 assert!(invoice_request.verify(&expanded_key, &secp_ctx).is_err());
1092 fn builds_offer_with_amount() {
1093 let bitcoin_amount = Amount::Bitcoin { amount_msats: 1000 };
1094 let currency_amount = Amount::Currency { iso4217_code: *b"USD", amount: 10 };
1096 let offer = OfferBuilder::new("foo".into(), pubkey(42))
1100 let tlv_stream = offer.as_tlv_stream();
1101 assert_eq!(offer.amount(), Some(&bitcoin_amount));
1102 assert_eq!(tlv_stream.amount, Some(1000));
1103 assert_eq!(tlv_stream.currency, None);
1105 let builder = OfferBuilder::new("foo".into(), pubkey(42))
1106 .amount(currency_amount.clone());
1107 let tlv_stream = builder.offer.as_tlv_stream();
1108 assert_eq!(builder.offer.amount, Some(currency_amount.clone()));
1109 assert_eq!(tlv_stream.amount, Some(10));
1110 assert_eq!(tlv_stream.currency, Some(b"USD"));
1111 match builder.build() {
1112 Ok(_) => panic!("expected error"),
1113 Err(e) => assert_eq!(e, Bolt12SemanticError::UnsupportedCurrency),
1116 let offer = OfferBuilder::new("foo".into(), pubkey(42))
1117 .amount(currency_amount.clone())
1118 .amount(bitcoin_amount.clone())
1121 let tlv_stream = offer.as_tlv_stream();
1122 assert_eq!(tlv_stream.amount, Some(1000));
1123 assert_eq!(tlv_stream.currency, None);
1125 let invalid_amount = Amount::Bitcoin { amount_msats: MAX_VALUE_MSAT + 1 };
1126 match OfferBuilder::new("foo".into(), pubkey(42)).amount(invalid_amount).build() {
1127 Ok(_) => panic!("expected error"),
1128 Err(e) => assert_eq!(e, Bolt12SemanticError::InvalidAmount),
1133 fn builds_offer_with_features() {
1134 let offer = OfferBuilder::new("foo".into(), pubkey(42))
1135 .features_unchecked(OfferFeatures::unknown())
1138 assert_eq!(offer.offer_features(), &OfferFeatures::unknown());
1139 assert_eq!(offer.as_tlv_stream().features, Some(&OfferFeatures::unknown()));
1141 let offer = OfferBuilder::new("foo".into(), pubkey(42))
1142 .features_unchecked(OfferFeatures::unknown())
1143 .features_unchecked(OfferFeatures::empty())
1146 assert_eq!(offer.offer_features(), &OfferFeatures::empty());
1147 assert_eq!(offer.as_tlv_stream().features, None);
1151 fn builds_offer_with_absolute_expiry() {
1152 let future_expiry = Duration::from_secs(u64::max_value());
1153 let past_expiry = Duration::from_secs(0);
1155 let offer = OfferBuilder::new("foo".into(), pubkey(42))
1156 .absolute_expiry(future_expiry)
1159 #[cfg(feature = "std")]
1160 assert!(!offer.is_expired());
1161 assert_eq!(offer.absolute_expiry(), Some(future_expiry));
1162 assert_eq!(offer.as_tlv_stream().absolute_expiry, Some(future_expiry.as_secs()));
1164 let offer = OfferBuilder::new("foo".into(), pubkey(42))
1165 .absolute_expiry(future_expiry)
1166 .absolute_expiry(past_expiry)
1169 #[cfg(feature = "std")]
1170 assert!(offer.is_expired());
1171 assert_eq!(offer.absolute_expiry(), Some(past_expiry));
1172 assert_eq!(offer.as_tlv_stream().absolute_expiry, Some(past_expiry.as_secs()));
1176 fn builds_offer_with_paths() {
1179 introduction_node_id: pubkey(40),
1180 blinding_point: pubkey(41),
1182 BlindedHop { blinded_node_id: pubkey(43), encrypted_payload: vec![0; 43] },
1183 BlindedHop { blinded_node_id: pubkey(44), encrypted_payload: vec![0; 44] },
1187 introduction_node_id: pubkey(40),
1188 blinding_point: pubkey(41),
1190 BlindedHop { blinded_node_id: pubkey(45), encrypted_payload: vec![0; 45] },
1191 BlindedHop { blinded_node_id: pubkey(46), encrypted_payload: vec![0; 46] },
1196 let offer = OfferBuilder::new("foo".into(), pubkey(42))
1197 .path(paths[0].clone())
1198 .path(paths[1].clone())
1201 let tlv_stream = offer.as_tlv_stream();
1202 assert_eq!(offer.paths(), paths.as_slice());
1203 assert_eq!(offer.signing_pubkey(), pubkey(42));
1204 assert_ne!(pubkey(42), pubkey(44));
1205 assert_eq!(tlv_stream.paths, Some(&paths));
1206 assert_eq!(tlv_stream.node_id, Some(&pubkey(42)));
1210 fn builds_offer_with_issuer() {
1211 let offer = OfferBuilder::new("foo".into(), pubkey(42))
1212 .issuer("bar".into())
1215 assert_eq!(offer.issuer(), Some(PrintableString("bar")));
1216 assert_eq!(offer.as_tlv_stream().issuer, Some(&String::from("bar")));
1218 let offer = OfferBuilder::new("foo".into(), pubkey(42))
1219 .issuer("bar".into())
1220 .issuer("baz".into())
1223 assert_eq!(offer.issuer(), Some(PrintableString("baz")));
1224 assert_eq!(offer.as_tlv_stream().issuer, Some(&String::from("baz")));
1228 fn builds_offer_with_supported_quantity() {
1229 let one = NonZeroU64::new(1).unwrap();
1230 let ten = NonZeroU64::new(10).unwrap();
1232 let offer = OfferBuilder::new("foo".into(), pubkey(42))
1233 .supported_quantity(Quantity::One)
1236 let tlv_stream = offer.as_tlv_stream();
1237 assert_eq!(offer.supported_quantity(), Quantity::One);
1238 assert_eq!(tlv_stream.quantity_max, None);
1240 let offer = OfferBuilder::new("foo".into(), pubkey(42))
1241 .supported_quantity(Quantity::Unbounded)
1244 let tlv_stream = offer.as_tlv_stream();
1245 assert_eq!(offer.supported_quantity(), Quantity::Unbounded);
1246 assert_eq!(tlv_stream.quantity_max, Some(0));
1248 let offer = OfferBuilder::new("foo".into(), pubkey(42))
1249 .supported_quantity(Quantity::Bounded(ten))
1252 let tlv_stream = offer.as_tlv_stream();
1253 assert_eq!(offer.supported_quantity(), Quantity::Bounded(ten));
1254 assert_eq!(tlv_stream.quantity_max, Some(10));
1256 let offer = OfferBuilder::new("foo".into(), pubkey(42))
1257 .supported_quantity(Quantity::Bounded(one))
1260 let tlv_stream = offer.as_tlv_stream();
1261 assert_eq!(offer.supported_quantity(), Quantity::Bounded(one));
1262 assert_eq!(tlv_stream.quantity_max, Some(1));
1264 let offer = OfferBuilder::new("foo".into(), pubkey(42))
1265 .supported_quantity(Quantity::Bounded(ten))
1266 .supported_quantity(Quantity::One)
1269 let tlv_stream = offer.as_tlv_stream();
1270 assert_eq!(offer.supported_quantity(), Quantity::One);
1271 assert_eq!(tlv_stream.quantity_max, None);
1275 fn fails_requesting_invoice_with_unknown_required_features() {
1276 match OfferBuilder::new("foo".into(), pubkey(42))
1277 .features_unchecked(OfferFeatures::unknown())
1279 .request_invoice(vec![1; 32], pubkey(43))
1281 Ok(_) => panic!("expected error"),
1282 Err(e) => assert_eq!(e, Bolt12SemanticError::UnknownRequiredFeatures),
1287 fn parses_offer_with_chains() {
1288 let offer = OfferBuilder::new("foo".into(), pubkey(42))
1289 .chain(Network::Bitcoin)
1290 .chain(Network::Testnet)
1293 if let Err(e) = offer.to_string().parse::<Offer>() {
1294 panic!("error parsing offer: {:?}", e);
1299 fn parses_offer_with_amount() {
1300 let offer = OfferBuilder::new("foo".into(), pubkey(42))
1301 .amount(Amount::Bitcoin { amount_msats: 1000 })
1304 if let Err(e) = offer.to_string().parse::<Offer>() {
1305 panic!("error parsing offer: {:?}", e);
1308 let mut tlv_stream = offer.as_tlv_stream();
1309 tlv_stream.amount = Some(1000);
1310 tlv_stream.currency = Some(b"USD");
1312 let mut encoded_offer = Vec::new();
1313 tlv_stream.write(&mut encoded_offer).unwrap();
1315 if let Err(e) = Offer::try_from(encoded_offer) {
1316 panic!("error parsing offer: {:?}", e);
1319 let mut tlv_stream = offer.as_tlv_stream();
1320 tlv_stream.amount = None;
1321 tlv_stream.currency = Some(b"USD");
1323 let mut encoded_offer = Vec::new();
1324 tlv_stream.write(&mut encoded_offer).unwrap();
1326 match Offer::try_from(encoded_offer) {
1327 Ok(_) => panic!("expected error"),
1328 Err(e) => assert_eq!(e, Bolt12ParseError::InvalidSemantics(Bolt12SemanticError::MissingAmount)),
1331 let mut tlv_stream = offer.as_tlv_stream();
1332 tlv_stream.amount = Some(MAX_VALUE_MSAT + 1);
1333 tlv_stream.currency = None;
1335 let mut encoded_offer = Vec::new();
1336 tlv_stream.write(&mut encoded_offer).unwrap();
1338 match Offer::try_from(encoded_offer) {
1339 Ok(_) => panic!("expected error"),
1340 Err(e) => assert_eq!(e, Bolt12ParseError::InvalidSemantics(Bolt12SemanticError::InvalidAmount)),
1345 fn parses_offer_with_description() {
1346 let offer = OfferBuilder::new("foo".into(), pubkey(42)).build().unwrap();
1347 if let Err(e) = offer.to_string().parse::<Offer>() {
1348 panic!("error parsing offer: {:?}", e);
1351 let mut tlv_stream = offer.as_tlv_stream();
1352 tlv_stream.description = None;
1354 let mut encoded_offer = Vec::new();
1355 tlv_stream.write(&mut encoded_offer).unwrap();
1357 match Offer::try_from(encoded_offer) {
1358 Ok(_) => panic!("expected error"),
1360 assert_eq!(e, Bolt12ParseError::InvalidSemantics(Bolt12SemanticError::MissingDescription));
1366 fn parses_offer_with_paths() {
1367 let offer = OfferBuilder::new("foo".into(), pubkey(42))
1369 introduction_node_id: pubkey(40),
1370 blinding_point: pubkey(41),
1372 BlindedHop { blinded_node_id: pubkey(43), encrypted_payload: vec![0; 43] },
1373 BlindedHop { blinded_node_id: pubkey(44), encrypted_payload: vec![0; 44] },
1377 introduction_node_id: pubkey(40),
1378 blinding_point: pubkey(41),
1380 BlindedHop { blinded_node_id: pubkey(45), encrypted_payload: vec![0; 45] },
1381 BlindedHop { blinded_node_id: pubkey(46), encrypted_payload: vec![0; 46] },
1386 if let Err(e) = offer.to_string().parse::<Offer>() {
1387 panic!("error parsing offer: {:?}", e);
1390 let mut builder = OfferBuilder::new("foo".into(), pubkey(42));
1391 builder.offer.paths = Some(vec![]);
1393 let offer = builder.build().unwrap();
1394 if let Err(e) = offer.to_string().parse::<Offer>() {
1395 panic!("error parsing offer: {:?}", e);
1400 fn parses_offer_with_quantity() {
1401 let offer = OfferBuilder::new("foo".into(), pubkey(42))
1402 .supported_quantity(Quantity::One)
1405 if let Err(e) = offer.to_string().parse::<Offer>() {
1406 panic!("error parsing offer: {:?}", e);
1409 let offer = OfferBuilder::new("foo".into(), pubkey(42))
1410 .supported_quantity(Quantity::Unbounded)
1413 if let Err(e) = offer.to_string().parse::<Offer>() {
1414 panic!("error parsing offer: {:?}", e);
1417 let offer = OfferBuilder::new("foo".into(), pubkey(42))
1418 .supported_quantity(Quantity::Bounded(NonZeroU64::new(10).unwrap()))
1421 if let Err(e) = offer.to_string().parse::<Offer>() {
1422 panic!("error parsing offer: {:?}", e);
1425 let offer = OfferBuilder::new("foo".into(), pubkey(42))
1426 .supported_quantity(Quantity::Bounded(NonZeroU64::new(1).unwrap()))
1429 if let Err(e) = offer.to_string().parse::<Offer>() {
1430 panic!("error parsing offer: {:?}", e);
1435 fn parses_offer_with_node_id() {
1436 let offer = OfferBuilder::new("foo".into(), pubkey(42)).build().unwrap();
1437 if let Err(e) = offer.to_string().parse::<Offer>() {
1438 panic!("error parsing offer: {:?}", e);
1441 let mut tlv_stream = offer.as_tlv_stream();
1442 tlv_stream.node_id = None;
1444 let mut encoded_offer = Vec::new();
1445 tlv_stream.write(&mut encoded_offer).unwrap();
1447 match Offer::try_from(encoded_offer) {
1448 Ok(_) => panic!("expected error"),
1450 assert_eq!(e, Bolt12ParseError::InvalidSemantics(Bolt12SemanticError::MissingSigningPubkey));
1456 fn fails_parsing_offer_with_extra_tlv_records() {
1457 let offer = OfferBuilder::new("foo".into(), pubkey(42)).build().unwrap();
1459 let mut encoded_offer = Vec::new();
1460 offer.write(&mut encoded_offer).unwrap();
1461 BigSize(80).write(&mut encoded_offer).unwrap();
1462 BigSize(32).write(&mut encoded_offer).unwrap();
1463 [42u8; 32].write(&mut encoded_offer).unwrap();
1465 match Offer::try_from(encoded_offer) {
1466 Ok(_) => panic!("expected error"),
1467 Err(e) => assert_eq!(e, Bolt12ParseError::Decode(DecodeError::InvalidValue)),
1474 use super::{Bolt12ParseError, Offer};
1475 use bitcoin::bech32;
1476 use crate::ln::msgs::DecodeError;
1479 fn encodes_offer_as_bech32_without_checksum() {
1480 let encoded_offer = "lno1pqps7sjqpgtyzm3qv4uxzmtsd3jjqer9wd3hy6tsw35k7msjzfpy7nz5yqcnygrfdej82um5wf5k2uckyypwa3eyt44h6txtxquqh7lz5djge4afgfjn7k4rgrkuag0jsd5xvxg";
1481 let offer = dbg!(encoded_offer.parse::<Offer>().unwrap());
1482 let reencoded_offer = offer.to_string();
1483 dbg!(reencoded_offer.parse::<Offer>().unwrap());
1484 assert_eq!(reencoded_offer, encoded_offer);
1488 fn parses_bech32_encoded_offers() {
1490 // BOLT 12 test vectors
1491 "lno1pqps7sjqpgtyzm3qv4uxzmtsd3jjqer9wd3hy6tsw35k7msjzfpy7nz5yqcnygrfdej82um5wf5k2uckyypwa3eyt44h6txtxquqh7lz5djge4afgfjn7k4rgrkuag0jsd5xvxg",
1492 "l+no1pqps7sjqpgtyzm3qv4uxzmtsd3jjqer9wd3hy6tsw35k7msjzfpy7nz5yqcnygrfdej82um5wf5k2uckyypwa3eyt44h6txtxquqh7lz5djge4afgfjn7k4rgrkuag0jsd5xvxg",
1493 "lno1pqps7sjqpgt+yzm3qv4uxzmtsd3jjqer9wd3hy6tsw3+5k7msjzfpy7nz5yqcn+ygrfdej82um5wf5k2uckyypwa3eyt44h6txtxquqh7lz5djge4afgfjn7k4rgrkuag0jsd+5xvxg",
1494 "lno1pqps7sjqpgt+ yzm3qv4uxzmtsd3jjqer9wd3hy6tsw3+ 5k7msjzfpy7nz5yqcn+\nygrfdej82um5wf5k2uckyypwa3eyt44h6txtxquqh7lz5djge4afgfjn7k4rgrkuag0jsd+\r\n 5xvxg",
1496 for encoded_offer in &offers {
1497 if let Err(e) = encoded_offer.parse::<Offer>() {
1498 panic!("Invalid offer ({:?}): {}", e, encoded_offer);
1504 fn fails_parsing_bech32_encoded_offers_with_invalid_continuations() {
1506 // BOLT 12 test vectors
1507 "lno1pqps7sjqpgtyzm3qv4uxzmtsd3jjqer9wd3hy6tsw35k7msjzfpy7nz5yqcnygrfdej82um5wf5k2uckyypwa3eyt44h6txtxquqh7lz5djge4afgfjn7k4rgrkuag0jsd5xvxg+",
1508 "lno1pqps7sjqpgtyzm3qv4uxzmtsd3jjqer9wd3hy6tsw35k7msjzfpy7nz5yqcnygrfdej82um5wf5k2uckyypwa3eyt44h6txtxquqh7lz5djge4afgfjn7k4rgrkuag0jsd5xvxg+ ",
1509 "+lno1pqps7sjqpgtyzm3qv4uxzmtsd3jjqer9wd3hy6tsw35k7msjzfpy7nz5yqcnygrfdej82um5wf5k2uckyypwa3eyt44h6txtxquqh7lz5djge4afgfjn7k4rgrkuag0jsd5xvxg",
1510 "+ lno1pqps7sjqpgtyzm3qv4uxzmtsd3jjqer9wd3hy6tsw35k7msjzfpy7nz5yqcnygrfdej82um5wf5k2uckyypwa3eyt44h6txtxquqh7lz5djge4afgfjn7k4rgrkuag0jsd5xvxg",
1511 "ln++o1pqps7sjqpgtyzm3qv4uxzmtsd3jjqer9wd3hy6tsw35k7msjzfpy7nz5yqcnygrfdej82um5wf5k2uckyypwa3eyt44h6txtxquqh7lz5djge4afgfjn7k4rgrkuag0jsd5xvxg",
1513 for encoded_offer in &offers {
1514 match encoded_offer.parse::<Offer>() {
1515 Ok(_) => panic!("Valid offer: {}", encoded_offer),
1516 Err(e) => assert_eq!(e, Bolt12ParseError::InvalidContinuation),
1523 fn fails_parsing_bech32_encoded_offer_with_invalid_hrp() {
1524 let encoded_offer = "lni1pqps7sjqpgtyzm3qv4uxzmtsd3jjqer9wd3hy6tsw35k7msjzfpy7nz5yqcnygrfdej82um5wf5k2uckyypwa3eyt44h6txtxquqh7lz5djge4afgfjn7k4rgrkuag0jsd5xvxg";
1525 match encoded_offer.parse::<Offer>() {
1526 Ok(_) => panic!("Valid offer: {}", encoded_offer),
1527 Err(e) => assert_eq!(e, Bolt12ParseError::InvalidBech32Hrp),
1532 fn fails_parsing_bech32_encoded_offer_with_invalid_bech32_data() {
1533 let encoded_offer = "lno1pqps7sjqpgtyzm3qv4uxzmtsd3jjqer9wd3hy6tsw35k7msjzfpy7nz5yqcnygrfdej82um5wf5k2uckyypwa3eyt44h6txtxquqh7lz5djge4afgfjn7k4rgrkuag0jsd5xvxo";
1534 match encoded_offer.parse::<Offer>() {
1535 Ok(_) => panic!("Valid offer: {}", encoded_offer),
1536 Err(e) => assert_eq!(e, Bolt12ParseError::Bech32(bech32::Error::InvalidChar('o'))),
1541 fn fails_parsing_bech32_encoded_offer_with_invalid_tlv_data() {
1542 let encoded_offer = "lno1pqps7sjqpgtyzm3qv4uxzmtsd3jjqer9wd3hy6tsw35k7msjzfpy7nz5yqcnygrfdej82um5wf5k2uckyypwa3eyt44h6txtxquqh7lz5djge4afgfjn7k4rgrkuag0jsd5xvxgqqqqq";
1543 match encoded_offer.parse::<Offer>() {
1544 Ok(_) => panic!("Valid offer: {}", encoded_offer),
1545 Err(e) => assert_eq!(e, Bolt12ParseError::Decode(DecodeError::InvalidValue)),