blob: acf3ad25ba1e1d873d64f4c6687e687c941a6f91 [file] [log] [blame]
Joe Onorato5dcbc6c2017-08-29 15:13:58 -07001/*
yro0feae942017-11-15 14:38:48 -08002 * Copyright (C) 2017 The Android Open Source Project
Joe Onorato5dcbc6c2017-08-29 15:13:58 -07003 *
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
Tej Singh484524a2018-02-01 15:10:05 -080017#define DEBUG false // STOPSHIP if true
Joe Onorato9fc9edf2017-10-15 20:08:52 -070018#include "Log.h"
Joe Onorato5dcbc6c2017-08-29 15:13:58 -070019
20#include "StatsService.h"
Yangster-mac330af582018-02-08 15:24:38 -080021#include "stats_log_util.h"
Yao Chen8d9989b2017-11-18 18:54:50 -080022#include "android-base/stringprintf.h"
David Chenadaf8b32017-11-03 15:42:08 -070023#include "config/ConfigKey.h"
24#include "config/ConfigManager.h"
Yao Chenb3561512017-11-21 18:07:17 -080025#include "guardrail/StatsdStats.h"
yro947fbce2017-11-15 22:50:23 -080026#include "storage/StorageManager.h"
Bookatzc6977972018-01-16 16:55:05 -080027#include "subscriber/SubscriberReporter.h"
Joe Onorato5dcbc6c2017-08-29 15:13:58 -070028
David Chen0656b7a2017-09-13 15:53:39 -070029#include <android-base/file.h>
Jeff Sharkey6b649252018-04-16 09:50:22 -060030#include <android-base/stringprintf.h>
Joe Onorato5dcbc6c2017-08-29 15:13:58 -070031#include <binder/IPCThreadState.h>
32#include <binder/IServiceManager.h>
Jeff Sharkey6b649252018-04-16 09:50:22 -060033#include <binder/PermissionController.h>
yro87d983c2017-11-14 21:31:43 -080034#include <dirent.h>
David Chen0656b7a2017-09-13 15:53:39 -070035#include <frameworks/base/cmds/statsd/src/statsd_config.pb.h>
Joe Onorato5dcbc6c2017-08-29 15:13:58 -070036#include <private/android_filesystem_config.h>
37#include <utils/Looper.h>
Joe Onorato2cbc2cc2017-08-30 17:03:23 -070038#include <utils/String16.h>
Bookatzb223c4e2018-02-01 15:35:04 -080039#include <statslog.h>
Joe Onorato5dcbc6c2017-08-29 15:13:58 -070040#include <stdio.h>
Yao Chen482d2722017-09-12 13:25:43 -070041#include <stdlib.h>
Joe Onorato9fc9edf2017-10-15 20:08:52 -070042#include <sys/system_properties.h>
Yao Chenef99c4f2017-09-22 16:26:54 -070043#include <unistd.h>
Joe Onorato5dcbc6c2017-08-29 15:13:58 -070044
45using namespace android;
46
Jeff Sharkey6b649252018-04-16 09:50:22 -060047using android::base::StringPrintf;
48
Bookatz906a35c2017-09-20 15:26:44 -070049namespace android {
50namespace os {
51namespace statsd {
52
David Chenadaf8b32017-11-03 15:42:08 -070053constexpr const char* kPermissionDump = "android.permission.DUMP";
Jeff Sharkey6b649252018-04-16 09:50:22 -060054constexpr const char* kPermissionUsage = "android.permission.PACKAGE_USAGE_STATS";
55
56constexpr const char* kOpUsage = "android:get_usage_stats";
57
yro03faf092017-12-12 00:17:50 -080058#define STATS_SERVICE_DIR "/data/misc/stats-service"
David Chenadaf8b32017-11-03 15:42:08 -070059
Jeff Sharkey6b649252018-04-16 09:50:22 -060060static binder::Status ok() {
61 return binder::Status::ok();
62}
63
64static binder::Status exception(uint32_t code, const std::string& msg) {
65 ALOGE("%s (%d)", msg.c_str(), code);
66 return binder::Status::fromExceptionCode(code, String8(msg.c_str()));
67}
68
69binder::Status checkUid(uid_t expectedUid) {
70 uid_t uid = IPCThreadState::self()->getCallingUid();
71 if (uid == expectedUid || uid == AID_ROOT) {
72 return ok();
73 } else {
74 return exception(binder::Status::EX_SECURITY,
75 StringPrintf("UID %d is not expected UID %d", uid, expectedUid));
76 }
77}
78
79binder::Status checkDumpAndUsageStats(const String16& packageName) {
80 pid_t pid = IPCThreadState::self()->getCallingPid();
81 uid_t uid = IPCThreadState::self()->getCallingUid();
82
83 // Root, system, and shell always have access
84 if (uid == AID_ROOT || uid == AID_SYSTEM || uid == AID_SHELL) {
85 return ok();
86 }
87
88 // Caller must be granted these permissions
89 if (!checkCallingPermission(String16(kPermissionDump))) {
90 return exception(binder::Status::EX_SECURITY,
91 StringPrintf("UID %d / PID %d lacks permission %s", uid, pid, kPermissionDump));
92 }
93 if (!checkCallingPermission(String16(kPermissionUsage))) {
94 return exception(binder::Status::EX_SECURITY,
95 StringPrintf("UID %d / PID %d lacks permission %s", uid, pid, kPermissionUsage));
96 }
97
98 // Caller must also have usage stats op granted
99 PermissionController pc;
100 switch (pc.noteOp(String16(kOpUsage), uid, packageName)) {
101 case PermissionController::MODE_ALLOWED:
102 case PermissionController::MODE_DEFAULT:
103 return ok();
104 default:
105 return exception(binder::Status::EX_SECURITY,
106 StringPrintf("UID %d / PID %d lacks app-op %s", uid, pid, kOpUsage));
107 }
108}
109
110#define ENFORCE_UID(uid) { \
111 binder::Status status = checkUid((uid)); \
112 if (!status.isOk()) { \
113 return status; \
114 } \
115}
116
117#define ENFORCE_DUMP_AND_USAGE_STATS(packageName) { \
118 binder::Status status = checkDumpAndUsageStats(packageName); \
119 if (!status.isOk()) { \
120 return status; \
121 } \
122}
123
Joe Onorato5dcbc6c2017-08-29 15:13:58 -0700124StatsService::StatsService(const sp<Looper>& handlerLooper)
Yangster-mac932ecec2018-02-01 10:23:52 -0800125 : mAnomalyAlarmMonitor(new AlarmMonitor(MIN_DIFF_TO_UPDATE_REGISTERED_ALARM_SECS,
126 [](const sp<IStatsCompanionService>& sc, int64_t timeMillis) {
127 if (sc != nullptr) {
128 sc->setAnomalyAlarm(timeMillis);
129 StatsdStats::getInstance().noteRegisteredAnomalyAlarmChanged();
130 }
131 },
132 [](const sp<IStatsCompanionService>& sc) {
133 if (sc != nullptr) {
134 sc->cancelAnomalyAlarm();
135 StatsdStats::getInstance().noteRegisteredAnomalyAlarmChanged();
136 }
137 })),
138 mPeriodicAlarmMonitor(new AlarmMonitor(MIN_DIFF_TO_UPDATE_REGISTERED_ALARM_SECS,
139 [](const sp<IStatsCompanionService>& sc, int64_t timeMillis) {
140 if (sc != nullptr) {
141 sc->setAlarmForSubscriberTriggering(timeMillis);
142 StatsdStats::getInstance().noteRegisteredPeriodicAlarmChanged();
143 }
144 },
145 [](const sp<IStatsCompanionService>& sc) {
146 if (sc != nullptr) {
147 sc->cancelAlarmForSubscriberTriggering();
148 StatsdStats::getInstance().noteRegisteredPeriodicAlarmChanged();
149 }
150
151 })) {
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700152 mUidMap = new UidMap();
Chenjie Yu80f91122018-01-31 20:24:50 -0800153 StatsPuller::SetUidMap(mUidMap);
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700154 mConfigManager = new ConfigManager();
Yangster-mac932ecec2018-02-01 10:23:52 -0800155 mProcessor = new StatsLogProcessor(mUidMap, mAnomalyAlarmMonitor, mPeriodicAlarmMonitor,
Yangster-mac15f6bbc2018-04-08 11:52:26 -0700156 getElapsedRealtimeNs(), [this](const ConfigKey& key) {
Yangster-mac932ecec2018-02-01 10:23:52 -0800157 sp<IStatsCompanionService> sc = getStatsCompanionService();
158 auto receiver = mConfigManager->GetConfigReceiver(key);
159 if (sc == nullptr) {
160 VLOG("Could not find StatsCompanionService");
David Chen48944902018-05-03 10:29:11 -0700161 return false;
Yangster-mac932ecec2018-02-01 10:23:52 -0800162 } else if (receiver == nullptr) {
163 VLOG("Statscompanion could not find a broadcast receiver for %s",
164 key.ToString().c_str());
David Chen48944902018-05-03 10:29:11 -0700165 return false;
Yangster-mac932ecec2018-02-01 10:23:52 -0800166 } else {
David Chend37bc232018-04-12 18:05:11 -0700167 sc->sendDataBroadcast(receiver, mProcessor->getLastReportTimeNs(key));
David Chen48944902018-05-03 10:29:11 -0700168 return true;
David Chen1d7b0cd2017-11-15 14:20:04 -0800169 }
Yangster-mac932ecec2018-02-01 10:23:52 -0800170 }
Yangster-mac330af582018-02-08 15:24:38 -0800171 );
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700172
173 mConfigManager->AddListener(mProcessor);
174
175 init_system_properties();
Joe Onorato5dcbc6c2017-08-29 15:13:58 -0700176}
177
Yao Chenef99c4f2017-09-22 16:26:54 -0700178StatsService::~StatsService() {
Joe Onorato5dcbc6c2017-08-29 15:13:58 -0700179}
180
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700181void StatsService::init_system_properties() {
182 mEngBuild = false;
183 const prop_info* buildType = __system_property_find("ro.build.type");
184 if (buildType != NULL) {
185 __system_property_read_callback(buildType, init_build_type_callback, this);
186 }
David Chen0656b7a2017-09-13 15:53:39 -0700187}
188
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700189void StatsService::init_build_type_callback(void* cookie, const char* /*name*/, const char* value,
190 uint32_t serial) {
Yao Chen729093d2017-10-16 10:33:26 -0700191 if (0 == strcmp("eng", value) || 0 == strcmp("userdebug", value)) {
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700192 reinterpret_cast<StatsService*>(cookie)->mEngBuild = true;
193 }
194}
195
196/**
197 * Implement our own because the default binder implementation isn't
198 * properly handling SHELL_COMMAND_TRANSACTION.
199 */
Yao Chenef99c4f2017-09-22 16:26:54 -0700200status_t StatsService::onTransact(uint32_t code, const Parcel& data, Parcel* reply,
201 uint32_t flags) {
Joe Onorato2cbc2cc2017-08-30 17:03:23 -0700202 switch (code) {
203 case SHELL_COMMAND_TRANSACTION: {
204 int in = data.readFileDescriptor();
205 int out = data.readFileDescriptor();
206 int err = data.readFileDescriptor();
207 int argc = data.readInt32();
208 Vector<String8> args;
209 for (int i = 0; i < argc && data.dataAvail() > 0; i++) {
210 args.add(String8(data.readString16()));
211 }
Yao Chenef99c4f2017-09-22 16:26:54 -0700212 sp<IShellCallback> shellCallback = IShellCallback::asInterface(data.readStrongBinder());
213 sp<IResultReceiver> resultReceiver =
214 IResultReceiver::asInterface(data.readStrongBinder());
Joe Onorato2cbc2cc2017-08-30 17:03:23 -0700215
216 FILE* fin = fdopen(in, "r");
217 FILE* fout = fdopen(out, "w");
218 FILE* ferr = fdopen(err, "w");
219
220 if (fin == NULL || fout == NULL || ferr == NULL) {
221 resultReceiver->send(NO_MEMORY);
222 } else {
223 err = command(fin, fout, ferr, args);
224 resultReceiver->send(err);
225 }
226
227 if (fin != NULL) {
228 fflush(fin);
229 fclose(fin);
230 }
231 if (fout != NULL) {
232 fflush(fout);
233 fclose(fout);
234 }
235 if (fout != NULL) {
236 fflush(ferr);
237 fclose(ferr);
238 }
239
240 return NO_ERROR;
241 }
Yao Chenef99c4f2017-09-22 16:26:54 -0700242 default: { return BnStatsManager::onTransact(code, data, reply, flags); }
Joe Onorato2cbc2cc2017-08-30 17:03:23 -0700243 }
244}
245
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700246/**
247 * Write debugging data about statsd.
248 */
Yao Chenef99c4f2017-09-22 16:26:54 -0700249status_t StatsService::dump(int fd, const Vector<String16>& args) {
Tej Singhdd83d702018-04-10 17:24:50 -0700250 if (!checkCallingPermission(String16(kPermissionDump))) {
251 return PERMISSION_DENIED;
252 }
Joe Onorato5dcbc6c2017-08-29 15:13:58 -0700253 FILE* out = fdopen(fd, "w");
254 if (out == NULL) {
255 return NO_MEMORY; // the fd is already open
256 }
257
Yao Chen884c8c12018-01-26 10:36:25 -0800258 bool verbose = false;
Tej Singh41b3f9a2018-04-03 17:06:35 -0700259 bool proto = false;
Yao Chen884c8c12018-01-26 10:36:25 -0800260 if (args.size() > 0 && !args[0].compare(String16("-v"))) {
261 verbose = true;
262 }
Tej Singh41b3f9a2018-04-03 17:06:35 -0700263 if (args.size() > 0 && !args[args.size()-1].compare(String16("--proto"))) {
264 proto = true;
265 }
Yao Chen884c8c12018-01-26 10:36:25 -0800266
Tej Singh41b3f9a2018-04-03 17:06:35 -0700267 dump_impl(out, verbose, proto);
Joe Onorato5dcbc6c2017-08-29 15:13:58 -0700268
269 fclose(out);
270 return NO_ERROR;
271}
272
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700273/**
Tej Singh41b3f9a2018-04-03 17:06:35 -0700274 * Write debugging data about statsd in text or proto format.
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700275 */
Tej Singh41b3f9a2018-04-03 17:06:35 -0700276void StatsService::dump_impl(FILE* out, bool verbose, bool proto) {
277 if (proto) {
278 vector<uint8_t> data;
279 StatsdStats::getInstance().dumpStats(&data, false); // does not reset statsdStats.
280 for (size_t i = 0; i < data.size(); i ++) {
281 fprintf(out, "%c", data[i]);
282 }
283 } else {
284 StatsdStats::getInstance().dumpStats(out);
285 mProcessor->dumpStates(out, verbose);
286 }
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700287}
288
289/**
290 * Implementation of the adb shell cmd stats command.
291 */
Yao Chenef99c4f2017-09-22 16:26:54 -0700292status_t StatsService::command(FILE* in, FILE* out, FILE* err, Vector<String8>& args) {
Jeff Sharkey6b649252018-04-16 09:50:22 -0600293 uid_t uid = IPCThreadState::self()->getCallingUid();
294 if (uid != AID_ROOT && uid != AID_SHELL) {
295 return PERMISSION_DENIED;
296 }
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700297
298 const int argCount = args.size();
299 if (argCount >= 1) {
300 // adb shell cmd stats config ...
David Chen0656b7a2017-09-13 15:53:39 -0700301 if (!args[0].compare(String8("config"))) {
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700302 return cmd_config(in, out, err, args);
David Chen0656b7a2017-09-13 15:53:39 -0700303 }
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700304
David Chende701692017-10-05 13:16:02 -0700305 if (!args[0].compare(String8("print-uid-map"))) {
Yao Chend10f7b12017-12-18 12:53:50 -0800306 return cmd_print_uid_map(out, args);
David Chende701692017-10-05 13:16:02 -0700307 }
Yao Chen729093d2017-10-16 10:33:26 -0700308
309 if (!args[0].compare(String8("dump-report"))) {
310 return cmd_dump_report(out, err, args);
311 }
David Chen1481fe12017-10-16 13:16:34 -0700312
313 if (!args[0].compare(String8("pull-source")) && args.size() > 1) {
314 return cmd_print_pulled_metrics(out, args);
315 }
David Chenadaf8b32017-11-03 15:42:08 -0700316
317 if (!args[0].compare(String8("send-broadcast"))) {
David Chen1d7b0cd2017-11-15 14:20:04 -0800318 return cmd_trigger_broadcast(out, args);
319 }
320
321 if (!args[0].compare(String8("print-stats"))) {
Yao Chenb3561512017-11-21 18:07:17 -0800322 return cmd_print_stats(out, args);
David Chenadaf8b32017-11-03 15:42:08 -0700323 }
yro87d983c2017-11-14 21:31:43 -0800324
Yao Chen8d9989b2017-11-18 18:54:50 -0800325 if (!args[0].compare(String8("meminfo"))) {
326 return cmd_dump_memory_info(out);
327 }
yro947fbce2017-11-15 22:50:23 -0800328
329 if (!args[0].compare(String8("write-to-disk"))) {
330 return cmd_write_data_to_disk(out);
331 }
Bookatzb223c4e2018-02-01 15:35:04 -0800332
David Chen0b5c90c2018-01-25 16:51:49 -0800333 if (!args[0].compare(String8("log-app-breadcrumb"))) {
334 return cmd_log_app_breadcrumb(out, args);
Bookatzb223c4e2018-02-01 15:35:04 -0800335 }
Chenjie Yufa22d652018-02-05 14:37:48 -0800336
337 if (!args[0].compare(String8("clear-puller-cache"))) {
338 return cmd_clear_puller_cache(out);
339 }
Yao Chen876889c2018-05-02 11:16:16 -0700340
341 if (!args[0].compare(String8("print-logs"))) {
342 return cmd_print_logs(out, args);
343 }
Joe Onorato2cbc2cc2017-08-30 17:03:23 -0700344 }
Joe Onorato2cbc2cc2017-08-30 17:03:23 -0700345
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700346 print_cmd_help(out);
Joe Onorato2cbc2cc2017-08-30 17:03:23 -0700347 return NO_ERROR;
348}
349
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700350void StatsService::print_cmd_help(FILE* out) {
351 fprintf(out,
352 "usage: adb shell cmd stats print-stats-log [tag_required] "
353 "[timestamp_nsec_optional]\n");
354 fprintf(out, "\n");
355 fprintf(out, "\n");
Yao Chen8d9989b2017-11-18 18:54:50 -0800356 fprintf(out, "usage: adb shell cmd stats meminfo\n");
357 fprintf(out, "\n");
358 fprintf(out, " Prints the malloc debug information. You need to run the following first: \n");
359 fprintf(out, " # adb shell stop\n");
360 fprintf(out, " # adb shell setprop libc.debug.malloc.program statsd \n");
361 fprintf(out, " # adb shell setprop libc.debug.malloc.options backtrace \n");
362 fprintf(out, " # adb shell start\n");
363 fprintf(out, "\n");
364 fprintf(out, "\n");
Yao Chend10f7b12017-12-18 12:53:50 -0800365 fprintf(out, "usage: adb shell cmd stats print-uid-map [PKG]\n");
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700366 fprintf(out, "\n");
367 fprintf(out, " Prints the UID, app name, version mapping.\n");
Yao Chend10f7b12017-12-18 12:53:50 -0800368 fprintf(out, " PKG Optional package name to print the uids of the package\n");
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700369 fprintf(out, "\n");
370 fprintf(out, "\n");
yro3fca5ba2017-11-17 13:22:52 -0800371 fprintf(out, "usage: adb shell cmd stats pull-source [int] \n");
David Chen1481fe12017-10-16 13:16:34 -0700372 fprintf(out, "\n");
373 fprintf(out, " Prints the output of a pulled metrics source (int indicates source)\n");
374 fprintf(out, "\n");
375 fprintf(out, "\n");
yro947fbce2017-11-15 22:50:23 -0800376 fprintf(out, "usage: adb shell cmd stats write-to-disk \n");
377 fprintf(out, "\n");
378 fprintf(out, " Flushes all data on memory to disk.\n");
379 fprintf(out, "\n");
380 fprintf(out, "\n");
David Chen0b5c90c2018-01-25 16:51:49 -0800381 fprintf(out, "usage: adb shell cmd stats log-app-breadcrumb [UID] LABEL STATE\n");
382 fprintf(out, " Writes an AppBreadcrumbReported event to the statslog buffer.\n");
Bookatzb223c4e2018-02-01 15:35:04 -0800383 fprintf(out, " UID The uid to use. It is only possible to pass a UID\n");
384 fprintf(out, " parameter on eng builds. If UID is omitted the calling\n");
385 fprintf(out, " uid is used.\n");
386 fprintf(out, " LABEL Integer in [0, 15], as per atoms.proto.\n");
387 fprintf(out, " STATE Integer in [0, 3], as per atoms.proto.\n");
388 fprintf(out, "\n");
389 fprintf(out, "\n");
yro74fed972017-11-27 14:42:42 -0800390 fprintf(out, "usage: adb shell cmd stats config remove [UID] [NAME]\n");
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700391 fprintf(out, "usage: adb shell cmd stats config update [UID] NAME\n");
392 fprintf(out, "\n");
393 fprintf(out, " Adds, updates or removes a configuration. The proto should be in\n");
yro74fed972017-11-27 14:42:42 -0800394 fprintf(out, " wire-encoded protobuf format and passed via stdin. If no UID and name is\n");
395 fprintf(out, " provided, then all configs will be removed from memory and disk.\n");
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700396 fprintf(out, "\n");
397 fprintf(out, " UID The uid to use. It is only possible to pass the UID\n");
yro74fed972017-11-27 14:42:42 -0800398 fprintf(out, " parameter on eng builds. If UID is omitted the calling\n");
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700399 fprintf(out, " uid is used.\n");
400 fprintf(out, " NAME The per-uid name to use\n");
Yao Chen5154a3792017-10-30 22:57:06 -0700401 fprintf(out, "\n");
yro74fed972017-11-27 14:42:42 -0800402 fprintf(out, "\n *Note: If both UID and NAME are omitted then all configs will\n");
403 fprintf(out, "\n be removed from memory and disk!\n");
Yao Chen5154a3792017-10-30 22:57:06 -0700404 fprintf(out, "\n");
Chenjie Yub236c862017-11-28 22:20:44 -0800405 fprintf(out, "usage: adb shell cmd stats dump-report [UID] NAME [--proto]\n");
Yao Chen5154a3792017-10-30 22:57:06 -0700406 fprintf(out, " Dump all metric data for a configuration.\n");
407 fprintf(out, " UID The uid of the configuration. It is only possible to pass\n");
408 fprintf(out, " the UID parameter on eng builds. If UID is omitted the\n");
409 fprintf(out, " calling uid is used.\n");
410 fprintf(out, " NAME The name of the configuration\n");
Chenjie Yub236c862017-11-28 22:20:44 -0800411 fprintf(out, " --proto Print proto binary.\n");
David Chenadaf8b32017-11-03 15:42:08 -0700412 fprintf(out, "\n");
413 fprintf(out, "\n");
David Chen1d7b0cd2017-11-15 14:20:04 -0800414 fprintf(out, "usage: adb shell cmd stats send-broadcast [UID] NAME\n");
415 fprintf(out, " Send a broadcast that triggers the subscriber to fetch metrics.\n");
416 fprintf(out, " UID The uid of the configuration. It is only possible to pass\n");
417 fprintf(out, " the UID parameter on eng builds. If UID is omitted the\n");
418 fprintf(out, " calling uid is used.\n");
419 fprintf(out, " NAME The name of the configuration\n");
420 fprintf(out, "\n");
421 fprintf(out, "\n");
Yao Chenf5acabe2018-01-17 14:10:34 -0800422 fprintf(out, "usage: adb shell cmd stats print-stats\n");
David Chen1d7b0cd2017-11-15 14:20:04 -0800423 fprintf(out, " Prints some basic stats.\n");
Tej Singh41b3f9a2018-04-03 17:06:35 -0700424 fprintf(out, " --proto Print proto binary instead of string format.\n");
Chenjie Yufa22d652018-02-05 14:37:48 -0800425 fprintf(out, "\n");
426 fprintf(out, "\n");
427 fprintf(out, "usage: adb shell cmd stats clear-puller-cache\n");
428 fprintf(out, " Clear cached puller data.\n");
Yao Chen876889c2018-05-02 11:16:16 -0700429 fprintf(out, "\n");
430 fprintf(out, "usage: adb shell cmd stats print-logs\n");
431 fprintf(out, " Only works on eng build\n");
David Chenadaf8b32017-11-03 15:42:08 -0700432}
433
David Chen1d7b0cd2017-11-15 14:20:04 -0800434status_t StatsService::cmd_trigger_broadcast(FILE* out, Vector<String8>& args) {
435 string name;
436 bool good = false;
437 int uid;
438 const int argCount = args.size();
439 if (argCount == 2) {
440 // Automatically pick the UID
441 uid = IPCThreadState::self()->getCallingUid();
442 // TODO: What if this isn't a binder call? Should we fail?
443 name.assign(args[1].c_str(), args[1].size());
444 good = true;
445 } else if (argCount == 3) {
446 // If it's a userdebug or eng build, then the shell user can
447 // impersonate other uids.
448 if (mEngBuild) {
449 const char* s = args[1].c_str();
450 if (*s != '\0') {
451 char* end = NULL;
452 uid = strtol(s, &end, 0);
453 if (*end == '\0') {
454 name.assign(args[2].c_str(), args[2].size());
455 good = true;
456 }
457 }
458 } else {
459 fprintf(out,
460 "The metrics can only be dumped for other UIDs on eng or userdebug "
461 "builds.\n");
462 }
463 }
464 if (!good) {
465 print_cmd_help(out);
466 return UNKNOWN_ERROR;
467 }
David Chend37bc232018-04-12 18:05:11 -0700468 ConfigKey key(uid, StrToInt64(name));
469 auto receiver = mConfigManager->GetConfigReceiver(key);
yro4d889e62017-11-17 15:44:48 -0800470 sp<IStatsCompanionService> sc = getStatsCompanionService();
David Chen661f7912018-01-22 17:46:24 -0800471 if (sc == nullptr) {
472 VLOG("Could not access statsCompanion");
473 } else if (receiver == nullptr) {
474 VLOG("Could not find receiver for %s, %s", args[1].c_str(), args[2].c_str())
475 } else {
David Chend37bc232018-04-12 18:05:11 -0700476 sc->sendDataBroadcast(receiver, mProcessor->getLastReportTimeNs(key));
yro74fed972017-11-27 14:42:42 -0800477 VLOG("StatsService::trigger broadcast succeeded to %s, %s", args[1].c_str(),
478 args[2].c_str());
yro4d889e62017-11-17 15:44:48 -0800479 }
480
David Chenadaf8b32017-11-03 15:42:08 -0700481 return NO_ERROR;
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700482}
483
484status_t StatsService::cmd_config(FILE* in, FILE* out, FILE* err, Vector<String8>& args) {
485 const int argCount = args.size();
486 if (argCount >= 2) {
487 if (args[1] == "update" || args[1] == "remove") {
488 bool good = false;
489 int uid = -1;
490 string name;
491
492 if (argCount == 3) {
493 // Automatically pick the UID
494 uid = IPCThreadState::self()->getCallingUid();
495 // TODO: What if this isn't a binder call? Should we fail?
496 name.assign(args[2].c_str(), args[2].size());
497 good = true;
498 } else if (argCount == 4) {
499 // If it's a userdebug or eng build, then the shell user can
500 // impersonate other uids.
501 if (mEngBuild) {
502 const char* s = args[2].c_str();
503 if (*s != '\0') {
504 char* end = NULL;
505 uid = strtol(s, &end, 0);
506 if (*end == '\0') {
507 name.assign(args[3].c_str(), args[3].size());
508 good = true;
509 }
510 }
511 } else {
Yao Chen729093d2017-10-16 10:33:26 -0700512 fprintf(err,
513 "The config can only be set for other UIDs on eng or userdebug "
514 "builds.\n");
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700515 }
yroe5f82922018-01-22 18:37:27 -0800516 } else if (argCount == 2 && args[1] == "remove") {
517 good = true;
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700518 }
519
520 if (!good) {
521 // If arg parsing failed, print the help text and return an error.
522 print_cmd_help(out);
523 return UNKNOWN_ERROR;
524 }
525
526 if (args[1] == "update") {
yro255f72e2018-02-26 15:15:17 -0800527 char* endp;
528 int64_t configID = strtoll(name.c_str(), &endp, 10);
529 if (endp == name.c_str() || *endp != '\0') {
530 fprintf(err, "Error parsing config ID.\n");
531 return UNKNOWN_ERROR;
532 }
533
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700534 // Read stream into buffer.
535 string buffer;
536 if (!android::base::ReadFdToString(fileno(in), &buffer)) {
537 fprintf(err, "Error reading stream for StatsConfig.\n");
538 return UNKNOWN_ERROR;
539 }
540
541 // Parse buffer.
542 StatsdConfig config;
543 if (!config.ParseFromString(buffer)) {
544 fprintf(err, "Error parsing proto stream for StatsConfig.\n");
545 return UNKNOWN_ERROR;
546 }
547
548 // Add / update the config.
yro255f72e2018-02-26 15:15:17 -0800549 mConfigManager->UpdateConfig(ConfigKey(uid, configID), config);
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700550 } else {
yro74fed972017-11-27 14:42:42 -0800551 if (argCount == 2) {
552 cmd_remove_all_configs(out);
553 } else {
554 // Remove the config.
Yangster-mac94e197c2018-01-02 16:03:03 -0800555 mConfigManager->RemoveConfig(ConfigKey(uid, StrToInt64(name)));
yro74fed972017-11-27 14:42:42 -0800556 }
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700557 }
558
559 return NO_ERROR;
560 }
David Chen0656b7a2017-09-13 15:53:39 -0700561 }
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700562 print_cmd_help(out);
563 return UNKNOWN_ERROR;
564}
565
Yao Chen729093d2017-10-16 10:33:26 -0700566status_t StatsService::cmd_dump_report(FILE* out, FILE* err, const Vector<String8>& args) {
567 if (mProcessor != nullptr) {
Chenjie Yub236c862017-11-28 22:20:44 -0800568 int argCount = args.size();
Yao Chen729093d2017-10-16 10:33:26 -0700569 bool good = false;
Chenjie Yub236c862017-11-28 22:20:44 -0800570 bool proto = false;
Yao Chen729093d2017-10-16 10:33:26 -0700571 int uid;
572 string name;
Chenjie Yub236c862017-11-28 22:20:44 -0800573 if (!std::strcmp("--proto", args[argCount-1].c_str())) {
574 proto = true;
575 argCount -= 1;
576 }
Yao Chen729093d2017-10-16 10:33:26 -0700577 if (argCount == 2) {
578 // Automatically pick the UID
579 uid = IPCThreadState::self()->getCallingUid();
580 // TODO: What if this isn't a binder call? Should we fail?
Yao Chen5154a3792017-10-30 22:57:06 -0700581 name.assign(args[1].c_str(), args[1].size());
Yao Chen729093d2017-10-16 10:33:26 -0700582 good = true;
583 } else if (argCount == 3) {
584 // If it's a userdebug or eng build, then the shell user can
585 // impersonate other uids.
586 if (mEngBuild) {
587 const char* s = args[1].c_str();
588 if (*s != '\0') {
589 char* end = NULL;
590 uid = strtol(s, &end, 0);
591 if (*end == '\0') {
592 name.assign(args[2].c_str(), args[2].size());
593 good = true;
594 }
595 }
596 } else {
597 fprintf(out,
598 "The metrics can only be dumped for other UIDs on eng or userdebug "
599 "builds.\n");
600 }
601 }
602 if (good) {
David Chen1d7b0cd2017-11-15 14:20:04 -0800603 vector<uint8_t> data;
David Chen926fc752018-02-23 13:31:43 -0800604 mProcessor->onDumpReport(ConfigKey(uid, StrToInt64(name)), getElapsedRealtimeNs(),
Yangster-mac9def8e32018-04-17 13:55:51 -0700605 false /* include_current_bucket*/,
606 true /* include strings */, ADB_DUMP, &data);
Yao Chen729093d2017-10-16 10:33:26 -0700607 // TODO: print the returned StatsLogReport to file instead of printing to logcat.
Chenjie Yub236c862017-11-28 22:20:44 -0800608 if (proto) {
609 for (size_t i = 0; i < data.size(); i ++) {
610 fprintf(out, "%c", data[i]);
611 }
612 } else {
613 fprintf(out, "Dump report for Config [%d,%s]\n", uid, name.c_str());
614 fprintf(out, "See the StatsLogReport in logcat...\n");
615 }
Yao Chen729093d2017-10-16 10:33:26 -0700616 return android::OK;
617 } else {
618 // If arg parsing failed, print the help text and return an error.
619 print_cmd_help(out);
620 return UNKNOWN_ERROR;
621 }
622 } else {
623 fprintf(out, "Log processor does not exist...\n");
624 return UNKNOWN_ERROR;
625 }
626}
627
Yao Chenb3561512017-11-21 18:07:17 -0800628status_t StatsService::cmd_print_stats(FILE* out, const Vector<String8>& args) {
Tej Singh41b3f9a2018-04-03 17:06:35 -0700629 int argCount = args.size();
630 bool proto = false;
631 if (!std::strcmp("--proto", args[argCount-1].c_str())) {
632 proto = true;
633 argCount -= 1;
David Chen1d7b0cd2017-11-15 14:20:04 -0800634 }
Yao Chenb3561512017-11-21 18:07:17 -0800635 StatsdStats& statsdStats = StatsdStats::getInstance();
Tej Singh41b3f9a2018-04-03 17:06:35 -0700636 if (proto) {
637 vector<uint8_t> data;
638 statsdStats.dumpStats(&data, false); // does not reset statsdStats.
639 for (size_t i = 0; i < data.size(); i ++) {
640 fprintf(out, "%c", data[i]);
641 }
642
643 } else {
644 vector<ConfigKey> configs = mConfigManager->GetAllConfigKeys();
645 for (const ConfigKey& key : configs) {
646 fprintf(out, "Config %s uses %zu bytes\n", key.ToString().c_str(),
647 mProcessor->GetMetricsSize(key));
648 }
649 statsdStats.dumpStats(out);
650 }
David Chen1d7b0cd2017-11-15 14:20:04 -0800651 return NO_ERROR;
652}
653
Yao Chend10f7b12017-12-18 12:53:50 -0800654status_t StatsService::cmd_print_uid_map(FILE* out, const Vector<String8>& args) {
655 if (args.size() > 1) {
656 string pkg;
657 pkg.assign(args[1].c_str(), args[1].size());
658 auto uids = mUidMap->getAppUid(pkg);
659 fprintf(out, "%s -> [ ", pkg.c_str());
660 for (const auto& uid : uids) {
661 fprintf(out, "%d ", uid);
662 }
663 fprintf(out, "]\n");
664 } else {
665 mUidMap->printUidMap(out);
666 }
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700667 return NO_ERROR;
David Chen0656b7a2017-09-13 15:53:39 -0700668}
669
yro947fbce2017-11-15 22:50:23 -0800670status_t StatsService::cmd_write_data_to_disk(FILE* out) {
671 fprintf(out, "Writing data to disk\n");
Yangster-mac892f3d32018-05-02 14:16:48 -0700672 mProcessor->WriteDataToDisk(ADB_DUMP);
yro947fbce2017-11-15 22:50:23 -0800673 return NO_ERROR;
674}
675
David Chen0b5c90c2018-01-25 16:51:49 -0800676status_t StatsService::cmd_log_app_breadcrumb(FILE* out, const Vector<String8>& args) {
Bookatzb223c4e2018-02-01 15:35:04 -0800677 bool good = false;
678 int32_t uid;
679 int32_t label;
680 int32_t state;
681 const int argCount = args.size();
682 if (argCount == 3) {
683 // Automatically pick the UID
684 uid = IPCThreadState::self()->getCallingUid();
685 label = atoi(args[1].c_str());
686 state = atoi(args[2].c_str());
687 good = true;
688 } else if (argCount == 4) {
689 uid = atoi(args[1].c_str());
690 // If it's a userdebug or eng build, then the shell user can impersonate other uids.
691 // Otherwise, the uid must match the actual caller's uid.
692 if (mEngBuild || (uid >= 0 && (uid_t)uid == IPCThreadState::self()->getCallingUid())) {
693 label = atoi(args[2].c_str());
694 state = atoi(args[3].c_str());
695 good = true;
696 } else {
697 fprintf(out,
David Chenb639d142018-02-14 17:29:54 -0800698 "Selecting a UID for writing AppBreadcrumb can only be done for other UIDs "
699 "on eng or userdebug builds.\n");
Bookatzb223c4e2018-02-01 15:35:04 -0800700 }
701 }
702 if (good) {
David Chen0b5c90c2018-01-25 16:51:49 -0800703 fprintf(out, "Logging AppBreadcrumbReported(%d, %d, %d) to statslog.\n", uid, label, state);
704 android::util::stats_write(android::util::APP_BREADCRUMB_REPORTED, uid, label, state);
Bookatzb223c4e2018-02-01 15:35:04 -0800705 } else {
706 print_cmd_help(out);
707 return UNKNOWN_ERROR;
708 }
709 return NO_ERROR;
710}
711
David Chen1481fe12017-10-16 13:16:34 -0700712status_t StatsService::cmd_print_pulled_metrics(FILE* out, const Vector<String8>& args) {
713 int s = atoi(args[1].c_str());
Chenjie Yu5305e1d2017-10-31 13:49:36 -0700714 vector<shared_ptr<LogEvent> > stats;
Chenjie Yu1a0a9412018-03-28 10:07:22 -0700715 if (mStatsPullerManager.Pull(s, getElapsedRealtimeNs(), &stats)) {
Chenjie Yu5305e1d2017-10-31 13:49:36 -0700716 for (const auto& it : stats) {
717 fprintf(out, "Pull from %d: %s\n", s, it->ToString().c_str());
718 }
719 fprintf(out, "Pull from %d: Received %zu elements\n", s, stats.size());
720 return NO_ERROR;
David Chen1481fe12017-10-16 13:16:34 -0700721 }
Chenjie Yu5305e1d2017-10-31 13:49:36 -0700722 return UNKNOWN_ERROR;
David Chen1481fe12017-10-16 13:16:34 -0700723}
724
yro74fed972017-11-27 14:42:42 -0800725status_t StatsService::cmd_remove_all_configs(FILE* out) {
726 fprintf(out, "Removing all configs...\n");
727 VLOG("StatsService::cmd_remove_all_configs was called");
728 mConfigManager->RemoveAllConfigs();
yro947fbce2017-11-15 22:50:23 -0800729 StorageManager::deleteAllFiles(STATS_SERVICE_DIR);
yro87d983c2017-11-14 21:31:43 -0800730 return NO_ERROR;
731}
732
Yao Chen8d9989b2017-11-18 18:54:50 -0800733status_t StatsService::cmd_dump_memory_info(FILE* out) {
Yao Chen20e9e622018-02-28 11:18:51 -0800734 fprintf(out, "meminfo not available.\n");
Yao Chen8d9989b2017-11-18 18:54:50 -0800735 return NO_ERROR;
736}
737
Chenjie Yue72252b2018-02-01 13:19:35 -0800738status_t StatsService::cmd_clear_puller_cache(FILE* out) {
Chenjie Yufa22d652018-02-05 14:37:48 -0800739 IPCThreadState* ipc = IPCThreadState::self();
Yangster-mac932ecec2018-02-01 10:23:52 -0800740 VLOG("StatsService::cmd_clear_puller_cache with Pid %i, Uid %i",
741 ipc->getCallingPid(), ipc->getCallingUid());
Chenjie Yufa22d652018-02-05 14:37:48 -0800742 if (checkCallingPermission(String16(kPermissionDump))) {
743 int cleared = mStatsPullerManager.ForceClearPullerCache();
744 fprintf(out, "Puller removed %d cached data!\n", cleared);
745 return NO_ERROR;
746 } else {
747 return PERMISSION_DENIED;
748 }
Chenjie Yue72252b2018-02-01 13:19:35 -0800749}
750
Yao Chen876889c2018-05-02 11:16:16 -0700751status_t StatsService::cmd_print_logs(FILE* out, const Vector<String8>& args) {
752 IPCThreadState* ipc = IPCThreadState::self();
753 VLOG("StatsService::cmd_print_logs with Pid %i, Uid %i", ipc->getCallingPid(),
754 ipc->getCallingUid());
755 if (checkCallingPermission(String16(kPermissionDump))) {
756 bool enabled = true;
757 if (args.size() >= 2) {
758 enabled = atoi(args[1].c_str()) != 0;
759 }
760 mProcessor->setPrintLogs(enabled);
761 return NO_ERROR;
762 } else {
763 return PERMISSION_DENIED;
764 }
765}
766
Dianne Hackborn3accca02013-09-20 09:32:11 -0700767Status StatsService::informAllUidData(const vector<int32_t>& uid, const vector<int64_t>& version,
David Chende701692017-10-05 13:16:02 -0700768 const vector<String16>& app) {
Jeff Sharkey6b649252018-04-16 09:50:22 -0600769 ENFORCE_UID(AID_SYSTEM);
770
yro74fed972017-11-27 14:42:42 -0800771 VLOG("StatsService::informAllUidData was called");
David Chenbd125272018-04-04 19:02:50 -0700772 mUidMap->updateMap(getElapsedRealtimeNs(), uid, version, app);
yro74fed972017-11-27 14:42:42 -0800773 VLOG("StatsService::informAllUidData succeeded");
David Chende701692017-10-05 13:16:02 -0700774
775 return Status::ok();
776}
777
Dianne Hackborn3accca02013-09-20 09:32:11 -0700778Status StatsService::informOnePackage(const String16& app, int32_t uid, int64_t version) {
Jeff Sharkey6b649252018-04-16 09:50:22 -0600779 ENFORCE_UID(AID_SYSTEM);
David Chende701692017-10-05 13:16:02 -0700780
Jeff Sharkey6b649252018-04-16 09:50:22 -0600781 VLOG("StatsService::informOnePackage was called");
David Chenbd125272018-04-04 19:02:50 -0700782 mUidMap->updateApp(getElapsedRealtimeNs(), app, uid, version);
David Chende701692017-10-05 13:16:02 -0700783 return Status::ok();
784}
785
786Status StatsService::informOnePackageRemoved(const String16& app, int32_t uid) {
Jeff Sharkey6b649252018-04-16 09:50:22 -0600787 ENFORCE_UID(AID_SYSTEM);
David Chende701692017-10-05 13:16:02 -0700788
Jeff Sharkey6b649252018-04-16 09:50:22 -0600789 VLOG("StatsService::informOnePackageRemoved was called");
David Chenbd125272018-04-04 19:02:50 -0700790 mUidMap->removeApp(getElapsedRealtimeNs(), app, uid);
yro01924022018-02-20 18:20:49 -0800791 mConfigManager->RemoveConfigs(uid);
David Chende701692017-10-05 13:16:02 -0700792 return Status::ok();
793}
794
Yao Chenef99c4f2017-09-22 16:26:54 -0700795Status StatsService::informAnomalyAlarmFired() {
Jeff Sharkey6b649252018-04-16 09:50:22 -0600796 ENFORCE_UID(AID_SYSTEM);
797
yro74fed972017-11-27 14:42:42 -0800798 VLOG("StatsService::informAnomalyAlarmFired was called");
Yangster-macb142cc82018-03-30 15:22:08 -0700799 int64_t currentTimeSec = getElapsedRealtimeSec();
Yangster-mac932ecec2018-02-01 10:23:52 -0800800 std::unordered_set<sp<const InternalAlarm>, SpHash<InternalAlarm>> alarmSet =
801 mAnomalyAlarmMonitor->popSoonerThan(static_cast<uint32_t>(currentTimeSec));
802 if (alarmSet.size() > 0) {
Bookatz66fe0612018-02-07 18:51:48 -0800803 VLOG("Found an anomaly alarm that fired.");
Yangster-mac932ecec2018-02-01 10:23:52 -0800804 mProcessor->onAnomalyAlarmFired(currentTimeSec * NS_PER_SEC, alarmSet);
Bookatz66fe0612018-02-07 18:51:48 -0800805 } else {
806 VLOG("Cannot find an anomaly alarm that fired. Perhaps it was recently cancelled.");
807 }
Bookatz1b0b1142017-09-08 11:58:42 -0700808 return Status::ok();
809}
810
Yangster-mac932ecec2018-02-01 10:23:52 -0800811Status StatsService::informAlarmForSubscriberTriggeringFired() {
Jeff Sharkey6b649252018-04-16 09:50:22 -0600812 ENFORCE_UID(AID_SYSTEM);
813
Yangster-mac932ecec2018-02-01 10:23:52 -0800814 VLOG("StatsService::informAlarmForSubscriberTriggeringFired was called");
Yangster-macb142cc82018-03-30 15:22:08 -0700815 int64_t currentTimeSec = getElapsedRealtimeSec();
Yangster-mac932ecec2018-02-01 10:23:52 -0800816 std::unordered_set<sp<const InternalAlarm>, SpHash<InternalAlarm>> alarmSet =
817 mPeriodicAlarmMonitor->popSoonerThan(static_cast<uint32_t>(currentTimeSec));
818 if (alarmSet.size() > 0) {
819 VLOG("Found periodic alarm fired.");
820 mProcessor->onPeriodicAlarmFired(currentTimeSec * NS_PER_SEC, alarmSet);
821 } else {
822 ALOGW("Cannot find an periodic alarm that fired. Perhaps it was recently cancelled.");
823 }
824 return Status::ok();
825}
826
Yao Chenef99c4f2017-09-22 16:26:54 -0700827Status StatsService::informPollAlarmFired() {
Jeff Sharkey6b649252018-04-16 09:50:22 -0600828 ENFORCE_UID(AID_SYSTEM);
829
yro74fed972017-11-27 14:42:42 -0800830 VLOG("StatsService::informPollAlarmFired was called");
Yangster-mac15f6bbc2018-04-08 11:52:26 -0700831 mProcessor->informPullAlarmFired(getElapsedRealtimeNs());
yro74fed972017-11-27 14:42:42 -0800832 VLOG("StatsService::informPollAlarmFired succeeded");
Bookatz1b0b1142017-09-08 11:58:42 -0700833 return Status::ok();
834}
835
Yao Chenef99c4f2017-09-22 16:26:54 -0700836Status StatsService::systemRunning() {
Jeff Sharkey6b649252018-04-16 09:50:22 -0600837 ENFORCE_UID(AID_SYSTEM);
Joe Onorato5dcbc6c2017-08-29 15:13:58 -0700838
839 // When system_server is up and running, schedule the dropbox task to run.
yro74fed972017-11-27 14:42:42 -0800840 VLOG("StatsService::systemRunning");
Bookatzb487b552017-09-18 11:26:01 -0700841 sayHiToStatsCompanion();
Joe Onorato5dcbc6c2017-08-29 15:13:58 -0700842 return Status::ok();
843}
844
Yangster-mac892f3d32018-05-02 14:16:48 -0700845Status StatsService::informDeviceShutdown() {
Jeff Sharkey6b649252018-04-16 09:50:22 -0600846 ENFORCE_UID(AID_SYSTEM);
Chenjie Yue36018b2018-04-16 15:18:30 -0700847 VLOG("StatsService::informDeviceShutdown");
Yangster-mac892f3d32018-05-02 14:16:48 -0700848 mProcessor->WriteDataToDisk(DEVICE_SHUTDOWN);
yro947fbce2017-11-15 22:50:23 -0800849 return Status::ok();
850}
851
Yao Chenef99c4f2017-09-22 16:26:54 -0700852void StatsService::sayHiToStatsCompanion() {
Bookatzb487b552017-09-18 11:26:01 -0700853 sp<IStatsCompanionService> statsCompanion = getStatsCompanionService();
854 if (statsCompanion != nullptr) {
yro74fed972017-11-27 14:42:42 -0800855 VLOG("Telling statsCompanion that statsd is ready");
Bookatzb487b552017-09-18 11:26:01 -0700856 statsCompanion->statsdReady();
857 } else {
yro74fed972017-11-27 14:42:42 -0800858 VLOG("Could not access statsCompanion");
Bookatzb487b552017-09-18 11:26:01 -0700859 }
860}
861
Yao Chenef99c4f2017-09-22 16:26:54 -0700862Status StatsService::statsCompanionReady() {
Jeff Sharkey6b649252018-04-16 09:50:22 -0600863 ENFORCE_UID(AID_SYSTEM);
864
yro74fed972017-11-27 14:42:42 -0800865 VLOG("StatsService::statsCompanionReady was called");
Bookatzb487b552017-09-18 11:26:01 -0700866 sp<IStatsCompanionService> statsCompanion = getStatsCompanionService();
867 if (statsCompanion == nullptr) {
Yao Chenef99c4f2017-09-22 16:26:54 -0700868 return Status::fromExceptionCode(
869 Status::EX_NULL_POINTER,
870 "statscompanion unavailable despite it contacting statsd!");
Bookatzb487b552017-09-18 11:26:01 -0700871 }
yro74fed972017-11-27 14:42:42 -0800872 VLOG("StatsService::statsCompanionReady linking to statsCompanion.");
Chenjie Yuaa5b2012018-03-21 13:53:15 -0700873 IInterface::asBinder(statsCompanion)->linkToDeath(this);
874 mStatsPullerManager.SetStatsCompanionService(statsCompanion);
Yangster-mac932ecec2018-02-01 10:23:52 -0800875 mAnomalyAlarmMonitor->setStatsCompanionService(statsCompanion);
876 mPeriodicAlarmMonitor->setStatsCompanionService(statsCompanion);
Bookatzc6977972018-01-16 16:55:05 -0800877 SubscriberReporter::getInstance().setStatsCompanionService(statsCompanion);
Bookatzb487b552017-09-18 11:26:01 -0700878 return Status::ok();
879}
880
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700881void StatsService::Startup() {
882 mConfigManager->Startup();
Bookatz906a35c2017-09-20 15:26:44 -0700883}
884
Yao Chen163d2602018-04-10 10:39:53 -0700885void StatsService::OnLogEvent(LogEvent* event, bool reconnectionStarts) {
886 mProcessor->OnLogEvent(event, reconnectionStarts);
Bookatz906a35c2017-09-20 15:26:44 -0700887}
888
Jeff Sharkey6b649252018-04-16 09:50:22 -0600889Status StatsService::getData(int64_t key, const String16& packageName, vector<uint8_t>* output) {
890 ENFORCE_DUMP_AND_USAGE_STATS(packageName);
891
David Chenadaf8b32017-11-03 15:42:08 -0700892 IPCThreadState* ipc = IPCThreadState::self();
yro74fed972017-11-27 14:42:42 -0800893 VLOG("StatsService::getData with Pid %i, Uid %i", ipc->getCallingPid(), ipc->getCallingUid());
Bookatz4f716292018-04-10 17:15:12 -0700894 ConfigKey configKey(ipc->getCallingUid(), key);
Yangster-mac9def8e32018-04-17 13:55:51 -0700895 mProcessor->onDumpReport(configKey, getElapsedRealtimeNs(),
896 false /* include_current_bucket*/, true /* include strings */,
897 GET_DATA_CALLED, output);
Bookatz4f716292018-04-10 17:15:12 -0700898 return Status::ok();
yro31eb67b2017-10-24 13:33:21 -0700899}
900
Jeff Sharkey6b649252018-04-16 09:50:22 -0600901Status StatsService::getMetadata(const String16& packageName, vector<uint8_t>* output) {
902 ENFORCE_DUMP_AND_USAGE_STATS(packageName);
903
David Chen2e8f3802017-11-22 10:56:48 -0800904 IPCThreadState* ipc = IPCThreadState::self();
905 VLOG("StatsService::getMetadata with Pid %i, Uid %i", ipc->getCallingPid(),
906 ipc->getCallingUid());
Bookatz4f716292018-04-10 17:15:12 -0700907 StatsdStats::getInstance().dumpStats(output, false); // Don't reset the counters.
908 return Status::ok();
David Chen2e8f3802017-11-22 10:56:48 -0800909}
910
Jeff Sharkey6b649252018-04-16 09:50:22 -0600911Status StatsService::addConfiguration(int64_t key, const vector <uint8_t>& config,
912 const String16& packageName) {
913 ENFORCE_DUMP_AND_USAGE_STATS(packageName);
914
David Chenadaf8b32017-11-03 15:42:08 -0700915 IPCThreadState* ipc = IPCThreadState::self();
Bookatz4f716292018-04-10 17:15:12 -0700916 if (addConfigurationChecked(ipc->getCallingUid(), key, config)) {
David Chen661f7912018-01-22 17:46:24 -0800917 return Status::ok();
918 } else {
Bookatz4f716292018-04-10 17:15:12 -0700919 ALOGE("Could not parse malformatted StatsdConfig");
920 return Status::fromExceptionCode(binder::Status::EX_ILLEGAL_ARGUMENT,
921 "config does not correspond to a StatsdConfig proto");
David Chen661f7912018-01-22 17:46:24 -0800922 }
923}
924
David Chen9fdd4032018-03-20 14:38:56 -0700925bool StatsService::addConfigurationChecked(int uid, int64_t key, const vector<uint8_t>& config) {
926 ConfigKey configKey(uid, key);
927 StatsdConfig cfg;
928 if (config.size() > 0) { // If the config is empty, skip parsing.
929 if (!cfg.ParseFromArray(&config[0], config.size())) {
930 return false;
931 }
932 }
933 mConfigManager->UpdateConfig(configKey, cfg);
934 return true;
935}
936
Jeff Sharkey6b649252018-04-16 09:50:22 -0600937Status StatsService::removeDataFetchOperation(int64_t key, const String16& packageName) {
938 ENFORCE_DUMP_AND_USAGE_STATS(packageName);
939
Bookatz4f716292018-04-10 17:15:12 -0700940 IPCThreadState* ipc = IPCThreadState::self();
941 ConfigKey configKey(ipc->getCallingUid(), key);
942 mConfigManager->RemoveConfigReceiver(configKey);
943 return Status::ok();
David Chen661f7912018-01-22 17:46:24 -0800944}
945
Jeff Sharkey6b649252018-04-16 09:50:22 -0600946Status StatsService::setDataFetchOperation(int64_t key,
947 const sp<android::IBinder>& intentSender,
948 const String16& packageName) {
949 ENFORCE_DUMP_AND_USAGE_STATS(packageName);
950
Bookatz4f716292018-04-10 17:15:12 -0700951 IPCThreadState* ipc = IPCThreadState::self();
952 ConfigKey configKey(ipc->getCallingUid(), key);
953 mConfigManager->SetConfigReceiver(configKey, intentSender);
David Chen48944902018-05-03 10:29:11 -0700954 if (StorageManager::hasConfigMetricsReport(configKey)) {
955 VLOG("StatsService::setDataFetchOperation marking configKey %s to dump reports on disk",
956 configKey.ToString().c_str());
957 mProcessor->noteOnDiskData(configKey);
958 }
Bookatz4f716292018-04-10 17:15:12 -0700959 return Status::ok();
yro31eb67b2017-10-24 13:33:21 -0700960}
961
Jeff Sharkey6b649252018-04-16 09:50:22 -0600962Status StatsService::removeConfiguration(int64_t key, const String16& packageName) {
963 ENFORCE_DUMP_AND_USAGE_STATS(packageName);
964
Bookatz4f716292018-04-10 17:15:12 -0700965 IPCThreadState* ipc = IPCThreadState::self();
966 ConfigKey configKey(ipc->getCallingUid(), key);
967 mConfigManager->RemoveConfig(configKey);
968 SubscriberReporter::getInstance().removeConfig(configKey);
969 return Status::ok();
yro31eb67b2017-10-24 13:33:21 -0700970}
971
Bookatzc6977972018-01-16 16:55:05 -0800972Status StatsService::setBroadcastSubscriber(int64_t configId,
973 int64_t subscriberId,
Jeff Sharkey6b649252018-04-16 09:50:22 -0600974 const sp<android::IBinder>& intentSender,
975 const String16& packageName) {
976 ENFORCE_DUMP_AND_USAGE_STATS(packageName);
977
Bookatzc6977972018-01-16 16:55:05 -0800978 VLOG("StatsService::setBroadcastSubscriber called.");
Bookatz4f716292018-04-10 17:15:12 -0700979 IPCThreadState* ipc = IPCThreadState::self();
980 ConfigKey configKey(ipc->getCallingUid(), configId);
981 SubscriberReporter::getInstance()
982 .setBroadcastSubscriber(configKey, subscriberId, intentSender);
983 return Status::ok();
Bookatzc6977972018-01-16 16:55:05 -0800984}
985
986Status StatsService::unsetBroadcastSubscriber(int64_t configId,
Jeff Sharkey6b649252018-04-16 09:50:22 -0600987 int64_t subscriberId,
988 const String16& packageName) {
989 ENFORCE_DUMP_AND_USAGE_STATS(packageName);
990
Bookatzc6977972018-01-16 16:55:05 -0800991 VLOG("StatsService::unsetBroadcastSubscriber called.");
Bookatz4f716292018-04-10 17:15:12 -0700992 IPCThreadState* ipc = IPCThreadState::self();
993 ConfigKey configKey(ipc->getCallingUid(), configId);
994 SubscriberReporter::getInstance()
995 .unsetBroadcastSubscriber(configKey, subscriberId);
996 return Status::ok();
Bookatzc6977972018-01-16 16:55:05 -0800997}
998
yrobe6d7f92018-05-04 13:02:53 -0700999Status StatsService::sendAppBreadcrumbAtom(int32_t label, int32_t state) {
1000 // Permission check not necessary as it's meant for applications to write to
1001 // statsd.
1002 android::util::stats_write(util::APP_BREADCRUMB_REPORTED,
1003 IPCThreadState::self()->getCallingUid(), label,
1004 state);
1005 return Status::ok();
1006}
1007
David Chen1d7b0cd2017-11-15 14:20:04 -08001008void StatsService::binderDied(const wp <IBinder>& who) {
Chenjie Yuaa5b2012018-03-21 13:53:15 -07001009 ALOGW("statscompanion service died");
Yangster-mac892f3d32018-05-02 14:16:48 -07001010 StatsdStats::getInstance().noteSystemServerRestart(getWallClockSec());
1011 if (mProcessor != nullptr) {
1012 ALOGW("Reset statsd upon system server restars.");
1013 mProcessor->WriteDataToDisk(STATSCOMPANION_DIED);
1014 mProcessor->resetConfigs();
1015 }
Chenjie Yuaa5b2012018-03-21 13:53:15 -07001016 mAnomalyAlarmMonitor->setStatsCompanionService(nullptr);
1017 mPeriodicAlarmMonitor->setStatsCompanionService(nullptr);
1018 SubscriberReporter::getInstance().setStatsCompanionService(nullptr);
1019 mStatsPullerManager.SetStatsCompanionService(nullptr);
yro31eb67b2017-10-24 13:33:21 -07001020}
1021
Yao Chenef99c4f2017-09-22 16:26:54 -07001022} // namespace statsd
1023} // namespace os
1024} // namespace android