2 * Copyright (c) 2018 Apple Inc. All Rights Reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. Please obtain a copy of the License at
10 * http://www.opensource.apple.com/apsl/ and read it before using this
13 * The Original Code and all software distributed under the License are
14 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18 * Please see the License for the specific language governing rights and
19 * limitations under the License.
21 * @APPLE_LICENSE_HEADER_END@
26 #import "utilities/debugging.h"
27 #import <Security/SecKey.h>
28 #import <Security/SecKeyPriv.h>
30 #import "keychain/ot/OTCuttlefishContext.h"
31 #import "keychain/ot/OTFetchViewsOperation.h"
32 #import "keychain/ot/OTOperationDependencies.h"
33 #import "keychain/ot/OTPrepareOperation.h"
35 #import "keychain/TrustedPeersHelper/TrustedPeersHelperProtocol.h"
36 #import "keychain/ot/ObjCImprovements.h"
38 @interface OTPrepareOperation ()
39 @property OTOperationDependencies* deps;
40 @property NSOperation* finishedOp;
43 @implementation OTPrepareOperation
44 @synthesize intendedState = _intendedState;
45 @synthesize nextState = _nextState;
47 - (instancetype)initWithDependencies:(OTOperationDependencies*)dependencies
48 intendedState:(OctagonState*)intendedState
49 errorState:(OctagonState*)errorState
50 deviceInfo:(OTDeviceInformation*)deviceInfo
53 if((self = [super init])) {
56 _deviceInfo = deviceInfo;
59 _intendedState = intendedState;
60 _nextState = errorState;
67 secnotice("octagon", "preparing an identity");
69 self.finishedOp = [[NSOperation alloc] init];
70 [self dependOnBeforeGroupFinished:self.finishedOp];
72 NSString* bottleSalt = nil;
74 if(self.deps.authKitAdapter.primaryiCloudAccountAltDSID){
75 bottleSalt = self.deps.authKitAdapter.primaryiCloudAccountAltDSID;
78 NSError* accountError = nil;
79 OTAccountMetadataClassC* account = [self.deps.stateHolder loadOrCreateAccountMetadata:&accountError];
81 if(account && !accountError) {
82 secnotice("octagon", "retrieved account, altdsid is: %@", account.altDSID);
83 bottleSalt = account.altDSID;
85 if(accountError || !account){
86 secerror("failed to rerieve account object: %@", accountError);
91 // But, if this device is SOS-enabled and SOS is present, use the SOS octagon keys (if present)
92 NSData* signingKeyPersistRef = nil;
93 NSData* encryptionKeyPersistRef = nil;
94 if(self.deps.sosAdapter.sosEnabled) {
95 secnotice("octagon-sos", "Investigating use of Octagon keys from SOS identity");
98 id<CKKSSelfPeer> sosSelf = [self.deps.sosAdapter currentSOSSelf:&error];
100 if(!sosSelf || error) {
101 secnotice("octagon-sos", "Failed to get the current SOS self: %@", error);
103 // Fetch the persistent references for our signing and encryption keys
104 OSStatus status = errSecSuccess;
105 CFDataRef cfSigningKeyPersistRef = NULL;
106 status = SecKeyCopyPersistentRef(sosSelf.signingKey.secKey, &cfSigningKeyPersistRef);
107 if(status != errSecSuccess || !cfSigningKeyPersistRef) {
108 secnotice("octagon-sos", "Failed to get the persistent ref for our SOS signing key: %d", (int)status);
110 CFDataRef cfEncryptionKeyPersistRef = NULL;
111 status = SecKeyCopyPersistentRef(sosSelf.encryptionKey.secKey, &cfEncryptionKeyPersistRef);
112 if(status != errSecSuccess || !cfEncryptionKeyPersistRef) {
113 secnotice("octagon-sos", "Failed to get the persistent ref for our SOS encryption key: %d", (int)status);
114 CFReleaseNull(cfSigningKeyPersistRef);
115 CFReleaseNull(cfEncryptionKeyPersistRef);
117 // We only want to use these keys if we successfully have both
118 signingKeyPersistRef = CFBridgingRelease(cfSigningKeyPersistRef);
119 encryptionKeyPersistRef = CFBridgingRelease(cfEncryptionKeyPersistRef);
125 NSError* persistError = nil;
126 BOOL persisted = [self.deps.stateHolder persistOctagonJoinAttempt:OTAccountMetadataClassC_AttemptedAJoinState_ATTEMPTED error:&persistError];
127 if(!persisted || persistError) {
128 secerror("octagon: failed to save 'attempted join' state: %@", persistError);
131 [self.deps.cuttlefishXPCWrapper prepareWithContainer:self.deps.containerName
132 context:self.deps.contextID
134 machineID:self.deviceInfo.machineID
135 bottleSalt:bottleSalt
136 bottleID:[NSUUID UUID].UUIDString
137 modelID:self.deviceInfo.modelID
138 deviceName:self.deviceInfo.deviceName
139 serialNumber:self.deviceInfo.serialNumber
140 osVersion:self.deviceInfo.osVersion
143 signingPrivKeyPersistentRef:signingKeyPersistRef
144 encPrivKeyPersistentRef:encryptionKeyPersistRef
145 reply:^(NSString * _Nullable peerID, NSData * _Nullable permanentInfo, NSData * _Nullable permanentInfoSig, NSData * _Nullable stableInfo, NSData * _Nullable stableInfoSig, NSError * _Nullable error) {
147 [[CKKSAnalytics logger] logResultForEvent:OctagonEventPrepareIdentity hardFailure:true result:error];
149 secerror("octagon: Error preparing identity: %@", error);
151 [self runBeforeGroupFinished:self.finishedOp];
153 secnotice("octagon", "Prepared: %@ %@ %@", peerID, permanentInfo, permanentInfoSig);
154 self.peerID = peerID;
155 self.permanentInfo = permanentInfo;
156 self.permanentInfoSig = permanentInfoSig;
157 self.stableInfo = stableInfo;
158 self.stableInfoSig = stableInfoSig;
160 NSError* localError = nil;
161 BOOL persisted = [self.deps.stateHolder persistNewEgoPeerID:peerID error:&localError];
162 if(!persisted || localError) {
163 secnotice("octagon", "Couldn't persist peer ID: %@", localError);
164 self.error = localError;
165 [self runBeforeGroupFinished:self.finishedOp];
169 CKKSResultOperation *doneOp = [CKKSResultOperation named:@"ot-prepare"
172 self.nextState = self.intendedState;
175 OTFetchViewsOperation *fetchViewsOp = [[OTFetchViewsOperation alloc] initWithDependencies:self.deps];
176 [self runBeforeGroupFinished:fetchViewsOp];
177 [doneOp addDependency:fetchViewsOp];
178 [self runBeforeGroupFinished:doneOp];
179 [self.finishedOp addDependency:doneOp];
180 [self runBeforeGroupFinished:self.finishedOp];