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

fix(esplora): use saturating_add in update_tx_graph() #1110

Merged
merged 5 commits into from
Sep 26, 2023

Conversation

notmandatory
Copy link
Member

@notmandatory notmandatory commented Sep 4, 2023

Description

This fixes overflow error when calling update_tx_graph() from update_tx_graph_without_keychain().

Notes to the reviewers

You can reproduce the error by reverting 66a2bf5.

The tests could use some cleanup but get the job done for this PR.

Changelog notice

None

Checklists

All Submissions:

  • I've signed all my commits
  • I followed the contribution guidelines
  • I ran cargo fmt and cargo clippy before committing

Bugfixes:

  • This pull request breaks the existing API
  • I've added tests to reproduce the issue which are now passing
  • I'm linking the issue being fixed by this PR

@notmandatory notmandatory added the bug Something isn't working label Sep 4, 2023
@notmandatory notmandatory added this to the 1.0.0-alpha.2 milestone Sep 4, 2023
@notmandatory notmandatory self-assigned this Sep 4, 2023
@notmandatory notmandatory mentioned this pull request Sep 4, 2023
4 tasks
@LLFourn
Copy link
Contributor

LLFourn commented Sep 4, 2023

I'm confused. How can this possibly overflow in practice?

@notmandatory
Copy link
Member Author

I ran into this when I was testing sync with esplora but only checking unused spks, based on how the cli example works. I could be misunderstanding how that's supposed to be done, but I thought I could just give the esplora client my spks via update_tx_graph_without_keychain() and I'd get back any new tx. But since this passes a stop_gap of u32::Max it causes an overflow with any last_active_index > 0.

@notmandatory notmandatory force-pushed the test/esplora_tests branch 2 times, most recently from b156772 to c161a21 Compare September 4, 2023 06:52
@notmandatory
Copy link
Member Author

notmandatory commented Sep 4, 2023

I was also able to repro this issue (using the original code) using the example-crates/example_esplora with these steps:

  1. create a new address
     cargo run -- --network signet "wpkh(tprv8ZgxMBicQKsPdy6LMhUtFHAgpocR8GC6QmwMSFpZs7h6Eziw3SpThFfczTDh5rW2krkqffa11UpX3XkeTTB2FvzZKWXqPY54Y6Rq4AQ5R8L/84'/1'/0'/0/*)" "wpkh(tprv8ZgxMBicQKsPdy6LMhUtFHAgpocR8GC6QmwMSFpZs7h6Eziw3SpThFfczTDh5rW2krkqffa11UpX3XkeTTB2FvzZKWXqPY54Y6Rq4AQ5R8L/84'/1'/0'/1/*)" address new
  2. send from faucet to new address
  3. sync unused spks (don't think the parallel requests matter but that's how I did it)
    cargo run -- --network signet "wpkh(tprv8ZgxMBicQKsPdy6LMhUtFHAgpocR8GC6QmwMSFpZs7h6Eziw3SpThFfczTDh5rW2krkqffa11UpX3XkeTTB2FvzZKWXqPY54Y6Rq4AQ5R8L/84'/1'/0'/0/*)" "wpkh(tprv8ZgxMBicQKsPdy6LMhUtFHAgpocR8GC6QmwMSFpZs7h6Eziw3SpThFfczTDh5rW2krkqffa11UpX3XkeTTB2FvzZKWXqPY54Y6Rq4AQ5R8L/84'/1'/0'/1/*)" sync --unused-spks --parallel-requests 2

1,
)?;

assert_eq!(graph_update.full_txs().count(), 2);
Copy link
Contributor

Choose a reason for hiding this comment

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

💡 test that the txids match those returned from send_to_address.

Copy link
Member Author

Choose a reason for hiding this comment

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

Fixed.

There should be a way to consolidate blocking and async tests and TestEnv (probably with macros as Alekos originally did), I'll create an issue.

# This feature is used to run `cargo check` in our CI targeting wasm. It's not recommended
# for libraries to explicitly include the "getrandom/js" feature, so we only do it when
# necessary for running our CI. See: https://docs.rs/getrandom/0.2.8/getrandom/#webassembly-support
dev-getrandom-wasm = ["getrandom/js"]
Copy link
Contributor

Choose a reason for hiding this comment

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

