[Bugfix] Fixing a rare bug when calling BCrypt::Engine#hash_secret - which produces nil accidentally 1 out of 500 cases#270
Merged
tenderlove merged 1 commit intoJun 22, 2023
Conversation
Collaborator
|
/cc @tenderlove |
Contributor
|
i.e., it's the frequent problem of This is quite error-prone, but it is the CRuby GC approach/semantics which relies on stack & register scanning. |
Collaborator
|
Yes, great catch. This is definitely a case where the compiler could optimize out register / stack writes. I'm happy to merge this and ship a new version. |
…duces nil accidentally 1 out of 500 cases in TruffleRuby. Co-authored-by: Benoit Daloze <benoit.daloze@oracle.com> Co-authored-by: Peter Arato <it.arato@gmail.com>
255be67 to
53ec1e1
Compare
Collaborator
|
@tenderlove cut the release for this today: bcrypt version 3.1.19. |
Contributor
Author
|
Appreciate all the help 🙏 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Issue
The following script almost always cannot complete in TruffleRuby:
At various points it either returns
nil:bcrypt-ruby/ext/mri/bcrypt_ext.c
Line 98 in e402d69
Or it segfaults:
Bisecting pointed out to this line causing the problem:
bcrypt-ruby/ext/mri/bcrypt_ext.c
Lines 89 to 90 in e402d69
bcrypt-ruby/ext/mri/bcrypt_ext.c
Line 38 in e402d69
bcrypt-ruby/ext/mri/bcrypt_ext.c
Line 40 in e402d69
@eregon pointed out that these operations are not GC safe as the underlying value can be freed before its last use. Adding GC guards fixed the problem.
From the context we've gathered it seems CRuby is a bit more lucky not failing with this right now, though syntactically it seems to be beneficial to have this change equally (hence the fix in the gem).