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

8278371: Scalability bottleneck in NativePRNG #6757

Closed
wants to merge 2 commits into from

Conversation

dwhite-intel
Copy link

@dwhite-intel dwhite-intel commented Dec 8, 2021

RandomIO.implNextBytes() in NativePRNG class can become a bottleneck at high contention. This shows up as the hotest lock in SPECjvm crypto.rsa benchmark.

This can be reduced by doing less work in the "synchronized (LOCK_GET_BYTES)" block.

Initial fix is to remove the array allocation out of the synchronized block.


Progress

  • Change must not contain extraneous whitespace
  • Commit message must refer to an issue
  • Change must be properly reviewed

Issue

Reviewing

Using git

Checkout this PR locally:
$ git fetch https://git.openjdk.java.net/jdk pull/6757/head:pull/6757
$ git checkout pull/6757

Update a local copy of the PR:
$ git checkout pull/6757
$ git pull https://git.openjdk.java.net/jdk pull/6757/head

Using Skara CLI tools

Checkout this PR locally:
$ git pr checkout 6757

View PR using the GUI difftool:
$ git pr show -t 6757

Using diff file

Download this PR as a diff file:
https://git.openjdk.java.net/jdk/pull/6757.diff

Sorry, something went wrong.

@bridgekeeper
Copy link

bridgekeeper bot commented Dec 8, 2021

👋 Welcome back drwhite! A progress list of the required criteria for merging this PR into master will be added to the body of your pull request. There are additional pull request commands available for use with this pull request.

@openjdk
Copy link

openjdk bot commented Dec 8, 2021

@dwhite-intel The following label will be automatically applied to this pull request:

  • security

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.

@openjdk openjdk bot added the security security-dev@openjdk.org label Dec 8, 2021
@openjdk openjdk bot added the rfr Pull request is ready for review label Dec 8, 2021
@mlbridge
Copy link

mlbridge bot commented Dec 8, 2021

Webrevs

@shipilev
Copy link
Member

shipilev commented Dec 8, 2021

This probably makes non-contended case a bit slower: Arrays.copyOfRange intrinsic are quite likely allocating the destination array without zeroing. The explicit allocation probably does zeroing everywhere.

It seems to me that this is a scenario for read-write-lock. The buffer replenishes should be guarded by write lock (as they modify the nextBuffer), and buffer copies-from should be guarded by read lock (as they only read from it). This leaves the question of buffered that needs to be updated, but that one might be a singular atomic variable.

@dwhite-intel
Copy link
Author

OK, Thanks Aleksey!

We just noticed some performance differences either due to different CPUs or different baseline (still detangling), so your comment about copyOfRange may be related.

The point of this patch was a (theoretically) easy fix to get into JDK 18.

We have some thoughts on a full fix by either bypassing the global buffer or bypassing /dev/random. This will involve consulting with a few parties - not for JDK 18 :-)

I'll update and leave the JBS issue open, but close this PR.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
rfr Pull request is ready for review security security-dev@openjdk.org
Development

Successfully merging this pull request may close these issues.

None yet

2 participants