| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [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 |  | 
| Eric Laurent | dce54a1 | 2014-03-10 12:19:46 -0700 | [diff] [blame] | 17 | #define LOG_TAG "AudioPolicyIntefaceImpl" | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 18 | //#define LOG_NDEBUG 0 | 
|  | 19 |  | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 20 | #include "AudioPolicyService.h" | 
| Ray Essick | 84e84a5 | 2018-05-03 18:45:07 -0700 | [diff] [blame] | 21 | #include "TypeConverter.h" | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 22 | #include <media/AidlConversion.h> | 
| Kevin Rocard | be20185 | 2019-02-20 22:33:28 -0800 | [diff] [blame] | 23 | #include <media/AudioPolicy.h> | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 24 | #include <media/AudioValidator.h> | 
|  | 25 | #include <media/MediaMetricsItem.h> | 
|  | 26 | #include <media/PolicyAidlConversion.h> | 
| Eric Laurent | d7fe086 | 2018-07-14 16:48:01 -0700 | [diff] [blame] | 27 | #include <utils/Log.h> | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 28 | #include <android/content/AttributionSourceState.h> | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 29 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 30 | #define VALUE_OR_RETURN_BINDER_STATUS(x) \ | 
|  | 31 | ({ auto _tmp = (x); \ | 
|  | 32 | if (!_tmp.ok()) return aidl_utils::binderStatusFromStatusT(_tmp.error()); \ | 
|  | 33 | std::move(_tmp.value()); }) | 
|  | 34 |  | 
|  | 35 | #define RETURN_IF_BINDER_ERROR(x)      \ | 
|  | 36 | {                                  \ | 
|  | 37 | binder::Status _tmp = (x);     \ | 
|  | 38 | if (!_tmp.isOk()) return _tmp; \ | 
|  | 39 | } | 
|  | 40 |  | 
|  | 41 | #define MAX_ITEMS_PER_LIST 1024 | 
|  | 42 |  | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 43 | namespace android { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 44 | using binder::Status; | 
|  | 45 | using aidl_utils::binderStatusFromStatusT; | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 46 | using content::AttributionSourceState; | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 47 |  | 
| Hayden Gomes | 524159d | 2019-12-23 14:41:47 -0800 | [diff] [blame] | 48 | const std::vector<audio_usage_t>& SYSTEM_USAGES = { | 
|  | 49 | AUDIO_USAGE_CALL_ASSISTANT, | 
|  | 50 | AUDIO_USAGE_EMERGENCY, | 
|  | 51 | AUDIO_USAGE_SAFETY, | 
|  | 52 | AUDIO_USAGE_VEHICLE_STATUS, | 
|  | 53 | AUDIO_USAGE_ANNOUNCEMENT | 
|  | 54 | }; | 
|  | 55 |  | 
|  | 56 | bool isSystemUsage(audio_usage_t usage) { | 
|  | 57 | return std::find(std::begin(SYSTEM_USAGES), std::end(SYSTEM_USAGES), usage) | 
|  | 58 | != std::end(SYSTEM_USAGES); | 
|  | 59 | } | 
|  | 60 |  | 
|  | 61 | bool AudioPolicyService::isSupportedSystemUsage(audio_usage_t usage) { | 
|  | 62 | return std::find(std::begin(mSupportedSystemUsages), std::end(mSupportedSystemUsages), usage) | 
|  | 63 | != std::end(mSupportedSystemUsages); | 
|  | 64 | } | 
|  | 65 |  | 
|  | 66 | status_t AudioPolicyService::validateUsage(audio_usage_t usage) { | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 67 | return validateUsage(usage, getCallingAttributionSource()); | 
| Hayden Gomes | 524159d | 2019-12-23 14:41:47 -0800 | [diff] [blame] | 68 | } | 
|  | 69 |  | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 70 | status_t AudioPolicyService::validateUsage(audio_usage_t usage, | 
|  | 71 | const AttributionSourceState& attributionSource) { | 
| Hayden Gomes | 524159d | 2019-12-23 14:41:47 -0800 | [diff] [blame] | 72 | if (isSystemUsage(usage)) { | 
|  | 73 | if (isSupportedSystemUsage(usage)) { | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 74 | if (!modifyAudioRoutingAllowed(attributionSource)) { | 
| Philip P. Moltmann | bda4575 | 2020-07-17 16:41:18 -0700 | [diff] [blame] | 75 | ALOGE(("permission denied: modify audio routing not allowed " | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 76 | "for attributionSource %s"), attributionSource.toString().c_str()); | 
| Hayden Gomes | 524159d | 2019-12-23 14:41:47 -0800 | [diff] [blame] | 77 | return PERMISSION_DENIED; | 
|  | 78 | } | 
|  | 79 | } else { | 
|  | 80 | return BAD_VALUE; | 
|  | 81 | } | 
|  | 82 | } | 
|  | 83 | return NO_ERROR; | 
|  | 84 | } | 
|  | 85 |  | 
|  | 86 |  | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 87 |  | 
|  | 88 | // ---------------------------------------------------------------------------- | 
|  | 89 |  | 
| Mikhail Naganov | 88b30d2 | 2020-03-09 19:43:13 +0000 | [diff] [blame] | 90 | void AudioPolicyService::doOnNewAudioModulesAvailable() | 
|  | 91 | { | 
|  | 92 | if (mAudioPolicyManager == NULL) return; | 
|  | 93 | Mutex::Autolock _l(mLock); | 
|  | 94 | AutoCallerClear acc; | 
|  | 95 | mAudioPolicyManager->onNewAudioModulesAvailable(); | 
|  | 96 | } | 
|  | 97 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 98 | Status AudioPolicyService::setDeviceConnectionState( | 
|  | 99 | const media::AudioDevice& deviceAidl, | 
|  | 100 | media::AudioPolicyDeviceState stateAidl, | 
|  | 101 | const std::string& deviceNameAidl, | 
|  | 102 | media::audio::common::AudioFormat encodedFormatAidl) { | 
|  | 103 | audio_devices_t device = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 104 | aidl2legacy_int32_t_audio_devices_t(deviceAidl.type)); | 
|  | 105 | audio_policy_dev_state_t state = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 106 | aidl2legacy_AudioPolicyDeviceState_audio_policy_dev_state_t(stateAidl)); | 
|  | 107 | audio_format_t encodedFormat = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 108 | aidl2legacy_AudioFormat_audio_format_t(encodedFormatAidl)); | 
|  | 109 |  | 
| Eric Laurent | dce54a1 | 2014-03-10 12:19:46 -0700 | [diff] [blame] | 110 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 111 | return binderStatusFromStatusT(NO_INIT); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 112 | } | 
|  | 113 | if (!settingsAllowed()) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 114 | return binderStatusFromStatusT(PERMISSION_DENIED); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 115 | } | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 116 | if (state != AUDIO_POLICY_DEVICE_STATE_AVAILABLE && | 
|  | 117 | state != AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 118 | return binderStatusFromStatusT(BAD_VALUE); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 119 | } | 
|  | 120 |  | 
|  | 121 | ALOGV("setDeviceConnectionState()"); | 
|  | 122 | Mutex::Autolock _l(mLock); | 
| Eric Laurent | 10b7123 | 2018-04-13 18:14:44 -0700 | [diff] [blame] | 123 | AutoCallerClear acc; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 124 | return binderStatusFromStatusT( | 
|  | 125 | mAudioPolicyManager->setDeviceConnectionState(device, state, | 
|  | 126 | deviceAidl.address.c_str(), | 
|  | 127 | deviceNameAidl.c_str(), | 
|  | 128 | encodedFormat)); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 129 | } | 
|  | 130 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 131 | Status AudioPolicyService::getDeviceConnectionState(const media::AudioDevice& deviceAidl, | 
|  | 132 | media::AudioPolicyDeviceState* _aidl_return) { | 
|  | 133 | audio_devices_t device = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 134 | aidl2legacy_int32_t_audio_devices_t(deviceAidl.type)); | 
| Eric Laurent | dce54a1 | 2014-03-10 12:19:46 -0700 | [diff] [blame] | 135 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 136 | *_aidl_return = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 137 | legacy2aidl_audio_policy_dev_state_t_AudioPolicyDeviceState( | 
|  | 138 | AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE)); | 
|  | 139 | return Status::ok(); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 140 | } | 
| Eric Laurent | 10b7123 | 2018-04-13 18:14:44 -0700 | [diff] [blame] | 141 | AutoCallerClear acc; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 142 | *_aidl_return = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 143 | legacy2aidl_audio_policy_dev_state_t_AudioPolicyDeviceState( | 
|  | 144 | mAudioPolicyManager->getDeviceConnectionState(device, | 
|  | 145 | deviceAidl.address.c_str()))); | 
|  | 146 | return Status::ok(); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 147 | } | 
|  | 148 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 149 | Status AudioPolicyService::handleDeviceConfigChange( | 
|  | 150 | const media::AudioDevice& deviceAidl, | 
|  | 151 | const std::string& deviceNameAidl, | 
|  | 152 | media::audio::common::AudioFormat encodedFormatAidl) { | 
|  | 153 | audio_devices_t device = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 154 | aidl2legacy_int32_t_audio_devices_t(deviceAidl.type)); | 
|  | 155 | audio_format_t encodedFormat = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 156 | aidl2legacy_AudioFormat_audio_format_t(encodedFormatAidl)); | 
|  | 157 |  | 
| Pavlin Radoslavov | f862bc6 | 2016-12-26 18:57:22 -0800 | [diff] [blame] | 158 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 159 | return binderStatusFromStatusT(NO_INIT); | 
| Pavlin Radoslavov | f862bc6 | 2016-12-26 18:57:22 -0800 | [diff] [blame] | 160 | } | 
|  | 161 | if (!settingsAllowed()) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 162 | return binderStatusFromStatusT(PERMISSION_DENIED); | 
| Pavlin Radoslavov | f862bc6 | 2016-12-26 18:57:22 -0800 | [diff] [blame] | 163 | } | 
| Pavlin Radoslavov | f862bc6 | 2016-12-26 18:57:22 -0800 | [diff] [blame] | 164 |  | 
|  | 165 | ALOGV("handleDeviceConfigChange()"); | 
|  | 166 | Mutex::Autolock _l(mLock); | 
| Eric Laurent | 10b7123 | 2018-04-13 18:14:44 -0700 | [diff] [blame] | 167 | AutoCallerClear acc; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 168 | return binderStatusFromStatusT( | 
|  | 169 | mAudioPolicyManager->handleDeviceConfigChange(device, deviceAidl.address.c_str(), | 
|  | 170 | deviceNameAidl.c_str(), encodedFormat)); | 
| Pavlin Radoslavov | f862bc6 | 2016-12-26 18:57:22 -0800 | [diff] [blame] | 171 | } | 
|  | 172 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 173 | Status AudioPolicyService::setPhoneState(media::AudioMode stateAidl, int32_t uidAidl) | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 174 | { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 175 | audio_mode_t state = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 176 | aidl2legacy_AudioMode_audio_mode_t(stateAidl)); | 
|  | 177 | uid_t uid = VALUE_OR_RETURN_BINDER_STATUS(aidl2legacy_int32_t_uid_t(uidAidl)); | 
| Eric Laurent | dce54a1 | 2014-03-10 12:19:46 -0700 | [diff] [blame] | 178 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 179 | return binderStatusFromStatusT(NO_INIT); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 180 | } | 
|  | 181 | if (!settingsAllowed()) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 182 | return binderStatusFromStatusT(PERMISSION_DENIED); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 183 | } | 
|  | 184 | if (uint32_t(state) >= AUDIO_MODE_CNT) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 185 | return binderStatusFromStatusT(BAD_VALUE); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 186 | } | 
|  | 187 |  | 
|  | 188 | ALOGV("setPhoneState()"); | 
|  | 189 |  | 
| Eric Laurent | beb07fe | 2015-09-16 15:49:30 -0700 | [diff] [blame] | 190 | // acquire lock before calling setMode() so that setMode() + setPhoneState() are an atomic | 
|  | 191 | // operation from policy manager standpoint (no other operation (e.g track start or stop) | 
|  | 192 | // can be interleaved). | 
|  | 193 | Mutex::Autolock _l(mLock); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 194 | // TODO: check if it is more appropriate to do it in platform specific policy manager | 
|  | 195 | AudioSystem::setMode(state); | 
|  | 196 |  | 
| Eric Laurent | 10b7123 | 2018-04-13 18:14:44 -0700 | [diff] [blame] | 197 | AutoCallerClear acc; | 
| Eric Laurent | dce54a1 | 2014-03-10 12:19:46 -0700 | [diff] [blame] | 198 | mAudioPolicyManager->setPhoneState(state); | 
| Eric Laurent | bb6c9a0 | 2014-09-25 14:11:47 -0700 | [diff] [blame] | 199 | mPhoneState = state; | 
| Eric Laurent | 00dba06 | 2020-02-11 15:52:09 -0800 | [diff] [blame] | 200 | mPhoneStateOwnerUid = uid; | 
| Mingshu Pang | d07c19b | 2021-02-25 11:40:32 +0800 | [diff] [blame] | 201 | updateUidStates_l(); | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 202 | return Status::ok(); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 203 | } | 
|  | 204 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 205 | Status AudioPolicyService::getPhoneState(media::AudioMode* _aidl_return) { | 
| Eric Laurent | bb6c9a0 | 2014-09-25 14:11:47 -0700 | [diff] [blame] | 206 | Mutex::Autolock _l(mLock); | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 207 | *_aidl_return = VALUE_OR_RETURN_BINDER_STATUS(legacy2aidl_audio_mode_t_AudioMode(mPhoneState)); | 
|  | 208 | return Status::ok(); | 
| Eric Laurent | bb6c9a0 | 2014-09-25 14:11:47 -0700 | [diff] [blame] | 209 | } | 
|  | 210 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 211 | Status AudioPolicyService::setForceUse(media::AudioPolicyForceUse usageAidl, | 
|  | 212 | media::AudioPolicyForcedConfig configAidl) | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 213 | { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 214 | audio_policy_force_use_t usage = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 215 | aidl2legacy_AudioPolicyForceUse_audio_policy_force_use_t(usageAidl)); | 
|  | 216 | audio_policy_forced_cfg_t config = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 217 | aidl2legacy_AudioPolicyForcedConfig_audio_policy_forced_cfg_t(configAidl)); | 
|  | 218 |  | 
| Eric Laurent | dce54a1 | 2014-03-10 12:19:46 -0700 | [diff] [blame] | 219 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 220 | return binderStatusFromStatusT(NO_INIT); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 221 | } | 
| Eric Laurent | e17378d | 2018-05-09 14:43:01 -0700 | [diff] [blame] | 222 |  | 
|  | 223 | if (!modifyAudioRoutingAllowed()) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 224 | return binderStatusFromStatusT(PERMISSION_DENIED); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 225 | } | 
| Eric Laurent | e17378d | 2018-05-09 14:43:01 -0700 | [diff] [blame] | 226 |  | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 227 | if (usage < 0 || usage >= AUDIO_POLICY_FORCE_USE_CNT) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 228 | return binderStatusFromStatusT(BAD_VALUE); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 229 | } | 
|  | 230 | if (config < 0 || config >= AUDIO_POLICY_FORCE_CFG_CNT) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 231 | return binderStatusFromStatusT(BAD_VALUE); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 232 | } | 
|  | 233 | ALOGV("setForceUse()"); | 
|  | 234 | Mutex::Autolock _l(mLock); | 
| Eric Laurent | 10b7123 | 2018-04-13 18:14:44 -0700 | [diff] [blame] | 235 | AutoCallerClear acc; | 
| Eric Laurent | dce54a1 | 2014-03-10 12:19:46 -0700 | [diff] [blame] | 236 | mAudioPolicyManager->setForceUse(usage, config); | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 237 | return Status::ok(); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 238 | } | 
|  | 239 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 240 | Status AudioPolicyService::getForceUse(media::AudioPolicyForceUse usageAidl, | 
|  | 241 | media::AudioPolicyForcedConfig* _aidl_return) { | 
|  | 242 | audio_policy_force_use_t usage = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 243 | aidl2legacy_AudioPolicyForceUse_audio_policy_force_use_t(usageAidl)); | 
|  | 244 |  | 
| Eric Laurent | dce54a1 | 2014-03-10 12:19:46 -0700 | [diff] [blame] | 245 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 246 | return binderStatusFromStatusT(NO_INIT); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 247 | } | 
|  | 248 | if (usage < 0 || usage >= AUDIO_POLICY_FORCE_USE_CNT) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 249 | *_aidl_return = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 250 | legacy2aidl_audio_policy_forced_cfg_t_AudioPolicyForcedConfig(AUDIO_POLICY_FORCE_NONE)); | 
|  | 251 | return Status::ok(); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 252 | } | 
| Eric Laurent | 10b7123 | 2018-04-13 18:14:44 -0700 | [diff] [blame] | 253 | AutoCallerClear acc; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 254 | *_aidl_return = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 255 | legacy2aidl_audio_policy_forced_cfg_t_AudioPolicyForcedConfig( | 
|  | 256 | mAudioPolicyManager->getForceUse(usage))); | 
|  | 257 | return Status::ok(); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 258 | } | 
|  | 259 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 260 | Status AudioPolicyService::getOutput(media::AudioStreamType streamAidl, int32_t* _aidl_return) | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 261 | { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 262 | audio_stream_type_t stream = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 263 | aidl2legacy_AudioStreamType_audio_stream_type_t(streamAidl)); | 
|  | 264 |  | 
| Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 265 | if (uint32_t(stream) >= AUDIO_STREAM_PUBLIC_CNT) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 266 | *_aidl_return = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 267 | legacy2aidl_audio_io_handle_t_int32_t(AUDIO_IO_HANDLE_NONE)); | 
|  | 268 | return Status::ok(); | 
| Eric Laurent | dea1541 | 2014-10-28 15:46:45 -0700 | [diff] [blame] | 269 | } | 
| Eric Laurent | dce54a1 | 2014-03-10 12:19:46 -0700 | [diff] [blame] | 270 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 271 | return binderStatusFromStatusT(NO_INIT); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 272 | } | 
|  | 273 | ALOGV("getOutput()"); | 
|  | 274 | Mutex::Autolock _l(mLock); | 
| Eric Laurent | 10b7123 | 2018-04-13 18:14:44 -0700 | [diff] [blame] | 275 | AutoCallerClear acc; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 276 | *_aidl_return = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 277 | legacy2aidl_audio_io_handle_t_int32_t(mAudioPolicyManager->getOutput(stream))); | 
|  | 278 | return Status::ok(); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 279 | } | 
|  | 280 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 281 | Status AudioPolicyService::getOutputForAttr(const media::AudioAttributesInternal& attrAidl, | 
|  | 282 | int32_t sessionAidl, | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 283 | const AttributionSourceState& attributionSource, | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 284 | const media::AudioConfig& configAidl, | 
|  | 285 | int32_t flagsAidl, | 
| Eric Laurent | f99edd3 | 2021-02-01 15:57:33 +0100 | [diff] [blame] | 286 | int32_t selectedDeviceIdAidl, | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 287 | media::GetOutputForAttrResponse* _aidl_return) | 
| Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 288 | { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 289 | audio_attributes_t attr = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 290 | aidl2legacy_AudioAttributesInternal_audio_attributes_t(attrAidl)); | 
|  | 291 | audio_session_t session = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 292 | aidl2legacy_int32_t_audio_session_t(sessionAidl)); | 
|  | 293 | audio_stream_type_t stream = AUDIO_STREAM_DEFAULT; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 294 | audio_config_t config = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 295 | aidl2legacy_AudioConfig_audio_config_t(configAidl)); | 
|  | 296 | audio_output_flags_t flags = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 297 | aidl2legacy_int32_t_audio_output_flags_t_mask(flagsAidl)); | 
| Eric Laurent | f99edd3 | 2021-02-01 15:57:33 +0100 | [diff] [blame] | 298 | audio_port_handle_t selectedDeviceId = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 299 | aidl2legacy_int32_t_audio_port_handle_t(selectedDeviceIdAidl)); | 
|  | 300 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 301 | audio_io_handle_t output; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 302 | audio_port_handle_t portId; | 
|  | 303 | std::vector<audio_io_handle_t> secondaryOutputs; | 
|  | 304 |  | 
| Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 305 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 306 | return binderStatusFromStatusT(NO_INIT); | 
| Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 307 | } | 
| Hayden Gomes | 524159d | 2019-12-23 14:41:47 -0800 | [diff] [blame] | 308 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 309 | RETURN_IF_BINDER_ERROR( | 
|  | 310 | binderStatusFromStatusT(AudioValidator::validateAudioAttributes(attr, "68953950"))); | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 311 | RETURN_IF_BINDER_ERROR(binderStatusFromStatusT(validateUsage(attr.usage, attributionSource))); | 
| Hayden Gomes | 524159d | 2019-12-23 14:41:47 -0800 | [diff] [blame] | 312 |  | 
| Eric Laurent | 8a1095a | 2019-11-08 14:44:16 -0800 | [diff] [blame] | 313 | ALOGV("%s()", __func__); | 
| Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 314 | Mutex::Autolock _l(mLock); | 
| Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 315 |  | 
| Philip P. Moltmann | bda4575 | 2020-07-17 16:41:18 -0700 | [diff] [blame] | 316 | // TODO b/182392553: refactor or remove | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 317 | AttributionSourceState adjAttributionSource = attributionSource; | 
| Marco Nelissen | dcb346b | 2015-09-09 10:47:29 -0700 | [diff] [blame] | 318 | const uid_t callingUid = IPCThreadState::self()->getCallingUid(); | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 319 | if (!isAudioServerOrMediaServerUid(callingUid) || attributionSource.uid == -1) { | 
| Philip P. Moltmann | bda4575 | 2020-07-17 16:41:18 -0700 | [diff] [blame] | 320 | int32_t callingUidAidl = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 321 | legacy2aidl_uid_t_int32_t(callingUid)); | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 322 | ALOGW_IF(attributionSource.uid != -1 && attributionSource.uid != callingUidAidl, | 
| Philip P. Moltmann | bda4575 | 2020-07-17 16:41:18 -0700 | [diff] [blame] | 323 | "%s uid %d tried to pass itself off as %d", __func__, | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 324 | callingUidAidl, attributionSource.uid); | 
|  | 325 | adjAttributionSource.uid = callingUidAidl; | 
| Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 326 | } | 
| Philip P. Moltmann | bda4575 | 2020-07-17 16:41:18 -0700 | [diff] [blame] | 327 | if (!mPackageManager.allowPlaybackCapture(VALUE_OR_RETURN_BINDER_STATUS( | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 328 | aidl2legacy_int32_t_uid_t(adjAttributionSource.uid)))) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 329 | attr.flags = static_cast<audio_flags_mask_t>(attr.flags | AUDIO_FLAG_NO_MEDIA_PROJECTION); | 
| Eric Laurent | 4298441 | 2019-05-09 17:57:03 -0700 | [diff] [blame] | 330 | } | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 331 | if (((attr.flags & (AUDIO_FLAG_BYPASS_INTERRUPTION_POLICY|AUDIO_FLAG_BYPASS_MUTE)) != 0) | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 332 | && !bypassInterruptionPolicyAllowed(adjAttributionSource)) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 333 | attr.flags = static_cast<audio_flags_mask_t>( | 
|  | 334 | attr.flags & ~(AUDIO_FLAG_BYPASS_INTERRUPTION_POLICY|AUDIO_FLAG_BYPASS_MUTE)); | 
| Kevin Rocard | 8be9497 | 2019-02-22 13:26:25 -0800 | [diff] [blame] | 335 | } | 
| Eric Laurent | 10b7123 | 2018-04-13 18:14:44 -0700 | [diff] [blame] | 336 | AutoCallerClear acc; | 
| Eric Laurent | 8a1095a | 2019-11-08 14:44:16 -0800 | [diff] [blame] | 337 | AudioPolicyInterface::output_type_t outputType; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 338 | status_t result = mAudioPolicyManager->getOutputForAttr(&attr, &output, session, | 
|  | 339 | &stream, | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 340 | adjAttributionSource, | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 341 | &config, | 
|  | 342 | &flags, &selectedDeviceId, &portId, | 
|  | 343 | &secondaryOutputs, | 
|  | 344 | &outputType); | 
| Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 345 |  | 
|  | 346 | // FIXME: Introduce a way to check for the the telephony device before opening the output | 
| Eric Laurent | 8a1095a | 2019-11-08 14:44:16 -0800 | [diff] [blame] | 347 | if (result == NO_ERROR) { | 
|  | 348 | // enforce permission (if any) required for each type of input | 
|  | 349 | switch (outputType) { | 
|  | 350 | case AudioPolicyInterface::API_OUTPUT_LEGACY: | 
|  | 351 | break; | 
|  | 352 | case AudioPolicyInterface::API_OUTPUT_TELEPHONY_TX: | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 353 | if (!modifyPhoneStateAllowed(adjAttributionSource)) { | 
| Eric Laurent | 8a1095a | 2019-11-08 14:44:16 -0800 | [diff] [blame] | 354 | ALOGE("%s() permission denied: modify phone state not allowed for uid %d", | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 355 | __func__, adjAttributionSource.uid); | 
| Eric Laurent | 8a1095a | 2019-11-08 14:44:16 -0800 | [diff] [blame] | 356 | result = PERMISSION_DENIED; | 
|  | 357 | } | 
|  | 358 | break; | 
|  | 359 | case AudioPolicyInterface::API_OUT_MIX_PLAYBACK: | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 360 | if (!modifyAudioRoutingAllowed(adjAttributionSource)) { | 
| Eric Laurent | 8a1095a | 2019-11-08 14:44:16 -0800 | [diff] [blame] | 361 | ALOGE("%s() permission denied: modify audio routing not allowed for uid %d", | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 362 | __func__, adjAttributionSource.uid); | 
| Eric Laurent | 8a1095a | 2019-11-08 14:44:16 -0800 | [diff] [blame] | 363 | result = PERMISSION_DENIED; | 
|  | 364 | } | 
|  | 365 | break; | 
|  | 366 | case AudioPolicyInterface::API_OUTPUT_INVALID: | 
|  | 367 | default: | 
|  | 368 | LOG_ALWAYS_FATAL("%s() encountered an invalid output type %d", | 
|  | 369 | __func__, (int)outputType); | 
|  | 370 | } | 
| Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 371 | } | 
| Eric Laurent | d7fe086 | 2018-07-14 16:48:01 -0700 | [diff] [blame] | 372 |  | 
|  | 373 | if (result == NO_ERROR) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 374 | sp<AudioPlaybackClient> client = | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 375 | new AudioPlaybackClient(attr, output, adjAttributionSource, session, | 
| Philip P. Moltmann | bda4575 | 2020-07-17 16:41:18 -0700 | [diff] [blame] | 376 | portId, selectedDeviceId, stream); | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 377 | mAudioPlaybackClients.add(portId, client); | 
|  | 378 |  | 
|  | 379 | _aidl_return->output = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 380 | legacy2aidl_audio_io_handle_t_int32_t(output)); | 
|  | 381 | _aidl_return->stream = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 382 | legacy2aidl_audio_stream_type_t_AudioStreamType(stream)); | 
|  | 383 | _aidl_return->selectedDeviceId = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 384 | legacy2aidl_audio_port_handle_t_int32_t(selectedDeviceId)); | 
|  | 385 | _aidl_return->portId = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 386 | legacy2aidl_audio_port_handle_t_int32_t(portId)); | 
|  | 387 | _aidl_return->secondaryOutputs = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 388 | convertContainer<std::vector<int32_t>>(secondaryOutputs, | 
|  | 389 | legacy2aidl_audio_io_handle_t_int32_t)); | 
| Eric Laurent | d7fe086 | 2018-07-14 16:48:01 -0700 | [diff] [blame] | 390 | } | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 391 | return binderStatusFromStatusT(result); | 
| Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 392 | } | 
|  | 393 |  | 
| Eric Laurent | bcfe5be | 2019-04-09 19:56:39 -0700 | [diff] [blame] | 394 | void AudioPolicyService::getPlaybackClientAndEffects(audio_port_handle_t portId, | 
|  | 395 | sp<AudioPlaybackClient>& client, | 
|  | 396 | sp<AudioPolicyEffects>& effects, | 
|  | 397 | const char *context) | 
|  | 398 | { | 
|  | 399 | Mutex::Autolock _l(mLock); | 
|  | 400 | const ssize_t index = mAudioPlaybackClients.indexOfKey(portId); | 
|  | 401 | if (index < 0) { | 
|  | 402 | ALOGE("%s AudioTrack client not found for portId %d", context, portId); | 
|  | 403 | return; | 
|  | 404 | } | 
|  | 405 | client = mAudioPlaybackClients.valueAt(index); | 
|  | 406 | effects = mAudioPolicyEffects; | 
|  | 407 | } | 
|  | 408 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 409 | Status AudioPolicyService::startOutput(int32_t portIdAidl) | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 410 | { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 411 | audio_port_handle_t portId = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 412 | aidl2legacy_int32_t_audio_port_handle_t(portIdAidl)); | 
| Eric Laurent | dce54a1 | 2014-03-10 12:19:46 -0700 | [diff] [blame] | 413 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 414 | return binderStatusFromStatusT(NO_INIT); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 415 | } | 
|  | 416 | ALOGV("startOutput()"); | 
| Eric Laurent | d7fe086 | 2018-07-14 16:48:01 -0700 | [diff] [blame] | 417 | sp<AudioPlaybackClient> client; | 
| Eric Laurent | 8b1e80b | 2014-10-07 09:08:47 -0700 | [diff] [blame] | 418 | sp<AudioPolicyEffects>audioPolicyEffects; | 
| Eric Laurent | bcfe5be | 2019-04-09 19:56:39 -0700 | [diff] [blame] | 419 |  | 
|  | 420 | getPlaybackClientAndEffects(portId, client, audioPolicyEffects, __func__); | 
|  | 421 |  | 
| Eric Laurent | 8b1e80b | 2014-10-07 09:08:47 -0700 | [diff] [blame] | 422 | if (audioPolicyEffects != 0) { | 
|  | 423 | // create audio processors according to stream | 
| Eric Laurent | d7fe086 | 2018-07-14 16:48:01 -0700 | [diff] [blame] | 424 | status_t status = audioPolicyEffects->addOutputSessionEffects( | 
|  | 425 | client->io, client->stream, client->session); | 
| Eric Laurent | 8b1e80b | 2014-10-07 09:08:47 -0700 | [diff] [blame] | 426 | if (status != NO_ERROR && status != ALREADY_EXISTS) { | 
| Eric Laurent | d7fe086 | 2018-07-14 16:48:01 -0700 | [diff] [blame] | 427 | ALOGW("Failed to add effects on session %d", client->session); | 
| Eric Laurent | 8b1e80b | 2014-10-07 09:08:47 -0700 | [diff] [blame] | 428 | } | 
|  | 429 | } | 
|  | 430 | Mutex::Autolock _l(mLock); | 
| Eric Laurent | 10b7123 | 2018-04-13 18:14:44 -0700 | [diff] [blame] | 431 | AutoCallerClear acc; | 
| Eric Laurent | 8fc147b | 2018-07-22 19:13:55 -0700 | [diff] [blame] | 432 | status_t status = mAudioPolicyManager->startOutput(portId); | 
| Eric Laurent | d7fe086 | 2018-07-14 16:48:01 -0700 | [diff] [blame] | 433 | if (status == NO_ERROR) { | 
|  | 434 | client->active = true; | 
|  | 435 | } | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 436 | return binderStatusFromStatusT(status); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 437 | } | 
|  | 438 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 439 | Status AudioPolicyService::stopOutput(int32_t portIdAidl) | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 440 | { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 441 | audio_port_handle_t portId = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 442 | aidl2legacy_int32_t_audio_port_handle_t(portIdAidl)); | 
| Eric Laurent | dce54a1 | 2014-03-10 12:19:46 -0700 | [diff] [blame] | 443 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 444 | return binderStatusFromStatusT(NO_INIT); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 445 | } | 
|  | 446 | ALOGV("stopOutput()"); | 
| Eric Laurent | d7fe086 | 2018-07-14 16:48:01 -0700 | [diff] [blame] | 447 | mOutputCommandThread->stopOutputCommand(portId); | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 448 | return Status::ok(); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 449 | } | 
|  | 450 |  | 
| Eric Laurent | d7fe086 | 2018-07-14 16:48:01 -0700 | [diff] [blame] | 451 | status_t  AudioPolicyService::doStopOutput(audio_port_handle_t portId) | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 452 | { | 
| Eric Laurent | d7fe086 | 2018-07-14 16:48:01 -0700 | [diff] [blame] | 453 | ALOGV("doStopOutput"); | 
|  | 454 | sp<AudioPlaybackClient> client; | 
| Eric Laurent | 8b1e80b | 2014-10-07 09:08:47 -0700 | [diff] [blame] | 455 | sp<AudioPolicyEffects>audioPolicyEffects; | 
| Eric Laurent | d7fe086 | 2018-07-14 16:48:01 -0700 | [diff] [blame] | 456 |  | 
| Eric Laurent | bcfe5be | 2019-04-09 19:56:39 -0700 | [diff] [blame] | 457 | getPlaybackClientAndEffects(portId, client, audioPolicyEffects, __func__); | 
|  | 458 |  | 
| Eric Laurent | 8b1e80b | 2014-10-07 09:08:47 -0700 | [diff] [blame] | 459 | if (audioPolicyEffects != 0) { | 
|  | 460 | // release audio processors from the stream | 
| Eric Laurent | d7fe086 | 2018-07-14 16:48:01 -0700 | [diff] [blame] | 461 | status_t status = audioPolicyEffects->releaseOutputSessionEffects( | 
|  | 462 | client->io, client->stream, client->session); | 
| Eric Laurent | 8b1e80b | 2014-10-07 09:08:47 -0700 | [diff] [blame] | 463 | if (status != NO_ERROR && status != ALREADY_EXISTS) { | 
| Eric Laurent | d7fe086 | 2018-07-14 16:48:01 -0700 | [diff] [blame] | 464 | ALOGW("Failed to release effects on session %d", client->session); | 
| Eric Laurent | 8b1e80b | 2014-10-07 09:08:47 -0700 | [diff] [blame] | 465 | } | 
|  | 466 | } | 
|  | 467 | Mutex::Autolock _l(mLock); | 
| Eric Laurent | 10b7123 | 2018-04-13 18:14:44 -0700 | [diff] [blame] | 468 | AutoCallerClear acc; | 
| Eric Laurent | 8fc147b | 2018-07-22 19:13:55 -0700 | [diff] [blame] | 469 | status_t status = mAudioPolicyManager->stopOutput(portId); | 
| Eric Laurent | d7fe086 | 2018-07-14 16:48:01 -0700 | [diff] [blame] | 470 | if (status == NO_ERROR) { | 
|  | 471 | client->active = false; | 
|  | 472 | } | 
|  | 473 | return status; | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 474 | } | 
|  | 475 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 476 | Status AudioPolicyService::releaseOutput(int32_t portIdAidl) | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 477 | { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 478 | audio_port_handle_t portId = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 479 | aidl2legacy_int32_t_audio_port_handle_t(portIdAidl)); | 
| Eric Laurent | dce54a1 | 2014-03-10 12:19:46 -0700 | [diff] [blame] | 480 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 481 | return binderStatusFromStatusT(NO_INIT); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 482 | } | 
|  | 483 | ALOGV("releaseOutput()"); | 
| Eric Laurent | d7fe086 | 2018-07-14 16:48:01 -0700 | [diff] [blame] | 484 | mOutputCommandThread->releaseOutputCommand(portId); | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 485 | return Status::ok(); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 486 | } | 
|  | 487 |  | 
| Eric Laurent | d7fe086 | 2018-07-14 16:48:01 -0700 | [diff] [blame] | 488 | void AudioPolicyService::doReleaseOutput(audio_port_handle_t portId) | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 489 | { | 
|  | 490 | ALOGV("doReleaseOutput from tid %d", gettid()); | 
| Eric Laurent | bcfe5be | 2019-04-09 19:56:39 -0700 | [diff] [blame] | 491 | sp<AudioPlaybackClient> client; | 
|  | 492 | sp<AudioPolicyEffects> audioPolicyEffects; | 
|  | 493 |  | 
|  | 494 | getPlaybackClientAndEffects(portId, client, audioPolicyEffects, __func__); | 
|  | 495 |  | 
|  | 496 | if (audioPolicyEffects != 0 && client->active) { | 
|  | 497 | // clean up effects if output was not stopped before being released | 
|  | 498 | audioPolicyEffects->releaseOutputSessionEffects( | 
|  | 499 | client->io, client->stream, client->session); | 
| Eric Laurent | d7fe086 | 2018-07-14 16:48:01 -0700 | [diff] [blame] | 500 | } | 
| Eric Laurent | bcfe5be | 2019-04-09 19:56:39 -0700 | [diff] [blame] | 501 | Mutex::Autolock _l(mLock); | 
| Eric Laurent | d400724 | 2019-03-27 12:42:16 -0700 | [diff] [blame] | 502 | mAudioPlaybackClients.removeItem(portId); | 
| Eric Laurent | d7fe086 | 2018-07-14 16:48:01 -0700 | [diff] [blame] | 503 |  | 
| Eric Laurent | 10b7123 | 2018-04-13 18:14:44 -0700 | [diff] [blame] | 504 | // called from internal thread: no need to clear caller identity | 
| Eric Laurent | 8fc147b | 2018-07-22 19:13:55 -0700 | [diff] [blame] | 505 | mAudioPolicyManager->releaseOutput(portId); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 506 | } | 
|  | 507 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 508 | Status AudioPolicyService::getInputForAttr(const media::AudioAttributesInternal& attrAidl, | 
|  | 509 | int32_t inputAidl, | 
|  | 510 | int32_t riidAidl, | 
|  | 511 | int32_t sessionAidl, | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 512 | const AttributionSourceState& attributionSource, | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 513 | const media::AudioConfigBase& configAidl, | 
|  | 514 | int32_t flagsAidl, | 
| Eric Laurent | f99edd3 | 2021-02-01 15:57:33 +0100 | [diff] [blame] | 515 | int32_t selectedDeviceIdAidl, | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 516 | media::GetInputForAttrResponse* _aidl_return) { | 
|  | 517 | audio_attributes_t attr = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 518 | aidl2legacy_AudioAttributesInternal_audio_attributes_t(attrAidl)); | 
|  | 519 | audio_io_handle_t input = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 520 | aidl2legacy_int32_t_audio_io_handle_t(inputAidl)); | 
|  | 521 | audio_unique_id_t riid = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 522 | aidl2legacy_int32_t_audio_unique_id_t(riidAidl)); | 
|  | 523 | audio_session_t session = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 524 | aidl2legacy_int32_t_audio_session_t(sessionAidl)); | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 525 | audio_config_base_t config = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 526 | aidl2legacy_AudioConfigBase_audio_config_base_t(configAidl)); | 
|  | 527 | audio_input_flags_t flags = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 528 | aidl2legacy_int32_t_audio_input_flags_t_mask(flagsAidl)); | 
| Eric Laurent | f99edd3 | 2021-02-01 15:57:33 +0100 | [diff] [blame] | 529 | audio_port_handle_t selectedDeviceId = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 530 | aidl2legacy_int32_t_audio_port_handle_t(selectedDeviceIdAidl)); | 
|  | 531 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 532 | audio_port_handle_t portId; | 
|  | 533 |  | 
| Eric Laurent | dce54a1 | 2014-03-10 12:19:46 -0700 | [diff] [blame] | 534 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 535 | return binderStatusFromStatusT(NO_INIT); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 536 | } | 
| Eric Laurent | 7dca8a8 | 2018-01-29 18:44:26 -0800 | [diff] [blame] | 537 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 538 | RETURN_IF_BINDER_ERROR( | 
|  | 539 | binderStatusFromStatusT(AudioValidator::validateAudioAttributes(attr, "68953950"))); | 
| Hayden Gomes | 524159d | 2019-12-23 14:41:47 -0800 | [diff] [blame] | 540 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 541 | audio_source_t inputSource = attr.source; | 
| Hiroaki Hayashi | 4de0b45 | 2019-07-18 19:50:47 +0900 | [diff] [blame] | 542 | if (inputSource == AUDIO_SOURCE_DEFAULT) { | 
|  | 543 | inputSource = AUDIO_SOURCE_MIC; | 
|  | 544 | } | 
|  | 545 |  | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 546 | // already checked by client, but double-check in case the client wrapper is bypassed | 
| Hiroaki Hayashi | 4de0b45 | 2019-07-18 19:50:47 +0900 | [diff] [blame] | 547 | if ((inputSource < AUDIO_SOURCE_DEFAULT) | 
|  | 548 | || (inputSource >= AUDIO_SOURCE_CNT | 
|  | 549 | && inputSource != AUDIO_SOURCE_HOTWORD | 
|  | 550 | && inputSource != AUDIO_SOURCE_FM_TUNER | 
|  | 551 | && inputSource != AUDIO_SOURCE_ECHO_REFERENCE)) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 552 | return binderStatusFromStatusT(BAD_VALUE); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 553 | } | 
|  | 554 |  | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 555 | // Make sure attribution source represents the current caller | 
|  | 556 | AttributionSourceState adjAttributionSource = attributionSource; | 
| Philip P. Moltmann | bda4575 | 2020-07-17 16:41:18 -0700 | [diff] [blame] | 557 | // TODO b/182392553: refactor or remove | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 558 | bool updatePid = (attributionSource.pid == -1); | 
| Philip P. Moltmann | bda4575 | 2020-07-17 16:41:18 -0700 | [diff] [blame] | 559 | const uid_t callingUid =IPCThreadState::self()->getCallingUid(); | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 560 | const uid_t currentUid = VALUE_OR_RETURN_BINDER_STATUS(aidl2legacy_int32_t_uid_t( | 
|  | 561 | attributionSource.uid)); | 
| Andy Hung | 4ef19fa | 2018-05-15 19:35:29 -0700 | [diff] [blame] | 562 | if (!isAudioServerOrMediaServerUid(callingUid)) { | 
| Philip P. Moltmann | bda4575 | 2020-07-17 16:41:18 -0700 | [diff] [blame] | 563 | ALOGW_IF(currentUid != (uid_t)-1 && currentUid != callingUid, | 
|  | 564 | "%s uid %d tried to pass itself off as %d", __FUNCTION__, callingUid, | 
|  | 565 | currentUid); | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 566 | adjAttributionSource.uid = VALUE_OR_RETURN_BINDER_STATUS(legacy2aidl_uid_t_int32_t( | 
|  | 567 | callingUid)); | 
| Eric Laurent | b2379ba | 2016-05-23 17:42:12 -0700 | [diff] [blame] | 568 | updatePid = true; | 
|  | 569 | } | 
|  | 570 |  | 
|  | 571 | if (updatePid) { | 
| Philip P. Moltmann | bda4575 | 2020-07-17 16:41:18 -0700 | [diff] [blame] | 572 | const int32_t callingPid = VALUE_OR_RETURN_BINDER_STATUS(legacy2aidl_pid_t_int32_t( | 
|  | 573 | IPCThreadState::self()->getCallingPid())); | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 574 | ALOGW_IF(attributionSource.pid != -1 && attributionSource.pid != callingPid, | 
| Eric Laurent | b2379ba | 2016-05-23 17:42:12 -0700 | [diff] [blame] | 575 | "%s uid %d pid %d tried to pass itself off as pid %d", | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 576 | __func__, adjAttributionSource.uid, callingPid, attributionSource.pid); | 
|  | 577 | adjAttributionSource.pid = callingPid; | 
| Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 578 | } | 
|  | 579 |  | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 580 | RETURN_IF_BINDER_ERROR(binderStatusFromStatusT(validateUsage(attr.usage, | 
|  | 581 | adjAttributionSource))); | 
| Philip P. Moltmann | bda4575 | 2020-07-17 16:41:18 -0700 | [diff] [blame] | 582 |  | 
| Eric Laurent | 58a0dd8 | 2019-10-24 12:42:17 -0700 | [diff] [blame] | 583 | // check calling permissions. | 
| Hayden Gomes | b742992 | 2020-12-11 13:59:18 -0800 | [diff] [blame] | 584 | // Capturing from FM_TUNER source is controlled by captureTunerAudioInputAllowed() and | 
|  | 585 | // captureAudioOutputAllowed() (deprecated) as this does not affect users privacy | 
|  | 586 | // as does capturing from an actual microphone. | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 587 | if (!(recordingAllowed(adjAttributionSource, attr.source) | 
|  | 588 | || attr.source == AUDIO_SOURCE_FM_TUNER)) { | 
| Philip P. Moltmann | bda4575 | 2020-07-17 16:41:18 -0700 | [diff] [blame] | 589 | ALOGE("%s permission denied: recording not allowed for %s", | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 590 | __func__, adjAttributionSource.toString().c_str()); | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 591 | return binderStatusFromStatusT(PERMISSION_DENIED); | 
| Eric Laurent | 7dca8a8 | 2018-01-29 18:44:26 -0800 | [diff] [blame] | 592 | } | 
|  | 593 |  | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 594 | bool canCaptureOutput = captureAudioOutputAllowed(adjAttributionSource); | 
| Ricardo Correa | 57a3769 | 2020-03-23 17:27:25 -0700 | [diff] [blame] | 595 | if ((inputSource == AUDIO_SOURCE_VOICE_UPLINK || | 
|  | 596 | inputSource == AUDIO_SOURCE_VOICE_DOWNLINK || | 
|  | 597 | inputSource == AUDIO_SOURCE_VOICE_CALL || | 
| Hayden Gomes | b742992 | 2020-12-11 13:59:18 -0800 | [diff] [blame] | 598 | inputSource == AUDIO_SOURCE_ECHO_REFERENCE) | 
|  | 599 | && !canCaptureOutput) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 600 | return binderStatusFromStatusT(PERMISSION_DENIED); | 
| Hayden Gomes | b742992 | 2020-12-11 13:59:18 -0800 | [diff] [blame] | 601 | } | 
|  | 602 |  | 
|  | 603 | if (inputSource == AUDIO_SOURCE_FM_TUNER | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 604 | && !captureTunerAudioInputAllowed(adjAttributionSource) | 
| Hayden Gomes | b742992 | 2020-12-11 13:59:18 -0800 | [diff] [blame] | 605 | && !canCaptureOutput) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 606 | return binderStatusFromStatusT(PERMISSION_DENIED); | 
| Nadav Bar | 744be48 | 2018-05-08 13:26:21 +0300 | [diff] [blame] | 607 | } | 
|  | 608 |  | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 609 | bool canCaptureHotword = captureHotwordAllowed(adjAttributionSource); | 
| Hiroaki Hayashi | 4de0b45 | 2019-07-18 19:50:47 +0900 | [diff] [blame] | 610 | if ((inputSource == AUDIO_SOURCE_HOTWORD) && !canCaptureHotword) { | 
| Bhalchandra Gajare | dea7f94 | 2021-01-27 17:28:30 -0800 | [diff] [blame] | 611 | return binderStatusFromStatusT(PERMISSION_DENIED); | 
|  | 612 | } | 
|  | 613 |  | 
|  | 614 | if (((flags & AUDIO_INPUT_FLAG_HW_HOTWORD) != 0) | 
|  | 615 | && !canCaptureHotword) { | 
|  | 616 | ALOGE("%s: permission denied: hotword mode not allowed" | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 617 | " for uid %d pid %d", __func__, adjAttributionSource.uid, adjAttributionSource.pid); | 
| Bhalchandra Gajare | dea7f94 | 2021-01-27 17:28:30 -0800 | [diff] [blame] | 618 | return binderStatusFromStatusT(PERMISSION_DENIED); | 
| Eric Laurent | 7504b9e | 2017-08-15 18:17:26 -0700 | [diff] [blame] | 619 | } | 
|  | 620 |  | 
|  | 621 | sp<AudioPolicyEffects>audioPolicyEffects; | 
| Eric Laurent | 8b1e80b | 2014-10-07 09:08:47 -0700 | [diff] [blame] | 622 | { | 
| Eric Laurent | 7504b9e | 2017-08-15 18:17:26 -0700 | [diff] [blame] | 623 | status_t status; | 
|  | 624 | AudioPolicyInterface::input_type_t inputType; | 
|  | 625 |  | 
| Eric Laurent | 8b1e80b | 2014-10-07 09:08:47 -0700 | [diff] [blame] | 626 | Mutex::Autolock _l(mLock); | 
| Eric Laurent | 10b7123 | 2018-04-13 18:14:44 -0700 | [diff] [blame] | 627 | { | 
|  | 628 | AutoCallerClear acc; | 
|  | 629 | // the audio_in_acoustics_t parameter is ignored by get_input() | 
| Philip P. Moltmann | bda4575 | 2020-07-17 16:41:18 -0700 | [diff] [blame] | 630 | status = mAudioPolicyManager->getInputForAttr(&attr, &input, riid, session, | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 631 | adjAttributionSource, &config, | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 632 | flags, &selectedDeviceId, | 
|  | 633 | &inputType, &portId); | 
| Philip P. Moltmann | bda4575 | 2020-07-17 16:41:18 -0700 | [diff] [blame] | 634 |  | 
| Eric Laurent | 10b7123 | 2018-04-13 18:14:44 -0700 | [diff] [blame] | 635 | } | 
| Eric Laurent | 8b1e80b | 2014-10-07 09:08:47 -0700 | [diff] [blame] | 636 | audioPolicyEffects = mAudioPolicyEffects; | 
| Jean-Michel Trivi | 97bb33f | 2014-12-12 16:23:43 -0800 | [diff] [blame] | 637 |  | 
|  | 638 | if (status == NO_ERROR) { | 
|  | 639 | // enforce permission (if any) required for each type of input | 
|  | 640 | switch (inputType) { | 
| Kevin Rocard | 25f9b05 | 2019-02-27 15:08:54 -0800 | [diff] [blame] | 641 | case AudioPolicyInterface::API_INPUT_MIX_PUBLIC_CAPTURE_PLAYBACK: | 
|  | 642 | // this use case has been validated in audio service with a MediaProjection token, | 
|  | 643 | // and doesn't rely on regular permissions | 
| Jean-Michel Trivi | 97bb33f | 2014-12-12 16:23:43 -0800 | [diff] [blame] | 644 | case AudioPolicyInterface::API_INPUT_LEGACY: | 
|  | 645 | break; | 
| Eric Laurent | 82db269 | 2015-08-07 13:59:42 -0700 | [diff] [blame] | 646 | case AudioPolicyInterface::API_INPUT_TELEPHONY_RX: | 
|  | 647 | // FIXME: use the same permission as for remote submix for now. | 
| Jean-Michel Trivi | 97bb33f | 2014-12-12 16:23:43 -0800 | [diff] [blame] | 648 | case AudioPolicyInterface::API_INPUT_MIX_CAPTURE: | 
| Eric Laurent | 1ff16a7 | 2019-03-14 18:35:04 -0700 | [diff] [blame] | 649 | if (!canCaptureOutput) { | 
| Jean-Michel Trivi | 97bb33f | 2014-12-12 16:23:43 -0800 | [diff] [blame] | 650 | ALOGE("getInputForAttr() permission denied: capture not allowed"); | 
|  | 651 | status = PERMISSION_DENIED; | 
|  | 652 | } | 
|  | 653 | break; | 
|  | 654 | case AudioPolicyInterface::API_INPUT_MIX_EXT_POLICY_REROUTE: | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 655 | if (!modifyAudioRoutingAllowed(adjAttributionSource)) { | 
| Jean-Michel Trivi | 97bb33f | 2014-12-12 16:23:43 -0800 | [diff] [blame] | 656 | ALOGE("getInputForAttr() permission denied: modify audio routing not allowed"); | 
|  | 657 | status = PERMISSION_DENIED; | 
|  | 658 | } | 
|  | 659 | break; | 
|  | 660 | case AudioPolicyInterface::API_INPUT_INVALID: | 
|  | 661 | default: | 
|  | 662 | LOG_ALWAYS_FATAL("getInputForAttr() encountered an invalid input type %d", | 
|  | 663 | (int)inputType); | 
|  | 664 | } | 
|  | 665 | } | 
|  | 666 |  | 
|  | 667 | if (status != NO_ERROR) { | 
|  | 668 | if (status == PERMISSION_DENIED) { | 
| Eric Laurent | 10b7123 | 2018-04-13 18:14:44 -0700 | [diff] [blame] | 669 | AutoCallerClear acc; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 670 | mAudioPolicyManager->releaseInput(portId); | 
| Jean-Michel Trivi | 97bb33f | 2014-12-12 16:23:43 -0800 | [diff] [blame] | 671 | } | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 672 | return binderStatusFromStatusT(status); | 
| Jean-Michel Trivi | 97bb33f | 2014-12-12 16:23:43 -0800 | [diff] [blame] | 673 | } | 
| Eric Laurent | fee1976 | 2018-01-29 18:44:13 -0800 | [diff] [blame] | 674 |  | 
| Philip P. Moltmann | bda4575 | 2020-07-17 16:41:18 -0700 | [diff] [blame] | 675 | sp<AudioRecordClient> client = new AudioRecordClient(attr, input, session, portId, | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 676 | selectedDeviceId, adjAttributionSource, | 
| Eric Laurent | ed726cc | 2021-07-01 14:26:41 +0200 | [diff] [blame] | 677 | canCaptureOutput, canCaptureHotword, | 
| Eric Laurent | 9925db5 | 2021-07-20 16:03:34 +0200 | [diff] [blame] | 678 | mOutputCommandThread); | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 679 | mAudioRecordClients.add(portId, client); | 
| Eric Laurent | 8b1e80b | 2014-10-07 09:08:47 -0700 | [diff] [blame] | 680 | } | 
| Jean-Michel Trivi | 97bb33f | 2014-12-12 16:23:43 -0800 | [diff] [blame] | 681 |  | 
| Eric Laurent | 8b1e80b | 2014-10-07 09:08:47 -0700 | [diff] [blame] | 682 | if (audioPolicyEffects != 0) { | 
|  | 683 | // create audio pre processors according to input source | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 684 | status_t status = audioPolicyEffects->addInputEffects(input, inputSource, session); | 
| Eric Laurent | 8b1e80b | 2014-10-07 09:08:47 -0700 | [diff] [blame] | 685 | if (status != NO_ERROR && status != ALREADY_EXISTS) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 686 | ALOGW("Failed to add effects on input %d", input); | 
| Eric Laurent | 8b1e80b | 2014-10-07 09:08:47 -0700 | [diff] [blame] | 687 | } | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 688 | } | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 689 |  | 
|  | 690 | _aidl_return->input = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 691 | legacy2aidl_audio_io_handle_t_int32_t(input)); | 
|  | 692 | _aidl_return->selectedDeviceId = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 693 | legacy2aidl_audio_port_handle_t_int32_t(selectedDeviceId)); | 
|  | 694 | _aidl_return->portId = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 695 | legacy2aidl_audio_port_handle_t_int32_t(portId)); | 
|  | 696 | return Status::ok(); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 697 | } | 
|  | 698 |  | 
| Eric Laurent | 99fcae4 | 2018-05-17 16:59:18 -0700 | [diff] [blame] | 699 | std::string AudioPolicyService::getDeviceTypeStrForPortId(audio_port_handle_t portId) { | 
| jiabin | 19cdba5 | 2020-11-24 11:28:58 -0800 | [diff] [blame] | 700 | struct audio_port_v7 port = {}; | 
| Eric Laurent | 99fcae4 | 2018-05-17 16:59:18 -0700 | [diff] [blame] | 701 | port.id = portId; | 
|  | 702 | status_t status = mAudioPolicyManager->getAudioPort(&port); | 
|  | 703 | if (status == NO_ERROR && port.type == AUDIO_PORT_TYPE_DEVICE) { | 
| Andy Hung | 9b18195 | 2019-02-25 14:53:36 -0800 | [diff] [blame] | 704 | return toString(port.ext.device.type); | 
| Eric Laurent | 99fcae4 | 2018-05-17 16:59:18 -0700 | [diff] [blame] | 705 | } | 
| Andy Hung | 9b18195 | 2019-02-25 14:53:36 -0800 | [diff] [blame] | 706 | return {}; | 
| Eric Laurent | 99fcae4 | 2018-05-17 16:59:18 -0700 | [diff] [blame] | 707 | } | 
|  | 708 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 709 | Status AudioPolicyService::startInput(int32_t portIdAidl) | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 710 | { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 711 | audio_port_handle_t portId = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 712 | aidl2legacy_int32_t_audio_port_handle_t(portIdAidl)); | 
|  | 713 |  | 
| Eric Laurent | dce54a1 | 2014-03-10 12:19:46 -0700 | [diff] [blame] | 714 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 715 | return binderStatusFromStatusT(NO_INIT); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 716 | } | 
| Eric Laurent | 7dca8a8 | 2018-01-29 18:44:26 -0800 | [diff] [blame] | 717 | sp<AudioRecordClient> client; | 
|  | 718 | { | 
|  | 719 | Mutex::Autolock _l(mLock); | 
| Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 720 |  | 
| Eric Laurent | 7dca8a8 | 2018-01-29 18:44:26 -0800 | [diff] [blame] | 721 | ssize_t index = mAudioRecordClients.indexOfKey(portId); | 
|  | 722 | if (index < 0) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 723 | return binderStatusFromStatusT(INVALID_OPERATION); | 
| Eric Laurent | 7dca8a8 | 2018-01-29 18:44:26 -0800 | [diff] [blame] | 724 | } | 
|  | 725 | client = mAudioRecordClients.valueAt(index); | 
| Eric Laurent | fee1976 | 2018-01-29 18:44:13 -0800 | [diff] [blame] | 726 | } | 
| Eric Laurent | 7dca8a8 | 2018-01-29 18:44:26 -0800 | [diff] [blame] | 727 |  | 
| Philip P. Moltmann | bda4575 | 2020-07-17 16:41:18 -0700 | [diff] [blame] | 728 | std::stringstream msg; | 
|  | 729 | msg << "Audio recording on session " << client->session; | 
|  | 730 |  | 
| Eric Laurent | 7dca8a8 | 2018-01-29 18:44:26 -0800 | [diff] [blame] | 731 | // check calling permissions | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 732 | if (!(startRecording(client->attributionSource, String16(msg.str().c_str()), | 
| Philip P. Moltmann | bda4575 | 2020-07-17 16:41:18 -0700 | [diff] [blame] | 733 | client->attributes.source) | 
| Eric Laurent | 58a0dd8 | 2019-10-24 12:42:17 -0700 | [diff] [blame] | 734 | || client->attributes.source == AUDIO_SOURCE_FM_TUNER)) { | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 735 | ALOGE("%s permission denied: recording not allowed for attribution source %s", | 
|  | 736 | __func__, client->attributionSource.toString().c_str()); | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 737 | return binderStatusFromStatusT(PERMISSION_DENIED); | 
| Eric Laurent | 7dca8a8 | 2018-01-29 18:44:26 -0800 | [diff] [blame] | 738 | } | 
| Eric Laurent | fee1976 | 2018-01-29 18:44:13 -0800 | [diff] [blame] | 739 |  | 
| Eric Laurent | df62892 | 2018-12-06 21:45:51 +0000 | [diff] [blame] | 740 | Mutex::Autolock _l(mLock); | 
| Eric Laurent | 4eb58f1 | 2018-12-07 16:41:02 -0800 | [diff] [blame] | 741 |  | 
|  | 742 | client->active = true; | 
|  | 743 | client->startTimeNs = systemTime(); | 
|  | 744 | updateUidStates_l(); | 
| Eric Laurent | fee1976 | 2018-01-29 18:44:13 -0800 | [diff] [blame] | 745 |  | 
| Eric Laurent | 10b7123 | 2018-04-13 18:14:44 -0700 | [diff] [blame] | 746 | status_t status; | 
|  | 747 | { | 
|  | 748 | AutoCallerClear acc; | 
| Eric Laurent | 4eb58f1 | 2018-12-07 16:41:02 -0800 | [diff] [blame] | 749 | status = mAudioPolicyManager->startInput(portId); | 
| Ray Essick | 84e84a5 | 2018-05-03 18:45:07 -0700 | [diff] [blame] | 750 |  | 
|  | 751 | } | 
|  | 752 |  | 
| Ray Essick | f6a57cd | 2018-05-22 16:20:54 -0700 | [diff] [blame] | 753 | // including successes gets very verbose | 
| Muhammad Qureshi | 087b37c | 2020-06-16 16:37:36 -0700 | [diff] [blame] | 754 | // but once we cut over to statsd, log them all. | 
| Ray Essick | f6a57cd | 2018-05-22 16:20:54 -0700 | [diff] [blame] | 755 | if (status != NO_ERROR) { | 
| Ray Essick | 84e84a5 | 2018-05-03 18:45:07 -0700 | [diff] [blame] | 756 |  | 
|  | 757 | static constexpr char kAudioPolicy[] = "audiopolicy"; | 
|  | 758 |  | 
| Ray Essick | 84e84a5 | 2018-05-03 18:45:07 -0700 | [diff] [blame] | 759 | static constexpr char kAudioPolicyStatus[] = "android.media.audiopolicy.status"; | 
|  | 760 | static constexpr char kAudioPolicyRqstSrc[] = "android.media.audiopolicy.rqst.src"; | 
|  | 761 | static constexpr char kAudioPolicyRqstPkg[] = "android.media.audiopolicy.rqst.pkg"; | 
|  | 762 | static constexpr char kAudioPolicyRqstSession[] = "android.media.audiopolicy.rqst.session"; | 
| Eric Laurent | 99fcae4 | 2018-05-17 16:59:18 -0700 | [diff] [blame] | 763 | static constexpr char kAudioPolicyRqstDevice[] = | 
|  | 764 | "android.media.audiopolicy.rqst.device"; | 
| Ray Essick | 84e84a5 | 2018-05-03 18:45:07 -0700 | [diff] [blame] | 765 | static constexpr char kAudioPolicyActiveSrc[] = "android.media.audiopolicy.active.src"; | 
|  | 766 | static constexpr char kAudioPolicyActivePkg[] = "android.media.audiopolicy.active.pkg"; | 
| Eric Laurent | 99fcae4 | 2018-05-17 16:59:18 -0700 | [diff] [blame] | 767 | static constexpr char kAudioPolicyActiveSession[] = | 
|  | 768 | "android.media.audiopolicy.active.session"; | 
|  | 769 | static constexpr char kAudioPolicyActiveDevice[] = | 
|  | 770 | "android.media.audiopolicy.active.device"; | 
| Ray Essick | 84e84a5 | 2018-05-03 18:45:07 -0700 | [diff] [blame] | 771 |  | 
| Ray Essick | f27e987 | 2019-12-07 06:28:46 -0800 | [diff] [blame] | 772 | mediametrics::Item *item = mediametrics::Item::create(kAudioPolicy); | 
| Ray Essick | 84e84a5 | 2018-05-03 18:45:07 -0700 | [diff] [blame] | 773 | if (item != NULL) { | 
|  | 774 |  | 
| Ray Essick | 84e84a5 | 2018-05-03 18:45:07 -0700 | [diff] [blame] | 775 | item->setInt32(kAudioPolicyStatus, status); | 
|  | 776 |  | 
| Eric Laurent | 99fcae4 | 2018-05-17 16:59:18 -0700 | [diff] [blame] | 777 | item->setCString(kAudioPolicyRqstSrc, | 
| Andy Hung | 9b18195 | 2019-02-25 14:53:36 -0800 | [diff] [blame] | 778 | toString(client->attributes.source).c_str()); | 
| Ray Essick | 84e84a5 | 2018-05-03 18:45:07 -0700 | [diff] [blame] | 779 | item->setInt32(kAudioPolicyRqstSession, client->session); | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 780 | if (client->attributionSource.packageName.has_value() && | 
|  | 781 | client->attributionSource.packageName.value().size() != 0) { | 
| Ray Essick | 5186695 | 2018-05-30 11:22:27 -0700 | [diff] [blame] | 782 | item->setCString(kAudioPolicyRqstPkg, | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 783 | client->attributionSource.packageName.value().c_str()); | 
| Ray Essick | 5186695 | 2018-05-30 11:22:27 -0700 | [diff] [blame] | 784 | } else { | 
| Philip P. Moltmann | bda4575 | 2020-07-17 16:41:18 -0700 | [diff] [blame] | 785 | item->setCString(kAudioPolicyRqstPkg, | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 786 | std::to_string(client->attributionSource.uid).c_str()); | 
| Ray Essick | 5186695 | 2018-05-30 11:22:27 -0700 | [diff] [blame] | 787 | } | 
| Eric Laurent | 99fcae4 | 2018-05-17 16:59:18 -0700 | [diff] [blame] | 788 | item->setCString( | 
|  | 789 | kAudioPolicyRqstDevice, getDeviceTypeStrForPortId(client->deviceId).c_str()); | 
|  | 790 |  | 
| Eric Laurent | 4eb58f1 | 2018-12-07 16:41:02 -0800 | [diff] [blame] | 791 | int count = mAudioRecordClients.size(); | 
|  | 792 | for (int i = 0; i < count ; i++) { | 
|  | 793 | if (portId == mAudioRecordClients.keyAt(i)) { | 
|  | 794 | continue; | 
|  | 795 | } | 
|  | 796 | sp<AudioRecordClient> other = mAudioRecordClients.valueAt(i); | 
|  | 797 | if (other->active) { | 
|  | 798 | // keeps the last of the clients marked active | 
|  | 799 | item->setCString(kAudioPolicyActiveSrc, | 
| Andy Hung | 9b18195 | 2019-02-25 14:53:36 -0800 | [diff] [blame] | 800 | toString(other->attributes.source).c_str()); | 
| Eric Laurent | 4eb58f1 | 2018-12-07 16:41:02 -0800 | [diff] [blame] | 801 | item->setInt32(kAudioPolicyActiveSession, other->session); | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 802 | if (other->attributionSource.packageName.has_value() && | 
|  | 803 | other->attributionSource.packageName.value().size() != 0) { | 
| Eric Laurent | 4eb58f1 | 2018-12-07 16:41:02 -0800 | [diff] [blame] | 804 | item->setCString(kAudioPolicyActivePkg, | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 805 | other->attributionSource.packageName.value().c_str()); | 
| Eric Laurent | 4eb58f1 | 2018-12-07 16:41:02 -0800 | [diff] [blame] | 806 | } else { | 
| Philip P. Moltmann | bda4575 | 2020-07-17 16:41:18 -0700 | [diff] [blame] | 807 | item->setCString(kAudioPolicyRqstPkg, std::to_string( | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 808 | other->attributionSource.uid).c_str()); | 
| Ray Essick | 84e84a5 | 2018-05-03 18:45:07 -0700 | [diff] [blame] | 809 | } | 
| Eric Laurent | 4eb58f1 | 2018-12-07 16:41:02 -0800 | [diff] [blame] | 810 | item->setCString(kAudioPolicyActiveDevice, | 
|  | 811 | getDeviceTypeStrForPortId(other->deviceId).c_str()); | 
| Ray Essick | 84e84a5 | 2018-05-03 18:45:07 -0700 | [diff] [blame] | 812 | } | 
|  | 813 | } | 
|  | 814 | item->selfrecord(); | 
|  | 815 | delete item; | 
|  | 816 | item = NULL; | 
|  | 817 | } | 
| Ray Essick | 6ce27e5 | 2019-02-15 10:58:05 -0800 | [diff] [blame] | 818 | } | 
|  | 819 |  | 
|  | 820 | if (status != NO_ERROR) { | 
| Eric Laurent | 4eb58f1 | 2018-12-07 16:41:02 -0800 | [diff] [blame] | 821 | client->active = false; | 
|  | 822 | client->startTimeNs = 0; | 
|  | 823 | updateUidStates_l(); | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 824 | finishRecording(client->attributionSource, client->attributes.source); | 
| Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 825 | } | 
|  | 826 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 827 | return binderStatusFromStatusT(status); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 828 | } | 
|  | 829 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 830 | Status AudioPolicyService::stopInput(int32_t portIdAidl) | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 831 | { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 832 | audio_port_handle_t portId = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 833 | aidl2legacy_int32_t_audio_port_handle_t(portIdAidl)); | 
|  | 834 |  | 
| Eric Laurent | dce54a1 | 2014-03-10 12:19:46 -0700 | [diff] [blame] | 835 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 836 | return binderStatusFromStatusT(NO_INIT); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 837 | } | 
| Eric Laurent | 4eb58f1 | 2018-12-07 16:41:02 -0800 | [diff] [blame] | 838 |  | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 839 | Mutex::Autolock _l(mLock); | 
|  | 840 |  | 
| Eric Laurent | fee1976 | 2018-01-29 18:44:13 -0800 | [diff] [blame] | 841 | ssize_t index = mAudioRecordClients.indexOfKey(portId); | 
|  | 842 | if (index < 0) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 843 | return binderStatusFromStatusT(INVALID_OPERATION); | 
| Eric Laurent | fee1976 | 2018-01-29 18:44:13 -0800 | [diff] [blame] | 844 | } | 
|  | 845 | sp<AudioRecordClient> client = mAudioRecordClients.valueAt(index); | 
|  | 846 |  | 
| Ray Essick | 84e84a5 | 2018-05-03 18:45:07 -0700 | [diff] [blame] | 847 | client->active = false; | 
| Eric Laurent | 4eb58f1 | 2018-12-07 16:41:02 -0800 | [diff] [blame] | 848 | client->startTimeNs = 0; | 
|  | 849 |  | 
|  | 850 | updateUidStates_l(); | 
| Ray Essick | 84e84a5 | 2018-05-03 18:45:07 -0700 | [diff] [blame] | 851 |  | 
| Svet Ganov | 6e64137 | 2018-03-02 09:21:30 -0800 | [diff] [blame] | 852 | // finish the recording app op | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 853 | finishRecording(client->attributionSource, client->attributes.source); | 
| Eric Laurent | 10b7123 | 2018-04-13 18:14:44 -0700 | [diff] [blame] | 854 | AutoCallerClear acc; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 855 | return binderStatusFromStatusT(mAudioPolicyManager->stopInput(portId)); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 856 | } | 
|  | 857 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 858 | Status AudioPolicyService::releaseInput(int32_t portIdAidl) | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 859 | { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 860 | audio_port_handle_t portId = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 861 | aidl2legacy_int32_t_audio_port_handle_t(portIdAidl)); | 
|  | 862 |  | 
| Eric Laurent | dce54a1 | 2014-03-10 12:19:46 -0700 | [diff] [blame] | 863 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 864 | return binderStatusFromStatusT(NO_INIT); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 865 | } | 
| Eric Laurent | 8b1e80b | 2014-10-07 09:08:47 -0700 | [diff] [blame] | 866 | sp<AudioPolicyEffects>audioPolicyEffects; | 
| Eric Laurent | fee1976 | 2018-01-29 18:44:13 -0800 | [diff] [blame] | 867 | sp<AudioRecordClient> client; | 
| Eric Laurent | 8b1e80b | 2014-10-07 09:08:47 -0700 | [diff] [blame] | 868 | { | 
|  | 869 | Mutex::Autolock _l(mLock); | 
| Eric Laurent | 8b1e80b | 2014-10-07 09:08:47 -0700 | [diff] [blame] | 870 | audioPolicyEffects = mAudioPolicyEffects; | 
| Eric Laurent | fee1976 | 2018-01-29 18:44:13 -0800 | [diff] [blame] | 871 | ssize_t index = mAudioRecordClients.indexOfKey(portId); | 
|  | 872 | if (index < 0) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 873 | return Status::ok(); | 
| Eric Laurent | fee1976 | 2018-01-29 18:44:13 -0800 | [diff] [blame] | 874 | } | 
|  | 875 | client = mAudioRecordClients.valueAt(index); | 
| Eric Laurent | 4eb58f1 | 2018-12-07 16:41:02 -0800 | [diff] [blame] | 876 |  | 
|  | 877 | if (client->active) { | 
|  | 878 | ALOGW("%s releasing active client portId %d", __FUNCTION__, portId); | 
|  | 879 | client->active = false; | 
|  | 880 | client->startTimeNs = 0; | 
|  | 881 | updateUidStates_l(); | 
|  | 882 | } | 
|  | 883 |  | 
| Eric Laurent | fee1976 | 2018-01-29 18:44:13 -0800 | [diff] [blame] | 884 | mAudioRecordClients.removeItem(portId); | 
|  | 885 | } | 
|  | 886 | if (client == 0) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 887 | return Status::ok(); | 
| Eric Laurent | 8b1e80b | 2014-10-07 09:08:47 -0700 | [diff] [blame] | 888 | } | 
|  | 889 | if (audioPolicyEffects != 0) { | 
|  | 890 | // release audio processors from the input | 
| Eric Laurent | d7fe086 | 2018-07-14 16:48:01 -0700 | [diff] [blame] | 891 | status_t status = audioPolicyEffects->releaseInputEffects(client->io, client->session); | 
| Eric Laurent | 8b1e80b | 2014-10-07 09:08:47 -0700 | [diff] [blame] | 892 | if(status != NO_ERROR) { | 
| Eric Laurent | d7fe086 | 2018-07-14 16:48:01 -0700 | [diff] [blame] | 893 | ALOGW("Failed to release effects on input %d", client->io); | 
| Eric Laurent | 8b1e80b | 2014-10-07 09:08:47 -0700 | [diff] [blame] | 894 | } | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 895 | } | 
| Eric Laurent | f10c709 | 2016-12-06 17:09:56 -0800 | [diff] [blame] | 896 | { | 
|  | 897 | Mutex::Autolock _l(mLock); | 
| Eric Laurent | 10b7123 | 2018-04-13 18:14:44 -0700 | [diff] [blame] | 898 | AutoCallerClear acc; | 
| Eric Laurent | 8fc147b | 2018-07-22 19:13:55 -0700 | [diff] [blame] | 899 | mAudioPolicyManager->releaseInput(portId); | 
| Eric Laurent | f10c709 | 2016-12-06 17:09:56 -0800 | [diff] [blame] | 900 | } | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 901 | return Status::ok(); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 902 | } | 
|  | 903 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 904 | Status AudioPolicyService::initStreamVolume(media::AudioStreamType streamAidl, | 
|  | 905 | int32_t indexMinAidl, | 
|  | 906 | int32_t indexMaxAidl) { | 
|  | 907 | audio_stream_type_t stream = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 908 | aidl2legacy_AudioStreamType_audio_stream_type_t(streamAidl)); | 
|  | 909 | int indexMin = VALUE_OR_RETURN_BINDER_STATUS(convertIntegral<int>(indexMinAidl)); | 
|  | 910 | int indexMax = VALUE_OR_RETURN_BINDER_STATUS(convertIntegral<int>(indexMaxAidl)); | 
|  | 911 |  | 
| Eric Laurent | dce54a1 | 2014-03-10 12:19:46 -0700 | [diff] [blame] | 912 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 913 | return binderStatusFromStatusT(NO_INIT); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 914 | } | 
|  | 915 | if (!settingsAllowed()) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 916 | return binderStatusFromStatusT(PERMISSION_DENIED); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 917 | } | 
| Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 918 | if (uint32_t(stream) >= AUDIO_STREAM_PUBLIC_CNT) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 919 | return binderStatusFromStatusT(BAD_VALUE); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 920 | } | 
|  | 921 | Mutex::Autolock _l(mLock); | 
| Eric Laurent | 10b7123 | 2018-04-13 18:14:44 -0700 | [diff] [blame] | 922 | AutoCallerClear acc; | 
| Eric Laurent | dce54a1 | 2014-03-10 12:19:46 -0700 | [diff] [blame] | 923 | mAudioPolicyManager->initStreamVolume(stream, indexMin, indexMax); | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 924 | return binderStatusFromStatusT(NO_ERROR); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 925 | } | 
|  | 926 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 927 | Status AudioPolicyService::setStreamVolumeIndex(media::AudioStreamType streamAidl, | 
|  | 928 | int32_t deviceAidl, int32_t indexAidl) { | 
|  | 929 | audio_stream_type_t stream = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 930 | aidl2legacy_AudioStreamType_audio_stream_type_t(streamAidl)); | 
|  | 931 | int index = VALUE_OR_RETURN_BINDER_STATUS(convertIntegral<int>(indexAidl)); | 
|  | 932 | audio_devices_t device = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 933 | aidl2legacy_int32_t_audio_devices_t(deviceAidl)); | 
|  | 934 |  | 
| Eric Laurent | dce54a1 | 2014-03-10 12:19:46 -0700 | [diff] [blame] | 935 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 936 | return binderStatusFromStatusT(NO_INIT); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 937 | } | 
|  | 938 | if (!settingsAllowed()) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 939 | return binderStatusFromStatusT(PERMISSION_DENIED); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 940 | } | 
| Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 941 | if (uint32_t(stream) >= AUDIO_STREAM_PUBLIC_CNT) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 942 | return binderStatusFromStatusT(BAD_VALUE); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 943 | } | 
|  | 944 | Mutex::Autolock _l(mLock); | 
| Eric Laurent | 10b7123 | 2018-04-13 18:14:44 -0700 | [diff] [blame] | 945 | AutoCallerClear acc; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 946 | return binderStatusFromStatusT(mAudioPolicyManager->setStreamVolumeIndex(stream, | 
|  | 947 | index, | 
|  | 948 | device)); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 949 | } | 
|  | 950 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 951 | Status AudioPolicyService::getStreamVolumeIndex(media::AudioStreamType streamAidl, | 
|  | 952 | int32_t deviceAidl, int32_t* _aidl_return) { | 
|  | 953 | audio_stream_type_t stream = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 954 | aidl2legacy_AudioStreamType_audio_stream_type_t(streamAidl)); | 
|  | 955 | audio_devices_t device = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 956 | aidl2legacy_int32_t_audio_devices_t(deviceAidl)); | 
|  | 957 | int index; | 
|  | 958 |  | 
| Eric Laurent | dce54a1 | 2014-03-10 12:19:46 -0700 | [diff] [blame] | 959 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 960 | return binderStatusFromStatusT(NO_INIT); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 961 | } | 
| Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 962 | if (uint32_t(stream) >= AUDIO_STREAM_PUBLIC_CNT) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 963 | return binderStatusFromStatusT(BAD_VALUE); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 964 | } | 
|  | 965 | Mutex::Autolock _l(mLock); | 
| Eric Laurent | 10b7123 | 2018-04-13 18:14:44 -0700 | [diff] [blame] | 966 | AutoCallerClear acc; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 967 | RETURN_IF_BINDER_ERROR(binderStatusFromStatusT( | 
|  | 968 | mAudioPolicyManager->getStreamVolumeIndex(stream, &index, device))); | 
|  | 969 | *_aidl_return = VALUE_OR_RETURN_BINDER_STATUS(convertIntegral<int32_t>(index)); | 
|  | 970 | return Status::ok(); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 971 | } | 
|  | 972 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 973 | Status AudioPolicyService::setVolumeIndexForAttributes( | 
|  | 974 | const media::AudioAttributesInternal& attrAidl, int32_t deviceAidl, int32_t indexAidl) { | 
|  | 975 | audio_attributes_t attributes = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 976 | aidl2legacy_AudioAttributesInternal_audio_attributes_t(attrAidl)); | 
|  | 977 | int index = VALUE_OR_RETURN_BINDER_STATUS(convertIntegral<int>(indexAidl)); | 
|  | 978 | audio_devices_t device = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 979 | aidl2legacy_int32_t_audio_devices_t(deviceAidl)); | 
|  | 980 | RETURN_IF_BINDER_ERROR(binderStatusFromStatusT( | 
|  | 981 | AudioValidator::validateAudioAttributes(attributes, "169572641"))); | 
|  | 982 |  | 
| François Gaffie | cfe1732 | 2018-11-07 13:41:29 +0100 | [diff] [blame] | 983 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 984 | return binderStatusFromStatusT(NO_INIT); | 
| François Gaffie | cfe1732 | 2018-11-07 13:41:29 +0100 | [diff] [blame] | 985 | } | 
|  | 986 | if (!settingsAllowed()) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 987 | return binderStatusFromStatusT(PERMISSION_DENIED); | 
| François Gaffie | cfe1732 | 2018-11-07 13:41:29 +0100 | [diff] [blame] | 988 | } | 
|  | 989 | Mutex::Autolock _l(mLock); | 
|  | 990 | AutoCallerClear acc; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 991 | return binderStatusFromStatusT( | 
|  | 992 | mAudioPolicyManager->setVolumeIndexForAttributes(attributes, index, device)); | 
| François Gaffie | cfe1732 | 2018-11-07 13:41:29 +0100 | [diff] [blame] | 993 | } | 
|  | 994 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 995 | Status AudioPolicyService::getVolumeIndexForAttributes( | 
|  | 996 | const media::AudioAttributesInternal& attrAidl, int32_t deviceAidl, int32_t* _aidl_return) { | 
|  | 997 | audio_attributes_t attributes = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 998 | aidl2legacy_AudioAttributesInternal_audio_attributes_t(attrAidl)); | 
|  | 999 | audio_devices_t device = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1000 | aidl2legacy_int32_t_audio_devices_t(deviceAidl)); | 
|  | 1001 | int index; | 
|  | 1002 | RETURN_IF_BINDER_ERROR(binderStatusFromStatusT( | 
|  | 1003 | AudioValidator::validateAudioAttributes(attributes, "169572641"))); | 
|  | 1004 |  | 
| François Gaffie | cfe1732 | 2018-11-07 13:41:29 +0100 | [diff] [blame] | 1005 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1006 | return binderStatusFromStatusT(NO_INIT); | 
| François Gaffie | cfe1732 | 2018-11-07 13:41:29 +0100 | [diff] [blame] | 1007 | } | 
|  | 1008 | Mutex::Autolock _l(mLock); | 
|  | 1009 | AutoCallerClear acc; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1010 | RETURN_IF_BINDER_ERROR(binderStatusFromStatusT( | 
|  | 1011 | mAudioPolicyManager->getVolumeIndexForAttributes(attributes, index, device))); | 
|  | 1012 | *_aidl_return = VALUE_OR_RETURN_BINDER_STATUS(convertIntegral<int32_t>(index)); | 
|  | 1013 | return Status::ok(); | 
| François Gaffie | cfe1732 | 2018-11-07 13:41:29 +0100 | [diff] [blame] | 1014 | } | 
|  | 1015 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1016 | Status AudioPolicyService::getMinVolumeIndexForAttributes( | 
|  | 1017 | const media::AudioAttributesInternal& attrAidl, int32_t* _aidl_return) { | 
|  | 1018 | audio_attributes_t attributes = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1019 | aidl2legacy_AudioAttributesInternal_audio_attributes_t(attrAidl)); | 
|  | 1020 | int index; | 
|  | 1021 | RETURN_IF_BINDER_ERROR(binderStatusFromStatusT( | 
|  | 1022 | AudioValidator::validateAudioAttributes(attributes, "169572641"))); | 
|  | 1023 |  | 
| François Gaffie | cfe1732 | 2018-11-07 13:41:29 +0100 | [diff] [blame] | 1024 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1025 | return binderStatusFromStatusT(NO_INIT); | 
| François Gaffie | cfe1732 | 2018-11-07 13:41:29 +0100 | [diff] [blame] | 1026 | } | 
|  | 1027 | Mutex::Autolock _l(mLock); | 
|  | 1028 | AutoCallerClear acc; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1029 | RETURN_IF_BINDER_ERROR(binderStatusFromStatusT( | 
|  | 1030 | mAudioPolicyManager->getMinVolumeIndexForAttributes(attributes, index))); | 
|  | 1031 | *_aidl_return = VALUE_OR_RETURN_BINDER_STATUS(convertIntegral<int32_t>(index)); | 
|  | 1032 | return Status::ok(); | 
| François Gaffie | cfe1732 | 2018-11-07 13:41:29 +0100 | [diff] [blame] | 1033 | } | 
|  | 1034 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1035 | Status AudioPolicyService::getMaxVolumeIndexForAttributes( | 
|  | 1036 | const media::AudioAttributesInternal& attrAidl, int32_t* _aidl_return) { | 
|  | 1037 | audio_attributes_t attributes = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1038 | aidl2legacy_AudioAttributesInternal_audio_attributes_t(attrAidl)); | 
|  | 1039 | int index; | 
|  | 1040 | RETURN_IF_BINDER_ERROR(binderStatusFromStatusT( | 
|  | 1041 | AudioValidator::validateAudioAttributes(attributes, "169572641"))); | 
|  | 1042 |  | 
| François Gaffie | cfe1732 | 2018-11-07 13:41:29 +0100 | [diff] [blame] | 1043 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1044 | return binderStatusFromStatusT(NO_INIT); | 
| François Gaffie | cfe1732 | 2018-11-07 13:41:29 +0100 | [diff] [blame] | 1045 | } | 
|  | 1046 | Mutex::Autolock _l(mLock); | 
|  | 1047 | AutoCallerClear acc; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1048 | RETURN_IF_BINDER_ERROR(binderStatusFromStatusT( | 
|  | 1049 | mAudioPolicyManager->getMaxVolumeIndexForAttributes(attributes, index))); | 
|  | 1050 | *_aidl_return = VALUE_OR_RETURN_BINDER_STATUS(convertIntegral<int32_t>(index)); | 
|  | 1051 | return Status::ok(); | 
| François Gaffie | cfe1732 | 2018-11-07 13:41:29 +0100 | [diff] [blame] | 1052 | } | 
|  | 1053 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1054 | Status AudioPolicyService::getStrategyForStream(media::AudioStreamType streamAidl, | 
|  | 1055 | int32_t* _aidl_return) { | 
|  | 1056 | audio_stream_type_t stream = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1057 | aidl2legacy_AudioStreamType_audio_stream_type_t(streamAidl)); | 
|  | 1058 |  | 
| Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 1059 | if (uint32_t(stream) >= AUDIO_STREAM_PUBLIC_CNT) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1060 | *_aidl_return = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1061 | convertReinterpret<int32_t>(PRODUCT_STRATEGY_NONE)); | 
|  | 1062 | return Status::ok(); | 
| Eric Laurent | dea1541 | 2014-10-28 15:46:45 -0700 | [diff] [blame] | 1063 | } | 
| Eric Laurent | dce54a1 | 2014-03-10 12:19:46 -0700 | [diff] [blame] | 1064 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1065 | return binderStatusFromStatusT(NO_INIT); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 1066 | } | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1067 |  | 
| François Gaffie | c005e56 | 2018-11-06 15:04:49 +0100 | [diff] [blame] | 1068 | // DO NOT LOCK, may be called from AudioFlinger with lock held, reaching deadlock | 
| Eric Laurent | 10b7123 | 2018-04-13 18:14:44 -0700 | [diff] [blame] | 1069 | AutoCallerClear acc; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1070 | *_aidl_return = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1071 | legacy2aidl_product_strategy_t_int32_t( | 
|  | 1072 | mAudioPolicyManager->getStrategyForStream(stream))); | 
|  | 1073 | return Status::ok(); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 1074 | } | 
|  | 1075 |  | 
|  | 1076 | //audio policy: use audio_device_t appropriately | 
|  | 1077 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1078 | Status AudioPolicyService::getDevicesForStream(media::AudioStreamType streamAidl, | 
|  | 1079 | int32_t* _aidl_return) { | 
|  | 1080 | audio_stream_type_t stream = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1081 | aidl2legacy_AudioStreamType_audio_stream_type_t(streamAidl)); | 
|  | 1082 |  | 
| Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 1083 | if (uint32_t(stream) >= AUDIO_STREAM_PUBLIC_CNT) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1084 | *_aidl_return = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1085 | legacy2aidl_audio_devices_t_int32_t(AUDIO_DEVICE_NONE)); | 
|  | 1086 | return Status::ok(); | 
| Eric Laurent | dea1541 | 2014-10-28 15:46:45 -0700 | [diff] [blame] | 1087 | } | 
| Eric Laurent | dce54a1 | 2014-03-10 12:19:46 -0700 | [diff] [blame] | 1088 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1089 | return binderStatusFromStatusT(NO_INIT); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 1090 | } | 
| Haynes Mathew George | dfb9f3b | 2015-10-26 18:22:13 -0700 | [diff] [blame] | 1091 | Mutex::Autolock _l(mLock); | 
| Eric Laurent | 10b7123 | 2018-04-13 18:14:44 -0700 | [diff] [blame] | 1092 | AutoCallerClear acc; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1093 | *_aidl_return = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1094 | legacy2aidl_audio_devices_t_int32_t(mAudioPolicyManager->getDevicesForStream(stream))); | 
|  | 1095 | return Status::ok(); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 1096 | } | 
|  | 1097 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1098 | Status AudioPolicyService::getDevicesForAttributes(const media::AudioAttributesEx& attrAidl, | 
|  | 1099 | std::vector<media::AudioDevice>* _aidl_return) | 
| Jean-Michel Trivi | f41599b | 2020-01-07 14:22:08 -0800 | [diff] [blame] | 1100 | { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1101 | AudioAttributes aa = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1102 | aidl2legacy_AudioAttributesEx_AudioAttributes(attrAidl)); | 
|  | 1103 | AudioDeviceTypeAddrVector devices; | 
|  | 1104 |  | 
| Jean-Michel Trivi | f41599b | 2020-01-07 14:22:08 -0800 | [diff] [blame] | 1105 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1106 | return binderStatusFromStatusT(NO_INIT); | 
| Jean-Michel Trivi | f41599b | 2020-01-07 14:22:08 -0800 | [diff] [blame] | 1107 | } | 
|  | 1108 | Mutex::Autolock _l(mLock); | 
|  | 1109 | AutoCallerClear acc; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1110 | RETURN_IF_BINDER_ERROR(binderStatusFromStatusT( | 
|  | 1111 | mAudioPolicyManager->getDevicesForAttributes(aa.getAttributes(), &devices))); | 
|  | 1112 | *_aidl_return = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1113 | convertContainer<std::vector<media::AudioDevice>>(devices, | 
|  | 1114 | legacy2aidl_AudioDeviceTypeAddress)); | 
|  | 1115 | return Status::ok(); | 
| Jean-Michel Trivi | f41599b | 2020-01-07 14:22:08 -0800 | [diff] [blame] | 1116 | } | 
|  | 1117 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1118 | Status AudioPolicyService::getOutputForEffect(const media::EffectDescriptor& descAidl, | 
|  | 1119 | int32_t* _aidl_return) { | 
|  | 1120 | effect_descriptor_t desc = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1121 | aidl2legacy_EffectDescriptor_effect_descriptor_t(descAidl)); | 
|  | 1122 | RETURN_IF_BINDER_ERROR(binderStatusFromStatusT( | 
|  | 1123 | AudioValidator::validateEffectDescriptor(desc, "73126106"))); | 
|  | 1124 |  | 
| Eric Laurent | dce54a1 | 2014-03-10 12:19:46 -0700 | [diff] [blame] | 1125 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1126 | return binderStatusFromStatusT(NO_INIT); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 1127 | } | 
|  | 1128 | Mutex::Autolock _l(mLock); | 
| Eric Laurent | 10b7123 | 2018-04-13 18:14:44 -0700 | [diff] [blame] | 1129 | AutoCallerClear acc; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1130 | *_aidl_return = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1131 | legacy2aidl_audio_io_handle_t_int32_t(mAudioPolicyManager->getOutputForEffect(&desc))); | 
|  | 1132 | return Status::ok(); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 1133 | } | 
|  | 1134 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1135 | Status AudioPolicyService::registerEffect(const media::EffectDescriptor& descAidl, int32_t ioAidl, | 
|  | 1136 | int32_t strategyAidl, int32_t sessionAidl, | 
|  | 1137 | int32_t idAidl) { | 
|  | 1138 | effect_descriptor_t desc = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1139 | aidl2legacy_EffectDescriptor_effect_descriptor_t(descAidl)); | 
|  | 1140 | audio_io_handle_t io = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1141 | aidl2legacy_int32_t_audio_io_handle_t(ioAidl)); | 
|  | 1142 | product_strategy_t strategy = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1143 | aidl2legacy_int32_t_product_strategy_t(strategyAidl)); | 
|  | 1144 | audio_session_t session = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1145 | aidl2legacy_int32_t_audio_session_t(sessionAidl)); | 
|  | 1146 | int id = VALUE_OR_RETURN_BINDER_STATUS(convertReinterpret<int>(idAidl)); | 
|  | 1147 | RETURN_IF_BINDER_ERROR(binderStatusFromStatusT( | 
|  | 1148 | AudioValidator::validateEffectDescriptor(desc, "73126106"))); | 
|  | 1149 |  | 
| Eric Laurent | dce54a1 | 2014-03-10 12:19:46 -0700 | [diff] [blame] | 1150 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1151 | return binderStatusFromStatusT(NO_INIT); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 1152 | } | 
| Eric Laurent | 6c79632 | 2019-04-09 14:13:17 -0700 | [diff] [blame] | 1153 | Mutex::Autolock _l(mLock); | 
| Eric Laurent | 10b7123 | 2018-04-13 18:14:44 -0700 | [diff] [blame] | 1154 | AutoCallerClear acc; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1155 | return binderStatusFromStatusT( | 
|  | 1156 | mAudioPolicyManager->registerEffect(&desc, io, strategy, session, id)); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 1157 | } | 
|  | 1158 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1159 | Status AudioPolicyService::unregisterEffect(int32_t idAidl) | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 1160 | { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1161 | int id = VALUE_OR_RETURN_BINDER_STATUS(convertReinterpret<int>(idAidl)); | 
| Eric Laurent | dce54a1 | 2014-03-10 12:19:46 -0700 | [diff] [blame] | 1162 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1163 | return binderStatusFromStatusT(NO_INIT); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 1164 | } | 
| Eric Laurent | 6c79632 | 2019-04-09 14:13:17 -0700 | [diff] [blame] | 1165 | Mutex::Autolock _l(mLock); | 
| Eric Laurent | 10b7123 | 2018-04-13 18:14:44 -0700 | [diff] [blame] | 1166 | AutoCallerClear acc; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1167 | return binderStatusFromStatusT(mAudioPolicyManager->unregisterEffect(id)); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 1168 | } | 
|  | 1169 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1170 | Status AudioPolicyService::setEffectEnabled(int32_t idAidl, bool enabled) | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 1171 | { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1172 | int id = VALUE_OR_RETURN_BINDER_STATUS(convertReinterpret<int>(idAidl)); | 
| Eric Laurent | dce54a1 | 2014-03-10 12:19:46 -0700 | [diff] [blame] | 1173 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1174 | return binderStatusFromStatusT(NO_INIT); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 1175 | } | 
| Eric Laurent | 6c79632 | 2019-04-09 14:13:17 -0700 | [diff] [blame] | 1176 | Mutex::Autolock _l(mLock); | 
| Eric Laurent | 10b7123 | 2018-04-13 18:14:44 -0700 | [diff] [blame] | 1177 | AutoCallerClear acc; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1178 | return binderStatusFromStatusT(mAudioPolicyManager->setEffectEnabled(id, enabled)); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 1179 | } | 
|  | 1180 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1181 | Status AudioPolicyService::moveEffectsToIo(const std::vector<int32_t>& idsAidl, int32_t ioAidl) | 
|  | 1182 |  | 
| Eric Laurent | 6c79632 | 2019-04-09 14:13:17 -0700 | [diff] [blame] | 1183 | { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1184 | const std::vector<int>& ids = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1185 | convertContainer<std::vector<int>>(idsAidl, convertReinterpret<int, int32_t>)); | 
|  | 1186 | audio_io_handle_t io = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1187 | aidl2legacy_int32_t_audio_io_handle_t(ioAidl)); | 
|  | 1188 | if (ids.size() > MAX_ITEMS_PER_LIST) { | 
|  | 1189 | return binderStatusFromStatusT(BAD_VALUE); | 
|  | 1190 | } | 
|  | 1191 |  | 
| Eric Laurent | 6c79632 | 2019-04-09 14:13:17 -0700 | [diff] [blame] | 1192 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1193 | return binderStatusFromStatusT(NO_INIT); | 
| Eric Laurent | 6c79632 | 2019-04-09 14:13:17 -0700 | [diff] [blame] | 1194 | } | 
|  | 1195 | Mutex::Autolock _l(mLock); | 
|  | 1196 | AutoCallerClear acc; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1197 | return binderStatusFromStatusT(mAudioPolicyManager->moveEffectsToIo(ids, io)); | 
| Eric Laurent | 6c79632 | 2019-04-09 14:13:17 -0700 | [diff] [blame] | 1198 | } | 
|  | 1199 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1200 | Status AudioPolicyService::isStreamActive(media::AudioStreamType streamAidl, int32_t inPastMsAidl, | 
|  | 1201 | bool* _aidl_return) { | 
|  | 1202 | audio_stream_type_t stream = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1203 | aidl2legacy_AudioStreamType_audio_stream_type_t(streamAidl)); | 
|  | 1204 | uint32_t inPastMs = VALUE_OR_RETURN_BINDER_STATUS(convertIntegral<uint32_t>(inPastMsAidl)); | 
|  | 1205 |  | 
| Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 1206 | if (uint32_t(stream) >= AUDIO_STREAM_PUBLIC_CNT) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1207 | *_aidl_return = false; | 
|  | 1208 | return Status::ok(); | 
| Eric Laurent | dea1541 | 2014-10-28 15:46:45 -0700 | [diff] [blame] | 1209 | } | 
| Eric Laurent | dce54a1 | 2014-03-10 12:19:46 -0700 | [diff] [blame] | 1210 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1211 | return binderStatusFromStatusT(NO_INIT); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 1212 | } | 
|  | 1213 | Mutex::Autolock _l(mLock); | 
| Eric Laurent | 10b7123 | 2018-04-13 18:14:44 -0700 | [diff] [blame] | 1214 | AutoCallerClear acc; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1215 | *_aidl_return = mAudioPolicyManager->isStreamActive(stream, inPastMs); | 
|  | 1216 | return Status::ok(); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 1217 | } | 
|  | 1218 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1219 | Status AudioPolicyService::isStreamActiveRemotely(media::AudioStreamType streamAidl, | 
|  | 1220 | int32_t inPastMsAidl, | 
|  | 1221 | bool* _aidl_return) { | 
|  | 1222 | audio_stream_type_t stream = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1223 | aidl2legacy_AudioStreamType_audio_stream_type_t(streamAidl)); | 
|  | 1224 | uint32_t inPastMs = VALUE_OR_RETURN_BINDER_STATUS(convertIntegral<uint32_t>(inPastMsAidl)); | 
|  | 1225 |  | 
| Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 1226 | if (uint32_t(stream) >= AUDIO_STREAM_PUBLIC_CNT) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1227 | *_aidl_return = false; | 
|  | 1228 | return Status::ok(); | 
| Eric Laurent | dea1541 | 2014-10-28 15:46:45 -0700 | [diff] [blame] | 1229 | } | 
| Eric Laurent | dce54a1 | 2014-03-10 12:19:46 -0700 | [diff] [blame] | 1230 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1231 | return binderStatusFromStatusT(NO_INIT); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 1232 | } | 
|  | 1233 | Mutex::Autolock _l(mLock); | 
| Eric Laurent | 10b7123 | 2018-04-13 18:14:44 -0700 | [diff] [blame] | 1234 | AutoCallerClear acc; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1235 | *_aidl_return = mAudioPolicyManager->isStreamActiveRemotely(stream, inPastMs); | 
|  | 1236 | return Status::ok(); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 1237 | } | 
|  | 1238 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1239 | Status AudioPolicyService::isSourceActive(media::AudioSourceType sourceAidl, bool* _aidl_return) { | 
|  | 1240 | audio_source_t source = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1241 | aidl2legacy_AudioSourceType_audio_source_t(sourceAidl)); | 
| Eric Laurent | dce54a1 | 2014-03-10 12:19:46 -0700 | [diff] [blame] | 1242 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1243 | return binderStatusFromStatusT(NO_INIT); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 1244 | } | 
|  | 1245 | Mutex::Autolock _l(mLock); | 
| Eric Laurent | 10b7123 | 2018-04-13 18:14:44 -0700 | [diff] [blame] | 1246 | AutoCallerClear acc; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1247 | *_aidl_return = mAudioPolicyManager->isSourceActive(source); | 
|  | 1248 | return Status::ok(); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 1249 | } | 
|  | 1250 |  | 
| Ari Hausman-Cohen | 2462831 | 2018-08-13 15:01:09 -0700 | [diff] [blame] | 1251 | status_t AudioPolicyService::getAudioPolicyEffects(sp<AudioPolicyEffects>& audioPolicyEffects) | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 1252 | { | 
| Eric Laurent | dce54a1 | 2014-03-10 12:19:46 -0700 | [diff] [blame] | 1253 | if (mAudioPolicyManager == NULL) { | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 1254 | return NO_INIT; | 
|  | 1255 | } | 
| Eric Laurent | 8b1e80b | 2014-10-07 09:08:47 -0700 | [diff] [blame] | 1256 | { | 
|  | 1257 | Mutex::Autolock _l(mLock); | 
|  | 1258 | audioPolicyEffects = mAudioPolicyEffects; | 
|  | 1259 | } | 
|  | 1260 | if (audioPolicyEffects == 0) { | 
| Eric Laurent | 8b1e80b | 2014-10-07 09:08:47 -0700 | [diff] [blame] | 1261 | return NO_INIT; | 
|  | 1262 | } | 
| Ari Hausman-Cohen | 2462831 | 2018-08-13 15:01:09 -0700 | [diff] [blame] | 1263 |  | 
|  | 1264 | return OK; | 
|  | 1265 | } | 
|  | 1266 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1267 | Status AudioPolicyService::queryDefaultPreProcessing( | 
|  | 1268 | int32_t audioSessionAidl, | 
|  | 1269 | media::Int* countAidl, | 
|  | 1270 | std::vector<media::EffectDescriptor>* _aidl_return) { | 
|  | 1271 | audio_session_t audioSession = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1272 | aidl2legacy_int32_t_audio_session_t(audioSessionAidl)); | 
|  | 1273 | uint32_t count = VALUE_OR_RETURN_BINDER_STATUS(convertIntegral<uint32_t>(countAidl->value)); | 
|  | 1274 | if (count > AudioEffect::kMaxPreProcessing) { | 
|  | 1275 | count = AudioEffect::kMaxPreProcessing; | 
| Ari Hausman-Cohen | 2462831 | 2018-08-13 15:01:09 -0700 | [diff] [blame] | 1276 | } | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1277 | uint32_t countReq = count; | 
|  | 1278 | std::unique_ptr<effect_descriptor_t[]> descriptors(new effect_descriptor_t[count]); | 
|  | 1279 |  | 
|  | 1280 | sp<AudioPolicyEffects> audioPolicyEffects; | 
|  | 1281 | RETURN_IF_BINDER_ERROR(binderStatusFromStatusT(getAudioPolicyEffects(audioPolicyEffects))); | 
|  | 1282 | RETURN_IF_BINDER_ERROR(binderStatusFromStatusT(audioPolicyEffects->queryDefaultInputEffects( | 
|  | 1283 | (audio_session_t) audioSession, descriptors.get(), &count))); | 
|  | 1284 | countReq = std::min(count, countReq); | 
|  | 1285 | RETURN_IF_BINDER_ERROR(binderStatusFromStatusT( | 
|  | 1286 | convertRange(descriptors.get(), descriptors.get() + countReq, | 
|  | 1287 | std::back_inserter(*_aidl_return), | 
|  | 1288 | legacy2aidl_effect_descriptor_t_EffectDescriptor))); | 
|  | 1289 | countAidl->value = VALUE_OR_RETURN_BINDER_STATUS(convertIntegral<uint32_t>(count)); | 
|  | 1290 | return Status::ok(); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 1291 | } | 
|  | 1292 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1293 | Status AudioPolicyService::addSourceDefaultEffect(const media::AudioUuid& typeAidl, | 
|  | 1294 | const std::string& opPackageNameAidl, | 
|  | 1295 | const media::AudioUuid& uuidAidl, | 
|  | 1296 | int32_t priority, | 
|  | 1297 | media::AudioSourceType sourceAidl, | 
|  | 1298 | int32_t* _aidl_return) { | 
|  | 1299 | effect_uuid_t type = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1300 | aidl2legacy_AudioUuid_audio_uuid_t(typeAidl)); | 
|  | 1301 | String16 opPackageName = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1302 | aidl2legacy_string_view_String16(opPackageNameAidl)); | 
|  | 1303 | effect_uuid_t uuid = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1304 | aidl2legacy_AudioUuid_audio_uuid_t(uuidAidl)); | 
|  | 1305 | audio_source_t source = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1306 | aidl2legacy_AudioSourceType_audio_source_t(sourceAidl)); | 
|  | 1307 | audio_unique_id_t id; | 
|  | 1308 |  | 
| Ari Hausman-Cohen | 2462831 | 2018-08-13 15:01:09 -0700 | [diff] [blame] | 1309 | sp<AudioPolicyEffects>audioPolicyEffects; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1310 | RETURN_IF_BINDER_ERROR(binderStatusFromStatusT(getAudioPolicyEffects(audioPolicyEffects))); | 
| Ari Hausman-Cohen | 2462831 | 2018-08-13 15:01:09 -0700 | [diff] [blame] | 1311 | if (!modifyDefaultAudioEffectsAllowed()) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1312 | return binderStatusFromStatusT(PERMISSION_DENIED); | 
| Ari Hausman-Cohen | 2462831 | 2018-08-13 15:01:09 -0700 | [diff] [blame] | 1313 | } | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1314 | RETURN_IF_BINDER_ERROR(binderStatusFromStatusT(audioPolicyEffects->addSourceDefaultEffect( | 
|  | 1315 | &type, opPackageName, &uuid, priority, source, &id))); | 
|  | 1316 | *_aidl_return = VALUE_OR_RETURN_BINDER_STATUS(legacy2aidl_audio_unique_id_t_int32_t(id)); | 
|  | 1317 | return Status::ok(); | 
| Ari Hausman-Cohen | 2462831 | 2018-08-13 15:01:09 -0700 | [diff] [blame] | 1318 | } | 
|  | 1319 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1320 | Status AudioPolicyService::addStreamDefaultEffect(const media::AudioUuid& typeAidl, | 
|  | 1321 | const std::string& opPackageNameAidl, | 
|  | 1322 | const media::AudioUuid& uuidAidl, | 
|  | 1323 | int32_t priority, media::AudioUsage usageAidl, | 
|  | 1324 | int32_t* _aidl_return) { | 
|  | 1325 | effect_uuid_t type = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1326 | aidl2legacy_AudioUuid_audio_uuid_t(typeAidl)); | 
|  | 1327 | String16 opPackageName = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1328 | aidl2legacy_string_view_String16(opPackageNameAidl)); | 
|  | 1329 | effect_uuid_t uuid = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1330 | aidl2legacy_AudioUuid_audio_uuid_t(uuidAidl)); | 
|  | 1331 | audio_usage_t usage = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1332 | aidl2legacy_AudioUsage_audio_usage_t(usageAidl)); | 
|  | 1333 | audio_unique_id_t id; | 
|  | 1334 |  | 
|  | 1335 | sp<AudioPolicyEffects> audioPolicyEffects; | 
|  | 1336 | RETURN_IF_BINDER_ERROR(binderStatusFromStatusT(getAudioPolicyEffects(audioPolicyEffects))); | 
| Ari Hausman-Cohen | 433722e | 2018-04-24 14:25:22 -0700 | [diff] [blame] | 1337 | if (!modifyDefaultAudioEffectsAllowed()) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1338 | return binderStatusFromStatusT(PERMISSION_DENIED); | 
| Ari Hausman-Cohen | 433722e | 2018-04-24 14:25:22 -0700 | [diff] [blame] | 1339 | } | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1340 | RETURN_IF_BINDER_ERROR(binderStatusFromStatusT(audioPolicyEffects->addStreamDefaultEffect( | 
|  | 1341 | &type, opPackageName, &uuid, priority, usage, &id))); | 
|  | 1342 | *_aidl_return = VALUE_OR_RETURN_BINDER_STATUS(legacy2aidl_audio_unique_id_t_int32_t(id)); | 
|  | 1343 | return Status::ok(); | 
| Ari Hausman-Cohen | 433722e | 2018-04-24 14:25:22 -0700 | [diff] [blame] | 1344 | } | 
|  | 1345 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1346 | Status AudioPolicyService::removeSourceDefaultEffect(int32_t idAidl) | 
| Ari Hausman-Cohen | 433722e | 2018-04-24 14:25:22 -0700 | [diff] [blame] | 1347 | { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1348 | audio_unique_id_t id = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1349 | aidl2legacy_int32_t_audio_unique_id_t(idAidl)); | 
| Ari Hausman-Cohen | 2462831 | 2018-08-13 15:01:09 -0700 | [diff] [blame] | 1350 | sp<AudioPolicyEffects>audioPolicyEffects; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1351 | RETURN_IF_BINDER_ERROR(binderStatusFromStatusT(getAudioPolicyEffects(audioPolicyEffects))); | 
| Ari Hausman-Cohen | 433722e | 2018-04-24 14:25:22 -0700 | [diff] [blame] | 1352 | if (!modifyDefaultAudioEffectsAllowed()) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1353 | return binderStatusFromStatusT(PERMISSION_DENIED); | 
| Ari Hausman-Cohen | 433722e | 2018-04-24 14:25:22 -0700 | [diff] [blame] | 1354 | } | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1355 | return binderStatusFromStatusT(audioPolicyEffects->removeSourceDefaultEffect(id)); | 
| Ari Hausman-Cohen | 2462831 | 2018-08-13 15:01:09 -0700 | [diff] [blame] | 1356 | } | 
|  | 1357 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1358 | Status AudioPolicyService::removeStreamDefaultEffect(int32_t idAidl) | 
| Ari Hausman-Cohen | 2462831 | 2018-08-13 15:01:09 -0700 | [diff] [blame] | 1359 | { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1360 | audio_unique_id_t id = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1361 | aidl2legacy_int32_t_audio_unique_id_t(idAidl)); | 
| Ari Hausman-Cohen | 433722e | 2018-04-24 14:25:22 -0700 | [diff] [blame] | 1362 | sp<AudioPolicyEffects>audioPolicyEffects; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1363 | RETURN_IF_BINDER_ERROR(binderStatusFromStatusT(getAudioPolicyEffects(audioPolicyEffects))); | 
| Ari Hausman-Cohen | 2462831 | 2018-08-13 15:01:09 -0700 | [diff] [blame] | 1364 | if (!modifyDefaultAudioEffectsAllowed()) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1365 | return binderStatusFromStatusT(PERMISSION_DENIED); | 
| Ari Hausman-Cohen | 433722e | 2018-04-24 14:25:22 -0700 | [diff] [blame] | 1366 | } | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1367 | return binderStatusFromStatusT(audioPolicyEffects->removeStreamDefaultEffect(id)); | 
| Ari Hausman-Cohen | 433722e | 2018-04-24 14:25:22 -0700 | [diff] [blame] | 1368 | } | 
|  | 1369 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1370 | Status AudioPolicyService::setSupportedSystemUsages( | 
|  | 1371 | const std::vector<media::AudioUsage>& systemUsagesAidl) { | 
|  | 1372 | size_t size = systemUsagesAidl.size(); | 
|  | 1373 | if (size > MAX_ITEMS_PER_LIST) { | 
|  | 1374 | size = MAX_ITEMS_PER_LIST; | 
|  | 1375 | } | 
|  | 1376 | std::vector<audio_usage_t> systemUsages; | 
|  | 1377 | RETURN_IF_BINDER_ERROR(binderStatusFromStatusT( | 
|  | 1378 | convertRange(systemUsagesAidl.begin(), systemUsagesAidl.begin() + size, | 
|  | 1379 | std::back_inserter(systemUsages), aidl2legacy_AudioUsage_audio_usage_t))); | 
|  | 1380 |  | 
| Hayden Gomes | 524159d | 2019-12-23 14:41:47 -0800 | [diff] [blame] | 1381 | Mutex::Autolock _l(mLock); | 
|  | 1382 | if(!modifyAudioRoutingAllowed()) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1383 | return binderStatusFromStatusT(PERMISSION_DENIED); | 
| Hayden Gomes | 524159d | 2019-12-23 14:41:47 -0800 | [diff] [blame] | 1384 | } | 
|  | 1385 |  | 
|  | 1386 | bool areAllSystemUsages = std::all_of(begin(systemUsages), end(systemUsages), | 
|  | 1387 | [](audio_usage_t usage) { return isSystemUsage(usage); }); | 
|  | 1388 | if (!areAllSystemUsages) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1389 | return binderStatusFromStatusT(BAD_VALUE); | 
| Hayden Gomes | 524159d | 2019-12-23 14:41:47 -0800 | [diff] [blame] | 1390 | } | 
|  | 1391 |  | 
|  | 1392 | mSupportedSystemUsages = systemUsages; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1393 | return Status::ok(); | 
| Hayden Gomes | 524159d | 2019-12-23 14:41:47 -0800 | [diff] [blame] | 1394 | } | 
|  | 1395 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1396 | Status AudioPolicyService::setAllowedCapturePolicy(int32_t uidAidl, int32_t capturePolicyAidl) { | 
|  | 1397 | uid_t uid = VALUE_OR_RETURN_BINDER_STATUS(aidl2legacy_int32_t_uid_t(uidAidl)); | 
|  | 1398 | audio_flags_mask_t capturePolicy = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1399 | aidl2legacy_int32_t_audio_flags_mask_t_mask(capturePolicyAidl)); | 
|  | 1400 |  | 
| Kevin Rocard | b99cc75 | 2019-03-21 20:52:24 -0700 | [diff] [blame] | 1401 | Mutex::Autolock _l(mLock); | 
|  | 1402 | if (mAudioPolicyManager == NULL) { | 
|  | 1403 | ALOGV("%s() mAudioPolicyManager == NULL", __func__); | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1404 | return binderStatusFromStatusT(NO_INIT); | 
| Kevin Rocard | b99cc75 | 2019-03-21 20:52:24 -0700 | [diff] [blame] | 1405 | } | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1406 | return binderStatusFromStatusT( | 
|  | 1407 | mAudioPolicyManager->setAllowedCapturePolicy(uid, capturePolicy)); | 
| Kevin Rocard | b99cc75 | 2019-03-21 20:52:24 -0700 | [diff] [blame] | 1408 | } | 
|  | 1409 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1410 | Status AudioPolicyService::getOffloadSupport(const media::AudioOffloadInfo& infoAidl, | 
|  | 1411 | media::AudioOffloadMode* _aidl_return) { | 
|  | 1412 | audio_offload_info_t info = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1413 | aidl2legacy_AudioOffloadInfo_audio_offload_info_t(infoAidl)); | 
| Eric Laurent | dce54a1 | 2014-03-10 12:19:46 -0700 | [diff] [blame] | 1414 | if (mAudioPolicyManager == NULL) { | 
|  | 1415 | ALOGV("mAudioPolicyManager == NULL"); | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1416 | return binderStatusFromStatusT(AUDIO_OFFLOAD_NOT_SUPPORTED); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 1417 | } | 
| Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 1418 | Mutex::Autolock _l(mLock); | 
| Eric Laurent | 10b7123 | 2018-04-13 18:14:44 -0700 | [diff] [blame] | 1419 | AutoCallerClear acc; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1420 | *_aidl_return = VALUE_OR_RETURN_BINDER_STATUS(legacy2aidl_audio_offload_mode_t_AudioOffloadMode( | 
|  | 1421 | mAudioPolicyManager->getOffloadSupport(info))); | 
|  | 1422 | return Status::ok(); | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 1423 | } | 
|  | 1424 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1425 | Status AudioPolicyService::isDirectOutputSupported( | 
|  | 1426 | const media::AudioConfigBase& configAidl, | 
|  | 1427 | const media::AudioAttributesInternal& attributesAidl, | 
|  | 1428 | bool* _aidl_return) { | 
|  | 1429 | audio_config_base_t config = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1430 | aidl2legacy_AudioConfigBase_audio_config_base_t(configAidl)); | 
|  | 1431 | audio_attributes_t attributes = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1432 | aidl2legacy_AudioAttributesInternal_audio_attributes_t(attributesAidl)); | 
|  | 1433 | RETURN_IF_BINDER_ERROR(binderStatusFromStatusT( | 
|  | 1434 | AudioValidator::validateAudioAttributes(attributes, "169572641"))); | 
|  | 1435 |  | 
| Michael Chan | a94fbb2 | 2018-04-24 14:31:19 +1000 | [diff] [blame] | 1436 | if (mAudioPolicyManager == NULL) { | 
|  | 1437 | ALOGV("mAudioPolicyManager == NULL"); | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1438 | return binderStatusFromStatusT(NO_INIT); | 
| Michael Chan | a94fbb2 | 2018-04-24 14:31:19 +1000 | [diff] [blame] | 1439 | } | 
| Hayden Gomes | 524159d | 2019-12-23 14:41:47 -0800 | [diff] [blame] | 1440 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1441 | RETURN_IF_BINDER_ERROR(binderStatusFromStatusT(validateUsage(attributes.usage))); | 
| Hayden Gomes | 524159d | 2019-12-23 14:41:47 -0800 | [diff] [blame] | 1442 |  | 
| Michael Chan | a94fbb2 | 2018-04-24 14:31:19 +1000 | [diff] [blame] | 1443 | Mutex::Autolock _l(mLock); | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1444 | *_aidl_return = mAudioPolicyManager->isDirectOutputSupported(config, attributes); | 
|  | 1445 | return Status::ok(); | 
| Michael Chan | a94fbb2 | 2018-04-24 14:31:19 +1000 | [diff] [blame] | 1446 | } | 
|  | 1447 |  | 
|  | 1448 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1449 | Status AudioPolicyService::listAudioPorts(media::AudioPortRole roleAidl, | 
|  | 1450 | media::AudioPortType typeAidl, media::Int* count, | 
|  | 1451 | std::vector<media::AudioPort>* portsAidl, | 
|  | 1452 | int32_t* _aidl_return) { | 
|  | 1453 | audio_port_role_t role = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1454 | aidl2legacy_AudioPortRole_audio_port_role_t(roleAidl)); | 
|  | 1455 | audio_port_type_t type = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1456 | aidl2legacy_AudioPortType_audio_port_type_t(typeAidl)); | 
|  | 1457 | unsigned int num_ports = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1458 | convertIntegral<unsigned int>(count->value)); | 
|  | 1459 | if (num_ports > MAX_ITEMS_PER_LIST) { | 
|  | 1460 | num_ports = MAX_ITEMS_PER_LIST; | 
|  | 1461 | } | 
|  | 1462 | unsigned int numPortsReq = num_ports; | 
|  | 1463 | std::unique_ptr<audio_port_v7[]> ports(new audio_port_v7[num_ports]); | 
|  | 1464 | unsigned int generation; | 
|  | 1465 |  | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 1466 | Mutex::Autolock _l(mLock); | 
|  | 1467 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1468 | return binderStatusFromStatusT(NO_INIT); | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 1469 | } | 
| Eric Laurent | 10b7123 | 2018-04-13 18:14:44 -0700 | [diff] [blame] | 1470 | AutoCallerClear acc; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1471 | RETURN_IF_BINDER_ERROR(binderStatusFromStatusT( | 
|  | 1472 | mAudioPolicyManager->listAudioPorts(role, type, &num_ports, ports.get(), &generation))); | 
|  | 1473 | numPortsReq = std::min(numPortsReq, num_ports); | 
|  | 1474 | RETURN_IF_BINDER_ERROR(binderStatusFromStatusT( | 
|  | 1475 | convertRange(ports.get(), ports.get() + numPortsReq, std::back_inserter(*portsAidl), | 
|  | 1476 | legacy2aidl_audio_port_v7_AudioPort))); | 
|  | 1477 | count->value = VALUE_OR_RETURN_BINDER_STATUS(convertIntegral<int32_t>(num_ports)); | 
|  | 1478 | *_aidl_return = VALUE_OR_RETURN_BINDER_STATUS(convertIntegral<int32_t>(generation)); | 
|  | 1479 | return Status::ok(); | 
| Eric Laurent | 203b1a1 | 2014-04-01 10:34:16 -0700 | [diff] [blame] | 1480 | } | 
|  | 1481 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1482 | Status AudioPolicyService::getAudioPort(const media::AudioPort& portAidl, | 
|  | 1483 | media::AudioPort* _aidl_return) { | 
|  | 1484 | audio_port_v7 port = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1485 | aidl2legacy_AudioPort_audio_port_v7(portAidl)); | 
|  | 1486 | RETURN_IF_BINDER_ERROR(binderStatusFromStatusT(AudioValidator::validateAudioPort(port))); | 
|  | 1487 |  | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 1488 | Mutex::Autolock _l(mLock); | 
|  | 1489 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1490 | return binderStatusFromStatusT(NO_INIT); | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 1491 | } | 
| Eric Laurent | 10b7123 | 2018-04-13 18:14:44 -0700 | [diff] [blame] | 1492 | AutoCallerClear acc; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1493 | RETURN_IF_BINDER_ERROR(binderStatusFromStatusT(mAudioPolicyManager->getAudioPort(&port))); | 
|  | 1494 | *_aidl_return = VALUE_OR_RETURN_BINDER_STATUS(legacy2aidl_audio_port_v7_AudioPort(port)); | 
|  | 1495 | return Status::ok(); | 
| Eric Laurent | 203b1a1 | 2014-04-01 10:34:16 -0700 | [diff] [blame] | 1496 | } | 
|  | 1497 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1498 | Status AudioPolicyService::createAudioPatch(const media::AudioPatch& patchAidl, int32_t handleAidl, | 
|  | 1499 | int32_t* _aidl_return) { | 
|  | 1500 | audio_patch patch = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1501 | aidl2legacy_AudioPatch_audio_patch(patchAidl)); | 
|  | 1502 | audio_patch_handle_t handle = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1503 | aidl2legacy_int32_t_audio_port_handle_t(handleAidl)); | 
|  | 1504 | RETURN_IF_BINDER_ERROR(binderStatusFromStatusT(AudioValidator::validateAudioPatch(patch))); | 
|  | 1505 |  | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 1506 | Mutex::Autolock _l(mLock); | 
| Eric Laurent | 5284ed5 | 2014-05-29 14:37:38 -0700 | [diff] [blame] | 1507 | if(!modifyAudioRoutingAllowed()) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1508 | return binderStatusFromStatusT(PERMISSION_DENIED); | 
| Eric Laurent | 5284ed5 | 2014-05-29 14:37:38 -0700 | [diff] [blame] | 1509 | } | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 1510 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1511 | return binderStatusFromStatusT(NO_INIT); | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 1512 | } | 
| Eric Laurent | 10b7123 | 2018-04-13 18:14:44 -0700 | [diff] [blame] | 1513 | AutoCallerClear acc; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1514 | RETURN_IF_BINDER_ERROR(binderStatusFromStatusT( | 
|  | 1515 | mAudioPolicyManager->createAudioPatch(&patch, &handle, | 
|  | 1516 | IPCThreadState::self()->getCallingUid()))); | 
|  | 1517 | *_aidl_return = VALUE_OR_RETURN_BINDER_STATUS(legacy2aidl_audio_patch_handle_t_int32_t(handle)); | 
|  | 1518 | return Status::ok(); | 
| Eric Laurent | 203b1a1 | 2014-04-01 10:34:16 -0700 | [diff] [blame] | 1519 | } | 
|  | 1520 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1521 | Status AudioPolicyService::releaseAudioPatch(int32_t handleAidl) | 
| Eric Laurent | 203b1a1 | 2014-04-01 10:34:16 -0700 | [diff] [blame] | 1522 | { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1523 | audio_patch_handle_t handle = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1524 | aidl2legacy_int32_t_audio_patch_handle_t(handleAidl)); | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 1525 | Mutex::Autolock _l(mLock); | 
| Eric Laurent | 5284ed5 | 2014-05-29 14:37:38 -0700 | [diff] [blame] | 1526 | if(!modifyAudioRoutingAllowed()) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1527 | return binderStatusFromStatusT(PERMISSION_DENIED); | 
| Eric Laurent | 5284ed5 | 2014-05-29 14:37:38 -0700 | [diff] [blame] | 1528 | } | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 1529 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1530 | return binderStatusFromStatusT(NO_INIT); | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 1531 | } | 
| Eric Laurent | 10b7123 | 2018-04-13 18:14:44 -0700 | [diff] [blame] | 1532 | AutoCallerClear acc; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1533 | return binderStatusFromStatusT( | 
|  | 1534 | mAudioPolicyManager->releaseAudioPatch(handle, | 
|  | 1535 | IPCThreadState::self()->getCallingUid())); | 
| Eric Laurent | 203b1a1 | 2014-04-01 10:34:16 -0700 | [diff] [blame] | 1536 | } | 
|  | 1537 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1538 | Status AudioPolicyService::listAudioPatches(media::Int* count, | 
|  | 1539 | std::vector<media::AudioPatch>* patchesAidl, | 
|  | 1540 | int32_t* _aidl_return) { | 
|  | 1541 | unsigned int num_patches = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1542 | convertIntegral<unsigned int>(count->value)); | 
|  | 1543 | if (num_patches > MAX_ITEMS_PER_LIST) { | 
|  | 1544 | num_patches = MAX_ITEMS_PER_LIST; | 
|  | 1545 | } | 
|  | 1546 | unsigned int numPatchesReq = num_patches; | 
|  | 1547 | std::unique_ptr<audio_patch[]> patches(new audio_patch[num_patches]); | 
|  | 1548 | unsigned int generation; | 
|  | 1549 |  | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 1550 | Mutex::Autolock _l(mLock); | 
|  | 1551 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1552 | return binderStatusFromStatusT(NO_INIT); | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 1553 | } | 
| Eric Laurent | 10b7123 | 2018-04-13 18:14:44 -0700 | [diff] [blame] | 1554 | AutoCallerClear acc; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1555 | RETURN_IF_BINDER_ERROR(binderStatusFromStatusT( | 
|  | 1556 | mAudioPolicyManager->listAudioPatches(&num_patches, patches.get(), &generation))); | 
|  | 1557 | numPatchesReq = std::min(numPatchesReq, num_patches); | 
|  | 1558 | RETURN_IF_BINDER_ERROR(binderStatusFromStatusT( | 
|  | 1559 | convertRange(patches.get(), patches.get() + numPatchesReq, | 
|  | 1560 | std::back_inserter(*patchesAidl), legacy2aidl_audio_patch_AudioPatch))); | 
|  | 1561 | count->value = VALUE_OR_RETURN_BINDER_STATUS(convertIntegral<int32_t>(num_patches)); | 
|  | 1562 | *_aidl_return = VALUE_OR_RETURN_BINDER_STATUS(convertIntegral<int32_t>(generation)); | 
|  | 1563 | return Status::ok(); | 
| Eric Laurent | 203b1a1 | 2014-04-01 10:34:16 -0700 | [diff] [blame] | 1564 | } | 
|  | 1565 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1566 | Status AudioPolicyService::setAudioPortConfig(const media::AudioPortConfig& configAidl) | 
| Eric Laurent | 203b1a1 | 2014-04-01 10:34:16 -0700 | [diff] [blame] | 1567 | { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1568 | audio_port_config config = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1569 | aidl2legacy_AudioPortConfig_audio_port_config(configAidl)); | 
|  | 1570 | RETURN_IF_BINDER_ERROR( | 
|  | 1571 | binderStatusFromStatusT(AudioValidator::validateAudioPortConfig(config))); | 
|  | 1572 |  | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 1573 | Mutex::Autolock _l(mLock); | 
| Eric Laurent | 5284ed5 | 2014-05-29 14:37:38 -0700 | [diff] [blame] | 1574 | if(!modifyAudioRoutingAllowed()) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1575 | return binderStatusFromStatusT(PERMISSION_DENIED); | 
| Eric Laurent | 5284ed5 | 2014-05-29 14:37:38 -0700 | [diff] [blame] | 1576 | } | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 1577 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1578 | return binderStatusFromStatusT(NO_INIT); | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 1579 | } | 
| Eric Laurent | 10b7123 | 2018-04-13 18:14:44 -0700 | [diff] [blame] | 1580 | AutoCallerClear acc; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1581 | return binderStatusFromStatusT(mAudioPolicyManager->setAudioPortConfig(&config)); | 
| Eric Laurent | 203b1a1 | 2014-04-01 10:34:16 -0700 | [diff] [blame] | 1582 | } | 
| Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 1583 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1584 | Status AudioPolicyService::acquireSoundTriggerSession(media::SoundTriggerSession* _aidl_return) | 
| Eric Laurent | df3dc7e | 2014-07-27 18:39:40 -0700 | [diff] [blame] | 1585 | { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1586 | audio_session_t session; | 
|  | 1587 | audio_io_handle_t ioHandle; | 
|  | 1588 | audio_devices_t device; | 
|  | 1589 |  | 
|  | 1590 | { | 
|  | 1591 | Mutex::Autolock _l(mLock); | 
|  | 1592 | if (mAudioPolicyManager == NULL) { | 
|  | 1593 | return binderStatusFromStatusT(NO_INIT); | 
|  | 1594 | } | 
|  | 1595 | AutoCallerClear acc; | 
|  | 1596 | RETURN_IF_BINDER_ERROR(binderStatusFromStatusT( | 
|  | 1597 | mAudioPolicyManager->acquireSoundTriggerSession(&session, &ioHandle, &device))); | 
|  | 1598 | } | 
|  | 1599 |  | 
|  | 1600 | _aidl_return->session = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1601 | legacy2aidl_audio_session_t_int32_t(session)); | 
|  | 1602 | _aidl_return->ioHandle = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1603 | legacy2aidl_audio_io_handle_t_int32_t(ioHandle)); | 
|  | 1604 | _aidl_return->device = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1605 | legacy2aidl_audio_devices_t_int32_t(device)); | 
|  | 1606 | return Status::ok(); | 
|  | 1607 | } | 
|  | 1608 |  | 
|  | 1609 | Status AudioPolicyService::releaseSoundTriggerSession(int32_t sessionAidl) | 
|  | 1610 | { | 
|  | 1611 | audio_session_t session = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1612 | aidl2legacy_int32_t_audio_session_t(sessionAidl)); | 
| Andy Hung | f759b8c | 2017-08-15 12:48:54 -0700 | [diff] [blame] | 1613 | Mutex::Autolock _l(mLock); | 
| Eric Laurent | df3dc7e | 2014-07-27 18:39:40 -0700 | [diff] [blame] | 1614 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1615 | return binderStatusFromStatusT(NO_INIT); | 
| Eric Laurent | df3dc7e | 2014-07-27 18:39:40 -0700 | [diff] [blame] | 1616 | } | 
| Eric Laurent | 10b7123 | 2018-04-13 18:14:44 -0700 | [diff] [blame] | 1617 | AutoCallerClear acc; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1618 | return binderStatusFromStatusT(mAudioPolicyManager->releaseSoundTriggerSession(session)); | 
| Eric Laurent | df3dc7e | 2014-07-27 18:39:40 -0700 | [diff] [blame] | 1619 | } | 
|  | 1620 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1621 | Status AudioPolicyService::registerPolicyMixes(const std::vector<media::AudioMix>& mixesAidl, | 
|  | 1622 | bool registration) { | 
|  | 1623 | size_t size = mixesAidl.size(); | 
|  | 1624 | if (size > MAX_MIXES_PER_POLICY) { | 
|  | 1625 | size = MAX_MIXES_PER_POLICY; | 
| Eric Laurent | df3dc7e | 2014-07-27 18:39:40 -0700 | [diff] [blame] | 1626 | } | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1627 | Vector<AudioMix> mixes; | 
|  | 1628 | RETURN_IF_BINDER_ERROR(binderStatusFromStatusT( | 
|  | 1629 | convertRange(mixesAidl.begin(), mixesAidl.begin() + size, std::back_inserter(mixes), | 
|  | 1630 | aidl2legacy_AudioMix))); | 
| Eric Laurent | df3dc7e | 2014-07-27 18:39:40 -0700 | [diff] [blame] | 1631 |  | 
| Eric Laurent | baac183 | 2014-12-01 17:52:59 -0800 | [diff] [blame] | 1632 | Mutex::Autolock _l(mLock); | 
| Kevin Rocard | be20185 | 2019-02-20 22:33:28 -0800 | [diff] [blame] | 1633 |  | 
|  | 1634 | // loopback|render only need a MediaProjection (checked in caller AudioService.java) | 
|  | 1635 | bool needModifyAudioRouting = std::any_of(mixes.begin(), mixes.end(), [](auto& mix) { | 
|  | 1636 | return !is_mix_loopback_render(mix.mRouteFlags); }); | 
|  | 1637 | if (needModifyAudioRouting && !modifyAudioRoutingAllowed()) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1638 | return binderStatusFromStatusT(PERMISSION_DENIED); | 
| Eric Laurent | baac183 | 2014-12-01 17:52:59 -0800 | [diff] [blame] | 1639 | } | 
| Kevin Rocard | be20185 | 2019-02-20 22:33:28 -0800 | [diff] [blame] | 1640 |  | 
| Nadav Bar | 287d330 | 2020-02-05 14:55:38 +0200 | [diff] [blame] | 1641 | // If one of the mixes has needCaptureVoiceCommunicationOutput set to true, then we | 
|  | 1642 | // need to verify that the caller still has CAPTURE_VOICE_COMMUNICATION_OUTPUT | 
| Nadav Bar | dbf0a2e | 2020-01-16 23:09:25 +0200 | [diff] [blame] | 1643 | bool needCaptureVoiceCommunicationOutput = | 
|  | 1644 | std::any_of(mixes.begin(), mixes.end(), [](auto& mix) { | 
| Nadav Bar | 287d330 | 2020-02-05 14:55:38 +0200 | [diff] [blame] | 1645 | return mix.mVoiceCommunicationCaptureAllowed; }); | 
| Nadav Bar | dbf0a2e | 2020-01-16 23:09:25 +0200 | [diff] [blame] | 1646 |  | 
| Kevin Rocard | 36b1755 | 2019-03-07 18:48:07 -0800 | [diff] [blame] | 1647 | bool needCaptureMediaOutput = std::any_of(mixes.begin(), mixes.end(), [](auto& mix) { | 
| Eric Laurent | 5f9a645 | 2020-12-22 20:10:10 +0100 | [diff] [blame] | 1648 | return mix.mAllowPrivilegedMediaPlaybackCapture; }); | 
| Nadav Bar | dbf0a2e | 2020-01-16 23:09:25 +0200 | [diff] [blame] | 1649 |  | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 1650 | const AttributionSourceState attributionSource = getCallingAttributionSource(); | 
| Nadav Bar | dbf0a2e | 2020-01-16 23:09:25 +0200 | [diff] [blame] | 1651 |  | 
| Philip P. Moltmann | bda4575 | 2020-07-17 16:41:18 -0700 | [diff] [blame] | 1652 |  | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 1653 | if (needCaptureMediaOutput && !captureMediaOutputAllowed(attributionSource)) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1654 | return binderStatusFromStatusT(PERMISSION_DENIED); | 
| Kevin Rocard | 36b1755 | 2019-03-07 18:48:07 -0800 | [diff] [blame] | 1655 | } | 
|  | 1656 |  | 
| Nadav Bar | dbf0a2e | 2020-01-16 23:09:25 +0200 | [diff] [blame] | 1657 | if (needCaptureVoiceCommunicationOutput && | 
| Svet Ganov | 3376113 | 2021-05-13 22:51:08 +0000 | [diff] [blame] | 1658 | !captureVoiceCommunicationOutputAllowed(attributionSource)) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1659 | return binderStatusFromStatusT(PERMISSION_DENIED); | 
| Nadav Bar | dbf0a2e | 2020-01-16 23:09:25 +0200 | [diff] [blame] | 1660 | } | 
|  | 1661 |  | 
| Eric Laurent | baac183 | 2014-12-01 17:52:59 -0800 | [diff] [blame] | 1662 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1663 | return binderStatusFromStatusT(NO_INIT); | 
| Eric Laurent | baac183 | 2014-12-01 17:52:59 -0800 | [diff] [blame] | 1664 | } | 
| Eric Laurent | 10b7123 | 2018-04-13 18:14:44 -0700 | [diff] [blame] | 1665 | AutoCallerClear acc; | 
| Eric Laurent | baac183 | 2014-12-01 17:52:59 -0800 | [diff] [blame] | 1666 | if (registration) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1667 | return binderStatusFromStatusT(mAudioPolicyManager->registerPolicyMixes(mixes)); | 
| Eric Laurent | baac183 | 2014-12-01 17:52:59 -0800 | [diff] [blame] | 1668 | } else { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1669 | return binderStatusFromStatusT(mAudioPolicyManager->unregisterPolicyMixes(mixes)); | 
| Eric Laurent | baac183 | 2014-12-01 17:52:59 -0800 | [diff] [blame] | 1670 | } | 
|  | 1671 | } | 
|  | 1672 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1673 | Status AudioPolicyService::setUidDeviceAffinities( | 
|  | 1674 | int32_t uidAidl, | 
|  | 1675 | const std::vector<media::AudioDevice>& devicesAidl) { | 
|  | 1676 | uid_t uid = VALUE_OR_RETURN_BINDER_STATUS(aidl2legacy_int32_t_uid_t(uidAidl)); | 
|  | 1677 | AudioDeviceTypeAddrVector devices = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1678 | convertContainer<AudioDeviceTypeAddrVector>(devicesAidl, | 
|  | 1679 | aidl2legacy_AudioDeviceTypeAddress)); | 
|  | 1680 |  | 
| Jean-Michel Trivi | bda70da | 2018-12-19 07:30:15 -0800 | [diff] [blame] | 1681 | Mutex::Autolock _l(mLock); | 
|  | 1682 | if(!modifyAudioRoutingAllowed()) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1683 | return binderStatusFromStatusT(PERMISSION_DENIED); | 
| Jean-Michel Trivi | bda70da | 2018-12-19 07:30:15 -0800 | [diff] [blame] | 1684 | } | 
|  | 1685 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1686 | return binderStatusFromStatusT(NO_INIT); | 
| Jean-Michel Trivi | bda70da | 2018-12-19 07:30:15 -0800 | [diff] [blame] | 1687 | } | 
|  | 1688 | AutoCallerClear acc; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1689 | return binderStatusFromStatusT(mAudioPolicyManager->setUidDeviceAffinities(uid, devices)); | 
| Jean-Michel Trivi | bda70da | 2018-12-19 07:30:15 -0800 | [diff] [blame] | 1690 | } | 
|  | 1691 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1692 | Status AudioPolicyService::removeUidDeviceAffinities(int32_t uidAidl) { | 
|  | 1693 | uid_t uid = VALUE_OR_RETURN_BINDER_STATUS(aidl2legacy_int32_t_uid_t(uidAidl)); | 
|  | 1694 |  | 
| Jean-Michel Trivi | bda70da | 2018-12-19 07:30:15 -0800 | [diff] [blame] | 1695 | Mutex::Autolock _l(mLock); | 
|  | 1696 | if(!modifyAudioRoutingAllowed()) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1697 | return binderStatusFromStatusT(PERMISSION_DENIED); | 
| Jean-Michel Trivi | bda70da | 2018-12-19 07:30:15 -0800 | [diff] [blame] | 1698 | } | 
|  | 1699 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1700 | return binderStatusFromStatusT(NO_INIT); | 
| Jean-Michel Trivi | bda70da | 2018-12-19 07:30:15 -0800 | [diff] [blame] | 1701 | } | 
|  | 1702 | AutoCallerClear acc; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1703 | return binderStatusFromStatusT(mAudioPolicyManager->removeUidDeviceAffinities(uid)); | 
| Jean-Michel Trivi | bda70da | 2018-12-19 07:30:15 -0800 | [diff] [blame] | 1704 | } | 
|  | 1705 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1706 | Status AudioPolicyService::setUserIdDeviceAffinities( | 
|  | 1707 | int32_t userIdAidl, | 
|  | 1708 | const std::vector<media::AudioDevice>& devicesAidl) { | 
|  | 1709 | int userId = VALUE_OR_RETURN_BINDER_STATUS(convertReinterpret<int>(userIdAidl)); | 
|  | 1710 | AudioDeviceTypeAddrVector devices = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1711 | convertContainer<AudioDeviceTypeAddrVector>(devicesAidl, | 
|  | 1712 | aidl2legacy_AudioDeviceTypeAddress)); | 
|  | 1713 |  | 
| Oscar Azucena | 90e7763 | 2019-11-27 17:12:28 -0800 | [diff] [blame] | 1714 | Mutex::Autolock _l(mLock); | 
|  | 1715 | if(!modifyAudioRoutingAllowed()) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1716 | return binderStatusFromStatusT(PERMISSION_DENIED); | 
| Oscar Azucena | 90e7763 | 2019-11-27 17:12:28 -0800 | [diff] [blame] | 1717 | } | 
|  | 1718 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1719 | return binderStatusFromStatusT(NO_INIT); | 
| Oscar Azucena | 90e7763 | 2019-11-27 17:12:28 -0800 | [diff] [blame] | 1720 | } | 
|  | 1721 | AutoCallerClear acc; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1722 | return binderStatusFromStatusT(mAudioPolicyManager->setUserIdDeviceAffinities(userId, devices)); | 
| Oscar Azucena | 90e7763 | 2019-11-27 17:12:28 -0800 | [diff] [blame] | 1723 | } | 
|  | 1724 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1725 | Status AudioPolicyService::removeUserIdDeviceAffinities(int32_t userIdAidl) { | 
|  | 1726 | int userId = VALUE_OR_RETURN_BINDER_STATUS(convertReinterpret<int>(userIdAidl)); | 
|  | 1727 |  | 
| Oscar Azucena | 90e7763 | 2019-11-27 17:12:28 -0800 | [diff] [blame] | 1728 | Mutex::Autolock _l(mLock); | 
|  | 1729 | if(!modifyAudioRoutingAllowed()) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1730 | return binderStatusFromStatusT(PERMISSION_DENIED); | 
| Oscar Azucena | 90e7763 | 2019-11-27 17:12:28 -0800 | [diff] [blame] | 1731 | } | 
|  | 1732 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1733 | return binderStatusFromStatusT(NO_INIT); | 
| Oscar Azucena | 90e7763 | 2019-11-27 17:12:28 -0800 | [diff] [blame] | 1734 | } | 
|  | 1735 | AutoCallerClear acc; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1736 | return binderStatusFromStatusT(mAudioPolicyManager->removeUserIdDeviceAffinities(userId)); | 
| Oscar Azucena | 90e7763 | 2019-11-27 17:12:28 -0800 | [diff] [blame] | 1737 | } | 
|  | 1738 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1739 | Status AudioPolicyService::startAudioSource(const media::AudioPortConfig& sourceAidl, | 
|  | 1740 | const media::AudioAttributesInternal& attributesAidl, | 
|  | 1741 | int32_t* _aidl_return) { | 
|  | 1742 | audio_port_config source = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1743 | aidl2legacy_AudioPortConfig_audio_port_config(sourceAidl)); | 
|  | 1744 | audio_attributes_t attributes = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1745 | aidl2legacy_AudioAttributesInternal_audio_attributes_t(attributesAidl)); | 
|  | 1746 | audio_port_handle_t portId; | 
|  | 1747 | RETURN_IF_BINDER_ERROR(binderStatusFromStatusT( | 
|  | 1748 | AudioValidator::validateAudioPortConfig(source))); | 
|  | 1749 | RETURN_IF_BINDER_ERROR(binderStatusFromStatusT( | 
|  | 1750 | AudioValidator::validateAudioAttributes(attributes, "68953950"))); | 
|  | 1751 |  | 
| Eric Laurent | 554a277 | 2015-04-10 11:29:24 -0700 | [diff] [blame] | 1752 | Mutex::Autolock _l(mLock); | 
|  | 1753 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1754 | return binderStatusFromStatusT(NO_INIT); | 
| Eric Laurent | 554a277 | 2015-04-10 11:29:24 -0700 | [diff] [blame] | 1755 | } | 
| Hayden Gomes | 524159d | 2019-12-23 14:41:47 -0800 | [diff] [blame] | 1756 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1757 | RETURN_IF_BINDER_ERROR(binderStatusFromStatusT(validateUsage(attributes.usage))); | 
| Hayden Gomes | 524159d | 2019-12-23 14:41:47 -0800 | [diff] [blame] | 1758 |  | 
| Hongwei Wang | 5cd1f1d | 2019-03-26 15:21:11 -0700 | [diff] [blame] | 1759 | // startAudioSource should be created as the calling uid | 
|  | 1760 | const uid_t callingUid = IPCThreadState::self()->getCallingUid(); | 
| Eric Laurent | 10b7123 | 2018-04-13 18:14:44 -0700 | [diff] [blame] | 1761 | AutoCallerClear acc; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1762 | RETURN_IF_BINDER_ERROR(binderStatusFromStatusT( | 
|  | 1763 | mAudioPolicyManager->startAudioSource(&source, &attributes, &portId, callingUid))); | 
|  | 1764 | *_aidl_return = VALUE_OR_RETURN_BINDER_STATUS(legacy2aidl_audio_port_handle_t_int32_t(portId)); | 
|  | 1765 | return Status::ok(); | 
| Eric Laurent | 554a277 | 2015-04-10 11:29:24 -0700 | [diff] [blame] | 1766 | } | 
|  | 1767 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1768 | Status AudioPolicyService::stopAudioSource(int32_t portIdAidl) | 
| Eric Laurent | 554a277 | 2015-04-10 11:29:24 -0700 | [diff] [blame] | 1769 | { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1770 | audio_port_handle_t portId = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1771 | aidl2legacy_int32_t_audio_port_handle_t(portIdAidl)); | 
|  | 1772 |  | 
| Eric Laurent | 554a277 | 2015-04-10 11:29:24 -0700 | [diff] [blame] | 1773 | Mutex::Autolock _l(mLock); | 
|  | 1774 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1775 | return binderStatusFromStatusT(NO_INIT); | 
| Eric Laurent | 554a277 | 2015-04-10 11:29:24 -0700 | [diff] [blame] | 1776 | } | 
| Eric Laurent | 10b7123 | 2018-04-13 18:14:44 -0700 | [diff] [blame] | 1777 | AutoCallerClear acc; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1778 | return binderStatusFromStatusT(mAudioPolicyManager->stopAudioSource(portId)); | 
| Eric Laurent | 554a277 | 2015-04-10 11:29:24 -0700 | [diff] [blame] | 1779 | } | 
|  | 1780 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1781 | Status AudioPolicyService::setMasterMono(bool mono) | 
| Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 1782 | { | 
|  | 1783 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1784 | return binderStatusFromStatusT(NO_INIT); | 
| Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 1785 | } | 
|  | 1786 | if (!settingsAllowed()) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1787 | return binderStatusFromStatusT(PERMISSION_DENIED); | 
| Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 1788 | } | 
|  | 1789 | Mutex::Autolock _l(mLock); | 
| Eric Laurent | 10b7123 | 2018-04-13 18:14:44 -0700 | [diff] [blame] | 1790 | AutoCallerClear acc; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1791 | return binderStatusFromStatusT(mAudioPolicyManager->setMasterMono(mono)); | 
| Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 1792 | } | 
|  | 1793 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1794 | Status AudioPolicyService::getMasterMono(bool* _aidl_return) | 
| Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 1795 | { | 
|  | 1796 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1797 | return binderStatusFromStatusT(NO_INIT); | 
| Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 1798 | } | 
|  | 1799 | Mutex::Autolock _l(mLock); | 
| Eric Laurent | 10b7123 | 2018-04-13 18:14:44 -0700 | [diff] [blame] | 1800 | AutoCallerClear acc; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1801 | return binderStatusFromStatusT(mAudioPolicyManager->getMasterMono(_aidl_return)); | 
| Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 1802 | } | 
|  | 1803 |  | 
| Eric Laurent | ac9cef5 | 2017-06-09 15:46:26 -0700 | [diff] [blame] | 1804 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1805 | Status AudioPolicyService::getStreamVolumeDB(media::AudioStreamType streamAidl, int32_t indexAidl, | 
|  | 1806 | int32_t deviceAidl, float* _aidl_return) { | 
|  | 1807 | audio_stream_type_t stream = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1808 | aidl2legacy_AudioStreamType_audio_stream_type_t(streamAidl)); | 
|  | 1809 | int index = VALUE_OR_RETURN_BINDER_STATUS(convertIntegral<int>(indexAidl)); | 
|  | 1810 | audio_devices_t device = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1811 | aidl2legacy_int32_t_audio_devices_t(deviceAidl)); | 
|  | 1812 |  | 
| Eric Laurent | ac9cef5 | 2017-06-09 15:46:26 -0700 | [diff] [blame] | 1813 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1814 | return binderStatusFromStatusT(NO_INIT); | 
| Eric Laurent | ac9cef5 | 2017-06-09 15:46:26 -0700 | [diff] [blame] | 1815 | } | 
|  | 1816 | Mutex::Autolock _l(mLock); | 
| Eric Laurent | 10b7123 | 2018-04-13 18:14:44 -0700 | [diff] [blame] | 1817 | AutoCallerClear acc; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1818 | *_aidl_return = mAudioPolicyManager->getStreamVolumeDB(stream, index, device); | 
|  | 1819 | return Status::ok(); | 
| Eric Laurent | ac9cef5 | 2017-06-09 15:46:26 -0700 | [diff] [blame] | 1820 | } | 
|  | 1821 |  | 
| Kriti Dang | 6537def | 2021-03-02 13:46:59 +0100 | [diff] [blame] | 1822 | Status AudioPolicyService::getSurroundFormats(media::Int* count, | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1823 | std::vector<media::audio::common::AudioFormat>* formats, | 
| Kriti Dang | 877b27e | 2021-02-02 12:10:40 +0100 | [diff] [blame] | 1824 | std::vector<bool>* formatsEnabled) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1825 | unsigned int numSurroundFormats = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1826 | convertIntegral<unsigned int>(count->value)); | 
|  | 1827 | if (numSurroundFormats > MAX_ITEMS_PER_LIST) { | 
|  | 1828 | numSurroundFormats = MAX_ITEMS_PER_LIST; | 
|  | 1829 | } | 
|  | 1830 | unsigned int numSurroundFormatsReq = numSurroundFormats; | 
|  | 1831 | std::unique_ptr<audio_format_t[]>surroundFormats(new audio_format_t[numSurroundFormats]); | 
| Kriti Dang | 877b27e | 2021-02-02 12:10:40 +0100 | [diff] [blame] | 1832 | std::unique_ptr<bool[]>surroundFormatsEnabled(new bool[numSurroundFormats]); | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1833 |  | 
| jiabin | 8177290 | 2018-04-02 17:52:27 -0700 | [diff] [blame] | 1834 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1835 | return binderStatusFromStatusT(NO_INIT); | 
| jiabin | 8177290 | 2018-04-02 17:52:27 -0700 | [diff] [blame] | 1836 | } | 
|  | 1837 | Mutex::Autolock _l(mLock); | 
|  | 1838 | AutoCallerClear acc; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1839 | RETURN_IF_BINDER_ERROR(binderStatusFromStatusT( | 
|  | 1840 | mAudioPolicyManager->getSurroundFormats(&numSurroundFormats, surroundFormats.get(), | 
| Kriti Dang | 6537def | 2021-03-02 13:46:59 +0100 | [diff] [blame] | 1841 | surroundFormatsEnabled.get()))); | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1842 | numSurroundFormatsReq = std::min(numSurroundFormats, numSurroundFormatsReq); | 
|  | 1843 | RETURN_IF_BINDER_ERROR(binderStatusFromStatusT( | 
|  | 1844 | convertRange(surroundFormats.get(), surroundFormats.get() + numSurroundFormatsReq, | 
|  | 1845 | std::back_inserter(*formats), legacy2aidl_audio_format_t_AudioFormat))); | 
| Kriti Dang | 877b27e | 2021-02-02 12:10:40 +0100 | [diff] [blame] | 1846 | formatsEnabled->insert( | 
|  | 1847 | formatsEnabled->begin(), | 
|  | 1848 | surroundFormatsEnabled.get(), | 
|  | 1849 | surroundFormatsEnabled.get() + numSurroundFormatsReq); | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1850 | count->value = VALUE_OR_RETURN_BINDER_STATUS(convertIntegral<uint32_t>(numSurroundFormats)); | 
|  | 1851 | return Status::ok(); | 
| jiabin | 8177290 | 2018-04-02 17:52:27 -0700 | [diff] [blame] | 1852 | } | 
|  | 1853 |  | 
| Kriti Dang | 6537def | 2021-03-02 13:46:59 +0100 | [diff] [blame] | 1854 | Status AudioPolicyService::getReportedSurroundFormats( | 
|  | 1855 | media::Int* count, std::vector<media::audio::common::AudioFormat>* formats) { | 
|  | 1856 | unsigned int numSurroundFormats = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1857 | convertIntegral<unsigned int>(count->value)); | 
|  | 1858 | if (numSurroundFormats > MAX_ITEMS_PER_LIST) { | 
|  | 1859 | numSurroundFormats = MAX_ITEMS_PER_LIST; | 
|  | 1860 | } | 
|  | 1861 | unsigned int numSurroundFormatsReq = numSurroundFormats; | 
|  | 1862 | std::unique_ptr<audio_format_t[]>surroundFormats(new audio_format_t[numSurroundFormats]); | 
|  | 1863 |  | 
|  | 1864 | if (mAudioPolicyManager == NULL) { | 
|  | 1865 | return binderStatusFromStatusT(NO_INIT); | 
|  | 1866 | } | 
|  | 1867 | Mutex::Autolock _l(mLock); | 
|  | 1868 | AutoCallerClear acc; | 
|  | 1869 | RETURN_IF_BINDER_ERROR(binderStatusFromStatusT( | 
|  | 1870 | mAudioPolicyManager->getReportedSurroundFormats( | 
|  | 1871 | &numSurroundFormats, surroundFormats.get()))); | 
|  | 1872 | numSurroundFormatsReq = std::min(numSurroundFormats, numSurroundFormatsReq); | 
|  | 1873 | RETURN_IF_BINDER_ERROR(binderStatusFromStatusT( | 
|  | 1874 | convertRange(surroundFormats.get(), surroundFormats.get() + numSurroundFormatsReq, | 
|  | 1875 | std::back_inserter(*formats), legacy2aidl_audio_format_t_AudioFormat))); | 
|  | 1876 | count->value = VALUE_OR_RETURN_BINDER_STATUS(convertIntegral<uint32_t>(numSurroundFormats)); | 
|  | 1877 | return Status::ok(); | 
|  | 1878 | } | 
|  | 1879 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1880 | Status AudioPolicyService::getHwOffloadEncodingFormatsSupportedForA2DP( | 
|  | 1881 | std::vector<media::audio::common::AudioFormat>* _aidl_return) { | 
|  | 1882 | std::vector<audio_format_t> formats; | 
|  | 1883 |  | 
| Arun Mirpuri | 11029ad | 2018-12-19 20:45:19 -0800 | [diff] [blame] | 1884 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1885 | return binderStatusFromStatusT(NO_INIT); | 
| Arun Mirpuri | 11029ad | 2018-12-19 20:45:19 -0800 | [diff] [blame] | 1886 | } | 
|  | 1887 | Mutex::Autolock _l(mLock); | 
|  | 1888 | AutoCallerClear acc; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1889 | RETURN_IF_BINDER_ERROR(binderStatusFromStatusT( | 
|  | 1890 | mAudioPolicyManager->getHwOffloadEncodingFormatsSupportedForA2DP(&formats))); | 
|  | 1891 | *_aidl_return = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1892 | convertContainer<std::vector<media::audio::common::AudioFormat>>( | 
|  | 1893 | formats, | 
|  | 1894 | legacy2aidl_audio_format_t_AudioFormat)); | 
|  | 1895 | return Status::ok(); | 
| Arun Mirpuri | 11029ad | 2018-12-19 20:45:19 -0800 | [diff] [blame] | 1896 | } | 
|  | 1897 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1898 | Status AudioPolicyService::setSurroundFormatEnabled( | 
|  | 1899 | media::audio::common::AudioFormat audioFormatAidl, bool enabled) { | 
|  | 1900 | audio_format_t audioFormat = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1901 | aidl2legacy_AudioFormat_audio_format_t(audioFormatAidl)); | 
| jiabin | 8177290 | 2018-04-02 17:52:27 -0700 | [diff] [blame] | 1902 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1903 | return binderStatusFromStatusT(NO_INIT); | 
| jiabin | 8177290 | 2018-04-02 17:52:27 -0700 | [diff] [blame] | 1904 | } | 
|  | 1905 | Mutex::Autolock _l(mLock); | 
|  | 1906 | AutoCallerClear acc; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1907 | return binderStatusFromStatusT( | 
|  | 1908 | mAudioPolicyManager->setSurroundFormatEnabled(audioFormat, enabled)); | 
| jiabin | 8177290 | 2018-04-02 17:52:27 -0700 | [diff] [blame] | 1909 | } | 
| Eric Laurent | ac9cef5 | 2017-06-09 15:46:26 -0700 | [diff] [blame] | 1910 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1911 | Status AudioPolicyService::setAssistantUid(int32_t uidAidl) | 
| Eric Laurent | b78763e | 2018-10-17 10:08:02 -0700 | [diff] [blame] | 1912 | { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1913 | uid_t uid = VALUE_OR_RETURN_BINDER_STATUS(aidl2legacy_int32_t_uid_t(uidAidl)); | 
| Eric Laurent | b78763e | 2018-10-17 10:08:02 -0700 | [diff] [blame] | 1914 | Mutex::Autolock _l(mLock); | 
|  | 1915 | mUidPolicy->setAssistantUid(uid); | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1916 | return Status::ok(); | 
| Eric Laurent | b78763e | 2018-10-17 10:08:02 -0700 | [diff] [blame] | 1917 | } | 
|  | 1918 |  | 
| Ahaan Ugale | f51ce00 | 2021-08-04 16:34:20 -0700 | [diff] [blame] | 1919 | Status AudioPolicyService::setHotwordDetectionServiceUid(int32_t uidAidl) | 
|  | 1920 | { | 
|  | 1921 | uid_t uid = VALUE_OR_RETURN_BINDER_STATUS(aidl2legacy_int32_t_uid_t(uidAidl)); | 
|  | 1922 | Mutex::Autolock _l(mLock); | 
|  | 1923 | mUidPolicy->setHotwordDetectionServiceUid(uid); | 
|  | 1924 | return Status::ok(); | 
|  | 1925 | } | 
|  | 1926 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1927 | Status AudioPolicyService::setA11yServicesUids(const std::vector<int32_t>& uidsAidl) | 
| Eric Laurent | b78763e | 2018-10-17 10:08:02 -0700 | [diff] [blame] | 1928 | { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1929 | size_t size = uidsAidl.size(); | 
|  | 1930 | if (size > MAX_ITEMS_PER_LIST) { | 
|  | 1931 | size = MAX_ITEMS_PER_LIST; | 
|  | 1932 | } | 
|  | 1933 | std::vector<uid_t> uids; | 
|  | 1934 | RETURN_IF_BINDER_ERROR(binderStatusFromStatusT( | 
|  | 1935 | convertRange(uidsAidl.begin(), | 
|  | 1936 | uidsAidl.begin() + size, | 
|  | 1937 | std::back_inserter(uids), | 
|  | 1938 | aidl2legacy_int32_t_uid_t))); | 
| Eric Laurent | b78763e | 2018-10-17 10:08:02 -0700 | [diff] [blame] | 1939 | Mutex::Autolock _l(mLock); | 
|  | 1940 | mUidPolicy->setA11yUids(uids); | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1941 | return Status::ok(); | 
| Eric Laurent | b78763e | 2018-10-17 10:08:02 -0700 | [diff] [blame] | 1942 | } | 
|  | 1943 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1944 | Status AudioPolicyService::setCurrentImeUid(int32_t uidAidl) | 
| Kohsuke Yatoh | a623a13 | 2020-03-24 20:10:26 -0700 | [diff] [blame] | 1945 | { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1946 | uid_t uid = VALUE_OR_RETURN_BINDER_STATUS(aidl2legacy_int32_t_uid_t(uidAidl)); | 
| Kohsuke Yatoh | a623a13 | 2020-03-24 20:10:26 -0700 | [diff] [blame] | 1947 | Mutex::Autolock _l(mLock); | 
|  | 1948 | mUidPolicy->setCurrentImeUid(uid); | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1949 | return Status::ok(); | 
| Kohsuke Yatoh | a623a13 | 2020-03-24 20:10:26 -0700 | [diff] [blame] | 1950 | } | 
|  | 1951 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1952 | Status AudioPolicyService::isHapticPlaybackSupported(bool* _aidl_return) | 
| jiabin | 6012f91 | 2018-11-02 17:06:30 -0700 | [diff] [blame] | 1953 | { | 
|  | 1954 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1955 | return binderStatusFromStatusT(NO_INIT); | 
| jiabin | 6012f91 | 2018-11-02 17:06:30 -0700 | [diff] [blame] | 1956 | } | 
|  | 1957 | Mutex::Autolock _l(mLock); | 
|  | 1958 | AutoCallerClear acc; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1959 | *_aidl_return = mAudioPolicyManager->isHapticPlaybackSupported(); | 
|  | 1960 | return Status::ok(); | 
| jiabin | 6012f91 | 2018-11-02 17:06:30 -0700 | [diff] [blame] | 1961 | } | 
|  | 1962 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1963 | Status AudioPolicyService::listAudioProductStrategies( | 
|  | 1964 | std::vector<media::AudioProductStrategy>* _aidl_return) { | 
|  | 1965 | AudioProductStrategyVector strategies; | 
|  | 1966 |  | 
| François Gaffie | d0ba9ed | 2018-11-05 11:50:42 +0100 | [diff] [blame] | 1967 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1968 | return binderStatusFromStatusT(NO_INIT); | 
| François Gaffie | d0ba9ed | 2018-11-05 11:50:42 +0100 | [diff] [blame] | 1969 | } | 
|  | 1970 | Mutex::Autolock _l(mLock); | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1971 | RETURN_IF_BINDER_ERROR( | 
|  | 1972 | binderStatusFromStatusT(mAudioPolicyManager->listAudioProductStrategies(strategies))); | 
|  | 1973 | *_aidl_return = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1974 | convertContainer<std::vector<media::AudioProductStrategy>>( | 
|  | 1975 | strategies, | 
|  | 1976 | legacy2aidl_AudioProductStrategy)); | 
|  | 1977 | return Status::ok(); | 
| François Gaffie | d0ba9ed | 2018-11-05 11:50:42 +0100 | [diff] [blame] | 1978 | } | 
|  | 1979 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1980 | Status AudioPolicyService::getProductStrategyFromAudioAttributes( | 
| Francois Gaffie | 11b6592 | 2020-09-24 16:59:08 +0200 | [diff] [blame] | 1981 | const media::AudioAttributesEx& aaAidl, bool fallbackOnDefault, int32_t* _aidl_return) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1982 | AudioAttributes aa = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1983 | aidl2legacy_AudioAttributesEx_AudioAttributes(aaAidl)); | 
|  | 1984 | product_strategy_t productStrategy; | 
|  | 1985 |  | 
| François Gaffie | d0ba9ed | 2018-11-05 11:50:42 +0100 | [diff] [blame] | 1986 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1987 | return binderStatusFromStatusT(NO_INIT); | 
| François Gaffie | d0ba9ed | 2018-11-05 11:50:42 +0100 | [diff] [blame] | 1988 | } | 
|  | 1989 | Mutex::Autolock _l(mLock); | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1990 | RETURN_IF_BINDER_ERROR(binderStatusFromStatusT( | 
| Francois Gaffie | 11b6592 | 2020-09-24 16:59:08 +0200 | [diff] [blame] | 1991 | mAudioPolicyManager->getProductStrategyFromAudioAttributes( | 
|  | 1992 | aa, productStrategy, fallbackOnDefault))); | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1993 | *_aidl_return = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 1994 | legacy2aidl_product_strategy_t_int32_t(productStrategy)); | 
|  | 1995 | return Status::ok(); | 
| François Gaffie | 4b2018b | 2018-11-07 11:18:59 +0100 | [diff] [blame] | 1996 | } | 
|  | 1997 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 1998 | Status AudioPolicyService::listAudioVolumeGroups(std::vector<media::AudioVolumeGroup>* _aidl_return) | 
| François Gaffie | 4b2018b | 2018-11-07 11:18:59 +0100 | [diff] [blame] | 1999 | { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 2000 | AudioVolumeGroupVector groups; | 
| François Gaffie | 4b2018b | 2018-11-07 11:18:59 +0100 | [diff] [blame] | 2001 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 2002 | return binderStatusFromStatusT(NO_INIT); | 
| François Gaffie | 4b2018b | 2018-11-07 11:18:59 +0100 | [diff] [blame] | 2003 | } | 
|  | 2004 | Mutex::Autolock _l(mLock); | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 2005 | RETURN_IF_BINDER_ERROR( | 
|  | 2006 | binderStatusFromStatusT(mAudioPolicyManager->listAudioVolumeGroups(groups))); | 
|  | 2007 | *_aidl_return = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 2008 | convertContainer<std::vector<media::AudioVolumeGroup>>(groups, | 
|  | 2009 | legacy2aidl_AudioVolumeGroup)); | 
|  | 2010 | return Status::ok(); | 
| François Gaffie | 4b2018b | 2018-11-07 11:18:59 +0100 | [diff] [blame] | 2011 | } | 
|  | 2012 |  | 
| Francois Gaffie | 11b6592 | 2020-09-24 16:59:08 +0200 | [diff] [blame] | 2013 | Status AudioPolicyService::getVolumeGroupFromAudioAttributes( | 
|  | 2014 | const media::AudioAttributesEx& aaAidl, bool fallbackOnDefault, int32_t* _aidl_return) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 2015 | AudioAttributes aa = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 2016 | aidl2legacy_AudioAttributesEx_AudioAttributes(aaAidl)); | 
|  | 2017 | volume_group_t volumeGroup; | 
|  | 2018 |  | 
| François Gaffie | 4b2018b | 2018-11-07 11:18:59 +0100 | [diff] [blame] | 2019 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 2020 | return binderStatusFromStatusT(NO_INIT); | 
| François Gaffie | 4b2018b | 2018-11-07 11:18:59 +0100 | [diff] [blame] | 2021 | } | 
|  | 2022 | Mutex::Autolock _l(mLock); | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 2023 | RETURN_IF_BINDER_ERROR( | 
|  | 2024 | binderStatusFromStatusT( | 
| Francois Gaffie | 11b6592 | 2020-09-24 16:59:08 +0200 | [diff] [blame] | 2025 | mAudioPolicyManager->getVolumeGroupFromAudioAttributes( | 
|  | 2026 | aa, volumeGroup, fallbackOnDefault))); | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 2027 | *_aidl_return = VALUE_OR_RETURN_BINDER_STATUS(legacy2aidl_volume_group_t_int32_t(volumeGroup)); | 
|  | 2028 | return Status::ok(); | 
| François Gaffie | d0ba9ed | 2018-11-05 11:50:42 +0100 | [diff] [blame] | 2029 | } | 
| Eric Laurent | 6ede98f | 2019-06-11 14:50:30 -0700 | [diff] [blame] | 2030 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 2031 | Status AudioPolicyService::setRttEnabled(bool enabled) | 
| Eric Laurent | 6ede98f | 2019-06-11 14:50:30 -0700 | [diff] [blame] | 2032 | { | 
|  | 2033 | Mutex::Autolock _l(mLock); | 
|  | 2034 | mUidPolicy->setRttEnabled(enabled); | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 2035 | return Status::ok(); | 
| Eric Laurent | 6ede98f | 2019-06-11 14:50:30 -0700 | [diff] [blame] | 2036 | } | 
|  | 2037 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 2038 | Status AudioPolicyService::isCallScreenModeSupported(bool* _aidl_return) | 
| Eric Laurent | 8340e67 | 2019-11-06 11:01:08 -0800 | [diff] [blame] | 2039 | { | 
|  | 2040 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 2041 | return binderStatusFromStatusT(NO_INIT); | 
| Eric Laurent | 8340e67 | 2019-11-06 11:01:08 -0800 | [diff] [blame] | 2042 | } | 
|  | 2043 | Mutex::Autolock _l(mLock); | 
|  | 2044 | AutoCallerClear acc; | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 2045 | *_aidl_return = mAudioPolicyManager->isCallScreenModeSupported(); | 
|  | 2046 | return Status::ok(); | 
| Eric Laurent | 8340e67 | 2019-11-06 11:01:08 -0800 | [diff] [blame] | 2047 | } | 
|  | 2048 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 2049 | Status AudioPolicyService::setDevicesRoleForStrategy( | 
|  | 2050 | int32_t strategyAidl, | 
|  | 2051 | media::DeviceRole roleAidl, | 
|  | 2052 | const std::vector<media::AudioDevice>& devicesAidl) { | 
|  | 2053 | product_strategy_t strategy = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 2054 | aidl2legacy_int32_t_product_strategy_t(strategyAidl)); | 
|  | 2055 | device_role_t role = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 2056 | aidl2legacy_DeviceRole_device_role_t(roleAidl)); | 
|  | 2057 | AudioDeviceTypeAddrVector devices = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 2058 | convertContainer<AudioDeviceTypeAddrVector>(devicesAidl, | 
|  | 2059 | aidl2legacy_AudioDeviceTypeAddress)); | 
|  | 2060 |  | 
| Jean-Michel Trivi | 3085715 | 2019-11-01 11:04:15 -0700 | [diff] [blame] | 2061 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 2062 | return binderStatusFromStatusT(NO_INIT); | 
| Jean-Michel Trivi | 3085715 | 2019-11-01 11:04:15 -0700 | [diff] [blame] | 2063 | } | 
|  | 2064 | Mutex::Autolock _l(mLock); | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 2065 | return binderStatusFromStatusT( | 
|  | 2066 | mAudioPolicyManager->setDevicesRoleForStrategy(strategy, role, devices)); | 
| Jean-Michel Trivi | 3085715 | 2019-11-01 11:04:15 -0700 | [diff] [blame] | 2067 | } | 
|  | 2068 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 2069 | Status AudioPolicyService::removeDevicesRoleForStrategy(int32_t strategyAidl, | 
|  | 2070 | media::DeviceRole roleAidl) { | 
|  | 2071 | product_strategy_t strategy = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 2072 | aidl2legacy_int32_t_product_strategy_t(strategyAidl)); | 
|  | 2073 | device_role_t role = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 2074 | aidl2legacy_DeviceRole_device_role_t(roleAidl)); | 
|  | 2075 | if (mAudioPolicyManager == NULL) { | 
|  | 2076 | return binderStatusFromStatusT(NO_INIT); | 
|  | 2077 | } | 
|  | 2078 | Mutex::Autolock _l(mLock); | 
|  | 2079 | return binderStatusFromStatusT( | 
|  | 2080 | mAudioPolicyManager->removeDevicesRoleForStrategy(strategy, role)); | 
|  | 2081 | } | 
|  | 2082 |  | 
|  | 2083 | Status AudioPolicyService::getDevicesForRoleAndStrategy( | 
|  | 2084 | int32_t strategyAidl, | 
|  | 2085 | media::DeviceRole roleAidl, | 
|  | 2086 | std::vector<media::AudioDevice>* _aidl_return) { | 
|  | 2087 | product_strategy_t strategy = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 2088 | aidl2legacy_int32_t_product_strategy_t(strategyAidl)); | 
|  | 2089 | device_role_t role = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 2090 | aidl2legacy_DeviceRole_device_role_t(roleAidl)); | 
|  | 2091 | AudioDeviceTypeAddrVector devices; | 
|  | 2092 |  | 
| Jean-Michel Trivi | 3085715 | 2019-11-01 11:04:15 -0700 | [diff] [blame] | 2093 | if (mAudioPolicyManager == NULL) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 2094 | return binderStatusFromStatusT(NO_INIT); | 
| Jean-Michel Trivi | 3085715 | 2019-11-01 11:04:15 -0700 | [diff] [blame] | 2095 | } | 
|  | 2096 | Mutex::Autolock _l(mLock); | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 2097 | RETURN_IF_BINDER_ERROR(binderStatusFromStatusT( | 
|  | 2098 | mAudioPolicyManager->getDevicesForRoleAndStrategy(strategy, role, devices))); | 
|  | 2099 | *_aidl_return = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 2100 | convertContainer<std::vector<media::AudioDevice>>(devices, | 
|  | 2101 | legacy2aidl_AudioDeviceTypeAddress)); | 
|  | 2102 | return Status::ok(); | 
| Jean-Michel Trivi | 3085715 | 2019-11-01 11:04:15 -0700 | [diff] [blame] | 2103 | } | 
|  | 2104 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 2105 | Status AudioPolicyService::registerSoundTriggerCaptureStateListener( | 
|  | 2106 | const sp<media::ICaptureStateListener>& listener, bool* _aidl_return) { | 
|  | 2107 | *_aidl_return = mCaptureStateNotifier.RegisterListener(listener); | 
|  | 2108 | return Status::ok(); | 
| Jean-Michel Trivi | 3085715 | 2019-11-01 11:04:15 -0700 | [diff] [blame] | 2109 | } | 
|  | 2110 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 2111 | Status AudioPolicyService::setDevicesRoleForCapturePreset( | 
|  | 2112 | media::AudioSourceType audioSourceAidl, | 
|  | 2113 | media::DeviceRole roleAidl, | 
|  | 2114 | const std::vector<media::AudioDevice>& devicesAidl) { | 
|  | 2115 | audio_source_t audioSource = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 2116 | aidl2legacy_AudioSourceType_audio_source_t(audioSourceAidl)); | 
|  | 2117 | device_role_t role = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 2118 | aidl2legacy_DeviceRole_device_role_t(roleAidl)); | 
|  | 2119 | AudioDeviceTypeAddrVector devices = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 2120 | convertContainer<AudioDeviceTypeAddrVector>(devicesAidl, | 
|  | 2121 | aidl2legacy_AudioDeviceTypeAddress)); | 
| Ytai Ben-Tsvi | 85093d5 | 2020-03-26 09:41:15 -0700 | [diff] [blame] | 2122 |  | 
| Jiabin Huang | 3b98d32 | 2020-09-03 17:54:16 +0000 | [diff] [blame] | 2123 | if (mAudioPolicyManager == nullptr) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 2124 | return binderStatusFromStatusT(NO_INIT); | 
| Jiabin Huang | 3b98d32 | 2020-09-03 17:54:16 +0000 | [diff] [blame] | 2125 | } | 
|  | 2126 | Mutex::Autolock _l(mLock); | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 2127 | return binderStatusFromStatusT( | 
|  | 2128 | mAudioPolicyManager->setDevicesRoleForCapturePreset(audioSource, role, devices)); | 
| Jiabin Huang | 3b98d32 | 2020-09-03 17:54:16 +0000 | [diff] [blame] | 2129 | } | 
|  | 2130 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 2131 | Status AudioPolicyService::addDevicesRoleForCapturePreset( | 
|  | 2132 | media::AudioSourceType audioSourceAidl, | 
|  | 2133 | media::DeviceRole roleAidl, | 
|  | 2134 | const std::vector<media::AudioDevice>& devicesAidl) { | 
|  | 2135 | audio_source_t audioSource = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 2136 | aidl2legacy_AudioSourceType_audio_source_t(audioSourceAidl)); | 
|  | 2137 | device_role_t role = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 2138 | aidl2legacy_DeviceRole_device_role_t(roleAidl)); | 
|  | 2139 | AudioDeviceTypeAddrVector devices = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 2140 | convertContainer<AudioDeviceTypeAddrVector>(devicesAidl, | 
|  | 2141 | aidl2legacy_AudioDeviceTypeAddress)); | 
|  | 2142 |  | 
| Jiabin Huang | 3b98d32 | 2020-09-03 17:54:16 +0000 | [diff] [blame] | 2143 | if (mAudioPolicyManager == nullptr) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 2144 | return binderStatusFromStatusT(NO_INIT); | 
| Jiabin Huang | 3b98d32 | 2020-09-03 17:54:16 +0000 | [diff] [blame] | 2145 | } | 
|  | 2146 | Mutex::Autolock _l(mLock); | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 2147 | return binderStatusFromStatusT( | 
|  | 2148 | mAudioPolicyManager->addDevicesRoleForCapturePreset(audioSource, role, devices)); | 
| Jiabin Huang | 3b98d32 | 2020-09-03 17:54:16 +0000 | [diff] [blame] | 2149 | } | 
|  | 2150 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 2151 | Status AudioPolicyService::removeDevicesRoleForCapturePreset( | 
|  | 2152 | media::AudioSourceType audioSourceAidl, | 
|  | 2153 | media::DeviceRole roleAidl, | 
|  | 2154 | const std::vector<media::AudioDevice>& devicesAidl) { | 
|  | 2155 | audio_source_t audioSource = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 2156 | aidl2legacy_AudioSourceType_audio_source_t(audioSourceAidl)); | 
|  | 2157 | device_role_t role = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 2158 | aidl2legacy_DeviceRole_device_role_t(roleAidl)); | 
|  | 2159 | AudioDeviceTypeAddrVector devices = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 2160 | convertContainer<AudioDeviceTypeAddrVector>(devicesAidl, | 
|  | 2161 | aidl2legacy_AudioDeviceTypeAddress)); | 
|  | 2162 |  | 
|  | 2163 | if (mAudioPolicyManager == nullptr) { | 
|  | 2164 | return binderStatusFromStatusT(NO_INIT); | 
| Jiabin Huang | 3b98d32 | 2020-09-03 17:54:16 +0000 | [diff] [blame] | 2165 | } | 
|  | 2166 | Mutex::Autolock _l(mLock); | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 2167 | return binderStatusFromStatusT( | 
|  | 2168 | mAudioPolicyManager->removeDevicesRoleForCapturePreset(audioSource, role, devices)); | 
| Jiabin Huang | 3b98d32 | 2020-09-03 17:54:16 +0000 | [diff] [blame] | 2169 | } | 
|  | 2170 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 2171 | Status AudioPolicyService::clearDevicesRoleForCapturePreset(media::AudioSourceType audioSourceAidl, | 
|  | 2172 | media::DeviceRole roleAidl) { | 
|  | 2173 | audio_source_t audioSource = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 2174 | aidl2legacy_AudioSourceType_audio_source_t(audioSourceAidl)); | 
|  | 2175 | device_role_t role = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 2176 | aidl2legacy_DeviceRole_device_role_t(roleAidl)); | 
|  | 2177 |  | 
| Jiabin Huang | 3b98d32 | 2020-09-03 17:54:16 +0000 | [diff] [blame] | 2178 | if (mAudioPolicyManager == nullptr) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 2179 | return binderStatusFromStatusT(NO_INIT); | 
| Jiabin Huang | 3b98d32 | 2020-09-03 17:54:16 +0000 | [diff] [blame] | 2180 | } | 
|  | 2181 | Mutex::Autolock _l(mLock); | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 2182 | return binderStatusFromStatusT( | 
|  | 2183 | mAudioPolicyManager->clearDevicesRoleForCapturePreset(audioSource, role)); | 
| Jiabin Huang | 3b98d32 | 2020-09-03 17:54:16 +0000 | [diff] [blame] | 2184 | } | 
|  | 2185 |  | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 2186 | Status AudioPolicyService::getDevicesForRoleAndCapturePreset( | 
|  | 2187 | media::AudioSourceType audioSourceAidl, | 
|  | 2188 | media::DeviceRole roleAidl, | 
|  | 2189 | std::vector<media::AudioDevice>* _aidl_return) { | 
|  | 2190 | audio_source_t audioSource = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 2191 | aidl2legacy_AudioSourceType_audio_source_t(audioSourceAidl)); | 
|  | 2192 | device_role_t role = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 2193 | aidl2legacy_DeviceRole_device_role_t(roleAidl)); | 
|  | 2194 | AudioDeviceTypeAddrVector devices; | 
|  | 2195 |  | 
| Jiabin Huang | 3b98d32 | 2020-09-03 17:54:16 +0000 | [diff] [blame] | 2196 | if (mAudioPolicyManager == nullptr) { | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 2197 | return binderStatusFromStatusT(NO_INIT); | 
| Jiabin Huang | 3b98d32 | 2020-09-03 17:54:16 +0000 | [diff] [blame] | 2198 | } | 
|  | 2199 | Mutex::Autolock _l(mLock); | 
| Ytai Ben-Tsvi | 0a4904a | 2021-01-06 12:57:05 -0800 | [diff] [blame] | 2200 | RETURN_IF_BINDER_ERROR(binderStatusFromStatusT( | 
|  | 2201 | mAudioPolicyManager->getDevicesForRoleAndCapturePreset(audioSource, role, devices))); | 
|  | 2202 | *_aidl_return = VALUE_OR_RETURN_BINDER_STATUS( | 
|  | 2203 | convertContainer<std::vector<media::AudioDevice>>(devices, | 
|  | 2204 | legacy2aidl_AudioDeviceTypeAddress)); | 
|  | 2205 | return Status::ok(); | 
| Jiabin Huang | 3b98d32 | 2020-09-03 17:54:16 +0000 | [diff] [blame] | 2206 | } | 
|  | 2207 |  | 
| Mikhail Naganov | 1b2a794 | 2017-12-08 10:18:09 -0800 | [diff] [blame] | 2208 | } // namespace android |