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@
24 #import "SecKeybagSupport.h"
28 #import <libaks_ref_key.h>
29 #import <MobileKeyBag/MobileKeyBag.h>
32 #import <CryptoTokenKit/CryptoTokenKit.h>
34 #import <coreauthd_spi.h>
36 #import <LocalAuthentication/LAPublicDefines.h>
37 #import <LocalAuthentication/LAPrivateDefines.h>
38 #import <LocalAuthentication/LACFSupport.h>
39 #import <SecurityFoundation/SFEncryptionOperation.h>
44 @implementation SecMockAKS
46 + (bool)isLocked:(keyclass_t)key_class
56 + (bool)useGenerationCount
64 aks_load_bag(const void * data, int length, keybag_handle_t* handle)
70 kern_return_t aks_unlock_bag(keybag_handle_t handle, const void * passcode, int length)
76 aks_create_bag(const void * passcode, int length, keybag_type_t type, keybag_handle_t* handle)
83 aks_unload_bag(keybag_handle_t handle)
89 aks_save_bag(keybag_handle_t handle, void ** data, int * length)
95 aks_get_system(keybag_handle_t special_handle, keybag_handle_t *handle)
101 //static uint8_t staticAKSKey[32] = "1234567890123456789012";
103 #define PADDINGSIZE 8
106 aks_wrap_key(const void * key, int key_size, keyclass_t key_class, keybag_handle_t handle, void * wrapped_key, int * wrapped_key_size_inout, keyclass_t * class_out)
108 if ([SecMockAKS isLocked:key_class]) {
109 return kIOReturnNotPermitted;
111 if ([SecMockAKS isSEPDown]) {
112 return kIOReturnBusy;
115 *class_out = key_class;
116 if ([SecMockAKS useGenerationCount]) {
117 *class_out |= (key_class_last + 1);
120 if (key_size + PADDINGSIZE > *wrapped_key_size_inout) {
123 *wrapped_key_size_inout = key_size + PADDINGSIZE;
124 memcpy(wrapped_key, key, key_size);
125 memset(((uint8_t *)wrapped_key) + key_size, 0xff, PADDINGSIZE);
130 aks_unwrap_key(const void * wrapped_key, int wrapped_key_size, keyclass_t key_class, keybag_handle_t handle, void * key, int * key_size_inout)
132 if ([SecMockAKS isLocked:key_class]) {
133 return kIOReturnNotPermitted;
135 if ([SecMockAKS isSEPDown]) {
136 return kIOReturnBusy;
139 if (wrapped_key_size < PADDINGSIZE) {
142 static const char expected_padding[PADDINGSIZE] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
143 if (memcmp(((const uint8_t *)wrapped_key) + (wrapped_key_size - PADDINGSIZE), expected_padding, PADDINGSIZE) != 0) {
146 if (*key_size_inout < wrapped_key_size - PADDINGSIZE) {
149 *key_size_inout = wrapped_key_size - PADDINGSIZE;
150 memcpy(key, wrapped_key, *key_size_inout);
156 aks_ref_key_create(keybag_handle_t handle, keyclass_t cls, aks_key_type_t type, const uint8_t *params, size_t params_len, aks_ref_key_t *ot)
158 SFAESKeySpecifier* keySpecifier = [[SFAESKeySpecifier alloc] initWithBitSize:SFAESKeyBitSize256];
159 SFAESKey* key = [[SFAESKey alloc] initRandomKeyWithSpecifier:keySpecifier error:nil];
160 *ot = (__bridge_retained aks_ref_key_t)key;
161 return kAKSReturnSuccess;
165 aks_ref_key_encrypt(aks_ref_key_t handle,
166 const uint8_t *der_params, size_t der_params_len,
167 const void * data, size_t data_len,
168 void ** out_der, size_t * out_der_len)
174 aks_ref_key_decrypt(aks_ref_key_t handle,
175 const uint8_t *der_params, size_t der_params_len,
176 const void * data, size_t data_len,
177 void ** out_der, size_t * out_der_len)
183 aks_ref_key_delete(aks_ref_key_t handle, const uint8_t *der_params, size_t der_params_len)
189 aks_operation_optional_params(const uint8_t * access_groups, size_t access_groups_len, const uint8_t * external_data, size_t external_data_len, const void * acm_handle, int acm_handle_len, void ** out_der, size_t * out_der_len)
194 int aks_ref_key_create_with_blob(keybag_handle_t keybag, const uint8_t *ref_key_blob, size_t ref_key_blob_len, aks_ref_key_t* handle)
196 aks_ref_key_create(keybag, 0, 0, NULL, 0, handle);
200 const uint8_t * aks_ref_key_get_blob(aks_ref_key_t refkey, size_t *out_blob_len)
203 return (const uint8_t *)"20";
206 aks_ref_key_free(aks_ref_key_t* key)
212 aks_ref_key_get_external_data(aks_ref_key_t refkey, size_t *out_external_data_len)
214 *out_external_data_len = 2;
215 return (const uint8_t *)"21";
220 aks_assert_hold(keybag_handle_t handle, uint32_t type, uint64_t timeout)
226 aks_assert_drop(keybag_handle_t handle, uint32_t type)
232 aks_generation(keybag_handle_t handle,
233 generation_option_t generation_option,
234 uint32_t * current_generation)
236 *current_generation = 0;
241 aks_get_bag_uuid(keybag_handle_t handle, uuid_t uuid)
243 memcpy(uuid, "0123456789abcdf", sizeof(uuid_t));
248 aks_get_lock_state(keybag_handle_t handle, keybag_state_t *state)
250 *state = keybag_state_been_unlocked;
254 CFStringRef kMKBDeviceModeMultiUser = CFSTR("kMKBDeviceModeMultiUser");
255 CFStringRef kMKBDeviceModeSingleUser = CFSTR("kMKBDeviceModeSingleUser");
256 CFStringRef kMKBDeviceModeKey = CFSTR("kMKBDeviceModeKey");
258 static CFStringRef staticKeybagHandle = CFSTR("keybagHandle");
261 MKBKeyBagCreateWithData(CFDataRef keybagBlob, MKBKeyBagHandleRef* newHandle)
263 *newHandle = (MKBKeyBagHandleRef)staticKeybagHandle;
268 MKBKeyBagUnlock(MKBKeyBagHandleRef keybag, CFDataRef passcode)
270 if (keybag == NULL || !CFEqual(keybag, staticKeybagHandle)) {
276 int MKBKeyBagGetAKSHandle(MKBKeyBagHandleRef keybag, int32_t *handle)
278 if (keybag == NULL || !CFEqual(keybag, staticKeybagHandle)) {
285 int MKBGetDeviceLockState(CFDictionaryRef options)
287 if ([SecMockAKS isLocked:key_class_ak] )
288 return kMobileKeyBagDeviceIsLocked;
289 return kMobileKeyBagDeviceIsUnlocked;
292 CF_RETURNS_RETAINED CFDictionaryRef
293 MKBUserTypeDeviceMode(CFDictionaryRef options, CFErrorRef * error)
295 return CFBridgingRetain(@{
296 (__bridge NSString *)kMKBDeviceModeKey : (__bridge NSString *)kMKBDeviceModeSingleUser,
300 int MKBForegroundUserSessionID( CFErrorRef * error)
305 #endif /* USE_KEYSTORE */
307 const CFTypeRef kAKSKeyAcl = (CFTypeRef)CFSTR("kAKSKeyAcl");
308 const CFTypeRef kAKSKeyAclParamRequirePasscode = (CFTypeRef)CFSTR("kAKSKeyAclParamRequirePasscode");
310 const CFTypeRef kAKSKeyOpDefaultAcl = (CFTypeRef)CFSTR("kAKSKeyOpDefaultAcl");
311 const CFTypeRef kAKSKeyOpEncrypt = (CFTypeRef)CFSTR("kAKSKeyOpEncrypt");
312 const CFTypeRef kAKSKeyOpDecrypt = (CFTypeRef)CFSTR("kAKSKeyOpDecrypt");
313 const CFTypeRef kAKSKeyOpSync = (CFTypeRef)CFSTR("kAKSKeyOpSync");
314 const CFTypeRef kAKSKeyOpDelete = (CFTypeRef)CFSTR("kAKSKeyOpDelete");
315 const CFTypeRef kAKSKeyOpCreate = (CFTypeRef)CFSTR("kAKSKeyOpCreate");
316 const CFTypeRef kAKSKeyOpSign = (CFTypeRef)CFSTR("kAKSKeyOpSign");
317 const CFTypeRef kAKSKeyOpSetKeyClass = (CFTypeRef)CFSTR("kAKSKeyOpSetKeyClass");
318 const CFTypeRef kAKSKeyOpWrap = (CFTypeRef)CFSTR("kAKSKeyOpWrap");
319 const CFTypeRef kAKSKeyOpUnwrap = (CFTypeRef)CFSTR("kAKSKeyOpUnwrap");
320 const CFTypeRef kAKSKeyOpComputeKey = (CFTypeRef)CFSTR("kAKSKeyOpComputeKey");
321 const CFTypeRef kAKSKeyOpAttest = (CFTypeRef)CFSTR("kAKSKeyOpAttest");
322 const CFTypeRef kAKSKeyOpTranscrypt = (CFTypeRef)CFSTR("kAKSKeyOpTranscrypt");
325 TKTokenRef TKTokenCreate(CFDictionaryRef attributes, CFErrorRef *error)
330 CFTypeRef TKTokenCopyObjectData(TKTokenRef token, CFDataRef objectID, CFErrorRef *error)
335 CFDataRef TKTokenCopyObjectCreationAccessControl(TKTokenRef token, CFDictionaryRef objectAttributes, CFErrorRef *error)
340 CFDataRef TKTokenCreateOrUpdateObject(TKTokenRef token, CFDataRef objectID, CFMutableDictionaryRef attributes, CFErrorRef *error)
345 CFDataRef TKTokenCopyObjectAccessControl(TKTokenRef token, CFDataRef objectID, CFErrorRef *error)
349 bool TKTokenDeleteObject(TKTokenRef token, CFDataRef objectID, CFErrorRef *error)
354 CFDataRef TKTokenCopyPublicKeyData(TKTokenRef token, CFDataRef objectID, CFErrorRef *error)
359 CFTypeRef TKTokenCopyOperationResult(TKTokenRef token, CFDataRef objectID, CFIndex secKeyOperationType, CFArrayRef algorithm,
360 CFIndex secKeyOperationMode, CFTypeRef in1, CFTypeRef in2, CFErrorRef *error)
365 CF_RETURNS_RETAINED CFDictionaryRef TKTokenControl(TKTokenRef token, CFDictionaryRef attributes, CFErrorRef *error)
370 CFTypeRef LACreateNewContextWithACMContext(CFDataRef acmContext, CFErrorRef *error)
375 CFDataRef LACopyACMContext(CFTypeRef context, CFErrorRef *error)
380 bool LAEvaluateAndUpdateACL(CFTypeRef context, CFDataRef acl, CFTypeRef operation, CFDictionaryRef hints, CFDataRef *updatedACL, CFErrorRef *error)
386 ACMContextCreateWithExternalForm(const void *externalForm, size_t dataLength)
392 ACMContextDelete(ACMContextRef context, bool destroyContext)
398 ACMContextRemovePassphraseCredentialsByPurposeAndScope(const ACMContextRef context, ACMPassphrasePurpose purpose, ACMScope scope)