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

Reproduce Bitcoin Core's handling of cookie files #252

Conversation

casey
Copy link
Contributor

@casey casey commented Oct 21, 2022

I was running into an confusing issue where a cookie file that worked with bitcoin-cli wasn't working with rust-bitcoincore-rpc. It turned out that the cookie file contained a newline, which Bitcoin Core ignored but rust-bitcoincore-rpc included as part of the password.

This PR reproduces the behavior of Bitcoin Core, so that all cookie files that with Bitcoin Core should work with rust-bitcoincore-rpc.

The commit message:

Bitcoin Core uses a single call to std::getline to read the contents of cookie files, making it ignore newlines in the file, as well as ignore any lines after the first. This reproduces that behavior, so that all cookie files that work with Bitcoin Core should work with this library.

@casey
Copy link
Contributor Author

casey commented Jan 19, 2023

I think this is ready to go, have a look!

Copy link

@Kixunil Kixunil left a comment

Choose a reason for hiding this comment

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

ACK ea0116f

@apoelstra
Copy link
Member

ACK ea0116f except that split_once is not available on 1.41 so we will have to find something different. This PR does not compile on 1.41 as is.

I don't know why CI is not running here..

@tcharding
Copy link
Member

Posting so others don't check, split_post is not available until Rust 1.57

@tcharding
Copy link
Member

If you want it; this should make the PR work with MSRV.

    /// Convert into the arguments that jsonrpc::Client needs.
    pub fn get_user_pass(self) -> Result<(Option<String>, Option<String>)> {
        match self {
            Auth::None => Ok((None, None)),
            Auth::UserPass(u, p) => Ok((Some(u), Some(p))),
            Auth::CookieFile(path) => {
                let line = BufReader::new(File::open(path)?)
                    .lines()
                    .next()
                    .ok_or(Error::InvalidCookieFile)??;
                let mut split = line.splitn(2, ":");
                Ok((
                    Some(split.next().ok_or(Error::InvalidCookieFile)?.into()),
                    Some(split.next().ok_or(Error::InvalidCookieFile)?.into()),
                ))
            }
        }
    }

@casey casey force-pushed the reproduce-bitcoin-core-cookie-file-handling branch 2 times, most recently from 06add13 to f5512ae Compare October 30, 2023 05:22
@casey
Copy link
Contributor Author

casey commented Oct 30, 2023

Thanks for the ping! Just rewrote it using line.find(':'), which works with 1.41.

Copy link
Member

@tcharding tcharding left a comment

Choose a reason for hiding this comment

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

ACK f5512ae

@RCasatta
Copy link
Collaborator

RCasatta commented Nov 1, 2023

Could you please rebase on master since #312 has been merged and should solve CI issues

@casey casey force-pushed the reproduce-bitcoin-core-cookie-file-handling branch from f5512ae to 315463d Compare November 1, 2023 17:16
@casey
Copy link
Contributor Author

casey commented Nov 1, 2023

Done!

@RCasatta
Copy link
Collaborator

RCasatta commented Nov 2, 2023

sorry, it seems it's not enough due to tempfile dep. In bitcoind I use cargo update -p tempfile --precise 3.3.0

@casey casey force-pushed the reproduce-bitcoin-core-cookie-file-handling branch from 315463d to f9e3ca0 Compare November 2, 2023 17:40
@casey
Copy link
Contributor Author

casey commented Nov 2, 2023

@RCasatta I just added that line to contrib/test.sh Hopefully it passes now.

@tcharding
Copy link
Member

Oh man, its quote causing the problem, I hoped I fixed this one. I can have a poke around if you don't get to it. This pinning is such a useful use of everyones time :)

@casey
Copy link
Contributor Author

casey commented Nov 2, 2023

I'm not sure I understand, quote is a dependency of serde, but this PR didn't change anything with serde.

@tcharding
Copy link
Member

tcharding commented Nov 2, 2023

Its not this PR, pinning has broken, again, for some other reason. It looks broken on rust-bitcoin right now too., wrong.

@tcharding
Copy link
Member

