Skip to content

lnwire: pull gossip v2 messages in line with BOLT taproot-gossip review updates - #11164

Open
ViktorT-11 wants to merge 12 commits into
lightningnetwork:masterfrom
ViktorT-11:2026-08-sync-gossip-with-spec
Open

ViktorT-11 wants to merge 12 commits into
lightningnetwork:masterfrom
ViktorT-11:2026-08-sync-gossip-with-spec

Conversation

@ViktorT-11

@ViktorT-11 ViktorT-11 commented Sep 3, 2026

Copy link
Copy Markdown
Collaborator

Replaces #10837

This PR builds on #10837 and makes the PR up to date.

Summary

This branch pulls the gossip v2 wire messages in lnwire in line with the
review-driven updates on the BOLT taproot-gossip extension (lightning/bolts#1059).

The spec branch backing these changes is currently at
lightning/bolts#1059 (extension BOLT 7-style document
for gossip v2). The accompanying spec PR linked from each commit groups the
changes by reviewer rationale.

Each commit here is a single, independently-reviewable spec delta and is
written so that make unit pkg=lnwire and go build ./... both pass on its
own. make install builds clean at the tip.

Commits

  • lnwire: bump pure-TLV signed range to 0..=239; sig TLVs to type 240
    align with BOLT 12's renumbering. Signed range expands from 0..=159 to
    0..=239 and the signature TLVs in channel_announcement_2,
    channel_update_2 and node_announcement_2 move from type 160 to 240.
  • lnwire: enforce compulsory-field presence on gossip v2 reader
    add an AssertRequiredPresent helper and use it in the three gossip v2
    decoders so messages missing required TLVs are rejected up front.
  • lnwire: reject tor_v3_address with port 0 in node_announcement_2
    extend the existing port-not-zero rule to cover tor v3 addresses too.
  • lnwire: collapse gossip_timestamp_range's two block-height TLVs into
    one
    — replace the split first_block (type 2) / block_height_range
    (type 4) pair with a single BlockHeightRange TLV at type 2 holding
    {u32 first_block_height, tu32 num_blocks}.
  • lnwire: add funding_txid TLV to announcement_signatures_2
    required funding_txid (type 6, sha256-shaped [32]byte) so each
    message names its funding tx explicitly. NewAnnSigs2 and the existing
    channeldb test callers are updated.
  • lnwire: assign inbound-fee TLVs proper types on channel_update_2
    drop the experimental InboundFee at TlvType55555 in favour of two
    defaulted-on-the-wire uint32 records: type 20 inbound_fee_base_msat
    and type 22 inbound_fee_proportional_millionths. Positive-only.
    ChanEdgePolicyFromWire folds the two fields into the existing
    fn.Option[lnwire.Fee] contract (None when both are 0).
  • lnwire: carry two raw musig2 partial sigs in announcement_signatures_2
    — introduce an AnnouncementSigPair value type (node || bitcoin, 64
    bytes) and switch the PartialSignature field to it. The previously
    pre-aggregated 32-byte form is gone; receivers can now verify each half
    with the standard MuSig2 PartialSigVerify routine.
  • graph/db/models: clarify inbound-fee comment in ChanEdgePolicyFromWire
    — tiny follow-up; the inbound-fee TLVs are defaulted on the wire, not
    required.
  • lnwire: encode channel_update_2 direction in short_channel_id via
    sciddir
    — switch the short_channel_id field to BOLT 1's
    sciddir_or_pubkey type constrained to the 9-byte sciddir form
    (<dirbyte><scid>). The separate second_peer TLV at type 8 becomes
    redundant and is removed; IsNode1() now derives from the direction
    byte.

Out of scope (deliberately)

Test plan

  • make unit pkg=lnwire passes
  • make unit pkg=channeldb passes (the only other unit suite that
    builds AnnounceSignatures2 directly)
  • make unit pkg=graph/db passes (touches ChanEdgePolicyFromWire)
  • make unit pkg=discovery passes (gossip 2 consumers)
  • make install builds clean at HEAD
  • CI green

The taproot-gossip BOLT extension was updated to align with BOLT 12,
which long since moved its signature TLVs to type 240 and widened the
signed TLV range from 0..=159 to 0..=239. Mirror that here:

  * pureTLVUnsignedRangeOneStart: 160 -> 240
  * channel_announcement_2.Signature: TlvType160 -> TlvType240
  * channel_update_2.Signature: TlvType160 -> TlvType240
  * node_announcement_2.Signature: TlvType160 -> TlvType240

