Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2009 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 LOG_TAG "AudioPolicyService" |
| 18 | //#define LOG_NDEBUG 0 |
| 19 | |
Glenn Kasten | 153b9fe | 2013-07-15 11:23:36 -0700 | [diff] [blame] | 20 | #include "Configuration.h" |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 21 | #undef __STRICT_ANSI__ |
| 22 | #define __STDINT_LIMITS |
| 23 | #define __STDC_LIMIT_MACROS |
| 24 | #include <stdint.h> |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 25 | #include <sys/time.h> |
Jaideep Sharma | ba9053b | 2021-01-25 21:24:26 +0530 | [diff] [blame] | 26 | #include <dlfcn.h> |
Mikhail Naganov | 959e2d0 | 2019-03-28 11:08:19 -0700 | [diff] [blame] | 27 | |
| 28 | #include <audio_utils/clock.h> |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 29 | #include <binder/IServiceManager.h> |
| 30 | #include <utils/Log.h> |
| 31 | #include <cutils/properties.h> |
| 32 | #include <binder/IPCThreadState.h> |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 33 | #include <binder/PermissionController.h> |
| 34 | #include <binder/IResultReceiver.h> |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 35 | #include <utils/String16.h> |
| 36 | #include <utils/threads.h> |
Atneya Nair | 5b1ed64 | 2023-06-23 14:43:37 -0700 | [diff] [blame] | 37 | #include "AudioRecordClient.h" |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 38 | #include "AudioPolicyService.h" |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 39 | #include <hardware_legacy/power.h> |
Ytai Ben-Tsvi | 7e7a79d | 2020-12-15 16:48:16 -0800 | [diff] [blame] | 40 | #include <media/AidlConversion.h> |
Eric Laurent | 7c7f10b | 2011-06-17 21:29:58 -0700 | [diff] [blame] | 41 | #include <media/AudioEffect.h> |
Chih-Hung Hsieh | c84d9d2 | 2014-11-14 13:33:34 -0800 | [diff] [blame] | 42 | #include <media/AudioParameter.h> |
Andy Hung | c747c53 | 2022-03-07 21:41:14 -0800 | [diff] [blame] | 43 | #include <mediautils/MethodStatistics.h> |
Andy Hung | ab7ef30 | 2018-05-15 19:35:29 -0700 | [diff] [blame] | 44 | #include <mediautils/ServiceUtilities.h> |
Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 45 | #include <mediautils/TimeCheck.h> |
Michael Groover | cfd2830 | 2018-12-11 19:16:46 -0800 | [diff] [blame] | 46 | #include <sensorprivacy/SensorPrivacyManager.h> |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 47 | |
Dima Zavin | 6476024 | 2011-05-11 14:15:23 -0700 | [diff] [blame] | 48 | #include <system/audio.h> |
Dima Zavin | 7394a4f | 2011-06-13 18:16:26 -0700 | [diff] [blame] | 49 | #include <system/audio_policy.h> |
Mikhail Naganov | 68e3f64 | 2023-04-28 13:06:32 -0700 | [diff] [blame] | 50 | #include <AudioPolicyConfig.h> |
Jaideep Sharma | ba9053b | 2021-01-25 21:24:26 +0530 | [diff] [blame] | 51 | #include <AudioPolicyManager.h> |
Mikhail Naganov | 61a4fac | 2016-10-13 14:44:18 -0700 | [diff] [blame] | 52 | |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 53 | namespace android { |
Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 54 | using binder::Status; |
Shunkai Yao | 49bc61f | 2023-10-10 19:31:10 +0000 | [diff] [blame] | 55 | using media::audio::common::Spatialization; |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 56 | |
Glenn Kasten | 8dad0e3 | 2012-01-09 08:41:22 -0800 | [diff] [blame] | 57 | static const char kDeadlockedString[] = "AudioPolicyService may be deadlocked\n"; |
| 58 | static const char kCmdDeadlockedString[] = "AudioPolicyService command thread may be deadlocked\n"; |
Jaideep Sharma | ba9053b | 2021-01-25 21:24:26 +0530 | [diff] [blame] | 59 | static const char kAudioPolicyManagerCustomPath[] = "libaudiopolicymanagercustom.so"; |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 60 | |
Mikhail Naganov | 959e2d0 | 2019-03-28 11:08:19 -0700 | [diff] [blame] | 61 | static const int kDumpLockTimeoutNs = 1 * NANOS_PER_SECOND; |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 62 | |
Eric Laurent | 0ede892 | 2014-05-09 18:04:42 -0700 | [diff] [blame] | 63 | static const nsecs_t kAudioCommandTimeoutNs = seconds(3); // 3 seconds |
Christer Fletcher | 5fa8c4b | 2013-01-18 15:27:03 +0100 | [diff] [blame] | 64 | |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 65 | static const String16 sManageAudioPolicyPermission("android.permission.MANAGE_AUDIO_POLICY"); |
Dima Zavin | fce7a47 | 2011-04-19 22:30:36 -0700 | [diff] [blame] | 66 | |
Andy Hung | c747c53 | 2022-03-07 21:41:14 -0800 | [diff] [blame] | 67 | // Creates an association between Binder code to name for IAudioPolicyService. |
| 68 | #define IAUDIOPOLICYSERVICE_BINDER_METHOD_MACRO_LIST \ |
| 69 | BINDER_METHOD_ENTRY(onNewAudioModulesAvailable) \ |
| 70 | BINDER_METHOD_ENTRY(setDeviceConnectionState) \ |
| 71 | BINDER_METHOD_ENTRY(getDeviceConnectionState) \ |
| 72 | BINDER_METHOD_ENTRY(handleDeviceConfigChange) \ |
| 73 | BINDER_METHOD_ENTRY(setPhoneState) \ |
| 74 | BINDER_METHOD_ENTRY(setForceUse) \ |
| 75 | BINDER_METHOD_ENTRY(getForceUse) \ |
| 76 | BINDER_METHOD_ENTRY(getOutput) \ |
| 77 | BINDER_METHOD_ENTRY(getOutputForAttr) \ |
| 78 | BINDER_METHOD_ENTRY(startOutput) \ |
| 79 | BINDER_METHOD_ENTRY(stopOutput) \ |
| 80 | BINDER_METHOD_ENTRY(releaseOutput) \ |
| 81 | BINDER_METHOD_ENTRY(getInputForAttr) \ |
| 82 | BINDER_METHOD_ENTRY(startInput) \ |
| 83 | BINDER_METHOD_ENTRY(stopInput) \ |
| 84 | BINDER_METHOD_ENTRY(releaseInput) \ |
| 85 | BINDER_METHOD_ENTRY(initStreamVolume) \ |
| 86 | BINDER_METHOD_ENTRY(setStreamVolumeIndex) \ |
| 87 | BINDER_METHOD_ENTRY(getStreamVolumeIndex) \ |
| 88 | BINDER_METHOD_ENTRY(setVolumeIndexForAttributes) \ |
| 89 | BINDER_METHOD_ENTRY(getVolumeIndexForAttributes) \ |
| 90 | BINDER_METHOD_ENTRY(getMaxVolumeIndexForAttributes) \ |
| 91 | BINDER_METHOD_ENTRY(getMinVolumeIndexForAttributes) \ |
| 92 | BINDER_METHOD_ENTRY(getStrategyForStream) \ |
| 93 | BINDER_METHOD_ENTRY(getDevicesForAttributes) \ |
| 94 | BINDER_METHOD_ENTRY(getOutputForEffect) \ |
| 95 | BINDER_METHOD_ENTRY(registerEffect) \ |
| 96 | BINDER_METHOD_ENTRY(unregisterEffect) \ |
| 97 | BINDER_METHOD_ENTRY(setEffectEnabled) \ |
| 98 | BINDER_METHOD_ENTRY(moveEffectsToIo) \ |
| 99 | BINDER_METHOD_ENTRY(isStreamActive) \ |
| 100 | BINDER_METHOD_ENTRY(isStreamActiveRemotely) \ |
| 101 | BINDER_METHOD_ENTRY(isSourceActive) \ |
| 102 | BINDER_METHOD_ENTRY(queryDefaultPreProcessing) \ |
| 103 | BINDER_METHOD_ENTRY(addSourceDefaultEffect) \ |
| 104 | BINDER_METHOD_ENTRY(addStreamDefaultEffect) \ |
| 105 | BINDER_METHOD_ENTRY(removeSourceDefaultEffect) \ |
| 106 | BINDER_METHOD_ENTRY(removeStreamDefaultEffect) \ |
| 107 | BINDER_METHOD_ENTRY(setSupportedSystemUsages) \ |
| 108 | BINDER_METHOD_ENTRY(setAllowedCapturePolicy) \ |
| 109 | BINDER_METHOD_ENTRY(getOffloadSupport) \ |
| 110 | BINDER_METHOD_ENTRY(isDirectOutputSupported) \ |
| 111 | BINDER_METHOD_ENTRY(listAudioPorts) \ |
| 112 | BINDER_METHOD_ENTRY(getAudioPort) \ |
| 113 | BINDER_METHOD_ENTRY(createAudioPatch) \ |
| 114 | BINDER_METHOD_ENTRY(releaseAudioPatch) \ |
| 115 | BINDER_METHOD_ENTRY(listAudioPatches) \ |
| 116 | BINDER_METHOD_ENTRY(setAudioPortConfig) \ |
| 117 | BINDER_METHOD_ENTRY(registerClient) \ |
| 118 | BINDER_METHOD_ENTRY(setAudioPortCallbacksEnabled) \ |
| 119 | BINDER_METHOD_ENTRY(setAudioVolumeGroupCallbacksEnabled) \ |
| 120 | BINDER_METHOD_ENTRY(acquireSoundTriggerSession) \ |
| 121 | BINDER_METHOD_ENTRY(releaseSoundTriggerSession) \ |
| 122 | BINDER_METHOD_ENTRY(getPhoneState) \ |
| 123 | BINDER_METHOD_ENTRY(registerPolicyMixes) \ |
Jan Sebechlebsky | 0af8e87 | 2023-08-11 14:45:08 +0200 | [diff] [blame] | 124 | BINDER_METHOD_ENTRY(updatePolicyMixes) \ |
Andy Hung | c747c53 | 2022-03-07 21:41:14 -0800 | [diff] [blame] | 125 | BINDER_METHOD_ENTRY(setUidDeviceAffinities) \ |
| 126 | BINDER_METHOD_ENTRY(removeUidDeviceAffinities) \ |
| 127 | BINDER_METHOD_ENTRY(setUserIdDeviceAffinities) \ |
| 128 | BINDER_METHOD_ENTRY(removeUserIdDeviceAffinities) \ |
| 129 | BINDER_METHOD_ENTRY(startAudioSource) \ |
| 130 | BINDER_METHOD_ENTRY(stopAudioSource) \ |
| 131 | BINDER_METHOD_ENTRY(setMasterMono) \ |
| 132 | BINDER_METHOD_ENTRY(getMasterMono) \ |
| 133 | BINDER_METHOD_ENTRY(getStreamVolumeDB) \ |
| 134 | BINDER_METHOD_ENTRY(getSurroundFormats) \ |
| 135 | BINDER_METHOD_ENTRY(getReportedSurroundFormats) \ |
| 136 | BINDER_METHOD_ENTRY(getHwOffloadFormatsSupportedForBluetoothMedia) \ |
| 137 | BINDER_METHOD_ENTRY(setSurroundFormatEnabled) \ |
| 138 | BINDER_METHOD_ENTRY(setAssistantServicesUids) \ |
| 139 | BINDER_METHOD_ENTRY(setActiveAssistantServicesUids) \ |
| 140 | BINDER_METHOD_ENTRY(setA11yServicesUids) \ |
| 141 | BINDER_METHOD_ENTRY(setCurrentImeUid) \ |
| 142 | BINDER_METHOD_ENTRY(isHapticPlaybackSupported) \ |
| 143 | BINDER_METHOD_ENTRY(isUltrasoundSupported) \ |
Atneya Nair | 698f5ef | 2022-12-15 16:15:09 -0800 | [diff] [blame] | 144 | BINDER_METHOD_ENTRY(isHotwordStreamSupported) \ |
Andy Hung | c747c53 | 2022-03-07 21:41:14 -0800 | [diff] [blame] | 145 | BINDER_METHOD_ENTRY(listAudioProductStrategies) \ |
| 146 | BINDER_METHOD_ENTRY(getProductStrategyFromAudioAttributes) \ |
| 147 | BINDER_METHOD_ENTRY(listAudioVolumeGroups) \ |
| 148 | BINDER_METHOD_ENTRY(getVolumeGroupFromAudioAttributes) \ |
| 149 | BINDER_METHOD_ENTRY(setRttEnabled) \ |
| 150 | BINDER_METHOD_ENTRY(isCallScreenModeSupported) \ |
| 151 | BINDER_METHOD_ENTRY(setDevicesRoleForStrategy) \ |
| 152 | BINDER_METHOD_ENTRY(removeDevicesRoleForStrategy) \ |
Paul Wang | 5d7cdb5 | 2022-11-22 09:45:06 +0000 | [diff] [blame] | 153 | BINDER_METHOD_ENTRY(clearDevicesRoleForStrategy) \ |
Andy Hung | c747c53 | 2022-03-07 21:41:14 -0800 | [diff] [blame] | 154 | BINDER_METHOD_ENTRY(getDevicesForRoleAndStrategy) \ |
| 155 | BINDER_METHOD_ENTRY(setDevicesRoleForCapturePreset) \ |
| 156 | BINDER_METHOD_ENTRY(addDevicesRoleForCapturePreset) \ |
| 157 | BINDER_METHOD_ENTRY(removeDevicesRoleForCapturePreset) \ |
| 158 | BINDER_METHOD_ENTRY(clearDevicesRoleForCapturePreset) \ |
| 159 | BINDER_METHOD_ENTRY(getDevicesForRoleAndCapturePreset) \ |
| 160 | BINDER_METHOD_ENTRY(registerSoundTriggerCaptureStateListener) \ |
| 161 | BINDER_METHOD_ENTRY(getSpatializer) \ |
| 162 | BINDER_METHOD_ENTRY(canBeSpatialized) \ |
| 163 | BINDER_METHOD_ENTRY(getDirectPlaybackSupport) \ |
jiabin | a84c3d3 | 2022-12-02 18:59:55 +0000 | [diff] [blame] | 164 | BINDER_METHOD_ENTRY(getDirectProfilesForAttributes) \ |
| 165 | BINDER_METHOD_ENTRY(getSupportedMixerAttributes) \ |
| 166 | BINDER_METHOD_ENTRY(setPreferredMixerAttributes) \ |
| 167 | BINDER_METHOD_ENTRY(getPreferredMixerAttributes) \ |
| 168 | BINDER_METHOD_ENTRY(clearPreferredMixerAttributes) \ |
Andy Hung | c747c53 | 2022-03-07 21:41:14 -0800 | [diff] [blame] | 169 | |
| 170 | // singleton for Binder Method Statistics for IAudioPolicyService |
| 171 | static auto& getIAudioPolicyServiceStatistics() { |
| 172 | using Code = int; |
| 173 | |
| 174 | #pragma push_macro("BINDER_METHOD_ENTRY") |
| 175 | #undef BINDER_METHOD_ENTRY |
| 176 | #define BINDER_METHOD_ENTRY(ENTRY) \ |
| 177 | {(Code)media::BnAudioPolicyService::TRANSACTION_##ENTRY, #ENTRY}, |
| 178 | |
| 179 | static mediautils::MethodStatistics<Code> methodStatistics{ |
| 180 | IAUDIOPOLICYSERVICE_BINDER_METHOD_MACRO_LIST |
| 181 | METHOD_STATISTICS_BINDER_CODE_NAMES(Code) |
| 182 | }; |
| 183 | #pragma pop_macro("BINDER_METHOD_ENTRY") |
| 184 | |
| 185 | return methodStatistics; |
| 186 | } |
| 187 | |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 188 | // ---------------------------------------------------------------------------- |
| 189 | |
Jaideep Sharma | ba9053b | 2021-01-25 21:24:26 +0530 | [diff] [blame] | 190 | static AudioPolicyInterface* createAudioPolicyManager(AudioPolicyClientInterface *clientInterface) |
| 191 | { |
Mikhail Naganov | 9e459d7 | 2023-05-05 17:36:39 -0700 | [diff] [blame] | 192 | AudioPolicyManager *apm = nullptr; |
| 193 | media::AudioPolicyConfig apmConfig; |
| 194 | if (status_t status = clientInterface->getAudioPolicyConfig(&apmConfig); status == OK) { |
| 195 | auto config = AudioPolicyConfig::loadFromApmAidlConfigWithFallback(apmConfig); |
| 196 | LOG_ALWAYS_FATAL_IF(config->getEngineLibraryNameSuffix() != |
| 197 | AudioPolicyConfig::kDefaultEngineLibraryNameSuffix, |
| 198 | "Only default engine is currently supported with the AIDL HAL"); |
| 199 | apm = new AudioPolicyManager(config, |
| 200 | loadApmEngineLibraryAndCreateEngine( |
| 201 | config->getEngineLibraryNameSuffix(), apmConfig.engineConfig), |
| 202 | clientInterface); |
| 203 | } else { |
| 204 | auto config = AudioPolicyConfig::loadFromApmXmlConfigWithFallback(); // This can't fail. |
| 205 | apm = new AudioPolicyManager(config, |
| 206 | loadApmEngineLibraryAndCreateEngine(config->getEngineLibraryNameSuffix()), |
| 207 | clientInterface); |
| 208 | } |
Jaideep Sharma | ba9053b | 2021-01-25 21:24:26 +0530 | [diff] [blame] | 209 | status_t status = apm->initialize(); |
| 210 | if (status != NO_ERROR) { |
| 211 | delete apm; |
| 212 | apm = nullptr; |
| 213 | } |
| 214 | return apm; |
| 215 | } |
| 216 | |
| 217 | static void destroyAudioPolicyManager(AudioPolicyInterface *interface) |
| 218 | { |
| 219 | delete interface; |
| 220 | } |
| 221 | // ---------------------------------------------------------------------------- |
| 222 | |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 223 | AudioPolicyService::AudioPolicyService() |
Ytai Ben-Tsvi | 85093d5 | 2020-03-26 09:41:15 -0700 | [diff] [blame] | 224 | : BnAudioPolicyService(), |
Ytai Ben-Tsvi | 85093d5 | 2020-03-26 09:41:15 -0700 | [diff] [blame] | 225 | mAudioPolicyManager(NULL), |
| 226 | mAudioPolicyClient(NULL), |
| 227 | mPhoneState(AUDIO_MODE_INVALID), |
Jaideep Sharma | ba9053b | 2021-01-25 21:24:26 +0530 | [diff] [blame] | 228 | mCaptureStateNotifier(false), |
| 229 | mCreateAudioPolicyManager(createAudioPolicyManager), |
Eric Laurent | 0d13fea | 2022-11-04 17:12:08 +0100 | [diff] [blame] | 230 | mDestroyAudioPolicyManager(destroyAudioPolicyManager), |
| 231 | mUsecaseValidator(media::createUsecaseValidator()) { |
Andy Hung | 225aef6 | 2022-12-06 16:33:20 -0800 | [diff] [blame] | 232 | setMinSchedulerPolicy(SCHED_NORMAL, ANDROID_PRIORITY_AUDIO); |
Jaideep Sharma | ba9053b | 2021-01-25 21:24:26 +0530 | [diff] [blame] | 233 | } |
| 234 | |
| 235 | void AudioPolicyService::loadAudioPolicyManager() |
| 236 | { |
| 237 | mLibraryHandle = dlopen(kAudioPolicyManagerCustomPath, RTLD_NOW); |
| 238 | if (mLibraryHandle != nullptr) { |
| 239 | ALOGI("%s loading %s", __func__, kAudioPolicyManagerCustomPath); |
| 240 | mCreateAudioPolicyManager = reinterpret_cast<CreateAudioPolicyManagerInstance> |
| 241 | (dlsym(mLibraryHandle, "createAudioPolicyManager")); |
| 242 | const char *lastError = dlerror(); |
| 243 | ALOGW_IF(mCreateAudioPolicyManager == nullptr, "%s createAudioPolicyManager is null %s", |
| 244 | __func__, lastError != nullptr ? lastError : "no error"); |
| 245 | |
| 246 | mDestroyAudioPolicyManager = reinterpret_cast<DestroyAudioPolicyManagerInstance>( |
| 247 | dlsym(mLibraryHandle, "destroyAudioPolicyManager")); |
| 248 | lastError = dlerror(); |
| 249 | ALOGW_IF(mDestroyAudioPolicyManager == nullptr, "%s destroyAudioPolicyManager is null %s", |
| 250 | __func__, lastError != nullptr ? lastError : "no error"); |
| 251 | if (mCreateAudioPolicyManager == nullptr || mDestroyAudioPolicyManager == nullptr){ |
| 252 | unloadAudioPolicyManager(); |
| 253 | LOG_ALWAYS_FATAL("could not find audiopolicymanager interface methods"); |
| 254 | } |
| 255 | } |
Eric Laurent | f5ada6e | 2014-10-09 17:49:00 -0700 | [diff] [blame] | 256 | } |
| 257 | |
| 258 | void AudioPolicyService::onFirstRef() |
| 259 | { |
Andy Hung | d47aca2 | 2022-03-15 11:50:51 -0700 | [diff] [blame] | 260 | // Log an AudioPolicy "constructor" mediametrics event on first ref. |
| 261 | // This records the time it takes to load the audio modules and devices. |
| 262 | mediametrics::Defer defer([beginNs = systemTime()] { |
| 263 | mediametrics::LogItem(AMEDIAMETRICS_KEY_AUDIO_POLICY) |
| 264 | .set(AMEDIAMETRICS_PROP_EVENT, AMEDIAMETRICS_PROP_EVENT_VALUE_CTOR) |
| 265 | .set(AMEDIAMETRICS_PROP_EXECUTIONTIMENS, (int64_t)(systemTime() - beginNs)) |
| 266 | .record(); }); |
Eric Laurent | 8b1e80b | 2014-10-07 09:08:47 -0700 | [diff] [blame] | 267 | { |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 268 | audio_utils::lock_guard _l(mMutex); |
Eric Laurent | 9357520 | 2011-01-18 18:39:02 -0800 | [diff] [blame] | 269 | |
Eric Laurent | 8b1e80b | 2014-10-07 09:08:47 -0700 | [diff] [blame] | 270 | // start audio commands thread |
| 271 | mAudioCommandThread = new AudioCommandThread(String8("ApmAudio"), this); |
| 272 | // start output activity command thread |
| 273 | mOutputCommandThread = new AudioCommandThread(String8("ApmOutput"), this); |
Eric Laurent | dce54a1 | 2014-03-10 12:19:46 -0700 | [diff] [blame] | 274 | |
Eric Laurent | 8b1e80b | 2014-10-07 09:08:47 -0700 | [diff] [blame] | 275 | mAudioPolicyClient = new AudioPolicyClient(this); |
Jaideep Sharma | ba9053b | 2021-01-25 21:24:26 +0530 | [diff] [blame] | 276 | |
| 277 | loadAudioPolicyManager(); |
| 278 | mAudioPolicyManager = mCreateAudioPolicyManager(mAudioPolicyClient); |
Eric Laurent | 8b1e80b | 2014-10-07 09:08:47 -0700 | [diff] [blame] | 279 | } |
Eric Laurent | d66d7a1 | 2021-07-13 13:35:32 +0200 | [diff] [blame] | 280 | |
bryant_liu | ba2b439 | 2014-06-11 16:49:30 +0800 | [diff] [blame] | 281 | // load audio processing modules |
Shunkai Yao | 8d6489a | 2023-04-18 23:14:25 +0000 | [diff] [blame] | 282 | const sp<EffectsFactoryHalInterface> effectsFactoryHal = EffectsFactoryHalInterface::create(); |
Andy Hung | d3595ed | 2023-12-19 15:34:46 -0800 | [diff] [blame] | 283 | auto audioPolicyEffects = sp<AudioPolicyEffects>::make(effectsFactoryHal); |
| 284 | auto uidPolicy = sp<UidPolicy>::make(this); |
| 285 | auto sensorPrivacyPolicy = sp<SensorPrivacyPolicy>::make(this); |
Eric Laurent | 8b1e80b | 2014-10-07 09:08:47 -0700 | [diff] [blame] | 286 | { |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 287 | audio_utils::lock_guard _l(mMutex); |
Eric Laurent | 8b1e80b | 2014-10-07 09:08:47 -0700 | [diff] [blame] | 288 | mAudioPolicyEffects = audioPolicyEffects; |
Mikhail Naganov | 12b716c | 2020-04-30 22:37:43 +0000 | [diff] [blame] | 289 | mUidPolicy = uidPolicy; |
| 290 | mSensorPrivacyPolicy = sensorPrivacyPolicy; |
Eric Laurent | 8b1e80b | 2014-10-07 09:08:47 -0700 | [diff] [blame] | 291 | } |
Mikhail Naganov | 12b716c | 2020-04-30 22:37:43 +0000 | [diff] [blame] | 292 | uidPolicy->registerSelf(); |
| 293 | sensorPrivacyPolicy->registerSelf(); |
Eric Laurent | d66d7a1 | 2021-07-13 13:35:32 +0200 | [diff] [blame] | 294 | |
Eric Laurent | 81dd0f5 | 2021-07-05 11:54:40 +0200 | [diff] [blame] | 295 | // Create spatializer if supported |
Eric Laurent | 52b0bd5 | 2021-09-27 15:25:40 +0200 | [diff] [blame] | 296 | if (mAudioPolicyManager != nullptr) { |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 297 | audio_utils::lock_guard _l(mMutex); |
Eric Laurent | 52b0bd5 | 2021-09-27 15:25:40 +0200 | [diff] [blame] | 298 | const audio_attributes_t attr = attributes_initializer(AUDIO_USAGE_MEDIA); |
| 299 | AudioDeviceTypeAddrVector devices; |
| 300 | bool hasSpatializer = mAudioPolicyManager->canBeSpatialized(&attr, nullptr, devices); |
| 301 | if (hasSpatializer) { |
Andy Hung | 1040da5 | 2023-12-06 20:59:06 -0800 | [diff] [blame] | 302 | // Unlock as Spatializer::create() will use the callback and acquire the |
| 303 | // AudioPolicyService_Mutex. |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 304 | mMutex.unlock(); |
Shunkai Yao | 8d6489a | 2023-04-18 23:14:25 +0000 | [diff] [blame] | 305 | mSpatializer = Spatializer::create(this, effectsFactoryHal); |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 306 | mMutex.lock(); |
Eric Laurent | 52b0bd5 | 2021-09-27 15:25:40 +0200 | [diff] [blame] | 307 | } |
Andy Hung | 8aa43c0 | 2022-09-13 18:53:06 -0700 | [diff] [blame] | 308 | if (mSpatializer == nullptr) { |
| 309 | // No spatializer created, signal the reason: NO_INIT a failure, OK means intended. |
| 310 | const status_t createStatus = hasSpatializer ? NO_INIT : OK; |
| 311 | Spatializer::sendEmptyCreateSpatializerMetricWithStatus(createStatus); |
| 312 | } |
Eric Laurent | 81dd0f5 | 2021-07-05 11:54:40 +0200 | [diff] [blame] | 313 | } |
Eric Laurent | d66d7a1 | 2021-07-13 13:35:32 +0200 | [diff] [blame] | 314 | AudioSystem::audioPolicyReady(); |
François Gaffie | 163ce83 | 2023-06-28 11:36:35 +0200 | [diff] [blame] | 315 | // AudioFlinger will handle effect creation and register these effects on audio_policy |
| 316 | // service. Hence, audio_policy service must be ready. |
| 317 | audioPolicyEffects->setDefaultDeviceEffects(); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 318 | } |
| 319 | |
Jaideep Sharma | ba9053b | 2021-01-25 21:24:26 +0530 | [diff] [blame] | 320 | void AudioPolicyService::unloadAudioPolicyManager() |
| 321 | { |
| 322 | ALOGV("%s ", __func__); |
| 323 | if (mLibraryHandle != nullptr) { |
| 324 | dlclose(mLibraryHandle); |
| 325 | } |
| 326 | mLibraryHandle = nullptr; |
| 327 | mCreateAudioPolicyManager = nullptr; |
| 328 | mDestroyAudioPolicyManager = nullptr; |
| 329 | } |
| 330 | |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 331 | AudioPolicyService::~AudioPolicyService() |
| 332 | { |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 333 | mAudioCommandThread->exit(); |
Eric Laurent | 657ff61 | 2014-05-07 11:58:24 -0700 | [diff] [blame] | 334 | mOutputCommandThread->exit(); |
Eric Laurent | 7c7f10b | 2011-06-17 21:29:58 -0700 | [diff] [blame] | 335 | |
Jaideep Sharma | ba9053b | 2021-01-25 21:24:26 +0530 | [diff] [blame] | 336 | mDestroyAudioPolicyManager(mAudioPolicyManager); |
| 337 | unloadAudioPolicyManager(); |
| 338 | |
Eric Laurent | dce54a1 | 2014-03-10 12:19:46 -0700 | [diff] [blame] | 339 | delete mAudioPolicyClient; |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 340 | |
| 341 | mNotificationClients.clear(); |
bryant_liu | ba2b439 | 2014-06-11 16:49:30 +0800 | [diff] [blame] | 342 | mAudioPolicyEffects.clear(); |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 343 | |
| 344 | mUidPolicy->unregisterSelf(); |
Michael Groover | cfd2830 | 2018-12-11 19:16:46 -0800 | [diff] [blame] | 345 | mSensorPrivacyPolicy->unregisterSelf(); |
Mikhail Naganov | 12b716c | 2020-04-30 22:37:43 +0000 | [diff] [blame] | 346 | |
| 347 | mUidPolicy.clear(); |
Michael Groover | cfd2830 | 2018-12-11 19:16:46 -0800 | [diff] [blame] | 348 | mSensorPrivacyPolicy.clear(); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 349 | } |
| 350 | |
| 351 | // A notification client is always registered by AudioSystem when the client process |
| 352 | // connects to AudioPolicyService. |
Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 353 | Status AudioPolicyService::registerClient(const sp<media::IAudioPolicyServiceClient>& client) |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 354 | { |
Eric Laurent | 1259025 | 2015-08-21 18:40:20 -0700 | [diff] [blame] | 355 | if (client == 0) { |
| 356 | ALOGW("%s got NULL client", __FUNCTION__); |
Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 357 | return Status::ok(); |
Eric Laurent | 1259025 | 2015-08-21 18:40:20 -0700 | [diff] [blame] | 358 | } |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 359 | audio_utils::lock_guard _l(mNotificationClientsMutex); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 360 | |
| 361 | uid_t uid = IPCThreadState::self()->getCallingUid(); |
luochaojiang | 908c7d7 | 2018-06-21 14:58:04 +0800 | [diff] [blame] | 362 | pid_t pid = IPCThreadState::self()->getCallingPid(); |
| 363 | int64_t token = ((int64_t)uid<<32) | pid; |
| 364 | |
| 365 | if (mNotificationClients.indexOfKey(token) < 0) { |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 366 | sp<NotificationClient> notificationClient = new NotificationClient(this, |
| 367 | client, |
luochaojiang | 908c7d7 | 2018-06-21 14:58:04 +0800 | [diff] [blame] | 368 | uid, |
| 369 | pid); |
| 370 | ALOGV("registerClient() client %p, uid %d pid %d", client.get(), uid, pid); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 371 | |
luochaojiang | 908c7d7 | 2018-06-21 14:58:04 +0800 | [diff] [blame] | 372 | mNotificationClients.add(token, notificationClient); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 373 | |
Marco Nelissen | f888020 | 2014-11-14 07:58:25 -0800 | [diff] [blame] | 374 | sp<IBinder> binder = IInterface::asBinder(client); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 375 | binder->linkToDeath(notificationClient); |
| 376 | } |
Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 377 | return Status::ok(); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 378 | } |
| 379 | |
Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 380 | Status AudioPolicyService::setAudioPortCallbacksEnabled(bool enabled) |
Eric Laurent | e8726fe | 2015-06-26 09:39:24 -0700 | [diff] [blame] | 381 | { |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 382 | audio_utils::lock_guard _l(mNotificationClientsMutex); |
Eric Laurent | e8726fe | 2015-06-26 09:39:24 -0700 | [diff] [blame] | 383 | |
| 384 | uid_t uid = IPCThreadState::self()->getCallingUid(); |
luochaojiang | 908c7d7 | 2018-06-21 14:58:04 +0800 | [diff] [blame] | 385 | pid_t pid = IPCThreadState::self()->getCallingPid(); |
| 386 | int64_t token = ((int64_t)uid<<32) | pid; |
| 387 | |
| 388 | if (mNotificationClients.indexOfKey(token) < 0) { |
Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 389 | return Status::ok(); |
Eric Laurent | e8726fe | 2015-06-26 09:39:24 -0700 | [diff] [blame] | 390 | } |
luochaojiang | 908c7d7 | 2018-06-21 14:58:04 +0800 | [diff] [blame] | 391 | mNotificationClients.valueFor(token)->setAudioPortCallbacksEnabled(enabled); |
Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 392 | return Status::ok(); |
Eric Laurent | e8726fe | 2015-06-26 09:39:24 -0700 | [diff] [blame] | 393 | } |
| 394 | |
Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 395 | Status AudioPolicyService::setAudioVolumeGroupCallbacksEnabled(bool enabled) |
François Gaffie | cfe1732 | 2018-11-07 13:41:29 +0100 | [diff] [blame] | 396 | { |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 397 | audio_utils::lock_guard _l(mNotificationClientsMutex); |
François Gaffie | cfe1732 | 2018-11-07 13:41:29 +0100 | [diff] [blame] | 398 | |
| 399 | uid_t uid = IPCThreadState::self()->getCallingUid(); |
| 400 | pid_t pid = IPCThreadState::self()->getCallingPid(); |
| 401 | int64_t token = ((int64_t)uid<<32) | pid; |
| 402 | |
| 403 | if (mNotificationClients.indexOfKey(token) < 0) { |
Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 404 | return Status::ok(); |
François Gaffie | cfe1732 | 2018-11-07 13:41:29 +0100 | [diff] [blame] | 405 | } |
| 406 | mNotificationClients.valueFor(token)->setAudioVolumeGroupCallbacksEnabled(enabled); |
Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 407 | return Status::ok(); |
François Gaffie | cfe1732 | 2018-11-07 13:41:29 +0100 | [diff] [blame] | 408 | } |
| 409 | |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 410 | // removeNotificationClient() is called when the client process dies. |
luochaojiang | 908c7d7 | 2018-06-21 14:58:04 +0800 | [diff] [blame] | 411 | void AudioPolicyService::removeNotificationClient(uid_t uid, pid_t pid) |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 412 | { |
Mikhail Naganov | 12b716c | 2020-04-30 22:37:43 +0000 | [diff] [blame] | 413 | bool hasSameUid = false; |
Eric Laurent | 0ebd5f9 | 2014-11-19 19:04:52 -0800 | [diff] [blame] | 414 | { |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 415 | audio_utils::lock_guard _l(mNotificationClientsMutex); |
luochaojiang | 908c7d7 | 2018-06-21 14:58:04 +0800 | [diff] [blame] | 416 | int64_t token = ((int64_t)uid<<32) | pid; |
| 417 | mNotificationClients.removeItem(token); |
luochaojiang | 908c7d7 | 2018-06-21 14:58:04 +0800 | [diff] [blame] | 418 | for (size_t i = 0; i < mNotificationClients.size(); i++) { |
| 419 | if (mNotificationClients.valueAt(i)->uid() == uid) { |
| 420 | hasSameUid = true; |
| 421 | break; |
| 422 | } |
| 423 | } |
Mikhail Naganov | 12b716c | 2020-04-30 22:37:43 +0000 | [diff] [blame] | 424 | } |
| 425 | { |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 426 | audio_utils::lock_guard _l(mMutex); |
luochaojiang | 908c7d7 | 2018-06-21 14:58:04 +0800 | [diff] [blame] | 427 | if (mAudioPolicyManager && !hasSameUid) { |
Eric Laurent | 10b7123 | 2018-04-13 18:14:44 -0700 | [diff] [blame] | 428 | // called from binder death notification: no need to clear caller identity |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 429 | mAudioPolicyManager->releaseResourcesForUid(uid); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 430 | } |
Eric Laurent | 0ebd5f9 | 2014-11-19 19:04:52 -0800 | [diff] [blame] | 431 | } |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 432 | } |
| 433 | |
| 434 | void AudioPolicyService::onAudioPortListUpdate() |
| 435 | { |
| 436 | mOutputCommandThread->updateAudioPortListCommand(); |
| 437 | } |
| 438 | |
| 439 | void AudioPolicyService::doOnAudioPortListUpdate() |
| 440 | { |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 441 | audio_utils::lock_guard _l(mNotificationClientsMutex); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 442 | for (size_t i = 0; i < mNotificationClients.size(); i++) { |
| 443 | mNotificationClients.valueAt(i)->onAudioPortListUpdate(); |
| 444 | } |
| 445 | } |
| 446 | |
| 447 | void AudioPolicyService::onAudioPatchListUpdate() |
| 448 | { |
| 449 | mOutputCommandThread->updateAudioPatchListCommand(); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 450 | } |
| 451 | |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 452 | void AudioPolicyService::doOnAudioPatchListUpdate() |
| 453 | { |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 454 | audio_utils::lock_guard _l(mNotificationClientsMutex); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 455 | for (size_t i = 0; i < mNotificationClients.size(); i++) { |
| 456 | mNotificationClients.valueAt(i)->onAudioPatchListUpdate(); |
| 457 | } |
| 458 | } |
| 459 | |
François Gaffie | cfe1732 | 2018-11-07 13:41:29 +0100 | [diff] [blame] | 460 | void AudioPolicyService::onAudioVolumeGroupChanged(volume_group_t group, int flags) |
| 461 | { |
| 462 | mOutputCommandThread->changeAudioVolumeGroupCommand(group, flags); |
| 463 | } |
| 464 | |
| 465 | void AudioPolicyService::doOnAudioVolumeGroupChanged(volume_group_t group, int flags) |
| 466 | { |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 467 | audio_utils::lock_guard _l(mNotificationClientsMutex); |
François Gaffie | cfe1732 | 2018-11-07 13:41:29 +0100 | [diff] [blame] | 468 | for (size_t i = 0; i < mNotificationClients.size(); i++) { |
| 469 | mNotificationClients.valueAt(i)->onAudioVolumeGroupChanged(group, flags); |
| 470 | } |
| 471 | } |
| 472 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 473 | void AudioPolicyService::onDynamicPolicyMixStateUpdate(const String8& regId, int32_t state) |
Jean-Michel Trivi | de80105 | 2015-04-14 19:10:14 -0700 | [diff] [blame] | 474 | { |
| 475 | ALOGV("AudioPolicyService::onDynamicPolicyMixStateUpdate(%s, %d)", |
Tomasz Wasilczyk | 833345b | 2023-08-15 20:59:35 +0000 | [diff] [blame] | 476 | regId.c_str(), state); |
Jean-Michel Trivi | de80105 | 2015-04-14 19:10:14 -0700 | [diff] [blame] | 477 | mOutputCommandThread->dynamicPolicyMixStateUpdateCommand(regId, state); |
| 478 | } |
| 479 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 480 | void AudioPolicyService::doOnDynamicPolicyMixStateUpdate(const String8& regId, int32_t state) |
Jean-Michel Trivi | de80105 | 2015-04-14 19:10:14 -0700 | [diff] [blame] | 481 | { |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 482 | audio_utils::lock_guard _l(mNotificationClientsMutex); |
Jean-Michel Trivi | de80105 | 2015-04-14 19:10:14 -0700 | [diff] [blame] | 483 | for (size_t i = 0; i < mNotificationClients.size(); i++) { |
| 484 | mNotificationClients.valueAt(i)->onDynamicPolicyMixStateUpdate(regId, state); |
| 485 | } |
| 486 | } |
| 487 | |
Eric Laurent | a9f8665 | 2018-11-28 17:23:11 -0800 | [diff] [blame] | 488 | void AudioPolicyService::onRecordingConfigurationUpdate( |
| 489 | int event, |
| 490 | const record_client_info_t *clientInfo, |
| 491 | const audio_config_base_t *clientConfig, |
| 492 | std::vector<effect_descriptor_t> clientEffects, |
| 493 | const audio_config_base_t *deviceConfig, |
| 494 | std::vector<effect_descriptor_t> effects, |
| 495 | audio_patch_handle_t patchHandle, |
| 496 | audio_source_t source) |
Jean-Michel Trivi | 2f4fe9f | 2015-12-04 16:20:59 -0800 | [diff] [blame] | 497 | { |
Jean-Michel Trivi | ac4e429 | 2016-12-22 11:39:31 -0800 | [diff] [blame] | 498 | mOutputCommandThread->recordingConfigurationUpdateCommand(event, clientInfo, |
Eric Laurent | a9f8665 | 2018-11-28 17:23:11 -0800 | [diff] [blame] | 499 | clientConfig, clientEffects, deviceConfig, effects, patchHandle, source); |
Jean-Michel Trivi | 2f4fe9f | 2015-12-04 16:20:59 -0800 | [diff] [blame] | 500 | } |
| 501 | |
Eric Laurent | a9f8665 | 2018-11-28 17:23:11 -0800 | [diff] [blame] | 502 | void AudioPolicyService::doOnRecordingConfigurationUpdate( |
| 503 | int event, |
| 504 | const record_client_info_t *clientInfo, |
| 505 | const audio_config_base_t *clientConfig, |
| 506 | std::vector<effect_descriptor_t> clientEffects, |
| 507 | const audio_config_base_t *deviceConfig, |
| 508 | std::vector<effect_descriptor_t> effects, |
| 509 | audio_patch_handle_t patchHandle, |
| 510 | audio_source_t source) |
Jean-Michel Trivi | 2f4fe9f | 2015-12-04 16:20:59 -0800 | [diff] [blame] | 511 | { |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 512 | audio_utils::lock_guard _l(mNotificationClientsMutex); |
Jean-Michel Trivi | 2f4fe9f | 2015-12-04 16:20:59 -0800 | [diff] [blame] | 513 | for (size_t i = 0; i < mNotificationClients.size(); i++) { |
Jean-Michel Trivi | ac4e429 | 2016-12-22 11:39:31 -0800 | [diff] [blame] | 514 | mNotificationClients.valueAt(i)->onRecordingConfigurationUpdate(event, clientInfo, |
Eric Laurent | a9f8665 | 2018-11-28 17:23:11 -0800 | [diff] [blame] | 515 | clientConfig, clientEffects, deviceConfig, effects, patchHandle, source); |
Jean-Michel Trivi | 2f4fe9f | 2015-12-04 16:20:59 -0800 | [diff] [blame] | 516 | } |
| 517 | } |
| 518 | |
Jean-Michel Trivi | 9a6b9ad | 2020-10-22 16:46:43 -0700 | [diff] [blame] | 519 | void AudioPolicyService::onRoutingUpdated() |
| 520 | { |
| 521 | mOutputCommandThread->routingChangedCommand(); |
| 522 | } |
| 523 | |
| 524 | void AudioPolicyService::doOnRoutingUpdated() |
| 525 | { |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 526 | audio_utils::lock_guard _l(mNotificationClientsMutex); |
Jean-Michel Trivi | 9a6b9ad | 2020-10-22 16:46:43 -0700 | [diff] [blame] | 527 | for (size_t i = 0; i < mNotificationClients.size(); i++) { |
| 528 | mNotificationClients.valueAt(i)->onRoutingUpdated(); |
| 529 | } |
| 530 | } |
| 531 | |
Jean-Michel Trivi | 78f2b30 | 2022-04-15 18:18:41 +0000 | [diff] [blame] | 532 | void AudioPolicyService::onVolumeRangeInitRequest() |
| 533 | { |
| 534 | mOutputCommandThread->volRangeInitReqCommand(); |
| 535 | } |
| 536 | |
| 537 | void AudioPolicyService::doOnVolumeRangeInitRequest() |
| 538 | { |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 539 | audio_utils::lock_guard _l(mNotificationClientsMutex); |
Jean-Michel Trivi | 78f2b30 | 2022-04-15 18:18:41 +0000 | [diff] [blame] | 540 | for (size_t i = 0; i < mNotificationClients.size(); i++) { |
| 541 | mNotificationClients.valueAt(i)->onVolumeRangeInitRequest(); |
| 542 | } |
| 543 | } |
| 544 | |
Eric Laurent | 81dd0f5 | 2021-07-05 11:54:40 +0200 | [diff] [blame] | 545 | void AudioPolicyService::onCheckSpatializer() |
| 546 | { |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 547 | audio_utils::lock_guard _l(mMutex); |
Eric Laurent | 3909598 | 2021-08-24 18:29:27 +0200 | [diff] [blame] | 548 | onCheckSpatializer_l(); |
| 549 | } |
| 550 | |
| 551 | void AudioPolicyService::onCheckSpatializer_l() |
| 552 | { |
| 553 | if (mSpatializer != nullptr) { |
| 554 | mOutputCommandThread->checkSpatializerCommand(); |
| 555 | } |
Eric Laurent | 81dd0f5 | 2021-07-05 11:54:40 +0200 | [diff] [blame] | 556 | } |
| 557 | |
| 558 | void AudioPolicyService::doOnCheckSpatializer() |
| 559 | { |
Eric Laurent | d6bee3a | 2022-08-31 16:07:50 +0200 | [diff] [blame] | 560 | ALOGV("%s mSpatializer %p level %d", |
| 561 | __func__, mSpatializer.get(), (int)mSpatializer->getLevel()); |
Eric Laurent | b0a7bc9 | 2022-04-05 15:06:08 +0200 | [diff] [blame] | 562 | |
Eric Laurent | 3909598 | 2021-08-24 18:29:27 +0200 | [diff] [blame] | 563 | if (mSpatializer != nullptr) { |
Eric Laurent | 52b0bd5 | 2021-09-27 15:25:40 +0200 | [diff] [blame] | 564 | // Note: mSpatializer != nullptr => mAudioPolicyManager != nullptr |
Shunkai Yao | 49bc61f | 2023-10-10 19:31:10 +0000 | [diff] [blame] | 565 | if (mSpatializer->getLevel() != Spatialization::Level::NONE) { |
Eric Laurent | 3909598 | 2021-08-24 18:29:27 +0200 | [diff] [blame] | 566 | audio_io_handle_t currentOutput = mSpatializer->getOutput(); |
| 567 | audio_io_handle_t newOutput; |
| 568 | const audio_attributes_t attr = attributes_initializer(AUDIO_USAGE_MEDIA); |
| 569 | audio_config_base_t config = mSpatializer->getAudioInConfig(); |
Eric Laurent | 21270b6 | 2022-07-04 15:11:29 +0200 | [diff] [blame] | 570 | |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 571 | audio_utils::lock_guard _l(mMutex); |
Eric Laurent | 3909598 | 2021-08-24 18:29:27 +0200 | [diff] [blame] | 572 | status_t status = |
| 573 | mAudioPolicyManager->getSpatializerOutput(&config, &attr, &newOutput); |
Eric Laurent | b4f42a9 | 2022-01-17 17:37:31 +0100 | [diff] [blame] | 574 | ALOGV("%s currentOutput %d newOutput %d channel_mask %#x", |
| 575 | __func__, currentOutput, newOutput, config.channel_mask); |
Eric Laurent | 3909598 | 2021-08-24 18:29:27 +0200 | [diff] [blame] | 576 | if (status == NO_ERROR && currentOutput == newOutput) { |
| 577 | return; |
| 578 | } |
Eric Laurent | 1590359 | 2022-02-24 20:44:36 +0100 | [diff] [blame] | 579 | size_t numActiveTracks = countActiveClientsOnOutput_l(newOutput); |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 580 | mMutex.unlock(); |
Eric Laurent | 3909598 | 2021-08-24 18:29:27 +0200 | [diff] [blame] | 581 | // It is OK to call detachOutput() is none is already attached. |
| 582 | mSpatializer->detachOutput(); |
Eric Laurent | 21270b6 | 2022-07-04 15:11:29 +0200 | [diff] [blame] | 583 | if (status == NO_ERROR && newOutput != AUDIO_IO_HANDLE_NONE) { |
| 584 | status = mSpatializer->attachOutput(newOutput, numActiveTracks); |
Eric Laurent | 3909598 | 2021-08-24 18:29:27 +0200 | [diff] [blame] | 585 | } |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 586 | mMutex.lock(); |
Eric Laurent | 3909598 | 2021-08-24 18:29:27 +0200 | [diff] [blame] | 587 | if (status != NO_ERROR) { |
| 588 | mAudioPolicyManager->releaseSpatializerOutput(newOutput); |
| 589 | } |
Shunkai Yao | 49bc61f | 2023-10-10 19:31:10 +0000 | [diff] [blame] | 590 | } else if (mSpatializer->getLevel() == Spatialization::Level::NONE && |
| 591 | mSpatializer->getOutput() != AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | 3909598 | 2021-08-24 18:29:27 +0200 | [diff] [blame] | 592 | audio_io_handle_t output = mSpatializer->detachOutput(); |
Eric Laurent | 21270b6 | 2022-07-04 15:11:29 +0200 | [diff] [blame] | 593 | |
Eric Laurent | 3909598 | 2021-08-24 18:29:27 +0200 | [diff] [blame] | 594 | if (output != AUDIO_IO_HANDLE_NONE) { |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 595 | audio_utils::lock_guard _l(mMutex); |
Eric Laurent | 3909598 | 2021-08-24 18:29:27 +0200 | [diff] [blame] | 596 | mAudioPolicyManager->releaseSpatializerOutput(output); |
Eric Laurent | 81dd0f5 | 2021-07-05 11:54:40 +0200 | [diff] [blame] | 597 | } |
| 598 | } |
| 599 | } |
| 600 | } |
| 601 | |
Eric Laurent | 1109417 | 2022-04-05 18:27:42 +0200 | [diff] [blame] | 602 | size_t AudioPolicyService::countActiveClientsOnOutput_l( |
| 603 | audio_io_handle_t output, bool spatializedOnly) { |
Eric Laurent | 1590359 | 2022-02-24 20:44:36 +0100 | [diff] [blame] | 604 | size_t count = 0; |
| 605 | for (size_t i = 0; i < mAudioPlaybackClients.size(); i++) { |
| 606 | auto client = mAudioPlaybackClients.valueAt(i); |
Eric Laurent | 1109417 | 2022-04-05 18:27:42 +0200 | [diff] [blame] | 607 | if (client->io == output && client->active |
| 608 | && (!spatializedOnly || client->isSpatialized)) { |
Eric Laurent | 1590359 | 2022-02-24 20:44:36 +0100 | [diff] [blame] | 609 | count++; |
| 610 | } |
| 611 | } |
| 612 | return count; |
| 613 | } |
| 614 | |
| 615 | void AudioPolicyService::onUpdateActiveSpatializerTracks_l() { |
| 616 | if (mSpatializer == nullptr) { |
| 617 | return; |
| 618 | } |
| 619 | mOutputCommandThread->updateActiveSpatializerTracksCommand(); |
| 620 | } |
| 621 | |
| 622 | void AudioPolicyService::doOnUpdateActiveSpatializerTracks() |
| 623 | { |
Eric Laurent | 21270b6 | 2022-07-04 15:11:29 +0200 | [diff] [blame] | 624 | if (mSpatializer == nullptr) { |
| 625 | return; |
| 626 | } |
| 627 | audio_io_handle_t output = mSpatializer->getOutput(); |
Eric Laurent | 7ea0d1b | 2022-04-01 14:23:44 +0200 | [diff] [blame] | 628 | size_t activeClients; |
| 629 | { |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 630 | audio_utils::lock_guard _l(mMutex); |
Eric Laurent | 21270b6 | 2022-07-04 15:11:29 +0200 | [diff] [blame] | 631 | activeClients = countActiveClientsOnOutput_l(output); |
Eric Laurent | 1590359 | 2022-02-24 20:44:36 +0100 | [diff] [blame] | 632 | } |
Eric Laurent | 21270b6 | 2022-07-04 15:11:29 +0200 | [diff] [blame] | 633 | mSpatializer->updateActiveTracks(activeClients); |
Eric Laurent | 1590359 | 2022-02-24 20:44:36 +0100 | [diff] [blame] | 634 | } |
| 635 | |
Jean-Michel Trivi | 2f4fe9f | 2015-12-04 16:20:59 -0800 | [diff] [blame] | 636 | status_t AudioPolicyService::clientCreateAudioPatch(const struct audio_patch *patch, |
| 637 | audio_patch_handle_t *handle, |
| 638 | int delayMs) |
| 639 | { |
| 640 | return mAudioCommandThread->createAudioPatchCommand(patch, handle, delayMs); |
| 641 | } |
| 642 | |
| 643 | status_t AudioPolicyService::clientReleaseAudioPatch(audio_patch_handle_t handle, |
| 644 | int delayMs) |
| 645 | { |
| 646 | return mAudioCommandThread->releaseAudioPatchCommand(handle, delayMs); |
| 647 | } |
| 648 | |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 649 | status_t AudioPolicyService::clientSetAudioPortConfig(const struct audio_port_config *config, |
| 650 | int delayMs) |
| 651 | { |
| 652 | return mAudioCommandThread->setAudioPortConfigCommand(config, delayMs); |
| 653 | } |
| 654 | |
Ytai Ben-Tsvi | 7e7a79d | 2020-12-15 16:48:16 -0800 | [diff] [blame] | 655 | AudioPolicyService::NotificationClient::NotificationClient( |
| 656 | const sp<AudioPolicyService>& service, |
| 657 | const sp<media::IAudioPolicyServiceClient>& client, |
| 658 | uid_t uid, |
| 659 | pid_t pid) |
luochaojiang | 908c7d7 | 2018-06-21 14:58:04 +0800 | [diff] [blame] | 660 | : mService(service), mUid(uid), mPid(pid), mAudioPolicyServiceClient(client), |
François Gaffie | cfe1732 | 2018-11-07 13:41:29 +0100 | [diff] [blame] | 661 | mAudioPortCallbacksEnabled(false), mAudioVolumeGroupCallbacksEnabled(false) |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 662 | { |
| 663 | } |
| 664 | |
| 665 | AudioPolicyService::NotificationClient::~NotificationClient() |
| 666 | { |
| 667 | } |
| 668 | |
| 669 | void AudioPolicyService::NotificationClient::binderDied(const wp<IBinder>& who __unused) |
| 670 | { |
| 671 | sp<NotificationClient> keep(this); |
| 672 | sp<AudioPolicyService> service = mService.promote(); |
| 673 | if (service != 0) { |
luochaojiang | 908c7d7 | 2018-06-21 14:58:04 +0800 | [diff] [blame] | 674 | service->removeNotificationClient(mUid, mPid); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 675 | } |
| 676 | } |
| 677 | |
| 678 | void AudioPolicyService::NotificationClient::onAudioPortListUpdate() |
| 679 | { |
Eric Laurent | e8726fe | 2015-06-26 09:39:24 -0700 | [diff] [blame] | 680 | if (mAudioPolicyServiceClient != 0 && mAudioPortCallbacksEnabled) { |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 681 | mAudioPolicyServiceClient->onAudioPortListUpdate(); |
| 682 | } |
| 683 | } |
| 684 | |
| 685 | void AudioPolicyService::NotificationClient::onAudioPatchListUpdate() |
| 686 | { |
Eric Laurent | e8726fe | 2015-06-26 09:39:24 -0700 | [diff] [blame] | 687 | if (mAudioPolicyServiceClient != 0 && mAudioPortCallbacksEnabled) { |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 688 | mAudioPolicyServiceClient->onAudioPatchListUpdate(); |
| 689 | } |
| 690 | } |
Eric Laurent | 57dae99 | 2011-07-24 13:36:09 -0700 | [diff] [blame] | 691 | |
Patty | dd80758 | 2021-11-04 21:01:03 +0800 | [diff] [blame] | 692 | void AudioPolicyService::NotificationClient::onAudioVolumeGroupChanged(volume_group_t group, |
François Gaffie | cfe1732 | 2018-11-07 13:41:29 +0100 | [diff] [blame] | 693 | int flags) |
| 694 | { |
| 695 | if (mAudioPolicyServiceClient != 0 && mAudioVolumeGroupCallbacksEnabled) { |
| 696 | mAudioPolicyServiceClient->onAudioVolumeGroupChanged(group, flags); |
| 697 | } |
| 698 | } |
| 699 | |
| 700 | |
Jean-Michel Trivi | de80105 | 2015-04-14 19:10:14 -0700 | [diff] [blame] | 701 | void AudioPolicyService::NotificationClient::onDynamicPolicyMixStateUpdate( |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 702 | const String8& regId, int32_t state) |
Jean-Michel Trivi | de80105 | 2015-04-14 19:10:14 -0700 | [diff] [blame] | 703 | { |
Andy Hung | 4ef19fa | 2018-05-15 19:35:29 -0700 | [diff] [blame] | 704 | if (mAudioPolicyServiceClient != 0 && isServiceUid(mUid)) { |
Ytai Ben-Tsvi | 7e7a79d | 2020-12-15 16:48:16 -0800 | [diff] [blame] | 705 | mAudioPolicyServiceClient->onDynamicPolicyMixStateUpdate( |
| 706 | legacy2aidl_String8_string(regId).value(), state); |
Jean-Michel Trivi | 2f4fe9f | 2015-12-04 16:20:59 -0800 | [diff] [blame] | 707 | } |
| 708 | } |
| 709 | |
| 710 | void AudioPolicyService::NotificationClient::onRecordingConfigurationUpdate( |
Eric Laurent | a9f8665 | 2018-11-28 17:23:11 -0800 | [diff] [blame] | 711 | int event, |
| 712 | const record_client_info_t *clientInfo, |
| 713 | const audio_config_base_t *clientConfig, |
| 714 | std::vector<effect_descriptor_t> clientEffects, |
| 715 | const audio_config_base_t *deviceConfig, |
| 716 | std::vector<effect_descriptor_t> effects, |
| 717 | audio_patch_handle_t patchHandle, |
| 718 | audio_source_t source) |
Jean-Michel Trivi | 2f4fe9f | 2015-12-04 16:20:59 -0800 | [diff] [blame] | 719 | { |
Andy Hung | 4ef19fa | 2018-05-15 19:35:29 -0700 | [diff] [blame] | 720 | if (mAudioPolicyServiceClient != 0 && isServiceUid(mUid)) { |
Ytai Ben-Tsvi | 7e7a79d | 2020-12-15 16:48:16 -0800 | [diff] [blame] | 721 | status_t status = [&]() -> status_t { |
| 722 | int32_t eventAidl = VALUE_OR_RETURN_STATUS(convertIntegral<int32_t>(event)); |
| 723 | media::RecordClientInfo clientInfoAidl = VALUE_OR_RETURN_STATUS( |
| 724 | legacy2aidl_record_client_info_t_RecordClientInfo(*clientInfo)); |
Mikhail Naganov | dbf0364 | 2021-08-25 18:15:32 -0700 | [diff] [blame] | 725 | AudioConfigBase clientConfigAidl = VALUE_OR_RETURN_STATUS( |
Mikhail Naganov | de3fa18 | 2021-07-30 15:06:42 -0700 | [diff] [blame] | 726 | legacy2aidl_audio_config_base_t_AudioConfigBase( |
| 727 | *clientConfig, true /*isInput*/)); |
Ytai Ben-Tsvi | 7e7a79d | 2020-12-15 16:48:16 -0800 | [diff] [blame] | 728 | std::vector<media::EffectDescriptor> clientEffectsAidl = VALUE_OR_RETURN_STATUS( |
| 729 | convertContainer<std::vector<media::EffectDescriptor>>( |
| 730 | clientEffects, |
| 731 | legacy2aidl_effect_descriptor_t_EffectDescriptor)); |
Mikhail Naganov | dbf0364 | 2021-08-25 18:15:32 -0700 | [diff] [blame] | 732 | AudioConfigBase deviceConfigAidl = VALUE_OR_RETURN_STATUS( |
Mikhail Naganov | de3fa18 | 2021-07-30 15:06:42 -0700 | [diff] [blame] | 733 | legacy2aidl_audio_config_base_t_AudioConfigBase( |
| 734 | *deviceConfig, true /*isInput*/)); |
Ytai Ben-Tsvi | 7e7a79d | 2020-12-15 16:48:16 -0800 | [diff] [blame] | 735 | std::vector<media::EffectDescriptor> effectsAidl = VALUE_OR_RETURN_STATUS( |
| 736 | convertContainer<std::vector<media::EffectDescriptor>>( |
| 737 | effects, |
| 738 | legacy2aidl_effect_descriptor_t_EffectDescriptor)); |
| 739 | int32_t patchHandleAidl = VALUE_OR_RETURN_STATUS( |
| 740 | legacy2aidl_audio_patch_handle_t_int32_t(patchHandle)); |
Mikhail Naganov | ddceecc | 2021-09-03 13:58:56 -0700 | [diff] [blame] | 741 | media::audio::common::AudioSource sourceAidl = VALUE_OR_RETURN_STATUS( |
| 742 | legacy2aidl_audio_source_t_AudioSource(source)); |
Ytai Ben-Tsvi | 7e7a79d | 2020-12-15 16:48:16 -0800 | [diff] [blame] | 743 | return aidl_utils::statusTFromBinderStatus( |
| 744 | mAudioPolicyServiceClient->onRecordingConfigurationUpdate(eventAidl, |
| 745 | clientInfoAidl, |
| 746 | clientConfigAidl, |
| 747 | clientEffectsAidl, |
| 748 | deviceConfigAidl, |
| 749 | effectsAidl, |
| 750 | patchHandleAidl, |
| 751 | sourceAidl)); |
| 752 | }(); |
| 753 | ALOGW_IF(status != OK, "onRecordingConfigurationUpdate() failed: %d", status); |
Jean-Michel Trivi | de80105 | 2015-04-14 19:10:14 -0700 | [diff] [blame] | 754 | } |
| 755 | } |
| 756 | |
Eric Laurent | e8726fe | 2015-06-26 09:39:24 -0700 | [diff] [blame] | 757 | void AudioPolicyService::NotificationClient::setAudioPortCallbacksEnabled(bool enabled) |
| 758 | { |
| 759 | mAudioPortCallbacksEnabled = enabled; |
| 760 | } |
| 761 | |
François Gaffie | cfe1732 | 2018-11-07 13:41:29 +0100 | [diff] [blame] | 762 | void AudioPolicyService::NotificationClient::setAudioVolumeGroupCallbacksEnabled(bool enabled) |
| 763 | { |
| 764 | mAudioVolumeGroupCallbacksEnabled = enabled; |
| 765 | } |
Eric Laurent | e8726fe | 2015-06-26 09:39:24 -0700 | [diff] [blame] | 766 | |
Jean-Michel Trivi | 9a6b9ad | 2020-10-22 16:46:43 -0700 | [diff] [blame] | 767 | void AudioPolicyService::NotificationClient::onRoutingUpdated() |
| 768 | { |
| 769 | if (mAudioPolicyServiceClient != 0 && isServiceUid(mUid)) { |
| 770 | mAudioPolicyServiceClient->onRoutingUpdated(); |
| 771 | } |
| 772 | } |
| 773 | |
Jean-Michel Trivi | 78f2b30 | 2022-04-15 18:18:41 +0000 | [diff] [blame] | 774 | void AudioPolicyService::NotificationClient::onVolumeRangeInitRequest() |
| 775 | { |
| 776 | if (mAudioPolicyServiceClient != 0 && isServiceUid(mUid)) { |
| 777 | mAudioPolicyServiceClient->onVolumeRangeInitRequest(); |
| 778 | } |
| 779 | } |
| 780 | |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 781 | void AudioPolicyService::binderDied(const wp<IBinder>& who) { |
Glenn Kasten | 411e447 | 2012-11-02 10:00:06 -0700 | [diff] [blame] | 782 | ALOGW("binderDied() %p, calling pid %d", who.unsafe_get(), |
Eric Laurent | de07013 | 2010-07-13 04:45:46 -0700 | [diff] [blame] | 783 | IPCThreadState::self()->getCallingPid()); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 784 | } |
| 785 | |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 786 | static void dumpReleaseLock(audio_utils::mutex& mutex, bool locked) |
| 787 | RELEASE(mutex) NO_THREAD_SAFETY_ANALYSIS |
Mikhail Naganov | 12b716c | 2020-04-30 22:37:43 +0000 | [diff] [blame] | 788 | { |
| 789 | if (locked) mutex.unlock(); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 790 | } |
| 791 | |
| 792 | status_t AudioPolicyService::dumpInternals(int fd) |
| 793 | { |
| 794 | const size_t SIZE = 256; |
| 795 | char buffer[SIZE]; |
| 796 | String8 result; |
| 797 | |
Mikhail Naganov | b3bcb4f | 2022-02-23 23:46:56 +0000 | [diff] [blame] | 798 | snprintf(buffer, SIZE, "Supported System Usages:\n "); |
Hayden Gomes | 524159d | 2019-12-23 14:41:47 -0800 | [diff] [blame] | 799 | result.append(buffer); |
Mikhail Naganov | b3bcb4f | 2022-02-23 23:46:56 +0000 | [diff] [blame] | 800 | std::stringstream msg; |
| 801 | size_t i = 0; |
| 802 | for (auto usage : mSupportedSystemUsages) { |
| 803 | if (i++ != 0) msg << ", "; |
| 804 | if (const char* strUsage = audio_usage_to_string(usage); strUsage) { |
| 805 | msg << strUsage; |
| 806 | } else { |
| 807 | msg << usage << " (unknown)"; |
| 808 | } |
Hayden Gomes | 524159d | 2019-12-23 14:41:47 -0800 | [diff] [blame] | 809 | } |
Mikhail Naganov | b3bcb4f | 2022-02-23 23:46:56 +0000 | [diff] [blame] | 810 | if (i == 0) { |
| 811 | msg << "None"; |
| 812 | } |
| 813 | msg << std::endl; |
| 814 | result.append(msg.str().c_str()); |
Hayden Gomes | 524159d | 2019-12-23 14:41:47 -0800 | [diff] [blame] | 815 | |
Tomasz Wasilczyk | 833345b | 2023-08-15 20:59:35 +0000 | [diff] [blame] | 816 | write(fd, result.c_str(), result.size()); |
Oscar Azucena | 829d90d | 2022-01-28 17:17:56 -0800 | [diff] [blame] | 817 | |
| 818 | mUidPolicy->dumpInternals(fd); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 819 | return NO_ERROR; |
| 820 | } |
| 821 | |
Eric Laurent | e8c8b43 | 2018-10-17 10:08:02 -0700 | [diff] [blame] | 822 | void AudioPolicyService::updateUidStates() |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 823 | { |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 824 | audio_utils::lock_guard _l(mMutex); |
Eric Laurent | e8c8b43 | 2018-10-17 10:08:02 -0700 | [diff] [blame] | 825 | updateUidStates_l(); |
| 826 | } |
| 827 | |
| 828 | void AudioPolicyService::updateUidStates_l() |
| 829 | { |
Eric Laurent | 4eb58f1 | 2018-12-07 16:41:02 -0800 | [diff] [blame] | 830 | // Go over all active clients and allow capture (does not force silence) in the |
| 831 | // following cases: |
Oscar Azucena | c2cdda3 | 2022-01-31 19:10:39 -0800 | [diff] [blame] | 832 | // The client is in the active assistant list |
| 833 | // AND is TOP |
| 834 | // AND an accessibility service is TOP |
| 835 | // AND source is either VOICE_RECOGNITION OR HOTWORD |
| 836 | // OR there is no active privacy sensitive capture or call |
| 837 | // OR client has CAPTURE_AUDIO_OUTPUT privileged permission |
| 838 | // AND source is VOICE_RECOGNITION OR HOTWORD |
| 839 | // The client is an assistant AND active assistant is not being used |
Evan Severson | 1f700cd | 2021-02-10 13:10:37 -0800 | [diff] [blame] | 840 | // AND an accessibility service is on TOP or a RTT call is active |
Eric Laurent | 589171c | 2019-07-25 18:04:29 -0700 | [diff] [blame] | 841 | // AND the source is VOICE_RECOGNITION or HOTWORD |
Oscar Azucena | c2cdda3 | 2022-01-31 19:10:39 -0800 | [diff] [blame] | 842 | // OR there is no active privacy sensitive capture or call |
Evan Severson | 1f700cd | 2021-02-10 13:10:37 -0800 | [diff] [blame] | 843 | // OR client has CAPTURE_AUDIO_OUTPUT privileged permission |
Oscar Azucena | c2cdda3 | 2022-01-31 19:10:39 -0800 | [diff] [blame] | 844 | // AND is TOP most recent assistant and uses VOICE_RECOGNITION or HOTWORD |
| 845 | // OR there is no top recent assistant and source is HOTWORD |
Evan Severson | 1f700cd | 2021-02-10 13:10:37 -0800 | [diff] [blame] | 846 | // OR The client is an accessibility service |
| 847 | // AND Is on TOP |
| 848 | // AND the source is VOICE_RECOGNITION or HOTWORD |
| 849 | // OR The assistant is not on TOP |
Eric Laurent | 589171c | 2019-07-25 18:04:29 -0700 | [diff] [blame] | 850 | // AND there is no active privacy sensitive capture or call |
| 851 | // OR client has CAPTURE_AUDIO_OUTPUT privileged permission |
Evan Severson | 1f700cd | 2021-02-10 13:10:37 -0800 | [diff] [blame] | 852 | // AND is on TOP |
| 853 | // AND the source is VOICE_RECOGNITION or HOTWORD |
| 854 | // OR the client source is virtual (remote submix, call audio TX or RX...) |
| 855 | // OR the client source is HOTWORD |
| 856 | // AND is on TOP |
| 857 | // OR all active clients are using HOTWORD source |
| 858 | // AND no call is active |
| 859 | // OR client has CAPTURE_AUDIO_OUTPUT privileged permission |
| 860 | // OR the client is the current InputMethodService |
| 861 | // AND a RTT call is active AND the source is VOICE_RECOGNITION |
| 862 | // OR Any client |
| 863 | // AND The assistant is not on TOP |
| 864 | // AND is on TOP or latest started |
| 865 | // AND there is no active privacy sensitive capture or call |
| 866 | // OR client has CAPTURE_AUDIO_OUTPUT privileged permission |
Eric Laurent | 4eb58f1 | 2018-12-07 16:41:02 -0800 | [diff] [blame] | 867 | |
Eric Laurent | 4e947da | 2019-10-17 15:24:06 -0700 | [diff] [blame] | 868 | |
Eric Laurent | 4eb58f1 | 2018-12-07 16:41:02 -0800 | [diff] [blame] | 869 | sp<AudioRecordClient> topActive; |
| 870 | sp<AudioRecordClient> latestActive; |
Eric Laurent | c21d569 | 2020-02-25 10:24:36 -0800 | [diff] [blame] | 871 | sp<AudioRecordClient> topSensitiveActive; |
Eric Laurent | b809a75 | 2020-06-29 09:53:13 -0700 | [diff] [blame] | 872 | sp<AudioRecordClient> latestSensitiveActiveOrComm; |
Oscar Azucena | c2cdda3 | 2022-01-31 19:10:39 -0800 | [diff] [blame] | 873 | sp<AudioRecordClient> latestActiveAssistant; |
Eric Laurent | 1ff16a7 | 2019-03-14 18:35:04 -0700 | [diff] [blame] | 874 | |
Eric Laurent | a46bedb | 2018-12-07 18:01:26 -0800 | [diff] [blame] | 875 | nsecs_t topStartNs = 0; |
| 876 | nsecs_t latestStartNs = 0; |
Eric Laurent | c21d569 | 2020-02-25 10:24:36 -0800 | [diff] [blame] | 877 | nsecs_t topSensitiveStartNs = 0; |
Eric Laurent | 4eb58f1 | 2018-12-07 16:41:02 -0800 | [diff] [blame] | 878 | nsecs_t latestSensitiveStartNs = 0; |
Oscar Azucena | c2cdda3 | 2022-01-31 19:10:39 -0800 | [diff] [blame] | 879 | nsecs_t latestAssistantStartNs = 0; |
Eric Laurent | 4eb58f1 | 2018-12-07 16:41:02 -0800 | [diff] [blame] | 880 | bool isA11yOnTop = mUidPolicy->isA11yOnTop(); |
| 881 | bool isAssistantOnTop = false; |
Oscar Azucena | c2cdda3 | 2022-01-31 19:10:39 -0800 | [diff] [blame] | 882 | bool useActiveAssistantList = false; |
Eric Laurent | 4eb58f1 | 2018-12-07 16:41:02 -0800 | [diff] [blame] | 883 | bool isSensitiveActive = false; |
Eric Laurent | 1ff16a7 | 2019-03-14 18:35:04 -0700 | [diff] [blame] | 884 | bool isInCall = mPhoneState == AUDIO_MODE_IN_CALL; |
Eric Laurent | c21d569 | 2020-02-25 10:24:36 -0800 | [diff] [blame] | 885 | bool isInCommunication = mPhoneState == AUDIO_MODE_IN_COMMUNICATION; |
| 886 | bool rttCallActive = (isInCall || isInCommunication) |
Eric Laurent | 6ede98f | 2019-06-11 14:50:30 -0700 | [diff] [blame] | 887 | && mUidPolicy->isRttEnabled(); |
Eric Laurent | 4e947da | 2019-10-17 15:24:06 -0700 | [diff] [blame] | 888 | bool onlyHotwordActive = true; |
Eric Laurent | b809a75 | 2020-06-29 09:53:13 -0700 | [diff] [blame] | 889 | bool isPhoneStateOwnerActive = false; |
Eric Laurent | 4eb58f1 | 2018-12-07 16:41:02 -0800 | [diff] [blame] | 890 | |
Michael Groover | cfd2830 | 2018-12-11 19:16:46 -0800 | [diff] [blame] | 891 | // if Sensor Privacy is enabled then all recordings should be silenced. |
| 892 | if (mSensorPrivacyPolicy->isSensorPrivacyEnabled()) { |
| 893 | silenceAllRecordings_l(); |
| 894 | return; |
| 895 | } |
| 896 | |
Eric Laurent | e8c8b43 | 2018-10-17 10:08:02 -0700 | [diff] [blame] | 897 | for (size_t i =0; i < mAudioRecordClients.size(); i++) { |
| 898 | sp<AudioRecordClient> current = mAudioRecordClients[i]; |
Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 899 | uid_t currentUid = VALUE_OR_FATAL(aidl2legacy_int32_t_uid_t( |
| 900 | current->attributionSource.uid)); |
Evan Severson | 1f700cd | 2021-02-10 13:10:37 -0800 | [diff] [blame] | 901 | if (!current->active) { |
Eric Laurent | 1ff16a7 | 2019-03-14 18:35:04 -0700 | [diff] [blame] | 902 | continue; |
Eric Laurent | 4eb58f1 | 2018-12-07 16:41:02 -0800 | [diff] [blame] | 903 | } |
Eric Laurent | 1ff16a7 | 2019-03-14 18:35:04 -0700 | [diff] [blame] | 904 | |
Philip P. Moltmann | bda4575 | 2020-07-17 16:41:18 -0700 | [diff] [blame] | 905 | app_state_t appState = apmStatFromAmState(mUidPolicy->getUidState(currentUid)); |
Eric Laurent | 1ff16a7 | 2019-03-14 18:35:04 -0700 | [diff] [blame] | 906 | // clients which app is in IDLE state are not eligible for top active or |
| 907 | // latest active |
| 908 | if (appState == APP_STATE_IDLE) { |
| 909 | continue; |
| 910 | } |
| 911 | |
Philip P. Moltmann | bda4575 | 2020-07-17 16:41:18 -0700 | [diff] [blame] | 912 | bool isAccessibility = mUidPolicy->isA11yUid(currentUid); |
Eric Laurent | 14a8863 | 2020-07-16 12:28:30 -0700 | [diff] [blame] | 913 | // Clients capturing for Accessibility services or virtual sources are not considered |
Eric Laurent | c21d569 | 2020-02-25 10:24:36 -0800 | [diff] [blame] | 914 | // for top or latest active to avoid masking regular clients started before |
Eric Laurent | 14a8863 | 2020-07-16 12:28:30 -0700 | [diff] [blame] | 915 | if (!isAccessibility && !isVirtualSource(current->attributes.source)) { |
Philip P. Moltmann | bda4575 | 2020-07-17 16:41:18 -0700 | [diff] [blame] | 916 | bool isAssistant = mUidPolicy->isAssistantUid(currentUid); |
Oscar Azucena | c2cdda3 | 2022-01-31 19:10:39 -0800 | [diff] [blame] | 917 | bool isActiveAssistant = mUidPolicy->isActiveAssistantUid(currentUid); |
Eric Laurent | c21d569 | 2020-02-25 10:24:36 -0800 | [diff] [blame] | 918 | bool isPrivacySensitive = |
| 919 | (current->attributes.flags & AUDIO_FLAG_CAPTURE_PRIVATE) != 0; |
Eric Laurent | b809a75 | 2020-06-29 09:53:13 -0700 | [diff] [blame] | 920 | |
Eric Laurent | c21d569 | 2020-02-25 10:24:36 -0800 | [diff] [blame] | 921 | if (appState == APP_STATE_TOP) { |
| 922 | if (isPrivacySensitive) { |
| 923 | if (current->startTimeNs > topSensitiveStartNs) { |
| 924 | topSensitiveActive = current; |
| 925 | topSensitiveStartNs = current->startTimeNs; |
| 926 | } |
| 927 | } else { |
| 928 | if (current->startTimeNs > topStartNs) { |
| 929 | topActive = current; |
| 930 | topStartNs = current->startTimeNs; |
| 931 | } |
| 932 | } |
| 933 | if (isAssistant) { |
| 934 | isAssistantOnTop = true; |
Oscar Azucena | c2cdda3 | 2022-01-31 19:10:39 -0800 | [diff] [blame] | 935 | if (isActiveAssistant) { |
| 936 | useActiveAssistantList = true; |
| 937 | } else if (!useActiveAssistantList) { |
| 938 | if (current->startTimeNs > latestAssistantStartNs) { |
| 939 | latestActiveAssistant = current; |
| 940 | latestAssistantStartNs = current->startTimeNs; |
| 941 | } |
| 942 | } |
Eric Laurent | c21d569 | 2020-02-25 10:24:36 -0800 | [diff] [blame] | 943 | } |
Eric Laurent | a46bedb | 2018-12-07 18:01:26 -0800 | [diff] [blame] | 944 | } |
Eric Laurent | c21d569 | 2020-02-25 10:24:36 -0800 | [diff] [blame] | 945 | // Clients capturing for HOTWORD are not considered |
| 946 | // for latest active to avoid masking regular clients started before |
| 947 | if (!(current->attributes.source == AUDIO_SOURCE_HOTWORD |
| 948 | || ((isA11yOnTop || rttCallActive) && isAssistant))) { |
| 949 | if (isPrivacySensitive) { |
Eric Laurent | b809a75 | 2020-06-29 09:53:13 -0700 | [diff] [blame] | 950 | // if audio mode is IN_COMMUNICATION, make sure the audio mode owner |
| 951 | // is marked latest sensitive active even if another app qualifies. |
| 952 | if (current->startTimeNs > latestSensitiveStartNs |
Philip P. Moltmann | bda4575 | 2020-07-17 16:41:18 -0700 | [diff] [blame] | 953 | || (isInCommunication && currentUid == mPhoneStateOwnerUid)) { |
Eric Laurent | b809a75 | 2020-06-29 09:53:13 -0700 | [diff] [blame] | 954 | if (!isInCommunication || latestSensitiveActiveOrComm == nullptr |
Philip P. Moltmann | bda4575 | 2020-07-17 16:41:18 -0700 | [diff] [blame] | 955 | || VALUE_OR_FATAL(aidl2legacy_int32_t_uid_t( |
Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 956 | latestSensitiveActiveOrComm->attributionSource.uid)) |
Philip P. Moltmann | bda4575 | 2020-07-17 16:41:18 -0700 | [diff] [blame] | 957 | != mPhoneStateOwnerUid) { |
Eric Laurent | b809a75 | 2020-06-29 09:53:13 -0700 | [diff] [blame] | 958 | latestSensitiveActiveOrComm = current; |
| 959 | latestSensitiveStartNs = current->startTimeNs; |
| 960 | } |
Eric Laurent | c21d569 | 2020-02-25 10:24:36 -0800 | [diff] [blame] | 961 | } |
| 962 | isSensitiveActive = true; |
| 963 | } else { |
| 964 | if (current->startTimeNs > latestStartNs) { |
| 965 | latestActive = current; |
| 966 | latestStartNs = current->startTimeNs; |
| 967 | } |
| 968 | } |
Eric Laurent | 4eb58f1 | 2018-12-07 16:41:02 -0800 | [diff] [blame] | 969 | } |
| 970 | } |
François Gaffie | db1a441 | 2023-10-10 17:32:33 +0000 | [diff] [blame] | 971 | if (current->attributes.source != AUDIO_SOURCE_HOTWORD && |
| 972 | !isVirtualSource(current->attributes.source)) { |
Eric Laurent | 4e947da | 2019-10-17 15:24:06 -0700 | [diff] [blame] | 973 | onlyHotwordActive = false; |
| 974 | } |
Eric Laurent | b0eff0f | 2021-11-09 16:05:49 +0100 | [diff] [blame] | 975 | if (currentUid == mPhoneStateOwnerUid && |
| 976 | !isVirtualSource(current->attributes.source)) { |
Eric Laurent | b809a75 | 2020-06-29 09:53:13 -0700 | [diff] [blame] | 977 | isPhoneStateOwnerActive = true; |
| 978 | } |
Eric Laurent | 4eb58f1 | 2018-12-07 16:41:02 -0800 | [diff] [blame] | 979 | } |
| 980 | |
Eric Laurent | 1ff16a7 | 2019-03-14 18:35:04 -0700 | [diff] [blame] | 981 | // if no active client with UI on Top, consider latest active as top |
| 982 | if (topActive == nullptr) { |
| 983 | topActive = latestActive; |
Eric Laurent | c21d569 | 2020-02-25 10:24:36 -0800 | [diff] [blame] | 984 | topStartNs = latestStartNs; |
| 985 | } |
| 986 | if (topSensitiveActive == nullptr) { |
Eric Laurent | b809a75 | 2020-06-29 09:53:13 -0700 | [diff] [blame] | 987 | topSensitiveActive = latestSensitiveActiveOrComm; |
Eric Laurent | c21d569 | 2020-02-25 10:24:36 -0800 | [diff] [blame] | 988 | topSensitiveStartNs = latestSensitiveStartNs; |
Eric Laurent | b809a75 | 2020-06-29 09:53:13 -0700 | [diff] [blame] | 989 | } else if (latestSensitiveActiveOrComm != nullptr) { |
| 990 | // if audio mode is IN_COMMUNICATION, favor audio mode owner over an app with |
| 991 | // foreground UI in case both are capturing with privacy sensitive flag. |
Philip P. Moltmann | bda4575 | 2020-07-17 16:41:18 -0700 | [diff] [blame] | 992 | uid_t latestActiveUid = VALUE_OR_FATAL( |
Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 993 | aidl2legacy_int32_t_uid_t(latestSensitiveActiveOrComm->attributionSource.uid)); |
Philip P. Moltmann | bda4575 | 2020-07-17 16:41:18 -0700 | [diff] [blame] | 994 | if (isInCommunication && latestActiveUid == mPhoneStateOwnerUid) { |
Eric Laurent | b809a75 | 2020-06-29 09:53:13 -0700 | [diff] [blame] | 995 | topSensitiveActive = latestSensitiveActiveOrComm; |
| 996 | topSensitiveStartNs = latestSensitiveStartNs; |
| 997 | } |
Eric Laurent | c21d569 | 2020-02-25 10:24:36 -0800 | [diff] [blame] | 998 | } |
| 999 | |
| 1000 | // If both privacy sensitive and regular capture are active: |
| 1001 | // if the regular capture is privileged |
| 1002 | // allow concurrency |
| 1003 | // else |
| 1004 | // favor the privacy sensitive case |
| 1005 | if (topActive != nullptr && topSensitiveActive != nullptr |
Ricardo Correa | 57a3769 | 2020-03-23 17:27:25 -0700 | [diff] [blame] | 1006 | && !topActive->canCaptureOutput) { |
Eric Laurent | c21d569 | 2020-02-25 10:24:36 -0800 | [diff] [blame] | 1007 | topActive = nullptr; |
Eric Laurent | 4eb58f1 | 2018-12-07 16:41:02 -0800 | [diff] [blame] | 1008 | } |
| 1009 | |
| 1010 | for (size_t i =0; i < mAudioRecordClients.size(); i++) { |
| 1011 | sp<AudioRecordClient> current = mAudioRecordClients[i]; |
Philip P. Moltmann | bda4575 | 2020-07-17 16:41:18 -0700 | [diff] [blame] | 1012 | uid_t currentUid = VALUE_OR_FATAL(aidl2legacy_int32_t_uid_t( |
Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 1013 | current->attributionSource.uid)); |
Eric Laurent | 1ff16a7 | 2019-03-14 18:35:04 -0700 | [diff] [blame] | 1014 | if (!current->active) { |
| 1015 | continue; |
| 1016 | } |
| 1017 | |
Eric Laurent | 4eb58f1 | 2018-12-07 16:41:02 -0800 | [diff] [blame] | 1018 | audio_source_t source = current->attributes.source; |
Philip P. Moltmann | bda4575 | 2020-07-17 16:41:18 -0700 | [diff] [blame] | 1019 | bool isTopOrLatestActive = topActive == nullptr ? false : |
Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 1020 | current->attributionSource.uid == topActive->attributionSource.uid; |
Philip P. Moltmann | bda4575 | 2020-07-17 16:41:18 -0700 | [diff] [blame] | 1021 | bool isTopOrLatestSensitive = topSensitiveActive == nullptr ? false : |
Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 1022 | current->attributionSource.uid == topSensitiveActive->attributionSource.uid; |
Oscar Azucena | c2cdda3 | 2022-01-31 19:10:39 -0800 | [diff] [blame] | 1023 | bool isTopOrLatestAssistant = latestActiveAssistant == nullptr ? false : |
| 1024 | current->attributionSource.uid == latestActiveAssistant->attributionSource.uid; |
Eric Laurent | c21d569 | 2020-02-25 10:24:36 -0800 | [diff] [blame] | 1025 | |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 1026 | auto canCaptureIfInCallOrCommunication = [&](const auto &recordClient) REQUIRES(mMutex) { |
Philip P. Moltmann | bda4575 | 2020-07-17 16:41:18 -0700 | [diff] [blame] | 1027 | uid_t recordUid = VALUE_OR_FATAL(aidl2legacy_int32_t_uid_t( |
Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 1028 | recordClient->attributionSource.uid)); |
Ricardo Correa | 57a3769 | 2020-03-23 17:27:25 -0700 | [diff] [blame] | 1029 | bool canCaptureCall = recordClient->canCaptureOutput; |
Eric Laurent | b809a75 | 2020-06-29 09:53:13 -0700 | [diff] [blame] | 1030 | bool canCaptureCommunication = recordClient->canCaptureOutput |
| 1031 | || !isPhoneStateOwnerActive |
Philip P. Moltmann | bda4575 | 2020-07-17 16:41:18 -0700 | [diff] [blame] | 1032 | || recordUid == mPhoneStateOwnerUid; |
Eric Laurent | b809a75 | 2020-06-29 09:53:13 -0700 | [diff] [blame] | 1033 | return !(isInCall && !canCaptureCall) |
| 1034 | && !(isInCommunication && !canCaptureCommunication); |
Eric Laurent | c21d569 | 2020-02-25 10:24:36 -0800 | [diff] [blame] | 1035 | }; |
Eric Laurent | 1ff16a7 | 2019-03-14 18:35:04 -0700 | [diff] [blame] | 1036 | |
| 1037 | // By default allow capture if: |
| 1038 | // The assistant is not on TOP |
Eric Laurent | a171e35 | 2019-05-07 13:04:45 -0700 | [diff] [blame] | 1039 | // AND is on TOP or latest started |
Eric Laurent | 1ff16a7 | 2019-03-14 18:35:04 -0700 | [diff] [blame] | 1040 | // AND there is no active privacy sensitive capture or call |
| 1041 | // OR client has CAPTURE_AUDIO_OUTPUT privileged permission |
Eric Laurent | 4ab1841 | 2022-11-07 16:25:32 +0100 | [diff] [blame] | 1042 | bool allowSensitiveCapture = |
| 1043 | !isSensitiveActive || isTopOrLatestSensitive || current->canCaptureOutput; |
Eric Laurent | 1ff16a7 | 2019-03-14 18:35:04 -0700 | [diff] [blame] | 1044 | bool allowCapture = !isAssistantOnTop |
Eric Laurent | c21d569 | 2020-02-25 10:24:36 -0800 | [diff] [blame] | 1045 | && (isTopOrLatestActive || isTopOrLatestSensitive) |
Eric Laurent | 4ab1841 | 2022-11-07 16:25:32 +0100 | [diff] [blame] | 1046 | && allowSensitiveCapture |
Eric Laurent | c21d569 | 2020-02-25 10:24:36 -0800 | [diff] [blame] | 1047 | && canCaptureIfInCallOrCommunication(current); |
Eric Laurent | 2dc962b | 2019-03-01 08:25:25 -0800 | [diff] [blame] | 1048 | |
Eric Laurent | ed726cc | 2021-07-01 14:26:41 +0200 | [diff] [blame] | 1049 | if (!current->hasOp()) { |
| 1050 | // Never allow capture if app op is denied |
| 1051 | allowCapture = false; |
| 1052 | } else if (isVirtualSource(source)) { |
Eric Laurent | 1ff16a7 | 2019-03-14 18:35:04 -0700 | [diff] [blame] | 1053 | // Allow capture for virtual (remote submix, call audio TX or RX...) sources |
| 1054 | allowCapture = true; |
Oscar Azucena | c2cdda3 | 2022-01-31 19:10:39 -0800 | [diff] [blame] | 1055 | } else if (!useActiveAssistantList && mUidPolicy->isAssistantUid(currentUid)) { |
Eric Laurent | 1ff16a7 | 2019-03-14 18:35:04 -0700 | [diff] [blame] | 1056 | // For assistant allow capture if: |
Oscar Azucena | c2cdda3 | 2022-01-31 19:10:39 -0800 | [diff] [blame] | 1057 | // Active assistant list is not being used |
| 1058 | // AND accessibility service is on TOP or a RTT call is active |
Eric Laurent | 1ff16a7 | 2019-03-14 18:35:04 -0700 | [diff] [blame] | 1059 | // AND the source is VOICE_RECOGNITION or HOTWORD |
Oscar Azucena | c2cdda3 | 2022-01-31 19:10:39 -0800 | [diff] [blame] | 1060 | // OR there is no active privacy sensitive capture or call |
| 1061 | // OR client has CAPTURE_AUDIO_OUTPUT privileged permission |
| 1062 | // AND is latest TOP assistant AND |
| 1063 | // uses VOICE_RECOGNITION OR uses HOTWORD |
| 1064 | // OR there is no TOP assistant and uses HOTWORD |
Eric Laurent | 6ede98f | 2019-06-11 14:50:30 -0700 | [diff] [blame] | 1065 | if (isA11yOnTop || rttCallActive) { |
Eric Laurent | 4eb58f1 | 2018-12-07 16:41:02 -0800 | [diff] [blame] | 1066 | if (source == AUDIO_SOURCE_HOTWORD || source == AUDIO_SOURCE_VOICE_RECOGNITION) { |
Eric Laurent | 1ff16a7 | 2019-03-14 18:35:04 -0700 | [diff] [blame] | 1067 | allowCapture = true; |
Eric Laurent | 4eb58f1 | 2018-12-07 16:41:02 -0800 | [diff] [blame] | 1068 | } |
Eric Laurent | 4ab1841 | 2022-11-07 16:25:32 +0100 | [diff] [blame] | 1069 | } else if (allowSensitiveCapture |
Oscar Azucena | c2cdda3 | 2022-01-31 19:10:39 -0800 | [diff] [blame] | 1070 | && canCaptureIfInCallOrCommunication(current)) { |
| 1071 | if (isTopOrLatestAssistant |
| 1072 | && (source == AUDIO_SOURCE_VOICE_RECOGNITION |
| 1073 | || source == AUDIO_SOURCE_HOTWORD)) { |
| 1074 | allowCapture = true; |
| 1075 | } else if (!isAssistantOnTop && (source == AUDIO_SOURCE_HOTWORD)) { |
| 1076 | allowCapture = true; |
| 1077 | } |
| 1078 | } |
| 1079 | } else if (useActiveAssistantList && mUidPolicy->isActiveAssistantUid(currentUid)) { |
| 1080 | // For assistant on active list and on top allow capture if: |
| 1081 | // An accessibility service is on TOP |
| 1082 | // AND the source is VOICE_RECOGNITION or HOTWORD |
| 1083 | // OR there is no active privacy sensitive capture or call |
| 1084 | // OR client has CAPTURE_AUDIO_OUTPUT privileged permission |
| 1085 | // AND uses VOICE_RECOGNITION OR uses HOTWORD |
| 1086 | if (isA11yOnTop) { |
| 1087 | if (source == AUDIO_SOURCE_HOTWORD || source == AUDIO_SOURCE_VOICE_RECOGNITION) { |
| 1088 | allowCapture = true; |
| 1089 | } |
Eric Laurent | 4ab1841 | 2022-11-07 16:25:32 +0100 | [diff] [blame] | 1090 | } else if (allowSensitiveCapture |
Eric Laurent | c21d569 | 2020-02-25 10:24:36 -0800 | [diff] [blame] | 1091 | && canCaptureIfInCallOrCommunication(current)) { |
Oscar Azucena | c2cdda3 | 2022-01-31 19:10:39 -0800 | [diff] [blame] | 1092 | if ((source == AUDIO_SOURCE_VOICE_RECOGNITION) || (source == AUDIO_SOURCE_HOTWORD)) |
| 1093 | { |
Eric Laurent | 1ff16a7 | 2019-03-14 18:35:04 -0700 | [diff] [blame] | 1094 | allowCapture = true; |
Eric Laurent | 4eb58f1 | 2018-12-07 16:41:02 -0800 | [diff] [blame] | 1095 | } |
| 1096 | } |
Philip P. Moltmann | bda4575 | 2020-07-17 16:41:18 -0700 | [diff] [blame] | 1097 | } else if (mUidPolicy->isA11yUid(currentUid)) { |
Eric Laurent | 1ff16a7 | 2019-03-14 18:35:04 -0700 | [diff] [blame] | 1098 | // For accessibility service allow capture if: |
Eric Laurent | 47670c9 | 2019-08-28 16:59:05 -0700 | [diff] [blame] | 1099 | // The assistant is not on TOP |
| 1100 | // AND there is no active privacy sensitive capture or call |
Eric Laurent | 589171c | 2019-07-25 18:04:29 -0700 | [diff] [blame] | 1101 | // OR client has CAPTURE_AUDIO_OUTPUT privileged permission |
Eric Laurent | 47670c9 | 2019-08-28 16:59:05 -0700 | [diff] [blame] | 1102 | // OR |
| 1103 | // Is on TOP AND the source is VOICE_RECOGNITION or HOTWORD |
| 1104 | if (!isAssistantOnTop |
Eric Laurent | 4ab1841 | 2022-11-07 16:25:32 +0100 | [diff] [blame] | 1105 | && allowSensitiveCapture |
Eric Laurent | c21d569 | 2020-02-25 10:24:36 -0800 | [diff] [blame] | 1106 | && canCaptureIfInCallOrCommunication(current)) { |
Eric Laurent | 47670c9 | 2019-08-28 16:59:05 -0700 | [diff] [blame] | 1107 | allowCapture = true; |
| 1108 | } |
Eric Laurent | 589171c | 2019-07-25 18:04:29 -0700 | [diff] [blame] | 1109 | if (isA11yOnTop) { |
| 1110 | if (source == AUDIO_SOURCE_VOICE_RECOGNITION || source == AUDIO_SOURCE_HOTWORD) { |
| 1111 | allowCapture = true; |
| 1112 | } |
Eric Laurent | 4eb58f1 | 2018-12-07 16:41:02 -0800 | [diff] [blame] | 1113 | } |
Eric Laurent | 4e947da | 2019-10-17 15:24:06 -0700 | [diff] [blame] | 1114 | } else if (source == AUDIO_SOURCE_HOTWORD) { |
| 1115 | // For HOTWORD source allow capture when not on TOP if: |
| 1116 | // All active clients are using HOTWORD source |
| 1117 | // AND no call is active |
| 1118 | // OR client has CAPTURE_AUDIO_OUTPUT privileged permission |
Eric Laurent | c21d569 | 2020-02-25 10:24:36 -0800 | [diff] [blame] | 1119 | if (onlyHotwordActive |
| 1120 | && canCaptureIfInCallOrCommunication(current)) { |
Eric Laurent | 4e947da | 2019-10-17 15:24:06 -0700 | [diff] [blame] | 1121 | allowCapture = true; |
| 1122 | } |
Philip P. Moltmann | bda4575 | 2020-07-17 16:41:18 -0700 | [diff] [blame] | 1123 | } else if (mUidPolicy->isCurrentImeUid(currentUid)) { |
Kohsuke Yatoh | a623a13 | 2020-03-24 20:10:26 -0700 | [diff] [blame] | 1124 | // For current InputMethodService allow capture if: |
| 1125 | // A RTT call is active AND the source is VOICE_RECOGNITION |
| 1126 | if (rttCallActive && source == AUDIO_SOURCE_VOICE_RECOGNITION) { |
| 1127 | allowCapture = true; |
| 1128 | } |
Eric Laurent | 4eb58f1 | 2018-12-07 16:41:02 -0800 | [diff] [blame] | 1129 | } |
Eric Laurent | 8c7ef89 | 2021-06-10 13:32:16 +0200 | [diff] [blame] | 1130 | setAppState_l(current, |
Philip P. Moltmann | bda4575 | 2020-07-17 16:41:18 -0700 | [diff] [blame] | 1131 | allowCapture ? apmStatFromAmState(mUidPolicy->getUidState(currentUid)) : |
Eric Laurent | 1ff16a7 | 2019-03-14 18:35:04 -0700 | [diff] [blame] | 1132 | APP_STATE_IDLE); |
Eric Laurent | e8c8b43 | 2018-10-17 10:08:02 -0700 | [diff] [blame] | 1133 | } |
| 1134 | } |
| 1135 | |
Michael Groover | cfd2830 | 2018-12-11 19:16:46 -0800 | [diff] [blame] | 1136 | void AudioPolicyService::silenceAllRecordings_l() { |
| 1137 | for (size_t i = 0; i < mAudioRecordClients.size(); i++) { |
| 1138 | sp<AudioRecordClient> current = mAudioRecordClients[i]; |
Eric Laurent | 1ff16a7 | 2019-03-14 18:35:04 -0700 | [diff] [blame] | 1139 | if (!isVirtualSource(current->attributes.source)) { |
Eric Laurent | 8c7ef89 | 2021-06-10 13:32:16 +0200 | [diff] [blame] | 1140 | setAppState_l(current, APP_STATE_IDLE); |
Eric Laurent | 1ff16a7 | 2019-03-14 18:35:04 -0700 | [diff] [blame] | 1141 | } |
Michael Groover | cfd2830 | 2018-12-11 19:16:46 -0800 | [diff] [blame] | 1142 | } |
| 1143 | } |
| 1144 | |
Eric Laurent | e8c8b43 | 2018-10-17 10:08:02 -0700 | [diff] [blame] | 1145 | /* static */ |
| 1146 | app_state_t AudioPolicyService::apmStatFromAmState(int amState) { |
Eric Laurent | 1ff16a7 | 2019-03-14 18:35:04 -0700 | [diff] [blame] | 1147 | |
| 1148 | if (amState == ActivityManager::PROCESS_STATE_UNKNOWN) { |
Eric Laurent | e8c8b43 | 2018-10-17 10:08:02 -0700 | [diff] [blame] | 1149 | return APP_STATE_IDLE; |
Eric Laurent | 1ff16a7 | 2019-03-14 18:35:04 -0700 | [diff] [blame] | 1150 | } else if (amState <= ActivityManager::PROCESS_STATE_TOP) { |
| 1151 | // include persistent services |
| 1152 | return APP_STATE_TOP; |
Eric Laurent | e8c8b43 | 2018-10-17 10:08:02 -0700 | [diff] [blame] | 1153 | } |
| 1154 | return APP_STATE_FOREGROUND; |
| 1155 | } |
| 1156 | |
Eric Laurent | 4eb58f1 | 2018-12-07 16:41:02 -0800 | [diff] [blame] | 1157 | /* static */ |
Eric Laurent | 2dc962b | 2019-03-01 08:25:25 -0800 | [diff] [blame] | 1158 | bool AudioPolicyService::isVirtualSource(audio_source_t source) |
Eric Laurent | 4eb58f1 | 2018-12-07 16:41:02 -0800 | [diff] [blame] | 1159 | { |
| 1160 | switch (source) { |
| 1161 | case AUDIO_SOURCE_VOICE_UPLINK: |
| 1162 | case AUDIO_SOURCE_VOICE_DOWNLINK: |
| 1163 | case AUDIO_SOURCE_VOICE_CALL: |
Eric Laurent | 2dc962b | 2019-03-01 08:25:25 -0800 | [diff] [blame] | 1164 | case AUDIO_SOURCE_REMOTE_SUBMIX: |
| 1165 | case AUDIO_SOURCE_FM_TUNER: |
Eric Laurent | 68eb212 | 2020-04-30 17:40:57 -0700 | [diff] [blame] | 1166 | case AUDIO_SOURCE_ECHO_REFERENCE: |
Eric Laurent | 4eb58f1 | 2018-12-07 16:41:02 -0800 | [diff] [blame] | 1167 | return true; |
| 1168 | default: |
| 1169 | break; |
| 1170 | } |
| 1171 | return false; |
| 1172 | } |
| 1173 | |
Eric Laurent | 8c7ef89 | 2021-06-10 13:32:16 +0200 | [diff] [blame] | 1174 | void AudioPolicyService::setAppState_l(sp<AudioRecordClient> client, app_state_t state) |
Eric Laurent | e8c8b43 | 2018-10-17 10:08:02 -0700 | [diff] [blame] | 1175 | { |
| 1176 | AutoCallerClear acc; |
| 1177 | |
| 1178 | if (mAudioPolicyManager) { |
Eric Laurent | 8c7ef89 | 2021-06-10 13:32:16 +0200 | [diff] [blame] | 1179 | mAudioPolicyManager->setAppState(client->portId, state); |
Mikhail Naganov | eae73eb | 2018-04-03 16:57:36 -0700 | [diff] [blame] | 1180 | } |
| 1181 | sp<IAudioFlinger> af = AudioSystem::get_audio_flinger(); |
| 1182 | if (af) { |
Eric Laurent | f32108e | 2018-10-04 17:22:04 -0700 | [diff] [blame] | 1183 | bool silenced = state == APP_STATE_IDLE; |
Eric Laurent | 8c7ef89 | 2021-06-10 13:32:16 +0200 | [diff] [blame] | 1184 | if (client->silenced != silenced) { |
| 1185 | if (client->active) { |
| 1186 | if (silenced) { |
| 1187 | finishRecording(client->attributionSource, client->attributes.source); |
| 1188 | } else { |
| 1189 | std::stringstream msg; |
| 1190 | msg << "Audio recording un-silenced on session " << client->session; |
| 1191 | if (!startRecording(client->attributionSource, String16(msg.str().c_str()), |
| 1192 | client->attributes.source)) { |
| 1193 | silenced = true; |
| 1194 | } |
| 1195 | } |
| 1196 | } |
| 1197 | af->setRecordSilenced(client->portId, silenced); |
| 1198 | client->silenced = silenced; |
| 1199 | } |
Mikhail Naganov | eae73eb | 2018-04-03 16:57:36 -0700 | [diff] [blame] | 1200 | } |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1201 | } |
| 1202 | |
Glenn Kasten | 0f11b51 | 2014-01-31 16:18:54 -0800 | [diff] [blame] | 1203 | status_t AudioPolicyService::dump(int fd, const Vector<String16>& args __unused) |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 1204 | NO_THREAD_SAFETY_ANALYSIS // update for trylock. |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 1205 | { |
Glenn Kasten | 44deb05 | 2012-02-05 18:09:08 -0800 | [diff] [blame] | 1206 | if (!dumpAllowed()) { |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 1207 | dumpPermissionDenial(fd); |
| 1208 | } else { |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 1209 | const bool locked = mMutex.try_lock(kDumpLockTimeoutNs); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 1210 | if (!locked) { |
| 1211 | String8 result(kDeadlockedString); |
Tomasz Wasilczyk | 833345b | 2023-08-15 20:59:35 +0000 | [diff] [blame] | 1212 | write(fd, result.c_str(), result.size()); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 1213 | } |
| 1214 | |
| 1215 | dumpInternals(fd); |
Mikhail Naganov | 1b22e54 | 2022-02-25 04:24:49 +0000 | [diff] [blame] | 1216 | |
| 1217 | String8 actPtr = String8::format("AudioCommandThread: %p\n", mAudioCommandThread.get()); |
Tomasz Wasilczyk | 833345b | 2023-08-15 20:59:35 +0000 | [diff] [blame] | 1218 | write(fd, actPtr.c_str(), actPtr.size()); |
Glenn Kasten | 9d1f02d | 2012-02-08 17:47:58 -0800 | [diff] [blame] | 1219 | if (mAudioCommandThread != 0) { |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 1220 | mAudioCommandThread->dump(fd); |
| 1221 | } |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 1222 | |
Mikhail Naganov | 1b22e54 | 2022-02-25 04:24:49 +0000 | [diff] [blame] | 1223 | String8 octPtr = String8::format("OutputCommandThread: %p\n", mOutputCommandThread.get()); |
Tomasz Wasilczyk | 833345b | 2023-08-15 20:59:35 +0000 | [diff] [blame] | 1224 | write(fd, octPtr.c_str(), octPtr.size()); |
Mikhail Naganov | 1b22e54 | 2022-02-25 04:24:49 +0000 | [diff] [blame] | 1225 | if (mOutputCommandThread != 0) { |
| 1226 | mOutputCommandThread->dump(fd); |
| 1227 | } |
| 1228 | |
Eric Laurent | dce54a1 | 2014-03-10 12:19:46 -0700 | [diff] [blame] | 1229 | if (mAudioPolicyManager) { |
| 1230 | mAudioPolicyManager->dump(fd); |
Mikhail Naganov | 1b22e54 | 2022-02-25 04:24:49 +0000 | [diff] [blame] | 1231 | } else { |
| 1232 | String8 apmPtr = String8::format("AudioPolicyManager: %p\n", mAudioPolicyManager); |
Tomasz Wasilczyk | 833345b | 2023-08-15 20:59:35 +0000 | [diff] [blame] | 1233 | write(fd, apmPtr.c_str(), apmPtr.size()); |
Eric Laurent | dce54a1 | 2014-03-10 12:19:46 -0700 | [diff] [blame] | 1234 | } |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 1235 | |
Kevin Rocard | 8be9497 | 2019-02-22 13:26:25 -0800 | [diff] [blame] | 1236 | mPackageManager.dump(fd); |
| 1237 | |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 1238 | dumpReleaseLock(mMutex, locked); |
Andy Hung | c747c53 | 2022-03-07 21:41:14 -0800 | [diff] [blame] | 1239 | |
Shunkai Yao | 59b27bc | 2022-07-22 18:42:27 +0000 | [diff] [blame] | 1240 | if (mSpatializer != nullptr) { |
| 1241 | std::string dumpString = mSpatializer->toString(1 /* level */); |
| 1242 | write(fd, dumpString.c_str(), dumpString.size()); |
| 1243 | } else { |
| 1244 | String8 spatializerPtr = String8::format("Spatializer no supportted on this device\n"); |
| 1245 | write(fd, spatializerPtr.c_str(), spatializerPtr.size()); |
| 1246 | } |
| 1247 | |
Andy Hung | c747c53 | 2022-03-07 21:41:14 -0800 | [diff] [blame] | 1248 | { |
| 1249 | std::string timeCheckStats = getIAudioPolicyServiceStatistics().dump(); |
| 1250 | dprintf(fd, "\nIAudioPolicyService binder call profile\n"); |
| 1251 | write(fd, timeCheckStats.c_str(), timeCheckStats.size()); |
| 1252 | } |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 1253 | } |
| 1254 | return NO_ERROR; |
| 1255 | } |
| 1256 | |
| 1257 | status_t AudioPolicyService::dumpPermissionDenial(int fd) |
| 1258 | { |
| 1259 | const size_t SIZE = 256; |
| 1260 | char buffer[SIZE]; |
| 1261 | String8 result; |
| 1262 | snprintf(buffer, SIZE, "Permission Denial: " |
| 1263 | "can't dump AudioPolicyService from pid=%d, uid=%d\n", |
| 1264 | IPCThreadState::self()->getCallingPid(), |
| 1265 | IPCThreadState::self()->getCallingUid()); |
| 1266 | result.append(buffer); |
Tomasz Wasilczyk | 833345b | 2023-08-15 20:59:35 +0000 | [diff] [blame] | 1267 | write(fd, result.c_str(), result.size()); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 1268 | return NO_ERROR; |
| 1269 | } |
| 1270 | |
| 1271 | status_t AudioPolicyService::onTransact( |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1272 | uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) { |
Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1273 | // make sure transactions reserved to AudioFlinger do not come from other processes |
| 1274 | switch (code) { |
| 1275 | case TRANSACTION_startOutput: |
| 1276 | case TRANSACTION_stopOutput: |
| 1277 | case TRANSACTION_releaseOutput: |
| 1278 | case TRANSACTION_getInputForAttr: |
| 1279 | case TRANSACTION_startInput: |
| 1280 | case TRANSACTION_stopInput: |
| 1281 | case TRANSACTION_releaseInput: |
| 1282 | case TRANSACTION_getOutputForEffect: |
| 1283 | case TRANSACTION_registerEffect: |
| 1284 | case TRANSACTION_unregisterEffect: |
| 1285 | case TRANSACTION_setEffectEnabled: |
| 1286 | case TRANSACTION_getStrategyForStream: |
| 1287 | case TRANSACTION_getOutputForAttr: |
| 1288 | case TRANSACTION_moveEffectsToIo: |
| 1289 | ALOGW("%s: transaction %d received from PID %d", |
| 1290 | __func__, code, IPCThreadState::self()->getCallingPid()); |
| 1291 | return INVALID_OPERATION; |
| 1292 | default: |
| 1293 | break; |
| 1294 | } |
| 1295 | |
| 1296 | // make sure the following transactions come from system components |
| 1297 | switch (code) { |
| 1298 | case TRANSACTION_setDeviceConnectionState: |
| 1299 | case TRANSACTION_handleDeviceConfigChange: |
| 1300 | case TRANSACTION_setPhoneState: |
| 1301 | //FIXME: Allow setForceUse calls from system apps until a better use case routing API is available |
| 1302 | // case TRANSACTION_setForceUse: |
| 1303 | case TRANSACTION_initStreamVolume: |
| 1304 | case TRANSACTION_setStreamVolumeIndex: |
| 1305 | case TRANSACTION_setVolumeIndexForAttributes: |
| 1306 | case TRANSACTION_getStreamVolumeIndex: |
| 1307 | case TRANSACTION_getVolumeIndexForAttributes: |
| 1308 | case TRANSACTION_getMinVolumeIndexForAttributes: |
| 1309 | case TRANSACTION_getMaxVolumeIndexForAttributes: |
| 1310 | case TRANSACTION_isStreamActive: |
| 1311 | case TRANSACTION_isStreamActiveRemotely: |
| 1312 | case TRANSACTION_isSourceActive: |
Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1313 | case TRANSACTION_registerPolicyMixes: |
Jan Sebechlebsky | 0af8e87 | 2023-08-11 14:45:08 +0200 | [diff] [blame] | 1314 | case TRANSACTION_updatePolicyMixes: |
Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1315 | case TRANSACTION_setMasterMono: |
| 1316 | case TRANSACTION_getSurroundFormats: |
Kriti Dang | 6537def | 2021-03-02 13:46:59 +0100 | [diff] [blame] | 1317 | case TRANSACTION_getReportedSurroundFormats: |
Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1318 | case TRANSACTION_setSurroundFormatEnabled: |
Oscar Azucena | 829d90d | 2022-01-28 17:17:56 -0800 | [diff] [blame] | 1319 | case TRANSACTION_setAssistantServicesUids: |
Oscar Azucena | c2cdda3 | 2022-01-31 19:10:39 -0800 | [diff] [blame] | 1320 | case TRANSACTION_setActiveAssistantServicesUids: |
Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1321 | case TRANSACTION_setA11yServicesUids: |
| 1322 | case TRANSACTION_setUidDeviceAffinities: |
| 1323 | case TRANSACTION_removeUidDeviceAffinities: |
| 1324 | case TRANSACTION_setUserIdDeviceAffinities: |
| 1325 | case TRANSACTION_removeUserIdDeviceAffinities: |
Patty | dd80758 | 2021-11-04 21:01:03 +0800 | [diff] [blame] | 1326 | case TRANSACTION_getHwOffloadFormatsSupportedForBluetoothMedia: |
Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1327 | case TRANSACTION_listAudioVolumeGroups: |
| 1328 | case TRANSACTION_getVolumeGroupFromAudioAttributes: |
| 1329 | case TRANSACTION_acquireSoundTriggerSession: |
| 1330 | case TRANSACTION_releaseSoundTriggerSession: |
Atneya Nair | 698f5ef | 2022-12-15 16:15:09 -0800 | [diff] [blame] | 1331 | case TRANSACTION_isHotwordStreamSupported: |
Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1332 | case TRANSACTION_setRttEnabled: |
| 1333 | case TRANSACTION_isCallScreenModeSupported: |
| 1334 | case TRANSACTION_setDevicesRoleForStrategy: |
| 1335 | case TRANSACTION_setSupportedSystemUsages: |
| 1336 | case TRANSACTION_removeDevicesRoleForStrategy: |
Paul Wang | 5d7cdb5 | 2022-11-22 09:45:06 +0000 | [diff] [blame] | 1337 | case TRANSACTION_clearDevicesRoleForStrategy: |
Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1338 | case TRANSACTION_getDevicesForRoleAndStrategy: |
| 1339 | case TRANSACTION_getDevicesForAttributes: |
| 1340 | case TRANSACTION_setAllowedCapturePolicy: |
| 1341 | case TRANSACTION_onNewAudioModulesAvailable: |
| 1342 | case TRANSACTION_setCurrentImeUid: |
| 1343 | case TRANSACTION_registerSoundTriggerCaptureStateListener: |
| 1344 | case TRANSACTION_setDevicesRoleForCapturePreset: |
| 1345 | case TRANSACTION_addDevicesRoleForCapturePreset: |
| 1346 | case TRANSACTION_removeDevicesRoleForCapturePreset: |
| 1347 | case TRANSACTION_clearDevicesRoleForCapturePreset: |
Eric Laurent | 81dd0f5 | 2021-07-05 11:54:40 +0200 | [diff] [blame] | 1348 | case TRANSACTION_getDevicesForRoleAndCapturePreset: |
jiabin | a84c3d3 | 2022-12-02 18:59:55 +0000 | [diff] [blame] | 1349 | case TRANSACTION_getSpatializer: |
| 1350 | case TRANSACTION_setPreferredMixerAttributes: |
| 1351 | case TRANSACTION_clearPreferredMixerAttributes: { |
Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1352 | if (!isServiceUid(IPCThreadState::self()->getCallingUid())) { |
| 1353 | ALOGW("%s: transaction %d received from PID %d unauthorized UID %d", |
| 1354 | __func__, code, IPCThreadState::self()->getCallingPid(), |
| 1355 | IPCThreadState::self()->getCallingUid()); |
| 1356 | return INVALID_OPERATION; |
| 1357 | } |
| 1358 | } break; |
| 1359 | default: |
| 1360 | break; |
| 1361 | } |
| 1362 | |
Andy Hung | c747c53 | 2022-03-07 21:41:14 -0800 | [diff] [blame] | 1363 | const std::string methodName = getIAudioPolicyServiceStatistics().getMethodForCode(code); |
| 1364 | mediautils::TimeCheck check( |
| 1365 | std::string("IAudioPolicyService::").append(methodName), |
| 1366 | [code, methodName](bool timeout, float elapsedMs) { // don't move methodName. |
| 1367 | if (timeout) { |
| 1368 | mediametrics::LogItem(AMEDIAMETRICS_KEY_AUDIO_POLICY) |
| 1369 | .set(AMEDIAMETRICS_PROP_EVENT, AMEDIAMETRICS_PROP_EVENT_VALUE_TIMEOUT) |
| 1370 | .set(AMEDIAMETRICS_PROP_METHODCODE, int64_t(code)) |
| 1371 | .set(AMEDIAMETRICS_PROP_METHODNAME, methodName.c_str()) |
| 1372 | .record(); |
| 1373 | } else { |
| 1374 | getIAudioPolicyServiceStatistics().event(code, elapsedMs); |
| 1375 | } |
Andy Hung | 741b3dd | 2022-06-13 19:49:43 -0700 | [diff] [blame] | 1376 | }, mediautils::TimeCheck::kDefaultTimeoutDuration, |
| 1377 | mediautils::TimeCheck::kDefaultSecondChanceDuration, |
| 1378 | true /* crashOnTimeout */); |
Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1379 | |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1380 | switch (code) { |
| 1381 | case SHELL_COMMAND_TRANSACTION: { |
| 1382 | int in = data.readFileDescriptor(); |
| 1383 | int out = data.readFileDescriptor(); |
| 1384 | int err = data.readFileDescriptor(); |
| 1385 | int argc = data.readInt32(); |
| 1386 | Vector<String16> args; |
| 1387 | for (int i = 0; i < argc && data.dataAvail() > 0; i++) { |
| 1388 | args.add(data.readString16()); |
| 1389 | } |
| 1390 | sp<IBinder> unusedCallback; |
| 1391 | sp<IResultReceiver> resultReceiver; |
| 1392 | status_t status; |
| 1393 | if ((status = data.readNullableStrongBinder(&unusedCallback)) != NO_ERROR) { |
| 1394 | return status; |
| 1395 | } |
| 1396 | if ((status = data.readNullableStrongBinder(&resultReceiver)) != NO_ERROR) { |
| 1397 | return status; |
| 1398 | } |
| 1399 | status = shellCommand(in, out, err, args); |
| 1400 | if (resultReceiver != nullptr) { |
| 1401 | resultReceiver->send(status); |
| 1402 | } |
| 1403 | return NO_ERROR; |
| 1404 | } |
| 1405 | } |
| 1406 | |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 1407 | return BnAudioPolicyService::onTransact(code, data, reply, flags); |
| 1408 | } |
| 1409 | |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1410 | // ------------------- Shell command implementation ------------------- |
| 1411 | |
| 1412 | // NOTE: This is a remote API - make sure all args are validated |
| 1413 | status_t AudioPolicyService::shellCommand(int in, int out, int err, Vector<String16>& args) { |
| 1414 | if (!checkCallingPermission(sManageAudioPolicyPermission, nullptr, nullptr)) { |
| 1415 | return PERMISSION_DENIED; |
| 1416 | } |
| 1417 | if (in == BAD_TYPE || out == BAD_TYPE || err == BAD_TYPE) { |
| 1418 | return BAD_VALUE; |
| 1419 | } |
jovanak | be066e1 | 2019-09-02 11:54:39 -0700 | [diff] [blame] | 1420 | if (args.size() >= 3 && args[0] == String16("set-uid-state")) { |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1421 | return handleSetUidState(args, err); |
jovanak | be066e1 | 2019-09-02 11:54:39 -0700 | [diff] [blame] | 1422 | } else if (args.size() >= 2 && args[0] == String16("reset-uid-state")) { |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1423 | return handleResetUidState(args, err); |
jovanak | be066e1 | 2019-09-02 11:54:39 -0700 | [diff] [blame] | 1424 | } else if (args.size() >= 2 && args[0] == String16("get-uid-state")) { |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1425 | return handleGetUidState(args, out, err); |
Eric Laurent | 269acb4 | 2021-04-23 16:53:22 +0200 | [diff] [blame] | 1426 | } else if (args.size() >= 1 && args[0] == String16("purge_permission-cache")) { |
| 1427 | purgePermissionCache(); |
| 1428 | return NO_ERROR; |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1429 | } else if (args.size() == 1 && args[0] == String16("help")) { |
| 1430 | printHelp(out); |
| 1431 | return NO_ERROR; |
| 1432 | } |
| 1433 | printHelp(err); |
| 1434 | return BAD_VALUE; |
| 1435 | } |
| 1436 | |
jovanak | be066e1 | 2019-09-02 11:54:39 -0700 | [diff] [blame] | 1437 | static status_t getUidForPackage(String16 packageName, int userId, /*inout*/uid_t& uid, int err) { |
| 1438 | if (userId < 0) { |
| 1439 | ALOGE("Invalid user: %d", userId); |
| 1440 | dprintf(err, "Invalid user: %d\n", userId); |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1441 | return BAD_VALUE; |
| 1442 | } |
jovanak | be066e1 | 2019-09-02 11:54:39 -0700 | [diff] [blame] | 1443 | |
| 1444 | PermissionController pc; |
| 1445 | uid = pc.getPackageUid(packageName, 0); |
| 1446 | if (uid <= 0) { |
Tomasz Wasilczyk | 833345b | 2023-08-15 20:59:35 +0000 | [diff] [blame] | 1447 | ALOGE("Unknown package: '%s'", String8(packageName).c_str()); |
| 1448 | dprintf(err, "Unknown package: '%s'\n", String8(packageName).c_str()); |
jovanak | be066e1 | 2019-09-02 11:54:39 -0700 | [diff] [blame] | 1449 | return BAD_VALUE; |
| 1450 | } |
| 1451 | |
| 1452 | uid = multiuser_get_uid(userId, uid); |
| 1453 | return NO_ERROR; |
| 1454 | } |
| 1455 | |
| 1456 | status_t AudioPolicyService::handleSetUidState(Vector<String16>& args, int err) { |
| 1457 | // Valid arg.size() is 3 or 5, args.size() is 5 with --user option. |
| 1458 | if (!(args.size() == 3 || args.size() == 5)) { |
| 1459 | printHelp(err); |
| 1460 | return BAD_VALUE; |
| 1461 | } |
| 1462 | |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1463 | bool active = false; |
| 1464 | if (args[2] == String16("active")) { |
| 1465 | active = true; |
| 1466 | } else if ((args[2] != String16("idle"))) { |
Tomasz Wasilczyk | 833345b | 2023-08-15 20:59:35 +0000 | [diff] [blame] | 1467 | ALOGE("Expected active or idle but got: '%s'", String8(args[2]).c_str()); |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1468 | return BAD_VALUE; |
| 1469 | } |
jovanak | be066e1 | 2019-09-02 11:54:39 -0700 | [diff] [blame] | 1470 | |
| 1471 | int userId = 0; |
| 1472 | if (args.size() >= 5 && args[3] == String16("--user")) { |
| 1473 | userId = atoi(String8(args[4])); |
| 1474 | } |
| 1475 | |
| 1476 | uid_t uid; |
| 1477 | if (getUidForPackage(args[1], userId, uid, err) == BAD_VALUE) { |
| 1478 | return BAD_VALUE; |
| 1479 | } |
| 1480 | |
Mikhail Naganov | 12b716c | 2020-04-30 22:37:43 +0000 | [diff] [blame] | 1481 | sp<UidPolicy> uidPolicy; |
| 1482 | { |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 1483 | audio_utils::lock_guard _l(mMutex); |
Mikhail Naganov | 12b716c | 2020-04-30 22:37:43 +0000 | [diff] [blame] | 1484 | uidPolicy = mUidPolicy; |
| 1485 | } |
| 1486 | if (uidPolicy) { |
| 1487 | uidPolicy->addOverrideUid(uid, active); |
| 1488 | return NO_ERROR; |
| 1489 | } |
| 1490 | return NO_INIT; |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1491 | } |
| 1492 | |
| 1493 | status_t AudioPolicyService::handleResetUidState(Vector<String16>& args, int err) { |
jovanak | be066e1 | 2019-09-02 11:54:39 -0700 | [diff] [blame] | 1494 | // Valid arg.size() is 2 or 4, args.size() is 4 with --user option. |
| 1495 | if (!(args.size() == 2 || args.size() == 4)) { |
| 1496 | printHelp(err); |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1497 | return BAD_VALUE; |
| 1498 | } |
jovanak | be066e1 | 2019-09-02 11:54:39 -0700 | [diff] [blame] | 1499 | |
| 1500 | int userId = 0; |
| 1501 | if (args.size() >= 4 && args[2] == String16("--user")) { |
| 1502 | userId = atoi(String8(args[3])); |
| 1503 | } |
| 1504 | |
| 1505 | uid_t uid; |
| 1506 | if (getUidForPackage(args[1], userId, uid, err) == BAD_VALUE) { |
| 1507 | return BAD_VALUE; |
| 1508 | } |
| 1509 | |
Mikhail Naganov | 12b716c | 2020-04-30 22:37:43 +0000 | [diff] [blame] | 1510 | sp<UidPolicy> uidPolicy; |
| 1511 | { |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 1512 | audio_utils::lock_guard _l(mMutex); |
Mikhail Naganov | 12b716c | 2020-04-30 22:37:43 +0000 | [diff] [blame] | 1513 | uidPolicy = mUidPolicy; |
| 1514 | } |
| 1515 | if (uidPolicy) { |
| 1516 | uidPolicy->removeOverrideUid(uid); |
| 1517 | return NO_ERROR; |
| 1518 | } |
| 1519 | return NO_INIT; |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1520 | } |
| 1521 | |
| 1522 | status_t AudioPolicyService::handleGetUidState(Vector<String16>& args, int out, int err) { |
jovanak | be066e1 | 2019-09-02 11:54:39 -0700 | [diff] [blame] | 1523 | // Valid arg.size() is 2 or 4, args.size() is 4 with --user option. |
| 1524 | if (!(args.size() == 2 || args.size() == 4)) { |
| 1525 | printHelp(err); |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1526 | return BAD_VALUE; |
| 1527 | } |
jovanak | be066e1 | 2019-09-02 11:54:39 -0700 | [diff] [blame] | 1528 | |
| 1529 | int userId = 0; |
| 1530 | if (args.size() >= 4 && args[2] == String16("--user")) { |
| 1531 | userId = atoi(String8(args[3])); |
| 1532 | } |
| 1533 | |
| 1534 | uid_t uid; |
| 1535 | if (getUidForPackage(args[1], userId, uid, err) == BAD_VALUE) { |
| 1536 | return BAD_VALUE; |
| 1537 | } |
| 1538 | |
Mikhail Naganov | 12b716c | 2020-04-30 22:37:43 +0000 | [diff] [blame] | 1539 | sp<UidPolicy> uidPolicy; |
| 1540 | { |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 1541 | audio_utils::lock_guard _l(mMutex); |
Mikhail Naganov | 12b716c | 2020-04-30 22:37:43 +0000 | [diff] [blame] | 1542 | uidPolicy = mUidPolicy; |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1543 | } |
Mikhail Naganov | 12b716c | 2020-04-30 22:37:43 +0000 | [diff] [blame] | 1544 | if (uidPolicy) { |
| 1545 | return dprintf(out, uidPolicy->isUidActive(uid) ? "active\n" : "idle\n"); |
| 1546 | } |
| 1547 | return NO_INIT; |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1548 | } |
| 1549 | |
| 1550 | status_t AudioPolicyService::printHelp(int out) { |
| 1551 | return dprintf(out, "Audio policy service commands:\n" |
jovanak | be066e1 | 2019-09-02 11:54:39 -0700 | [diff] [blame] | 1552 | " get-uid-state <PACKAGE> [--user USER_ID] gets the uid state\n" |
| 1553 | " set-uid-state <PACKAGE> <active|idle> [--user USER_ID] overrides the uid state\n" |
| 1554 | " reset-uid-state <PACKAGE> [--user USER_ID] clears the uid state override\n" |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1555 | " help print this message\n"); |
| 1556 | } |
| 1557 | |
Eric Laurent | 0d13fea | 2022-11-04 17:12:08 +0100 | [diff] [blame] | 1558 | status_t AudioPolicyService::registerOutput(audio_io_handle_t output, |
| 1559 | const audio_config_base_t& config, |
| 1560 | const audio_output_flags_t flags) { |
| 1561 | return mUsecaseValidator->registerStream(output, config, flags); |
| 1562 | } |
| 1563 | |
| 1564 | status_t AudioPolicyService::unregisterOutput(audio_io_handle_t output) { |
| 1565 | return mUsecaseValidator->unregisterStream(output); |
| 1566 | } |
| 1567 | |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1568 | // ----------- AudioPolicyService::UidPolicy implementation ---------- |
| 1569 | |
| 1570 | void AudioPolicyService::UidPolicy::registerSelf() { |
Steven Moreland | 2f34814 | 2019-07-02 15:59:07 -0700 | [diff] [blame] | 1571 | status_t res = mAm.linkToDeath(this); |
| 1572 | mAm.registerUidObserver(this, ActivityManager::UID_OBSERVER_GONE |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1573 | | ActivityManager::UID_OBSERVER_IDLE |
Eric Laurent | e8c8b43 | 2018-10-17 10:08:02 -0700 | [diff] [blame] | 1574 | | ActivityManager::UID_OBSERVER_ACTIVE |
| 1575 | | ActivityManager::UID_OBSERVER_PROCSTATE, |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1576 | ActivityManager::PROCESS_STATE_UNKNOWN, |
| 1577 | String16("audioserver")); |
Mikhail Naganov | eae73eb | 2018-04-03 16:57:36 -0700 | [diff] [blame] | 1578 | if (!res) { |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 1579 | audio_utils::lock_guard _l(mMutex); |
Mikhail Naganov | eae73eb | 2018-04-03 16:57:36 -0700 | [diff] [blame] | 1580 | mObserverRegistered = true; |
| 1581 | } else { |
| 1582 | ALOGE("UidPolicy::registerSelf linkToDeath failed: %d", res); |
Eric Laurent | 4eb58f1 | 2018-12-07 16:41:02 -0800 | [diff] [blame] | 1583 | |
Steven Moreland | 2f34814 | 2019-07-02 15:59:07 -0700 | [diff] [blame] | 1584 | mAm.unregisterUidObserver(this); |
Mikhail Naganov | eae73eb | 2018-04-03 16:57:36 -0700 | [diff] [blame] | 1585 | } |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1586 | } |
| 1587 | |
| 1588 | void AudioPolicyService::UidPolicy::unregisterSelf() { |
Steven Moreland | 2f34814 | 2019-07-02 15:59:07 -0700 | [diff] [blame] | 1589 | mAm.unlinkToDeath(this); |
| 1590 | mAm.unregisterUidObserver(this); |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 1591 | audio_utils::lock_guard _l(mMutex); |
Mikhail Naganov | eae73eb | 2018-04-03 16:57:36 -0700 | [diff] [blame] | 1592 | mObserverRegistered = false; |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1593 | } |
| 1594 | |
Mikhail Naganov | eae73eb | 2018-04-03 16:57:36 -0700 | [diff] [blame] | 1595 | void AudioPolicyService::UidPolicy::binderDied(__unused const wp<IBinder> &who) { |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 1596 | audio_utils::lock_guard _l(mMutex); |
Mikhail Naganov | eae73eb | 2018-04-03 16:57:36 -0700 | [diff] [blame] | 1597 | mCachedUids.clear(); |
| 1598 | mObserverRegistered = false; |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1599 | } |
| 1600 | |
Eric Laurent | e8c8b43 | 2018-10-17 10:08:02 -0700 | [diff] [blame] | 1601 | void AudioPolicyService::UidPolicy::checkRegistered() { |
Mikhail Naganov | eae73eb | 2018-04-03 16:57:36 -0700 | [diff] [blame] | 1602 | bool needToReregister = false; |
| 1603 | { |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 1604 | audio_utils::lock_guard _l(mMutex); |
Mikhail Naganov | eae73eb | 2018-04-03 16:57:36 -0700 | [diff] [blame] | 1605 | needToReregister = !mObserverRegistered; |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1606 | } |
Mikhail Naganov | eae73eb | 2018-04-03 16:57:36 -0700 | [diff] [blame] | 1607 | if (needToReregister) { |
| 1608 | // Looks like ActivityManager has died previously, attempt to re-register. |
| 1609 | registerSelf(); |
| 1610 | } |
Eric Laurent | e8c8b43 | 2018-10-17 10:08:02 -0700 | [diff] [blame] | 1611 | } |
| 1612 | |
| 1613 | bool AudioPolicyService::UidPolicy::isUidActive(uid_t uid) { |
| 1614 | if (isServiceUid(uid)) return true; |
| 1615 | checkRegistered(); |
Mikhail Naganov | eae73eb | 2018-04-03 16:57:36 -0700 | [diff] [blame] | 1616 | { |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 1617 | audio_utils::lock_guard _l(mMutex); |
Mikhail Naganov | eae73eb | 2018-04-03 16:57:36 -0700 | [diff] [blame] | 1618 | auto overrideIter = mOverrideUids.find(uid); |
| 1619 | if (overrideIter != mOverrideUids.end()) { |
Eric Laurent | e8c8b43 | 2018-10-17 10:08:02 -0700 | [diff] [blame] | 1620 | return overrideIter->second.first; |
Mikhail Naganov | eae73eb | 2018-04-03 16:57:36 -0700 | [diff] [blame] | 1621 | } |
| 1622 | // In an absense of the ActivityManager, assume everything to be active. |
| 1623 | if (!mObserverRegistered) return true; |
| 1624 | auto cacheIter = mCachedUids.find(uid); |
Mikhail Naganov | eba668a | 2018-04-05 08:13:15 -0700 | [diff] [blame] | 1625 | if (cacheIter != mCachedUids.end()) { |
Eric Laurent | e8c8b43 | 2018-10-17 10:08:02 -0700 | [diff] [blame] | 1626 | return cacheIter->second.first; |
Mikhail Naganov | eae73eb | 2018-04-03 16:57:36 -0700 | [diff] [blame] | 1627 | } |
| 1628 | } |
| 1629 | ActivityManager am; |
Hui Yu | 12c7ec7 | 2020-05-04 17:40:52 +0000 | [diff] [blame] | 1630 | bool active = am.isUidActive(uid, String16("audioserver")); |
Mikhail Naganov | eae73eb | 2018-04-03 16:57:36 -0700 | [diff] [blame] | 1631 | { |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 1632 | audio_utils::lock_guard _l(mMutex); |
Eric Laurent | e8c8b43 | 2018-10-17 10:08:02 -0700 | [diff] [blame] | 1633 | mCachedUids.insert(std::pair<uid_t, |
| 1634 | std::pair<bool, int>>(uid, std::pair<bool, int>(active, |
| 1635 | ActivityManager::PROCESS_STATE_UNKNOWN))); |
Mikhail Naganov | eae73eb | 2018-04-03 16:57:36 -0700 | [diff] [blame] | 1636 | } |
| 1637 | return active; |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1638 | } |
| 1639 | |
Eric Laurent | e8c8b43 | 2018-10-17 10:08:02 -0700 | [diff] [blame] | 1640 | int AudioPolicyService::UidPolicy::getUidState(uid_t uid) { |
| 1641 | if (isServiceUid(uid)) { |
| 1642 | return ActivityManager::PROCESS_STATE_TOP; |
| 1643 | } |
| 1644 | checkRegistered(); |
| 1645 | { |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 1646 | audio_utils::lock_guard _l(mMutex); |
Eric Laurent | e8c8b43 | 2018-10-17 10:08:02 -0700 | [diff] [blame] | 1647 | auto overrideIter = mOverrideUids.find(uid); |
| 1648 | if (overrideIter != mOverrideUids.end()) { |
| 1649 | if (overrideIter->second.first) { |
| 1650 | if (overrideIter->second.second != ActivityManager::PROCESS_STATE_UNKNOWN) { |
| 1651 | return overrideIter->second.second; |
| 1652 | } else { |
| 1653 | auto cacheIter = mCachedUids.find(uid); |
| 1654 | if (cacheIter != mCachedUids.end()) { |
| 1655 | return cacheIter->second.second; |
| 1656 | } |
| 1657 | } |
| 1658 | } |
| 1659 | return ActivityManager::PROCESS_STATE_UNKNOWN; |
| 1660 | } |
| 1661 | // In an absense of the ActivityManager, assume everything to be active. |
| 1662 | if (!mObserverRegistered) { |
| 1663 | return ActivityManager::PROCESS_STATE_TOP; |
| 1664 | } |
| 1665 | auto cacheIter = mCachedUids.find(uid); |
| 1666 | if (cacheIter != mCachedUids.end()) { |
| 1667 | if (cacheIter->second.first) { |
| 1668 | return cacheIter->second.second; |
| 1669 | } else { |
| 1670 | return ActivityManager::PROCESS_STATE_UNKNOWN; |
| 1671 | } |
| 1672 | } |
| 1673 | } |
| 1674 | ActivityManager am; |
Hui Yu | 12c7ec7 | 2020-05-04 17:40:52 +0000 | [diff] [blame] | 1675 | bool active = am.isUidActive(uid, String16("audioserver")); |
Eric Laurent | e8c8b43 | 2018-10-17 10:08:02 -0700 | [diff] [blame] | 1676 | int state = ActivityManager::PROCESS_STATE_UNKNOWN; |
| 1677 | if (active) { |
| 1678 | state = am.getUidProcessState(uid, String16("audioserver")); |
| 1679 | } |
| 1680 | { |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 1681 | audio_utils::lock_guard _l(mMutex); |
Eric Laurent | e8c8b43 | 2018-10-17 10:08:02 -0700 | [diff] [blame] | 1682 | mCachedUids.insert(std::pair<uid_t, |
| 1683 | std::pair<bool, int>>(uid, std::pair<bool, int>(active, state))); |
| 1684 | } |
Eric Laurent | 4eb58f1 | 2018-12-07 16:41:02 -0800 | [diff] [blame] | 1685 | |
Eric Laurent | e8c8b43 | 2018-10-17 10:08:02 -0700 | [diff] [blame] | 1686 | return state; |
| 1687 | } |
| 1688 | |
Mikhail Naganov | eae73eb | 2018-04-03 16:57:36 -0700 | [diff] [blame] | 1689 | void AudioPolicyService::UidPolicy::onUidActive(uid_t uid) { |
Eric Laurent | e8c8b43 | 2018-10-17 10:08:02 -0700 | [diff] [blame] | 1690 | updateUid(&mCachedUids, uid, true, ActivityManager::PROCESS_STATE_UNKNOWN, true); |
Mikhail Naganov | eae73eb | 2018-04-03 16:57:36 -0700 | [diff] [blame] | 1691 | } |
| 1692 | |
| 1693 | void AudioPolicyService::UidPolicy::onUidGone(uid_t uid, __unused bool disabled) { |
Eric Laurent | e8c8b43 | 2018-10-17 10:08:02 -0700 | [diff] [blame] | 1694 | updateUid(&mCachedUids, uid, false, ActivityManager::PROCESS_STATE_UNKNOWN, false); |
Mikhail Naganov | eae73eb | 2018-04-03 16:57:36 -0700 | [diff] [blame] | 1695 | } |
| 1696 | |
| 1697 | void AudioPolicyService::UidPolicy::onUidIdle(uid_t uid, __unused bool disabled) { |
Eric Laurent | e8c8b43 | 2018-10-17 10:08:02 -0700 | [diff] [blame] | 1698 | updateUid(&mCachedUids, uid, false, ActivityManager::PROCESS_STATE_UNKNOWN, true); |
Mikhail Naganov | eae73eb | 2018-04-03 16:57:36 -0700 | [diff] [blame] | 1699 | } |
| 1700 | |
Eric Laurent | e8c8b43 | 2018-10-17 10:08:02 -0700 | [diff] [blame] | 1701 | void AudioPolicyService::UidPolicy::onUidStateChanged(uid_t uid, |
| 1702 | int32_t procState, |
Hui Yu | 13ad0eb | 2019-09-09 10:27:07 -0700 | [diff] [blame] | 1703 | int64_t procStateSeq __unused, |
| 1704 | int32_t capability __unused) { |
Eric Laurent | e8c8b43 | 2018-10-17 10:08:02 -0700 | [diff] [blame] | 1705 | if (procState != ActivityManager::PROCESS_STATE_UNKNOWN) { |
| 1706 | updateUid(&mCachedUids, uid, true, procState, true); |
Mikhail Naganov | eae73eb | 2018-04-03 16:57:36 -0700 | [diff] [blame] | 1707 | } |
| 1708 | } |
| 1709 | |
Austin Borger | dddb755 | 2023-03-30 17:53:01 -0700 | [diff] [blame] | 1710 | void AudioPolicyService::UidPolicy::onUidProcAdjChanged(uid_t uid __unused, int32_t adj __unused) { |
Austin Borger | 6557768 | 2022-02-17 00:25:43 +0000 | [diff] [blame] | 1711 | } |
| 1712 | |
Mikhail Naganov | eae73eb | 2018-04-03 16:57:36 -0700 | [diff] [blame] | 1713 | void AudioPolicyService::UidPolicy::updateOverrideUid(uid_t uid, bool active, bool insert) { |
Eric Laurent | e8c8b43 | 2018-10-17 10:08:02 -0700 | [diff] [blame] | 1714 | updateUid(&mOverrideUids, uid, active, ActivityManager::PROCESS_STATE_UNKNOWN, insert); |
| 1715 | } |
| 1716 | |
| 1717 | void AudioPolicyService::UidPolicy::notifyService() { |
| 1718 | sp<AudioPolicyService> service = mService.promote(); |
| 1719 | if (service != nullptr) { |
| 1720 | service->updateUidStates(); |
Mikhail Naganov | eae73eb | 2018-04-03 16:57:36 -0700 | [diff] [blame] | 1721 | } |
| 1722 | } |
| 1723 | |
Eric Laurent | e8c8b43 | 2018-10-17 10:08:02 -0700 | [diff] [blame] | 1724 | void AudioPolicyService::UidPolicy::updateUid(std::unordered_map<uid_t, |
| 1725 | std::pair<bool, int>> *uids, |
| 1726 | uid_t uid, |
| 1727 | bool active, |
| 1728 | int state, |
| 1729 | bool insert) { |
| 1730 | if (isServiceUid(uid)) { |
| 1731 | return; |
| 1732 | } |
| 1733 | bool wasActive = isUidActive(uid); |
| 1734 | int previousState = getUidState(uid); |
Mikhail Naganov | eae73eb | 2018-04-03 16:57:36 -0700 | [diff] [blame] | 1735 | { |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 1736 | audio_utils::lock_guard _l(mMutex); |
Eric Laurent | e8c8b43 | 2018-10-17 10:08:02 -0700 | [diff] [blame] | 1737 | updateUidLocked(uids, uid, active, state, insert); |
Mikhail Naganov | eae73eb | 2018-04-03 16:57:36 -0700 | [diff] [blame] | 1738 | } |
Eric Laurent | e8c8b43 | 2018-10-17 10:08:02 -0700 | [diff] [blame] | 1739 | if (wasActive != isUidActive(uid) || state != previousState) { |
| 1740 | notifyService(); |
| 1741 | } |
Mikhail Naganov | eae73eb | 2018-04-03 16:57:36 -0700 | [diff] [blame] | 1742 | } |
| 1743 | |
Eric Laurent | e8c8b43 | 2018-10-17 10:08:02 -0700 | [diff] [blame] | 1744 | void AudioPolicyService::UidPolicy::updateUidLocked(std::unordered_map<uid_t, |
| 1745 | std::pair<bool, int>> *uids, |
| 1746 | uid_t uid, |
| 1747 | bool active, |
| 1748 | int state, |
| 1749 | bool insert) { |
Mikhail Naganov | eae73eb | 2018-04-03 16:57:36 -0700 | [diff] [blame] | 1750 | auto it = uids->find(uid); |
| 1751 | if (it != uids->end()) { |
Mikhail Naganov | eae73eb | 2018-04-03 16:57:36 -0700 | [diff] [blame] | 1752 | if (insert) { |
Eric Laurent | e8c8b43 | 2018-10-17 10:08:02 -0700 | [diff] [blame] | 1753 | if (state == ActivityManager::PROCESS_STATE_UNKNOWN) { |
| 1754 | it->second.first = active; |
| 1755 | } |
| 1756 | if (it->second.first) { |
| 1757 | it->second.second = state; |
| 1758 | } else { |
| 1759 | it->second.second = ActivityManager::PROCESS_STATE_UNKNOWN; |
| 1760 | } |
Mikhail Naganov | eae73eb | 2018-04-03 16:57:36 -0700 | [diff] [blame] | 1761 | } else { |
| 1762 | uids->erase(it); |
| 1763 | } |
Eric Laurent | e8c8b43 | 2018-10-17 10:08:02 -0700 | [diff] [blame] | 1764 | } else if (insert && (state == ActivityManager::PROCESS_STATE_UNKNOWN)) { |
| 1765 | uids->insert(std::pair<uid_t, std::pair<bool, int>>(uid, |
| 1766 | std::pair<bool, int>(active, state))); |
Mikhail Naganov | eae73eb | 2018-04-03 16:57:36 -0700 | [diff] [blame] | 1767 | } |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1768 | } |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 1769 | |
Eric Laurent | 4eb58f1 | 2018-12-07 16:41:02 -0800 | [diff] [blame] | 1770 | bool AudioPolicyService::UidPolicy::isA11yOnTop() { |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 1771 | audio_utils::lock_guard _l(mMutex); |
Eric Laurent | 4eb58f1 | 2018-12-07 16:41:02 -0800 | [diff] [blame] | 1772 | for (const auto &uid : mCachedUids) { |
Eric Laurent | 47670c9 | 2019-08-28 16:59:05 -0700 | [diff] [blame] | 1773 | if (!isA11yUid(uid.first)) { |
Eric Laurent | 4eb58f1 | 2018-12-07 16:41:02 -0800 | [diff] [blame] | 1774 | continue; |
| 1775 | } |
Amith Yamasani | bcbb300 | 2019-01-23 13:53:33 -0800 | [diff] [blame] | 1776 | if (uid.second.second >= ActivityManager::PROCESS_STATE_TOP |
| 1777 | && uid.second.second <= ActivityManager::PROCESS_STATE_BOUND_FOREGROUND_SERVICE) { |
Eric Laurent | 4eb58f1 | 2018-12-07 16:41:02 -0800 | [diff] [blame] | 1778 | return true; |
| 1779 | } |
| 1780 | } |
| 1781 | return false; |
| 1782 | } |
| 1783 | |
Eric Laurent | b78763e | 2018-10-17 10:08:02 -0700 | [diff] [blame] | 1784 | bool AudioPolicyService::UidPolicy::isA11yUid(uid_t uid) |
| 1785 | { |
| 1786 | std::vector<uid_t>::iterator it = find(mA11yUids.begin(), mA11yUids.end(), uid); |
| 1787 | return it != mA11yUids.end(); |
| 1788 | } |
| 1789 | |
Oscar Azucena | 829d90d | 2022-01-28 17:17:56 -0800 | [diff] [blame] | 1790 | void AudioPolicyService::UidPolicy::setAssistantUids(const std::vector<uid_t>& uids) { |
| 1791 | mAssistantUids.clear(); |
| 1792 | mAssistantUids = uids; |
| 1793 | } |
| 1794 | |
| 1795 | bool AudioPolicyService::UidPolicy::isAssistantUid(uid_t uid) |
| 1796 | { |
| 1797 | std::vector<uid_t>::iterator it = find(mAssistantUids.begin(), mAssistantUids.end(), uid); |
| 1798 | return it != mAssistantUids.end(); |
| 1799 | } |
| 1800 | |
Oscar Azucena | c2cdda3 | 2022-01-31 19:10:39 -0800 | [diff] [blame] | 1801 | void AudioPolicyService::UidPolicy::setActiveAssistantUids(const std::vector<uid_t>& activeUids) { |
| 1802 | mActiveAssistantUids = activeUids; |
| 1803 | } |
| 1804 | |
| 1805 | bool AudioPolicyService::UidPolicy::isActiveAssistantUid(uid_t uid) |
| 1806 | { |
| 1807 | std::vector<uid_t>::iterator it = find(mActiveAssistantUids.begin(), |
| 1808 | mActiveAssistantUids.end(), uid); |
| 1809 | return it != mActiveAssistantUids.end(); |
| 1810 | } |
| 1811 | |
Oscar Azucena | 829d90d | 2022-01-28 17:17:56 -0800 | [diff] [blame] | 1812 | void AudioPolicyService::UidPolicy::dumpInternals(int fd) { |
| 1813 | const size_t SIZE = 256; |
| 1814 | char buffer[SIZE]; |
| 1815 | String8 result; |
| 1816 | auto appendUidsToResult = [&](const char* title, const std::vector<uid_t> &uids) { |
| 1817 | snprintf(buffer, SIZE, "\t%s: \n", title); |
| 1818 | result.append(buffer); |
| 1819 | int counter = 0; |
| 1820 | if (uids.empty()) { |
| 1821 | snprintf(buffer, SIZE, "\t\tNo UIDs present.\n"); |
| 1822 | result.append(buffer); |
| 1823 | return; |
| 1824 | } |
| 1825 | for (const auto &uid : uids) { |
| 1826 | snprintf(buffer, SIZE, "\t\tUID[%d]=%d\n", counter++, uid); |
| 1827 | result.append(buffer); |
| 1828 | } |
| 1829 | }; |
| 1830 | |
| 1831 | snprintf(buffer, SIZE, "UID Policy:\n"); |
| 1832 | result.append(buffer); |
| 1833 | snprintf(buffer, SIZE, "\tmObserverRegistered=%s\n",(mObserverRegistered ? "True":"False")); |
| 1834 | result.append(buffer); |
| 1835 | |
| 1836 | appendUidsToResult("Assistants UIDs", mAssistantUids); |
Oscar Azucena | c2cdda3 | 2022-01-31 19:10:39 -0800 | [diff] [blame] | 1837 | appendUidsToResult("Active Assistants UIDs", mActiveAssistantUids); |
Oscar Azucena | 829d90d | 2022-01-28 17:17:56 -0800 | [diff] [blame] | 1838 | |
| 1839 | appendUidsToResult("Accessibility UIDs", mA11yUids); |
| 1840 | |
| 1841 | snprintf(buffer, SIZE, "\tInput Method Service UID=%d\n", mCurrentImeUid); |
| 1842 | result.append(buffer); |
| 1843 | |
| 1844 | snprintf(buffer, SIZE, "\tIs RTT Enabled: %s\n", (mRttEnabled ? "True":"False")); |
| 1845 | result.append(buffer); |
| 1846 | |
Tomasz Wasilczyk | 833345b | 2023-08-15 20:59:35 +0000 | [diff] [blame] | 1847 | write(fd, result.c_str(), result.size()); |
Oscar Azucena | 829d90d | 2022-01-28 17:17:56 -0800 | [diff] [blame] | 1848 | } |
| 1849 | |
Michael Groover | cfd2830 | 2018-12-11 19:16:46 -0800 | [diff] [blame] | 1850 | // ----------- AudioPolicyService::SensorPrivacyService implementation ---------- |
| 1851 | void AudioPolicyService::SensorPrivacyPolicy::registerSelf() { |
| 1852 | SensorPrivacyManager spm; |
| 1853 | mSensorPrivacyEnabled = spm.isSensorPrivacyEnabled(); |
| 1854 | spm.addSensorPrivacyListener(this); |
| 1855 | } |
| 1856 | |
| 1857 | void AudioPolicyService::SensorPrivacyPolicy::unregisterSelf() { |
| 1858 | SensorPrivacyManager spm; |
| 1859 | spm.removeSensorPrivacyListener(this); |
| 1860 | } |
| 1861 | |
| 1862 | bool AudioPolicyService::SensorPrivacyPolicy::isSensorPrivacyEnabled() { |
| 1863 | return mSensorPrivacyEnabled; |
| 1864 | } |
| 1865 | |
Evan Severson | d8dc683 | 2022-01-27 10:47:03 -0800 | [diff] [blame] | 1866 | binder::Status AudioPolicyService::SensorPrivacyPolicy::onSensorPrivacyChanged( |
| 1867 | int toggleType __unused, int sensor __unused, bool enabled) { |
Michael Groover | cfd2830 | 2018-12-11 19:16:46 -0800 | [diff] [blame] | 1868 | mSensorPrivacyEnabled = enabled; |
| 1869 | sp<AudioPolicyService> service = mService.promote(); |
| 1870 | if (service != nullptr) { |
| 1871 | service->updateUidStates(); |
| 1872 | } |
| 1873 | return binder::Status::ok(); |
| 1874 | } |
| 1875 | |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 1876 | // ----------- AudioPolicyService::AudioCommandThread implementation ---------- |
| 1877 | |
Eric Laurent | bfb1b83 | 2013-01-07 09:53:42 -0800 | [diff] [blame] | 1878 | AudioPolicyService::AudioCommandThread::AudioCommandThread(String8 name, |
| 1879 | const wp<AudioPolicyService>& service) |
| 1880 | : Thread(false), mName(name), mService(service) |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 1881 | { |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 1882 | } |
| 1883 | |
| 1884 | |
| 1885 | AudioPolicyService::AudioCommandThread::~AudioCommandThread() |
| 1886 | { |
Eric Laurent | bfb1b83 | 2013-01-07 09:53:42 -0800 | [diff] [blame] | 1887 | if (!mAudioCommands.isEmpty()) { |
Tomasz Wasilczyk | 833345b | 2023-08-15 20:59:35 +0000 | [diff] [blame] | 1888 | release_wake_lock(mName.c_str()); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 1889 | } |
| 1890 | mAudioCommands.clear(); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 1891 | } |
| 1892 | |
| 1893 | void AudioPolicyService::AudioCommandThread::onFirstRef() |
| 1894 | { |
Tomasz Wasilczyk | 833345b | 2023-08-15 20:59:35 +0000 | [diff] [blame] | 1895 | run(mName.c_str(), ANDROID_PRIORITY_AUDIO); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 1896 | } |
| 1897 | |
| 1898 | bool AudioPolicyService::AudioCommandThread::threadLoop() |
| 1899 | { |
Eric Laurent | d7eda8d | 2016-02-02 17:18:39 -0800 | [diff] [blame] | 1900 | nsecs_t waitTime = -1; |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 1901 | |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 1902 | audio_utils::unique_lock ul(mMutex); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 1903 | while (!exitPending()) |
| 1904 | { |
Eric Laurent | 59a8923 | 2014-06-08 14:14:17 -0700 | [diff] [blame] | 1905 | sp<AudioPolicyService> svc; |
Ytai Ben-Tsvi | 6958b02 | 2022-04-26 15:45:53 -0700 | [diff] [blame] | 1906 | int numTimesBecameEmpty = 0; |
Eric Laurent | 59a8923 | 2014-06-08 14:14:17 -0700 | [diff] [blame] | 1907 | while (!mAudioCommands.isEmpty() && !exitPending()) { |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 1908 | nsecs_t curTime = systemTime(); |
| 1909 | // commands are sorted by increasing time stamp: execute them from index 0 and up |
| 1910 | if (mAudioCommands[0]->mTime <= curTime) { |
Eric Laurent | 0ede892 | 2014-05-09 18:04:42 -0700 | [diff] [blame] | 1911 | sp<AudioCommand> command = mAudioCommands[0]; |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 1912 | mAudioCommands.removeAt(0); |
Ytai Ben-Tsvi | 6958b02 | 2022-04-26 15:45:53 -0700 | [diff] [blame] | 1913 | if (mAudioCommands.isEmpty()) { |
| 1914 | ++numTimesBecameEmpty; |
| 1915 | } |
Eric Laurent | 0ede892 | 2014-05-09 18:04:42 -0700 | [diff] [blame] | 1916 | mLastCommand = command; |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 1917 | |
| 1918 | switch (command->mCommand) { |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 1919 | case SET_VOLUME: { |
Eric Laurent | 0ede892 | 2014-05-09 18:04:42 -0700 | [diff] [blame] | 1920 | VolumeData *data = (VolumeData *)command->mParam.get(); |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 1921 | ALOGV("AudioCommandThread() processing set volume stream %d, \ |
Eric Laurent | de07013 | 2010-07-13 04:45:46 -0700 | [diff] [blame] | 1922 | volume %f, output %d", data->mStream, data->mVolume, data->mIO); |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 1923 | ul.unlock(); |
Eric Laurent | de07013 | 2010-07-13 04:45:46 -0700 | [diff] [blame] | 1924 | command->mStatus = AudioSystem::setStreamVolume(data->mStream, |
| 1925 | data->mVolume, |
| 1926 | data->mIO); |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 1927 | ul.lock(); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 1928 | }break; |
| 1929 | case SET_PARAMETERS: { |
Eric Laurent | 0ede892 | 2014-05-09 18:04:42 -0700 | [diff] [blame] | 1930 | ParametersData *data = (ParametersData *)command->mParam.get(); |
Glenn Kasten | e53b9ea | 2012-03-12 16:29:55 -0700 | [diff] [blame] | 1931 | ALOGV("AudioCommandThread() processing set parameters string %s, io %d", |
Tomasz Wasilczyk | 833345b | 2023-08-15 20:59:35 +0000 | [diff] [blame] | 1932 | data->mKeyValuePairs.c_str(), data->mIO); |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 1933 | ul.unlock(); |
Glenn Kasten | e53b9ea | 2012-03-12 16:29:55 -0700 | [diff] [blame] | 1934 | command->mStatus = AudioSystem::setParameters(data->mIO, data->mKeyValuePairs); |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 1935 | ul.lock(); |
Glenn Kasten | e53b9ea | 2012-03-12 16:29:55 -0700 | [diff] [blame] | 1936 | }break; |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 1937 | case SET_VOICE_VOLUME: { |
Eric Laurent | 0ede892 | 2014-05-09 18:04:42 -0700 | [diff] [blame] | 1938 | VoiceVolumeData *data = (VoiceVolumeData *)command->mParam.get(); |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 1939 | ALOGV("AudioCommandThread() processing set voice volume volume %f", |
Eric Laurent | de07013 | 2010-07-13 04:45:46 -0700 | [diff] [blame] | 1940 | data->mVolume); |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 1941 | ul.unlock(); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 1942 | command->mStatus = AudioSystem::setVoiceVolume(data->mVolume); |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 1943 | ul.lock(); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 1944 | }break; |
Eric Laurent | bfb1b83 | 2013-01-07 09:53:42 -0800 | [diff] [blame] | 1945 | case STOP_OUTPUT: { |
Eric Laurent | 0ede892 | 2014-05-09 18:04:42 -0700 | [diff] [blame] | 1946 | StopOutputData *data = (StopOutputData *)command->mParam.get(); |
Eric Laurent | d7fe086 | 2018-07-14 16:48:01 -0700 | [diff] [blame] | 1947 | ALOGV("AudioCommandThread() processing stop output portId %d", |
| 1948 | data->mPortId); |
Eric Laurent | 59a8923 | 2014-06-08 14:14:17 -0700 | [diff] [blame] | 1949 | svc = mService.promote(); |
Eric Laurent | bfb1b83 | 2013-01-07 09:53:42 -0800 | [diff] [blame] | 1950 | if (svc == 0) { |
| 1951 | break; |
| 1952 | } |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 1953 | ul.unlock(); |
Eric Laurent | d7fe086 | 2018-07-14 16:48:01 -0700 | [diff] [blame] | 1954 | svc->doStopOutput(data->mPortId); |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 1955 | ul.lock(); |
Eric Laurent | bfb1b83 | 2013-01-07 09:53:42 -0800 | [diff] [blame] | 1956 | }break; |
| 1957 | case RELEASE_OUTPUT: { |
Eric Laurent | 0ede892 | 2014-05-09 18:04:42 -0700 | [diff] [blame] | 1958 | ReleaseOutputData *data = (ReleaseOutputData *)command->mParam.get(); |
Eric Laurent | d7fe086 | 2018-07-14 16:48:01 -0700 | [diff] [blame] | 1959 | ALOGV("AudioCommandThread() processing release output portId %d", |
| 1960 | data->mPortId); |
Eric Laurent | 59a8923 | 2014-06-08 14:14:17 -0700 | [diff] [blame] | 1961 | svc = mService.promote(); |
Eric Laurent | bfb1b83 | 2013-01-07 09:53:42 -0800 | [diff] [blame] | 1962 | if (svc == 0) { |
| 1963 | break; |
| 1964 | } |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 1965 | ul.unlock(); |
Eric Laurent | d7fe086 | 2018-07-14 16:48:01 -0700 | [diff] [blame] | 1966 | svc->doReleaseOutput(data->mPortId); |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 1967 | ul.lock(); |
Eric Laurent | bfb1b83 | 2013-01-07 09:53:42 -0800 | [diff] [blame] | 1968 | }break; |
Eric Laurent | 951f455 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 1969 | case CREATE_AUDIO_PATCH: { |
| 1970 | CreateAudioPatchData *data = (CreateAudioPatchData *)command->mParam.get(); |
| 1971 | ALOGV("AudioCommandThread() processing create audio patch"); |
| 1972 | sp<IAudioFlinger> af = AudioSystem::get_audio_flinger(); |
| 1973 | if (af == 0) { |
| 1974 | command->mStatus = PERMISSION_DENIED; |
| 1975 | } else { |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 1976 | ul.unlock(); |
Eric Laurent | 951f455 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 1977 | command->mStatus = af->createAudioPatch(&data->mPatch, &data->mHandle); |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 1978 | ul.lock(); |
Eric Laurent | 951f455 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 1979 | } |
| 1980 | } break; |
| 1981 | case RELEASE_AUDIO_PATCH: { |
| 1982 | ReleaseAudioPatchData *data = (ReleaseAudioPatchData *)command->mParam.get(); |
| 1983 | ALOGV("AudioCommandThread() processing release audio patch"); |
| 1984 | sp<IAudioFlinger> af = AudioSystem::get_audio_flinger(); |
| 1985 | if (af == 0) { |
| 1986 | command->mStatus = PERMISSION_DENIED; |
| 1987 | } else { |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 1988 | ul.unlock(); |
Eric Laurent | 951f455 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 1989 | command->mStatus = af->releaseAudioPatch(data->mHandle); |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 1990 | ul.lock(); |
Eric Laurent | 951f455 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 1991 | } |
| 1992 | } break; |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 1993 | case UPDATE_AUDIOPORT_LIST: { |
| 1994 | ALOGV("AudioCommandThread() processing update audio port list"); |
Eric Laurent | 59a8923 | 2014-06-08 14:14:17 -0700 | [diff] [blame] | 1995 | svc = mService.promote(); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 1996 | if (svc == 0) { |
| 1997 | break; |
| 1998 | } |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 1999 | ul.unlock(); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 2000 | svc->doOnAudioPortListUpdate(); |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 2001 | ul.lock(); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 2002 | }break; |
| 2003 | case UPDATE_AUDIOPATCH_LIST: { |
| 2004 | ALOGV("AudioCommandThread() processing update audio patch list"); |
Eric Laurent | 59a8923 | 2014-06-08 14:14:17 -0700 | [diff] [blame] | 2005 | svc = mService.promote(); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 2006 | if (svc == 0) { |
| 2007 | break; |
| 2008 | } |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 2009 | ul.unlock(); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 2010 | svc->doOnAudioPatchListUpdate(); |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 2011 | ul.lock(); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 2012 | }break; |
François Gaffie | cfe1732 | 2018-11-07 13:41:29 +0100 | [diff] [blame] | 2013 | case CHANGED_AUDIOVOLUMEGROUP: { |
| 2014 | AudioVolumeGroupData *data = |
| 2015 | static_cast<AudioVolumeGroupData *>(command->mParam.get()); |
| 2016 | ALOGV("AudioCommandThread() processing update audio volume group"); |
| 2017 | svc = mService.promote(); |
| 2018 | if (svc == 0) { |
| 2019 | break; |
| 2020 | } |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 2021 | ul.unlock(); |
François Gaffie | cfe1732 | 2018-11-07 13:41:29 +0100 | [diff] [blame] | 2022 | svc->doOnAudioVolumeGroupChanged(data->mGroup, data->mFlags); |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 2023 | ul.lock(); |
François Gaffie | cfe1732 | 2018-11-07 13:41:29 +0100 | [diff] [blame] | 2024 | }break; |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 2025 | case SET_AUDIOPORT_CONFIG: { |
| 2026 | SetAudioPortConfigData *data = (SetAudioPortConfigData *)command->mParam.get(); |
| 2027 | ALOGV("AudioCommandThread() processing set port config"); |
| 2028 | sp<IAudioFlinger> af = AudioSystem::get_audio_flinger(); |
| 2029 | if (af == 0) { |
| 2030 | command->mStatus = PERMISSION_DENIED; |
| 2031 | } else { |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 2032 | ul.unlock(); |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 2033 | command->mStatus = af->setAudioPortConfig(&data->mConfig); |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 2034 | ul.lock(); |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 2035 | } |
| 2036 | } break; |
Jean-Michel Trivi | de80105 | 2015-04-14 19:10:14 -0700 | [diff] [blame] | 2037 | case DYN_POLICY_MIX_STATE_UPDATE: { |
| 2038 | DynPolicyMixStateUpdateData *data = |
| 2039 | (DynPolicyMixStateUpdateData *)command->mParam.get(); |
Jean-Michel Trivi | de80105 | 2015-04-14 19:10:14 -0700 | [diff] [blame] | 2040 | ALOGV("AudioCommandThread() processing dyn policy mix state update %s %d", |
Tomasz Wasilczyk | 833345b | 2023-08-15 20:59:35 +0000 | [diff] [blame] | 2041 | data->mRegId.c_str(), data->mState); |
Jean-Michel Trivi | de80105 | 2015-04-14 19:10:14 -0700 | [diff] [blame] | 2042 | svc = mService.promote(); |
| 2043 | if (svc == 0) { |
| 2044 | break; |
| 2045 | } |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 2046 | ul.unlock(); |
Jean-Michel Trivi | de80105 | 2015-04-14 19:10:14 -0700 | [diff] [blame] | 2047 | svc->doOnDynamicPolicyMixStateUpdate(data->mRegId, data->mState); |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 2048 | ul.lock(); |
Jean-Michel Trivi | de80105 | 2015-04-14 19:10:14 -0700 | [diff] [blame] | 2049 | } break; |
Jean-Michel Trivi | 2f4fe9f | 2015-12-04 16:20:59 -0800 | [diff] [blame] | 2050 | case RECORDING_CONFIGURATION_UPDATE: { |
| 2051 | RecordingConfigurationUpdateData *data = |
| 2052 | (RecordingConfigurationUpdateData *)command->mParam.get(); |
| 2053 | ALOGV("AudioCommandThread() processing recording configuration update"); |
| 2054 | svc = mService.promote(); |
| 2055 | if (svc == 0) { |
| 2056 | break; |
| 2057 | } |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 2058 | ul.unlock(); |
Jean-Michel Trivi | ac4e429 | 2016-12-22 11:39:31 -0800 | [diff] [blame] | 2059 | svc->doOnRecordingConfigurationUpdate(data->mEvent, &data->mClientInfo, |
Eric Laurent | a9f8665 | 2018-11-28 17:23:11 -0800 | [diff] [blame] | 2060 | &data->mClientConfig, data->mClientEffects, |
| 2061 | &data->mDeviceConfig, data->mEffects, |
| 2062 | data->mPatchHandle, data->mSource); |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 2063 | ul.lock(); |
Jean-Michel Trivi | 2f4fe9f | 2015-12-04 16:20:59 -0800 | [diff] [blame] | 2064 | } break; |
Eric Laurent | b20cf7d | 2019-04-05 19:37:34 -0700 | [diff] [blame] | 2065 | case SET_EFFECT_SUSPENDED: { |
| 2066 | SetEffectSuspendedData *data = (SetEffectSuspendedData *)command->mParam.get(); |
| 2067 | ALOGV("AudioCommandThread() processing set effect suspended"); |
| 2068 | sp<IAudioFlinger> af = AudioSystem::get_audio_flinger(); |
| 2069 | if (af != 0) { |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 2070 | ul.unlock(); |
Eric Laurent | b20cf7d | 2019-04-05 19:37:34 -0700 | [diff] [blame] | 2071 | af->setEffectSuspended(data->mEffectId, data->mSessionId, data->mSuspended); |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 2072 | ul.lock(); |
Eric Laurent | b20cf7d | 2019-04-05 19:37:34 -0700 | [diff] [blame] | 2073 | } |
| 2074 | } break; |
Mikhail Naganov | 88b30d2 | 2020-03-09 19:43:13 +0000 | [diff] [blame] | 2075 | case AUDIO_MODULES_UPDATE: { |
| 2076 | ALOGV("AudioCommandThread() processing audio modules update"); |
| 2077 | svc = mService.promote(); |
| 2078 | if (svc == 0) { |
| 2079 | break; |
| 2080 | } |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 2081 | ul.unlock(); |
Mikhail Naganov | 88b30d2 | 2020-03-09 19:43:13 +0000 | [diff] [blame] | 2082 | svc->doOnNewAudioModulesAvailable(); |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 2083 | ul.lock(); |
Mikhail Naganov | 88b30d2 | 2020-03-09 19:43:13 +0000 | [diff] [blame] | 2084 | } break; |
Jean-Michel Trivi | 9a6b9ad | 2020-10-22 16:46:43 -0700 | [diff] [blame] | 2085 | case ROUTING_UPDATED: { |
| 2086 | ALOGV("AudioCommandThread() processing routing update"); |
| 2087 | svc = mService.promote(); |
| 2088 | if (svc == 0) { |
| 2089 | break; |
| 2090 | } |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 2091 | ul.unlock(); |
Jean-Michel Trivi | 9a6b9ad | 2020-10-22 16:46:43 -0700 | [diff] [blame] | 2092 | svc->doOnRoutingUpdated(); |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 2093 | ul.lock(); |
Jean-Michel Trivi | 9a6b9ad | 2020-10-22 16:46:43 -0700 | [diff] [blame] | 2094 | } break; |
Eric Laurent | b20cf7d | 2019-04-05 19:37:34 -0700 | [diff] [blame] | 2095 | |
Eric Laurent | ed726cc | 2021-07-01 14:26:41 +0200 | [diff] [blame] | 2096 | case UPDATE_UID_STATES: { |
| 2097 | ALOGV("AudioCommandThread() processing updateUID states"); |
| 2098 | svc = mService.promote(); |
| 2099 | if (svc == 0) { |
| 2100 | break; |
| 2101 | } |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 2102 | ul.unlock(); |
Eric Laurent | ed726cc | 2021-07-01 14:26:41 +0200 | [diff] [blame] | 2103 | svc->updateUidStates(); |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 2104 | ul.lock(); |
Eric Laurent | ed726cc | 2021-07-01 14:26:41 +0200 | [diff] [blame] | 2105 | } break; |
| 2106 | |
Eric Laurent | 1590359 | 2022-02-24 20:44:36 +0100 | [diff] [blame] | 2107 | case CHECK_SPATIALIZER_OUTPUT: { |
| 2108 | ALOGV("AudioCommandThread() processing check spatializer"); |
Eric Laurent | 81dd0f5 | 2021-07-05 11:54:40 +0200 | [diff] [blame] | 2109 | svc = mService.promote(); |
| 2110 | if (svc == 0) { |
| 2111 | break; |
| 2112 | } |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 2113 | ul.unlock(); |
Eric Laurent | 81dd0f5 | 2021-07-05 11:54:40 +0200 | [diff] [blame] | 2114 | svc->doOnCheckSpatializer(); |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 2115 | ul.lock(); |
Eric Laurent | 81dd0f5 | 2021-07-05 11:54:40 +0200 | [diff] [blame] | 2116 | } break; |
| 2117 | |
Eric Laurent | 1590359 | 2022-02-24 20:44:36 +0100 | [diff] [blame] | 2118 | case UPDATE_ACTIVE_SPATIALIZER_TRACKS: { |
| 2119 | ALOGV("AudioCommandThread() processing update spatializer tracks"); |
| 2120 | svc = mService.promote(); |
| 2121 | if (svc == 0) { |
| 2122 | break; |
| 2123 | } |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 2124 | ul.unlock(); |
Eric Laurent | 1590359 | 2022-02-24 20:44:36 +0100 | [diff] [blame] | 2125 | svc->doOnUpdateActiveSpatializerTracks(); |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 2126 | ul.lock(); |
Eric Laurent | 1590359 | 2022-02-24 20:44:36 +0100 | [diff] [blame] | 2127 | } break; |
| 2128 | |
Jean-Michel Trivi | 78f2b30 | 2022-04-15 18:18:41 +0000 | [diff] [blame] | 2129 | case VOL_RANGE_INIT_REQUEST: { |
| 2130 | ALOGV("AudioCommandThread() processing volume range init request"); |
| 2131 | svc = mService.promote(); |
| 2132 | if (svc == 0) { |
| 2133 | break; |
| 2134 | } |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 2135 | ul.unlock(); |
Jean-Michel Trivi | 78f2b30 | 2022-04-15 18:18:41 +0000 | [diff] [blame] | 2136 | svc->doOnVolumeRangeInitRequest(); |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 2137 | ul.lock(); |
Jean-Michel Trivi | 78f2b30 | 2022-04-15 18:18:41 +0000 | [diff] [blame] | 2138 | } break; |
| 2139 | |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2140 | default: |
Steve Block | 5ff1dd5 | 2012-01-05 23:22:43 +0000 | [diff] [blame] | 2141 | ALOGW("AudioCommandThread() unknown command %d", command->mCommand); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2142 | } |
Eric Laurent | 0ede892 | 2014-05-09 18:04:42 -0700 | [diff] [blame] | 2143 | { |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 2144 | audio_utils::lock_guard _l(command->mMutex); |
Eric Laurent | 0ede892 | 2014-05-09 18:04:42 -0700 | [diff] [blame] | 2145 | if (command->mWaitStatus) { |
| 2146 | command->mWaitStatus = false; |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 2147 | command->mCond.notify_one(); |
Eric Laurent | 0ede892 | 2014-05-09 18:04:42 -0700 | [diff] [blame] | 2148 | } |
| 2149 | } |
Eric Laurent | d7eda8d | 2016-02-02 17:18:39 -0800 | [diff] [blame] | 2150 | waitTime = -1; |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 2151 | // release ul before releasing strong reference on the service as |
Zach Jang | a754b4f | 2015-10-27 01:29:34 +0000 | [diff] [blame] | 2152 | // AudioPolicyService destructor calls AudioCommandThread::exit() which |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 2153 | // acquires ul. |
| 2154 | ul.unlock(); |
Zach Jang | a754b4f | 2015-10-27 01:29:34 +0000 | [diff] [blame] | 2155 | svc.clear(); |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 2156 | ul.lock(); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2157 | } else { |
| 2158 | waitTime = mAudioCommands[0]->mTime - curTime; |
| 2159 | break; |
| 2160 | } |
| 2161 | } |
Zach Jang | a754b4f | 2015-10-27 01:29:34 +0000 | [diff] [blame] | 2162 | |
Ytai Ben-Tsvi | 6958b02 | 2022-04-26 15:45:53 -0700 | [diff] [blame] | 2163 | // release delayed commands wake lock as many times as we made the queue is |
| 2164 | // empty during popping. |
| 2165 | while (numTimesBecameEmpty--) { |
Tomasz Wasilczyk | 833345b | 2023-08-15 20:59:35 +0000 | [diff] [blame] | 2166 | release_wake_lock(mName.c_str()); |
Zach Jang | a754b4f | 2015-10-27 01:29:34 +0000 | [diff] [blame] | 2167 | } |
| 2168 | |
| 2169 | // At this stage we have either an empty command queue or the first command in the queue |
| 2170 | // has a finite delay. So unless we are exiting it is safe to wait. |
| 2171 | if (!exitPending()) { |
Eric Laurent | 59a8923 | 2014-06-08 14:14:17 -0700 | [diff] [blame] | 2172 | ALOGV("AudioCommandThread() going to sleep"); |
Eric Laurent | d7eda8d | 2016-02-02 17:18:39 -0800 | [diff] [blame] | 2173 | if (waitTime == -1) { |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 2174 | mWaitWorkCV.wait(ul); |
Eric Laurent | d7eda8d | 2016-02-02 17:18:39 -0800 | [diff] [blame] | 2175 | } else { |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 2176 | // discard return value. |
| 2177 | mWaitWorkCV.wait_for(ul, std::chrono::nanoseconds(waitTime)); |
Eric Laurent | d7eda8d | 2016-02-02 17:18:39 -0800 | [diff] [blame] | 2178 | } |
Eric Laurent | 59a8923 | 2014-06-08 14:14:17 -0700 | [diff] [blame] | 2179 | } |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2180 | } |
Ricardo Garcia | 05f2fdc | 2014-07-24 15:48:24 -0700 | [diff] [blame] | 2181 | // release delayed commands wake lock before quitting |
| 2182 | if (!mAudioCommands.isEmpty()) { |
Tomasz Wasilczyk | 833345b | 2023-08-15 20:59:35 +0000 | [diff] [blame] | 2183 | release_wake_lock(mName.c_str()); |
Ricardo Garcia | 05f2fdc | 2014-07-24 15:48:24 -0700 | [diff] [blame] | 2184 | } |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2185 | return false; |
| 2186 | } |
| 2187 | |
| 2188 | status_t AudioPolicyService::AudioCommandThread::dump(int fd) |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 2189 | NO_THREAD_SAFETY_ANALYSIS // trylock |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2190 | { |
| 2191 | const size_t SIZE = 256; |
| 2192 | char buffer[SIZE]; |
| 2193 | String8 result; |
| 2194 | |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 2195 | const bool locked = mMutex.try_lock(kDumpLockTimeoutNs); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2196 | if (!locked) { |
| 2197 | String8 result2(kCmdDeadlockedString); |
Tomasz Wasilczyk | 833345b | 2023-08-15 20:59:35 +0000 | [diff] [blame] | 2198 | write(fd, result2.c_str(), result2.size()); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2199 | } |
| 2200 | |
| 2201 | snprintf(buffer, SIZE, "- Commands:\n"); |
| 2202 | result = String8(buffer); |
| 2203 | result.append(" Command Time Wait pParam\n"); |
Glenn Kasten | 8d6a244 | 2012-02-08 14:04:28 -0800 | [diff] [blame] | 2204 | for (size_t i = 0; i < mAudioCommands.size(); i++) { |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2205 | mAudioCommands[i]->dump(buffer, SIZE); |
| 2206 | result.append(buffer); |
| 2207 | } |
| 2208 | result.append(" Last Command\n"); |
Eric Laurent | 0ede892 | 2014-05-09 18:04:42 -0700 | [diff] [blame] | 2209 | if (mLastCommand != 0) { |
| 2210 | mLastCommand->dump(buffer, SIZE); |
| 2211 | result.append(buffer); |
| 2212 | } else { |
| 2213 | result.append(" none\n"); |
| 2214 | } |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2215 | |
Tomasz Wasilczyk | 833345b | 2023-08-15 20:59:35 +0000 | [diff] [blame] | 2216 | write(fd, result.c_str(), result.size()); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2217 | |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 2218 | dumpReleaseLock(mMutex, locked); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2219 | |
| 2220 | return NO_ERROR; |
| 2221 | } |
| 2222 | |
Glenn Kasten | fff6d71 | 2012-01-12 16:38:12 -0800 | [diff] [blame] | 2223 | status_t AudioPolicyService::AudioCommandThread::volumeCommand(audio_stream_type_t stream, |
Eric Laurent | de07013 | 2010-07-13 04:45:46 -0700 | [diff] [blame] | 2224 | float volume, |
Glenn Kasten | 72ef00d | 2012-01-17 11:09:42 -0800 | [diff] [blame] | 2225 | audio_io_handle_t output, |
Eric Laurent | de07013 | 2010-07-13 04:45:46 -0700 | [diff] [blame] | 2226 | int delayMs) |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2227 | { |
Eric Laurent | 0ede892 | 2014-05-09 18:04:42 -0700 | [diff] [blame] | 2228 | sp<AudioCommand> command = new AudioCommand(); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2229 | command->mCommand = SET_VOLUME; |
Eric Laurent | 0ede892 | 2014-05-09 18:04:42 -0700 | [diff] [blame] | 2230 | sp<VolumeData> data = new VolumeData(); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2231 | data->mStream = stream; |
| 2232 | data->mVolume = volume; |
| 2233 | data->mIO = output; |
| 2234 | command->mParam = data; |
Eric Laurent | 0ede892 | 2014-05-09 18:04:42 -0700 | [diff] [blame] | 2235 | command->mWaitStatus = true; |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 2236 | ALOGV("AudioCommandThread() adding set volume stream %d, volume %f, output %d", |
Eric Laurent | de07013 | 2010-07-13 04:45:46 -0700 | [diff] [blame] | 2237 | stream, volume, output); |
Eric Laurent | 0ede892 | 2014-05-09 18:04:42 -0700 | [diff] [blame] | 2238 | return sendCommand(command, delayMs); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2239 | } |
| 2240 | |
Glenn Kasten | 72ef00d | 2012-01-17 11:09:42 -0800 | [diff] [blame] | 2241 | status_t AudioPolicyService::AudioCommandThread::parametersCommand(audio_io_handle_t ioHandle, |
Dima Zavin | fce7a47 | 2011-04-19 22:30:36 -0700 | [diff] [blame] | 2242 | const char *keyValuePairs, |
Eric Laurent | de07013 | 2010-07-13 04:45:46 -0700 | [diff] [blame] | 2243 | int delayMs) |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2244 | { |
Eric Laurent | 0ede892 | 2014-05-09 18:04:42 -0700 | [diff] [blame] | 2245 | sp<AudioCommand> command = new AudioCommand(); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2246 | command->mCommand = SET_PARAMETERS; |
Eric Laurent | 0ede892 | 2014-05-09 18:04:42 -0700 | [diff] [blame] | 2247 | sp<ParametersData> data = new ParametersData(); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2248 | data->mIO = ioHandle; |
Dima Zavin | fce7a47 | 2011-04-19 22:30:36 -0700 | [diff] [blame] | 2249 | data->mKeyValuePairs = String8(keyValuePairs); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2250 | command->mParam = data; |
Eric Laurent | 0ede892 | 2014-05-09 18:04:42 -0700 | [diff] [blame] | 2251 | command->mWaitStatus = true; |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 2252 | ALOGV("AudioCommandThread() adding set parameter string %s, io %d ,delay %d", |
Dima Zavin | fce7a47 | 2011-04-19 22:30:36 -0700 | [diff] [blame] | 2253 | keyValuePairs, ioHandle, delayMs); |
Eric Laurent | 0ede892 | 2014-05-09 18:04:42 -0700 | [diff] [blame] | 2254 | return sendCommand(command, delayMs); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2255 | } |
| 2256 | |
| 2257 | status_t AudioPolicyService::AudioCommandThread::voiceVolumeCommand(float volume, int delayMs) |
| 2258 | { |
Eric Laurent | 0ede892 | 2014-05-09 18:04:42 -0700 | [diff] [blame] | 2259 | sp<AudioCommand> command = new AudioCommand(); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2260 | command->mCommand = SET_VOICE_VOLUME; |
Eric Laurent | 0ede892 | 2014-05-09 18:04:42 -0700 | [diff] [blame] | 2261 | sp<VoiceVolumeData> data = new VoiceVolumeData(); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2262 | data->mVolume = volume; |
| 2263 | command->mParam = data; |
Eric Laurent | 0ede892 | 2014-05-09 18:04:42 -0700 | [diff] [blame] | 2264 | command->mWaitStatus = true; |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 2265 | ALOGV("AudioCommandThread() adding set voice volume volume %f", volume); |
Eric Laurent | 0ede892 | 2014-05-09 18:04:42 -0700 | [diff] [blame] | 2266 | return sendCommand(command, delayMs); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2267 | } |
| 2268 | |
Eric Laurent | b20cf7d | 2019-04-05 19:37:34 -0700 | [diff] [blame] | 2269 | void AudioPolicyService::AudioCommandThread::setEffectSuspendedCommand(int effectId, |
| 2270 | audio_session_t sessionId, |
| 2271 | bool suspended) |
| 2272 | { |
| 2273 | sp<AudioCommand> command = new AudioCommand(); |
| 2274 | command->mCommand = SET_EFFECT_SUSPENDED; |
| 2275 | sp<SetEffectSuspendedData> data = new SetEffectSuspendedData(); |
| 2276 | data->mEffectId = effectId; |
| 2277 | data->mSessionId = sessionId; |
| 2278 | data->mSuspended = suspended; |
| 2279 | command->mParam = data; |
| 2280 | ALOGV("AudioCommandThread() adding set suspended effectId %d sessionId %d suspended %d", |
| 2281 | effectId, sessionId, suspended); |
| 2282 | sendCommand(command); |
| 2283 | } |
| 2284 | |
| 2285 | |
Eric Laurent | d7fe086 | 2018-07-14 16:48:01 -0700 | [diff] [blame] | 2286 | void AudioPolicyService::AudioCommandThread::stopOutputCommand(audio_port_handle_t portId) |
Eric Laurent | bfb1b83 | 2013-01-07 09:53:42 -0800 | [diff] [blame] | 2287 | { |
Eric Laurent | 0ede892 | 2014-05-09 18:04:42 -0700 | [diff] [blame] | 2288 | sp<AudioCommand> command = new AudioCommand(); |
Eric Laurent | bfb1b83 | 2013-01-07 09:53:42 -0800 | [diff] [blame] | 2289 | command->mCommand = STOP_OUTPUT; |
Eric Laurent | 0ede892 | 2014-05-09 18:04:42 -0700 | [diff] [blame] | 2290 | sp<StopOutputData> data = new StopOutputData(); |
Eric Laurent | d7fe086 | 2018-07-14 16:48:01 -0700 | [diff] [blame] | 2291 | data->mPortId = portId; |
Jesper Tragardh | 48412dc | 2014-03-24 14:12:43 +0100 | [diff] [blame] | 2292 | command->mParam = data; |
Eric Laurent | d7fe086 | 2018-07-14 16:48:01 -0700 | [diff] [blame] | 2293 | ALOGV("AudioCommandThread() adding stop output portId %d", portId); |
Eric Laurent | 0ede892 | 2014-05-09 18:04:42 -0700 | [diff] [blame] | 2294 | sendCommand(command); |
Eric Laurent | bfb1b83 | 2013-01-07 09:53:42 -0800 | [diff] [blame] | 2295 | } |
| 2296 | |
Eric Laurent | d7fe086 | 2018-07-14 16:48:01 -0700 | [diff] [blame] | 2297 | void AudioPolicyService::AudioCommandThread::releaseOutputCommand(audio_port_handle_t portId) |
Eric Laurent | bfb1b83 | 2013-01-07 09:53:42 -0800 | [diff] [blame] | 2298 | { |
Eric Laurent | 0ede892 | 2014-05-09 18:04:42 -0700 | [diff] [blame] | 2299 | sp<AudioCommand> command = new AudioCommand(); |
Eric Laurent | bfb1b83 | 2013-01-07 09:53:42 -0800 | [diff] [blame] | 2300 | command->mCommand = RELEASE_OUTPUT; |
Eric Laurent | 0ede892 | 2014-05-09 18:04:42 -0700 | [diff] [blame] | 2301 | sp<ReleaseOutputData> data = new ReleaseOutputData(); |
Eric Laurent | d7fe086 | 2018-07-14 16:48:01 -0700 | [diff] [blame] | 2302 | data->mPortId = portId; |
Jesper Tragardh | 48412dc | 2014-03-24 14:12:43 +0100 | [diff] [blame] | 2303 | command->mParam = data; |
Eric Laurent | d7fe086 | 2018-07-14 16:48:01 -0700 | [diff] [blame] | 2304 | ALOGV("AudioCommandThread() adding release output portId %d", portId); |
Eric Laurent | 0ede892 | 2014-05-09 18:04:42 -0700 | [diff] [blame] | 2305 | sendCommand(command); |
| 2306 | } |
| 2307 | |
Eric Laurent | 951f455 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 2308 | status_t AudioPolicyService::AudioCommandThread::createAudioPatchCommand( |
| 2309 | const struct audio_patch *patch, |
| 2310 | audio_patch_handle_t *handle, |
| 2311 | int delayMs) |
| 2312 | { |
| 2313 | status_t status = NO_ERROR; |
| 2314 | |
| 2315 | sp<AudioCommand> command = new AudioCommand(); |
| 2316 | command->mCommand = CREATE_AUDIO_PATCH; |
| 2317 | CreateAudioPatchData *data = new CreateAudioPatchData(); |
| 2318 | data->mPatch = *patch; |
| 2319 | data->mHandle = *handle; |
| 2320 | command->mParam = data; |
| 2321 | command->mWaitStatus = true; |
| 2322 | ALOGV("AudioCommandThread() adding create patch delay %d", delayMs); |
| 2323 | status = sendCommand(command, delayMs); |
| 2324 | if (status == NO_ERROR) { |
| 2325 | *handle = data->mHandle; |
| 2326 | } |
| 2327 | return status; |
| 2328 | } |
| 2329 | |
| 2330 | status_t AudioPolicyService::AudioCommandThread::releaseAudioPatchCommand(audio_patch_handle_t handle, |
| 2331 | int delayMs) |
| 2332 | { |
| 2333 | sp<AudioCommand> command = new AudioCommand(); |
| 2334 | command->mCommand = RELEASE_AUDIO_PATCH; |
| 2335 | ReleaseAudioPatchData *data = new ReleaseAudioPatchData(); |
| 2336 | data->mHandle = handle; |
| 2337 | command->mParam = data; |
| 2338 | command->mWaitStatus = true; |
| 2339 | ALOGV("AudioCommandThread() adding release patch delay %d", delayMs); |
| 2340 | return sendCommand(command, delayMs); |
| 2341 | } |
| 2342 | |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 2343 | void AudioPolicyService::AudioCommandThread::updateAudioPortListCommand() |
| 2344 | { |
| 2345 | sp<AudioCommand> command = new AudioCommand(); |
| 2346 | command->mCommand = UPDATE_AUDIOPORT_LIST; |
| 2347 | ALOGV("AudioCommandThread() adding update audio port list"); |
| 2348 | sendCommand(command); |
| 2349 | } |
| 2350 | |
Eric Laurent | ed726cc | 2021-07-01 14:26:41 +0200 | [diff] [blame] | 2351 | void AudioPolicyService::AudioCommandThread::updateUidStatesCommand() |
| 2352 | { |
| 2353 | sp<AudioCommand> command = new AudioCommand(); |
| 2354 | command->mCommand = UPDATE_UID_STATES; |
| 2355 | ALOGV("AudioCommandThread() adding update UID states"); |
| 2356 | sendCommand(command); |
| 2357 | } |
| 2358 | |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 2359 | void AudioPolicyService::AudioCommandThread::updateAudioPatchListCommand() |
| 2360 | { |
| 2361 | sp<AudioCommand>command = new AudioCommand(); |
| 2362 | command->mCommand = UPDATE_AUDIOPATCH_LIST; |
| 2363 | ALOGV("AudioCommandThread() adding update audio patch list"); |
| 2364 | sendCommand(command); |
| 2365 | } |
| 2366 | |
François Gaffie | cfe1732 | 2018-11-07 13:41:29 +0100 | [diff] [blame] | 2367 | void AudioPolicyService::AudioCommandThread::changeAudioVolumeGroupCommand(volume_group_t group, |
| 2368 | int flags) |
| 2369 | { |
| 2370 | sp<AudioCommand>command = new AudioCommand(); |
| 2371 | command->mCommand = CHANGED_AUDIOVOLUMEGROUP; |
| 2372 | AudioVolumeGroupData *data= new AudioVolumeGroupData(); |
| 2373 | data->mGroup = group; |
| 2374 | data->mFlags = flags; |
| 2375 | command->mParam = data; |
| 2376 | ALOGV("AudioCommandThread() adding audio volume group changed"); |
| 2377 | sendCommand(command); |
| 2378 | } |
| 2379 | |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 2380 | status_t AudioPolicyService::AudioCommandThread::setAudioPortConfigCommand( |
| 2381 | const struct audio_port_config *config, int delayMs) |
| 2382 | { |
| 2383 | sp<AudioCommand> command = new AudioCommand(); |
| 2384 | command->mCommand = SET_AUDIOPORT_CONFIG; |
| 2385 | SetAudioPortConfigData *data = new SetAudioPortConfigData(); |
| 2386 | data->mConfig = *config; |
| 2387 | command->mParam = data; |
| 2388 | command->mWaitStatus = true; |
| 2389 | ALOGV("AudioCommandThread() adding set port config delay %d", delayMs); |
| 2390 | return sendCommand(command, delayMs); |
| 2391 | } |
| 2392 | |
Jean-Michel Trivi | de80105 | 2015-04-14 19:10:14 -0700 | [diff] [blame] | 2393 | void AudioPolicyService::AudioCommandThread::dynamicPolicyMixStateUpdateCommand( |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 2394 | const String8& regId, int32_t state) |
Jean-Michel Trivi | de80105 | 2015-04-14 19:10:14 -0700 | [diff] [blame] | 2395 | { |
| 2396 | sp<AudioCommand> command = new AudioCommand(); |
| 2397 | command->mCommand = DYN_POLICY_MIX_STATE_UPDATE; |
| 2398 | DynPolicyMixStateUpdateData *data = new DynPolicyMixStateUpdateData(); |
| 2399 | data->mRegId = regId; |
| 2400 | data->mState = state; |
| 2401 | command->mParam = data; |
| 2402 | ALOGV("AudioCommandThread() sending dynamic policy mix (id=%s) state update to %d", |
Tomasz Wasilczyk | 833345b | 2023-08-15 20:59:35 +0000 | [diff] [blame] | 2403 | regId.c_str(), state); |
Jean-Michel Trivi | de80105 | 2015-04-14 19:10:14 -0700 | [diff] [blame] | 2404 | sendCommand(command); |
| 2405 | } |
| 2406 | |
Jean-Michel Trivi | 2f4fe9f | 2015-12-04 16:20:59 -0800 | [diff] [blame] | 2407 | void AudioPolicyService::AudioCommandThread::recordingConfigurationUpdateCommand( |
Eric Laurent | a9f8665 | 2018-11-28 17:23:11 -0800 | [diff] [blame] | 2408 | int event, |
| 2409 | const record_client_info_t *clientInfo, |
| 2410 | const audio_config_base_t *clientConfig, |
| 2411 | std::vector<effect_descriptor_t> clientEffects, |
| 2412 | const audio_config_base_t *deviceConfig, |
| 2413 | std::vector<effect_descriptor_t> effects, |
| 2414 | audio_patch_handle_t patchHandle, |
| 2415 | audio_source_t source) |
Jean-Michel Trivi | 2f4fe9f | 2015-12-04 16:20:59 -0800 | [diff] [blame] | 2416 | { |
| 2417 | sp<AudioCommand>command = new AudioCommand(); |
| 2418 | command->mCommand = RECORDING_CONFIGURATION_UPDATE; |
| 2419 | RecordingConfigurationUpdateData *data = new RecordingConfigurationUpdateData(); |
| 2420 | data->mEvent = event; |
Jean-Michel Trivi | ac4e429 | 2016-12-22 11:39:31 -0800 | [diff] [blame] | 2421 | data->mClientInfo = *clientInfo; |
Jean-Michel Trivi | 7281aa9 | 2016-02-17 15:33:40 -0800 | [diff] [blame] | 2422 | data->mClientConfig = *clientConfig; |
Eric Laurent | a9f8665 | 2018-11-28 17:23:11 -0800 | [diff] [blame] | 2423 | data->mClientEffects = clientEffects; |
Jean-Michel Trivi | 7281aa9 | 2016-02-17 15:33:40 -0800 | [diff] [blame] | 2424 | data->mDeviceConfig = *deviceConfig; |
Eric Laurent | a9f8665 | 2018-11-28 17:23:11 -0800 | [diff] [blame] | 2425 | data->mEffects = effects; |
Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 2426 | data->mPatchHandle = patchHandle; |
Eric Laurent | a9f8665 | 2018-11-28 17:23:11 -0800 | [diff] [blame] | 2427 | data->mSource = source; |
Jean-Michel Trivi | 2f4fe9f | 2015-12-04 16:20:59 -0800 | [diff] [blame] | 2428 | command->mParam = data; |
Jean-Michel Trivi | ac4e429 | 2016-12-22 11:39:31 -0800 | [diff] [blame] | 2429 | ALOGV("AudioCommandThread() adding recording configuration update event %d, source %d uid %u", |
| 2430 | event, clientInfo->source, clientInfo->uid); |
Jean-Michel Trivi | 2f4fe9f | 2015-12-04 16:20:59 -0800 | [diff] [blame] | 2431 | sendCommand(command); |
| 2432 | } |
| 2433 | |
Mikhail Naganov | 88b30d2 | 2020-03-09 19:43:13 +0000 | [diff] [blame] | 2434 | void AudioPolicyService::AudioCommandThread::audioModulesUpdateCommand() |
| 2435 | { |
| 2436 | sp<AudioCommand> command = new AudioCommand(); |
| 2437 | command->mCommand = AUDIO_MODULES_UPDATE; |
| 2438 | sendCommand(command); |
| 2439 | } |
| 2440 | |
Jean-Michel Trivi | 9a6b9ad | 2020-10-22 16:46:43 -0700 | [diff] [blame] | 2441 | void AudioPolicyService::AudioCommandThread::routingChangedCommand() |
| 2442 | { |
| 2443 | sp<AudioCommand>command = new AudioCommand(); |
| 2444 | command->mCommand = ROUTING_UPDATED; |
| 2445 | ALOGV("AudioCommandThread() adding routing update"); |
| 2446 | sendCommand(command); |
| 2447 | } |
| 2448 | |
Eric Laurent | 81dd0f5 | 2021-07-05 11:54:40 +0200 | [diff] [blame] | 2449 | void AudioPolicyService::AudioCommandThread::checkSpatializerCommand() |
| 2450 | { |
| 2451 | sp<AudioCommand>command = new AudioCommand(); |
Eric Laurent | 1590359 | 2022-02-24 20:44:36 +0100 | [diff] [blame] | 2452 | command->mCommand = CHECK_SPATIALIZER_OUTPUT; |
Eric Laurent | 81dd0f5 | 2021-07-05 11:54:40 +0200 | [diff] [blame] | 2453 | ALOGV("AudioCommandThread() adding check spatializer"); |
| 2454 | sendCommand(command); |
| 2455 | } |
| 2456 | |
Eric Laurent | 1590359 | 2022-02-24 20:44:36 +0100 | [diff] [blame] | 2457 | void AudioPolicyService::AudioCommandThread::updateActiveSpatializerTracksCommand() |
| 2458 | { |
| 2459 | sp<AudioCommand>command = new AudioCommand(); |
| 2460 | command->mCommand = UPDATE_ACTIVE_SPATIALIZER_TRACKS; |
| 2461 | ALOGV("AudioCommandThread() adding update active spatializer tracks"); |
| 2462 | sendCommand(command); |
| 2463 | } |
| 2464 | |
Jean-Michel Trivi | 78f2b30 | 2022-04-15 18:18:41 +0000 | [diff] [blame] | 2465 | void AudioPolicyService::AudioCommandThread::volRangeInitReqCommand() |
| 2466 | { |
| 2467 | sp<AudioCommand>command = new AudioCommand(); |
| 2468 | command->mCommand = VOL_RANGE_INIT_REQUEST; |
| 2469 | ALOGV("AudioCommandThread() adding volume range init request"); |
| 2470 | sendCommand(command); |
| 2471 | } |
| 2472 | |
Eric Laurent | 0ede892 | 2014-05-09 18:04:42 -0700 | [diff] [blame] | 2473 | status_t AudioPolicyService::AudioCommandThread::sendCommand(sp<AudioCommand>& command, int delayMs) |
| 2474 | { |
| 2475 | { |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 2476 | audio_utils::lock_guard _l(mMutex); |
Eric Laurent | 0ede892 | 2014-05-09 18:04:42 -0700 | [diff] [blame] | 2477 | insertCommand_l(command, delayMs); |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 2478 | mWaitWorkCV.notify_one(); |
Eric Laurent | 0ede892 | 2014-05-09 18:04:42 -0700 | [diff] [blame] | 2479 | } |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 2480 | audio_utils::unique_lock ul(command->mMutex); |
Eric Laurent | 0ede892 | 2014-05-09 18:04:42 -0700 | [diff] [blame] | 2481 | while (command->mWaitStatus) { |
| 2482 | nsecs_t timeOutNs = kAudioCommandTimeoutNs + milliseconds(delayMs); |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 2483 | if (command->mCond.wait_for( |
Andy Hung | 02ea2a0 | 2024-01-25 17:02:30 -0800 | [diff] [blame^] | 2484 | ul, std::chrono::nanoseconds(timeOutNs), getTid()) == std::cv_status::timeout) { |
Eric Laurent | 0ede892 | 2014-05-09 18:04:42 -0700 | [diff] [blame] | 2485 | command->mStatus = TIMED_OUT; |
| 2486 | command->mWaitStatus = false; |
| 2487 | } |
| 2488 | } |
| 2489 | return command->mStatus; |
Eric Laurent | bfb1b83 | 2013-01-07 09:53:42 -0800 | [diff] [blame] | 2490 | } |
| 2491 | |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 2492 | // insertCommand_l() must be called with mMutex held |
Eric Laurent | 0ede892 | 2014-05-09 18:04:42 -0700 | [diff] [blame] | 2493 | void AudioPolicyService::AudioCommandThread::insertCommand_l(sp<AudioCommand>& command, int delayMs) |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2494 | { |
Glenn Kasten | 8d6a244 | 2012-02-08 14:04:28 -0800 | [diff] [blame] | 2495 | ssize_t i; // not size_t because i will count down to -1 |
Eric Laurent | 0ede892 | 2014-05-09 18:04:42 -0700 | [diff] [blame] | 2496 | Vector < sp<AudioCommand> > removedCommands; |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2497 | command->mTime = systemTime() + milliseconds(delayMs); |
| 2498 | |
| 2499 | // acquire wake lock to make sure delayed commands are processed |
Eric Laurent | bfb1b83 | 2013-01-07 09:53:42 -0800 | [diff] [blame] | 2500 | if (mAudioCommands.isEmpty()) { |
Tomasz Wasilczyk | 833345b | 2023-08-15 20:59:35 +0000 | [diff] [blame] | 2501 | acquire_wake_lock(PARTIAL_WAKE_LOCK, mName.c_str()); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2502 | } |
| 2503 | |
| 2504 | // check same pending commands with later time stamps and eliminate them |
Ivan Lozano | 5ff158f | 2017-10-30 09:06:24 -0700 | [diff] [blame] | 2505 | for (i = (ssize_t)mAudioCommands.size()-1; i >= 0; i--) { |
Eric Laurent | 0ede892 | 2014-05-09 18:04:42 -0700 | [diff] [blame] | 2506 | sp<AudioCommand> command2 = mAudioCommands[i]; |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2507 | // commands are sorted by increasing time stamp: no need to scan the rest of mAudioCommands |
| 2508 | if (command2->mTime <= command->mTime) break; |
Eric Laurent | e45b48a | 2014-09-04 16:40:57 -0700 | [diff] [blame] | 2509 | |
| 2510 | // create audio patch or release audio patch commands are equivalent |
| 2511 | // with regard to filtering |
| 2512 | if ((command->mCommand == CREATE_AUDIO_PATCH) || |
| 2513 | (command->mCommand == RELEASE_AUDIO_PATCH)) { |
| 2514 | if ((command2->mCommand != CREATE_AUDIO_PATCH) && |
| 2515 | (command2->mCommand != RELEASE_AUDIO_PATCH)) { |
| 2516 | continue; |
| 2517 | } |
| 2518 | } else if (command2->mCommand != command->mCommand) continue; |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2519 | |
| 2520 | switch (command->mCommand) { |
| 2521 | case SET_PARAMETERS: { |
Eric Laurent | 0ede892 | 2014-05-09 18:04:42 -0700 | [diff] [blame] | 2522 | ParametersData *data = (ParametersData *)command->mParam.get(); |
| 2523 | ParametersData *data2 = (ParametersData *)command2->mParam.get(); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2524 | if (data->mIO != data2->mIO) break; |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 2525 | ALOGV("Comparing parameter command %s to new command %s", |
Tomasz Wasilczyk | 833345b | 2023-08-15 20:59:35 +0000 | [diff] [blame] | 2526 | data2->mKeyValuePairs.c_str(), data->mKeyValuePairs.c_str()); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2527 | AudioParameter param = AudioParameter(data->mKeyValuePairs); |
| 2528 | AudioParameter param2 = AudioParameter(data2->mKeyValuePairs); |
| 2529 | for (size_t j = 0; j < param.size(); j++) { |
Glenn Kasten | e53b9ea | 2012-03-12 16:29:55 -0700 | [diff] [blame] | 2530 | String8 key; |
| 2531 | String8 value; |
| 2532 | param.getAt(j, key, value); |
| 2533 | for (size_t k = 0; k < param2.size(); k++) { |
| 2534 | String8 key2; |
| 2535 | String8 value2; |
| 2536 | param2.getAt(k, key2, value2); |
| 2537 | if (key2 == key) { |
| 2538 | param2.remove(key2); |
Tomasz Wasilczyk | 833345b | 2023-08-15 20:59:35 +0000 | [diff] [blame] | 2539 | ALOGV("Filtering out parameter %s", key2.c_str()); |
Glenn Kasten | e53b9ea | 2012-03-12 16:29:55 -0700 | [diff] [blame] | 2540 | break; |
| 2541 | } |
| 2542 | } |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2543 | } |
| 2544 | // if all keys have been filtered out, remove the command. |
| 2545 | // otherwise, update the key value pairs |
| 2546 | if (param2.size() == 0) { |
| 2547 | removedCommands.add(command2); |
| 2548 | } else { |
| 2549 | data2->mKeyValuePairs = param2.toString(); |
| 2550 | } |
Eric Laurent | 21e5456 | 2013-09-23 12:08:05 -0700 | [diff] [blame] | 2551 | command->mTime = command2->mTime; |
| 2552 | // force delayMs to non 0 so that code below does not request to wait for |
| 2553 | // command status as the command is now delayed |
| 2554 | delayMs = 1; |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2555 | } break; |
| 2556 | |
| 2557 | case SET_VOLUME: { |
Eric Laurent | 0ede892 | 2014-05-09 18:04:42 -0700 | [diff] [blame] | 2558 | VolumeData *data = (VolumeData *)command->mParam.get(); |
| 2559 | VolumeData *data2 = (VolumeData *)command2->mParam.get(); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2560 | if (data->mIO != data2->mIO) break; |
| 2561 | if (data->mStream != data2->mStream) break; |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 2562 | ALOGV("Filtering out volume command on output %d for stream %d", |
Eric Laurent | de07013 | 2010-07-13 04:45:46 -0700 | [diff] [blame] | 2563 | data->mIO, data->mStream); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2564 | removedCommands.add(command2); |
Eric Laurent | 21e5456 | 2013-09-23 12:08:05 -0700 | [diff] [blame] | 2565 | command->mTime = command2->mTime; |
| 2566 | // force delayMs to non 0 so that code below does not request to wait for |
| 2567 | // command status as the command is now delayed |
| 2568 | delayMs = 1; |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2569 | } break; |
Eric Laurent | e45b48a | 2014-09-04 16:40:57 -0700 | [diff] [blame] | 2570 | |
Eric Laurent | baf35fe | 2016-07-27 15:36:53 -0700 | [diff] [blame] | 2571 | case SET_VOICE_VOLUME: { |
| 2572 | VoiceVolumeData *data = (VoiceVolumeData *)command->mParam.get(); |
| 2573 | VoiceVolumeData *data2 = (VoiceVolumeData *)command2->mParam.get(); |
| 2574 | ALOGV("Filtering out voice volume command value %f replaced by %f", |
| 2575 | data2->mVolume, data->mVolume); |
| 2576 | removedCommands.add(command2); |
| 2577 | command->mTime = command2->mTime; |
| 2578 | // force delayMs to non 0 so that code below does not request to wait for |
| 2579 | // command status as the command is now delayed |
| 2580 | delayMs = 1; |
| 2581 | } break; |
| 2582 | |
Eric Laurent | e45b48a | 2014-09-04 16:40:57 -0700 | [diff] [blame] | 2583 | case CREATE_AUDIO_PATCH: |
| 2584 | case RELEASE_AUDIO_PATCH: { |
| 2585 | audio_patch_handle_t handle; |
Haynes Mathew George | a2d4a6d | 2014-10-13 13:05:22 -0700 | [diff] [blame] | 2586 | struct audio_patch patch; |
Eric Laurent | e45b48a | 2014-09-04 16:40:57 -0700 | [diff] [blame] | 2587 | if (command->mCommand == CREATE_AUDIO_PATCH) { |
| 2588 | handle = ((CreateAudioPatchData *)command->mParam.get())->mHandle; |
Haynes Mathew George | a2d4a6d | 2014-10-13 13:05:22 -0700 | [diff] [blame] | 2589 | patch = ((CreateAudioPatchData *)command->mParam.get())->mPatch; |
Eric Laurent | e45b48a | 2014-09-04 16:40:57 -0700 | [diff] [blame] | 2590 | } else { |
| 2591 | handle = ((ReleaseAudioPatchData *)command->mParam.get())->mHandle; |
Mikhail Naganov | 7be71d2 | 2018-05-23 16:51:46 -0700 | [diff] [blame] | 2592 | memset(&patch, 0, sizeof(patch)); |
Eric Laurent | e45b48a | 2014-09-04 16:40:57 -0700 | [diff] [blame] | 2593 | } |
| 2594 | audio_patch_handle_t handle2; |
Haynes Mathew George | a2d4a6d | 2014-10-13 13:05:22 -0700 | [diff] [blame] | 2595 | struct audio_patch patch2; |
Eric Laurent | e45b48a | 2014-09-04 16:40:57 -0700 | [diff] [blame] | 2596 | if (command2->mCommand == CREATE_AUDIO_PATCH) { |
| 2597 | handle2 = ((CreateAudioPatchData *)command2->mParam.get())->mHandle; |
Haynes Mathew George | a2d4a6d | 2014-10-13 13:05:22 -0700 | [diff] [blame] | 2598 | patch2 = ((CreateAudioPatchData *)command2->mParam.get())->mPatch; |
Eric Laurent | e45b48a | 2014-09-04 16:40:57 -0700 | [diff] [blame] | 2599 | } else { |
| 2600 | handle2 = ((ReleaseAudioPatchData *)command2->mParam.get())->mHandle; |
Glenn Kasten | f60b6b6 | 2015-07-06 10:53:26 -0700 | [diff] [blame] | 2601 | memset(&patch2, 0, sizeof(patch2)); |
Eric Laurent | e45b48a | 2014-09-04 16:40:57 -0700 | [diff] [blame] | 2602 | } |
| 2603 | if (handle != handle2) break; |
Haynes Mathew George | a2d4a6d | 2014-10-13 13:05:22 -0700 | [diff] [blame] | 2604 | /* Filter CREATE_AUDIO_PATCH commands only when they are issued for |
| 2605 | same output. */ |
| 2606 | if( (command->mCommand == CREATE_AUDIO_PATCH) && |
| 2607 | (command2->mCommand == CREATE_AUDIO_PATCH) ) { |
| 2608 | bool isOutputDiff = false; |
| 2609 | if (patch.num_sources == patch2.num_sources) { |
| 2610 | for (unsigned count = 0; count < patch.num_sources; count++) { |
| 2611 | if (patch.sources[count].id != patch2.sources[count].id) { |
| 2612 | isOutputDiff = true; |
| 2613 | break; |
| 2614 | } |
| 2615 | } |
| 2616 | if (isOutputDiff) |
| 2617 | break; |
| 2618 | } |
| 2619 | } |
Eric Laurent | e45b48a | 2014-09-04 16:40:57 -0700 | [diff] [blame] | 2620 | ALOGV("Filtering out %s audio patch command for handle %d", |
| 2621 | (command->mCommand == CREATE_AUDIO_PATCH) ? "create" : "release", handle); |
| 2622 | removedCommands.add(command2); |
| 2623 | command->mTime = command2->mTime; |
| 2624 | // force delayMs to non 0 so that code below does not request to wait for |
| 2625 | // command status as the command is now delayed |
| 2626 | delayMs = 1; |
| 2627 | } break; |
| 2628 | |
Jean-Michel Trivi | de80105 | 2015-04-14 19:10:14 -0700 | [diff] [blame] | 2629 | case DYN_POLICY_MIX_STATE_UPDATE: { |
| 2630 | |
| 2631 | } break; |
| 2632 | |
Jean-Michel Trivi | 2f4fe9f | 2015-12-04 16:20:59 -0800 | [diff] [blame] | 2633 | case RECORDING_CONFIGURATION_UPDATE: { |
| 2634 | |
| 2635 | } break; |
| 2636 | |
Jean-Michel Trivi | 9a6b9ad | 2020-10-22 16:46:43 -0700 | [diff] [blame] | 2637 | case ROUTING_UPDATED: { |
| 2638 | |
| 2639 | } break; |
| 2640 | |
Jean-Michel Trivi | 78f2b30 | 2022-04-15 18:18:41 +0000 | [diff] [blame] | 2641 | case VOL_RANGE_INIT_REQUEST: { |
| 2642 | // command may come from different requests, do not filter |
| 2643 | } break; |
| 2644 | |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2645 | default: |
| 2646 | break; |
| 2647 | } |
| 2648 | } |
| 2649 | |
| 2650 | // remove filtered commands |
| 2651 | for (size_t j = 0; j < removedCommands.size(); j++) { |
| 2652 | // removed commands always have time stamps greater than current command |
| 2653 | for (size_t k = i + 1; k < mAudioCommands.size(); k++) { |
Eric Laurent | 0ede892 | 2014-05-09 18:04:42 -0700 | [diff] [blame] | 2654 | if (mAudioCommands[k].get() == removedCommands[j].get()) { |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 2655 | ALOGV("suppressing command: %d", mAudioCommands[k]->mCommand); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2656 | mAudioCommands.removeAt(k); |
| 2657 | break; |
| 2658 | } |
| 2659 | } |
| 2660 | } |
| 2661 | removedCommands.clear(); |
| 2662 | |
Eric Laurent | aa79bef | 2015-01-15 14:33:51 -0800 | [diff] [blame] | 2663 | // Disable wait for status if delay is not 0. |
| 2664 | // Except for create audio patch command because the returned patch handle |
| 2665 | // is needed by audio policy manager |
| 2666 | if (delayMs != 0 && command->mCommand != CREATE_AUDIO_PATCH) { |
Eric Laurent | cec4abb | 2012-07-03 12:23:02 -0700 | [diff] [blame] | 2667 | command->mWaitStatus = false; |
| 2668 | } |
Eric Laurent | cec4abb | 2012-07-03 12:23:02 -0700 | [diff] [blame] | 2669 | |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2670 | // insert command at the right place according to its time stamp |
Eric Laurent | 1e693b5 | 2014-07-09 15:03:28 -0700 | [diff] [blame] | 2671 | ALOGV("inserting command: %d at index %zd, num commands %zu", |
| 2672 | command->mCommand, i+1, mAudioCommands.size()); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2673 | mAudioCommands.insertAt(command, i + 1); |
| 2674 | } |
| 2675 | |
| 2676 | void AudioPolicyService::AudioCommandThread::exit() |
| 2677 | { |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 2678 | ALOGV("AudioCommandThread::exit"); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2679 | { |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 2680 | audio_utils::lock_guard _l(mMutex); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2681 | requestExit(); |
Andy Hung | 79eacdb | 2023-11-30 19:34:24 -0800 | [diff] [blame] | 2682 | mWaitWorkCV.notify_one(); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2683 | } |
Zach Jang | a754b4f | 2015-10-27 01:29:34 +0000 | [diff] [blame] | 2684 | // Note that we can call it from the thread loop if all other references have been released |
| 2685 | // but it will safely return WOULD_BLOCK in this case |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2686 | requestExitAndWait(); |
| 2687 | } |
| 2688 | |
| 2689 | void AudioPolicyService::AudioCommandThread::AudioCommand::dump(char* buffer, size_t size) |
| 2690 | { |
| 2691 | snprintf(buffer, size, " %02d %06d.%03d %01u %p\n", |
| 2692 | mCommand, |
| 2693 | (int)ns2s(mTime), |
| 2694 | (int)ns2ms(mTime)%1000, |
| 2695 | mWaitStatus, |
Eric Laurent | 0ede892 | 2014-05-09 18:04:42 -0700 | [diff] [blame] | 2696 | mParam.get()); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2697 | } |
| 2698 | |
Dima Zavin | fce7a47 | 2011-04-19 22:30:36 -0700 | [diff] [blame] | 2699 | /******* helpers for the service_ops callbacks defined below *********/ |
| 2700 | void AudioPolicyService::setParameters(audio_io_handle_t ioHandle, |
| 2701 | const char *keyValuePairs, |
| 2702 | int delayMs) |
| 2703 | { |
Glenn Kasten | 72ef00d | 2012-01-17 11:09:42 -0800 | [diff] [blame] | 2704 | mAudioCommandThread->parametersCommand(ioHandle, keyValuePairs, |
Dima Zavin | fce7a47 | 2011-04-19 22:30:36 -0700 | [diff] [blame] | 2705 | delayMs); |
| 2706 | } |
| 2707 | |
| 2708 | int AudioPolicyService::setStreamVolume(audio_stream_type_t stream, |
| 2709 | float volume, |
| 2710 | audio_io_handle_t output, |
| 2711 | int delayMs) |
| 2712 | { |
Glenn Kasten | fff6d71 | 2012-01-12 16:38:12 -0800 | [diff] [blame] | 2713 | return (int)mAudioCommandThread->volumeCommand(stream, volume, |
Glenn Kasten | 72ef00d | 2012-01-17 11:09:42 -0800 | [diff] [blame] | 2714 | output, delayMs); |
Dima Zavin | fce7a47 | 2011-04-19 22:30:36 -0700 | [diff] [blame] | 2715 | } |
| 2716 | |
Dima Zavin | fce7a47 | 2011-04-19 22:30:36 -0700 | [diff] [blame] | 2717 | int AudioPolicyService::setVoiceVolume(float volume, int delayMs) |
| 2718 | { |
| 2719 | return (int)mAudioCommandThread->voiceVolumeCommand(volume, delayMs); |
| 2720 | } |
| 2721 | |
Eric Laurent | b20cf7d | 2019-04-05 19:37:34 -0700 | [diff] [blame] | 2722 | void AudioPolicyService::setEffectSuspended(int effectId, |
| 2723 | audio_session_t sessionId, |
| 2724 | bool suspended) |
| 2725 | { |
| 2726 | mAudioCommandThread->setEffectSuspendedCommand(effectId, sessionId, suspended); |
| 2727 | } |
| 2728 | |
Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 2729 | Status AudioPolicyService::onNewAudioModulesAvailable() |
Mikhail Naganov | 88b30d2 | 2020-03-09 19:43:13 +0000 | [diff] [blame] | 2730 | { |
Mikhail Naganov | d0e2c74 | 2020-03-25 15:59:59 -0700 | [diff] [blame] | 2731 | mOutputCommandThread->audioModulesUpdateCommand(); |
Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 2732 | return Status::ok(); |
Mikhail Naganov | 88b30d2 | 2020-03-09 19:43:13 +0000 | [diff] [blame] | 2733 | } |
| 2734 | |
Eric Laurent | b20cf7d | 2019-04-05 19:37:34 -0700 | [diff] [blame] | 2735 | |
Dima Zavin | fce7a47 | 2011-04-19 22:30:36 -0700 | [diff] [blame] | 2736 | extern "C" { |
Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 2737 | audio_module_handle_t aps_load_hw_module(void *service __unused, |
| 2738 | const char *name); |
| 2739 | audio_io_handle_t aps_open_output(void *service __unused, |
Eric Laurent | a4c5a55 | 2012-03-29 10:12:40 -0700 | [diff] [blame] | 2740 | audio_devices_t *pDevices, |
| 2741 | uint32_t *pSamplingRate, |
| 2742 | audio_format_t *pFormat, |
| 2743 | audio_channel_mask_t *pChannelMask, |
| 2744 | uint32_t *pLatencyMs, |
Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 2745 | audio_output_flags_t flags); |
Eric Laurent | a4c5a55 | 2012-03-29 10:12:40 -0700 | [diff] [blame] | 2746 | |
Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 2747 | audio_io_handle_t aps_open_output_on_module(void *service __unused, |
Eric Laurent | a4c5a55 | 2012-03-29 10:12:40 -0700 | [diff] [blame] | 2748 | audio_module_handle_t module, |
| 2749 | audio_devices_t *pDevices, |
| 2750 | uint32_t *pSamplingRate, |
| 2751 | audio_format_t *pFormat, |
| 2752 | audio_channel_mask_t *pChannelMask, |
| 2753 | uint32_t *pLatencyMs, |
Richard Fitzgerald | ad3af33 | 2013-03-25 16:54:37 +0000 | [diff] [blame] | 2754 | audio_output_flags_t flags, |
Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 2755 | const audio_offload_info_t *offloadInfo); |
| 2756 | audio_io_handle_t aps_open_dup_output(void *service __unused, |
Dima Zavin | fce7a47 | 2011-04-19 22:30:36 -0700 | [diff] [blame] | 2757 | audio_io_handle_t output1, |
Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 2758 | audio_io_handle_t output2); |
| 2759 | int aps_close_output(void *service __unused, audio_io_handle_t output); |
| 2760 | int aps_suspend_output(void *service __unused, audio_io_handle_t output); |
| 2761 | int aps_restore_output(void *service __unused, audio_io_handle_t output); |
| 2762 | audio_io_handle_t aps_open_input(void *service __unused, |
Eric Laurent | a4c5a55 | 2012-03-29 10:12:40 -0700 | [diff] [blame] | 2763 | audio_devices_t *pDevices, |
| 2764 | uint32_t *pSamplingRate, |
| 2765 | audio_format_t *pFormat, |
| 2766 | audio_channel_mask_t *pChannelMask, |
Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 2767 | audio_in_acoustics_t acoustics __unused); |
| 2768 | audio_io_handle_t aps_open_input_on_module(void *service __unused, |
Eric Laurent | a4c5a55 | 2012-03-29 10:12:40 -0700 | [diff] [blame] | 2769 | audio_module_handle_t module, |
| 2770 | audio_devices_t *pDevices, |
| 2771 | uint32_t *pSamplingRate, |
| 2772 | audio_format_t *pFormat, |
Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 2773 | audio_channel_mask_t *pChannelMask); |
| 2774 | int aps_close_input(void *service __unused, audio_io_handle_t input); |
| 2775 | int aps_invalidate_stream(void *service __unused, audio_stream_type_t stream); |
Glenn Kasten | d848eb4 | 2016-03-08 13:42:11 -0800 | [diff] [blame] | 2776 | int aps_move_effects(void *service __unused, audio_session_t session, |
Dima Zavin | fce7a47 | 2011-04-19 22:30:36 -0700 | [diff] [blame] | 2777 | audio_io_handle_t src_output, |
Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 2778 | audio_io_handle_t dst_output); |
| 2779 | char * aps_get_parameters(void *service __unused, audio_io_handle_t io_handle, |
| 2780 | const char *keys); |
| 2781 | void aps_set_parameters(void *service, audio_io_handle_t io_handle, |
| 2782 | const char *kv_pairs, int delay_ms); |
| 2783 | int aps_set_stream_volume(void *service, audio_stream_type_t stream, |
Dima Zavin | fce7a47 | 2011-04-19 22:30:36 -0700 | [diff] [blame] | 2784 | float volume, audio_io_handle_t output, |
Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 2785 | int delay_ms); |
Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 2786 | int aps_set_voice_volume(void *service, float volume, int delay_ms); |
| 2787 | }; |
Dima Zavin | fce7a47 | 2011-04-19 22:30:36 -0700 | [diff] [blame] | 2788 | |
Mikhail Naganov | 1b2a794 | 2017-12-08 10:18:09 -0800 | [diff] [blame] | 2789 | } // namespace android |