blob: ae44ee917d690e9f653332b81f8505a54d25908d [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 Yue2219202018-06-08 10:07:51 -0700153 mPullerManager = new StatsPullerManager();
Chenjie Yu80f91122018-01-31 20:24:50 -0800154 StatsPuller::SetUidMap(mUidMap);
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700155 mConfigManager = new ConfigManager();
Chenjie Yue2219202018-06-08 10:07:51 -0700156 mProcessor = new StatsLogProcessor(
157 mUidMap, mPullerManager, mAnomalyAlarmMonitor, mPeriodicAlarmMonitor,
158 getElapsedRealtimeNs(), [this](const ConfigKey& key) {
159 sp<IStatsCompanionService> sc = getStatsCompanionService();
160 auto receiver = mConfigManager->GetConfigReceiver(key);
161 if (sc == nullptr) {
162 VLOG("Could not find StatsCompanionService");
163 return false;
164 } else if (receiver == nullptr) {
165 VLOG("Statscompanion could not find a broadcast receiver for %s",
166 key.ToString().c_str());
167 return false;
168 } else {
169 sc->sendDataBroadcast(receiver, mProcessor->getLastReportTimeNs(key));
170 return true;
171 }
172 });
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700173
174 mConfigManager->AddListener(mProcessor);
175
176 init_system_properties();
Joe Onorato5dcbc6c2017-08-29 15:13:58 -0700177}
178
Yao Chenef99c4f2017-09-22 16:26:54 -0700179StatsService::~StatsService() {
Joe Onorato5dcbc6c2017-08-29 15:13:58 -0700180}
181
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700182void StatsService::init_system_properties() {
183 mEngBuild = false;
184 const prop_info* buildType = __system_property_find("ro.build.type");
185 if (buildType != NULL) {
186 __system_property_read_callback(buildType, init_build_type_callback, this);
187 }
David Chen0656b7a2017-09-13 15:53:39 -0700188}
189
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700190void StatsService::init_build_type_callback(void* cookie, const char* /*name*/, const char* value,
191 uint32_t serial) {
Yao Chen729093d2017-10-16 10:33:26 -0700192 if (0 == strcmp("eng", value) || 0 == strcmp("userdebug", value)) {
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700193 reinterpret_cast<StatsService*>(cookie)->mEngBuild = true;
194 }
195}
196
197/**
198 * Implement our own because the default binder implementation isn't
199 * properly handling SHELL_COMMAND_TRANSACTION.
200 */
Yao Chenef99c4f2017-09-22 16:26:54 -0700201status_t StatsService::onTransact(uint32_t code, const Parcel& data, Parcel* reply,
202 uint32_t flags) {
Joe Onorato2cbc2cc2017-08-30 17:03:23 -0700203 switch (code) {
204 case SHELL_COMMAND_TRANSACTION: {
205 int in = data.readFileDescriptor();
206 int out = data.readFileDescriptor();
207 int err = data.readFileDescriptor();
208 int argc = data.readInt32();
209 Vector<String8> args;
210 for (int i = 0; i < argc && data.dataAvail() > 0; i++) {
211 args.add(String8(data.readString16()));
212 }
Yao Chenef99c4f2017-09-22 16:26:54 -0700213 sp<IShellCallback> shellCallback = IShellCallback::asInterface(data.readStrongBinder());
214 sp<IResultReceiver> resultReceiver =
215 IResultReceiver::asInterface(data.readStrongBinder());
Joe Onorato2cbc2cc2017-08-30 17:03:23 -0700216
217 FILE* fin = fdopen(in, "r");
218 FILE* fout = fdopen(out, "w");
219 FILE* ferr = fdopen(err, "w");
220
221 if (fin == NULL || fout == NULL || ferr == NULL) {
222 resultReceiver->send(NO_MEMORY);
223 } else {
224 err = command(fin, fout, ferr, args);
225 resultReceiver->send(err);
226 }
227
228 if (fin != NULL) {
229 fflush(fin);
230 fclose(fin);
231 }
232 if (fout != NULL) {
233 fflush(fout);
234 fclose(fout);
235 }
236 if (fout != NULL) {
237 fflush(ferr);
238 fclose(ferr);
239 }
240
241 return NO_ERROR;
242 }
Yao Chenef99c4f2017-09-22 16:26:54 -0700243 default: { return BnStatsManager::onTransact(code, data, reply, flags); }
Joe Onorato2cbc2cc2017-08-30 17:03:23 -0700244 }
245}
246
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700247/**
248 * Write debugging data about statsd.
249 */
Yao Chenef99c4f2017-09-22 16:26:54 -0700250status_t StatsService::dump(int fd, const Vector<String16>& args) {
Tej Singhdd83d702018-04-10 17:24:50 -0700251 if (!checkCallingPermission(String16(kPermissionDump))) {
252 return PERMISSION_DENIED;
253 }
Joe Onorato5dcbc6c2017-08-29 15:13:58 -0700254 FILE* out = fdopen(fd, "w");
255 if (out == NULL) {
256 return NO_MEMORY; // the fd is already open
257 }
258
Yao Chen884c8c12018-01-26 10:36:25 -0800259 bool verbose = false;
Tej Singh41b3f9a2018-04-03 17:06:35 -0700260 bool proto = false;
Yao Chen884c8c12018-01-26 10:36:25 -0800261 if (args.size() > 0 && !args[0].compare(String16("-v"))) {
262 verbose = true;
263 }
Tej Singh41b3f9a2018-04-03 17:06:35 -0700264 if (args.size() > 0 && !args[args.size()-1].compare(String16("--proto"))) {
265 proto = true;
266 }
Yao Chen884c8c12018-01-26 10:36:25 -0800267
Tej Singh41b3f9a2018-04-03 17:06:35 -0700268 dump_impl(out, verbose, proto);
Joe Onorato5dcbc6c2017-08-29 15:13:58 -0700269
270 fclose(out);
271 return NO_ERROR;
272}
273
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700274/**
Tej Singh41b3f9a2018-04-03 17:06:35 -0700275 * Write debugging data about statsd in text or proto format.
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700276 */
Tej Singh41b3f9a2018-04-03 17:06:35 -0700277void StatsService::dump_impl(FILE* out, bool verbose, bool proto) {
278 if (proto) {
279 vector<uint8_t> data;
280 StatsdStats::getInstance().dumpStats(&data, false); // does not reset statsdStats.
281 for (size_t i = 0; i < data.size(); i ++) {
282 fprintf(out, "%c", data[i]);
283 }
284 } else {
285 StatsdStats::getInstance().dumpStats(out);
286 mProcessor->dumpStates(out, verbose);
287 }
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700288}
289
290/**
291 * Implementation of the adb shell cmd stats command.
292 */
Yao Chenef99c4f2017-09-22 16:26:54 -0700293status_t StatsService::command(FILE* in, FILE* out, FILE* err, Vector<String8>& args) {
Jeff Sharkey6b649252018-04-16 09:50:22 -0600294 uid_t uid = IPCThreadState::self()->getCallingUid();
295 if (uid != AID_ROOT && uid != AID_SHELL) {
296 return PERMISSION_DENIED;
297 }
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700298
299 const int argCount = args.size();
300 if (argCount >= 1) {
301 // adb shell cmd stats config ...
David Chen0656b7a2017-09-13 15:53:39 -0700302 if (!args[0].compare(String8("config"))) {
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700303 return cmd_config(in, out, err, args);
David Chen0656b7a2017-09-13 15:53:39 -0700304 }
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700305
David Chende701692017-10-05 13:16:02 -0700306 if (!args[0].compare(String8("print-uid-map"))) {
Yao Chend10f7b12017-12-18 12:53:50 -0800307 return cmd_print_uid_map(out, args);
David Chende701692017-10-05 13:16:02 -0700308 }
Yao Chen729093d2017-10-16 10:33:26 -0700309
310 if (!args[0].compare(String8("dump-report"))) {
311 return cmd_dump_report(out, err, args);
312 }
David Chen1481fe12017-10-16 13:16:34 -0700313
314 if (!args[0].compare(String8("pull-source")) && args.size() > 1) {
315 return cmd_print_pulled_metrics(out, args);
316 }
David Chenadaf8b32017-11-03 15:42:08 -0700317
318 if (!args[0].compare(String8("send-broadcast"))) {
David Chen1d7b0cd2017-11-15 14:20:04 -0800319 return cmd_trigger_broadcast(out, args);
320 }
321
322 if (!args[0].compare(String8("print-stats"))) {
Yao Chenb3561512017-11-21 18:07:17 -0800323 return cmd_print_stats(out, args);
David Chenadaf8b32017-11-03 15:42:08 -0700324 }
yro87d983c2017-11-14 21:31:43 -0800325
Yao Chen8d9989b2017-11-18 18:54:50 -0800326 if (!args[0].compare(String8("meminfo"))) {
327 return cmd_dump_memory_info(out);
328 }
yro947fbce2017-11-15 22:50:23 -0800329
330 if (!args[0].compare(String8("write-to-disk"))) {
331 return cmd_write_data_to_disk(out);
332 }
Bookatzb223c4e2018-02-01 15:35:04 -0800333
David Chen0b5c90c2018-01-25 16:51:49 -0800334 if (!args[0].compare(String8("log-app-breadcrumb"))) {
335 return cmd_log_app_breadcrumb(out, args);
Bookatzb223c4e2018-02-01 15:35:04 -0800336 }
Chenjie Yufa22d652018-02-05 14:37:48 -0800337
338 if (!args[0].compare(String8("clear-puller-cache"))) {
339 return cmd_clear_puller_cache(out);
340 }
Yao Chen876889c2018-05-02 11:16:16 -0700341
342 if (!args[0].compare(String8("print-logs"))) {
343 return cmd_print_logs(out, args);
344 }
Joe Onorato2cbc2cc2017-08-30 17:03:23 -0700345 }
Joe Onorato2cbc2cc2017-08-30 17:03:23 -0700346
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700347 print_cmd_help(out);
Joe Onorato2cbc2cc2017-08-30 17:03:23 -0700348 return NO_ERROR;
349}
350
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700351void StatsService::print_cmd_help(FILE* out) {
352 fprintf(out,
353 "usage: adb shell cmd stats print-stats-log [tag_required] "
354 "[timestamp_nsec_optional]\n");
355 fprintf(out, "\n");
356 fprintf(out, "\n");
Yao Chen8d9989b2017-11-18 18:54:50 -0800357 fprintf(out, "usage: adb shell cmd stats meminfo\n");
358 fprintf(out, "\n");
359 fprintf(out, " Prints the malloc debug information. You need to run the following first: \n");
360 fprintf(out, " # adb shell stop\n");
361 fprintf(out, " # adb shell setprop libc.debug.malloc.program statsd \n");
362 fprintf(out, " # adb shell setprop libc.debug.malloc.options backtrace \n");
363 fprintf(out, " # adb shell start\n");
364 fprintf(out, "\n");
365 fprintf(out, "\n");
Yao Chend10f7b12017-12-18 12:53:50 -0800366 fprintf(out, "usage: adb shell cmd stats print-uid-map [PKG]\n");
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700367 fprintf(out, "\n");
368 fprintf(out, " Prints the UID, app name, version mapping.\n");
Yao Chend10f7b12017-12-18 12:53:50 -0800369 fprintf(out, " PKG Optional package name to print the uids of the package\n");
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700370 fprintf(out, "\n");
371 fprintf(out, "\n");
yro3fca5ba2017-11-17 13:22:52 -0800372 fprintf(out, "usage: adb shell cmd stats pull-source [int] \n");
David Chen1481fe12017-10-16 13:16:34 -0700373 fprintf(out, "\n");
374 fprintf(out, " Prints the output of a pulled metrics source (int indicates source)\n");
375 fprintf(out, "\n");
376 fprintf(out, "\n");
yro947fbce2017-11-15 22:50:23 -0800377 fprintf(out, "usage: adb shell cmd stats write-to-disk \n");
378 fprintf(out, "\n");
379 fprintf(out, " Flushes all data on memory to disk.\n");
380 fprintf(out, "\n");
381 fprintf(out, "\n");
David Chen0b5c90c2018-01-25 16:51:49 -0800382 fprintf(out, "usage: adb shell cmd stats log-app-breadcrumb [UID] LABEL STATE\n");
383 fprintf(out, " Writes an AppBreadcrumbReported event to the statslog buffer.\n");
Bookatzb223c4e2018-02-01 15:35:04 -0800384 fprintf(out, " UID The uid to use. It is only possible to pass a UID\n");
385 fprintf(out, " parameter on eng builds. If UID is omitted the calling\n");
386 fprintf(out, " uid is used.\n");
387 fprintf(out, " LABEL Integer in [0, 15], as per atoms.proto.\n");
388 fprintf(out, " STATE Integer in [0, 3], as per atoms.proto.\n");
389 fprintf(out, "\n");
390 fprintf(out, "\n");
yro74fed972017-11-27 14:42:42 -0800391 fprintf(out, "usage: adb shell cmd stats config remove [UID] [NAME]\n");
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700392 fprintf(out, "usage: adb shell cmd stats config update [UID] NAME\n");
393 fprintf(out, "\n");
394 fprintf(out, " Adds, updates or removes a configuration. The proto should be in\n");
yro74fed972017-11-27 14:42:42 -0800395 fprintf(out, " wire-encoded protobuf format and passed via stdin. If no UID and name is\n");
396 fprintf(out, " provided, then all configs will be removed from memory and disk.\n");
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700397 fprintf(out, "\n");
398 fprintf(out, " UID The uid to use. It is only possible to pass the UID\n");
yro74fed972017-11-27 14:42:42 -0800399 fprintf(out, " parameter on eng builds. If UID is omitted the calling\n");
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700400 fprintf(out, " uid is used.\n");
401 fprintf(out, " NAME The per-uid name to use\n");
Yao Chen5154a3792017-10-30 22:57:06 -0700402 fprintf(out, "\n");
yro74fed972017-11-27 14:42:42 -0800403 fprintf(out, "\n *Note: If both UID and NAME are omitted then all configs will\n");
404 fprintf(out, "\n be removed from memory and disk!\n");
Yao Chen5154a3792017-10-30 22:57:06 -0700405 fprintf(out, "\n");
Chenjie Yub236c862017-11-28 22:20:44 -0800406 fprintf(out, "usage: adb shell cmd stats dump-report [UID] NAME [--proto]\n");
Yao Chen5154a3792017-10-30 22:57:06 -0700407 fprintf(out, " Dump all metric data for a configuration.\n");
408 fprintf(out, " UID The uid of the configuration. It is only possible to pass\n");
409 fprintf(out, " the UID parameter on eng builds. If UID is omitted the\n");
410 fprintf(out, " calling uid is used.\n");
411 fprintf(out, " NAME The name of the configuration\n");
Chenjie Yub236c862017-11-28 22:20:44 -0800412 fprintf(out, " --proto Print proto binary.\n");
David Chenadaf8b32017-11-03 15:42:08 -0700413 fprintf(out, "\n");
414 fprintf(out, "\n");
David Chen1d7b0cd2017-11-15 14:20:04 -0800415 fprintf(out, "usage: adb shell cmd stats send-broadcast [UID] NAME\n");
416 fprintf(out, " Send a broadcast that triggers the subscriber to fetch metrics.\n");
417 fprintf(out, " UID The uid of the configuration. It is only possible to pass\n");
418 fprintf(out, " the UID parameter on eng builds. If UID is omitted the\n");
419 fprintf(out, " calling uid is used.\n");
420 fprintf(out, " NAME The name of the configuration\n");
421 fprintf(out, "\n");
422 fprintf(out, "\n");
Yao Chenf5acabe2018-01-17 14:10:34 -0800423 fprintf(out, "usage: adb shell cmd stats print-stats\n");
David Chen1d7b0cd2017-11-15 14:20:04 -0800424 fprintf(out, " Prints some basic stats.\n");
Tej Singh41b3f9a2018-04-03 17:06:35 -0700425 fprintf(out, " --proto Print proto binary instead of string format.\n");
Chenjie Yufa22d652018-02-05 14:37:48 -0800426 fprintf(out, "\n");
427 fprintf(out, "\n");
428 fprintf(out, "usage: adb shell cmd stats clear-puller-cache\n");
429 fprintf(out, " Clear cached puller data.\n");
Yao Chen876889c2018-05-02 11:16:16 -0700430 fprintf(out, "\n");
431 fprintf(out, "usage: adb shell cmd stats print-logs\n");
432 fprintf(out, " Only works on eng build\n");
David Chenadaf8b32017-11-03 15:42:08 -0700433}
434
David Chen1d7b0cd2017-11-15 14:20:04 -0800435status_t StatsService::cmd_trigger_broadcast(FILE* out, Vector<String8>& args) {
436 string name;
437 bool good = false;
438 int uid;
439 const int argCount = args.size();
440 if (argCount == 2) {
441 // Automatically pick the UID
442 uid = IPCThreadState::self()->getCallingUid();
443 // TODO: What if this isn't a binder call? Should we fail?
444 name.assign(args[1].c_str(), args[1].size());
445 good = true;
446 } else if (argCount == 3) {
447 // If it's a userdebug or eng build, then the shell user can
448 // impersonate other uids.
449 if (mEngBuild) {
450 const char* s = args[1].c_str();
451 if (*s != '\0') {
452 char* end = NULL;
453 uid = strtol(s, &end, 0);
454 if (*end == '\0') {
455 name.assign(args[2].c_str(), args[2].size());
456 good = true;
457 }
458 }
459 } else {
460 fprintf(out,
461 "The metrics can only be dumped for other UIDs on eng or userdebug "
462 "builds.\n");
463 }
464 }
465 if (!good) {
466 print_cmd_help(out);
467 return UNKNOWN_ERROR;
468 }
David Chend37bc232018-04-12 18:05:11 -0700469 ConfigKey key(uid, StrToInt64(name));
470 auto receiver = mConfigManager->GetConfigReceiver(key);
yro4d889e62017-11-17 15:44:48 -0800471 sp<IStatsCompanionService> sc = getStatsCompanionService();
David Chen661f7912018-01-22 17:46:24 -0800472 if (sc == nullptr) {
473 VLOG("Could not access statsCompanion");
474 } else if (receiver == nullptr) {
475 VLOG("Could not find receiver for %s, %s", args[1].c_str(), args[2].c_str())
476 } else {
David Chend37bc232018-04-12 18:05:11 -0700477 sc->sendDataBroadcast(receiver, mProcessor->getLastReportTimeNs(key));
yro74fed972017-11-27 14:42:42 -0800478 VLOG("StatsService::trigger broadcast succeeded to %s, %s", args[1].c_str(),
479 args[2].c_str());
yro4d889e62017-11-17 15:44:48 -0800480 }
481
David Chenadaf8b32017-11-03 15:42:08 -0700482 return NO_ERROR;
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700483}
484
485status_t StatsService::cmd_config(FILE* in, FILE* out, FILE* err, Vector<String8>& args) {
486 const int argCount = args.size();
487 if (argCount >= 2) {
488 if (args[1] == "update" || args[1] == "remove") {
489 bool good = false;
490 int uid = -1;
491 string name;
492
493 if (argCount == 3) {
494 // Automatically pick the UID
495 uid = IPCThreadState::self()->getCallingUid();
496 // TODO: What if this isn't a binder call? Should we fail?
497 name.assign(args[2].c_str(), args[2].size());
498 good = true;
499 } else if (argCount == 4) {
500 // If it's a userdebug or eng build, then the shell user can
501 // impersonate other uids.
502 if (mEngBuild) {
503 const char* s = args[2].c_str();
504 if (*s != '\0') {
505 char* end = NULL;
506 uid = strtol(s, &end, 0);
507 if (*end == '\0') {
508 name.assign(args[3].c_str(), args[3].size());
509 good = true;
510 }
511 }
512 } else {
Yao Chen729093d2017-10-16 10:33:26 -0700513 fprintf(err,
514 "The config can only be set for other UIDs on eng or userdebug "
515 "builds.\n");
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700516 }
yroe5f82922018-01-22 18:37:27 -0800517 } else if (argCount == 2 && args[1] == "remove") {
518 good = true;
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700519 }
520
521 if (!good) {
522 // If arg parsing failed, print the help text and return an error.
523 print_cmd_help(out);
524 return UNKNOWN_ERROR;
525 }
526
527 if (args[1] == "update") {
yro255f72e2018-02-26 15:15:17 -0800528 char* endp;
529 int64_t configID = strtoll(name.c_str(), &endp, 10);
530 if (endp == name.c_str() || *endp != '\0') {
531 fprintf(err, "Error parsing config ID.\n");
532 return UNKNOWN_ERROR;
533 }
534
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700535 // Read stream into buffer.
536 string buffer;
537 if (!android::base::ReadFdToString(fileno(in), &buffer)) {
538 fprintf(err, "Error reading stream for StatsConfig.\n");
539 return UNKNOWN_ERROR;
540 }
541
542 // Parse buffer.
543 StatsdConfig config;
544 if (!config.ParseFromString(buffer)) {
545 fprintf(err, "Error parsing proto stream for StatsConfig.\n");
546 return UNKNOWN_ERROR;
547 }
548
549 // Add / update the config.
yro255f72e2018-02-26 15:15:17 -0800550 mConfigManager->UpdateConfig(ConfigKey(uid, configID), config);
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700551 } else {
yro74fed972017-11-27 14:42:42 -0800552 if (argCount == 2) {
553 cmd_remove_all_configs(out);
554 } else {
555 // Remove the config.
Yangster-mac94e197c2018-01-02 16:03:03 -0800556 mConfigManager->RemoveConfig(ConfigKey(uid, StrToInt64(name)));
yro74fed972017-11-27 14:42:42 -0800557 }
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700558 }
559
560 return NO_ERROR;
561 }
David Chen0656b7a2017-09-13 15:53:39 -0700562 }
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700563 print_cmd_help(out);
564 return UNKNOWN_ERROR;
565}
566
Yao Chen729093d2017-10-16 10:33:26 -0700567status_t StatsService::cmd_dump_report(FILE* out, FILE* err, const Vector<String8>& args) {
568 if (mProcessor != nullptr) {
Chenjie Yub236c862017-11-28 22:20:44 -0800569 int argCount = args.size();
Yao Chen729093d2017-10-16 10:33:26 -0700570 bool good = false;
Chenjie Yub236c862017-11-28 22:20:44 -0800571 bool proto = false;
Yao Chen729093d2017-10-16 10:33:26 -0700572 int uid;
573 string name;
Chenjie Yub236c862017-11-28 22:20:44 -0800574 if (!std::strcmp("--proto", args[argCount-1].c_str())) {
575 proto = true;
576 argCount -= 1;
577 }
Yao Chen729093d2017-10-16 10:33:26 -0700578 if (argCount == 2) {
579 // Automatically pick the UID
580 uid = IPCThreadState::self()->getCallingUid();
581 // TODO: What if this isn't a binder call? Should we fail?
Yao Chen5154a3792017-10-30 22:57:06 -0700582 name.assign(args[1].c_str(), args[1].size());
Yao Chen729093d2017-10-16 10:33:26 -0700583 good = true;
584 } else if (argCount == 3) {
585 // If it's a userdebug or eng build, then the shell user can
586 // impersonate other uids.
587 if (mEngBuild) {
588 const char* s = args[1].c_str();
589 if (*s != '\0') {
590 char* end = NULL;
591 uid = strtol(s, &end, 0);
592 if (*end == '\0') {
593 name.assign(args[2].c_str(), args[2].size());
594 good = true;
595 }
596 }
597 } else {
598 fprintf(out,
599 "The metrics can only be dumped for other UIDs on eng or userdebug "
600 "builds.\n");
601 }
602 }
603 if (good) {
David Chen1d7b0cd2017-11-15 14:20:04 -0800604 vector<uint8_t> data;
David Chen926fc752018-02-23 13:31:43 -0800605 mProcessor->onDumpReport(ConfigKey(uid, StrToInt64(name)), getElapsedRealtimeNs(),
David Chen56ae0d92018-05-11 16:00:22 -0700606 false /* include_current_bucket*/, 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 Yue2219202018-06-08 10:07:51 -0700715 if (mPullerManager->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))) {
Chenjie Yue2219202018-06-08 10:07:51 -0700743 int cleared = mPullerManager->ForceClearPullerCache();
Chenjie Yufa22d652018-02-05 14:37:48 -0800744 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);
Chenjie Yue2219202018-06-08 10:07:51 -0700874 mPullerManager->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);
David Chen56ae0d92018-05-11 16:00:22 -0700895 mProcessor->onDumpReport(configKey, getElapsedRealtimeNs(), false /* include_current_bucket*/,
896 GET_DATA_CALLED, output);
Bookatz4f716292018-04-10 17:15:12 -0700897 return Status::ok();
yro31eb67b2017-10-24 13:33:21 -0700898}
899
Jeff Sharkey6b649252018-04-16 09:50:22 -0600900Status StatsService::getMetadata(const String16& packageName, vector<uint8_t>* output) {
901 ENFORCE_DUMP_AND_USAGE_STATS(packageName);
902
David Chen2e8f3802017-11-22 10:56:48 -0800903 IPCThreadState* ipc = IPCThreadState::self();
904 VLOG("StatsService::getMetadata with Pid %i, Uid %i", ipc->getCallingPid(),
905 ipc->getCallingUid());
Bookatz4f716292018-04-10 17:15:12 -0700906 StatsdStats::getInstance().dumpStats(output, false); // Don't reset the counters.
907 return Status::ok();
David Chen2e8f3802017-11-22 10:56:48 -0800908}
909
Jeff Sharkey6b649252018-04-16 09:50:22 -0600910Status StatsService::addConfiguration(int64_t key, const vector <uint8_t>& config,
911 const String16& packageName) {
912 ENFORCE_DUMP_AND_USAGE_STATS(packageName);
913
David Chenadaf8b32017-11-03 15:42:08 -0700914 IPCThreadState* ipc = IPCThreadState::self();
Bookatz4f716292018-04-10 17:15:12 -0700915 if (addConfigurationChecked(ipc->getCallingUid(), key, config)) {
David Chen661f7912018-01-22 17:46:24 -0800916 return Status::ok();
917 } else {
Bookatz4f716292018-04-10 17:15:12 -0700918 ALOGE("Could not parse malformatted StatsdConfig");
919 return Status::fromExceptionCode(binder::Status::EX_ILLEGAL_ARGUMENT,
920 "config does not correspond to a StatsdConfig proto");
David Chen661f7912018-01-22 17:46:24 -0800921 }
922}
923
David Chen9fdd4032018-03-20 14:38:56 -0700924bool StatsService::addConfigurationChecked(int uid, int64_t key, const vector<uint8_t>& config) {
925 ConfigKey configKey(uid, key);
926 StatsdConfig cfg;
927 if (config.size() > 0) { // If the config is empty, skip parsing.
928 if (!cfg.ParseFromArray(&config[0], config.size())) {
929 return false;
930 }
931 }
932 mConfigManager->UpdateConfig(configKey, cfg);
933 return true;
934}
935
Jeff Sharkey6b649252018-04-16 09:50:22 -0600936Status StatsService::removeDataFetchOperation(int64_t key, const String16& packageName) {
937 ENFORCE_DUMP_AND_USAGE_STATS(packageName);
938
Bookatz4f716292018-04-10 17:15:12 -0700939 IPCThreadState* ipc = IPCThreadState::self();
940 ConfigKey configKey(ipc->getCallingUid(), key);
941 mConfigManager->RemoveConfigReceiver(configKey);
942 return Status::ok();
David Chen661f7912018-01-22 17:46:24 -0800943}
944
Jeff Sharkey6b649252018-04-16 09:50:22 -0600945Status StatsService::setDataFetchOperation(int64_t key,
946 const sp<android::IBinder>& intentSender,
947 const String16& packageName) {
948 ENFORCE_DUMP_AND_USAGE_STATS(packageName);
949
Bookatz4f716292018-04-10 17:15:12 -0700950 IPCThreadState* ipc = IPCThreadState::self();
951 ConfigKey configKey(ipc->getCallingUid(), key);
952 mConfigManager->SetConfigReceiver(configKey, intentSender);
David Chen48944902018-05-03 10:29:11 -0700953 if (StorageManager::hasConfigMetricsReport(configKey)) {
954 VLOG("StatsService::setDataFetchOperation marking configKey %s to dump reports on disk",
955 configKey.ToString().c_str());
956 mProcessor->noteOnDiskData(configKey);
957 }
Bookatz4f716292018-04-10 17:15:12 -0700958 return Status::ok();
yro31eb67b2017-10-24 13:33:21 -0700959}
960
Jeff Sharkey6b649252018-04-16 09:50:22 -0600961Status StatsService::removeConfiguration(int64_t key, const String16& packageName) {
962 ENFORCE_DUMP_AND_USAGE_STATS(packageName);
963
Bookatz4f716292018-04-10 17:15:12 -0700964 IPCThreadState* ipc = IPCThreadState::self();
965 ConfigKey configKey(ipc->getCallingUid(), key);
966 mConfigManager->RemoveConfig(configKey);
967 SubscriberReporter::getInstance().removeConfig(configKey);
968 return Status::ok();
yro31eb67b2017-10-24 13:33:21 -0700969}
970
Bookatzc6977972018-01-16 16:55:05 -0800971Status StatsService::setBroadcastSubscriber(int64_t configId,
972 int64_t subscriberId,
Jeff Sharkey6b649252018-04-16 09:50:22 -0600973 const sp<android::IBinder>& intentSender,
974 const String16& packageName) {
975 ENFORCE_DUMP_AND_USAGE_STATS(packageName);
976
Bookatzc6977972018-01-16 16:55:05 -0800977 VLOG("StatsService::setBroadcastSubscriber called.");
Bookatz4f716292018-04-10 17:15:12 -0700978 IPCThreadState* ipc = IPCThreadState::self();
979 ConfigKey configKey(ipc->getCallingUid(), configId);
980 SubscriberReporter::getInstance()
981 .setBroadcastSubscriber(configKey, subscriberId, intentSender);
982 return Status::ok();
Bookatzc6977972018-01-16 16:55:05 -0800983}
984
985Status StatsService::unsetBroadcastSubscriber(int64_t configId,
Jeff Sharkey6b649252018-04-16 09:50:22 -0600986 int64_t subscriberId,
987 const String16& packageName) {
988 ENFORCE_DUMP_AND_USAGE_STATS(packageName);
989
Bookatzc6977972018-01-16 16:55:05 -0800990 VLOG("StatsService::unsetBroadcastSubscriber called.");
Bookatz4f716292018-04-10 17:15:12 -0700991 IPCThreadState* ipc = IPCThreadState::self();
992 ConfigKey configKey(ipc->getCallingUid(), configId);
993 SubscriberReporter::getInstance()
994 .unsetBroadcastSubscriber(configKey, subscriberId);
995 return Status::ok();
Bookatzc6977972018-01-16 16:55:05 -0800996}
997
yrobe6d7f92018-05-04 13:02:53 -0700998Status StatsService::sendAppBreadcrumbAtom(int32_t label, int32_t state) {
999 // Permission check not necessary as it's meant for applications to write to
1000 // statsd.
1001 android::util::stats_write(util::APP_BREADCRUMB_REPORTED,
1002 IPCThreadState::self()->getCallingUid(), label,
1003 state);
1004 return Status::ok();
1005}
1006
David Chen1d7b0cd2017-11-15 14:20:04 -08001007void StatsService::binderDied(const wp <IBinder>& who) {
Chenjie Yuaa5b2012018-03-21 13:53:15 -07001008 ALOGW("statscompanion service died");
Yangster-mac892f3d32018-05-02 14:16:48 -07001009 StatsdStats::getInstance().noteSystemServerRestart(getWallClockSec());
1010 if (mProcessor != nullptr) {
1011 ALOGW("Reset statsd upon system server restars.");
1012 mProcessor->WriteDataToDisk(STATSCOMPANION_DIED);
1013 mProcessor->resetConfigs();
1014 }
Chenjie Yuaa5b2012018-03-21 13:53:15 -07001015 mAnomalyAlarmMonitor->setStatsCompanionService(nullptr);
1016 mPeriodicAlarmMonitor->setStatsCompanionService(nullptr);
1017 SubscriberReporter::getInstance().setStatsCompanionService(nullptr);
Chenjie Yue2219202018-06-08 10:07:51 -07001018 mPullerManager->SetStatsCompanionService(nullptr);
yro31eb67b2017-10-24 13:33:21 -07001019}
1020
Yao Chenef99c4f2017-09-22 16:26:54 -07001021} // namespace statsd
1022} // namespace os
1023} // namespace android