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