]> git.saurik.com Git - apple/security.git/blob - OSX/utilities/src/SecDb.h
d00276cfe6ec783ca22e10daa00ec1ad51d0ec0a
[apple/security.git] / OSX / utilities / src / SecDb.h
1 /*
2 * Copyright (c) 2012-2016 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 #ifndef _UTILITIES_SECDB_H_
26 #define _UTILITIES_SECDB_H_
27
28 #include <CoreFoundation/CoreFoundation.h>
29 #include <sqlite3.h>
30
31 __BEGIN_DECLS
32
33 // MARK: SecDbRef and SecDbConnectionRef forward declarations
34 typedef struct __OpaqueSecDb *SecDbRef;
35 typedef struct __OpaqueSecDbConnection *SecDbConnectionRef;
36 typedef struct __OpaqueSecDbStatement *SecDbStatementRef;
37 struct SOSDigestVector;
38
39 // MARK: Configuration values, not used by clients directly.
40 // TODO: Move this section to a private header
41 enum {
42 kSecDbMaxReaders = 4,
43 kSecDbMaxWriters = 1,
44 kSecDbMaxIdleHandles = 3,
45 };
46
47 // MARK: SecDbTransactionType
48 enum {
49 kSecDbNoneTransactionType = 0,
50 kSecDbImmediateTransactionType,
51 kSecDbExclusiveTransactionType,
52 kSecDbNormalTransactionType,
53 kSecDbExclusiveRemoteSOSTransactionType,
54 kSecDbExclusiveRemoteCKKSTransactionType,
55 };
56 typedef CFOptionFlags SecDbTransactionType;
57
58 enum SecDbTransactionPhase {
59 kSecDbTransactionDidRollback = 0, // A transaction just got rolled back
60 kSecDbTransactionWillCommit, // A transaction is about to commit.
61 kSecDbTransactionDidCommit, // A transnaction sucessfully committed.
62 };
63 typedef CFOptionFlags SecDbTransactionPhase;
64
65 enum SecDbTransactionSource {
66 kSecDbSOSTransaction = 0, // A remotely initated transaction (via SOS)
67 kSecDbCKKSTransaction = 3, // A transaction initiated by CKKS (either via remote notification or queue processing)
68 kSecDbAPITransaction = 1, // A user initated transaction.
69 kSecDbInvalidTransaction = 2, // An invalid transaction source (used for initialization)
70
71 };
72 typedef CFOptionFlags SecDbTransactionSource;
73
74 // MARK: --
75 // MARK: Error creation helpers.
76
77 // SQLITE3 errors are in this domain
78 extern CFStringRef kSecDbErrorDomain;
79
80 typedef CFTypeRef SecDbEntryRef;
81
82 bool SecDbError(int sql_code, CFErrorRef *error, CFStringRef format, ...) CF_FORMAT_FUNCTION(3, 4);
83 bool SecDbErrorWithDb(int sql_code, sqlite3 *db, CFErrorRef *error, CFStringRef format, ...) CF_FORMAT_FUNCTION(4, 5);
84 bool SecDbErrorWithStmt(int sql_code, sqlite3_stmt *stmt, CFErrorRef *error, CFStringRef format, ...) CF_FORMAT_FUNCTION(4, 5);
85
86 // MARK: mark -
87 // MARK: mark SecDbRef
88
89 void _SecDbServerSetup(void);
90
91 typedef CFTypeRef SecDbEventRef;
92
93 SecDbEventRef SecDbEventCreateWithComponents(CFTypeRef deleted, CFTypeRef inserted);
94 void SecDbEventTranslateComponents(SecDbEventRef item, CFTypeRef* deleted, CFTypeRef* inserted);
95
96 // Return deleted and inserted for a given changes entry, both are optional
97 bool SecDbEventGetComponents(SecDbEventRef event, CFTypeRef *deleted, CFTypeRef *inserted, CFErrorRef *error);
98
99 // changes is an array of SecDbEventRef
100 typedef void (^SecDBNotifyBlock)(SecDbConnectionRef dbconn, SecDbTransactionPhase phase, SecDbTransactionSource source, CFArrayRef changes);
101
102 CFTypeID SecDbGetTypeID(void);
103
104 // Database creation
105 SecDbRef SecDbCreateWithOptions(CFStringRef dbName, mode_t mode, bool readWrite, bool allowRepair, bool useWAL, bool (^opened)(SecDbRef db, SecDbConnectionRef dbconn, bool didCreate, bool *callMeAgainForNextConnection, CFErrorRef *error));
106
107 SecDbRef SecDbCreate(CFStringRef dbName, bool (^opened)(SecDbRef db, SecDbConnectionRef dbconn, bool didCreate, bool *callMeAgainForNextConnection, CFErrorRef *error));
108
109 void SecDbAddNotifyPhaseBlock(SecDbRef db, SecDBNotifyBlock notifyPhase);
110
111 // Read only connections go to the end of the queue, writeable
112 // connections go to the start of the queue. Use SecDbPerformRead() and SecDbPerformWrite() if you
113 // can to avoid leaks.
114 SecDbConnectionRef SecDbConnectionAcquire(SecDbRef db, bool readOnly, CFErrorRef *error);
115 void SecDbConnectionRelease(SecDbConnectionRef dbconn);
116
117 // Perform a database read operation,
118 bool SecDbPerformRead(SecDbRef db, CFErrorRef *error, void (^perform)(SecDbConnectionRef dbconn));
119 bool SecDbPerformWrite(SecDbRef db, CFErrorRef *error, void (^perform)(SecDbConnectionRef dbconn));
120
121 // TODO: DEBUG only -> Private header
122 CFIndex SecDbIdleConnectionCount(SecDbRef db);
123 void SecDbReleaseAllConnections(SecDbRef db);
124 bool SecDbReplace(SecDbRef db, CFStringRef newDbPath, CFErrorRef *error);
125
126 CFStringRef SecDbGetPath(SecDbRef db);
127
128 // MARK: -
129 // MARK: SecDbConectionRef
130
131 CFTypeID SecDbConnectionGetTypeID(void);
132
133 bool SecDbPrepare(SecDbConnectionRef dbconn, CFStringRef sql, CFErrorRef *error, void(^exec)(sqlite3_stmt *stmt));
134
135 bool SecDbStep(SecDbConnectionRef dbconn, sqlite3_stmt *stmt, CFErrorRef *error, void (^row)(bool *stop));
136
137 bool SecDbExec(SecDbConnectionRef dbconn, CFStringRef sql, CFErrorRef *error);
138
139 bool SecDbCheckpoint(SecDbConnectionRef dbconn, CFErrorRef *error);
140
141 bool SecDbTransaction(SecDbConnectionRef dbconn, SecDbTransactionType ttype, CFErrorRef *error,
142 void (^transaction)(bool *commit));
143
144 sqlite3 *SecDbHandle(SecDbConnectionRef dbconn);
145
146 // Do not call this unless you are SecDbItem!
147 void SecDbRecordChange(SecDbConnectionRef dbconn, CFTypeRef deleted, CFTypeRef inserted);
148
149 void SecDbPerformOnCommitQueue(SecDbConnectionRef dbconn, bool barrier, dispatch_block_t perform);
150
151 // MARK: -
152 // MARK: Bind helpers
153
154 #if 0
155 bool SecDbBindNull(sqlite3_stmt *stmt, int param, CFErrorRef *error);
156 #endif
157 bool SecDbBindBlob(sqlite3_stmt *stmt, int param, const void *zData, size_t n, void(*xDel)(void*), CFErrorRef *error);
158 bool SecDbBindText(sqlite3_stmt *stmt, int param, const char *zData, size_t n, void(*xDel)(void*), CFErrorRef *error);
159 bool SecDbBindDouble(sqlite3_stmt *stmt, int param, double value, CFErrorRef *error);
160 bool SecDbBindInt(sqlite3_stmt *stmt, int param, int value, CFErrorRef *error);
161 bool SecDbBindInt64(sqlite3_stmt *stmt, int param, sqlite3_int64 value, CFErrorRef *error);
162 bool SecDbBindObject(sqlite3_stmt *stmt, int param, CFTypeRef value, CFErrorRef *error);
163
164 // MARK: -
165 // MARK: SecDbStatementRef
166
167 bool SecDbReset(sqlite3_stmt *stmt, CFErrorRef *error);
168 bool SecDbClearBindings(sqlite3_stmt *stmt, CFErrorRef *error);
169 bool SecDbFinalize(sqlite3_stmt *stmt, CFErrorRef *error);
170 sqlite3_stmt *SecDbPrepareV2(SecDbConnectionRef dbconn, const char *sql, size_t sqlLen, const char **sqlTail, CFErrorRef *error);
171 sqlite3_stmt *SecDbCopyStmt(SecDbConnectionRef dbconn, CFStringRef sql, CFStringRef *tail, CFErrorRef *error);
172 bool SecDbReleaseCachedStmt(SecDbConnectionRef dbconn, CFStringRef sql, sqlite3_stmt *stmt, CFErrorRef *error);
173 bool SecDbWithSQL(SecDbConnectionRef dbconn, CFStringRef sql, CFErrorRef *error, bool(^perform)(sqlite3_stmt *stmt));
174 bool SecDbForEach(SecDbConnectionRef dbconn, sqlite3_stmt *stmt, CFErrorRef *error, bool(^row)(int row_index));
175
176 // Mark the database as corrupted.
177 void SecDbCorrupt(SecDbConnectionRef dbconn, CFErrorRef error);
178
179 __END_DECLS
180
181 #endif /* !_UTILITIES_SECDB_H_ */