blob: 46fb81a4bb5766bd93639a195924ec14cac542ee [file] [log] [blame]
Colin Crossf45fa6b2012-03-26 12:38:26 -07001/*
2 * Command that dumps interesting system state to the log.
3 *
4 */
5
6#define LOG_TAG "dumpsys"
7
Josh Gao4b8f6f92016-02-29 16:20:34 -08008#include <algorithm>
9#include <chrono>
10#include <thread>
11
12#include <android-base/file.h>
13#include <android-base/unique_fd.h>
14#include <binder/IServiceManager.h>
Colin Crossf45fa6b2012-03-26 12:38:26 -070015#include <binder/Parcel.h>
16#include <binder/ProcessState.h>
Mathias Agopian002e1e52013-05-06 20:20:50 -070017#include <binder/TextOutput.h>
Josh Gao4b8f6f92016-02-29 16:20:34 -080018#include <utils/Log.h>
Colin Crossf45fa6b2012-03-26 12:38:26 -070019#include <utils/Vector.h>
20
Josh Gao4b8f6f92016-02-29 16:20:34 -080021#include <fcntl.h>
Colin Crossf45fa6b2012-03-26 12:38:26 -070022#include <getopt.h>
Colin Crossf45fa6b2012-03-26 12:38:26 -070023#include <stdio.h>
Josh Gao4b8f6f92016-02-29 16:20:34 -080024#include <stdlib.h>
Colin Crossf45fa6b2012-03-26 12:38:26 -070025#include <string.h>
Josh Gao4b8f6f92016-02-29 16:20:34 -080026#include <sys/poll.h>
27#include <sys/socket.h>
Colin Crossf45fa6b2012-03-26 12:38:26 -070028#include <sys/time.h>
Josh Gao4b8f6f92016-02-29 16:20:34 -080029#include <sys/types.h>
30#include <unistd.h>
Colin Crossf45fa6b2012-03-26 12:38:26 -070031
32using namespace android;
Josh Gao4b8f6f92016-02-29 16:20:34 -080033using android::base::unique_fd;
34using android::base::WriteFully;
Colin Crossf45fa6b2012-03-26 12:38:26 -070035
36static int sort_func(const String16* lhs, const String16* rhs)
37{
38 return lhs->compare(*rhs);
39}
40
Felipe Lemebbfd2b82016-02-03 11:16:27 -080041static void usage() {
42 fprintf(stderr,
43 "usage: dumpsys\n"
44 " To dump all services.\n"
45 "or:\n"
Felipe Leme859aef62016-02-03 12:17:10 -080046 " dumpsys [--help | -l | --skip SERVICES | SERVICE [ARGS]]\n"
Felipe Lemebbfd2b82016-02-03 11:16:27 -080047 " --help: shows this help\n"
48 " -l: only list services, do not dump them\n"
Felipe Leme859aef62016-02-03 12:17:10 -080049 " --skip SERVICES: dumps all services but SERVICES (comma-separated list)\n"
50 " SERVICE [ARGS]: dumps only service SERVICE, optionally passing ARGS to it\n");
51}
52
53bool IsSkipped(const Vector<String16>& skipped, const String16& service) {
54 for (const auto& candidate : skipped) {
55 if (candidate == service) {
56 return true;
57 }
58 }
59 return false;
Felipe Lemebbfd2b82016-02-03 11:16:27 -080060}
61
Colin Crossf45fa6b2012-03-26 12:38:26 -070062int main(int argc, char* const argv[])
63{
JP Abgrall3e03d3f2012-05-11 14:14:09 -070064 signal(SIGPIPE, SIG_IGN);
Colin Crossf45fa6b2012-03-26 12:38:26 -070065 sp<IServiceManager> sm = defaultServiceManager();
66 fflush(stdout);
67 if (sm == NULL) {
Felipe Lemebbfd2b82016-02-03 11:16:27 -080068 ALOGE("Unable to get default service manager!");
Colin Crossf45fa6b2012-03-26 12:38:26 -070069 aerr << "dumpsys: Unable to get default service manager!" << endl;
70 return 20;
71 }
72
73 Vector<String16> services;
74 Vector<String16> args;
Felipe Leme859aef62016-02-03 12:17:10 -080075 Vector<String16> skippedServices;
keunyoungcaad5552013-06-13 15:08:51 -070076 bool showListOnly = false;
Felipe Lemebbfd2b82016-02-03 11:16:27 -080077 if (argc == 2) {
Felipe Leme859aef62016-02-03 12:17:10 -080078 // 1 argument: check for special cases (-l or --help)
Felipe Lemebbfd2b82016-02-03 11:16:27 -080079 if (strcmp(argv[1], "--help") == 0) {
80 usage();
81 return 0;
82 }
83 if (strcmp(argv[1], "-l") == 0) {
84 showListOnly = true;
85 }
keunyoungcaad5552013-06-13 15:08:51 -070086 }
Felipe Leme859aef62016-02-03 12:17:10 -080087 if (argc == 3) {
88 // 2 arguments: check for special cases (--skip SERVICES)
89 if (strcmp(argv[1], "--skip") == 0) {
90 char* token = strtok(argv[2], ",");
91 while (token != NULL) {
92 skippedServices.add(String16(token));
93 token = strtok(NULL, ",");
94 }
95 }
96 }
97 bool dumpAll = argc == 1;
98 if (dumpAll || !skippedServices.empty() || showListOnly) {
99 // gets all services
Colin Crossf45fa6b2012-03-26 12:38:26 -0700100 services = sm->listServices();
101 services.sort(sort_func);
102 args.add(String16("-a"));
103 } else {
Felipe Leme859aef62016-02-03 12:17:10 -0800104 // gets a specific service:
105 // first check if its name is not a special argument...
106 if (strcmp(argv[1], "--skip") == 0 || strcmp(argv[1], "-l") == 0) {
107 usage();
108 return -1;
109 }
110 // ...then gets its arguments
Colin Crossf45fa6b2012-03-26 12:38:26 -0700111 services.add(String16(argv[1]));
112 for (int i=2; i<argc; i++) {
113 args.add(String16(argv[i]));
114 }
115 }
116
117 const size_t N = services.size();
118
119 if (N > 1) {
120 // first print a list of the current services
121 aout << "Currently running services:" << endl;
Felipe Lemebbfd2b82016-02-03 11:16:27 -0800122
Colin Crossf45fa6b2012-03-26 12:38:26 -0700123 for (size_t i=0; i<N; i++) {
124 sp<IBinder> service = sm->checkService(services[i]);
125 if (service != NULL) {
Felipe Leme859aef62016-02-03 12:17:10 -0800126 bool skipped = IsSkipped(skippedServices, services[i]);
127 aout << " " << services[i] << (skipped ? " (skipped)" : "") << endl;
Colin Crossf45fa6b2012-03-26 12:38:26 -0700128 }
129 }
130 }
131
keunyoungcaad5552013-06-13 15:08:51 -0700132 if (showListOnly) {
133 return 0;
134 }
135
Josh Gao4b8f6f92016-02-29 16:20:34 -0800136 for (size_t i = 0; i < N; i++) {
137 String16 service_name = std::move(services[i]);
138 if (IsSkipped(skippedServices, service_name)) continue;
Felipe Leme859aef62016-02-03 12:17:10 -0800139
Josh Gao4b8f6f92016-02-29 16:20:34 -0800140 sp<IBinder> service = sm->checkService(service_name);
Colin Crossf45fa6b2012-03-26 12:38:26 -0700141 if (service != NULL) {
Josh Gao4b8f6f92016-02-29 16:20:34 -0800142 int sfd[2];
143
144 // Use a socketpair instead of a pipe to avoid sending SIGPIPE to services that timeout.
145 if (socketpair(AF_UNIX, SOCK_STREAM, 0, sfd) != 0) {
146 aerr << "Failed to create socketpair to dump service info for " << service_name
147 << ": " << strerror(errno) << endl;
148 continue;
149 }
150
151 unique_fd local_end(sfd[0]);
152 unique_fd remote_end(sfd[1]);
153 sfd[0] = sfd[1] = -1;
154
Colin Crossf45fa6b2012-03-26 12:38:26 -0700155 if (N > 1) {
156 aout << "------------------------------------------------------------"
157 "-------------------" << endl;
Josh Gao4b8f6f92016-02-29 16:20:34 -0800158 aout << "DUMP OF SERVICE " << service_name << ":" << endl;
Colin Crossf45fa6b2012-03-26 12:38:26 -0700159 }
Josh Gao4b8f6f92016-02-29 16:20:34 -0800160
161 // dump blocks until completion, so spawn a thread..
162 std::thread dump_thread([=, remote_end { std::move(remote_end) }]() mutable {
163 int err = service->dump(remote_end.get(), args);
164
165 // It'd be nice to be able to close the remote end of the socketpair before the dump
166 // call returns, to terminate our reads if the other end closes their copy of the
167 // file descriptor, but then hangs for some reason. There doesn't seem to be a good
168 // way to do this, though.
169 remote_end.clear();
170
171 if (err != 0) {
172 aerr << "Error dumping service info: (" << strerror(err) << ") " << service_name
173 << endl;
174 }
175 });
176
177 // TODO: Make this configurable at runtime.
178 constexpr auto timeout = std::chrono::seconds(10);
179 auto end = std::chrono::steady_clock::now() + timeout;
180
181 struct pollfd pfd = {
182 .fd = local_end.get(),
183 .events = POLLIN
184 };
185
186 bool timed_out = false;
187 bool error = false;
188 while (true) {
189 // Wrap this in a lambda so that TEMP_FAILURE_RETRY recalculates the timeout.
190 auto time_left_ms = [end]() {
191 auto now = std::chrono::steady_clock::now();
192 auto diff = std::chrono::duration_cast<std::chrono::milliseconds>(end - now);
193 return std::max(diff.count(), 0ll);
194 };
195
196 int rc = TEMP_FAILURE_RETRY(poll(&pfd, 1, time_left_ms()));
197 if (rc < 0) {
198 aerr << "Error in poll while dumping service " << service_name << " : "
199 << strerror(errno) << endl;
200 error = true;
201 break;
202 } else if (rc == 0) {
203 timed_out = true;
204 break;
205 }
206
207 char buf[4096];
208 rc = TEMP_FAILURE_RETRY(read(local_end.get(), buf, sizeof(buf)));
209 if (rc < 0) {
210 aerr << "Failed to read while dumping service " << service_name << ": "
211 << strerror(errno) << endl;
212 error = true;
213 break;
214 } else if (rc == 0) {
215 // EOF.
216 break;
217 }
218
219 if (!WriteFully(STDOUT_FILENO, buf, rc)) {
220 aerr << "Failed to write while dumping service " << service_name << ": "
221 << strerror(errno) << endl;
222 error = true;
223 break;
224 }
225 }
226
227 if (timed_out) {
228 aout << endl << "*** SERVICE DUMP TIMEOUT EXPIRED ***" << endl << endl;
229 }
230
231 if (timed_out || error) {
232 dump_thread.detach();
233 } else {
234 dump_thread.join();
Colin Crossf45fa6b2012-03-26 12:38:26 -0700235 }
236 } else {
Josh Gao4b8f6f92016-02-29 16:20:34 -0800237 aerr << "Can't find service: " << service_name << endl;
Colin Crossf45fa6b2012-03-26 12:38:26 -0700238 }
239 }
240
241 return 0;
242}