| 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 | */ |
| 16 | |
| Yangster-mac | 754e29e | 2018-05-02 12:23:17 -0700 | [diff] [blame] | 17 | #define DEBUG false // STOPSHIP if true |
| Joe Onorato | 9fc9edf | 2017-10-15 20:08:52 -0700 | [diff] [blame] | 18 | #include "Log.h" |
| David Chen | 2158296 | 2017-11-01 17:32:46 -0700 | [diff] [blame] | 19 | #include "statslog.h" |
| Yao Chen | ab273e2 | 2017-09-06 12:53:50 -0700 | [diff] [blame] | 20 | |
| yro | 947fbce | 2017-11-15 22:50:23 -0800 | [diff] [blame] | 21 | #include <android-base/file.h> |
| 22 | #include <dirent.h> |
| Joe Onorato | 9fc9edf | 2017-10-15 20:08:52 -0700 | [diff] [blame] | 23 | #include "StatsLogProcessor.h" |
| Yangster-mac | 330af58 | 2018-02-08 15:24:38 -0800 | [diff] [blame] | 24 | #include "stats_log_util.h" |
| yro | 947fbce | 2017-11-15 22:50:23 -0800 | [diff] [blame] | 25 | #include "android-base/stringprintf.h" |
| Yao Chen | b356151 | 2017-11-21 18:07:17 -0800 | [diff] [blame] | 26 | #include "guardrail/StatsdStats.h" |
| Joe Onorato | 9fc9edf | 2017-10-15 20:08:52 -0700 | [diff] [blame] | 27 | #include "metrics/CountMetricProducer.h" |
| Chenjie Yu | 85ed838 | 2017-12-14 16:48:54 -0800 | [diff] [blame] | 28 | #include "external/StatsPullerManager.h" |
| Joe Onorato | 9fc9edf | 2017-10-15 20:08:52 -0700 | [diff] [blame] | 29 | #include "stats_util.h" |
| yro | 947fbce | 2017-11-15 22:50:23 -0800 | [diff] [blame] | 30 | #include "storage/StorageManager.h" |
| Joe Onorato | 9fc9edf | 2017-10-15 20:08:52 -0700 | [diff] [blame] | 31 | |
| yro | 00698da | 2017-09-15 10:06:40 -0700 | [diff] [blame] | 32 | #include <log/log_event_list.h> |
| Yao Chen | ef99c4f | 2017-09-22 16:26:54 -0700 | [diff] [blame] | 33 | #include <utils/Errors.h> |
| David Chen | 1604957 | 2018-02-01 18:27:51 -0800 | [diff] [blame] | 34 | #include <utils/SystemClock.h> |
| Yao Chen | ab273e2 | 2017-09-06 12:53:50 -0700 | [diff] [blame] | 35 | |
| 36 | using namespace android; |
| yro | 947fbce | 2017-11-15 22:50:23 -0800 | [diff] [blame] | 37 | using android::base::StringPrintf; |
| yro | b0378b0 | 2017-11-09 20:36:25 -0800 | [diff] [blame] | 38 | using android::util::FIELD_COUNT_REPEATED; |
| yro | 17adac9 | 2017-11-08 23:16:29 -0800 | [diff] [blame] | 39 | using android::util::FIELD_TYPE_BOOL; |
| 40 | using android::util::FIELD_TYPE_FLOAT; |
| 41 | using android::util::FIELD_TYPE_INT32; |
| 42 | using android::util::FIELD_TYPE_INT64; |
| 43 | using android::util::FIELD_TYPE_MESSAGE; |
| 44 | using android::util::FIELD_TYPE_STRING; |
| 45 | using android::util::ProtoOutputStream; |
| Yao Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 46 | using std::make_unique; |
| 47 | using std::unique_ptr; |
| 48 | using std::vector; |
| Bookatz | 906a35c | 2017-09-20 15:26:44 -0700 | [diff] [blame] | 49 | |
| 50 | namespace android { |
| 51 | namespace os { |
| 52 | namespace statsd { |
| Yao Chen | ab273e2 | 2017-09-06 12:53:50 -0700 | [diff] [blame] | 53 | |
| yro | 947fbce | 2017-11-15 22:50:23 -0800 | [diff] [blame] | 54 | // for ConfigMetricsReportList |
| yro | 17adac9 | 2017-11-08 23:16:29 -0800 | [diff] [blame] | 55 | const int FIELD_ID_CONFIG_KEY = 1; |
| yro | 947fbce | 2017-11-15 22:50:23 -0800 | [diff] [blame] | 56 | const int FIELD_ID_REPORTS = 2; |
| yro | 17adac9 | 2017-11-08 23:16:29 -0800 | [diff] [blame] | 57 | // for ConfigKey |
| 58 | const int FIELD_ID_UID = 1; |
| Yangster-mac | 94e197c | 2018-01-02 16:03:03 -0800 | [diff] [blame] | 59 | const int FIELD_ID_ID = 2; |
| yro | 947fbce | 2017-11-15 22:50:23 -0800 | [diff] [blame] | 60 | // for ConfigMetricsReport |
| Yao Chen | 4c959cb | 2018-02-13 13:27:48 -0800 | [diff] [blame] | 61 | // const int FIELD_ID_METRICS = 1; // written in MetricsManager.cpp |
| yro | 947fbce | 2017-11-15 22:50:23 -0800 | [diff] [blame] | 62 | const int FIELD_ID_UID_MAP = 2; |
| Yangster-mac | 330af58 | 2018-02-08 15:24:38 -0800 | [diff] [blame] | 63 | const int FIELD_ID_LAST_REPORT_ELAPSED_NANOS = 3; |
| 64 | const int FIELD_ID_CURRENT_REPORT_ELAPSED_NANOS = 4; |
| Yangster-mac | 3fa5d7f | 2018-03-10 21:50:27 -0800 | [diff] [blame] | 65 | const int FIELD_ID_LAST_REPORT_WALL_CLOCK_NANOS = 5; |
| 66 | const int FIELD_ID_CURRENT_REPORT_WALL_CLOCK_NANOS = 6; |
| Chenjie Yu | e36018b | 2018-04-16 15:18:30 -0700 | [diff] [blame] | 67 | const int FIELD_ID_DUMP_REPORT_REASON = 8; |
| Yangster-mac | 9def8e3 | 2018-04-17 13:55:51 -0700 | [diff] [blame] | 68 | const int FIELD_ID_STRINGS = 9; |
| Yangster-mac | 3fa5d7f | 2018-03-10 21:50:27 -0800 | [diff] [blame] | 69 | |
| Yangster-mac | b142cc8 | 2018-03-30 15:22:08 -0700 | [diff] [blame] | 70 | #define NS_PER_HOUR 3600 * NS_PER_SEC |
| yro | 947fbce | 2017-11-15 22:50:23 -0800 | [diff] [blame] | 71 | |
| yro | 03faf09 | 2017-12-12 00:17:50 -0800 | [diff] [blame] | 72 | #define STATS_DATA_DIR "/data/misc/stats-data" |
| yro | 17adac9 | 2017-11-08 23:16:29 -0800 | [diff] [blame] | 73 | |
| Tej Singh | 42f9e06 | 2018-11-09 10:01:00 -0800 | [diff] [blame] | 74 | // Cool down period for writing data to disk to avoid overwriting files. |
| 75 | #define WRITE_DATA_COOL_DOWN_SEC 5 |
| 76 | |
| yro | 31eb67b | 2017-10-24 13:33:21 -0700 | [diff] [blame] | 77 | StatsLogProcessor::StatsLogProcessor(const sp<UidMap>& uidMap, |
| Chenjie Yu | e221920 | 2018-06-08 10:07:51 -0700 | [diff] [blame] | 78 | const sp<StatsPullerManager>& pullerManager, |
| Yangster-mac | 932ecec | 2018-02-01 10:23:52 -0800 | [diff] [blame] | 79 | const sp<AlarmMonitor>& anomalyAlarmMonitor, |
| 80 | const sp<AlarmMonitor>& periodicAlarmMonitor, |
| Yangster-mac | 15f6bbc | 2018-04-08 11:52:26 -0700 | [diff] [blame] | 81 | const int64_t timeBaseNs, |
| David Chen | 4894490 | 2018-05-03 10:29:11 -0700 | [diff] [blame] | 82 | const std::function<bool(const ConfigKey&)>& sendBroadcast) |
| Chenjie Yu | 85ed838 | 2017-12-14 16:48:54 -0800 | [diff] [blame] | 83 | : mUidMap(uidMap), |
| Chenjie Yu | e221920 | 2018-06-08 10:07:51 -0700 | [diff] [blame] | 84 | mPullerManager(pullerManager), |
| Yangster-mac | 932ecec | 2018-02-01 10:23:52 -0800 | [diff] [blame] | 85 | mAnomalyAlarmMonitor(anomalyAlarmMonitor), |
| 86 | mPeriodicAlarmMonitor(periodicAlarmMonitor), |
| Chenjie Yu | 85ed838 | 2017-12-14 16:48:54 -0800 | [diff] [blame] | 87 | mSendBroadcast(sendBroadcast), |
| Yangster-mac | 15f6bbc | 2018-04-08 11:52:26 -0700 | [diff] [blame] | 88 | mTimeBaseNs(timeBaseNs), |
| Yao Chen | 163d260 | 2018-04-10 10:39:53 -0700 | [diff] [blame] | 89 | mLargestTimestampSeen(0), |
| 90 | mLastTimestampSeen(0) { |
| Chenjie Yu | e221920 | 2018-06-08 10:07:51 -0700 | [diff] [blame] | 91 | mPullerManager->ForceClearPullerCache(); |
| Yao Chen | ab273e2 | 2017-09-06 12:53:50 -0700 | [diff] [blame] | 92 | } |
| 93 | |
| Yao Chen | ef99c4f | 2017-09-22 16:26:54 -0700 | [diff] [blame] | 94 | StatsLogProcessor::~StatsLogProcessor() { |
| Yao Chen | ab273e2 | 2017-09-06 12:53:50 -0700 | [diff] [blame] | 95 | } |
| 96 | |
| Yangster-mac | e2cd6d5 | 2017-11-09 20:38:30 -0800 | [diff] [blame] | 97 | void StatsLogProcessor::onAnomalyAlarmFired( |
| Yangster-mac | b142cc8 | 2018-03-30 15:22:08 -0700 | [diff] [blame] | 98 | const int64_t& timestampNs, |
| Yangster-mac | 932ecec | 2018-02-01 10:23:52 -0800 | [diff] [blame] | 99 | unordered_set<sp<const InternalAlarm>, SpHash<InternalAlarm>> alarmSet) { |
| Yangster-mac | b0d0628 | 2018-01-05 15:44:07 -0800 | [diff] [blame] | 100 | std::lock_guard<std::mutex> lock(mMetricsMutex); |
| Bookatz | cc5adef2 | 2017-11-21 14:36:23 -0800 | [diff] [blame] | 101 | for (const auto& itr : mMetricsManagers) { |
| Yangster-mac | 932ecec | 2018-02-01 10:23:52 -0800 | [diff] [blame] | 102 | itr.second->onAnomalyAlarmFired(timestampNs, alarmSet); |
| 103 | } |
| 104 | } |
| 105 | void StatsLogProcessor::onPeriodicAlarmFired( |
| Yangster-mac | b142cc8 | 2018-03-30 15:22:08 -0700 | [diff] [blame] | 106 | const int64_t& timestampNs, |
| Yangster-mac | 932ecec | 2018-02-01 10:23:52 -0800 | [diff] [blame] | 107 | unordered_set<sp<const InternalAlarm>, SpHash<InternalAlarm>> alarmSet) { |
| 108 | |
| 109 | std::lock_guard<std::mutex> lock(mMetricsMutex); |
| 110 | for (const auto& itr : mMetricsManagers) { |
| 111 | itr.second->onPeriodicAlarmFired(timestampNs, alarmSet); |
| Yangster-mac | e2cd6d5 | 2017-11-09 20:38:30 -0800 | [diff] [blame] | 112 | } |
| 113 | } |
| 114 | |
| Yao Chen | 8a8d16c | 2018-02-08 14:50:40 -0800 | [diff] [blame] | 115 | void updateUid(Value* value, int hostUid) { |
| 116 | int uid = value->int_value; |
| 117 | if (uid != hostUid) { |
| 118 | value->setInt(hostUid); |
| 119 | } |
| 120 | } |
| 121 | |
| Yangster-mac | d40053e | 2018-01-09 16:29:22 -0800 | [diff] [blame] | 122 | void StatsLogProcessor::mapIsolatedUidToHostUidIfNecessaryLocked(LogEvent* event) const { |
| Yao Chen | c40a19d | 2018-03-15 16:48:25 -0700 | [diff] [blame] | 123 | if (android::util::AtomsInfo::kAtomsWithAttributionChain.find(event->GetTagId()) != |
| 124 | android::util::AtomsInfo::kAtomsWithAttributionChain.end()) { |
| Yao Chen | 8a8d16c | 2018-02-08 14:50:40 -0800 | [diff] [blame] | 125 | for (auto& value : *(event->getMutableValues())) { |
| 126 | if (value.mField.getPosAtDepth(0) > kAttributionField) { |
| 127 | break; |
| 128 | } |
| 129 | if (isAttributionUidField(value)) { |
| 130 | const int hostUid = mUidMap->getHostUidOrSelf(value.mValue.int_value); |
| 131 | updateUid(&value.mValue, hostUid); |
| 132 | } |
| Yangster-mac | d40053e | 2018-01-09 16:29:22 -0800 | [diff] [blame] | 133 | } |
| Yao Chen | c40a19d | 2018-03-15 16:48:25 -0700 | [diff] [blame] | 134 | } else { |
| 135 | auto it = android::util::AtomsInfo::kAtomsWithUidField.find(event->GetTagId()); |
| 136 | if (it != android::util::AtomsInfo::kAtomsWithUidField.end()) { |
| 137 | int uidField = it->second; // uidField is the field number in proto, |
| 138 | // starting from 1 |
| 139 | if (uidField > 0 && (int)event->getValues().size() >= uidField && |
| 140 | (event->getValues())[uidField - 1].mValue.getType() == INT) { |
| 141 | Value& value = (*event->getMutableValues())[uidField - 1].mValue; |
| 142 | const int hostUid = mUidMap->getHostUidOrSelf(value.int_value); |
| 143 | updateUid(&value, hostUid); |
| 144 | } else { |
| 145 | ALOGE("Malformed log, uid not found. %s", event->ToString().c_str()); |
| 146 | } |
| 147 | } |
| Yao Chen | 312e898 | 2017-12-05 15:29:03 -0800 | [diff] [blame] | 148 | } |
| Yangster-mac | d40053e | 2018-01-09 16:29:22 -0800 | [diff] [blame] | 149 | } |
| 150 | |
| 151 | void StatsLogProcessor::onIsolatedUidChangedEventLocked(const LogEvent& event) { |
| 152 | status_t err = NO_ERROR, err2 = NO_ERROR, err3 = NO_ERROR; |
| 153 | bool is_create = event.GetBool(3, &err); |
| 154 | auto parent_uid = int(event.GetLong(1, &err2)); |
| 155 | auto isolated_uid = int(event.GetLong(2, &err3)); |
| 156 | if (err == NO_ERROR && err2 == NO_ERROR && err3 == NO_ERROR) { |
| 157 | if (is_create) { |
| 158 | mUidMap->assignIsolatedUid(isolated_uid, parent_uid); |
| 159 | } else { |
| Bookatz | 3c64886 | 2018-05-25 13:32:43 -0700 | [diff] [blame] | 160 | mUidMap->removeIsolatedUid(isolated_uid); |
| Yangster-mac | d40053e | 2018-01-09 16:29:22 -0800 | [diff] [blame] | 161 | } |
| 162 | } else { |
| 163 | ALOGE("Failed to parse uid in the isolated uid change event."); |
| 164 | } |
| 165 | } |
| 166 | |
| Yangster-mac | 892f3d3 | 2018-05-02 14:16:48 -0700 | [diff] [blame] | 167 | void StatsLogProcessor::resetConfigs() { |
| 168 | std::lock_guard<std::mutex> lock(mMetricsMutex); |
| 169 | resetConfigsLocked(getElapsedRealtimeNs()); |
| 170 | } |
| 171 | |
| 172 | void StatsLogProcessor::resetConfigsLocked(const int64_t timestampNs) { |
| 173 | std::vector<ConfigKey> configKeys; |
| 174 | for (auto it = mMetricsManagers.begin(); it != mMetricsManagers.end(); it++) { |
| 175 | configKeys.push_back(it->first); |
| 176 | } |
| 177 | resetConfigsLocked(timestampNs, configKeys); |
| 178 | } |
| 179 | |
| Yao Chen | 3ff3a49 | 2018-08-06 16:17:37 -0700 | [diff] [blame] | 180 | void StatsLogProcessor::OnLogEvent(LogEvent* event) { |
| Yangster-mac | d40053e | 2018-01-09 16:29:22 -0800 | [diff] [blame] | 181 | std::lock_guard<std::mutex> lock(mMetricsMutex); |
| Yao Chen | 876889c | 2018-05-02 11:16:16 -0700 | [diff] [blame] | 182 | |
| 183 | #ifdef VERY_VERBOSE_PRINTING |
| 184 | if (mPrintAllLogs) { |
| 185 | ALOGI("%s", event->ToString().c_str()); |
| 186 | } |
| 187 | #endif |
| Yangster-mac | b142cc8 | 2018-03-30 15:22:08 -0700 | [diff] [blame] | 188 | const int64_t currentTimestampNs = event->GetElapsedTimestampNs(); |
| Yangster-mac | b8382a1 | 2018-04-04 10:39:12 -0700 | [diff] [blame] | 189 | |
| Yangster-mac | b142cc8 | 2018-03-30 15:22:08 -0700 | [diff] [blame] | 190 | resetIfConfigTtlExpiredLocked(currentTimestampNs); |
| 191 | |
| Yangster-mac | d40053e | 2018-01-09 16:29:22 -0800 | [diff] [blame] | 192 | StatsdStats::getInstance().noteAtomLogged( |
| Yangster-mac | 330af58 | 2018-02-08 15:24:38 -0800 | [diff] [blame] | 193 | event->GetTagId(), event->GetElapsedTimestampNs() / NS_PER_SEC); |
| Yangster-mac | d40053e | 2018-01-09 16:29:22 -0800 | [diff] [blame] | 194 | |
| David Chen | 2158296 | 2017-11-01 17:32:46 -0700 | [diff] [blame] | 195 | // Hard-coded logic to update the isolated uid's in the uid-map. |
| Stefan Lafon | ae2df01 | 2017-11-14 09:17:21 -0800 | [diff] [blame] | 196 | // The field numbers need to be currently updated by hand with atoms.proto |
| Yangster-mac | d40053e | 2018-01-09 16:29:22 -0800 | [diff] [blame] | 197 | if (event->GetTagId() == android::util::ISOLATED_UID_CHANGED) { |
| 198 | onIsolatedUidChangedEventLocked(*event); |
| David Chen | cfc311d | 2018-01-23 17:55:54 -0800 | [diff] [blame] | 199 | } |
| 200 | |
| 201 | if (mMetricsManagers.empty()) { |
| 202 | return; |
| 203 | } |
| 204 | |
| Yangster-mac | b142cc8 | 2018-03-30 15:22:08 -0700 | [diff] [blame] | 205 | int64_t curTimeSec = getElapsedRealtimeSec(); |
| Yangster-mac | 330af58 | 2018-02-08 15:24:38 -0800 | [diff] [blame] | 206 | if (curTimeSec - mLastPullerCacheClearTimeSec > StatsdStats::kPullerCacheClearIntervalSec) { |
| Chenjie Yu | e221920 | 2018-06-08 10:07:51 -0700 | [diff] [blame] | 207 | mPullerManager->ClearPullerCacheIfNecessary(curTimeSec * NS_PER_SEC); |
| Yangster-mac | 330af58 | 2018-02-08 15:24:38 -0800 | [diff] [blame] | 208 | mLastPullerCacheClearTimeSec = curTimeSec; |
| Chenjie Yu | fa22d65 | 2018-02-05 14:37:48 -0800 | [diff] [blame] | 209 | } |
| 210 | |
| Yangster-mac | b142cc8 | 2018-03-30 15:22:08 -0700 | [diff] [blame] | 211 | |
| David Chen | cfc311d | 2018-01-23 17:55:54 -0800 | [diff] [blame] | 212 | if (event->GetTagId() != android::util::ISOLATED_UID_CHANGED) { |
| Yangster-mac | d40053e | 2018-01-09 16:29:22 -0800 | [diff] [blame] | 213 | // Map the isolated uid to host uid if necessary. |
| 214 | mapIsolatedUidToHostUidIfNecessaryLocked(event); |
| 215 | } |
| 216 | |
| 217 | // pass the event to metrics managers. |
| 218 | for (auto& pair : mMetricsManagers) { |
| 219 | pair.second->onLogEvent(*event); |
| Yangster-mac | 330af58 | 2018-02-08 15:24:38 -0800 | [diff] [blame] | 220 | flushIfNecessaryLocked(event->GetElapsedTimestampNs(), pair.first, *(pair.second)); |
| David Chen | 2158296 | 2017-11-01 17:32:46 -0700 | [diff] [blame] | 221 | } |
| Yao Chen | ab273e2 | 2017-09-06 12:53:50 -0700 | [diff] [blame] | 222 | } |
| 223 | |
| Yangster-mac | c04feba | 2018-04-02 14:37:33 -0700 | [diff] [blame] | 224 | void StatsLogProcessor::OnConfigUpdated(const int64_t timestampNs, const ConfigKey& key, |
| 225 | const StatsdConfig& config) { |
| Yangster-mac | b0d0628 | 2018-01-05 15:44:07 -0800 | [diff] [blame] | 226 | std::lock_guard<std::mutex> lock(mMetricsMutex); |
| Yangster-mac | 892f3d3 | 2018-05-02 14:16:48 -0700 | [diff] [blame] | 227 | WriteDataToDiskLocked(key, timestampNs, CONFIG_UPDATED); |
| Yangster-mac | b142cc8 | 2018-03-30 15:22:08 -0700 | [diff] [blame] | 228 | OnConfigUpdatedLocked(timestampNs, key, config); |
| 229 | } |
| 230 | |
| 231 | void StatsLogProcessor::OnConfigUpdatedLocked( |
| 232 | const int64_t timestampNs, const ConfigKey& key, const StatsdConfig& config) { |
| Tej Singh | 484524a | 2018-02-01 15:10:05 -0800 | [diff] [blame] | 233 | VLOG("Updated configuration for key %s", key.ToString().c_str()); |
| Yangster-mac | 932ecec | 2018-02-01 10:23:52 -0800 | [diff] [blame] | 234 | sp<MetricsManager> newMetricsManager = |
| Chenjie Yu | e221920 | 2018-06-08 10:07:51 -0700 | [diff] [blame] | 235 | new MetricsManager(key, config, mTimeBaseNs, timestampNs, mUidMap, mPullerManager, |
| 236 | mAnomalyAlarmMonitor, mPeriodicAlarmMonitor); |
| Yao Chen | caf339d | 2017-10-06 16:01:10 -0700 | [diff] [blame] | 237 | if (newMetricsManager->isConfigValid()) { |
| David Chen | d689689 | 2017-10-25 11:49:03 -0700 | [diff] [blame] | 238 | mUidMap->OnConfigUpdated(key); |
| Yao Chen | 147ce60 | 2017-12-22 14:35:34 -0800 | [diff] [blame] | 239 | if (newMetricsManager->shouldAddUidMapListener()) { |
| Yao Chen | d10f7b1 | 2017-12-18 12:53:50 -0800 | [diff] [blame] | 240 | // We have to add listener after the MetricsManager is constructed because it's |
| 241 | // not safe to create wp or sp from this pointer inside its constructor. |
| 242 | mUidMap->addListener(newMetricsManager.get()); |
| 243 | } |
| Yangster-mac | b142cc8 | 2018-03-30 15:22:08 -0700 | [diff] [blame] | 244 | newMetricsManager->refreshTtl(timestampNs); |
| Yao Chen | d10f7b1 | 2017-12-18 12:53:50 -0800 | [diff] [blame] | 245 | mMetricsManagers[key] = newMetricsManager; |
| Yao Chen | b356151 | 2017-11-21 18:07:17 -0800 | [diff] [blame] | 246 | VLOG("StatsdConfig valid"); |
| Yao Chen | caf339d | 2017-10-06 16:01:10 -0700 | [diff] [blame] | 247 | } else { |
| 248 | // If there is any error in the config, don't use it. |
| Yao Chen | b356151 | 2017-11-21 18:07:17 -0800 | [diff] [blame] | 249 | ALOGE("StatsdConfig NOT valid"); |
| Yao Chen | caf339d | 2017-10-06 16:01:10 -0700 | [diff] [blame] | 250 | } |
| yro | 00698da | 2017-09-15 10:06:40 -0700 | [diff] [blame] | 251 | } |
| Bookatz | 906a35c | 2017-09-20 15:26:44 -0700 | [diff] [blame] | 252 | |
| Yangster | 7c334a1 | 2017-11-22 14:24:24 -0800 | [diff] [blame] | 253 | size_t StatsLogProcessor::GetMetricsSize(const ConfigKey& key) const { |
| Yangster-mac | b0d0628 | 2018-01-05 15:44:07 -0800 | [diff] [blame] | 254 | std::lock_guard<std::mutex> lock(mMetricsMutex); |
| Yao Chen | 729093d | 2017-10-16 10:33:26 -0700 | [diff] [blame] | 255 | auto it = mMetricsManagers.find(key); |
| 256 | if (it == mMetricsManagers.end()) { |
| 257 | ALOGW("Config source %s does not exist", key.ToString().c_str()); |
| David Chen | 1d7b0cd | 2017-11-15 14:20:04 -0800 | [diff] [blame] | 258 | return 0; |
| Yao Chen | 729093d | 2017-10-16 10:33:26 -0700 | [diff] [blame] | 259 | } |
| David Chen | 1d7b0cd | 2017-11-15 14:20:04 -0800 | [diff] [blame] | 260 | return it->second->byteSize(); |
| 261 | } |
| 262 | |
| Yao Chen | a80e5c0 | 2018-09-04 13:55:29 -0700 | [diff] [blame] | 263 | void StatsLogProcessor::dumpStates(int out, bool verbose) { |
| Yao Chen | 884c8c1 | 2018-01-26 10:36:25 -0800 | [diff] [blame] | 264 | std::lock_guard<std::mutex> lock(mMetricsMutex); |
| Yao Chen | a80e5c0 | 2018-09-04 13:55:29 -0700 | [diff] [blame] | 265 | FILE* fout = fdopen(out, "w"); |
| 266 | if (fout == NULL) { |
| 267 | return; |
| Yao Chen | 884c8c1 | 2018-01-26 10:36:25 -0800 | [diff] [blame] | 268 | } |
| Yao Chen | a80e5c0 | 2018-09-04 13:55:29 -0700 | [diff] [blame] | 269 | fprintf(fout, "MetricsManager count: %lu\n", (unsigned long)mMetricsManagers.size()); |
| 270 | for (auto metricsManager : mMetricsManagers) { |
| 271 | metricsManager.second->dumpStates(fout, verbose); |
| 272 | } |
| 273 | |
| 274 | fclose(fout); |
| Yao Chen | 884c8c1 | 2018-01-26 10:36:25 -0800 | [diff] [blame] | 275 | } |
| 276 | |
| yro | 4beccbe | 2018-03-15 19:42:05 -0700 | [diff] [blame] | 277 | /* |
| Bookatz | 9cc7b66 | 2018-11-06 10:39:21 -0800 | [diff] [blame] | 278 | * onDumpReport dumps serialized ConfigMetricsReportList into proto. |
| yro | 4beccbe | 2018-03-15 19:42:05 -0700 | [diff] [blame] | 279 | */ |
| Yangster-mac | b142cc8 | 2018-03-30 15:22:08 -0700 | [diff] [blame] | 280 | void StatsLogProcessor::onDumpReport(const ConfigKey& key, const int64_t dumpTimeStampNs, |
| Yangster-mac | e68f3a5 | 2018-04-04 00:01:43 -0700 | [diff] [blame] | 281 | const bool include_current_partial_bucket, |
| Bookatz | ff71cad | 2018-09-20 17:17:49 -0700 | [diff] [blame] | 282 | const bool erase_data, |
| Chenjie Yu | e36018b | 2018-04-16 15:18:30 -0700 | [diff] [blame] | 283 | const DumpReportReason dumpReportReason, |
| Bookatz | ff71cad | 2018-09-20 17:17:49 -0700 | [diff] [blame] | 284 | ProtoOutputStream* proto) { |
| Yangster-mac | b0d0628 | 2018-01-05 15:44:07 -0800 | [diff] [blame] | 285 | std::lock_guard<std::mutex> lock(mMetricsMutex); |
| Yangster-mac | 2087716 | 2017-12-22 17:19:39 -0800 | [diff] [blame] | 286 | |
| yro | 947fbce | 2017-11-15 22:50:23 -0800 | [diff] [blame] | 287 | // Start of ConfigKey. |
| Bookatz | ff71cad | 2018-09-20 17:17:49 -0700 | [diff] [blame] | 288 | uint64_t configKeyToken = proto->start(FIELD_TYPE_MESSAGE | FIELD_ID_CONFIG_KEY); |
| 289 | proto->write(FIELD_TYPE_INT32 | FIELD_ID_UID, key.GetUid()); |
| 290 | proto->write(FIELD_TYPE_INT64 | FIELD_ID_ID, (long long)key.GetId()); |
| 291 | proto->end(configKeyToken); |
| yro | 947fbce | 2017-11-15 22:50:23 -0800 | [diff] [blame] | 292 | // End of ConfigKey. |
| yro | 17adac9 | 2017-11-08 23:16:29 -0800 | [diff] [blame] | 293 | |
| yro | 947fbce | 2017-11-15 22:50:23 -0800 | [diff] [blame] | 294 | // Then, check stats-data directory to see there's any file containing |
| 295 | // ConfigMetricsReport from previous shutdowns to concatenate to reports. |
| Bookatz | c71d901 | 2018-12-19 12:28:38 -0800 | [diff] [blame^] | 296 | StorageManager::appendConfigMetricsReport(key, proto, erase_data); |
| yro | 947fbce | 2017-11-15 22:50:23 -0800 | [diff] [blame] | 297 | |
| Yangster-mac | e68f3a5 | 2018-04-04 00:01:43 -0700 | [diff] [blame] | 298 | auto it = mMetricsManagers.find(key); |
| 299 | if (it != mMetricsManagers.end()) { |
| 300 | // This allows another broadcast to be sent within the rate-limit period if we get close to |
| 301 | // filling the buffer again soon. |
| 302 | mLastBroadcastTimes.erase(key); |
| 303 | |
| 304 | // Start of ConfigMetricsReport (reports). |
| 305 | uint64_t reportsToken = |
| Bookatz | ff71cad | 2018-09-20 17:17:49 -0700 | [diff] [blame] | 306 | proto->start(FIELD_TYPE_MESSAGE | FIELD_COUNT_REPEATED | FIELD_ID_REPORTS); |
| Chenjie Yu | e36018b | 2018-04-16 15:18:30 -0700 | [diff] [blame] | 307 | onConfigMetricsReportLocked(key, dumpTimeStampNs, include_current_partial_bucket, |
| Bookatz | ff71cad | 2018-09-20 17:17:49 -0700 | [diff] [blame] | 308 | erase_data, dumpReportReason, proto); |
| 309 | proto->end(reportsToken); |
| Yangster-mac | e68f3a5 | 2018-04-04 00:01:43 -0700 | [diff] [blame] | 310 | // End of ConfigMetricsReport (reports). |
| 311 | } else { |
| 312 | ALOGW("Config source %s does not exist", key.ToString().c_str()); |
| 313 | } |
| Bookatz | ff71cad | 2018-09-20 17:17:49 -0700 | [diff] [blame] | 314 | } |
| 315 | |
| 316 | /* |
| 317 | * onDumpReport dumps serialized ConfigMetricsReportList into outData. |
| 318 | */ |
| 319 | void StatsLogProcessor::onDumpReport(const ConfigKey& key, const int64_t dumpTimeStampNs, |
| 320 | const bool include_current_partial_bucket, |
| 321 | const bool erase_data, |
| 322 | const DumpReportReason dumpReportReason, |
| 323 | vector<uint8_t>* outData) { |
| 324 | ProtoOutputStream proto; |
| 325 | onDumpReport(key, dumpTimeStampNs, include_current_partial_bucket, erase_data, |
| 326 | dumpReportReason, &proto); |
| Yangster-mac | e68f3a5 | 2018-04-04 00:01:43 -0700 | [diff] [blame] | 327 | |
| David Chen | 1d7b0cd | 2017-11-15 14:20:04 -0800 | [diff] [blame] | 328 | if (outData != nullptr) { |
| 329 | outData->clear(); |
| 330 | outData->resize(proto.size()); |
| 331 | size_t pos = 0; |
| 332 | auto iter = proto.data(); |
| 333 | while (iter.readBuffer() != NULL) { |
| 334 | size_t toRead = iter.currentToRead(); |
| 335 | std::memcpy(&((*outData)[pos]), iter.readBuffer(), toRead); |
| 336 | pos += toRead; |
| 337 | iter.rp()->move(toRead); |
| 338 | } |
| yro | 17adac9 | 2017-11-08 23:16:29 -0800 | [diff] [blame] | 339 | } |
| Yao Chen | 8a8d16c | 2018-02-08 14:50:40 -0800 | [diff] [blame] | 340 | |
| Yangster-mac | e68f3a5 | 2018-04-04 00:01:43 -0700 | [diff] [blame] | 341 | StatsdStats::getInstance().noteMetricsReportSent(key, proto.size()); |
| Yao Chen | 729093d | 2017-10-16 10:33:26 -0700 | [diff] [blame] | 342 | } |
| 343 | |
| yro | 4beccbe | 2018-03-15 19:42:05 -0700 | [diff] [blame] | 344 | /* |
| 345 | * onConfigMetricsReportLocked dumps serialized ConfigMetricsReport into outData. |
| 346 | */ |
| 347 | void StatsLogProcessor::onConfigMetricsReportLocked(const ConfigKey& key, |
| Yangster-mac | b142cc8 | 2018-03-30 15:22:08 -0700 | [diff] [blame] | 348 | const int64_t dumpTimeStampNs, |
| Yangster-mac | e68f3a5 | 2018-04-04 00:01:43 -0700 | [diff] [blame] | 349 | const bool include_current_partial_bucket, |
| Bookatz | ff71cad | 2018-09-20 17:17:49 -0700 | [diff] [blame] | 350 | const bool erase_data, |
| Chenjie Yu | e36018b | 2018-04-16 15:18:30 -0700 | [diff] [blame] | 351 | const DumpReportReason dumpReportReason, |
| yro | 4beccbe | 2018-03-15 19:42:05 -0700 | [diff] [blame] | 352 | ProtoOutputStream* proto) { |
| 353 | // We already checked whether key exists in mMetricsManagers in |
| 354 | // WriteDataToDisk. |
| 355 | auto it = mMetricsManagers.find(key); |
| Yangster-mac | e68f3a5 | 2018-04-04 00:01:43 -0700 | [diff] [blame] | 356 | if (it == mMetricsManagers.end()) { |
| 357 | return; |
| 358 | } |
| yro | 4beccbe | 2018-03-15 19:42:05 -0700 | [diff] [blame] | 359 | int64_t lastReportTimeNs = it->second->getLastReportTimeNs(); |
| 360 | int64_t lastReportWallClockNs = it->second->getLastReportWallClockNs(); |
| 361 | |
| Yangster-mac | 9def8e3 | 2018-04-17 13:55:51 -0700 | [diff] [blame] | 362 | std::set<string> str_set; |
| 363 | |
| yro | 4beccbe | 2018-03-15 19:42:05 -0700 | [diff] [blame] | 364 | // First, fill in ConfigMetricsReport using current data on memory, which |
| 365 | // starts from filling in StatsLogReport's. |
| Yangster-mac | 9def8e3 | 2018-04-17 13:55:51 -0700 | [diff] [blame] | 366 | it->second->onDumpReport(dumpTimeStampNs, include_current_partial_bucket, |
| Bookatz | ff71cad | 2018-09-20 17:17:49 -0700 | [diff] [blame] | 367 | erase_data, &str_set, proto); |
| yro | 4beccbe | 2018-03-15 19:42:05 -0700 | [diff] [blame] | 368 | |
| David Chen | 9e6dbbd | 2018-05-07 17:52:29 -0700 | [diff] [blame] | 369 | // Fill in UidMap if there is at least one metric to report. |
| 370 | // This skips the uid map if it's an empty config. |
| 371 | if (it->second->getNumMetrics() > 0) { |
| 372 | uint64_t uidMapToken = proto->start(FIELD_TYPE_MESSAGE | FIELD_ID_UID_MAP); |
| dwchen | 730403e | 2018-10-29 11:41:56 -0700 | [diff] [blame] | 373 | mUidMap->appendUidMap( |
| 374 | dumpTimeStampNs, key, it->second->hashStringInReport() ? &str_set : nullptr, |
| 375 | it->second->versionStringsInReport(), it->second->installerInReport(), proto); |
| David Chen | 9e6dbbd | 2018-05-07 17:52:29 -0700 | [diff] [blame] | 376 | proto->end(uidMapToken); |
| 377 | } |
| yro | 4beccbe | 2018-03-15 19:42:05 -0700 | [diff] [blame] | 378 | |
| 379 | // Fill in the timestamps. |
| 380 | proto->write(FIELD_TYPE_INT64 | FIELD_ID_LAST_REPORT_ELAPSED_NANOS, |
| 381 | (long long)lastReportTimeNs); |
| 382 | proto->write(FIELD_TYPE_INT64 | FIELD_ID_CURRENT_REPORT_ELAPSED_NANOS, |
| 383 | (long long)dumpTimeStampNs); |
| 384 | proto->write(FIELD_TYPE_INT64 | FIELD_ID_LAST_REPORT_WALL_CLOCK_NANOS, |
| 385 | (long long)lastReportWallClockNs); |
| 386 | proto->write(FIELD_TYPE_INT64 | FIELD_ID_CURRENT_REPORT_WALL_CLOCK_NANOS, |
| 387 | (long long)getWallClockNs()); |
| Chenjie Yu | e36018b | 2018-04-16 15:18:30 -0700 | [diff] [blame] | 388 | // Dump report reason |
| 389 | proto->write(FIELD_TYPE_INT32 | FIELD_ID_DUMP_REPORT_REASON, dumpReportReason); |
| Yangster-mac | 9def8e3 | 2018-04-17 13:55:51 -0700 | [diff] [blame] | 390 | |
| David Chen | 56ae0d9 | 2018-05-11 16:00:22 -0700 | [diff] [blame] | 391 | for (const auto& str : str_set) { |
| 392 | proto->write(FIELD_TYPE_STRING | FIELD_COUNT_REPEATED | FIELD_ID_STRINGS, str); |
| Yangster-mac | 9def8e3 | 2018-04-17 13:55:51 -0700 | [diff] [blame] | 393 | } |
| Yangster-mac | b142cc8 | 2018-03-30 15:22:08 -0700 | [diff] [blame] | 394 | } |
| yro | 4beccbe | 2018-03-15 19:42:05 -0700 | [diff] [blame] | 395 | |
| Yao Chen | 163d260 | 2018-04-10 10:39:53 -0700 | [diff] [blame] | 396 | void StatsLogProcessor::resetConfigsLocked(const int64_t timestampNs, |
| 397 | const std::vector<ConfigKey>& configs) { |
| 398 | for (const auto& key : configs) { |
| Yangster-mac | b142cc8 | 2018-03-30 15:22:08 -0700 | [diff] [blame] | 399 | StatsdConfig config; |
| 400 | if (StorageManager::readConfigFromDisk(key, &config)) { |
| 401 | OnConfigUpdatedLocked(timestampNs, key, config); |
| 402 | StatsdStats::getInstance().noteConfigReset(key); |
| 403 | } else { |
| 404 | ALOGE("Failed to read backup config from disk for : %s", key.ToString().c_str()); |
| 405 | auto it = mMetricsManagers.find(key); |
| 406 | if (it != mMetricsManagers.end()) { |
| 407 | it->second->refreshTtl(timestampNs); |
| 408 | } |
| 409 | } |
| 410 | } |
| yro | 4beccbe | 2018-03-15 19:42:05 -0700 | [diff] [blame] | 411 | } |
| 412 | |
| Yao Chen | 163d260 | 2018-04-10 10:39:53 -0700 | [diff] [blame] | 413 | void StatsLogProcessor::resetIfConfigTtlExpiredLocked(const int64_t timestampNs) { |
| 414 | std::vector<ConfigKey> configKeysTtlExpired; |
| 415 | for (auto it = mMetricsManagers.begin(); it != mMetricsManagers.end(); it++) { |
| 416 | if (it->second != nullptr && !it->second->isInTtl(timestampNs)) { |
| 417 | configKeysTtlExpired.push_back(it->first); |
| 418 | } |
| 419 | } |
| 420 | if (configKeysTtlExpired.size() > 0) { |
| Yangster-mac | 892f3d3 | 2018-05-02 14:16:48 -0700 | [diff] [blame] | 421 | WriteDataToDiskLocked(CONFIG_RESET); |
| Yao Chen | 163d260 | 2018-04-10 10:39:53 -0700 | [diff] [blame] | 422 | resetConfigsLocked(timestampNs, configKeysTtlExpired); |
| 423 | } |
| 424 | } |
| 425 | |
| Joe Onorato | 9fc9edf | 2017-10-15 20:08:52 -0700 | [diff] [blame] | 426 | void StatsLogProcessor::OnConfigRemoved(const ConfigKey& key) { |
| Yangster-mac | b0d0628 | 2018-01-05 15:44:07 -0800 | [diff] [blame] | 427 | std::lock_guard<std::mutex> lock(mMetricsMutex); |
| Joe Onorato | 9fc9edf | 2017-10-15 20:08:52 -0700 | [diff] [blame] | 428 | auto it = mMetricsManagers.find(key); |
| 429 | if (it != mMetricsManagers.end()) { |
| Yangster-mac | 892f3d3 | 2018-05-02 14:16:48 -0700 | [diff] [blame] | 430 | WriteDataToDiskLocked(key, getElapsedRealtimeNs(), CONFIG_REMOVED); |
| Joe Onorato | 9fc9edf | 2017-10-15 20:08:52 -0700 | [diff] [blame] | 431 | mMetricsManagers.erase(it); |
| David Chen | d689689 | 2017-10-25 11:49:03 -0700 | [diff] [blame] | 432 | mUidMap->OnConfigRemoved(key); |
| Joe Onorato | 9fc9edf | 2017-10-15 20:08:52 -0700 | [diff] [blame] | 433 | } |
| Yao Chen | b356151 | 2017-11-21 18:07:17 -0800 | [diff] [blame] | 434 | StatsdStats::getInstance().noteConfigRemoved(key); |
| David Chen | 1d7b0cd | 2017-11-15 14:20:04 -0800 | [diff] [blame] | 435 | |
| David Chen | 1d7b0cd | 2017-11-15 14:20:04 -0800 | [diff] [blame] | 436 | mLastBroadcastTimes.erase(key); |
| Chenjie Yu | fa22d65 | 2018-02-05 14:37:48 -0800 | [diff] [blame] | 437 | |
| 438 | if (mMetricsManagers.empty()) { |
| Chenjie Yu | e221920 | 2018-06-08 10:07:51 -0700 | [diff] [blame] | 439 | mPullerManager->ForceClearPullerCache(); |
| Chenjie Yu | fa22d65 | 2018-02-05 14:37:48 -0800 | [diff] [blame] | 440 | } |
| Joe Onorato | 9fc9edf | 2017-10-15 20:08:52 -0700 | [diff] [blame] | 441 | } |
| 442 | |
| Yangster-mac | b0d0628 | 2018-01-05 15:44:07 -0800 | [diff] [blame] | 443 | void StatsLogProcessor::flushIfNecessaryLocked( |
| Yangster-mac | b142cc8 | 2018-03-30 15:22:08 -0700 | [diff] [blame] | 444 | int64_t timestampNs, const ConfigKey& key, MetricsManager& metricsManager) { |
| David Chen | d9269e2 | 2017-12-05 13:43:51 -0800 | [diff] [blame] | 445 | auto lastCheckTime = mLastByteSizeTimes.find(key); |
| 446 | if (lastCheckTime != mLastByteSizeTimes.end()) { |
| 447 | if (timestampNs - lastCheckTime->second < StatsdStats::kMinByteSizeCheckPeriodNs) { |
| 448 | return; |
| 449 | } |
| 450 | } |
| 451 | |
| 452 | // We suspect that the byteSize() computation is expensive, so we set a rate limit. |
| 453 | size_t totalBytes = metricsManager.byteSize(); |
| 454 | mLastByteSizeTimes[key] = timestampNs; |
| David Chen | 4894490 | 2018-05-03 10:29:11 -0700 | [diff] [blame] | 455 | bool requestDump = false; |
| David Chen | d9269e2 | 2017-12-05 13:43:51 -0800 | [diff] [blame] | 456 | if (totalBytes > |
| 457 | StatsdStats::kMaxMetricsBytesPerConfig) { // Too late. We need to start clearing data. |
| Yao Chen | 06dba5d | 2018-01-26 13:38:16 -0800 | [diff] [blame] | 458 | metricsManager.dropData(timestampNs); |
| Chenjie Yu | c3c30c0 | 2018-10-26 09:48:07 -0700 | [diff] [blame] | 459 | StatsdStats::getInstance().noteDataDropped(key, totalBytes); |
| David Chen | 1294295 | 2017-12-04 14:28:43 -0800 | [diff] [blame] | 460 | VLOG("StatsD had to toss out metrics for %s", key.ToString().c_str()); |
| David Chen | 4894490 | 2018-05-03 10:29:11 -0700 | [diff] [blame] | 461 | } else if ((totalBytes > StatsdStats::kBytesPerConfigTriggerGetData) || |
| 462 | (mOnDiskDataConfigs.find(key) != mOnDiskDataConfigs.end())) { |
| 463 | // Request to send a broadcast if: |
| 464 | // 1. in memory data > threshold OR |
| 465 | // 2. config has old data report on disk. |
| 466 | requestDump = true; |
| 467 | } |
| 468 | |
| 469 | if (requestDump) { |
| David Chen | d9269e2 | 2017-12-05 13:43:51 -0800 | [diff] [blame] | 470 | // Send broadcast so that receivers can pull data. |
| 471 | auto lastBroadcastTime = mLastBroadcastTimes.find(key); |
| 472 | if (lastBroadcastTime != mLastBroadcastTimes.end()) { |
| 473 | if (timestampNs - lastBroadcastTime->second < StatsdStats::kMinBroadcastPeriodNs) { |
| 474 | VLOG("StatsD would've sent a broadcast but the rate limit stopped us."); |
| David Chen | 1d7b0cd | 2017-11-15 14:20:04 -0800 | [diff] [blame] | 475 | return; |
| 476 | } |
| 477 | } |
| David Chen | 4894490 | 2018-05-03 10:29:11 -0700 | [diff] [blame] | 478 | if (mSendBroadcast(key)) { |
| 479 | mOnDiskDataConfigs.erase(key); |
| 480 | VLOG("StatsD triggered data fetch for %s", key.ToString().c_str()); |
| 481 | mLastBroadcastTimes[key] = timestampNs; |
| 482 | StatsdStats::getInstance().noteBroadcastSent(key); |
| 483 | } |
| yro | 31eb67b | 2017-10-24 13:33:21 -0700 | [diff] [blame] | 484 | } |
| 485 | } |
| 486 | |
| Chenjie Yu | e36018b | 2018-04-16 15:18:30 -0700 | [diff] [blame] | 487 | void StatsLogProcessor::WriteDataToDiskLocked(const ConfigKey& key, |
| Yangster-mac | 892f3d3 | 2018-05-02 14:16:48 -0700 | [diff] [blame] | 488 | const int64_t timestampNs, |
| Chenjie Yu | e36018b | 2018-04-16 15:18:30 -0700 | [diff] [blame] | 489 | const DumpReportReason dumpReportReason) { |
| yro | 028091c | 2018-05-09 16:03:27 -0700 | [diff] [blame] | 490 | if (mMetricsManagers.find(key) == mMetricsManagers.end() || |
| 491 | !mMetricsManagers.find(key)->second->shouldWriteToDisk()) { |
| Yangster-mac | 892f3d3 | 2018-05-02 14:16:48 -0700 | [diff] [blame] | 492 | return; |
| 493 | } |
| Yangster-mac | e68f3a5 | 2018-04-04 00:01:43 -0700 | [diff] [blame] | 494 | ProtoOutputStream proto; |
| David Chen | 56ae0d9 | 2018-05-11 16:00:22 -0700 | [diff] [blame] | 495 | onConfigMetricsReportLocked(key, timestampNs, true /* include_current_partial_bucket*/, |
| Bookatz | ff71cad | 2018-09-20 17:17:49 -0700 | [diff] [blame] | 496 | true /* erase_data */, dumpReportReason, &proto); |
| Yangster-mac | e68f3a5 | 2018-04-04 00:01:43 -0700 | [diff] [blame] | 497 | string file_name = StringPrintf("%s/%ld_%d_%lld", STATS_DATA_DIR, |
| 498 | (long)getWallClockSec(), key.GetUid(), (long long)key.GetId()); |
| 499 | android::base::unique_fd fd(open(file_name.c_str(), |
| 500 | O_WRONLY | O_CREAT | O_CLOEXEC, S_IRUSR | S_IWUSR)); |
| 501 | if (fd == -1) { |
| 502 | ALOGE("Attempt to write %s but failed", file_name.c_str()); |
| 503 | return; |
| 504 | } |
| 505 | proto.flush(fd.get()); |
| David Chen | 4894490 | 2018-05-03 10:29:11 -0700 | [diff] [blame] | 506 | // We were able to write the ConfigMetricsReport to disk, so we should trigger collection ASAP. |
| 507 | mOnDiskDataConfigs.insert(key); |
| Yangster-mac | e68f3a5 | 2018-04-04 00:01:43 -0700 | [diff] [blame] | 508 | } |
| 509 | |
| Chenjie Yu | e36018b | 2018-04-16 15:18:30 -0700 | [diff] [blame] | 510 | void StatsLogProcessor::WriteDataToDiskLocked(const DumpReportReason dumpReportReason) { |
| Yangster-mac | 892f3d3 | 2018-05-02 14:16:48 -0700 | [diff] [blame] | 511 | const int64_t timeNs = getElapsedRealtimeNs(); |
| Tej Singh | 42f9e06 | 2018-11-09 10:01:00 -0800 | [diff] [blame] | 512 | // Do not write to disk if we already have in the last few seconds. |
| 513 | // This is to avoid overwriting files that would have the same name if we |
| 514 | // write twice in the same second. |
| 515 | if (static_cast<unsigned long long> (timeNs) < |
| 516 | mLastWriteTimeNs + WRITE_DATA_COOL_DOWN_SEC * NS_PER_SEC) { |
| 517 | ALOGI("Statsd skipping writing data to disk. Already wrote data in last %d seconds", |
| 518 | WRITE_DATA_COOL_DOWN_SEC); |
| 519 | return; |
| 520 | } |
| 521 | mLastWriteTimeNs = timeNs; |
| Yangster-mac | e68f3a5 | 2018-04-04 00:01:43 -0700 | [diff] [blame] | 522 | for (auto& pair : mMetricsManagers) { |
| Yangster-mac | 892f3d3 | 2018-05-02 14:16:48 -0700 | [diff] [blame] | 523 | WriteDataToDiskLocked(pair.first, timeNs, dumpReportReason); |
| Yangster-mac | e68f3a5 | 2018-04-04 00:01:43 -0700 | [diff] [blame] | 524 | } |
| 525 | } |
| 526 | |
| Yangster-mac | 892f3d3 | 2018-05-02 14:16:48 -0700 | [diff] [blame] | 527 | void StatsLogProcessor::WriteDataToDisk(const DumpReportReason dumpReportReason) { |
| Yangster-mac | b0d0628 | 2018-01-05 15:44:07 -0800 | [diff] [blame] | 528 | std::lock_guard<std::mutex> lock(mMetricsMutex); |
| Yangster-mac | 892f3d3 | 2018-05-02 14:16:48 -0700 | [diff] [blame] | 529 | WriteDataToDiskLocked(dumpReportReason); |
| yro | 947fbce | 2017-11-15 22:50:23 -0800 | [diff] [blame] | 530 | } |
| 531 | |
| Yangster-mac | 15f6bbc | 2018-04-08 11:52:26 -0700 | [diff] [blame] | 532 | void StatsLogProcessor::informPullAlarmFired(const int64_t timestampNs) { |
| Yangster | 6df5fcc | 2018-04-12 11:04:29 -0700 | [diff] [blame] | 533 | std::lock_guard<std::mutex> lock(mMetricsMutex); |
| Chenjie Yu | e221920 | 2018-06-08 10:07:51 -0700 | [diff] [blame] | 534 | mPullerManager->OnAlarmFired(timestampNs); |
| Yangster-mac | 15f6bbc | 2018-04-08 11:52:26 -0700 | [diff] [blame] | 535 | } |
| 536 | |
| David Chen | d37bc23 | 2018-04-12 18:05:11 -0700 | [diff] [blame] | 537 | int64_t StatsLogProcessor::getLastReportTimeNs(const ConfigKey& key) { |
| 538 | auto it = mMetricsManagers.find(key); |
| 539 | if (it == mMetricsManagers.end()) { |
| 540 | return 0; |
| 541 | } else { |
| 542 | return it->second->getLastReportTimeNs(); |
| 543 | } |
| 544 | } |
| 545 | |
| David Chen | 4894490 | 2018-05-03 10:29:11 -0700 | [diff] [blame] | 546 | void StatsLogProcessor::noteOnDiskData(const ConfigKey& key) { |
| 547 | std::lock_guard<std::mutex> lock(mMetricsMutex); |
| 548 | mOnDiskDataConfigs.insert(key); |
| 549 | } |
| 550 | |
| Yao Chen | ef99c4f | 2017-09-22 16:26:54 -0700 | [diff] [blame] | 551 | } // namespace statsd |
| 552 | } // namespace os |
| 553 | } // namespace android |