• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2008 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #ifndef ART_RUNTIME_MONITOR_H_
18 #define ART_RUNTIME_MONITOR_H_
19 
20 #include <pthread.h>
21 #include <stdint.h>
22 #include <stdlib.h>
23 
24 #include <iosfwd>
25 #include <list>
26 #include <vector>
27 
28 #include "atomic.h"
29 #include "base/allocator.h"
30 #include "base/mutex.h"
31 #include "gc_root.h"
32 #include "lock_word.h"
33 #include "read_barrier_option.h"
34 #include "thread_state.h"
35 
36 namespace art {
37 
38 class ArtMethod;
39 class IsMarkedVisitor;
40 class LockWord;
41 template<class T> class Handle;
42 class StackVisitor;
43 class Thread;
44 typedef uint32_t MonitorId;
45 
46 namespace mirror {
47   class Object;
48 }  // namespace mirror
49 
50 class Monitor {
51  public:
52   // The default number of spins that are done before thread suspension is used to forcibly inflate
53   // a lock word. See Runtime::max_spins_before_thin_lock_inflation_.
54   constexpr static size_t kDefaultMaxSpinsBeforeThinLockInflation = 50;
55 
56   ~Monitor();
57 
58   static void Init(uint32_t lock_profiling_threshold, uint32_t stack_dump_lock_profiling_threshold);
59 
60   // Return the thread id of the lock owner or 0 when there is no owner.
61   static uint32_t GetLockOwnerThreadId(mirror::Object* obj)
62       NO_THREAD_SAFETY_ANALYSIS;  // TODO: Reading lock owner without holding lock is racy.
63 
64   // NO_THREAD_SAFETY_ANALYSIS for mon->Lock.
65   static mirror::Object* MonitorEnter(Thread* thread, mirror::Object* obj, bool trylock)
66       EXCLUSIVE_LOCK_FUNCTION(obj)
67       NO_THREAD_SAFETY_ANALYSIS
68       REQUIRES(!Roles::uninterruptible_)
69       REQUIRES_SHARED(Locks::mutator_lock_);
70 
71   // NO_THREAD_SAFETY_ANALYSIS for mon->Unlock.
72   static bool MonitorExit(Thread* thread, mirror::Object* obj)
73       NO_THREAD_SAFETY_ANALYSIS
74       REQUIRES(!Roles::uninterruptible_)
75       REQUIRES_SHARED(Locks::mutator_lock_)
76       UNLOCK_FUNCTION(obj);
77 
Notify(Thread * self,mirror::Object * obj)78   static void Notify(Thread* self, mirror::Object* obj) REQUIRES_SHARED(Locks::mutator_lock_) {
79     DoNotify(self, obj, false);
80   }
NotifyAll(Thread * self,mirror::Object * obj)81   static void NotifyAll(Thread* self, mirror::Object* obj) REQUIRES_SHARED(Locks::mutator_lock_) {
82     DoNotify(self, obj, true);
83   }
84 
85   // Object.wait().  Also called for class init.
86   // NO_THREAD_SAFETY_ANALYSIS for mon->Wait.
87   static void Wait(Thread* self, mirror::Object* obj, int64_t ms, int32_t ns,
88                    bool interruptShouldThrow, ThreadState why)
89       REQUIRES_SHARED(Locks::mutator_lock_) NO_THREAD_SAFETY_ANALYSIS;
90 
91   static void DescribeWait(std::ostream& os, const Thread* thread)
92       REQUIRES(!Locks::thread_suspend_count_lock_)
93       REQUIRES_SHARED(Locks::mutator_lock_);
94 
95   // Used to implement JDWP's ThreadReference.CurrentContendedMonitor.
96   static mirror::Object* GetContendedMonitor(Thread* thread)
97       REQUIRES_SHARED(Locks::mutator_lock_);
98 
99   // Calls 'callback' once for each lock held in the single stack frame represented by
100   // the current state of 'stack_visitor'.
101   // The abort_on_failure flag allows to not die when the state of the runtime is unorderly. This
102   // is necessary when we have already aborted but want to dump the stack as much as we can.
103   static void VisitLocks(StackVisitor* stack_visitor, void (*callback)(mirror::Object*, void*),
104                          void* callback_context, bool abort_on_failure = true)
105       REQUIRES_SHARED(Locks::mutator_lock_);
106 
107   static bool IsValidLockWord(LockWord lock_word);
108 
109   template<ReadBarrierOption kReadBarrierOption = kWithReadBarrier>
GetObject()110   mirror::Object* GetObject() REQUIRES_SHARED(Locks::mutator_lock_) {
111     return obj_.Read<kReadBarrierOption>();
112   }
113 
114   void SetObject(mirror::Object* object);
115 
GetOwner()116   Thread* GetOwner() const NO_THREAD_SAFETY_ANALYSIS {
117     return owner_;
118   }
119 
120   int32_t GetHashCode();
121 
122   bool IsLocked() REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(!monitor_lock_);
123 
HasHashCode()124   bool HasHashCode() const {
125     return hash_code_.LoadRelaxed() != 0;
126   }
127 
GetMonitorId()128   MonitorId GetMonitorId() const {
129     return monitor_id_;
130   }
131 
132   // Inflate the lock on obj. May fail to inflate for spurious reasons, always re-check.
133   static void InflateThinLocked(Thread* self, Handle<mirror::Object> obj, LockWord lock_word,
134                                 uint32_t hash_code) REQUIRES_SHARED(Locks::mutator_lock_);
135 
136   // Not exclusive because ImageWriter calls this during a Heap::VisitObjects() that
137   // does not allow a thread suspension in the middle. TODO: maybe make this exclusive.
138   // NO_THREAD_SAFETY_ANALYSIS for monitor->monitor_lock_.
139   static bool Deflate(Thread* self, mirror::Object* obj)
140       REQUIRES_SHARED(Locks::mutator_lock_) NO_THREAD_SAFETY_ANALYSIS;
141 
142 #ifndef __LP64__
new(size_t size)143   void* operator new(size_t size) {
144     // Align Monitor* as per the monitor ID field size in the lock word.
145     void* result;
146     int error = posix_memalign(&result, LockWord::kMonitorIdAlignment, size);
147     CHECK_EQ(error, 0) << strerror(error);
148     return result;
149   }
150 
delete(void * ptr)151   void operator delete(void* ptr) {
152     free(ptr);
153   }
154 #endif
155 
156  private:
157   Monitor(Thread* self, Thread* owner, mirror::Object* obj, int32_t hash_code)
158       REQUIRES_SHARED(Locks::mutator_lock_);
159   Monitor(Thread* self, Thread* owner, mirror::Object* obj, int32_t hash_code, MonitorId id)
160       REQUIRES_SHARED(Locks::mutator_lock_);
161 
162   // Install the monitor into its object, may fail if another thread installs a different monitor
163   // first.
164   bool Install(Thread* self)
165       REQUIRES(!monitor_lock_)
166       REQUIRES_SHARED(Locks::mutator_lock_);
167 
168   // Links a thread into a monitor's wait set.  The monitor lock must be held by the caller of this
169   // routine.
170   void AppendToWaitSet(Thread* thread) REQUIRES(monitor_lock_);
171 
172   // Unlinks a thread from a monitor's wait set.  The monitor lock must be held by the caller of
173   // this routine.
174   void RemoveFromWaitSet(Thread* thread) REQUIRES(monitor_lock_);
175 
176   // Changes the shape of a monitor from thin to fat, preserving the internal lock state. The
177   // calling thread must own the lock or the owner must be suspended. There's a race with other
178   // threads inflating the lock, installing hash codes and spurious failures. The caller should
179   // re-read the lock word following the call.
180   static void Inflate(Thread* self, Thread* owner, mirror::Object* obj, int32_t hash_code)
181       REQUIRES_SHARED(Locks::mutator_lock_)
182       NO_THREAD_SAFETY_ANALYSIS;  // For m->Install(self)
183 
184   void LogContentionEvent(Thread* self,
185                           uint32_t wait_ms,
186                           uint32_t sample_percent,
187                           ArtMethod* owner_method,
188                           uint32_t owner_dex_pc)
189       REQUIRES_SHARED(Locks::mutator_lock_);
190 
191   static void FailedUnlock(mirror::Object* obj,
192                            uint32_t expected_owner_thread_id,
193                            uint32_t found_owner_thread_id,
194                            Monitor* mon)
195       REQUIRES(!Locks::thread_list_lock_,
196                !monitor_lock_)
197       REQUIRES_SHARED(Locks::mutator_lock_);
198 
199   // Try to lock without blocking, returns true if we acquired the lock.
200   bool TryLock(Thread* self)
201       REQUIRES(!monitor_lock_)
202       REQUIRES_SHARED(Locks::mutator_lock_);
203   // Variant for already holding the monitor lock.
204   bool TryLockLocked(Thread* self)
205       REQUIRES(monitor_lock_)
206       REQUIRES_SHARED(Locks::mutator_lock_);
207 
208   void Lock(Thread* self)
209       REQUIRES(!monitor_lock_)
210       REQUIRES_SHARED(Locks::mutator_lock_);
211   bool Unlock(Thread* thread)
212       REQUIRES(!monitor_lock_)
213       REQUIRES_SHARED(Locks::mutator_lock_);
214 
215   static void DoNotify(Thread* self, mirror::Object* obj, bool notify_all)
216       REQUIRES_SHARED(Locks::mutator_lock_) NO_THREAD_SAFETY_ANALYSIS;  // For mon->Notify.
217 
218   void Notify(Thread* self)
219       REQUIRES(!monitor_lock_)
220       REQUIRES_SHARED(Locks::mutator_lock_);
221 
222   void NotifyAll(Thread* self)
223       REQUIRES(!monitor_lock_)
224       REQUIRES_SHARED(Locks::mutator_lock_);
225 
226   static std::string PrettyContentionInfo(const std::string& owner_name,
227                                           pid_t owner_tid,
228                                           ArtMethod* owners_method,
229                                           uint32_t owners_dex_pc,
230                                           size_t num_waiters)
231       REQUIRES_SHARED(Locks::mutator_lock_);
232 
233   // Wait on a monitor until timeout, interrupt, or notification.  Used for Object.wait() and
234   // (somewhat indirectly) Thread.sleep() and Thread.join().
235   //
236   // If another thread calls Thread.interrupt(), we throw InterruptedException and return
237   // immediately if one of the following are true:
238   //  - blocked in wait(), wait(long), or wait(long, int) methods of Object
239   //  - blocked in join(), join(long), or join(long, int) methods of Thread
240   //  - blocked in sleep(long), or sleep(long, int) methods of Thread
241   // Otherwise, we set the "interrupted" flag.
242   //
243   // Checks to make sure that "ns" is in the range 0-999999 (i.e. fractions of a millisecond) and
244   // throws the appropriate exception if it isn't.
245   //
246   // The spec allows "spurious wakeups", and recommends that all code using Object.wait() do so in
247   // a loop.  This appears to derive from concerns about pthread_cond_wait() on multiprocessor
248   // systems.  Some commentary on the web casts doubt on whether these can/should occur.
249   //
250   // Since we're allowed to wake up "early", we clamp extremely long durations to return at the end
251   // of the 32-bit time epoch.
252   void Wait(Thread* self, int64_t msec, int32_t nsec, bool interruptShouldThrow, ThreadState why)
253       REQUIRES(!monitor_lock_)
254       REQUIRES_SHARED(Locks::mutator_lock_);
255 
256   // Translates the provided method and pc into its declaring class' source file and line number.
257   static void TranslateLocation(ArtMethod* method, uint32_t pc,
258                                 const char** source_file,
259                                 int32_t* line_number)
260       REQUIRES_SHARED(Locks::mutator_lock_);
261 
262   uint32_t GetOwnerThreadId() REQUIRES(!monitor_lock_);
263 
264   // Support for systrace output of monitor operations.
265   ALWAYS_INLINE static void AtraceMonitorLock(Thread* self,
266                                               mirror::Object* obj,
267                                               bool is_wait)
268       REQUIRES_SHARED(Locks::mutator_lock_);
269   static void AtraceMonitorLockImpl(Thread* self,
270                                     mirror::Object* obj,
271                                     bool is_wait)
272       REQUIRES_SHARED(Locks::mutator_lock_);
273   ALWAYS_INLINE static void AtraceMonitorUnlock();
274 
275   static uint32_t lock_profiling_threshold_;
276   static uint32_t stack_dump_lock_profiling_threshold_;
277 
278   Mutex monitor_lock_ DEFAULT_MUTEX_ACQUIRED_AFTER;
279 
280   ConditionVariable monitor_contenders_ GUARDED_BY(monitor_lock_);
281 
282   // Number of people waiting on the condition.
283   size_t num_waiters_ GUARDED_BY(monitor_lock_);
284 
285   // Which thread currently owns the lock?
286   Thread* volatile owner_ GUARDED_BY(monitor_lock_);
287 
288   // Owner's recursive lock depth.
289   int lock_count_ GUARDED_BY(monitor_lock_);
290 
291   // What object are we part of. This is a weak root. Do not access
292   // this directly, use GetObject() to read it so it will be guarded
293   // by a read barrier.
294   GcRoot<mirror::Object> obj_;
295 
296   // Threads currently waiting on this monitor.
297   Thread* wait_set_ GUARDED_BY(monitor_lock_);
298 
299   // Stored object hash code, generated lazily by GetHashCode.
300   AtomicInteger hash_code_;
301 
302   // Method and dex pc where the lock owner acquired the lock, used when lock
303   // sampling is enabled. locking_method_ may be null if the lock is currently
304   // unlocked, or if the lock is acquired by the system when the stack is empty.
305   ArtMethod* locking_method_ GUARDED_BY(monitor_lock_);
306   uint32_t locking_dex_pc_ GUARDED_BY(monitor_lock_);
307 
308   // The denser encoded version of this monitor as stored in the lock word.
309   MonitorId monitor_id_;
310 
311 #ifdef __LP64__
312   // Free list for monitor pool.
313   Monitor* next_free_ GUARDED_BY(Locks::allocated_monitor_ids_lock_);
314 #endif
315 
316   friend class MonitorInfo;
317   friend class MonitorList;
318   friend class MonitorPool;
319   friend class mirror::Object;
320   DISALLOW_COPY_AND_ASSIGN(Monitor);
321 };
322 
323 class MonitorList {
324  public:
325   MonitorList();
326   ~MonitorList();
327 
328   void Add(Monitor* m) REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(!monitor_list_lock_);
329 
330   void SweepMonitorList(IsMarkedVisitor* visitor)
331       REQUIRES(!monitor_list_lock_) REQUIRES_SHARED(Locks::mutator_lock_);
332   void DisallowNewMonitors() REQUIRES(!monitor_list_lock_);
333   void AllowNewMonitors() REQUIRES(!monitor_list_lock_);
334   void BroadcastForNewMonitors() REQUIRES(!monitor_list_lock_);
335   // Returns how many monitors were deflated.
336   size_t DeflateMonitors() REQUIRES(!monitor_list_lock_) REQUIRES(Locks::mutator_lock_);
337   size_t Size() REQUIRES(!monitor_list_lock_);
338 
339   typedef std::list<Monitor*, TrackingAllocator<Monitor*, kAllocatorTagMonitorList>> Monitors;
340 
341  private:
342   // During sweeping we may free an object and on a separate thread have an object created using
343   // the newly freed memory. That object may then have its lock-word inflated and a monitor created.
344   // If we allow new monitor registration during sweeping this monitor may be incorrectly freed as
345   // the object wasn't marked when sweeping began.
346   bool allow_new_monitors_ GUARDED_BY(monitor_list_lock_);
347   Mutex monitor_list_lock_ DEFAULT_MUTEX_ACQUIRED_AFTER;
348   ConditionVariable monitor_add_condition_ GUARDED_BY(monitor_list_lock_);
349   Monitors list_ GUARDED_BY(monitor_list_lock_);
350 
351   friend class Monitor;
352   DISALLOW_COPY_AND_ASSIGN(MonitorList);
353 };
354 
355 // Collects information about the current state of an object's monitor.
356 // This is very unsafe, and must only be called when all threads are suspended.
357 // For use only by the JDWP implementation.
358 class MonitorInfo {
359  public:
MonitorInfo()360   MonitorInfo() : owner_(nullptr), entry_count_(0) {}
361   MonitorInfo(const MonitorInfo&) = default;
362   MonitorInfo& operator=(const MonitorInfo&) = default;
363   explicit MonitorInfo(mirror::Object* o) REQUIRES(Locks::mutator_lock_);
364 
365   Thread* owner_;
366   size_t entry_count_;
367   std::vector<Thread*> waiters_;
368 };
369 
370 }  // namespace art
371 
372 #endif  // ART_RUNTIME_MONITOR_H_
373