-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
App Check: optimize auto-refresh (#8232)
* App Attest provider: attestation sequence (#7971) * App Attest provider: attestation sequence (#761) * App Attest draft WIP * FIRAppAttestProvider initializers * ./scripts/style.sh * FIRAppAttestProvider implementation draft * Basic FIRAppAttestProviderTests and fixes * style * testGetTokenWhenAppAttestIsNotSupported * More FIRAppAttestProviderTests * Cleanup * Remove unused file * Availability annotations on DCAppAttestService category. * Guard FIRAppAttestProvider with #if TARGET_OS_IOS * Formatting * Fix SPM * app_check.yaml: Add diagnostics SPM builds * fix yaml * Fix Firebase-Package scheme bad merge * Fix typo * FIRAppAttestProvider: hide default init * FIRAppAttestKeyIDStorage: methods placeholders * Comments * Fix updated block definition * Implement app attest key ID storage (#8014) * Implement FIRAppAttestKeyIDStorage * Add FIRAppAttestKeyIDStorageTests * Review [Draft] * Style * Docs updates * Docs updates 2 * Review [Draft] 2 * Improve tests * Improve test readability * Improve test readability 2 * App Check App Attest workflow updates: initial handshake (#8032) * Handshake adjustments (WIP) * Introduce FIRAppAttestProviderState * WIP: calculate attestation state * WIP: calculate attestation state 2 * formatting * Comments and moving code around * Fix init in tests * Fix state calculation flow * Cleanup state calculation and fix tests. * Cleanup and fixes. * Comments * formatting * Fix import * Typo fixes and additional comments * FIRAppAttestInitialHandshakeResponse API * Cleanup state calculation using FBLPromiseAwait * Cleanup * style * FIRAppAttestArtifactStorage implementation and tests (#8041) * Update comments * FIRAppAttestArtifactStorage implementation and tests * Fix init * API docs * Clean up storage in tests * Comments * Disable Keychain dependent tests for SPM * Implement App Attest `getRandomChallenge` (#8033) * Initial implementation * Parse response body for challenge and stub test cases * Review [Draft] * Avoid encoding challenge again * Add tests * Revert "Avoid encoding challenge again" and add TODO This reverts commit 69eb00d. * Document tests; Add test * Tests: Add URL validation check * Review * Define Exchange AppAttest Assertion for FAC token API (#8058) * App Check App Attest: attestation request (#8059) * App Attest provider API integration WIP * update tests * Draft attestation response parsing * Attestation request draft * style * AppAttest Attestation API tests draft * Error cases tests * style * Cleanup and API docs * Merge fix * Fix OCMock imports * Fix nullability modifier * Formatting * comments * App Check App Attest initial handshake adjustments (#8067) * calculatre sha256 of random challenge for attestation * Test app adjustments * cleanup * use trailing closures in the test app * Implement API for ExchangeAppAttestAssertionRequest endpoint (#8065) * Implement assertion exchange * Tweak existing tests * Add tests * Rename JSON to better match gRPC message * Add HTTPBody helper * Review * Review 2 * Review 3 * App Check App Attest assertion flow (#8083) * App Attest assertion workflow draft * send request * assertion flow tests * style * App Check: store App Attest artifact per key ID (#8097) * Update artifact storage API and tests * Artifact storage implementation update * Save artifact for a key ID * Style * typos * App Check: prevent concurrent token requests (#8117) * App Attest multiple get token method invocation tests * Ensure a single App Attest handshake sequence at the time * FIRAppCheckTests: get token request merging tests * FIRAppCheck: Ensure a single get token operation at the time * formatting * Test new request after merged requests * Release finished operation promise * Style * Typos * typo * Request merging tests for error cases * formatting * Changelog * App Check App Attest: handle attestation rejection (#8170) * Remove/update outdated TODOs * [WIP] Attestation rejection handling draft * style * retry tests draft * reset key ID before retry * Reset attestation * test error and fixes * style * More details in the name * Some debug logging * style * Use specific codes for log messages * style * Add FIRAppAttestProvider.h the umbrella header * Add receivedAtDate property to the FAC token * Update tests to check receivedAtDate field where important * [WIP] Use FIRAppCheckTokenRefreshResult instead in the refresher API * [WIP] Fix refgresher usage * Update tests with new API, keep old logic * Update tests with new logic * WIP * WIP * Initial refresh tests and fixes. * Add #import <TargetConditionals.h> where needed. * Formatting * Cleanup and test updates * style * Comments * Cleanup and comments * Fix catalyst * Changelog * Changelog version fix * Typo * Cleanup * Typo * Imports order Co-authored-by: Nick Cooke <36927374+ncooke3@users.noreply.github.com>
- Loading branch information
1 parent
b58ea53
commit 2ec4dbd
Showing
23 changed files
with
524 additions
and
180 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
# 8.1.0 -- M97 | ||
# 8.2.0 -- M98 | ||
- [added] Apple's App Attest attestation provider support. (#8133) | ||
- [changed] Token auto-refresh optimizations. (#8232) | ||
# v8.0.0 -- M95 | ||
- [added] Firebase abuse reduction support SDK. (#7928, #7937, #7948) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/* | ||
* Copyright 2021 Google LLC | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
#import <Foundation/Foundation.h> | ||
|
||
#import "FirebaseAppCheck/Sources/Public/FirebaseAppCheck/FIRAppCheckToken.h" | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
@interface FIRAppCheckToken () | ||
|
||
/// A date when the Firebase App Check token was received in the device's local time. | ||
@property(nonatomic) NSDate *receivedAtDate; | ||
|
||
/// The designated initializer. | ||
/// @param token A Firebase App Check token. | ||
/// @param expirationDate A Firebase App Check token expiration date in the device local time. | ||
/// @param receivedAtDate A date when the Firebase App Check token was received in the device's | ||
/// local time. | ||
- (instancetype)initWithToken:(NSString *)token | ||
expirationDate:(NSDate *)expirationDate | ||
receivedAtDate:(NSDate *)receivedAtDate NS_DESIGNATED_INITIALIZER; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
63 changes: 63 additions & 0 deletions
63
FirebaseAppCheck/Sources/Core/TokenRefresh/FIRAppCheckTokenRefreshResult.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
/* | ||
* Copyright 2021 Google LLC | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
#import <Foundation/Foundation.h> | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
/// Represents possible results of a Firebase App Check token refresh attempt that matter for | ||
/// `FIRAppCheckTokenRefresher`. | ||
typedef NS_ENUM(NSInteger, FIRAppCheckTokenRefreshStatus) { | ||
// The token has not been refreshed. | ||
FIRAppCheckTokenRefreshStatusNever, | ||
|
||
// The token was successfully refreshed. | ||
FIRAppCheckTokenRefreshStatusSuccess, | ||
|
||
// The token refresh failed. | ||
FIRAppCheckTokenRefreshStatusFailure | ||
}; | ||
|
||
/// An object to pass the possible results of a Firebase App Check token refresh attempt and | ||
/// supplementary data. | ||
@interface FIRAppCheckTokenRefreshResult : NSObject | ||
|
||
/// Status of the refresh. | ||
@property(nonatomic, readonly) FIRAppCheckTokenRefreshStatus status; | ||
|
||
/// A date when the new Firebase App Check token is expiring. | ||
@property(nonatomic, readonly, nullable) NSDate *tokenExpirationDate; | ||
|
||
/// A date when the new Firebase App Check token was received from the server. | ||
@property(nonatomic, readonly, nullable) NSDate *tokenReceivedAtDate; | ||
|
||
- (instancetype)init NS_UNAVAILABLE; | ||
|
||
/// Initializes the instance with `FIRAppCheckTokenRefreshStatusNever`. | ||
- (instancetype)initWithStatusNever; | ||
|
||
/// Initializes the instance with `FIRAppCheckTokenRefreshStatusFailure`. | ||
- (instancetype)initWithStatusFailure; | ||
|
||
/// Initializes the instance with `FIRAppCheckTokenRefreshStatusSuccess`. | ||
/// @param tokenExpirationDate See `tokenExpirationDate` property. | ||
/// @param tokenReceivedAtDate See `tokenReceivedAtDate` property. | ||
- (instancetype)initWithStatusSuccessAndExpirationDate:(NSDate *)tokenExpirationDate | ||
receivedAtDate:(NSDate *)tokenReceivedAtDate; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
64 changes: 64 additions & 0 deletions
64
FirebaseAppCheck/Sources/Core/TokenRefresh/FIRAppCheckTokenRefreshResult.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
/* | ||
* Copyright 2021 Google LLC | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
#import "FirebaseAppCheck/Sources/Core/TokenRefresh/FIRAppCheckTokenRefreshResult.h" | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
@interface FIRAppCheckTokenRefreshResult () | ||
|
||
- (instancetype)initWithStatus:(FIRAppCheckTokenRefreshStatus)status | ||
expirationDate:(nullable NSDate *)tokenExpirationDate | ||
receivedAtDate:(nullable NSDate *)tokenReceivedAtDate NS_DESIGNATED_INITIALIZER; | ||
|
||
@end | ||
|
||
@implementation FIRAppCheckTokenRefreshResult | ||
|
||
- (instancetype)initWithStatus:(FIRAppCheckTokenRefreshStatus)status | ||
expirationDate:(nullable NSDate *)tokenExpirationDate | ||
receivedAtDate:(nullable NSDate *)tokenReceivedAtDate { | ||
self = [super init]; | ||
if (self) { | ||
_status = status; | ||
_tokenExpirationDate = tokenExpirationDate; | ||
_tokenReceivedAtDate = tokenReceivedAtDate; | ||
} | ||
return self; | ||
} | ||
|
||
- (instancetype)initWithStatusNever { | ||
return [self initWithStatus:FIRAppCheckTokenRefreshStatusNever | ||
expirationDate:nil | ||
receivedAtDate:nil]; | ||
} | ||
|
||
- (instancetype)initWithStatusFailure { | ||
return [self initWithStatus:FIRAppCheckTokenRefreshStatusFailure | ||
expirationDate:nil | ||
receivedAtDate:nil]; | ||
} | ||
|
||
- (instancetype)initWithStatusSuccessAndExpirationDate:(NSDate *)tokenExpirationDate | ||
receivedAtDate:(NSDate *)tokenReceivedAtDate { | ||
return [self initWithStatus:FIRAppCheckTokenRefreshStatusSuccess | ||
expirationDate:tokenExpirationDate | ||
receivedAtDate:tokenReceivedAtDate]; | ||
} | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
Oops, something went wrong.