blob: 9678014b14dcaa5403dfcbd6dac53651770c28e5 [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"
Joe Onorato9fc9edf2017-10-15 20:08:52 -070028#include "stats_util.h"
yro947fbce2017-11-15 22:50:23 -080029#include "storage/StorageManager.h"
Joe Onorato9fc9edf2017-10-15 20:08:52 -070030
yro00698da2017-09-15 10:06:40 -070031#include <log/log_event_list.h>
Yao Chenef99c4f2017-09-22 16:26:54 -070032#include <utils/Errors.h>
Yao Chenab273e22017-09-06 12:53:50 -070033
34using namespace android;
yro947fbce2017-11-15 22:50:23 -080035using android::base::StringPrintf;
yrob0378b02017-11-09 20:36:25 -080036using android::util::FIELD_COUNT_REPEATED;
yro17adac92017-11-08 23:16:29 -080037using android::util::FIELD_TYPE_BOOL;
38using android::util::FIELD_TYPE_FLOAT;
39using android::util::FIELD_TYPE_INT32;
40using android::util::FIELD_TYPE_INT64;
41using android::util::FIELD_TYPE_MESSAGE;
42using android::util::FIELD_TYPE_STRING;
43using android::util::ProtoOutputStream;
Yao Chen44cf27c2017-09-14 22:32:50 -070044using std::make_unique;
45using std::unique_ptr;
46using std::vector;
Bookatz906a35c2017-09-20 15:26:44 -070047
48namespace android {
49namespace os {
50namespace statsd {
Yao Chenab273e22017-09-06 12:53:50 -070051
yro947fbce2017-11-15 22:50:23 -080052// for ConfigMetricsReportList
yro17adac92017-11-08 23:16:29 -080053const int FIELD_ID_CONFIG_KEY = 1;
yro947fbce2017-11-15 22:50:23 -080054const int FIELD_ID_REPORTS = 2;
yro17adac92017-11-08 23:16:29 -080055// for ConfigKey
56const int FIELD_ID_UID = 1;
Yangster-mac94e197c2018-01-02 16:03:03 -080057const int FIELD_ID_ID = 2;
yro947fbce2017-11-15 22:50:23 -080058// for ConfigMetricsReport
59const int FIELD_ID_METRICS = 1;
60const int FIELD_ID_UID_MAP = 2;
61
yro03faf092017-12-12 00:17:50 -080062#define STATS_DATA_DIR "/data/misc/stats-data"
yro17adac92017-11-08 23:16:29 -080063
yro31eb67b2017-10-24 13:33:21 -070064StatsLogProcessor::StatsLogProcessor(const sp<UidMap>& uidMap,
Yangster-mace2cd6d52017-11-09 20:38:30 -080065 const sp<AnomalyMonitor>& anomalyMonitor,
Yangster-mac20877162017-12-22 17:19:39 -080066 const long timeBaseSec,
David Chen1d7b0cd2017-11-15 14:20:04 -080067 const std::function<void(const ConfigKey&)>& sendBroadcast)
Chenjie Yu85ed8382017-12-14 16:48:54 -080068 : mUidMap(uidMap),
69 mAnomalyMonitor(anomalyMonitor),
70 mSendBroadcast(sendBroadcast),
Yangster-mac20877162017-12-22 17:19:39 -080071 mTimeBaseSec(timeBaseSec) {
yro947fbce2017-11-15 22:50:23 -080072 // On each initialization of StatsLogProcessor, check stats-data directory to see if there is
73 // any left over data to be read.
74 StorageManager::sendBroadcast(STATS_DATA_DIR, mSendBroadcast);
Chenjie Yu85ed8382017-12-14 16:48:54 -080075 StatsPullerManager statsPullerManager;
76 statsPullerManager.SetTimeBaseSec(mTimeBaseSec);
Yao Chenab273e22017-09-06 12:53:50 -070077}
78
Yao Chenef99c4f2017-09-22 16:26:54 -070079StatsLogProcessor::~StatsLogProcessor() {
Yao Chenab273e22017-09-06 12:53:50 -070080}
81
Yangster-mace2cd6d52017-11-09 20:38:30 -080082void StatsLogProcessor::onAnomalyAlarmFired(
83 const uint64_t timestampNs,
84 unordered_set<sp<const AnomalyAlarm>, SpHash<AnomalyAlarm>> anomalySet) {
Bookatz857aaa52017-12-19 15:29:06 -080085 // TODO: This is a thread-safety issue. mMetricsManagers could change under our feet.
86 // TODO: Solution? Lock everything! :(
87 // TODO: Question: Can we replace the other lock (broadcast), or do we need to supplement it?
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
Yao Chen44cf27c2017-09-14 22:32:50 -070093// TODO: what if statsd service restarts? How do we know what logs are already processed before?
Joe Onoratoc4dfae52017-10-17 23:38:21 -070094void StatsLogProcessor::OnLogEvent(const LogEvent& msg) {
Yao Chenb3561512017-11-21 18:07:17 -080095 StatsdStats::getInstance().noteAtomLogged(msg.GetTagId(), msg.GetTimestampNs() / NS_PER_SEC);
Yao Chen44cf27c2017-09-14 22:32:50 -070096 // pass the event to metrics managers.
Yao Chen312e8982017-12-05 15:29:03 -080097 for (auto& pair : mMetricsManagers) {
98 pair.second->onLogEvent(msg);
David Chend9269e22017-12-05 13:43:51 -080099 flushIfNecessary(msg.GetTimestampNs(), pair.first, *(pair.second));
Yao Chen312e8982017-12-05 15:29:03 -0800100 }
David Chen21582962017-11-01 17:32:46 -0700101 // Hard-coded logic to update the isolated uid's in the uid-map.
Stefan Lafonae2df012017-11-14 09:17:21 -0800102 // The field numbers need to be currently updated by hand with atoms.proto
David Chen21582962017-11-01 17:32:46 -0700103 if (msg.GetTagId() == android::util::ISOLATED_UID_CHANGED) {
104 status_t err = NO_ERROR, err2 = NO_ERROR, err3 = NO_ERROR;
105 bool is_create = msg.GetBool(3, &err);
106 auto parent_uid = int(msg.GetLong(1, &err2));
107 auto isolated_uid = int(msg.GetLong(2, &err3));
108 if (err == NO_ERROR && err2 == NO_ERROR && err3 == NO_ERROR) {
109 if (is_create) {
110 mUidMap->assignIsolatedUid(isolated_uid, parent_uid);
111 } else {
112 mUidMap->removeIsolatedUid(isolated_uid, parent_uid);
113 }
114 }
115 }
Yao Chenab273e22017-09-06 12:53:50 -0700116}
117
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700118void StatsLogProcessor::OnConfigUpdated(const ConfigKey& key, const StatsdConfig& config) {
Yao Chenb3561512017-11-21 18:07:17 -0800119 ALOGD("Updated configuration for key %s", key.ToString().c_str());
Yao Chend10f7b12017-12-18 12:53:50 -0800120 sp<MetricsManager> newMetricsManager = new MetricsManager(key, config, mTimeBaseSec, mUidMap);
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700121 auto it = mMetricsManagers.find(key);
Yao Chen288c6002017-12-12 13:43:18 -0800122 if (it == mMetricsManagers.end() && mMetricsManagers.size() > StatsdStats::kMaxConfigCount) {
Yao Chenb3561512017-11-21 18:07:17 -0800123 ALOGE("Can't accept more configs!");
124 return;
Yao Chen44cf27c2017-09-14 22:32:50 -0700125 }
126
Yao Chencaf339d2017-10-06 16:01:10 -0700127 if (newMetricsManager->isConfigValid()) {
David Chend6896892017-10-25 11:49:03 -0700128 mUidMap->OnConfigUpdated(key);
Yangster-mace2cd6d52017-11-09 20:38:30 -0800129 newMetricsManager->setAnomalyMonitor(mAnomalyMonitor);
Yao Chend10f7b12017-12-18 12:53:50 -0800130 if (config.log_source().package().size() > 0) {
131 // We have to add listener after the MetricsManager is constructed because it's
132 // not safe to create wp or sp from this pointer inside its constructor.
133 mUidMap->addListener(newMetricsManager.get());
134 }
135 mMetricsManagers[key] = newMetricsManager;
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700136 // Why doesn't this work? mMetricsManagers.insert({key, std::move(newMetricsManager)});
Yao Chenb3561512017-11-21 18:07:17 -0800137 VLOG("StatsdConfig valid");
Yao Chencaf339d2017-10-06 16:01:10 -0700138 } else {
139 // If there is any error in the config, don't use it.
Yao Chenb3561512017-11-21 18:07:17 -0800140 ALOGE("StatsdConfig NOT valid");
Yao Chencaf339d2017-10-06 16:01:10 -0700141 }
yro00698da2017-09-15 10:06:40 -0700142}
Bookatz906a35c2017-09-20 15:26:44 -0700143
Yangster7c334a12017-11-22 14:24:24 -0800144size_t StatsLogProcessor::GetMetricsSize(const ConfigKey& key) const {
Yao Chen729093d2017-10-16 10:33:26 -0700145 auto it = mMetricsManagers.find(key);
146 if (it == mMetricsManagers.end()) {
147 ALOGW("Config source %s does not exist", key.ToString().c_str());
David Chen1d7b0cd2017-11-15 14:20:04 -0800148 return 0;
Yao Chen729093d2017-10-16 10:33:26 -0700149 }
David Chen1d7b0cd2017-11-15 14:20:04 -0800150 return it->second->byteSize();
151}
152
Yangster-mac20877162017-12-22 17:19:39 -0800153void StatsLogProcessor::onDumpReport(const ConfigKey& key, const uint64_t& dumpTimeStampNs, ConfigMetricsReportList* report) {
154 auto it = mMetricsManagers.find(key);
155 if (it == mMetricsManagers.end()) {
156 ALOGW("Config source %s does not exist", key.ToString().c_str());
157 return;
158 }
159 report->mutable_config_key()->set_uid(key.GetUid());
Yangster-mac94e197c2018-01-02 16:03:03 -0800160 report->mutable_config_key()->set_id(key.GetId());
Yangster-mac20877162017-12-22 17:19:39 -0800161 ConfigMetricsReport* configMetricsReport = report->add_reports();
162 it->second->onDumpReport(dumpTimeStampNs, configMetricsReport);
163 // TODO: dump uid mapping.
164}
165
David Chen1d7b0cd2017-11-15 14:20:04 -0800166void StatsLogProcessor::onDumpReport(const ConfigKey& key, vector<uint8_t>* outData) {
167 auto it = mMetricsManagers.find(key);
168 if (it == mMetricsManagers.end()) {
169 ALOGW("Config source %s does not exist", key.ToString().c_str());
170 return;
171 }
172
173 // This allows another broadcast to be sent within the rate-limit period if we get close to
174 // filling the buffer again soon.
175 mBroadcastTimesMutex.lock();
176 mLastBroadcastTimes.erase(key);
177 mBroadcastTimesMutex.unlock();
Yao Chen729093d2017-10-16 10:33:26 -0700178
yro17adac92017-11-08 23:16:29 -0800179 ProtoOutputStream proto;
180
yro947fbce2017-11-15 22:50:23 -0800181 // Start of ConfigKey.
yro17adac92017-11-08 23:16:29 -0800182 long long configKeyToken = proto.start(FIELD_TYPE_MESSAGE | FIELD_ID_CONFIG_KEY);
183 proto.write(FIELD_TYPE_INT32 | FIELD_ID_UID, key.GetUid());
Yangster-mac94e197c2018-01-02 16:03:03 -0800184 proto.write(FIELD_TYPE_INT64 | FIELD_ID_ID, (long long)key.GetId());
yro17adac92017-11-08 23:16:29 -0800185 proto.end(configKeyToken);
yro947fbce2017-11-15 22:50:23 -0800186 // End of ConfigKey.
yro17adac92017-11-08 23:16:29 -0800187
yro947fbce2017-11-15 22:50:23 -0800188 // Start of ConfigMetricsReport (reports).
189 long long reportsToken =
190 proto.start(FIELD_TYPE_MESSAGE | FIELD_COUNT_REPEATED | FIELD_ID_REPORTS);
191
192 // First, fill in ConfigMetricsReport using current data on memory, which
193 // starts from filling in StatsLogReport's.
Yao Chen288c6002017-12-12 13:43:18 -0800194 it->second->onDumpReport(&proto);
yro17adac92017-11-08 23:16:29 -0800195
196 // Fill in UidMap.
197 auto uidMap = mUidMap->getOutput(key);
198 const int uidMapSize = uidMap.ByteSize();
199 char uidMapBuffer[uidMapSize];
200 uidMap.SerializeToArray(&uidMapBuffer[0], uidMapSize);
201 proto.write(FIELD_TYPE_MESSAGE | FIELD_ID_UID_MAP, uidMapBuffer, uidMapSize);
202
yro947fbce2017-11-15 22:50:23 -0800203 // End of ConfigMetricsReport (reports).
204 proto.end(reportsToken);
205
206 // Then, check stats-data directory to see there's any file containing
207 // ConfigMetricsReport from previous shutdowns to concatenate to reports.
208 StorageManager::appendConfigMetricsReport(STATS_DATA_DIR, proto);
209
David Chen1d7b0cd2017-11-15 14:20:04 -0800210 if (outData != nullptr) {
211 outData->clear();
212 outData->resize(proto.size());
213 size_t pos = 0;
214 auto iter = proto.data();
215 while (iter.readBuffer() != NULL) {
216 size_t toRead = iter.currentToRead();
217 std::memcpy(&((*outData)[pos]), iter.readBuffer(), toRead);
218 pos += toRead;
219 iter.rp()->move(toRead);
220 }
yro17adac92017-11-08 23:16:29 -0800221 }
Yao Chen69f1baf2017-11-27 17:25:36 -0800222 StatsdStats::getInstance().noteMetricsReportSent(key);
Yao Chen729093d2017-10-16 10:33:26 -0700223}
224
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700225void StatsLogProcessor::OnConfigRemoved(const ConfigKey& key) {
226 auto it = mMetricsManagers.find(key);
227 if (it != mMetricsManagers.end()) {
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700228 mMetricsManagers.erase(it);
David Chend6896892017-10-25 11:49:03 -0700229 mUidMap->OnConfigRemoved(key);
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700230 }
Yao Chenb3561512017-11-21 18:07:17 -0800231 StatsdStats::getInstance().noteConfigRemoved(key);
David Chen1d7b0cd2017-11-15 14:20:04 -0800232
233 std::lock_guard<std::mutex> lock(mBroadcastTimesMutex);
234 mLastBroadcastTimes.erase(key);
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700235}
236
David Chend9269e22017-12-05 13:43:51 -0800237void StatsLogProcessor::flushIfNecessary(uint64_t timestampNs, const ConfigKey& key,
238 MetricsManager& metricsManager) {
David Chen1d7b0cd2017-11-15 14:20:04 -0800239 std::lock_guard<std::mutex> lock(mBroadcastTimesMutex);
yro31eb67b2017-10-24 13:33:21 -0700240
David Chend9269e22017-12-05 13:43:51 -0800241 auto lastCheckTime = mLastByteSizeTimes.find(key);
242 if (lastCheckTime != mLastByteSizeTimes.end()) {
243 if (timestampNs - lastCheckTime->second < StatsdStats::kMinByteSizeCheckPeriodNs) {
244 return;
245 }
246 }
247
248 // We suspect that the byteSize() computation is expensive, so we set a rate limit.
249 size_t totalBytes = metricsManager.byteSize();
250 mLastByteSizeTimes[key] = timestampNs;
251 if (totalBytes >
252 StatsdStats::kMaxMetricsBytesPerConfig) { // Too late. We need to start clearing data.
Yao Chen288c6002017-12-12 13:43:18 -0800253 // TODO(b/70571383): By 12/15/2017 add API to drop data directly
254 ProtoOutputStream proto;
255 metricsManager.onDumpReport(&proto);
David Chen12942952017-12-04 14:28:43 -0800256 StatsdStats::getInstance().noteDataDropped(key);
257 VLOG("StatsD had to toss out metrics for %s", key.ToString().c_str());
David Chend9269e22017-12-05 13:43:51 -0800258 } else if (totalBytes > .9 * StatsdStats::kMaxMetricsBytesPerConfig) {
259 // Send broadcast so that receivers can pull data.
260 auto lastBroadcastTime = mLastBroadcastTimes.find(key);
261 if (lastBroadcastTime != mLastBroadcastTimes.end()) {
262 if (timestampNs - lastBroadcastTime->second < StatsdStats::kMinBroadcastPeriodNs) {
263 VLOG("StatsD would've sent a broadcast but the rate limit stopped us.");
David Chen1d7b0cd2017-11-15 14:20:04 -0800264 return;
265 }
266 }
267 mLastBroadcastTimes[key] = timestampNs;
Yao Chenb3561512017-11-21 18:07:17 -0800268 VLOG("StatsD requesting broadcast for %s", key.ToString().c_str());
David Chen1d7b0cd2017-11-15 14:20:04 -0800269 mSendBroadcast(key);
Yao Chenb3561512017-11-21 18:07:17 -0800270 StatsdStats::getInstance().noteBroadcastSent(key);
yro31eb67b2017-10-24 13:33:21 -0700271 }
272}
273
yro947fbce2017-11-15 22:50:23 -0800274void StatsLogProcessor::WriteDataToDisk() {
275 mkdir(STATS_DATA_DIR, S_IRWXU);
276 for (auto& pair : mMetricsManagers) {
277 const ConfigKey& key = pair.first;
278 vector<uint8_t> data;
279 onDumpReport(key, &data);
280 // TODO: Add a guardrail to prevent accumulation of file on disk.
Yangster-mac94e197c2018-01-02 16:03:03 -0800281 string file_name = StringPrintf("%s/%d-%lld-%ld", STATS_DATA_DIR, key.GetUid(),
282 (long long)key.GetId(), time(nullptr));
yro947fbce2017-11-15 22:50:23 -0800283 StorageManager::writeFile(file_name.c_str(), &data[0], data.size());
284 }
285}
286
Yao Chenef99c4f2017-09-22 16:26:54 -0700287} // namespace statsd
288} // namespace os
289} // namespace android