blob: 0cc5f69cf2c7c90fb3661e00ee8534ef07148815 [file] [log] [blame]
Christopher Ferris20303f82014-01-10 16:33:16 -08001/*
Josh Gaocbe70cb2016-10-18 18:17:52 -07002 * Copyright 2016, The Android Open Source Project
Christopher Ferris20303f82014-01-10 16:33:16 -08003 *
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 */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080016
Josh Gaocbe70cb2016-10-18 18:17:52 -070017#include <err.h>
Josh Gao7c89f9e2016-01-13 17:57:14 -080018#include <stdio.h>
Josh Gaocbe70cb2016-10-18 18:17:52 -070019#include <stdlib.h>
20#include <string.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080021
Josh Gaocbe70cb2016-10-18 18:17:52 -070022#include <limits>
23#include <thread>
Stephen Smalley69b80032014-07-24 15:23:05 -040024
Christopher Ferris9818bd22016-05-03 16:32:13 -070025#include <android-base/file.h>
Josh Gaocbe70cb2016-10-18 18:17:52 -070026#include <android-base/logging.h>
27#include <android-base/parseint.h>
Elliott Hughesae389232016-03-22 20:03:13 -070028#include <android-base/unique_fd.h>
Josh Gaoa04c8022016-08-11 12:50:32 -070029#include <debuggerd/client.h>
Josh Gao0915f232017-06-27 14:08:05 -070030#include <procinfo/process.h>
Josh Gaocbe70cb2016-10-18 18:17:52 -070031#include <selinux/selinux.h>
Narayan Kamath2d377cd2017-05-10 10:58:59 +010032#include "util.h"
Josh Gaoa04c8022016-08-11 12:50:32 -070033
Josh Gaocbe70cb2016-10-18 18:17:52 -070034using android::base::unique_fd;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080035
Josh Gaocbe70cb2016-10-18 18:17:52 -070036static void usage(int exit_code) {
37 fprintf(stderr, "usage: debuggerd [-b] PID\n");
Elliott Hughes12b71292017-03-02 19:01:20 -080038 fprintf(stderr, "\n");
39 fprintf(stderr, "-b, --backtrace just a backtrace rather than a full tombstone\n");
Josh Gaocbe70cb2016-10-18 18:17:52 -070040 _exit(exit_code);
41}
Christopher Ferris9774df62015-01-15 14:47:36 -080042
Josh Gaocbe70cb2016-10-18 18:17:52 -070043static std::thread spawn_redirect_thread(unique_fd fd) {
44 return std::thread([fd{ std::move(fd) }]() {
45 while (true) {
46 char buf[BUFSIZ];
47 ssize_t rc = TEMP_FAILURE_RETRY(read(fd.get(), buf, sizeof(buf)));
48 if (rc <= 0) {
49 return;
50 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080051
Josh Gaocbe70cb2016-10-18 18:17:52 -070052 if (!android::base::WriteFully(STDOUT_FILENO, buf, rc)) {
53 return;
Christopher Ferris20303f82014-01-10 16:33:16 -080054 }
Elliott Hughesd9bf2b22014-05-16 19:16:22 -070055 }
Josh Gaocbe70cb2016-10-18 18:17:52 -070056 });
Jeff Brown9524e412011-10-24 11:10:16 -070057}
Ben Cheng09e71372009-09-28 11:06:09 -070058
Josh Gaocbe70cb2016-10-18 18:17:52 -070059int main(int argc, char* argv[]) {
60 if (argc <= 1) usage(0);
61 if (argc > 3) usage(1);
Elliott Hughes12b71292017-03-02 19:01:20 -080062 if (argc == 3 && strcmp(argv[1], "-b") != 0 && strcmp(argv[1], "--backtrace") != 0) usage(1);
63 bool backtrace_only = argc == 3;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080064
Josh Gaocbe70cb2016-10-18 18:17:52 -070065 pid_t pid;
66 if (!android::base::ParseInt(argv[argc - 1], &pid, 1, std::numeric_limits<pid_t>::max())) {
67 usage(1);
Christopher Ferris20303f82014-01-10 16:33:16 -080068 }
Jeff Brown9524e412011-10-24 11:10:16 -070069
Josh Gao0915f232017-06-27 14:08:05 -070070 if (getuid() != 0) {
71 errx(1, "root is required");
72 }
73
74 // Check to see if the process exists and that we can actually send a signal to it.
75 android::procinfo::ProcessInfo proc_info;
76 if (!android::procinfo::GetProcessInfo(pid, &proc_info)) {
77 err(1, "failed to fetch info for process %d", pid);
78 }
79
80 if (proc_info.state == android::procinfo::kProcessStateZombie) {
81 errx(1, "process %d is a zombie", pid);
82 }
83
84 if (kill(pid, 0) != 0) {
85 err(1, "cannot send signal to process %d", pid);
86 }
87
Josh Gaocbe70cb2016-10-18 18:17:52 -070088 unique_fd piperead, pipewrite;
89 if (!Pipe(&piperead, &pipewrite)) {
90 err(1, "failed to create pipe");
Stephen Smalley69b80032014-07-24 15:23:05 -040091 }
92
Josh Gaocbe70cb2016-10-18 18:17:52 -070093 std::thread redirect_thread = spawn_redirect_thread(std::move(piperead));
Narayan Kamatha73df602017-05-24 15:07:25 +010094 if (!debuggerd_trigger_dump(pid, backtrace_only ? kDebuggerdNativeBacktrace : kDebuggerdTombstone,
95 0, std::move(pipewrite))) {
Josh Gaocbe70cb2016-10-18 18:17:52 -070096 redirect_thread.join();
97 errx(1, "failed to dump process %d", pid);
Stephen Smalley69b80032014-07-24 15:23:05 -040098 }
99
Josh Gaocbe70cb2016-10-18 18:17:52 -0700100 redirect_thread.join();
Christopher Ferris20303f82014-01-10 16:33:16 -0800101 return 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800102}