Skip to content
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

Require minimal height encodings during deserialization #2226

Closed
2 tasks
teor2345 opened this issue May 31, 2021 · 6 comments · Fixed by #3129
Closed
2 tasks

Require minimal height encodings during deserialization #2226

teor2345 opened this issue May 31, 2021 · 6 comments · Fixed by #3129
Assignees
Labels
A-consensus Area: Consensus rule updates A-rust Area: Updates to Rust code C-bug Category: This is a bug I-consensus Zebra breaks a Zcash consensus rule NU Sprout Network Upgrade: Sprout specific tasks (before Overwinter)

Comments

@teor2345
Copy link
Collaborator

teor2345 commented May 31, 2021

Motivation

Zebra accepts non-minimal height encodings when deserializing, but the spec requires minimal encodings.

The serialization should be correct. But the deserialization accepts some encodings that are longer than they need to be. So they are actually invalid.

Consensus Rules

Here's the relevant consensus rule:

A coinbase transaction for a block at block height greater than 0 MUST have a script that, as its first item, encodes the block height height as follows.

For height in the range {1 .. 16}, the encoding is a single byte of value 0x50 + height.

Otherwise, let heightBytes be the signed little-endian representation of height, using the minimum nonzero number of bytes such that the most significant byte is < 0x80. The length of heightBytes MUST be in the range {1 .. 5}. Then the encoding is the length of heightBytes encoded as one byte, followed by heightBytes itself.

This matches the encoding used by Bitcoin in the implementation of [BIP-34] (but the description here is to be considered normative).

https://zips.z.cash/protocol/protocol.pdf#txnconsensus

Related Consensus Rules

Here is a related consensus rule that limits the number of bytes used by a height:

Each block in a block chain has a block height . The block height of the genesis block is 0, and the block height of each subsequent block in the block chain increments by 1. Implementations MUST support block heights up to and including 2^31 − 1.

As of NU5, there is a consensus rule that all coinbase transactions MUST have the nExpiryHeight field set to the block height , and this limits the maximum block height to 2^32 − 1, absent future consensus changes.

https://zips.z.cash/protocol/protocol.pdf#blockchain

Existing Code

// Coinbase inputs include block heights (BIP34). These are not encoded
// directly, but as a Bitcoin script that pushes the block height to the stack
// when executed. The script data is otherwise unused. Because we want to
// *parse* transactions into an internal representation where illegal states are
// unrepresentable, we need just enough parsing of Bitcoin scripts to parse the
// coinbase height and split off the rest of the (inert) coinbase data.
fn parse_coinbase_height(
mut data: Vec<u8>,
) -> Result<(block::Height, CoinbaseData), SerializationError> {

Tests

We don't have any proptests for height bytes round-trips (bytes to Height to bytes).

There are two different encodings we need to test:

  • single byte opcodes
  • 1 length byte followed by 1-5 bytes of height data

We already have height deserialization tests for every mainnet and testnet block test vector.

Context

Comment by @daira in #2225 (comment)

Support the large block heights required by the spec #1113 - out of scope for NU5

@teor2345
Copy link
Collaborator Author

Oops, this was meant to go in zcash/zips.

@teor2345 teor2345 changed the title Here's the relevant consensus rule (from https://zips.z.cash/protocol/nu5.pdf#txnencodingandconsensus): Require minimal height encodings during deserialization May 31, 2021
@teor2345 teor2345 reopened this May 31, 2021
@teor2345 teor2345 added A-consensus Area: Consensus rule updates A-rust Area: Updates to Rust code C-bug Category: This is a bug I-consensus Zebra breaks a Zcash consensus rule NU Sprout Network Upgrade: Sprout specific tasks (before Overwinter) P-Medium labels May 31, 2021
@teor2345 teor2345 added this to the 2021 Sprint 12 milestone May 31, 2021
@mpguerra mpguerra added the S-needs-triage Status: A bug report needs triage label Jun 23, 2021
@mpguerra mpguerra removed the S-needs-triage Status: A bug report needs triage label Jun 25, 2021
@teor2345
Copy link
Collaborator Author

This is a consensus rule, so I've marked it as a medium priority

@daira
Copy link
Contributor

daira commented Nov 25, 2021

The length of heightBytes MUST be in the range {1 .. 4}.

It's { 1 .. 5 } in the current spec (which allows block heights ≥ 231).

@teor2345
Copy link
Collaborator Author

The length of heightBytes MUST be in the range {1 .. 4}.

It's { 1 .. 5 } in the current spec (which allows block heights ≥ 231).

Thanks, I've updated the ticket.

@teor2345
Copy link
Collaborator Author

teor2345 commented Nov 29, 2021

parse_coinbase_height allows multiple encodings of the same block height. But only the shortest encoding is allowed by the spec.

So it currently allows:

  • 0x51 - the only valid height 1 encoding in the consensus rules
  • 0x0101 - parsed as height 1, should be an error
  • 0x020100 - parsed as height 1, should be an error
  • 0x03010000 - parsed as height 1, should be an error
  • 0x0401000000 - parsed as height 1, should be an error

@teor2345
Copy link
Collaborator Author

I just realised the height is little-endian, I've fixed the examples above.

Here is an example that don't use the special one-byte script opcodes:

parse_coinbase_height currently allows:

  • 0x0111 - the only valid height 17 encoding in the consensus rules
  • 0x021100 - parsed as height 17, should be an error
  • 0x03110000 - parsed as height 17, should be an error
  • 0x0411000000 - parsed as height 17, should be an error

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-consensus Area: Consensus rule updates A-rust Area: Updates to Rust code C-bug Category: This is a bug I-consensus Zebra breaks a Zcash consensus rule NU Sprout Network Upgrade: Sprout specific tasks (before Overwinter)
Projects
None yet
Development

Successfully merging a pull request may close this issue.

4 participants