Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
89428d6
feat(gax): support transparent retries during mTLS certificate rotations
macastelaz Aug 5, 2026
49772f0
fix(gax): address mTLS cert config parsing and channel refresh lifecy…
macastelaz Aug 5, 2026
a2210c6
fix(gax): address PR 13995 AI review findings and Javadoc doclint errors
macastelaz Aug 5, 2026
11bef87
fix(gax): release channel entry on early cancellation before call start
macastelaz Aug 5, 2026
9fcb21f
fix(gax): improve mTLS certificate config validation and policy case …
macastelaz Aug 5, 2026
b69d12d
test(gax): add unit tests for mTLS endpoint policy case-sensitivity a…
macastelaz Aug 5, 2026
a266da7
refactor(auth,gax): consolidate mTLS discovery into auth library per …
macastelaz Aug 10, 2026
be0a495
fix(auth,gax): address PR 13995 review feedback and CI test failures
macastelaz Aug 10, 2026
9be88f6
fix(auth,gax): align mTLS certificate discovery and error handling wi…
macastelaz Aug 18, 2026
765eb3b
test(auth): add unit test in MtlsUtilsTest to provide coverage for EC…
macastelaz Aug 18, 2026
4904aad
fix(auth,gax-grpc): address PR 13995 review feedback on cert discover…
macastelaz Aug 27, 2026
10535d6
fix(gax,gax-grpc,gax-httpjson): address PR 13995 review feedback on r…
macastelaz Aug 28, 2026
a97680b
fix(gax-grpc): use javax.annotation.concurrent.GuardedBy to satisfy d…
macastelaz Aug 28, 2026
7921396
fix(gax): address review feedback for mTLS certificate rotation retri…
macastelaz Sep 18, 2026
92135bf
fix(gax-httpjson,gax-grpc): fix Conscrypt mTLS KeyManagerFactory init…
macastelaz Sep 18, 2026
6ec0bc9
fix(gax-httpjson): add withoutAnnotations() to MtlsProvider mock for …
macastelaz Sep 18, 2026
2f549e2
refactor(gax): make RetryingContext overload primary and simplify str…
macastelaz Sep 18, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Comment thread
nbayati marked this conversation as resolved.
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,17 @@
import com.google.auth.oauth2.EnvironmentProvider;
import com.google.auth.oauth2.PropertyProvider;
import com.google.common.base.Strings;
import com.google.common.io.BaseEncoding;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.security.MessageDigest;
import java.util.Locale;
import org.jspecify.annotations.NullMarked;
import org.jspecify.annotations.Nullable;

/**
* Utility class for mTLS related operations.
Expand All @@ -57,6 +62,168 @@ private MtlsUtils() {
// Prevent instantiation for Utility class
}

/**
* Returns if mutual TLS client certificate should be used. Returns true if valid workload
* certificates are configured or if GOOGLE_API_USE_CLIENT_CERTIFICATE is explicitly set to true
* (e.g. for Enterprise Certificate Proxy or custom MtlsProviders), unless explicitly disabled via
* GOOGLE_API_USE_CLIENT_CERTIFICATE=false.
*/
public static boolean useMtlsClientCertificate(
EnvironmentProvider envProvider, PropertyProvider propProvider) {
String useClientCertificate = envProvider.getEnv("GOOGLE_API_USE_CLIENT_CERTIFICATE");
if ("false".equalsIgnoreCase(useClientCertificate)) {
return false;
}
if (getWorkloadCertPath(envProvider, propProvider) != null) {
return true;
}
return "true".equalsIgnoreCase(useClientCertificate);
}

