]> git.saurik.com Git - apple/security.git/blob - OSX/sec/securityd/Regressions/secd-58-password-change.c
Security-57337.40.85.tar.gz
[apple/security.git] / OSX / sec / securityd / Regressions / secd-58-password-change.c
1 /*
2 * Copyright (c) 2013-2014 Apple Inc. All Rights Reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
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
11 * file.
12 *
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.
20 *
21 * @APPLE_LICENSE_HEADER_END@
22 */
23
24
25
26
27 #include <Security/SecBase.h>
28 #include <Security/SecItem.h>
29
30 #include <CoreFoundation/CFDictionary.h>
31
32 #include <Security/SecureObjectSync/SOSAccount.h>
33 #include <Security/SecureObjectSync/SOSCloudCircle.h>
34 #include <Security/SecureObjectSync/SOSInternal.h>
35 #include <Security/SecureObjectSync/SOSUserKeygen.h>
36 #include <Security/SecureObjectSync/SOSTransport.h>
37
38 #include <stdlib.h>
39 #include <unistd.h>
40
41 #include "secd_regressions.h"
42 #include "SOSTestDataSource.h"
43
44 #include "SOSRegressionUtilities.h"
45 #include <utilities/SecCFWrappers.h>
46 #include <Security/SecKeyPriv.h>
47
48 #include <securityd/SOSCloudCircleServer.h>
49
50 #include "SOSAccountTesting.h"
51 #include "SecdTestKeychainUtilities.h"
52
53 static int kTestTestCount = 259;
54
55 static bool AssertCreds(SOSAccountRef account,CFStringRef acct_name, CFDataRef password) {
56 CFErrorRef error = NULL;
57 bool retval;
58 ok((retval = SOSAccountAssertUserCredentialsAndUpdate(account, acct_name, password, &error)), "Credential setting (%@)", error);
59 CFReleaseNull(error);
60 return retval;
61 }
62
63 static bool ResetToOffering(SOSAccountRef account) {
64 CFErrorRef error = NULL;
65 bool retval;
66 ok((retval = SOSAccountResetToOffering(account, &error)), "Reset to offering (%@)", error);
67 CFReleaseNull(error);
68 return retval;
69 }
70
71 static bool JoinCircle(SOSAccountRef account) {
72 CFErrorRef error = NULL;
73 bool retval;
74 ok((retval = SOSAccountJoinCircles(account, &error)), "Join Circle (%@)", error);
75 CFReleaseNull(error);
76 return retval;
77 }
78
79 static bool AcceptApplicants(SOSAccountRef account, CFIndex cnt) {
80 CFErrorRef error = NULL;
81 bool retval = false;
82 CFArrayRef applicants = SOSAccountCopyApplicants(account, &error);
83
84 ok((retval = (applicants && CFArrayGetCount(applicants) == cnt)), "See applicants %@ (%@)", applicants, error);
85 if(retval) ok((retval = SOSAccountAcceptApplicants(account, applicants, &error)), "Accept Applicants (%@)", error);
86 CFReleaseNull(applicants);
87 CFReleaseNull(error);
88 return retval;
89 }
90
91 static void tests(void)
92 {
93 CFDataRef cfpassword = CFDataCreate(NULL, (uint8_t *) "FooFooFoo", 10);
94 CFStringRef cfaccount = CFSTR("test@test.org");
95
96 CFMutableDictionaryRef changes = CFDictionaryCreateMutableForCFTypes(kCFAllocatorDefault);
97 SOSAccountRef alice_account = CreateAccountForLocalChanges(CFSTR("Alice"), CFSTR("TestSource"));
98 SOSAccountRef bob_account = CreateAccountForLocalChanges(CFSTR("Bob"), CFSTR("TestSource"));
99 SOSAccountRef carol_account = CreateAccountForLocalChanges(CFSTR("Carol"), CFSTR("TestSource"));
100
101 /* Set Initial Credentials and Parameters for the Syncing Circles ---------------------------------------*/
102 ok(AssertCreds(bob_account, cfaccount, cfpassword), "Setting credentials for Bob");
103 // Bob wins writing at this point, feed the changes back to alice.
104
105 is(ProcessChangesUntilNoChange(changes, alice_account, bob_account, carol_account, NULL), 1, "updates");
106
107 ok(AssertCreds(alice_account, cfaccount, cfpassword), "Setting credentials for Alice");
108 ok(AssertCreds(carol_account, cfaccount, cfpassword), "Setting credentials for Carol");
109 CFReleaseNull(cfpassword);
110
111 /* Make Alice First Peer -------------------------------------------------------------------------------*/
112 ok(ResetToOffering(alice_account), "Reset to offering - Alice as first peer");
113
114 is(ProcessChangesUntilNoChange(changes, alice_account, bob_account, carol_account, NULL), 2, "updates");
115
116 /* Bob Joins -------------------------------------------------------------------------------------------*/
117 ok(JoinCircle(bob_account), "Bob Applies");
118
119 is(ProcessChangesUntilNoChange(changes, alice_account, bob_account, carol_account, NULL), 2, "updates");
120
121 /* Alice Accepts -------------------------------------------------------------------------------------------*/
122 ok(AcceptApplicants(alice_account, 1), "Alice Accepts Bob's Application");
123
124 is(ProcessChangesUntilNoChange(changes, alice_account, bob_account, carol_account, NULL), 3, "4 updates");
125 accounts_agree("bob&alice pair", bob_account, alice_account);
126
127 /* Carol Applies -------------------------------------------------------------------------------------------*/
128 ok(JoinCircle(carol_account), "Carol Applies");
129
130 is(ProcessChangesUntilNoChange(changes, alice_account, bob_account, carol_account, NULL), 2, "updates");
131 is(countPeers(alice_account), 2, "See two peers");
132
133
134 /* Change Password ------------------------------------------------------------------------------------------*/
135 CFDataRef cfnewpassword = CFDataCreate(NULL, (uint8_t *) "ooFooFooF", 10);
136
137 ok(AssertCreds(bob_account , cfaccount, cfnewpassword), "Credential resetting for Bob");
138 is(countPeers(bob_account), 2, "There are two valid peers - iCloud and Bob");
139 is(countActivePeers(bob_account), 3, "There are three active peers - bob, alice, and iCloud");
140 is(countActiveValidPeers(bob_account), 2, "There is two active valid peer - Bob and iCloud");
141
142 is(ProcessChangesUntilNoChange(changes, alice_account, bob_account, carol_account, NULL), 2, "updates");
143
144 ok(AssertCreds(alice_account , cfaccount, cfnewpassword), "Credential resetting for Alice");
145
146 is(ProcessChangesUntilNoChange(changes, alice_account, bob_account, carol_account, NULL), 3, "updates");
147
148 is(countPeers(alice_account), 2, "There are two peers - bob and alice");
149 is(countActiveValidPeers(alice_account), 3, "There are three active valid peers - alice, bob, and icloud");
150
151 is(ProcessChangesUntilNoChange(changes, alice_account, bob_account, carol_account, NULL), 1, "updates");
152
153 accounts_agree("bob&alice pair", bob_account, alice_account);
154 is(countPeers(alice_account), 2, "There are two peers - bob and alice");
155 is(countActiveValidPeers(alice_account), 3, "There are three active valid peers - alice, bob, and icloud");
156
157 ok(AssertCreds(carol_account , cfaccount, cfnewpassword), "Credential resetting for Carol");
158
159 is(ProcessChangesUntilNoChange(changes, alice_account, bob_account, carol_account, NULL), 1, "updates");
160 is(ProcessChangesUntilNoChange(changes, alice_account, bob_account, carol_account, NULL), 2, "updates");
161
162 accounts_agree("bob&alice pair", bob_account, alice_account);
163 accounts_agree_internal("bob&carol pair", bob_account, carol_account, false);
164
165 ok(AcceptApplicants(alice_account , 1), "Alice Accepts Carol's Application");
166
167 is(ProcessChangesUntilNoChange(changes, alice_account, bob_account, carol_account, NULL), 4, "updates");
168
169 accounts_agree_internal("bob&alice pair", bob_account, alice_account, false);
170 accounts_agree_internal("bob&carol pair", bob_account, carol_account, false);
171 accounts_agree_internal("carol&alice pair", alice_account, carol_account, false);
172
173
174 /* Change Password 2 ----------------------------------------------------------------------------------------*/
175 CFReleaseNull(cfnewpassword);
176 cfnewpassword = CFDataCreate(NULL, (uint8_t *) "ffoffoffo", 10);
177
178 /* Bob */
179 ok(AssertCreds(bob_account , cfaccount, cfnewpassword), "Credential resetting for Bob");
180 is(ProcessChangesUntilNoChange(changes, alice_account, bob_account, carol_account, NULL), 2, "updates");
181
182 is(countPeers(bob_account), 3, "There are three peers - Alice, Carol, Bob");
183 is(countActivePeers(bob_account), 4, "There are four active peers - bob, alice, carol and iCloud");
184 is(countActiveValidPeers(bob_account), 2, "There is two active valid peer - Bob and iCloud");
185
186
187 /* Alice */
188 ok(AssertCreds(alice_account , cfaccount, cfnewpassword), "Credential resetting for Alice");
189 is(ProcessChangesUntilNoChange(changes, alice_account, bob_account, carol_account, NULL), 3, "updates");
190
191 is(countPeers(alice_account), 3, "There are three peers - Alice, Carol, Bob");
192 is(countActivePeers(alice_account), 4, "There are four active peers - bob, alice, carol and iCloud");
193 is(countActiveValidPeers(alice_account), 3, "There are three active valid peers - alice, bob, and icloud");
194
195
196 /* Carol */
197 ok(AssertCreds(carol_account , cfaccount, cfnewpassword), "Credential resetting for Carol");
198 is(ProcessChangesUntilNoChange(changes, alice_account, bob_account, carol_account, NULL), 4, "updates");
199
200 is(countPeers(carol_account), 3, "There are three peers - Alice, Carol, Bob");
201 is(countActivePeers(carol_account), 4, "There are four active peers - bob, alice, carol and iCloud");
202 is(countActiveValidPeers(carol_account), 4, "There are three active valid peers - alice, bob, carol, and icloud");
203
204 accounts_agree_internal("bob&alice pair", bob_account, alice_account, false);
205
206 /* Change Password 3 - cause a parm lost update collision ----------------------------------------------------*/
207 CFReleaseNull(cfnewpassword);
208 cfnewpassword = CFDataCreate(NULL, (uint8_t *) "cococococ", 10);
209
210 ok(AssertCreds(bob_account , cfaccount, cfnewpassword), "Credential resetting for Bob");
211 ok(AssertCreds(alice_account , cfaccount, cfnewpassword), "Credential resetting for Alice");
212 is(ProcessChangesUntilNoChange(changes, alice_account, bob_account, carol_account, NULL), 4, "updates");
213
214 is(countPeers(alice_account), 3, "There are three peers - Alice, Carol, Bob");
215 is(countActivePeers(alice_account), 4, "There are four active peers - bob, alice, carol and iCloud");
216 is(countActiveValidPeers(alice_account), 3, "There are three active valid peers - alice, bob, and icloud");
217
218
219
220
221 CFReleaseNull(bob_account);
222 CFReleaseNull(alice_account);
223 CFReleaseNull(carol_account);
224 CFReleaseNull(cfnewpassword);
225
226 SOSUnregisterAllTransportMessages();
227 SOSUnregisterAllTransportCircles();
228 SOSUnregisterAllTransportKeyParameters();
229 CFArrayRemoveAllValues(key_transports);
230 CFArrayRemoveAllValues(circle_transports);
231 CFArrayRemoveAllValues(message_transports);
232
233 }
234
235 int secd_58_password_change(int argc, char *const *argv)
236 {
237 plan_tests(kTestTestCount);
238
239 secd_test_setup_temp_keychain(__FUNCTION__, NULL);
240
241 tests();
242
243 return 0;
244 }