blob: 10c04f67ca0518ef0dbbcc0998ce191b2bb00d5f [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 Chen5154a372017-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 Chen5154a372017-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 Chen5154a372017-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 Chen5154a372017-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(),
David Chen56ae0d92018-05-11 16:00:22 -0700605 false /* include_current_bucket*/, ADB_DUMP, &data);
Yao Chen729093d2017-10-16 10:33:26 -0700606 // TODO: print the returned StatsLogReport to file instead of printing to logcat.
Chenjie Yub236c862017-11-28 22:20:44 -0800607 if (proto) {
608 for (size_t i = 0; i < data.size(); i ++) {
609 fprintf(out, "%c", data[i]);
610 }
611 } else {
612 fprintf(out, "Dump report for Config [%d,%s]\n", uid, name.c_str());
613 fprintf(out, "See the StatsLogReport in logcat...\n");
614 }
Yao Chen729093d2017-10-16 10:33:26 -0700615 return android::OK;
616 } else {
617 // If arg parsing failed, print the help text and return an error.
618 print_cmd_help(out);
619 return UNKNOWN_ERROR;
620 }
621 } else {
622 fprintf(out, "Log processor does not exist...\n");
623 return UNKNOWN_ERROR;
624 }
625}
626
Yao Chenb3561512017-11-21 18:07:17 -0800627status_t StatsService::cmd_print_stats(FILE* out, const Vector<String8>& args) {
Tej Singh41b3f9a2018-04-03 17:06:35 -0700628 int argCount = args.size();
629 bool proto = false;
630 if (!std::strcmp("--proto", args[argCount-1].c_str())) {
631 proto = true;
632 argCount -= 1;
David Chen1d7b0cd2017-11-15 14:20:04 -0800633 }
Yao Chenb3561512017-11-21 18:07:17 -0800634 StatsdStats& statsdStats = StatsdStats::getInstance();
Tej Singh41b3f9a2018-04-03 17:06:35 -0700635 if (proto) {
636 vector<uint8_t> data;
637 statsdStats.dumpStats(&data, false); // does not reset statsdStats.
638 for (size_t i = 0; i < data.size(); i ++) {
639 fprintf(out, "%c", data[i]);
640 }
641
642 } else {
643 vector<ConfigKey> configs = mConfigManager->GetAllConfigKeys();
644 for (const ConfigKey& key : configs) {
645 fprintf(out, "Config %s uses %zu bytes\n", key.ToString().c_str(),
646 mProcessor->GetMetricsSize(key));
647 }
648 statsdStats.dumpStats(out);
649 }
David Chen1d7b0cd2017-11-15 14:20:04 -0800650 return NO_ERROR;
651}
652
Yao Chend10f7b12017-12-18 12:53:50 -0800653status_t StatsService::cmd_print_uid_map(FILE* out, const Vector<String8>& args) {
654 if (args.size() > 1) {
655 string pkg;
656 pkg.assign(args[1].c_str(), args[1].size());
657 auto uids = mUidMap->getAppUid(pkg);
658 fprintf(out, "%s -> [ ", pkg.c_str());
659 for (const auto& uid : uids) {
660 fprintf(out, "%d ", uid);
661 }
662 fprintf(out, "]\n");
663 } else {
664 mUidMap->printUidMap(out);
665 }
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700666 return NO_ERROR;
David Chen0656b7a2017-09-13 15:53:39 -0700667}
668
yro947fbce2017-11-15 22:50:23 -0800669status_t StatsService::cmd_write_data_to_disk(FILE* out) {
670 fprintf(out, "Writing data to disk\n");
Yangster-mac892f3d32018-05-02 14:16:48 -0700671 mProcessor->WriteDataToDisk(ADB_DUMP);
yro947fbce2017-11-15 22:50:23 -0800672 return NO_ERROR;
673}
674
David Chen0b5c90c2018-01-25 16:51:49 -0800675status_t StatsService::cmd_log_app_breadcrumb(FILE* out, const Vector<String8>& args) {
Bookatzb223c4e2018-02-01 15:35:04 -0800676 bool good = false;
677 int32_t uid;
678 int32_t label;
679 int32_t state;
680 const int argCount = args.size();
681 if (argCount == 3) {
682 // Automatically pick the UID
683 uid = IPCThreadState::self()->getCallingUid();
684 label = atoi(args[1].c_str());
685 state = atoi(args[2].c_str());
686 good = true;
687 } else if (argCount == 4) {
688 uid = atoi(args[1].c_str());
689 // If it's a userdebug or eng build, then the shell user can impersonate other uids.
690 // Otherwise, the uid must match the actual caller's uid.
691 if (mEngBuild || (uid >= 0 && (uid_t)uid == IPCThreadState::self()->getCallingUid())) {
692 label = atoi(args[2].c_str());
693 state = atoi(args[3].c_str());
694 good = true;
695 } else {
696 fprintf(out,
David Chenb639d142018-02-14 17:29:54 -0800697 "Selecting a UID for writing AppBreadcrumb can only be done for other UIDs "
698 "on eng or userdebug builds.\n");
Bookatzb223c4e2018-02-01 15:35:04 -0800699 }
700 }
701 if (good) {
David Chen0b5c90c2018-01-25 16:51:49 -0800702 fprintf(out, "Logging AppBreadcrumbReported(%d, %d, %d) to statslog.\n", uid, label, state);
703 android::util::stats_write(android::util::APP_BREADCRUMB_REPORTED, uid, label, state);
Bookatzb223c4e2018-02-01 15:35:04 -0800704 } else {
705 print_cmd_help(out);
706 return UNKNOWN_ERROR;
707 }
708 return NO_ERROR;
709}
710
David Chen1481fe12017-10-16 13:16:34 -0700711status_t StatsService::cmd_print_pulled_metrics(FILE* out, const Vector<String8>& args) {
712 int s = atoi(args[1].c_str());
Chenjie Yu5305e1d2017-10-31 13:49:36 -0700713 vector<shared_ptr<LogEvent> > stats;
Chenjie Yu1a0a9412018-03-28 10:07:22 -0700714 if (mStatsPullerManager.Pull(s, getElapsedRealtimeNs(), &stats)) {
Chenjie Yu5305e1d2017-10-31 13:49:36 -0700715 for (const auto& it : stats) {
716 fprintf(out, "Pull from %d: %s\n", s, it->ToString().c_str());
717 }
718 fprintf(out, "Pull from %d: Received %zu elements\n", s, stats.size());
719 return NO_ERROR;
David Chen1481fe12017-10-16 13:16:34 -0700720 }
Chenjie Yu5305e1d2017-10-31 13:49:36 -0700721 return UNKNOWN_ERROR;
David Chen1481fe12017-10-16 13:16:34 -0700722}
723
yro74fed972017-11-27 14:42:42 -0800724status_t StatsService::cmd_remove_all_configs(FILE* out) {
725 fprintf(out, "Removing all configs...\n");
726 VLOG("StatsService::cmd_remove_all_configs was called");
727 mConfigManager->RemoveAllConfigs();
yro947fbce2017-11-15 22:50:23 -0800728 StorageManager::deleteAllFiles(STATS_SERVICE_DIR);
yro87d983c2017-11-14 21:31:43 -0800729 return NO_ERROR;
730}
731
Yao Chen8d9989b2017-11-18 18:54:50 -0800732status_t StatsService::cmd_dump_memory_info(FILE* out) {
Yao Chen20e9e622018-02-28 11:18:51 -0800733 fprintf(out, "meminfo not available.\n");
Yao Chen8d9989b2017-11-18 18:54:50 -0800734 return NO_ERROR;
735}
736
Chenjie Yue72252b2018-02-01 13:19:35 -0800737status_t StatsService::cmd_clear_puller_cache(FILE* out) {
Chenjie Yufa22d652018-02-05 14:37:48 -0800738 IPCThreadState* ipc = IPCThreadState::self();
Yangster-mac932ecec2018-02-01 10:23:52 -0800739 VLOG("StatsService::cmd_clear_puller_cache with Pid %i, Uid %i",
740 ipc->getCallingPid(), ipc->getCallingUid());
Chenjie Yufa22d652018-02-05 14:37:48 -0800741 if (checkCallingPermission(String16(kPermissionDump))) {
742 int cleared = mStatsPullerManager.ForceClearPullerCache();
743 fprintf(out, "Puller removed %d cached data!\n", cleared);
744 return NO_ERROR;
745 } else {
746 return PERMISSION_DENIED;
747 }
Chenjie Yue72252b2018-02-01 13:19:35 -0800748}
749
Yao Chen876889c2018-05-02 11:16:16 -0700750status_t StatsService::cmd_print_logs(FILE* out, const Vector<String8>& args) {
751 IPCThreadState* ipc = IPCThreadState::self();
752 VLOG("StatsService::cmd_print_logs with Pid %i, Uid %i", ipc->getCallingPid(),
753 ipc->getCallingUid());
754 if (checkCallingPermission(String16(kPermissionDump))) {
755 bool enabled = true;
756 if (args.size() >= 2) {
757 enabled = atoi(args[1].c_str()) != 0;
758 }
759 mProcessor->setPrintLogs(enabled);
760 return NO_ERROR;
761 } else {
762 return PERMISSION_DENIED;
763 }
764}
765
Dianne Hackborn3accca02013-09-20 09:32:11 -0700766Status StatsService::informAllUidData(const vector<int32_t>& uid, const vector<int64_t>& version,
David Chende701692017-10-05 13:16:02 -0700767 const vector<String16>& app) {
Jeff Sharkey6b649252018-04-16 09:50:22 -0600768 ENFORCE_UID(AID_SYSTEM);
769
yro74fed972017-11-27 14:42:42 -0800770 VLOG("StatsService::informAllUidData was called");
David Chenbd125272018-04-04 19:02:50 -0700771 mUidMap->updateMap(getElapsedRealtimeNs(), uid, version, app);
yro74fed972017-11-27 14:42:42 -0800772 VLOG("StatsService::informAllUidData succeeded");
David Chende701692017-10-05 13:16:02 -0700773
774 return Status::ok();
775}
776
Dianne Hackborn3accca02013-09-20 09:32:11 -0700777Status StatsService::informOnePackage(const String16& app, int32_t uid, int64_t version) {
Jeff Sharkey6b649252018-04-16 09:50:22 -0600778 ENFORCE_UID(AID_SYSTEM);
David Chende701692017-10-05 13:16:02 -0700779
Jeff Sharkey6b649252018-04-16 09:50:22 -0600780 VLOG("StatsService::informOnePackage was called");
David Chenbd125272018-04-04 19:02:50 -0700781 mUidMap->updateApp(getElapsedRealtimeNs(), app, uid, version);
David Chende701692017-10-05 13:16:02 -0700782 return Status::ok();
783}
784
785Status StatsService::informOnePackageRemoved(const String16& app, int32_t uid) {
Jeff Sharkey6b649252018-04-16 09:50:22 -0600786 ENFORCE_UID(AID_SYSTEM);
David Chende701692017-10-05 13:16:02 -0700787
Jeff Sharkey6b649252018-04-16 09:50:22 -0600788 VLOG("StatsService::informOnePackageRemoved was called");
David Chenbd125272018-04-04 19:02:50 -0700789 mUidMap->removeApp(getElapsedRealtimeNs(), app, uid);
yro01924022018-02-20 18:20:49 -0800790 mConfigManager->RemoveConfigs(uid);
David Chende701692017-10-05 13:16:02 -0700791 return Status::ok();
792}
793
Yao Chenef99c4f2017-09-22 16:26:54 -0700794Status StatsService::informAnomalyAlarmFired() {
Jeff Sharkey6b649252018-04-16 09:50:22 -0600795 ENFORCE_UID(AID_SYSTEM);
796
yro74fed972017-11-27 14:42:42 -0800797 VLOG("StatsService::informAnomalyAlarmFired was called");
Yangster-macb142cc82018-03-30 15:22:08 -0700798 int64_t currentTimeSec = getElapsedRealtimeSec();
Yangster-mac932ecec2018-02-01 10:23:52 -0800799 std::unordered_set<sp<const InternalAlarm>, SpHash<InternalAlarm>> alarmSet =
800 mAnomalyAlarmMonitor->popSoonerThan(static_cast<uint32_t>(currentTimeSec));
801 if (alarmSet.size() > 0) {
Bookatz66fe0612018-02-07 18:51:48 -0800802 VLOG("Found an anomaly alarm that fired.");
Yangster-mac932ecec2018-02-01 10:23:52 -0800803 mProcessor->onAnomalyAlarmFired(currentTimeSec * NS_PER_SEC, alarmSet);
Bookatz66fe0612018-02-07 18:51:48 -0800804 } else {
805 VLOG("Cannot find an anomaly alarm that fired. Perhaps it was recently cancelled.");
806 }
Bookatz1b0b1142017-09-08 11:58:42 -0700807 return Status::ok();
808}
809
Yangster-mac932ecec2018-02-01 10:23:52 -0800810Status StatsService::informAlarmForSubscriberTriggeringFired() {
Jeff Sharkey6b649252018-04-16 09:50:22 -0600811 ENFORCE_UID(AID_SYSTEM);
812
Yangster-mac932ecec2018-02-01 10:23:52 -0800813 VLOG("StatsService::informAlarmForSubscriberTriggeringFired was called");
Yangster-macb142cc82018-03-30 15:22:08 -0700814 int64_t currentTimeSec = getElapsedRealtimeSec();
Yangster-mac932ecec2018-02-01 10:23:52 -0800815 std::unordered_set<sp<const InternalAlarm>, SpHash<InternalAlarm>> alarmSet =
816 mPeriodicAlarmMonitor->popSoonerThan(static_cast<uint32_t>(currentTimeSec));
817 if (alarmSet.size() > 0) {
818 VLOG("Found periodic alarm fired.");
819 mProcessor->onPeriodicAlarmFired(currentTimeSec * NS_PER_SEC, alarmSet);
820 } else {
821 ALOGW("Cannot find an periodic alarm that fired. Perhaps it was recently cancelled.");
822 }
823 return Status::ok();
824}
825
Yao Chenef99c4f2017-09-22 16:26:54 -0700826Status StatsService::informPollAlarmFired() {
Jeff Sharkey6b649252018-04-16 09:50:22 -0600827 ENFORCE_UID(AID_SYSTEM);
828
yro74fed972017-11-27 14:42:42 -0800829 VLOG("StatsService::informPollAlarmFired was called");
Yangster-mac15f6bbc2018-04-08 11:52:26 -0700830 mProcessor->informPullAlarmFired(getElapsedRealtimeNs());
yro74fed972017-11-27 14:42:42 -0800831 VLOG("StatsService::informPollAlarmFired succeeded");
Bookatz1b0b1142017-09-08 11:58:42 -0700832 return Status::ok();
833}
834
Yao Chenef99c4f2017-09-22 16:26:54 -0700835Status StatsService::systemRunning() {
Jeff Sharkey6b649252018-04-16 09:50:22 -0600836 ENFORCE_UID(AID_SYSTEM);
Joe Onorato5dcbc6c2017-08-29 15:13:58 -0700837
838 // When system_server is up and running, schedule the dropbox task to run.
yro74fed972017-11-27 14:42:42 -0800839 VLOG("StatsService::systemRunning");
Bookatzb487b552017-09-18 11:26:01 -0700840 sayHiToStatsCompanion();
Joe Onorato5dcbc6c2017-08-29 15:13:58 -0700841 return Status::ok();
842}
843
Yangster-mac892f3d32018-05-02 14:16:48 -0700844Status StatsService::informDeviceShutdown() {
Jeff Sharkey6b649252018-04-16 09:50:22 -0600845 ENFORCE_UID(AID_SYSTEM);
Chenjie Yue36018b2018-04-16 15:18:30 -0700846 VLOG("StatsService::informDeviceShutdown");
Yangster-mac892f3d32018-05-02 14:16:48 -0700847 mProcessor->WriteDataToDisk(DEVICE_SHUTDOWN);
yro947fbce2017-11-15 22:50:23 -0800848 return Status::ok();
849}
850
Yao Chenef99c4f2017-09-22 16:26:54 -0700851void StatsService::sayHiToStatsCompanion() {
Bookatzb487b552017-09-18 11:26:01 -0700852 sp<IStatsCompanionService> statsCompanion = getStatsCompanionService();
853 if (statsCompanion != nullptr) {
yro74fed972017-11-27 14:42:42 -0800854 VLOG("Telling statsCompanion that statsd is ready");
Bookatzb487b552017-09-18 11:26:01 -0700855 statsCompanion->statsdReady();
856 } else {
yro74fed972017-11-27 14:42:42 -0800857 VLOG("Could not access statsCompanion");
Bookatzb487b552017-09-18 11:26:01 -0700858 }
859}
860
Yao Chenef99c4f2017-09-22 16:26:54 -0700861Status StatsService::statsCompanionReady() {
Jeff Sharkey6b649252018-04-16 09:50:22 -0600862 ENFORCE_UID(AID_SYSTEM);
863
yro74fed972017-11-27 14:42:42 -0800864 VLOG("StatsService::statsCompanionReady was called");
Bookatzb487b552017-09-18 11:26:01 -0700865 sp<IStatsCompanionService> statsCompanion = getStatsCompanionService();
866 if (statsCompanion == nullptr) {
Yao Chenef99c4f2017-09-22 16:26:54 -0700867 return Status::fromExceptionCode(
868 Status::EX_NULL_POINTER,
869 "statscompanion unavailable despite it contacting statsd!");
Bookatzb487b552017-09-18 11:26:01 -0700870 }
yro74fed972017-11-27 14:42:42 -0800871 VLOG("StatsService::statsCompanionReady linking to statsCompanion.");
Chenjie Yuaa5b2012018-03-21 13:53:15 -0700872 IInterface::asBinder(statsCompanion)->linkToDeath(this);
873 mStatsPullerManager.SetStatsCompanionService(statsCompanion);
Yangster-mac932ecec2018-02-01 10:23:52 -0800874 mAnomalyAlarmMonitor->setStatsCompanionService(statsCompanion);
875 mPeriodicAlarmMonitor->setStatsCompanionService(statsCompanion);
Bookatzc6977972018-01-16 16:55:05 -0800876 SubscriberReporter::getInstance().setStatsCompanionService(statsCompanion);
Bookatzb487b552017-09-18 11:26:01 -0700877 return Status::ok();
878}
879
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700880void StatsService::Startup() {
881 mConfigManager->Startup();
Bookatz906a35c2017-09-20 15:26:44 -0700882}
883
Yao Chen163d2602018-04-10 10:39:53 -0700884void StatsService::OnLogEvent(LogEvent* event, bool reconnectionStarts) {
885 mProcessor->OnLogEvent(event, reconnectionStarts);
Bookatz906a35c2017-09-20 15:26:44 -0700886}
887
Jeff Sharkey6b649252018-04-16 09:50:22 -0600888Status StatsService::getData(int64_t key, const String16& packageName, vector<uint8_t>* output) {
889 ENFORCE_DUMP_AND_USAGE_STATS(packageName);
890
David Chenadaf8b32017-11-03 15:42:08 -0700891 IPCThreadState* ipc = IPCThreadState::self();
yro74fed972017-11-27 14:42:42 -0800892 VLOG("StatsService::getData with Pid %i, Uid %i", ipc->getCallingPid(), ipc->getCallingUid());
Bookatz4f716292018-04-10 17:15:12 -0700893 ConfigKey configKey(ipc->getCallingUid(), key);
David Chen56ae0d92018-05-11 16:00:22 -0700894 mProcessor->onDumpReport(configKey, getElapsedRealtimeNs(), false /* include_current_bucket*/,
895 GET_DATA_CALLED, output);
Bookatz4f716292018-04-10 17:15:12 -0700896 return Status::ok();
yro31eb67b2017-10-24 13:33:21 -0700897}
898
Jeff Sharkey6b649252018-04-16 09:50:22 -0600899Status StatsService::getMetadata(const String16& packageName, vector<uint8_t>* output) {
900 ENFORCE_DUMP_AND_USAGE_STATS(packageName);
901
David Chen2e8f3802017-11-22 10:56:48 -0800902 IPCThreadState* ipc = IPCThreadState::self();
903 VLOG("StatsService::getMetadata with Pid %i, Uid %i", ipc->getCallingPid(),
904 ipc->getCallingUid());
Bookatz4f716292018-04-10 17:15:12 -0700905 StatsdStats::getInstance().dumpStats(output, false); // Don't reset the counters.
906 return Status::ok();
David Chen2e8f3802017-11-22 10:56:48 -0800907}
908
Jeff Sharkey6b649252018-04-16 09:50:22 -0600909Status StatsService::addConfiguration(int64_t key, const vector <uint8_t>& config,
910 const String16& packageName) {
911 ENFORCE_DUMP_AND_USAGE_STATS(packageName);
912
David Chenadaf8b32017-11-03 15:42:08 -0700913 IPCThreadState* ipc = IPCThreadState::self();
Bookatz4f716292018-04-10 17:15:12 -0700914 if (addConfigurationChecked(ipc->getCallingUid(), key, config)) {
David Chen661f7912018-01-22 17:46:24 -0800915 return Status::ok();
916 } else {
Bookatz4f716292018-04-10 17:15:12 -0700917 ALOGE("Could not parse malformatted StatsdConfig");
918 return Status::fromExceptionCode(binder::Status::EX_ILLEGAL_ARGUMENT,
919 "config does not correspond to a StatsdConfig proto");
David Chen661f7912018-01-22 17:46:24 -0800920 }
921}
922
David Chen9fdd4032018-03-20 14:38:56 -0700923bool StatsService::addConfigurationChecked(int uid, int64_t key, const vector<uint8_t>& config) {
924 ConfigKey configKey(uid, key);
925 StatsdConfig cfg;
926 if (config.size() > 0) { // If the config is empty, skip parsing.
927 if (!cfg.ParseFromArray(&config[0], config.size())) {
928 return false;
929 }
930 }
931 mConfigManager->UpdateConfig(configKey, cfg);
932 return true;
933}
934
Jeff Sharkey6b649252018-04-16 09:50:22 -0600935Status StatsService::removeDataFetchOperation(int64_t key, const String16& packageName) {
936 ENFORCE_DUMP_AND_USAGE_STATS(packageName);
937
Bookatz4f716292018-04-10 17:15:12 -0700938 IPCThreadState* ipc = IPCThreadState::self();
939 ConfigKey configKey(ipc->getCallingUid(), key);
940 mConfigManager->RemoveConfigReceiver(configKey);
941 return Status::ok();
David Chen661f7912018-01-22 17:46:24 -0800942}
943
Jeff Sharkey6b649252018-04-16 09:50:22 -0600944Status StatsService::setDataFetchOperation(int64_t key,
945 const sp<android::IBinder>& intentSender,
946 const String16& packageName) {
947 ENFORCE_DUMP_AND_USAGE_STATS(packageName);
948
Bookatz4f716292018-04-10 17:15:12 -0700949 IPCThreadState* ipc = IPCThreadState::self();
950 ConfigKey configKey(ipc->getCallingUid(), key);
951 mConfigManager->SetConfigReceiver(configKey, intentSender);
David Chen48944902018-05-03 10:29:11 -0700952 if (StorageManager::hasConfigMetricsReport(configKey)) {
953 VLOG("StatsService::setDataFetchOperation marking configKey %s to dump reports on disk",
954 configKey.ToString().c_str());
955 mProcessor->noteOnDiskData(configKey);
956 }
Bookatz4f716292018-04-10 17:15:12 -0700957 return Status::ok();
yro31eb67b2017-10-24 13:33:21 -0700958}
959
Jeff Sharkey6b649252018-04-16 09:50:22 -0600960Status StatsService::removeConfiguration(int64_t key, const String16& packageName) {
961 ENFORCE_DUMP_AND_USAGE_STATS(packageName);
962
Bookatz4f716292018-04-10 17:15:12 -0700963 IPCThreadState* ipc = IPCThreadState::self();
964 ConfigKey configKey(ipc->getCallingUid(), key);
965 mConfigManager->RemoveConfig(configKey);
966 SubscriberReporter::getInstance().removeConfig(configKey);
967 return Status::ok();
yro31eb67b2017-10-24 13:33:21 -0700968}
969
Bookatzc6977972018-01-16 16:55:05 -0800970Status StatsService::setBroadcastSubscriber(int64_t configId,
971 int64_t subscriberId,
Jeff Sharkey6b649252018-04-16 09:50:22 -0600972 const sp<android::IBinder>& intentSender,
973 const String16& packageName) {
974 ENFORCE_DUMP_AND_USAGE_STATS(packageName);
975
Bookatzc6977972018-01-16 16:55:05 -0800976 VLOG("StatsService::setBroadcastSubscriber called.");
Bookatz4f716292018-04-10 17:15:12 -0700977 IPCThreadState* ipc = IPCThreadState::self();
978 ConfigKey configKey(ipc->getCallingUid(), configId);
979 SubscriberReporter::getInstance()
980 .setBroadcastSubscriber(configKey, subscriberId, intentSender);
981 return Status::ok();
Bookatzc6977972018-01-16 16:55:05 -0800982}
983
984Status StatsService::unsetBroadcastSubscriber(int64_t configId,
Jeff Sharkey6b649252018-04-16 09:50:22 -0600985 int64_t subscriberId,
986 const String16& packageName) {
987 ENFORCE_DUMP_AND_USAGE_STATS(packageName);
988
Bookatzc6977972018-01-16 16:55:05 -0800989 VLOG("StatsService::unsetBroadcastSubscriber called.");
Bookatz4f716292018-04-10 17:15:12 -0700990 IPCThreadState* ipc = IPCThreadState::self();
991 ConfigKey configKey(ipc->getCallingUid(), configId);
992 SubscriberReporter::getInstance()
993 .unsetBroadcastSubscriber(configKey, subscriberId);
994 return Status::ok();
Bookatzc6977972018-01-16 16:55:05 -0800995}
996
yrobe6d7f92018-05-04 13:02:53 -0700997Status StatsService::sendAppBreadcrumbAtom(int32_t label, int32_t state) {
998 // Permission check not necessary as it's meant for applications to write to
999 // statsd.
1000 android::util::stats_write(util::APP_BREADCRUMB_REPORTED,
1001 IPCThreadState::self()->getCallingUid(), label,
1002 state);
1003 return Status::ok();
1004}
1005
David Chen1d7b0cd2017-11-15 14:20:04 -08001006void StatsService::binderDied(const wp <IBinder>& who) {
Chenjie Yuaa5b2012018-03-21 13:53:15 -07001007 ALOGW("statscompanion service died");
Yangster-mac892f3d32018-05-02 14:16:48 -07001008 StatsdStats::getInstance().noteSystemServerRestart(getWallClockSec());
1009 if (mProcessor != nullptr) {
1010 ALOGW("Reset statsd upon system server restars.");
1011 mProcessor->WriteDataToDisk(STATSCOMPANION_DIED);
1012 mProcessor->resetConfigs();
1013 }
Chenjie Yuaa5b2012018-03-21 13:53:15 -07001014 mAnomalyAlarmMonitor->setStatsCompanionService(nullptr);
1015 mPeriodicAlarmMonitor->setStatsCompanionService(nullptr);
1016 SubscriberReporter::getInstance().setStatsCompanionService(nullptr);
1017 mStatsPullerManager.SetStatsCompanionService(nullptr);
yro31eb67b2017-10-24 13:33:21 -07001018}
1019
Yao Chenef99c4f2017-09-22 16:26:54 -07001020} // namespace statsd
1021} // namespace os
1022} // namespace android