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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
base / synchronization / lock_impl.h [blame]
// Copyright 2011 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef BASE_SYNCHRONIZATION_LOCK_IMPL_H_
#define BASE_SYNCHRONIZATION_LOCK_IMPL_H_
#include <utility>
#include "base/base_export.h"
#include "base/check.h"
#include "base/dcheck_is_on.h"
#include "base/memory/raw_ptr_exclusion.h"
#include "base/memory/stack_allocated.h"
#include "base/synchronization/lock_subtle.h"
#include "base/thread_annotations.h"
#include "build/build_config.h"
#if BUILDFLAG(IS_WIN)
#include "base/win/windows_types.h"
#elif BUILDFLAG(IS_POSIX) || BUILDFLAG(IS_FUCHSIA)
#include <errno.h>
#include <pthread.h>
#include <string.h>
#endif
namespace base {
class Lock;
class ConditionVariable;
namespace win {
namespace internal {
class AutoNativeLock;
class ScopedHandleVerifier;
} // namespace internal
} // namespace win
namespace internal {
// This class implements the underlying platform-specific spin-lock mechanism
// used for the Lock class. Do not use, use Lock instead.
class BASE_EXPORT LockImpl {
public:
LockImpl(const LockImpl&) = delete;
LockImpl& operator=(const LockImpl&) = delete;
private:
friend class base::Lock;
friend class base::ConditionVariable;
friend class base::win::internal::AutoNativeLock;
friend class base::win::internal::ScopedHandleVerifier;
#if BUILDFLAG(IS_WIN)
using NativeHandle = CHROME_SRWLOCK;
#elif BUILDFLAG(IS_POSIX) || BUILDFLAG(IS_FUCHSIA)
using NativeHandle = pthread_mutex_t;
#endif
LockImpl();
~LockImpl();
// If the lock is not held, take it and return true. If the lock is already
// held by something else, immediately return false.
inline bool Try();
// Take the lock, blocking until it is available if necessary.
inline void Lock();
// Release the lock. This must only be called by the lock's holder: after
// a successful call to Try, or a call to Lock.
inline void Unlock();
// Return the native underlying lock.
// TODO(awalker): refactor lock and condition variables so that this is
// unnecessary.
NativeHandle* native_handle() { return &native_handle_; }
#if BUILDFLAG(IS_POSIX) || BUILDFLAG(IS_FUCHSIA)
// Whether this lock will attempt to use priority inheritance.
static bool PriorityInheritanceAvailable();
#endif
void LockInternal();
NativeHandle native_handle_;
};
void LockImpl::Lock() {
// Try the lock first to acquire it cheaply if it's not contended. Try() is
// cheap on platforms with futex-type locks, as it doesn't call into the
// kernel. Not marked `[[likely]]`, as:
// 1. We don't know how much contention the lock would experience
// 2. This may lead to weird-looking code layout when inlined into a caller
// with `[[(un)likely]]` attributes.
if (Try()) {
return;
}
LockInternal();
}
#if BUILDFLAG(IS_WIN)
bool LockImpl::Try() {
return !!::TryAcquireSRWLockExclusive(
reinterpret_cast<PSRWLOCK>(&native_handle_));
}
void LockImpl::Unlock() {
::ReleaseSRWLockExclusive(reinterpret_cast<PSRWLOCK>(&native_handle_));
}
#elif BUILDFLAG(IS_POSIX) || BUILDFLAG(IS_FUCHSIA)
#if DCHECK_IS_ON()
BASE_EXPORT void dcheck_trylock_result(int rv);
BASE_EXPORT void dcheck_unlock_result(int rv);
#endif
bool LockImpl::Try() {
int rv = pthread_mutex_trylock(&native_handle_);
#if DCHECK_IS_ON()
dcheck_trylock_result(rv);
#endif
return rv == 0;
}
void LockImpl::Unlock() {
[[maybe_unused]] int rv = pthread_mutex_unlock(&native_handle_);
#if DCHECK_IS_ON()
dcheck_unlock_result(rv);
#endif
}
#endif
// This is an implementation used for AutoLock templated on the lock type.
template <class LockType>
class SCOPED_LOCKABLE BasicAutoLock {
STACK_ALLOCATED();
public:
struct AlreadyAcquired {};
explicit BasicAutoLock(
LockType& lock,
subtle::LockTracking tracking = subtle::LockTracking::kDisabled)
EXCLUSIVE_LOCK_FUNCTION(lock)
: lock_(lock) {
lock_.Acquire(tracking);
}
BasicAutoLock(LockType& lock, const AlreadyAcquired&)
EXCLUSIVE_LOCKS_REQUIRED(lock)
: lock_(lock) {
lock_.AssertAcquired();
}
BasicAutoLock(const BasicAutoLock&) = delete;
BasicAutoLock& operator=(const BasicAutoLock&) = delete;
~BasicAutoLock() UNLOCK_FUNCTION() {
lock_.AssertAcquired();
lock_.Release();
}
private:
LockType& lock_;
};
// This is an implementation used for MovableAutoLock templated on the lock
// type.
template <class LockType>
class SCOPED_LOCKABLE BasicMovableAutoLock {
public:
explicit BasicMovableAutoLock(
LockType& lock,
subtle::LockTracking tracking = subtle::LockTracking::kDisabled)
EXCLUSIVE_LOCK_FUNCTION(lock)
: lock_(&lock) {
lock_->Acquire(tracking);
}
BasicMovableAutoLock(const BasicMovableAutoLock&) = delete;
BasicMovableAutoLock& operator=(const BasicMovableAutoLock&) = delete;
BasicMovableAutoLock(BasicMovableAutoLock&& other) :
lock_(std::exchange(other.lock_, nullptr)) {}
BasicMovableAutoLock& operator=(BasicMovableAutoLock&& other) = delete;
~BasicMovableAutoLock() UNLOCK_FUNCTION() {
// The lock may have been moved out.
if (lock_) {
lock_->AssertAcquired();
lock_->Release();
}
}
private:
// RAW_PTR_EXCLUSION: Stack-scoped.
RAW_PTR_EXCLUSION LockType* lock_;
};
// This is an implementation used for AutoTryLock templated on the lock type.
template <class LockType>
class SCOPED_LOCKABLE BasicAutoTryLock {
STACK_ALLOCATED();
public:
// The `LOCKS_EXCLUDED(lock)` annotation requires that the caller has not
// acquired `lock`. Without the annotation, Clang's Thread Safety Analysis
// would generate a false positive despite correct usage. For instance, a
// caller that checks `is_acquired()` before writing to guarded data would be
// flagged with "writing variable 'foo' requires holding 'lock' exclusively."
// See <https://crbug.com/340196356>.
explicit BasicAutoTryLock(
LockType& lock,
subtle::LockTracking tracking = subtle::LockTracking::kDisabled)
LOCKS_EXCLUDED(lock)
: lock_(lock), is_acquired_(lock_.Try(tracking)) {}
BasicAutoTryLock(const BasicAutoTryLock&) = delete;
BasicAutoTryLock& operator=(const BasicAutoTryLock&) = delete;
~BasicAutoTryLock() UNLOCK_FUNCTION() {
if (is_acquired_) {
lock_.AssertAcquired();
lock_.Release();
}
}
bool is_acquired() const EXCLUSIVE_TRYLOCK_FUNCTION(true) {
return is_acquired_;
}
private:
LockType& lock_;
const bool is_acquired_;
};
// This is an implementation used for AutoUnlock templated on the lock type.
template <class LockType>
class BasicAutoUnlock {
STACK_ALLOCATED();
public:
explicit BasicAutoUnlock(LockType& lock) : lock_(lock) {
// We require our caller to have the lock.
lock_.AssertAcquired();
lock_.Release();
}
BasicAutoUnlock(const BasicAutoUnlock&) = delete;
BasicAutoUnlock& operator=(const BasicAutoUnlock&) = delete;
~BasicAutoUnlock() { lock_.Acquire(); }
private:
LockType& lock_;
};
// This is an implementation used for AutoLockMaybe templated on the lock type.
template <class LockType>
class SCOPED_LOCKABLE BasicAutoLockMaybe {
STACK_ALLOCATED();
public:
explicit BasicAutoLockMaybe(
LockType* lock,
subtle::LockTracking tracking = subtle::LockTracking::kDisabled)
EXCLUSIVE_LOCK_FUNCTION(lock)
: lock_(lock) {
if (lock_)
lock_->Acquire(tracking);
}
BasicAutoLockMaybe(const BasicAutoLockMaybe&) = delete;
BasicAutoLockMaybe& operator=(const BasicAutoLockMaybe&) = delete;
~BasicAutoLockMaybe() UNLOCK_FUNCTION() {
if (lock_) {
lock_->AssertAcquired();
lock_->Release();
}
}
private:
LockType* const lock_;
};
// This is an implementation used for ReleasableAutoLock templated on the lock
// type.
template <class LockType>
class SCOPED_LOCKABLE BasicReleasableAutoLock {
STACK_ALLOCATED();
public:
explicit BasicReleasableAutoLock(
LockType* lock,
subtle::LockTracking tracking = subtle::LockTracking::kDisabled)
EXCLUSIVE_LOCK_FUNCTION(lock)
: lock_(lock) {
DCHECK(lock_);
lock_->Acquire(tracking);
}
BasicReleasableAutoLock(const BasicReleasableAutoLock&) = delete;
BasicReleasableAutoLock& operator=(const BasicReleasableAutoLock&) = delete;
~BasicReleasableAutoLock() UNLOCK_FUNCTION() {
if (lock_) {
lock_->AssertAcquired();
lock_->Release();
}
}
void Release() UNLOCK_FUNCTION() {
DCHECK(lock_);
lock_->AssertAcquired();
lock_->Release();
lock_ = nullptr;
}
private:
LockType* lock_;
};
} // namespace internal
} // namespace base
#endif // BASE_SYNCHRONIZATION_LOCK_IMPL_H_