Update the pure-TLV test fixtures and the test message types
correspondingly.
The BOLT taproot-gossip spec now requires each gossip v2 reader to
reject messages that are missing any of their compulsory fields with
a warning/close/ignore action. lnwire's three gossip v2 Decode
implementations silently zero-valued the missing TLVs, which made
later validation harder.

Add a small AssertRequiredPresent helper to pure_tlv.go and call it
from each Decode after DecodeWithParsedTypesP2P / ExtractRecords:

  * channel_announcement_2: short_channel_id, outpoint, capacity,
    node_id_1, node_id_2, signature.
  * channel_update_2: short_channel_id, block_height, signature.
  * node_announcement_2: features, block_height, node_id, signature.
The BOLT taproot-gossip spec was tightened so that the
port-not-zero rule applies to every advertised address type,
including tor_v3_address. Mirror that in the lnwire
encoder/decoder for tor v3 addresses in node_announcement_2:
fail encoding if the sender tries to emit a tor v3 address with
port 0, and fail decoding if a received message contains one.
The taproot-gossip BOLT extension swapped the two-TLV
(first_block @ type 2, block_height_range @ type 4) layout in
gossip_timestamp_range for a single TLV at type 2 holding both
fields: u32 first_block_height and tu32 num_blocks. The two fields
are always set together, and the truncated u32 num_blocks saves a
few bytes on the wire.

Replace the FirstBlockHeight (type 2, u32) and BlockRange (type 4,
u32) optional records on GossipTimestampRange with a single
BlockHeightRange (type 2) optional record holding a new
BlockHeightRange struct. The struct's Record() method uses
MakeDynamicRecord with EUint32T+ETUint32T for the encoder and
DUint32+DTUint32 for the decoder.

The property-test factory in test_message.go is updated to draw a
single optional BlockHeightRange instead of two independent fields.
The taproot-gossip BOLT extension added a required funding_txid TLV
(type 6, sha256) to announcement_signatures_2 so each message names
its funding transaction explicitly. For an initial channel open this
is the original funding tx; for a spliced channel it is the txid of
the splice transaction that triggered the new round of announcement
signing. Using funding_txid directly (rather than inferring it via
short_channel_id) is what makes splice announcements unambiguous
when multiple candidate funding transactions may exist at different
points.

Add the field on AnnounceSignatures2 (encoded as [32]byte, to follow
the same primitive-encoding pattern channel_announcement_2 uses for
its chain hash), thread it through NewAnnSigs2, AllRecords and the
Decode presence assertion, and update the test fixtures + the rapid
property-test factory to set it.

The two channeldb waitingproof tests that build AnnounceSignatures2
via NewAnnSigs2 are updated to pass a placeholder funding_txid.
@ViktorT-11 ViktorT-11 closed this Sep 3, 2026
@ViktorT-11 ViktorT-11 changed the title version: bump to v0.2.19 lnwire: pull gossip v2 messages in line with BOLT taproot-gossip review updates Sep 3, 2026
@github-actions github-actions Bot added the severity-critical Requires expert review - security/consensus critical label Sep 3, 2026
@github-actions

github-actions Bot commented Sep 3, 2026

Copy link
Copy Markdown

🔴 PR Severity: CRITICAL

file classification | 17 files | 664 lines changed

🔴 Critical (9 files)
  • lnwire/announcement_signatures_2.go - Lightning wire protocol message (taproot channel announcement signatures)
  • lnwire/channel_announcement_2.go - Lightning wire protocol message
  • lnwire/channel_update_2.go - Lightning wire protocol message
  • lnwire/gossip_timestamp_range.go - Lightning wire protocol message
  • lnwire/node_announcement_2.go - Lightning wire protocol message
  • lnwire/partial_sig.go - Lightning wire protocol message (MuSig2 partial signature TLV record)
  • lnwire/pure_tlv.go - Wire protocol TLV encoding helpers
  • lnwire/sciddir.go - New wire protocol TLV type (short channel ID + direction)
  • lnwire/test_message.go - Wire protocol test-message support code (not a _test.go file, lives in the lnwire package)
🟠 High (1 file)
  • graph/db/models/channel_edge_policy.go - Network graph model changes
🟢 Low (7 files)
  • channeldb/waitingproof_test.go - test-only change
  • docs/release-notes/release-notes-0.22.0.md - release notes
  • lnwire/announcement_signatures_2_test.go - test-only change
  • lnwire/channel_announcement_2_test.go - test-only change
  • lnwire/channel_update_2_test.go - test-only change
  • lnwire/node_announcement_2_test.go - test-only change
  • lnwire/pure_tlv_test.go - test-only change

Analysis

