blob: e7f1caf26932853df2d01e313b011204ec7590df [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
Yangster-mac754e29e2018-05-02 12:23:17 -070017#define DEBUG false // 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"
Yangster-mac330af582018-02-08 15:24:38 -080024#include "stats_log_util.h"
yro947fbce2017-11-15 22:50:23 -080025#include "android-base/stringprintf.h"
Yao Chenb3561512017-11-21 18:07:17 -080026#include "guardrail/StatsdStats.h"
Joe Onorato9fc9edf2017-10-15 20:08:52 -070027#include "metrics/CountMetricProducer.h"
Chenjie Yu85ed8382017-12-14 16:48:54 -080028#include "external/StatsPullerManager.h"
Joe Onorato9fc9edf2017-10-15 20:08:52 -070029#include "stats_util.h"
yro947fbce2017-11-15 22:50:23 -080030#include "storage/StorageManager.h"
Joe Onorato9fc9edf2017-10-15 20:08:52 -070031
yro00698da2017-09-15 10:06:40 -070032#include <log/log_event_list.h>
Yao Chenef99c4f2017-09-22 16:26:54 -070033#include <utils/Errors.h>
David Chen16049572018-02-01 18:27:51 -080034#include <utils/SystemClock.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
Yao Chen4c959cb2018-02-13 13:27:48 -080061// const int FIELD_ID_METRICS = 1; // written in MetricsManager.cpp
yro947fbce2017-11-15 22:50:23 -080062const int FIELD_ID_UID_MAP = 2;
Yangster-mac330af582018-02-08 15:24:38 -080063const int FIELD_ID_LAST_REPORT_ELAPSED_NANOS = 3;
64const int FIELD_ID_CURRENT_REPORT_ELAPSED_NANOS = 4;
Yangster-mac3fa5d7f2018-03-10 21:50:27 -080065const int FIELD_ID_LAST_REPORT_WALL_CLOCK_NANOS = 5;
66const int FIELD_ID_CURRENT_REPORT_WALL_CLOCK_NANOS = 6;
Chenjie Yue36018b2018-04-16 15:18:30 -070067const int FIELD_ID_DUMP_REPORT_REASON = 8;
Yangster-mac9def8e32018-04-17 13:55:51 -070068const int FIELD_ID_STRINGS = 9;
Yangster-mac3fa5d7f2018-03-10 21:50:27 -080069
Yangster-macb142cc82018-03-30 15:22:08 -070070#define NS_PER_HOUR 3600 * NS_PER_SEC
yro947fbce2017-11-15 22:50:23 -080071
yro03faf092017-12-12 00:17:50 -080072#define STATS_DATA_DIR "/data/misc/stats-data"
yro17adac92017-11-08 23:16:29 -080073
yro31eb67b2017-10-24 13:33:21 -070074StatsLogProcessor::StatsLogProcessor(const sp<UidMap>& uidMap,
Yangster-mac932ecec2018-02-01 10:23:52 -080075 const sp<AlarmMonitor>& anomalyAlarmMonitor,
76 const sp<AlarmMonitor>& periodicAlarmMonitor,
Yangster-mac15f6bbc2018-04-08 11:52:26 -070077 const int64_t timeBaseNs,
David Chen48944902018-05-03 10:29:11 -070078 const std::function<bool(const ConfigKey&)>& sendBroadcast)
Chenjie Yu85ed8382017-12-14 16:48:54 -080079 : mUidMap(uidMap),
Yangster-mac932ecec2018-02-01 10:23:52 -080080 mAnomalyAlarmMonitor(anomalyAlarmMonitor),
81 mPeriodicAlarmMonitor(periodicAlarmMonitor),
Chenjie Yu85ed8382017-12-14 16:48:54 -080082 mSendBroadcast(sendBroadcast),
Yangster-mac15f6bbc2018-04-08 11:52:26 -070083 mTimeBaseNs(timeBaseNs),
Yao Chen163d2602018-04-10 10:39:53 -070084 mLargestTimestampSeen(0),
85 mLastTimestampSeen(0) {
Chenjie Yu021e2532018-05-16 12:23:07 -070086 mStatsPullerManager.ForceClearPullerCache();
Yao Chenab273e22017-09-06 12:53:50 -070087}
88
Yao Chenef99c4f2017-09-22 16:26:54 -070089StatsLogProcessor::~StatsLogProcessor() {
Yao Chenab273e22017-09-06 12:53:50 -070090}
91
Yangster-mace2cd6d52017-11-09 20:38:30 -080092void StatsLogProcessor::onAnomalyAlarmFired(
Yangster-macb142cc82018-03-30 15:22:08 -070093 const int64_t& timestampNs,
Yangster-mac932ecec2018-02-01 10:23:52 -080094 unordered_set<sp<const InternalAlarm>, SpHash<InternalAlarm>> alarmSet) {
Yangster-macb0d06282018-01-05 15:44:07 -080095 std::lock_guard<std::mutex> lock(mMetricsMutex);
Bookatzcc5adef2017-11-21 14:36:23 -080096 for (const auto& itr : mMetricsManagers) {
Yangster-mac932ecec2018-02-01 10:23:52 -080097 itr.second->onAnomalyAlarmFired(timestampNs, alarmSet);
98 }
99}
100void StatsLogProcessor::onPeriodicAlarmFired(
Yangster-macb142cc82018-03-30 15:22:08 -0700101 const int64_t& timestampNs,
Yangster-mac932ecec2018-02-01 10:23:52 -0800102 unordered_set<sp<const InternalAlarm>, SpHash<InternalAlarm>> alarmSet) {
103
104 std::lock_guard<std::mutex> lock(mMetricsMutex);
105 for (const auto& itr : mMetricsManagers) {
106 itr.second->onPeriodicAlarmFired(timestampNs, alarmSet);
Yangster-mace2cd6d52017-11-09 20:38:30 -0800107 }
108}
109
Yao Chen8a8d16c2018-02-08 14:50:40 -0800110void updateUid(Value* value, int hostUid) {
111 int uid = value->int_value;
112 if (uid != hostUid) {
113 value->setInt(hostUid);
114 }
115}
116
Yangster-macd40053e2018-01-09 16:29:22 -0800117void StatsLogProcessor::mapIsolatedUidToHostUidIfNecessaryLocked(LogEvent* event) const {
Yao Chenc40a19d2018-03-15 16:48:25 -0700118 if (android::util::AtomsInfo::kAtomsWithAttributionChain.find(event->GetTagId()) !=
119 android::util::AtomsInfo::kAtomsWithAttributionChain.end()) {
Yao Chen8a8d16c2018-02-08 14:50:40 -0800120 for (auto& value : *(event->getMutableValues())) {
121 if (value.mField.getPosAtDepth(0) > kAttributionField) {
122 break;
123 }
124 if (isAttributionUidField(value)) {
125 const int hostUid = mUidMap->getHostUidOrSelf(value.mValue.int_value);
126 updateUid(&value.mValue, hostUid);
127 }
Yangster-macd40053e2018-01-09 16:29:22 -0800128 }
Yao Chenc40a19d2018-03-15 16:48:25 -0700129 } else {
130 auto it = android::util::AtomsInfo::kAtomsWithUidField.find(event->GetTagId());
131 if (it != android::util::AtomsInfo::kAtomsWithUidField.end()) {
132 int uidField = it->second; // uidField is the field number in proto,
133 // starting from 1
134 if (uidField > 0 && (int)event->getValues().size() >= uidField &&
135 (event->getValues())[uidField - 1].mValue.getType() == INT) {
136 Value& value = (*event->getMutableValues())[uidField - 1].mValue;
137 const int hostUid = mUidMap->getHostUidOrSelf(value.int_value);
138 updateUid(&value, hostUid);
139 } else {
140 ALOGE("Malformed log, uid not found. %s", event->ToString().c_str());
141 }
142 }
Yao Chen312e8982017-12-05 15:29:03 -0800143 }
Yangster-macd40053e2018-01-09 16:29:22 -0800144}
145
146void StatsLogProcessor::onIsolatedUidChangedEventLocked(const LogEvent& event) {
147 status_t err = NO_ERROR, err2 = NO_ERROR, err3 = NO_ERROR;
148 bool is_create = event.GetBool(3, &err);
149 auto parent_uid = int(event.GetLong(1, &err2));
150 auto isolated_uid = int(event.GetLong(2, &err3));
151 if (err == NO_ERROR && err2 == NO_ERROR && err3 == NO_ERROR) {
152 if (is_create) {
153 mUidMap->assignIsolatedUid(isolated_uid, parent_uid);
154 } else {
155 mUidMap->removeIsolatedUid(isolated_uid, parent_uid);
156 }
157 } else {
158 ALOGE("Failed to parse uid in the isolated uid change event.");
159 }
160}
161
Yangster-macd40053e2018-01-09 16:29:22 -0800162void StatsLogProcessor::OnLogEvent(LogEvent* event) {
Yao Chen163d2602018-04-10 10:39:53 -0700163 OnLogEvent(event, false);
164}
165
Yangster-mac892f3d32018-05-02 14:16:48 -0700166void StatsLogProcessor::resetConfigs() {
167 std::lock_guard<std::mutex> lock(mMetricsMutex);
168 resetConfigsLocked(getElapsedRealtimeNs());
169}
170
171void StatsLogProcessor::resetConfigsLocked(const int64_t timestampNs) {
172 std::vector<ConfigKey> configKeys;
173 for (auto it = mMetricsManagers.begin(); it != mMetricsManagers.end(); it++) {
174 configKeys.push_back(it->first);
175 }
176 resetConfigsLocked(timestampNs, configKeys);
177}
178
Yao Chen163d2602018-04-10 10:39:53 -0700179void StatsLogProcessor::OnLogEvent(LogEvent* event, bool reconnected) {
Yangster-macd40053e2018-01-09 16:29:22 -0800180 std::lock_guard<std::mutex> lock(mMetricsMutex);
Yao Chen876889c2018-05-02 11:16:16 -0700181
182#ifdef VERY_VERBOSE_PRINTING
183 if (mPrintAllLogs) {
184 ALOGI("%s", event->ToString().c_str());
185 }
186#endif
Yangster-macb142cc82018-03-30 15:22:08 -0700187 const int64_t currentTimestampNs = event->GetElapsedTimestampNs();
Yangster-macb8382a12018-04-04 10:39:12 -0700188
Yao Chen163d2602018-04-10 10:39:53 -0700189 if (reconnected && mLastTimestampSeen != 0) {
190 // LogReader tells us the connection has just been reset. Now we need
191 // to enter reconnection state to find the last CP.
192 mInReconnection = true;
193 }
194
195 if (mInReconnection) {
196 // We see the checkpoint
197 if (currentTimestampNs == mLastTimestampSeen) {
198 mInReconnection = false;
199 // Found the CP. ignore this event, and we will start to read from next event.
200 return;
201 }
202 if (currentTimestampNs > mLargestTimestampSeen) {
203 // We see a new log but CP has not been found yet. Give up now.
204 mLogLossCount++;
205 mInReconnection = false;
206 StatsdStats::getInstance().noteLogLost(currentTimestampNs);
207 // Persist the data before we reset. Do we want this?
Chenjie Yue36018b2018-04-16 15:18:30 -0700208 WriteDataToDiskLocked(CONFIG_RESET);
Yao Chen163d2602018-04-10 10:39:53 -0700209 // We see fresher event before we see the checkpoint. We might have lost data.
210 // The best we can do is to reset.
Yangster-mac892f3d32018-05-02 14:16:48 -0700211 resetConfigsLocked(currentTimestampNs);
Yao Chen163d2602018-04-10 10:39:53 -0700212 } else {
213 // Still in search of the CP. Keep going.
214 return;
215 }
216 }
217
218 mLogCount++;
219 mLastTimestampSeen = currentTimestampNs;
220 if (mLargestTimestampSeen < currentTimestampNs) {
221 mLargestTimestampSeen = currentTimestampNs;
Yao Chen8f42ba02018-02-27 15:17:07 -0800222 }
Yangster-macb142cc82018-03-30 15:22:08 -0700223
224 resetIfConfigTtlExpiredLocked(currentTimestampNs);
225
Yangster-macd40053e2018-01-09 16:29:22 -0800226 StatsdStats::getInstance().noteAtomLogged(
Yangster-mac330af582018-02-08 15:24:38 -0800227 event->GetTagId(), event->GetElapsedTimestampNs() / NS_PER_SEC);
Yangster-macd40053e2018-01-09 16:29:22 -0800228
David Chen21582962017-11-01 17:32:46 -0700229 // Hard-coded logic to update the isolated uid's in the uid-map.
Stefan Lafonae2df012017-11-14 09:17:21 -0800230 // The field numbers need to be currently updated by hand with atoms.proto
Yangster-macd40053e2018-01-09 16:29:22 -0800231 if (event->GetTagId() == android::util::ISOLATED_UID_CHANGED) {
232 onIsolatedUidChangedEventLocked(*event);
David Chencfc311d2018-01-23 17:55:54 -0800233 }
234
235 if (mMetricsManagers.empty()) {
236 return;
237 }
238
Yangster-macb142cc82018-03-30 15:22:08 -0700239 int64_t curTimeSec = getElapsedRealtimeSec();
Yangster-mac330af582018-02-08 15:24:38 -0800240 if (curTimeSec - mLastPullerCacheClearTimeSec > StatsdStats::kPullerCacheClearIntervalSec) {
Chenjie Yu1a0a9412018-03-28 10:07:22 -0700241 mStatsPullerManager.ClearPullerCacheIfNecessary(curTimeSec * NS_PER_SEC);
Yangster-mac330af582018-02-08 15:24:38 -0800242 mLastPullerCacheClearTimeSec = curTimeSec;
Chenjie Yufa22d652018-02-05 14:37:48 -0800243 }
244
Yangster-macb142cc82018-03-30 15:22:08 -0700245
David Chencfc311d2018-01-23 17:55:54 -0800246 if (event->GetTagId() != android::util::ISOLATED_UID_CHANGED) {
Yangster-macd40053e2018-01-09 16:29:22 -0800247 // Map the isolated uid to host uid if necessary.
248 mapIsolatedUidToHostUidIfNecessaryLocked(event);
249 }
250
251 // pass the event to metrics managers.
252 for (auto& pair : mMetricsManagers) {
253 pair.second->onLogEvent(*event);
Yangster-mac330af582018-02-08 15:24:38 -0800254 flushIfNecessaryLocked(event->GetElapsedTimestampNs(), pair.first, *(pair.second));
David Chen21582962017-11-01 17:32:46 -0700255 }
Yao Chenab273e22017-09-06 12:53:50 -0700256}
257
Yangster-macc04feba2018-04-02 14:37:33 -0700258void StatsLogProcessor::OnConfigUpdated(const int64_t timestampNs, const ConfigKey& key,
259 const StatsdConfig& config) {
Yangster-macb0d06282018-01-05 15:44:07 -0800260 std::lock_guard<std::mutex> lock(mMetricsMutex);
Yangster-mac892f3d32018-05-02 14:16:48 -0700261 WriteDataToDiskLocked(key, timestampNs, CONFIG_UPDATED);
Yangster-macb142cc82018-03-30 15:22:08 -0700262 OnConfigUpdatedLocked(timestampNs, key, config);
263}
264
265void StatsLogProcessor::OnConfigUpdatedLocked(
266 const int64_t timestampNs, const ConfigKey& key, const StatsdConfig& config) {
Tej Singh484524a2018-02-01 15:10:05 -0800267 VLOG("Updated configuration for key %s", key.ToString().c_str());
Yangster-mac932ecec2018-02-01 10:23:52 -0800268 sp<MetricsManager> newMetricsManager =
Yangster-mac15f6bbc2018-04-08 11:52:26 -0700269 new MetricsManager(key, config, mTimeBaseNs, timestampNs, mUidMap,
Yangster-mac932ecec2018-02-01 10:23:52 -0800270 mAnomalyAlarmMonitor, mPeriodicAlarmMonitor);
Yao Chencaf339d2017-10-06 16:01:10 -0700271 if (newMetricsManager->isConfigValid()) {
David Chend6896892017-10-25 11:49:03 -0700272 mUidMap->OnConfigUpdated(key);
Yao Chen147ce602017-12-22 14:35:34 -0800273 if (newMetricsManager->shouldAddUidMapListener()) {
Yao Chend10f7b12017-12-18 12:53:50 -0800274 // We have to add listener after the MetricsManager is constructed because it's
275 // not safe to create wp or sp from this pointer inside its constructor.
276 mUidMap->addListener(newMetricsManager.get());
277 }
Yangster-macb142cc82018-03-30 15:22:08 -0700278 newMetricsManager->refreshTtl(timestampNs);
Yao Chend10f7b12017-12-18 12:53:50 -0800279 mMetricsManagers[key] = newMetricsManager;
Yao Chenb3561512017-11-21 18:07:17 -0800280 VLOG("StatsdConfig valid");
Yao Chencaf339d2017-10-06 16:01:10 -0700281 } else {
282 // If there is any error in the config, don't use it.
Yao Chenb3561512017-11-21 18:07:17 -0800283 ALOGE("StatsdConfig NOT valid");
Yao Chencaf339d2017-10-06 16:01:10 -0700284 }
yro00698da2017-09-15 10:06:40 -0700285}
Bookatz906a35c2017-09-20 15:26:44 -0700286
Yangster7c334a12017-11-22 14:24:24 -0800287size_t StatsLogProcessor::GetMetricsSize(const ConfigKey& key) const {
Yangster-macb0d06282018-01-05 15:44:07 -0800288 std::lock_guard<std::mutex> lock(mMetricsMutex);
Yao Chen729093d2017-10-16 10:33:26 -0700289 auto it = mMetricsManagers.find(key);
290 if (it == mMetricsManagers.end()) {
291 ALOGW("Config source %s does not exist", key.ToString().c_str());
David Chen1d7b0cd2017-11-15 14:20:04 -0800292 return 0;
Yao Chen729093d2017-10-16 10:33:26 -0700293 }
David Chen1d7b0cd2017-11-15 14:20:04 -0800294 return it->second->byteSize();
295}
296
Yao Chen884c8c12018-01-26 10:36:25 -0800297void StatsLogProcessor::dumpStates(FILE* out, bool verbose) {
298 std::lock_guard<std::mutex> lock(mMetricsMutex);
299 fprintf(out, "MetricsManager count: %lu\n", (unsigned long)mMetricsManagers.size());
300 for (auto metricsManager : mMetricsManagers) {
301 metricsManager.second->dumpStates(out, verbose);
302 }
303}
304
yro4beccbe2018-03-15 19:42:05 -0700305/*
306 * onDumpReport dumps serialized ConfigMetricsReportList into outData.
307 */
Yangster-macb142cc82018-03-30 15:22:08 -0700308void StatsLogProcessor::onDumpReport(const ConfigKey& key, const int64_t dumpTimeStampNs,
Yangster-mace68f3a52018-04-04 00:01:43 -0700309 const bool include_current_partial_bucket,
Chenjie Yue36018b2018-04-16 15:18:30 -0700310 const DumpReportReason dumpReportReason,
Yao Chen8a8d16c2018-02-08 14:50:40 -0800311 vector<uint8_t>* outData) {
Yangster-macb0d06282018-01-05 15:44:07 -0800312 std::lock_guard<std::mutex> lock(mMetricsMutex);
Yangster-mac20877162017-12-22 17:19:39 -0800313
yro17adac92017-11-08 23:16:29 -0800314 ProtoOutputStream proto;
315
yro947fbce2017-11-15 22:50:23 -0800316 // Start of ConfigKey.
Yi Jin5ee07872018-03-05 18:18:27 -0800317 uint64_t configKeyToken = proto.start(FIELD_TYPE_MESSAGE | FIELD_ID_CONFIG_KEY);
yro17adac92017-11-08 23:16:29 -0800318 proto.write(FIELD_TYPE_INT32 | FIELD_ID_UID, key.GetUid());
Yangster-mac94e197c2018-01-02 16:03:03 -0800319 proto.write(FIELD_TYPE_INT64 | FIELD_ID_ID, (long long)key.GetId());
yro17adac92017-11-08 23:16:29 -0800320 proto.end(configKeyToken);
yro947fbce2017-11-15 22:50:23 -0800321 // End of ConfigKey.
yro17adac92017-11-08 23:16:29 -0800322
yro947fbce2017-11-15 22:50:23 -0800323 // Then, check stats-data directory to see there's any file containing
324 // ConfigMetricsReport from previous shutdowns to concatenate to reports.
yro4beccbe2018-03-15 19:42:05 -0700325 StorageManager::appendConfigMetricsReport(key, &proto);
yro947fbce2017-11-15 22:50:23 -0800326
Yangster-mace68f3a52018-04-04 00:01:43 -0700327 auto it = mMetricsManagers.find(key);
328 if (it != mMetricsManagers.end()) {
329 // This allows another broadcast to be sent within the rate-limit period if we get close to
330 // filling the buffer again soon.
331 mLastBroadcastTimes.erase(key);
332
333 // Start of ConfigMetricsReport (reports).
334 uint64_t reportsToken =
335 proto.start(FIELD_TYPE_MESSAGE | FIELD_COUNT_REPEATED | FIELD_ID_REPORTS);
Chenjie Yue36018b2018-04-16 15:18:30 -0700336 onConfigMetricsReportLocked(key, dumpTimeStampNs, include_current_partial_bucket,
David Chen56ae0d92018-05-11 16:00:22 -0700337 dumpReportReason, &proto);
Yangster-mace68f3a52018-04-04 00:01:43 -0700338 proto.end(reportsToken);
339 // End of ConfigMetricsReport (reports).
340 } else {
341 ALOGW("Config source %s does not exist", key.ToString().c_str());
342 }
343
David Chen1d7b0cd2017-11-15 14:20:04 -0800344 if (outData != nullptr) {
345 outData->clear();
346 outData->resize(proto.size());
347 size_t pos = 0;
348 auto iter = proto.data();
349 while (iter.readBuffer() != NULL) {
350 size_t toRead = iter.currentToRead();
351 std::memcpy(&((*outData)[pos]), iter.readBuffer(), toRead);
352 pos += toRead;
353 iter.rp()->move(toRead);
354 }
yro17adac92017-11-08 23:16:29 -0800355 }
Yao Chen8a8d16c2018-02-08 14:50:40 -0800356
Yangster-mace68f3a52018-04-04 00:01:43 -0700357 StatsdStats::getInstance().noteMetricsReportSent(key, proto.size());
Yao Chen729093d2017-10-16 10:33:26 -0700358}
359
yro4beccbe2018-03-15 19:42:05 -0700360/*
361 * onConfigMetricsReportLocked dumps serialized ConfigMetricsReport into outData.
362 */
363void StatsLogProcessor::onConfigMetricsReportLocked(const ConfigKey& key,
Yangster-macb142cc82018-03-30 15:22:08 -0700364 const int64_t dumpTimeStampNs,
Yangster-mace68f3a52018-04-04 00:01:43 -0700365 const bool include_current_partial_bucket,
Chenjie Yue36018b2018-04-16 15:18:30 -0700366 const DumpReportReason dumpReportReason,
yro4beccbe2018-03-15 19:42:05 -0700367 ProtoOutputStream* proto) {
368 // We already checked whether key exists in mMetricsManagers in
369 // WriteDataToDisk.
370 auto it = mMetricsManagers.find(key);
Yangster-mace68f3a52018-04-04 00:01:43 -0700371 if (it == mMetricsManagers.end()) {
372 return;
373 }
yro4beccbe2018-03-15 19:42:05 -0700374 int64_t lastReportTimeNs = it->second->getLastReportTimeNs();
375 int64_t lastReportWallClockNs = it->second->getLastReportWallClockNs();
376
Yangster-mac9def8e32018-04-17 13:55:51 -0700377 std::set<string> str_set;
378
yro4beccbe2018-03-15 19:42:05 -0700379 // First, fill in ConfigMetricsReport using current data on memory, which
380 // starts from filling in StatsLogReport's.
Yangster-mac9def8e32018-04-17 13:55:51 -0700381 it->second->onDumpReport(dumpTimeStampNs, include_current_partial_bucket,
382 &str_set, proto);
yro4beccbe2018-03-15 19:42:05 -0700383
David Chen9e6dbbd2018-05-07 17:52:29 -0700384 // Fill in UidMap if there is at least one metric to report.
385 // This skips the uid map if it's an empty config.
386 if (it->second->getNumMetrics() > 0) {
387 uint64_t uidMapToken = proto->start(FIELD_TYPE_MESSAGE | FIELD_ID_UID_MAP);
Yangster-mac1c58f042018-05-17 15:52:51 -0700388 if (it->second->hashStringInReport()) {
389 mUidMap->appendUidMap(dumpTimeStampNs, key, &str_set, proto);
390 } else {
391 mUidMap->appendUidMap(dumpTimeStampNs, key, nullptr, proto);
392 }
David Chen9e6dbbd2018-05-07 17:52:29 -0700393 proto->end(uidMapToken);
394 }
yro4beccbe2018-03-15 19:42:05 -0700395
396 // Fill in the timestamps.
397 proto->write(FIELD_TYPE_INT64 | FIELD_ID_LAST_REPORT_ELAPSED_NANOS,
398 (long long)lastReportTimeNs);
399 proto->write(FIELD_TYPE_INT64 | FIELD_ID_CURRENT_REPORT_ELAPSED_NANOS,
400 (long long)dumpTimeStampNs);
401 proto->write(FIELD_TYPE_INT64 | FIELD_ID_LAST_REPORT_WALL_CLOCK_NANOS,
402 (long long)lastReportWallClockNs);
403 proto->write(FIELD_TYPE_INT64 | FIELD_ID_CURRENT_REPORT_WALL_CLOCK_NANOS,
404 (long long)getWallClockNs());
Chenjie Yue36018b2018-04-16 15:18:30 -0700405 // Dump report reason
406 proto->write(FIELD_TYPE_INT32 | FIELD_ID_DUMP_REPORT_REASON, dumpReportReason);
Yangster-mac9def8e32018-04-17 13:55:51 -0700407
David Chen56ae0d92018-05-11 16:00:22 -0700408 for (const auto& str : str_set) {
409 proto->write(FIELD_TYPE_STRING | FIELD_COUNT_REPEATED | FIELD_ID_STRINGS, str);
Yangster-mac9def8e32018-04-17 13:55:51 -0700410 }
Yangster-macb142cc82018-03-30 15:22:08 -0700411}
yro4beccbe2018-03-15 19:42:05 -0700412
Yao Chen163d2602018-04-10 10:39:53 -0700413void StatsLogProcessor::resetConfigsLocked(const int64_t timestampNs,
414 const std::vector<ConfigKey>& configs) {
415 for (const auto& key : configs) {
Yangster-macb142cc82018-03-30 15:22:08 -0700416 StatsdConfig config;
417 if (StorageManager::readConfigFromDisk(key, &config)) {
418 OnConfigUpdatedLocked(timestampNs, key, config);
419 StatsdStats::getInstance().noteConfigReset(key);
420 } else {
421 ALOGE("Failed to read backup config from disk for : %s", key.ToString().c_str());
422 auto it = mMetricsManagers.find(key);
423 if (it != mMetricsManagers.end()) {
424 it->second->refreshTtl(timestampNs);
425 }
426 }
427 }
yro4beccbe2018-03-15 19:42:05 -0700428}
429
Yao Chen163d2602018-04-10 10:39:53 -0700430void StatsLogProcessor::resetIfConfigTtlExpiredLocked(const int64_t timestampNs) {
431 std::vector<ConfigKey> configKeysTtlExpired;
432 for (auto it = mMetricsManagers.begin(); it != mMetricsManagers.end(); it++) {
433 if (it->second != nullptr && !it->second->isInTtl(timestampNs)) {
434 configKeysTtlExpired.push_back(it->first);
435 }
436 }
437 if (configKeysTtlExpired.size() > 0) {
Yangster-mac892f3d32018-05-02 14:16:48 -0700438 WriteDataToDiskLocked(CONFIG_RESET);
Yao Chen163d2602018-04-10 10:39:53 -0700439 resetConfigsLocked(timestampNs, configKeysTtlExpired);
440 }
441}
442
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700443void StatsLogProcessor::OnConfigRemoved(const ConfigKey& key) {
Yangster-macb0d06282018-01-05 15:44:07 -0800444 std::lock_guard<std::mutex> lock(mMetricsMutex);
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700445 auto it = mMetricsManagers.find(key);
446 if (it != mMetricsManagers.end()) {
Yangster-mac892f3d32018-05-02 14:16:48 -0700447 WriteDataToDiskLocked(key, getElapsedRealtimeNs(), CONFIG_REMOVED);
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700448 mMetricsManagers.erase(it);
David Chend6896892017-10-25 11:49:03 -0700449 mUidMap->OnConfigRemoved(key);
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700450 }
Yao Chenb3561512017-11-21 18:07:17 -0800451 StatsdStats::getInstance().noteConfigRemoved(key);
David Chen1d7b0cd2017-11-15 14:20:04 -0800452
David Chen1d7b0cd2017-11-15 14:20:04 -0800453 mLastBroadcastTimes.erase(key);
Chenjie Yufa22d652018-02-05 14:37:48 -0800454
455 if (mMetricsManagers.empty()) {
456 mStatsPullerManager.ForceClearPullerCache();
457 }
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700458}
459
Yangster-macb0d06282018-01-05 15:44:07 -0800460void StatsLogProcessor::flushIfNecessaryLocked(
Yangster-macb142cc82018-03-30 15:22:08 -0700461 int64_t timestampNs, const ConfigKey& key, MetricsManager& metricsManager) {
David Chend9269e22017-12-05 13:43:51 -0800462 auto lastCheckTime = mLastByteSizeTimes.find(key);
463 if (lastCheckTime != mLastByteSizeTimes.end()) {
464 if (timestampNs - lastCheckTime->second < StatsdStats::kMinByteSizeCheckPeriodNs) {
465 return;
466 }
467 }
468
469 // We suspect that the byteSize() computation is expensive, so we set a rate limit.
470 size_t totalBytes = metricsManager.byteSize();
471 mLastByteSizeTimes[key] = timestampNs;
David Chen48944902018-05-03 10:29:11 -0700472 bool requestDump = false;
David Chend9269e22017-12-05 13:43:51 -0800473 if (totalBytes >
474 StatsdStats::kMaxMetricsBytesPerConfig) { // Too late. We need to start clearing data.
Yao Chen06dba5d2018-01-26 13:38:16 -0800475 metricsManager.dropData(timestampNs);
David Chen12942952017-12-04 14:28:43 -0800476 StatsdStats::getInstance().noteDataDropped(key);
477 VLOG("StatsD had to toss out metrics for %s", key.ToString().c_str());
David Chen48944902018-05-03 10:29:11 -0700478 } else if ((totalBytes > StatsdStats::kBytesPerConfigTriggerGetData) ||
479 (mOnDiskDataConfigs.find(key) != mOnDiskDataConfigs.end())) {
480 // Request to send a broadcast if:
481 // 1. in memory data > threshold OR
482 // 2. config has old data report on disk.
483 requestDump = true;
484 }
485
486 if (requestDump) {
David Chend9269e22017-12-05 13:43:51 -0800487 // Send broadcast so that receivers can pull data.
488 auto lastBroadcastTime = mLastBroadcastTimes.find(key);
489 if (lastBroadcastTime != mLastBroadcastTimes.end()) {
490 if (timestampNs - lastBroadcastTime->second < StatsdStats::kMinBroadcastPeriodNs) {
491 VLOG("StatsD would've sent a broadcast but the rate limit stopped us.");
David Chen1d7b0cd2017-11-15 14:20:04 -0800492 return;
493 }
494 }
David Chen48944902018-05-03 10:29:11 -0700495 if (mSendBroadcast(key)) {
496 mOnDiskDataConfigs.erase(key);
497 VLOG("StatsD triggered data fetch for %s", key.ToString().c_str());
498 mLastBroadcastTimes[key] = timestampNs;
499 StatsdStats::getInstance().noteBroadcastSent(key);
500 }
yro31eb67b2017-10-24 13:33:21 -0700501 }
502}
503
Chenjie Yue36018b2018-04-16 15:18:30 -0700504void StatsLogProcessor::WriteDataToDiskLocked(const ConfigKey& key,
Yangster-mac892f3d32018-05-02 14:16:48 -0700505 const int64_t timestampNs,
Chenjie Yue36018b2018-04-16 15:18:30 -0700506 const DumpReportReason dumpReportReason) {
yro028091c2018-05-09 16:03:27 -0700507 if (mMetricsManagers.find(key) == mMetricsManagers.end() ||
508 !mMetricsManagers.find(key)->second->shouldWriteToDisk()) {
Yangster-mac892f3d32018-05-02 14:16:48 -0700509 return;
510 }
Yangster-mace68f3a52018-04-04 00:01:43 -0700511 ProtoOutputStream proto;
David Chen56ae0d92018-05-11 16:00:22 -0700512 onConfigMetricsReportLocked(key, timestampNs, true /* include_current_partial_bucket*/,
513 dumpReportReason, &proto);
Yangster-mace68f3a52018-04-04 00:01:43 -0700514 string file_name = StringPrintf("%s/%ld_%d_%lld", STATS_DATA_DIR,
515 (long)getWallClockSec(), key.GetUid(), (long long)key.GetId());
516 android::base::unique_fd fd(open(file_name.c_str(),
517 O_WRONLY | O_CREAT | O_CLOEXEC, S_IRUSR | S_IWUSR));
518 if (fd == -1) {
519 ALOGE("Attempt to write %s but failed", file_name.c_str());
520 return;
521 }
522 proto.flush(fd.get());
David Chen48944902018-05-03 10:29:11 -0700523 // We were able to write the ConfigMetricsReport to disk, so we should trigger collection ASAP.
524 mOnDiskDataConfigs.insert(key);
Yangster-mace68f3a52018-04-04 00:01:43 -0700525}
526
Chenjie Yue36018b2018-04-16 15:18:30 -0700527void StatsLogProcessor::WriteDataToDiskLocked(const DumpReportReason dumpReportReason) {
Yangster-mac892f3d32018-05-02 14:16:48 -0700528 const int64_t timeNs = getElapsedRealtimeNs();
Yangster-mace68f3a52018-04-04 00:01:43 -0700529 for (auto& pair : mMetricsManagers) {
Yangster-mac892f3d32018-05-02 14:16:48 -0700530 WriteDataToDiskLocked(pair.first, timeNs, dumpReportReason);
Yangster-mace68f3a52018-04-04 00:01:43 -0700531 }
532}
533
Yangster-mac892f3d32018-05-02 14:16:48 -0700534void StatsLogProcessor::WriteDataToDisk(const DumpReportReason dumpReportReason) {
Yangster-macb0d06282018-01-05 15:44:07 -0800535 std::lock_guard<std::mutex> lock(mMetricsMutex);
Yangster-mac892f3d32018-05-02 14:16:48 -0700536 WriteDataToDiskLocked(dumpReportReason);
yro947fbce2017-11-15 22:50:23 -0800537}
538
Yangster-mac15f6bbc2018-04-08 11:52:26 -0700539void StatsLogProcessor::informPullAlarmFired(const int64_t timestampNs) {
Yangster6df5fcc2018-04-12 11:04:29 -0700540 std::lock_guard<std::mutex> lock(mMetricsMutex);
Yangster-mac15f6bbc2018-04-08 11:52:26 -0700541 mStatsPullerManager.OnAlarmFired(timestampNs);
542}
543
David Chend37bc232018-04-12 18:05:11 -0700544int64_t StatsLogProcessor::getLastReportTimeNs(const ConfigKey& key) {
545 auto it = mMetricsManagers.find(key);
546 if (it == mMetricsManagers.end()) {
547 return 0;
548 } else {
549 return it->second->getLastReportTimeNs();
550 }
551}
552
David Chen48944902018-05-03 10:29:11 -0700553void StatsLogProcessor::noteOnDiskData(const ConfigKey& key) {
554 std::lock_guard<std::mutex> lock(mMetricsMutex);
555 mOnDiskDataConfigs.insert(key);
556}
557
Yao Chenef99c4f2017-09-22 16:26:54 -0700558} // namespace statsd
559} // namespace os
560} // namespace android