blob: a4066aa7bca55fd9bb4480ca92cd5aa767bc5417 [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);
Bookatzcc5adef2017-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 {
Yangster-mac7ba8fc32018-01-24 16:16:46 -080094 std::set<Field, FieldCmp> uidFields;
Yangster-mac68985802018-01-21 10:05:09 -080095 if (android::util::kAtomsWithAttributionChain.find(event->GetTagId()) !=
96 android::util::kAtomsWithAttributionChain.end()) {
Yangster-mac7ba8fc32018-01-24 16:16:46 -080097 FieldMatcher matcher;
98 buildAttributionUidFieldMatcher(event->GetTagId(), Position::ANY, &matcher);
99 findFields(event->getFieldValueMap(), matcher, &uidFields);
Yangster-mac68985802018-01-21 10:05:09 -0800100 } else if (android::util::kAtomsWithUidField.find(event->GetTagId()) !=
101 android::util::kAtomsWithUidField.end()) {
Yangster-mac7ba8fc32018-01-24 16:16:46 -0800102 FieldMatcher matcher;
103 buildSimpleAtomFieldMatcher(
104 event->GetTagId(), 1 /* uid is always the 1st field. */, &matcher);
105 findFields(event->getFieldValueMap(), matcher, &uidFields);
Yangster-mac68985802018-01-21 10:05:09 -0800106 }
107
Yangster-mac7ba8fc32018-01-24 16:16:46 -0800108 for (const auto& uidField : uidFields) {
109 DimensionsValue* value = event->findFieldValueOrNull(uidField);
Yangster-macd40053e2018-01-09 16:29:22 -0800110 if (value != nullptr && value->value_case() == DimensionsValue::ValueCase::kValueInt) {
111 const int uid = mUidMap->getHostUidOrSelf(value->value_int());
112 value->set_value_int(uid);
113 }
Yao Chen312e8982017-12-05 15:29:03 -0800114 }
Yangster-macd40053e2018-01-09 16:29:22 -0800115}
116
117void StatsLogProcessor::onIsolatedUidChangedEventLocked(const LogEvent& event) {
118 status_t err = NO_ERROR, err2 = NO_ERROR, err3 = NO_ERROR;
119 bool is_create = event.GetBool(3, &err);
120 auto parent_uid = int(event.GetLong(1, &err2));
121 auto isolated_uid = int(event.GetLong(2, &err3));
122 if (err == NO_ERROR && err2 == NO_ERROR && err3 == NO_ERROR) {
123 if (is_create) {
124 mUidMap->assignIsolatedUid(isolated_uid, parent_uid);
125 } else {
126 mUidMap->removeIsolatedUid(isolated_uid, parent_uid);
127 }
128 } else {
129 ALOGE("Failed to parse uid in the isolated uid change event.");
130 }
131}
132
133// TODO: what if statsd service restarts? How do we know what logs are already processed before?
134void StatsLogProcessor::OnLogEvent(LogEvent* event) {
135 std::lock_guard<std::mutex> lock(mMetricsMutex);
136 StatsdStats::getInstance().noteAtomLogged(
137 event->GetTagId(), event->GetTimestampNs() / NS_PER_SEC);
138
David Chen21582962017-11-01 17:32:46 -0700139 // Hard-coded logic to update the isolated uid's in the uid-map.
Stefan Lafonae2df012017-11-14 09:17:21 -0800140 // The field numbers need to be currently updated by hand with atoms.proto
Yangster-macd40053e2018-01-09 16:29:22 -0800141 if (event->GetTagId() == android::util::ISOLATED_UID_CHANGED) {
142 onIsolatedUidChangedEventLocked(*event);
David Chencfc311d2018-01-23 17:55:54 -0800143 }
144
145 if (mMetricsManagers.empty()) {
146 return;
147 }
148
149 if (event->GetTagId() != android::util::ISOLATED_UID_CHANGED) {
Yangster-macd40053e2018-01-09 16:29:22 -0800150 // Map the isolated uid to host uid if necessary.
151 mapIsolatedUidToHostUidIfNecessaryLocked(event);
152 }
153
154 // pass the event to metrics managers.
155 for (auto& pair : mMetricsManagers) {
156 pair.second->onLogEvent(*event);
157 flushIfNecessaryLocked(event->GetTimestampNs(), pair.first, *(pair.second));
David Chen21582962017-11-01 17:32:46 -0700158 }
Yao Chenab273e22017-09-06 12:53:50 -0700159}
160
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700161void StatsLogProcessor::OnConfigUpdated(const ConfigKey& key, const StatsdConfig& config) {
Yangster-macb0d06282018-01-05 15:44:07 -0800162 std::lock_guard<std::mutex> lock(mMetricsMutex);
Yao Chenb3561512017-11-21 18:07:17 -0800163 ALOGD("Updated configuration for key %s", key.ToString().c_str());
Yao Chend10f7b12017-12-18 12:53:50 -0800164 sp<MetricsManager> newMetricsManager = new MetricsManager(key, config, mTimeBaseSec, mUidMap);
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700165 auto it = mMetricsManagers.find(key);
Yao Chen288c6002017-12-12 13:43:18 -0800166 if (it == mMetricsManagers.end() && mMetricsManagers.size() > StatsdStats::kMaxConfigCount) {
Yao Chenb3561512017-11-21 18:07:17 -0800167 ALOGE("Can't accept more configs!");
168 return;
Yao Chen44cf27c2017-09-14 22:32:50 -0700169 }
170
Yao Chencaf339d2017-10-06 16:01:10 -0700171 if (newMetricsManager->isConfigValid()) {
David Chend6896892017-10-25 11:49:03 -0700172 mUidMap->OnConfigUpdated(key);
Yangster-mace2cd6d52017-11-09 20:38:30 -0800173 newMetricsManager->setAnomalyMonitor(mAnomalyMonitor);
Yao Chen147ce602017-12-22 14:35:34 -0800174 if (newMetricsManager->shouldAddUidMapListener()) {
Yao Chend10f7b12017-12-18 12:53:50 -0800175 // We have to add listener after the MetricsManager is constructed because it's
176 // not safe to create wp or sp from this pointer inside its constructor.
177 mUidMap->addListener(newMetricsManager.get());
178 }
179 mMetricsManagers[key] = newMetricsManager;
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700180 // Why doesn't this work? mMetricsManagers.insert({key, std::move(newMetricsManager)});
Yao Chenb3561512017-11-21 18:07:17 -0800181 VLOG("StatsdConfig valid");
Yao Chencaf339d2017-10-06 16:01:10 -0700182 } else {
183 // If there is any error in the config, don't use it.
Yao Chenb3561512017-11-21 18:07:17 -0800184 ALOGE("StatsdConfig NOT valid");
Yao Chencaf339d2017-10-06 16:01:10 -0700185 }
yro00698da2017-09-15 10:06:40 -0700186}
Bookatz906a35c2017-09-20 15:26:44 -0700187
Yangster7c334a12017-11-22 14:24:24 -0800188size_t StatsLogProcessor::GetMetricsSize(const ConfigKey& key) const {
Yangster-macb0d06282018-01-05 15:44:07 -0800189 std::lock_guard<std::mutex> lock(mMetricsMutex);
Yao Chen729093d2017-10-16 10:33:26 -0700190 auto it = mMetricsManagers.find(key);
191 if (it == mMetricsManagers.end()) {
192 ALOGW("Config source %s does not exist", key.ToString().c_str());
David Chen1d7b0cd2017-11-15 14:20:04 -0800193 return 0;
Yao Chen729093d2017-10-16 10:33:26 -0700194 }
David Chen1d7b0cd2017-11-15 14:20:04 -0800195 return it->second->byteSize();
196}
197
Yao Chen884c8c12018-01-26 10:36:25 -0800198void StatsLogProcessor::dumpStates(FILE* out, bool verbose) {
199 std::lock_guard<std::mutex> lock(mMetricsMutex);
200 fprintf(out, "MetricsManager count: %lu\n", (unsigned long)mMetricsManagers.size());
201 for (auto metricsManager : mMetricsManagers) {
202 metricsManager.second->dumpStates(out, verbose);
203 }
204}
205
Yao Chen147ce602017-12-22 14:35:34 -0800206void StatsLogProcessor::onDumpReport(const ConfigKey& key, const uint64_t& dumpTimeStampNs,
207 ConfigMetricsReportList* report) {
Yangster-macb0d06282018-01-05 15:44:07 -0800208 std::lock_guard<std::mutex> lock(mMetricsMutex);
Yangster-mac20877162017-12-22 17:19:39 -0800209 auto it = mMetricsManagers.find(key);
210 if (it == mMetricsManagers.end()) {
211 ALOGW("Config source %s does not exist", key.ToString().c_str());
212 return;
213 }
214 report->mutable_config_key()->set_uid(key.GetUid());
Yangster-mac94e197c2018-01-02 16:03:03 -0800215 report->mutable_config_key()->set_id(key.GetId());
Yangster-mac20877162017-12-22 17:19:39 -0800216 ConfigMetricsReport* configMetricsReport = report->add_reports();
217 it->second->onDumpReport(dumpTimeStampNs, configMetricsReport);
218 // TODO: dump uid mapping.
219}
220
David Chen1d7b0cd2017-11-15 14:20:04 -0800221void StatsLogProcessor::onDumpReport(const ConfigKey& key, vector<uint8_t>* outData) {
Yangster-macb0d06282018-01-05 15:44:07 -0800222 std::lock_guard<std::mutex> lock(mMetricsMutex);
Yangster-mac86179502018-01-23 15:47:15 -0800223 onDumpReportLocked(key, outData);
224}
225
226void StatsLogProcessor::onDumpReportLocked(const ConfigKey& key, vector<uint8_t>* outData) {
David Chen1d7b0cd2017-11-15 14:20:04 -0800227 auto it = mMetricsManagers.find(key);
228 if (it == mMetricsManagers.end()) {
229 ALOGW("Config source %s does not exist", key.ToString().c_str());
230 return;
231 }
232
233 // This allows another broadcast to be sent within the rate-limit period if we get close to
234 // filling the buffer again soon.
David Chen1d7b0cd2017-11-15 14:20:04 -0800235 mLastBroadcastTimes.erase(key);
Yao Chen729093d2017-10-16 10:33:26 -0700236
yro17adac92017-11-08 23:16:29 -0800237 ProtoOutputStream proto;
238
yro947fbce2017-11-15 22:50:23 -0800239 // Start of ConfigKey.
yro17adac92017-11-08 23:16:29 -0800240 long long configKeyToken = proto.start(FIELD_TYPE_MESSAGE | FIELD_ID_CONFIG_KEY);
241 proto.write(FIELD_TYPE_INT32 | FIELD_ID_UID, key.GetUid());
Yangster-mac94e197c2018-01-02 16:03:03 -0800242 proto.write(FIELD_TYPE_INT64 | FIELD_ID_ID, (long long)key.GetId());
yro17adac92017-11-08 23:16:29 -0800243 proto.end(configKeyToken);
yro947fbce2017-11-15 22:50:23 -0800244 // End of ConfigKey.
yro17adac92017-11-08 23:16:29 -0800245
yro947fbce2017-11-15 22:50:23 -0800246 // Start of ConfigMetricsReport (reports).
247 long long reportsToken =
248 proto.start(FIELD_TYPE_MESSAGE | FIELD_COUNT_REPEATED | FIELD_ID_REPORTS);
249
250 // First, fill in ConfigMetricsReport using current data on memory, which
251 // starts from filling in StatsLogReport's.
Yao Chen288c6002017-12-12 13:43:18 -0800252 it->second->onDumpReport(&proto);
yro17adac92017-11-08 23:16:29 -0800253
254 // Fill in UidMap.
255 auto uidMap = mUidMap->getOutput(key);
256 const int uidMapSize = uidMap.ByteSize();
257 char uidMapBuffer[uidMapSize];
258 uidMap.SerializeToArray(&uidMapBuffer[0], uidMapSize);
259 proto.write(FIELD_TYPE_MESSAGE | FIELD_ID_UID_MAP, uidMapBuffer, uidMapSize);
260
yro947fbce2017-11-15 22:50:23 -0800261 // End of ConfigMetricsReport (reports).
262 proto.end(reportsToken);
263
264 // Then, check stats-data directory to see there's any file containing
265 // ConfigMetricsReport from previous shutdowns to concatenate to reports.
yro98a28502018-01-18 17:00:14 -0800266 StorageManager::appendConfigMetricsReport(proto);
yro947fbce2017-11-15 22:50:23 -0800267
David Chen1d7b0cd2017-11-15 14:20:04 -0800268 if (outData != nullptr) {
269 outData->clear();
270 outData->resize(proto.size());
271 size_t pos = 0;
272 auto iter = proto.data();
273 while (iter.readBuffer() != NULL) {
274 size_t toRead = iter.currentToRead();
275 std::memcpy(&((*outData)[pos]), iter.readBuffer(), toRead);
276 pos += toRead;
277 iter.rp()->move(toRead);
278 }
yro17adac92017-11-08 23:16:29 -0800279 }
Yao Chen69f1baf2017-11-27 17:25:36 -0800280 StatsdStats::getInstance().noteMetricsReportSent(key);
Yao Chen729093d2017-10-16 10:33:26 -0700281}
282
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700283void StatsLogProcessor::OnConfigRemoved(const ConfigKey& key) {
Yangster-macb0d06282018-01-05 15:44:07 -0800284 std::lock_guard<std::mutex> lock(mMetricsMutex);
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700285 auto it = mMetricsManagers.find(key);
286 if (it != mMetricsManagers.end()) {
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700287 mMetricsManagers.erase(it);
David Chend6896892017-10-25 11:49:03 -0700288 mUidMap->OnConfigRemoved(key);
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700289 }
Yao Chenb3561512017-11-21 18:07:17 -0800290 StatsdStats::getInstance().noteConfigRemoved(key);
David Chen1d7b0cd2017-11-15 14:20:04 -0800291
David Chen1d7b0cd2017-11-15 14:20:04 -0800292 mLastBroadcastTimes.erase(key);
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700293}
294
Yangster-macb0d06282018-01-05 15:44:07 -0800295void StatsLogProcessor::flushIfNecessaryLocked(
296 uint64_t timestampNs, const ConfigKey& key, MetricsManager& metricsManager) {
David Chend9269e22017-12-05 13:43:51 -0800297 auto lastCheckTime = mLastByteSizeTimes.find(key);
298 if (lastCheckTime != mLastByteSizeTimes.end()) {
299 if (timestampNs - lastCheckTime->second < StatsdStats::kMinByteSizeCheckPeriodNs) {
300 return;
301 }
302 }
303
304 // We suspect that the byteSize() computation is expensive, so we set a rate limit.
305 size_t totalBytes = metricsManager.byteSize();
306 mLastByteSizeTimes[key] = timestampNs;
307 if (totalBytes >
308 StatsdStats::kMaxMetricsBytesPerConfig) { // Too late. We need to start clearing data.
Yao Chen288c6002017-12-12 13:43:18 -0800309 // TODO(b/70571383): By 12/15/2017 add API to drop data directly
310 ProtoOutputStream proto;
311 metricsManager.onDumpReport(&proto);
David Chen12942952017-12-04 14:28:43 -0800312 StatsdStats::getInstance().noteDataDropped(key);
313 VLOG("StatsD had to toss out metrics for %s", key.ToString().c_str());
David Chend9269e22017-12-05 13:43:51 -0800314 } else if (totalBytes > .9 * StatsdStats::kMaxMetricsBytesPerConfig) {
315 // Send broadcast so that receivers can pull data.
316 auto lastBroadcastTime = mLastBroadcastTimes.find(key);
317 if (lastBroadcastTime != mLastBroadcastTimes.end()) {
318 if (timestampNs - lastBroadcastTime->second < StatsdStats::kMinBroadcastPeriodNs) {
319 VLOG("StatsD would've sent a broadcast but the rate limit stopped us.");
David Chen1d7b0cd2017-11-15 14:20:04 -0800320 return;
321 }
322 }
323 mLastBroadcastTimes[key] = timestampNs;
Yao Chenb3561512017-11-21 18:07:17 -0800324 VLOG("StatsD requesting broadcast for %s", key.ToString().c_str());
David Chen1d7b0cd2017-11-15 14:20:04 -0800325 mSendBroadcast(key);
Yao Chenb3561512017-11-21 18:07:17 -0800326 StatsdStats::getInstance().noteBroadcastSent(key);
yro31eb67b2017-10-24 13:33:21 -0700327 }
328}
329
yro947fbce2017-11-15 22:50:23 -0800330void StatsLogProcessor::WriteDataToDisk() {
Yangster-macb0d06282018-01-05 15:44:07 -0800331 std::lock_guard<std::mutex> lock(mMetricsMutex);
yro947fbce2017-11-15 22:50:23 -0800332 for (auto& pair : mMetricsManagers) {
333 const ConfigKey& key = pair.first;
334 vector<uint8_t> data;
Yangster-mac86179502018-01-23 15:47:15 -0800335 onDumpReportLocked(key, &data);
yro947fbce2017-11-15 22:50:23 -0800336 // TODO: Add a guardrail to prevent accumulation of file on disk.
yro98a28502018-01-18 17:00:14 -0800337 string file_name = StringPrintf("%s/%ld_%d_%lld", STATS_DATA_DIR, time(nullptr),
338 key.GetUid(), (long long)key.GetId());
yro947fbce2017-11-15 22:50:23 -0800339 StorageManager::writeFile(file_name.c_str(), &data[0], data.size());
340 }
341}
342
Yao Chenef99c4f2017-09-22 16:26:54 -0700343} // namespace statsd
344} // namespace os
345} // namespace android