e5e9db0352b1a45785fbec38507b31e1b3605c72
[rust-lightning] / lightning / src / ln / features.rs
1 // This file is Copyright its original authors, visible in version control
2 // history.
3 //
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
8 // licenses.
9
10 //! Feature flag definitions for the Lightning protocol according to [BOLT #9].
11 //!
12 //! Lightning nodes advertise a supported set of operation through feature flags. Features are
13 //! applicable for a specific context as indicated in some [messages]. [`Features`] encapsulates
14 //! behavior for specifying and checking feature flags for a particular context. Each feature is
15 //! defined internally by a trait specifying the corresponding flags (i.e., even and odd bits).
16 //!
17 //! Whether a feature is considered "known" or "unknown" is relative to the implementation, whereas
18 //! the term "supports" is used in reference to a particular set of [`Features`]. That is, a node
19 //! supports a feature if it advertises the feature (as either required or optional) to its peers.
20 //! And the implementation can interpret a feature if the feature is known to it.
21 //!
22 //! The following features are currently required in the LDK:
23 //! - `VariableLengthOnion` - requires/supports variable-length routing onion payloads
24 //!     (see [BOLT-4](https://github.com/lightning/bolts/blob/master/04-onion-routing.md) for more information).
25 //! - `StaticRemoteKey` - requires/supports static key for remote output
26 //!     (see [BOLT-3](https://github.com/lightning/bolts/blob/master/03-transactions.md) for more information).
27 //!
28 //! The following features are currently supported in the LDK:
29 //! - `DataLossProtect` - requires/supports that a node which has somehow fallen behind, e.g., has been restored from an old backup,
30 //!     can detect that it has fallen behind
31 //!     (see [BOLT-2](https://github.com/lightning/bolts/blob/master/02-peer-protocol.md) for more information).
32 //! - `InitialRoutingSync` - requires/supports that the sending node needs a complete routing information dump
33 //!     (see [BOLT-7](https://github.com/lightning/bolts/blob/master/07-routing-gossip.md#initial-sync) for more information).
34 //! - `UpfrontShutdownScript` - commits to a shutdown scriptpubkey when opening a channel
35 //!     (see [BOLT-2](https://github.com/lightning/bolts/blob/master/02-peer-protocol.md#the-open_channel-message) for more information).
36 //! - `GossipQueries` - requires/supports more sophisticated gossip control
37 //!     (see [BOLT-7](https://github.com/lightning/bolts/blob/master/07-routing-gossip.md) for more information).
38 //! - `PaymentSecret` - requires/supports that a node supports payment_secret field
39 //!     (see [BOLT-4](https://github.com/lightning/bolts/blob/master/04-onion-routing.md) for more information).
40 //! - `BasicMPP` - requires/supports that a node can receive basic multi-part payments
41 //!     (see [BOLT-4](https://github.com/lightning/bolts/blob/master/04-onion-routing.md#basic-multi-part-payments) for more information).
42 //! - `ShutdownAnySegwit` - requires/supports that future segwit versions are allowed in `shutdown`
43 //!     (see [BOLT-2](https://github.com/lightning/bolts/blob/master/02-peer-protocol.md) for more information).
44 //! - `ChannelType` - node supports the channel_type field in open/accept
45 //!     (see [BOLT-2](https://github.com/lightning/bolts/blob/master/02-peer-protocol.md) for more information).
46 //! - `SCIDPrivacy` - supply channel aliases for routing
47 //!     (see [BOLT-2](https://github.com/lightning/bolts/blob/master/02-peer-protocol.md) for more information).
48 //! - `Keysend` - send funds to a node without an invoice
49 //!     (see the [`Keysend` feature assignment proposal](https://github.com/lightning/bolts/issues/605#issuecomment-606679798) for more information).
50 //!
51 //! [BOLT #9]: https://github.com/lightning/bolts/blob/master/09-features.md
52 //! [messages]: crate::ln::msgs
53
54 use {io, io_extras};
55 use prelude::*;
56 use core::{cmp, fmt};
57 use core::hash::{Hash, Hasher};
58 use core::marker::PhantomData;
59
60 use bitcoin::bech32;
61 use bitcoin::bech32::{Base32Len, FromBase32, ToBase32, u5, WriteBase32};
62 use ln::msgs::DecodeError;
63 use util::ser::{Readable, Writeable, Writer};
64
65 mod sealed {
66         use prelude::*;
67         use ln::features::Features;
68
69         /// The context in which [`Features`] are applicable. Defines which features are required and
70         /// which are optional for the context.
71         pub trait Context {
72                 /// Features that are known to the implementation, where a required feature is indicated by
73                 /// its even bit and an optional feature is indicated by its odd bit.
74                 const KNOWN_FEATURE_FLAGS: &'static [u8];
75
76                 /// Bitmask for selecting features that are known to the implementation, regardless of
77                 /// whether each feature is required or optional.
78                 const KNOWN_FEATURE_MASK: &'static [u8];
79         }
80
81         /// Defines a [`Context`] by stating which features it requires and which are optional. Features
82         /// are specified as a comma-separated list of bytes where each byte is a pipe-delimited list of
83         /// feature identifiers.
84         macro_rules! define_context {
85                 ($context: ident {
86                         required_features: [$( $( $required_feature: ident )|*, )*],
87                         optional_features: [$( $( $optional_feature: ident )|*, )*],
88                 }) => {
89                         #[derive(Eq, PartialEq)]
90                         pub struct $context {}
91
92                         impl Context for $context {
93                                 const KNOWN_FEATURE_FLAGS: &'static [u8] = &[
94                                         // For each byte, use bitwise-OR to compute the applicable flags for known
95                                         // required features `r_i` and optional features `o_j` for all `i` and `j` such
96                                         // that the following slice is formed:
97                                         //
98                                         // [
99                                         //  `r_0` | `r_1` | ... | `o_0` | `o_1` | ...,
100                                         //  ...,
101                                         // ]
102                                         $(
103                                                 0b00_00_00_00 $(|
104                                                         <Self as $required_feature>::REQUIRED_MASK)*
105                                                 $(|
106                                                         <Self as $optional_feature>::OPTIONAL_MASK)*,
107                                         )*
108                                 ];
109
110                                 const KNOWN_FEATURE_MASK: &'static [u8] = &[
111                                         // Similar as above, but set both flags for each feature regardless of whether
112                                         // the feature is required or optional.
113                                         $(
114                                                 0b00_00_00_00 $(|
115                                                         <Self as $required_feature>::REQUIRED_MASK |
116                                                         <Self as $required_feature>::OPTIONAL_MASK)*
117                                                 $(|
118                                                         <Self as $optional_feature>::REQUIRED_MASK |
119                                                         <Self as $optional_feature>::OPTIONAL_MASK)*,
120                                         )*
121                                 ];
122                         }
123
124                         impl alloc::fmt::Display for Features<$context> {
125                                 fn fmt(&self, fmt: &mut alloc::fmt::Formatter) -> Result<(), alloc::fmt::Error> {
126                                         $(
127                                                 $(
128                                                         fmt.write_fmt(format_args!("{}: {}, ", stringify!($required_feature),
129                                                                 if <$context as $required_feature>::requires_feature(&self.flags) { "required" }
130                                                                 else if <$context as $required_feature>::supports_feature(&self.flags) { "supported" }
131                                                                 else { "not supported" }))?;
132                                                 )*
133                                                 $(
134                                                         fmt.write_fmt(format_args!("{}: {}, ", stringify!($optional_feature),
135                                                                 if <$context as $optional_feature>::requires_feature(&self.flags) { "required" }
136                                                                 else if <$context as $optional_feature>::supports_feature(&self.flags) { "supported" }
137                                                                 else { "not supported" }))?;
138                                                 )*
139                                         )*
140                                         fmt.write_fmt(format_args!("unknown flags: {}",
141                                                 if self.requires_unknown_bits() { "required" }
142                                                 else if self.supports_unknown_bits() { "supported" } else { "none" }))
143                                 }
144                         }
145                 };
146         }
147
148         define_context!(InitContext {
149                 required_features: [
150                         // Byte 0
151                         ,
152                         // Byte 1
153                         VariableLengthOnion | StaticRemoteKey | PaymentSecret,
154                         // Byte 2
155                         ,
156                         // Byte 3
157                         ,
158                         // Byte 4
159                         ,
160                         // Byte 5
161                         ,
162                         // Byte 6
163                         ,
164                 ],
165                 optional_features: [
166                         // Note that if new "non-channel-related" flags are added here they should be
167                         // explicitly cleared in InitFeatures::known_channel_features.
168                         // Byte 0
169                         DataLossProtect | InitialRoutingSync | UpfrontShutdownScript | GossipQueries,
170                         // Byte 1
171                         ,
172                         // Byte 2
173                         BasicMPP | Wumbo,
174                         // Byte 3
175                         ShutdownAnySegwit,
176                         // Byte 4
177                         ,
178                         // Byte 5
179                         ChannelType | SCIDPrivacy,
180                         // Byte 6
181                         ZeroConf,
182                 ],
183         });
184         define_context!(NodeContext {
185                 required_features: [
186                         // Byte 0
187                         ,
188                         // Byte 1
189                         VariableLengthOnion | StaticRemoteKey | PaymentSecret,
190                         // Byte 2
191                         ,
192                         // Byte 3
193                         ,
194                         // Byte 4
195                         ,
196                         // Byte 5
197                         ,
198                         // Byte 6
199                         ,
200                 ],
201                 optional_features: [
202                         // Byte 0
203                         DataLossProtect | UpfrontShutdownScript | GossipQueries,
204                         // Byte 1
205                         ,
206                         // Byte 2
207                         BasicMPP | Wumbo,
208                         // Byte 3
209                         ShutdownAnySegwit,
210                         // Byte 4
211                         ,
212                         // Byte 5
213                         ChannelType | SCIDPrivacy,
214                         // Byte 6
215                         ZeroConf | Keysend,
216                 ],
217         });
218         define_context!(ChannelContext {
219                 required_features: [],
220                 optional_features: [],
221         });
222         define_context!(InvoiceContext {
223                 required_features: [
224                         // Byte 0
225                         ,
226                         // Byte 1
227                         VariableLengthOnion | PaymentSecret,
228                         // Byte 2
229                         ,
230                 ],
231                 optional_features: [
232                         // Byte 0
233                         ,
234                         // Byte 1
235                         ,
236                         // Byte 2
237                         BasicMPP,
238                 ],
239         });
240         // This isn't a "real" feature context, and is only used in the channel_type field in an
241         // `OpenChannel` message.
242         define_context!(ChannelTypeContext {
243                 required_features: [
244                         // Byte 0
245                         ,
246                         // Byte 1
247                         StaticRemoteKey,
248                         // Byte 2
249                         ,
250                         // Byte 3
251                         ,
252                         // Byte 4
253                         ,
254                         // Byte 5
255                         SCIDPrivacy,
256                         // Byte 6
257                         ZeroConf,
258                 ],
259                 optional_features: [
260                         // Byte 0
261                         ,
262                         // Byte 1
263                         ,
264                         // Byte 2
265                         ,
266                         // Byte 3
267                         ,
268                         // Byte 4
269                         ,
270                         // Byte 5
271                         ,
272                         // Byte 6
273                         ,
274                 ],
275         });
276
277         /// Defines a feature with the given bits for the specified [`Context`]s. The generated trait is
278         /// useful for manipulating feature flags.
279         macro_rules! define_feature {
280                 ($odd_bit: expr, $feature: ident, [$($context: ty),+], $doc: expr, $optional_setter: ident,
281                  $required_setter: ident, $supported_getter: ident) => {
282                         #[doc = $doc]
283                         ///
284                         /// See [BOLT #9] for details.
285                         ///
286                         /// [BOLT #9]: https://github.com/lightning/bolts/blob/master/09-features.md
287                         pub trait $feature: Context {
288                                 /// The bit used to signify that the feature is required.
289                                 const EVEN_BIT: usize = $odd_bit - 1;
290
291                                 /// The bit used to signify that the feature is optional.
292                                 const ODD_BIT: usize = $odd_bit;
293
294                                 /// Assertion that [`EVEN_BIT`] is actually even.
295                                 ///
296                                 /// [`EVEN_BIT`]: #associatedconstant.EVEN_BIT
297                                 const ASSERT_EVEN_BIT_PARITY: usize;
298
299                                 /// Assertion that [`ODD_BIT`] is actually odd.
300                                 ///
301                                 /// [`ODD_BIT`]: #associatedconstant.ODD_BIT
302                                 const ASSERT_ODD_BIT_PARITY: usize;
303
304                                 /// The byte where the feature is set.
305                                 const BYTE_OFFSET: usize = Self::EVEN_BIT / 8;
306
307                                 /// The bitmask for the feature's required flag relative to the [`BYTE_OFFSET`].
308                                 ///
309                                 /// [`BYTE_OFFSET`]: #associatedconstant.BYTE_OFFSET
310                                 const REQUIRED_MASK: u8 = 1 << (Self::EVEN_BIT - 8 * Self::BYTE_OFFSET);
311
312                                 /// The bitmask for the feature's optional flag relative to the [`BYTE_OFFSET`].
313                                 ///
314                                 /// [`BYTE_OFFSET`]: #associatedconstant.BYTE_OFFSET
315                                 const OPTIONAL_MASK: u8 = 1 << (Self::ODD_BIT - 8 * Self::BYTE_OFFSET);
316
317                                 /// Returns whether the feature is required by the given flags.
318                                 #[inline]
319                                 fn requires_feature(flags: &Vec<u8>) -> bool {
320                                         flags.len() > Self::BYTE_OFFSET &&
321                                                 (flags[Self::BYTE_OFFSET] & Self::REQUIRED_MASK) != 0
322                                 }
323
324                                 /// Returns whether the feature is supported by the given flags.
325                                 #[inline]
326                                 fn supports_feature(flags: &Vec<u8>) -> bool {
327                                         flags.len() > Self::BYTE_OFFSET &&
328                                                 (flags[Self::BYTE_OFFSET] & (Self::REQUIRED_MASK | Self::OPTIONAL_MASK)) != 0
329                                 }
330
331                                 /// Sets the feature's required (even) bit in the given flags.
332                                 #[inline]
333                                 fn set_required_bit(flags: &mut Vec<u8>) {
334                                         if flags.len() <= Self::BYTE_OFFSET {
335                                                 flags.resize(Self::BYTE_OFFSET + 1, 0u8);
336                                         }
337
338                                         flags[Self::BYTE_OFFSET] |= Self::REQUIRED_MASK;
339                                 }
340
341                                 /// Sets the feature's optional (odd) bit in the given flags.
342                                 #[inline]
343                                 fn set_optional_bit(flags: &mut Vec<u8>) {
344                                         if flags.len() <= Self::BYTE_OFFSET {
345                                                 flags.resize(Self::BYTE_OFFSET + 1, 0u8);
346                                         }
347
348                                         flags[Self::BYTE_OFFSET] |= Self::OPTIONAL_MASK;
349                                 }
350
351                                 /// Clears the feature's required (even) and optional (odd) bits from the given
352                                 /// flags.
353                                 #[inline]
354                                 fn clear_bits(flags: &mut Vec<u8>) {
355                                         if flags.len() > Self::BYTE_OFFSET {
356                                                 flags[Self::BYTE_OFFSET] &= !Self::REQUIRED_MASK;
357                                                 flags[Self::BYTE_OFFSET] &= !Self::OPTIONAL_MASK;
358                                         }
359
360                                         let last_non_zero_byte = flags.iter().rposition(|&byte| byte != 0);
361                                         let size = if let Some(offset) = last_non_zero_byte { offset + 1 } else { 0 };
362                                         flags.resize(size, 0u8);
363                                 }
364                         }
365
366                         impl <T: $feature> Features<T> {
367                                 /// Set this feature as optional.
368                                 pub fn $optional_setter(&mut self) {
369                                         <T as $feature>::set_optional_bit(&mut self.flags);
370                                 }
371
372                                 /// Set this feature as required.
373                                 pub fn $required_setter(&mut self) {
374                                         <T as $feature>::set_required_bit(&mut self.flags);
375                                 }
376
377                                 /// Checks if this feature is supported.
378                                 pub fn $supported_getter(&self) -> bool {
379                                         <T as $feature>::supports_feature(&self.flags)
380                                 }
381                         }
382
383                         $(
384                                 impl $feature for $context {
385                                         // EVEN_BIT % 2 == 0
386                                         const ASSERT_EVEN_BIT_PARITY: usize = 0 - (<Self as $feature>::EVEN_BIT % 2);
387
388                                         // ODD_BIT % 2 == 1
389                                         const ASSERT_ODD_BIT_PARITY: usize = (<Self as $feature>::ODD_BIT % 2) - 1;
390                                 }
391                         )*
392                 };
393                 ($odd_bit: expr, $feature: ident, [$($context: ty),+], $doc: expr, $optional_setter: ident,
394                  $required_setter: ident, $supported_getter: ident, $required_getter: ident) => {
395                         define_feature!($odd_bit, $feature, [$($context),+], $doc, $optional_setter, $required_setter, $supported_getter);
396                         impl <T: $feature> Features<T> {
397                                 /// Checks if this feature is required.
398                                 pub fn $required_getter(&self) -> bool {
399                                         <T as $feature>::requires_feature(&self.flags)
400                                 }
401                         }
402                 }
403         }
404
405         define_feature!(1, DataLossProtect, [InitContext, NodeContext],
406                 "Feature flags for `option_data_loss_protect`.", set_data_loss_protect_optional,
407                 set_data_loss_protect_required, supports_data_loss_protect, requires_data_loss_protect);
408         // NOTE: Per Bolt #9, initial_routing_sync has no even bit.
409         define_feature!(3, InitialRoutingSync, [InitContext], "Feature flags for `initial_routing_sync`.",
410                 set_initial_routing_sync_optional, set_initial_routing_sync_required,
411                 initial_routing_sync);
412         define_feature!(5, UpfrontShutdownScript, [InitContext, NodeContext],
413                 "Feature flags for `option_upfront_shutdown_script`.", set_upfront_shutdown_script_optional,
414                 set_upfront_shutdown_script_required, supports_upfront_shutdown_script,
415                 requires_upfront_shutdown_script);
416         define_feature!(7, GossipQueries, [InitContext, NodeContext],
417                 "Feature flags for `gossip_queries`.", set_gossip_queries_optional, set_gossip_queries_required,
418                 supports_gossip_queries, requires_gossip_queries);
419         define_feature!(9, VariableLengthOnion, [InitContext, NodeContext, InvoiceContext],
420                 "Feature flags for `var_onion_optin`.", set_variable_length_onion_optional,
421                 set_variable_length_onion_required, supports_variable_length_onion,
422                 requires_variable_length_onion);
423         define_feature!(13, StaticRemoteKey, [InitContext, NodeContext, ChannelTypeContext],
424                 "Feature flags for `option_static_remotekey`.", set_static_remote_key_optional,
425                 set_static_remote_key_required, supports_static_remote_key, requires_static_remote_key);
426         define_feature!(15, PaymentSecret, [InitContext, NodeContext, InvoiceContext],
427                 "Feature flags for `payment_secret`.", set_payment_secret_optional, set_payment_secret_required,
428                 supports_payment_secret, requires_payment_secret);
429         define_feature!(17, BasicMPP, [InitContext, NodeContext, InvoiceContext],
430                 "Feature flags for `basic_mpp`.", set_basic_mpp_optional, set_basic_mpp_required,
431                 supports_basic_mpp, requires_basic_mpp);
432         define_feature!(19, Wumbo, [InitContext, NodeContext],
433                 "Feature flags for `option_support_large_channel` (aka wumbo channels).", set_wumbo_optional, set_wumbo_required,
434                 supports_wumbo, requires_wumbo);
435         define_feature!(27, ShutdownAnySegwit, [InitContext, NodeContext],
436                 "Feature flags for `opt_shutdown_anysegwit`.", set_shutdown_any_segwit_optional,
437                 set_shutdown_any_segwit_required, supports_shutdown_anysegwit, requires_shutdown_anysegwit);
438         // We do not yet advertise the onion messages feature bit, but we need to detect when peers
439         // support it.
440         define_feature!(39, OnionMessages, [InitContext, NodeContext],
441                 "Feature flags for `option_onion_messages`.", set_onion_messages_optional,
442                 set_onion_messages_required, supports_onion_messages, requires_onion_messages);
443         define_feature!(45, ChannelType, [InitContext, NodeContext],
444                 "Feature flags for `option_channel_type`.", set_channel_type_optional,
445                 set_channel_type_required, supports_channel_type, requires_channel_type);
446         define_feature!(47, SCIDPrivacy, [InitContext, NodeContext, ChannelTypeContext],
447                 "Feature flags for only forwarding with SCID aliasing. Called `option_scid_alias` in the BOLTs",
448                 set_scid_privacy_optional, set_scid_privacy_required, supports_scid_privacy, requires_scid_privacy);
449         define_feature!(51, ZeroConf, [InitContext, NodeContext, ChannelTypeContext],
450                 "Feature flags for accepting channels with zero confirmations. Called `option_zeroconf` in the BOLTs",
451                 set_zero_conf_optional, set_zero_conf_required, supports_zero_conf, requires_zero_conf);
452         define_feature!(55, Keysend, [NodeContext],
453                 "Feature flags for keysend payments.", set_keysend_optional, set_keysend_required,
454                 supports_keysend, requires_keysend);
455
456         #[cfg(test)]
457         define_feature!(123456789, UnknownFeature, [NodeContext, ChannelContext, InvoiceContext],
458                 "Feature flags for an unknown feature used in testing.", set_unknown_feature_optional,
459                 set_unknown_feature_required, supports_unknown_test_feature, requires_unknown_test_feature);
460 }
461
462 /// Tracks the set of features which a node implements, templated by the context in which it
463 /// appears.
464 ///
465 /// (C-not exported) as we map the concrete feature types below directly instead
466 #[derive(Eq)]
467 pub struct Features<T: sealed::Context> {
468         /// Note that, for convenience, flags is LITTLE endian (despite being big-endian on the wire)
469         flags: Vec<u8>,
470         mark: PhantomData<T>,
471 }
472
473 impl<T: sealed::Context> Clone for Features<T> {
474         fn clone(&self) -> Self {
475                 Self {
476                         flags: self.flags.clone(),
477                         mark: PhantomData,
478                 }
479         }
480 }
481 impl<T: sealed::Context> Hash for Features<T> {
482         fn hash<H: Hasher>(&self, hasher: &mut H) {
483                 self.flags.hash(hasher);
484         }
485 }
486 impl<T: sealed::Context> PartialEq for Features<T> {
487         fn eq(&self, o: &Self) -> bool {
488                 self.flags.eq(&o.flags)
489         }
490 }
491 impl<T: sealed::Context> fmt::Debug for Features<T> {
492         fn fmt(&self, fmt: &mut fmt::Formatter) -> Result<(), fmt::Error> {
493                 self.flags.fmt(fmt)
494         }
495 }
496
497 /// Features used within an `init` message.
498 pub type InitFeatures = Features<sealed::InitContext>;
499 /// Features used within a `node_announcement` message.
500 pub type NodeFeatures = Features<sealed::NodeContext>;
501 /// Features used within a `channel_announcement` message.
502 pub type ChannelFeatures = Features<sealed::ChannelContext>;
503 /// Features used within an invoice.
504 pub type InvoiceFeatures = Features<sealed::InvoiceContext>;
505
506 /// Features used within the channel_type field in an OpenChannel message.
507 ///
508 /// A channel is always of some known "type", describing the transaction formats used and the exact
509 /// semantics of our interaction with our peer.
510 ///
511 /// Note that because a channel is a specific type which is proposed by the opener and accepted by
512 /// the counterparty, only required features are allowed here.
513 ///
514 /// This is serialized differently from other feature types - it is not prefixed by a length, and
515 /// thus must only appear inside a TLV where its length is known in advance.
516 pub type ChannelTypeFeatures = Features<sealed::ChannelTypeContext>;
517
518 impl InitFeatures {
519         /// Writes all features present up to, and including, 13.
520         pub(crate) fn write_up_to_13<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
521                 let len = cmp::min(2, self.flags.len());
522                 (len as u16).write(w)?;
523                 for i in (0..len).rev() {
524                         if i == 0 {
525                                 self.flags[i].write(w)?;
526                         } else {
527                                 // On byte 1, we want up-to-and-including-bit-13, 0-indexed, which is
528                                 // up-to-and-including-bit-5, 0-indexed, on this byte:
529                                 (self.flags[i] & 0b00_11_11_11).write(w)?;
530                         }
531                 }
532                 Ok(())
533         }
534
535         /// or's another InitFeatures into this one.
536         pub(crate) fn or(mut self, o: InitFeatures) -> InitFeatures {
537                 let total_feature_len = cmp::max(self.flags.len(), o.flags.len());
538                 self.flags.resize(total_feature_len, 0u8);
539                 for (byte, o_byte) in self.flags.iter_mut().zip(o.flags.iter()) {
540                         *byte |= *o_byte;
541                 }
542                 self
543         }
544
545         /// Converts `InitFeatures` to `Features<C>`. Only known `InitFeatures` relevant to context `C`
546         /// are included in the result.
547         pub(crate) fn to_context<C: sealed::Context>(&self) -> Features<C> {
548                 self.to_context_internal()
549         }
550
551         /// Returns the set of known init features that are related to channels. At least some of
552         /// these features are likely required for peers to talk to us.
553         pub fn known_channel_features() -> InitFeatures {
554                 let mut features = Self::known().clear_gossip_queries();
555                 features.clear_initial_routing_sync();
556                 features
557         }
558 }
559
560 impl InvoiceFeatures {
561         /// Converts `InvoiceFeatures` to `Features<C>`. Only known `InvoiceFeatures` relevant to
562         /// context `C` are included in the result.
563         pub(crate) fn to_context<C: sealed::Context>(&self) -> Features<C> {
564                 self.to_context_internal()
565         }
566
567         /// Getting a route for a keysend payment to a private node requires providing the payee's
568         /// features (since they were not announced in a node announcement). However, keysend payments
569         /// don't have an invoice to pull the payee's features from, so this method is provided for use in
570         /// [`PaymentParameters::for_keysend`], thus omitting the need for payers to manually construct an
571         /// `InvoiceFeatures` for [`find_route`].
572         ///
573         /// [`PaymentParameters::for_keysend`]: crate::routing::router::PaymentParameters::for_keysend
574         /// [`find_route`]: crate::routing::router::find_route
575         pub(crate) fn for_keysend() -> InvoiceFeatures {
576                 let mut res = InvoiceFeatures::empty();
577                 res.set_variable_length_onion_optional();
578                 res
579         }
580 }
581
582 impl ChannelTypeFeatures {
583         /// Constructs the implicit channel type based on the common supported types between us and our
584         /// counterparty
585         pub(crate) fn from_counterparty_init(counterparty_init: &InitFeatures) -> Self {
586                 let mut ret = counterparty_init.to_context_internal();
587                 // ChannelTypeFeatures must only contain required bits, so we OR the required forms of all
588                 // optional bits and then AND out the optional ones.
589                 for byte in ret.flags.iter_mut() {
590                         *byte |= (*byte & 0b10_10_10_10) >> 1;
591                         *byte &= 0b01_01_01_01;
592                 }
593                 ret
594         }
595
596         /// Constructs a ChannelTypeFeatures with only static_remotekey set
597         pub(crate) fn only_static_remote_key() -> Self {
598                 let mut ret = Self::empty();
599                 <sealed::ChannelTypeContext as sealed::StaticRemoteKey>::set_required_bit(&mut ret.flags);
600                 ret
601         }
602 }
603
604 impl ToBase32 for InvoiceFeatures {
605         fn write_base32<W: WriteBase32>(&self, writer: &mut W) -> Result<(), <W as WriteBase32>::Err> {
606                 // Explanation for the "4": the normal way to round up when dividing is to add the divisor
607                 // minus one before dividing
608                 let length_u5s = (self.flags.len() * 8 + 4) / 5 as usize;
609                 let mut res_u5s: Vec<u5> = vec![u5::try_from_u8(0).unwrap(); length_u5s];
610                 for (byte_idx, byte) in self.flags.iter().enumerate() {
611                         let bit_pos_from_left_0_indexed = byte_idx * 8;
612                         let new_u5_idx = length_u5s - (bit_pos_from_left_0_indexed / 5) as usize - 1;
613                         let new_bit_pos = bit_pos_from_left_0_indexed % 5;
614                         let shifted_chunk_u16 = (*byte as u16) << new_bit_pos;
615                         let curr_u5_as_u8 = res_u5s[new_u5_idx].to_u8();
616                         res_u5s[new_u5_idx] = u5::try_from_u8(curr_u5_as_u8 | ((shifted_chunk_u16 & 0x001f) as u8)).unwrap();
617                         if new_u5_idx > 0 {
618                                 let curr_u5_as_u8 = res_u5s[new_u5_idx - 1].to_u8();
619                                 res_u5s[new_u5_idx - 1] = u5::try_from_u8(curr_u5_as_u8 | (((shifted_chunk_u16 >> 5) & 0x001f) as u8)).unwrap();
620                         }
621                         if new_u5_idx > 1 {
622                                 let curr_u5_as_u8 = res_u5s[new_u5_idx - 2].to_u8();
623                                 res_u5s[new_u5_idx - 2] = u5::try_from_u8(curr_u5_as_u8 | (((shifted_chunk_u16 >> 10) & 0x001f) as u8)).unwrap();
624                         }
625                 }
626                 // Trim the highest feature bits.
627                 while !res_u5s.is_empty() && res_u5s[0] == u5::try_from_u8(0).unwrap() {
628                         res_u5s.remove(0);
629                 }
630                 writer.write(&res_u5s)
631         }
632 }
633
634 impl Base32Len for InvoiceFeatures {
635         fn base32_len(&self) -> usize {
636                 self.to_base32().len()
637         }
638 }
639
640 impl FromBase32 for InvoiceFeatures {
641         type Err = bech32::Error;
642
643         fn from_base32(field_data: &[u5]) -> Result<InvoiceFeatures, bech32::Error> {
644                 // Explanation for the "7": the normal way to round up when dividing is to add the divisor
645                 // minus one before dividing
646                 let length_bytes = (field_data.len() * 5 + 7) / 8 as usize;
647                 let mut res_bytes: Vec<u8> = vec![0; length_bytes];
648                 for (u5_idx, chunk) in field_data.iter().enumerate() {
649                         let bit_pos_from_right_0_indexed = (field_data.len() - u5_idx - 1) * 5;
650                         let new_byte_idx = (bit_pos_from_right_0_indexed / 8) as usize;
651                         let new_bit_pos = bit_pos_from_right_0_indexed % 8;
652                         let chunk_u16 = chunk.to_u8() as u16;
653                         res_bytes[new_byte_idx] |= ((chunk_u16 << new_bit_pos) & 0xff) as u8;
654                         if new_byte_idx != length_bytes - 1 {
655                                 res_bytes[new_byte_idx + 1] |= ((chunk_u16 >> (8-new_bit_pos)) & 0xff) as u8;
656                         }
657                 }
658                 // Trim the highest feature bits.
659                 while !res_bytes.is_empty() && res_bytes[res_bytes.len() - 1] == 0 {
660                         res_bytes.pop();
661                 }
662                 Ok(InvoiceFeatures::from_le_bytes(res_bytes))
663         }
664 }
665
666 impl<T: sealed::Context> Features<T> {
667         /// Create a blank Features with no features set
668         pub fn empty() -> Self {
669                 Features {
670                         flags: Vec::new(),
671                         mark: PhantomData,
672                 }
673         }
674
675         /// Creates a Features with the bits set which are known by the implementation
676         pub fn known() -> Self {
677                 Self {
678                         flags: T::KNOWN_FEATURE_FLAGS.to_vec(),
679                         mark: PhantomData,
680                 }
681         }
682
683         /// Converts `Features<T>` to `Features<C>`. Only known `T` features relevant to context `C` are
684         /// included in the result.
685         fn to_context_internal<C: sealed::Context>(&self) -> Features<C> {
686                 let from_byte_count = T::KNOWN_FEATURE_MASK.len();
687                 let to_byte_count = C::KNOWN_FEATURE_MASK.len();
688                 let mut flags = Vec::new();
689                 for (i, byte) in self.flags.iter().enumerate() {
690                         if i < from_byte_count && i < to_byte_count {
691                                 let from_known_features = T::KNOWN_FEATURE_MASK[i];
692                                 let to_known_features = C::KNOWN_FEATURE_MASK[i];
693                                 flags.push(byte & from_known_features & to_known_features);
694                         }
695                 }
696                 Features::<C> { flags, mark: PhantomData, }
697         }
698
699         /// Create a Features given a set of flags, in little-endian. This is in reverse byte order from
700         /// most on-the-wire encodings.
701         /// (C-not exported) as we don't support export across multiple T
702         pub fn from_le_bytes(flags: Vec<u8>) -> Features<T> {
703                 Features {
704                         flags,
705                         mark: PhantomData,
706                 }
707         }
708
709         #[cfg(test)]
710         /// Gets the underlying flags set, in LE.
711         pub fn le_flags(&self) -> &Vec<u8> {
712                 &self.flags
713         }
714
715         fn write_be<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
716                 for f in self.flags.iter().rev() { // Swap back to big-endian
717                         f.write(w)?;
718                 }
719                 Ok(())
720         }
721
722         fn from_be_bytes(mut flags: Vec<u8>) -> Features<T> {
723                 flags.reverse(); // Swap to little-endian
724                 Self {
725                         flags,
726                         mark: PhantomData,
727                 }
728         }
729
730         pub(crate) fn supports_any_optional_bits(&self) -> bool {
731                 self.flags.iter().any(|&byte| (byte & 0b10_10_10_10) != 0)
732         }
733
734         /// Returns true if this `Features` object contains unknown feature flags which are set as
735         /// "required".
736         pub fn requires_unknown_bits(&self) -> bool {
737                 // Bitwise AND-ing with all even bits set except for known features will select required
738                 // unknown features.
739                 let byte_count = T::KNOWN_FEATURE_MASK.len();
740                 self.flags.iter().enumerate().any(|(i, &byte)| {
741                         let required_features = 0b01_01_01_01;
742                         let unknown_features = if i < byte_count {
743                                 !T::KNOWN_FEATURE_MASK[i]
744                         } else {
745                                 0b11_11_11_11
746                         };
747                         (byte & (required_features & unknown_features)) != 0
748                 })
749         }
750
751         pub(crate) fn supports_unknown_bits(&self) -> bool {
752                 // Bitwise AND-ing with all even and odd bits set except for known features will select
753                 // both required and optional unknown features.
754                 let byte_count = T::KNOWN_FEATURE_MASK.len();
755                 self.flags.iter().enumerate().any(|(i, &byte)| {
756                         let unknown_features = if i < byte_count {
757                                 !T::KNOWN_FEATURE_MASK[i]
758                         } else {
759                                 0b11_11_11_11
760                         };
761                         (byte & unknown_features) != 0
762                 })
763         }
764 }
765
766 impl<T: sealed::UpfrontShutdownScript> Features<T> {
767         #[cfg(test)]
768         pub(crate) fn clear_upfront_shutdown_script(mut self) -> Self {
769                 <T as sealed::UpfrontShutdownScript>::clear_bits(&mut self.flags);
770                 self
771         }
772 }
773
774
775 impl<T: sealed::GossipQueries> Features<T> {
776         pub(crate) fn clear_gossip_queries(mut self) -> Self {
777                 <T as sealed::GossipQueries>::clear_bits(&mut self.flags);
778                 self
779         }
780 }
781
782 impl<T: sealed::InitialRoutingSync> Features<T> {
783         // Note that initial_routing_sync is ignored if gossip_queries is set.
784         pub(crate) fn clear_initial_routing_sync(&mut self) {
785                 <T as sealed::InitialRoutingSync>::clear_bits(&mut self.flags)
786         }
787 }
788
789 impl<T: sealed::ShutdownAnySegwit> Features<T> {
790         #[cfg(test)]
791         pub(crate) fn clear_shutdown_anysegwit(mut self) -> Self {
792                 <T as sealed::ShutdownAnySegwit>::clear_bits(&mut self.flags);
793                 self
794         }
795 }
796
797 impl<T: sealed::Wumbo> Features<T> {
798         #[cfg(test)]
799         pub(crate) fn clear_wumbo(mut self) -> Self {
800                 <T as sealed::Wumbo>::clear_bits(&mut self.flags);
801                 self
802         }
803 }
804
805 macro_rules! impl_feature_len_prefixed_write {
806         ($features: ident) => {
807                 impl Writeable for $features {
808                         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
809                                 (self.flags.len() as u16).write(w)?;
810                                 self.write_be(w)
811                         }
812                 }
813                 impl Readable for $features {
814                         fn read<R: io::Read>(r: &mut R) -> Result<Self, DecodeError> {
815                                 Ok(Self::from_be_bytes(Vec::<u8>::read(r)?))
816                         }
817                 }
818         }
819 }
820 impl_feature_len_prefixed_write!(InitFeatures);
821 impl_feature_len_prefixed_write!(ChannelFeatures);
822 impl_feature_len_prefixed_write!(NodeFeatures);
823 impl_feature_len_prefixed_write!(InvoiceFeatures);
824
825 // Because ChannelTypeFeatures only appears inside of TLVs, it doesn't have a length prefix when
826 // serialized. Thus, we can't use `impl_feature_len_prefixed_write`, above, and have to write our
827 // own serialization.
828 impl Writeable for ChannelTypeFeatures {
829         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
830                 self.write_be(w)
831         }
832 }
833 impl Readable for ChannelTypeFeatures {
834         fn read<R: io::Read>(r: &mut R) -> Result<Self, DecodeError> {
835                 let v = io_extras::read_to_end(r)?;
836                 Ok(Self::from_be_bytes(v))
837         }
838 }
839
840 #[cfg(test)]
841 mod tests {
842         use super::{ChannelFeatures, ChannelTypeFeatures, InitFeatures, InvoiceFeatures, NodeFeatures};
843         use bitcoin::bech32::{Base32Len, FromBase32, ToBase32, u5};
844
845         #[test]
846         fn sanity_test_known_features() {
847                 assert!(!ChannelFeatures::known().requires_unknown_bits());
848                 assert!(!ChannelFeatures::known().supports_unknown_bits());
849                 assert!(!InitFeatures::known().requires_unknown_bits());
850                 assert!(!InitFeatures::known().supports_unknown_bits());
851                 assert!(!NodeFeatures::known().requires_unknown_bits());
852                 assert!(!NodeFeatures::known().supports_unknown_bits());
853
854                 assert!(InitFeatures::known().supports_upfront_shutdown_script());
855                 assert!(NodeFeatures::known().supports_upfront_shutdown_script());
856                 assert!(!InitFeatures::known().requires_upfront_shutdown_script());
857                 assert!(!NodeFeatures::known().requires_upfront_shutdown_script());
858
859                 assert!(InitFeatures::known().supports_gossip_queries());
860                 assert!(NodeFeatures::known().supports_gossip_queries());
861                 assert!(!InitFeatures::known().requires_gossip_queries());
862                 assert!(!NodeFeatures::known().requires_gossip_queries());
863
864                 assert!(InitFeatures::known().supports_data_loss_protect());
865                 assert!(NodeFeatures::known().supports_data_loss_protect());
866                 assert!(!InitFeatures::known().requires_data_loss_protect());
867                 assert!(!NodeFeatures::known().requires_data_loss_protect());
868
869                 assert!(InitFeatures::known().supports_variable_length_onion());
870                 assert!(NodeFeatures::known().supports_variable_length_onion());
871                 assert!(InvoiceFeatures::known().supports_variable_length_onion());
872                 assert!(InitFeatures::known().requires_variable_length_onion());
873                 assert!(NodeFeatures::known().requires_variable_length_onion());
874                 assert!(InvoiceFeatures::known().requires_variable_length_onion());
875
876                 assert!(InitFeatures::known().supports_static_remote_key());
877                 assert!(NodeFeatures::known().supports_static_remote_key());
878                 assert!(InitFeatures::known().requires_static_remote_key());
879                 assert!(NodeFeatures::known().requires_static_remote_key());
880
881                 assert!(InitFeatures::known().supports_payment_secret());
882                 assert!(NodeFeatures::known().supports_payment_secret());
883                 assert!(InvoiceFeatures::known().supports_payment_secret());
884                 assert!(InitFeatures::known().requires_payment_secret());
885                 assert!(NodeFeatures::known().requires_payment_secret());
886                 assert!(InvoiceFeatures::known().requires_payment_secret());
887
888                 assert!(InitFeatures::known().supports_basic_mpp());
889                 assert!(NodeFeatures::known().supports_basic_mpp());
890                 assert!(InvoiceFeatures::known().supports_basic_mpp());
891                 assert!(!InitFeatures::known().requires_basic_mpp());
892                 assert!(!NodeFeatures::known().requires_basic_mpp());
893                 assert!(!InvoiceFeatures::known().requires_basic_mpp());
894
895                 assert!(InitFeatures::known().supports_channel_type());
896                 assert!(NodeFeatures::known().supports_channel_type());
897                 assert!(!InitFeatures::known().requires_channel_type());
898                 assert!(!NodeFeatures::known().requires_channel_type());
899
900                 assert!(InitFeatures::known().supports_shutdown_anysegwit());
901                 assert!(NodeFeatures::known().supports_shutdown_anysegwit());
902
903                 assert!(InitFeatures::known().supports_scid_privacy());
904                 assert!(NodeFeatures::known().supports_scid_privacy());
905                 assert!(ChannelTypeFeatures::known().supports_scid_privacy());
906                 assert!(!InitFeatures::known().requires_scid_privacy());
907                 assert!(!NodeFeatures::known().requires_scid_privacy());
908                 assert!(ChannelTypeFeatures::known().requires_scid_privacy());
909
910                 assert!(InitFeatures::known().supports_wumbo());
911                 assert!(NodeFeatures::known().supports_wumbo());
912                 assert!(!InitFeatures::known().requires_wumbo());
913                 assert!(!NodeFeatures::known().requires_wumbo());
914
915                 assert!(InitFeatures::known().supports_zero_conf());
916                 assert!(!InitFeatures::known().requires_zero_conf());
917                 assert!(NodeFeatures::known().supports_zero_conf());
918                 assert!(!NodeFeatures::known().requires_zero_conf());
919                 assert!(ChannelTypeFeatures::known().supports_zero_conf());
920                 assert!(ChannelTypeFeatures::known().requires_zero_conf());
921
922                 let mut init_features = InitFeatures::known();
923                 assert!(init_features.initial_routing_sync());
924                 init_features.clear_initial_routing_sync();
925                 assert!(!init_features.initial_routing_sync());
926         }
927
928         #[test]
929         fn sanity_test_unknown_bits() {
930                 let features = ChannelFeatures::empty();
931                 assert!(!features.requires_unknown_bits());
932                 assert!(!features.supports_unknown_bits());
933
934                 let mut features = ChannelFeatures::empty();
935                 features.set_unknown_feature_required();
936                 assert!(features.requires_unknown_bits());
937                 assert!(features.supports_unknown_bits());
938
939                 let mut features = ChannelFeatures::empty();
940                 features.set_unknown_feature_optional();
941                 assert!(!features.requires_unknown_bits());
942                 assert!(features.supports_unknown_bits());
943         }
944
945         #[test]
946         fn convert_to_context_with_relevant_flags() {
947                 let init_features = InitFeatures::known().clear_upfront_shutdown_script().clear_gossip_queries();
948                 assert!(init_features.initial_routing_sync());
949                 assert!(!init_features.supports_upfront_shutdown_script());
950                 assert!(!init_features.supports_gossip_queries());
951
952                 let node_features: NodeFeatures = init_features.to_context();
953                 {
954                         // Check that the flags are as expected:
955                         // - option_data_loss_protect
956                         // - var_onion_optin (req) | static_remote_key (req) | payment_secret(req)
957                         // - basic_mpp | wumbo
958                         // - opt_shutdown_anysegwit
959                         // -
960                         // - option_channel_type | option_scid_alias
961                         // - option_zeroconf
962                         assert_eq!(node_features.flags.len(), 7);
963                         assert_eq!(node_features.flags[0], 0b00000010);
964                         assert_eq!(node_features.flags[1], 0b01010001);
965                         assert_eq!(node_features.flags[2], 0b00001010);
966                         assert_eq!(node_features.flags[3], 0b00001000);
967                         assert_eq!(node_features.flags[4], 0b00000000);
968                         assert_eq!(node_features.flags[5], 0b10100000);
969                         assert_eq!(node_features.flags[6], 0b00001000);
970                 }
971
972                 // Check that cleared flags are kept blank when converting back:
973                 // - initial_routing_sync was not applicable to NodeContext
974                 // - upfront_shutdown_script was cleared before converting
975                 // - gossip_queries was cleared before converting
976                 let features: InitFeatures = node_features.to_context_internal();
977                 assert!(!features.initial_routing_sync());
978                 assert!(!features.supports_upfront_shutdown_script());
979                 assert!(!init_features.supports_gossip_queries());
980         }
981
982         #[test]
983         fn convert_to_context_with_unknown_flags() {
984                 // Ensure the `from` context has fewer known feature bytes than the `to` context.
985                 assert!(InvoiceFeatures::known().flags.len() < NodeFeatures::known().flags.len());
986                 let mut invoice_features = InvoiceFeatures::known();
987                 invoice_features.set_unknown_feature_optional();
988                 assert!(invoice_features.supports_unknown_bits());
989                 let node_features: NodeFeatures = invoice_features.to_context();
990                 assert!(!node_features.supports_unknown_bits());
991         }
992
993         #[test]
994         fn set_feature_bits() {
995                 let mut features = InvoiceFeatures::empty();
996                 features.set_basic_mpp_optional();
997                 features.set_payment_secret_required();
998                 assert!(features.supports_basic_mpp());
999                 assert!(!features.requires_basic_mpp());
1000                 assert!(features.requires_payment_secret());
1001                 assert!(features.supports_payment_secret());
1002         }
1003
1004         #[test]
1005         fn invoice_features_encoding() {
1006                 let features_as_u5s = vec![
1007                         u5::try_from_u8(6).unwrap(),
1008                         u5::try_from_u8(10).unwrap(),
1009                         u5::try_from_u8(25).unwrap(),
1010                         u5::try_from_u8(1).unwrap(),
1011                         u5::try_from_u8(10).unwrap(),
1012                         u5::try_from_u8(0).unwrap(),
1013                         u5::try_from_u8(20).unwrap(),
1014                         u5::try_from_u8(2).unwrap(),
1015                         u5::try_from_u8(0).unwrap(),
1016                         u5::try_from_u8(6).unwrap(),
1017                         u5::try_from_u8(0).unwrap(),
1018                         u5::try_from_u8(16).unwrap(),
1019                         u5::try_from_u8(1).unwrap(),
1020                 ];
1021                 let features = InvoiceFeatures::from_le_bytes(vec![1, 2, 3, 4, 5, 42, 100, 101]);
1022
1023                 // Test length calculation.
1024                 assert_eq!(features.base32_len(), 13);
1025
1026                 // Test serialization.
1027                 let features_serialized = features.to_base32();
1028                 assert_eq!(features_as_u5s, features_serialized);
1029
1030                 // Test deserialization.
1031                 let features_deserialized = InvoiceFeatures::from_base32(&features_as_u5s).unwrap();
1032                 assert_eq!(features, features_deserialized);
1033         }
1034
1035         #[test]
1036         fn test_channel_type_mapping() {
1037                 // If we map an InvoiceFeatures with StaticRemoteKey optional, it should map into a
1038                 // required-StaticRemoteKey ChannelTypeFeatures.
1039                 let mut init_features = InitFeatures::empty();
1040                 init_features.set_static_remote_key_optional();
1041                 let converted_features = ChannelTypeFeatures::from_counterparty_init(&init_features);
1042                 assert_eq!(converted_features, ChannelTypeFeatures::only_static_remote_key());
1043                 assert!(!converted_features.supports_any_optional_bits());
1044                 assert!(converted_features.requires_static_remote_key());
1045         }
1046 }