Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 1 | /* |
| 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 Hughes | abbe07d | 2012-06-05 17:42:23 -0700 | [diff] [blame] | 19 | #include <dirent.h> |
| 20 | #include <sys/types.h> |
Elliott Hughes | 038a806 | 2011-09-18 14:12:41 -0700 | [diff] [blame] | 21 | #include <unistd.h> |
| 22 | |
Ian Rogers | c7dd295 | 2014-10-21 23:31:19 -0700 | [diff] [blame] | 23 | #include <sstream> |
Christopher Ferris | b1b0ed2 | 2017-10-24 15:38:14 -0700 | [diff] [blame] | 24 | #include <vector> |
Ian Rogers | c7dd295 | 2014-10-21 23:31:19 -0700 | [diff] [blame] | 25 | |
Andreas Gampe | 46ee31b | 2016-12-14 10:11:49 -0800 | [diff] [blame] | 26 | #include "android-base/stringprintf.h" |
Andreas Gampe | 8cf9cb3 | 2017-07-19 09:28:38 -0700 | [diff] [blame] | 27 | #include "backtrace/BacktraceMap.h" |
Andreas Gampe | 373a9b5 | 2017-10-18 09:01:57 -0700 | [diff] [blame] | 28 | #include "nativehelper/scoped_local_ref.h" |
| 29 | #include "nativehelper/scoped_utf_chars.h" |
Andreas Gampe | 46ee31b | 2016-12-14 10:11:49 -0800 | [diff] [blame] | 30 | |
Andreas Gampe | 39b378c | 2017-12-07 15:44:13 -0800 | [diff] [blame] | 31 | #include "base/aborting.h" |
Mathieu Chartier | 70a596d | 2014-12-17 14:56:47 -0800 | [diff] [blame] | 32 | #include "base/histogram-inl.h" |
Hiroshi Yamauchi | 967a0ad | 2013-09-10 16:24:21 -0700 | [diff] [blame] | 33 | #include "base/mutex-inl.h" |
Mathieu Chartier | 32ce2ad | 2016-03-04 14:58:03 -0800 | [diff] [blame] | 34 | #include "base/systrace.h" |
Vladimir Marko | 80afd02 | 2015-05-19 18:08:00 +0100 | [diff] [blame] | 35 | #include "base/time_utils.h" |
Sameer Abu Asal | a843954 | 2013-02-14 16:06:42 -0800 | [diff] [blame] | 36 | #include "base/timing_logger.h" |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 37 | #include "debugger.h" |
Hiroshi Yamauchi | 0b71357 | 2015-06-16 18:29:23 -0700 | [diff] [blame] | 38 | #include "gc/collector/concurrent_copying.h" |
Andreas Gampe | 6e64445 | 2017-05-09 16:30:27 -0700 | [diff] [blame] | 39 | #include "gc/gc_pause_listener.h" |
Andreas Gampe | d490129 | 2017-05-30 18:41:34 -0700 | [diff] [blame] | 40 | #include "gc/heap.h" |
Hiroshi Yamauchi | 3049324 | 2016-11-03 13:06:52 -0700 | [diff] [blame] | 41 | #include "gc/reference_processor.h" |
Andreas Gampe | 513061a | 2017-06-01 09:17:34 -0700 | [diff] [blame] | 42 | #include "gc_root.h" |
Vladimir Marko | a3ad0cd | 2018-05-04 10:06:38 +0100 | [diff] [blame] | 43 | #include "jni/jni_internal.h" |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 44 | #include "lock_word.h" |
| 45 | #include "monitor.h" |
Andreas Gampe | 5dd44d0 | 2016-08-02 17:20:03 -0700 | [diff] [blame] | 46 | #include "native_stack_dump.h" |
Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 47 | #include "scoped_thread_state_change-inl.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 48 | #include "thread.h" |
Jeff Hao | e094b87 | 2014-10-14 13:12:01 -0700 | [diff] [blame] | 49 | #include "trace.h" |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 50 | #include "well_known_classes.h" |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 51 | |
Yu Li | eac4424 | 2015-06-29 10:50:03 +0800 | [diff] [blame] | 52 | #if ART_USE_FUTEXES |
| 53 | #include "linux/futex.h" |
| 54 | #include "sys/syscall.h" |
| 55 | #ifndef SYS_futex |
| 56 | #define SYS_futex __NR_futex |
| 57 | #endif |
| 58 | #endif // ART_USE_FUTEXES |
| 59 | |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 60 | namespace art { |
| 61 | |
Andreas Gampe | 46ee31b | 2016-12-14 10:11:49 -0800 | [diff] [blame] | 62 | using android::base::StringPrintf; |
| 63 | |
Mathieu Chartier | 251755c | 2014-07-15 18:10:25 -0700 | [diff] [blame] | 64 | static constexpr uint64_t kLongThreadSuspendThreshold = MsToNs(5); |
Mathieu Chartier | 9914386 | 2015-02-03 14:26:46 -0800 | [diff] [blame] | 65 | // Use 0 since we want to yield to prevent blocking for an unpredictable amount of time. |
| 66 | static constexpr useconds_t kThreadSuspendInitialSleepUs = 0; |
| 67 | static constexpr useconds_t kThreadSuspendMaxYieldUs = 3000; |
| 68 | static constexpr useconds_t kThreadSuspendMaxSleepUs = 5000; |
Mathieu Chartier | 251755c | 2014-07-15 18:10:25 -0700 | [diff] [blame] | 69 | |
Andreas Gampe | 8d1594d | 2016-03-01 14:38:37 -0800 | [diff] [blame] | 70 | // Whether we should try to dump the native stack of unattached threads. See commit ed8b723 for |
| 71 | // some history. |
Christopher Ferris | 4531aae | 2017-11-02 14:01:14 -0700 | [diff] [blame] | 72 | static constexpr bool kDumpUnattachedThreadNativeStackForSigQuit = true; |
Andreas Gampe | 8d1594d | 2016-03-01 14:38:37 -0800 | [diff] [blame] | 73 | |
Mathieu Chartier | 3fceaf5 | 2017-01-22 13:33:40 -0800 | [diff] [blame] | 74 | ThreadList::ThreadList(uint64_t thread_suspend_timeout_ns) |
Mathieu Chartier | b56200b | 2015-10-29 10:41:51 -0700 | [diff] [blame] | 75 | : suspend_all_count_(0), |
Mathieu Chartier | b56200b | 2015-10-29 10:41:51 -0700 | [diff] [blame] | 76 | unregistering_count_(0), |
| 77 | suspend_all_historam_("suspend all histogram", 16, 64), |
Hiroshi Yamauchi | 3049324 | 2016-11-03 13:06:52 -0700 | [diff] [blame] | 78 | long_suspend_(false), |
Andreas Gampe | c4bed16 | 2017-05-01 13:46:24 -0700 | [diff] [blame] | 79 | shut_down_(false), |
Mathieu Chartier | 3fceaf5 | 2017-01-22 13:33:40 -0800 | [diff] [blame] | 80 | thread_suspend_timeout_ns_(thread_suspend_timeout_ns), |
Hiroshi Yamauchi | 3049324 | 2016-11-03 13:06:52 -0700 | [diff] [blame] | 81 | empty_checkpoint_barrier_(new Barrier(0)) { |
Hiroshi Yamauchi | e15ea08 | 2015-02-09 17:11:42 -0800 | [diff] [blame] | 82 | CHECK(Monitor::IsValidLockWord(LockWord::FromThinLockId(kMaxThreadId, 1, 0U))); |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 83 | } |
| 84 | |
| 85 | ThreadList::~ThreadList() { |
Andreas Gampe | c4bed16 | 2017-05-01 13:46:24 -0700 | [diff] [blame] | 86 | CHECK(shut_down_); |
| 87 | } |
| 88 | |
| 89 | void ThreadList::ShutDown() { |
Mathieu Chartier | 32ce2ad | 2016-03-04 14:58:03 -0800 | [diff] [blame] | 90 | ScopedTrace trace(__PRETTY_FUNCTION__); |
Elliott Hughes | e52e49b | 2012-04-02 16:05:44 -0700 | [diff] [blame] | 91 | // Detach the current thread if necessary. If we failed to start, there might not be any threads. |
Elliott Hughes | 6a14433 | 2012-04-03 13:07:11 -0700 | [diff] [blame] | 92 | // We need to detach the current thread here in case there's another thread waiting to join with |
| 93 | // us. |
Mathieu Chartier | fec72f4 | 2014-10-09 12:57:58 -0700 | [diff] [blame] | 94 | bool contains = false; |
Mathieu Chartier | 32ce2ad | 2016-03-04 14:58:03 -0800 | [diff] [blame] | 95 | Thread* self = Thread::Current(); |
Mathieu Chartier | fec72f4 | 2014-10-09 12:57:58 -0700 | [diff] [blame] | 96 | { |
Mathieu Chartier | fec72f4 | 2014-10-09 12:57:58 -0700 | [diff] [blame] | 97 | MutexLock mu(self, *Locks::thread_list_lock_); |
| 98 | contains = Contains(self); |
| 99 | } |
| 100 | if (contains) { |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 101 | Runtime::Current()->DetachCurrentThread(); |
| 102 | } |
Elliott Hughes | 6a14433 | 2012-04-03 13:07:11 -0700 | [diff] [blame] | 103 | WaitForOtherNonDaemonThreadsToExit(); |
Mathieu Chartier | 5116837 | 2015-08-12 16:40:32 -0700 | [diff] [blame] | 104 | // Disable GC and wait for GC to complete in case there are still daemon threads doing |
| 105 | // allocations. |
| 106 | gc::Heap* const heap = Runtime::Current()->GetHeap(); |
| 107 | heap->DisableGCForShutdown(); |
| 108 | // In case a GC is in progress, wait for it to finish. |
| 109 | heap->WaitForGcToComplete(gc::kGcCauseBackground, Thread::Current()); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 110 | // TODO: there's an unaddressed race here where a thread may attach during shutdown, see |
| 111 | // Thread::Init. |
Mathieu Chartier | 4d87df6 | 2016-01-07 15:14:19 -0800 | [diff] [blame] | 112 | SuspendAllDaemonThreadsForShutdown(); |
Andreas Gampe | c4bed16 | 2017-05-01 13:46:24 -0700 | [diff] [blame] | 113 | |
| 114 | shut_down_ = true; |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 115 | } |
| 116 | |
| 117 | bool ThreadList::Contains(Thread* thread) { |
| 118 | return find(list_.begin(), list_.end(), thread) != list_.end(); |
| 119 | } |
| 120 | |
Brian Carlstrom | 24a3c2e | 2011-10-17 18:07:52 -0700 | [diff] [blame] | 121 | pid_t ThreadList::GetLockOwner() { |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 122 | return Locks::thread_list_lock_->GetExclusiveOwnerTid(); |
Elliott Hughes | accd83d | 2011-10-17 14:25:58 -0700 | [diff] [blame] | 123 | } |
| 124 | |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 125 | void ThreadList::DumpNativeStacks(std::ostream& os) { |
| 126 | MutexLock mu(Thread::Current(), *Locks::thread_list_lock_); |
Christopher Ferris | 6cff48f | 2014-01-26 21:36:13 -0800 | [diff] [blame] | 127 | std::unique_ptr<BacktraceMap> map(BacktraceMap::Create(getpid())); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 128 | for (const auto& thread : list_) { |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 129 | os << "DUMPING THREAD " << thread->GetTid() << "\n"; |
Christopher Ferris | 6cff48f | 2014-01-26 21:36:13 -0800 | [diff] [blame] | 130 | DumpNativeStack(os, thread->GetTid(), map.get(), "\t"); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 131 | os << "\n"; |
| 132 | } |
| 133 | } |
| 134 | |
Elliott Hughes | c967f78 | 2012-04-16 10:23:15 -0700 | [diff] [blame] | 135 | void ThreadList::DumpForSigQuit(std::ostream& os) { |
Mathieu Chartier | 70a596d | 2014-12-17 14:56:47 -0800 | [diff] [blame] | 136 | { |
| 137 | ScopedObjectAccess soa(Thread::Current()); |
Mathieu Chartier | 23f6e69 | 2014-12-18 18:24:39 -0800 | [diff] [blame] | 138 | // Only print if we have samples. |
| 139 | if (suspend_all_historam_.SampleSize() > 0) { |
| 140 | Histogram<uint64_t>::CumulativeData data; |
| 141 | suspend_all_historam_.CreateHistogram(&data); |
| 142 | suspend_all_historam_.PrintConfidenceIntervals(os, 0.99, data); // Dump time to suspend. |
| 143 | } |
Mathieu Chartier | 70a596d | 2014-12-17 14:56:47 -0800 | [diff] [blame] | 144 | } |
Nicolas Geoffray | 6ee4971 | 2018-03-30 14:39:05 +0000 | [diff] [blame] | 145 | bool dump_native_stack = Runtime::Current()->GetDumpNativeStackOnSigQuit(); |
| 146 | Dump(os, dump_native_stack); |
| 147 | DumpUnattachedThreads(os, dump_native_stack && kDumpUnattachedThreadNativeStackForSigQuit); |
Elliott Hughes | abbe07d | 2012-06-05 17:42:23 -0700 | [diff] [blame] | 148 | } |
| 149 | |
Nicolas Geoffray | d3c5965 | 2016-03-17 09:35:04 +0000 | [diff] [blame] | 150 | static void DumpUnattachedThread(std::ostream& os, pid_t tid, bool dump_native_stack) |
| 151 | NO_THREAD_SAFETY_ANALYSIS { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 152 | // TODO: No thread safety analysis as DumpState with a null thread won't access fields, should |
Ian Rogers | cfaa455 | 2012-11-26 21:00:08 -0800 | [diff] [blame] | 153 | // refactor DumpState to avoid skipping analysis. |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 154 | Thread::DumpState(os, nullptr, tid); |
Mathieu Chartier | 3f386d5 | 2016-10-05 14:12:45 -0700 | [diff] [blame] | 155 | if (dump_native_stack) { |
Christopher Ferris | 6cff48f | 2014-01-26 21:36:13 -0800 | [diff] [blame] | 156 | DumpNativeStack(os, tid, nullptr, " native: "); |
Brian Carlstrom | ed8b723 | 2012-06-27 17:54:47 -0700 | [diff] [blame] | 157 | } |
Andreas Gampe | 5544e72 | 2017-06-05 17:01:27 -0700 | [diff] [blame] | 158 | os << std::endl; |
Elliott Hughes | abbe07d | 2012-06-05 17:42:23 -0700 | [diff] [blame] | 159 | } |
| 160 | |
Nicolas Geoffray | d3c5965 | 2016-03-17 09:35:04 +0000 | [diff] [blame] | 161 | void ThreadList::DumpUnattachedThreads(std::ostream& os, bool dump_native_stack) { |
Elliott Hughes | abbe07d | 2012-06-05 17:42:23 -0700 | [diff] [blame] | 162 | DIR* d = opendir("/proc/self/task"); |
| 163 | if (!d) { |
| 164 | return; |
| 165 | } |
| 166 | |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 167 | Thread* self = Thread::Current(); |
Elliott Hughes | 4696b5b | 2012-10-30 10:35:10 -0700 | [diff] [blame] | 168 | dirent* e; |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 169 | while ((e = readdir(d)) != nullptr) { |
Elliott Hughes | abbe07d | 2012-06-05 17:42:23 -0700 | [diff] [blame] | 170 | char* end; |
Elliott Hughes | 4696b5b | 2012-10-30 10:35:10 -0700 | [diff] [blame] | 171 | pid_t tid = strtol(e->d_name, &end, 10); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 172 | if (!*end) { |
wangguibo | 0d29072 | 2021-04-24 11:27:06 +0800 | [diff] [blame] | 173 | Thread* thread; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 174 | { |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 175 | MutexLock mu(self, *Locks::thread_list_lock_); |
wangguibo | 0d29072 | 2021-04-24 11:27:06 +0800 | [diff] [blame] | 176 | thread = FindThreadByTid(tid); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 177 | } |
wangguibo | 0d29072 | 2021-04-24 11:27:06 +0800 | [diff] [blame] | 178 | if (thread != nullptr) { |
Nicolas Geoffray | d3c5965 | 2016-03-17 09:35:04 +0000 | [diff] [blame] | 179 | DumpUnattachedThread(os, tid, dump_native_stack); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 180 | } |
Elliott Hughes | abbe07d | 2012-06-05 17:42:23 -0700 | [diff] [blame] | 181 | } |
| 182 | } |
| 183 | closedir(d); |
Elliott Hughes | ff73806 | 2012-02-03 15:00:42 -0800 | [diff] [blame] | 184 | } |
| 185 | |
Mathieu Chartier | 47c1959 | 2016-03-07 11:59:01 -0800 | [diff] [blame] | 186 | // Dump checkpoint timeout in milliseconds. Larger amount on the target, since the device could be |
| 187 | // overloaded with ANR dumps. |
| 188 | static constexpr uint32_t kDumpWaitTimeout = kIsTargetBuild ? 100000 : 20000; |
Andreas Gampe | 4a3d19b | 2015-01-09 17:54:51 -0800 | [diff] [blame] | 189 | |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 190 | // A closure used by Thread::Dump. |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 191 | class DumpCheckpoint final : public Closure { |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 192 | public: |
Nicolas Geoffray | 6ee4971 | 2018-03-30 14:39:05 +0000 | [diff] [blame] | 193 | DumpCheckpoint(std::ostream* os, bool dump_native_stack) |
Nicolas Geoffray | a73280d | 2016-02-15 13:05:16 +0000 | [diff] [blame] | 194 | : os_(os), |
Mathieu Chartier | 5a83225 | 2019-03-28 07:31:16 -0700 | [diff] [blame] | 195 | // Avoid verifying count in case a thread doesn't end up passing through the barrier. |
| 196 | // This avoids a SIGABRT that would otherwise happen in the destructor. |
Mathieu Chartier | 4f1e328 | 2019-03-27 14:41:32 -0700 | [diff] [blame] | 197 | barrier_(0, /*verify_count_on_shutdown=*/false), |
Nicolas Geoffray | 6ee4971 | 2018-03-30 14:39:05 +0000 | [diff] [blame] | 198 | backtrace_map_(dump_native_stack ? BacktraceMap::Create(getpid()) : nullptr), |
| 199 | dump_native_stack_(dump_native_stack) { |
Christopher Ferris | b1b0ed2 | 2017-10-24 15:38:14 -0700 | [diff] [blame] | 200 | if (backtrace_map_ != nullptr) { |
| 201 | backtrace_map_->SetSuffixesToIgnore(std::vector<std::string> { "oat", "odex" }); |
| 202 | } |
| 203 | } |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 204 | |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 205 | void Run(Thread* thread) override { |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 206 | // Note thread and self may not be equal if thread was already suspended at the point of the |
| 207 | // request. |
| 208 | Thread* self = Thread::Current(); |
Mathieu Chartier | 3f386d5 | 2016-10-05 14:12:45 -0700 | [diff] [blame] | 209 | CHECK(self != nullptr); |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 210 | std::ostringstream local_os; |
| 211 | { |
| 212 | ScopedObjectAccess soa(self); |
Nicolas Geoffray | 6ee4971 | 2018-03-30 14:39:05 +0000 | [diff] [blame] | 213 | thread->Dump(local_os, dump_native_stack_, backtrace_map_.get()); |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 214 | } |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 215 | { |
| 216 | // Use the logging lock to ensure serialization when writing to the common ostream. |
| 217 | MutexLock mu(self, *Locks::logging_lock_); |
Andreas Gampe | 5544e72 | 2017-06-05 17:01:27 -0700 | [diff] [blame] | 218 | *os_ << local_os.str() << std::endl; |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 219 | } |
Mathieu Chartier | 10d2508 | 2015-10-28 18:36:09 -0700 | [diff] [blame] | 220 | barrier_.Pass(self); |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 221 | } |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 222 | |
| 223 | void WaitForThreadsToRunThroughCheckpoint(size_t threads_running_checkpoint) { |
| 224 | Thread* self = Thread::Current(); |
| 225 | ScopedThreadStateChange tsc(self, kWaitingForCheckPointsToRun); |
Andreas Gampe | 1e4b0ca | 2015-01-14 09:06:32 -0800 | [diff] [blame] | 226 | bool timed_out = barrier_.Increment(self, threads_running_checkpoint, kDumpWaitTimeout); |
Ian Rogers | 2156ff1 | 2014-09-13 19:20:54 -0700 | [diff] [blame] | 227 | if (timed_out) { |
Nicolas Geoffray | db97871 | 2014-12-09 13:33:38 +0000 | [diff] [blame] | 228 | // Avoid a recursive abort. |
Andreas Gampe | 3fec9ac | 2016-09-13 10:47:28 -0700 | [diff] [blame] | 229 | LOG((kIsDebugBuild && (gAborting == 0)) ? ::android::base::FATAL : ::android::base::ERROR) |
Nicolas Geoffray | db97871 | 2014-12-09 13:33:38 +0000 | [diff] [blame] | 230 | << "Unexpected time out during dump checkpoint."; |
Ian Rogers | 2156ff1 | 2014-09-13 19:20:54 -0700 | [diff] [blame] | 231 | } |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 232 | } |
| 233 | |
| 234 | private: |
| 235 | // The common stream that will accumulate all the dumps. |
| 236 | std::ostream* const os_; |
| 237 | // The barrier to be passed through and for the requestor to wait upon. |
| 238 | Barrier barrier_; |
Christopher Ferris | 6cff48f | 2014-01-26 21:36:13 -0800 | [diff] [blame] | 239 | // A backtrace map, so that all threads use a shared info and don't reacquire/parse separately. |
| 240 | std::unique_ptr<BacktraceMap> backtrace_map_; |
Nicolas Geoffray | 6ee4971 | 2018-03-30 14:39:05 +0000 | [diff] [blame] | 241 | // Whether we should dump the native stack. |
| 242 | const bool dump_native_stack_; |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 243 | }; |
| 244 | |
Nicolas Geoffray | 6ee4971 | 2018-03-30 14:39:05 +0000 | [diff] [blame] | 245 | void ThreadList::Dump(std::ostream& os, bool dump_native_stack) { |
Mathieu Chartier | 3f386d5 | 2016-10-05 14:12:45 -0700 | [diff] [blame] | 246 | Thread* self = Thread::Current(); |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 247 | { |
Mathieu Chartier | 3f386d5 | 2016-10-05 14:12:45 -0700 | [diff] [blame] | 248 | MutexLock mu(self, *Locks::thread_list_lock_); |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 249 | os << "DALVIK THREADS (" << list_.size() << "):\n"; |
| 250 | } |
Mathieu Chartier | 3f386d5 | 2016-10-05 14:12:45 -0700 | [diff] [blame] | 251 | if (self != nullptr) { |
Nicolas Geoffray | 6ee4971 | 2018-03-30 14:39:05 +0000 | [diff] [blame] | 252 | DumpCheckpoint checkpoint(&os, dump_native_stack); |
Mathieu Chartier | 3f386d5 | 2016-10-05 14:12:45 -0700 | [diff] [blame] | 253 | size_t threads_running_checkpoint; |
| 254 | { |
| 255 | // Use SOA to prevent deadlocks if multiple threads are calling Dump() at the same time. |
| 256 | ScopedObjectAccess soa(self); |
| 257 | threads_running_checkpoint = RunCheckpoint(&checkpoint); |
| 258 | } |
| 259 | if (threads_running_checkpoint != 0) { |
| 260 | checkpoint.WaitForThreadsToRunThroughCheckpoint(threads_running_checkpoint); |
| 261 | } |
| 262 | } else { |
Nicolas Geoffray | 6ee4971 | 2018-03-30 14:39:05 +0000 | [diff] [blame] | 263 | DumpUnattachedThreads(os, dump_native_stack); |
Lei Li | dd9943d | 2015-02-02 14:24:44 +0800 | [diff] [blame] | 264 | } |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 265 | } |
| 266 | |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 267 | void ThreadList::AssertThreadsAreSuspended(Thread* self, Thread* ignore1, Thread* ignore2) { |
| 268 | MutexLock mu(self, *Locks::thread_list_lock_); |
| 269 | MutexLock mu2(self, *Locks::thread_suspend_count_lock_); |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 270 | for (const auto& thread : list_) { |
jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 271 | if (thread != ignore1 && thread != ignore2) { |
Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 272 | CHECK(thread->IsSuspended()) |
| 273 | << "\nUnsuspended thread: <<" << *thread << "\n" |
| 274 | << "self: <<" << *Thread::Current(); |
| 275 | } |
Elliott Hughes | 8d768a9 | 2011-09-14 16:35:25 -0700 | [diff] [blame] | 276 | } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 277 | } |
| 278 | |
Ian Rogers | 66aee5c | 2012-08-15 17:17:47 -0700 | [diff] [blame] | 279 | #if HAVE_TIMED_RWLOCK |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 280 | // Attempt to rectify locks so that we dump thread list with required locks before exiting. |
Andreas Gampe | 794ad76 | 2015-02-23 08:12:24 -0800 | [diff] [blame] | 281 | NO_RETURN static void UnsafeLogFatalForThreadSuspendAllTimeout() { |
Mathieu Chartier | 767d039 | 2017-11-09 14:06:43 -0800 | [diff] [blame] | 282 | // Increment gAborting before doing the thread list dump since we don't want any failures from |
| 283 | // AssertThreadSuspensionIsAllowable in cases where thread suspension is not allowed. |
| 284 | // See b/69044468. |
| 285 | ++gAborting; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 286 | Runtime* runtime = Runtime::Current(); |
| 287 | std::ostringstream ss; |
| 288 | ss << "Thread suspend timeout\n"; |
Mathieu Chartier | 5869a2c | 2014-10-08 14:26:23 -0700 | [diff] [blame] | 289 | Locks::mutator_lock_->Dump(ss); |
| 290 | ss << "\n"; |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 291 | runtime->GetThreadList()->Dump(ss); |
Mathieu Chartier | 767d039 | 2017-11-09 14:06:43 -0800 | [diff] [blame] | 292 | --gAborting; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 293 | LOG(FATAL) << ss.str(); |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 294 | exit(0); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 295 | } |
Ian Rogers | 66aee5c | 2012-08-15 17:17:47 -0700 | [diff] [blame] | 296 | #endif |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 297 | |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 298 | // Unlike suspending all threads where we can wait to acquire the mutator_lock_, suspending an |
Mathieu Chartier | 9914386 | 2015-02-03 14:26:46 -0800 | [diff] [blame] | 299 | // individual thread requires polling. delay_us is the requested sleep wait. If delay_us is 0 then |
| 300 | // we use sched_yield instead of calling usleep. |
David Sehr | 446c6b2 | 2017-11-09 14:08:19 -0800 | [diff] [blame] | 301 | // Although there is the possibility, here and elsewhere, that usleep could return -1 and |
| 302 | // errno = EINTR, there should be no problem if interrupted, so we do not check. |
Mathieu Chartier | 9914386 | 2015-02-03 14:26:46 -0800 | [diff] [blame] | 303 | static void ThreadSuspendSleep(useconds_t delay_us) { |
| 304 | if (delay_us == 0) { |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 305 | sched_yield(); |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 306 | } else { |
Mathieu Chartier | 9914386 | 2015-02-03 14:26:46 -0800 | [diff] [blame] | 307 | usleep(delay_us); |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 308 | } |
| 309 | } |
| 310 | |
Hiroshi Yamauchi | febd0cf | 2016-09-14 19:31:25 -0700 | [diff] [blame] | 311 | size_t ThreadList::RunCheckpoint(Closure* checkpoint_function, Closure* callback) { |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 312 | Thread* self = Thread::Current(); |
Mathieu Chartier | 6dda898 | 2014-03-06 11:11:48 -0800 | [diff] [blame] | 313 | Locks::mutator_lock_->AssertNotExclusiveHeld(self); |
| 314 | Locks::thread_list_lock_->AssertNotHeld(self); |
| 315 | Locks::thread_suspend_count_lock_->AssertNotHeld(self); |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 316 | |
| 317 | std::vector<Thread*> suspended_count_modified_threads; |
| 318 | size_t count = 0; |
| 319 | { |
Hans Boehm | 891cb88 | 2020-07-31 12:06:58 -0700 | [diff] [blame] | 320 | // Call a checkpoint function for each thread, threads which are suspended get their checkpoint |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 321 | // manually called. |
| 322 | MutexLock mu(self, *Locks::thread_list_lock_); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 323 | MutexLock mu2(self, *Locks::thread_suspend_count_lock_); |
Mathieu Chartier | 10d2508 | 2015-10-28 18:36:09 -0700 | [diff] [blame] | 324 | count = list_.size(); |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 325 | for (const auto& thread : list_) { |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 326 | if (thread != self) { |
Vladimir Marko | e41eec3 | 2019-10-18 14:41:54 +0100 | [diff] [blame] | 327 | bool requested_suspend = false; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 328 | while (true) { |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 329 | if (thread->RequestCheckpoint(checkpoint_function)) { |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 330 | // This thread will run its checkpoint some time in the near future. |
Vladimir Marko | e41eec3 | 2019-10-18 14:41:54 +0100 | [diff] [blame] | 331 | if (requested_suspend) { |
| 332 | // The suspend request is now unnecessary. |
| 333 | bool updated = |
| 334 | thread->ModifySuspendCount(self, -1, nullptr, SuspendReason::kInternal); |
| 335 | DCHECK(updated); |
| 336 | requested_suspend = false; |
| 337 | } |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 338 | break; |
| 339 | } else { |
Vladimir Marko | e41eec3 | 2019-10-18 14:41:54 +0100 | [diff] [blame] | 340 | // The thread is probably suspended, try to make sure that it stays suspended. |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 341 | if (thread->GetState() == kRunnable) { |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 342 | // Spurious fail, try again. |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 343 | continue; |
| 344 | } |
Vladimir Marko | e41eec3 | 2019-10-18 14:41:54 +0100 | [diff] [blame] | 345 | if (!requested_suspend) { |
| 346 | bool updated = |
| 347 | thread->ModifySuspendCount(self, +1, nullptr, SuspendReason::kInternal); |
| 348 | DCHECK(updated); |
| 349 | requested_suspend = true; |
| 350 | if (thread->IsSuspended()) { |
| 351 | break; |
| 352 | } |
| 353 | // The thread raced us to become Runnable. Try to RequestCheckpoint() again. |
| 354 | } else { |
| 355 | // The thread previously raced our suspend request to become Runnable but |
| 356 | // since it is suspended again, it must honor that suspend request now. |
| 357 | DCHECK(thread->IsSuspended()); |
| 358 | break; |
| 359 | } |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 360 | } |
| 361 | } |
Vladimir Marko | e41eec3 | 2019-10-18 14:41:54 +0100 | [diff] [blame] | 362 | if (requested_suspend) { |
| 363 | suspended_count_modified_threads.push_back(thread); |
| 364 | } |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 365 | } |
| 366 | } |
Hiroshi Yamauchi | febd0cf | 2016-09-14 19:31:25 -0700 | [diff] [blame] | 367 | // Run the callback to be called inside this critical section. |
| 368 | if (callback != nullptr) { |
| 369 | callback->Run(self); |
| 370 | } |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 371 | } |
| 372 | |
| 373 | // Run the checkpoint on ourself while we wait for threads to suspend. |
| 374 | checkpoint_function->Run(self); |
| 375 | |
| 376 | // Run the checkpoint on the suspended threads. |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 377 | for (const auto& thread : suspended_count_modified_threads) { |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 378 | // We know for sure that the thread is suspended at this point. |
Vladimir Marko | e41eec3 | 2019-10-18 14:41:54 +0100 | [diff] [blame] | 379 | DCHECK(thread->IsSuspended()); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 380 | checkpoint_function->Run(thread); |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 381 | { |
| 382 | MutexLock mu2(self, *Locks::thread_suspend_count_lock_); |
Alex Light | 46f9340 | 2017-06-29 11:59:50 -0700 | [diff] [blame] | 383 | bool updated = thread->ModifySuspendCount(self, -1, nullptr, SuspendReason::kInternal); |
Sebastien Hertz | 1c8f4ff | 2017-04-14 15:05:12 +0200 | [diff] [blame] | 384 | DCHECK(updated); |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 385 | } |
| 386 | } |
| 387 | |
Mathieu Chartier | 664bebf | 2012-11-12 16:54:11 -0800 | [diff] [blame] | 388 | { |
| 389 | // Imitate ResumeAll, threads may be waiting on Thread::resume_cond_ since we raised their |
| 390 | // suspend count. Now the suspend_count_ is lowered so we must do the broadcast. |
| 391 | MutexLock mu2(self, *Locks::thread_suspend_count_lock_); |
| 392 | Thread::resume_cond_->Broadcast(self); |
| 393 | } |
| 394 | |
Lei Li | dd9943d | 2015-02-02 14:24:44 +0800 | [diff] [blame] | 395 | return count; |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 396 | } |
| 397 | |
Hiroshi Yamauchi | a222404 | 2017-02-08 16:35:45 -0800 | [diff] [blame] | 398 | void ThreadList::RunEmptyCheckpoint() { |
Hiroshi Yamauchi | 3049324 | 2016-11-03 13:06:52 -0700 | [diff] [blame] | 399 | Thread* self = Thread::Current(); |
| 400 | Locks::mutator_lock_->AssertNotExclusiveHeld(self); |
| 401 | Locks::thread_list_lock_->AssertNotHeld(self); |
| 402 | Locks::thread_suspend_count_lock_->AssertNotHeld(self); |
Hiroshi Yamauchi | a222404 | 2017-02-08 16:35:45 -0800 | [diff] [blame] | 403 | std::vector<uint32_t> runnable_thread_ids; |
Hiroshi Yamauchi | 3049324 | 2016-11-03 13:06:52 -0700 | [diff] [blame] | 404 | size_t count = 0; |
Hiroshi Yamauchi | a222404 | 2017-02-08 16:35:45 -0800 | [diff] [blame] | 405 | Barrier* barrier = empty_checkpoint_barrier_.get(); |
| 406 | barrier->Init(self, 0); |
Hiroshi Yamauchi | 3049324 | 2016-11-03 13:06:52 -0700 | [diff] [blame] | 407 | { |
| 408 | MutexLock mu(self, *Locks::thread_list_lock_); |
| 409 | MutexLock mu2(self, *Locks::thread_suspend_count_lock_); |
| 410 | for (Thread* thread : list_) { |
| 411 | if (thread != self) { |
| 412 | while (true) { |
| 413 | if (thread->RequestEmptyCheckpoint()) { |
| 414 | // This thread will run an empty checkpoint (decrement the empty checkpoint barrier) |
| 415 | // some time in the near future. |
| 416 | ++count; |
Hiroshi Yamauchi | a82769c | 2016-12-02 17:01:51 -0800 | [diff] [blame] | 417 | if (kIsDebugBuild) { |
| 418 | runnable_thread_ids.push_back(thread->GetThreadId()); |
| 419 | } |
Hiroshi Yamauchi | 3049324 | 2016-11-03 13:06:52 -0700 | [diff] [blame] | 420 | break; |
| 421 | } |
| 422 | if (thread->GetState() != kRunnable) { |
| 423 | // It's seen suspended, we are done because it must not be in the middle of a mutator |
| 424 | // heap access. |
| 425 | break; |
| 426 | } |
| 427 | } |
| 428 | } |
| 429 | } |
| 430 | } |
| 431 | |
| 432 | // Wake up the threads blocking for weak ref access so that they will respond to the empty |
| 433 | // checkpoint request. Otherwise we will hang as they are blocking in the kRunnable state. |
| 434 | Runtime::Current()->GetHeap()->GetReferenceProcessor()->BroadcastForSlowPath(self); |
Andreas Gampe | 98ea9d9 | 2018-10-19 14:06:15 -0700 | [diff] [blame] | 435 | Runtime::Current()->BroadcastForNewSystemWeaks(/*broadcast_for_checkpoint=*/true); |
Hiroshi Yamauchi | a222404 | 2017-02-08 16:35:45 -0800 | [diff] [blame] | 436 | { |
| 437 | ScopedThreadStateChange tsc(self, kWaitingForCheckPointsToRun); |
| 438 | uint64_t total_wait_time = 0; |
| 439 | bool first_iter = true; |
| 440 | while (true) { |
| 441 | // Wake up the runnable threads blocked on the mutexes that another thread, which is blocked |
| 442 | // on a weak ref access, holds (indirectly blocking for weak ref access through another thread |
| 443 | // and a mutex.) This needs to be done periodically because the thread may be preempted |
| 444 | // between the CheckEmptyCheckpointFromMutex call and the subsequent futex wait in |
| 445 | // Mutex::ExclusiveLock, etc. when the wakeup via WakeupToRespondToEmptyCheckpoint |
| 446 | // arrives. This could cause a *very rare* deadlock, if not repeated. Most of the cases are |
| 447 | // handled in the first iteration. |
| 448 | for (BaseMutex* mutex : Locks::expected_mutexes_on_weak_ref_access_) { |
| 449 | mutex->WakeupToRespondToEmptyCheckpoint(); |
| 450 | } |
| 451 | static constexpr uint64_t kEmptyCheckpointPeriodicTimeoutMs = 100; // 100ms |
| 452 | static constexpr uint64_t kEmptyCheckpointTotalTimeoutMs = 600 * 1000; // 10 minutes. |
| 453 | size_t barrier_count = first_iter ? count : 0; |
| 454 | first_iter = false; // Don't add to the barrier count from the second iteration on. |
| 455 | bool timed_out = barrier->Increment(self, barrier_count, kEmptyCheckpointPeriodicTimeoutMs); |
| 456 | if (!timed_out) { |
| 457 | break; // Success |
| 458 | } |
| 459 | // This is a very rare case. |
| 460 | total_wait_time += kEmptyCheckpointPeriodicTimeoutMs; |
| 461 | if (kIsDebugBuild && total_wait_time > kEmptyCheckpointTotalTimeoutMs) { |
| 462 | std::ostringstream ss; |
| 463 | ss << "Empty checkpoint timeout\n"; |
| 464 | ss << "Barrier count " << barrier->GetCount(self) << "\n"; |
| 465 | ss << "Runnable thread IDs"; |
| 466 | for (uint32_t tid : runnable_thread_ids) { |
| 467 | ss << " " << tid; |
| 468 | } |
| 469 | ss << "\n"; |
| 470 | Locks::mutator_lock_->Dump(ss); |
| 471 | ss << "\n"; |
| 472 | LOG(FATAL_WITHOUT_ABORT) << ss.str(); |
| 473 | // Some threads in 'runnable_thread_ids' are probably stuck. Try to dump their stacks. |
| 474 | // Avoid using ThreadList::Dump() initially because it is likely to get stuck as well. |
| 475 | { |
| 476 | ScopedObjectAccess soa(self); |
| 477 | MutexLock mu1(self, *Locks::thread_list_lock_); |
| 478 | for (Thread* thread : GetList()) { |
| 479 | uint32_t tid = thread->GetThreadId(); |
| 480 | bool is_in_runnable_thread_ids = |
| 481 | std::find(runnable_thread_ids.begin(), runnable_thread_ids.end(), tid) != |
| 482 | runnable_thread_ids.end(); |
| 483 | if (is_in_runnable_thread_ids && |
| 484 | thread->ReadFlag(kEmptyCheckpointRequest)) { |
| 485 | // Found a runnable thread that hasn't responded to the empty checkpoint request. |
| 486 | // Assume it's stuck and safe to dump its stack. |
| 487 | thread->Dump(LOG_STREAM(FATAL_WITHOUT_ABORT), |
Andreas Gampe | 98ea9d9 | 2018-10-19 14:06:15 -0700 | [diff] [blame] | 488 | /*dump_native_stack=*/ true, |
| 489 | /*backtrace_map=*/ nullptr, |
| 490 | /*force_dump_stack=*/ true); |
Hiroshi Yamauchi | a222404 | 2017-02-08 16:35:45 -0800 | [diff] [blame] | 491 | } |
| 492 | } |
| 493 | } |
| 494 | LOG(FATAL_WITHOUT_ABORT) |
| 495 | << "Dumped runnable threads that haven't responded to empty checkpoint."; |
| 496 | // Now use ThreadList::Dump() to dump more threads, noting it may get stuck. |
| 497 | Dump(LOG_STREAM(FATAL_WITHOUT_ABORT)); |
| 498 | LOG(FATAL) << "Dumped all threads."; |
| 499 | } |
| 500 | } |
| 501 | } |
Hiroshi Yamauchi | 3049324 | 2016-11-03 13:06:52 -0700 | [diff] [blame] | 502 | } |
| 503 | |
Hiroshi Yamauchi | 2cd334a | 2015-01-09 14:03:35 -0800 | [diff] [blame] | 504 | // A checkpoint/suspend-all hybrid to switch thread roots from |
| 505 | // from-space to to-space refs. Used to synchronize threads at a point |
| 506 | // to mark the initiation of marking while maintaining the to-space |
| 507 | // invariant. |
Mathieu Chartier | b56200b | 2015-10-29 10:41:51 -0700 | [diff] [blame] | 508 | size_t ThreadList::FlipThreadRoots(Closure* thread_flip_visitor, |
| 509 | Closure* flip_callback, |
Andreas Gampe | 6e64445 | 2017-05-09 16:30:27 -0700 | [diff] [blame] | 510 | gc::collector::GarbageCollector* collector, |
| 511 | gc::GcPauseListener* pause_listener) { |
Hiroshi Yamauchi | 2cd334a | 2015-01-09 14:03:35 -0800 | [diff] [blame] | 512 | TimingLogger::ScopedTiming split("ThreadListFlip", collector->GetTimings()); |
Hiroshi Yamauchi | 2cd334a | 2015-01-09 14:03:35 -0800 | [diff] [blame] | 513 | Thread* self = Thread::Current(); |
| 514 | Locks::mutator_lock_->AssertNotHeld(self); |
| 515 | Locks::thread_list_lock_->AssertNotHeld(self); |
| 516 | Locks::thread_suspend_count_lock_->AssertNotHeld(self); |
| 517 | CHECK_NE(self->GetState(), kRunnable); |
| 518 | |
Hiroshi Yamauchi | ee23582 | 2016-08-19 17:03:27 -0700 | [diff] [blame] | 519 | collector->GetHeap()->ThreadFlipBegin(self); // Sync with JNI critical calls. |
| 520 | |
Mathieu Chartier | e9429c8 | 2017-01-27 15:22:56 -0800 | [diff] [blame] | 521 | // ThreadFlipBegin happens before we suspend all the threads, so it does not count towards the |
| 522 | // pause. |
| 523 | const uint64_t suspend_start_time = NanoTime(); |
Mathieu Chartier | b19ccb1 | 2015-07-15 10:24:16 -0700 | [diff] [blame] | 524 | SuspendAllInternal(self, self, nullptr); |
Andreas Gampe | 6e64445 | 2017-05-09 16:30:27 -0700 | [diff] [blame] | 525 | if (pause_listener != nullptr) { |
| 526 | pause_listener->StartPause(); |
| 527 | } |
Hiroshi Yamauchi | 2cd334a | 2015-01-09 14:03:35 -0800 | [diff] [blame] | 528 | |
| 529 | // Run the flip callback for the collector. |
| 530 | Locks::mutator_lock_->ExclusiveLock(self); |
Mathieu Chartier | e9429c8 | 2017-01-27 15:22:56 -0800 | [diff] [blame] | 531 | suspend_all_historam_.AdjustAndAddValue(NanoTime() - suspend_start_time); |
Hiroshi Yamauchi | 2cd334a | 2015-01-09 14:03:35 -0800 | [diff] [blame] | 532 | flip_callback->Run(self); |
| 533 | Locks::mutator_lock_->ExclusiveUnlock(self); |
Mathieu Chartier | e9429c8 | 2017-01-27 15:22:56 -0800 | [diff] [blame] | 534 | collector->RegisterPause(NanoTime() - suspend_start_time); |
Andreas Gampe | 6e64445 | 2017-05-09 16:30:27 -0700 | [diff] [blame] | 535 | if (pause_listener != nullptr) { |
| 536 | pause_listener->EndPause(); |
| 537 | } |
Hiroshi Yamauchi | 2cd334a | 2015-01-09 14:03:35 -0800 | [diff] [blame] | 538 | |
| 539 | // Resume runnable threads. |
Hiroshi Yamauchi | ee23582 | 2016-08-19 17:03:27 -0700 | [diff] [blame] | 540 | size_t runnable_thread_count = 0; |
Mathieu Chartier | b19ccb1 | 2015-07-15 10:24:16 -0700 | [diff] [blame] | 541 | std::vector<Thread*> other_threads; |
Hiroshi Yamauchi | 2cd334a | 2015-01-09 14:03:35 -0800 | [diff] [blame] | 542 | { |
Hiroshi Yamauchi | ee23582 | 2016-08-19 17:03:27 -0700 | [diff] [blame] | 543 | TimingLogger::ScopedTiming split2("ResumeRunnableThreads", collector->GetTimings()); |
Hiroshi Yamauchi | 2cd334a | 2015-01-09 14:03:35 -0800 | [diff] [blame] | 544 | MutexLock mu(self, *Locks::thread_list_lock_); |
| 545 | MutexLock mu2(self, *Locks::thread_suspend_count_lock_); |
| 546 | --suspend_all_count_; |
| 547 | for (const auto& thread : list_) { |
Hiroshi Yamauchi | ee23582 | 2016-08-19 17:03:27 -0700 | [diff] [blame] | 548 | // Set the flip function for all threads because Thread::DumpState/DumpJavaStack() (invoked by |
| 549 | // a checkpoint) may cause the flip function to be run for a runnable/suspended thread before |
| 550 | // a runnable thread runs it for itself or we run it for a suspended thread below. |
| 551 | thread->SetFlipFunction(thread_flip_visitor); |
Hiroshi Yamauchi | 2cd334a | 2015-01-09 14:03:35 -0800 | [diff] [blame] | 552 | if (thread == self) { |
| 553 | continue; |
| 554 | } |
Hiroshi Yamauchi | ee23582 | 2016-08-19 17:03:27 -0700 | [diff] [blame] | 555 | // Resume early the threads that were runnable but are suspended just for this thread flip or |
| 556 | // about to transition from non-runnable (eg. kNative at the SOA entry in a JNI function) to |
| 557 | // runnable (both cases waiting inside Thread::TransitionFromSuspendedToRunnable), or waiting |
| 558 | // for the thread flip to end at the JNI critical section entry (kWaitingForGcThreadFlip), |
| 559 | ThreadState state = thread->GetState(); |
Hiroshi Yamauchi | 15af34c | 2016-09-26 16:56:24 -0700 | [diff] [blame] | 560 | if ((state == kWaitingForGcThreadFlip || thread->IsTransitioningToRunnable()) && |
| 561 | thread->GetSuspendCount() == 1) { |
Hiroshi Yamauchi | 2cd334a | 2015-01-09 14:03:35 -0800 | [diff] [blame] | 562 | // The thread will resume right after the broadcast. |
Alex Light | 46f9340 | 2017-06-29 11:59:50 -0700 | [diff] [blame] | 563 | bool updated = thread->ModifySuspendCount(self, -1, nullptr, SuspendReason::kInternal); |
Sebastien Hertz | 1c8f4ff | 2017-04-14 15:05:12 +0200 | [diff] [blame] | 564 | DCHECK(updated); |
Hiroshi Yamauchi | ee23582 | 2016-08-19 17:03:27 -0700 | [diff] [blame] | 565 | ++runnable_thread_count; |
Hiroshi Yamauchi | 2cd334a | 2015-01-09 14:03:35 -0800 | [diff] [blame] | 566 | } else { |
| 567 | other_threads.push_back(thread); |
| 568 | } |
| 569 | } |
| 570 | Thread::resume_cond_->Broadcast(self); |
| 571 | } |
| 572 | |
Hiroshi Yamauchi | ee23582 | 2016-08-19 17:03:27 -0700 | [diff] [blame] | 573 | collector->GetHeap()->ThreadFlipEnd(self); |
| 574 | |
Hiroshi Yamauchi | 2cd334a | 2015-01-09 14:03:35 -0800 | [diff] [blame] | 575 | // Run the closure on the other threads and let them resume. |
| 576 | { |
Hiroshi Yamauchi | ee23582 | 2016-08-19 17:03:27 -0700 | [diff] [blame] | 577 | TimingLogger::ScopedTiming split3("FlipOtherThreads", collector->GetTimings()); |
Hiroshi Yamauchi | 2cd334a | 2015-01-09 14:03:35 -0800 | [diff] [blame] | 578 | ReaderMutexLock mu(self, *Locks::mutator_lock_); |
| 579 | for (const auto& thread : other_threads) { |
| 580 | Closure* flip_func = thread->GetFlipFunction(); |
| 581 | if (flip_func != nullptr) { |
| 582 | flip_func->Run(thread); |
| 583 | } |
| 584 | } |
| 585 | // Run it for self. |
Hiroshi Yamauchi | ee23582 | 2016-08-19 17:03:27 -0700 | [diff] [blame] | 586 | Closure* flip_func = self->GetFlipFunction(); |
| 587 | if (flip_func != nullptr) { |
| 588 | flip_func->Run(self); |
| 589 | } |
Hiroshi Yamauchi | 2cd334a | 2015-01-09 14:03:35 -0800 | [diff] [blame] | 590 | } |
| 591 | |
| 592 | // Resume other threads. |
| 593 | { |
Hiroshi Yamauchi | ee23582 | 2016-08-19 17:03:27 -0700 | [diff] [blame] | 594 | TimingLogger::ScopedTiming split4("ResumeOtherThreads", collector->GetTimings()); |
Hiroshi Yamauchi | 2cd334a | 2015-01-09 14:03:35 -0800 | [diff] [blame] | 595 | MutexLock mu2(self, *Locks::thread_suspend_count_lock_); |
| 596 | for (const auto& thread : other_threads) { |
Alex Light | 46f9340 | 2017-06-29 11:59:50 -0700 | [diff] [blame] | 597 | bool updated = thread->ModifySuspendCount(self, -1, nullptr, SuspendReason::kInternal); |
Sebastien Hertz | 1c8f4ff | 2017-04-14 15:05:12 +0200 | [diff] [blame] | 598 | DCHECK(updated); |
Hiroshi Yamauchi | 2cd334a | 2015-01-09 14:03:35 -0800 | [diff] [blame] | 599 | } |
| 600 | Thread::resume_cond_->Broadcast(self); |
| 601 | } |
| 602 | |
Hiroshi Yamauchi | ee23582 | 2016-08-19 17:03:27 -0700 | [diff] [blame] | 603 | return runnable_thread_count + other_threads.size() + 1; // +1 for self. |
Hiroshi Yamauchi | 2cd334a | 2015-01-09 14:03:35 -0800 | [diff] [blame] | 604 | } |
| 605 | |
Mathieu Chartier | bf44d42 | 2015-06-02 11:42:18 -0700 | [diff] [blame] | 606 | void ThreadList::SuspendAll(const char* cause, bool long_suspend) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 607 | Thread* self = Thread::Current(); |
| 608 | |
Jeff Hao | c5d824a | 2014-07-28 18:35:38 -0700 | [diff] [blame] | 609 | if (self != nullptr) { |
Mathieu Chartier | bf9fc58 | 2015-03-13 17:21:25 -0700 | [diff] [blame] | 610 | VLOG(threads) << *self << " SuspendAll for " << cause << " starting..."; |
Jeff Hao | c5d824a | 2014-07-28 18:35:38 -0700 | [diff] [blame] | 611 | } else { |
Mathieu Chartier | bf9fc58 | 2015-03-13 17:21:25 -0700 | [diff] [blame] | 612 | VLOG(threads) << "Thread[null] SuspendAll for " << cause << " starting..."; |
Jeff Hao | c5d824a | 2014-07-28 18:35:38 -0700 | [diff] [blame] | 613 | } |
Mathieu Chartier | 32ce2ad | 2016-03-04 14:58:03 -0800 | [diff] [blame] | 614 | { |
| 615 | ScopedTrace trace("Suspending mutator threads"); |
| 616 | const uint64_t start_time = NanoTime(); |
Mathieu Chartier | 6f365cc | 2014-04-23 12:42:27 -0700 | [diff] [blame] | 617 | |
Mathieu Chartier | 32ce2ad | 2016-03-04 14:58:03 -0800 | [diff] [blame] | 618 | SuspendAllInternal(self, self); |
| 619 | // All threads are known to have suspended (but a thread may still own the mutator lock) |
| 620 | // Make sure this thread grabs exclusive access to the mutator lock and its protected data. |
Ian Rogers | 66aee5c | 2012-08-15 17:17:47 -0700 | [diff] [blame] | 621 | #if HAVE_TIMED_RWLOCK |
Mathieu Chartier | 32ce2ad | 2016-03-04 14:58:03 -0800 | [diff] [blame] | 622 | while (true) { |
Mathieu Chartier | 3fceaf5 | 2017-01-22 13:33:40 -0800 | [diff] [blame] | 623 | if (Locks::mutator_lock_->ExclusiveLockWithTimeout(self, |
| 624 | NsToMs(thread_suspend_timeout_ns_), |
| 625 | 0)) { |
Mathieu Chartier | 32ce2ad | 2016-03-04 14:58:03 -0800 | [diff] [blame] | 626 | break; |
| 627 | } else if (!long_suspend_) { |
| 628 | // Reading long_suspend without the mutator lock is slightly racy, in some rare cases, this |
| 629 | // could result in a thread suspend timeout. |
Mathieu Chartier | 3fceaf5 | 2017-01-22 13:33:40 -0800 | [diff] [blame] | 630 | // Timeout if we wait more than thread_suspend_timeout_ns_ nanoseconds. |
Mathieu Chartier | 32ce2ad | 2016-03-04 14:58:03 -0800 | [diff] [blame] | 631 | UnsafeLogFatalForThreadSuspendAllTimeout(); |
| 632 | } |
Mathieu Chartier | bf44d42 | 2015-06-02 11:42:18 -0700 | [diff] [blame] | 633 | } |
Ian Rogers | 66aee5c | 2012-08-15 17:17:47 -0700 | [diff] [blame] | 634 | #else |
Mathieu Chartier | 32ce2ad | 2016-03-04 14:58:03 -0800 | [diff] [blame] | 635 | Locks::mutator_lock_->ExclusiveLock(self); |
Ian Rogers | 66aee5c | 2012-08-15 17:17:47 -0700 | [diff] [blame] | 636 | #endif |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 637 | |
Mathieu Chartier | 32ce2ad | 2016-03-04 14:58:03 -0800 | [diff] [blame] | 638 | long_suspend_ = long_suspend; |
Mathieu Chartier | bf44d42 | 2015-06-02 11:42:18 -0700 | [diff] [blame] | 639 | |
Mathieu Chartier | 32ce2ad | 2016-03-04 14:58:03 -0800 | [diff] [blame] | 640 | const uint64_t end_time = NanoTime(); |
| 641 | const uint64_t suspend_time = end_time - start_time; |
| 642 | suspend_all_historam_.AdjustAndAddValue(suspend_time); |
| 643 | if (suspend_time > kLongThreadSuspendThreshold) { |
| 644 | LOG(WARNING) << "Suspending all threads took: " << PrettyDuration(suspend_time); |
| 645 | } |
| 646 | |
| 647 | if (kDebugLocking) { |
| 648 | // Debug check that all threads are suspended. |
| 649 | AssertThreadsAreSuspended(self, self); |
| 650 | } |
Mathieu Chartier | 251755c | 2014-07-15 18:10:25 -0700 | [diff] [blame] | 651 | } |
Orion Hodson | 119733d | 2019-01-30 15:14:41 +0000 | [diff] [blame] | 652 | ATraceBegin((std::string("Mutator threads suspended for ") + cause).c_str()); |
Mathieu Chartier | 6f365cc | 2014-04-23 12:42:27 -0700 | [diff] [blame] | 653 | |
Jeff Hao | c5d824a | 2014-07-28 18:35:38 -0700 | [diff] [blame] | 654 | if (self != nullptr) { |
| 655 | VLOG(threads) << *self << " SuspendAll complete"; |
| 656 | } else { |
| 657 | VLOG(threads) << "Thread[null] SuspendAll complete"; |
| 658 | } |
Elliott Hughes | 8d768a9 | 2011-09-14 16:35:25 -0700 | [diff] [blame] | 659 | } |
| 660 | |
Yu Li | eac4424 | 2015-06-29 10:50:03 +0800 | [diff] [blame] | 661 | // Ensures all threads running Java suspend and that those not running Java don't start. |
Mathieu Chartier | b56200b | 2015-10-29 10:41:51 -0700 | [diff] [blame] | 662 | void ThreadList::SuspendAllInternal(Thread* self, |
| 663 | Thread* ignore1, |
| 664 | Thread* ignore2, |
Alex Light | 46f9340 | 2017-06-29 11:59:50 -0700 | [diff] [blame] | 665 | SuspendReason reason) { |
Yu Li | eac4424 | 2015-06-29 10:50:03 +0800 | [diff] [blame] | 666 | Locks::mutator_lock_->AssertNotExclusiveHeld(self); |
| 667 | Locks::thread_list_lock_->AssertNotHeld(self); |
| 668 | Locks::thread_suspend_count_lock_->AssertNotHeld(self); |
| 669 | if (kDebugLocking && self != nullptr) { |
| 670 | CHECK_NE(self->GetState(), kRunnable); |
| 671 | } |
| 672 | |
| 673 | // First request that all threads suspend, then wait for them to suspend before |
| 674 | // returning. This suspension scheme also relies on other behaviour: |
| 675 | // 1. Threads cannot be deleted while they are suspended or have a suspend- |
| 676 | // request flag set - (see Unregister() below). |
| 677 | // 2. When threads are created, they are created in a suspended state (actually |
| 678 | // kNative) and will never begin executing Java code without first checking |
| 679 | // the suspend-request flag. |
| 680 | |
| 681 | // The atomic counter for number of threads that need to pass the barrier. |
| 682 | AtomicInteger pending_threads; |
| 683 | uint32_t num_ignored = 0; |
| 684 | if (ignore1 != nullptr) { |
| 685 | ++num_ignored; |
| 686 | } |
| 687 | if (ignore2 != nullptr && ignore1 != ignore2) { |
| 688 | ++num_ignored; |
| 689 | } |
| 690 | { |
| 691 | MutexLock mu(self, *Locks::thread_list_lock_); |
| 692 | MutexLock mu2(self, *Locks::thread_suspend_count_lock_); |
| 693 | // Update global suspend all state for attaching threads. |
| 694 | ++suspend_all_count_; |
Orion Hodson | 88591fe | 2018-03-06 13:35:43 +0000 | [diff] [blame] | 695 | pending_threads.store(list_.size() - num_ignored, std::memory_order_relaxed); |
Yu Li | eac4424 | 2015-06-29 10:50:03 +0800 | [diff] [blame] | 696 | // Increment everybody's suspend count (except those that should be ignored). |
| 697 | for (const auto& thread : list_) { |
| 698 | if (thread == ignore1 || thread == ignore2) { |
| 699 | continue; |
| 700 | } |
| 701 | VLOG(threads) << "requesting thread suspend: " << *thread; |
Alex Light | 46f9340 | 2017-06-29 11:59:50 -0700 | [diff] [blame] | 702 | bool updated = thread->ModifySuspendCount(self, +1, &pending_threads, reason); |
Sebastien Hertz | 1c8f4ff | 2017-04-14 15:05:12 +0200 | [diff] [blame] | 703 | DCHECK(updated); |
Yu Li | eac4424 | 2015-06-29 10:50:03 +0800 | [diff] [blame] | 704 | |
| 705 | // Must install the pending_threads counter first, then check thread->IsSuspend() and clear |
| 706 | // the counter. Otherwise there's a race with Thread::TransitionFromRunnableToSuspended() |
| 707 | // that can lead a thread to miss a call to PassActiveSuspendBarriers(). |
| 708 | if (thread->IsSuspended()) { |
| 709 | // Only clear the counter for the current thread. |
| 710 | thread->ClearSuspendBarrier(&pending_threads); |
Orion Hodson | 88591fe | 2018-03-06 13:35:43 +0000 | [diff] [blame] | 711 | pending_threads.fetch_sub(1, std::memory_order_seq_cst); |
Yu Li | eac4424 | 2015-06-29 10:50:03 +0800 | [diff] [blame] | 712 | } |
| 713 | } |
| 714 | } |
| 715 | |
| 716 | // Wait for the barrier to be passed by all runnable threads. This wait |
| 717 | // is done with a timeout so that we can detect problems. |
Mathieu Chartier | 19af117 | 2015-07-14 10:05:45 -0700 | [diff] [blame] | 718 | #if ART_USE_FUTEXES |
Yu Li | eac4424 | 2015-06-29 10:50:03 +0800 | [diff] [blame] | 719 | timespec wait_timeout; |
Mathieu Chartier | 3fceaf5 | 2017-01-22 13:33:40 -0800 | [diff] [blame] | 720 | InitTimeSpec(false, CLOCK_MONOTONIC, NsToMs(thread_suspend_timeout_ns_), 0, &wait_timeout); |
Mathieu Chartier | 19af117 | 2015-07-14 10:05:45 -0700 | [diff] [blame] | 721 | #endif |
Mathieu Chartier | 32c8337 | 2017-01-11 10:09:30 -0800 | [diff] [blame] | 722 | const uint64_t start_time = NanoTime(); |
Yu Li | eac4424 | 2015-06-29 10:50:03 +0800 | [diff] [blame] | 723 | while (true) { |
Orion Hodson | 88591fe | 2018-03-06 13:35:43 +0000 | [diff] [blame] | 724 | int32_t cur_val = pending_threads.load(std::memory_order_relaxed); |
Yu Li | eac4424 | 2015-06-29 10:50:03 +0800 | [diff] [blame] | 725 | if (LIKELY(cur_val > 0)) { |
| 726 | #if ART_USE_FUTEXES |
Charles Munger | 7530bae | 2018-10-29 20:03:51 -0700 | [diff] [blame] | 727 | if (futex(pending_threads.Address(), FUTEX_WAIT_PRIVATE, cur_val, &wait_timeout, nullptr, 0) |
| 728 | != 0) { |
Yuntao.Xiao | a1358e6 | 2018-11-26 14:28:51 +0800 | [diff] [blame] | 729 | if ((errno == EAGAIN) || (errno == EINTR)) { |
| 730 | // EAGAIN and EINTR both indicate a spurious failure, try again from the beginning. |
| 731 | continue; |
| 732 | } |
| 733 | if (errno == ETIMEDOUT) { |
| 734 | const uint64_t wait_time = NanoTime() - start_time; |
| 735 | MutexLock mu(self, *Locks::thread_list_lock_); |
| 736 | MutexLock mu2(self, *Locks::thread_suspend_count_lock_); |
| 737 | std::ostringstream oss; |
| 738 | for (const auto& thread : list_) { |
| 739 | if (thread == ignore1 || thread == ignore2) { |
| 740 | continue; |
| 741 | } |
| 742 | if (!thread->IsSuspended()) { |
| 743 | oss << std::endl << "Thread not suspended: " << *thread; |
| 744 | } |
Yu Li | eac4424 | 2015-06-29 10:50:03 +0800 | [diff] [blame] | 745 | } |
Yuntao.Xiao | a1358e6 | 2018-11-26 14:28:51 +0800 | [diff] [blame] | 746 | LOG(kIsDebugBuild ? ::android::base::FATAL : ::android::base::ERROR) |
| 747 | << "Timed out waiting for threads to suspend, waited for " |
| 748 | << PrettyDuration(wait_time) |
| 749 | << oss.str(); |
| 750 | } else { |
| 751 | PLOG(FATAL) << "futex wait failed for SuspendAllInternal()"; |
Yu Li | eac4424 | 2015-06-29 10:50:03 +0800 | [diff] [blame] | 752 | } |
Vladimir Marko | d778cd6 | 2016-07-05 17:29:55 +0100 | [diff] [blame] | 753 | } // else re-check pending_threads in the next iteration (this may be a spurious wake-up). |
Yu Li | eac4424 | 2015-06-29 10:50:03 +0800 | [diff] [blame] | 754 | #else |
| 755 | // Spin wait. This is likely to be slow, but on most architecture ART_USE_FUTEXES is set. |
Mathieu Chartier | 32c8337 | 2017-01-11 10:09:30 -0800 | [diff] [blame] | 756 | UNUSED(start_time); |
Yu Li | eac4424 | 2015-06-29 10:50:03 +0800 | [diff] [blame] | 757 | #endif |
| 758 | } else { |
| 759 | CHECK_EQ(cur_val, 0); |
| 760 | break; |
| 761 | } |
| 762 | } |
| 763 | } |
| 764 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 765 | void ThreadList::ResumeAll() { |
| 766 | Thread* self = Thread::Current(); |
| 767 | |
Jeff Hao | c5d824a | 2014-07-28 18:35:38 -0700 | [diff] [blame] | 768 | if (self != nullptr) { |
| 769 | VLOG(threads) << *self << " ResumeAll starting"; |
| 770 | } else { |
| 771 | VLOG(threads) << "Thread[null] ResumeAll starting"; |
| 772 | } |
Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 773 | |
Orion Hodson | 119733d | 2019-01-30 15:14:41 +0000 | [diff] [blame] | 774 | ATraceEnd(); |
Mathieu Chartier | 32ce2ad | 2016-03-04 14:58:03 -0800 | [diff] [blame] | 775 | |
| 776 | ScopedTrace trace("Resuming mutator threads"); |
Mathieu Chartier | 6f365cc | 2014-04-23 12:42:27 -0700 | [diff] [blame] | 777 | |
Mathieu Chartier | 6dda898 | 2014-03-06 11:11:48 -0800 | [diff] [blame] | 778 | if (kDebugLocking) { |
| 779 | // Debug check that all threads are suspended. |
| 780 | AssertThreadsAreSuspended(self, self); |
| 781 | } |
Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 782 | |
Mathieu Chartier | bf44d42 | 2015-06-02 11:42:18 -0700 | [diff] [blame] | 783 | long_suspend_ = false; |
| 784 | |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 785 | Locks::mutator_lock_->ExclusiveUnlock(self); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 786 | { |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 787 | MutexLock mu(self, *Locks::thread_list_lock_); |
| 788 | MutexLock mu2(self, *Locks::thread_suspend_count_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 789 | // Update global suspend all state for attaching threads. |
| 790 | --suspend_all_count_; |
| 791 | // Decrement the suspend counts for all threads. |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 792 | for (const auto& thread : list_) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 793 | if (thread == self) { |
| 794 | continue; |
| 795 | } |
Alex Light | 46f9340 | 2017-06-29 11:59:50 -0700 | [diff] [blame] | 796 | bool updated = thread->ModifySuspendCount(self, -1, nullptr, SuspendReason::kInternal); |
Sebastien Hertz | 1c8f4ff | 2017-04-14 15:05:12 +0200 | [diff] [blame] | 797 | DCHECK(updated); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 798 | } |
| 799 | |
| 800 | // Broadcast a notification to all suspended threads, some or all of |
| 801 | // which may choose to wake up. No need to wait for them. |
Jeff Hao | c5d824a | 2014-07-28 18:35:38 -0700 | [diff] [blame] | 802 | if (self != nullptr) { |
| 803 | VLOG(threads) << *self << " ResumeAll waking others"; |
| 804 | } else { |
| 805 | VLOG(threads) << "Thread[null] ResumeAll waking others"; |
| 806 | } |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 807 | Thread::resume_cond_->Broadcast(self); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 808 | } |
Jeff Hao | c5d824a | 2014-07-28 18:35:38 -0700 | [diff] [blame] | 809 | |
| 810 | if (self != nullptr) { |
| 811 | VLOG(threads) << *self << " ResumeAll complete"; |
| 812 | } else { |
| 813 | VLOG(threads) << "Thread[null] ResumeAll complete"; |
| 814 | } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 815 | } |
| 816 | |
Alex Light | 88fd720 | 2017-06-30 08:31:59 -0700 | [diff] [blame] | 817 | bool ThreadList::Resume(Thread* thread, SuspendReason reason) { |
Orion Hodson | 119733d | 2019-01-30 15:14:41 +0000 | [diff] [blame] | 818 | // This assumes there was an ATraceBegin when we suspended the thread. |
| 819 | ATraceEnd(); |
Mathieu Chartier | f0dc8b5 | 2014-12-17 10:13:30 -0800 | [diff] [blame] | 820 | |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 821 | Thread* self = Thread::Current(); |
| 822 | DCHECK_NE(thread, self); |
Alex Light | 46f9340 | 2017-06-29 11:59:50 -0700 | [diff] [blame] | 823 | VLOG(threads) << "Resume(" << reinterpret_cast<void*>(thread) << ") starting..." << reason; |
Elliott Hughes | 01158d7 | 2011-09-19 19:47:10 -0700 | [diff] [blame] | 824 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 825 | { |
| 826 | // To check Contains. |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 827 | MutexLock mu(self, *Locks::thread_list_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 828 | // To check IsSuspended. |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 829 | MutexLock mu2(self, *Locks::thread_suspend_count_lock_); |
Alex Light | 88fd720 | 2017-06-30 08:31:59 -0700 | [diff] [blame] | 830 | if (UNLIKELY(!thread->IsSuspended())) { |
| 831 | LOG(ERROR) << "Resume(" << reinterpret_cast<void*>(thread) |
| 832 | << ") thread not suspended"; |
| 833 | return false; |
| 834 | } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 835 | if (!Contains(thread)) { |
Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 836 | // We only expect threads within the thread-list to have been suspended otherwise we can't |
| 837 | // stop such threads from delete-ing themselves. |
| 838 | LOG(ERROR) << "Resume(" << reinterpret_cast<void*>(thread) |
| 839 | << ") thread not within thread list"; |
Alex Light | 88fd720 | 2017-06-30 08:31:59 -0700 | [diff] [blame] | 840 | return false; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 841 | } |
Alex Light | 88fd720 | 2017-06-30 08:31:59 -0700 | [diff] [blame] | 842 | if (UNLIKELY(!thread->ModifySuspendCount(self, -1, nullptr, reason))) { |
| 843 | LOG(ERROR) << "Resume(" << reinterpret_cast<void*>(thread) |
| 844 | << ") could not modify suspend count."; |
| 845 | return false; |
| 846 | } |
Elliott Hughes | 01158d7 | 2011-09-19 19:47:10 -0700 | [diff] [blame] | 847 | } |
| 848 | |
| 849 | { |
Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 850 | VLOG(threads) << "Resume(" << reinterpret_cast<void*>(thread) << ") waking others"; |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 851 | MutexLock mu(self, *Locks::thread_suspend_count_lock_); |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 852 | Thread::resume_cond_->Broadcast(self); |
Elliott Hughes | 01158d7 | 2011-09-19 19:47:10 -0700 | [diff] [blame] | 853 | } |
| 854 | |
Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 855 | VLOG(threads) << "Resume(" << reinterpret_cast<void*>(thread) << ") complete"; |
Alex Light | 88fd720 | 2017-06-30 08:31:59 -0700 | [diff] [blame] | 856 | return true; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 857 | } |
Elliott Hughes | 01158d7 | 2011-09-19 19:47:10 -0700 | [diff] [blame] | 858 | |
Mathieu Chartier | b56200b | 2015-10-29 10:41:51 -0700 | [diff] [blame] | 859 | static void ThreadSuspendByPeerWarning(Thread* self, |
| 860 | LogSeverity severity, |
| 861 | const char* message, |
Ian Rogers | c7dd295 | 2014-10-21 23:31:19 -0700 | [diff] [blame] | 862 | jobject peer) { |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 863 | JNIEnvExt* env = self->GetJniEnv(); |
| 864 | ScopedLocalRef<jstring> |
Mathieu Chartier | b56200b | 2015-10-29 10:41:51 -0700 | [diff] [blame] | 865 | scoped_name_string(env, static_cast<jstring>(env->GetObjectField( |
| 866 | peer, WellKnownClasses::java_lang_Thread_name))); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 867 | ScopedUtfChars scoped_name_chars(env, scoped_name_string.get()); |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 868 | if (scoped_name_chars.c_str() == nullptr) { |
Ian Rogers | c7dd295 | 2014-10-21 23:31:19 -0700 | [diff] [blame] | 869 | LOG(severity) << message << ": " << peer; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 870 | env->ExceptionClear(); |
| 871 | } else { |
Ian Rogers | c7dd295 | 2014-10-21 23:31:19 -0700 | [diff] [blame] | 872 | LOG(severity) << message << ": " << peer << ":" << scoped_name_chars.c_str(); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 873 | } |
| 874 | } |
| 875 | |
Mathieu Chartier | b56200b | 2015-10-29 10:41:51 -0700 | [diff] [blame] | 876 | Thread* ThreadList::SuspendThreadByPeer(jobject peer, |
Alex Light | 46f9340 | 2017-06-29 11:59:50 -0700 | [diff] [blame] | 877 | SuspendReason reason, |
Mathieu Chartier | b56200b | 2015-10-29 10:41:51 -0700 | [diff] [blame] | 878 | bool* timed_out) { |
Hans Boehm | 9d27fbc | 2021-05-21 09:23:38 -0700 | [diff] [blame^] | 879 | bool request_suspension = true; |
Mathieu Chartier | 3a958aa | 2015-02-04 12:52:34 -0800 | [diff] [blame] | 880 | const uint64_t start_time = NanoTime(); |
Hans Boehm | 9d27fbc | 2021-05-21 09:23:38 -0700 | [diff] [blame^] | 881 | int self_suspend_count = 0; |
Mathieu Chartier | 9914386 | 2015-02-03 14:26:46 -0800 | [diff] [blame] | 882 | useconds_t sleep_us = kThreadSuspendInitialSleepUs; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 883 | *timed_out = false; |
Mathieu Chartier | 9914386 | 2015-02-03 14:26:46 -0800 | [diff] [blame] | 884 | Thread* const self = Thread::Current(); |
Mathieu Chartier | 82a800d | 2014-12-15 15:59:49 -0800 | [diff] [blame] | 885 | Thread* suspended_thread = nullptr; |
Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 886 | VLOG(threads) << "SuspendThreadByPeer starting"; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 887 | while (true) { |
| 888 | Thread* thread; |
| 889 | { |
Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 890 | // Note: this will transition to runnable and potentially suspend. We ensure only one thread |
| 891 | // is requesting another suspend, to avoid deadlock, by requiring this function be called |
| 892 | // holding Locks::thread_list_suspend_thread_lock_. Its important this thread suspend rather |
| 893 | // than request thread suspension, to avoid potential cycles in threads requesting each other |
| 894 | // suspend. |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 895 | ScopedObjectAccess soa(self); |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 896 | MutexLock thread_list_mu(self, *Locks::thread_list_lock_); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 897 | thread = Thread::FromManagedThread(soa, peer); |
Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 898 | if (thread == nullptr) { |
Mathieu Chartier | 82a800d | 2014-12-15 15:59:49 -0800 | [diff] [blame] | 899 | if (suspended_thread != nullptr) { |
| 900 | MutexLock suspend_count_mu(self, *Locks::thread_suspend_count_lock_); |
| 901 | // If we incremented the suspend count but the thread reset its peer, we need to |
| 902 | // re-decrement it since it is shutting down and may deadlock the runtime in |
| 903 | // ThreadList::WaitForOtherNonDaemonThreadsToExit. |
Sebastien Hertz | 1c8f4ff | 2017-04-14 15:05:12 +0200 | [diff] [blame] | 904 | bool updated = suspended_thread->ModifySuspendCount(soa.Self(), |
| 905 | -1, |
| 906 | nullptr, |
Alex Light | 46f9340 | 2017-06-29 11:59:50 -0700 | [diff] [blame] | 907 | reason); |
Sebastien Hertz | 1c8f4ff | 2017-04-14 15:05:12 +0200 | [diff] [blame] | 908 | DCHECK(updated); |
Mathieu Chartier | 82a800d | 2014-12-15 15:59:49 -0800 | [diff] [blame] | 909 | } |
Andreas Gampe | 3fec9ac | 2016-09-13 10:47:28 -0700 | [diff] [blame] | 910 | ThreadSuspendByPeerWarning(self, |
| 911 | ::android::base::WARNING, |
| 912 | "No such thread for suspend", |
| 913 | peer); |
Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 914 | return nullptr; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 915 | } |
Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 916 | if (!Contains(thread)) { |
Mathieu Chartier | 82a800d | 2014-12-15 15:59:49 -0800 | [diff] [blame] | 917 | CHECK(suspended_thread == nullptr); |
Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 918 | VLOG(threads) << "SuspendThreadByPeer failed for unattached thread: " |
| 919 | << reinterpret_cast<void*>(thread); |
| 920 | return nullptr; |
| 921 | } |
| 922 | VLOG(threads) << "SuspendThreadByPeer found thread: " << *thread; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 923 | { |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 924 | MutexLock suspend_count_mu(self, *Locks::thread_suspend_count_lock_); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 925 | if (request_suspension) { |
Ian Rogers | 4ad5cd3 | 2014-11-11 23:08:07 -0800 | [diff] [blame] | 926 | if (self->GetSuspendCount() > 0) { |
| 927 | // We hold the suspend count lock but another thread is trying to suspend us. Its not |
| 928 | // safe to try to suspend another thread in case we get a cycle. Start the loop again |
| 929 | // which will allow this thread to be suspended. |
Hans Boehm | 9d27fbc | 2021-05-21 09:23:38 -0700 | [diff] [blame^] | 930 | ++self_suspend_count; |
Ian Rogers | 4ad5cd3 | 2014-11-11 23:08:07 -0800 | [diff] [blame] | 931 | continue; |
| 932 | } |
Mathieu Chartier | 82a800d | 2014-12-15 15:59:49 -0800 | [diff] [blame] | 933 | CHECK(suspended_thread == nullptr); |
| 934 | suspended_thread = thread; |
Alex Light | 46f9340 | 2017-06-29 11:59:50 -0700 | [diff] [blame] | 935 | bool updated = suspended_thread->ModifySuspendCount(self, +1, nullptr, reason); |
Sebastien Hertz | 1c8f4ff | 2017-04-14 15:05:12 +0200 | [diff] [blame] | 936 | DCHECK(updated); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 937 | request_suspension = false; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 938 | } else { |
| 939 | // If the caller isn't requesting suspension, a suspension should have already occurred. |
| 940 | CHECK_GT(thread->GetSuspendCount(), 0); |
| 941 | } |
| 942 | // IsSuspended on the current thread will fail as the current thread is changed into |
| 943 | // Runnable above. As the suspend count is now raised if this is the current thread |
| 944 | // it will self suspend on transition to Runnable, making it hard to work with. It's simpler |
| 945 | // to just explicitly handle the current thread in the callers to this code. |
| 946 | CHECK_NE(thread, self) << "Attempt to suspend the current thread for the debugger"; |
| 947 | // If thread is suspended (perhaps it was already not Runnable but didn't have a suspend |
| 948 | // count, or else we've waited and it has self suspended) or is the current thread, we're |
| 949 | // done. |
| 950 | if (thread->IsSuspended()) { |
Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 951 | VLOG(threads) << "SuspendThreadByPeer thread suspended: " << *thread; |
Orion Hodson | 119733d | 2019-01-30 15:14:41 +0000 | [diff] [blame] | 952 | if (ATraceEnabled()) { |
Mathieu Chartier | f0dc8b5 | 2014-12-17 10:13:30 -0800 | [diff] [blame] | 953 | std::string name; |
| 954 | thread->GetThreadName(name); |
Orion Hodson | 119733d | 2019-01-30 15:14:41 +0000 | [diff] [blame] | 955 | ATraceBegin(StringPrintf("SuspendThreadByPeer suspended %s for peer=%p", name.c_str(), |
Mathieu Chartier | f0dc8b5 | 2014-12-17 10:13:30 -0800 | [diff] [blame] | 956 | peer).c_str()); |
| 957 | } |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 958 | return thread; |
| 959 | } |
Mathieu Chartier | 9914386 | 2015-02-03 14:26:46 -0800 | [diff] [blame] | 960 | const uint64_t total_delay = NanoTime() - start_time; |
Mathieu Chartier | 3fceaf5 | 2017-01-22 13:33:40 -0800 | [diff] [blame] | 961 | if (total_delay >= thread_suspend_timeout_ns_) { |
Hans Boehm | 9d27fbc | 2021-05-21 09:23:38 -0700 | [diff] [blame^] | 962 | if (suspended_thread == nullptr) { |
| 963 | ThreadSuspendByPeerWarning(self, |
| 964 | ::android::base::FATAL, |
| 965 | "Failed to issue suspend request", |
| 966 | peer); |
| 967 | } else { |
Mathieu Chartier | 82a800d | 2014-12-15 15:59:49 -0800 | [diff] [blame] | 968 | CHECK_EQ(suspended_thread, thread); |
Hans Boehm | 9d27fbc | 2021-05-21 09:23:38 -0700 | [diff] [blame^] | 969 | LOG(WARNING) << "Suspended thread state_and_flags: " |
| 970 | << suspended_thread->StateAndFlagsAsHexString() |
| 971 | << ", self_suspend_count = " << self_suspend_count; |
| 972 | ThreadSuspendByPeerWarning(self, |
| 973 | ::android::base::FATAL, |
| 974 | "Thread suspension timed out", |
| 975 | peer); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 976 | } |
Hans Boehm | 9d27fbc | 2021-05-21 09:23:38 -0700 | [diff] [blame^] | 977 | UNREACHABLE(); |
Mathieu Chartier | 9914386 | 2015-02-03 14:26:46 -0800 | [diff] [blame] | 978 | } else if (sleep_us == 0 && |
| 979 | total_delay > static_cast<uint64_t>(kThreadSuspendMaxYieldUs) * 1000) { |
| 980 | // We have spun for kThreadSuspendMaxYieldUs time, switch to sleeps to prevent |
| 981 | // excessive CPU usage. |
| 982 | sleep_us = kThreadSuspendMaxYieldUs / 2; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 983 | } |
| 984 | } |
| 985 | // Release locks and come out of runnable state. |
| 986 | } |
Mathieu Chartier | 9914386 | 2015-02-03 14:26:46 -0800 | [diff] [blame] | 987 | VLOG(threads) << "SuspendThreadByPeer waiting to allow thread chance to suspend"; |
| 988 | ThreadSuspendSleep(sleep_us); |
| 989 | // This may stay at 0 if sleep_us == 0, but this is WAI since we want to avoid using usleep at |
| 990 | // all if possible. This shouldn't be an issue since time to suspend should always be small. |
| 991 | sleep_us = std::min(sleep_us * 2, kThreadSuspendMaxSleepUs); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 992 | } |
| 993 | } |
| 994 | |
Mathieu Chartier | b56200b | 2015-10-29 10:41:51 -0700 | [diff] [blame] | 995 | static void ThreadSuspendByThreadIdWarning(LogSeverity severity, |
| 996 | const char* message, |
Ian Rogers | c7dd295 | 2014-10-21 23:31:19 -0700 | [diff] [blame] | 997 | uint32_t thread_id) { |
| 998 | LOG(severity) << StringPrintf("%s: %d", message, thread_id); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 999 | } |
| 1000 | |
Mathieu Chartier | b56200b | 2015-10-29 10:41:51 -0700 | [diff] [blame] | 1001 | Thread* ThreadList::SuspendThreadByThreadId(uint32_t thread_id, |
Alex Light | 46f9340 | 2017-06-29 11:59:50 -0700 | [diff] [blame] | 1002 | SuspendReason reason, |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1003 | bool* timed_out) { |
Mathieu Chartier | 3a958aa | 2015-02-04 12:52:34 -0800 | [diff] [blame] | 1004 | const uint64_t start_time = NanoTime(); |
Mathieu Chartier | 9914386 | 2015-02-03 14:26:46 -0800 | [diff] [blame] | 1005 | useconds_t sleep_us = kThreadSuspendInitialSleepUs; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1006 | *timed_out = false; |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 1007 | Thread* suspended_thread = nullptr; |
Mathieu Chartier | 9914386 | 2015-02-03 14:26:46 -0800 | [diff] [blame] | 1008 | Thread* const self = Thread::Current(); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1009 | CHECK_NE(thread_id, kInvalidThreadId); |
Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 1010 | VLOG(threads) << "SuspendThreadByThreadId starting"; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1011 | while (true) { |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1012 | { |
Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 1013 | // Note: this will transition to runnable and potentially suspend. We ensure only one thread |
| 1014 | // is requesting another suspend, to avoid deadlock, by requiring this function be called |
| 1015 | // holding Locks::thread_list_suspend_thread_lock_. Its important this thread suspend rather |
| 1016 | // than request thread suspension, to avoid potential cycles in threads requesting each other |
| 1017 | // suspend. |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1018 | ScopedObjectAccess soa(self); |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 1019 | MutexLock thread_list_mu(self, *Locks::thread_list_lock_); |
Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 1020 | Thread* thread = nullptr; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1021 | for (const auto& it : list_) { |
| 1022 | if (it->GetThreadId() == thread_id) { |
| 1023 | thread = it; |
| 1024 | break; |
| 1025 | } |
| 1026 | } |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 1027 | if (thread == nullptr) { |
| 1028 | CHECK(suspended_thread == nullptr) << "Suspended thread " << suspended_thread |
| 1029 | << " no longer in thread list"; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1030 | // There's a race in inflating a lock and the owner giving up ownership and then dying. |
Andreas Gampe | 3fec9ac | 2016-09-13 10:47:28 -0700 | [diff] [blame] | 1031 | ThreadSuspendByThreadIdWarning(::android::base::WARNING, |
| 1032 | "No such thread id for suspend", |
| 1033 | thread_id); |
Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 1034 | return nullptr; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1035 | } |
Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 1036 | VLOG(threads) << "SuspendThreadByThreadId found thread: " << *thread; |
| 1037 | DCHECK(Contains(thread)); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1038 | { |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 1039 | MutexLock suspend_count_mu(self, *Locks::thread_suspend_count_lock_); |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 1040 | if (suspended_thread == nullptr) { |
Ian Rogers | 4ad5cd3 | 2014-11-11 23:08:07 -0800 | [diff] [blame] | 1041 | if (self->GetSuspendCount() > 0) { |
| 1042 | // We hold the suspend count lock but another thread is trying to suspend us. Its not |
| 1043 | // safe to try to suspend another thread in case we get a cycle. Start the loop again |
| 1044 | // which will allow this thread to be suspended. |
| 1045 | continue; |
| 1046 | } |
Alex Light | 46f9340 | 2017-06-29 11:59:50 -0700 | [diff] [blame] | 1047 | bool updated = thread->ModifySuspendCount(self, +1, nullptr, reason); |
Sebastien Hertz | 1c8f4ff | 2017-04-14 15:05:12 +0200 | [diff] [blame] | 1048 | DCHECK(updated); |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 1049 | suspended_thread = thread; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1050 | } else { |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 1051 | CHECK_EQ(suspended_thread, thread); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1052 | // If the caller isn't requesting suspension, a suspension should have already occurred. |
| 1053 | CHECK_GT(thread->GetSuspendCount(), 0); |
| 1054 | } |
| 1055 | // IsSuspended on the current thread will fail as the current thread is changed into |
| 1056 | // Runnable above. As the suspend count is now raised if this is the current thread |
| 1057 | // it will self suspend on transition to Runnable, making it hard to work with. It's simpler |
| 1058 | // to just explicitly handle the current thread in the callers to this code. |
| 1059 | CHECK_NE(thread, self) << "Attempt to suspend the current thread for the debugger"; |
| 1060 | // If thread is suspended (perhaps it was already not Runnable but didn't have a suspend |
| 1061 | // count, or else we've waited and it has self suspended) or is the current thread, we're |
| 1062 | // done. |
| 1063 | if (thread->IsSuspended()) { |
Orion Hodson | 119733d | 2019-01-30 15:14:41 +0000 | [diff] [blame] | 1064 | if (ATraceEnabled()) { |
Mathieu Chartier | f0dc8b5 | 2014-12-17 10:13:30 -0800 | [diff] [blame] | 1065 | std::string name; |
| 1066 | thread->GetThreadName(name); |
Orion Hodson | 119733d | 2019-01-30 15:14:41 +0000 | [diff] [blame] | 1067 | ATraceBegin(StringPrintf("SuspendThreadByThreadId suspended %s id=%d", |
Mathieu Chartier | f0dc8b5 | 2014-12-17 10:13:30 -0800 | [diff] [blame] | 1068 | name.c_str(), thread_id).c_str()); |
| 1069 | } |
Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 1070 | VLOG(threads) << "SuspendThreadByThreadId thread suspended: " << *thread; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1071 | return thread; |
| 1072 | } |
Mathieu Chartier | 9914386 | 2015-02-03 14:26:46 -0800 | [diff] [blame] | 1073 | const uint64_t total_delay = NanoTime() - start_time; |
Mathieu Chartier | 3fceaf5 | 2017-01-22 13:33:40 -0800 | [diff] [blame] | 1074 | if (total_delay >= thread_suspend_timeout_ns_) { |
Andreas Gampe | 3fec9ac | 2016-09-13 10:47:28 -0700 | [diff] [blame] | 1075 | ThreadSuspendByThreadIdWarning(::android::base::WARNING, |
| 1076 | "Thread suspension timed out", |
| 1077 | thread_id); |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 1078 | if (suspended_thread != nullptr) { |
Alex Light | 46f9340 | 2017-06-29 11:59:50 -0700 | [diff] [blame] | 1079 | bool updated = thread->ModifySuspendCount(soa.Self(), -1, nullptr, reason); |
Sebastien Hertz | 1c8f4ff | 2017-04-14 15:05:12 +0200 | [diff] [blame] | 1080 | DCHECK(updated); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1081 | } |
| 1082 | *timed_out = true; |
Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 1083 | return nullptr; |
Mathieu Chartier | 9914386 | 2015-02-03 14:26:46 -0800 | [diff] [blame] | 1084 | } else if (sleep_us == 0 && |
| 1085 | total_delay > static_cast<uint64_t>(kThreadSuspendMaxYieldUs) * 1000) { |
| 1086 | // We have spun for kThreadSuspendMaxYieldUs time, switch to sleeps to prevent |
| 1087 | // excessive CPU usage. |
| 1088 | sleep_us = kThreadSuspendMaxYieldUs / 2; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1089 | } |
| 1090 | } |
| 1091 | // Release locks and come out of runnable state. |
| 1092 | } |
Mathieu Chartier | 9914386 | 2015-02-03 14:26:46 -0800 | [diff] [blame] | 1093 | VLOG(threads) << "SuspendThreadByThreadId waiting to allow thread chance to suspend"; |
| 1094 | ThreadSuspendSleep(sleep_us); |
| 1095 | sleep_us = std::min(sleep_us * 2, kThreadSuspendMaxSleepUs); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1096 | } |
| 1097 | } |
| 1098 | |
Mathieu Chartier | 61b3cd4 | 2016-04-18 11:43:29 -0700 | [diff] [blame] | 1099 | Thread* ThreadList::FindThreadByThreadId(uint32_t thread_id) { |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1100 | for (const auto& thread : list_) { |
Mathieu Chartier | 61b3cd4 | 2016-04-18 11:43:29 -0700 | [diff] [blame] | 1101 | if (thread->GetThreadId() == thread_id) { |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1102 | return thread; |
| 1103 | } |
| 1104 | } |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 1105 | return nullptr; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1106 | } |
| 1107 | |
wangguibo | 0d29072 | 2021-04-24 11:27:06 +0800 | [diff] [blame] | 1108 | Thread* ThreadList::FindThreadByTid(int tid) { |
| 1109 | for (const auto& thread : list_) { |
| 1110 | if (thread->GetTid() == tid) { |
| 1111 | return thread; |
| 1112 | } |
| 1113 | } |
| 1114 | return nullptr; |
| 1115 | } |
| 1116 | |
Hans Boehm | dc77ca3 | 2020-01-31 16:29:35 -0800 | [diff] [blame] | 1117 | void ThreadList::WaitForOtherNonDaemonThreadsToExit(bool check_no_birth) { |
Mathieu Chartier | 32ce2ad | 2016-03-04 14:58:03 -0800 | [diff] [blame] | 1118 | ScopedTrace trace(__PRETTY_FUNCTION__); |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 1119 | Thread* self = Thread::Current(); |
| 1120 | Locks::mutator_lock_->AssertNotHeld(self); |
Mathieu Chartier | 91e5669 | 2015-03-03 13:51:04 -0800 | [diff] [blame] | 1121 | while (true) { |
Hans Boehm | dc77ca3 | 2020-01-31 16:29:35 -0800 | [diff] [blame] | 1122 | Locks::runtime_shutdown_lock_->Lock(self); |
| 1123 | if (check_no_birth) { |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 1124 | // No more threads can be born after we start to shutdown. |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1125 | CHECK(Runtime::Current()->IsShuttingDownLocked()); |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 1126 | CHECK_EQ(Runtime::Current()->NumberOfThreadsBeingBorn(), 0U); |
Hans Boehm | dc77ca3 | 2020-01-31 16:29:35 -0800 | [diff] [blame] | 1127 | } else { |
| 1128 | if (Runtime::Current()->NumberOfThreadsBeingBorn() != 0U) { |
| 1129 | // Awkward. Shutdown_cond_ is private, but the only live thread may not be registered yet. |
| 1130 | // Fortunately, this is used mostly for testing, and not performance-critical. |
| 1131 | Locks::runtime_shutdown_lock_->Unlock(self); |
| 1132 | usleep(1000); |
| 1133 | continue; |
| 1134 | } |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 1135 | } |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 1136 | MutexLock mu(self, *Locks::thread_list_lock_); |
Hans Boehm | dc77ca3 | 2020-01-31 16:29:35 -0800 | [diff] [blame] | 1137 | Locks::runtime_shutdown_lock_->Unlock(self); |
Mathieu Chartier | 91e5669 | 2015-03-03 13:51:04 -0800 | [diff] [blame] | 1138 | // Also wait for any threads that are unregistering to finish. This is required so that no |
| 1139 | // threads access the thread list after it is deleted. TODO: This may not work for user daemon |
| 1140 | // threads since they could unregister at the wrong time. |
| 1141 | bool done = unregistering_count_ == 0; |
| 1142 | if (done) { |
| 1143 | for (const auto& thread : list_) { |
| 1144 | if (thread != self && !thread->IsDaemon()) { |
| 1145 | done = false; |
| 1146 | break; |
| 1147 | } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1148 | } |
| 1149 | } |
Mathieu Chartier | 91e5669 | 2015-03-03 13:51:04 -0800 | [diff] [blame] | 1150 | if (done) { |
| 1151 | break; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1152 | } |
Mathieu Chartier | 91e5669 | 2015-03-03 13:51:04 -0800 | [diff] [blame] | 1153 | // Wait for another thread to exit before re-checking. |
| 1154 | Locks::thread_exit_cond_->Wait(self); |
| 1155 | } |
Elliott Hughes | 038a806 | 2011-09-18 14:12:41 -0700 | [diff] [blame] | 1156 | } |
| 1157 | |
Mathieu Chartier | 4d87df6 | 2016-01-07 15:14:19 -0800 | [diff] [blame] | 1158 | void ThreadList::SuspendAllDaemonThreadsForShutdown() { |
Mathieu Chartier | 32ce2ad | 2016-03-04 14:58:03 -0800 | [diff] [blame] | 1159 | ScopedTrace trace(__PRETTY_FUNCTION__); |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 1160 | Thread* self = Thread::Current(); |
Mathieu Chartier | 62597d1 | 2016-01-11 10:19:06 -0800 | [diff] [blame] | 1161 | size_t daemons_left = 0; |
Nicolas Geoffray | aa45daa | 2016-06-20 15:58:32 +0100 | [diff] [blame] | 1162 | { |
| 1163 | // Tell all the daemons it's time to suspend. |
| 1164 | MutexLock mu(self, *Locks::thread_list_lock_); |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 1165 | MutexLock mu2(self, *Locks::thread_suspend_count_lock_); |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 1166 | for (const auto& thread : list_) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1167 | // This is only run after all non-daemon threads have exited, so the remainder should all be |
| 1168 | // daemons. |
Ian Rogers | 7e76286 | 2012-10-22 15:45:08 -0700 | [diff] [blame] | 1169 | CHECK(thread->IsDaemon()) << *thread; |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 1170 | if (thread != self) { |
Alex Light | 46f9340 | 2017-06-29 11:59:50 -0700 | [diff] [blame] | 1171 | bool updated = thread->ModifySuspendCount(self, +1, nullptr, SuspendReason::kInternal); |
Sebastien Hertz | 1c8f4ff | 2017-04-14 15:05:12 +0200 | [diff] [blame] | 1172 | DCHECK(updated); |
Mathieu Chartier | 62597d1 | 2016-01-11 10:19:06 -0800 | [diff] [blame] | 1173 | ++daemons_left; |
Elliott Hughes | e52e49b | 2012-04-02 16:05:44 -0700 | [diff] [blame] | 1174 | } |
Mathieu Chartier | 4d87df6 | 2016-01-07 15:14:19 -0800 | [diff] [blame] | 1175 | // We are shutting down the runtime, set the JNI functions of all the JNIEnvs to be |
| 1176 | // the sleep forever one. |
| 1177 | thread->GetJniEnv()->SetFunctionsToRuntimeShutdownFunctions(); |
Elliott Hughes | 038a806 | 2011-09-18 14:12:41 -0700 | [diff] [blame] | 1178 | } |
| 1179 | } |
Hans Boehm | 65c18a2 | 2020-01-03 23:37:13 +0000 | [diff] [blame] | 1180 | if (daemons_left == 0) { |
| 1181 | // No threads left; safe to shut down. |
| 1182 | return; |
Mathieu Chartier | 62597d1 | 2016-01-11 10:19:06 -0800 | [diff] [blame] | 1183 | } |
Hans Boehm | 65c18a2 | 2020-01-03 23:37:13 +0000 | [diff] [blame] | 1184 | // There is not a clean way to shut down if we have daemons left. We have no mechanism for |
| 1185 | // killing them and reclaiming thread stacks. We also have no mechanism for waiting until they |
| 1186 | // have truly finished touching the memory we are about to deallocate. We do the best we can with |
| 1187 | // timeouts. |
| 1188 | // |
| 1189 | // If we have any daemons left, wait until they are (a) suspended and (b) they are not stuck |
| 1190 | // in a place where they are about to access runtime state and are not in a runnable state. |
| 1191 | // We attempt to do the latter by just waiting long enough for things to |
| 1192 | // quiesce. Examples: Monitor code or waking up from a condition variable. |
| 1193 | // |
| 1194 | // Give the threads a chance to suspend, complaining if they're slow. (a) |
Elliott Hughes | 038a806 | 2011-09-18 14:12:41 -0700 | [diff] [blame] | 1195 | bool have_complained = false; |
Mathieu Chartier | ba098ba | 2016-01-07 09:31:33 -0800 | [diff] [blame] | 1196 | static constexpr size_t kTimeoutMicroseconds = 2000 * 1000; |
| 1197 | static constexpr size_t kSleepMicroseconds = 1000; |
Hans Boehm | 28aaf24 | 2020-04-17 17:46:48 -0700 | [diff] [blame] | 1198 | bool all_suspended = false; |
| 1199 | for (size_t i = 0; !all_suspended && i < kTimeoutMicroseconds / kSleepMicroseconds; ++i) { |
| 1200 | bool found_running = false; |
Nicolas Geoffray | aa45daa | 2016-06-20 15:58:32 +0100 | [diff] [blame] | 1201 | { |
| 1202 | MutexLock mu(self, *Locks::thread_list_lock_); |
| 1203 | for (const auto& thread : list_) { |
| 1204 | if (thread != self && thread->GetState() == kRunnable) { |
| 1205 | if (!have_complained) { |
| 1206 | LOG(WARNING) << "daemon thread not yet suspended: " << *thread; |
| 1207 | have_complained = true; |
| 1208 | } |
Hans Boehm | 28aaf24 | 2020-04-17 17:46:48 -0700 | [diff] [blame] | 1209 | found_running = true; |
Elliott Hughes | 038a806 | 2011-09-18 14:12:41 -0700 | [diff] [blame] | 1210 | } |
Elliott Hughes | 038a806 | 2011-09-18 14:12:41 -0700 | [diff] [blame] | 1211 | } |
| 1212 | } |
Hans Boehm | 28aaf24 | 2020-04-17 17:46:48 -0700 | [diff] [blame] | 1213 | if (found_running) { |
| 1214 | // Sleep briefly before checking again. Max total sleep time is kTimeoutMicroseconds. |
| 1215 | usleep(kSleepMicroseconds); |
| 1216 | } else { |
| 1217 | all_suspended = true; |
| 1218 | } |
| 1219 | } |
| 1220 | if (!all_suspended) { |
| 1221 | // We can get here if a daemon thread executed a fastnative native call, so that it |
| 1222 | // remained in runnable state, and then made a JNI call after we called |
| 1223 | // SetFunctionsToRuntimeShutdownFunctions(), causing it to permanently stay in a harmless |
| 1224 | // but runnable state. See b/147804269 . |
| 1225 | LOG(WARNING) << "timed out suspending all daemon threads"; |
| 1226 | } |
| 1227 | // Assume all threads are either suspended or somehow wedged. |
| 1228 | // Wait again for all the now "suspended" threads to actually quiesce. (b) |
Hans Boehm | 6127ace | 2020-04-21 20:38:14 -0700 | [diff] [blame] | 1229 | static constexpr size_t kDaemonSleepTime = 400'000; |
Hans Boehm | 28aaf24 | 2020-04-17 17:46:48 -0700 | [diff] [blame] | 1230 | usleep(kDaemonSleepTime); |
| 1231 | std::list<Thread*> list_copy; |
| 1232 | { |
| 1233 | MutexLock mu(self, *Locks::thread_list_lock_); |
| 1234 | // Half-way through the wait, set the "runtime deleted" flag, causing any newly awoken |
| 1235 | // threads to immediately go back to sleep without touching memory. This prevents us from |
| 1236 | // touching deallocated memory, but it also prevents mutexes from getting released. Thus we |
| 1237 | // only do this once we're reasonably sure that no system mutexes are still held. |
| 1238 | for (const auto& thread : list_) { |
| 1239 | DCHECK(thread == self || !all_suspended || thread->GetState() != kRunnable); |
| 1240 | // In the !all_suspended case, the target is probably sleeping. |
| 1241 | thread->GetJniEnv()->SetRuntimeDeleted(); |
| 1242 | // Possibly contended Mutex acquisitions are unsafe after this. |
| 1243 | // Releasing thread_list_lock_ is OK, since it can't block. |
| 1244 | } |
| 1245 | } |
| 1246 | // Finally wait for any threads woken before we set the "runtime deleted" flags to finish |
| 1247 | // touching memory. |
| 1248 | usleep(kDaemonSleepTime); |
Hans Boehm | ff5ce16 | 2020-01-17 18:06:41 -0800 | [diff] [blame] | 1249 | #if defined(__has_feature) |
| 1250 | #if __has_feature(address_sanitizer) || __has_feature(hwaddress_sanitizer) |
Hans Boehm | 28aaf24 | 2020-04-17 17:46:48 -0700 | [diff] [blame] | 1251 | // Sleep a bit longer with -fsanitize=address, since everything is slower. |
| 1252 | usleep(2 * kDaemonSleepTime); |
Hans Boehm | ff5ce16 | 2020-01-17 18:06:41 -0800 | [diff] [blame] | 1253 | #endif |
| 1254 | #endif |
Hans Boehm | 28aaf24 | 2020-04-17 17:46:48 -0700 | [diff] [blame] | 1255 | // At this point no threads should be touching our data structures anymore. |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1256 | } |
Mathieu Chartier | fbc3108 | 2016-01-24 11:59:56 -0800 | [diff] [blame] | 1257 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1258 | void ThreadList::Register(Thread* self) { |
| 1259 | DCHECK_EQ(self, Thread::Current()); |
Andreas Gampe | c4bed16 | 2017-05-01 13:46:24 -0700 | [diff] [blame] | 1260 | CHECK(!shut_down_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1261 | |
| 1262 | if (VLOG_IS_ON(threads)) { |
| 1263 | std::ostringstream oss; |
| 1264 | self->ShortDump(oss); // We don't hold the mutator_lock_ yet and so cannot call Dump. |
Ian Rogers | 5a9ba01 | 2014-05-19 13:28:52 -0700 | [diff] [blame] | 1265 | LOG(INFO) << "ThreadList::Register() " << *self << "\n" << oss.str(); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1266 | } |
| 1267 | |
| 1268 | // Atomically add self to the thread list and make its thread_suspend_count_ reflect ongoing |
| 1269 | // SuspendAll requests. |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 1270 | MutexLock mu(self, *Locks::thread_list_lock_); |
| 1271 | MutexLock mu2(self, *Locks::thread_suspend_count_lock_); |
Ian Rogers | 2966e13 | 2014-04-02 08:34:36 -0700 | [diff] [blame] | 1272 | // Modify suspend count in increments of 1 to maintain invariants in ModifySuspendCount. While |
| 1273 | // this isn't particularly efficient the suspend counts are most commonly 0 or 1. |
Alex Light | fc58809 | 2020-01-23 15:39:08 -0800 | [diff] [blame] | 1274 | for (int delta = suspend_all_count_; delta > 0; delta--) { |
Alex Light | 46f9340 | 2017-06-29 11:59:50 -0700 | [diff] [blame] | 1275 | bool updated = self->ModifySuspendCount(self, +1, nullptr, SuspendReason::kInternal); |
Sebastien Hertz | 1c8f4ff | 2017-04-14 15:05:12 +0200 | [diff] [blame] | 1276 | DCHECK(updated); |
Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 1277 | } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1278 | CHECK(!Contains(self)); |
| 1279 | list_.push_back(self); |
Hiroshi Yamauchi | 0b71357 | 2015-06-16 18:29:23 -0700 | [diff] [blame] | 1280 | if (kUseReadBarrier) { |
Mathieu Chartier | 3768ade | 2017-05-02 14:04:39 -0700 | [diff] [blame] | 1281 | gc::collector::ConcurrentCopying* const cc = |
| 1282 | Runtime::Current()->GetHeap()->ConcurrentCopyingCollector(); |
Hiroshi Yamauchi | 0037082 | 2015-08-18 14:47:25 -0700 | [diff] [blame] | 1283 | // Initialize according to the state of the CC collector. |
Mathieu Chartier | 3768ade | 2017-05-02 14:04:39 -0700 | [diff] [blame] | 1284 | self->SetIsGcMarkingAndUpdateEntrypoints(cc->IsMarking()); |
| 1285 | if (cc->IsUsingReadBarrierEntrypoints()) { |
| 1286 | self->SetReadBarrierEntrypoints(); |
| 1287 | } |
| 1288 | self->SetWeakRefAccessEnabled(cc->IsWeakRefAccessEnabled()); |
Hiroshi Yamauchi | 0b71357 | 2015-06-16 18:29:23 -0700 | [diff] [blame] | 1289 | } |
David Srbecky | 28f6cff | 2018-10-16 15:07:28 +0100 | [diff] [blame] | 1290 | self->NotifyInTheadList(); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1291 | } |
| 1292 | |
| 1293 | void ThreadList::Unregister(Thread* self) { |
| 1294 | DCHECK_EQ(self, Thread::Current()); |
Ian Rogers | 68d8b42 | 2014-07-17 11:09:10 -0700 | [diff] [blame] | 1295 | CHECK_NE(self->GetState(), kRunnable); |
| 1296 | Locks::mutator_lock_->AssertNotHeld(self); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1297 | |
| 1298 | VLOG(threads) << "ThreadList::Unregister() " << *self; |
| 1299 | |
Mathieu Chartier | 91e5669 | 2015-03-03 13:51:04 -0800 | [diff] [blame] | 1300 | { |
| 1301 | MutexLock mu(self, *Locks::thread_list_lock_); |
| 1302 | ++unregistering_count_; |
| 1303 | } |
| 1304 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1305 | // Any time-consuming destruction, plus anything that can call back into managed code or |
Mathieu Chartier | 91e5669 | 2015-03-03 13:51:04 -0800 | [diff] [blame] | 1306 | // suspend and so on, must happen at this point, and not in ~Thread. The self->Destroy is what |
| 1307 | // causes the threads to join. It is important to do this after incrementing unregistering_count_ |
| 1308 | // since we want the runtime to wait for the daemon threads to exit before deleting the thread |
| 1309 | // list. |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1310 | self->Destroy(); |
| 1311 | |
Jeff Hao | e094b87 | 2014-10-14 13:12:01 -0700 | [diff] [blame] | 1312 | // If tracing, remember thread id and name before thread exits. |
| 1313 | Trace::StoreExitingThreadInfo(self); |
| 1314 | |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 1315 | uint32_t thin_lock_id = self->GetThreadId(); |
Mathieu Chartier | 91e5669 | 2015-03-03 13:51:04 -0800 | [diff] [blame] | 1316 | while (true) { |
Ian Rogers | cfaa455 | 2012-11-26 21:00:08 -0800 | [diff] [blame] | 1317 | // Remove and delete the Thread* while holding the thread_list_lock_ and |
| 1318 | // thread_suspend_count_lock_ so that the unregistering thread cannot be suspended. |
Ian Rogers | 0878d65 | 2013-04-18 17:38:35 -0700 | [diff] [blame] | 1319 | // Note: deliberately not using MutexLock that could hold a stale self pointer. |
Juju Sung | 3fef44a | 2019-01-07 18:18:16 +0800 | [diff] [blame] | 1320 | { |
| 1321 | MutexLock mu(self, *Locks::thread_list_lock_); |
| 1322 | if (!Contains(self)) { |
| 1323 | std::string thread_name; |
| 1324 | self->GetThreadName(thread_name); |
| 1325 | std::ostringstream os; |
| 1326 | DumpNativeStack(os, GetTid(), nullptr, " native: ", nullptr); |
| 1327 | LOG(ERROR) << "Request to unregister unattached thread " << thread_name << "\n" << os.str(); |
Mathieu Chartier | 91e5669 | 2015-03-03 13:51:04 -0800 | [diff] [blame] | 1328 | break; |
Juju Sung | 3fef44a | 2019-01-07 18:18:16 +0800 | [diff] [blame] | 1329 | } else { |
| 1330 | MutexLock mu2(self, *Locks::thread_suspend_count_lock_); |
| 1331 | if (!self->IsSuspended()) { |
| 1332 | list_.remove(self); |
| 1333 | break; |
| 1334 | } |
Ian Rogers | a2af5c7 | 2014-09-15 15:17:07 -0700 | [diff] [blame] | 1335 | } |
Ian Rogers | 68d8b42 | 2014-07-17 11:09:10 -0700 | [diff] [blame] | 1336 | } |
Juju Sung | 3fef44a | 2019-01-07 18:18:16 +0800 | [diff] [blame] | 1337 | // In the case where we are not suspended yet, sleep to leave other threads time to execute. |
| 1338 | // This is important if there are realtime threads. b/111277984 |
| 1339 | usleep(1); |
Mathieu Chartier | 91e5669 | 2015-03-03 13:51:04 -0800 | [diff] [blame] | 1340 | // We failed to remove the thread due to a suspend request, loop and try again. |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1341 | } |
Mathieu Chartier | 91e5669 | 2015-03-03 13:51:04 -0800 | [diff] [blame] | 1342 | delete self; |
| 1343 | |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 1344 | // Release the thread ID after the thread is finished and deleted to avoid cases where we can |
| 1345 | // temporarily have multiple threads with the same thread id. When this occurs, it causes |
| 1346 | // problems in FindThreadByThreadId / SuspendThreadByThreadId. |
| 1347 | ReleaseThreadId(nullptr, thin_lock_id); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1348 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1349 | // Clear the TLS data, so that the underlying native thread is recognizably detached. |
| 1350 | // (It may wish to reattach later.) |
Andreas Gampe | a47a6e8 | 2019-07-24 09:46:16 -0700 | [diff] [blame] | 1351 | #ifdef __BIONIC__ |
Andreas Gampe | 4382f1e | 2015-08-05 01:08:53 +0000 | [diff] [blame] | 1352 | __get_tls()[TLS_SLOT_ART_THREAD_SELF] = nullptr; |
| 1353 | #else |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 1354 | CHECK_PTHREAD_CALL(pthread_setspecific, (Thread::pthread_key_self_, nullptr), "detach self"); |
Andreas Gampe | 8237200 | 2019-07-24 15:42:09 -0700 | [diff] [blame] | 1355 | Thread::self_tls_ = nullptr; |
Andreas Gampe | 4382f1e | 2015-08-05 01:08:53 +0000 | [diff] [blame] | 1356 | #endif |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1357 | |
| 1358 | // Signal that a thread just detached. |
Mathieu Chartier | 91e5669 | 2015-03-03 13:51:04 -0800 | [diff] [blame] | 1359 | MutexLock mu(nullptr, *Locks::thread_list_lock_); |
| 1360 | --unregistering_count_; |
| 1361 | Locks::thread_exit_cond_->Broadcast(nullptr); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1362 | } |
| 1363 | |
| 1364 | void ThreadList::ForEach(void (*callback)(Thread*, void*), void* context) { |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 1365 | for (const auto& thread : list_) { |
| 1366 | callback(thread, context); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1367 | } |
| 1368 | } |
| 1369 | |
Mathieu Chartier | f8a86b9 | 2016-06-14 17:08:47 -0700 | [diff] [blame] | 1370 | void ThreadList::VisitRootsForSuspendedThreads(RootVisitor* visitor) { |
| 1371 | Thread* const self = Thread::Current(); |
| 1372 | std::vector<Thread*> threads_to_visit; |
| 1373 | |
| 1374 | // Tell threads to suspend and copy them into list. |
| 1375 | { |
| 1376 | MutexLock mu(self, *Locks::thread_list_lock_); |
| 1377 | MutexLock mu2(self, *Locks::thread_suspend_count_lock_); |
| 1378 | for (Thread* thread : list_) { |
Alex Light | 46f9340 | 2017-06-29 11:59:50 -0700 | [diff] [blame] | 1379 | bool suspended = thread->ModifySuspendCount(self, +1, nullptr, SuspendReason::kInternal); |
Sebastien Hertz | 1c8f4ff | 2017-04-14 15:05:12 +0200 | [diff] [blame] | 1380 | DCHECK(suspended); |
Mathieu Chartier | f8a86b9 | 2016-06-14 17:08:47 -0700 | [diff] [blame] | 1381 | if (thread == self || thread->IsSuspended()) { |
| 1382 | threads_to_visit.push_back(thread); |
| 1383 | } else { |
Alex Light | 46f9340 | 2017-06-29 11:59:50 -0700 | [diff] [blame] | 1384 | bool resumed = thread->ModifySuspendCount(self, -1, nullptr, SuspendReason::kInternal); |
Sebastien Hertz | 1c8f4ff | 2017-04-14 15:05:12 +0200 | [diff] [blame] | 1385 | DCHECK(resumed); |
Mathieu Chartier | f8a86b9 | 2016-06-14 17:08:47 -0700 | [diff] [blame] | 1386 | } |
| 1387 | } |
| 1388 | } |
| 1389 | |
| 1390 | // Visit roots without holding thread_list_lock_ and thread_suspend_count_lock_ to prevent lock |
| 1391 | // order violations. |
| 1392 | for (Thread* thread : threads_to_visit) { |
Andreas Gampe | 513061a | 2017-06-01 09:17:34 -0700 | [diff] [blame] | 1393 | thread->VisitRoots(visitor, kVisitRootFlagAllRoots); |
Mathieu Chartier | f8a86b9 | 2016-06-14 17:08:47 -0700 | [diff] [blame] | 1394 | } |
| 1395 | |
| 1396 | // Restore suspend counts. |
| 1397 | { |
| 1398 | MutexLock mu2(self, *Locks::thread_suspend_count_lock_); |
| 1399 | for (Thread* thread : threads_to_visit) { |
Alex Light | 46f9340 | 2017-06-29 11:59:50 -0700 | [diff] [blame] | 1400 | bool updated = thread->ModifySuspendCount(self, -1, nullptr, SuspendReason::kInternal); |
Sebastien Hertz | 1c8f4ff | 2017-04-14 15:05:12 +0200 | [diff] [blame] | 1401 | DCHECK(updated); |
Mathieu Chartier | f8a86b9 | 2016-06-14 17:08:47 -0700 | [diff] [blame] | 1402 | } |
| 1403 | } |
| 1404 | } |
| 1405 | |
Andreas Gampe | 585da95 | 2016-12-02 14:52:29 -0800 | [diff] [blame] | 1406 | void ThreadList::VisitRoots(RootVisitor* visitor, VisitRootFlags flags) const { |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 1407 | MutexLock mu(Thread::Current(), *Locks::thread_list_lock_); |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 1408 | for (const auto& thread : list_) { |
Andreas Gampe | 585da95 | 2016-12-02 14:52:29 -0800 | [diff] [blame] | 1409 | thread->VisitRoots(visitor, flags); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1410 | } |
Elliott Hughes | 038a806 | 2011-09-18 14:12:41 -0700 | [diff] [blame] | 1411 | } |
| 1412 | |
Nicolas Geoffray | e3f775b | 2019-12-04 14:41:52 +0000 | [diff] [blame] | 1413 | void ThreadList::SweepInterpreterCaches(IsMarkedVisitor* visitor) const { |
| 1414 | MutexLock mu(Thread::Current(), *Locks::thread_list_lock_); |
| 1415 | for (const auto& thread : list_) { |
| 1416 | thread->SweepInterpreterCache(visitor); |
| 1417 | } |
| 1418 | } |
| 1419 | |
Alex Light | 55eccdf | 2019-10-07 13:51:13 +0000 | [diff] [blame] | 1420 | void ThreadList::VisitReflectiveTargets(ReflectiveValueVisitor *visitor) const { |
| 1421 | MutexLock mu(Thread::Current(), *Locks::thread_list_lock_); |
| 1422 | for (const auto& thread : list_) { |
| 1423 | thread->VisitReflectiveTargets(visitor); |
| 1424 | } |
| 1425 | } |
| 1426 | |
Ian Rogers | cfaa455 | 2012-11-26 21:00:08 -0800 | [diff] [blame] | 1427 | uint32_t ThreadList::AllocThreadId(Thread* self) { |
Chao-ying Fu | 9e36931 | 2014-05-21 11:20:52 -0700 | [diff] [blame] | 1428 | MutexLock mu(self, *Locks::allocated_thread_ids_lock_); |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 1429 | for (size_t i = 0; i < allocated_ids_.size(); ++i) { |
| 1430 | if (!allocated_ids_[i]) { |
| 1431 | allocated_ids_.set(i); |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 1432 | return i + 1; // Zero is reserved to mean "invalid". |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 1433 | } |
| 1434 | } |
| 1435 | LOG(FATAL) << "Out of internal thread ids"; |
Elliott Hughes | c1896c9 | 2018-11-29 11:33:18 -0800 | [diff] [blame] | 1436 | UNREACHABLE(); |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 1437 | } |
| 1438 | |
Ian Rogers | cfaa455 | 2012-11-26 21:00:08 -0800 | [diff] [blame] | 1439 | void ThreadList::ReleaseThreadId(Thread* self, uint32_t id) { |
Chao-ying Fu | 9e36931 | 2014-05-21 11:20:52 -0700 | [diff] [blame] | 1440 | MutexLock mu(self, *Locks::allocated_thread_ids_lock_); |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 1441 | --id; // Zero is reserved to mean "invalid". |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 1442 | DCHECK(allocated_ids_[id]) << id; |
| 1443 | allocated_ids_.reset(id); |
| 1444 | } |
| 1445 | |
Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 1446 | ScopedSuspendAll::ScopedSuspendAll(const char* cause, bool long_suspend) { |
| 1447 | Runtime::Current()->GetThreadList()->SuspendAll(cause, long_suspend); |
| 1448 | } |
| 1449 | |
| 1450 | ScopedSuspendAll::~ScopedSuspendAll() { |
| 1451 | Runtime::Current()->GetThreadList()->ResumeAll(); |
| 1452 | } |
| 1453 | |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 1454 | } // namespace art |