Skip to content

Commit 1f159d7

Browse files
committed
xds: Fix XdsSecurityClientServerTest TrustManagerStore race
When spiffe support was added it caused tlsClientServer_useSystemRootCerts_validationContext to become flaky. This is because test execution order was important for whether the race would occur. Fixes #11678
1 parent 4e8f7df commit 1f159d7

File tree

1 file changed

+19
-2
lines changed

1 file changed

+19
-2
lines changed

xds/src/test/java/io/grpc/xds/XdsSecurityClientServerTest.java

+19-2
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@
9797
import java.util.concurrent.TimeUnit;
9898
import javax.net.ssl.SSLException;
9999
import javax.net.ssl.SSLHandshakeException;
100+
import javax.net.ssl.TrustManagerFactory;
100101
import org.junit.After;
101102
import org.junit.Before;
102103
import org.junit.Rule;
@@ -687,16 +688,32 @@ public void run() {
687688
return settableFuture;
688689
}
689690

690-
private void setTrustStoreSystemProperties(String trustStoreFilePath) {
691+
private void setTrustStoreSystemProperties(String trustStoreFilePath) throws Exception {
691692
System.setProperty("javax.net.ssl.trustStore", trustStoreFilePath);
692693
System.setProperty("javax.net.ssl.trustStorePassword", "changeit");
693694
System.setProperty("javax.net.ssl.trustStoreType", "JKS");
695+
createDefaultTrustManager();
694696
}
695697

696-
private void clearTrustStoreSystemProperties() {
698+
private void clearTrustStoreSystemProperties() throws Exception {
697699
System.clearProperty("javax.net.ssl.trustStore");
698700
System.clearProperty("javax.net.ssl.trustStorePassword");
699701
System.clearProperty("javax.net.ssl.trustStoreType");
702+
createDefaultTrustManager();
703+
}
704+
705+
/**
706+
* Workaround the JDK's TrustManagerStore race. TrustManagerStore has a cache for the default
707+
* certs based on the system properties. But updating the cache is not thread-safe and can cause a
708+
* half-updated cache to appear fully-updated. When both the client and server initialize their
709+
* trust store simultaneously, one can see a half-updated value. Creating the trust manager here
710+
* fixes the cache while no other threads are running and thus the client and server threads won't
711+
* race to update it. See https://github.com/grpc/grpc-java/issues/11678.
712+
*/
713+
private void createDefaultTrustManager() throws Exception {
714+
TrustManagerFactory factory =
715+
TrustManagerFactory.getInstance(TrustManagerFactory.getDefaultAlgorithm());
716+
factory.init((KeyStore) null);
700717
}
701718

702719
private static class SimpleServiceImpl extends SimpleServiceGrpc.SimpleServiceImplBase {

0 commit comments

Comments
 (0)