blob: ea8baacd30d2139e3f8759129900d16b885f34ef [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"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080025#include "thread.h"
Mathieu Chartier7664f5c2012-06-08 18:15:32 -070026#include "timing_logger.h"
Elliott Hughesabbe07d2012-06-05 17:42:23 -070027#include "utils.h"
Elliott Hughes475fc232011-10-25 15:00:35 -070028
Elliott Hughes8daa0922011-09-11 13:46:25 -070029namespace art {
30
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -080031ThreadList::ThreadList()
Elliott Hughese52e49b2012-04-02 16:05:44 -070032 : allocated_ids_lock_("allocated thread ids lock"),
Ian Rogers00f7d0e2012-07-19 15:28:27 -070033 suspend_all_count_(0), debug_suspend_all_count_(0),
Ian Rogersc604d732012-10-14 16:09:54 -070034 thread_exit_cond_("thread exit condition variable", *Locks::thread_list_lock_) {
Elliott Hughes8daa0922011-09-11 13:46:25 -070035}
36
37ThreadList::~ThreadList() {
Elliott Hughese52e49b2012-04-02 16:05:44 -070038 // Detach the current thread if necessary. If we failed to start, there might not be any threads.
Elliott Hughes6a144332012-04-03 13:07:11 -070039 // We need to detach the current thread here in case there's another thread waiting to join with
40 // us.
Elliott Hughes8daa0922011-09-11 13:46:25 -070041 if (Contains(Thread::Current())) {
42 Runtime::Current()->DetachCurrentThread();
43 }
Elliott Hughes6a144332012-04-03 13:07:11 -070044
45 WaitForOtherNonDaemonThreadsToExit();
Ian Rogers00f7d0e2012-07-19 15:28:27 -070046 // TODO: there's an unaddressed race here where a thread may attach during shutdown, see
47 // Thread::Init.
Elliott Hughes6a144332012-04-03 13:07:11 -070048 SuspendAllDaemonThreads();
Elliott Hughes8daa0922011-09-11 13:46:25 -070049}
50
51bool ThreadList::Contains(Thread* thread) {
52 return find(list_.begin(), list_.end(), thread) != list_.end();
53}
54
Elliott Hughesabbe07d2012-06-05 17:42:23 -070055bool ThreadList::Contains(pid_t tid) {
56 for (It it = list_.begin(), end = list_.end(); it != end; ++it) {
57 if ((*it)->tid_ == tid) {
58 return true;
59 }
60 }
61 return false;
62}
63
Brian Carlstrom24a3c2e2011-10-17 18:07:52 -070064pid_t ThreadList::GetLockOwner() {
Ian Rogersb726dcb2012-09-05 08:57:23 -070065 return Locks::thread_list_lock_->GetExclusiveOwnerTid();
Elliott Hughesaccd83d2011-10-17 14:25:58 -070066}
67
Elliott Hughesc967f782012-04-16 10:23:15 -070068void ThreadList::DumpForSigQuit(std::ostream& os) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -070069 {
Ian Rogers50b35e22012-10-04 10:09:15 -070070 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -070071 DumpLocked(os);
72 }
Elliott Hughesabbe07d2012-06-05 17:42:23 -070073 DumpUnattachedThreads(os);
74}
75
Ian Rogerscfaa4552012-11-26 21:00:08 -080076static void DumpUnattachedThread(std::ostream& os, pid_t tid) NO_THREAD_SAFETY_ANALYSIS {
77 // TODO: No thread safety analysis as DumpState with a NULL thread won't access fields, should
78 // refactor DumpState to avoid skipping analysis.
Elliott Hughesabbe07d2012-06-05 17:42:23 -070079 Thread::DumpState(os, NULL, tid);
80 DumpKernelStack(os, tid, " kernel: ", false);
Brian Carlstromed8b7232012-06-27 17:54:47 -070081 // TODO: Reenable this when the native code in system_server can handle it.
82 // Currently "adb shell kill -3 `pid system_server`" will cause it to exit.
83 if (false) {
84 DumpNativeStack(os, tid, " native: ", false);
85 }
Elliott Hughesabbe07d2012-06-05 17:42:23 -070086 os << "\n";
87}
88
89void ThreadList::DumpUnattachedThreads(std::ostream& os) {
90 DIR* d = opendir("/proc/self/task");
91 if (!d) {
92 return;
93 }
94
Ian Rogers50b35e22012-10-04 10:09:15 -070095 Thread* self = Thread::Current();
Elliott Hughes4696b5b2012-10-30 10:35:10 -070096 dirent* e;
97 while ((e = readdir(d)) != NULL) {
Elliott Hughesabbe07d2012-06-05 17:42:23 -070098 char* end;
Elliott Hughes4696b5b2012-10-30 10:35:10 -070099 pid_t tid = strtol(e->d_name, &end, 10);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700100 if (!*end) {
101 bool contains;
102 {
Ian Rogers50b35e22012-10-04 10:09:15 -0700103 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700104 contains = Contains(tid);
105 }
106 if (!contains) {
107 DumpUnattachedThread(os, tid);
108 }
Elliott Hughesabbe07d2012-06-05 17:42:23 -0700109 }
110 }
111 closedir(d);
Elliott Hughesff738062012-02-03 15:00:42 -0800112}
113
114void ThreadList::DumpLocked(std::ostream& os) {
Elliott Hughes8daa0922011-09-11 13:46:25 -0700115 os << "DALVIK THREADS (" << list_.size() << "):\n";
Elliott Hughes8daa0922011-09-11 13:46:25 -0700116 for (It it = list_.begin(), end = list_.end(); it != end; ++it) {
117 (*it)->Dump(os);
118 os << "\n";
119 }
120}
121
Ian Rogers50b35e22012-10-04 10:09:15 -0700122void ThreadList::AssertThreadsAreSuspended(Thread* self, Thread* ignore1, Thread* ignore2) {
123 MutexLock mu(self, *Locks::thread_list_lock_);
124 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
Elliott Hughes8d768a92011-09-14 16:35:25 -0700125 for (It it = list_.begin(), end = list_.end(); it != end; ++it) {
126 Thread* thread = *it;
jeffhao725a9572012-11-13 18:20:12 -0800127 if (thread != ignore1 && thread != ignore2) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700128 CHECK(thread->IsSuspended())
129 << "\nUnsuspended thread: <<" << *thread << "\n"
130 << "self: <<" << *Thread::Current();
131 }
Elliott Hughes8d768a92011-09-14 16:35:25 -0700132 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700133}
134
Ian Rogers66aee5c2012-08-15 17:17:47 -0700135#if HAVE_TIMED_RWLOCK
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700136// Attempt to rectify locks so that we dump thread list with required locks before exiting.
Ian Rogers81d425b2012-09-27 16:03:43 -0700137static void UnsafeLogFatalForThreadSuspendAllTimeout(Thread* self) NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700138 Runtime* runtime = Runtime::Current();
139 std::ostringstream ss;
140 ss << "Thread suspend timeout\n";
141 runtime->DumpLockHolders(ss);
142 ss << "\n";
Ian Rogers81d425b2012-09-27 16:03:43 -0700143 Locks::mutator_lock_->SharedTryLock(self);
144 if (!Locks::mutator_lock_->IsSharedHeld(self)) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700145 LOG(WARNING) << "Dumping thread list without holding mutator_lock_";
146 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700147 Locks::thread_list_lock_->TryLock(self);
148 if (!Locks::thread_list_lock_->IsExclusiveHeld(self)) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700149 LOG(WARNING) << "Dumping thread list without holding thread_list_lock_";
150 }
151 runtime->GetThreadList()->DumpLocked(ss);
152 LOG(FATAL) << ss.str();
153}
Ian Rogers66aee5c2012-08-15 17:17:47 -0700154#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700155
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700156size_t ThreadList::RunCheckpoint(Closure* checkpoint_function) {
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700157 Thread* self = Thread::Current();
158 if (kIsDebugBuild) {
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800159 Locks::mutator_lock_->AssertNotExclusiveHeld(self);
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700160 Locks::thread_list_lock_->AssertNotHeld(self);
161 Locks::thread_suspend_count_lock_->AssertNotHeld(self);
162 CHECK_NE(self->GetState(), kRunnable);
163 }
164
165 std::vector<Thread*> suspended_count_modified_threads;
166 size_t count = 0;
167 {
168 // Call a checkpoint function for each thread, threads which are suspend get their checkpoint
169 // manually called.
170 MutexLock mu(self, *Locks::thread_list_lock_);
171 // TODO: C++0x auto.
172 for (It it = list_.begin(), end = list_.end(); it != end; ++it) {
173 Thread* thread = *it;
174 if (thread != self) {
175 for (;;) {
176 if (thread->RequestCheckpoint(checkpoint_function)) {
177 // This thread will run it's checkpoint some time in the near future.
178 count++;
179 break;
180 } else {
181 // We are probably suspended, try to make sure that we stay suspended.
182 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
183 // The thread switched back to runnable.
184 if (thread->GetState() == kRunnable) {
185 continue;
186 }
187 thread->ModifySuspendCount(self, +1, false);
188 suspended_count_modified_threads.push_back(thread);
189 break;
190 }
191 }
192 }
193 }
194 }
195
196 // Run the checkpoint on ourself while we wait for threads to suspend.
197 checkpoint_function->Run(self);
198
199 // Run the checkpoint on the suspended threads.
200 for (size_t i = 0; i < suspended_count_modified_threads.size(); ++i) {
201 Thread* thread = suspended_count_modified_threads[i];
202 if (!thread->IsSuspended()) {
203 // Wait until the thread is suspended.
204 uint64_t start = NanoTime();
205 do {
206 // Sleep for 100us.
207 usleep(100);
208 } while (!thread->IsSuspended());
209 uint64_t end = NanoTime();
210 // Shouldn't need to wait for longer than 1 millisecond.
211 const uint64_t threshold = 1;
212 if (NsToMs(end - start) > threshold) {
Brian Carlstrombcc29262012-11-02 11:36:03 -0700213 LOG(INFO) << "Warning: waited longer than " << threshold << " ms for thread suspend"
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700214 << std::endl;
215 }
216 }
217 // We know for sure that the thread is suspended at this point.
218 thread->RunCheckpointFunction();
219 {
220 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
221 thread->ModifySuspendCount(self, -1, false);
222 }
223 }
224
Mathieu Chartier664bebf2012-11-12 16:54:11 -0800225 {
226 // Imitate ResumeAll, threads may be waiting on Thread::resume_cond_ since we raised their
227 // suspend count. Now the suspend_count_ is lowered so we must do the broadcast.
228 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
229 Thread::resume_cond_->Broadcast(self);
230 }
231
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700232 // Add one for self.
233 return count + suspended_count_modified_threads.size() + 1;
234}
235
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700236void ThreadList::SuspendAll() {
237 Thread* self = Thread::Current();
238
239 VLOG(threads) << *self << " SuspendAll starting...";
240
241 if (kIsDebugBuild) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700242 Locks::mutator_lock_->AssertNotHeld(self);
243 Locks::thread_list_lock_->AssertNotHeld(self);
244 Locks::thread_suspend_count_lock_->AssertNotHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700245 CHECK_NE(self->GetState(), kRunnable);
246 }
247 {
Ian Rogers81d425b2012-09-27 16:03:43 -0700248 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700249 {
Ian Rogers81d425b2012-09-27 16:03:43 -0700250 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700251 // Update global suspend all state for attaching threads.
252 ++suspend_all_count_;
253 // Increment everybody's suspend count (except our own).
254 for (It it = list_.begin(), end = list_.end(); it != end; ++it) {
255 Thread* thread = *it;
256 if (thread == self) {
257 continue;
258 }
259 VLOG(threads) << "requesting thread suspend: " << *thread;
Ian Rogers01ae5802012-09-28 16:14:01 -0700260 thread->ModifySuspendCount(self, +1, false);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700261 }
262 }
263 }
264
Ian Rogers66aee5c2012-08-15 17:17:47 -0700265 // Block on the mutator lock until all Runnable threads release their share of access.
266#if HAVE_TIMED_RWLOCK
267 // Timeout if we wait more than 30 seconds.
Ian Rogersc604d732012-10-14 16:09:54 -0700268 if (UNLIKELY(!Locks::mutator_lock_->ExclusiveLockWithTimeout(self, 30 * 1000, 0))) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700269 UnsafeLogFatalForThreadSuspendAllTimeout(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700270 }
Ian Rogers66aee5c2012-08-15 17:17:47 -0700271#else
Ian Rogers81d425b2012-09-27 16:03:43 -0700272 Locks::mutator_lock_->ExclusiveLock(self);
Ian Rogers66aee5c2012-08-15 17:17:47 -0700273#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700274
275 // Debug check that all threads are suspended.
Ian Rogers50b35e22012-10-04 10:09:15 -0700276 AssertThreadsAreSuspended(self, self);
Elliott Hughes8d768a92011-09-14 16:35:25 -0700277
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800278 VLOG(threads) << *self << " SuspendAll complete";
Elliott Hughes8d768a92011-09-14 16:35:25 -0700279}
280
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700281void ThreadList::ResumeAll() {
282 Thread* self = Thread::Current();
283
284 VLOG(threads) << *self << " ResumeAll starting";
Ian Rogers01ae5802012-09-28 16:14:01 -0700285
286 // Debug check that all threads are suspended.
Ian Rogers50b35e22012-10-04 10:09:15 -0700287 AssertThreadsAreSuspended(self, self);
Ian Rogers01ae5802012-09-28 16:14:01 -0700288
Ian Rogers81d425b2012-09-27 16:03:43 -0700289 Locks::mutator_lock_->ExclusiveUnlock(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700290 {
Ian Rogers81d425b2012-09-27 16:03:43 -0700291 MutexLock mu(self, *Locks::thread_list_lock_);
292 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700293 // Update global suspend all state for attaching threads.
294 --suspend_all_count_;
295 // Decrement the suspend counts for all threads.
296 for (It it = list_.begin(), end = list_.end(); it != end; ++it) {
297 Thread* thread = *it;
298 if (thread == self) {
299 continue;
300 }
Ian Rogers01ae5802012-09-28 16:14:01 -0700301 thread->ModifySuspendCount(self, -1, false);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700302 }
303
304 // Broadcast a notification to all suspended threads, some or all of
305 // which may choose to wake up. No need to wait for them.
306 VLOG(threads) << *self << " ResumeAll waking others";
Ian Rogersc604d732012-10-14 16:09:54 -0700307 Thread::resume_cond_->Broadcast(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700308 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700309 VLOG(threads) << *self << " ResumeAll complete";
310}
311
312void ThreadList::Resume(Thread* thread, bool for_debugger) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700313 Thread* self = Thread::Current();
314 DCHECK_NE(thread, self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700315 VLOG(threads) << "Resume(" << *thread << ") starting..." << (for_debugger ? " (debugger)" : "");
Elliott Hughes01158d72011-09-19 19:47:10 -0700316
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700317 {
318 // To check Contains.
Ian Rogers81d425b2012-09-27 16:03:43 -0700319 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700320 // To check IsSuspended.
Ian Rogers81d425b2012-09-27 16:03:43 -0700321 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
322 DCHECK(thread->IsSuspended());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700323 if (!Contains(thread)) {
324 return;
325 }
Ian Rogers01ae5802012-09-28 16:14:01 -0700326 thread->ModifySuspendCount(self, -1, for_debugger);
Elliott Hughes01158d72011-09-19 19:47:10 -0700327 }
328
329 {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700330 VLOG(threads) << "Resume(" << *thread << ") waking others";
Ian Rogers81d425b2012-09-27 16:03:43 -0700331 MutexLock mu(self, *Locks::thread_suspend_count_lock_);
Ian Rogersc604d732012-10-14 16:09:54 -0700332 Thread::resume_cond_->Broadcast(self);
Elliott Hughes01158d72011-09-19 19:47:10 -0700333 }
334
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700335 VLOG(threads) << "Resume(" << *thread << ") complete";
336}
Elliott Hughes01158d72011-09-19 19:47:10 -0700337
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700338void ThreadList::SuspendAllForDebugger() {
339 Thread* self = Thread::Current();
340 Thread* debug_thread = Dbg::GetDebugThread();
341
342 VLOG(threads) << *self << " SuspendAllForDebugger starting...";
343
344 {
Ian Rogers81d425b2012-09-27 16:03:43 -0700345 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700346 {
Ian Rogers81d425b2012-09-27 16:03:43 -0700347 MutexLock mu(self, *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700348 // Update global suspend all state for attaching threads.
349 ++suspend_all_count_;
350 ++debug_suspend_all_count_;
351 // Increment everybody's suspend count (except our own).
352 for (It it = list_.begin(), end = list_.end(); it != end; ++it) {
353 Thread* thread = *it;
354 if (thread == self || thread == debug_thread) {
355 continue;
356 }
357 VLOG(threads) << "requesting thread suspend: " << *thread;
Ian Rogers01ae5802012-09-28 16:14:01 -0700358 thread->ModifySuspendCount(self, +1, true);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700359 }
360 }
361 }
362
Ian Rogers66aee5c2012-08-15 17:17:47 -0700363 // Block on the mutator lock until all Runnable threads release their share of access then
364 // immediately unlock again.
365#if HAVE_TIMED_RWLOCK
366 // Timeout if we wait more than 30 seconds.
Ian Rogersc604d732012-10-14 16:09:54 -0700367 if (!Locks::mutator_lock_->ExclusiveLockWithTimeout(self, 30 * 1000, 0)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700368 UnsafeLogFatalForThreadSuspendAllTimeout(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700369 } else {
Ian Rogers81d425b2012-09-27 16:03:43 -0700370 Locks::mutator_lock_->ExclusiveUnlock(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700371 }
Ian Rogers66aee5c2012-08-15 17:17:47 -0700372#else
Ian Rogers81d425b2012-09-27 16:03:43 -0700373 Locks::mutator_lock_->ExclusiveLock(self);
374 Locks::mutator_lock_->ExclusiveUnlock(self);
Ian Rogers66aee5c2012-08-15 17:17:47 -0700375#endif
Ian Rogers50b35e22012-10-04 10:09:15 -0700376 AssertThreadsAreSuspended(self, self, debug_thread);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700377
378 VLOG(threads) << *self << " SuspendAll complete";
Elliott Hughes01158d72011-09-19 19:47:10 -0700379}
380
Elliott Hughes475fc232011-10-25 15:00:35 -0700381void ThreadList::SuspendSelfForDebugger() {
382 Thread* self = Thread::Current();
Elliott Hughes01158d72011-09-19 19:47:10 -0700383
Elliott Hughes475fc232011-10-25 15:00:35 -0700384 // The debugger thread must not suspend itself due to debugger activity!
385 Thread* debug_thread = Dbg::GetDebugThread();
386 CHECK(debug_thread != NULL);
387 CHECK(self != debug_thread);
jeffhaoa77f0f62012-12-05 17:19:31 -0800388 CHECK_NE(self->GetState(), kRunnable);
389 Locks::mutator_lock_->AssertNotHeld(self);
Elliott Hughes475fc232011-10-25 15:00:35 -0700390
jeffhaoa77f0f62012-12-05 17:19:31 -0800391 {
392 // Collisions with other suspends aren't really interesting. We want
393 // to ensure that we're the only one fiddling with the suspend count
394 // though.
395 MutexLock mu(self, *Locks::thread_suspend_count_lock_);
396 self->ModifySuspendCount(self, +1, true);
397 CHECK_GT(self->suspend_count_, 0);
398 }
Elliott Hughes475fc232011-10-25 15:00:35 -0700399
Elliott Hughes1f729aa2012-03-02 13:55:41 -0800400 VLOG(threads) << *self << " self-suspending (debugger)";
Elliott Hughes475fc232011-10-25 15:00:35 -0700401
402 // Tell JDWP that we've completed suspension. The JDWP thread can't
403 // tell us to resume before we're fully asleep because we hold the
404 // suspend count lock.
405 Dbg::ClearWaitForEventThread();
406
jeffhaoa77f0f62012-12-05 17:19:31 -0800407 {
408 MutexLock mu(self, *Locks::thread_suspend_count_lock_);
409 while (self->suspend_count_ != 0) {
410 Thread::resume_cond_->Wait(self);
411 if (self->suspend_count_ != 0) {
412 // The condition was signaled but we're still suspended. This
413 // can happen if the debugger lets go while a SIGQUIT thread
414 // dump event is pending (assuming SignalCatcher was resumed for
415 // just long enough to try to grab the thread-suspend lock).
416 LOG(DEBUG) << *self << " still suspended after undo "
417 << "(suspend count=" << self->suspend_count_ << ")";
418 }
Elliott Hughes475fc232011-10-25 15:00:35 -0700419 }
jeffhaoa77f0f62012-12-05 17:19:31 -0800420 CHECK_EQ(self->suspend_count_, 0);
Elliott Hughes475fc232011-10-25 15:00:35 -0700421 }
jeffhaoa77f0f62012-12-05 17:19:31 -0800422
Elliott Hughes1f729aa2012-03-02 13:55:41 -0800423 VLOG(threads) << *self << " self-reviving (debugger)";
Elliott Hughes475fc232011-10-25 15:00:35 -0700424}
425
Elliott Hughes234ab152011-10-26 14:02:26 -0700426void ThreadList::UndoDebuggerSuspensions() {
427 Thread* self = Thread::Current();
428
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800429 VLOG(threads) << *self << " UndoDebuggerSuspensions starting";
Elliott Hughes234ab152011-10-26 14:02:26 -0700430
431 {
Ian Rogers81d425b2012-09-27 16:03:43 -0700432 MutexLock mu(self, *Locks::thread_list_lock_);
433 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700434 // Update global suspend all state for attaching threads.
435 suspend_all_count_ -= debug_suspend_all_count_;
436 debug_suspend_all_count_ = 0;
437 // Update running threads.
Elliott Hughes234ab152011-10-26 14:02:26 -0700438 for (It it = list_.begin(), end = list_.end(); it != end; ++it) {
439 Thread* thread = *it;
440 if (thread == self || thread->debug_suspend_count_ == 0) {
441 continue;
442 }
Ian Rogers01ae5802012-09-28 16:14:01 -0700443 thread->ModifySuspendCount(self, -thread->debug_suspend_count_, true);
Elliott Hughes234ab152011-10-26 14:02:26 -0700444 }
445 }
446
447 {
Ian Rogers81d425b2012-09-27 16:03:43 -0700448 MutexLock mu(self, *Locks::thread_suspend_count_lock_);
Ian Rogersc604d732012-10-14 16:09:54 -0700449 Thread::resume_cond_->Broadcast(self);
Elliott Hughes234ab152011-10-26 14:02:26 -0700450 }
451
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800452 VLOG(threads) << "UndoDebuggerSuspensions(" << *self << ") complete";
Elliott Hughes234ab152011-10-26 14:02:26 -0700453}
454
Elliott Hughese52e49b2012-04-02 16:05:44 -0700455void ThreadList::WaitForOtherNonDaemonThreadsToExit() {
Ian Rogers81d425b2012-09-27 16:03:43 -0700456 Thread* self = Thread::Current();
457 Locks::mutator_lock_->AssertNotHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700458 bool all_threads_are_daemons;
459 do {
Ian Rogers120f1c72012-09-28 17:17:10 -0700460 {
461 // No more threads can be born after we start to shutdown.
462 MutexLock mu(self, *Locks::runtime_shutdown_lock_);
463 CHECK(Runtime::Current()->IsShuttingDown());
464 CHECK_EQ(Runtime::Current()->NumberOfThreadsBeingBorn(), 0U);
465 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700466 all_threads_are_daemons = true;
Ian Rogers120f1c72012-09-28 17:17:10 -0700467 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700468 for (It it = list_.begin(), end = list_.end(); it != end; ++it) {
469 // TODO: there's a race here with thread exit that's being worked around by checking if the
470 // thread has a peer.
471 Thread* thread = *it;
Ian Rogers81d425b2012-09-27 16:03:43 -0700472 if (thread != self && thread->HasPeer() && !thread->IsDaemon()) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700473 all_threads_are_daemons = false;
474 break;
475 }
476 }
477 if (!all_threads_are_daemons) {
478 // Wait for another thread to exit before re-checking.
Ian Rogersc604d732012-10-14 16:09:54 -0700479 thread_exit_cond_.Wait(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700480 }
481 } while(!all_threads_are_daemons);
Elliott Hughes038a8062011-09-18 14:12:41 -0700482}
483
484void ThreadList::SuspendAllDaemonThreads() {
Ian Rogers81d425b2012-09-27 16:03:43 -0700485 Thread* self = Thread::Current();
486 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700487 { // Tell all the daemons it's time to suspend.
Ian Rogers81d425b2012-09-27 16:03:43 -0700488 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
Elliott Hughes038a8062011-09-18 14:12:41 -0700489 for (It it = list_.begin(), end = list_.end(); it != end; ++it) {
490 Thread* thread = *it;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700491 // This is only run after all non-daemon threads have exited, so the remainder should all be
492 // daemons.
Ian Rogers7e762862012-10-22 15:45:08 -0700493 CHECK(thread->IsDaemon()) << *thread;
Ian Rogers81d425b2012-09-27 16:03:43 -0700494 if (thread != self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700495 thread->ModifySuspendCount(self, +1, false);
Elliott Hughese52e49b2012-04-02 16:05:44 -0700496 }
Elliott Hughes038a8062011-09-18 14:12:41 -0700497 }
498 }
Elliott Hughes038a8062011-09-18 14:12:41 -0700499 // Give the threads a chance to suspend, complaining if they're slow.
500 bool have_complained = false;
501 for (int i = 0; i < 10; ++i) {
502 usleep(200 * 1000);
503 bool all_suspended = true;
504 for (It it = list_.begin(), end = list_.end(); it != end; ++it) {
505 Thread* thread = *it;
Ian Rogers81d425b2012-09-27 16:03:43 -0700506 if (thread != self && thread->GetState() == kRunnable) {
Elliott Hughes038a8062011-09-18 14:12:41 -0700507 if (!have_complained) {
508 LOG(WARNING) << "daemon thread not yet suspended: " << *thread;
509 have_complained = true;
510 }
511 all_suspended = false;
512 }
513 }
514 if (all_suspended) {
515 return;
516 }
517 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700518 LOG(ERROR) << "suspend all daemons failed";
519}
520void ThreadList::Register(Thread* self) {
521 DCHECK_EQ(self, Thread::Current());
522
523 if (VLOG_IS_ON(threads)) {
524 std::ostringstream oss;
525 self->ShortDump(oss); // We don't hold the mutator_lock_ yet and so cannot call Dump.
526 LOG(INFO) << "ThreadList::Register() " << *self << "\n" << oss;
527 }
528
529 // Atomically add self to the thread list and make its thread_suspend_count_ reflect ongoing
530 // SuspendAll requests.
Ian Rogers81d425b2012-09-27 16:03:43 -0700531 MutexLock mu(self, *Locks::thread_list_lock_);
532 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700533 self->suspend_count_ = suspend_all_count_;
534 self->debug_suspend_count_ = debug_suspend_all_count_;
Ian Rogers01ae5802012-09-28 16:14:01 -0700535 if (self->suspend_count_ > 0) {
536 self->AtomicSetFlag(kSuspendRequest);
537 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700538 CHECK(!Contains(self));
539 list_.push_back(self);
540}
541
542void ThreadList::Unregister(Thread* self) {
543 DCHECK_EQ(self, Thread::Current());
544
545 VLOG(threads) << "ThreadList::Unregister() " << *self;
546
547 // Any time-consuming destruction, plus anything that can call back into managed code or
548 // suspend and so on, must happen at this point, and not in ~Thread.
549 self->Destroy();
550
Ian Rogerscfaa4552012-11-26 21:00:08 -0800551 uint32_t thin_lock_id = self->thin_lock_id_;
552 self->thin_lock_id_ = 0;
553 ReleaseThreadId(self, thin_lock_id);
554 while (self != NULL) {
555 // Remove and delete the Thread* while holding the thread_list_lock_ and
556 // thread_suspend_count_lock_ so that the unregistering thread cannot be suspended.
Ian Rogers81d425b2012-09-27 16:03:43 -0700557 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700558 CHECK(Contains(self));
Ian Rogerscfaa4552012-11-26 21:00:08 -0800559 // Note: we don't take the thread_suspend_count_lock_ here as to be suspending a thread other
560 // than yourself you need to hold the thread_list_lock_ (see Thread::ModifySuspendCount).
561 if (!self->IsSuspended()) {
562 list_.remove(self);
563 delete self;
564 self = NULL;
565 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700566 }
567
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700568 // Clear the TLS data, so that the underlying native thread is recognizably detached.
569 // (It may wish to reattach later.)
570 CHECK_PTHREAD_CALL(pthread_setspecific, (Thread::pthread_key_self_, NULL), "detach self");
571
572 // Signal that a thread just detached.
Ian Rogers81d425b2012-09-27 16:03:43 -0700573 MutexLock mu(NULL, *Locks::thread_list_lock_);
Ian Rogersc604d732012-10-14 16:09:54 -0700574 thread_exit_cond_.Signal(NULL);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700575}
576
577void ThreadList::ForEach(void (*callback)(Thread*, void*), void* context) {
578 for (It it = list_.begin(), end = list_.end(); it != end; ++it) {
579 callback(*it, context);
580 }
581}
582
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800583void ThreadList::VisitRoots(RootVisitor* visitor, void* arg) const {
Ian Rogers81d425b2012-09-27 16:03:43 -0700584 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700585 for (It it = list_.begin(), end = list_.end(); it != end; ++it) {
586 (*it)->VisitRoots(visitor, arg);
587 }
Elliott Hughes038a8062011-09-18 14:12:41 -0700588}
589
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800590void ThreadList::VerifyRoots(VerifyRootVisitor* visitor, void* arg) const {
Mathieu Chartier6f1c9492012-10-15 12:08:41 -0700591 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
592 for (It it = list_.begin(), end = list_.end(); it != end; ++it) {
593 (*it)->VerifyRoots(visitor, arg);
594 }
595}
596
Ian Rogerscfaa4552012-11-26 21:00:08 -0800597uint32_t ThreadList::AllocThreadId(Thread* self) {
598 MutexLock mu(self, allocated_ids_lock_);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700599 for (size_t i = 0; i < allocated_ids_.size(); ++i) {
600 if (!allocated_ids_[i]) {
601 allocated_ids_.set(i);
602 return i + 1; // Zero is reserved to mean "invalid".
603 }
604 }
605 LOG(FATAL) << "Out of internal thread ids";
606 return 0;
607}
608
Ian Rogerscfaa4552012-11-26 21:00:08 -0800609void ThreadList::ReleaseThreadId(Thread* self, uint32_t id) {
610 MutexLock mu(self, allocated_ids_lock_);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700611 --id; // Zero is reserved to mean "invalid".
612 DCHECK(allocated_ids_[id]) << id;
613 allocated_ids_.reset(id);
614}
615
Elliott Hughesf327e072013-01-09 16:01:26 -0800616Thread* ThreadList::FindThreadByThinLockId(uint32_t thin_lock_id) {
617 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
618 for (It it = list_.begin(), end = list_.end(); it != end; ++it) {
619 if ((*it)->GetThinLockId() == thin_lock_id) {
620 return *it;
621 }
622 }
623 return NULL;
624}
625
Elliott Hughes8daa0922011-09-11 13:46:25 -0700626} // namespace art