2 * Copyright (c) 2008,2010,2012-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 <CoreFoundation/CoreFoundation.h>
26 #include <Security/SecBase.h>
27 #include <Security/SecItem.h>
35 #include "Security_regressions.h"
37 const uint8_t keychain_data
[] = {
38 0x62, 0x70, 0x6c, 0x69, 0x73, 0x74, 0x30, 0x30, 0xd2, 0x01, 0x02, 0x03,
39 0x04, 0x5f, 0x10, 0x1b, 0x4e, 0x53, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77,
40 0x20, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x20, 0x50, 0x72, 0x6f, 0x63, 0x65,
41 0x73, 0x73, 0x50, 0x61, 0x6e, 0x65, 0x6c, 0x5f, 0x10, 0x1d, 0x4e, 0x53,
42 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x20, 0x46, 0x72, 0x61, 0x6d, 0x65,
43 0x20, 0x41, 0x62, 0x6f, 0x75, 0x74, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20,
44 0x4d, 0x61, 0x63, 0x5f, 0x10, 0x1c, 0x32, 0x38, 0x20, 0x33, 0x37, 0x33,
45 0x20, 0x33, 0x34, 0x36, 0x20, 0x32, 0x39, 0x30, 0x20, 0x30, 0x20, 0x30,
46 0x20, 0x31, 0x34, 0x34, 0x30, 0x20, 0x38, 0x37, 0x38, 0x20, 0x5f, 0x10,
47 0x1d, 0x35, 0x36, 0x38, 0x20, 0x33, 0x39, 0x35, 0x20, 0x33, 0x30, 0x37,
48 0x20, 0x33, 0x37, 0x39, 0x20, 0x30, 0x20, 0x30, 0x20, 0x31, 0x34, 0x34,
49 0x30, 0x20, 0x38, 0x37, 0x38, 0x20, 0x08, 0x0d, 0x2b, 0x4b, 0x6a, 0x00,
50 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
51 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
52 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8a
55 void kc_dbhandle_reset(void);
57 /* Test basic add delete update copy matching stuff. */
58 static void tests(void)
61 plan_skip_all("No testing against server.");
63 const char *home_dir
= getenv("HOME");
64 char keychain_dir
[1000];
65 char keychain_name
[1000];
66 sprintf(keychain_dir
, "%s/Library/Keychains", home_dir
);
67 sprintf(keychain_name
, "%s/keychain-2-debug.db", keychain_dir
);
69 ok_unix(fd
= open(keychain_name
, O_RDWR
| O_CREAT
| O_TRUNC
, 0644),
70 "create keychain file");
71 is(write(fd
, keychain_data
, sizeof(keychain_data
)),
72 (ssize_t
)sizeof(keychain_data
), "write garbage to keychain file");
73 ok_unix(close(fd
), "close keychain file");
78 CFNumberRef eighty
= CFNumberCreate(NULL
, kCFNumberSInt32Type
, &v_eighty
);
79 const char *v_data
= "test";
80 CFDataRef pwdata
= CFDataCreate(NULL
, (UInt8
*)v_data
, strlen(v_data
));
81 CFMutableDictionaryRef query
= CFDictionaryCreateMutable(NULL
, 0, NULL
, NULL
);
82 CFDictionaryAddValue(query
, kSecClass
, kSecClassInternetPassword
);
83 CFDictionaryAddValue(query
, kSecAttrServer
, CFSTR("members.spamcop.net"));
84 CFDictionaryAddValue(query
, kSecAttrAccount
, CFSTR("smith"));
85 CFDictionaryAddValue(query
, kSecAttrPort
, eighty
);
86 CFDictionaryAddValue(query
, kSecAttrProtocol
, kSecAttrProtocolHTTP
);
87 CFDictionaryAddValue(query
, kSecAttrAuthenticationType
, kSecAttrAuthenticationTypeDefault
);
88 CFDictionaryAddValue(query
, kSecValueData
, pwdata
);
89 ok_status(SecItemAdd(query
, NULL
), "add internet password");
90 is_status(SecItemAdd(query
, NULL
), errSecDuplicateItem
,
91 "add internet password again");
93 ok_status(SecItemCopyMatching(query
, NULL
), "Found the item we added");
95 ok_status(SecItemDelete(query
),"Deleted the item we added");
103 int si_31_keychain_bad(int argc
, char *const *argv
)