-
Notifications
You must be signed in to change notification settings - Fork 5.8k
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
8300079: SIGSEGV in LibraryCallKit::inline_string_copy due to constant NULL src argument #12112
Conversation
👋 Welcome back thartmann! A progress list of the required criteria for merging this PR into |
@TobiHartmann The following label will be automatically applied to this pull request:
When this pull request is ready to be reviewed, an "RFR" email will be sent to the corresponding mailing list. If you would like to change these labels, use the /label pull request command. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me.
@TobiHartmann This change now passes all automated pre-integration checks. ℹ️ This project also has non-automated pre-integration requirements. Please see the file CONTRIBUTING.md for details. After integration, the commit message for the final commit will be:
You can use pull request commands such as /summary, /contributor and /issue to adjust it as needed. At the time when this comment was updated there had been 8 new commits pushed to the
Please see this link for an up-to-date comparison between the source branch of this pull request and the ➡️ To integrate this PR with the above commit message to the |
Thanks for the review, Roland! |
Being paranoid, I double-checked my refactoring and noticed several |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good!
const Type* n_type = a->Value(&_gvn); | ||
const TypeAryPtr* top_n = n_type->isa_aryptr(); | ||
const Type* m_type = a->Value(&_gvn); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch!
Thanks, Christian! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good.
Thanks, Vladimir! |
/integrate |
Going to push as commit 45e4e00.
Your commit was automatically rebased without conflicts. |
@TobiHartmann Pushed as commit 45e4e00. 💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored. |
The
StringUTF16.compress
variant ofLibraryCallKit::inline_string_copy
does not properly handle a constant nullsrc
argument that can happen when thechar[] data
argument ofString::copyValueOf
is null:jdk/src/java.base/share/classes/java/lang/String.java
Lines 4284 to 4285 in 7bf0d14
jdk/src/java.base/share/classes/java/lang/String.java
Lines 301 to 302 in 7bf0d14
jdk/src/java.base/share/classes/java/lang/String.java
Lines 4504 to 4511 in 7bf0d14
Although the intrinsified code is never executed because we throw a
NullPointerException
from (non-inlined)rangeCheck
, we need to make sure a constant null is properly handled.I manually inspected similar C2 intrinsics and found another potential issue in
LibraryCallKit::inline_mulAdd
where we should callmust_be_not_null
onin
as well (even if it might not be possible with current code, let's better be safe than sorry).All the other changes are simple refactorings for better readability.
Thanks,
Tobias
Progress
Issue
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.org/jdk pull/12112/head:pull/12112
$ git checkout pull/12112
Update a local copy of the PR:
$ git checkout pull/12112
$ git pull https://git.openjdk.org/jdk pull/12112/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 12112
View PR using the GUI difftool:
$ git pr show -t 12112
Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/12112.diff