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@
25 #include "secd_regressions.h"
27 #include "keychain/securityd/SecDbItem.h"
28 #include <utilities/array_size.h>
29 #include <utilities/SecCFWrappers.h>
30 #include <utilities/SecFileLocations.h>
31 #include <utilities/fileIo.h>
33 #include "keychain/securityd/SOSCloudCircleServer.h"
34 #include "keychain/securityd/SecItemServer.h"
36 #include <Security/SecBasePriv.h>
38 #include <AssertMacros.h>
45 #include "SecdTestKeychainUtilities.h"
47 static OSStatus do_query(void)
49 /* querying a password */
50 const void *keys[] = {
55 const void *values[] = {
56 kSecClassInternetPassword,
57 CFSTR("corrupt.spamcop.net"),
60 CFDictionaryRef query = CFDictionaryCreate(NULL, keys, values,
61 array_size(keys), NULL, NULL);
62 CFTypeRef results = NULL;
64 OSStatus err = SecItemCopyMatching(query, &results);
69 static void *do_add(void *arg)
73 for(int i=0;i<20;i++) {
74 /* Creating a password */
75 SInt32 v_eighty = (tid+1)*1000+i;
76 CFNumberRef eighty = CFNumberCreate(NULL, kCFNumberSInt32Type, &v_eighty);
77 const char *v_data = "test";
78 CFDataRef pwdata = CFDataCreate(NULL, (UInt8 *)v_data, strlen(v_data));
79 const void *keys[] = {
85 kSecAttrAuthenticationType,
88 const void *values[] = {
89 kSecClassInternetPassword,
90 CFSTR("members.spamcop.net"),
98 CFDictionaryRef item = CFDictionaryCreate(NULL, keys, values,
99 array_size(keys), NULL, NULL);
101 ok_status(SecItemAdd(item, NULL), "add internet password");
103 CFReleaseNull(eighty);
104 CFReleaseNull(pwdata);
113 static const char *corrupt_item_sql = "UPDATE inet SET data=X'12345678' WHERE rowid=1";
116 int secd_03_corrupted_items(int argc, char *const *argv)
118 plan_tests(4 + N_THREADS*21 + kSecdTestSetupTestCount);
120 /* custom keychain dir */
121 secd_test_setup_temp_keychain("secd_03_corrupted_items", NULL);
125 CFNumberRef eighty = CFNumberCreate(NULL, kCFNumberSInt32Type, &v_eighty);
126 const char *v_data = "test";
127 CFDataRef pwdata = CFDataCreate(NULL, (UInt8 *)v_data, strlen(v_data));
128 CFMutableDictionaryRef query = CFDictionaryCreateMutable(NULL, 0, NULL, NULL);
129 CFDictionaryAddValue(query, kSecClass, kSecClassInternetPassword);
130 CFDictionaryAddValue(query, kSecAttrServer, CFSTR("corrupt.spamcop.net"));
131 CFDictionaryAddValue(query, kSecAttrAccount, CFSTR("smith"));
132 CFDictionaryAddValue(query, kSecAttrPort, eighty);
133 CFDictionaryAddValue(query, kSecAttrProtocol, kSecAttrProtocolHTTP);
134 CFDictionaryAddValue(query, kSecAttrAuthenticationType, kSecAttrAuthenticationTypeDefault);
135 CFDictionaryAddValue(query, kSecValueData, pwdata);
136 ok_status(SecItemAdd(query, NULL), "add internet password");
138 /* corrupt the password */
139 CFStringRef keychain_path_cf = __SecKeychainCopyPath();
141 CFStringPerformWithCString(keychain_path_cf, ^(const char *keychain_path) {
142 /* Create a new keychain sqlite db */
145 is(sqlite3_open(keychain_path, &db), SQLITE_OK, "create keychain");
146 is(sqlite3_exec(db, corrupt_item_sql, NULL, NULL, NULL), SQLITE_OK,
147 "corrupting keychain item1");
151 pthread_t add_thread[N_THREADS];
152 void *add_err[N_THREADS] = {NULL,};
154 for(int i=0; i<N_THREADS; i++)
155 pthread_create(&add_thread[i], NULL, do_add, (void*)(intptr_t)i);
157 is_status(do_query(), errSecItemNotFound, "query");
159 for(int i=0; i<N_THREADS; i++)
160 pthread_join(add_thread[i], &add_err[i]);
162 for(int i=0; i<N_THREADS; i++)
163 ok(add_err[i]==NULL, "add thread");
165 CFReleaseNull(query);
166 CFReleaseNull(eighty);
167 CFReleaseNull(pwdata);
168 CFReleaseNull(keychain_path_cf);