blob: edc9f2ce6b3c16ee9d203c8d2916aae62facf892 [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 Chen147ce602017-12-22 14:35:34 -0800199void StatsLogProcessor::onDumpReport(const ConfigKey& key, const uint64_t& dumpTimeStampNs,
200 ConfigMetricsReportList* report) {
Yangster-macb0d06282018-01-05 15:44:07 -0800201 std::lock_guard<std::mutex> lock(mMetricsMutex);
Yangster-mac20877162017-12-22 17:19:39 -0800202 auto it = mMetricsManagers.find(key);
203 if (it == mMetricsManagers.end()) {
204 ALOGW("Config source %s does not exist", key.ToString().c_str());
205 return;
206 }
207 report->mutable_config_key()->set_uid(key.GetUid());
Yangster-mac94e197c2018-01-02 16:03:03 -0800208 report->mutable_config_key()->set_id(key.GetId());
Yangster-mac20877162017-12-22 17:19:39 -0800209 ConfigMetricsReport* configMetricsReport = report->add_reports();
210 it->second->onDumpReport(dumpTimeStampNs, configMetricsReport);
211 // TODO: dump uid mapping.
212}
213
David Chen1d7b0cd2017-11-15 14:20:04 -0800214void StatsLogProcessor::onDumpReport(const ConfigKey& key, vector<uint8_t>* outData) {
Yangster-macb0d06282018-01-05 15:44:07 -0800215 std::lock_guard<std::mutex> lock(mMetricsMutex);
Yangster-mac86179502018-01-23 15:47:15 -0800216 onDumpReportLocked(key, outData);
217}
218
219void StatsLogProcessor::onDumpReportLocked(const ConfigKey& key, vector<uint8_t>* outData) {
David Chen1d7b0cd2017-11-15 14:20:04 -0800220 auto it = mMetricsManagers.find(key);
221 if (it == mMetricsManagers.end()) {
222 ALOGW("Config source %s does not exist", key.ToString().c_str());
223 return;
224 }
225
226 // This allows another broadcast to be sent within the rate-limit period if we get close to
227 // filling the buffer again soon.
David Chen1d7b0cd2017-11-15 14:20:04 -0800228 mLastBroadcastTimes.erase(key);
Yao Chen729093d2017-10-16 10:33:26 -0700229
yro17adac92017-11-08 23:16:29 -0800230 ProtoOutputStream proto;
231
yro947fbce2017-11-15 22:50:23 -0800232 // Start of ConfigKey.
yro17adac92017-11-08 23:16:29 -0800233 long long configKeyToken = proto.start(FIELD_TYPE_MESSAGE | FIELD_ID_CONFIG_KEY);
234 proto.write(FIELD_TYPE_INT32 | FIELD_ID_UID, key.GetUid());
Yangster-mac94e197c2018-01-02 16:03:03 -0800235 proto.write(FIELD_TYPE_INT64 | FIELD_ID_ID, (long long)key.GetId());
yro17adac92017-11-08 23:16:29 -0800236 proto.end(configKeyToken);
yro947fbce2017-11-15 22:50:23 -0800237 // End of ConfigKey.
yro17adac92017-11-08 23:16:29 -0800238
yro947fbce2017-11-15 22:50:23 -0800239 // Start of ConfigMetricsReport (reports).
240 long long reportsToken =
241 proto.start(FIELD_TYPE_MESSAGE | FIELD_COUNT_REPEATED | FIELD_ID_REPORTS);
242
243 // First, fill in ConfigMetricsReport using current data on memory, which
244 // starts from filling in StatsLogReport's.
Yao Chen288c6002017-12-12 13:43:18 -0800245 it->second->onDumpReport(&proto);
yro17adac92017-11-08 23:16:29 -0800246
247 // Fill in UidMap.
248 auto uidMap = mUidMap->getOutput(key);
249 const int uidMapSize = uidMap.ByteSize();
250 char uidMapBuffer[uidMapSize];
251 uidMap.SerializeToArray(&uidMapBuffer[0], uidMapSize);
252 proto.write(FIELD_TYPE_MESSAGE | FIELD_ID_UID_MAP, uidMapBuffer, uidMapSize);
253
yro947fbce2017-11-15 22:50:23 -0800254 // End of ConfigMetricsReport (reports).
255 proto.end(reportsToken);
256
257 // Then, check stats-data directory to see there's any file containing
258 // ConfigMetricsReport from previous shutdowns to concatenate to reports.
yro98a28502018-01-18 17:00:14 -0800259 StorageManager::appendConfigMetricsReport(proto);
yro947fbce2017-11-15 22:50:23 -0800260
David Chen1d7b0cd2017-11-15 14:20:04 -0800261 if (outData != nullptr) {
262 outData->clear();
263 outData->resize(proto.size());
264 size_t pos = 0;
265 auto iter = proto.data();
266 while (iter.readBuffer() != NULL) {
267 size_t toRead = iter.currentToRead();
268 std::memcpy(&((*outData)[pos]), iter.readBuffer(), toRead);
269 pos += toRead;
270 iter.rp()->move(toRead);
271 }
yro17adac92017-11-08 23:16:29 -0800272 }
Yao Chen69f1baf2017-11-27 17:25:36 -0800273 StatsdStats::getInstance().noteMetricsReportSent(key);
Yao Chen729093d2017-10-16 10:33:26 -0700274}
275
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700276void StatsLogProcessor::OnConfigRemoved(const ConfigKey& key) {
Yangster-macb0d06282018-01-05 15:44:07 -0800277 std::lock_guard<std::mutex> lock(mMetricsMutex);
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700278 auto it = mMetricsManagers.find(key);
279 if (it != mMetricsManagers.end()) {
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700280 mMetricsManagers.erase(it);
David Chend6896892017-10-25 11:49:03 -0700281 mUidMap->OnConfigRemoved(key);
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700282 }
Yao Chenb3561512017-11-21 18:07:17 -0800283 StatsdStats::getInstance().noteConfigRemoved(key);
David Chen1d7b0cd2017-11-15 14:20:04 -0800284
David Chen1d7b0cd2017-11-15 14:20:04 -0800285 mLastBroadcastTimes.erase(key);
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700286}
287
Yangster-macb0d06282018-01-05 15:44:07 -0800288void StatsLogProcessor::flushIfNecessaryLocked(
289 uint64_t timestampNs, const ConfigKey& key, MetricsManager& metricsManager) {
David Chend9269e22017-12-05 13:43:51 -0800290 auto lastCheckTime = mLastByteSizeTimes.find(key);
291 if (lastCheckTime != mLastByteSizeTimes.end()) {
292 if (timestampNs - lastCheckTime->second < StatsdStats::kMinByteSizeCheckPeriodNs) {
293 return;
294 }
295 }
296
297 // We suspect that the byteSize() computation is expensive, so we set a rate limit.
298 size_t totalBytes = metricsManager.byteSize();
299 mLastByteSizeTimes[key] = timestampNs;
300 if (totalBytes >
301 StatsdStats::kMaxMetricsBytesPerConfig) { // Too late. We need to start clearing data.
Yao Chen288c6002017-12-12 13:43:18 -0800302 // TODO(b/70571383): By 12/15/2017 add API to drop data directly
303 ProtoOutputStream proto;
304 metricsManager.onDumpReport(&proto);
David Chen12942952017-12-04 14:28:43 -0800305 StatsdStats::getInstance().noteDataDropped(key);
306 VLOG("StatsD had to toss out metrics for %s", key.ToString().c_str());
David Chend9269e22017-12-05 13:43:51 -0800307 } else if (totalBytes > .9 * StatsdStats::kMaxMetricsBytesPerConfig) {
308 // Send broadcast so that receivers can pull data.
309 auto lastBroadcastTime = mLastBroadcastTimes.find(key);
310 if (lastBroadcastTime != mLastBroadcastTimes.end()) {
311 if (timestampNs - lastBroadcastTime->second < StatsdStats::kMinBroadcastPeriodNs) {
312 VLOG("StatsD would've sent a broadcast but the rate limit stopped us.");
David Chen1d7b0cd2017-11-15 14:20:04 -0800313 return;
314 }
315 }
316 mLastBroadcastTimes[key] = timestampNs;
Yao Chenb3561512017-11-21 18:07:17 -0800317 VLOG("StatsD requesting broadcast for %s", key.ToString().c_str());
David Chen1d7b0cd2017-11-15 14:20:04 -0800318 mSendBroadcast(key);
Yao Chenb3561512017-11-21 18:07:17 -0800319 StatsdStats::getInstance().noteBroadcastSent(key);
yro31eb67b2017-10-24 13:33:21 -0700320 }
321}
322
yro947fbce2017-11-15 22:50:23 -0800323void StatsLogProcessor::WriteDataToDisk() {
Yangster-macb0d06282018-01-05 15:44:07 -0800324 std::lock_guard<std::mutex> lock(mMetricsMutex);
yro947fbce2017-11-15 22:50:23 -0800325 for (auto& pair : mMetricsManagers) {
326 const ConfigKey& key = pair.first;
327 vector<uint8_t> data;
Yangster-mac86179502018-01-23 15:47:15 -0800328 onDumpReportLocked(key, &data);
yro947fbce2017-11-15 22:50:23 -0800329 // TODO: Add a guardrail to prevent accumulation of file on disk.
yro98a28502018-01-18 17:00:14 -0800330 string file_name = StringPrintf("%s/%ld_%d_%lld", STATS_DATA_DIR, time(nullptr),
331 key.GetUid(), (long long)key.GetId());
yro947fbce2017-11-15 22:50:23 -0800332 StorageManager::writeFile(file_name.c_str(), &data[0], data.size());
333 }
334}
335
Yao Chenef99c4f2017-09-22 16:26:54 -0700336} // namespace statsd
337} // namespace os
338} // namespace android