You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

340 lines
16 KiB

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
  1. /*
  2. * Copyright 2019 Google
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #import "FIRInstanceIDTokenManager.h"
  17. #import "FIRInstanceIDAuthKeyChain.h"
  18. #import "FIRInstanceIDAuthService.h"
  19. #import "FIRInstanceIDCheckinPreferences.h"
  20. #import "FIRInstanceIDConstants.h"
  21. #import "FIRInstanceIDDefines.h"
  22. #import "FIRInstanceIDLogger.h"
  23. #import "FIRInstanceIDStore.h"
  24. #import "FIRInstanceIDTokenDeleteOperation.h"
  25. #import "FIRInstanceIDTokenFetchOperation.h"
  26. #import "FIRInstanceIDTokenInfo.h"
  27. #import "FIRInstanceIDTokenOperation.h"
  28. #import "NSError+FIRInstanceID.h"
  29. @interface FIRInstanceIDTokenManager () <FIRInstanceIDStoreDelegate>
  30. @property(nonatomic, readwrite, strong) FIRInstanceIDStore *instanceIDStore;
  31. @property(nonatomic, readwrite, strong) FIRInstanceIDAuthService *authService;
  32. @property(nonatomic, readonly, strong) NSOperationQueue *tokenOperations;
  33. @property(nonatomic, readwrite, strong) FIRInstanceIDAPNSInfo *currentAPNSInfo;
  34. @end
  35. @implementation FIRInstanceIDTokenManager
  36. - (instancetype)init {
  37. self = [super init];
  38. if (self) {
  39. _instanceIDStore = [[FIRInstanceIDStore alloc] initWithDelegate:self];
  40. _authService = [[FIRInstanceIDAuthService alloc] initWithStore:_instanceIDStore];
  41. [self configureTokenOperations];
  42. }
  43. return self;
  44. }
  45. - (void)dealloc {
  46. [self stopAllTokenOperations];
  47. }
  48. - (void)configureTokenOperations {
  49. _tokenOperations = [[NSOperationQueue alloc] init];
  50. _tokenOperations.name = @"com.google.iid-token-operations";
  51. // For now, restrict the operations to be serial, because in some cases (like if the
  52. // authorized entity and scope are the same), order matters.
  53. // If we have to deal with several different token requests simultaneously, it would be a good
  54. // idea to add some better intelligence around this (performing unrelated token operations
  55. // simultaneously, etc.).
  56. _tokenOperations.maxConcurrentOperationCount = 1;
  57. if ([_tokenOperations respondsToSelector:@selector(qualityOfService)]) {
  58. _tokenOperations.qualityOfService = NSOperationQualityOfServiceUtility;
  59. }
  60. }
  61. - (void)fetchNewTokenWithAuthorizedEntity:(NSString *)authorizedEntity
  62. scope:(NSString *)scope
  63. instanceID:(NSString *)instanceID
  64. options:(NSDictionary *)options
  65. handler:(FIRInstanceIDTokenHandler)handler {
  66. FIRInstanceIDLoggerDebug(kFIRInstanceIDMessageCodeTokenManager000,
  67. @"Fetch new token for authorizedEntity: %@, scope: %@", authorizedEntity,
  68. scope);
  69. FIRInstanceIDTokenFetchOperation *operation =
  70. [self createFetchOperationWithAuthorizedEntity:authorizedEntity
  71. scope:scope
  72. options:options
  73. instanceID:instanceID];
  74. FIRInstanceID_WEAKIFY(self);
  75. FIRInstanceIDTokenOperationCompletion completion =
  76. ^(FIRInstanceIDTokenOperationResult result, NSString *_Nullable token,
  77. NSError *_Nullable error) {
  78. FIRInstanceID_STRONGIFY(self);
  79. if (error) {
  80. handler(nil, error);
  81. return;
  82. }
  83. NSString *firebaseAppID = options[kFIRInstanceIDTokenOptionsFirebaseAppIDKey];
  84. FIRInstanceIDTokenInfo *tokenInfo = [[FIRInstanceIDTokenInfo alloc]
  85. initWithAuthorizedEntity:authorizedEntity
  86. scope:scope
  87. token:token
  88. appVersion:FIRInstanceIDCurrentAppVersion()
  89. firebaseAppID:firebaseAppID];
  90. tokenInfo.APNSInfo = [[FIRInstanceIDAPNSInfo alloc] initWithTokenOptionsDictionary:options];
  91. [self.instanceIDStore
  92. saveTokenInfo:tokenInfo
  93. handler:^(NSError *error) {
  94. if (!error) {
  95. // Do not send the token back in case the save was unsuccessful. Since with
  96. // the new asychronous fetch mechanism this can lead to infinite loops, for
  97. // example, we will return a valid token even though we weren't able to store
  98. // it in our cache. The first token will lead to a onTokenRefresh callback
  99. // wherein the user again calls `getToken` but since we weren't able to save
  100. // it we won't hit the cache but hit the server again leading to an infinite
  101. // loop.
  102. FIRInstanceIDLoggerDebug(
  103. kFIRInstanceIDMessageCodeTokenManager001,
  104. @"Token fetch successful, token: %@, authorizedEntity: %@, scope:%@",
  105. token, authorizedEntity, scope);
  106. if (handler) {
  107. handler(token, nil);
  108. }
  109. } else {
  110. if (handler) {
  111. handler(nil, error);
  112. }
  113. }
  114. }];
  115. };
  116. // Add completion handler, and ensure it's called on the main queue
  117. [operation addCompletionHandler:^(FIRInstanceIDTokenOperationResult result,
  118. NSString *_Nullable token, NSError *_Nullable error) {
  119. dispatch_async(dispatch_get_main_queue(), ^{
  120. completion(result, token, error);
  121. });
  122. }];
  123. [self.tokenOperations addOperation:operation];
  124. }
  125. - (FIRInstanceIDTokenInfo *)cachedTokenInfoWithAuthorizedEntity:(NSString *)authorizedEntity
  126. scope:(NSString *)scope {
  127. return [self.instanceIDStore tokenInfoWithAuthorizedEntity:authorizedEntity scope:scope];
  128. }
  129. - (void)deleteTokenWithAuthorizedEntity:(NSString *)authorizedEntity
  130. scope:(NSString *)scope
  131. instanceID:(NSString *)instanceID
  132. handler:(FIRInstanceIDDeleteTokenHandler)handler {
  133. if ([self.instanceIDStore tokenInfoWithAuthorizedEntity:authorizedEntity scope:scope]) {
  134. [self.instanceIDStore removeCachedTokenWithAuthorizedEntity:authorizedEntity scope:scope];
  135. }
  136. // Does not matter if we cannot find it in the cache. Still make an effort to unregister
  137. // from the server.
  138. FIRInstanceIDCheckinPreferences *checkinPreferences = self.authService.checkinPreferences;
  139. FIRInstanceIDTokenDeleteOperation *operation =
  140. [self createDeleteOperationWithAuthorizedEntity:authorizedEntity
  141. scope:scope
  142. checkinPreferences:checkinPreferences
  143. instanceID:instanceID
  144. action:FIRInstanceIDTokenActionDeleteToken];
  145. if (handler) {
  146. [operation addCompletionHandler:^(FIRInstanceIDTokenOperationResult result,
  147. NSString *_Nullable token, NSError *_Nullable error) {
  148. dispatch_async(dispatch_get_main_queue(), ^{
  149. handler(error);
  150. });
  151. }];
  152. }
  153. [self.tokenOperations addOperation:operation];
  154. }
  155. - (void)deleteAllTokensWithInstanceID:(NSString *)instanceID
  156. handler:(FIRInstanceIDDeleteHandler)handler {
  157. // delete all tokens
  158. FIRInstanceIDCheckinPreferences *checkinPreferences = self.authService.checkinPreferences;
  159. if (!checkinPreferences) {
  160. // The checkin is already deleted. No need to trigger the token delete operation as client no
  161. // longer has the checkin information for server to delete.
  162. dispatch_async(dispatch_get_main_queue(), ^{
  163. handler(nil);
  164. });
  165. return;
  166. }
  167. FIRInstanceIDTokenDeleteOperation *operation =
  168. [self createDeleteOperationWithAuthorizedEntity:kFIRInstanceIDKeychainWildcardIdentifier
  169. scope:kFIRInstanceIDKeychainWildcardIdentifier
  170. checkinPreferences:checkinPreferences
  171. instanceID:instanceID
  172. action:FIRInstanceIDTokenActionDeleteTokenAndIID];
  173. if (handler) {
  174. [operation addCompletionHandler:^(FIRInstanceIDTokenOperationResult result,
  175. NSString *_Nullable token, NSError *_Nullable error) {
  176. dispatch_async(dispatch_get_main_queue(), ^{
  177. handler(error);
  178. });
  179. }];
  180. }
  181. [self.tokenOperations addOperation:operation];
  182. }
  183. - (void)deleteAllTokensLocallyWithHandler:(void (^)(NSError *error))handler {
  184. [self.instanceIDStore removeAllCachedTokensWithHandler:handler];
  185. }
  186. - (void)stopAllTokenOperations {
  187. [self.authService stopCheckinRequest];
  188. [self.tokenOperations cancelAllOperations];
  189. }
  190. #pragma mark - FIRInstanceIDStoreDelegate
  191. - (void)store:(FIRInstanceIDStore *)store
  192. didDeleteFCMScopedTokensForCheckin:(FIRInstanceIDCheckinPreferences *)checkin {
  193. // Make a best effort try to delete the old client related state on the FCM server. This is
  194. // required to delete old pubusb registrations which weren't cleared when the app was deleted.
  195. //
  196. // This is only a one time effort. If this call fails the client would still receive duplicate
  197. // pubsub notifications if he is again subscribed to the same topic.
  198. //
  199. // The client state should be cleared on the server for the provided checkin preferences.
  200. FIRInstanceIDTokenDeleteOperation *operation =
  201. [self createDeleteOperationWithAuthorizedEntity:nil
  202. scope:nil
  203. checkinPreferences:checkin
  204. instanceID:nil
  205. action:FIRInstanceIDTokenActionDeleteToken];
  206. [operation addCompletionHandler:^(FIRInstanceIDTokenOperationResult result,
  207. NSString *_Nullable token, NSError *_Nullable error) {
  208. if (error) {
  209. FIRInstanceIDMessageCode code =
  210. kFIRInstanceIDMessageCodeTokenManagerErrorDeletingFCMTokensOnAppReset;
  211. FIRInstanceIDLoggerDebug(code, @"Failed to delete GCM server registrations on app reset.");
  212. } else {
  213. FIRInstanceIDLoggerDebug(kFIRInstanceIDMessageCodeTokenManagerDeletedFCMTokensOnAppReset,
  214. @"Successfully deleted GCM server registrations on app reset");
  215. }
  216. }];
  217. [self.tokenOperations addOperation:operation];
  218. }
  219. #pragma mark - Unit Testing Stub Helpers
  220. // We really have this method so that we can more easily stub it out for unit testing
  221. - (FIRInstanceIDTokenFetchOperation *)
  222. createFetchOperationWithAuthorizedEntity:(NSString *)authorizedEntity
  223. scope:(NSString *)scope
  224. options:(NSDictionary<NSString *, NSString *> *)options
  225. instanceID:(NSString *)instanceID {
  226. FIRInstanceIDCheckinPreferences *checkinPreferences = self.authService.checkinPreferences;
  227. FIRInstanceIDTokenFetchOperation *operation =
  228. [[FIRInstanceIDTokenFetchOperation alloc] initWithAuthorizedEntity:authorizedEntity
  229. scope:scope
  230. options:options
  231. checkinPreferences:checkinPreferences
  232. instanceID:instanceID];
  233. return operation;
  234. }
  235. // We really have this method so that we can more easily stub it out for unit testing
  236. - (FIRInstanceIDTokenDeleteOperation *)
  237. createDeleteOperationWithAuthorizedEntity:(NSString *)authorizedEntity
  238. scope:(NSString *)scope
  239. checkinPreferences:(FIRInstanceIDCheckinPreferences *)checkinPreferences
  240. instanceID:(NSString *)instanceID
  241. action:(FIRInstanceIDTokenAction)action {
  242. FIRInstanceIDTokenDeleteOperation *operation =
  243. [[FIRInstanceIDTokenDeleteOperation alloc] initWithAuthorizedEntity:authorizedEntity
  244. scope:scope
  245. checkinPreferences:checkinPreferences
  246. instanceID:instanceID
  247. action:action];
  248. return operation;
  249. }
  250. #pragma mark - Invalidating Cached Tokens
  251. - (BOOL)checkTokenRefreshPolicyWithIID:(NSString *)IID {
  252. // We know at least one cached token exists.
  253. BOOL shouldFetchDefaultToken = NO;
  254. NSArray<FIRInstanceIDTokenInfo *> *tokenInfos = [self.instanceIDStore cachedTokenInfos];
  255. NSMutableArray<FIRInstanceIDTokenInfo *> *tokenInfosToDelete =
  256. [NSMutableArray arrayWithCapacity:tokenInfos.count];
  257. for (FIRInstanceIDTokenInfo *tokenInfo in tokenInfos) {
  258. if ([tokenInfo isFreshWithIID:IID]) {
  259. // Token is fresh and in right format, do nothing
  260. continue;
  261. }
  262. if ([tokenInfo isDefaultToken]) {
  263. // Default token is expired, do not mark for deletion. Fetch directly from server to
  264. // replace the current one.
  265. shouldFetchDefaultToken = YES;
  266. } else {
  267. // Non-default token is expired, mark for deletion.
  268. [tokenInfosToDelete addObject:tokenInfo];
  269. }
  270. FIRInstanceIDLoggerDebug(
  271. kFIRInstanceIDMessageCodeTokenManagerInvalidateStaleToken,
  272. @"Invalidating cached token for %@ (%@) due to token is no longer fresh.",
  273. tokenInfo.authorizedEntity, tokenInfo.scope);
  274. }
  275. for (FIRInstanceIDTokenInfo *tokenInfoToDelete in tokenInfosToDelete) {
  276. [self.instanceIDStore removeCachedTokenWithAuthorizedEntity:tokenInfoToDelete.authorizedEntity
  277. scope:tokenInfoToDelete.scope];
  278. }
  279. return shouldFetchDefaultToken;
  280. }
  281. - (NSArray<FIRInstanceIDTokenInfo *> *)updateTokensToAPNSDeviceToken:(NSData *)deviceToken
  282. isSandbox:(BOOL)isSandbox {
  283. // Each cached IID token that is missing an APNSInfo, or has an APNSInfo associated should be
  284. // checked and invalidated if needed.
  285. FIRInstanceIDAPNSInfo *APNSInfo = [[FIRInstanceIDAPNSInfo alloc] initWithDeviceToken:deviceToken
  286. isSandbox:isSandbox];
  287. if ([self.currentAPNSInfo isEqualToAPNSInfo:APNSInfo]) {
  288. return @[];
  289. }
  290. self.currentAPNSInfo = APNSInfo;
  291. NSArray<FIRInstanceIDTokenInfo *> *tokenInfos = [self.instanceIDStore cachedTokenInfos];
  292. NSMutableArray<FIRInstanceIDTokenInfo *> *tokenInfosToDelete =
  293. [NSMutableArray arrayWithCapacity:tokenInfos.count];
  294. for (FIRInstanceIDTokenInfo *cachedTokenInfo in tokenInfos) {
  295. // Check if the cached APNSInfo is nil, or if it is an old APNSInfo.
  296. if (!cachedTokenInfo.APNSInfo ||
  297. ![cachedTokenInfo.APNSInfo isEqualToAPNSInfo:self.currentAPNSInfo]) {
  298. // Mark for invalidation.
  299. [tokenInfosToDelete addObject:cachedTokenInfo];
  300. }
  301. }
  302. for (FIRInstanceIDTokenInfo *tokenInfoToDelete in tokenInfosToDelete) {
  303. FIRInstanceIDLoggerDebug(kFIRInstanceIDMessageCodeTokenManagerAPNSChangedTokenInvalidated,
  304. @"Invalidating cached token for %@ (%@) due to APNs token change.",
  305. tokenInfoToDelete.authorizedEntity, tokenInfoToDelete.scope);
  306. [self.instanceIDStore removeCachedTokenWithAuthorizedEntity:tokenInfoToDelete.authorizedEntity
  307. scope:tokenInfoToDelete.scope];
  308. }
  309. return tokenInfosToDelete;
  310. }
  311. @end