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 /* custom keychain dir */
46 secd_test_setup_temp_keychain("secd_01_items", NULL
);
49 keybag_handle_t keybag
;
51 char *passcode
="password";
52 int passcode_len
=(int)strlen(passcode
);
54 ok(kIOReturnSuccess
==aks_create_bag(passcode
, passcode_len
, kAppleKeyStoreDeviceBag
, &keybag
), "create keybag");
55 ok(kIOReturnSuccess
==aks_get_lock_state(keybag
, &state
), "get keybag state");
56 ok(!(state
&keybag_state_locked
), "keybag unlocked");
57 SecItemServerSetKeychainKeybag(keybag
);
60 ok(kIOReturnSuccess
==aks_lock_bag(keybag
), "lock keybag");
61 ok(kIOReturnSuccess
==aks_get_lock_state(keybag
, &state
), "get keybag state");
62 ok(state
&keybag_state_locked
, "keybag locked");
65 SecKeychainDbReset(NULL
);
67 /* Creating a password */
69 CFNumberRef eighty
= CFNumberCreate(NULL
, kCFNumberSInt32Type
, &v_eighty
);
70 const char *v_data
= "test";
71 CFDataRef pwdata
= CFDataCreate(NULL
, (UInt8
*)v_data
, strlen(v_data
));
72 const void *keys
[] = {
78 kSecAttrAuthenticationType
,
81 const void *values
[] = {
82 kSecClassInternetPassword
,
83 CFSTR("members.spamcop.net"),
91 CFDictionaryRef item
= CFDictionaryCreate(NULL
, keys
, values
,
92 array_size(keys
), NULL
, NULL
);
95 is_status(SecItemAdd(item
, NULL
), errSecInteractionNotAllowed
, "add internet password while locked");
98 ok(kIOReturnSuccess
==aks_unlock_bag(keybag
, passcode
, passcode_len
), "unlock keybag");
99 ok(kIOReturnSuccess
==aks_get_lock_state(keybag
, &state
), "get keybag state");
100 ok(!(state
&keybag_state_locked
), "keybag unlocked");
102 ok_status(SecItemAdd(item
, NULL
), "add internet password, while unlocked");
106 ok(kIOReturnSuccess
==aks_lock_bag(keybag
), "lock keybag");
107 ok(kIOReturnSuccess
==aks_get_lock_state(keybag
, &state
), "get keybag state");
108 ok(state
&keybag_state_locked
, "keybag locked");
110 is_status(SecItemAdd(item
, NULL
), errSecInteractionNotAllowed
,
111 "add internet password again, while locked");
114 ok(kIOReturnSuccess
==aks_unlock_bag(keybag
, passcode
, passcode_len
), "unlock keybag");
115 ok(kIOReturnSuccess
==aks_get_lock_state(keybag
, &state
), "get keybag state");
116 ok(!(state
&keybag_state_locked
), "keybag unlocked");
118 is_status(SecItemAdd(item
, NULL
), errSecDuplicateItem
,
119 "add internet password again, while unlocked");
121 CFTypeRef results
= NULL
;
122 /* Create a dict with all attrs except the data. */
123 CFDictionaryRef query
= CFDictionaryCreate(NULL
, keys
, values
,
124 (array_size(keys
)) - 1, NULL
, NULL
);
125 ok_status(SecItemCopyMatching(query
, &results
), "find internet password, while unlocked ");
132 ok(kIOReturnSuccess
==aks_lock_bag(keybag
), "lock keybag");
133 ok(kIOReturnSuccess
==aks_get_lock_state(keybag
, &state
), "get keybag state");
134 ok(state
&keybag_state_locked
, "keybag locked");
136 is_status(SecItemCopyMatching(query
, &results
), errSecInteractionNotAllowed
, "find internet password, while locked ");
138 /* Reset keybag and custom $HOME */
139 SecItemServerResetKeychainKeybag();
140 SetCustomHomeURL(NULL
);
141 SecKeychainDbReset(NULL
);
144 CFReleaseNull(pwdata
);
145 CFReleaseNull(eighty
);
147 CFReleaseSafe(query
);
154 int secd_01_items(int argc
, char *const *argv
)
158 todo("Not yet working in simulator");
164 /* not implemented in simulator (no keybag) */