blob: d590ad5cc625920ab95cab03037c2d13f9486246 [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
Ian Rogersc7dd2952014-10-21 23:31:19 -070028#include <sstream>
29
Josh Gao691839c2017-10-03 13:23:23 -070030#include <android-base/stringprintf.h>
31
32#if defined(ART_TARGET_ANDROID)
33#include <tombstoned/tombstoned.h>
34#endif
35
Ian Rogersd582fa42014-11-05 23:46:43 -080036#include "arch/instruction_set.h"
David Sehr891a50e2017-10-27 17:01:07 -070037#include "base/file_utils.h"
Andreas Gampe39b378c2017-12-07 15:44:13 -080038#include "base/logging.h" // For GetCmdLine.
David Sehrc431b9d2018-03-02 12:01:51 -080039#include "base/os.h"
Vladimir Marko80afd022015-05-19 18:08:00 +010040#include "base/time_utils.h"
Elliott Hughes76160052012-12-12 16:31:20 -080041#include "base/unix_file/fd_file.h"
David Sehrc431b9d2018-03-02 12:01:51 -080042#include "base/utils.h"
Brian Carlstrom24a3c2e2011-10-17 18:07:52 -070043#include "class_linker.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070044#include "gc/heap.h"
Mathieu Chartier07ea07e2017-04-05 17:23:54 -070045#include "jit/profile_saver.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070046#include "runtime.h"
Mathieu Chartier0795f232016-09-27 18:43:30 -070047#include "scoped_thread_state_change-inl.h"
Elliott Hughes457005c2012-04-16 13:54:25 -070048#include "signal_set.h"
Elliott Hughese27955c2011-08-26 15:21:24 -070049#include "thread.h"
Elliott Hughes8d768a92011-09-14 16:35:25 -070050#include "thread_list.h"
Elliott Hughese27955c2011-08-26 15:21:24 -070051
52namespace art {
53
Elliott Hughes0d39c122012-06-06 16:41:17 -070054static void DumpCmdLine(std::ostream& os) {
55#if defined(__linux__)
56 // Show the original command line, and the current command line too if it's changed.
57 // On Android, /proc/self/cmdline will have been rewritten to something like "system_server".
Jeff Brownb4fffc72014-09-10 18:41:18 -070058 // Note: The string "Cmd line:" is chosen to match the format used by debuggerd.
Elliott Hughes0d39c122012-06-06 16:41:17 -070059 std::string current_cmd_line;
60 if (ReadFileToString("/proc/self/cmdline", &current_cmd_line)) {
Jeff Brownb4fffc72014-09-10 18:41:18 -070061 current_cmd_line.resize(current_cmd_line.find_last_not_of('\0') + 1); // trim trailing '\0's
Elliott Hughes0d39c122012-06-06 16:41:17 -070062 std::replace(current_cmd_line.begin(), current_cmd_line.end(), '\0', ' ');
63
Jeff Brownb4fffc72014-09-10 18:41:18 -070064 os << "Cmd line: " << current_cmd_line << "\n";
Elliott Hughes0d39c122012-06-06 16:41:17 -070065 const char* stashed_cmd_line = GetCmdLine();
Mathieu Chartier2cebb242015-04-21 16:50:40 -070066 if (stashed_cmd_line != nullptr && current_cmd_line != stashed_cmd_line
Jeff Brownb4fffc72014-09-10 18:41:18 -070067 && strcmp(stashed_cmd_line, "<unset>") != 0) {
68 os << "Original command line: " << stashed_cmd_line << "\n";
Elliott Hughes0d39c122012-06-06 16:41:17 -070069 }
Elliott Hughesae80b492012-04-24 10:43:17 -070070 }
Elliott Hughes0d39c122012-06-06 16:41:17 -070071#else
Jeff Brownb4fffc72014-09-10 18:41:18 -070072 os << "Cmd line: " << GetCmdLine() << "\n";
Elliott Hughesabbe07d2012-06-05 17:42:23 -070073#endif
Elliott Hughes0d39c122012-06-06 16:41:17 -070074}
Elliott Hughesae80b492012-04-24 10:43:17 -070075
Narayan Kamatheb710332017-05-10 11:48:46 +010076SignalCatcher::SignalCatcher(const std::string& stack_trace_file,
77 bool use_tombstoned_stack_trace_fd)
78 : stack_trace_file_(stack_trace_file),
79 use_tombstoned_stack_trace_fd_(use_tombstoned_stack_trace_fd),
Elliott Hughes94ce37a2011-10-18 15:07:48 -070080 lock_("SignalCatcher lock"),
Ian Rogersc604d732012-10-14 16:09:54 -070081 cond_("SignalCatcher::cond_", lock_),
Mathieu Chartier2cebb242015-04-21 16:50:40 -070082 thread_(nullptr) {
Narayan Kamatheb710332017-05-10 11:48:46 +010083#if !defined(ART_TARGET_ANDROID)
84 // We're not running on Android, so we can't communicate with tombstoned
85 // to ask for an open file.
86 CHECK(!use_tombstoned_stack_trace_fd_);
87#endif
88
Elliott Hughes5fe594f2011-09-08 12:33:17 -070089 SetHaltFlag(false);
90
Elliott Hughese27955c2011-08-26 15:21:24 -070091 // Create a raw pthread; its start routine will attach to the runtime.
Mathieu Chartier2cebb242015-04-21 16:50:40 -070092 CHECK_PTHREAD_CALL(pthread_create, (&pthread_, nullptr, &Run, this), "signal catcher thread");
Elliott Hughes8d768a92011-09-14 16:35:25 -070093
Ian Rogers81d425b2012-09-27 16:03:43 -070094 Thread* self = Thread::Current();
95 MutexLock mu(self, lock_);
Mathieu Chartier2cebb242015-04-21 16:50:40 -070096 while (thread_ == nullptr) {
Ian Rogersc604d732012-10-14 16:09:54 -070097 cond_.Wait(self);
Elliott Hughese27955c2011-08-26 15:21:24 -070098 }
99}
100
101SignalCatcher::~SignalCatcher() {
102 // Since we know the thread is just sitting around waiting for signals
103 // to arrive, send it one.
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700104 SetHaltFlag(true);
Elliott Hughes8d768a92011-09-14 16:35:25 -0700105 CHECK_PTHREAD_CALL(pthread_kill, (pthread_, SIGQUIT), "signal catcher shutdown");
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700106 CHECK_PTHREAD_CALL(pthread_join, (pthread_, nullptr), "signal catcher shutdown");
Elliott Hughese27955c2011-08-26 15:21:24 -0700107}
108
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700109void SignalCatcher::SetHaltFlag(bool new_value) {
Ian Rogers50b35e22012-10-04 10:09:15 -0700110 MutexLock mu(Thread::Current(), lock_);
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700111 halt_ = new_value;
112}
113
114bool SignalCatcher::ShouldHalt() {
Ian Rogers50b35e22012-10-04 10:09:15 -0700115 MutexLock mu(Thread::Current(), lock_);
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700116 return halt_;
117}
118
Narayan Kamatheb710332017-05-10 11:48:46 +0100119bool SignalCatcher::OpenStackTraceFile(android::base::unique_fd* tombstone_fd,
120 android::base::unique_fd* output_fd) {
121 if (use_tombstoned_stack_trace_fd_) {
122#if defined(ART_TARGET_ANDROID)
Narayan Kamathe0f02b72017-05-30 16:22:28 +0100123 return tombstoned_connect(getpid(), tombstone_fd, output_fd, kDebuggerdJavaBacktrace);
Narayan Kamatheb710332017-05-10 11:48:46 +0100124#else
125 UNUSED(tombstone_fd);
126 UNUSED(output_fd);
127#endif
Narayan Kamath84695ae2017-04-07 15:41:41 +0100128 }
129
Narayan Kamatheb710332017-05-10 11:48:46 +0100130 // The runtime is not configured to dump traces to a file, will LOG(INFO)
131 // instead.
132 if (stack_trace_file_.empty()) {
133 return false;
134 }
135
136 int fd = open(stack_trace_file_.c_str(), O_APPEND | O_CREAT | O_WRONLY, 0666);
137 if (fd == -1) {
138 PLOG(ERROR) << "Unable to open stack trace file '" << stack_trace_file_ << "'";
139 return false;
140 }
141
142 output_fd->reset(fd);
143 return true;
Narayan Kamath84695ae2017-04-07 15:41:41 +0100144}
145
Elliott Hughes94ce37a2011-10-18 15:07:48 -0700146void SignalCatcher::Output(const std::string& s) {
Narayan Kamatheb710332017-05-10 11:48:46 +0100147 android::base::unique_fd tombstone_fd;
148 android::base::unique_fd output_fd;
149 if (!OpenStackTraceFile(&tombstone_fd, &output_fd)) {
Elliott Hughes94ce37a2011-10-18 15:07:48 -0700150 LOG(INFO) << s;
151 return;
152 }
153
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700154 ScopedThreadStateChange tsc(Thread::Current(), kWaitingForSignalCatcherOutput);
Narayan Kamatheb710332017-05-10 11:48:46 +0100155
156 std::unique_ptr<File> file(new File(output_fd.release(), true /* check_usage */));
Andreas Gampe4303ba92014-11-06 01:00:46 -0800157 bool success = file->WriteFully(s.data(), s.size());
158 if (success) {
159 success = file->FlushCloseOrErase() == 0;
Elliott Hughes94ce37a2011-10-18 15:07:48 -0700160 } else {
Andreas Gampe4303ba92014-11-06 01:00:46 -0800161 file->Erase();
162 }
Narayan Kamatheb710332017-05-10 11:48:46 +0100163
164 const std::string output_path_msg = (use_tombstoned_stack_trace_fd_) ?
165 "[tombstoned]" : stack_trace_file_;
166
Andreas Gampe4303ba92014-11-06 01:00:46 -0800167 if (success) {
Narayan Kamatheb710332017-05-10 11:48:46 +0100168 LOG(INFO) << "Wrote stack traces to '" << output_path_msg << "'";
Andreas Gampe4303ba92014-11-06 01:00:46 -0800169 } else {
Narayan Kamatheb710332017-05-10 11:48:46 +0100170 PLOG(ERROR) << "Failed to write stack traces to '" << output_path_msg << "'";
Elliott Hughes94ce37a2011-10-18 15:07:48 -0700171 }
Narayan Kamatheb710332017-05-10 11:48:46 +0100172
173#if defined(ART_TARGET_ANDROID)
Narayan Kamath2cfd6122017-07-11 17:40:56 +0100174 if (use_tombstoned_stack_trace_fd_ && !tombstoned_notify_completion(tombstone_fd)) {
Josh Gaoff9e43f2017-10-16 14:10:08 -0700175 PLOG(WARNING) << "Unable to notify tombstoned of dump completion";
Narayan Kamatheb710332017-05-10 11:48:46 +0100176 }
177#endif
Elliott Hughes94ce37a2011-10-18 15:07:48 -0700178}
179
Elliott Hughese27955c2011-08-26 15:21:24 -0700180void SignalCatcher::HandleSigQuit() {
Elliott Hughesaccd83d2011-10-17 14:25:58 -0700181 Runtime* runtime = Runtime::Current();
Elliott Hughes3b6baaa2011-10-14 19:13:56 -0700182 std::ostringstream os;
Elliott Hughesd92bec42011-09-02 17:04:36 -0700183 os << "\n"
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700184 << "----- pid " << getpid() << " at " << GetIsoDate() << " -----\n";
Elliott Hughese27955c2011-08-26 15:21:24 -0700185
Elliott Hughes0d39c122012-06-06 16:41:17 -0700186 DumpCmdLine(os);
Elliott Hughesae80b492012-04-24 10:43:17 -0700187
Andreas Gampedd671252015-07-23 14:37:18 -0700188 // Note: The strings "Build fingerprint:" and "ABI:" are chosen to match the format used by
189 // debuggerd. This allows, for example, the stack tool to work.
190 std::string fingerprint = runtime->GetFingerprint();
191 os << "Build fingerprint: '" << (fingerprint.empty() ? "unknown" : fingerprint) << "'\n";
192 os << "ABI: '" << GetInstructionSetString(runtime->GetInstructionSet()) << "'\n";
Jeff Brownb4fffc72014-09-10 18:41:18 -0700193
Elliott Hughesae80b492012-04-24 10:43:17 -0700194 os << "Build type: " << (kIsDebugBuild ? "debug" : "optimized") << "\n";
Elliott Hughese27955c2011-08-26 15:21:24 -0700195
Elliott Hughesc967f782012-04-16 10:23:15 -0700196 runtime->DumpForSigQuit(os);
Elliott Hughese27955c2011-08-26 15:21:24 -0700197
Ian Rogerscf7f1912014-10-22 22:06:39 -0700198 if ((false)) {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700199 std::string maps;
200 if (ReadFileToString("/proc/self/maps", &maps)) {
201 os << "/proc/self/maps:\n" << maps;
202 }
Elliott Hughesd92bec42011-09-02 17:04:36 -0700203 }
Elliott Hughes94ce37a2011-10-18 15:07:48 -0700204 os << "----- end " << getpid() << " -----\n";
Elliott Hughes94ce37a2011-10-18 15:07:48 -0700205 Output(os.str());
Elliott Hughese27955c2011-08-26 15:21:24 -0700206}
207
208void SignalCatcher::HandleSigUsr1() {
Mathieu Chartier07ea07e2017-04-05 17:23:54 -0700209 LOG(INFO) << "SIGUSR1 forcing GC (no HPROF) and profile save";
Roland Levillainaf290312018-02-27 20:02:17 +0000210 Runtime::Current()->GetHeap()->CollectGarbage(/* clear_soft_references */ false);
Mathieu Chartier07ea07e2017-04-05 17:23:54 -0700211 ProfileSaver::ForceProcessProfiles();
Elliott Hughese27955c2011-08-26 15:21:24 -0700212}
213
Elliott Hughesf8349362012-06-18 15:00:06 -0700214int SignalCatcher::WaitForSignal(Thread* self, SignalSet& signals) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700215 ScopedThreadStateChange tsc(self, kWaitingInMainSignalCatcherLoop);
Elliott Hughesad7c2a32011-08-31 11:58:10 -0700216
217 // Signals for sigwait() must be blocked but not ignored. We
218 // block signals like SIGQUIT for all threads, so the condition
219 // is met. When the signal hits, we wake up, without any signal
220 // handlers being invoked.
Elliott Hughes457005c2012-04-16 13:54:25 -0700221 int signal_number = signals.Wait();
Elliott Hughesc2f80062011-11-07 11:57:51 -0800222 if (!ShouldHalt()) {
223 // Let the user know we got the signal, just in case the system's too screwed for us to
224 // actually do what they want us to do...
Elliott Hughesf8349362012-06-18 15:00:06 -0700225 LOG(INFO) << *self << ": reacting to signal " << signal_number;
Elliott Hughesc2f80062011-11-07 11:57:51 -0800226
Elliott Hughes21a5bf22011-12-07 14:35:20 -0800227 // If anyone's holding locks (which might prevent us from getting back into state Runnable), say so...
Andreas Gampe3fec9ac2016-09-13 10:47:28 -0700228 Runtime::Current()->DumpLockHolders(LOG_STREAM(INFO));
Elliott Hughesc2f80062011-11-07 11:57:51 -0800229 }
230
Elliott Hughesad7c2a32011-08-31 11:58:10 -0700231 return signal_number;
232}
233
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700234void* SignalCatcher::Run(void* arg) {
235 SignalCatcher* signal_catcher = reinterpret_cast<SignalCatcher*>(arg);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700236 CHECK(signal_catcher != nullptr);
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700237
Elliott Hughes8d768a92011-09-14 16:35:25 -0700238 Runtime* runtime = Runtime::Current();
Mathieu Chartier664bebf2012-11-12 16:54:11 -0800239 CHECK(runtime->AttachCurrentThread("Signal Catcher", true, runtime->GetSystemThreadGroup(),
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800240 !runtime->IsAotCompiler()));
Elliott Hughesf8349362012-06-18 15:00:06 -0700241
242 Thread* self = Thread::Current();
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700243 DCHECK_NE(self->GetState(), kRunnable);
Elliott Hughes8d768a92011-09-14 16:35:25 -0700244 {
Ian Rogers81d425b2012-09-27 16:03:43 -0700245 MutexLock mu(self, signal_catcher->lock_);
Elliott Hughesf8349362012-06-18 15:00:06 -0700246 signal_catcher->thread_ = self;
Ian Rogersc604d732012-10-14 16:09:54 -0700247 signal_catcher->cond_.Broadcast(self);
Elliott Hughes8d768a92011-09-14 16:35:25 -0700248 }
Elliott Hughese27955c2011-08-26 15:21:24 -0700249
Elliott Hughese27955c2011-08-26 15:21:24 -0700250 // Set up mask with signals we want to handle.
Elliott Hughes457005c2012-04-16 13:54:25 -0700251 SignalSet signals;
252 signals.Add(SIGQUIT);
253 signals.Add(SIGUSR1);
Elliott Hughese27955c2011-08-26 15:21:24 -0700254
255 while (true) {
Elliott Hughesf8349362012-06-18 15:00:06 -0700256 int signal_number = signal_catcher->WaitForSignal(self, signals);
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700257 if (signal_catcher->ShouldHalt()) {
Elliott Hughes8d768a92011-09-14 16:35:25 -0700258 runtime->DetachCurrentThread();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700259 return nullptr;
Elliott Hughese27955c2011-08-26 15:21:24 -0700260 }
261
Elliott Hughese27955c2011-08-26 15:21:24 -0700262 switch (signal_number) {
263 case SIGQUIT:
Elliott Hughes94ce37a2011-10-18 15:07:48 -0700264 signal_catcher->HandleSigQuit();
Elliott Hughese27955c2011-08-26 15:21:24 -0700265 break;
266 case SIGUSR1:
Elliott Hughes94ce37a2011-10-18 15:07:48 -0700267 signal_catcher->HandleSigUsr1();
Elliott Hughese27955c2011-08-26 15:21:24 -0700268 break;
269 default:
270 LOG(ERROR) << "Unexpected signal %d" << signal_number;
271 break;
272 }
273 }
274}
275
276} // namespace art