RFR: 8316113: Infinite permission checking loop in java/net/spi/InetAddressResolverProvider/RuntimePermissionTest
Aleksey Shipilev
shade at openjdk.org
Tue Sep 12 11:40:08 UTC 2023
See the bug for stack traces. This causes a very intermittent test failure: when we call for `LOGGER.info` from our custom security manager, it goes into formatter, which loads locale data, which causes class load, which goes back to this custom security manager, starting the loop again.
I think we get lucky most of the time to load the relevant classes outside this path. But sometimes, we don't get as lucky.
Additional testing:
- [x] 100x iterations of [JDK-8315640](https://bugs.openjdk.org/browse/JDK-8315640) reproducer
-------------
Commit messages:
- Fix
Changes: https://git.openjdk.org/jdk/pull/15681/files
Webrev: https://webrevs.openjdk.org/?repo=jdk&pr=15681&range=00
Issue: https://bugs.openjdk.org/browse/JDK-8316113
Stats: 6 lines in 1 file changed: 4 ins; 1 del; 1 mod
Patch: https://git.openjdk.org/jdk/pull/15681.diff
Fetch: git fetch https://git.openjdk.org/jdk.git pull/15681/head:pull/15681
PR: https://git.openjdk.org/jdk/pull/15681
More information about the net-dev
mailing list