8273108: RunThese24H crashes with SEGV in markWord::displaced_mark_helper() after JDK-8268276 #4
Conversation
|
@asgibbons |
@asgibbons |
@asgibbons |
@asgibbons |
@asgibbons This change now passes all automated pre-integration checks. 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 5 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 As you do not have Committer status in this project an existing Committer must agree to sponsor your change. Possible candidates are the reviewers of this PR (@sviswa7, @vnkozlov) but any other Committer may sponsor as well.
|
/integrate |
@asgibbons |
@asgibbons I see that JDK-8275427 is closed as a duplicate. Normally, duplicates are not listed in the commit message of a fix. |
@kevinrushforth Thanks for the tip. I believe it was marked as duplicate after I made this PR. I'll keep this in mind for future PRs. /issue remove JDK-8275427 |
@asgibbons |
You should closed other bugs as duplicate if you think the fix applied to them. Also you don't need to list them in PR because they are listed in JBS anyway. Testing takes long time because, as test's name says, it runs for 24 hours. I want to make sure test passed with this fix. |
/sponsor |
Going to push as commit 9a1bbaf.
Your commit was automatically rebased without conflicts. |
@vnkozlov @asgibbons Pushed as commit 9a1bbaf. |
The base64 decoder overwrites memory past the end of its output buffer in certain cases. It will not overwrite if the encoded string length is < 64 bytes. It also will not overwrite if the encoded string length mod 64 is >= 16. So the case where it will overwrite is when the input string length (the encoded byte length) mod 64 is less than 16.
I also added a test case to detect this overrun.
/solves 8275427
/label hotspot
/label hotspot-compiler
/solves 8272809
Progress
Issues
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.java.net/jdk18 pull/4/head:pull/4
$ git checkout pull/4
Update a local copy of the PR:
$ git checkout pull/4
$ git pull https://git.openjdk.java.net/jdk18 pull/4/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 4
View PR using the GUI difftool:
$ git pr show -t 4
Using diff file
Download this PR as a diff file:
https://git.openjdk.java.net/jdk18/pull/4.diff