blob: 13c965cc18372a3bc6ea00b75d9de5b8ca7875bf [file] [log] [blame]
Elliott Hughes8daa0922011-09-11 13:46:25 -07001/*
2 * Copyright (C) 2011 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#include "thread_list.h"
18
Elliott Hughesabbe07d2012-06-05 17:42:23 -070019#include <dirent.h>
20#include <sys/types.h>
Elliott Hughes038a8062011-09-18 14:12:41 -070021#include <unistd.h>
22
Elliott Hughes76b61672012-12-12 17:47:30 -080023#include "base/mutex.h"
Elliott Hughes475fc232011-10-25 15:00:35 -070024#include "debugger.h"
Mathieu Chartier7664f5c2012-06-08 18:15:32 -070025#include "timing_logger.h"
Elliott Hughesabbe07d2012-06-05 17:42:23 -070026#include "utils.h"
Elliott Hughes475fc232011-10-25 15:00:35 -070027
Elliott Hughes8daa0922011-09-11 13:46:25 -070028namespace art {
29
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -080030ThreadList::ThreadList()
Elliott Hughese52e49b2012-04-02 16:05:44 -070031 : allocated_ids_lock_("allocated thread ids lock"),
Ian Rogers00f7d0e2012-07-19 15:28:27 -070032 suspend_all_count_(0), debug_suspend_all_count_(0),
Ian Rogersc604d732012-10-14 16:09:54 -070033 thread_exit_cond_("thread exit condition variable", *Locks::thread_list_lock_) {
Elliott Hughes8daa0922011-09-11 13:46:25 -070034}
35
36ThreadList::~ThreadList() {
Elliott Hughese52e49b2012-04-02 16:05:44 -070037 // Detach the current thread if necessary. If we failed to start, there might not be any threads.
Elliott Hughes6a144332012-04-03 13:07:11 -070038 // We need to detach the current thread here in case there's another thread waiting to join with
39 // us.
Elliott Hughes8daa0922011-09-11 13:46:25 -070040 if (Contains(Thread::Current())) {
41 Runtime::Current()->DetachCurrentThread();
42 }
Elliott Hughes6a144332012-04-03 13:07:11 -070043
44 WaitForOtherNonDaemonThreadsToExit();
Ian Rogers00f7d0e2012-07-19 15:28:27 -070045 // TODO: there's an unaddressed race here where a thread may attach during shutdown, see
46 // Thread::Init.
Elliott Hughes6a144332012-04-03 13:07:11 -070047 SuspendAllDaemonThreads();
Elliott Hughes8daa0922011-09-11 13:46:25 -070048}
49
50bool ThreadList::Contains(Thread* thread) {
51 return find(list_.begin(), list_.end(), thread) != list_.end();
52}
53
Elliott Hughesabbe07d2012-06-05 17:42:23 -070054bool ThreadList::Contains(pid_t tid) {
55 for (It it = list_.begin(), end = list_.end(); it != end; ++it) {
56 if ((*it)->tid_ == tid) {
57 return true;
58 }
59 }
60 return false;
61}
62
Brian Carlstrom24a3c2e2011-10-17 18:07:52 -070063pid_t ThreadList::GetLockOwner() {
Ian Rogersb726dcb2012-09-05 08:57:23 -070064 return Locks::thread_list_lock_->GetExclusiveOwnerTid();
Elliott Hughesaccd83d2011-10-17 14:25:58 -070065}
66
Elliott Hughesc967f782012-04-16 10:23:15 -070067void ThreadList::DumpForSigQuit(std::ostream& os) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -070068 {
Ian Rogers50b35e22012-10-04 10:09:15 -070069 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -070070 DumpLocked(os);
71 }
Elliott Hughesabbe07d2012-06-05 17:42:23 -070072 DumpUnattachedThreads(os);
73}
74
Ian Rogerscfaa4552012-11-26 21:00:08 -080075static void DumpUnattachedThread(std::ostream& os, pid_t tid) NO_THREAD_SAFETY_ANALYSIS {
76 // TODO: No thread safety analysis as DumpState with a NULL thread won't access fields, should
77 // refactor DumpState to avoid skipping analysis.
Elliott Hughesabbe07d2012-06-05 17:42:23 -070078 Thread::DumpState(os, NULL, tid);
79 DumpKernelStack(os, tid, " kernel: ", false);
Brian Carlstromed8b7232012-06-27 17:54:47 -070080 // TODO: Reenable this when the native code in system_server can handle it.
81 // Currently "adb shell kill -3 `pid system_server`" will cause it to exit.
82 if (false) {
83 DumpNativeStack(os, tid, " native: ", false);
84 }
Elliott Hughesabbe07d2012-06-05 17:42:23 -070085 os << "\n";
86}
87
88void ThreadList::DumpUnattachedThreads(std::ostream& os) {
89 DIR* d = opendir("/proc/self/task");
90 if (!d) {
91 return;
92 }
93
Ian Rogers50b35e22012-10-04 10:09:15 -070094 Thread* self = Thread::Current();
Elliott Hughes4696b5b2012-10-30 10:35:10 -070095 dirent* e;
96 while ((e = readdir(d)) != NULL) {
Elliott Hughesabbe07d2012-06-05 17:42:23 -070097 char* end;
Elliott Hughes4696b5b2012-10-30 10:35:10 -070098 pid_t tid = strtol(e->d_name, &end, 10);
Ian Rogers00f7d0e2012-07-19 15:28:27 -070099 if (!*end) {
100 bool contains;
101 {
Ian Rogers50b35e22012-10-04 10:09:15 -0700102 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700103 contains = Contains(tid);
104 }
105 if (!contains) {
106 DumpUnattachedThread(os, tid);
107 }
Elliott Hughesabbe07d2012-06-05 17:42:23 -0700108 }
109 }
110 closedir(d);
Elliott Hughesff738062012-02-03 15:00:42 -0800111}
112
113void ThreadList::DumpLocked(std::ostream& os) {
Elliott Hughes8daa0922011-09-11 13:46:25 -0700114 os << "DALVIK THREADS (" << list_.size() << "):\n";
Elliott Hughes8daa0922011-09-11 13:46:25 -0700115 for (It it = list_.begin(), end = list_.end(); it != end; ++it) {
116 (*it)->Dump(os);
117 os << "\n";
118 }
119}
120
Ian Rogers50b35e22012-10-04 10:09:15 -0700121void ThreadList::AssertThreadsAreSuspended(Thread* self, Thread* ignore1, Thread* ignore2) {
122 MutexLock mu(self, *Locks::thread_list_lock_);
123 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
Elliott Hughes8d768a92011-09-14 16:35:25 -0700124 for (It it = list_.begin(), end = list_.end(); it != end; ++it) {
125 Thread* thread = *it;
jeffhao725a9572012-11-13 18:20:12 -0800126 if (thread != ignore1 && thread != ignore2) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700127 CHECK(thread->IsSuspended())
128 << "\nUnsuspended thread: <<" << *thread << "\n"
129 << "self: <<" << *Thread::Current();
130 }
Elliott Hughes8d768a92011-09-14 16:35:25 -0700131 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700132}
133
Ian Rogers66aee5c2012-08-15 17:17:47 -0700134#if HAVE_TIMED_RWLOCK
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700135// Attempt to rectify locks so that we dump thread list with required locks before exiting.
Ian Rogers81d425b2012-09-27 16:03:43 -0700136static void UnsafeLogFatalForThreadSuspendAllTimeout(Thread* self) NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700137 Runtime* runtime = Runtime::Current();
138 std::ostringstream ss;
139 ss << "Thread suspend timeout\n";
140 runtime->DumpLockHolders(ss);
141 ss << "\n";
Ian Rogers81d425b2012-09-27 16:03:43 -0700142 Locks::mutator_lock_->SharedTryLock(self);
143 if (!Locks::mutator_lock_->IsSharedHeld(self)) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700144 LOG(WARNING) << "Dumping thread list without holding mutator_lock_";
145 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700146 Locks::thread_list_lock_->TryLock(self);
147 if (!Locks::thread_list_lock_->IsExclusiveHeld(self)) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700148 LOG(WARNING) << "Dumping thread list without holding thread_list_lock_";
149 }
150 runtime->GetThreadList()->DumpLocked(ss);
151 LOG(FATAL) << ss.str();
152}
Ian Rogers66aee5c2012-08-15 17:17:47 -0700153#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700154
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700155size_t ThreadList::RunCheckpoint(Closure* checkpoint_function) {
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700156 Thread* self = Thread::Current();
157 if (kIsDebugBuild) {
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800158 Locks::mutator_lock_->AssertNotExclusiveHeld(self);
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700159 Locks::thread_list_lock_->AssertNotHeld(self);
160 Locks::thread_suspend_count_lock_->AssertNotHeld(self);
161 CHECK_NE(self->GetState(), kRunnable);
162 }
163
164 std::vector<Thread*> suspended_count_modified_threads;
165 size_t count = 0;
166 {
167 // Call a checkpoint function for each thread, threads which are suspend get their checkpoint
168 // manually called.
169 MutexLock mu(self, *Locks::thread_list_lock_);
170 // TODO: C++0x auto.
171 for (It it = list_.begin(), end = list_.end(); it != end; ++it) {
172 Thread* thread = *it;
173 if (thread != self) {
174 for (;;) {
175 if (thread->RequestCheckpoint(checkpoint_function)) {
176 // This thread will run it's checkpoint some time in the near future.
177 count++;
178 break;
179 } else {
180 // We are probably suspended, try to make sure that we stay suspended.
181 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
182 // The thread switched back to runnable.
183 if (thread->GetState() == kRunnable) {
184 continue;
185 }
186 thread->ModifySuspendCount(self, +1, false);
187 suspended_count_modified_threads.push_back(thread);
188 break;
189 }
190 }
191 }
192 }
193 }
194
195 // Run the checkpoint on ourself while we wait for threads to suspend.
196 checkpoint_function->Run(self);
197
198 // Run the checkpoint on the suspended threads.
199 for (size_t i = 0; i < suspended_count_modified_threads.size(); ++i) {
200 Thread* thread = suspended_count_modified_threads[i];
201 if (!thread->IsSuspended()) {
202 // Wait until the thread is suspended.
203 uint64_t start = NanoTime();
204 do {
205 // Sleep for 100us.
206 usleep(100);
207 } while (!thread->IsSuspended());
208 uint64_t end = NanoTime();
209 // Shouldn't need to wait for longer than 1 millisecond.
210 const uint64_t threshold = 1;
211 if (NsToMs(end - start) > threshold) {
Brian Carlstrombcc29262012-11-02 11:36:03 -0700212 LOG(INFO) << "Warning: waited longer than " << threshold << " ms for thread suspend"
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700213 << std::endl;
214 }
215 }
216 // We know for sure that the thread is suspended at this point.
217 thread->RunCheckpointFunction();
218 {
219 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
220 thread->ModifySuspendCount(self, -1, false);
221 }
222 }
223
Mathieu Chartier664bebf2012-11-12 16:54:11 -0800224 {
225 // Imitate ResumeAll, threads may be waiting on Thread::resume_cond_ since we raised their
226 // suspend count. Now the suspend_count_ is lowered so we must do the broadcast.
227 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
228 Thread::resume_cond_->Broadcast(self);
229 }
230
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700231 // Add one for self.
232 return count + suspended_count_modified_threads.size() + 1;
233}
234
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700235void ThreadList::SuspendAll() {
236 Thread* self = Thread::Current();
237
238 VLOG(threads) << *self << " SuspendAll starting...";
239
240 if (kIsDebugBuild) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700241 Locks::mutator_lock_->AssertNotHeld(self);
242 Locks::thread_list_lock_->AssertNotHeld(self);
243 Locks::thread_suspend_count_lock_->AssertNotHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700244 CHECK_NE(self->GetState(), kRunnable);
245 }
246 {
Ian Rogers81d425b2012-09-27 16:03:43 -0700247 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700248 {
Ian Rogers81d425b2012-09-27 16:03:43 -0700249 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700250 // Update global suspend all state for attaching threads.
251 ++suspend_all_count_;
252 // Increment everybody's suspend count (except our own).
253 for (It it = list_.begin(), end = list_.end(); it != end; ++it) {
254 Thread* thread = *it;
255 if (thread == self) {
256 continue;
257 }
258 VLOG(threads) << "requesting thread suspend: " << *thread;
Ian Rogers01ae5802012-09-28 16:14:01 -0700259 thread->ModifySuspendCount(self, +1, false);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700260 }
261 }
262 }
263
Ian Rogers66aee5c2012-08-15 17:17:47 -0700264 // Block on the mutator lock until all Runnable threads release their share of access.
265#if HAVE_TIMED_RWLOCK
266 // Timeout if we wait more than 30 seconds.
Ian Rogersc604d732012-10-14 16:09:54 -0700267 if (UNLIKELY(!Locks::mutator_lock_->ExclusiveLockWithTimeout(self, 30 * 1000, 0))) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700268 UnsafeLogFatalForThreadSuspendAllTimeout(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700269 }
Ian Rogers66aee5c2012-08-15 17:17:47 -0700270#else
Ian Rogers81d425b2012-09-27 16:03:43 -0700271 Locks::mutator_lock_->ExclusiveLock(self);
Ian Rogers66aee5c2012-08-15 17:17:47 -0700272#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700273
274 // Debug check that all threads are suspended.
Ian Rogers50b35e22012-10-04 10:09:15 -0700275 AssertThreadsAreSuspended(self, self);
Elliott Hughes8d768a92011-09-14 16:35:25 -0700276
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800277 VLOG(threads) << *self << " SuspendAll complete";
Elliott Hughes8d768a92011-09-14 16:35:25 -0700278}
279
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700280void ThreadList::ResumeAll() {
281 Thread* self = Thread::Current();
282
283 VLOG(threads) << *self << " ResumeAll starting";
Ian Rogers01ae5802012-09-28 16:14:01 -0700284
285 // Debug check that all threads are suspended.
Ian Rogers50b35e22012-10-04 10:09:15 -0700286 AssertThreadsAreSuspended(self, self);
Ian Rogers01ae5802012-09-28 16:14:01 -0700287
Ian Rogers81d425b2012-09-27 16:03:43 -0700288 Locks::mutator_lock_->ExclusiveUnlock(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700289 {
Ian Rogers81d425b2012-09-27 16:03:43 -0700290 MutexLock mu(self, *Locks::thread_list_lock_);
291 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700292 // Update global suspend all state for attaching threads.
293 --suspend_all_count_;
294 // Decrement the suspend counts for all threads.
295 for (It it = list_.begin(), end = list_.end(); it != end; ++it) {
296 Thread* thread = *it;
297 if (thread == self) {
298 continue;
299 }
Ian Rogers01ae5802012-09-28 16:14:01 -0700300 thread->ModifySuspendCount(self, -1, false);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700301 }
302
303 // Broadcast a notification to all suspended threads, some or all of
304 // which may choose to wake up. No need to wait for them.
305 VLOG(threads) << *self << " ResumeAll waking others";
Ian Rogersc604d732012-10-14 16:09:54 -0700306 Thread::resume_cond_->Broadcast(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700307 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700308 VLOG(threads) << *self << " ResumeAll complete";
309}
310
311void ThreadList::Resume(Thread* thread, bool for_debugger) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700312 Thread* self = Thread::Current();
313 DCHECK_NE(thread, self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700314 VLOG(threads) << "Resume(" << *thread << ") starting..." << (for_debugger ? " (debugger)" : "");
Elliott Hughes01158d72011-09-19 19:47:10 -0700315
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700316 {
317 // To check Contains.
Ian Rogers81d425b2012-09-27 16:03:43 -0700318 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700319 // To check IsSuspended.
Ian Rogers81d425b2012-09-27 16:03:43 -0700320 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
321 DCHECK(thread->IsSuspended());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700322 if (!Contains(thread)) {
323 return;
324 }
Ian Rogers01ae5802012-09-28 16:14:01 -0700325 thread->ModifySuspendCount(self, -1, for_debugger);
Elliott Hughes01158d72011-09-19 19:47:10 -0700326 }
327
328 {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700329 VLOG(threads) << "Resume(" << *thread << ") waking others";
Ian Rogers81d425b2012-09-27 16:03:43 -0700330 MutexLock mu(self, *Locks::thread_suspend_count_lock_);
Ian Rogersc604d732012-10-14 16:09:54 -0700331 Thread::resume_cond_->Broadcast(self);
Elliott Hughes01158d72011-09-19 19:47:10 -0700332 }
333
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700334 VLOG(threads) << "Resume(" << *thread << ") complete";
335}
Elliott Hughes01158d72011-09-19 19:47:10 -0700336
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700337void ThreadList::SuspendAllForDebugger() {
338 Thread* self = Thread::Current();
339 Thread* debug_thread = Dbg::GetDebugThread();
340
341 VLOG(threads) << *self << " SuspendAllForDebugger starting...";
342
343 {
Ian Rogers81d425b2012-09-27 16:03:43 -0700344 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700345 {
Ian Rogers81d425b2012-09-27 16:03:43 -0700346 MutexLock mu(self, *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700347 // Update global suspend all state for attaching threads.
348 ++suspend_all_count_;
349 ++debug_suspend_all_count_;
350 // Increment everybody's suspend count (except our own).
351 for (It it = list_.begin(), end = list_.end(); it != end; ++it) {
352 Thread* thread = *it;
353 if (thread == self || thread == debug_thread) {
354 continue;
355 }
356 VLOG(threads) << "requesting thread suspend: " << *thread;
Ian Rogers01ae5802012-09-28 16:14:01 -0700357 thread->ModifySuspendCount(self, +1, true);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700358 }
359 }
360 }
361
Ian Rogers66aee5c2012-08-15 17:17:47 -0700362 // Block on the mutator lock until all Runnable threads release their share of access then
363 // immediately unlock again.
364#if HAVE_TIMED_RWLOCK
365 // Timeout if we wait more than 30 seconds.
Ian Rogersc604d732012-10-14 16:09:54 -0700366 if (!Locks::mutator_lock_->ExclusiveLockWithTimeout(self, 30 * 1000, 0)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700367 UnsafeLogFatalForThreadSuspendAllTimeout(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700368 } else {
Ian Rogers81d425b2012-09-27 16:03:43 -0700369 Locks::mutator_lock_->ExclusiveUnlock(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700370 }
Ian Rogers66aee5c2012-08-15 17:17:47 -0700371#else
Ian Rogers81d425b2012-09-27 16:03:43 -0700372 Locks::mutator_lock_->ExclusiveLock(self);
373 Locks::mutator_lock_->ExclusiveUnlock(self);
Ian Rogers66aee5c2012-08-15 17:17:47 -0700374#endif
Ian Rogers50b35e22012-10-04 10:09:15 -0700375 AssertThreadsAreSuspended(self, self, debug_thread);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700376
377 VLOG(threads) << *self << " SuspendAll complete";
Elliott Hughes01158d72011-09-19 19:47:10 -0700378}
379
Elliott Hughes475fc232011-10-25 15:00:35 -0700380void ThreadList::SuspendSelfForDebugger() {
381 Thread* self = Thread::Current();
Elliott Hughes01158d72011-09-19 19:47:10 -0700382
Elliott Hughes475fc232011-10-25 15:00:35 -0700383 // The debugger thread must not suspend itself due to debugger activity!
384 Thread* debug_thread = Dbg::GetDebugThread();
385 CHECK(debug_thread != NULL);
386 CHECK(self != debug_thread);
jeffhaoa77f0f62012-12-05 17:19:31 -0800387 CHECK_NE(self->GetState(), kRunnable);
388 Locks::mutator_lock_->AssertNotHeld(self);
Elliott Hughes475fc232011-10-25 15:00:35 -0700389
jeffhaoa77f0f62012-12-05 17:19:31 -0800390 {
391 // Collisions with other suspends aren't really interesting. We want
392 // to ensure that we're the only one fiddling with the suspend count
393 // though.
394 MutexLock mu(self, *Locks::thread_suspend_count_lock_);
395 self->ModifySuspendCount(self, +1, true);
396 CHECK_GT(self->suspend_count_, 0);
397 }
Elliott Hughes475fc232011-10-25 15:00:35 -0700398
Elliott Hughes1f729aa2012-03-02 13:55:41 -0800399 VLOG(threads) << *self << " self-suspending (debugger)";
Elliott Hughes475fc232011-10-25 15:00:35 -0700400
401 // Tell JDWP that we've completed suspension. The JDWP thread can't
402 // tell us to resume before we're fully asleep because we hold the
403 // suspend count lock.
404 Dbg::ClearWaitForEventThread();
405
jeffhaoa77f0f62012-12-05 17:19:31 -0800406 {
407 MutexLock mu(self, *Locks::thread_suspend_count_lock_);
408 while (self->suspend_count_ != 0) {
409 Thread::resume_cond_->Wait(self);
410 if (self->suspend_count_ != 0) {
411 // The condition was signaled but we're still suspended. This
412 // can happen if the debugger lets go while a SIGQUIT thread
413 // dump event is pending (assuming SignalCatcher was resumed for
414 // just long enough to try to grab the thread-suspend lock).
415 LOG(DEBUG) << *self << " still suspended after undo "
416 << "(suspend count=" << self->suspend_count_ << ")";
417 }
Elliott Hughes475fc232011-10-25 15:00:35 -0700418 }
jeffhaoa77f0f62012-12-05 17:19:31 -0800419 CHECK_EQ(self->suspend_count_, 0);
Elliott Hughes475fc232011-10-25 15:00:35 -0700420 }
jeffhaoa77f0f62012-12-05 17:19:31 -0800421
Elliott Hughes1f729aa2012-03-02 13:55:41 -0800422 VLOG(threads) << *self << " self-reviving (debugger)";
Elliott Hughes475fc232011-10-25 15:00:35 -0700423}
424
Elliott Hughes234ab152011-10-26 14:02:26 -0700425void ThreadList::UndoDebuggerSuspensions() {
426 Thread* self = Thread::Current();
427
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800428 VLOG(threads) << *self << " UndoDebuggerSuspensions starting";
Elliott Hughes234ab152011-10-26 14:02:26 -0700429
430 {
Ian Rogers81d425b2012-09-27 16:03:43 -0700431 MutexLock mu(self, *Locks::thread_list_lock_);
432 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700433 // Update global suspend all state for attaching threads.
434 suspend_all_count_ -= debug_suspend_all_count_;
435 debug_suspend_all_count_ = 0;
436 // Update running threads.
Elliott Hughes234ab152011-10-26 14:02:26 -0700437 for (It it = list_.begin(), end = list_.end(); it != end; ++it) {
438 Thread* thread = *it;
439 if (thread == self || thread->debug_suspend_count_ == 0) {
440 continue;
441 }
Ian Rogers01ae5802012-09-28 16:14:01 -0700442 thread->ModifySuspendCount(self, -thread->debug_suspend_count_, true);
Elliott Hughes234ab152011-10-26 14:02:26 -0700443 }
444 }
445
446 {
Ian Rogers81d425b2012-09-27 16:03:43 -0700447 MutexLock mu(self, *Locks::thread_suspend_count_lock_);
Ian Rogersc604d732012-10-14 16:09:54 -0700448 Thread::resume_cond_->Broadcast(self);
Elliott Hughes234ab152011-10-26 14:02:26 -0700449 }
450
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800451 VLOG(threads) << "UndoDebuggerSuspensions(" << *self << ") complete";
Elliott Hughes234ab152011-10-26 14:02:26 -0700452}
453
Elliott Hughese52e49b2012-04-02 16:05:44 -0700454void ThreadList::WaitForOtherNonDaemonThreadsToExit() {
Ian Rogers81d425b2012-09-27 16:03:43 -0700455 Thread* self = Thread::Current();
456 Locks::mutator_lock_->AssertNotHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700457 bool all_threads_are_daemons;
458 do {
Ian Rogers120f1c72012-09-28 17:17:10 -0700459 {
460 // No more threads can be born after we start to shutdown.
461 MutexLock mu(self, *Locks::runtime_shutdown_lock_);
462 CHECK(Runtime::Current()->IsShuttingDown());
463 CHECK_EQ(Runtime::Current()->NumberOfThreadsBeingBorn(), 0U);
464 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700465 all_threads_are_daemons = true;
Ian Rogers120f1c72012-09-28 17:17:10 -0700466 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700467 for (It it = list_.begin(), end = list_.end(); it != end; ++it) {
468 // TODO: there's a race here with thread exit that's being worked around by checking if the
469 // thread has a peer.
470 Thread* thread = *it;
Ian Rogers81d425b2012-09-27 16:03:43 -0700471 if (thread != self && thread->HasPeer() && !thread->IsDaemon()) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700472 all_threads_are_daemons = false;
473 break;
474 }
475 }
476 if (!all_threads_are_daemons) {
477 // Wait for another thread to exit before re-checking.
Ian Rogersc604d732012-10-14 16:09:54 -0700478 thread_exit_cond_.Wait(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700479 }
480 } while(!all_threads_are_daemons);
Elliott Hughes038a8062011-09-18 14:12:41 -0700481}
482
483void ThreadList::SuspendAllDaemonThreads() {
Ian Rogers81d425b2012-09-27 16:03:43 -0700484 Thread* self = Thread::Current();
485 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700486 { // Tell all the daemons it's time to suspend.
Ian Rogers81d425b2012-09-27 16:03:43 -0700487 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
Elliott Hughes038a8062011-09-18 14:12:41 -0700488 for (It it = list_.begin(), end = list_.end(); it != end; ++it) {
489 Thread* thread = *it;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700490 // This is only run after all non-daemon threads have exited, so the remainder should all be
491 // daemons.
Ian Rogers7e762862012-10-22 15:45:08 -0700492 CHECK(thread->IsDaemon()) << *thread;
Ian Rogers81d425b2012-09-27 16:03:43 -0700493 if (thread != self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700494 thread->ModifySuspendCount(self, +1, false);
Elliott Hughese52e49b2012-04-02 16:05:44 -0700495 }
Elliott Hughes038a8062011-09-18 14:12:41 -0700496 }
497 }
Elliott Hughes038a8062011-09-18 14:12:41 -0700498 // Give the threads a chance to suspend, complaining if they're slow.
499 bool have_complained = false;
500 for (int i = 0; i < 10; ++i) {
501 usleep(200 * 1000);
502 bool all_suspended = true;
503 for (It it = list_.begin(), end = list_.end(); it != end; ++it) {
504 Thread* thread = *it;
Ian Rogers81d425b2012-09-27 16:03:43 -0700505 if (thread != self && thread->GetState() == kRunnable) {
Elliott Hughes038a8062011-09-18 14:12:41 -0700506 if (!have_complained) {
507 LOG(WARNING) << "daemon thread not yet suspended: " << *thread;
508 have_complained = true;
509 }
510 all_suspended = false;
511 }
512 }
513 if (all_suspended) {
514 return;
515 }
516 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700517 LOG(ERROR) << "suspend all daemons failed";
518}
519void ThreadList::Register(Thread* self) {
520 DCHECK_EQ(self, Thread::Current());
521
522 if (VLOG_IS_ON(threads)) {
523 std::ostringstream oss;
524 self->ShortDump(oss); // We don't hold the mutator_lock_ yet and so cannot call Dump.
525 LOG(INFO) << "ThreadList::Register() " << *self << "\n" << oss;
526 }
527
528 // Atomically add self to the thread list and make its thread_suspend_count_ reflect ongoing
529 // SuspendAll requests.
Ian Rogers81d425b2012-09-27 16:03:43 -0700530 MutexLock mu(self, *Locks::thread_list_lock_);
531 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700532 self->suspend_count_ = suspend_all_count_;
533 self->debug_suspend_count_ = debug_suspend_all_count_;
Ian Rogers01ae5802012-09-28 16:14:01 -0700534 if (self->suspend_count_ > 0) {
535 self->AtomicSetFlag(kSuspendRequest);
536 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700537 CHECK(!Contains(self));
538 list_.push_back(self);
539}
540
541void ThreadList::Unregister(Thread* self) {
542 DCHECK_EQ(self, Thread::Current());
543
544 VLOG(threads) << "ThreadList::Unregister() " << *self;
545
546 // Any time-consuming destruction, plus anything that can call back into managed code or
547 // suspend and so on, must happen at this point, and not in ~Thread.
548 self->Destroy();
549
Ian Rogerscfaa4552012-11-26 21:00:08 -0800550 uint32_t thin_lock_id = self->thin_lock_id_;
551 self->thin_lock_id_ = 0;
552 ReleaseThreadId(self, thin_lock_id);
553 while (self != NULL) {
554 // Remove and delete the Thread* while holding the thread_list_lock_ and
555 // thread_suspend_count_lock_ so that the unregistering thread cannot be suspended.
Ian Rogers81d425b2012-09-27 16:03:43 -0700556 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700557 CHECK(Contains(self));
Ian Rogerscfaa4552012-11-26 21:00:08 -0800558 // Note: we don't take the thread_suspend_count_lock_ here as to be suspending a thread other
559 // than yourself you need to hold the thread_list_lock_ (see Thread::ModifySuspendCount).
560 if (!self->IsSuspended()) {
561 list_.remove(self);
562 delete self;
563 self = NULL;
564 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700565 }
566
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700567 // Clear the TLS data, so that the underlying native thread is recognizably detached.
568 // (It may wish to reattach later.)
569 CHECK_PTHREAD_CALL(pthread_setspecific, (Thread::pthread_key_self_, NULL), "detach self");
570
571 // Signal that a thread just detached.
Ian Rogers81d425b2012-09-27 16:03:43 -0700572 MutexLock mu(NULL, *Locks::thread_list_lock_);
Ian Rogersc604d732012-10-14 16:09:54 -0700573 thread_exit_cond_.Signal(NULL);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700574}
575
576void ThreadList::ForEach(void (*callback)(Thread*, void*), void* context) {
577 for (It it = list_.begin(), end = list_.end(); it != end; ++it) {
578 callback(*it, context);
579 }
580}
581
582void ThreadList::VisitRoots(Heap::RootVisitor* visitor, void* arg) const {
Ian Rogers81d425b2012-09-27 16:03:43 -0700583 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700584 for (It it = list_.begin(), end = list_.end(); it != end; ++it) {
585 (*it)->VisitRoots(visitor, arg);
586 }
Elliott Hughes038a8062011-09-18 14:12:41 -0700587}
588
Mathieu Chartier6f1c9492012-10-15 12:08:41 -0700589void ThreadList::VerifyRoots(Heap::VerifyRootVisitor* visitor, void* arg) const {
590 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
591 for (It it = list_.begin(), end = list_.end(); it != end; ++it) {
592 (*it)->VerifyRoots(visitor, arg);
593 }
594}
595
Ian Rogerscfaa4552012-11-26 21:00:08 -0800596uint32_t ThreadList::AllocThreadId(Thread* self) {
597 MutexLock mu(self, allocated_ids_lock_);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700598 for (size_t i = 0; i < allocated_ids_.size(); ++i) {
599 if (!allocated_ids_[i]) {
600 allocated_ids_.set(i);
601 return i + 1; // Zero is reserved to mean "invalid".
602 }
603 }
604 LOG(FATAL) << "Out of internal thread ids";
605 return 0;
606}
607
Ian Rogerscfaa4552012-11-26 21:00:08 -0800608void ThreadList::ReleaseThreadId(Thread* self, uint32_t id) {
609 MutexLock mu(self, allocated_ids_lock_);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700610 --id; // Zero is reserved to mean "invalid".
611 DCHECK(allocated_ids_[id]) << id;
612 allocated_ids_.reset(id);
613}
614
Elliott Hughesf327e072013-01-09 16:01:26 -0800615Thread* ThreadList::FindThreadByThinLockId(uint32_t thin_lock_id) {
616 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
617 for (It it = list_.begin(), end = list_.end(); it != end; ++it) {
618 if ((*it)->GetThinLockId() == thin_lock_id) {
619 return *it;
620 }
621 }
622 return NULL;
623}
624
Elliott Hughes8daa0922011-09-11 13:46:25 -0700625} // namespace art