3 #import "utilities/debugging.h"
5 #import <CloudKit/CloudKit_Private.h>
7 #import "keychain/ot/OTResetCKKSZonesLackingTLKsOperation.h"
8 #import "keychain/ot/OTCuttlefishAccountStateHolder.h"
9 #import "keychain/ot/OTFetchCKKSKeysOperation.h"
11 #import "keychain/ckks/CloudKitCategories.h"
12 #import "keychain/ckks/CKKSCurrentKeyPointer.h"
13 #import "keychain/ckks/CKKSKeychainView.h"
15 #import "keychain/ot/ObjCImprovements.h"
17 @interface OTResetCKKSZonesLackingTLKsOperation ()
18 @property OTOperationDependencies* deps;
20 @property NSOperation* finishedOp;
23 @implementation OTResetCKKSZonesLackingTLKsOperation
24 @synthesize nextState = _nextState;
25 @synthesize intendedState = _intendedState;
27 - (instancetype)initWithDependencies:(OTOperationDependencies*)dependencies
28 intendedState:(OctagonState*)intendedState
29 errorState:(OctagonState*)errorState
31 if((self = [super init])) {
34 _intendedState = intendedState;
35 _nextState = errorState;
42 secnotice("octagon", "Checking if any CKKS zones need resetting");
46 self.finishedOp = [NSBlockOperation blockOperationWithBlock:^{
48 secnotice("octagon", "Finishing resetting CKKS missing TLKs operation with %@", self.error ?: @"no error");
50 [self dependOnBeforeGroupFinished:self.finishedOp];
52 OTFetchCKKSKeysOperation* fetchKeysOp = [[OTFetchCKKSKeysOperation alloc] initWithDependencies:self.deps];
53 [self runBeforeGroupFinished:fetchKeysOp];
55 CKKSResultOperation* proceedWithKeys = [CKKSResultOperation named:@"continue-ckks-resets"
58 [self proceedWithKeys:fetchKeysOp.viewKeySets
59 incompleteKeySets:fetchKeysOp.incompleteKeySets
60 pendingTLKShares:fetchKeysOp.tlkShares];
63 [proceedWithKeys addDependency:fetchKeysOp];
64 [self runBeforeGroupFinished:proceedWithKeys];
67 - (void)proceedWithKeys:(NSArray<CKKSKeychainBackedKeySet*>*)viewKeySets
68 incompleteKeySets:(NSArray<CKKSCurrentKeySet*>*)incompleteKeySets
69 pendingTLKShares:(NSArray<CKKSTLKShare*>*)pendingTLKShares
71 // Now that CKKS has returned, what are we even doing
72 NSMutableSet<CKKSKeychainView*>* viewsToReset = [NSMutableSet set];
74 for(CKKSCurrentKeySet* incompleteKeySet in incompleteKeySets) {
75 if(incompleteKeySet.error == nil) {
76 CKKSKeychainView* viewMatchingSet = [self.deps.viewManager findView:incompleteKeySet.viewName];
78 if(!viewMatchingSet) {
79 secnotice("octagon-ckks", "No view matching viewset %@?", incompleteKeySet);
83 if(incompleteKeySet.currentTLKPointer != nil &&
84 incompleteKeySet.tlk == nil) {
86 BOOL otherDevicesAlive = [viewMatchingSet otherDevicesReportHavingTLKs:incompleteKeySet];
87 if(otherDevicesAlive) {
88 secnotice("octagon-ckks", "Recently active devices claim to have TLK from key set %@; not scheduling for reset", incompleteKeySet);
90 secnotice("octagon-ckks", "Key set %@ has no TLK; scheduling for reset", incompleteKeySet);
91 [viewsToReset addObject:viewMatchingSet];
95 secnotice("octagon-ckks", "Error loading key set %@; not attempting reset", incompleteKeySet);
99 if(viewsToReset.count == 0) {
100 // Nothing to do; return to ready
101 secnotice("octagon-ckks", "No CKKS views need resetting");
102 self.nextState = self.intendedState;
103 [self runBeforeGroupFinished:self.finishedOp];
107 [self resetViews:viewsToReset];
110 - (void)resetViews:(NSSet<CKKSKeychainView*>*)viewsToReset {
111 CKOperationGroup* opGroup = [CKOperationGroup CKKSGroupWithName:@"octagon-reset-missing-tlks"];
112 for (CKKSKeychainView* view in viewsToReset) {
113 secnotice("octagon-ckks", "Resetting CKKS %@", view);
114 CKKSResultOperation* op = [view resetCloudKitZone:opGroup];
116 // Use an intermediary operation, just to ensure we have a timeout
117 CKKSResultOperation* waitOp = [CKKSResultOperation named:[NSString stringWithFormat:@"wait-for-%@", view.zoneName]
119 [waitOp timeout:120*NSEC_PER_SEC];
120 [waitOp addDependency:op];
121 [self.operationQueue addOperation:waitOp];
123 [self.finishedOp addDependency:waitOp];
126 self.nextState = self.intendedState;
127 [self.operationQueue addOperation:self.finishedOp];