From 2f80b8a5be902eac88a6921255506b4ce5f44fde Mon Sep 17 00:00:00 2001 From: Josh Cummings Date: Thu, 30 Jul 2020 16:21:28 -0600 Subject: [PATCH] Additional Jwt Validation Debug Messages Closes gh-8589 Co-authored-by: MattyA --- .../oauth2/jwt/JwtIssuerValidator.java | 6 +++ .../oauth2/jwt/JwtTimestampValidator.java | 38 +++++++++++-------- 2 files changed, 28 insertions(+), 16 deletions(-) diff --git a/oauth2/oauth2-jose/src/main/java/org/springframework/security/oauth2/jwt/JwtIssuerValidator.java b/oauth2/oauth2-jose/src/main/java/org/springframework/security/oauth2/jwt/JwtIssuerValidator.java index 49a5845fec..b0a44c7789 100644 --- a/oauth2/oauth2-jose/src/main/java/org/springframework/security/oauth2/jwt/JwtIssuerValidator.java +++ b/oauth2/oauth2-jose/src/main/java/org/springframework/security/oauth2/jwt/JwtIssuerValidator.java @@ -15,6 +15,9 @@ */ package org.springframework.security.oauth2.jwt; +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; + import org.springframework.security.oauth2.core.OAuth2Error; import org.springframework.security.oauth2.core.OAuth2ErrorCodes; import org.springframework.security.oauth2.core.OAuth2TokenValidator; @@ -28,6 +31,8 @@ import org.springframework.util.Assert; * @since 5.1 */ public final class JwtIssuerValidator implements OAuth2TokenValidator { + private final Log logger = LogFactory.getLog(getClass()); + private static OAuth2Error INVALID_ISSUER = new OAuth2Error( OAuth2ErrorCodes.INVALID_REQUEST, @@ -57,6 +62,7 @@ public final class JwtIssuerValidator implements OAuth2TokenValidator { if (this.issuer.equals(tokenIssuer)) { return OAuth2TokenValidatorResult.success(); } else { + logger.debug(INVALID_ISSUER.getDescription()); return OAuth2TokenValidatorResult.failure(INVALID_ISSUER); } } diff --git a/oauth2/oauth2-jose/src/main/java/org/springframework/security/oauth2/jwt/JwtTimestampValidator.java b/oauth2/oauth2-jose/src/main/java/org/springframework/security/oauth2/jwt/JwtTimestampValidator.java index 1c8356851b..f5c1e08155 100644 --- a/oauth2/oauth2-jose/src/main/java/org/springframework/security/oauth2/jwt/JwtTimestampValidator.java +++ b/oauth2/oauth2-jose/src/main/java/org/springframework/security/oauth2/jwt/JwtTimestampValidator.java @@ -15,17 +15,20 @@ */ package org.springframework.security.oauth2.jwt; -import java.time.Clock; -import java.time.Duration; -import java.time.Instant; -import java.time.temporal.ChronoUnit; - +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; import org.springframework.security.oauth2.core.OAuth2Error; import org.springframework.security.oauth2.core.OAuth2ErrorCodes; import org.springframework.security.oauth2.core.OAuth2TokenValidator; import org.springframework.security.oauth2.core.OAuth2TokenValidatorResult; import org.springframework.util.Assert; +import java.time.Clock; +import java.time.Duration; +import java.time.Instant; +import java.time.format.DateTimeFormatter; +import java.time.temporal.ChronoUnit; + /** * An implementation of {@link OAuth2TokenValidator} for verifying claims in a Jwt-based access token * @@ -41,6 +44,8 @@ import org.springframework.util.Assert; * @see JSON Web Token (JWT) */ public final class JwtTimestampValidator implements OAuth2TokenValidator { + private final Log logger = LogFactory.getLog(getClass()); + private static final Duration DEFAULT_MAX_CLOCK_SKEW = Duration.of(60, ChronoUnit.SECONDS); private final Duration clockSkew; @@ -56,7 +61,6 @@ public final class JwtTimestampValidator implements OAuth2TokenValidator { public JwtTimestampValidator(Duration clockSkew) { Assert.notNull(clockSkew, "clockSkew cannot be null"); - this.clockSkew = clockSkew; } @@ -71,11 +75,8 @@ public final class JwtTimestampValidator implements OAuth2TokenValidator { if (expiry != null) { if (Instant.now(this.clock).minus(clockSkew).isAfter(expiry)) { - OAuth2Error error = new OAuth2Error( - OAuth2ErrorCodes.INVALID_REQUEST, - String.format("Jwt expired at %s", jwt.getExpiresAt()), - "https://tools.ietf.org/html/rfc6750#section-3.1"); - return OAuth2TokenValidatorResult.failure(error); + OAuth2Error oAuth2Error = createOAuth2Error(String.format("Jwt expired at %s", jwt.getExpiresAt())); + return OAuth2TokenValidatorResult.failure(oAuth2Error); } } @@ -83,17 +84,22 @@ public final class JwtTimestampValidator implements OAuth2TokenValidator { if (notBefore != null) { if (Instant.now(this.clock).plus(clockSkew).isBefore(notBefore)) { - OAuth2Error error = new OAuth2Error( - OAuth2ErrorCodes.INVALID_REQUEST, - String.format("Jwt used before %s", jwt.getNotBefore()), - "https://tools.ietf.org/html/rfc6750#section-3.1"); - return OAuth2TokenValidatorResult.failure(error); + OAuth2Error oAuth2Error = createOAuth2Error(String.format("Jwt used before %s", jwt.getNotBefore())); + return OAuth2TokenValidatorResult.failure(oAuth2Error); } } return OAuth2TokenValidatorResult.success(); } + private OAuth2Error createOAuth2Error(String reason) { + logger.debug(reason); + return new OAuth2Error( + OAuth2ErrorCodes.INVALID_REQUEST, + reason, + "https://tools.ietf.org/html/rfc6750#section-3.1"); + } + /** * ' * Use this {@link Clock} with {@link Instant#now()} for assessing