Yao Chen | ab273e2 | 2017-09-06 12:53: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 | ab273e2 | 2017-09-06 12:53:50 -0700 | [diff] [blame] | 16 | |
Yangster-mac | 2087716 | 2017-12-22 17:19:39 -0800 | [diff] [blame] | 17 | #pragma once |
| 18 | |
| 19 | #include <gtest/gtest_prod.h> |
Joe Onorato | 9fc9edf | 2017-10-15 20:08:52 -0700 | [diff] [blame] | 20 | #include "config/ConfigListener.h" |
| 21 | #include "logd/LogReader.h" |
Yao Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 22 | #include "metrics/MetricsManager.h" |
Joe Onorato | 9fc9edf | 2017-10-15 20:08:52 -0700 | [diff] [blame] | 23 | #include "packages/UidMap.h" |
Chenjie Yu | fa22d65 | 2018-02-05 14:37:48 -0800 | [diff] [blame] | 24 | #include "external/StatsPullerManager.h" |
Joe Onorato | 9fc9edf | 2017-10-15 20:08:52 -0700 | [diff] [blame] | 25 | |
| 26 | #include "frameworks/base/cmds/statsd/src/statsd_config.pb.h" |
Yao Chen | ab273e2 | 2017-09-06 12:53:50 -0700 | [diff] [blame] | 27 | |
Yao Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 28 | #include <stdio.h> |
David Chen | 0656b7a | 2017-09-13 15:53:39 -0700 | [diff] [blame] | 29 | #include <unordered_map> |
| 30 | |
Bookatz | 906a35c | 2017-09-20 15:26:44 -0700 | [diff] [blame] | 31 | namespace android { |
| 32 | namespace os { |
| 33 | namespace statsd { |
Yao Chen | ab273e2 | 2017-09-06 12:53:50 -0700 | [diff] [blame] | 34 | |
Chenjie Yu | e36018b | 2018-04-16 15:18:30 -0700 | [diff] [blame] | 35 | // Keep this in sync with DumpReportReason enum in stats_log.proto |
| 36 | enum DumpReportReason { |
| 37 | DEVICE_SHUTDOWN = 1, |
| 38 | CONFIG_UPDATED = 2, |
| 39 | CONFIG_REMOVED = 3, |
| 40 | GET_DATA_CALLED = 4, |
| 41 | ADB_DUMP = 5, |
| 42 | CONFIG_RESET = 6, |
| 43 | STATSCOMPANION_DIED = 7 |
| 44 | }; |
| 45 | |
Joe Onorato | 9fc9edf | 2017-10-15 20:08:52 -0700 | [diff] [blame] | 46 | class StatsLogProcessor : public ConfigListener { |
Yao Chen | ab273e2 | 2017-09-06 12:53:50 -0700 | [diff] [blame] | 47 | public: |
Yangster-mac | 932ecec | 2018-02-01 10:23:52 -0800 | [diff] [blame] | 48 | StatsLogProcessor(const sp<UidMap>& uidMap, const sp<AlarmMonitor>& anomalyAlarmMonitor, |
| 49 | const sp<AlarmMonitor>& subscriberTriggerAlarmMonitor, |
Yangster-mac | 15f6bbc | 2018-04-08 11:52:26 -0700 | [diff] [blame] | 50 | const int64_t timeBaseNs, |
David Chen | 4894490 | 2018-05-03 10:29:11 -0700 | [diff] [blame] | 51 | const std::function<bool(const ConfigKey&)>& sendBroadcast); |
Yao Chen | ab273e2 | 2017-09-06 12:53:50 -0700 | [diff] [blame] | 52 | virtual ~StatsLogProcessor(); |
| 53 | |
Yao Chen | 163d260 | 2018-04-10 10:39:53 -0700 | [diff] [blame] | 54 | void OnLogEvent(LogEvent* event, bool reconnectionStarts); |
| 55 | |
| 56 | // for testing only. |
Yangster-mac | d40053e | 2018-01-09 16:29:22 -0800 | [diff] [blame] | 57 | void OnLogEvent(LogEvent* event); |
Yao Chen | ab273e2 | 2017-09-06 12:53:50 -0700 | [diff] [blame] | 58 | |
Yangster-mac | c04feba | 2018-04-02 14:37:33 -0700 | [diff] [blame] | 59 | void OnConfigUpdated(const int64_t timestampNs, const ConfigKey& key, |
| 60 | const StatsdConfig& config); |
Joe Onorato | 9fc9edf | 2017-10-15 20:08:52 -0700 | [diff] [blame] | 61 | void OnConfigRemoved(const ConfigKey& key); |
David Chen | 0656b7a | 2017-09-13 15:53:39 -0700 | [diff] [blame] | 62 | |
Yangster | 7c334a1 | 2017-11-22 14:24:24 -0800 | [diff] [blame] | 63 | size_t GetMetricsSize(const ConfigKey& key) const; |
| 64 | |
Yangster-mac | e68f3a5 | 2018-04-04 00:01:43 -0700 | [diff] [blame] | 65 | void onDumpReport(const ConfigKey& key, const int64_t dumpTimeNs, |
David Chen | 56ae0d9 | 2018-05-11 16:00:22 -0700 | [diff] [blame] | 66 | const bool include_current_partial_bucket, |
Chenjie Yu | e36018b | 2018-04-16 15:18:30 -0700 | [diff] [blame] | 67 | const DumpReportReason dumpReportReason, vector<uint8_t>* outData); |
Bookatz | cc5adef2 | 2017-11-21 14:36:23 -0800 | [diff] [blame] | 68 | |
Yangster-mac | 932ecec | 2018-02-01 10:23:52 -0800 | [diff] [blame] | 69 | /* Tells MetricsManager that the alarms in alarmSet have fired. Modifies anomaly alarmSet. */ |
Yangster-mac | e2cd6d5 | 2017-11-09 20:38:30 -0800 | [diff] [blame] | 70 | void onAnomalyAlarmFired( |
Yangster-mac | b142cc8 | 2018-03-30 15:22:08 -0700 | [diff] [blame] | 71 | const int64_t& timestampNs, |
Yangster-mac | 932ecec | 2018-02-01 10:23:52 -0800 | [diff] [blame] | 72 | unordered_set<sp<const InternalAlarm>, SpHash<InternalAlarm>> alarmSet); |
| 73 | |
| 74 | /* Tells MetricsManager that the alarms in alarmSet have fired. Modifies periodic alarmSet. */ |
| 75 | void onPeriodicAlarmFired( |
Yangster-mac | b142cc8 | 2018-03-30 15:22:08 -0700 | [diff] [blame] | 76 | const int64_t& timestampNs, |
Yangster-mac | 932ecec | 2018-02-01 10:23:52 -0800 | [diff] [blame] | 77 | unordered_set<sp<const InternalAlarm>, SpHash<InternalAlarm>> alarmSet); |
yro | 31eb67b | 2017-10-24 13:33:21 -0700 | [diff] [blame] | 78 | |
yro | 947fbce | 2017-11-15 22:50:23 -0800 | [diff] [blame] | 79 | /* Flushes data to disk. Data on memory will be gone after written to disk. */ |
Yangster-mac | 892f3d3 | 2018-05-02 14:16:48 -0700 | [diff] [blame] | 80 | void WriteDataToDisk(const DumpReportReason dumpReportReason); |
| 81 | |
| 82 | // Reset all configs. |
| 83 | void resetConfigs(); |
yro | 947fbce | 2017-11-15 22:50:23 -0800 | [diff] [blame] | 84 | |
Yangster-mac | b5bc741 | 2018-01-06 23:17:45 -0800 | [diff] [blame] | 85 | inline sp<UidMap> getUidMap() { |
| 86 | return mUidMap; |
| 87 | } |
| 88 | |
Yao Chen | 884c8c1 | 2018-01-26 10:36:25 -0800 | [diff] [blame] | 89 | void dumpStates(FILE* out, bool verbose); |
| 90 | |
Yangster-mac | 15f6bbc | 2018-04-08 11:52:26 -0700 | [diff] [blame] | 91 | void informPullAlarmFired(const int64_t timestampNs); |
Yangster-mac | b142cc8 | 2018-03-30 15:22:08 -0700 | [diff] [blame] | 92 | |
David Chen | d37bc23 | 2018-04-12 18:05:11 -0700 | [diff] [blame] | 93 | int64_t getLastReportTimeNs(const ConfigKey& key); |
| 94 | |
Yao Chen | 876889c | 2018-05-02 11:16:16 -0700 | [diff] [blame] | 95 | inline void setPrintLogs(bool enabled) { |
| 96 | #ifdef VERY_VERBOSE_PRINTING |
| 97 | std::lock_guard<std::mutex> lock(mMetricsMutex); |
| 98 | mPrintAllLogs = enabled; |
| 99 | #endif |
| 100 | } |
| 101 | |
David Chen | 4894490 | 2018-05-03 10:29:11 -0700 | [diff] [blame] | 102 | // Add a specific config key to the possible configs to dump ASAP. |
| 103 | void noteOnDiskData(const ConfigKey& key); |
| 104 | |
Yao Chen | ab273e2 | 2017-09-06 12:53:50 -0700 | [diff] [blame] | 105 | private: |
Yangster-mac | be10ddf | 2018-03-13 15:39:51 -0700 | [diff] [blame] | 106 | // For testing only. |
| 107 | inline sp<AlarmMonitor> getAnomalyAlarmMonitor() const { |
| 108 | return mAnomalyAlarmMonitor; |
| 109 | } |
| 110 | |
Yangster-mac | 684d195 | 2018-03-24 16:47:16 -0700 | [diff] [blame] | 111 | inline sp<AlarmMonitor> getPeriodicAlarmMonitor() const { |
| 112 | return mPeriodicAlarmMonitor; |
| 113 | } |
| 114 | |
Yangster-mac | b0d0628 | 2018-01-05 15:44:07 -0800 | [diff] [blame] | 115 | mutable mutex mMetricsMutex; |
David Chen | 1d7b0cd | 2017-11-15 14:20:04 -0800 | [diff] [blame] | 116 | |
Yao Chen | d10f7b1 | 2017-12-18 12:53:50 -0800 | [diff] [blame] | 117 | std::unordered_map<ConfigKey, sp<MetricsManager>> mMetricsManagers; |
David Chen | de70169 | 2017-10-05 13:16:02 -0700 | [diff] [blame] | 118 | |
David Chen | 1d7b0cd | 2017-11-15 14:20:04 -0800 | [diff] [blame] | 119 | std::unordered_map<ConfigKey, long> mLastBroadcastTimes; |
yro | 69007c8 | 2017-10-26 20:42:57 -0700 | [diff] [blame] | 120 | |
David Chen | d9269e2 | 2017-12-05 13:43:51 -0800 | [diff] [blame] | 121 | // Tracks when we last checked the bytes consumed for each config key. |
| 122 | std::unordered_map<ConfigKey, long> mLastByteSizeTimes; |
| 123 | |
David Chen | 4894490 | 2018-05-03 10:29:11 -0700 | [diff] [blame] | 124 | // Tracks which config keys has metric reports on disk |
| 125 | std::set<ConfigKey> mOnDiskDataConfigs; |
| 126 | |
Joe Onorato | 9fc9edf | 2017-10-15 20:08:52 -0700 | [diff] [blame] | 127 | sp<UidMap> mUidMap; // Reference to the UidMap to lookup app name and version for each uid. |
yro | 31eb67b | 2017-10-24 13:33:21 -0700 | [diff] [blame] | 128 | |
Chenjie Yu | fa22d65 | 2018-02-05 14:37:48 -0800 | [diff] [blame] | 129 | StatsPullerManager mStatsPullerManager; |
| 130 | |
Yangster-mac | 932ecec | 2018-02-01 10:23:52 -0800 | [diff] [blame] | 131 | sp<AlarmMonitor> mAnomalyAlarmMonitor; |
| 132 | |
| 133 | sp<AlarmMonitor> mPeriodicAlarmMonitor; |
Yangster-mac | e2cd6d5 | 2017-11-09 20:38:30 -0800 | [diff] [blame] | 134 | |
Yangster-mac | b142cc8 | 2018-03-30 15:22:08 -0700 | [diff] [blame] | 135 | void resetIfConfigTtlExpiredLocked(const int64_t timestampNs); |
| 136 | |
| 137 | void OnConfigUpdatedLocked( |
| 138 | const int64_t currentTimestampNs, const ConfigKey& key, const StatsdConfig& config); |
| 139 | |
Yangster-mac | 892f3d3 | 2018-05-02 14:16:48 -0700 | [diff] [blame] | 140 | void WriteDataToDiskLocked(const DumpReportReason dumpReportReason); |
| 141 | void WriteDataToDiskLocked(const ConfigKey& key, const int64_t timestampNs, |
| 142 | const DumpReportReason dumpReportReason); |
Yangster-mac | e68f3a5 | 2018-04-04 00:01:43 -0700 | [diff] [blame] | 143 | |
Yangster-mac | b142cc8 | 2018-03-30 15:22:08 -0700 | [diff] [blame] | 144 | void onConfigMetricsReportLocked(const ConfigKey& key, const int64_t dumpTimeStampNs, |
Yangster-mac | e68f3a5 | 2018-04-04 00:01:43 -0700 | [diff] [blame] | 145 | const bool include_current_partial_bucket, |
Chenjie Yu | e36018b | 2018-04-16 15:18:30 -0700 | [diff] [blame] | 146 | const DumpReportReason dumpReportReason, |
yro | 4beccbe | 2018-03-15 19:42:05 -0700 | [diff] [blame] | 147 | util::ProtoOutputStream* proto); |
Yangster-mac | 8617950 | 2018-01-23 15:47:15 -0800 | [diff] [blame] | 148 | |
David Chen | 1d7b0cd | 2017-11-15 14:20:04 -0800 | [diff] [blame] | 149 | /* Check if we should send a broadcast if approaching memory limits and if we're over, we |
| 150 | * actually delete the data. */ |
Yangster-mac | b142cc8 | 2018-03-30 15:22:08 -0700 | [diff] [blame] | 151 | void flushIfNecessaryLocked(int64_t timestampNs, const ConfigKey& key, |
Yangster-mac | b0d0628 | 2018-01-05 15:44:07 -0800 | [diff] [blame] | 152 | MetricsManager& metricsManager); |
yro | 31eb67b | 2017-10-24 13:33:21 -0700 | [diff] [blame] | 153 | |
Yangster-mac | d40053e | 2018-01-09 16:29:22 -0800 | [diff] [blame] | 154 | // Maps the isolated uid in the log event to host uid if the log event contains uid fields. |
| 155 | void mapIsolatedUidToHostUidIfNecessaryLocked(LogEvent* event) const; |
| 156 | |
| 157 | // Handler over the isolated uid change event. |
| 158 | void onIsolatedUidChangedEventLocked(const LogEvent& event); |
| 159 | |
Yangster-mac | 892f3d3 | 2018-05-02 14:16:48 -0700 | [diff] [blame] | 160 | // Reset all configs. |
| 161 | void resetConfigsLocked(const int64_t timestampNs); |
| 162 | // Reset the specified configs. |
Yao Chen | 163d260 | 2018-04-10 10:39:53 -0700 | [diff] [blame] | 163 | void resetConfigsLocked(const int64_t timestampNs, const std::vector<ConfigKey>& configs); |
| 164 | |
David Chen | 1d7b0cd | 2017-11-15 14:20:04 -0800 | [diff] [blame] | 165 | // Function used to send a broadcast so that receiver for the config key can call getData |
| 166 | // to retrieve the stored data. |
David Chen | 4894490 | 2018-05-03 10:29:11 -0700 | [diff] [blame] | 167 | std::function<bool(const ConfigKey& key)> mSendBroadcast; |
yro | 69007c8 | 2017-10-26 20:42:57 -0700 | [diff] [blame] | 168 | |
Yangster-mac | 15f6bbc | 2018-04-08 11:52:26 -0700 | [diff] [blame] | 169 | const int64_t mTimeBaseNs; |
Chenjie Yu | 85ed838 | 2017-12-14 16:48:54 -0800 | [diff] [blame] | 170 | |
Yao Chen | 163d260 | 2018-04-10 10:39:53 -0700 | [diff] [blame] | 171 | // Largest timestamp of the events that we have processed. |
| 172 | int64_t mLargestTimestampSeen = 0; |
| 173 | |
| 174 | int64_t mLastTimestampSeen = 0; |
| 175 | |
| 176 | bool mInReconnection = false; |
| 177 | |
| 178 | // Processed log count |
| 179 | uint64_t mLogCount = 0; |
| 180 | |
| 181 | // Log loss detected count |
| 182 | int mLogLossCount = 0; |
Yao Chen | 8f42ba0 | 2018-02-27 15:17:07 -0800 | [diff] [blame] | 183 | |
Chenjie Yu | fa22d65 | 2018-02-05 14:37:48 -0800 | [diff] [blame] | 184 | long mLastPullerCacheClearTimeSec = 0; |
| 185 | |
Yao Chen | 876889c | 2018-05-02 11:16:16 -0700 | [diff] [blame] | 186 | #ifdef VERY_VERBOSE_PRINTING |
| 187 | bool mPrintAllLogs = false; |
| 188 | #endif |
| 189 | |
Yao Chen | 163d260 | 2018-04-10 10:39:53 -0700 | [diff] [blame] | 190 | FRIEND_TEST(StatsLogProcessorTest, TestOutOfOrderLogs); |
David Chen | d9269e2 | 2017-12-05 13:43:51 -0800 | [diff] [blame] | 191 | FRIEND_TEST(StatsLogProcessorTest, TestRateLimitByteSize); |
| 192 | FRIEND_TEST(StatsLogProcessorTest, TestRateLimitBroadcast); |
| 193 | FRIEND_TEST(StatsLogProcessorTest, TestDropWhenByteSizeTooLarge); |
Yao Chen | 8a8d16c | 2018-02-08 14:50:40 -0800 | [diff] [blame] | 194 | FRIEND_TEST(WakelockDurationE2eTest, TestAggregatedPredicateDimensionsForSumDuration1); |
| 195 | FRIEND_TEST(WakelockDurationE2eTest, TestAggregatedPredicateDimensionsForSumDuration2); |
| 196 | FRIEND_TEST(WakelockDurationE2eTest, TestAggregatedPredicateDimensionsForSumDuration3); |
| 197 | FRIEND_TEST(WakelockDurationE2eTest, TestAggregatedPredicateDimensionsForMaxDuration1); |
| 198 | FRIEND_TEST(WakelockDurationE2eTest, TestAggregatedPredicateDimensionsForMaxDuration2); |
| 199 | FRIEND_TEST(WakelockDurationE2eTest, TestAggregatedPredicateDimensionsForMaxDuration3); |
| 200 | FRIEND_TEST(MetricConditionLinkE2eTest, TestMultiplePredicatesAndLinks1); |
| 201 | FRIEND_TEST(MetricConditionLinkE2eTest, TestMultiplePredicatesAndLinks2); |
Yangster-mac | e06cfd7 | 2018-03-10 23:22:59 -0800 | [diff] [blame] | 202 | FRIEND_TEST(AttributionE2eTest, TestAttributionMatchAndSliceByFirstUid); |
| 203 | FRIEND_TEST(AttributionE2eTest, TestAttributionMatchAndSliceByChain); |
Yangster-mac | 87718e2 | 2018-01-11 16:16:26 -0800 | [diff] [blame] | 204 | FRIEND_TEST(GaugeMetricE2eTest, TestMultipleFieldsForPushedEvent); |
Yangster-mac | 15f6bbc | 2018-04-08 11:52:26 -0700 | [diff] [blame] | 205 | FRIEND_TEST(GaugeMetricE2eTest, TestRandomSamplePulledEvents); |
| 206 | FRIEND_TEST(GaugeMetricE2eTest, TestRandomSamplePulledEvent_LateAlarm); |
| 207 | FRIEND_TEST(GaugeMetricE2eTest, TestAllConditionChangesSamplePulledEvents); |
| 208 | FRIEND_TEST(ValueMetricE2eTest, TestPulledEvents); |
| 209 | FRIEND_TEST(ValueMetricE2eTest, TestPulledEvents_LateAlarm); |
| 210 | |
Yangster | 13fb7e4 | 2018-03-07 17:30:49 -0800 | [diff] [blame] | 211 | FRIEND_TEST(DimensionInConditionE2eTest, TestCreateCountMetric_NoLink_OR_CombinationCondition); |
| 212 | FRIEND_TEST(DimensionInConditionE2eTest, TestCreateCountMetric_Link_OR_CombinationCondition); |
| 213 | FRIEND_TEST(DimensionInConditionE2eTest, TestDurationMetric_NoLink_OR_CombinationCondition); |
| 214 | FRIEND_TEST(DimensionInConditionE2eTest, TestDurationMetric_Link_OR_CombinationCondition); |
| 215 | |
| 216 | FRIEND_TEST(DimensionInConditionE2eTest, TestDurationMetric_NoLink_SimpleCondition); |
| 217 | FRIEND_TEST(DimensionInConditionE2eTest, TestDurationMetric_Link_SimpleCondition); |
| 218 | FRIEND_TEST(DimensionInConditionE2eTest, TestDurationMetric_PartialLink_SimpleCondition); |
| 219 | |
Yangster | 13fb7e4 | 2018-03-07 17:30:49 -0800 | [diff] [blame] | 220 | FRIEND_TEST(DimensionInConditionE2eTest, TestDurationMetric_PartialLink_AND_CombinationCondition); |
| 221 | FRIEND_TEST(DimensionInConditionE2eTest, TestDurationMetric_NoLink_AND_CombinationCondition); |
| 222 | FRIEND_TEST(DimensionInConditionE2eTest, TestDurationMetric_Link_AND_CombinationCondition); |
| 223 | |
Yangster-mac | be10ddf | 2018-03-13 15:39:51 -0700 | [diff] [blame] | 224 | FRIEND_TEST(AnomalyDetectionE2eTest, TestSlicedCountMetric_single_bucket); |
| 225 | FRIEND_TEST(AnomalyDetectionE2eTest, TestSlicedCountMetric_multiple_buckets); |
| 226 | FRIEND_TEST(AnomalyDetectionE2eTest, TestDurationMetric_SUM_single_bucket); |
| 227 | FRIEND_TEST(AnomalyDetectionE2eTest, TestDurationMetric_SUM_multiple_buckets); |
| 228 | FRIEND_TEST(AnomalyDetectionE2eTest, TestDurationMetric_SUM_long_refractory_period); |
Yangster-mac | b142cc8 | 2018-03-30 15:22:08 -0700 | [diff] [blame] | 229 | |
Yangster-mac | 684d195 | 2018-03-24 16:47:16 -0700 | [diff] [blame] | 230 | FRIEND_TEST(AlarmE2eTest, TestMultipleAlarms); |
Yangster-mac | b142cc8 | 2018-03-30 15:22:08 -0700 | [diff] [blame] | 231 | FRIEND_TEST(ConfigTtlE2eTest, TestCountMetric); |
Yao Chen | ab273e2 | 2017-09-06 12:53:50 -0700 | [diff] [blame] | 232 | }; |
Bookatz | 906a35c | 2017-09-20 15:26:44 -0700 | [diff] [blame] | 233 | |
Yao Chen | ef99c4f | 2017-09-22 16:26:54 -0700 | [diff] [blame] | 234 | } // namespace statsd |
| 235 | } // namespace os |
| 236 | } // namespace android |