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

rpcclient: fix crash in http retry handler #1856

Merged
merged 4 commits into from May 17, 2022

Conversation

bhandras
Copy link
Contributor

@bhandras bhandras commented May 9, 2022

This PR fixes a crash that happens every time when the post errors max retries times.

Copy link
Collaborator

@guggero guggero left a comment

Choose a reason for hiding this comment

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

LGTM, nice fix 🎉

rpcclient/infrastructure.go Show resolved Hide resolved
rpcclient/infrastructure.go Show resolved Hide resolved
rpcclient/infrastructure.go Show resolved Hide resolved
select {
case <-time.After(backoff):

case <-shutdown:
Copy link
Member

Choose a reason for hiding this comment

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

👍

@Roasbeef
Copy link
Member

Tried this on my local machine running while running lightningnetwork/lnd#6345. I still get the panic error, as the response is nil, and all the retries fail since the my bitcoind could actually never stand up (some openssl dynlib thing messed up my bitcoind install).

@coveralls
Copy link

coveralls commented May 11, 2022

Pull Request Test Coverage Report for Build 2319772402

  • 0 of 39 (0.0%) changed or added relevant lines in 1 file are covered.
  • 3 unchanged lines in 2 files lost coverage.
  • Overall coverage decreased (-0.03%) to 55.032%

Changes Missing Coverage Covered Lines Changed/Added Lines %
rpcclient/infrastructure.go 0 39 0.0%
Files with Coverage Reduction New Missed Lines %
rpcclient/infrastructure.go 1 0%
txscript/taproot.go 2 95.93%
Totals Coverage Status
Change from base Build 2303916551: -0.03%
Covered Lines: 26435
Relevant Lines: 48036

💛 - Coveralls

@bhandras bhandras force-pushed the rpcclient-fix branch 2 times, most recently from 52a3fbc to fff3453 Compare May 11, 2022 08:02
@bhandras
Copy link
Contributor Author

Tried this on my local machine running while running lightningnetwork/lnd#6345. I still get the panic error, as the response is nil, and all the retries fail since the my bitcoind could actually never stand up (some openssl dynlib thing messed up my bitcoind install).

In my case the bitcoind wasn't borked but it still crashed after some recurring error that was masked in the retry loop. To be sure we never crash, added coverage for nil result too (will return an "invalid response" error).

@bhandras bhandras requested a review from Roasbeef May 11, 2022 08:04
Copy link
Collaborator

@guggero guggero left a comment

Choose a reason for hiding this comment

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

Nice!

Copy link
Member

@Roasbeef Roasbeef left a comment

Choose a reason for hiding this comment

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

Thanks for the clarifications! Latest changes are looking a lot better, one final comment re trying to pass back more descriptive error.

rpcclient/infrastructure.go Show resolved Hide resolved
@bhandras bhandras requested a review from Roasbeef May 12, 2022 20:10
This commit fixes the error that is masked inside the for loop's scope.
Previously after max retries the error didn't leave the for scope and
therefore httpResponse remained nil which in turn resulted in a crash.
This commit removes Sleep() from the rety handler so that the shutdown
request is always respected. Furthermore the maximum retry count is corrected.
@bhandras
Copy link
Contributor Author

Thanks for the clarifications! Latest changes are looking a lot better, one final comment re trying to pass back more descriptive error.

ptal

Copy link
Member

@Roasbeef Roasbeef left a comment

Choose a reason for hiding this comment

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

LGTM 🚵🏼‍♂️

@Roasbeef Roasbeef merged commit cee92e0 into btcsuite:master May 17, 2022
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.

None yet

4 participants