]>
git.saurik.com Git - apple/securityd.git/blob - src/kcdatabase.h
2 * Copyright (c) 2000-2007 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@
26 // kcdatabase - software database container implementation.
28 // A KeychainDatabase is a software storage container,
29 // implemented in cooperation by the AppleCSLDP CDSA plugin and this daemon.
34 #include "localdatabase.h"
35 #include <securityd_client/ss_types.h>
37 class KeychainDatabase
;
38 class KeychainDbCommon
;
43 // We identify KeychainDatabases uniquely by a combination of
44 // a DLDbIdentifier and a database (blob) identifier. Equivalence
45 // by DbIdentifier is the criterion for parent-side merging.
49 DbIdentifier(const DLDbIdentifier
&id
, DbBlob::Signature sig
)
50 : mIdent(id
), mSig(sig
) { }
52 const DLDbIdentifier
&dlDbIdentifier() const { return mIdent
; }
53 const DbBlob::Signature
&signature() const { return mSig
; }
54 operator const DLDbIdentifier
&() const { return dlDbIdentifier(); }
55 operator const DbBlob::Signature
&() const { return signature(); }
56 const char *dbName() const { return mIdent
.dbName(); }
58 bool operator < (const DbIdentifier
&id
) const // simple lexicographic
60 if (mIdent
< id
.mIdent
) return true;
61 if (id
.mIdent
< mIdent
) return false;
62 return mSig
< id
.mSig
;
65 bool operator == (const DbIdentifier
&id
) const
66 { return mIdent
== id
.mIdent
&& mSig
== id
.mSig
; }
69 DLDbIdentifier mIdent
;
70 DbBlob::Signature mSig
;
75 // A vestigal system-global database instance
76 // We don't (yet) use it for anything. Perhaps it should carry our ACL...
78 class KeychainDbGlobal
: public PerGlobal
{
80 KeychainDbGlobal(const DbIdentifier
&id
);
83 const DbIdentifier
&identifier() const { return mIdentifier
; }
86 DbIdentifier mIdentifier
; // database external identifier [const]
91 // KeychainDatabase DbCommons
93 class KeychainDbCommon
: public LocalDbCommon
,
94 public DatabaseCryptoCore
, public MachServer::Timer
{
96 KeychainDbCommon(Session
&ssn
, const DbIdentifier
&id
);
99 KeychainDbGlobal
&global() const;
101 bool unlockDb(DbBlob
*blob
, void **privateAclBlob
= NULL
);
102 void lockDb(); // make locked (if currently unlocked)
103 bool isLocked() { return mIsLocked
; } // lock status
105 void invalidateBlob() { version
++; }
107 void activity(); // reset lock timeout
109 void makeNewSecrets();
111 const DbIdentifier
&identifier() const {return mIdentifier
; }
112 const DLDbIdentifier
&dlDbIdent() const { return identifier(); }
113 const char *dbName() const { return dlDbIdent().dbName(); }
115 DbBlob
*encode(KeychainDatabase
&db
);
117 void notify(NotificationEvent event
) { DbCommon::notify(event
, identifier()); }
119 void sleepProcessing();
120 void lockProcessing();
122 bool belongsToSystem() const;
126 IFDUMP(void dumpNode());
129 void action(); // timer queue action to lock keychain
131 // lifetime management for our Timer personality
136 // all following data locked with object lock
137 uint32 sequence
; // change sequence number
138 DBParameters mParams
; // database parameters (arbitrated copy)
140 uint32 version
; // version stamp for change tracking
143 DbIdentifier mIdentifier
; // database external identifier [const]
144 // all following data protected by object lock
145 bool mIsLocked
; // logically locked
146 bool mValidParams
; // mParams has been set
151 // A Database object represents an Apple CSP/DL open database (DL/DB) object.
152 // It maintains its protected semantic state (including keys) and provides controlled
155 class KeychainDatabase
: public LocalDatabase
, private virtual SecurityServerAcl
{
156 friend class KeychainDbCommon
;
158 KeychainDatabase(const DLDbIdentifier
&id
, const DBParameters
¶ms
, Process
&proc
,
159 const AccessCredentials
*cred
, const AclEntryPrototype
*owner
);
160 KeychainDatabase(const DLDbIdentifier
&id
, const DbBlob
*blob
, Process
&proc
,
161 const AccessCredentials
*cred
);
163 // keychain synchronization recode to a specfic blob:
164 KeychainDatabase(KeychainDatabase
&src
, Process
&proc
, DbHandle dbToClone
);
165 virtual ~KeychainDatabase();
167 KeychainDbCommon
&common() const;
168 const char *dbName() const;
169 bool transient() const;
171 KeychainDbGlobal
&global() const { return common().global(); }
174 static const int maxUnlockTryCount
= 3;
177 const DbIdentifier
&identifier() const { return common().identifier(); }
180 // encoding/decoding databases
183 void authenticate(CSSM_DB_ACCESS_TYPE mode
, const AccessCredentials
*cred
);
184 void changePassphrase(const AccessCredentials
*cred
);
185 RefPointer
<Key
> extractMasterKey(Database
&db
, const AccessCredentials
*cred
,
186 const AclEntryPrototype
*owner
, uint32 usage
, uint32 attrs
);
187 void commitSecretsForSync(KeychainDatabase
&cloneDb
);
189 // lock/unlock processing
190 void lockDb(); // unconditional lock
191 void unlockDb(); // full-feature unlock
192 void unlockDb(const CssmData
&passphrase
); // unlock with passphrase
194 bool decode(); // unlock given established master key
195 bool decode(const CssmData
&passphrase
); // set master key from PP, try unlock
197 bool validatePassphrase(const CssmData
&passphrase
) const; // nonthrowing validation
198 bool isLocked() { return common().isLocked(); } // lock status
199 void notify(NotificationEvent event
) { return common().notify(event
); }
200 void activity() const { common().activity(); } // reset timeout clock
202 // encoding/decoding keys
203 void decodeKey(KeyBlob
*blob
, CssmKey
&key
, void * &pubAcl
, void * &privAcl
);
204 KeyBlob
*encodeKey(const CssmKey
&key
, const CssmData
&pubAcl
, const CssmData
&privAcl
);
205 KeyBlob
*recodeKey(KeychainKey
&oldKey
);
206 bool validBlob() const { return mBlob
&& version
== common().version
; }
208 // manage database parameters
209 void setParameters(const DBParameters
¶ms
);
210 void getParameters(DBParameters
¶ms
);
212 // where's my (database) ACL?
213 SecurityServerAcl
&acl();
215 AclKind
aclKind() const;
216 Database
*relatedDatabase();
218 // ACL state management hooks
219 void instantiateAcl();
222 // miscellaneous utilities
223 static void validateBlob(const DbBlob
*blob
);
226 IFDUMP(void dumpNode());
229 RefPointer
<Key
> makeKey(const CssmKey
&newKey
, uint32 moreAttributes
, const AclEntryPrototype
*owner
);
230 RefPointer
<Key
> makeKey(Database
&db
, const CssmKey
&newKey
, uint32 moreAttributes
, const AclEntryPrototype
*owner
);
232 void makeUnlocked(); // interior version of unlock()
233 void makeUnlocked(const AccessCredentials
*cred
); // like () with explicit cred
234 void makeUnlocked(const CssmData
&passphrase
); // interior version of unlock(CssmData)
236 void establishOldSecrets(const AccessCredentials
*creds
);
237 void establishNewSecrets(const AccessCredentials
*creds
, SecurityAgent::Reason reason
);
239 bool interactiveUnlock();
241 CssmClient::Key
keyFromCreds(const TypedList
&sample
, unsigned int requiredLength
);
243 void encode(); // (re)generate mBlob if needed
246 // all following data is locked by the common lock
247 bool mValidData
; // valid ACL and params (blob decoded)
249 uint32 version
; // version stamp for blob validity
250 DbBlob
*mBlob
; // database blob (encoded)
252 AccessCredentials
*mCred
; // local access credentials (always valid)
254 RefPointer
<KeychainDatabase
> mRecodingSource
; // keychain synchronization ONLY; should not require accessors
257 #endif //_H_KCDATABASE