blob: 28938723467f3c20debb50a57b7fc951e6bc94f9 [file] [log] [blame]
Mathias Agopian65ab4712010-07-14 17:59:35 -07001/*
2 * Copyright (C) 2009 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#define LOG_TAG "AudioPolicyService"
18//#define LOG_NDEBUG 0
19
Glenn Kasten153b9fe2013-07-15 11:23:36 -070020#include "Configuration.h"
Mathias Agopian65ab4712010-07-14 17:59:35 -070021#undef __STRICT_ANSI__
22#define __STDINT_LIMITS
23#define __STDC_LIMIT_MACROS
24#include <stdint.h>
25
26#include <sys/time.h>
27#include <binder/IServiceManager.h>
28#include <utils/Log.h>
29#include <cutils/properties.h>
30#include <binder/IPCThreadState.h>
Svet Ganovf4ddfef2018-01-16 07:37:58 -080031#include <binder/ActivityManager.h>
32#include <binder/PermissionController.h>
33#include <binder/IResultReceiver.h>
Mathias Agopian65ab4712010-07-14 17:59:35 -070034#include <utils/String16.h>
35#include <utils/threads.h>
36#include "AudioPolicyService.h"
Mathias Agopian65ab4712010-07-14 17:59:35 -070037#include <hardware_legacy/power.h>
Eric Laurent7c7f10b2011-06-17 21:29:58 -070038#include <media/AudioEffect.h>
Chih-Hung Hsiehc84d9d22014-11-14 13:33:34 -080039#include <media/AudioParameter.h>
Andy Hungab7ef302018-05-15 19:35:29 -070040#include <mediautils/ServiceUtilities.h>
Mathias Agopian65ab4712010-07-14 17:59:35 -070041
Dima Zavin64760242011-05-11 14:15:23 -070042#include <system/audio.h>
Dima Zavin7394a4f2011-06-13 18:16:26 -070043#include <system/audio_policy.h>
Mikhail Naganov61a4fac2016-10-13 14:44:18 -070044
Mathias Agopian65ab4712010-07-14 17:59:35 -070045namespace android {
46
Glenn Kasten8dad0e32012-01-09 08:41:22 -080047static const char kDeadlockedString[] = "AudioPolicyService may be deadlocked\n";
48static const char kCmdDeadlockedString[] = "AudioPolicyService command thread may be deadlocked\n";
Mathias Agopian65ab4712010-07-14 17:59:35 -070049
50static const int kDumpLockRetries = 50;
Glenn Kasten22ecc912012-01-09 08:33:38 -080051static const int kDumpLockSleepUs = 20000;
Mathias Agopian65ab4712010-07-14 17:59:35 -070052
Eric Laurent0ede8922014-05-09 18:04:42 -070053static const nsecs_t kAudioCommandTimeoutNs = seconds(3); // 3 seconds
Christer Fletcher5fa8c4b2013-01-18 15:27:03 +010054
Svet Ganovf4ddfef2018-01-16 07:37:58 -080055static const String16 sManageAudioPolicyPermission("android.permission.MANAGE_AUDIO_POLICY");
Dima Zavinfce7a472011-04-19 22:30:36 -070056
Mathias Agopian65ab4712010-07-14 17:59:35 -070057// ----------------------------------------------------------------------------
58
59AudioPolicyService::AudioPolicyService()
Eric Laurentdce54a12014-03-10 12:19:46 -070060 : BnAudioPolicyService(), mpAudioPolicyDev(NULL), mpAudioPolicy(NULL),
Eric Laurentbb6c9a02014-09-25 14:11:47 -070061 mAudioPolicyManager(NULL), mAudioPolicyClient(NULL), mPhoneState(AUDIO_MODE_INVALID)
Mathias Agopian65ab4712010-07-14 17:59:35 -070062{
Eric Laurentf5ada6e2014-10-09 17:49:00 -070063}
64
65void AudioPolicyService::onFirstRef()
66{
Eric Laurent8b1e80b2014-10-07 09:08:47 -070067 {
68 Mutex::Autolock _l(mLock);
Eric Laurent93575202011-01-18 18:39:02 -080069
Eric Laurent8b1e80b2014-10-07 09:08:47 -070070 // start audio commands thread
71 mAudioCommandThread = new AudioCommandThread(String8("ApmAudio"), this);
72 // start output activity command thread
73 mOutputCommandThread = new AudioCommandThread(String8("ApmOutput"), this);
Eric Laurentdce54a12014-03-10 12:19:46 -070074
Eric Laurent8b1e80b2014-10-07 09:08:47 -070075 mAudioPolicyClient = new AudioPolicyClient(this);
76 mAudioPolicyManager = createAudioPolicyManager(mAudioPolicyClient);
Eric Laurent8b1e80b2014-10-07 09:08:47 -070077 }
bryant_liuba2b4392014-06-11 16:49:30 +080078 // load audio processing modules
Eric Laurent8b1e80b2014-10-07 09:08:47 -070079 sp<AudioPolicyEffects>audioPolicyEffects = new AudioPolicyEffects();
80 {
81 Mutex::Autolock _l(mLock);
82 mAudioPolicyEffects = audioPolicyEffects;
83 }
Svet Ganovf4ddfef2018-01-16 07:37:58 -080084
85 mUidPolicy = new UidPolicy(this);
86 mUidPolicy->registerSelf();
Mathias Agopian65ab4712010-07-14 17:59:35 -070087}
88
89AudioPolicyService::~AudioPolicyService()
90{
Mathias Agopian65ab4712010-07-14 17:59:35 -070091 mAudioCommandThread->exit();
Eric Laurent657ff612014-05-07 11:58:24 -070092 mOutputCommandThread->exit();
Eric Laurent7c7f10b2011-06-17 21:29:58 -070093
Eric Laurentf269b8e2014-06-09 20:01:29 -070094 destroyAudioPolicyManager(mAudioPolicyManager);
Eric Laurentdce54a12014-03-10 12:19:46 -070095 delete mAudioPolicyClient;
Eric Laurentb52c1522014-05-20 11:27:36 -070096
97 mNotificationClients.clear();
bryant_liuba2b4392014-06-11 16:49:30 +080098 mAudioPolicyEffects.clear();
Svet Ganovf4ddfef2018-01-16 07:37:58 -080099
100 mUidPolicy->unregisterSelf();
101 mUidPolicy.clear();
Eric Laurentb52c1522014-05-20 11:27:36 -0700102}
103
104// A notification client is always registered by AudioSystem when the client process
105// connects to AudioPolicyService.
106void AudioPolicyService::registerClient(const sp<IAudioPolicyServiceClient>& client)
107{
Eric Laurent12590252015-08-21 18:40:20 -0700108 if (client == 0) {
109 ALOGW("%s got NULL client", __FUNCTION__);
110 return;
111 }
Eric Laurent0ebd5f92014-11-19 19:04:52 -0800112 Mutex::Autolock _l(mNotificationClientsLock);
Eric Laurentb52c1522014-05-20 11:27:36 -0700113
114 uid_t uid = IPCThreadState::self()->getCallingUid();
luochaojiang908c7d72018-06-21 14:58:04 +0800115 pid_t pid = IPCThreadState::self()->getCallingPid();
116 int64_t token = ((int64_t)uid<<32) | pid;
117
118 if (mNotificationClients.indexOfKey(token) < 0) {
Eric Laurentb52c1522014-05-20 11:27:36 -0700119 sp<NotificationClient> notificationClient = new NotificationClient(this,
120 client,
luochaojiang908c7d72018-06-21 14:58:04 +0800121 uid,
122 pid);
123 ALOGV("registerClient() client %p, uid %d pid %d", client.get(), uid, pid);
Eric Laurentb52c1522014-05-20 11:27:36 -0700124
luochaojiang908c7d72018-06-21 14:58:04 +0800125 mNotificationClients.add(token, notificationClient);
Eric Laurentb52c1522014-05-20 11:27:36 -0700126
Marco Nelissenf8880202014-11-14 07:58:25 -0800127 sp<IBinder> binder = IInterface::asBinder(client);
Eric Laurentb52c1522014-05-20 11:27:36 -0700128 binder->linkToDeath(notificationClient);
129 }
130}
131
Eric Laurente8726fe2015-06-26 09:39:24 -0700132void AudioPolicyService::setAudioPortCallbacksEnabled(bool enabled)
133{
134 Mutex::Autolock _l(mNotificationClientsLock);
135
136 uid_t uid = IPCThreadState::self()->getCallingUid();
luochaojiang908c7d72018-06-21 14:58:04 +0800137 pid_t pid = IPCThreadState::self()->getCallingPid();
138 int64_t token = ((int64_t)uid<<32) | pid;
139
140 if (mNotificationClients.indexOfKey(token) < 0) {
Eric Laurente8726fe2015-06-26 09:39:24 -0700141 return;
142 }
luochaojiang908c7d72018-06-21 14:58:04 +0800143 mNotificationClients.valueFor(token)->setAudioPortCallbacksEnabled(enabled);
Eric Laurente8726fe2015-06-26 09:39:24 -0700144}
145
Eric Laurentb52c1522014-05-20 11:27:36 -0700146// removeNotificationClient() is called when the client process dies.
luochaojiang908c7d72018-06-21 14:58:04 +0800147void AudioPolicyService::removeNotificationClient(uid_t uid, pid_t pid)
Eric Laurentb52c1522014-05-20 11:27:36 -0700148{
Eric Laurent0ebd5f92014-11-19 19:04:52 -0800149 {
150 Mutex::Autolock _l(mNotificationClientsLock);
luochaojiang908c7d72018-06-21 14:58:04 +0800151 int64_t token = ((int64_t)uid<<32) | pid;
152 mNotificationClients.removeItem(token);
Eric Laurent0ebd5f92014-11-19 19:04:52 -0800153 }
Eric Laurent0ebd5f92014-11-19 19:04:52 -0800154 {
155 Mutex::Autolock _l(mLock);
luochaojiang908c7d72018-06-21 14:58:04 +0800156 bool hasSameUid = false;
157 for (size_t i = 0; i < mNotificationClients.size(); i++) {
158 if (mNotificationClients.valueAt(i)->uid() == uid) {
159 hasSameUid = true;
160 break;
161 }
162 }
163 if (mAudioPolicyManager && !hasSameUid) {
Eric Laurent10b71232018-04-13 18:14:44 -0700164 // called from binder death notification: no need to clear caller identity
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700165 mAudioPolicyManager->releaseResourcesForUid(uid);
Eric Laurentb52c1522014-05-20 11:27:36 -0700166 }
Eric Laurent0ebd5f92014-11-19 19:04:52 -0800167 }
Eric Laurentb52c1522014-05-20 11:27:36 -0700168}
169
170void AudioPolicyService::onAudioPortListUpdate()
171{
172 mOutputCommandThread->updateAudioPortListCommand();
173}
174
175void AudioPolicyService::doOnAudioPortListUpdate()
176{
Eric Laurent0ebd5f92014-11-19 19:04:52 -0800177 Mutex::Autolock _l(mNotificationClientsLock);
Eric Laurentb52c1522014-05-20 11:27:36 -0700178 for (size_t i = 0; i < mNotificationClients.size(); i++) {
179 mNotificationClients.valueAt(i)->onAudioPortListUpdate();
180 }
181}
182
183void AudioPolicyService::onAudioPatchListUpdate()
184{
185 mOutputCommandThread->updateAudioPatchListCommand();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700186}
187
Eric Laurentb52c1522014-05-20 11:27:36 -0700188void AudioPolicyService::doOnAudioPatchListUpdate()
189{
Eric Laurent0ebd5f92014-11-19 19:04:52 -0800190 Mutex::Autolock _l(mNotificationClientsLock);
Eric Laurentb52c1522014-05-20 11:27:36 -0700191 for (size_t i = 0; i < mNotificationClients.size(); i++) {
192 mNotificationClients.valueAt(i)->onAudioPatchListUpdate();
193 }
194}
195
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -0700196void AudioPolicyService::onDynamicPolicyMixStateUpdate(const String8& regId, int32_t state)
Jean-Michel Trivide801052015-04-14 19:10:14 -0700197{
198 ALOGV("AudioPolicyService::onDynamicPolicyMixStateUpdate(%s, %d)",
199 regId.string(), state);
200 mOutputCommandThread->dynamicPolicyMixStateUpdateCommand(regId, state);
201}
202
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -0700203void AudioPolicyService::doOnDynamicPolicyMixStateUpdate(const String8& regId, int32_t state)
Jean-Michel Trivide801052015-04-14 19:10:14 -0700204{
205 Mutex::Autolock _l(mNotificationClientsLock);
206 for (size_t i = 0; i < mNotificationClients.size(); i++) {
207 mNotificationClients.valueAt(i)->onDynamicPolicyMixStateUpdate(regId, state);
208 }
209}
210
Jean-Michel Triviac4e4292016-12-22 11:39:31 -0800211void AudioPolicyService::onRecordingConfigurationUpdate(int event,
212 const record_client_info_t *clientInfo, const audio_config_base_t *clientConfig,
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -0800213 const audio_config_base_t *deviceConfig, audio_patch_handle_t patchHandle)
Jean-Michel Trivi2f4fe9f2015-12-04 16:20:59 -0800214{
Jean-Michel Triviac4e4292016-12-22 11:39:31 -0800215 mOutputCommandThread->recordingConfigurationUpdateCommand(event, clientInfo,
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -0800216 clientConfig, deviceConfig, patchHandle);
Jean-Michel Trivi2f4fe9f2015-12-04 16:20:59 -0800217}
218
Jean-Michel Triviac4e4292016-12-22 11:39:31 -0800219void AudioPolicyService::doOnRecordingConfigurationUpdate(int event,
220 const record_client_info_t *clientInfo, const audio_config_base_t *clientConfig,
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -0800221 const audio_config_base_t *deviceConfig, audio_patch_handle_t patchHandle)
Jean-Michel Trivi2f4fe9f2015-12-04 16:20:59 -0800222{
223 Mutex::Autolock _l(mNotificationClientsLock);
224 for (size_t i = 0; i < mNotificationClients.size(); i++) {
Jean-Michel Triviac4e4292016-12-22 11:39:31 -0800225 mNotificationClients.valueAt(i)->onRecordingConfigurationUpdate(event, clientInfo,
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -0800226 clientConfig, deviceConfig, patchHandle);
Jean-Michel Trivi2f4fe9f2015-12-04 16:20:59 -0800227 }
228}
229
230status_t AudioPolicyService::clientCreateAudioPatch(const struct audio_patch *patch,
231 audio_patch_handle_t *handle,
232 int delayMs)
233{
234 return mAudioCommandThread->createAudioPatchCommand(patch, handle, delayMs);
235}
236
237status_t AudioPolicyService::clientReleaseAudioPatch(audio_patch_handle_t handle,
238 int delayMs)
239{
240 return mAudioCommandThread->releaseAudioPatchCommand(handle, delayMs);
241}
242
Eric Laurente1715a42014-05-20 11:30:42 -0700243status_t AudioPolicyService::clientSetAudioPortConfig(const struct audio_port_config *config,
244 int delayMs)
245{
246 return mAudioCommandThread->setAudioPortConfigCommand(config, delayMs);
247}
248
Eric Laurentb52c1522014-05-20 11:27:36 -0700249AudioPolicyService::NotificationClient::NotificationClient(const sp<AudioPolicyService>& service,
250 const sp<IAudioPolicyServiceClient>& client,
luochaojiang908c7d72018-06-21 14:58:04 +0800251 uid_t uid,
252 pid_t pid)
253 : mService(service), mUid(uid), mPid(pid), mAudioPolicyServiceClient(client),
Eric Laurente8726fe2015-06-26 09:39:24 -0700254 mAudioPortCallbacksEnabled(false)
Eric Laurentb52c1522014-05-20 11:27:36 -0700255{
256}
257
258AudioPolicyService::NotificationClient::~NotificationClient()
259{
260}
261
262void AudioPolicyService::NotificationClient::binderDied(const wp<IBinder>& who __unused)
263{
264 sp<NotificationClient> keep(this);
265 sp<AudioPolicyService> service = mService.promote();
266 if (service != 0) {
luochaojiang908c7d72018-06-21 14:58:04 +0800267 service->removeNotificationClient(mUid, mPid);
Eric Laurentb52c1522014-05-20 11:27:36 -0700268 }
269}
270
271void AudioPolicyService::NotificationClient::onAudioPortListUpdate()
272{
Eric Laurente8726fe2015-06-26 09:39:24 -0700273 if (mAudioPolicyServiceClient != 0 && mAudioPortCallbacksEnabled) {
Eric Laurentb52c1522014-05-20 11:27:36 -0700274 mAudioPolicyServiceClient->onAudioPortListUpdate();
275 }
276}
277
278void AudioPolicyService::NotificationClient::onAudioPatchListUpdate()
279{
Eric Laurente8726fe2015-06-26 09:39:24 -0700280 if (mAudioPolicyServiceClient != 0 && mAudioPortCallbacksEnabled) {
Eric Laurentb52c1522014-05-20 11:27:36 -0700281 mAudioPolicyServiceClient->onAudioPatchListUpdate();
282 }
283}
Eric Laurent57dae992011-07-24 13:36:09 -0700284
Jean-Michel Trivide801052015-04-14 19:10:14 -0700285void AudioPolicyService::NotificationClient::onDynamicPolicyMixStateUpdate(
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -0700286 const String8& regId, int32_t state)
Jean-Michel Trivide801052015-04-14 19:10:14 -0700287{
Andy Hung4ef19fa2018-05-15 19:35:29 -0700288 if (mAudioPolicyServiceClient != 0 && isServiceUid(mUid)) {
Jean-Michel Trivi2f4fe9f2015-12-04 16:20:59 -0800289 mAudioPolicyServiceClient->onDynamicPolicyMixStateUpdate(regId, state);
290 }
291}
292
293void AudioPolicyService::NotificationClient::onRecordingConfigurationUpdate(
Jean-Michel Triviac4e4292016-12-22 11:39:31 -0800294 int event, const record_client_info_t *clientInfo,
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -0800295 const audio_config_base_t *clientConfig, const audio_config_base_t *deviceConfig,
296 audio_patch_handle_t patchHandle)
Jean-Michel Trivi2f4fe9f2015-12-04 16:20:59 -0800297{
Andy Hung4ef19fa2018-05-15 19:35:29 -0700298 if (mAudioPolicyServiceClient != 0 && isServiceUid(mUid)) {
Jean-Michel Triviac4e4292016-12-22 11:39:31 -0800299 mAudioPolicyServiceClient->onRecordingConfigurationUpdate(event, clientInfo,
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -0800300 clientConfig, deviceConfig, patchHandle);
Jean-Michel Trivide801052015-04-14 19:10:14 -0700301 }
302}
303
Eric Laurente8726fe2015-06-26 09:39:24 -0700304void AudioPolicyService::NotificationClient::setAudioPortCallbacksEnabled(bool enabled)
305{
306 mAudioPortCallbacksEnabled = enabled;
307}
308
309
Mathias Agopian65ab4712010-07-14 17:59:35 -0700310void AudioPolicyService::binderDied(const wp<IBinder>& who) {
Glenn Kasten411e4472012-11-02 10:00:06 -0700311 ALOGW("binderDied() %p, calling pid %d", who.unsafe_get(),
Eric Laurentde070132010-07-13 04:45:46 -0700312 IPCThreadState::self()->getCallingPid());
Mathias Agopian65ab4712010-07-14 17:59:35 -0700313}
314
315static bool tryLock(Mutex& mutex)
316{
317 bool locked = false;
318 for (int i = 0; i < kDumpLockRetries; ++i) {
319 if (mutex.tryLock() == NO_ERROR) {
320 locked = true;
321 break;
322 }
Glenn Kasten22ecc912012-01-09 08:33:38 -0800323 usleep(kDumpLockSleepUs);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700324 }
325 return locked;
326}
327
328status_t AudioPolicyService::dumpInternals(int fd)
329{
330 const size_t SIZE = 256;
331 char buffer[SIZE];
332 String8 result;
333
Eric Laurentdce54a12014-03-10 12:19:46 -0700334 snprintf(buffer, SIZE, "AudioPolicyManager: %p\n", mAudioPolicyManager);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700335 result.append(buffer);
336 snprintf(buffer, SIZE, "Command Thread: %p\n", mAudioCommandThread.get());
337 result.append(buffer);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700338
339 write(fd, result.string(), result.size());
340 return NO_ERROR;
341}
342
Eric Laurente8c8b432018-10-17 10:08:02 -0700343void AudioPolicyService::updateUidStates()
Svet Ganovf4ddfef2018-01-16 07:37:58 -0800344{
Eric Laurente8c8b432018-10-17 10:08:02 -0700345 Mutex::Autolock _l(mLock);
346 updateUidStates_l();
347}
348
349void AudioPolicyService::updateUidStates_l()
350{
Eric Laurent4c1ef4b2018-11-13 16:46:26 -0800351// Go over all active clients and allow capture (does not force silence) in the
352// following cases:
353// - The client is the assistant AND
354// an accessibility service is on TOP AND the source is VOICE_RECOGNITION or HOTWORD
355// OR
356// is on TOP AND uses VOICE_RECOGNITION
357// OR uses HOTWORD AND there is no privacy sensitive active capture
358// - The client is an accessibility service AND
359// is on TOP AND the source is VOICE_RECOGNITION or HOTWORD
360// - Any other client AND
361// The assistant is not on TOP AND
362// is on TOP OR latest started AND
363// there is no privacy sensitive active capture
364//TODO: mamanage pre processing effects according to use case priority
365
366 sp<AudioRecordClient> topActive;
367 sp<AudioRecordClient> latestActive;
368 nsecs_t latestStartNs = 0;
369 sp<AudioRecordClient> latestSensitiveActive;
370 nsecs_t latestSensitiveStartNs = 0;
371 bool isA11yOnTop = mUidPolicy->isA11yOnTop();
372 bool isAssistantOnTop = false;
373 bool isSensitiveActive = false;
374
Eric Laurente8c8b432018-10-17 10:08:02 -0700375 for (size_t i =0; i < mAudioRecordClients.size(); i++) {
376 sp<AudioRecordClient> current = mAudioRecordClients[i];
377 if (!current->active) continue;
Eric Laurent4c1ef4b2018-11-13 16:46:26 -0800378 if (isPrivacySensitive(current->attributes.source)) {
379 if (current->startTimeNs > latestSensitiveStartNs) {
380 latestSensitiveActive = current;
381 latestSensitiveStartNs = current->startTimeNs;
382 }
383 isSensitiveActive = true;
384 }
385 if (mUidPolicy->getUidState(current->uid) == ActivityManager::PROCESS_STATE_TOP) {
386 topActive = current;
387 latestActive = nullptr;
388 if (mUidPolicy->isAssistantUid(current->uid)) {
389 isAssistantOnTop = true;
390 }
391 }
392 if (current->startTimeNs > latestStartNs) {
393 latestActive = current;
394 latestStartNs = current->startTimeNs;
395 }
396 }
397
398 if (topActive == nullptr && latestActive == nullptr) {
399 return;
400 }
401
402 for (size_t i =0; i < mAudioRecordClients.size(); i++) {
403 sp<AudioRecordClient> current = mAudioRecordClients[i];
404 if (!current->active) continue;
405
406 audio_source_t source = current->attributes.source;
407 bool isOnTop = mUidPolicy->getUidState(current->uid) == ActivityManager::PROCESS_STATE_TOP;
408 bool isLatest = current == latestActive;
409 bool isLatestSensitive = current == latestSensitiveActive;
410 bool forceIdle = true;
411 if (mUidPolicy->isAssistantUid(current->uid)) {
412 if (isA11yOnTop) {
413 if (source == AUDIO_SOURCE_HOTWORD || source == AUDIO_SOURCE_VOICE_RECOGNITION) {
414 forceIdle = false;
415 }
416 } else {
417 if (((isOnTop && source == AUDIO_SOURCE_VOICE_RECOGNITION) ||
418 source == AUDIO_SOURCE_HOTWORD) && !isSensitiveActive) {
419 forceIdle = false;
420 }
421 }
422 } else if (mUidPolicy->isA11yUid(current->uid)) {
423 if (isOnTop &&
424 (source == AUDIO_SOURCE_VOICE_RECOGNITION || source == AUDIO_SOURCE_HOTWORD)) {
425 forceIdle = false;
426 }
427 } else {
428 if (!isAssistantOnTop && (isOnTop || (topActive == nullptr && isLatest)) &&
429 (!isSensitiveActive || isLatestSensitive)) {
430 forceIdle = false;
431 }
432 }
433 setAppState_l(current->uid,
434 forceIdle ? APP_STATE_IDLE :
435 apmStatFromAmState(mUidPolicy->getUidState(current->uid)));
Eric Laurente8c8b432018-10-17 10:08:02 -0700436 }
437}
438
439/* static */
440app_state_t AudioPolicyService::apmStatFromAmState(int amState) {
441 switch (amState) {
442 case ActivityManager::PROCESS_STATE_UNKNOWN:
443 return APP_STATE_IDLE;
444 case ActivityManager::PROCESS_STATE_TOP:
445 return APP_STATE_TOP;
446 default:
447 break;
448 }
449 return APP_STATE_FOREGROUND;
450}
451
Eric Laurent4c1ef4b2018-11-13 16:46:26 -0800452/* static */
453bool AudioPolicyService::isPrivacySensitive(audio_source_t source)
454{
455 switch (source) {
456 case AUDIO_SOURCE_VOICE_UPLINK:
457 case AUDIO_SOURCE_VOICE_DOWNLINK:
458 case AUDIO_SOURCE_VOICE_CALL:
459 case AUDIO_SOURCE_CAMCORDER:
460 case AUDIO_SOURCE_VOICE_COMMUNICATION:
461 return true;
462 default:
463 break;
464 }
465 return false;
466}
467
Eric Laurente8c8b432018-10-17 10:08:02 -0700468void AudioPolicyService::setAppState_l(uid_t uid, app_state_t state)
469{
470 AutoCallerClear acc;
471
472 if (mAudioPolicyManager) {
473 mAudioPolicyManager->setAppState(uid, state);
Mikhail Naganoveae73eb2018-04-03 16:57:36 -0700474 }
475 sp<IAudioFlinger> af = AudioSystem::get_audio_flinger();
476 if (af) {
Eric Laurentf32108e2018-10-04 17:22:04 -0700477 bool silenced = state == APP_STATE_IDLE;
Mikhail Naganoveae73eb2018-04-03 16:57:36 -0700478 af->setRecordSilenced(uid, silenced);
479 }
Svet Ganovf4ddfef2018-01-16 07:37:58 -0800480}
481
Glenn Kasten0f11b512014-01-31 16:18:54 -0800482status_t AudioPolicyService::dump(int fd, const Vector<String16>& args __unused)
Mathias Agopian65ab4712010-07-14 17:59:35 -0700483{
Glenn Kasten44deb052012-02-05 18:09:08 -0800484 if (!dumpAllowed()) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700485 dumpPermissionDenial(fd);
486 } else {
487 bool locked = tryLock(mLock);
488 if (!locked) {
489 String8 result(kDeadlockedString);
490 write(fd, result.string(), result.size());
491 }
492
493 dumpInternals(fd);
Glenn Kasten9d1f02d2012-02-08 17:47:58 -0800494 if (mAudioCommandThread != 0) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700495 mAudioCommandThread->dump(fd);
496 }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700497
Eric Laurentdce54a12014-03-10 12:19:46 -0700498 if (mAudioPolicyManager) {
499 mAudioPolicyManager->dump(fd);
500 }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700501
502 if (locked) mLock.unlock();
503 }
504 return NO_ERROR;
505}
506
507status_t AudioPolicyService::dumpPermissionDenial(int fd)
508{
509 const size_t SIZE = 256;
510 char buffer[SIZE];
511 String8 result;
512 snprintf(buffer, SIZE, "Permission Denial: "
513 "can't dump AudioPolicyService from pid=%d, uid=%d\n",
514 IPCThreadState::self()->getCallingPid(),
515 IPCThreadState::self()->getCallingUid());
516 result.append(buffer);
517 write(fd, result.string(), result.size());
518 return NO_ERROR;
519}
520
521status_t AudioPolicyService::onTransact(
Svet Ganovf4ddfef2018-01-16 07:37:58 -0800522 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) {
523 switch (code) {
524 case SHELL_COMMAND_TRANSACTION: {
525 int in = data.readFileDescriptor();
526 int out = data.readFileDescriptor();
527 int err = data.readFileDescriptor();
528 int argc = data.readInt32();
529 Vector<String16> args;
530 for (int i = 0; i < argc && data.dataAvail() > 0; i++) {
531 args.add(data.readString16());
532 }
533 sp<IBinder> unusedCallback;
534 sp<IResultReceiver> resultReceiver;
535 status_t status;
536 if ((status = data.readNullableStrongBinder(&unusedCallback)) != NO_ERROR) {
537 return status;
538 }
539 if ((status = data.readNullableStrongBinder(&resultReceiver)) != NO_ERROR) {
540 return status;
541 }
542 status = shellCommand(in, out, err, args);
543 if (resultReceiver != nullptr) {
544 resultReceiver->send(status);
545 }
546 return NO_ERROR;
547 }
548 }
549
Mathias Agopian65ab4712010-07-14 17:59:35 -0700550 return BnAudioPolicyService::onTransact(code, data, reply, flags);
551}
552
Svet Ganovf4ddfef2018-01-16 07:37:58 -0800553// ------------------- Shell command implementation -------------------
554
555// NOTE: This is a remote API - make sure all args are validated
556status_t AudioPolicyService::shellCommand(int in, int out, int err, Vector<String16>& args) {
557 if (!checkCallingPermission(sManageAudioPolicyPermission, nullptr, nullptr)) {
558 return PERMISSION_DENIED;
559 }
560 if (in == BAD_TYPE || out == BAD_TYPE || err == BAD_TYPE) {
561 return BAD_VALUE;
562 }
563 if (args.size() == 3 && args[0] == String16("set-uid-state")) {
564 return handleSetUidState(args, err);
565 } else if (args.size() == 2 && args[0] == String16("reset-uid-state")) {
566 return handleResetUidState(args, err);
567 } else if (args.size() == 2 && args[0] == String16("get-uid-state")) {
568 return handleGetUidState(args, out, err);
569 } else if (args.size() == 1 && args[0] == String16("help")) {
570 printHelp(out);
571 return NO_ERROR;
572 }
573 printHelp(err);
574 return BAD_VALUE;
575}
576
577status_t AudioPolicyService::handleSetUidState(Vector<String16>& args, int err) {
578 PermissionController pc;
579 int uid = pc.getPackageUid(args[1], 0);
580 if (uid <= 0) {
581 ALOGE("Unknown package: '%s'", String8(args[1]).string());
582 dprintf(err, "Unknown package: '%s'\n", String8(args[1]).string());
583 return BAD_VALUE;
584 }
585 bool active = false;
586 if (args[2] == String16("active")) {
587 active = true;
588 } else if ((args[2] != String16("idle"))) {
589 ALOGE("Expected active or idle but got: '%s'", String8(args[2]).string());
590 return BAD_VALUE;
591 }
592 mUidPolicy->addOverrideUid(uid, active);
593 return NO_ERROR;
594}
595
596status_t AudioPolicyService::handleResetUidState(Vector<String16>& args, int err) {
597 PermissionController pc;
598 int uid = pc.getPackageUid(args[1], 0);
599 if (uid < 0) {
600 ALOGE("Unknown package: '%s'", String8(args[1]).string());
601 dprintf(err, "Unknown package: '%s'\n", String8(args[1]).string());
602 return BAD_VALUE;
603 }
604 mUidPolicy->removeOverrideUid(uid);
605 return NO_ERROR;
606}
607
608status_t AudioPolicyService::handleGetUidState(Vector<String16>& args, int out, int err) {
609 PermissionController pc;
610 int uid = pc.getPackageUid(args[1], 0);
611 if (uid < 0) {
612 ALOGE("Unknown package: '%s'", String8(args[1]).string());
613 dprintf(err, "Unknown package: '%s'\n", String8(args[1]).string());
614 return BAD_VALUE;
615 }
616 if (mUidPolicy->isUidActive(uid)) {
617 return dprintf(out, "active\n");
618 } else {
619 return dprintf(out, "idle\n");
620 }
621}
622
623status_t AudioPolicyService::printHelp(int out) {
624 return dprintf(out, "Audio policy service commands:\n"
625 " get-uid-state <PACKAGE> gets the uid state\n"
626 " set-uid-state <PACKAGE> <active|idle> overrides the uid state\n"
627 " reset-uid-state <PACKAGE> clears the uid state override\n"
628 " help print this message\n");
629}
630
631// ----------- AudioPolicyService::UidPolicy implementation ----------
632
633void AudioPolicyService::UidPolicy::registerSelf() {
634 ActivityManager am;
635 am.registerUidObserver(this, ActivityManager::UID_OBSERVER_GONE
636 | ActivityManager::UID_OBSERVER_IDLE
Eric Laurente8c8b432018-10-17 10:08:02 -0700637 | ActivityManager::UID_OBSERVER_ACTIVE
638 | ActivityManager::UID_OBSERVER_PROCSTATE,
Svet Ganovf4ddfef2018-01-16 07:37:58 -0800639 ActivityManager::PROCESS_STATE_UNKNOWN,
640 String16("audioserver"));
Mikhail Naganoveae73eb2018-04-03 16:57:36 -0700641 status_t res = am.linkToDeath(this);
642 if (!res) {
643 Mutex::Autolock _l(mLock);
644 mObserverRegistered = true;
645 } else {
646 ALOGE("UidPolicy::registerSelf linkToDeath failed: %d", res);
Eric Laurent4c1ef4b2018-11-13 16:46:26 -0800647
Mikhail Naganoveae73eb2018-04-03 16:57:36 -0700648 am.unregisterUidObserver(this);
649 }
Svet Ganovf4ddfef2018-01-16 07:37:58 -0800650}
651
652void AudioPolicyService::UidPolicy::unregisterSelf() {
653 ActivityManager am;
Mikhail Naganoveae73eb2018-04-03 16:57:36 -0700654 am.unlinkToDeath(this);
Svet Ganovf4ddfef2018-01-16 07:37:58 -0800655 am.unregisterUidObserver(this);
Mikhail Naganoveae73eb2018-04-03 16:57:36 -0700656 Mutex::Autolock _l(mLock);
657 mObserverRegistered = false;
Svet Ganovf4ddfef2018-01-16 07:37:58 -0800658}
659
Mikhail Naganoveae73eb2018-04-03 16:57:36 -0700660void AudioPolicyService::UidPolicy::binderDied(__unused const wp<IBinder> &who) {
661 Mutex::Autolock _l(mLock);
662 mCachedUids.clear();
663 mObserverRegistered = false;
Svet Ganovf4ddfef2018-01-16 07:37:58 -0800664}
665
Eric Laurente8c8b432018-10-17 10:08:02 -0700666void AudioPolicyService::UidPolicy::checkRegistered() {
Mikhail Naganoveae73eb2018-04-03 16:57:36 -0700667 bool needToReregister = false;
668 {
669 Mutex::Autolock _l(mLock);
670 needToReregister = !mObserverRegistered;
Svet Ganovf4ddfef2018-01-16 07:37:58 -0800671 }
Mikhail Naganoveae73eb2018-04-03 16:57:36 -0700672 if (needToReregister) {
673 // Looks like ActivityManager has died previously, attempt to re-register.
674 registerSelf();
675 }
Eric Laurente8c8b432018-10-17 10:08:02 -0700676}
677
678bool AudioPolicyService::UidPolicy::isUidActive(uid_t uid) {
679 if (isServiceUid(uid)) return true;
680 checkRegistered();
Mikhail Naganoveae73eb2018-04-03 16:57:36 -0700681 {
682 Mutex::Autolock _l(mLock);
683 auto overrideIter = mOverrideUids.find(uid);
684 if (overrideIter != mOverrideUids.end()) {
Eric Laurente8c8b432018-10-17 10:08:02 -0700685 return overrideIter->second.first;
Mikhail Naganoveae73eb2018-04-03 16:57:36 -0700686 }
687 // In an absense of the ActivityManager, assume everything to be active.
688 if (!mObserverRegistered) return true;
689 auto cacheIter = mCachedUids.find(uid);
Mikhail Naganoveba668a2018-04-05 08:13:15 -0700690 if (cacheIter != mCachedUids.end()) {
Eric Laurente8c8b432018-10-17 10:08:02 -0700691 return cacheIter->second.first;
Mikhail Naganoveae73eb2018-04-03 16:57:36 -0700692 }
693 }
694 ActivityManager am;
695 bool active = am.isUidActive(uid, String16("audioserver"));
696 {
697 Mutex::Autolock _l(mLock);
Eric Laurente8c8b432018-10-17 10:08:02 -0700698 mCachedUids.insert(std::pair<uid_t,
699 std::pair<bool, int>>(uid, std::pair<bool, int>(active,
700 ActivityManager::PROCESS_STATE_UNKNOWN)));
Mikhail Naganoveae73eb2018-04-03 16:57:36 -0700701 }
702 return active;
Svet Ganovf4ddfef2018-01-16 07:37:58 -0800703}
704
Eric Laurente8c8b432018-10-17 10:08:02 -0700705int AudioPolicyService::UidPolicy::getUidState(uid_t uid) {
706 if (isServiceUid(uid)) {
707 return ActivityManager::PROCESS_STATE_TOP;
708 }
709 checkRegistered();
710 {
711 Mutex::Autolock _l(mLock);
712 auto overrideIter = mOverrideUids.find(uid);
713 if (overrideIter != mOverrideUids.end()) {
714 if (overrideIter->second.first) {
715 if (overrideIter->second.second != ActivityManager::PROCESS_STATE_UNKNOWN) {
716 return overrideIter->second.second;
717 } else {
718 auto cacheIter = mCachedUids.find(uid);
719 if (cacheIter != mCachedUids.end()) {
720 return cacheIter->second.second;
721 }
722 }
723 }
724 return ActivityManager::PROCESS_STATE_UNKNOWN;
725 }
726 // In an absense of the ActivityManager, assume everything to be active.
727 if (!mObserverRegistered) {
728 return ActivityManager::PROCESS_STATE_TOP;
729 }
730 auto cacheIter = mCachedUids.find(uid);
731 if (cacheIter != mCachedUids.end()) {
732 if (cacheIter->second.first) {
733 return cacheIter->second.second;
734 } else {
735 return ActivityManager::PROCESS_STATE_UNKNOWN;
736 }
737 }
738 }
739 ActivityManager am;
740 bool active = am.isUidActive(uid, String16("audioserver"));
741 int state = ActivityManager::PROCESS_STATE_UNKNOWN;
742 if (active) {
743 state = am.getUidProcessState(uid, String16("audioserver"));
744 }
745 {
746 Mutex::Autolock _l(mLock);
747 mCachedUids.insert(std::pair<uid_t,
748 std::pair<bool, int>>(uid, std::pair<bool, int>(active, state)));
749 }
Eric Laurent4c1ef4b2018-11-13 16:46:26 -0800750
Eric Laurente8c8b432018-10-17 10:08:02 -0700751 return state;
752}
753
Mikhail Naganoveae73eb2018-04-03 16:57:36 -0700754void AudioPolicyService::UidPolicy::onUidActive(uid_t uid) {
Eric Laurente8c8b432018-10-17 10:08:02 -0700755 updateUid(&mCachedUids, uid, true, ActivityManager::PROCESS_STATE_UNKNOWN, true);
Mikhail Naganoveae73eb2018-04-03 16:57:36 -0700756}
757
758void AudioPolicyService::UidPolicy::onUidGone(uid_t uid, __unused bool disabled) {
Eric Laurente8c8b432018-10-17 10:08:02 -0700759 updateUid(&mCachedUids, uid, false, ActivityManager::PROCESS_STATE_UNKNOWN, false);
Mikhail Naganoveae73eb2018-04-03 16:57:36 -0700760}
761
762void AudioPolicyService::UidPolicy::onUidIdle(uid_t uid, __unused bool disabled) {
Eric Laurente8c8b432018-10-17 10:08:02 -0700763 updateUid(&mCachedUids, uid, false, ActivityManager::PROCESS_STATE_UNKNOWN, true);
Mikhail Naganoveae73eb2018-04-03 16:57:36 -0700764}
765
Eric Laurente8c8b432018-10-17 10:08:02 -0700766void AudioPolicyService::UidPolicy::onUidStateChanged(uid_t uid,
767 int32_t procState,
768 int64_t procStateSeq __unused) {
769 if (procState != ActivityManager::PROCESS_STATE_UNKNOWN) {
770 updateUid(&mCachedUids, uid, true, procState, true);
Mikhail Naganoveae73eb2018-04-03 16:57:36 -0700771 }
772}
773
774void AudioPolicyService::UidPolicy::updateOverrideUid(uid_t uid, bool active, bool insert) {
Eric Laurente8c8b432018-10-17 10:08:02 -0700775 updateUid(&mOverrideUids, uid, active, ActivityManager::PROCESS_STATE_UNKNOWN, insert);
776}
777
778void AudioPolicyService::UidPolicy::notifyService() {
779 sp<AudioPolicyService> service = mService.promote();
780 if (service != nullptr) {
781 service->updateUidStates();
Mikhail Naganoveae73eb2018-04-03 16:57:36 -0700782 }
783}
784
Eric Laurente8c8b432018-10-17 10:08:02 -0700785void AudioPolicyService::UidPolicy::updateUid(std::unordered_map<uid_t,
786 std::pair<bool, int>> *uids,
787 uid_t uid,
788 bool active,
789 int state,
790 bool insert) {
791 if (isServiceUid(uid)) {
792 return;
793 }
794 bool wasActive = isUidActive(uid);
795 int previousState = getUidState(uid);
Mikhail Naganoveae73eb2018-04-03 16:57:36 -0700796 {
797 Mutex::Autolock _l(mLock);
Eric Laurente8c8b432018-10-17 10:08:02 -0700798 updateUidLocked(uids, uid, active, state, insert);
Mikhail Naganoveae73eb2018-04-03 16:57:36 -0700799 }
Eric Laurente8c8b432018-10-17 10:08:02 -0700800 if (wasActive != isUidActive(uid) || state != previousState) {
801 notifyService();
802 }
Mikhail Naganoveae73eb2018-04-03 16:57:36 -0700803}
804
Eric Laurente8c8b432018-10-17 10:08:02 -0700805void AudioPolicyService::UidPolicy::updateUidLocked(std::unordered_map<uid_t,
806 std::pair<bool, int>> *uids,
807 uid_t uid,
808 bool active,
809 int state,
810 bool insert) {
Mikhail Naganoveae73eb2018-04-03 16:57:36 -0700811 auto it = uids->find(uid);
812 if (it != uids->end()) {
Mikhail Naganoveae73eb2018-04-03 16:57:36 -0700813 if (insert) {
Eric Laurente8c8b432018-10-17 10:08:02 -0700814 if (state == ActivityManager::PROCESS_STATE_UNKNOWN) {
815 it->second.first = active;
816 }
817 if (it->second.first) {
818 it->second.second = state;
819 } else {
820 it->second.second = ActivityManager::PROCESS_STATE_UNKNOWN;
821 }
Mikhail Naganoveae73eb2018-04-03 16:57:36 -0700822 } else {
823 uids->erase(it);
824 }
Eric Laurente8c8b432018-10-17 10:08:02 -0700825 } else if (insert && (state == ActivityManager::PROCESS_STATE_UNKNOWN)) {
826 uids->insert(std::pair<uid_t, std::pair<bool, int>>(uid,
827 std::pair<bool, int>(active, state)));
Mikhail Naganoveae73eb2018-04-03 16:57:36 -0700828 }
Svet Ganovf4ddfef2018-01-16 07:37:58 -0800829}
Mathias Agopian65ab4712010-07-14 17:59:35 -0700830
Eric Laurent4c1ef4b2018-11-13 16:46:26 -0800831bool AudioPolicyService::UidPolicy::isA11yOnTop() {
832 for (const auto &uid : mCachedUids) {
833 std::vector<uid_t>::iterator it = find(mA11yUids.begin(), mA11yUids.end(), uid.first);
834 if (it == mA11yUids.end()) {
835 continue;
836 }
837 if (uid.second.second == ActivityManager::PROCESS_STATE_TOP ||
838 uid.second.second == ActivityManager::PROCESS_STATE_FOREGROUND_SERVICE ||
839 uid.second.second == ActivityManager::PROCESS_STATE_BOUND_FOREGROUND_SERVICE) {
840 return true;
841 }
842 }
843 return false;
844}
845
Eric Laurentb78763e2018-10-17 10:08:02 -0700846bool AudioPolicyService::UidPolicy::isA11yUid(uid_t uid)
847{
848 std::vector<uid_t>::iterator it = find(mA11yUids.begin(), mA11yUids.end(), uid);
849 return it != mA11yUids.end();
850}
851
Mathias Agopian65ab4712010-07-14 17:59:35 -0700852// ----------- AudioPolicyService::AudioCommandThread implementation ----------
853
Eric Laurentbfb1b832013-01-07 09:53:42 -0800854AudioPolicyService::AudioCommandThread::AudioCommandThread(String8 name,
855 const wp<AudioPolicyService>& service)
856 : Thread(false), mName(name), mService(service)
Mathias Agopian65ab4712010-07-14 17:59:35 -0700857{
Mathias Agopian65ab4712010-07-14 17:59:35 -0700858}
859
860
861AudioPolicyService::AudioCommandThread::~AudioCommandThread()
862{
Eric Laurentbfb1b832013-01-07 09:53:42 -0800863 if (!mAudioCommands.isEmpty()) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700864 release_wake_lock(mName.string());
865 }
866 mAudioCommands.clear();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700867}
868
869void AudioPolicyService::AudioCommandThread::onFirstRef()
870{
Eric Laurentbfb1b832013-01-07 09:53:42 -0800871 run(mName.string(), ANDROID_PRIORITY_AUDIO);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700872}
873
874bool AudioPolicyService::AudioCommandThread::threadLoop()
875{
Eric Laurentd7eda8d2016-02-02 17:18:39 -0800876 nsecs_t waitTime = -1;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700877
878 mLock.lock();
879 while (!exitPending())
880 {
Eric Laurent59a89232014-06-08 14:14:17 -0700881 sp<AudioPolicyService> svc;
882 while (!mAudioCommands.isEmpty() && !exitPending()) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700883 nsecs_t curTime = systemTime();
884 // commands are sorted by increasing time stamp: execute them from index 0 and up
885 if (mAudioCommands[0]->mTime <= curTime) {
Eric Laurent0ede8922014-05-09 18:04:42 -0700886 sp<AudioCommand> command = mAudioCommands[0];
Mathias Agopian65ab4712010-07-14 17:59:35 -0700887 mAudioCommands.removeAt(0);
Eric Laurent0ede8922014-05-09 18:04:42 -0700888 mLastCommand = command;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700889
890 switch (command->mCommand) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700891 case SET_VOLUME: {
Eric Laurent0ede8922014-05-09 18:04:42 -0700892 VolumeData *data = (VolumeData *)command->mParam.get();
Steve Block3856b092011-10-20 11:56:00 +0100893 ALOGV("AudioCommandThread() processing set volume stream %d, \
Eric Laurentde070132010-07-13 04:45:46 -0700894 volume %f, output %d", data->mStream, data->mVolume, data->mIO);
Andy Hungfe726a62018-09-27 15:17:25 -0700895 mLock.unlock();
Eric Laurentde070132010-07-13 04:45:46 -0700896 command->mStatus = AudioSystem::setStreamVolume(data->mStream,
897 data->mVolume,
898 data->mIO);
Andy Hungfe726a62018-09-27 15:17:25 -0700899 mLock.lock();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700900 }break;
901 case SET_PARAMETERS: {
Eric Laurent0ede8922014-05-09 18:04:42 -0700902 ParametersData *data = (ParametersData *)command->mParam.get();
Glenn Kastene53b9ea2012-03-12 16:29:55 -0700903 ALOGV("AudioCommandThread() processing set parameters string %s, io %d",
904 data->mKeyValuePairs.string(), data->mIO);
Andy Hungfe726a62018-09-27 15:17:25 -0700905 mLock.unlock();
Glenn Kastene53b9ea2012-03-12 16:29:55 -0700906 command->mStatus = AudioSystem::setParameters(data->mIO, data->mKeyValuePairs);
Andy Hungfe726a62018-09-27 15:17:25 -0700907 mLock.lock();
Glenn Kastene53b9ea2012-03-12 16:29:55 -0700908 }break;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700909 case SET_VOICE_VOLUME: {
Eric Laurent0ede8922014-05-09 18:04:42 -0700910 VoiceVolumeData *data = (VoiceVolumeData *)command->mParam.get();
Steve Block3856b092011-10-20 11:56:00 +0100911 ALOGV("AudioCommandThread() processing set voice volume volume %f",
Eric Laurentde070132010-07-13 04:45:46 -0700912 data->mVolume);
Andy Hungfe726a62018-09-27 15:17:25 -0700913 mLock.unlock();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700914 command->mStatus = AudioSystem::setVoiceVolume(data->mVolume);
Andy Hungfe726a62018-09-27 15:17:25 -0700915 mLock.lock();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700916 }break;
Eric Laurentbfb1b832013-01-07 09:53:42 -0800917 case STOP_OUTPUT: {
Eric Laurent0ede8922014-05-09 18:04:42 -0700918 StopOutputData *data = (StopOutputData *)command->mParam.get();
Eric Laurentd7fe0862018-07-14 16:48:01 -0700919 ALOGV("AudioCommandThread() processing stop output portId %d",
920 data->mPortId);
Eric Laurent59a89232014-06-08 14:14:17 -0700921 svc = mService.promote();
Eric Laurentbfb1b832013-01-07 09:53:42 -0800922 if (svc == 0) {
923 break;
924 }
925 mLock.unlock();
Eric Laurentd7fe0862018-07-14 16:48:01 -0700926 svc->doStopOutput(data->mPortId);
Eric Laurentbfb1b832013-01-07 09:53:42 -0800927 mLock.lock();
Eric Laurentbfb1b832013-01-07 09:53:42 -0800928 }break;
929 case RELEASE_OUTPUT: {
Eric Laurent0ede8922014-05-09 18:04:42 -0700930 ReleaseOutputData *data = (ReleaseOutputData *)command->mParam.get();
Eric Laurentd7fe0862018-07-14 16:48:01 -0700931 ALOGV("AudioCommandThread() processing release output portId %d",
932 data->mPortId);
Eric Laurent59a89232014-06-08 14:14:17 -0700933 svc = mService.promote();
Eric Laurentbfb1b832013-01-07 09:53:42 -0800934 if (svc == 0) {
935 break;
936 }
937 mLock.unlock();
Eric Laurentd7fe0862018-07-14 16:48:01 -0700938 svc->doReleaseOutput(data->mPortId);
Eric Laurentbfb1b832013-01-07 09:53:42 -0800939 mLock.lock();
Eric Laurentbfb1b832013-01-07 09:53:42 -0800940 }break;
Eric Laurent951f4552014-05-20 10:48:17 -0700941 case CREATE_AUDIO_PATCH: {
942 CreateAudioPatchData *data = (CreateAudioPatchData *)command->mParam.get();
943 ALOGV("AudioCommandThread() processing create audio patch");
944 sp<IAudioFlinger> af = AudioSystem::get_audio_flinger();
945 if (af == 0) {
946 command->mStatus = PERMISSION_DENIED;
947 } else {
Andy Hungfe726a62018-09-27 15:17:25 -0700948 mLock.unlock();
Eric Laurent951f4552014-05-20 10:48:17 -0700949 command->mStatus = af->createAudioPatch(&data->mPatch, &data->mHandle);
Andy Hungfe726a62018-09-27 15:17:25 -0700950 mLock.lock();
Eric Laurent951f4552014-05-20 10:48:17 -0700951 }
952 } break;
953 case RELEASE_AUDIO_PATCH: {
954 ReleaseAudioPatchData *data = (ReleaseAudioPatchData *)command->mParam.get();
955 ALOGV("AudioCommandThread() processing release audio patch");
956 sp<IAudioFlinger> af = AudioSystem::get_audio_flinger();
957 if (af == 0) {
958 command->mStatus = PERMISSION_DENIED;
959 } else {
Andy Hungfe726a62018-09-27 15:17:25 -0700960 mLock.unlock();
Eric Laurent951f4552014-05-20 10:48:17 -0700961 command->mStatus = af->releaseAudioPatch(data->mHandle);
Andy Hungfe726a62018-09-27 15:17:25 -0700962 mLock.lock();
Eric Laurent951f4552014-05-20 10:48:17 -0700963 }
964 } break;
Eric Laurentb52c1522014-05-20 11:27:36 -0700965 case UPDATE_AUDIOPORT_LIST: {
966 ALOGV("AudioCommandThread() processing update audio port list");
Eric Laurent59a89232014-06-08 14:14:17 -0700967 svc = mService.promote();
Eric Laurentb52c1522014-05-20 11:27:36 -0700968 if (svc == 0) {
969 break;
970 }
971 mLock.unlock();
972 svc->doOnAudioPortListUpdate();
973 mLock.lock();
974 }break;
975 case UPDATE_AUDIOPATCH_LIST: {
976 ALOGV("AudioCommandThread() processing update audio patch list");
Eric Laurent59a89232014-06-08 14:14:17 -0700977 svc = mService.promote();
Eric Laurentb52c1522014-05-20 11:27:36 -0700978 if (svc == 0) {
979 break;
980 }
981 mLock.unlock();
982 svc->doOnAudioPatchListUpdate();
983 mLock.lock();
984 }break;
Eric Laurente1715a42014-05-20 11:30:42 -0700985 case SET_AUDIOPORT_CONFIG: {
986 SetAudioPortConfigData *data = (SetAudioPortConfigData *)command->mParam.get();
987 ALOGV("AudioCommandThread() processing set port config");
988 sp<IAudioFlinger> af = AudioSystem::get_audio_flinger();
989 if (af == 0) {
990 command->mStatus = PERMISSION_DENIED;
991 } else {
Andy Hungfe726a62018-09-27 15:17:25 -0700992 mLock.unlock();
Eric Laurente1715a42014-05-20 11:30:42 -0700993 command->mStatus = af->setAudioPortConfig(&data->mConfig);
Andy Hungfe726a62018-09-27 15:17:25 -0700994 mLock.lock();
Eric Laurente1715a42014-05-20 11:30:42 -0700995 }
996 } break;
Jean-Michel Trivide801052015-04-14 19:10:14 -0700997 case DYN_POLICY_MIX_STATE_UPDATE: {
998 DynPolicyMixStateUpdateData *data =
999 (DynPolicyMixStateUpdateData *)command->mParam.get();
Jean-Michel Trivide801052015-04-14 19:10:14 -07001000 ALOGV("AudioCommandThread() processing dyn policy mix state update %s %d",
1001 data->mRegId.string(), data->mState);
1002 svc = mService.promote();
1003 if (svc == 0) {
1004 break;
1005 }
1006 mLock.unlock();
1007 svc->doOnDynamicPolicyMixStateUpdate(data->mRegId, data->mState);
1008 mLock.lock();
1009 } break;
Jean-Michel Trivi2f4fe9f2015-12-04 16:20:59 -08001010 case RECORDING_CONFIGURATION_UPDATE: {
1011 RecordingConfigurationUpdateData *data =
1012 (RecordingConfigurationUpdateData *)command->mParam.get();
1013 ALOGV("AudioCommandThread() processing recording configuration update");
1014 svc = mService.promote();
1015 if (svc == 0) {
1016 break;
1017 }
1018 mLock.unlock();
Jean-Michel Triviac4e4292016-12-22 11:39:31 -08001019 svc->doOnRecordingConfigurationUpdate(data->mEvent, &data->mClientInfo,
1020 &data->mClientConfig, &data->mDeviceConfig,
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08001021 data->mPatchHandle);
Jean-Michel Trivi2f4fe9f2015-12-04 16:20:59 -08001022 mLock.lock();
1023 } break;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001024 default:
Steve Block5ff1dd52012-01-05 23:22:43 +00001025 ALOGW("AudioCommandThread() unknown command %d", command->mCommand);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001026 }
Eric Laurent0ede8922014-05-09 18:04:42 -07001027 {
1028 Mutex::Autolock _l(command->mLock);
1029 if (command->mWaitStatus) {
1030 command->mWaitStatus = false;
1031 command->mCond.signal();
1032 }
1033 }
Eric Laurentd7eda8d2016-02-02 17:18:39 -08001034 waitTime = -1;
Zach Janga754b4f2015-10-27 01:29:34 +00001035 // release mLock before releasing strong reference on the service as
1036 // AudioPolicyService destructor calls AudioCommandThread::exit() which
1037 // acquires mLock.
1038 mLock.unlock();
1039 svc.clear();
1040 mLock.lock();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001041 } else {
1042 waitTime = mAudioCommands[0]->mTime - curTime;
1043 break;
1044 }
1045 }
Zach Janga754b4f2015-10-27 01:29:34 +00001046
1047 // release delayed commands wake lock if the queue is empty
1048 if (mAudioCommands.isEmpty()) {
Ricardo Garcia05f2fdc2014-07-24 15:48:24 -07001049 release_wake_lock(mName.string());
Zach Janga754b4f2015-10-27 01:29:34 +00001050 }
1051
1052 // At this stage we have either an empty command queue or the first command in the queue
1053 // has a finite delay. So unless we are exiting it is safe to wait.
1054 if (!exitPending()) {
Eric Laurent59a89232014-06-08 14:14:17 -07001055 ALOGV("AudioCommandThread() going to sleep");
Eric Laurentd7eda8d2016-02-02 17:18:39 -08001056 if (waitTime == -1) {
1057 mWaitWorkCV.wait(mLock);
1058 } else {
1059 mWaitWorkCV.waitRelative(mLock, waitTime);
1060 }
Eric Laurent59a89232014-06-08 14:14:17 -07001061 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07001062 }
Ricardo Garcia05f2fdc2014-07-24 15:48:24 -07001063 // release delayed commands wake lock before quitting
1064 if (!mAudioCommands.isEmpty()) {
1065 release_wake_lock(mName.string());
1066 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07001067 mLock.unlock();
1068 return false;
1069}
1070
1071status_t AudioPolicyService::AudioCommandThread::dump(int fd)
1072{
1073 const size_t SIZE = 256;
1074 char buffer[SIZE];
1075 String8 result;
1076
1077 snprintf(buffer, SIZE, "AudioCommandThread %p Dump\n", this);
1078 result.append(buffer);
1079 write(fd, result.string(), result.size());
1080
1081 bool locked = tryLock(mLock);
1082 if (!locked) {
1083 String8 result2(kCmdDeadlockedString);
1084 write(fd, result2.string(), result2.size());
1085 }
1086
1087 snprintf(buffer, SIZE, "- Commands:\n");
1088 result = String8(buffer);
1089 result.append(" Command Time Wait pParam\n");
Glenn Kasten8d6a2442012-02-08 14:04:28 -08001090 for (size_t i = 0; i < mAudioCommands.size(); i++) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07001091 mAudioCommands[i]->dump(buffer, SIZE);
1092 result.append(buffer);
1093 }
1094 result.append(" Last Command\n");
Eric Laurent0ede8922014-05-09 18:04:42 -07001095 if (mLastCommand != 0) {
1096 mLastCommand->dump(buffer, SIZE);
1097 result.append(buffer);
1098 } else {
1099 result.append(" none\n");
1100 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07001101
1102 write(fd, result.string(), result.size());
1103
1104 if (locked) mLock.unlock();
1105
1106 return NO_ERROR;
1107}
1108
Glenn Kastenfff6d712012-01-12 16:38:12 -08001109status_t AudioPolicyService::AudioCommandThread::volumeCommand(audio_stream_type_t stream,
Eric Laurentde070132010-07-13 04:45:46 -07001110 float volume,
Glenn Kasten72ef00d2012-01-17 11:09:42 -08001111 audio_io_handle_t output,
Eric Laurentde070132010-07-13 04:45:46 -07001112 int delayMs)
Mathias Agopian65ab4712010-07-14 17:59:35 -07001113{
Eric Laurent0ede8922014-05-09 18:04:42 -07001114 sp<AudioCommand> command = new AudioCommand();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001115 command->mCommand = SET_VOLUME;
Eric Laurent0ede8922014-05-09 18:04:42 -07001116 sp<VolumeData> data = new VolumeData();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001117 data->mStream = stream;
1118 data->mVolume = volume;
1119 data->mIO = output;
1120 command->mParam = data;
Eric Laurent0ede8922014-05-09 18:04:42 -07001121 command->mWaitStatus = true;
Steve Block3856b092011-10-20 11:56:00 +01001122 ALOGV("AudioCommandThread() adding set volume stream %d, volume %f, output %d",
Eric Laurentde070132010-07-13 04:45:46 -07001123 stream, volume, output);
Eric Laurent0ede8922014-05-09 18:04:42 -07001124 return sendCommand(command, delayMs);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001125}
1126
Glenn Kasten72ef00d2012-01-17 11:09:42 -08001127status_t AudioPolicyService::AudioCommandThread::parametersCommand(audio_io_handle_t ioHandle,
Dima Zavinfce7a472011-04-19 22:30:36 -07001128 const char *keyValuePairs,
Eric Laurentde070132010-07-13 04:45:46 -07001129 int delayMs)
Mathias Agopian65ab4712010-07-14 17:59:35 -07001130{
Eric Laurent0ede8922014-05-09 18:04:42 -07001131 sp<AudioCommand> command = new AudioCommand();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001132 command->mCommand = SET_PARAMETERS;
Eric Laurent0ede8922014-05-09 18:04:42 -07001133 sp<ParametersData> data = new ParametersData();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001134 data->mIO = ioHandle;
Dima Zavinfce7a472011-04-19 22:30:36 -07001135 data->mKeyValuePairs = String8(keyValuePairs);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001136 command->mParam = data;
Eric Laurent0ede8922014-05-09 18:04:42 -07001137 command->mWaitStatus = true;
Steve Block3856b092011-10-20 11:56:00 +01001138 ALOGV("AudioCommandThread() adding set parameter string %s, io %d ,delay %d",
Dima Zavinfce7a472011-04-19 22:30:36 -07001139 keyValuePairs, ioHandle, delayMs);
Eric Laurent0ede8922014-05-09 18:04:42 -07001140 return sendCommand(command, delayMs);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001141}
1142
1143status_t AudioPolicyService::AudioCommandThread::voiceVolumeCommand(float volume, int delayMs)
1144{
Eric Laurent0ede8922014-05-09 18:04:42 -07001145 sp<AudioCommand> command = new AudioCommand();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001146 command->mCommand = SET_VOICE_VOLUME;
Eric Laurent0ede8922014-05-09 18:04:42 -07001147 sp<VoiceVolumeData> data = new VoiceVolumeData();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001148 data->mVolume = volume;
1149 command->mParam = data;
Eric Laurent0ede8922014-05-09 18:04:42 -07001150 command->mWaitStatus = true;
Steve Block3856b092011-10-20 11:56:00 +01001151 ALOGV("AudioCommandThread() adding set voice volume volume %f", volume);
Eric Laurent0ede8922014-05-09 18:04:42 -07001152 return sendCommand(command, delayMs);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001153}
1154
Eric Laurentd7fe0862018-07-14 16:48:01 -07001155void AudioPolicyService::AudioCommandThread::stopOutputCommand(audio_port_handle_t portId)
Eric Laurentbfb1b832013-01-07 09:53:42 -08001156{
Eric Laurent0ede8922014-05-09 18:04:42 -07001157 sp<AudioCommand> command = new AudioCommand();
Eric Laurentbfb1b832013-01-07 09:53:42 -08001158 command->mCommand = STOP_OUTPUT;
Eric Laurent0ede8922014-05-09 18:04:42 -07001159 sp<StopOutputData> data = new StopOutputData();
Eric Laurentd7fe0862018-07-14 16:48:01 -07001160 data->mPortId = portId;
Jesper Tragardh48412dc2014-03-24 14:12:43 +01001161 command->mParam = data;
Eric Laurentd7fe0862018-07-14 16:48:01 -07001162 ALOGV("AudioCommandThread() adding stop output portId %d", portId);
Eric Laurent0ede8922014-05-09 18:04:42 -07001163 sendCommand(command);
Eric Laurentbfb1b832013-01-07 09:53:42 -08001164}
1165
Eric Laurentd7fe0862018-07-14 16:48:01 -07001166void AudioPolicyService::AudioCommandThread::releaseOutputCommand(audio_port_handle_t portId)
Eric Laurentbfb1b832013-01-07 09:53:42 -08001167{
Eric Laurent0ede8922014-05-09 18:04:42 -07001168 sp<AudioCommand> command = new AudioCommand();
Eric Laurentbfb1b832013-01-07 09:53:42 -08001169 command->mCommand = RELEASE_OUTPUT;
Eric Laurent0ede8922014-05-09 18:04:42 -07001170 sp<ReleaseOutputData> data = new ReleaseOutputData();
Eric Laurentd7fe0862018-07-14 16:48:01 -07001171 data->mPortId = portId;
Jesper Tragardh48412dc2014-03-24 14:12:43 +01001172 command->mParam = data;
Eric Laurentd7fe0862018-07-14 16:48:01 -07001173 ALOGV("AudioCommandThread() adding release output portId %d", portId);
Eric Laurent0ede8922014-05-09 18:04:42 -07001174 sendCommand(command);
1175}
1176
Eric Laurent951f4552014-05-20 10:48:17 -07001177status_t AudioPolicyService::AudioCommandThread::createAudioPatchCommand(
1178 const struct audio_patch *patch,
1179 audio_patch_handle_t *handle,
1180 int delayMs)
1181{
1182 status_t status = NO_ERROR;
1183
1184 sp<AudioCommand> command = new AudioCommand();
1185 command->mCommand = CREATE_AUDIO_PATCH;
1186 CreateAudioPatchData *data = new CreateAudioPatchData();
1187 data->mPatch = *patch;
1188 data->mHandle = *handle;
1189 command->mParam = data;
1190 command->mWaitStatus = true;
1191 ALOGV("AudioCommandThread() adding create patch delay %d", delayMs);
1192 status = sendCommand(command, delayMs);
1193 if (status == NO_ERROR) {
1194 *handle = data->mHandle;
1195 }
1196 return status;
1197}
1198
1199status_t AudioPolicyService::AudioCommandThread::releaseAudioPatchCommand(audio_patch_handle_t handle,
1200 int delayMs)
1201{
1202 sp<AudioCommand> command = new AudioCommand();
1203 command->mCommand = RELEASE_AUDIO_PATCH;
1204 ReleaseAudioPatchData *data = new ReleaseAudioPatchData();
1205 data->mHandle = handle;
1206 command->mParam = data;
1207 command->mWaitStatus = true;
1208 ALOGV("AudioCommandThread() adding release patch delay %d", delayMs);
1209 return sendCommand(command, delayMs);
1210}
1211
Eric Laurentb52c1522014-05-20 11:27:36 -07001212void AudioPolicyService::AudioCommandThread::updateAudioPortListCommand()
1213{
1214 sp<AudioCommand> command = new AudioCommand();
1215 command->mCommand = UPDATE_AUDIOPORT_LIST;
1216 ALOGV("AudioCommandThread() adding update audio port list");
1217 sendCommand(command);
1218}
1219
1220void AudioPolicyService::AudioCommandThread::updateAudioPatchListCommand()
1221{
1222 sp<AudioCommand>command = new AudioCommand();
1223 command->mCommand = UPDATE_AUDIOPATCH_LIST;
1224 ALOGV("AudioCommandThread() adding update audio patch list");
1225 sendCommand(command);
1226}
1227
Eric Laurente1715a42014-05-20 11:30:42 -07001228status_t AudioPolicyService::AudioCommandThread::setAudioPortConfigCommand(
1229 const struct audio_port_config *config, int delayMs)
1230{
1231 sp<AudioCommand> command = new AudioCommand();
1232 command->mCommand = SET_AUDIOPORT_CONFIG;
1233 SetAudioPortConfigData *data = new SetAudioPortConfigData();
1234 data->mConfig = *config;
1235 command->mParam = data;
1236 command->mWaitStatus = true;
1237 ALOGV("AudioCommandThread() adding set port config delay %d", delayMs);
1238 return sendCommand(command, delayMs);
1239}
1240
Jean-Michel Trivide801052015-04-14 19:10:14 -07001241void AudioPolicyService::AudioCommandThread::dynamicPolicyMixStateUpdateCommand(
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07001242 const String8& regId, int32_t state)
Jean-Michel Trivide801052015-04-14 19:10:14 -07001243{
1244 sp<AudioCommand> command = new AudioCommand();
1245 command->mCommand = DYN_POLICY_MIX_STATE_UPDATE;
1246 DynPolicyMixStateUpdateData *data = new DynPolicyMixStateUpdateData();
1247 data->mRegId = regId;
1248 data->mState = state;
1249 command->mParam = data;
1250 ALOGV("AudioCommandThread() sending dynamic policy mix (id=%s) state update to %d",
1251 regId.string(), state);
1252 sendCommand(command);
1253}
1254
Jean-Michel Trivi2f4fe9f2015-12-04 16:20:59 -08001255void AudioPolicyService::AudioCommandThread::recordingConfigurationUpdateCommand(
Jean-Michel Triviac4e4292016-12-22 11:39:31 -08001256 int event, const record_client_info_t *clientInfo,
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08001257 const audio_config_base_t *clientConfig, const audio_config_base_t *deviceConfig,
1258 audio_patch_handle_t patchHandle)
Jean-Michel Trivi2f4fe9f2015-12-04 16:20:59 -08001259{
1260 sp<AudioCommand>command = new AudioCommand();
1261 command->mCommand = RECORDING_CONFIGURATION_UPDATE;
1262 RecordingConfigurationUpdateData *data = new RecordingConfigurationUpdateData();
1263 data->mEvent = event;
Jean-Michel Triviac4e4292016-12-22 11:39:31 -08001264 data->mClientInfo = *clientInfo;
Jean-Michel Trivi7281aa92016-02-17 15:33:40 -08001265 data->mClientConfig = *clientConfig;
1266 data->mDeviceConfig = *deviceConfig;
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08001267 data->mPatchHandle = patchHandle;
Jean-Michel Trivi2f4fe9f2015-12-04 16:20:59 -08001268 command->mParam = data;
Jean-Michel Triviac4e4292016-12-22 11:39:31 -08001269 ALOGV("AudioCommandThread() adding recording configuration update event %d, source %d uid %u",
1270 event, clientInfo->source, clientInfo->uid);
Jean-Michel Trivi2f4fe9f2015-12-04 16:20:59 -08001271 sendCommand(command);
1272}
1273
Eric Laurent0ede8922014-05-09 18:04:42 -07001274status_t AudioPolicyService::AudioCommandThread::sendCommand(sp<AudioCommand>& command, int delayMs)
1275{
1276 {
1277 Mutex::Autolock _l(mLock);
1278 insertCommand_l(command, delayMs);
1279 mWaitWorkCV.signal();
1280 }
1281 Mutex::Autolock _l(command->mLock);
1282 while (command->mWaitStatus) {
1283 nsecs_t timeOutNs = kAudioCommandTimeoutNs + milliseconds(delayMs);
1284 if (command->mCond.waitRelative(command->mLock, timeOutNs) != NO_ERROR) {
1285 command->mStatus = TIMED_OUT;
1286 command->mWaitStatus = false;
1287 }
1288 }
1289 return command->mStatus;
Eric Laurentbfb1b832013-01-07 09:53:42 -08001290}
1291
Mathias Agopian65ab4712010-07-14 17:59:35 -07001292// insertCommand_l() must be called with mLock held
Eric Laurent0ede8922014-05-09 18:04:42 -07001293void AudioPolicyService::AudioCommandThread::insertCommand_l(sp<AudioCommand>& command, int delayMs)
Mathias Agopian65ab4712010-07-14 17:59:35 -07001294{
Glenn Kasten8d6a2442012-02-08 14:04:28 -08001295 ssize_t i; // not size_t because i will count down to -1
Eric Laurent0ede8922014-05-09 18:04:42 -07001296 Vector < sp<AudioCommand> > removedCommands;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001297 command->mTime = systemTime() + milliseconds(delayMs);
1298
1299 // acquire wake lock to make sure delayed commands are processed
Eric Laurentbfb1b832013-01-07 09:53:42 -08001300 if (mAudioCommands.isEmpty()) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07001301 acquire_wake_lock(PARTIAL_WAKE_LOCK, mName.string());
1302 }
1303
1304 // check same pending commands with later time stamps and eliminate them
Ivan Lozano5ff158f2017-10-30 09:06:24 -07001305 for (i = (ssize_t)mAudioCommands.size()-1; i >= 0; i--) {
Eric Laurent0ede8922014-05-09 18:04:42 -07001306 sp<AudioCommand> command2 = mAudioCommands[i];
Mathias Agopian65ab4712010-07-14 17:59:35 -07001307 // commands are sorted by increasing time stamp: no need to scan the rest of mAudioCommands
1308 if (command2->mTime <= command->mTime) break;
Eric Laurente45b48a2014-09-04 16:40:57 -07001309
1310 // create audio patch or release audio patch commands are equivalent
1311 // with regard to filtering
1312 if ((command->mCommand == CREATE_AUDIO_PATCH) ||
1313 (command->mCommand == RELEASE_AUDIO_PATCH)) {
1314 if ((command2->mCommand != CREATE_AUDIO_PATCH) &&
1315 (command2->mCommand != RELEASE_AUDIO_PATCH)) {
1316 continue;
1317 }
1318 } else if (command2->mCommand != command->mCommand) continue;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001319
1320 switch (command->mCommand) {
1321 case SET_PARAMETERS: {
Eric Laurent0ede8922014-05-09 18:04:42 -07001322 ParametersData *data = (ParametersData *)command->mParam.get();
1323 ParametersData *data2 = (ParametersData *)command2->mParam.get();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001324 if (data->mIO != data2->mIO) break;
Steve Block3856b092011-10-20 11:56:00 +01001325 ALOGV("Comparing parameter command %s to new command %s",
Eric Laurentde070132010-07-13 04:45:46 -07001326 data2->mKeyValuePairs.string(), data->mKeyValuePairs.string());
Mathias Agopian65ab4712010-07-14 17:59:35 -07001327 AudioParameter param = AudioParameter(data->mKeyValuePairs);
1328 AudioParameter param2 = AudioParameter(data2->mKeyValuePairs);
1329 for (size_t j = 0; j < param.size(); j++) {
Glenn Kastene53b9ea2012-03-12 16:29:55 -07001330 String8 key;
1331 String8 value;
1332 param.getAt(j, key, value);
1333 for (size_t k = 0; k < param2.size(); k++) {
1334 String8 key2;
1335 String8 value2;
1336 param2.getAt(k, key2, value2);
1337 if (key2 == key) {
1338 param2.remove(key2);
1339 ALOGV("Filtering out parameter %s", key2.string());
1340 break;
1341 }
1342 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07001343 }
1344 // if all keys have been filtered out, remove the command.
1345 // otherwise, update the key value pairs
1346 if (param2.size() == 0) {
1347 removedCommands.add(command2);
1348 } else {
1349 data2->mKeyValuePairs = param2.toString();
1350 }
Eric Laurent21e54562013-09-23 12:08:05 -07001351 command->mTime = command2->mTime;
1352 // force delayMs to non 0 so that code below does not request to wait for
1353 // command status as the command is now delayed
1354 delayMs = 1;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001355 } break;
1356
1357 case SET_VOLUME: {
Eric Laurent0ede8922014-05-09 18:04:42 -07001358 VolumeData *data = (VolumeData *)command->mParam.get();
1359 VolumeData *data2 = (VolumeData *)command2->mParam.get();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001360 if (data->mIO != data2->mIO) break;
1361 if (data->mStream != data2->mStream) break;
Steve Block3856b092011-10-20 11:56:00 +01001362 ALOGV("Filtering out volume command on output %d for stream %d",
Eric Laurentde070132010-07-13 04:45:46 -07001363 data->mIO, data->mStream);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001364 removedCommands.add(command2);
Eric Laurent21e54562013-09-23 12:08:05 -07001365 command->mTime = command2->mTime;
1366 // force delayMs to non 0 so that code below does not request to wait for
1367 // command status as the command is now delayed
1368 delayMs = 1;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001369 } break;
Eric Laurente45b48a2014-09-04 16:40:57 -07001370
Eric Laurentbaf35fe2016-07-27 15:36:53 -07001371 case SET_VOICE_VOLUME: {
1372 VoiceVolumeData *data = (VoiceVolumeData *)command->mParam.get();
1373 VoiceVolumeData *data2 = (VoiceVolumeData *)command2->mParam.get();
1374 ALOGV("Filtering out voice volume command value %f replaced by %f",
1375 data2->mVolume, data->mVolume);
1376 removedCommands.add(command2);
1377 command->mTime = command2->mTime;
1378 // force delayMs to non 0 so that code below does not request to wait for
1379 // command status as the command is now delayed
1380 delayMs = 1;
1381 } break;
1382
Eric Laurente45b48a2014-09-04 16:40:57 -07001383 case CREATE_AUDIO_PATCH:
1384 case RELEASE_AUDIO_PATCH: {
1385 audio_patch_handle_t handle;
Haynes Mathew Georgea2d4a6d2014-10-13 13:05:22 -07001386 struct audio_patch patch;
Eric Laurente45b48a2014-09-04 16:40:57 -07001387 if (command->mCommand == CREATE_AUDIO_PATCH) {
1388 handle = ((CreateAudioPatchData *)command->mParam.get())->mHandle;
Haynes Mathew Georgea2d4a6d2014-10-13 13:05:22 -07001389 patch = ((CreateAudioPatchData *)command->mParam.get())->mPatch;
Eric Laurente45b48a2014-09-04 16:40:57 -07001390 } else {
1391 handle = ((ReleaseAudioPatchData *)command->mParam.get())->mHandle;
Mikhail Naganov7be71d22018-05-23 16:51:46 -07001392 memset(&patch, 0, sizeof(patch));
Eric Laurente45b48a2014-09-04 16:40:57 -07001393 }
1394 audio_patch_handle_t handle2;
Haynes Mathew Georgea2d4a6d2014-10-13 13:05:22 -07001395 struct audio_patch patch2;
Eric Laurente45b48a2014-09-04 16:40:57 -07001396 if (command2->mCommand == CREATE_AUDIO_PATCH) {
1397 handle2 = ((CreateAudioPatchData *)command2->mParam.get())->mHandle;
Haynes Mathew Georgea2d4a6d2014-10-13 13:05:22 -07001398 patch2 = ((CreateAudioPatchData *)command2->mParam.get())->mPatch;
Eric Laurente45b48a2014-09-04 16:40:57 -07001399 } else {
1400 handle2 = ((ReleaseAudioPatchData *)command2->mParam.get())->mHandle;
Glenn Kastenf60b6b62015-07-06 10:53:26 -07001401 memset(&patch2, 0, sizeof(patch2));
Eric Laurente45b48a2014-09-04 16:40:57 -07001402 }
1403 if (handle != handle2) break;
Haynes Mathew Georgea2d4a6d2014-10-13 13:05:22 -07001404 /* Filter CREATE_AUDIO_PATCH commands only when they are issued for
1405 same output. */
1406 if( (command->mCommand == CREATE_AUDIO_PATCH) &&
1407 (command2->mCommand == CREATE_AUDIO_PATCH) ) {
1408 bool isOutputDiff = false;
1409 if (patch.num_sources == patch2.num_sources) {
1410 for (unsigned count = 0; count < patch.num_sources; count++) {
1411 if (patch.sources[count].id != patch2.sources[count].id) {
1412 isOutputDiff = true;
1413 break;
1414 }
1415 }
1416 if (isOutputDiff)
1417 break;
1418 }
1419 }
Eric Laurente45b48a2014-09-04 16:40:57 -07001420 ALOGV("Filtering out %s audio patch command for handle %d",
1421 (command->mCommand == CREATE_AUDIO_PATCH) ? "create" : "release", handle);
1422 removedCommands.add(command2);
1423 command->mTime = command2->mTime;
1424 // force delayMs to non 0 so that code below does not request to wait for
1425 // command status as the command is now delayed
1426 delayMs = 1;
1427 } break;
1428
Jean-Michel Trivide801052015-04-14 19:10:14 -07001429 case DYN_POLICY_MIX_STATE_UPDATE: {
1430
1431 } break;
1432
Jean-Michel Trivi2f4fe9f2015-12-04 16:20:59 -08001433 case RECORDING_CONFIGURATION_UPDATE: {
1434
1435 } break;
1436
Mathias Agopian65ab4712010-07-14 17:59:35 -07001437 default:
1438 break;
1439 }
1440 }
1441
1442 // remove filtered commands
1443 for (size_t j = 0; j < removedCommands.size(); j++) {
1444 // removed commands always have time stamps greater than current command
1445 for (size_t k = i + 1; k < mAudioCommands.size(); k++) {
Eric Laurent0ede8922014-05-09 18:04:42 -07001446 if (mAudioCommands[k].get() == removedCommands[j].get()) {
Steve Block3856b092011-10-20 11:56:00 +01001447 ALOGV("suppressing command: %d", mAudioCommands[k]->mCommand);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001448 mAudioCommands.removeAt(k);
1449 break;
1450 }
1451 }
1452 }
1453 removedCommands.clear();
1454
Eric Laurentaa79bef2015-01-15 14:33:51 -08001455 // Disable wait for status if delay is not 0.
1456 // Except for create audio patch command because the returned patch handle
1457 // is needed by audio policy manager
1458 if (delayMs != 0 && command->mCommand != CREATE_AUDIO_PATCH) {
Eric Laurentcec4abb2012-07-03 12:23:02 -07001459 command->mWaitStatus = false;
1460 }
Eric Laurentcec4abb2012-07-03 12:23:02 -07001461
Mathias Agopian65ab4712010-07-14 17:59:35 -07001462 // insert command at the right place according to its time stamp
Eric Laurent1e693b52014-07-09 15:03:28 -07001463 ALOGV("inserting command: %d at index %zd, num commands %zu",
1464 command->mCommand, i+1, mAudioCommands.size());
Mathias Agopian65ab4712010-07-14 17:59:35 -07001465 mAudioCommands.insertAt(command, i + 1);
1466}
1467
1468void AudioPolicyService::AudioCommandThread::exit()
1469{
Steve Block3856b092011-10-20 11:56:00 +01001470 ALOGV("AudioCommandThread::exit");
Mathias Agopian65ab4712010-07-14 17:59:35 -07001471 {
1472 AutoMutex _l(mLock);
1473 requestExit();
1474 mWaitWorkCV.signal();
1475 }
Zach Janga754b4f2015-10-27 01:29:34 +00001476 // Note that we can call it from the thread loop if all other references have been released
1477 // but it will safely return WOULD_BLOCK in this case
Mathias Agopian65ab4712010-07-14 17:59:35 -07001478 requestExitAndWait();
1479}
1480
1481void AudioPolicyService::AudioCommandThread::AudioCommand::dump(char* buffer, size_t size)
1482{
1483 snprintf(buffer, size, " %02d %06d.%03d %01u %p\n",
1484 mCommand,
1485 (int)ns2s(mTime),
1486 (int)ns2ms(mTime)%1000,
1487 mWaitStatus,
Eric Laurent0ede8922014-05-09 18:04:42 -07001488 mParam.get());
Mathias Agopian65ab4712010-07-14 17:59:35 -07001489}
1490
Dima Zavinfce7a472011-04-19 22:30:36 -07001491/******* helpers for the service_ops callbacks defined below *********/
1492void AudioPolicyService::setParameters(audio_io_handle_t ioHandle,
1493 const char *keyValuePairs,
1494 int delayMs)
1495{
Glenn Kasten72ef00d2012-01-17 11:09:42 -08001496 mAudioCommandThread->parametersCommand(ioHandle, keyValuePairs,
Dima Zavinfce7a472011-04-19 22:30:36 -07001497 delayMs);
1498}
1499
1500int AudioPolicyService::setStreamVolume(audio_stream_type_t stream,
1501 float volume,
1502 audio_io_handle_t output,
1503 int delayMs)
1504{
Glenn Kastenfff6d712012-01-12 16:38:12 -08001505 return (int)mAudioCommandThread->volumeCommand(stream, volume,
Glenn Kasten72ef00d2012-01-17 11:09:42 -08001506 output, delayMs);
Dima Zavinfce7a472011-04-19 22:30:36 -07001507}
1508
Dima Zavinfce7a472011-04-19 22:30:36 -07001509int AudioPolicyService::setVoiceVolume(float volume, int delayMs)
1510{
1511 return (int)mAudioCommandThread->voiceVolumeCommand(volume, delayMs);
1512}
1513
Dima Zavinfce7a472011-04-19 22:30:36 -07001514extern "C" {
Eric Laurent2d388ec2014-03-07 13:25:54 -08001515audio_module_handle_t aps_load_hw_module(void *service __unused,
1516 const char *name);
1517audio_io_handle_t aps_open_output(void *service __unused,
Eric Laurenta4c5a552012-03-29 10:12:40 -07001518 audio_devices_t *pDevices,
1519 uint32_t *pSamplingRate,
1520 audio_format_t *pFormat,
1521 audio_channel_mask_t *pChannelMask,
1522 uint32_t *pLatencyMs,
Eric Laurent2d388ec2014-03-07 13:25:54 -08001523 audio_output_flags_t flags);
Eric Laurenta4c5a552012-03-29 10:12:40 -07001524
Eric Laurent2d388ec2014-03-07 13:25:54 -08001525audio_io_handle_t aps_open_output_on_module(void *service __unused,
Eric Laurenta4c5a552012-03-29 10:12:40 -07001526 audio_module_handle_t module,
1527 audio_devices_t *pDevices,
1528 uint32_t *pSamplingRate,
1529 audio_format_t *pFormat,
1530 audio_channel_mask_t *pChannelMask,
1531 uint32_t *pLatencyMs,
Richard Fitzgeraldad3af332013-03-25 16:54:37 +00001532 audio_output_flags_t flags,
Eric Laurent2d388ec2014-03-07 13:25:54 -08001533 const audio_offload_info_t *offloadInfo);
1534audio_io_handle_t aps_open_dup_output(void *service __unused,
Dima Zavinfce7a472011-04-19 22:30:36 -07001535 audio_io_handle_t output1,
Eric Laurent2d388ec2014-03-07 13:25:54 -08001536 audio_io_handle_t output2);
1537int aps_close_output(void *service __unused, audio_io_handle_t output);
1538int aps_suspend_output(void *service __unused, audio_io_handle_t output);
1539int aps_restore_output(void *service __unused, audio_io_handle_t output);
1540audio_io_handle_t aps_open_input(void *service __unused,
Eric Laurenta4c5a552012-03-29 10:12:40 -07001541 audio_devices_t *pDevices,
1542 uint32_t *pSamplingRate,
1543 audio_format_t *pFormat,
1544 audio_channel_mask_t *pChannelMask,
Eric Laurent2d388ec2014-03-07 13:25:54 -08001545 audio_in_acoustics_t acoustics __unused);
1546audio_io_handle_t aps_open_input_on_module(void *service __unused,
Eric Laurenta4c5a552012-03-29 10:12:40 -07001547 audio_module_handle_t module,
1548 audio_devices_t *pDevices,
1549 uint32_t *pSamplingRate,
1550 audio_format_t *pFormat,
Eric Laurent2d388ec2014-03-07 13:25:54 -08001551 audio_channel_mask_t *pChannelMask);
1552int aps_close_input(void *service __unused, audio_io_handle_t input);
1553int aps_invalidate_stream(void *service __unused, audio_stream_type_t stream);
Glenn Kastend848eb42016-03-08 13:42:11 -08001554int aps_move_effects(void *service __unused, audio_session_t session,
Dima Zavinfce7a472011-04-19 22:30:36 -07001555 audio_io_handle_t src_output,
Eric Laurent2d388ec2014-03-07 13:25:54 -08001556 audio_io_handle_t dst_output);
1557char * aps_get_parameters(void *service __unused, audio_io_handle_t io_handle,
1558 const char *keys);
1559void aps_set_parameters(void *service, audio_io_handle_t io_handle,
1560 const char *kv_pairs, int delay_ms);
1561int aps_set_stream_volume(void *service, audio_stream_type_t stream,
Dima Zavinfce7a472011-04-19 22:30:36 -07001562 float volume, audio_io_handle_t output,
Eric Laurent2d388ec2014-03-07 13:25:54 -08001563 int delay_ms);
Eric Laurent2d388ec2014-03-07 13:25:54 -08001564int aps_set_voice_volume(void *service, float volume, int delay_ms);
1565};
Dima Zavinfce7a472011-04-19 22:30:36 -07001566
Mikhail Naganov1b2a7942017-12-08 10:18:09 -08001567} // namespace android