Elliott Hughes | e27955c | 2011-08-26 15:21:24 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2008 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #include "signal_catcher.h" |
| 18 | |
Elliott Hughes | 94ce37a | 2011-10-18 15:07:48 -0700 | [diff] [blame] | 19 | #include <fcntl.h> |
Elliott Hughes | e27955c | 2011-08-26 15:21:24 -0700 | [diff] [blame] | 20 | #include <pthread.h> |
| 21 | #include <signal.h> |
| 22 | #include <stdlib.h> |
Elliott Hughes | 94ce37a | 2011-10-18 15:07:48 -0700 | [diff] [blame] | 23 | #include <sys/stat.h> |
Elliott Hughes | e27955c | 2011-08-26 15:21:24 -0700 | [diff] [blame] | 24 | #include <sys/time.h> |
Elliott Hughes | 94ce37a | 2011-10-18 15:07:48 -0700 | [diff] [blame] | 25 | #include <sys/types.h> |
Elliott Hughes | e27955c | 2011-08-26 15:21:24 -0700 | [diff] [blame] | 26 | #include <unistd.h> |
| 27 | |
Brian Carlstrom | 24a3c2e | 2011-10-17 18:07:52 -0700 | [diff] [blame] | 28 | #include "class_linker.h" |
Elliott Hughes | 94ce37a | 2011-10-18 15:07:48 -0700 | [diff] [blame] | 29 | #include "file.h" |
Elliott Hughes | e27955c | 2011-08-26 15:21:24 -0700 | [diff] [blame] | 30 | #include "heap.h" |
Elliott Hughes | 94ce37a | 2011-10-18 15:07:48 -0700 | [diff] [blame] | 31 | #include "os.h" |
Brian Carlstrom | 1f87008 | 2011-08-23 16:02:11 -0700 | [diff] [blame] | 32 | #include "runtime.h" |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 33 | #include "scoped_heap_lock.h" |
Elliott Hughes | e27955c | 2011-08-26 15:21:24 -0700 | [diff] [blame] | 34 | #include "thread.h" |
Elliott Hughes | 8d768a9 | 2011-09-14 16:35:25 -0700 | [diff] [blame] | 35 | #include "thread_list.h" |
Elliott Hughes | e27955c | 2011-08-26 15:21:24 -0700 | [diff] [blame] | 36 | #include "utils.h" |
| 37 | |
| 38 | namespace art { |
| 39 | |
Elliott Hughes | 94ce37a | 2011-10-18 15:07:48 -0700 | [diff] [blame] | 40 | SignalCatcher::SignalCatcher(const std::string& stack_trace_file) |
| 41 | : stack_trace_file_(stack_trace_file), |
| 42 | lock_("SignalCatcher lock"), |
| 43 | cond_("SignalCatcher::cond_"), |
| 44 | thread_(NULL) { |
Elliott Hughes | 5fe594f | 2011-09-08 12:33:17 -0700 | [diff] [blame] | 45 | SetHaltFlag(false); |
| 46 | |
Elliott Hughes | e27955c | 2011-08-26 15:21:24 -0700 | [diff] [blame] | 47 | // Create a raw pthread; its start routine will attach to the runtime. |
Elliott Hughes | 8d768a9 | 2011-09-14 16:35:25 -0700 | [diff] [blame] | 48 | CHECK_PTHREAD_CALL(pthread_create, (&pthread_, NULL, &Run, this), "signal catcher thread"); |
| 49 | |
Elliott Hughes | 8d768a9 | 2011-09-14 16:35:25 -0700 | [diff] [blame] | 50 | MutexLock mu(lock_); |
| 51 | while (thread_ == NULL) { |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 52 | cond_.Wait(lock_); |
Elliott Hughes | e27955c | 2011-08-26 15:21:24 -0700 | [diff] [blame] | 53 | } |
| 54 | } |
| 55 | |
| 56 | SignalCatcher::~SignalCatcher() { |
| 57 | // Since we know the thread is just sitting around waiting for signals |
| 58 | // to arrive, send it one. |
Elliott Hughes | 5fe594f | 2011-09-08 12:33:17 -0700 | [diff] [blame] | 59 | SetHaltFlag(true); |
Elliott Hughes | 8d768a9 | 2011-09-14 16:35:25 -0700 | [diff] [blame] | 60 | CHECK_PTHREAD_CALL(pthread_kill, (pthread_, SIGQUIT), "signal catcher shutdown"); |
| 61 | CHECK_PTHREAD_CALL(pthread_join, (pthread_, NULL), "signal catcher shutdown"); |
Elliott Hughes | e27955c | 2011-08-26 15:21:24 -0700 | [diff] [blame] | 62 | } |
| 63 | |
Elliott Hughes | 5fe594f | 2011-09-08 12:33:17 -0700 | [diff] [blame] | 64 | void SignalCatcher::SetHaltFlag(bool new_value) { |
| 65 | MutexLock mu(lock_); |
| 66 | halt_ = new_value; |
| 67 | } |
| 68 | |
| 69 | bool SignalCatcher::ShouldHalt() { |
| 70 | MutexLock mu(lock_); |
| 71 | return halt_; |
| 72 | } |
| 73 | |
Elliott Hughes | 94ce37a | 2011-10-18 15:07:48 -0700 | [diff] [blame] | 74 | void SignalCatcher::Output(const std::string& s) { |
| 75 | if (stack_trace_file_.empty()) { |
| 76 | LOG(INFO) << s; |
| 77 | return; |
| 78 | } |
| 79 | |
| 80 | ScopedThreadStateChange tsc(Thread::Current(), Thread::kVmWait); |
| 81 | int fd = open(stack_trace_file_.c_str(), O_APPEND | O_CREAT | O_WRONLY, 0666); |
| 82 | if (fd == -1) { |
| 83 | PLOG(ERROR) << "Unable to open stack trace file '" << stack_trace_file_ << "'"; |
| 84 | return; |
| 85 | } |
| 86 | UniquePtr<File> file(OS::FileFromFd(stack_trace_file_.c_str(), fd)); |
| 87 | if (!file->WriteFully(s.data(), s.size())) { |
| 88 | PLOG(ERROR) << "Failed to write stack traces to '" << stack_trace_file_ << "'"; |
| 89 | } else { |
| 90 | LOG(INFO) << "Wrote stack traces to '" << stack_trace_file_ << "'"; |
| 91 | } |
| 92 | close(fd); |
| 93 | } |
| 94 | |
Elliott Hughes | e27955c | 2011-08-26 15:21:24 -0700 | [diff] [blame] | 95 | void SignalCatcher::HandleSigQuit() { |
Elliott Hughes | accd83d | 2011-10-17 14:25:58 -0700 | [diff] [blame] | 96 | Runtime* runtime = Runtime::Current(); |
| 97 | ThreadList* thread_list = runtime->GetThreadList(); |
Elliott Hughes | accd83d | 2011-10-17 14:25:58 -0700 | [diff] [blame] | 98 | |
Elliott Hughes | 831afe4 | 2011-12-15 17:27:34 -0800 | [diff] [blame] | 99 | // We take the heap lock before suspending all threads so we don't end up in a situation where |
| 100 | // one of the suspended threads suspended via the implicit FullSuspendCheck on the slow path of |
| 101 | // Heap::Lock, which is the only case where a thread can be suspended while holding the heap lock. |
| 102 | // (We need the heap lock when we dump the thread list. We could probably fix this by duplicating |
| 103 | // more state from java.lang.Thread in struct Thread.) |
| 104 | ScopedHeapLock heap_lock; |
Elliott Hughes | accd83d | 2011-10-17 14:25:58 -0700 | [diff] [blame] | 105 | thread_list->SuspendAll(); |
Elliott Hughes | e27955c | 2011-08-26 15:21:24 -0700 | [diff] [blame] | 106 | |
Elliott Hughes | 3b6baaa | 2011-10-14 19:13:56 -0700 | [diff] [blame] | 107 | std::ostringstream os; |
Elliott Hughes | d92bec4 | 2011-09-02 17:04:36 -0700 | [diff] [blame] | 108 | os << "\n" |
Elliott Hughes | d92bec4 | 2011-09-02 17:04:36 -0700 | [diff] [blame] | 109 | << "----- pid " << getpid() << " at " << GetIsoDate() << " -----\n"; |
Elliott Hughes | e27955c | 2011-08-26 15:21:24 -0700 | [diff] [blame] | 110 | |
Elliott Hughes | d92bec4 | 2011-09-02 17:04:36 -0700 | [diff] [blame] | 111 | std::string cmdline; |
| 112 | if (ReadFileToString("/proc/self/cmdline", &cmdline)) { |
| 113 | std::replace(cmdline.begin(), cmdline.end(), '\0', ' '); |
| 114 | os << "Cmd line: " << cmdline << "\n"; |
| 115 | } |
Elliott Hughes | e27955c | 2011-08-26 15:21:24 -0700 | [diff] [blame] | 116 | |
Elliott Hughes | accd83d | 2011-10-17 14:25:58 -0700 | [diff] [blame] | 117 | runtime->Dump(os); |
Elliott Hughes | e27955c | 2011-08-26 15:21:24 -0700 | [diff] [blame] | 118 | |
Brian Carlstrom | 6b4ef02 | 2011-10-23 14:59:04 -0700 | [diff] [blame] | 119 | if (false) { |
| 120 | std::string maps; |
| 121 | if (ReadFileToString("/proc/self/maps", &maps)) { |
| 122 | os << "/proc/self/maps:\n" << maps; |
| 123 | } |
Elliott Hughes | d92bec4 | 2011-09-02 17:04:36 -0700 | [diff] [blame] | 124 | } |
| 125 | |
Elliott Hughes | 94ce37a | 2011-10-18 15:07:48 -0700 | [diff] [blame] | 126 | os << "----- end " << getpid() << " -----\n"; |
Elliott Hughes | e27955c | 2011-08-26 15:21:24 -0700 | [diff] [blame] | 127 | |
Elliott Hughes | accd83d | 2011-10-17 14:25:58 -0700 | [diff] [blame] | 128 | thread_list->ResumeAll(); |
Elliott Hughes | e27955c | 2011-08-26 15:21:24 -0700 | [diff] [blame] | 129 | |
Elliott Hughes | 94ce37a | 2011-10-18 15:07:48 -0700 | [diff] [blame] | 130 | Output(os.str()); |
Elliott Hughes | e27955c | 2011-08-26 15:21:24 -0700 | [diff] [blame] | 131 | } |
| 132 | |
| 133 | void SignalCatcher::HandleSigUsr1() { |
| 134 | LOG(INFO) << "SIGUSR1 forcing GC (no HPROF)"; |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 135 | Runtime::Current()->GetHeap()->CollectGarbage(false); |
Elliott Hughes | e27955c | 2011-08-26 15:21:24 -0700 | [diff] [blame] | 136 | } |
| 137 | |
Elliott Hughes | c2f8006 | 2011-11-07 11:57:51 -0800 | [diff] [blame] | 138 | int SignalCatcher::WaitForSignal(sigset_t& mask) { |
| 139 | ScopedThreadStateChange tsc(thread_, Thread::kVmWait); |
Elliott Hughes | ad7c2a3 | 2011-08-31 11:58:10 -0700 | [diff] [blame] | 140 | |
| 141 | // Signals for sigwait() must be blocked but not ignored. We |
| 142 | // block signals like SIGQUIT for all threads, so the condition |
| 143 | // is met. When the signal hits, we wake up, without any signal |
| 144 | // handlers being invoked. |
| 145 | |
| 146 | // Sleep in sigwait() until a signal arrives. gdb causes EINTR failures. |
| 147 | int signal_number; |
| 148 | int rc = TEMP_FAILURE_RETRY(sigwait(&mask, &signal_number)); |
| 149 | if (rc != 0) { |
| 150 | PLOG(FATAL) << "sigwait failed"; |
| 151 | } |
| 152 | |
Elliott Hughes | c2f8006 | 2011-11-07 11:57:51 -0800 | [diff] [blame] | 153 | if (!ShouldHalt()) { |
| 154 | // Let the user know we got the signal, just in case the system's too screwed for us to |
| 155 | // actually do what they want us to do... |
| 156 | LOG(INFO) << *thread_ << ": reacting to signal " << signal_number; |
| 157 | |
Elliott Hughes | 21a5bf2 | 2011-12-07 14:35:20 -0800 | [diff] [blame] | 158 | // If anyone's holding locks (which might prevent us from getting back into state Runnable), say so... |
| 159 | Runtime::Current()->DumpLockHolders(LOG(INFO)); |
Elliott Hughes | c2f8006 | 2011-11-07 11:57:51 -0800 | [diff] [blame] | 160 | } |
| 161 | |
Elliott Hughes | ad7c2a3 | 2011-08-31 11:58:10 -0700 | [diff] [blame] | 162 | return signal_number; |
| 163 | } |
| 164 | |
Elliott Hughes | 5fe594f | 2011-09-08 12:33:17 -0700 | [diff] [blame] | 165 | void* SignalCatcher::Run(void* arg) { |
| 166 | SignalCatcher* signal_catcher = reinterpret_cast<SignalCatcher*>(arg); |
| 167 | CHECK(signal_catcher != NULL); |
| 168 | |
Elliott Hughes | 8d768a9 | 2011-09-14 16:35:25 -0700 | [diff] [blame] | 169 | Runtime* runtime = Runtime::Current(); |
Elliott Hughes | 462c944 | 2012-03-23 18:47:50 -0700 | [diff] [blame] | 170 | runtime->AttachCurrentThread("Signal Catcher", true, Thread::GetSystemThreadGroup()); |
Brian Carlstrom | f28bc5b | 2011-10-26 01:15:03 -0700 | [diff] [blame] | 171 | Thread::Current()->SetState(Thread::kRunnable); |
Elliott Hughes | 8d768a9 | 2011-09-14 16:35:25 -0700 | [diff] [blame] | 172 | |
| 173 | { |
| 174 | MutexLock mu(signal_catcher->lock_); |
| 175 | signal_catcher->thread_ = Thread::Current(); |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 176 | signal_catcher->cond_.Broadcast(); |
Elliott Hughes | 8d768a9 | 2011-09-14 16:35:25 -0700 | [diff] [blame] | 177 | } |
Elliott Hughes | e27955c | 2011-08-26 15:21:24 -0700 | [diff] [blame] | 178 | |
Elliott Hughes | e27955c | 2011-08-26 15:21:24 -0700 | [diff] [blame] | 179 | // Set up mask with signals we want to handle. |
| 180 | sigset_t mask; |
| 181 | sigemptyset(&mask); |
| 182 | sigaddset(&mask, SIGQUIT); |
| 183 | sigaddset(&mask, SIGUSR1); |
| 184 | |
| 185 | while (true) { |
Elliott Hughes | c2f8006 | 2011-11-07 11:57:51 -0800 | [diff] [blame] | 186 | int signal_number = signal_catcher->WaitForSignal(mask); |
Elliott Hughes | 5fe594f | 2011-09-08 12:33:17 -0700 | [diff] [blame] | 187 | if (signal_catcher->ShouldHalt()) { |
Elliott Hughes | 8d768a9 | 2011-09-14 16:35:25 -0700 | [diff] [blame] | 188 | runtime->DetachCurrentThread(); |
Elliott Hughes | e27955c | 2011-08-26 15:21:24 -0700 | [diff] [blame] | 189 | return NULL; |
| 190 | } |
| 191 | |
Elliott Hughes | e27955c | 2011-08-26 15:21:24 -0700 | [diff] [blame] | 192 | switch (signal_number) { |
| 193 | case SIGQUIT: |
Elliott Hughes | 94ce37a | 2011-10-18 15:07:48 -0700 | [diff] [blame] | 194 | signal_catcher->HandleSigQuit(); |
Elliott Hughes | e27955c | 2011-08-26 15:21:24 -0700 | [diff] [blame] | 195 | break; |
| 196 | case SIGUSR1: |
Elliott Hughes | 94ce37a | 2011-10-18 15:07:48 -0700 | [diff] [blame] | 197 | signal_catcher->HandleSigUsr1(); |
Elliott Hughes | e27955c | 2011-08-26 15:21:24 -0700 | [diff] [blame] | 198 | break; |
| 199 | default: |
| 200 | LOG(ERROR) << "Unexpected signal %d" << signal_number; |
| 201 | break; |
| 202 | } |
| 203 | } |
| 204 | } |
| 205 | |
| 206 | } // namespace art |