What a PITA, it is the order of the pinning that is broken. This works

    cargo update -p tempfile --precise 3.3.0
    cargo update -p log --precise 0.4.18
    cargo update -p serde_json --precise 1.0.99
    cargo update -p serde --precise 1.0.156
    cargo update -p quote --precise 1.0.30
    cargo update -p proc-macro2 --precise 1.0.63

@tcharding
Copy link
Member

FTR I ran: rm Cargo.lock; cargo clean; RUSTUP_TOOLCHAIN=1.48 contrib/test.sh

Bitcoin Core uses a single call to std::getline to read the contents of
cookie files, making it ignore newlines in the file, as well as ignore
any lines after the first. This reproduces that behavior, so that all
cookie files that work with Bitcoin Core should work with this library.
@casey casey force-pushed the reproduce-bitcoin-core-cookie-file-handling branch from f9e3ca0 to b16f7ef Compare November 2, 2023 22:10
@casey
Copy link
Contributor Author

casey commented Nov 2, 2023

What a PITA, it is the order of the pinning that is broken. This works

😭😭😭

Okay, should be fixed now. I updated contrib/test.sh with the order in your comment. Another option for pinning the version would be to use exact semver requirements in Cargo.toml, e.g., tempfile = "=3.3.0", although I assume that wasn't used to allow newer versions of rust to get updated dependencies.

@tcharding
Copy link
Member

although I assume that wasn't used to allow newer versions of rust to get updated dependencies.

Yep, this is all MSRV bullshit because everyone keeps changing the Rust edition and releasing it in patch versions.

@Kixunil
Copy link

Kixunil commented Nov 3, 2023

Another option for pinning the version would be to use exact semver requirements in Cargo.toml, e.g., tempfile = "=3.3.0"

That's horribly broken and an absolute no-go. Cargo.lock is the correct way to pin the dependencies. We should really commit it just as we did in rust-bitcoin.

changing the Rust edition and releasing it in patch versions.

That has nothing to do with it. It's the correct way to release a new version.

If anything, cargo missing tools to automatically downgrade dependencies based on MSRV is the real problem.

@tcharding
Copy link
Member

That has nothing to do with it. It's the correct way to release a new version.

Oh is it because those projects do not have stated MSRV that doing this is not considered a breaking change?

@Kixunil
Copy link

Kixunil commented Nov 5, 2023

Oh is it because those projects do not have stated MSRV that doing this is not considered a breaking change?

Not necessarily. Bumping MSRV doesn't break the API. It only requires you to update a dependency (which rustc is). Semver is for API changes not unrelated build issues. Perhaps more importantly, doing the opposite wreaks havoc in the entire ecosystem:

  • crate A 1.0 has MSRV
  • crate B 1.0 depends on `A = "1.0"
  • crate C depends on B = "1.0"

Now if crate A changes version to 2.0 because of MSRV bump and the maintainer of B is on holiday, C can't upgrade A without pointlessly patching B. That in itself is annoying but it gets worse. If D also depends on A but manages to update then C will get two instances of the same crate. And that leads to even more hell if B and D interact using types from A. All of this just because of an unrelated change that actually doesn't break anything technically.

What about minor version? A higher patch version means the crate has a new feature. If a crate does not block upgrading minor version by using tilde requirements then the situation is the same as patch version - the dependency is updated regardless of MSRV and bumping minor version is just confusing.

  • Crate A 1.0 has MSRV and promises to update minor version (as if it had a new feature)
  • B 1.0 depends on A = "~1.0"
  • C depends on B = "1.0"
  • D depends on A = "1.0"

If A upgrades MSRV and the version to 1.1, B can't upgrade because of the exact same reason as above and the situation is exactly as horrible with multiple dependencies and such. Again because of silly choice by B encouraged by A.

Cargo.lock has none of these problems and allow everyone to set MSRV as they wish, so it should be used instead.

Copy link
Collaborator

@RCasatta RCasatta left a comment

Choose a reason for hiding this comment

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

utACK b16f7ef

@RCasatta RCasatta merged commit 413da8c into rust-bitcoin:master Nov 8, 2023
@casey casey deleted the reproduce-bitcoin-core-cookie-file-handling branch November 8, 2023 21:41
@casey
Copy link
Contributor Author

casey commented Nov 8, 2023

Nice, thanks for merging!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants