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
|
#ifndef THR_MUTEX_INCLUDED
#define THR_MUTEX_INCLUDED
/* Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2.0,
as published by the Free Software Foundation.
This program is also distributed with certain software (including
but not limited to OpenSSL) that is licensed under separate terms,
as designated in a particular file or component or in included license
documentation. The authors of MySQL hereby grant you an additional
permission to link the program and your derivative works with the
separately licensed software that they have included with MySQL.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License, version 2.0, for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
/**
@file include/thr_mutex.h
MySQL mutex implementation.
There are three "layers":
1) native_mutex_*()
Functions that map directly down to OS primitives.
Windows - CriticalSection
Other OSes - pthread
2) my_mutex_*()
Functions that implement SAFE_MUTEX (default for debug),
Otherwise native_mutex_*() is used.
3) mysql_mutex_*()
Functions that include Performance Schema instrumentation.
See include/mysql/psi/mysql_thread.h
*/
#include <stddef.h>
#include <sys/types.h>
#include "my_dbug.h"
#include "my_inttypes.h"
#include "my_macros.h"
#include "my_thread.h"
/*
The following are part of the services ABI:
- native_mutex_t
- my_mutex_t
*/
#include "mysql/components/services/thr_mutex_bits.h"
/* Define mutex types, see my_thr_init.c */
#define MY_MUTEX_INIT_SLOW NULL
/* Can be set in /usr/include/pthread.h */
#ifdef PTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NP
extern native_mutexattr_t my_fast_mutexattr;
#define MY_MUTEX_INIT_FAST &my_fast_mutexattr
#else
#define MY_MUTEX_INIT_FAST NULL
#endif
/* Can be set in /usr/include/pthread.h */
#ifdef PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP
extern native_mutexattr_t my_errorcheck_mutexattr;
#define MY_MUTEX_INIT_ERRCHK &my_errorcheck_mutexattr
#else
#define MY_MUTEX_INIT_ERRCHK NULL
#endif
static inline int native_mutex_init(native_mutex_t *mutex,
const native_mutexattr_t *attr
MY_ATTRIBUTE((unused))) {
#ifdef _WIN32
InitializeCriticalSection(mutex);
return 0;
#else
return pthread_mutex_init(mutex, attr);
#endif
}
static inline int native_mutex_lock(native_mutex_t *mutex) {
#ifdef _WIN32
EnterCriticalSection(mutex);
return 0;
#else
return pthread_mutex_lock(mutex);
#endif
}
static inline int native_mutex_trylock(native_mutex_t *mutex) {
#ifdef _WIN32
if (TryEnterCriticalSection(mutex)) {
/* Don't allow recursive lock */
if (mutex->RecursionCount > 1) {
LeaveCriticalSection(mutex);
return EBUSY;
}
return 0;
}
return EBUSY;
#else
return pthread_mutex_trylock(mutex);
#endif
}
static inline int native_mutex_unlock(native_mutex_t *mutex) {
#ifdef _WIN32
LeaveCriticalSection(mutex);
return 0;
#else
return pthread_mutex_unlock(mutex);
#endif
}
static inline int native_mutex_destroy(native_mutex_t *mutex) {
#ifdef _WIN32
DeleteCriticalSection(mutex);
return 0;
#else
return pthread_mutex_destroy(mutex);
#endif
}
#ifdef SAFE_MUTEX
/* safe_mutex adds checking to mutex for easier debugging */
struct safe_mutex_t {
native_mutex_t global, mutex;
const char *file;
uint line, count;
my_thread_t thread;
};
void safe_mutex_global_init();
int safe_mutex_init(safe_mutex_t *mp, const native_mutexattr_t *attr,
const char *file, uint line);
int safe_mutex_lock(safe_mutex_t *mp, bool try_lock, const char *file,
uint line);
int safe_mutex_unlock(safe_mutex_t *mp, const char *file, uint line);
int safe_mutex_destroy(safe_mutex_t *mp, const char *file, uint line);
static inline void safe_mutex_assert_owner(safe_mutex_t *mp) {
DBUG_ASSERT(mp != NULL);
native_mutex_lock(&mp->global);
DBUG_ASSERT(mp->count > 0 && my_thread_equal(my_thread_self(), mp->thread));
native_mutex_unlock(&mp->global);
}
static inline void safe_mutex_assert_not_owner(safe_mutex_t *mp) {
DBUG_ASSERT(mp != NULL);
native_mutex_lock(&mp->global);
DBUG_ASSERT(!mp->count || !my_thread_equal(my_thread_self(), mp->thread));
native_mutex_unlock(&mp->global);
}
#endif /* SAFE_MUTEX */
static inline int my_mutex_init(my_mutex_t *mp, const native_mutexattr_t *attr
#ifdef SAFE_MUTEX
,
const char *file, uint line
#endif
) {
#ifdef SAFE_MUTEX
DBUG_ASSERT(mp != NULL);
mp->m_u.m_safe_ptr = (safe_mutex_t *)malloc(sizeof(safe_mutex_t));
return safe_mutex_init(mp->m_u.m_safe_ptr, attr, file, line);
#else
return native_mutex_init(&mp->m_u.m_native, attr);
#endif
}
static inline int my_mutex_lock(my_mutex_t *mp
#ifdef SAFE_MUTEX
,
const char *file, uint line
#endif
) {
#ifdef SAFE_MUTEX
DBUG_ASSERT(mp != NULL);
DBUG_ASSERT(mp->m_u.m_safe_ptr != NULL);
return safe_mutex_lock(mp->m_u.m_safe_ptr, false, file, line);
#else
return native_mutex_lock(&mp->m_u.m_native);
#endif
}
static inline int my_mutex_trylock(my_mutex_t *mp
#ifdef SAFE_MUTEX
,
const char *file, uint line
#endif
) {
#ifdef SAFE_MUTEX
DBUG_ASSERT(mp != NULL);
DBUG_ASSERT(mp->m_u.m_safe_ptr != NULL);
return safe_mutex_lock(mp->m_u.m_safe_ptr, true, file, line);
#else
return native_mutex_trylock(&mp->m_u.m_native);
#endif
}
static inline int my_mutex_unlock(my_mutex_t *mp
#ifdef SAFE_MUTEX
,
const char *file, uint line
#endif
) {
#ifdef SAFE_MUTEX
DBUG_ASSERT(mp != NULL);
DBUG_ASSERT(mp->m_u.m_safe_ptr != NULL);
return safe_mutex_unlock(mp->m_u.m_safe_ptr, file, line);
#else
return native_mutex_unlock(&mp->m_u.m_native);
#endif
}
static inline int my_mutex_destroy(my_mutex_t *mp
#ifdef SAFE_MUTEX
,
const char *file, uint line
#endif
) {
#ifdef SAFE_MUTEX
DBUG_ASSERT(mp != NULL);
DBUG_ASSERT(mp->m_u.m_safe_ptr != NULL);
int rc = safe_mutex_destroy(mp->m_u.m_safe_ptr, file, line);
free(mp->m_u.m_safe_ptr);
mp->m_u.m_safe_ptr = NULL;
return rc;
#else
return native_mutex_destroy(&mp->m_u.m_native);
#endif
}
#endif /* THR_MUTEX_INCLUDED */
|