First public contribution.
4 ** The author disclaims copyright to this source code. In place of
5 ** a legal notice, here is a blessing:
7 ** May you do good and not evil.
8 ** May you find forgiveness for yourself and forgive others.
9 ** May you share freely, never taking more than you give.
11 *************************************************************************
12 ** This file contains the C functions that implement mutexes for pthreads
14 ** $Id: mutex_unix.c,v 1.13 2008/07/16 12:33:24 drh Exp $
16 #include "sqliteInt.h"
19 ** The code in this file is only used if we are compiling threadsafe
20 ** under unix with pthreads.
22 ** Note that this implementation requires a version of pthreads that
23 ** supports recursive mutexes.
25 #ifdef SQLITE_MUTEX_PTHREADS
31 ** Each recursive mutex is an instance of the following structure.
33 struct sqlite3_mutex {
34 pthread_mutex_t mutex; /* Mutex controlling the lock */
35 int id; /* Mutex type */
36 int nRef; /* Number of entrances */
37 pthread_t owner; /* Thread that is within this mutex */
39 int trace; /* True to trace changes */
43 #define SQLITE3_MUTEX_INITIALIZER { PTHREAD_MUTEX_INITIALIZER, 0, 0, (pthread_t)0, 0 }
45 #define SQLITE3_MUTEX_INITIALIZER { PTHREAD_MUTEX_INITIALIZER, 0, 0, (pthread_t)0 }
49 ** The sqlite3_mutex_held() and sqlite3_mutex_notheld() routine are
50 ** intended for use only inside assert() statements. On some platforms,
51 ** there might be race conditions that can cause these routines to
52 ** deliver incorrect results. In particular, if pthread_equal() is
53 ** not an atomic operation, then these routines might delivery
54 ** incorrect results. On most platforms, pthread_equal() is a
55 ** comparison of two integers and is therefore atomic. But we are
56 ** told that HPUX is not such a platform. If so, then these routines
57 ** will not always work correctly on HPUX.
59 ** On those platforms where pthread_equal() is not atomic, SQLite
60 ** should be compiled without -DSQLITE_DEBUG and with -DNDEBUG to
61 ** make sure no assert() statements are evaluated and hence these
62 ** routines are never called.
65 static int pthreadMutexHeld(sqlite3_mutex *p){
66 return (p->nRef!=0 && pthread_equal(p->owner, pthread_self()));
68 static int pthreadMutexNotheld(sqlite3_mutex *p){
69 return p->nRef==0 || pthread_equal(p->owner, pthread_self())==0;
74 ** Initialize and deinitialize the mutex subsystem.
76 static int pthreadMutexInit(void){ return SQLITE_OK; }
77 static int pthreadMutexEnd(void){ return SQLITE_OK; }
80 ** The sqlite3_mutex_alloc() routine allocates a new
81 ** mutex and returns a pointer to it. If it returns NULL
82 ** that means that a mutex could not be allocated. SQLite
83 ** will unwind its stack and return an error. The argument
84 ** to sqlite3_mutex_alloc() is one of these integer constants:
87 ** <li> SQLITE_MUTEX_FAST
88 ** <li> SQLITE_MUTEX_RECURSIVE
89 ** <li> SQLITE_MUTEX_STATIC_MASTER
90 ** <li> SQLITE_MUTEX_STATIC_MEM
91 ** <li> SQLITE_MUTEX_STATIC_MEM2
92 ** <li> SQLITE_MUTEX_STATIC_PRNG
93 ** <li> SQLITE_MUTEX_STATIC_LRU
96 ** The first two constants cause sqlite3_mutex_alloc() to create
97 ** a new mutex. The new mutex is recursive when SQLITE_MUTEX_RECURSIVE
98 ** is used but not necessarily so when SQLITE_MUTEX_FAST is used.
99 ** The mutex implementation does not need to make a distinction
100 ** between SQLITE_MUTEX_RECURSIVE and SQLITE_MUTEX_FAST if it does
101 ** not want to. But SQLite will only request a recursive mutex in
102 ** cases where it really needs one. If a faster non-recursive mutex
103 ** implementation is available on the host platform, the mutex subsystem
104 ** might return such a mutex in response to SQLITE_MUTEX_FAST.
106 ** The other allowed parameters to sqlite3_mutex_alloc() each return
107 ** a pointer to a static preexisting mutex. Three static mutexes are
108 ** used by the current version of SQLite. Future versions of SQLite
109 ** may add additional static mutexes. Static mutexes are for internal
110 ** use by SQLite only. Applications that use SQLite mutexes should
111 ** use only the dynamic mutexes returned by SQLITE_MUTEX_FAST or
112 ** SQLITE_MUTEX_RECURSIVE.
114 ** Note that if one of the dynamic mutex parameters (SQLITE_MUTEX_FAST
115 ** or SQLITE_MUTEX_RECURSIVE) is used then sqlite3_mutex_alloc()
116 ** returns a different mutex on every call. But for the static
117 ** mutex types, the same mutex is returned on every call that has
118 ** the same type number.
120 static sqlite3_mutex *pthreadMutexAlloc(int iType){
121 static sqlite3_mutex staticMutexes[] = {
122 SQLITE3_MUTEX_INITIALIZER,
123 SQLITE3_MUTEX_INITIALIZER,
124 SQLITE3_MUTEX_INITIALIZER,
125 SQLITE3_MUTEX_INITIALIZER,
126 SQLITE3_MUTEX_INITIALIZER,
127 SQLITE3_MUTEX_INITIALIZER
131 case SQLITE_MUTEX_RECURSIVE: {
132 p = sqlite3MallocZero( sizeof(*p) );
134 #ifdef SQLITE_HOMEGROWN_RECURSIVE_MUTEX
135 /* If recursive mutexes are not available, we will have to
136 ** build our own. See below. */
137 pthread_mutex_init(&p->mutex, 0);
139 /* Use a recursive mutex if it is available */
140 pthread_mutexattr_t recursiveAttr;
141 pthread_mutexattr_init(&recursiveAttr);
142 pthread_mutexattr_settype(&recursiveAttr, PTHREAD_MUTEX_RECURSIVE);
143 pthread_mutex_init(&p->mutex, &recursiveAttr);
144 pthread_mutexattr_destroy(&recursiveAttr);
150 case SQLITE_MUTEX_FAST: {
151 p = sqlite3MallocZero( sizeof(*p) );
154 pthread_mutex_init(&p->mutex, 0);
159 assert( iType-2 >= 0 );
160 assert( iType-2 < sizeof(staticMutexes)/sizeof(staticMutexes[0]) );
161 p = &staticMutexes[iType-2];
171 ** This routine deallocates a previously
172 ** allocated mutex. SQLite is careful to deallocate every
173 ** mutex that it allocates.
175 static void pthreadMutexFree(sqlite3_mutex *p){
176 assert( p->nRef==0 );
177 assert( p->id==SQLITE_MUTEX_FAST || p->id==SQLITE_MUTEX_RECURSIVE );
178 pthread_mutex_destroy(&p->mutex);
183 ** The sqlite3_mutex_enter() and sqlite3_mutex_try() routines attempt
184 ** to enter a mutex. If another thread is already within the mutex,
185 ** sqlite3_mutex_enter() will block and sqlite3_mutex_try() will return
186 ** SQLITE_BUSY. The sqlite3_mutex_try() interface returns SQLITE_OK
187 ** upon successful entry. Mutexes created using SQLITE_MUTEX_RECURSIVE can
188 ** be entered multiple times by the same thread. In such cases the,
189 ** mutex must be exited an equal number of times before another thread
190 ** can enter. If the same thread tries to enter any other kind of mutex
191 ** more than once, the behavior is undefined.
193 static void pthreadMutexEnter(sqlite3_mutex *p){
194 assert( p->id==SQLITE_MUTEX_RECURSIVE || pthreadMutexNotheld(p) );
196 #ifdef SQLITE_HOMEGROWN_RECURSIVE_MUTEX
197 /* If recursive mutexes are not available, then we have to grow
198 ** our own. This implementation assumes that pthread_equal()
199 ** is atomic - that it cannot be deceived into thinking self
200 ** and p->owner are equal if p->owner changes between two values
201 ** that are not equal to self while the comparison is taking place.
202 ** This implementation also assumes a coherent cache - that
203 ** separate processes cannot read different values from the same
204 ** address at the same time. If either of these two conditions
205 ** are not met, then the mutexes will fail and problems will result.
208 pthread_t self = pthread_self();
209 if( p->nRef>0 && pthread_equal(p->owner, self) ){
212 pthread_mutex_lock(&p->mutex);
213 assert( p->nRef==0 );
219 /* Use the built-in recursive mutexes if they are available.
221 pthread_mutex_lock(&p->mutex);
222 p->owner = pthread_self();
228 printf("enter mutex %p (%d) with nRef=%d\n", p, p->trace, p->nRef);
232 static int pthreadMutexTry(sqlite3_mutex *p){
234 assert( p->id==SQLITE_MUTEX_RECURSIVE || pthreadMutexNotheld(p) );
236 #ifdef SQLITE_HOMEGROWN_RECURSIVE_MUTEX
237 /* If recursive mutexes are not available, then we have to grow
238 ** our own. This implementation assumes that pthread_equal()
239 ** is atomic - that it cannot be deceived into thinking self
240 ** and p->owner are equal if p->owner changes between two values
241 ** that are not equal to self while the comparison is taking place.
242 ** This implementation also assumes a coherent cache - that
243 ** separate processes cannot read different values from the same
244 ** address at the same time. If either of these two conditions
245 ** are not met, then the mutexes will fail and problems will result.
248 pthread_t self = pthread_self();
249 if( p->nRef>0 && pthread_equal(p->owner, self) ){
252 }else if( pthread_mutex_trylock(&p->mutex)==0 ){
253 assert( p->nRef==0 );
262 /* Use the built-in recursive mutexes if they are available.
264 if( pthread_mutex_trylock(&p->mutex)==0 ){
265 p->owner = pthread_self();
274 if( rc==SQLITE_OK && p->trace ){
275 printf("enter mutex %p (%d) with nRef=%d\n", p, p->trace, p->nRef);
282 ** The sqlite3_mutex_leave() routine exits a mutex that was
283 ** previously entered by the same thread. The behavior
284 ** is undefined if the mutex is not currently entered or
285 ** is not currently allocated. SQLite will never do either.
287 static void pthreadMutexLeave(sqlite3_mutex *p){
288 assert( pthreadMutexHeld(p) );
290 assert( p->nRef==0 || p->id==SQLITE_MUTEX_RECURSIVE );
292 #ifdef SQLITE_HOMEGROWN_RECURSIVE_MUTEX
294 pthread_mutex_unlock(&p->mutex);
297 pthread_mutex_unlock(&p->mutex);
302 printf("leave mutex %p (%d) with nRef=%d\n", p, p->trace, p->nRef);
307 sqlite3_mutex_methods *sqlite3DefaultMutex(void){
308 static sqlite3_mutex_methods sMutex = {
325 #endif /* SQLITE_MUTEX_PTHREAD */