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