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

8252204: AArch64: Implement SHA3 accelerator/intrinsic #207

Closed
wants to merge 14 commits into from

Conversation

RealFYang
Copy link
Member

@RealFYang RealFYang commented Sep 16, 2020

Contributed-by: ard.biesheuvel@linaro.org, dongbo4@huawei.com

This added an intrinsic for SHA3 using aarch64 v8.2 SHA3 Crypto Extensions.
Reference implementation for core SHA-3 transform using ARMv8.2 Crypto Extensions:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/tree/arch/arm64/crypto/sha3-ce-core.S?h=v5.4.52

Trivial adaptation in SHA3. implCompress is needed for the purpose of adding the intrinsic.
For SHA3, we need to pass one extra parameter "digestLength" to the stub for the calculation of block size.
"digestLength" is also used in for the EOR loop before keccak to differentiate different SHA3 variants.

We added jtreg tests for SHA3 and used QEMU system emulator which supports SHA3 instructions to test the functionality.
Patch passed jtreg tier1-3 tests with QEMU system emulator.
Also verified with jtreg tier1-3 tests without SHA3 instructions on aarch64-linux-gnu and x86_64-linux-gnu, to make sure that there's no regression.

We used one existing JMH test for performance test: test/micro/org/openjdk/bench/java/security/MessageDigests.java
We measured the performance benefit with an aarch64 cycle-accurate simulator.
Patch delivers 20% - 40% performance improvement depending on specific SHA3 digest length and size of the message.

For now, this feature will not be enabled automatically for aarch64. We can auto-enable this when it is fully tested on real hardware. But for the above testing purposes, this is auto-enabled when the corresponding hardware feature is detected.


Progress

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

Testing

Linux x32 Linux x64 Windows x64 macOS x64
Build ✔️ (1/1 passed) ✔️ (5/5 passed) ✔️ (2/2 passed) ✔️ (2/2 passed)
Test (tier1) ✔️ (9/9 passed) ❌ (1/9 failed) ✔️ (9/9 passed)

Failed test task

Issue

  • JDK-8252204: AArch64: Implement SHA3 accelerator/intrinsic

Reviewers

Contributors

  • Ard Biesheuvel <ard.biesheuvel@linaro.org>
  • Dong Bo <dongbo4@huawei.com>

Download

$ git fetch https://git.openjdk.java.net/jdk pull/207/head:pull/207
$ git checkout pull/207

Sorry, something went wrong.

Contributed-by: ard.biesheuvel@linaro.org, dongbo4@huawei.com
@bridgekeeper
Copy link

bridgekeeper bot commented Sep 16, 2020

👋 Welcome back fyang! 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 Sep 16, 2020

@RealFYang The following labels will be automatically applied to this pull request: hotspot security.

When this pull request is ready to be reviewed, an RFR email will be sent to the corresponding mailing lists. If you would like to change these labels, use the /label (add|remove) "label" command.

@openjdk openjdk bot added security security-dev@openjdk.org hotspot hotspot-dev@openjdk.org labels Sep 16, 2020
@openjdk openjdk bot added the rfr Pull request is ready for review label Sep 17, 2020
@mlbridge
Copy link

mlbridge bot commented Sep 17, 2020

Webrevs

@RealFYang
Copy link
Member Author

@ardbiesheuvel : Ard, could you please ack this patch? Thanks.

@ardbiesheuvel
Copy link

ardbiesheuvel commented Sep 17, 2020 via email

@RealFYang
Copy link
Member Author

/cc aarch64-port core-libs hotspot-compiler

@openjdk
Copy link

openjdk bot commented Sep 17, 2020

@RealFYang The label aarch64-port is not a valid label. These labels are valid:

  • serviceability
  • hotspot
  • sound
  • hotspot-compiler
  • kulla
  • i18n
  • shenandoah
  • jdk
  • javadoc
  • 2d
  • security
  • swing
  • hotspot-runtime
  • jmx
  • build
  • nio
  • beans
  • core-libs
  • compiler
  • net
  • hotspot-gc
  • hotspot-jfr
  • awt