why do we need this. Where do we need to use getrandom at all here?

Copy link
Member Author

Choose a reason for hiding this comment

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

It looks like getrandom is brought in via the electrsd dev-dependency I added. One improvement I can make is to only include getrandom as a dev-dependency since that's the only place it's needed.

# from esplora directory
$ cargo tree -i getrandom                                                                                                                
getrandom v0.2.10
└── rand_core v0.6.4
    ├── rand v0.8.5
    │   └── secp256k1 v0.27.0
    │       └── bitcoin v0.30.1
    │           ├── bdk_chain v0.5.0 (/Users/steve/git/notmandatory/bdk/crates/chain)
    │           │   └── bdk_esplora v0.3.0 (/Users/steve/git/notmandatory/bdk/crates/esplora)
    │           ├── bitcoincore-rpc-json v0.17.0
    │           │   └── bitcoincore-rpc v0.17.0
    │           │       └── bitcoind v0.33.1
    │           │           └── electrsd v0.25.0
    │           │               [dev-dependencies]
    │           │               └── bdk_esplora v0.3.0 (/Users/steve/git/notmandatory/bdk/crates/esplora)

Copy link
Contributor

Choose a reason for hiding this comment

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

I think you don't need it at all since electrsd doesn't run in WASM anyway.

Copy link
Member Author

Choose a reason for hiding this comment

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

For some reason cargo check with the WASM target is still including getrandom and throwing the error. I'll see if I can find some way to force it not to.

Copy link
Contributor

Choose a reason for hiding this comment

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

yeah because it's compiling dev depends in cargo check right? so it's gonna try and compile electrsd for WASM. So you need to #[cfg(not(target_arch = "wasm32"))] and not depend on the thing in the Cargo.toml if the arch is WASM.

Tbh I'm not sure why secp256k1 depends on rand maybe we can disable a feature that prevents including rand? That would be much simpler.

Copy link
Member Author

Choose a reason for hiding this comment

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

I figured out the issue. Using [target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies] in the crates/esplora/Cargo.toml didn't work until I enabled resolver = "2" in the top level workspace Cargo.toml. I would have expected it to already be using the new resolver since all our crates are set to edition = "2021", but apparently the resolver also needs to be set for the whole workspace.

https://blog.rust-lang.org/2021/03/25/Rust-1.51.0.html#cargos-new-feature-resolver

@notmandatory
Copy link
Member Author

Rebased on master.

Copy link
Contributor

@LLFourn LLFourn left a comment

Choose a reason for hiding this comment

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

Thanks @notmandatory. Just to be clear I fully understand why it fails. I missed that u32::MAX was how we were disabling it.

ACK 7be6f86

@@ -38,7 +38,9 @@ jobs:
cargo update -p flate2:1.0.27 --precise "1.0.26"
cargo update -p reqwest --precise "0.11.18"
cargo update -p h2 --precise "0.3.20"
cargo update -p rustls-webpki --precise "0.100.1"
cargo update -p rustls-webpki:0.100.3 --precise "0.100.1"
cargo update -p rustls-webpki:0.101.5 --precise "0.101.1"
Copy link
Contributor

Choose a reason for hiding this comment

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

Why do we depend on two slightly different versions of webpki?

Copy link
Member Author

Choose a reason for hiding this comment

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

Looks like rustls-webpki 0.100.x is required by the rustls version used by electrum-client.

And rustls-webpki 0.101.x is required directly by the version of minreq used by our dev-dependencies bitcoind and electrsd.

I think the ultimate solution for this will be to get all our dependencies to use the same major+minor version of rustls.

@notmandatory
Copy link
Member Author

Rebased and fixed two more ci MSRV issues. Had to pin tokio-util and update the pinned version of rustls-webpki:0.101.6.

@notmandatory notmandatory merged commit 4a1b96d into bitcoindevkit:master Sep 26, 2023
12 checks passed
@notmandatory
Copy link
Member Author

FYI, after I merged this PR the audit job failed due to the new dev dependency on the bitcoind, I'm not sure why it didn't fail when I created the PR. The issue should be fixed with a new bitcoind patch release after rust-bitcoin/bitcoind#141 is merged.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
Archived in project
Development

Successfully merging this pull request may close these issues.

None yet

2 participants