blob: d0737de8acf3d83375e4af9f17c236d1588ef3ff [file] [log] [blame]
Yao Chen44cf27c2017-09-14 22:32: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 */
Yao Chen44cf27c2017-09-14 22:32:50 -070016#define DEBUG true // STOPSHIP if true
Joe Onorato9fc9edf2017-10-15 20:08:52 -070017#include "Log.h"
Yao Chen44cf27c2017-09-14 22:32:50 -070018#include "MetricsManager.h"
Yao Chend10f7b12017-12-18 12:53:50 -080019#include "statslog.h"
Yao Chen93fe3a32017-11-02 13:52:59 -070020
Yao Chen44cf27c2017-09-14 22:32:50 -070021#include "CountMetricProducer.h"
Yao Chen93fe3a32017-11-02 13:52:59 -070022#include "condition/CombinationConditionTracker.h"
23#include "condition/SimpleConditionTracker.h"
Yao Chenb3561512017-11-21 18:07:17 -080024#include "guardrail/StatsdStats.h"
Yao Chen93fe3a32017-11-02 13:52:59 -070025#include "matchers/CombinationLogMatchingTracker.h"
26#include "matchers/SimpleLogMatchingTracker.h"
Yao Chencaf339d2017-10-06 16:01:10 -070027#include "metrics_manager_util.h"
28#include "stats_util.h"
Yao Chen44cf27c2017-09-14 22:32:50 -070029
Yao Chen93fe3a32017-11-02 13:52:59 -070030#include <log/logprint.h>
Yao Chen288c6002017-12-12 13:43:18 -080031
32using android::util::FIELD_COUNT_REPEATED;
33using android::util::FIELD_TYPE_MESSAGE;
34using android::util::ProtoOutputStream;
35
Yao Chen44cf27c2017-09-14 22:32:50 -070036using std::make_unique;
37using std::set;
38using std::string;
Yao Chen44cf27c2017-09-14 22:32:50 -070039using std::unordered_map;
40using std::vector;
41
42namespace android {
43namespace os {
44namespace statsd {
45
Yao Chen288c6002017-12-12 13:43:18 -080046const int FIELD_ID_METRICS = 1;
47
Yao Chend10f7b12017-12-18 12:53:50 -080048MetricsManager::MetricsManager(const ConfigKey& key, const StatsdConfig& config,
49 const long timeBaseSec, sp<UidMap> uidMap)
50 : mConfigKey(key), mUidMap(uidMap) {
Yao Chenb3561512017-11-21 18:07:17 -080051 mConfigValid =
Yangster-mac20877162017-12-22 17:19:39 -080052 initStatsdConfig(key, config, *uidMap, timeBaseSec, mTagIds, mAllAtomMatchers, mAllConditionTrackers,
Yao Chenb3561512017-11-21 18:07:17 -080053 mAllMetricProducers, mAllAnomalyTrackers, mConditionToMetricMap,
Yangster-mac94e197c2018-01-02 16:03:03 -080054 mTrackerToMetricMap, mTrackerToConditionMap, mNoReportMetricIds);
Yao Chenb3561512017-11-21 18:07:17 -080055
Yao Chen147ce602017-12-22 14:35:34 -080056 if (config.allowed_log_source_size() == 0) {
Yao Chend10f7b12017-12-18 12:53:50 -080057 // TODO(b/70794411): uncomment the following line and remove the hard coded log source
58 // after all configs have the log source added.
59 // mConfigValid = false;
60 // ALOGE("Log source white list is empty! This config won't get any data.");
61
62 mAllowedUid.push_back(1000);
63 mAllowedUid.push_back(0);
64 mAllowedLogSources.insert(mAllowedUid.begin(), mAllowedUid.end());
65 } else {
Yao Chen147ce602017-12-22 14:35:34 -080066 for (const auto& source : config.allowed_log_source()) {
67 auto it = UidMap::sAidToUidMapping.find(source);
68 if (it != UidMap::sAidToUidMapping.end()) {
69 mAllowedUid.push_back(it->second);
70 } else {
71 mAllowedPkg.push_back(source);
72 }
73 }
Yao Chend10f7b12017-12-18 12:53:50 -080074
75 if (mAllowedUid.size() + mAllowedPkg.size() > StatsdStats::kMaxLogSourceCount) {
76 ALOGE("Too many log sources. This is likely to be an error in the config.");
77 mConfigValid = false;
78 } else {
79 initLogSourceWhiteList();
80 }
81 }
82
Yao Chenb3561512017-11-21 18:07:17 -080083 // Guardrail. Reject the config if it's too big.
84 if (mAllMetricProducers.size() > StatsdStats::kMaxMetricCountPerConfig ||
85 mAllConditionTrackers.size() > StatsdStats::kMaxConditionCountPerConfig ||
Stefan Lafonb8c9aa82017-12-03 14:27:25 -080086 mAllAtomMatchers.size() > StatsdStats::kMaxMatcherCountPerConfig) {
Yao Chenb3561512017-11-21 18:07:17 -080087 ALOGE("This config is too big! Reject!");
88 mConfigValid = false;
89 }
Yao Chenf09569f2017-12-13 17:00:51 -080090
91 // TODO: add alert size.
92 // no matter whether this config is valid, log it in the stats.
93 StatsdStats::getInstance().noteConfigReceived(key, mAllMetricProducers.size(),
94 mAllConditionTrackers.size(),
95 mAllAtomMatchers.size(), 0, mConfigValid);
Yao Chen44cf27c2017-09-14 22:32:50 -070096}
97
98MetricsManager::~MetricsManager() {
Bookatzd3606c72017-10-19 10:13:49 -070099 VLOG("~MetricsManager()");
Yao Chen44cf27c2017-09-14 22:32:50 -0700100}
101
Yao Chend10f7b12017-12-18 12:53:50 -0800102void MetricsManager::initLogSourceWhiteList() {
103 std::lock_guard<std::mutex> lock(mAllowedLogSourcesMutex);
104 mAllowedLogSources.clear();
105 mAllowedLogSources.insert(mAllowedUid.begin(), mAllowedUid.end());
106
107 for (const auto& pkg : mAllowedPkg) {
108 auto uids = mUidMap->getAppUid(pkg);
109 mAllowedLogSources.insert(uids.begin(), uids.end());
110 }
111 if (DEBUG) {
112 for (const auto& uid : mAllowedLogSources) {
113 VLOG("Allowed uid %d", uid);
114 }
115 }
116}
117
Yao Chencaf339d2017-10-06 16:01:10 -0700118bool MetricsManager::isConfigValid() const {
119 return mConfigValid;
120}
121
Yao Chend10f7b12017-12-18 12:53:50 -0800122void MetricsManager::notifyAppUpgrade(const string& apk, const int uid, const int64_t version) {
123 // check if we care this package
124 if (std::find(mAllowedPkg.begin(), mAllowedPkg.end(), apk) == mAllowedPkg.end()) {
125 return;
126 }
127 // We will re-initialize the whole list because we don't want to keep the multi mapping of
128 // UID<->pkg inside MetricsManager to reduce the memory usage.
129 initLogSourceWhiteList();
130}
131
132void MetricsManager::notifyAppRemoved(const string& apk, const int uid) {
133 // check if we care this package
134 if (std::find(mAllowedPkg.begin(), mAllowedPkg.end(), apk) == mAllowedPkg.end()) {
135 return;
136 }
137 // We will re-initialize the whole list because we don't want to keep the multi mapping of
138 // UID<->pkg inside MetricsManager to reduce the memory usage.
139 initLogSourceWhiteList();
140}
141
142void MetricsManager::onUidMapReceived() {
143 if (mAllowedPkg.size() == 0) {
144 return;
145 }
146 initLogSourceWhiteList();
147}
148
Yangster-mac20877162017-12-22 17:19:39 -0800149void MetricsManager::onDumpReport(const uint64_t& dumpTimeStampNs, ConfigMetricsReport* report) {
Yangster-mac94e197c2018-01-02 16:03:03 -0800150 for (const auto& producer : mAllMetricProducers) {
151 if (mNoReportMetricIds.find(producer->getMetricId()) == mNoReportMetricIds.end()) {
152 producer->onDumpReport(dumpTimeStampNs, report->add_metrics());
153 }
Yangster-mac20877162017-12-22 17:19:39 -0800154 }
155}
156
Yao Chen884c8c12018-01-26 10:36:25 -0800157void MetricsManager::dumpStates(FILE* out, bool verbose) {
158 fprintf(out, "ConfigKey %s, allowed source:", mConfigKey.ToString().c_str());
159 {
160 std::lock_guard<std::mutex> lock(mAllowedLogSourcesMutex);
161 for (const auto& source : mAllowedLogSources) {
162 fprintf(out, "%d ", source);
163 }
164 }
165 fprintf(out, "\n");
166 for (const auto& producer : mAllMetricProducers) {
167 producer->dumpStates(out, verbose);
168 }
169}
170
Yao Chen288c6002017-12-12 13:43:18 -0800171void MetricsManager::onDumpReport(ProtoOutputStream* protoOutput) {
Yao Chen729093d2017-10-16 10:33:26 -0700172 VLOG("=========================Metric Reports Start==========================");
Yao Chen288c6002017-12-12 13:43:18 -0800173 uint64_t dumpTimeStampNs = time(nullptr) * NS_PER_SEC;
Yao Chen729093d2017-10-16 10:33:26 -0700174 // one StatsLogReport per MetricProduer
Yangster-mac94e197c2018-01-02 16:03:03 -0800175 for (const auto& producer : mAllMetricProducers) {
176 if (mNoReportMetricIds.find(producer->getMetricId()) == mNoReportMetricIds.end()) {
177 long long token =
178 protoOutput->start(FIELD_TYPE_MESSAGE | FIELD_COUNT_REPEATED | FIELD_ID_METRICS);
179 producer->onDumpReport(dumpTimeStampNs, protoOutput);
180 protoOutput->end(token);
181 }
Yao Chen729093d2017-10-16 10:33:26 -0700182 }
183 VLOG("=========================Metric Reports End==========================");
Yao Chen729093d2017-10-16 10:33:26 -0700184}
185
Yao Chen44cf27c2017-09-14 22:32:50 -0700186// Consume the stats log if it's interesting to this metric.
Joe Onoratoc4dfae52017-10-17 23:38:21 -0700187void MetricsManager::onLogEvent(const LogEvent& event) {
Yao Chencaf339d2017-10-06 16:01:10 -0700188 if (!mConfigValid) {
189 return;
190 }
191
Yao Chend10f7b12017-12-18 12:53:50 -0800192 if (event.GetTagId() != android::util::APP_HOOK) {
193 std::lock_guard<std::mutex> lock(mAllowedLogSourcesMutex);
194 if (mAllowedLogSources.find(event.GetUid()) == mAllowedLogSources.end()) {
195 VLOG("log source %d not on the whitelist", event.GetUid());
196 return;
197 }
David Chendaa9f3a2017-12-28 16:52:22 -0800198 } else { // Check that app hook fields are valid.
199 // TODO: Find a way to make these checks easier to maintain if the app hooks get changed.
200
201 // Label is 2nd from last field and must be from [0, 15].
202 status_t err = NO_ERROR;
203 long label = event.GetLong(event.size()-1, &err);
204 if (err != NO_ERROR || label < 0 || label > 15) {
205 VLOG("App hook does not have valid label %ld", label);
206 return;
207 }
208 // The state must be from 0,3. This part of code must be manually updated.
209 long apphookState = event.GetLong(event.size(), &err);
210 if (err != NO_ERROR || apphookState < 0 || apphookState > 3) {
211 VLOG("App hook does not have valid state %ld", apphookState);
212 return;
213 }
Yao Chend10f7b12017-12-18 12:53:50 -0800214 }
215
Joe Onoratoc4dfae52017-10-17 23:38:21 -0700216 int tagId = event.GetTagId();
Yao Chen5154a372017-10-30 22:57:06 -0700217 uint64_t eventTime = event.GetTimestampNs();
Yao Chen44cf27c2017-09-14 22:32:50 -0700218 if (mTagIds.find(tagId) == mTagIds.end()) {
219 // not interesting...
220 return;
221 }
Yao Chen44cf27c2017-09-14 22:32:50 -0700222
Stefan Lafonb8c9aa82017-12-03 14:27:25 -0800223 vector<MatchingState> matcherCache(mAllAtomMatchers.size(), MatchingState::kNotComputed);
Yao Chencaf339d2017-10-06 16:01:10 -0700224
Stefan Lafonb8c9aa82017-12-03 14:27:25 -0800225 for (auto& matcher : mAllAtomMatchers) {
226 matcher->onLogEvent(event, mAllAtomMatchers, matcherCache);
Yao Chen44cf27c2017-09-14 22:32:50 -0700227 }
228
Yao Chencaf339d2017-10-06 16:01:10 -0700229 // A bitmap to see which ConditionTracker needs to be re-evaluated.
230 vector<bool> conditionToBeEvaluated(mAllConditionTrackers.size(), false);
231
232 for (const auto& pair : mTrackerToConditionMap) {
233 if (matcherCache[pair.first] == MatchingState::kMatched) {
234 const auto& conditionList = pair.second;
235 for (const int conditionIndex : conditionList) {
236 conditionToBeEvaluated[conditionIndex] = true;
237 }
238 }
239 }
240
241 vector<ConditionState> conditionCache(mAllConditionTrackers.size(),
242 ConditionState::kNotEvaluated);
243 // A bitmap to track if a condition has changed value.
244 vector<bool> changedCache(mAllConditionTrackers.size(), false);
245 for (size_t i = 0; i < mAllConditionTrackers.size(); i++) {
246 if (conditionToBeEvaluated[i] == false) {
247 continue;
248 }
Yao Chencaf339d2017-10-06 16:01:10 -0700249 sp<ConditionTracker>& condition = mAllConditionTrackers[i];
250 condition->evaluateCondition(event, matcherCache, mAllConditionTrackers, conditionCache,
Yao Chen967b2052017-11-07 16:36:43 -0800251 changedCache);
Yao Chen729093d2017-10-16 10:33:26 -0700252 }
253
254 for (size_t i = 0; i < mAllConditionTrackers.size(); i++) {
Yao Chen967b2052017-11-07 16:36:43 -0800255 if (changedCache[i] == false) {
Yao Chen729093d2017-10-16 10:33:26 -0700256 continue;
257 }
258 auto pair = mConditionToMetricMap.find(i);
259 if (pair != mConditionToMetricMap.end()) {
260 auto& metricList = pair->second;
261 for (auto metricIndex : metricList) {
262 // metric cares about non sliced condition, and it's changed.
263 // Push the new condition to it directly.
Yao Chen967b2052017-11-07 16:36:43 -0800264 if (!mAllMetricProducers[metricIndex]->isConditionSliced()) {
Yao Chen5154a372017-10-30 22:57:06 -0700265 mAllMetricProducers[metricIndex]->onConditionChanged(conditionCache[i],
266 eventTime);
Yao Chen729093d2017-10-16 10:33:26 -0700267 // metric cares about sliced conditions, and it may have changed. Send
268 // notification, and the metric can query the sliced conditions that are
269 // interesting to it.
Yangsterf2bee6f2017-11-29 12:01:05 -0800270 } else {
Yao Chen5154a372017-10-30 22:57:06 -0700271 mAllMetricProducers[metricIndex]->onSlicedConditionMayChange(eventTime);
Yao Chen44cf27c2017-09-14 22:32:50 -0700272 }
Yao Chencaf339d2017-10-06 16:01:10 -0700273 }
274 }
275 }
276
Stefan Lafonb8c9aa82017-12-03 14:27:25 -0800277 // For matched AtomMatchers, tell relevant metrics that a matched event has come.
278 for (size_t i = 0; i < mAllAtomMatchers.size(); i++) {
Yao Chencaf339d2017-10-06 16:01:10 -0700279 if (matcherCache[i] == MatchingState::kMatched) {
Yao Chenb3561512017-11-21 18:07:17 -0800280 StatsdStats::getInstance().noteMatcherMatched(mConfigKey,
Yangster-mac94e197c2018-01-02 16:03:03 -0800281 mAllAtomMatchers[i]->getId());
Yao Chencaf339d2017-10-06 16:01:10 -0700282 auto pair = mTrackerToMetricMap.find(i);
283 if (pair != mTrackerToMetricMap.end()) {
284 auto& metricList = pair->second;
285 for (const int metricIndex : metricList) {
Chenjie Yub3dda412017-10-24 13:41:59 -0700286 // pushed metrics are never scheduled pulls
Chenjie Yua7259ab2017-12-10 08:31:05 -0800287 mAllMetricProducers[metricIndex]->onMatchedLogEvent(i, event);
Yao Chencaf339d2017-10-06 16:01:10 -0700288 }
Yao Chen44cf27c2017-09-14 22:32:50 -0700289 }
290 }
291 }
292}
293
Yangster-mace2cd6d52017-11-09 20:38:30 -0800294void MetricsManager::onAnomalyAlarmFired(const uint64_t timestampNs,
Bookatzcc5adef2017-11-21 14:36:23 -0800295 unordered_set<sp<const AnomalyAlarm>, SpHash<AnomalyAlarm>>& anomalySet) {
Yangster-mace2cd6d52017-11-09 20:38:30 -0800296 for (const auto& itr : mAllAnomalyTrackers) {
Bookatzcc5adef2017-11-21 14:36:23 -0800297 itr->informAlarmsFired(timestampNs, anomalySet);
Yangster-mace2cd6d52017-11-09 20:38:30 -0800298 }
299}
300
301void MetricsManager::setAnomalyMonitor(const sp<AnomalyMonitor>& anomalyMonitor) {
302 for (auto& itr : mAllAnomalyTrackers) {
303 itr->setAnomalyMonitor(anomalyMonitor);
304 }
305}
306
yro69007c82017-10-26 20:42:57 -0700307// Returns the total byte size of all metrics managed by a single config source.
308size_t MetricsManager::byteSize() {
309 size_t totalSize = 0;
310 for (auto metricProducer : mAllMetricProducers) {
311 totalSize += metricProducer->byteSize();
312 }
313 return totalSize;
314}
315
Yao Chen44cf27c2017-09-14 22:32:50 -0700316} // namespace statsd
317} // namespace os
318} // namespace android