blob: b6f6a415e8e9435ff865f0cf5edc87d6235bfa03 [file] [log] [blame]
Elliott Hughese27955c2011-08-26 15:21:24 -07001/*
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 Hughes94ce37a2011-10-18 15:07:48 -070019#include <fcntl.h>
Elliott Hughese27955c2011-08-26 15:21:24 -070020#include <pthread.h>
21#include <signal.h>
22#include <stdlib.h>
Elliott Hughes94ce37a2011-10-18 15:07:48 -070023#include <sys/stat.h>
Elliott Hughese27955c2011-08-26 15:21:24 -070024#include <sys/time.h>
Elliott Hughes94ce37a2011-10-18 15:07:48 -070025#include <sys/types.h>
Elliott Hughese27955c2011-08-26 15:21:24 -070026#include <unistd.h>
27
Brian Carlstrom24a3c2e2011-10-17 18:07:52 -070028#include "class_linker.h"
Elliott Hughes94ce37a2011-10-18 15:07:48 -070029#include "file.h"
Elliott Hughese27955c2011-08-26 15:21:24 -070030#include "heap.h"
Elliott Hughes94ce37a2011-10-18 15:07:48 -070031#include "os.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070032#include "runtime.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070033#include "scoped_thread_state_change.h"
Elliott Hughes457005c2012-04-16 13:54:25 -070034#include "signal_set.h"
Elliott Hughese27955c2011-08-26 15:21:24 -070035#include "thread.h"
Elliott Hughes8d768a92011-09-14 16:35:25 -070036#include "thread_list.h"
Elliott Hughese27955c2011-08-26 15:21:24 -070037#include "utils.h"
38
39namespace art {
40
Elliott Hughes0d39c122012-06-06 16:41:17 -070041static void DumpCmdLine(std::ostream& os) {
42#if defined(__linux__)
43 // Show the original command line, and the current command line too if it's changed.
44 // On Android, /proc/self/cmdline will have been rewritten to something like "system_server".
45 std::string current_cmd_line;
46 if (ReadFileToString("/proc/self/cmdline", &current_cmd_line)) {
47 current_cmd_line.resize(current_cmd_line.size() - 1); // Lose the trailing '\0'.
48 std::replace(current_cmd_line.begin(), current_cmd_line.end(), '\0', ' ');
49
50 os << "Cmdline: " << current_cmd_line;
51 const char* stashed_cmd_line = GetCmdLine();
52 if (stashed_cmd_line != NULL && current_cmd_line != stashed_cmd_line) {
53 os << "Original command line: " << stashed_cmd_line;
54 }
Elliott Hughesae80b492012-04-24 10:43:17 -070055 }
Elliott Hughes0d39c122012-06-06 16:41:17 -070056 os << "\n";
57#else
58 os << "Cmdline: " << GetCmdLine() << "\n";
Elliott Hughesabbe07d2012-06-05 17:42:23 -070059#endif
Elliott Hughes0d39c122012-06-06 16:41:17 -070060}
Elliott Hughesae80b492012-04-24 10:43:17 -070061
Elliott Hughes94ce37a2011-10-18 15:07:48 -070062SignalCatcher::SignalCatcher(const std::string& stack_trace_file)
63 : stack_trace_file_(stack_trace_file),
64 lock_("SignalCatcher lock"),
65 cond_("SignalCatcher::cond_"),
66 thread_(NULL) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -070067 SetHaltFlag(false);
68
Elliott Hughese27955c2011-08-26 15:21:24 -070069 // Create a raw pthread; its start routine will attach to the runtime.
Elliott Hughes8d768a92011-09-14 16:35:25 -070070 CHECK_PTHREAD_CALL(pthread_create, (&pthread_, NULL, &Run, this), "signal catcher thread");
71
Ian Rogers81d425b2012-09-27 16:03:43 -070072 Thread* self = Thread::Current();
73 MutexLock mu(self, lock_);
Elliott Hughes8d768a92011-09-14 16:35:25 -070074 while (thread_ == NULL) {
Ian Rogers81d425b2012-09-27 16:03:43 -070075 cond_.Wait(self, lock_);
Elliott Hughese27955c2011-08-26 15:21:24 -070076 }
77}
78
79SignalCatcher::~SignalCatcher() {
80 // Since we know the thread is just sitting around waiting for signals
81 // to arrive, send it one.
Elliott Hughes5fe594f2011-09-08 12:33:17 -070082 SetHaltFlag(true);
Elliott Hughes8d768a92011-09-14 16:35:25 -070083 CHECK_PTHREAD_CALL(pthread_kill, (pthread_, SIGQUIT), "signal catcher shutdown");
84 CHECK_PTHREAD_CALL(pthread_join, (pthread_, NULL), "signal catcher shutdown");
Elliott Hughese27955c2011-08-26 15:21:24 -070085}
86
Elliott Hughes5fe594f2011-09-08 12:33:17 -070087void SignalCatcher::SetHaltFlag(bool new_value) {
Ian Rogers50b35e22012-10-04 10:09:15 -070088 MutexLock mu(Thread::Current(), lock_);
Elliott Hughes5fe594f2011-09-08 12:33:17 -070089 halt_ = new_value;
90}
91
92bool SignalCatcher::ShouldHalt() {
Ian Rogers50b35e22012-10-04 10:09:15 -070093 MutexLock mu(Thread::Current(), lock_);
Elliott Hughes5fe594f2011-09-08 12:33:17 -070094 return halt_;
95}
96
Elliott Hughes94ce37a2011-10-18 15:07:48 -070097void SignalCatcher::Output(const std::string& s) {
98 if (stack_trace_file_.empty()) {
99 LOG(INFO) << s;
100 return;
101 }
102
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700103 ScopedThreadStateChange tsc(Thread::Current(), kWaitingForSignalCatcherOutput);
Elliott Hughes94ce37a2011-10-18 15:07:48 -0700104 int fd = open(stack_trace_file_.c_str(), O_APPEND | O_CREAT | O_WRONLY, 0666);
105 if (fd == -1) {
106 PLOG(ERROR) << "Unable to open stack trace file '" << stack_trace_file_ << "'";
107 return;
108 }
109 UniquePtr<File> file(OS::FileFromFd(stack_trace_file_.c_str(), fd));
110 if (!file->WriteFully(s.data(), s.size())) {
111 PLOG(ERROR) << "Failed to write stack traces to '" << stack_trace_file_ << "'";
112 } else {
113 LOG(INFO) << "Wrote stack traces to '" << stack_trace_file_ << "'";
114 }
115 close(fd);
116}
117
Elliott Hughese27955c2011-08-26 15:21:24 -0700118void SignalCatcher::HandleSigQuit() {
Elliott Hughesaccd83d2011-10-17 14:25:58 -0700119 Runtime* runtime = Runtime::Current();
120 ThreadList* thread_list = runtime->GetThreadList();
Elliott Hughesaccd83d2011-10-17 14:25:58 -0700121
Ian Rogers120f1c72012-09-28 17:17:10 -0700122 // Grab exclusively the mutator lock, set state to Runnable without checking for a pending
123 // suspend request as we're going to suspend soon anyway. We set the state to Runnable to avoid
124 // giving away the mutator lock.
Elliott Hughesaccd83d2011-10-17 14:25:58 -0700125 thread_list->SuspendAll();
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700126 Thread* self = Thread::Current();
Ian Rogers81d425b2012-09-27 16:03:43 -0700127 Locks::mutator_lock_->AssertExclusiveHeld(self);
Ian Rogers120f1c72012-09-28 17:17:10 -0700128 const char* old_cause = self->StartAssertNoThreadSuspension("Handling sigquit");
129 ThreadState old_state = self->SetStateUnsafe(kRunnable);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700130
Elliott Hughes3b6baaa2011-10-14 19:13:56 -0700131 std::ostringstream os;
Elliott Hughesd92bec42011-09-02 17:04:36 -0700132 os << "\n"
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700133 << "----- pid " << getpid() << " at " << GetIsoDate() << " -----\n";
Elliott Hughese27955c2011-08-26 15:21:24 -0700134
Elliott Hughes0d39c122012-06-06 16:41:17 -0700135 DumpCmdLine(os);
Elliott Hughesae80b492012-04-24 10:43:17 -0700136
137 os << "Build type: " << (kIsDebugBuild ? "debug" : "optimized") << "\n";
Elliott Hughese27955c2011-08-26 15:21:24 -0700138
Elliott Hughesc967f782012-04-16 10:23:15 -0700139 runtime->DumpForSigQuit(os);
Elliott Hughese27955c2011-08-26 15:21:24 -0700140
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700141 if (false) {
142 std::string maps;
143 if (ReadFileToString("/proc/self/maps", &maps)) {
144 os << "/proc/self/maps:\n" << maps;
145 }
Elliott Hughesd92bec42011-09-02 17:04:36 -0700146 }
Elliott Hughes94ce37a2011-10-18 15:07:48 -0700147 os << "----- end " << getpid() << " -----\n";
Ian Rogers120f1c72012-09-28 17:17:10 -0700148
149 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
150 self->EndAssertNoThreadSuspension(old_cause);
Elliott Hughesaccd83d2011-10-17 14:25:58 -0700151 thread_list->ResumeAll();
Elliott Hughese27955c2011-08-26 15:21:24 -0700152
Elliott Hughes94ce37a2011-10-18 15:07:48 -0700153 Output(os.str());
Elliott Hughese27955c2011-08-26 15:21:24 -0700154}
155
156void SignalCatcher::HandleSigUsr1() {
157 LOG(INFO) << "SIGUSR1 forcing GC (no HPROF)";
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800158 Runtime::Current()->GetHeap()->CollectGarbage(false);
Elliott Hughese27955c2011-08-26 15:21:24 -0700159}
160
Elliott Hughesf8349362012-06-18 15:00:06 -0700161int SignalCatcher::WaitForSignal(Thread* self, SignalSet& signals) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700162 ScopedThreadStateChange tsc(self, kWaitingInMainSignalCatcherLoop);
Elliott Hughesad7c2a32011-08-31 11:58:10 -0700163
164 // Signals for sigwait() must be blocked but not ignored. We
165 // block signals like SIGQUIT for all threads, so the condition
166 // is met. When the signal hits, we wake up, without any signal
167 // handlers being invoked.
Elliott Hughes457005c2012-04-16 13:54:25 -0700168 int signal_number = signals.Wait();
Elliott Hughesc2f80062011-11-07 11:57:51 -0800169 if (!ShouldHalt()) {
170 // Let the user know we got the signal, just in case the system's too screwed for us to
171 // actually do what they want us to do...
Elliott Hughesf8349362012-06-18 15:00:06 -0700172 LOG(INFO) << *self << ": reacting to signal " << signal_number;
Elliott Hughesc2f80062011-11-07 11:57:51 -0800173
Elliott Hughes21a5bf22011-12-07 14:35:20 -0800174 // If anyone's holding locks (which might prevent us from getting back into state Runnable), say so...
175 Runtime::Current()->DumpLockHolders(LOG(INFO));
Elliott Hughesc2f80062011-11-07 11:57:51 -0800176 }
177
Elliott Hughesad7c2a32011-08-31 11:58:10 -0700178 return signal_number;
179}
180
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700181void* SignalCatcher::Run(void* arg) {
182 SignalCatcher* signal_catcher = reinterpret_cast<SignalCatcher*>(arg);
183 CHECK(signal_catcher != NULL);
184
Elliott Hughes8d768a92011-09-14 16:35:25 -0700185 Runtime* runtime = Runtime::Current();
Ian Rogers120f1c72012-09-28 17:17:10 -0700186 CHECK(runtime->AttachCurrentThread("Signal Catcher", true, runtime->GetSystemThreadGroup()));
Elliott Hughesf8349362012-06-18 15:00:06 -0700187
188 Thread* self = Thread::Current();
Elliott Hughes8d768a92011-09-14 16:35:25 -0700189
190 {
Ian Rogers81d425b2012-09-27 16:03:43 -0700191 MutexLock mu(self, signal_catcher->lock_);
Elliott Hughesf8349362012-06-18 15:00:06 -0700192 signal_catcher->thread_ = self;
Elliott Hughes5f791332011-09-15 17:45:30 -0700193 signal_catcher->cond_.Broadcast();
Elliott Hughes8d768a92011-09-14 16:35:25 -0700194 }
Elliott Hughese27955c2011-08-26 15:21:24 -0700195
Elliott Hughese27955c2011-08-26 15:21:24 -0700196 // Set up mask with signals we want to handle.
Elliott Hughes457005c2012-04-16 13:54:25 -0700197 SignalSet signals;
198 signals.Add(SIGQUIT);
199 signals.Add(SIGUSR1);
Elliott Hughese27955c2011-08-26 15:21:24 -0700200
201 while (true) {
Elliott Hughesf8349362012-06-18 15:00:06 -0700202 int signal_number = signal_catcher->WaitForSignal(self, signals);
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700203 if (signal_catcher->ShouldHalt()) {
Elliott Hughes8d768a92011-09-14 16:35:25 -0700204 runtime->DetachCurrentThread();
Elliott Hughese27955c2011-08-26 15:21:24 -0700205 return NULL;
206 }
207
Elliott Hughese27955c2011-08-26 15:21:24 -0700208 switch (signal_number) {
209 case SIGQUIT:
Elliott Hughes94ce37a2011-10-18 15:07:48 -0700210 signal_catcher->HandleSigQuit();
Elliott Hughese27955c2011-08-26 15:21:24 -0700211 break;
212 case SIGUSR1:
Elliott Hughes94ce37a2011-10-18 15:07:48 -0700213 signal_catcher->HandleSigUsr1();
Elliott Hughese27955c2011-08-26 15:21:24 -0700214 break;
215 default:
216 LOG(ERROR) << "Unexpected signal %d" << signal_number;
217 break;
218 }
219 }
220}
221
222} // namespace art