blob: c29afeb794faebba352cd714a32b8dda67215385 [file] [log] [blame]
tsaichristine10978642019-09-10 14:12:49 -07001/*
2 * Copyright (C) 2019, 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
17#define DEBUG false // STOPSHIP if true
18#include "Log.h"
19
20#include "StateManager.h"
21
Muhammad Qureshi7ce22562020-05-12 01:08:00 -070022#include <private/android_filesystem_config.h>
23
tsaichristine10978642019-09-10 14:12:49 -070024namespace android {
25namespace os {
26namespace statsd {
27
Muhammad Qureshi7ce22562020-05-12 01:08:00 -070028StateManager::StateManager()
29 : mAllowedPkg({
30 "com.android.systemui",
31 }) {
32}
33
tsaichristine10978642019-09-10 14:12:49 -070034StateManager& StateManager::getInstance() {
35 static StateManager sStateManager;
36 return sStateManager;
37}
38
tsaichristinec876b492019-12-10 13:47:05 -080039void StateManager::clear() {
40 mStateTrackers.clear();
41}
42
tsaichristine10978642019-09-10 14:12:49 -070043void StateManager::onLogEvent(const LogEvent& event) {
Muhammad Qureshi7ce22562020-05-12 01:08:00 -070044 // Only process state events from uids in AID_* and packages that are whitelisted in
45 // mAllowedPkg.
46 // Whitelisted AIDs are AID_ROOT and all AIDs in [1000, 2000)
47 if (event.GetUid() == AID_ROOT || (event.GetUid() >= 1000 && event.GetUid() < 2000) ||
48 mAllowedLogSources.find(event.GetUid()) != mAllowedLogSources.end()) {
49 if (mStateTrackers.find(event.GetTagId()) != mStateTrackers.end()) {
50 mStateTrackers[event.GetTagId()]->onLogEvent(event);
51 }
tsaichristine10978642019-09-10 14:12:49 -070052 }
53}
54
Muhammad Qureshibfc4bdb2020-04-08 06:26:49 -070055void StateManager::registerListener(const int32_t atomId, wp<StateListener> listener) {
tsaichristine7192e0a2019-12-06 02:20:00 -080056 // Check if state tracker already exists.
tsaichristined21aacf2019-10-07 14:47:38 -070057 if (mStateTrackers.find(atomId) == mStateTrackers.end()) {
Muhammad Qureshibfc4bdb2020-04-08 06:26:49 -070058 mStateTrackers[atomId] = new StateTracker(atomId);
tsaichristine10978642019-09-10 14:12:49 -070059 }
tsaichristined21aacf2019-10-07 14:47:38 -070060 mStateTrackers[atomId]->registerListener(listener);
tsaichristine10978642019-09-10 14:12:49 -070061}
62
tsaichristinec876b492019-12-10 13:47:05 -080063void StateManager::unregisterListener(const int32_t atomId, wp<StateListener> listener) {
tsaichristine10978642019-09-10 14:12:49 -070064 std::unique_lock<std::mutex> lock(mMutex);
65
66 // Hold the sp<> until the lock is released so that ~StateTracker() is
67 // not called while the lock is held.
68 sp<StateTracker> toRemove;
69
70 // Unregister listener from correct StateTracker
tsaichristined21aacf2019-10-07 14:47:38 -070071 auto it = mStateTrackers.find(atomId);
tsaichristine10978642019-09-10 14:12:49 -070072 if (it != mStateTrackers.end()) {
73 it->second->unregisterListener(listener);
74
75 // Remove the StateTracker if it has no listeners
76 if (it->second->getListenersCount() == 0) {
77 toRemove = it->second;
78 mStateTrackers.erase(it);
79 }
80 } else {
81 ALOGE("StateManager cannot unregister listener, StateTracker for atom %d does not exist",
tsaichristined21aacf2019-10-07 14:47:38 -070082 atomId);
tsaichristine10978642019-09-10 14:12:49 -070083 }
84 lock.unlock();
85}
86
tsaichristinec876b492019-12-10 13:47:05 -080087bool StateManager::getStateValue(const int32_t atomId, const HashableDimensionKey& key,
tsaichristine69000e62019-10-18 17:34:52 -070088 FieldValue* output) const {
tsaichristine69000e62019-10-18 17:34:52 -070089 auto it = mStateTrackers.find(atomId);
90 if (it != mStateTrackers.end()) {
91 return it->second->getStateValue(key, output);
92 }
93 return false;
tsaichristine10978642019-09-10 14:12:49 -070094}
95
Muhammad Qureshi7ce22562020-05-12 01:08:00 -070096void StateManager::updateLogSources(const sp<UidMap>& uidMap) {
97 mAllowedLogSources.clear();
98 for (const auto& pkg : mAllowedPkg) {
99 auto uids = uidMap->getAppUid(pkg);
100 mAllowedLogSources.insert(uids.begin(), uids.end());
101 }
102}
103
104void StateManager::notifyAppChanged(const string& apk, const sp<UidMap>& uidMap) {
105 if (mAllowedPkg.find(apk) != mAllowedPkg.end()) {
106 updateLogSources(uidMap);
107 }
108}
109
tsaichristine10978642019-09-10 14:12:49 -0700110} // namespace statsd
111} // namespace os
112} // namespace android