-
Notifications
You must be signed in to change notification settings - Fork 376
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Onion messages: flip feature bit 🎉 #1688
Merged
TheBlueMatt
merged 8 commits into
lightningdevkit:main
from
valentinewallace:2022-08-flip-om-feature-bit
Sep 9, 2022
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
fe8b4c7
Enable all feature sets to OR with another set of the same type
valentinewallace c106d4f
OR NodeFeatures from both Channel and Routing message handlers
valentinewallace 7eee797
Add a new NodeFeatures constructor to capture the types of flags
valentinewallace f5e1255
Add missing wumbo feature bit docs
valentinewallace 1ac3fcc
Support forwarding onion messages in advertised features
valentinewallace 90f5906
OR InitFeatures and NodeFeatures from onion message handler
valentinewallace 9c3b6d2
Don't advertise onion messages in known channel features
valentinewallace 5d9dddd
Update ChannelMessageHandler::provided_node_features docs
valentinewallace File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,8 +39,13 @@ | |
//! (see [BOLT-4](https://github.com/lightning/bolts/blob/master/04-onion-routing.md) for more information). | ||
//! - `BasicMPP` - requires/supports that a node can receive basic multi-part payments | ||
//! (see [BOLT-4](https://github.com/lightning/bolts/blob/master/04-onion-routing.md#basic-multi-part-payments) for more information). | ||
//! - `Wumbo` - requires/supports that a node create large channels. Called `option_support_large_channel` in the spec. | ||
//! (see [BOLT-2](https://github.com/lightning/bolts/blob/master/02-peer-protocol.md#the-open_channel-message) for more information). | ||
//! - `ShutdownAnySegwit` - requires/supports that future segwit versions are allowed in `shutdown` | ||
//! (see [BOLT-2](https://github.com/lightning/bolts/blob/master/02-peer-protocol.md) for more information). | ||
//! - `OnionMessages` - requires/supports forwarding onion messages | ||
//! (see [BOLT-7](https://github.com/lightning/bolts/pull/759/files) for more information). | ||
//! TODO: update link | ||
//! - `ChannelType` - node supports the channel_type field in open/accept | ||
//! (see [BOLT-2](https://github.com/lightning/bolts/blob/master/02-peer-protocol.md) for more information). | ||
//! - `SCIDPrivacy` - supply channel aliases for routing | ||
|
@@ -164,7 +169,8 @@ mod sealed { | |
], | ||
optional_features: [ | ||
// Note that if new "non-channel-related" flags are added here they should be | ||
// explicitly cleared in InitFeatures::known_channel_features. | ||
// explicitly cleared in InitFeatures::known_channel_features and | ||
// NodeFeatures::known_channel_features. | ||
// Byte 0 | ||
DataLossProtect | InitialRoutingSync | UpfrontShutdownScript | GossipQueries, | ||
// Byte 1 | ||
|
@@ -174,7 +180,7 @@ mod sealed { | |
// Byte 3 | ||
ShutdownAnySegwit, | ||
// Byte 4 | ||
, | ||
OnionMessages, | ||
// Byte 5 | ||
ChannelType | SCIDPrivacy, | ||
// Byte 6 | ||
|
@@ -208,7 +214,7 @@ mod sealed { | |
// Byte 3 | ||
ShutdownAnySegwit, | ||
// Byte 4 | ||
, | ||
OnionMessages, | ||
// Byte 5 | ||
ChannelType | SCIDPrivacy, | ||
// Byte 6 | ||
|
@@ -435,8 +441,6 @@ mod sealed { | |
define_feature!(27, ShutdownAnySegwit, [InitContext, NodeContext], | ||
"Feature flags for `opt_shutdown_anysegwit`.", set_shutdown_any_segwit_optional, | ||
set_shutdown_any_segwit_required, supports_shutdown_anysegwit, requires_shutdown_anysegwit); | ||
// We do not yet advertise the onion messages feature bit, but we need to detect when peers | ||
// support it. | ||
define_feature!(39, OnionMessages, [InitContext, NodeContext], | ||
"Feature flags for `option_onion_messages`.", set_onion_messages_optional, | ||
set_onion_messages_required, supports_onion_messages, requires_onion_messages); | ||
|
@@ -470,6 +474,17 @@ pub struct Features<T: sealed::Context> { | |
mark: PhantomData<T>, | ||
} | ||
|
||
impl <T: sealed::Context> Features<T> { | ||
pub(crate) fn or(mut self, o: Self) -> Self { | ||
let total_feature_len = cmp::max(self.flags.len(), o.flags.len()); | ||
self.flags.resize(total_feature_len, 0u8); | ||
for (byte, o_byte) in self.flags.iter_mut().zip(o.flags.iter()) { | ||
*byte |= *o_byte; | ||
} | ||
self | ||
} | ||
} | ||
|
||
impl<T: sealed::Context> Clone for Features<T> { | ||
fn clone(&self) -> Self { | ||
Self { | ||
|
@@ -532,16 +547,6 @@ impl InitFeatures { | |
Ok(()) | ||
} | ||
|
||
/// or's another InitFeatures into this one. | ||
pub(crate) fn or(mut self, o: InitFeatures) -> InitFeatures { | ||
let total_feature_len = cmp::max(self.flags.len(), o.flags.len()); | ||
self.flags.resize(total_feature_len, 0u8); | ||
for (byte, o_byte) in self.flags.iter_mut().zip(o.flags.iter()) { | ||
*byte |= *o_byte; | ||
} | ||
self | ||
} | ||
|
||
/// Converts `InitFeatures` to `Features<C>`. Only known `InitFeatures` relevant to context `C` | ||
/// are included in the result. | ||
pub(crate) fn to_context<C: sealed::Context>(&self) -> Features<C> { | ||
|
@@ -554,6 +559,16 @@ impl InitFeatures { | |
Self::known() | ||
.clear_initial_routing_sync() | ||
.clear_gossip_queries() | ||
.clear_onion_messages() | ||
} | ||
} | ||
|
||
impl NodeFeatures { | ||
/// Returns the set of known node features that are related to channels. | ||
pub fn known_channel_features() -> NodeFeatures { | ||
Self::known() | ||
.clear_gossip_queries() | ||
.clear_onion_messages() | ||
} | ||
} | ||
|
||
|
@@ -787,6 +802,13 @@ impl<T: sealed::InitialRoutingSync> Features<T> { | |
} | ||
} | ||
|
||
impl<T: sealed::OnionMessages> Features<T> { | ||
pub(crate) fn clear_onion_messages(mut self) -> Self { | ||
<T as sealed::OnionMessages>::clear_bits(&mut self.flags); | ||
self | ||
} | ||
} | ||
|
||
impl<T: sealed::ShutdownAnySegwit> Features<T> { | ||
#[cfg(test)] | ||
pub(crate) fn clear_shutdown_anysegwit(mut self) -> Self { | ||
|
@@ -913,6 +935,11 @@ mod tests { | |
assert!(!InitFeatures::known().requires_wumbo()); | ||
assert!(!NodeFeatures::known().requires_wumbo()); | ||
|
||
assert!(InitFeatures::known().supports_onion_messages()); | ||
assert!(NodeFeatures::known().supports_onion_messages()); | ||
assert!(!InitFeatures::known().requires_onion_messages()); | ||
assert!(!NodeFeatures::known().requires_onion_messages()); | ||
|
||
assert!(InitFeatures::known().supports_zero_conf()); | ||
assert!(!InitFeatures::known().requires_zero_conf()); | ||
assert!(NodeFeatures::known().supports_zero_conf()); | ||
|
@@ -957,15 +984,15 @@ mod tests { | |
// - var_onion_optin (req) | static_remote_key (req) | payment_secret(req) | ||
// - basic_mpp | wumbo | ||
// - opt_shutdown_anysegwit | ||
// - | ||
// - onion_messages | ||
// - option_channel_type | option_scid_alias | ||
// - option_zeroconf | ||
assert_eq!(node_features.flags.len(), 7); | ||
assert_eq!(node_features.flags[0], 0b00000010); | ||
assert_eq!(node_features.flags[1], 0b01010001); | ||
assert_eq!(node_features.flags[2], 0b00001010); | ||
assert_eq!(node_features.flags[3], 0b00001000); | ||
assert_eq!(node_features.flags[4], 0b00000000); | ||
assert_eq!(node_features.flags[4], 0b10000000); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think I gotta spend some time figuring out how we handle feature bits internally lol |
||
assert_eq!(node_features.flags[5], 0b10100000); | ||
assert_eq!(node_features.flags[6], 0b00001000); | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could say "large channels (superior to
MAX_FUNDING_SATOSHIS_NO_WUMBO
)"There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, that const isn't public