Yao Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 1 | /* |
| 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 Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 16 | #define DEBUG true // STOPSHIP if true |
Joe Onorato | 9fc9edf | 2017-10-15 20:08:52 -0700 | [diff] [blame] | 17 | #include "Log.h" |
Yao Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 18 | #include "MetricsManager.h" |
Yao Chen | d10f7b1 | 2017-12-18 12:53:50 -0800 | [diff] [blame] | 19 | #include "statslog.h" |
Yao Chen | 93fe3a3 | 2017-11-02 13:52:59 -0700 | [diff] [blame] | 20 | |
Yao Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 21 | #include "CountMetricProducer.h" |
Yao Chen | 93fe3a3 | 2017-11-02 13:52:59 -0700 | [diff] [blame] | 22 | #include "condition/CombinationConditionTracker.h" |
| 23 | #include "condition/SimpleConditionTracker.h" |
Yao Chen | b356151 | 2017-11-21 18:07:17 -0800 | [diff] [blame] | 24 | #include "guardrail/StatsdStats.h" |
Yao Chen | 93fe3a3 | 2017-11-02 13:52:59 -0700 | [diff] [blame] | 25 | #include "matchers/CombinationLogMatchingTracker.h" |
| 26 | #include "matchers/SimpleLogMatchingTracker.h" |
Yao Chen | caf339d | 2017-10-06 16:01:10 -0700 | [diff] [blame] | 27 | #include "metrics_manager_util.h" |
| 28 | #include "stats_util.h" |
Yao Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 29 | |
Yao Chen | 93fe3a3 | 2017-11-02 13:52:59 -0700 | [diff] [blame] | 30 | #include <log/logprint.h> |
Yao Chen | 288c600 | 2017-12-12 13:43:18 -0800 | [diff] [blame] | 31 | |
| 32 | using android::util::FIELD_COUNT_REPEATED; |
| 33 | using android::util::FIELD_TYPE_MESSAGE; |
| 34 | using android::util::ProtoOutputStream; |
| 35 | |
Yao Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 36 | using std::make_unique; |
| 37 | using std::set; |
| 38 | using std::string; |
Yao Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 39 | using std::unordered_map; |
| 40 | using std::vector; |
| 41 | |
| 42 | namespace android { |
| 43 | namespace os { |
| 44 | namespace statsd { |
| 45 | |
Yao Chen | 288c600 | 2017-12-12 13:43:18 -0800 | [diff] [blame] | 46 | const int FIELD_ID_METRICS = 1; |
| 47 | |
Yao Chen | d10f7b1 | 2017-12-18 12:53:50 -0800 | [diff] [blame] | 48 | MetricsManager::MetricsManager(const ConfigKey& key, const StatsdConfig& config, |
| 49 | const long timeBaseSec, sp<UidMap> uidMap) |
| 50 | : mConfigKey(key), mUidMap(uidMap) { |
Yao Chen | b356151 | 2017-11-21 18:07:17 -0800 | [diff] [blame] | 51 | mConfigValid = |
Yangster-mac | 2087716 | 2017-12-22 17:19:39 -0800 | [diff] [blame] | 52 | initStatsdConfig(key, config, *uidMap, timeBaseSec, mTagIds, mAllAtomMatchers, mAllConditionTrackers, |
Yao Chen | b356151 | 2017-11-21 18:07:17 -0800 | [diff] [blame] | 53 | mAllMetricProducers, mAllAnomalyTrackers, mConditionToMetricMap, |
Yangster-mac | 94e197c | 2018-01-02 16:03:03 -0800 | [diff] [blame^] | 54 | mTrackerToMetricMap, mTrackerToConditionMap, mNoReportMetricIds); |
Yao Chen | b356151 | 2017-11-21 18:07:17 -0800 | [diff] [blame] | 55 | |
Yao Chen | d10f7b1 | 2017-12-18 12:53:50 -0800 | [diff] [blame] | 56 | if (!config.has_log_source()) { |
| 57 | // 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 { |
| 66 | mAllowedUid.insert(mAllowedUid.begin(), config.log_source().uid().begin(), |
| 67 | config.log_source().uid().end()); |
| 68 | mAllowedPkg.insert(mAllowedPkg.begin(), config.log_source().package().begin(), |
| 69 | config.log_source().package().end()); |
| 70 | |
| 71 | if (mAllowedUid.size() + mAllowedPkg.size() > StatsdStats::kMaxLogSourceCount) { |
| 72 | ALOGE("Too many log sources. This is likely to be an error in the config."); |
| 73 | mConfigValid = false; |
| 74 | } else { |
| 75 | initLogSourceWhiteList(); |
| 76 | } |
| 77 | } |
| 78 | |
Yao Chen | b356151 | 2017-11-21 18:07:17 -0800 | [diff] [blame] | 79 | // Guardrail. Reject the config if it's too big. |
| 80 | if (mAllMetricProducers.size() > StatsdStats::kMaxMetricCountPerConfig || |
| 81 | mAllConditionTrackers.size() > StatsdStats::kMaxConditionCountPerConfig || |
Stefan Lafon | b8c9aa8 | 2017-12-03 14:27:25 -0800 | [diff] [blame] | 82 | mAllAtomMatchers.size() > StatsdStats::kMaxMatcherCountPerConfig) { |
Yao Chen | b356151 | 2017-11-21 18:07:17 -0800 | [diff] [blame] | 83 | ALOGE("This config is too big! Reject!"); |
| 84 | mConfigValid = false; |
| 85 | } |
Yao Chen | f09569f | 2017-12-13 17:00:51 -0800 | [diff] [blame] | 86 | |
| 87 | // TODO: add alert size. |
| 88 | // no matter whether this config is valid, log it in the stats. |
| 89 | StatsdStats::getInstance().noteConfigReceived(key, mAllMetricProducers.size(), |
| 90 | mAllConditionTrackers.size(), |
| 91 | mAllAtomMatchers.size(), 0, mConfigValid); |
Yao Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 92 | } |
| 93 | |
| 94 | MetricsManager::~MetricsManager() { |
Bookatz | d3606c7 | 2017-10-19 10:13:49 -0700 | [diff] [blame] | 95 | VLOG("~MetricsManager()"); |
Yao Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 96 | } |
| 97 | |
Yao Chen | d10f7b1 | 2017-12-18 12:53:50 -0800 | [diff] [blame] | 98 | void MetricsManager::initLogSourceWhiteList() { |
| 99 | std::lock_guard<std::mutex> lock(mAllowedLogSourcesMutex); |
| 100 | mAllowedLogSources.clear(); |
| 101 | mAllowedLogSources.insert(mAllowedUid.begin(), mAllowedUid.end()); |
| 102 | |
| 103 | for (const auto& pkg : mAllowedPkg) { |
| 104 | auto uids = mUidMap->getAppUid(pkg); |
| 105 | mAllowedLogSources.insert(uids.begin(), uids.end()); |
| 106 | } |
| 107 | if (DEBUG) { |
| 108 | for (const auto& uid : mAllowedLogSources) { |
| 109 | VLOG("Allowed uid %d", uid); |
| 110 | } |
| 111 | } |
| 112 | } |
| 113 | |
Yao Chen | caf339d | 2017-10-06 16:01:10 -0700 | [diff] [blame] | 114 | bool MetricsManager::isConfigValid() const { |
| 115 | return mConfigValid; |
| 116 | } |
| 117 | |
Yao Chen | d10f7b1 | 2017-12-18 12:53:50 -0800 | [diff] [blame] | 118 | void MetricsManager::notifyAppUpgrade(const string& apk, const int uid, const int64_t version) { |
| 119 | // check if we care this package |
| 120 | if (std::find(mAllowedPkg.begin(), mAllowedPkg.end(), apk) == mAllowedPkg.end()) { |
| 121 | return; |
| 122 | } |
| 123 | // We will re-initialize the whole list because we don't want to keep the multi mapping of |
| 124 | // UID<->pkg inside MetricsManager to reduce the memory usage. |
| 125 | initLogSourceWhiteList(); |
| 126 | } |
| 127 | |
| 128 | void MetricsManager::notifyAppRemoved(const string& apk, const int uid) { |
| 129 | // check if we care this package |
| 130 | if (std::find(mAllowedPkg.begin(), mAllowedPkg.end(), apk) == mAllowedPkg.end()) { |
| 131 | return; |
| 132 | } |
| 133 | // We will re-initialize the whole list because we don't want to keep the multi mapping of |
| 134 | // UID<->pkg inside MetricsManager to reduce the memory usage. |
| 135 | initLogSourceWhiteList(); |
| 136 | } |
| 137 | |
| 138 | void MetricsManager::onUidMapReceived() { |
| 139 | if (mAllowedPkg.size() == 0) { |
| 140 | return; |
| 141 | } |
| 142 | initLogSourceWhiteList(); |
| 143 | } |
| 144 | |
Yangster-mac | 2087716 | 2017-12-22 17:19:39 -0800 | [diff] [blame] | 145 | void MetricsManager::onDumpReport(const uint64_t& dumpTimeStampNs, ConfigMetricsReport* report) { |
Yangster-mac | 94e197c | 2018-01-02 16:03:03 -0800 | [diff] [blame^] | 146 | for (const auto& producer : mAllMetricProducers) { |
| 147 | if (mNoReportMetricIds.find(producer->getMetricId()) == mNoReportMetricIds.end()) { |
| 148 | producer->onDumpReport(dumpTimeStampNs, report->add_metrics()); |
| 149 | } |
Yangster-mac | 2087716 | 2017-12-22 17:19:39 -0800 | [diff] [blame] | 150 | } |
| 151 | } |
| 152 | |
Yao Chen | 288c600 | 2017-12-12 13:43:18 -0800 | [diff] [blame] | 153 | void MetricsManager::onDumpReport(ProtoOutputStream* protoOutput) { |
Yao Chen | 729093d | 2017-10-16 10:33:26 -0700 | [diff] [blame] | 154 | VLOG("=========================Metric Reports Start=========================="); |
Yao Chen | 288c600 | 2017-12-12 13:43:18 -0800 | [diff] [blame] | 155 | uint64_t dumpTimeStampNs = time(nullptr) * NS_PER_SEC; |
Yao Chen | 729093d | 2017-10-16 10:33:26 -0700 | [diff] [blame] | 156 | // one StatsLogReport per MetricProduer |
Yangster-mac | 94e197c | 2018-01-02 16:03:03 -0800 | [diff] [blame^] | 157 | for (const auto& producer : mAllMetricProducers) { |
| 158 | if (mNoReportMetricIds.find(producer->getMetricId()) == mNoReportMetricIds.end()) { |
| 159 | long long token = |
| 160 | protoOutput->start(FIELD_TYPE_MESSAGE | FIELD_COUNT_REPEATED | FIELD_ID_METRICS); |
| 161 | producer->onDumpReport(dumpTimeStampNs, protoOutput); |
| 162 | protoOutput->end(token); |
| 163 | } |
Yao Chen | 729093d | 2017-10-16 10:33:26 -0700 | [diff] [blame] | 164 | } |
| 165 | VLOG("=========================Metric Reports End=========================="); |
Yao Chen | 729093d | 2017-10-16 10:33:26 -0700 | [diff] [blame] | 166 | } |
| 167 | |
Yao Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 168 | // Consume the stats log if it's interesting to this metric. |
Joe Onorato | c4dfae5 | 2017-10-17 23:38:21 -0700 | [diff] [blame] | 169 | void MetricsManager::onLogEvent(const LogEvent& event) { |
Yao Chen | caf339d | 2017-10-06 16:01:10 -0700 | [diff] [blame] | 170 | if (!mConfigValid) { |
| 171 | return; |
| 172 | } |
| 173 | |
Yao Chen | d10f7b1 | 2017-12-18 12:53:50 -0800 | [diff] [blame] | 174 | if (event.GetTagId() != android::util::APP_HOOK) { |
| 175 | std::lock_guard<std::mutex> lock(mAllowedLogSourcesMutex); |
| 176 | if (mAllowedLogSources.find(event.GetUid()) == mAllowedLogSources.end()) { |
| 177 | VLOG("log source %d not on the whitelist", event.GetUid()); |
| 178 | return; |
| 179 | } |
| 180 | } |
| 181 | |
Joe Onorato | c4dfae5 | 2017-10-17 23:38:21 -0700 | [diff] [blame] | 182 | int tagId = event.GetTagId(); |
Yao Chen | 5154a379 | 2017-10-30 22:57:06 -0700 | [diff] [blame] | 183 | uint64_t eventTime = event.GetTimestampNs(); |
Yao Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 184 | if (mTagIds.find(tagId) == mTagIds.end()) { |
| 185 | // not interesting... |
| 186 | return; |
| 187 | } |
Yao Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 188 | |
Stefan Lafon | b8c9aa8 | 2017-12-03 14:27:25 -0800 | [diff] [blame] | 189 | vector<MatchingState> matcherCache(mAllAtomMatchers.size(), MatchingState::kNotComputed); |
Yao Chen | caf339d | 2017-10-06 16:01:10 -0700 | [diff] [blame] | 190 | |
Stefan Lafon | b8c9aa8 | 2017-12-03 14:27:25 -0800 | [diff] [blame] | 191 | for (auto& matcher : mAllAtomMatchers) { |
| 192 | matcher->onLogEvent(event, mAllAtomMatchers, matcherCache); |
Yao Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 193 | } |
| 194 | |
Yao Chen | caf339d | 2017-10-06 16:01:10 -0700 | [diff] [blame] | 195 | // A bitmap to see which ConditionTracker needs to be re-evaluated. |
| 196 | vector<bool> conditionToBeEvaluated(mAllConditionTrackers.size(), false); |
| 197 | |
| 198 | for (const auto& pair : mTrackerToConditionMap) { |
| 199 | if (matcherCache[pair.first] == MatchingState::kMatched) { |
| 200 | const auto& conditionList = pair.second; |
| 201 | for (const int conditionIndex : conditionList) { |
| 202 | conditionToBeEvaluated[conditionIndex] = true; |
| 203 | } |
| 204 | } |
| 205 | } |
| 206 | |
| 207 | vector<ConditionState> conditionCache(mAllConditionTrackers.size(), |
| 208 | ConditionState::kNotEvaluated); |
| 209 | // A bitmap to track if a condition has changed value. |
| 210 | vector<bool> changedCache(mAllConditionTrackers.size(), false); |
| 211 | for (size_t i = 0; i < mAllConditionTrackers.size(); i++) { |
| 212 | if (conditionToBeEvaluated[i] == false) { |
| 213 | continue; |
| 214 | } |
Yao Chen | caf339d | 2017-10-06 16:01:10 -0700 | [diff] [blame] | 215 | sp<ConditionTracker>& condition = mAllConditionTrackers[i]; |
| 216 | condition->evaluateCondition(event, matcherCache, mAllConditionTrackers, conditionCache, |
Yao Chen | 967b205 | 2017-11-07 16:36:43 -0800 | [diff] [blame] | 217 | changedCache); |
Yao Chen | 729093d | 2017-10-16 10:33:26 -0700 | [diff] [blame] | 218 | } |
| 219 | |
| 220 | for (size_t i = 0; i < mAllConditionTrackers.size(); i++) { |
Yao Chen | 967b205 | 2017-11-07 16:36:43 -0800 | [diff] [blame] | 221 | if (changedCache[i] == false) { |
Yao Chen | 729093d | 2017-10-16 10:33:26 -0700 | [diff] [blame] | 222 | continue; |
| 223 | } |
| 224 | auto pair = mConditionToMetricMap.find(i); |
| 225 | if (pair != mConditionToMetricMap.end()) { |
| 226 | auto& metricList = pair->second; |
| 227 | for (auto metricIndex : metricList) { |
| 228 | // metric cares about non sliced condition, and it's changed. |
| 229 | // Push the new condition to it directly. |
Yao Chen | 967b205 | 2017-11-07 16:36:43 -0800 | [diff] [blame] | 230 | if (!mAllMetricProducers[metricIndex]->isConditionSliced()) { |
Yao Chen | 5154a379 | 2017-10-30 22:57:06 -0700 | [diff] [blame] | 231 | mAllMetricProducers[metricIndex]->onConditionChanged(conditionCache[i], |
| 232 | eventTime); |
Yao Chen | 729093d | 2017-10-16 10:33:26 -0700 | [diff] [blame] | 233 | // metric cares about sliced conditions, and it may have changed. Send |
| 234 | // notification, and the metric can query the sliced conditions that are |
| 235 | // interesting to it. |
Yangster | f2bee6f | 2017-11-29 12:01:05 -0800 | [diff] [blame] | 236 | } else { |
Yao Chen | 5154a379 | 2017-10-30 22:57:06 -0700 | [diff] [blame] | 237 | mAllMetricProducers[metricIndex]->onSlicedConditionMayChange(eventTime); |
Yao Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 238 | } |
Yao Chen | caf339d | 2017-10-06 16:01:10 -0700 | [diff] [blame] | 239 | } |
| 240 | } |
| 241 | } |
| 242 | |
Stefan Lafon | b8c9aa8 | 2017-12-03 14:27:25 -0800 | [diff] [blame] | 243 | // For matched AtomMatchers, tell relevant metrics that a matched event has come. |
| 244 | for (size_t i = 0; i < mAllAtomMatchers.size(); i++) { |
Yao Chen | caf339d | 2017-10-06 16:01:10 -0700 | [diff] [blame] | 245 | if (matcherCache[i] == MatchingState::kMatched) { |
Yao Chen | b356151 | 2017-11-21 18:07:17 -0800 | [diff] [blame] | 246 | StatsdStats::getInstance().noteMatcherMatched(mConfigKey, |
Yangster-mac | 94e197c | 2018-01-02 16:03:03 -0800 | [diff] [blame^] | 247 | mAllAtomMatchers[i]->getId()); |
Yao Chen | caf339d | 2017-10-06 16:01:10 -0700 | [diff] [blame] | 248 | auto pair = mTrackerToMetricMap.find(i); |
| 249 | if (pair != mTrackerToMetricMap.end()) { |
| 250 | auto& metricList = pair->second; |
| 251 | for (const int metricIndex : metricList) { |
Chenjie Yu | b3dda41 | 2017-10-24 13:41:59 -0700 | [diff] [blame] | 252 | // pushed metrics are never scheduled pulls |
Chenjie Yu | a7259ab | 2017-12-10 08:31:05 -0800 | [diff] [blame] | 253 | mAllMetricProducers[metricIndex]->onMatchedLogEvent(i, event); |
Yao Chen | caf339d | 2017-10-06 16:01:10 -0700 | [diff] [blame] | 254 | } |
Yao Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 255 | } |
| 256 | } |
| 257 | } |
| 258 | } |
| 259 | |
Yangster-mac | e2cd6d5 | 2017-11-09 20:38:30 -0800 | [diff] [blame] | 260 | void MetricsManager::onAnomalyAlarmFired(const uint64_t timestampNs, |
Bookatz | cc5adef2 | 2017-11-21 14:36:23 -0800 | [diff] [blame] | 261 | unordered_set<sp<const AnomalyAlarm>, SpHash<AnomalyAlarm>>& anomalySet) { |
Yangster-mac | e2cd6d5 | 2017-11-09 20:38:30 -0800 | [diff] [blame] | 262 | for (const auto& itr : mAllAnomalyTrackers) { |
Bookatz | cc5adef2 | 2017-11-21 14:36:23 -0800 | [diff] [blame] | 263 | itr->informAlarmsFired(timestampNs, anomalySet); |
Yangster-mac | e2cd6d5 | 2017-11-09 20:38:30 -0800 | [diff] [blame] | 264 | } |
| 265 | } |
| 266 | |
| 267 | void MetricsManager::setAnomalyMonitor(const sp<AnomalyMonitor>& anomalyMonitor) { |
| 268 | for (auto& itr : mAllAnomalyTrackers) { |
| 269 | itr->setAnomalyMonitor(anomalyMonitor); |
| 270 | } |
| 271 | } |
| 272 | |
yro | 69007c8 | 2017-10-26 20:42:57 -0700 | [diff] [blame] | 273 | // Returns the total byte size of all metrics managed by a single config source. |
| 274 | size_t MetricsManager::byteSize() { |
| 275 | size_t totalSize = 0; |
| 276 | for (auto metricProducer : mAllMetricProducers) { |
| 277 | totalSize += metricProducer->byteSize(); |
| 278 | } |
| 279 | return totalSize; |
| 280 | } |
| 281 | |
Yao Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 282 | } // namespace statsd |
| 283 | } // namespace os |
| 284 | } // namespace android |