/**
* Resolves and returns the path to the mutual TLS client certificate, or null if none should be
* used.
Comment on lines +84 to +85

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

nit: Can we enhance the javadocs a bit more explain the different possible outputs

From what I can see, there seem to be these three:

  1. String -> Valid happy path with working, readable file
  2. Exception -> Invalid State (non-readable or invalid file) and this isn't recoverable and will just fail
  3. Null -> Othercase, but does this indicate that we can proceed (sort of like a fail open)?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

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

Done - the javadoc now covers all three possible outcomes

*
* <p>Possible outcomes:
*
* <ol>
* <li><b>Non-null {@link String} (Valid happy path):</b> A valid workload certificate
* configuration was found and both the certificate and private key files exist and are
* readable.
* <li><b>{@link IllegalStateException} (Invalid state - fail closed):</b> An explicit {@code
* GOOGLE_API_CERTIFICATE_CONFIG} path or an existing default well-known certificate
* configuration file is missing, unreadable, malformed, or references missing/unreadable
* certificate or private key files. This is treated as an unrecoverable misconfiguration.
* <li><b>{@code null} (Safe fallback / fail open):</b> Client certificates are explicitly
* disabled via {@code GOOGLE_API_USE_CLIENT_CERTIFICATE=false}, no explicit configuration
* is set and the default well-known configuration file does not exist on disk, or the
* configuration specifies an non-workload source (e.g., ECP/PKCS11 without a {@code
* workload} section). Callers can proceed without workload certificate file polling.
* </ol>
*/
public static @Nullable String getWorkloadCertPath(
EnvironmentProvider envProvider, PropertyProvider propProvider) {
String useClientCertificate = envProvider.getEnv("GOOGLE_API_USE_CLIENT_CERTIFICATE");
if ("false".equalsIgnoreCase(useClientCertificate)) {
return null;
}

String explicitConfigPath = envProvider.getEnv(CERTIFICATE_CONFIGURATION_ENV_VARIABLE);

// 1. Explicit Configuration Path (Fail Closed)
if (!Strings.isNullOrEmpty(explicitConfigPath)) {
File configFile = new File(explicitConfigPath);
if (!configFile.exists()) {
throw new IllegalStateException(
"Certificate configuration file specified via GOOGLE_API_CERTIFICATE_CONFIG at '"
+ explicitConfigPath
+ "' does not exist.");
}
if (!configFile.isFile() || !configFile.canRead()) {
throw new IllegalStateException(
"Failed to read certificate configuration file specified via"
+ " GOOGLE_API_CERTIFICATE_CONFIG at '"
+ explicitConfigPath
+ "'.");
}
WorkloadCertificateConfiguration config;
try {
config = getWorkloadCertificateConfiguration(envProvider, propProvider, explicitConfigPath);
} catch (CertificateSourceUnavailableException e) {
// ECP / PKCS11 configuration without workload section; safe fallback
return null;
} catch (Exception e) {
throw new IllegalStateException(
"Certificate configuration file specified via GOOGLE_API_CERTIFICATE_CONFIG at '"
+ explicitConfigPath
+ "' is malformed: "
+ e.getMessage(),
e);
}
checkCertAndKeyFilesReadable(config, explicitConfigPath, false);
return config.getCertPath();
}

// 2. Implicit / Default gcloud Configuration Path
File defaultConfigFile = null;
try {
defaultConfigFile = getWellKnownCertificateConfigFile(envProvider, propProvider);
} catch (IOException e) {
// APPDATA missing on Windows, etc. Safe fallback.
}
if (defaultConfigFile != null && defaultConfigFile.exists()) {
if (!defaultConfigFile.isFile() || !defaultConfigFile.canRead()) {
throw new IllegalStateException(
"Default certificate configuration file at '"
+ defaultConfigFile.getAbsolutePath()
+ "' exists but could not be read.");
}
WorkloadCertificateConfiguration config = null;
try {
config = getWorkloadCertificateConfiguration(envProvider, propProvider, null);
} catch (CertificateSourceUnavailableException e) {
// ECP-only configuration without workload section; safe fallback
} catch (Exception e) {
throw new IllegalStateException(
"Default certificate configuration file at '"
+ defaultConfigFile.getAbsolutePath()
+ "' is malformed: "
+ e.getMessage(),
e);
}
if (config != null) {
checkCertAndKeyFilesReadable(config, defaultConfigFile.getAbsolutePath(), true);
return config.getCertPath();
}
}

return null;
}

private static void checkCertAndKeyFilesReadable(
WorkloadCertificateConfiguration config, String configPath, boolean isDefaultConfig) {
File certFile = new File(config.getCertPath());
File keyFile = new File(config.getPrivateKeyPath());
if (!certFile.isFile() || !certFile.canRead() || !keyFile.isFile() || !keyFile.canRead()) {
String sourcePrefix =
isDefaultConfig
? "referenced by default configuration '"
: "referenced by configuration '";
throw new IllegalStateException(
"Failed to read certificate/key file at '"
+ config.getCertPath()
+ "' or '"
+ config.getPrivateKeyPath()
+ "' "
+ sourcePrefix
+ configPath
+ "'.");
}
}