The bulk of this PR modifies non-test files under lnwire/* (taproot/simple-taproot gossip messages: announcement signatures, channel announcement/update, node announcement, gossip timestamp range, partial sig, TLV helpers, and a new sciddir.go type), which is a CRITICAL package covering Lightning wire protocol messages. This alone sets the severity to CRITICAL.

Additionally, excluding test and auto-generated files, the PR changes ~605 lines across 11 files, which exceeds the 500-line bump threshold — though since CRITICAL is already the highest tier, this doesn't change the outcome.

The one graph/db/models/channel_edge_policy.go change is HIGH severity on its own but doesn't affect the overall verdict given the CRITICAL lnwire changes.


To override, add a severity-override-{critical,high,medium,low} label.

@ViktorT-11 ViktorT-11 reopened this Sep 3, 2026
@ViktorT-11
ViktorT-11 force-pushed the 2026-08-sync-gossip-with-spec branch from ac6a7e6 to fa3d115 Compare September 3, 2026 08:57
@saubyk saubyk added this to the v0.22.0 milestone Sep 3, 2026
@saubyk saubyk added this to lnd v0.22 Sep 3, 2026
@github-project-automation github-project-automation Bot moved this to Backlog in lnd v0.22 Sep 3, 2026
@saubyk saubyk moved this from Backlog to In progress in lnd v0.22 Sep 3, 2026

@bitromortac bitromortac left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice, I took a first look.

return err
}

if err := AssertRequiredPresent(

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: put into earlier commit that adds AssertRequiredPresent and then update here

Comment thread lnwire/channel_update_2_test.go Outdated
// InboundFeeBaseMsat record.
0x14, // type.
0x4, // length.
0x0, 0x0, 0x0, 0x5, // value (5).

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should we encode the fees minimally?

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I checked the spec, and yes good catch, we should. As per the spec, that should also apply to the FeeBaseMsat& FeeProportionalMillionths. So I added a separate commit which updates those fields to use that as well.

Comment thread lnwire/partial_sig.go Outdated
Comment on lines +262 to +265
// for a total of 64 bytes. The BOLT taproot-gossip extension dropped the
// previously pre-aggregated 32-byte form in favour of this layout so that
// receivers can verify each sig with the standard MuSig2 partial-sig verify
// routine.

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: migration narrative

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updated.

// Inbound fees in gossip v2 are two required uint32 TLVs that
// default to 0. Treat the both-zero case as "no inbound fee"
// so the downstream Option semantics still hold.
// Inbound fees in gossip v2 are two uint32 TLVs that are

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: could squash

Comment thread lnwire/sciddir.go Outdated

// SciddirLen is the wire length of a Sciddir: one direction byte followed by
// the 8-byte short_channel_id.
const SciddirLen = 9

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you could take a look at lnwire/intro_node.go, maybe we can reuse that or unify

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I added a fixup commit which addresses this, as I'm not sure this change is actually cleaner than the previous version. Please let me know which version you prefer.

Comment on lines +137 to +138
BaseFee: int32(baseFee),
FeeRate: int32(propFee),

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think overflow is possible here

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good catch! I added a check which rejects such values which would overflow.

However, after adding that check, LND is now in theory not fully spec compliant as in theory someone could advertise an inbound fee between 2,147,483,648 and 4,294,967,295, which will be rejected by LND.

Since such high values for inbound fees are unrealistic to be used, we should consider if that's an ok trade-off or not.

The real fix for this would be to preserve the full unsigned range through LND’s inbound fee handling. That would be a big change though, so if we'd want ot go down that route I suggest that we do so through follow-ups.

Let me know your thoughts!

@litbot-9000

Copy link
Copy Markdown
Collaborator

@yyforyongyu: review reminder
@ViktorT-11, remember to re-request review from reviewers when ready

@ViktorT-11
ViktorT-11 force-pushed the 2026-08-sync-gossip-with-spec branch from fa3d115 to 237eb33 Compare September 14, 2026 14:24
ellemouton and others added 7 commits September 14, 2026 16:43
The taproot-gossip BOLT extension assigned the experimental
inbound-fee field on channel_update_2 a real TLV layout: two
separate uint32 records, type 20 (inbound_fee_base_msat) and type 22
(inbound_fee_proportional_millionths), both positive-only with a
default of 0. Pull the implementation in line:

- Replace the experimental InboundFee OptionalRecordT[TlvType55555,
  Fee] (which had a long-standing TODO to assign a real type) with
  two required uint32 RecordTs at types 20 and 22.
- Suppress on encode when 0 and default-fill on decode, matching how
  the surrounding fee/htlc fields behave.
- Update ChanEdgePolicyFromWire for ChannelUpdate2 to fold the two
  uint32 values into the existing fn.Option[lnwire.Fee] downstream
  contract: emit None when both are 0, Some otherwise. The Fee
  struct itself still uses int32 for the legacy ChannelUpdate1 case;
  ChannelUpdate2 inbound fees can only be non-negative so the
  uint32->int32 widening is safe in practice (and a v2 sender can't
  encode a negative fee anyway).
- Update the channel_update_2 test fixture to carry valid type-20
  and type-22 records, and move the previously-unknown extra TLV out
  of slot 20 to slot 24.
- Update the rapid property factory to draw the two new uint32
  fields from a non-zero range when including an inbound fee.
The taproot-gossip BOLT extension dropped the previously pre-aggregated
32-byte partial signature on announcement_signatures_2 in favour of
emitting both raw musig2 partial sigs back-to-back -- one for the
node_id key and one for the bitcoin key -- so the receiver can verify
each half with the standard MuSig2 PartialSigVerify routine instead
of the custom verifier the old layout required.

Introduce an AnnouncementSigPair value type in partial_sig.go that
encodes as `node || bitcoin` for a fixed 64 bytes, with a static-
record builder via tlv.MakeStaticRecord. Swap announcement_signatures_2's
PartialSignature (TlvType4, PartialSig) field for a new
PartialSignatures (TlvType4, AnnouncementSigPair) field; update
NewAnnSigs2 to take the pair; update the hardcoded test fixture
(length 0x20 -> 0x40, 32 bytes -> 64 bytes of zero padding); update
the rapid property factory to draw two independent partial sigs;
and update the three channeldb waitingproof tests that build
AnnounceSignatures2 directly.

The existing 32-byte PartialSig type stays in place for the
co-operative close flow and other call-sites that don't carry both
sigs at once.
The channel_update_2 inbound-fee TLVs are not "required" -- they
follow the same defaulted-on-the-wire pattern as fee_base_msat and
friends, where the field is always present in the Go struct (a
uint32 with the default-fill applied on decode) and suppressed from
the wire when it equals the default of 0. Reword the comment to
avoid implying that a sender MUST emit them.

No code change.
…ddir

The taproot-gossip BOLT extension switched
channel_update_2.short_channel_id from a plain 8-byte SCID to BOLT 1's
sciddir_or_pubkey type constrained to the sciddir form: a 9-byte
<dirbyte><scid> encoding where the direction byte is 0 for node_id_1
and 1 for node_id_2. With the direction now part of the scid itself,
the previously-separate type-8 second_peer flag TLV is fully
redundant and is removed.

Add a Sciddir value type in lnwire/sciddir.go with a 9-byte static
record (custom encoder/decoder that rejects any direction byte other
than 0 or 1, so we can never accidentally accept the pubkey form of
sciddir_or_pubkey here).

In ChannelUpdate2:

  * ShortChannelID now wraps a Sciddir instead of a ShortChannelID.
  * The SecondPeer OptionalRecordT and all its Decode/AllRecords
    wiring is removed.
  * IsNode1() now derives from the dir byte (`Direction == 0`).
  * SCID() projects the 8-byte scid portion so the ChannelUpdate
    interface stays unchanged for callers.
  * SetSCID() updates the scid portion while leaving the existing
    dir byte in place.

ChanEdgePolicyFromWire now derives ChannelEdgePolicy.SecondPeer from
!upd.IsNode1() instead of the old upd.SecondPeer.IsSome() lookup.
The downstream SecondPeer field on ChannelEdgePolicy stays the same
shape since it is also used by ChannelUpdate1.

The channel_update_2 test fixture now carries a 9-byte sciddir at
type 2 and no longer has a type-8 SecondPeer record. The rapid
property factory draws a single bool for the direction byte instead
of separately drawing an isSecondPeer flag for the (now removed)
second_peer field.
Use minimal unsigned encoding for the existing channel_update_2
outbound fee fields, as required by the gossip v2 spec. Reuse the
shared typed-record adapter and extend the encoding tests to cover
canonical and malformed outbound values.
…proot-gossip

The branch behind this PR pulls the lnwire gossip v2 messages in line
with the review-driven updates on the BOLT taproot-gossip extension
(lightning/bolts#1059). Record the change in the 0.22.0 release notes
under "BOLT Spec Updates" so the PR check is satisfied and downstream
implementors get a heads-up about the wire-format shifts.
@ViktorT-11
ViktorT-11 force-pushed the 2026-08-sync-gossip-with-spec branch from 237eb33 to d366b60 Compare September 14, 2026 14:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

severity-critical Requires expert review - security/consensus critical

Projects

Status: In progress

Development

Successfully merging this pull request may close these issues.

5 participants