blob: 3e71b5368134a55235cb227f322319a3552ce336 [file] [log] [blame]
Yao Chenab273e22017-09-06 12:53:50 -07001/*
2 * Copyright (C) 2017 The Android Open Source Project
3 *
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
Yao Chenb3561512017-11-21 18:07:17 -080017#define DEBUG true // STOPSHIP if true
Joe Onorato9fc9edf2017-10-15 20:08:52 -070018#include "Log.h"
David Chen21582962017-11-01 17:32:46 -070019#include "statslog.h"
Yao Chenab273e22017-09-06 12:53:50 -070020
yro947fbce2017-11-15 22:50:23 -080021#include <android-base/file.h>
22#include <dirent.h>
Joe Onorato9fc9edf2017-10-15 20:08:52 -070023#include "StatsLogProcessor.h"
yro947fbce2017-11-15 22:50:23 -080024#include "android-base/stringprintf.h"
Yao Chenb3561512017-11-21 18:07:17 -080025#include "guardrail/StatsdStats.h"
Joe Onorato9fc9edf2017-10-15 20:08:52 -070026#include "metrics/CountMetricProducer.h"
Chenjie Yu85ed8382017-12-14 16:48:54 -080027#include "external/StatsPullerManager.h"
Yangster-macd40053e2018-01-09 16:29:22 -080028#include "dimension.h"
29#include "field_util.h"
Joe Onorato9fc9edf2017-10-15 20:08:52 -070030#include "stats_util.h"
yro947fbce2017-11-15 22:50:23 -080031#include "storage/StorageManager.h"
Joe Onorato9fc9edf2017-10-15 20:08:52 -070032
yro00698da2017-09-15 10:06:40 -070033#include <log/log_event_list.h>
Yao Chenef99c4f2017-09-22 16:26:54 -070034#include <utils/Errors.h>
Yao Chenab273e22017-09-06 12:53:50 -070035
36using namespace android;
yro947fbce2017-11-15 22:50:23 -080037using android::base::StringPrintf;
yrob0378b02017-11-09 20:36:25 -080038using android::util::FIELD_COUNT_REPEATED;
yro17adac92017-11-08 23:16:29 -080039using android::util::FIELD_TYPE_BOOL;
40using android::util::FIELD_TYPE_FLOAT;
41using android::util::FIELD_TYPE_INT32;
42using android::util::FIELD_TYPE_INT64;
43using android::util::FIELD_TYPE_MESSAGE;
44using android::util::FIELD_TYPE_STRING;
45using android::util::ProtoOutputStream;
Yao Chen44cf27c2017-09-14 22:32:50 -070046using std::make_unique;
47using std::unique_ptr;
48using std::vector;
Bookatz906a35c2017-09-20 15:26:44 -070049
50namespace android {
51namespace os {
52namespace statsd {
Yao Chenab273e22017-09-06 12:53:50 -070053
yro947fbce2017-11-15 22:50:23 -080054// for ConfigMetricsReportList
yro17adac92017-11-08 23:16:29 -080055const int FIELD_ID_CONFIG_KEY = 1;
yro947fbce2017-11-15 22:50:23 -080056const int FIELD_ID_REPORTS = 2;
yro17adac92017-11-08 23:16:29 -080057// for ConfigKey
58const int FIELD_ID_UID = 1;
Yangster-mac94e197c2018-01-02 16:03:03 -080059const int FIELD_ID_ID = 2;
yro947fbce2017-11-15 22:50:23 -080060// for ConfigMetricsReport
61const int FIELD_ID_METRICS = 1;
62const int FIELD_ID_UID_MAP = 2;
63
yro03faf092017-12-12 00:17:50 -080064#define STATS_DATA_DIR "/data/misc/stats-data"
yro17adac92017-11-08 23:16:29 -080065
yro31eb67b2017-10-24 13:33:21 -070066StatsLogProcessor::StatsLogProcessor(const sp<UidMap>& uidMap,
Yangster-mace2cd6d52017-11-09 20:38:30 -080067 const sp<AnomalyMonitor>& anomalyMonitor,
Yangster-mac20877162017-12-22 17:19:39 -080068 const long timeBaseSec,
David Chen1d7b0cd2017-11-15 14:20:04 -080069 const std::function<void(const ConfigKey&)>& sendBroadcast)
Chenjie Yu85ed8382017-12-14 16:48:54 -080070 : mUidMap(uidMap),
71 mAnomalyMonitor(anomalyMonitor),
72 mSendBroadcast(sendBroadcast),
Yangster-mac20877162017-12-22 17:19:39 -080073 mTimeBaseSec(timeBaseSec) {
yro947fbce2017-11-15 22:50:23 -080074 // On each initialization of StatsLogProcessor, check stats-data directory to see if there is
75 // any left over data to be read.
76 StorageManager::sendBroadcast(STATS_DATA_DIR, mSendBroadcast);
Chenjie Yu85ed8382017-12-14 16:48:54 -080077 StatsPullerManager statsPullerManager;
78 statsPullerManager.SetTimeBaseSec(mTimeBaseSec);
Yao Chenab273e22017-09-06 12:53:50 -070079}
80
Yao Chenef99c4f2017-09-22 16:26:54 -070081StatsLogProcessor::~StatsLogProcessor() {
Yao Chenab273e22017-09-06 12:53:50 -070082}
83
Yangster-mace2cd6d52017-11-09 20:38:30 -080084void StatsLogProcessor::onAnomalyAlarmFired(
85 const uint64_t timestampNs,
86 unordered_set<sp<const AnomalyAlarm>, SpHash<AnomalyAlarm>> anomalySet) {
Yangster-macb0d06282018-01-05 15:44:07 -080087 std::lock_guard<std::mutex> lock(mMetricsMutex);
Bookatzcc5adef22017-11-21 14:36:23 -080088 for (const auto& itr : mMetricsManagers) {
89 itr.second->onAnomalyAlarmFired(timestampNs, anomalySet);
Yangster-mace2cd6d52017-11-09 20:38:30 -080090 }
91}
92
Yangster-macd40053e2018-01-09 16:29:22 -080093void StatsLogProcessor::mapIsolatedUidToHostUidIfNecessaryLocked(LogEvent* event) const {
94 std::vector<Field> uidFields;
Yangster-mac68985802018-01-21 10:05:09 -080095 if (android::util::kAtomsWithAttributionChain.find(event->GetTagId()) !=
96 android::util::kAtomsWithAttributionChain.end()) {
97 findFields(
98 event->getFieldValueMap(),
99 buildAttributionUidFieldMatcher(event->GetTagId(), Position::ANY),
100 &uidFields);
101 } else if (android::util::kAtomsWithUidField.find(event->GetTagId()) !=
102 android::util::kAtomsWithUidField.end()) {
103 findFields(
104 event->getFieldValueMap(),
105 buildSimpleAtomFieldMatcher(event->GetTagId(), 1 /* uid is always the 1st field. */),
106 &uidFields);
107 }
108
Yangster-macd40053e2018-01-09 16:29:22 -0800109 for (size_t i = 0; i < uidFields.size(); ++i) {
110 DimensionsValue* value = event->findFieldValueOrNull(uidFields[i]);
111 if (value != nullptr && value->value_case() == DimensionsValue::ValueCase::kValueInt) {
112 const int uid = mUidMap->getHostUidOrSelf(value->value_int());
113 value->set_value_int(uid);
114 }
Yao Chen312e8982017-12-05 15:29:03 -0800115 }
Yangster-macd40053e2018-01-09 16:29:22 -0800116}
117
118void StatsLogProcessor::onIsolatedUidChangedEventLocked(const LogEvent& event) {
119 status_t err = NO_ERROR, err2 = NO_ERROR, err3 = NO_ERROR;
120 bool is_create = event.GetBool(3, &err);
121 auto parent_uid = int(event.GetLong(1, &err2));
122 auto isolated_uid = int(event.GetLong(2, &err3));
123 if (err == NO_ERROR && err2 == NO_ERROR && err3 == NO_ERROR) {
124 if (is_create) {
125 mUidMap->assignIsolatedUid(isolated_uid, parent_uid);
126 } else {
127 mUidMap->removeIsolatedUid(isolated_uid, parent_uid);
128 }
129 } else {
130 ALOGE("Failed to parse uid in the isolated uid change event.");
131 }
132}
133
134// TODO: what if statsd service restarts? How do we know what logs are already processed before?
135void StatsLogProcessor::OnLogEvent(LogEvent* event) {
136 std::lock_guard<std::mutex> lock(mMetricsMutex);
137 StatsdStats::getInstance().noteAtomLogged(
138 event->GetTagId(), event->GetTimestampNs() / NS_PER_SEC);
139
David Chen21582962017-11-01 17:32:46 -0700140 // Hard-coded logic to update the isolated uid's in the uid-map.
Stefan Lafonae2df012017-11-14 09:17:21 -0800141 // The field numbers need to be currently updated by hand with atoms.proto
Yangster-macd40053e2018-01-09 16:29:22 -0800142 if (event->GetTagId() == android::util::ISOLATED_UID_CHANGED) {
143 onIsolatedUidChangedEventLocked(*event);
David Chencfc311d2018-01-23 17:55:54 -0800144 }
145
146 if (mMetricsManagers.empty()) {
147 return;
148 }
149
150 if (event->GetTagId() != android::util::ISOLATED_UID_CHANGED) {
Yangster-macd40053e2018-01-09 16:29:22 -0800151 // Map the isolated uid to host uid if necessary.
152 mapIsolatedUidToHostUidIfNecessaryLocked(event);
153 }
154
155 // pass the event to metrics managers.
156 for (auto& pair : mMetricsManagers) {
157 pair.second->onLogEvent(*event);
158 flushIfNecessaryLocked(event->GetTimestampNs(), pair.first, *(pair.second));
David Chen21582962017-11-01 17:32:46 -0700159 }
Yao Chenab273e22017-09-06 12:53:50 -0700160}
161
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700162void StatsLogProcessor::OnConfigUpdated(const ConfigKey& key, const StatsdConfig& config) {
Yangster-macb0d06282018-01-05 15:44:07 -0800163 std::lock_guard<std::mutex> lock(mMetricsMutex);
Yao Chenb3561512017-11-21 18:07:17 -0800164 ALOGD("Updated configuration for key %s", key.ToString().c_str());
Yao Chend10f7b12017-12-18 12:53:50 -0800165 sp<MetricsManager> newMetricsManager = new MetricsManager(key, config, mTimeBaseSec, mUidMap);
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700166 auto it = mMetricsManagers.find(key);
Yao Chen288c6002017-12-12 13:43:18 -0800167 if (it == mMetricsManagers.end() && mMetricsManagers.size() > StatsdStats::kMaxConfigCount) {
Yao Chenb3561512017-11-21 18:07:17 -0800168 ALOGE("Can't accept more configs!");
169 return;
Yao Chen44cf27c2017-09-14 22:32:50 -0700170 }
171
Yao Chencaf339d2017-10-06 16:01:10 -0700172 if (newMetricsManager->isConfigValid()) {
David Chend6896892017-10-25 11:49:03 -0700173 mUidMap->OnConfigUpdated(key);
Yangster-mace2cd6d52017-11-09 20:38:30 -0800174 newMetricsManager->setAnomalyMonitor(mAnomalyMonitor);
Yao Chen147ce602017-12-22 14:35:34 -0800175 if (newMetricsManager->shouldAddUidMapListener()) {
Yao Chend10f7b12017-12-18 12:53:50 -0800176 // We have to add listener after the MetricsManager is constructed because it's
177 // not safe to create wp or sp from this pointer inside its constructor.
178 mUidMap->addListener(newMetricsManager.get());
179 }
180 mMetricsManagers[key] = newMetricsManager;
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700181 // Why doesn't this work? mMetricsManagers.insert({key, std::move(newMetricsManager)});
Yao Chenb3561512017-11-21 18:07:17 -0800182 VLOG("StatsdConfig valid");
Yao Chencaf339d2017-10-06 16:01:10 -0700183 } else {
184 // If there is any error in the config, don't use it.
Yao Chenb3561512017-11-21 18:07:17 -0800185 ALOGE("StatsdConfig NOT valid");
Yao Chencaf339d2017-10-06 16:01:10 -0700186 }
yro00698da2017-09-15 10:06:40 -0700187}
Bookatz906a35c2017-09-20 15:26:44 -0700188
Yangster7c334a12017-11-22 14:24:24 -0800189size_t StatsLogProcessor::GetMetricsSize(const ConfigKey& key) const {
Yangster-macb0d06282018-01-05 15:44:07 -0800190 std::lock_guard<std::mutex> lock(mMetricsMutex);
Yao Chen729093d2017-10-16 10:33:26 -0700191 auto it = mMetricsManagers.find(key);
192 if (it == mMetricsManagers.end()) {
193 ALOGW("Config source %s does not exist", key.ToString().c_str());
David Chen1d7b0cd2017-11-15 14:20:04 -0800194 return 0;
Yao Chen729093d2017-10-16 10:33:26 -0700195 }
David Chen1d7b0cd2017-11-15 14:20:04 -0800196 return it->second->byteSize();
197}
198
Yao Chen884c8c12018-01-26 10:36:25 -0800199void StatsLogProcessor::dumpStates(FILE* out, bool verbose) {
200 std::lock_guard<std::mutex> lock(mMetricsMutex);
201 fprintf(out, "MetricsManager count: %lu\n", (unsigned long)mMetricsManagers.size());
202 for (auto metricsManager : mMetricsManagers) {
203 metricsManager.second->dumpStates(out, verbose);
204 }
205}
206
Yao Chen147ce602017-12-22 14:35:34 -0800207void StatsLogProcessor::onDumpReport(const ConfigKey& key, const uint64_t& dumpTimeStampNs,
208 ConfigMetricsReportList* report) {
Yangster-macb0d06282018-01-05 15:44:07 -0800209 std::lock_guard<std::mutex> lock(mMetricsMutex);
Yangster-mac20877162017-12-22 17:19:39 -0800210 auto it = mMetricsManagers.find(key);
211 if (it == mMetricsManagers.end()) {
212 ALOGW("Config source %s does not exist", key.ToString().c_str());
213 return;
214 }
215 report->mutable_config_key()->set_uid(key.GetUid());
Yangster-mac94e197c2018-01-02 16:03:03 -0800216 report->mutable_config_key()->set_id(key.GetId());
Yangster-mac20877162017-12-22 17:19:39 -0800217 ConfigMetricsReport* configMetricsReport = report->add_reports();
218 it->second->onDumpReport(dumpTimeStampNs, configMetricsReport);
219 // TODO: dump uid mapping.
220}
221
David Chen1d7b0cd2017-11-15 14:20:04 -0800222void StatsLogProcessor::onDumpReport(const ConfigKey& key, vector<uint8_t>* outData) {
Yangster-macb0d06282018-01-05 15:44:07 -0800223 std::lock_guard<std::mutex> lock(mMetricsMutex);
Yangster-mac86179502018-01-23 15:47:15 -0800224 onDumpReportLocked(key, outData);
225}
226
227void StatsLogProcessor::onDumpReportLocked(const ConfigKey& key, vector<uint8_t>* outData) {
David Chen1d7b0cd2017-11-15 14:20:04 -0800228 auto it = mMetricsManagers.find(key);
229 if (it == mMetricsManagers.end()) {
230 ALOGW("Config source %s does not exist", key.ToString().c_str());
231 return;
232 }
233
234 // This allows another broadcast to be sent within the rate-limit period if we get close to
235 // filling the buffer again soon.
David Chen1d7b0cd2017-11-15 14:20:04 -0800236 mLastBroadcastTimes.erase(key);
Yao Chen729093d2017-10-16 10:33:26 -0700237
yro17adac92017-11-08 23:16:29 -0800238 ProtoOutputStream proto;
239
yro947fbce2017-11-15 22:50:23 -0800240 // Start of ConfigKey.
yro17adac92017-11-08 23:16:29 -0800241 long long configKeyToken = proto.start(FIELD_TYPE_MESSAGE | FIELD_ID_CONFIG_KEY);
242 proto.write(FIELD_TYPE_INT32 | FIELD_ID_UID, key.GetUid());
Yangster-mac94e197c2018-01-02 16:03:03 -0800243 proto.write(FIELD_TYPE_INT64 | FIELD_ID_ID, (long long)key.GetId());
yro17adac92017-11-08 23:16:29 -0800244 proto.end(configKeyToken);
yro947fbce2017-11-15 22:50:23 -0800245 // End of ConfigKey.
yro17adac92017-11-08 23:16:29 -0800246
yro947fbce2017-11-15 22:50:23 -0800247 // Start of ConfigMetricsReport (reports).
248 long long reportsToken =
249 proto.start(FIELD_TYPE_MESSAGE | FIELD_COUNT_REPEATED | FIELD_ID_REPORTS);
250
251 // First, fill in ConfigMetricsReport using current data on memory, which
252 // starts from filling in StatsLogReport's.
Yao Chen288c6002017-12-12 13:43:18 -0800253 it->second->onDumpReport(&proto);
yro17adac92017-11-08 23:16:29 -0800254
255 // Fill in UidMap.
256 auto uidMap = mUidMap->getOutput(key);
257 const int uidMapSize = uidMap.ByteSize();
258 char uidMapBuffer[uidMapSize];
259 uidMap.SerializeToArray(&uidMapBuffer[0], uidMapSize);
260 proto.write(FIELD_TYPE_MESSAGE | FIELD_ID_UID_MAP, uidMapBuffer, uidMapSize);
261
yro947fbce2017-11-15 22:50:23 -0800262 // End of ConfigMetricsReport (reports).
263 proto.end(reportsToken);
264
265 // Then, check stats-data directory to see there's any file containing
266 // ConfigMetricsReport from previous shutdowns to concatenate to reports.
yro98a28502018-01-18 17:00:14 -0800267 StorageManager::appendConfigMetricsReport(proto);
yro947fbce2017-11-15 22:50:23 -0800268
David Chen1d7b0cd2017-11-15 14:20:04 -0800269 if (outData != nullptr) {
270 outData->clear();
271 outData->resize(proto.size());
272 size_t pos = 0;
273 auto iter = proto.data();
274 while (iter.readBuffer() != NULL) {
275 size_t toRead = iter.currentToRead();
276 std::memcpy(&((*outData)[pos]), iter.readBuffer(), toRead);
277 pos += toRead;
278 iter.rp()->move(toRead);
279 }
yro17adac92017-11-08 23:16:29 -0800280 }
Yao Chen69f1baf2017-11-27 17:25:36 -0800281 StatsdStats::getInstance().noteMetricsReportSent(key);
Yao Chen729093d2017-10-16 10:33:26 -0700282}
283
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700284void StatsLogProcessor::OnConfigRemoved(const ConfigKey& key) {
Yangster-macb0d06282018-01-05 15:44:07 -0800285 std::lock_guard<std::mutex> lock(mMetricsMutex);
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700286 auto it = mMetricsManagers.find(key);
287 if (it != mMetricsManagers.end()) {
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700288 mMetricsManagers.erase(it);
David Chend6896892017-10-25 11:49:03 -0700289 mUidMap->OnConfigRemoved(key);
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700290 }
Yao Chenb3561512017-11-21 18:07:17 -0800291 StatsdStats::getInstance().noteConfigRemoved(key);
David Chen1d7b0cd2017-11-15 14:20:04 -0800292
David Chen1d7b0cd2017-11-15 14:20:04 -0800293 mLastBroadcastTimes.erase(key);
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700294}
295
Yangster-macb0d06282018-01-05 15:44:07 -0800296void StatsLogProcessor::flushIfNecessaryLocked(
297 uint64_t timestampNs, const ConfigKey& key, MetricsManager& metricsManager) {
David Chend9269e22017-12-05 13:43:51 -0800298 auto lastCheckTime = mLastByteSizeTimes.find(key);
299 if (lastCheckTime != mLastByteSizeTimes.end()) {
300 if (timestampNs - lastCheckTime->second < StatsdStats::kMinByteSizeCheckPeriodNs) {
301 return;
302 }
303 }
304
305 // We suspect that the byteSize() computation is expensive, so we set a rate limit.
306 size_t totalBytes = metricsManager.byteSize();
307 mLastByteSizeTimes[key] = timestampNs;
308 if (totalBytes >
309 StatsdStats::kMaxMetricsBytesPerConfig) { // Too late. We need to start clearing data.
Yao Chen288c6002017-12-12 13:43:18 -0800310 // TODO(b/70571383): By 12/15/2017 add API to drop data directly
311 ProtoOutputStream proto;
312 metricsManager.onDumpReport(&proto);
David Chen12942952017-12-04 14:28:43 -0800313 StatsdStats::getInstance().noteDataDropped(key);
314 VLOG("StatsD had to toss out metrics for %s", key.ToString().c_str());
David Chend9269e22017-12-05 13:43:51 -0800315 } else if (totalBytes > .9 * StatsdStats::kMaxMetricsBytesPerConfig) {
316 // Send broadcast so that receivers can pull data.
317 auto lastBroadcastTime = mLastBroadcastTimes.find(key);
318 if (lastBroadcastTime != mLastBroadcastTimes.end()) {
319 if (timestampNs - lastBroadcastTime->second < StatsdStats::kMinBroadcastPeriodNs) {
320 VLOG("StatsD would've sent a broadcast but the rate limit stopped us.");
David Chen1d7b0cd2017-11-15 14:20:04 -0800321 return;
322 }
323 }
324 mLastBroadcastTimes[key] = timestampNs;
Yao Chenb3561512017-11-21 18:07:17 -0800325 VLOG("StatsD requesting broadcast for %s", key.ToString().c_str());
David Chen1d7b0cd2017-11-15 14:20:04 -0800326 mSendBroadcast(key);
Yao Chenb3561512017-11-21 18:07:17 -0800327 StatsdStats::getInstance().noteBroadcastSent(key);
yro31eb67b2017-10-24 13:33:21 -0700328 }
329}
330
yro947fbce2017-11-15 22:50:23 -0800331void StatsLogProcessor::WriteDataToDisk() {
Yangster-macb0d06282018-01-05 15:44:07 -0800332 std::lock_guard<std::mutex> lock(mMetricsMutex);
yro947fbce2017-11-15 22:50:23 -0800333 for (auto& pair : mMetricsManagers) {
334 const ConfigKey& key = pair.first;
335 vector<uint8_t> data;
Yangster-mac86179502018-01-23 15:47:15 -0800336 onDumpReportLocked(key, &data);
yro947fbce2017-11-15 22:50:23 -0800337 // TODO: Add a guardrail to prevent accumulation of file on disk.
yro98a28502018-01-18 17:00:14 -0800338 string file_name = StringPrintf("%s/%ld_%d_%lld", STATS_DATA_DIR, time(nullptr),
339 key.GetUid(), (long long)key.GetId());
yro947fbce2017-11-15 22:50:23 -0800340 StorageManager::writeFile(file_name.c_str(), &data[0], data.size());
341 }
342}
343
Yao Chenef99c4f2017-09-22 16:26:54 -0700344} // namespace statsd
345} // namespace os
346} // namespace android