/**
* Computes the lower-case SHA-256 hex fingerprint of the certificate file at {@code certPath}.
*
* <p>Unlike {@link #getWorkloadCertPath}, which validates configuration at channel initialization
* and fails closed on errors, this method is called dynamically at runtime during active RPCs to
* detect certificate rotations on disk. External certificate rotators may temporarily delete,
* truncate, or rewrite the certificate file mid-RPC. Returning {@code null} on read/digest
* exceptions (which callers normalize to {@code ""}) allows runtime refresh checks to ignore
* transient mid-write states and keep the active healthy channel without failing in-flight RPCs.
*/
public static @Nullable String getCertificateFingerprint(@Nullable String certPath) {
if (certPath == null) {
return null;
}
try {
byte[] certBytes = Files.readAllBytes(Paths.get(certPath));
byte[] digest = MessageDigest.getInstance("SHA-256").digest(certBytes);
return BaseEncoding.base16().lowerCase().encode(digest);
} catch (Exception e) {
return null;

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

What are the consequences of returning null here and how realistic would be for this file to not be able to be parsed?

The possible scenario I have in my head is this: activeFingerprint is say abc1234 and then the cert is rotated. Fingerprint is unable to be parsed and returns null and I believe will be converted to "". IIUC, that would be a fingerprint mismatch but not the intended effect (I could be wrong on this point).

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

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

That scenario is explicitly guarded against:

WhengetCertificateFingerprint(...) returns null (or when the file is temporarily 0 bytes mid-write), WorkloadCertificateUtils.getCertificateFingerprint(...) normalizes it to "". Both shouldRefresh() and refresh() explicitly check if(currentDiskFingerprint.isEmpty()) return false; (or return;) before evaluating !currentDiskFingerprint.equalsIgnoreCase(activeCertFingerprint).

As a result, an unreadable or empty mid-write file is never treated as a fingerprint mismatch—it safely short-circuits and keeps the existing active channel in use until the new certificate file finishes writing to disk. Added Javadoc to WorkloadCertificateUtils.getCertificateFingerprint(...) documenting this contract.

}
}

/**
* Returns the path to the client certificate file specified by the loaded workload certificate
* configuration.
Expand All @@ -65,14 +232,17 @@ private MtlsUtils() {
* @throws IOException if the certificate configuration cannot be found or loaded.
*/
public static String getCertificatePath(
EnvironmentProvider envProvider, PropertyProvider propProvider, String certConfigPathOverride)
EnvironmentProvider envProvider,
PropertyProvider propProvider,
@Nullable String certConfigPathOverride)
throws IOException {
String certPath =
getWorkloadCertificateConfiguration(envProvider, propProvider, certConfigPathOverride)
.getCertPath();
if (Strings.isNullOrEmpty(certPath)) {
throw new CertificateSourceUnavailableException(
"Certificate configuration loaded successfully, but does not contain a 'certificate_file' path.");
"Certificate configuration loaded successfully, but does not contain a"
+ " 'cert_configs.workload.cert_path' path.");
}
return certPath;
}
Expand All @@ -92,7 +262,9 @@ public static String getCertificatePath(
* @throws IOException if the configuration file cannot be found, read, or parsed
*/
static WorkloadCertificateConfiguration getWorkloadCertificateConfiguration(
EnvironmentProvider envProvider, PropertyProvider propProvider, String certConfigPathOverride)
EnvironmentProvider envProvider,
PropertyProvider propProvider,
@Nullable String certConfigPathOverride)
throws IOException {
File certConfig;
if (certConfigPathOverride != null) {
Expand All @@ -106,7 +278,7 @@ static WorkloadCertificateConfiguration getWorkloadCertificateConfiguration(
}
}

if (!certConfig.isFile()) {
if (!certConfig.isFile() || !certConfig.canRead()) {
throw new CertificateSourceUnavailableException(
"Certificate configuration file does not exist or is not a file: "
+ certConfig.getAbsolutePath());
Expand Down
Loading
Loading