@RealFYang
Copy link
Member Author

/cc core-libs hotspot-compiler

@openjdk openjdk bot added the core-libs core-libs-dev@openjdk.org label Sep 17, 2020
@openjdk
Copy link

openjdk bot commented Sep 17, 2020

@RealFYang
The core-libs label was successfully added.

The hotspot-compiler label was successfully added.

@openjdk openjdk bot added the hotspot-compiler hotspot-compiler-dev@openjdk.org label Sep 17, 2020
@RealFYang
Copy link
Member Author

/contributor add Ard Biesheuvel ard.biesheuvel@linaro.org

@openjdk
Copy link

openjdk bot commented Sep 17, 2020

@RealFYang Could not parse Ard Biesheuvel ard.biesheuvel@linaro.org as a valid contributor.
Syntax: /contributor (add|remove) [@user | openjdk-user | Full Name <email@address>]. For example:

  • /contributor add @openjdk-bot
  • /contributor add duke
  • /contributor add J. Duke <duke@openjdk.org>

@RealFYang
Copy link
Member Author

/contributor add Bo Dong dongbo4@huawei.com

@openjdk
Copy link

openjdk bot commented Sep 17, 2020

@RealFYang Could not parse Bo Dong dongbo4@huawei.com as a valid contributor.
Syntax: /contributor (add|remove) [@user | openjdk-user | Full Name <email@address>]. For example:

  • /contributor add @openjdk-bot
  • /contributor add duke
  • /contributor add J. Duke <duke@openjdk.org>

@RealFYang
Copy link
Member Author

/contributor add Ard Biesheuvel ard.biesheuvel@linaro.org

@openjdk
Copy link

openjdk bot commented Sep 17, 2020

@RealFYang
Contributor Ard Biesheuvel <ard.biesheuvel@linaro.org> successfully added.

@RealFYang
Copy link
Member Author

/contributor add Bo Dong dongbo4@huawei.com

@openjdk
Copy link

openjdk bot commented Sep 17, 2020

@RealFYang
Contributor Bo Dong <dongbo4@huawei.com> successfully added.

@mlbridge
Copy link

mlbridge bot commented Sep 18, 2020

Mailing list message from Andrew Haley on security-dev:

On 17/09/2020 05:26, Fei Yang wrote:

For now, this feature will not be enabled automatically for aarch64. We can auto-enable this when it is fully tested on
real hardware. But for the above testing purposes, this is auto-enabled when the corresponding hardware feature is
detected.

Given that there's no real hardware, it's extra-important to add the
new instructions to cpu/aarch64/aarch64-asmtest.py and regenerate the
test in assembler_aarch64.cc:asm_check.

--
Andrew Haley (he/him)
Java Platform Lead Engineer
Red Hat UK Ltd. <https://www.redhat.com>
https://keybase.io/andrewhaley
EAC8 43EB D3EF DB98 CC77 2FAD A5CD 6035 332F A671

@openjdk
Copy link

openjdk bot commented Sep 18, 2020

@RealFYang this pull request can not be integrated into master due to one or more merge conflicts. To resolve these merge conflicts and update this pull request you can run the following commands in the local repository for your personal fork:

git checkout 8252204
git fetch https://git.openjdk.java.net/jdk master
git merge FETCH_HEAD
# resolve conflicts and follow the instructions given by git merge
git commit -m "Merge master"
git push

@openjdk openjdk bot added the merge-conflict Pull request has merge conflict with target branch label Sep 18, 2020
@openjdk openjdk bot removed the merge-conflict Pull request has merge conflict with target branch label Sep 18, 2020
@openjdk openjdk bot removed ready Pull request is ready to be integrated rfr Pull request is ready for review labels Oct 19, 2020
Copy link
Contributor

@vnkozlov vnkozlov left a comment

Choose a reason for hiding this comment

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

Always run graalunit testing with new intrinsics. You need to adjust Graal test:
src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/CheckGraalIntrinsics.java

@RealFYang
Copy link
Member Author

/test

@openjdk
Copy link

openjdk bot commented Oct 20, 2020

@RealFYang you need to get approval to run the tests in tier1 for commits up until 0555170

@openjdk openjdk bot added the test-request label Oct 20, 2020
@RealFYang
Copy link
Member Author

Always run graalunit testing with new intrinsics. You need to adjust Graal test:
src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/CheckGraalIntrinsics.java

Thanks for looking at this. We did run graalunit testing and added the following change in our first commit:

diff --git a/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/CheckGraalIntrinsics.java b/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/CheckGraalIntrinsics.java
index f0e17947460..8f3f4ed9323 100644
--- a/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/CheckGraalIntrinsics.java
+++ b/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/CheckGraalIntrinsics.java
@@ -601,6 +601,7 @@ public class CheckGraalIntrinsics extends GraalTest {
if (!config.useSHA512Intrinsics()) {
add(ignore, "sun/security/provider/SHA5." + shaCompressName + "([BI)V");
}

  •    add(toBeInvestigated, "sun/security/provider/SHA3." + shaCompressName + "([BI)V");
    }
    

@openjdk openjdk bot added ready Pull request is ready to be integrated rfr Pull request is ready for review labels Oct 20, 2020
@@ -601,6 +601,7 @@ public CheckGraalIntrinsics() {
if (!config.useSHA512Intrinsics()) {
add(ignore, "sun/security/provider/SHA5." + shaCompressName + "([BI)V");
}
add(toBeInvestigated, "sun/security/provider/SHA3." + shaCompressName + "([BI)V");
Copy link
Contributor

Choose a reason for hiding this comment

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

This should be under if (isJDK16OrHigher()) check. Something like this:
https://github.com/openjdk/jdk/pull/650/files#diff-d1f378fc1b7fe041309e854d40b3a95a91e63fdecf0ecd9826b7c95eaeba314eR527
You can wait when Aleksey push it and update your changes

Copy link
Member Author

Choose a reason for hiding this comment

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

OK. Will update with the following change after Aleksey's PR is integrated:

--- a/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/CheckGraalIntrinsics.java
+++ b/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/CheckGraalIntrinsics.java
@@ -608,6 +608,10 @@ public class CheckGraalIntrinsics extends GraalTest {
         if (!config.useSHA512Intrinsics()) {
             add(ignore, "sun/security/provider/SHA5." + shaCompressName + "([BI)V");
         }
+
+        if (isJDK16OrHigher()) {
+            add(toBeInvestigated, "sun/security/provider/SHA3." + shaCompressName + "([BI)V");
+        }
     }

Copy link
Contributor

Choose a reason for hiding this comment

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

Yes, please, do that.

Copy link
Member Author

Choose a reason for hiding this comment

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

Done.
Commit: b43f919
I think this will not conflict with Aleksey's PR as we modify in different places of CheckGraalIntrinsics.java

Copy link
Contributor

@vnkozlov vnkozlov left a comment

Choose a reason for hiding this comment

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

Someone in Oracle have to run tier1-tier3 testing with these changes to make sure nothing is broken. I don't want to repeat 8254790.

@RealFYang
Copy link
Member Author

Someone in Oracle have to run tier1-tier3 testing with these changes to make sure nothing is broken. I don't want to repeat 8254790.

That's appreciated.
On my side, I run tier1-tier3 both on aarch64 linux and x86_64 linux.
The test result on these two platforms looks good for the latest changes.

@vnkozlov
Copy link
Contributor

Someone in Oracle have to run tier1-tier3 testing with these changes to make sure nothing is broken. I don't want to repeat 8254790.

That's appreciated.
On my side, I run tier1-tier3 both on aarch64 linux and x86_64 linux.
The test result on these two platforms looks good for the latest changes.

I started testing of 09: version.

Copy link
Contributor

@vnkozlov vnkozlov left a comment

Choose a reason for hiding this comment

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

tier1,2,3 passed. I verified that new SHA3 tests were run and passed.
But because SHA3 is not enabled for now (even on aarch64), it does not test asm code.
At least testing verified that changes in shared code does not cause any issues.

@RealFYang
Copy link
Member Author

/contributor remove Bo Dong dongbo4@huawei.com

@openjdk
Copy link

openjdk bot commented Oct 22, 2020

@RealFYang
Contributor Bo Dong <dongbo4@huawei.com> successfully removed.

@RealFYang
Copy link
Member Author

/contributor add Dong Bo dongbo4@huawei.com

@openjdk
Copy link

openjdk bot commented Oct 22, 2020

@RealFYang
Contributor Dong Bo <dongbo4@huawei.com> successfully added.

@RealFYang
Copy link
Member Author

tier1,2,3 passed. I verified that new SHA3 tests were run and passed.
But because SHA3 is not enabled for now (even on aarch64), it does not test asm code.
At least testing verified that changes in shared code does not cause any issues.

Great to hear that :-)
Thanks for the effect.
With that testing result and reviewing from three reviewers, I think it's safe to integrate.

@RealFYang
Copy link
Member Author

/integrate

@openjdk openjdk bot closed this Oct 22, 2020
@openjdk openjdk bot added integrated Pull request has been integrated and removed ready Pull request is ready to be integrated rfr Pull request is ready for review labels Oct 22, 2020
@openjdk
Copy link

openjdk bot commented Oct 22, 2020

@RealFYang Since your change was applied there have been 65 commits pushed to the master branch:

  • 7d3d4da: 8240709: Enable javax/swing/UI/UnninstallUIMemoryLeaks/UnninstallUIMemoryLeaks.java on all L&F
  • 5d26229: 8255174: Vector API unit tests for missed public api code coverage
  • b9186be: 6606767: resexhausted00[34] fail assert(!thread->owns_locks(), "must release all locks when leaving VM")
  • 1191a63: 8199697: FIPS 186-4 RSA Key Generation
  • 60d3fa2: 8255022: Documentation missing for Vector API zero methods
  • 9ade94b: 8206311: Add docs-javase, docs-reference to CI build
  • 3445031: 8255200: ProblemList com/sun/jdi/EATests.java for ZGC
  • 85a8949: 8254913: Increase InlineSmallCode default from 2000 to 2500 for x64
  • 56ea490: 8233343: Deprecate -XX:+CriticalJNINatives flag which implements JavaCritical native functions
  • 615b759: 8255070: Shenandoah: Use single thread for concurrent CLD liveness test
  • ... and 55 more: https://git.openjdk.java.net/jdk/compare/cdc8c401b50abcf75a3c8bbe2eafdd360f3aa3be...master

Your commit was automatically rebased without conflicts.

Pushed as commit b25d894.

💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored.

@RealFYang RealFYang deleted the 8252204 branch October 22, 2020 04:47
__ bcax(v23, __ T16B, v23, v31, v24);
__ bcax(v24, __ T16B, v24, v8, v31);

__ ld1r(v31, __ T2D, __ post(rscratch1, 8));
Copy link
Contributor

Choose a reason for hiding this comment

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

is it intentional to load 16 bytes and post-increment by 8?

Copy link
Contributor

Choose a reason for hiding this comment

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

Actually, with the ld1r instruction the post increment should be the same as the size of the memory accessed. So T2D requires 8 as it reads 8 bytes(and duplicates it into both halves of the SIMD register).

Copy link
Contributor

Choose a reason for hiding this comment

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

Thanks for the clarification!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
core-libs core-libs-dev@openjdk.org hotspot hotspot-dev@openjdk.org hotspot-compiler hotspot-compiler-dev@openjdk.org integrated Pull request has been integrated security security-dev@openjdk.org test-request
Development

Successfully merging this pull request may close these issues.

None yet

8 participants