]> git.saurik.com Git - apple/security.git/blob - OSX/libsecurity_keychain/lib/Keychains.cpp
Security-57740.1.18.tar.gz
[apple/security.git] / OSX / libsecurity_keychain / lib / Keychains.cpp
1 /*
2 * Copyright (c) 2000-2004,2011-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 // Keychains.cpp
27 //
28
29 #include "KCEventNotifier.h"
30 #include "Keychains.h"
31
32 #include "Item.h"
33 #include "KCCursor.h"
34 #include "Globals.h"
35 #include <security_cdsa_utilities/Schema.h>
36 #include <security_cdsa_client/keychainacl.h>
37 #include <security_cdsa_utilities/cssmacl.h>
38 #include <security_cdsa_utilities/cssmdb.h>
39 #include <security_utilities/trackingallocator.h>
40 #include <security_utilities/FileLockTransaction.h>
41 #include <security_keychain/SecCFTypes.h>
42 #include <securityd_client/ssblob.h>
43 #include <Security/TrustSettingsSchema.h>
44
45 #include "SecKeychainPriv.h"
46
47 #include <Security/SecKeychainItemPriv.h>
48 #include <CoreFoundation/CoreFoundation.h>
49 #include "DLDbListCFPref.h"
50 #include <fcntl.h>
51 #include <glob.h>
52 #include <sys/param.h>
53 #include <syslog.h>
54 #include <sys/stat.h>
55 #include <sys/socket.h>
56 #include <sys/un.h>
57 #include <sys/types.h>
58 #include <sys/time.h>
59
60 static dispatch_once_t SecKeychainSystemKeychainChecked;
61
62 OSStatus SecKeychainSystemKeychainCheckWouldDeadlock()
63 {
64 dispatch_once(&SecKeychainSystemKeychainChecked, ^{});
65 return errSecSuccess;
66 }
67
68 using namespace KeychainCore;
69 using namespace CssmClient;
70
71
72 typedef struct EventItem
73 {
74 SecKeychainEvent kcEvent;
75 Item item;
76 } EventItem;
77
78 typedef std::list<EventItem> EventBufferSuper;
79 class EventBuffer : public EventBufferSuper
80 {
81 public:
82 EventBuffer () {}
83 virtual ~EventBuffer ();
84 };
85
86
87 EventBuffer::~EventBuffer ()
88 {
89 }
90
91
92
93 //
94 // KeychainSchemaImpl
95 //
96 KeychainSchemaImpl::KeychainSchemaImpl(const Db &db) : mMutex(Mutex::recursive)
97 {
98 DbCursor relations(db);
99 relations->recordType(CSSM_DL_DB_SCHEMA_INFO);
100 DbAttributes relationRecord(db, 1);
101 relationRecord.add(Schema::RelationID);
102 DbUniqueRecord outerUniqueId(db);
103
104 while (relations->next(&relationRecord, NULL, outerUniqueId))
105 {
106 DbUniqueRecord uniqueId(db);
107
108 uint32 relationID = relationRecord.at(0);
109 if (CSSM_DB_RECORDTYPE_SCHEMA_START <= relationID
110 && relationID < CSSM_DB_RECORDTYPE_SCHEMA_END)
111 continue;
112
113 // Create a cursor on the SCHEMA_ATTRIBUTES table for records with
114 // RelationID == relationID
115 DbCursor attributes(db);
116 attributes->recordType(CSSM_DL_DB_SCHEMA_ATTRIBUTES);
117 attributes->add(CSSM_DB_EQUAL, Schema::RelationID, relationID);
118
119 // Set up a record for retriving the SCHEMA_ATTRIBUTES
120 DbAttributes attributeRecord(db, 2);
121 attributeRecord.add(Schema::AttributeFormat);
122 attributeRecord.add(Schema::AttributeID);
123
124 RelationInfoMap &rim = mDatabaseInfoMap[relationID];
125 while (attributes->next(&attributeRecord, NULL, uniqueId))
126 rim[attributeRecord.at(1)] = attributeRecord.at(0);
127
128 // Create a cursor on the CSSM_DL_DB_SCHEMA_INDEXES table for records
129 // with RelationID == relationID
130 DbCursor indexes(db);
131 indexes->recordType(CSSM_DL_DB_SCHEMA_INDEXES);
132 indexes->conjunctive(CSSM_DB_AND);
133 indexes->add(CSSM_DB_EQUAL, Schema::RelationID, relationID);
134 indexes->add(CSSM_DB_EQUAL, Schema::IndexType,
135 uint32(CSSM_DB_INDEX_UNIQUE));
136
137 // Set up a record for retriving the SCHEMA_INDEXES
138 DbAttributes indexRecord(db, 1);
139 indexRecord.add(Schema::AttributeID);
140
141 CssmAutoDbRecordAttributeInfo &infos =
142 *new CssmAutoDbRecordAttributeInfo();
143 mPrimaryKeyInfoMap.
144 insert(PrimaryKeyInfoMap::value_type(relationID, &infos));
145 infos.DataRecordType = relationID;
146 while (indexes->next(&indexRecord, NULL, uniqueId))
147 {
148 CssmDbAttributeInfo &info = infos.add();
149 info.AttributeNameFormat = CSSM_DB_ATTRIBUTE_NAME_AS_INTEGER;
150 info.Label.AttributeID = indexRecord.at(0);
151 // @@@ Might insert bogus value if DB is corrupt
152 info.AttributeFormat = rim[info.Label.AttributeID];
153 }
154 }
155 }
156
157 KeychainSchemaImpl::~KeychainSchemaImpl()
158 {
159 try
160 {
161 map<CSSM_DB_RECORDTYPE, CssmAutoDbRecordAttributeInfo *>::iterator it = mPrimaryKeyInfoMap.begin();
162 while (it != mPrimaryKeyInfoMap.end())
163 {
164 delete it->second;
165 it++;
166 }
167 // for_each_map_delete(mPrimaryKeyInfoMap.begin(), mPrimaryKeyInfoMap.end());
168 }
169 catch(...)
170 {
171 }
172 }
173
174 const KeychainSchemaImpl::RelationInfoMap &
175 KeychainSchemaImpl::relationInfoMapFor(CSSM_DB_RECORDTYPE recordType) const
176 {
177 DatabaseInfoMap::const_iterator dit = mDatabaseInfoMap.find(recordType);
178 if (dit == mDatabaseInfoMap.end())
179 MacOSError::throwMe(errSecNoSuchClass);
180 return dit->second;
181 }
182
183 bool KeychainSchemaImpl::hasRecordType (CSSM_DB_RECORDTYPE recordType) const
184 {
185 DatabaseInfoMap::const_iterator it = mDatabaseInfoMap.find(recordType);
186 return it != mDatabaseInfoMap.end();
187 }
188
189 bool
190 KeychainSchemaImpl::hasAttribute(CSSM_DB_RECORDTYPE recordType, uint32 attributeId) const
191 {
192 try
193 {
194 const RelationInfoMap &rmap = relationInfoMapFor(recordType);
195 RelationInfoMap::const_iterator rit = rmap.find(attributeId);
196 return rit != rmap.end();
197 }
198 catch (MacOSError result)
199 {
200 if (result.osStatus () == errSecNoSuchClass)
201 {
202 return false;
203 }
204 else
205 {
206 throw;
207 }
208 }
209 }
210
211 CSSM_DB_ATTRIBUTE_FORMAT
212 KeychainSchemaImpl::attributeFormatFor(CSSM_DB_RECORDTYPE recordType, uint32 attributeId) const
213 {
214 const RelationInfoMap &rmap = relationInfoMapFor(recordType);
215 RelationInfoMap::const_iterator rit = rmap.find(attributeId);
216 if (rit == rmap.end())
217 MacOSError::throwMe(errSecNoSuchAttr);
218
219 return rit->second;
220 }
221
222 CssmDbAttributeInfo
223 KeychainSchemaImpl::attributeInfoFor(CSSM_DB_RECORDTYPE recordType, uint32 attributeId) const
224 {
225 CSSM_DB_ATTRIBUTE_INFO info;
226 info.AttributeFormat = attributeFormatFor(recordType, attributeId);
227 info.AttributeNameFormat = CSSM_DB_ATTRIBUTE_NAME_AS_INTEGER;
228 info.Label.AttributeID = attributeId;
229
230 return info;
231 }
232
233 void
234 KeychainSchemaImpl::getAttributeInfoForRecordType(CSSM_DB_RECORDTYPE recordType, SecKeychainAttributeInfo **Info) const
235 {
236 const RelationInfoMap &rmap = relationInfoMapFor(recordType);
237
238 SecKeychainAttributeInfo *theList=reinterpret_cast<SecKeychainAttributeInfo *>(malloc(sizeof(SecKeychainAttributeInfo)));
239
240 size_t capacity=rmap.size();
241 UInt32 *tagBuf=reinterpret_cast<UInt32 *>(malloc(capacity*sizeof(UInt32)));
242 UInt32 *formatBuf=reinterpret_cast<UInt32 *>(malloc(capacity*sizeof(UInt32)));
243 UInt32 i=0;
244
245
246 for (RelationInfoMap::const_iterator rit = rmap.begin(); rit != rmap.end(); ++rit)
247 {
248 if (i>=capacity)
249 {
250 capacity *= 2;
251 if (capacity <= i) capacity = i + 1;
252 tagBuf=reinterpret_cast<UInt32 *>(realloc(tagBuf, (capacity*sizeof(UInt32))));
253 formatBuf=reinterpret_cast<UInt32 *>(realloc(tagBuf, (capacity*sizeof(UInt32))));
254 }
255 tagBuf[i]=rit->first;
256 formatBuf[i++]=rit->second;
257 }
258
259 theList->count=i;
260 theList->tag=tagBuf;
261 theList->format=formatBuf;
262 *Info=theList;
263 }
264
265
266 const CssmAutoDbRecordAttributeInfo &
267 KeychainSchemaImpl::primaryKeyInfosFor(CSSM_DB_RECORDTYPE recordType) const
268 {
269 PrimaryKeyInfoMap::const_iterator it;
270 it = mPrimaryKeyInfoMap.find(recordType);
271
272 if (it == mPrimaryKeyInfoMap.end())
273 MacOSError::throwMe(errSecNoSuchClass); // @@@ Not really but whatever.
274
275 return *it->second;
276 }
277
278 bool
279 KeychainSchemaImpl::operator <(const KeychainSchemaImpl &other) const
280 {
281 return mDatabaseInfoMap < other.mDatabaseInfoMap;
282 }
283
284 bool
285 KeychainSchemaImpl::operator ==(const KeychainSchemaImpl &other) const
286 {
287 return mDatabaseInfoMap == other.mDatabaseInfoMap;
288 }
289
290 void
291 KeychainSchemaImpl::didCreateRelation(CSSM_DB_RECORDTYPE relationID,
292 const char *inRelationName,
293 uint32 inNumberOfAttributes,
294 const CSSM_DB_SCHEMA_ATTRIBUTE_INFO *pAttributeInfo,
295 uint32 inNumberOfIndexes,
296 const CSSM_DB_SCHEMA_INDEX_INFO *pIndexInfo)
297 {
298 StLock<Mutex>_(mMutex);
299
300 if (CSSM_DB_RECORDTYPE_SCHEMA_START <= relationID
301 && relationID < CSSM_DB_RECORDTYPE_SCHEMA_END)
302 return;
303
304 // if our schema is already in the map, return
305 if (mPrimaryKeyInfoMap.find(relationID) != mPrimaryKeyInfoMap.end())
306 {
307 return;
308 }
309
310 RelationInfoMap &rim = mDatabaseInfoMap[relationID];
311 for (uint32 ix = 0; ix < inNumberOfAttributes; ++ix)
312 rim[pAttributeInfo[ix].AttributeId] = pAttributeInfo[ix].DataType;
313
314 CssmAutoDbRecordAttributeInfo *infos = new CssmAutoDbRecordAttributeInfo();
315
316 mPrimaryKeyInfoMap.
317 insert(PrimaryKeyInfoMap::value_type(relationID, infos));
318 infos->DataRecordType = relationID;
319 for (uint32 ix = 0; ix < inNumberOfIndexes; ++ix)
320 if (pIndexInfo[ix].IndexType == CSSM_DB_INDEX_UNIQUE)
321 {
322 CssmDbAttributeInfo &info = infos->add();
323 info.AttributeNameFormat = CSSM_DB_ATTRIBUTE_NAME_AS_INTEGER;
324 info.Label.AttributeID = pIndexInfo[ix].AttributeId;
325 info.AttributeFormat = rim[info.Label.AttributeID];
326 }
327 }
328
329
330
331 KeychainSchema::~KeychainSchema()
332
333 {
334 }
335
336
337
338 struct Event
339 {
340 SecKeychainEvent eventCode;
341 PrimaryKey primaryKey;
342 };
343 typedef std::list<Event> EventList;
344
345 #define SYSTEM_KEYCHAIN_CHECK_UNIX_BASE_NAME "/var/run/systemkeychaincheck"
346 #define SYSTEM_KEYCHAIN_CHECK_UNIX_DOMAIN_SOCKET_NAME (SYSTEM_KEYCHAIN_CHECK_UNIX_BASE_NAME ".socket")
347 #define SYSTEM_KEYCHAIN_CHECK_COMPLETE_FILE_NAME (SYSTEM_KEYCHAIN_CHECK_UNIX_BASE_NAME ".done")
348
349 static void check_system_keychain()
350 {
351 // sadly we can't use XPC here, XPC_DOMAIN_TYPE_SYSTEM doesn't exist yet. Also xpc-helper uses the
352 // keychain API (I assume for checking codesign things). So we use Unix Domain Sockets.
353
354 // NOTE: if we hit a system error we attempt to log it, and then just don't check the system keychain.
355 // In theory a system might be able to recover from this state if we let it try to muddle along, and
356 // past behaviour didn't even try this hard to do the keychain check. In particular we could be in a
357 // sandbox'ed process. So we just do our best and let another process try again.
358
359 struct stat keycheck_file_info;
360 if (stat(SYSTEM_KEYCHAIN_CHECK_COMPLETE_FILE_NAME, &keycheck_file_info) < 0) {
361 int server_fd = socket(PF_UNIX, SOCK_STREAM, 0);
362 if (server_fd < 0) {
363 syslog(LOG_ERR, "Can't get socket (%m) system keychain may be unchecked");
364 return;
365 }
366
367 struct sockaddr_un keychain_check_server_address;
368 keychain_check_server_address.sun_family = AF_UNIX;
369 if (strlcpy(keychain_check_server_address.sun_path, SYSTEM_KEYCHAIN_CHECK_UNIX_DOMAIN_SOCKET_NAME, sizeof(keychain_check_server_address.sun_path)) > sizeof(keychain_check_server_address.sun_path)) {
370 // It would be nice if we could compile time assert this
371 syslog(LOG_ERR, "Socket path too long, max length %lu, your length %lu", (unsigned long)sizeof(keychain_check_server_address.sun_path), (unsigned long)strlen(SYSTEM_KEYCHAIN_CHECK_UNIX_DOMAIN_SOCKET_NAME));
372 close(server_fd);
373 return;
374 }
375 keychain_check_server_address.sun_len = SUN_LEN(&keychain_check_server_address);
376
377 int rc = connect(server_fd, (struct sockaddr *)&keychain_check_server_address, keychain_check_server_address.sun_len);
378 if (rc < 0) {
379 syslog(LOG_ERR, "Can not connect to %s: %m", SYSTEM_KEYCHAIN_CHECK_UNIX_DOMAIN_SOCKET_NAME);
380 close(server_fd);
381 return;
382 }
383
384 // this read lets us block until the EOF comes, we don't ever get a byte (and if we do, we don't care about it)
385 char byte;
386 ssize_t read_size = read(server_fd, &byte, 1);
387 if (read_size < 0) {
388 syslog(LOG_ERR, "Error reading from system keychain checker: %m");
389 }
390
391 close(server_fd);
392 return;
393 }
394 }
395
396 //
397 // KeychainImpl
398 //
399 KeychainImpl::KeychainImpl(const Db &db)
400 : mCacheTimer(NULL), mSuppressTickle(false), mAttemptedUpgrade(false), mDbItemMapMutex(Mutex::recursive), mDbDeletedItemMapMutex(Mutex::recursive),
401 mInCache(false), mDb(db), mCustomUnlockCreds (this), mIsInBatchMode (false), mMutex(Mutex::recursive)
402 {
403 dispatch_once(&SecKeychainSystemKeychainChecked, ^{
404 check_system_keychain();
405 });
406 mDb->defaultCredentials(this); // install activation hook
407 mEventBuffer = new EventBuffer;
408 }
409
410 KeychainImpl::~KeychainImpl()
411 {
412 try
413 {
414 // Remove ourselves from the cache if we are in it.
415 // fprintf(stderr, "Removing %p from storage manager cache.\n", handle(false));
416 globals().storageManager.removeKeychain(dlDbIdentifier(), this);
417 delete mEventBuffer;
418 }
419 catch(...)
420 {
421 }
422 }
423
424 Mutex*
425 KeychainImpl::getMutexForObject() const
426 {
427 return globals().storageManager.getStorageManagerMutex();
428 }
429
430 Mutex*
431 KeychainImpl::getKeychainMutex()
432 {
433 return &mMutex;
434 }
435
436 ReadWriteLock*
437 KeychainImpl::getKeychainReadWriteLock()
438 {
439 return &mRWLock;
440 }
441
442 void KeychainImpl::aboutToDestruct()
443 {
444 // remove me from the global cache, we are done
445 // fprintf(stderr, "Destructing keychain object\n");
446 DLDbIdentifier identifier = dlDbIdentifier();
447 globals().storageManager.removeKeychain(identifier, this);
448 }
449
450 bool
451 KeychainImpl::operator ==(const KeychainImpl &keychain) const
452 {
453 return dlDbIdentifier() == keychain.dlDbIdentifier();
454 }
455
456 KCCursor
457 KeychainImpl::createCursor(SecItemClass itemClass, const SecKeychainAttributeList *attrList)
458 {
459 StLock<Mutex>_(mMutex);
460
461 StorageManager::KeychainList keychains;
462 keychains.push_back(Keychain(this));
463 return KCCursor(keychains, itemClass, attrList);
464 }
465
466 KCCursor
467 KeychainImpl::createCursor(const SecKeychainAttributeList *attrList)
468 {
469 StLock<Mutex>_(mMutex);
470
471 StorageManager::KeychainList keychains;
472 keychains.push_back(Keychain(this));
473 return KCCursor(keychains, attrList);
474 }
475
476 void
477 KeychainImpl::create(UInt32 passwordLength, const void *inPassword)
478 {
479 StLock<Mutex>_(mMutex);
480
481 if (!inPassword)
482 {
483 create();
484 return;
485 }
486
487 Allocator &alloc = Allocator::standard();
488
489 // @@@ Share this instance
490
491 const CssmData password(const_cast<void *>(inPassword), passwordLength);
492 AclFactory::PasswordChangeCredentials pCreds (password, alloc);
493 AclFactory::AnyResourceContext rcc(pCreds);
494 create(&rcc);
495
496 // Now that we've created, trigger setting the defaultCredentials
497 mDb->open();
498 }
499
500 void KeychainImpl::create(ConstStringPtr inPassword)
501 {
502 StLock<Mutex>_(mMutex);
503
504 if ( inPassword )
505 create(static_cast<UInt32>(inPassword[0]), &inPassword[1]);
506 else
507 create();
508 }
509
510 void
511 KeychainImpl::create()
512 {
513 StLock<Mutex>_(mMutex);
514
515 AclFactory aclFactory;
516 AclFactory::AnyResourceContext rcc(aclFactory.unlockCred());
517 create(&rcc);
518
519 // Now that we've created, trigger setting the defaultCredentials
520 mDb->open();
521 }
522
523 void KeychainImpl::createWithBlob(CssmData &blob)
524 {
525 StLock<Mutex>_(mMutex);
526
527 mDb->dbInfo(&Schema::DBInfo);
528 AclFactory aclFactory;
529 AclFactory::AnyResourceContext rcc(aclFactory.unlockCred());
530 mDb->resourceControlContext (&rcc);
531 try
532 {
533 mDb->createWithBlob(blob);
534 }
535 catch (...)
536 {
537 mDb->resourceControlContext(NULL);
538 mDb->dbInfo(NULL);
539 throw;
540 }
541 mDb->resourceControlContext(NULL);
542 mDb->dbInfo(NULL); // Clear the schema (to not break an open call later)
543 globals().storageManager.created(Keychain(this));
544
545 KCEventNotifier::PostKeychainEvent (kSecKeychainListChangedEvent, this, NULL);
546 }
547
548 void
549 KeychainImpl::create(const ResourceControlContext *rcc)
550 {
551 StLock<Mutex>_(mMutex);
552
553 mDb->dbInfo(&Schema::DBInfo); // Set the schema (to force a create)
554 mDb->resourceControlContext(rcc);
555 try
556 {
557 mDb->create();
558 }
559 catch (...)
560 {
561 mDb->resourceControlContext(NULL);
562 mDb->dbInfo(NULL); // Clear the schema (to not break an open call later)
563 throw;
564 }
565 mDb->resourceControlContext(NULL);
566 mDb->dbInfo(NULL); // Clear the schema (to not break an open call later)
567 globals().storageManager.created(Keychain(this));
568 }
569
570 void
571 KeychainImpl::open()
572 {
573 StLock<Mutex>_(mMutex);
574
575 mDb->open();
576 }
577
578 void
579 KeychainImpl::lock()
580 {
581 StLock<Mutex>_(mMutex);
582
583 mDb->lock();
584 }
585
586 void
587 KeychainImpl::unlock()
588 {
589 StLock<Mutex>_(mMutex);
590
591 mDb->unlock();
592 }
593
594 void
595 KeychainImpl::unlock(const CssmData &password)
596 {
597 StLock<Mutex>_(mMutex);
598
599 mDb->unlock(password);
600 }
601
602 void
603 KeychainImpl::unlock(ConstStringPtr password)
604 {
605 StLock<Mutex>_(mMutex);
606
607 if (password)
608 {
609 const CssmData data(const_cast<unsigned char *>(&password[1]), password[0]);
610 unlock(data);
611 }
612 else
613 unlock();
614 }
615
616 void
617 KeychainImpl::stash()
618 {
619 StLock<Mutex>_(mMutex);
620
621 mDb->stash();
622 }
623
624 void
625 KeychainImpl::stashCheck()
626 {
627 StLock<Mutex>_(mMutex);
628
629 mDb->stashCheck();
630 }
631
632 void
633 KeychainImpl::getSettings(uint32 &outIdleTimeOut, bool &outLockOnSleep)
634 {
635 StLock<Mutex>_(mMutex);
636
637 mDb->getSettings(outIdleTimeOut, outLockOnSleep);
638 }
639
640 void
641 KeychainImpl::setSettings(uint32 inIdleTimeOut, bool inLockOnSleep)
642 {
643 StLock<Mutex>_(mMutex);
644
645 // The .Mac syncing code only makes sense for the AppleFile CSP/DL,
646 // but other DLs such as the OCSP and LDAP DLs do not expose a way to
647 // change settings or the password. To make a minimal change that only affects
648 // the smartcard case, we only look for that CSP/DL
649
650 bool isSmartcard = (mDb->dl()->guid() == gGuidAppleSdCSPDL);
651
652 // get the old keychain blob so that we can tell .Mac to resync it
653 CssmAutoData oldBlob(mDb ->allocator());
654 if (!isSmartcard)
655 mDb->copyBlob(oldBlob.get());
656
657 mDb->setSettings(inIdleTimeOut, inLockOnSleep);
658 }
659
660 void
661 KeychainImpl::changePassphrase(UInt32 oldPasswordLength, const void *oldPassword,
662 UInt32 newPasswordLength, const void *newPassword)
663 {
664 StLock<Mutex>_(mMutex);
665
666 bool isSmartcard = (mDb->dl()->guid() == gGuidAppleSdCSPDL);
667
668 TrackingAllocator allocator(Allocator::standard());
669 AutoCredentials cred = AutoCredentials(allocator);
670 if (oldPassword)
671 {
672 const CssmData &oldPass = *new(allocator) CssmData(const_cast<void *>(oldPassword), oldPasswordLength);
673 TypedList &oldList = *new(allocator) TypedList(allocator, CSSM_SAMPLE_TYPE_KEYCHAIN_LOCK);
674 oldList.append(new(allocator) ListElement(CSSM_SAMPLE_TYPE_PASSWORD));
675 oldList.append(new(allocator) ListElement(oldPass));
676 cred += oldList;
677 }
678
679 if (newPassword)
680 {
681 const CssmData &newPass = *new(allocator) CssmData(const_cast<void *>(newPassword), newPasswordLength);
682 TypedList &newList = *new(allocator) TypedList(allocator, CSSM_SAMPLE_TYPE_KEYCHAIN_CHANGE_LOCK);
683 newList.append(new(allocator) ListElement(CSSM_SAMPLE_TYPE_PASSWORD));
684 newList.append(new(allocator) ListElement(newPass));
685 cred += newList;
686 }
687
688 // get the old keychain blob so that we can tell .Mac to resync it
689 CssmAutoData oldBlob(mDb->allocator());
690 if (!isSmartcard)
691 mDb->copyBlob(oldBlob.get());
692
693 mDb->changePassphrase(&cred);
694 }
695
696 void
697 KeychainImpl::changePassphrase(ConstStringPtr oldPassword, ConstStringPtr newPassword)
698 {
699 StLock<Mutex>_(mMutex);
700
701 const void *oldPtr, *newPtr;
702 UInt32 oldLen, newLen;
703 if (oldPassword)
704 {
705 oldLen = oldPassword[0];
706 oldPtr = oldPassword + 1;
707 }
708 else
709 {
710 oldLen = 0;
711 oldPtr = NULL;
712 }
713
714 if (newPassword)
715 {
716 newLen = newPassword[0];
717 newPtr = newPassword + 1;
718 }
719 else
720 {
721 newLen = 0;
722 newPtr = NULL;
723 }
724
725 changePassphrase(oldLen, oldPtr, newLen, newPtr);
726 }
727
728 void
729 KeychainImpl::authenticate(const CSSM_ACCESS_CREDENTIALS *cred)
730 {
731 StLock<Mutex>_(mMutex);
732
733 if (!exists())
734 MacOSError::throwMe(errSecNoSuchKeychain);
735
736 MacOSError::throwMe(errSecUnimplemented);
737 }
738
739 UInt32
740 KeychainImpl::status() const
741 {
742 // @@@ We should figure out the read/write status though a DL passthrough
743 // or some other way. Also should locked be unlocked read only or just
744 // read-only?
745 return (mDb->isLocked() ? 0 : kSecUnlockStateStatus | kSecWritePermStatus)
746 | kSecReadPermStatus;
747 }
748
749 bool
750 KeychainImpl::exists()
751 {
752 StLock<Mutex>_(mMutex);
753
754 bool exists = true;
755 try
756 {
757 open();
758 // Ok to leave the mDb open since it will get closed when it goes away.
759 }
760 catch (const CssmError &e)
761 {
762 if (e.osStatus() != CSSMERR_DL_DATASTORE_DOESNOT_EXIST)
763 throw;
764 exists = false;
765 }
766
767 return exists;
768 }
769
770 bool
771 KeychainImpl::isActive() const
772 {
773 return mDb->isActive();
774 }
775
776 void KeychainImpl::completeAdd(Item &inItem, PrimaryKey &primaryKey)
777 {
778 // The inItem shouldn't be in the cache yet
779 assert(!inItem->inCache());
780
781 // Insert inItem into mDbItemMap with key primaryKey. p.second will be
782 // true if it got inserted. If not p.second will be false and p.first
783 // will point to the current entry with key primaryKey.
784 StLock<Mutex> _(mDbItemMapMutex);
785 pair<DbItemMap::iterator, bool> p =
786 mDbItemMap.insert(DbItemMap::value_type(primaryKey, inItem.get()));
787 if (!p.second)
788 {
789 // There was already an ItemImpl * in mDbItemMap with key
790 // primaryKey. Remove it, and try the add again.
791 ItemImpl *oldItem = p.first->second;
792
793 // @@@ If this happens we are breaking our API contract of
794 // uniquifying items. We really need to insert the item into the
795 // map before we start the add. And have the item be in an
796 // "is being added" state.
797 secnotice("keychain", "add of new item %p somehow replaced %p",
798 inItem.get(), oldItem);
799
800 mDbItemMap.erase(p.first);
801 oldItem->inCache(false);
802 forceRemoveFromCache(oldItem);
803 mDbItemMap.insert(DbItemMap::value_type(primaryKey, inItem.get()));
804 }
805
806 inItem->inCache(true);
807 }
808
809 void
810 KeychainImpl::addCopy(Item &inItem)
811 {
812 Keychain keychain(this);
813 PrimaryKey primaryKey = inItem->addWithCopyInfo(keychain, true);
814 completeAdd(inItem, primaryKey);
815 postEvent(kSecAddEvent, inItem);
816 }
817
818 void
819 KeychainImpl::add(Item &inItem)
820 {
821 Keychain keychain(this);
822 PrimaryKey primaryKey = inItem->add(keychain);
823 completeAdd(inItem, primaryKey);
824 postEvent(kSecAddEvent, inItem);
825 }
826
827 void
828 KeychainImpl::didUpdate(const Item &inItem, PrimaryKey &oldPK,
829 PrimaryKey &newPK)
830 {
831 // If the primary key hasn't changed we don't need to update mDbItemMap.
832 if (oldPK != newPK)
833 {
834 // If inItem isn't in the cache we don't need to update mDbItemMap.
835 assert(inItem->inCache());
836 if (inItem->inCache())
837 {
838 StLock<Mutex> _(mDbItemMapMutex);
839 // First remove the entry for inItem in mDbItemMap with key oldPK.
840 DbItemMap::iterator it = mDbItemMap.find(oldPK);
841 if (it != mDbItemMap.end() && (ItemImpl*) it->second == inItem.get())
842 mDbItemMap.erase(it);
843
844 // Insert inItem into mDbItemMap with key newPK. p.second will be
845 // true if it got inserted. If not p.second will be false and
846 // p.first will point to the current entry with key newPK.
847 pair<DbItemMap::iterator, bool> p =
848 mDbItemMap.insert(DbItemMap::value_type(newPK, inItem.get()));
849 if (!p.second)
850 {
851 // There was already an ItemImpl * in mDbItemMap with key
852 // primaryKey. Remove it, and try the add again.
853 ItemImpl *oldItem = p.first->second;
854
855 // @@@ If this happens we are breaking our API contract of
856 // uniquifying items. We really need to insert the item into
857 // the map with the new primary key before we start the update.
858 // And have the item be in an "is being updated" state.
859 secnotice("keychain", "update of item %p somehow replaced %p",
860 inItem.get(), oldItem);
861
862 mDbItemMap.erase(p.first);
863 oldItem->inCache(false);
864 forceRemoveFromCache(oldItem);
865 mDbItemMap.insert(DbItemMap::value_type(newPK, inItem.get()));
866 }
867 }
868 }
869
870 // Item updates now are technically a delete and re-add, so post these events instead of kSecUpdateEvent
871 postEvent(kSecDeleteEvent, inItem, oldPK);
872 postEvent(kSecAddEvent, inItem);
873 }
874
875 void
876 KeychainImpl::deleteItem(Item &inoutItem)
877 {
878 {
879 // item must be persistent
880 if (!inoutItem->isPersistent())
881 MacOSError::throwMe(errSecInvalidItemRef);
882
883 secinfo("kcnotify", "starting deletion of item %p", inoutItem.get());
884
885 DbUniqueRecord uniqueId = inoutItem->dbUniqueRecord();
886 PrimaryKey primaryKey = inoutItem->primaryKey();
887 uniqueId->deleteRecord();
888
889 // Move the item from mDbItemMap to mDbDeletedItemMap. We need the item
890 // to give to the client process when we receive the kSecDeleteEvent
891 // notification, but if that notification never arrives, we don't want
892 // the item hanging around. When didDeleteItem is called by CCallbackMgr,
893 // we'll remove all traces of the item.
894
895 if (inoutItem->inCache()) {
896 StLock<Mutex> _(mDbItemMapMutex);
897 StLock<Mutex> __(mDbDeletedItemMapMutex);
898 // Only look for it if it's in the cache
899 DbItemMap::iterator it = mDbItemMap.find(primaryKey);
900
901 if (it != mDbItemMap.end() && (ItemImpl*) it->second == inoutItem.get()) {
902 mDbDeletedItemMap.insert(DbItemMap::value_type(primaryKey, it->second));
903 mDbItemMap.erase(it);
904 }
905 }
906
907 // Post the notification for the item deletion with
908 // the primaryKey obtained when the item still existed
909 }
910
911 postEvent(kSecDeleteEvent, inoutItem);
912 }
913
914 void KeychainImpl::changeDatabase(CssmClient::Db db)
915 {
916 StLock<Mutex>_(mDbMutex);
917 mDb = db;
918 mDb->defaultCredentials(this);
919 }
920
921
922 CssmClient::CSP
923 KeychainImpl::csp()
924 {
925 StLock<Mutex>_(mMutex);
926
927 if (!mDb->dl()->subserviceMask() & CSSM_SERVICE_CSP)
928 MacOSError::throwMe(errSecInvalidKeychain);
929
930 // Try to cast first to a CSPDL to handle case where we don't have an SSDb
931 try
932 {
933 CssmClient::CSPDL cspdl(dynamic_cast<CssmClient::CSPDLImpl *>(&*mDb->dl()));
934 return CSP(cspdl);
935 }
936 catch (...)
937 {
938 SSDbImpl* impl = dynamic_cast<SSDbImpl *>(&(*mDb));
939 if (impl == NULL)
940 {
941 CssmError::throwMe(CSSMERR_CSSM_INVALID_POINTER);
942 }
943
944 SSDb ssDb(impl);
945 return ssDb->csp();
946 }
947 }
948
949 PrimaryKey
950 KeychainImpl::makePrimaryKey(CSSM_DB_RECORDTYPE recordType, DbUniqueRecord &uniqueId)
951 {
952 StLock<Mutex>_(mMutex);
953
954 DbAttributes primaryKeyAttrs(uniqueId->database());
955 primaryKeyAttrs.recordType(recordType);
956 gatherPrimaryKeyAttributes(primaryKeyAttrs);
957 uniqueId->get(&primaryKeyAttrs, NULL);
958 return PrimaryKey(primaryKeyAttrs);
959 }
960
961 PrimaryKey
962 KeychainImpl::makePrimaryKey(CSSM_DB_RECORDTYPE recordType, DbAttributes* currentAttributes)
963 {
964 StLock<Mutex>_(mMutex);
965
966 DbAttributes primaryKeyAttrs;
967 primaryKeyAttrs.recordType(recordType);
968 gatherPrimaryKeyAttributes(primaryKeyAttrs);
969
970 for(int i = 0; i < primaryKeyAttrs.size(); i++) {
971 CssmDbAttributeData& attr = primaryKeyAttrs[i];
972
973 CssmDbAttributeData * actual = currentAttributes->find(attr.info());
974 if(actual) {
975 attr.set(*actual, Allocator::standard());
976 }
977 }
978 return PrimaryKey(primaryKeyAttrs);
979 }
980
981 const CssmAutoDbRecordAttributeInfo &
982 KeychainImpl::primaryKeyInfosFor(CSSM_DB_RECORDTYPE recordType)
983 {
984 StLock<Mutex>_(mMutex);
985
986 try
987 {
988 return keychainSchema()->primaryKeyInfosFor(recordType);
989 }
990 catch (const CommonError &error)
991 {
992 switch (error.osStatus())
993 {
994 case errSecNoSuchClass:
995 case CSSMERR_DL_INVALID_RECORDTYPE:
996 resetSchema();
997 return keychainSchema()->primaryKeyInfosFor(recordType);
998 default:
999 throw;
1000 }
1001 }
1002 }
1003
1004 void KeychainImpl::gatherPrimaryKeyAttributes(DbAttributes& primaryKeyAttrs)
1005 {
1006 StLock<Mutex> _(mMutex);
1007
1008 const CssmAutoDbRecordAttributeInfo &infos =
1009 primaryKeyInfosFor(primaryKeyAttrs.recordType());
1010
1011 // @@@ fix this to not copy info.
1012 for (uint32 i = 0; i < infos.size(); i++)
1013 primaryKeyAttrs.add(infos.at(i));
1014 }
1015
1016 ItemImpl *
1017 KeychainImpl::_lookupItem(const PrimaryKey &primaryKey)
1018 {
1019 StLock<Mutex> _(mDbItemMapMutex);
1020 DbItemMap::iterator it = mDbItemMap.find(primaryKey);
1021 if (it != mDbItemMap.end())
1022 {
1023 return it->second;
1024 }
1025
1026 return NULL;
1027 }
1028
1029 ItemImpl *
1030 KeychainImpl::_lookupDeletedItemOnly(const PrimaryKey &primaryKey)
1031 {
1032 StLock<Mutex> _(mDbDeletedItemMapMutex);
1033 DbItemMap::iterator it = mDbDeletedItemMap.find(primaryKey);
1034 if (it != mDbDeletedItemMap.end())
1035 {
1036 return it->second;
1037 }
1038
1039 return NULL;
1040 }
1041
1042 Item
1043 KeychainImpl::item(const PrimaryKey &primaryKey)
1044 {
1045 StLock<Mutex>_(mMutex);
1046
1047 // Lookup the item in the map while holding the apiLock.
1048 ItemImpl *itemImpl = _lookupItem(primaryKey);
1049 if (itemImpl) {
1050 return Item(itemImpl);
1051 }
1052
1053 try
1054 {
1055 // We didn't find it so create a new item with just a keychain and
1056 // a primary key. Some other thread might have beaten
1057 // us to creating this item and adding it to the cache. If that
1058 // happens we retry the lookup.
1059 return Item(this, primaryKey);
1060 }
1061 catch (const MacOSError &e)
1062 {
1063 // If the item creation failed because some other thread already
1064 // inserted this item into the cache we retry the lookup.
1065 if (e.osStatus() == errSecDuplicateItem)
1066 {
1067 // Lookup the item in the map while holding the apiLock.
1068 ItemImpl *itemImpl = _lookupItem(primaryKey);
1069 if (itemImpl)
1070 return Item(itemImpl);
1071 }
1072 throw;
1073 }
1074 }
1075 // Check for an item that may have been deleted.
1076 Item
1077 KeychainImpl::itemdeleted(const PrimaryKey& primaryKey) {
1078 StLock<Mutex>_(mMutex);
1079
1080 Item i = _lookupDeletedItemOnly(primaryKey);
1081 if(i.get()) {
1082 return i;
1083 } else {
1084 return item(primaryKey);
1085 }
1086 }
1087
1088
1089 Item
1090 KeychainImpl::item(CSSM_DB_RECORDTYPE recordType, DbUniqueRecord &uniqueId)
1091 {
1092 StLock<Mutex>_(mMutex);
1093
1094 PrimaryKey primaryKey = makePrimaryKey(recordType, uniqueId);
1095 {
1096 // Lookup the item in the map while holding the apiLock.
1097 ItemImpl *itemImpl = _lookupItem(primaryKey);
1098
1099 if (itemImpl)
1100 {
1101 return Item(itemImpl);
1102 }
1103 }
1104
1105 try
1106 {
1107 // We didn't find it so create a new item with a keychain, a primary key
1108 // and a DbUniqueRecord. However since we aren't holding
1109 // globals().apiLock anymore some other thread might have beaten
1110 // us to creating this item and adding it to the cache. If that
1111 // happens we retry the lookup.
1112 return Item(this, primaryKey, uniqueId);
1113 }
1114 catch (const MacOSError &e)
1115 {
1116 // If the item creation failed because some other thread already
1117 // inserted this item into the cache we retry the lookup.
1118 if (e.osStatus() == errSecDuplicateItem)
1119 {
1120 // Lookup the item in the map while holding the apiLock.
1121 ItemImpl *itemImpl = _lookupItem(primaryKey);
1122 if (itemImpl)
1123 return Item(itemImpl);
1124 }
1125 throw;
1126 }
1127 }
1128
1129 KeychainSchema
1130 KeychainImpl::keychainSchema()
1131 {
1132 StLock<Mutex>_(mMutex);
1133 if (!mKeychainSchema)
1134 mKeychainSchema = KeychainSchema(mDb);
1135
1136 return mKeychainSchema;
1137 }
1138
1139 void KeychainImpl::resetSchema()
1140 {
1141 mKeychainSchema = NULL; // re-fetch it from db next time
1142 }
1143
1144
1145 // Called from DbItemImpl's constructor (so it is only partially constructed),
1146 // add it to the map.
1147 void
1148 KeychainImpl::addItem(const PrimaryKey &primaryKey, ItemImpl *dbItemImpl)
1149 {
1150 StLock<Mutex>_(mMutex);
1151
1152 // The dbItemImpl shouldn't be in the cache yet
1153 assert(!dbItemImpl->inCache());
1154
1155 // Insert dbItemImpl into mDbItemMap with key primaryKey. p.second will
1156 // be true if it got inserted. If not p.second will be false and p.first
1157 // will point to the current entry with key primaryKey.
1158 StLock<Mutex> __(mDbItemMapMutex);
1159 pair<DbItemMap::iterator, bool> p =
1160 mDbItemMap.insert(DbItemMap::value_type(primaryKey, dbItemImpl));
1161
1162 if (!p.second)
1163 {
1164 // There was already an ItemImpl * in mDbItemMap with key primaryKey.
1165 // There is a race condition here when being called in multiple threads
1166 // We might have added an item using add and received a notification at
1167 // the same time.
1168 MacOSError::throwMe(errSecDuplicateItem);
1169 }
1170
1171 dbItemImpl->inCache(true);
1172 }
1173
1174 void
1175 KeychainImpl::didDeleteItem(ItemImpl *inItemImpl)
1176 {
1177 StLock<Mutex>_(mMutex);
1178
1179 // Called by CCallbackMgr
1180 secinfo("kcnotify", "%p notified that item %p was deleted", this, inItemImpl);
1181 removeItem(inItemImpl->primaryKey(), inItemImpl);
1182 }
1183
1184 void
1185 KeychainImpl::removeItem(const PrimaryKey &primaryKey, ItemImpl *inItemImpl)
1186 {
1187 StLock<Mutex>_(mMutex);
1188
1189 // If inItemImpl isn't in the cache to begin with we are done.
1190 if (!inItemImpl->inCache())
1191 return;
1192
1193 {
1194 StLock<Mutex> _(mDbItemMapMutex);
1195 DbItemMap::iterator it = mDbItemMap.find(primaryKey);
1196 if (it != mDbItemMap.end() && (ItemImpl*) it->second == inItemImpl) {
1197 mDbItemMap.erase(it);
1198 }
1199 } // drop mDbItemMapMutex
1200
1201 {
1202 StLock<Mutex> _(mDbDeletedItemMapMutex);
1203 DbItemMap::iterator it = mDbDeletedItemMap.find(primaryKey);
1204 if (it != mDbDeletedItemMap.end() && (ItemImpl*) it->second == inItemImpl) {
1205 mDbDeletedItemMap.erase(it);
1206 }
1207 } // drop mDbDeletedItemMapMutex
1208
1209 inItemImpl->inCache(false);
1210 }
1211
1212 void
1213 KeychainImpl::forceRemoveFromCache(ItemImpl* inItemImpl) {
1214 try {
1215 // Wrap all this in a try-block and ignore all errors - we're trying to clean up these maps
1216 {
1217 StLock<Mutex> _(mDbItemMapMutex);
1218 for(DbItemMap::iterator it = mDbItemMap.begin(); it != mDbItemMap.end(); ) {
1219 if(it->second == inItemImpl) {
1220 // Increment the iterator, but use its pre-increment value for the erase
1221 it->second->inCache(false);
1222 mDbItemMap.erase(it++);
1223 } else {
1224 it++;
1225 }
1226 }
1227 } // drop mDbItemMapMutex
1228
1229 {
1230 StLock<Mutex> _(mDbDeletedItemMapMutex);
1231 for(DbItemMap::iterator it = mDbDeletedItemMap.begin(); it != mDbDeletedItemMap.end(); ) {
1232 if(it->second == inItemImpl) {
1233 // Increment the iterator, but use its pre-increment value for the erase
1234 it->second->inCache(false);
1235 mDbDeletedItemMap.erase(it++);
1236 } else {
1237 it++;
1238 }
1239 }
1240 } // drop mDbDeletedItemMapMutex
1241 } catch(UnixError ue) {
1242 secnotice("keychain", "caught UnixError: %d %s", ue.unixError(), ue.what());
1243 } catch (CssmError cssme) {
1244 const char* errStr = cssmErrorString(cssme.error);
1245 secnotice("keychain", "caught CssmError: %d %s", (int) cssme.error, errStr);
1246 } catch (MacOSError mose) {
1247 secnotice("keychain", "MacOSError: %d", (int)mose.osStatus());
1248 } catch(...) {
1249 secnotice("keychain", "Unknown error");
1250 }
1251 }
1252
1253 void
1254 KeychainImpl::getAttributeInfoForItemID(CSSM_DB_RECORDTYPE itemID,
1255 SecKeychainAttributeInfo **Info)
1256 {
1257 StLock<Mutex>_(mMutex);
1258
1259 try
1260 {
1261 keychainSchema()->getAttributeInfoForRecordType(itemID, Info);
1262 }
1263 catch (const CommonError &error)
1264 {
1265 switch (error.osStatus())
1266 {
1267 case errSecNoSuchClass:
1268 case CSSMERR_DL_INVALID_RECORDTYPE:
1269 resetSchema();
1270 keychainSchema()->getAttributeInfoForRecordType(itemID, Info);
1271 default:
1272 throw;
1273 }
1274 }
1275 }
1276
1277 void
1278 KeychainImpl::freeAttributeInfo(SecKeychainAttributeInfo *Info)
1279 {
1280 free(Info->tag);
1281 free(Info->format);
1282 free(Info);
1283 }
1284
1285 CssmDbAttributeInfo
1286 KeychainImpl::attributeInfoFor(CSSM_DB_RECORDTYPE recordType, UInt32 tag)
1287 {
1288 StLock<Mutex>_(mMutex);
1289
1290 try
1291 {
1292 return keychainSchema()->attributeInfoFor(recordType, tag);
1293 }
1294 catch (const CommonError &error)
1295 {
1296 switch (error.osStatus())
1297 {
1298 case errSecNoSuchClass:
1299 case CSSMERR_DL_INVALID_RECORDTYPE:
1300 resetSchema();
1301 return keychainSchema()->attributeInfoFor(recordType, tag);
1302 default:
1303 throw;
1304 }
1305 }
1306 }
1307
1308 void
1309 KeychainImpl::recode(const CssmData &data, const CssmData &extraData)
1310 {
1311 StLock<Mutex>_(mMutex);
1312
1313 mDb->recode(data, extraData);
1314 }
1315
1316 void
1317 KeychainImpl::copyBlob(CssmData &data)
1318 {
1319 StLock<Mutex>_(mMutex);
1320
1321 mDb->copyBlob(data);
1322 }
1323
1324 void
1325 KeychainImpl::setBatchMode(Boolean mode, Boolean rollback)
1326 {
1327 StLock<Mutex>_(mMutex);
1328
1329 mDb->setBatchMode(mode, rollback);
1330 mIsInBatchMode = mode;
1331 if (!mode)
1332 {
1333 if (!rollback) // was batch mode being turned off without an abort?
1334 {
1335 // dump the buffer
1336 EventBuffer::iterator it = mEventBuffer->begin();
1337 while (it != mEventBuffer->end())
1338 {
1339 PrimaryKey primaryKey;
1340 if (it->item)
1341 {
1342 primaryKey = it->item->primaryKey();
1343 }
1344
1345 KCEventNotifier::PostKeychainEvent(it->kcEvent, mDb->dlDbIdentifier(), primaryKey);
1346
1347 ++it;
1348 }
1349
1350 }
1351
1352 // notify that a keychain has changed in too many ways to count
1353 KCEventNotifier::PostKeychainEvent(kSecKeychainLeftBatchModeEvent);
1354 mEventBuffer->clear();
1355 }
1356 else
1357 {
1358 KCEventNotifier::PostKeychainEvent(kSecKeychainEnteredBatchModeEvent);
1359 }
1360 }
1361 void
1362 KeychainImpl::postEvent(SecKeychainEvent kcEvent, ItemImpl* item)
1363 {
1364 postEvent(kcEvent, item, NULL);
1365 }
1366
1367 void
1368 KeychainImpl::postEvent(SecKeychainEvent kcEvent, ItemImpl* item, PrimaryKey pk)
1369 {
1370 PrimaryKey primaryKey;
1371
1372 if(pk.get()) {
1373 primaryKey = pk;
1374 } else {
1375 StLock<Mutex>_(mMutex);
1376
1377 if (item != NULL)
1378 {
1379 primaryKey = item->primaryKey();
1380 }
1381 }
1382
1383 if (!mIsInBatchMode)
1384 {
1385 KCEventNotifier::PostKeychainEvent(kcEvent, mDb->dlDbIdentifier(), primaryKey);
1386 }
1387 else
1388 {
1389 StLock<Mutex>_(mMutex);
1390
1391 EventItem it;
1392 it.kcEvent = kcEvent;
1393 if (item != NULL)
1394 {
1395 it.item = item;
1396 }
1397
1398 mEventBuffer->push_back (it);
1399 }
1400 }
1401
1402 void KeychainImpl::tickle() {
1403 if(!mSuppressTickle) {
1404 globals().storageManager.tickleKeychain(this);
1405 }
1406 }
1407
1408
1409 bool KeychainImpl::performKeychainUpgradeIfNeeded() {
1410 // Grab this keychain's mutex. This might not be sufficient, since the
1411 // keychain might have outstanding cursors. We'll grab the RWLock later if needed.
1412 StLock<Mutex>_(mMutex);
1413
1414 if(!globals().integrityProtection()) {
1415 secnotice("integrity", "skipping upgrade for %s due to global integrity protection being disabled", mDb->name());
1416 return false;
1417 }
1418
1419 // We need a CSP database for 'upgrade' to be meaningful
1420 if((mDb->dl()->subserviceMask() & CSSM_SERVICE_CSP) == 0) {
1421 return false;
1422 }
1423
1424 // We only want to upgrade file-based Apple keychains. Check the GUID.
1425 if(mDb->dl()->guid() != gGuidAppleCSPDL) {
1426 secnotice("integrity", "skipping upgrade for %s due to guid mismatch\n", mDb->name());
1427 return false;
1428 }
1429
1430 // If we've already attempted an upgrade on this keychain, don't bother again
1431 if(mAttemptedUpgrade) {
1432 return false;
1433 }
1434
1435 // Don't upgrade the System root certificate keychain (to make old tp code happy)
1436 if(strncmp(mDb->name(), SYSTEM_ROOT_STORE_PATH, strlen(SYSTEM_ROOT_STORE_PATH)) == 0) {
1437 secnotice("integrity", "skipping upgrade for %s\n", mDb->name());
1438 return false;
1439 }
1440
1441 uint32 dbBlobVersion = SecurityServer::DbBlob::version_MacOS_10_0;
1442
1443 try {
1444 dbBlobVersion = mDb->dbBlobVersion();
1445 } catch (CssmError cssme) {
1446 if(cssme.error == CSSMERR_DL_DATASTORE_DOESNOT_EXIST) {
1447 // oh well! We tried to get the blob version of a database
1448 // that doesn't exist. It doesn't need migration, so do nothing.
1449 secnotice("integrity", "dbBlobVersion() failed for a non-existent database");
1450 return false;
1451 } else {
1452 // Some other error occurred. We can't upgrade this keychain, so fail.
1453 const char* errStr = cssmErrorString(cssme.error);
1454 secnotice("integrity", "dbBlobVersion() failed for a CssmError: %d %s", (int) cssme.error, errStr);
1455 return false;
1456 }
1457 } catch (...) {
1458 secnotice("integrity", "dbBlobVersion() failed for an unknown reason");
1459 return false;
1460 }
1461
1462
1463
1464 // Check the location of this keychain
1465 string path = mDb->name();
1466 string keychainDbPath = StorageManager::makeKeychainDbFilename(path);
1467
1468 bool inHomeLibraryKeychains = StorageManager::pathInHomeLibraryKeychains(path);
1469
1470 string keychainDbSuffix = "-db";
1471 bool endsWithKeychainDb = (path.size() > keychainDbSuffix.size() && (0 == path.compare(path.size() - keychainDbSuffix.size(), keychainDbSuffix.size(), keychainDbSuffix)));
1472
1473 bool isSystemKeychain = (0 == path.compare("/Library/Keychains/System.keychain"));
1474
1475 bool result = false;
1476
1477 if(inHomeLibraryKeychains && endsWithKeychainDb && dbBlobVersion == SecurityServer::DbBlob::version_MacOS_10_0) {
1478 // something has gone horribly wrong: an old-versioned keychain has a .keychain-db name. Rename it.
1479 string basePath = path;
1480 basePath.erase(basePath.end()-3, basePath.end());
1481
1482 attemptKeychainRename(path, basePath, dbBlobVersion);
1483
1484 // If we moved to a good path, we might still want to perform the upgrade. Update our variables.
1485 path = mDb->name();
1486
1487 try {
1488 dbBlobVersion = mDb->dbBlobVersion();
1489 } catch (CssmError cssme) {
1490 const char* errStr = cssmErrorString(cssme.error);
1491 secnotice("integrity", "dbBlobVersion() after a rename failed for a CssmError: %d %s", (int) cssme.error, errStr);
1492 return false;
1493 } catch (...) {
1494 secnotice("integrity", "dbBlobVersion() failed for an unknown reason after a rename");
1495 return false;
1496 }
1497
1498 endsWithKeychainDb = (path.size() > keychainDbSuffix.size() && (0 == path.compare(path.size() - keychainDbSuffix.size(), keychainDbSuffix.size(), keychainDbSuffix)));
1499 keychainDbPath = StorageManager::makeKeychainDbFilename(path);
1500 secnotice("integrity", "after rename, our database thinks that it is %s", path.c_str());
1501 }
1502
1503 // Migrate an old keychain in ~/Library/Keychains
1504 if(inHomeLibraryKeychains && dbBlobVersion != SecurityServer::DbBlob::version_partition && !endsWithKeychainDb) {
1505 // We can only attempt to migrate an unlocked keychain.
1506 if(mDb->isLocked()) {
1507 // However, it's possible that while we weren't doing any keychain operations, someone upgraded the keychain,
1508 // and then locked it. No way around hitting the filesystem here: check for the existence of a new file and,
1509 // if no new file exists, quit.
1510 DLDbIdentifier mungedDLDbIdentifier = StorageManager::mungeDLDbIdentifier(mDb->dlDbIdentifier(), false);
1511 string mungedPath(mungedDLDbIdentifier.dbName());
1512
1513 // If this matches the file we already have, skip the upgrade. Otherwise, continue.
1514 if(mungedPath == path) {
1515 secnotice("integrity", "skipping upgrade for locked keychain %s\n", mDb->name());
1516 return false;
1517 }
1518 }
1519
1520 result = keychainMigration(path, dbBlobVersion, keychainDbPath, SecurityServer::DbBlob::version_partition);
1521 } else if(inHomeLibraryKeychains && dbBlobVersion == SecurityServer::DbBlob::version_partition && !endsWithKeychainDb) {
1522 // This is a new-style keychain with the wrong name, try to rename it
1523 attemptKeychainRename(path, keychainDbPath, dbBlobVersion);
1524 result = true;
1525 } else if(isSystemKeychain && dbBlobVersion == SecurityServer::DbBlob::version_partition) {
1526 // Try to "unupgrade" the system keychain, to clean up our old issues
1527 secnotice("integrity", "attempting downgrade for %s version %d (%d %d %d)", path.c_str(), dbBlobVersion, inHomeLibraryKeychains, endsWithKeychainDb, isSystemKeychain);
1528
1529 // First step: acquire the credentials to allow for ACL modification
1530 SecurityServer::SystemKeychainKey skk(kSystemUnlockFile);
1531 if(skk.valid()) {
1532 // We've managed to read the key; now, create credentials using it
1533 CssmClient::Key systemKeychainMasterKey(csp(), skk.key(), true);
1534 CssmClient::AclFactory::MasterKeyUnlockCredentials creds(systemKeychainMasterKey, Allocator::standard(Allocator::sensitive));
1535
1536 // Attempt the downgrade, using our master key as the ACL override
1537 result = keychainMigration(path, dbBlobVersion, path, SecurityServer::DbBlob::version_MacOS_10_0, creds.getAccessCredentials());
1538 } else {
1539 secnotice("integrity", "Couldn't read System.keychain key, skipping update");
1540 }
1541 } else {
1542 secnotice("integrity", "not attempting migration for %s version %d (%d %d %d)", path.c_str(), dbBlobVersion, inHomeLibraryKeychains, endsWithKeychainDb, isSystemKeychain);
1543
1544 // Since we don't believe any migration needs to be done here, mark the
1545 // migration as "attempted" to short-circuit future checks.
1546 mAttemptedUpgrade = true;
1547 }
1548
1549 // We might have changed our location on disk. Let StorageManager know.
1550 globals().storageManager.registerKeychainImpl(this);
1551
1552 // if we attempted a migration, try to clean up leftover files from <rdar://problem/23950408> XARA backup have provided me with 12GB of login keychain copies
1553 if(result) {
1554 string pattern = path + "_*_backup";
1555 glob_t pglob = {};
1556 secnotice("integrity", "globbing for %s", pattern.c_str());
1557 int globresult = glob(pattern.c_str(), GLOB_MARK, NULL, &pglob);
1558 if(globresult == 0) {
1559 secnotice("integrity", "glob: %lu results", pglob.gl_pathc);
1560 if(pglob.gl_pathc > 10) {
1561 // There are more than 10 backup files, indicating a problem.
1562 // Delete all but one of them. Under rdar://23950408, they should all be identical.
1563 secnotice("integrity", "saving backup file: %s", pglob.gl_pathv[0]);
1564 for(int i = 1; i < pglob.gl_pathc; i++) {
1565 secnotice("integrity", "cleaning up backup file: %s", pglob.gl_pathv[i]);
1566 // ignore return code; this is a best-effort cleanup
1567 unlink(pglob.gl_pathv[i]);
1568 }
1569 }
1570
1571 struct stat st;
1572 bool pathExists = (::stat(path.c_str(), &st) == 0);
1573 bool keychainDbPathExists = (::stat(keychainDbPath.c_str(), &st) == 0);
1574
1575 if(!pathExists && keychainDbPathExists && pglob.gl_pathc >= 1) {
1576 // We have a file at keychainDbPath, no file at path, and at least one backup keychain file.
1577 //
1578 // Move the backup file to path, to simulate the current "split-world" view,
1579 // which copies from path to keychainDbPath, then modifies keychainDbPath.
1580 secnotice("integrity", "moving backup file %s to %s", pglob.gl_pathv[0], path.c_str());
1581 ::rename(pglob.gl_pathv[0], path.c_str());
1582 }
1583 }
1584
1585 globfree(&pglob);
1586 }
1587
1588 return result;
1589 }
1590
1591 bool KeychainImpl::keychainMigration(const string oldPath, const uint32 dbBlobVersion, const string newPath, const uint32 newBlobVersion, const AccessCredentials *cred) {
1592 secnotice("integrity", "going to migrate %s at version %d to", oldPath.c_str(), dbBlobVersion);
1593 secnotice("integrity", " %s at version %d", newPath.c_str(), newBlobVersion);
1594
1595 // We need to opportunistically perform the upgrade/reload dance.
1596 //
1597 // If the keychain is unlocked, try to upgrade it.
1598 // In either case, reload the database from disk.
1599 // We need this keychain's read/write lock.
1600
1601 // Try to grab the keychain write lock.
1602 StReadWriteLock lock(mRWLock, StReadWriteLock::TryWrite);
1603
1604 // If we didn't manage to grab the lock, there's readers out there
1605 // currently reading this keychain. Abort the upgrade.
1606 if(!lock.isLocked()) {
1607 secnotice("integrity", "couldn't get read-write lock, aborting upgrade");
1608 return false;
1609 }
1610
1611 // Take the file lock on the existing database. We don't need to commit this txion, because we're not planning to
1612 // change the original keychain.
1613 FileLockTransaction fileLockmDb(mDb);
1614
1615 // Let's reload this keychain to see if someone changed it on disk
1616 globals().storageManager.reloadKeychain(this);
1617
1618 bool result = false;
1619
1620 try {
1621 // We can only attempt an upgrade if the keychain is currently unlocked
1622 // There's a TOCTTOU issue here, but it's going to be rare in practice, and the upgrade will simply fail.
1623 if(!mDb->isLocked()) {
1624 secnotice("integrity", "have a plan to migrate database %s", mDb->name());
1625 // Database blob is out of date. Attempt a migration.
1626 uint32 convertedVersion = attemptKeychainMigration(oldPath, dbBlobVersion, newPath, newBlobVersion, cred);
1627 if(convertedVersion == newBlobVersion) {
1628 secnotice("integrity", "conversion succeeded");
1629 result = true;
1630 } else {
1631 secnotice("integrity", "conversion failed, keychain is still %d", convertedVersion);
1632 }
1633 } else {
1634 secnotice("integrity", "keychain is locked, can't upgrade");
1635 }
1636 } catch (CssmError cssme) {
1637 const char* errStr = cssmErrorString(cssme.error);
1638 secnotice("integrity", "caught CssmError: %d %s", (int) cssme.error, errStr);
1639 } catch (...) {
1640 // Something went wrong, but don't worry about it.
1641 secnotice("integrity", "caught unknown error");
1642 }
1643
1644 // No matter if the migrator succeeded, we need to reload this keychain from disk.
1645 secnotice("integrity", "reloading keychain after migration");
1646 globals().storageManager.reloadKeychain(this);
1647 secnotice("integrity", "database %s is now version %d", mDb->name(), mDb->dbBlobVersion());
1648
1649 return result;
1650 }
1651
1652 // Make sure you have this keychain's mutex and write lock when you call this function!
1653 uint32 KeychainImpl::attemptKeychainMigration(const string oldPath, const uint32 oldBlobVersion, const string newPath, const uint32 newBlobVersion, const AccessCredentials* cred) {
1654 if(mDb->dbBlobVersion() == newBlobVersion) {
1655 // Someone else upgraded this, hurray!
1656 secnotice("integrity", "reloaded keychain version %d, quitting", mDb->dbBlobVersion());
1657 return newBlobVersion;
1658 }
1659
1660 mAttemptedUpgrade = true;
1661 uint32 newDbVersion = oldBlobVersion;
1662
1663 if( (oldBlobVersion == SecurityServer::DbBlob::version_MacOS_10_0 && newBlobVersion == SecurityServer::DbBlob::version_partition) ||
1664 (oldBlobVersion == SecurityServer::DbBlob::version_partition && newBlobVersion == SecurityServer::DbBlob::version_MacOS_10_0 && cred != NULL)) {
1665 // Here's the upgrade outline:
1666 //
1667 // 1. Make a copy of the keychain with the new file path
1668 // 2. Open that keychain database.
1669 // 3. Recode it to use the new version.
1670 // 4. Notify the StorageManager that the DLDB identifier for this keychain has changed.
1671 //
1672 // If we're creating a new keychain file, on failure, try to delete the new file. Otherwise,
1673 // everyone will try to use it.
1674
1675 secnotice("integrity", "attempting migration from version %d to %d", oldBlobVersion, newBlobVersion);
1676
1677 Db db;
1678 bool newFile = (oldPath != newPath);
1679
1680 try {
1681 DLDbIdentifier dldbi(dlDbIdentifier().ssuid(), newPath.c_str(), dlDbIdentifier().dbLocation());
1682 if(newFile) {
1683 secnotice("integrity", "creating a new keychain at %s", newPath.c_str());
1684 db = mDb->cloneTo(dldbi);
1685 } else {
1686 secnotice("integrity", "using old keychain at %s", newPath.c_str());
1687 db = mDb;
1688 }
1689 FileLockTransaction fileLockDb(db);
1690
1691 if(newFile) {
1692 // since we're creating a completely new file, if this migration fails, delete the new file
1693 fileLockDb.setDeleteOnFailure();
1694 }
1695
1696 // Let the upgrade begin.
1697 newDbVersion = db->recodeDbToVersion(newBlobVersion);
1698 if(newDbVersion != newBlobVersion) {
1699 // Recoding failed. Don't proceed.
1700 secnotice("integrity", "recodeDbToVersion failed, version is still %d", newDbVersion);
1701 return newDbVersion;
1702 }
1703
1704 secnotice("integrity", "recoded db successfully, adding extra integrity");
1705
1706 Keychain keychain(db);
1707
1708 // Breaking abstraction, but what're you going to do?
1709 // Don't upgrade this keychain, since we just upgraded the DB
1710 // But the DB won't return any new data until the txion commits
1711 keychain->mAttemptedUpgrade = true;
1712 keychain->mSuppressTickle = true;
1713
1714 SecItemClass classes[] = {kSecGenericPasswordItemClass,
1715 kSecInternetPasswordItemClass,
1716 kSecPublicKeyItemClass,
1717 kSecPrivateKeyItemClass,
1718 kSecSymmetricKeyItemClass};
1719
1720 for(int i = 0; i < sizeof(classes) / sizeof(classes[0]); i++) {
1721 Item item;
1722 KCCursor kcc = keychain->createCursor(classes[i], NULL);
1723
1724 // During recoding, we might have deleted some corrupt keys.
1725 // Because of this, we might have zombie SSGroup records left in
1726 // the database that have no matching key. Tell the KCCursor to
1727 // delete these if found.
1728 // This will also try to suppress any other invalid items.
1729 kcc->setDeleteInvalidRecords(true);
1730
1731 while(kcc->next(item)) {
1732 try {
1733 if(newBlobVersion == SecurityServer::DbBlob::version_partition) {
1734 // Force the item to set integrity. The keychain is confused about its version because it hasn't written to disk yet,
1735 // but if we've reached this point, the keychain supports integrity.
1736 item->setIntegrity(true);
1737 } else if(newBlobVersion == SecurityServer::DbBlob::version_MacOS_10_0) {
1738 // We're downgrading this keychain. Pass in whatever credentials our caller thinks will allow this ACL modification.
1739 item->removeIntegrity(cred);
1740 }
1741 } catch(CssmError cssme) {
1742 // During recoding, we might have deleted some corrupt keys. Because of this, we might have zombie SSGroup records left in
1743 // the database that have no matching key. If we get a DL_RECORD_NOT_FOUND error, delete the matching item record.
1744 if (cssme.osStatus() == CSSMERR_DL_RECORD_NOT_FOUND) {
1745 secnotice("integrity", "deleting corrupt (Not Found) record");
1746 keychain->deleteItem(item);
1747 } else {
1748 throw;
1749 }
1750 }
1751 }
1752 }
1753
1754 // Tell securityd we're done with the upgrade, to re-enable all protections
1755 db->recodeFinished();
1756
1757 // If we reach here, tell the file locks to commit the transaction and return the new blob version
1758 fileLockDb.success();
1759
1760 secnotice("integrity", "success, returning version %d", newDbVersion);
1761 return newDbVersion;
1762 } catch(UnixError ue) {
1763 secnotice("integrity", "caught UnixError: %d %s", ue.unixError(), ue.what());
1764 } catch (CssmError cssme) {
1765 const char* errStr = cssmErrorString(cssme.error);
1766 secnotice("integrity", "caught CssmError: %d %s", (int) cssme.error, errStr);
1767 } catch (MacOSError mose) {
1768 secnotice("integrity", "MacOSError: %d", (int)mose.osStatus());
1769 } catch (const std::bad_cast & e) {
1770 secnotice("integrity", "***** bad cast: %s", e.what());
1771 } catch (...) {
1772 // We failed to migrate. We won't commit the transaction, so the blob on-disk stays the same.
1773 secnotice("integrity", "***** unknown error");
1774 }
1775 } else {
1776 secnotice("integrity", "no migration path for %s at version %d to", oldPath.c_str(), oldBlobVersion);
1777 secnotice("integrity", " %s at version %d", newPath.c_str(), newBlobVersion);
1778 return oldBlobVersion;
1779 }
1780
1781 // If we reached here, the migration failed. Return the old version.
1782 return oldBlobVersion;
1783 }
1784
1785 void KeychainImpl::attemptKeychainRename(const string oldPath, const string newPath, uint32 blobVersion) {
1786 secnotice("integrity", "attempting to rename keychain (%d) from %s to %s", blobVersion, oldPath.c_str(), newPath.c_str());
1787
1788 // Take the file lock on this database, so other people won't try to move it before we do
1789 // NOTE: during a migration from a v256 to a v512 keychain, the db is first copied from the .keychain to the
1790 // .keychain-db path. Other non-migrating processes, if they open the keychain, enter this function to
1791 // try to move it back. These will attempt to take the .keychain-db file lock, but they will not succeed
1792 // until the migration is finished. Once they acquire that, they might try to take the .keychain file lock.
1793 // This is technically lock inversion, but deadlocks will not happen since the migrating process creates the
1794 // .keychain-db file lock before creating the .keychain-db file, so other processes will not try to grab the
1795 // .keychain-db lock in this function before the migrating process already has it.
1796 FileLockTransaction fileLockmDb(mDb);
1797
1798 // first, check if someone renamed this keychain while we were grabbing the file lock
1799 globals().storageManager.reloadKeychain(this);
1800
1801 uint32 dbBlobVersion = SecurityServer::DbBlob::version_MacOS_10_0;
1802
1803 try {
1804 dbBlobVersion = mDb->dbBlobVersion();
1805 } catch (...) {
1806 secnotice("integrity", "dbBlobVersion() failed for an unknown reason while renaming, aborting rename");
1807 return;
1808 }
1809
1810 if(dbBlobVersion != blobVersion) {
1811 secnotice("integrity", "database version changed while we were grabbing the file lock; aborting rename");
1812 return;
1813 }
1814
1815 if(oldPath != mDb->name()) {
1816 secnotice("integrity", "database location changed while we were grabbing the file lock; aborting rename");
1817 return;
1818 }
1819
1820 // we're still at the original location and version; go ahead and do the move
1821 globals().storageManager.rename(this, newPath.c_str());
1822 }
1823
1824 Keychain::Keychain()
1825 {
1826 dispatch_once(&SecKeychainSystemKeychainChecked, ^{
1827 check_system_keychain();
1828 });
1829 }
1830
1831 Keychain::~Keychain()
1832 {
1833 }
1834
1835
1836
1837 Keychain
1838 Keychain::optional(SecKeychainRef handle)
1839 {
1840 if (handle)
1841 return KeychainImpl::required(handle);
1842 else
1843 return globals().storageManager.defaultKeychain();
1844 }
1845
1846
1847 CFIndex KeychainCore::GetKeychainRetainCount(Keychain& kc)
1848 {
1849 CFTypeRef ref = kc->handle(false);
1850 return CFGetRetainCount(ref);
1851 }
1852
1853
1854 //
1855 // Create default credentials for this keychain.
1856 // This is triggered upon default open (i.e. a Db::activate() with no set credentials).
1857 //
1858 // This function embodies the "default credentials" logic for Keychain-layer databases.
1859 //
1860 const AccessCredentials *
1861 KeychainImpl::makeCredentials()
1862 {
1863 return defaultCredentials();
1864 }
1865
1866
1867 const AccessCredentials *
1868 KeychainImpl::defaultCredentials()
1869 {
1870 StLock<Mutex>_(mMutex);
1871
1872 // Use custom unlock credentials for file keychains which have a referral
1873 // record and the standard credentials for all others.
1874
1875 if (mDb->dl()->guid() == gGuidAppleCSPDL && mCustomUnlockCreds(mDb))
1876 return &mCustomUnlockCreds;
1877 else
1878 if (mDb->dl()->guid() == gGuidAppleSdCSPDL)
1879 return globals().smartcardCredentials();
1880 else
1881 return globals().keychainCredentials();
1882 }
1883
1884
1885
1886 bool KeychainImpl::mayDelete()
1887 {
1888 return true;
1889 }
1890
1891 bool KeychainImpl::hasIntegrityProtection() {
1892 // This keychain only supports integrity if there's a database attached, that database is an Apple CSPDL, and the blob version is high enough
1893 if(mDb && (mDb->dl()->guid() == gGuidAppleCSPDL)) {
1894 if(mDb->dbBlobVersion() >= SecurityServer::DbBlob::version_partition) {
1895 return true;
1896 } else {
1897 secnotice("integrity", "keychain blob version does not support integrity");
1898 return false;
1899 }
1900 } else {
1901 secnotice("integrity", "keychain guid does not support integrity");
1902 return false;
1903 }
1904 return false;
1905 }
1906