2 * Copyright (c) 2013-2014 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 #include "secd_regressions.h"
28 #include <securityd/SecDbItem.h>
29 #include <securityd/SecItemServer.h>
31 #include <utilities/array_size.h>
32 #include <utilities/SecFileLocations.h>
36 #include "SecdTestKeychainUtilities.h"
41 int secd_01_items(int argc
, char *const *argv
)
43 plan_tests(24 + kSecdTestSetupTestCount
);
45 secd_test_setup_testviews(); // if running all tests get the test views setup first
46 /* custom keychain dir */
47 secd_test_setup_temp_keychain("secd_01_items", NULL
);
50 keybag_handle_t keybag
;
52 char *passcode
="password";
53 int passcode_len
=(int)strlen(passcode
);
55 ok(kIOReturnSuccess
==aks_create_bag(passcode
, passcode_len
, kAppleKeyStoreDeviceBag
, &keybag
), "create keybag");
56 ok(kIOReturnSuccess
==aks_get_lock_state(keybag
, &state
), "get keybag state");
57 ok(!(state
&keybag_state_locked
), "keybag unlocked");
58 SecItemServerSetKeychainKeybag(keybag
);
61 ok(kIOReturnSuccess
==aks_lock_bag(keybag
), "lock keybag");
62 ok(kIOReturnSuccess
==aks_get_lock_state(keybag
, &state
), "get keybag state");
63 ok(state
&keybag_state_locked
, "keybag locked");
66 SecKeychainDbReset(NULL
);
68 /* Creating a password */
70 CFNumberRef eighty
= CFNumberCreate(NULL
, kCFNumberSInt32Type
, &v_eighty
);
71 const char *v_data
= "test";
72 CFDataRef pwdata
= CFDataCreate(NULL
, (UInt8
*)v_data
, strlen(v_data
));
73 const void *keys
[] = {
79 kSecAttrAuthenticationType
,
82 const void *values
[] = {
83 kSecClassInternetPassword
,
84 CFSTR("members.spamcop.net"),
92 CFDictionaryRef item
= CFDictionaryCreate(NULL
, keys
, values
,
93 array_size(keys
), NULL
, NULL
);
96 is_status(SecItemAdd(item
, NULL
), errSecInteractionNotAllowed
, "add internet password while locked");
99 ok(kIOReturnSuccess
==aks_unlock_bag(keybag
, passcode
, passcode_len
), "unlock keybag");
100 ok(kIOReturnSuccess
==aks_get_lock_state(keybag
, &state
), "get keybag state");
101 ok(!(state
&keybag_state_locked
), "keybag unlocked");
103 ok_status(SecItemAdd(item
, NULL
), "add internet password, while unlocked");
107 ok(kIOReturnSuccess
==aks_lock_bag(keybag
), "lock keybag");
108 ok(kIOReturnSuccess
==aks_get_lock_state(keybag
, &state
), "get keybag state");
109 ok(state
&keybag_state_locked
, "keybag locked");
111 is_status(SecItemAdd(item
, NULL
), errSecInteractionNotAllowed
,
112 "add internet password again, while locked");
115 ok(kIOReturnSuccess
==aks_unlock_bag(keybag
, passcode
, passcode_len
), "unlock keybag");
116 ok(kIOReturnSuccess
==aks_get_lock_state(keybag
, &state
), "get keybag state");
117 ok(!(state
&keybag_state_locked
), "keybag unlocked");
119 is_status(SecItemAdd(item
, NULL
), errSecDuplicateItem
,
120 "add internet password again, while unlocked");
122 CFTypeRef results
= NULL
;
123 /* Create a dict with all attrs except the data. */
124 CFDictionaryRef query
= CFDictionaryCreate(NULL
, keys
, values
,
125 (array_size(keys
)) - 1, NULL
, NULL
);
126 ok_status(SecItemCopyMatching(query
, &results
), "find internet password, while unlocked ");
133 ok(kIOReturnSuccess
==aks_lock_bag(keybag
), "lock keybag");
134 ok(kIOReturnSuccess
==aks_get_lock_state(keybag
, &state
), "get keybag state");
135 ok(state
&keybag_state_locked
, "keybag locked");
137 is_status(SecItemCopyMatching(query
, &results
), errSecInteractionNotAllowed
, "find internet password, while locked ");
139 /* Reset keybag and custom $HOME */
140 SecItemServerResetKeychainKeybag();
141 SetCustomHomeURL(NULL
);
142 SecKeychainDbReset(NULL
);
145 CFReleaseNull(pwdata
);
146 CFReleaseNull(eighty
);
148 CFReleaseSafe(query
);
155 int secd_01_items(int argc
, char *const *argv
)
159 todo("Not yet working in simulator");
165 /* not implemented in simulator (no keybag) */