1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/mac/security_wrappers.h"
#include "base/mac/foundation_util.h"
#include "base/mac/mac_logging.h"
extern "C" {
OSStatus SecTrustedApplicationCopyRequirement(
SecTrustedApplicationRef application,
SecRequirementRef* requirement);
} // extern "C"
namespace chrome {
ScopedSecKeychainSetUserInteractionAllowed::
ScopedSecKeychainSetUserInteractionAllowed(Boolean allowed) {
OSStatus status = SecKeychainGetUserInteractionAllowed(&old_allowed_);
if (status != errSecSuccess) {
OSSTATUS_LOG(ERROR, status);
old_allowed_ = TRUE;
}
status = SecKeychainSetUserInteractionAllowed(allowed);
if (status != errSecSuccess) {
OSSTATUS_LOG(ERROR, status);
}
}
ScopedSecKeychainSetUserInteractionAllowed::
~ScopedSecKeychainSetUserInteractionAllowed() {
OSStatus status = SecKeychainSetUserInteractionAllowed(old_allowed_);
if (status != errSecSuccess) {
OSSTATUS_LOG(ERROR, status);
}
}
CrSKeychainItemAndAccess::CrSKeychainItemAndAccess(SecKeychainItemRef item,
SecAccessRef access)
: item_(item),
access_(access) {
// These CFRetain calls aren't leaks. They're balanced by an implicit
// CFRelease at destruction because the fields are of type ScopedCFTypeRef.
// These fields are retained on construction (unlike the typical
// ScopedCFTypeRef pattern) because this class is intended for use as an STL
// type adapter to keep two related objects together, and thus must
// implement proper reference counting in the methods required for STL
// container use. This class and is not intended to act as a scoper for the
// underlying objects in user code. For that, just use ScopedCFTypeRef.
CFRetain(item_);
CFRetain(access_);
}
CrSKeychainItemAndAccess::CrSKeychainItemAndAccess(
const CrSKeychainItemAndAccess& that)
: item_(that.item_.get()),
access_(that.access_.get()) {
// See the comment above in the two-argument constructor.
CFRetain(item_);
CFRetain(access_);
}
CrSKeychainItemAndAccess::~CrSKeychainItemAndAccess() {
}
void CrSKeychainItemAndAccess::operator=(const CrSKeychainItemAndAccess& that) {
// See the comment above in the two-argument constructor.
CFRetain(that.item_);
item_.reset(that.item_);
CFRetain(that.access_);
access_.reset(that.access_);
}
CrSACLSimpleContents::CrSACLSimpleContents() {
}
CrSACLSimpleContents::~CrSACLSimpleContents() {
}
ScopedSecKeychainAttributeInfo::ScopedSecKeychainAttributeInfo(
SecKeychainAttributeInfo* attribute_info)
: attribute_info_(attribute_info) {
}
ScopedSecKeychainAttributeInfo::~ScopedSecKeychainAttributeInfo() {
OSStatus status = SecKeychainFreeAttributeInfo(attribute_info_);
if (status != errSecSuccess) {
OSSTATUS_LOG(ERROR, status);
}
}
ScopedCrSKeychainItemAttributesAndData::ScopedCrSKeychainItemAttributesAndData(
CrSKeychainItemAttributesAndData* attributes_and_data)
: attributes_and_data_(attributes_and_data) {
}
ScopedCrSKeychainItemAttributesAndData::
~ScopedCrSKeychainItemAttributesAndData() {
if (attributes_and_data_.get()) {
CrSKeychainItemFreeAttributesAndData(
attributes_and_data_->attribute_list, attributes_and_data_->data);
}
}
SecKeychainSearchRef CrSKeychainSearchCreateFromAttributes(
CFTypeRef keychain_or_array,
SecItemClass item_class,
const SecKeychainAttributeList* attribute_list) {
SecKeychainSearchRef search;
OSStatus status = SecKeychainSearchCreateFromAttributes(keychain_or_array,
item_class,
attribute_list,
&search);
if (status != errSecSuccess) {
OSSTATUS_LOG(ERROR, status);
return NULL;
}
return search;
}
SecKeychainItemRef CrSKeychainSearchCopyNext(SecKeychainSearchRef search) {
if (!search) {
return NULL;
}
SecKeychainItemRef item;
OSStatus status = SecKeychainSearchCopyNext(search, &item);
if (status != errSecSuccess) {
if (status != errSecItemNotFound) {
OSSTATUS_LOG(ERROR, status);
}
return NULL;
}
return item;
}
void CrSKeychainItemFreeAttributesAndData(
SecKeychainAttributeList* attribute_list,
void* data) {
OSStatus status = SecKeychainItemFreeAttributesAndData(attribute_list, data);
if (status != errSecSuccess) {
OSSTATUS_LOG(ERROR, status);
}
}
bool CrSKeychainItemTestAccess(SecKeychainItemRef item) {
UInt32 length;
void* data;
OSStatus status = SecKeychainItemCopyAttributesAndData(item,
NULL,
NULL,
NULL,
&length,
&data);
if (status != errSecSuccess) {
if (status != errSecAuthFailed) {
OSSTATUS_LOG(ERROR, status);
}
return false;
}
CrSKeychainItemFreeAttributesAndData(NULL, data);
return true;
}
SecAccessRef CrSKeychainItemCopyAccess(SecKeychainItemRef item) {
SecAccessRef access;
OSStatus status = SecKeychainItemCopyAccess(item, &access);
if (status != errSecSuccess) {
if (status != errSecNoAccessForItem && status != errSecAuthFailed) {
OSSTATUS_LOG(ERROR, status);
}
return NULL;
}
return access;
}
CFArrayRef CrSAccessCopyACLList(SecAccessRef access) {
if (!access) {
return NULL;
}
CFArrayRef acl_list;
OSStatus status = SecAccessCopyACLList(access, &acl_list);
if (status != errSecSuccess) {
OSSTATUS_LOG(ERROR, status);
return NULL;
}
return acl_list;
}
CrSACLSimpleContents* CrSACLCopySimpleContents(SecACLRef acl) {
if (!acl) {
return NULL;
}
scoped_ptr<CrSACLSimpleContents> acl_simple_contents(
new CrSACLSimpleContents());
CFArrayRef application_list;
CFStringRef description;
OSStatus status =
SecACLCopySimpleContents(acl,
&application_list,
&description,
&acl_simple_contents->prompt_selector);
if (status != errSecSuccess) {
if (status != errSecACLNotSimple) {
OSSTATUS_LOG(ERROR, status);
}
return NULL;
}
acl_simple_contents->application_list.reset(application_list);
acl_simple_contents->description.reset(description);
return acl_simple_contents.release();
}
SecRequirementRef CrSTrustedApplicationCopyRequirement(
SecTrustedApplicationRef application) {
if (!application) {
return NULL;
}
SecRequirementRef requirement;
OSStatus status = SecTrustedApplicationCopyRequirement(application,
&requirement);
if (status != errSecSuccess) {
OSSTATUS_LOG(ERROR, status);
return NULL;
}
return requirement;
}
CFStringRef CrSRequirementCopyString(SecRequirementRef requirement,
SecCSFlags flags) {
if (!requirement) {
return NULL;
}
CFStringRef requirement_string;
OSStatus status = SecRequirementCopyString(requirement,
flags,
&requirement_string);
if (status != errSecSuccess) {
OSSTATUS_LOG(ERROR, status);
return NULL;
}
return requirement_string;
}
SecTrustedApplicationRef CrSTrustedApplicationCreateFromPath(const char* path) {
SecTrustedApplicationRef application;
OSStatus status = SecTrustedApplicationCreateFromPath(path, &application);
if (status != errSecSuccess) {
OSSTATUS_LOG(ERROR, status);
return NULL;
}
return application;
}
bool CrSACLSetSimpleContents(SecACLRef acl,
const CrSACLSimpleContents& acl_simple_contents) {
OSStatus status =
SecACLSetSimpleContents(acl,
acl_simple_contents.application_list,
acl_simple_contents.description,
&acl_simple_contents.prompt_selector);
if (status != errSecSuccess) {
OSSTATUS_LOG(ERROR, status);
return false;
}
return true;
}
SecKeychainRef CrSKeychainItemCopyKeychain(SecKeychainItemRef item) {
SecKeychainRef keychain;
OSStatus status = SecKeychainItemCopyKeychain(item, &keychain);
if (status != errSecSuccess) {
OSSTATUS_LOG(ERROR, status);
return NULL;
}
return keychain;
}
SecKeychainAttributeInfo* CrSKeychainAttributeInfoForItemID(
SecKeychainRef keychain,
UInt32 item_id) {
SecKeychainAttributeInfo* attribute_info;
OSStatus status = SecKeychainAttributeInfoForItemID(keychain,
item_id,
&attribute_info);
if (status != errSecSuccess) {
OSSTATUS_LOG(ERROR, status);
return NULL;
}
return attribute_info;
}
CrSKeychainItemAttributesAndData* CrSKeychainItemCopyAttributesAndData(
SecKeychainRef keychain,
SecKeychainItemRef item) {
ScopedCrSKeychainItemAttributesAndData attributes_and_data(
new CrSKeychainItemAttributesAndData());
OSStatus status =
SecKeychainItemCopyAttributesAndData(item,
NULL,
attributes_and_data.item_class_ptr(),
NULL,
NULL,
NULL);
if (status != errSecSuccess) {
OSSTATUS_LOG(ERROR, status);
return NULL;
}
// This looks really weird, but it's right. See 10.7.3
// libsecurity_keychain-55044 lib/SecItem.cpp
// _CreateAttributesDictionaryFromKeyItem and 10.7.3 SecurityTool-55002
// keychain_utilities.c print_keychain_item_attributes.
UInt32 item_id;
switch (attributes_and_data.item_class()) {
case kSecInternetPasswordItemClass:
item_id = CSSM_DL_DB_RECORD_INTERNET_PASSWORD;
break;
case kSecGenericPasswordItemClass:
item_id = CSSM_DL_DB_RECORD_GENERIC_PASSWORD;
break;
// kSecInternetPasswordItemClass is marked as deprecated in the 10.9 sdk,
// but the files in libsecurity_keychain from 10.7 referenced above still
// use it. Also see rdar://14281375 /
// http://openradar.appspot.com/radar?id=3143412 .
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
case kSecAppleSharePasswordItemClass:
#pragma clang diagnostic pop
item_id = CSSM_DL_DB_RECORD_APPLESHARE_PASSWORD;
break;
default:
item_id = attributes_and_data.item_class();
break;
}
ScopedSecKeychainAttributeInfo attribute_info(
CrSKeychainAttributeInfoForItemID(keychain, item_id));
if (!attribute_info) {
return NULL;
}
status = SecKeychainItemCopyAttributesAndData(
item,
attribute_info,
attributes_and_data.item_class_ptr(),
attributes_and_data.attribute_list_ptr(),
attributes_and_data.length_ptr(),
attributes_and_data.data_ptr());
if (status != errSecSuccess) {
OSSTATUS_LOG(ERROR, status);
return NULL;
}
return attributes_and_data.release();
}
bool CrSKeychainItemDelete(SecKeychainItemRef item) {
OSStatus status = SecKeychainItemDelete(item);
if (status != errSecSuccess) {
OSSTATUS_LOG(ERROR, status);
return false;
}
return true;
}
SecKeychainItemRef CrSKeychainItemCreateFromContent(
const CrSKeychainItemAttributesAndData& attributes_and_data,
SecKeychainRef keychain,
SecAccessRef access) {
SecKeychainItemRef item;
OSStatus status =
SecKeychainItemCreateFromContent(attributes_and_data.item_class,
attributes_and_data.attribute_list,
attributes_and_data.length,
attributes_and_data.data,
keychain,
access,
&item);
if (status != errSecSuccess) {
OSSTATUS_LOG(ERROR, status);
return NULL;
}
return item;
}
} // namespace chrome
|