1 /*
2 **
3 ** Copyright 2007, The Android Open Source Project
4 **
5 ** Licensed under the Apache License, Version 2.0 (the "License");
6 ** you may not use this file except in compliance with the License.
7 ** You may obtain a copy of the License at
8 **
9 ** http://www.apache.org/licenses/LICENSE-2.0
10 **
11 ** Unless required by applicable law or agreed to in writing, software
12 ** distributed under the License is distributed on an "AS IS" BASIS,
13 ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 ** See the License for the specific language governing permissions and
15 ** limitations under the License.
16 */
17
18
19 #define LOG_TAG "AudioFlinger"
20 //#define LOG_NDEBUG 0
21
22 // Define AUDIO_ARRAYS_STATIC_CHECK to check all audio arrays are correct
23 #define AUDIO_ARRAYS_STATIC_CHECK 1
24
25 #include "Configuration.h"
26 #include <dirent.h>
27 #include <math.h>
28 #include <signal.h>
29 #include <string>
30 #include <sys/time.h>
31 #include <sys/resource.h>
32 #include <thread>
33
34 #include <android-base/stringprintf.h>
35 #include <android/media/IAudioPolicyService.h>
36 #include <android/os/IExternalVibratorService.h>
37 #include <binder/IPCThreadState.h>
38 #include <binder/IServiceManager.h>
39 #include <utils/Log.h>
40 #include <utils/Trace.h>
41 #include <binder/Parcel.h>
42 #include <media/audiohal/AudioHalVersionInfo.h>
43 #include <media/audiohal/DeviceHalInterface.h>
44 #include <media/audiohal/DevicesFactoryHalInterface.h>
45 #include <media/audiohal/EffectsFactoryHalInterface.h>
46 #include <media/AudioParameter.h>
47 #include <media/MediaMetricsItem.h>
48 #include <media/TypeConverter.h>
49 #include <mediautils/TimeCheck.h>
50 #include <memunreachable/memunreachable.h>
51 #include <utils/String16.h>
52 #include <utils/threads.h>
53
54 #include <cutils/atomic.h>
55 #include <cutils/properties.h>
56
57 #include <system/audio.h>
58 #include <audiomanager/IAudioManager.h>
59
60 #include "AudioFlinger.h"
61 #include "EffectConfiguration.h"
62 #include "NBAIO_Tee.h"
63 #include "PropertyUtils.h"
64
65 #include <media/AudioResamplerPublic.h>
66
67 #include <system/audio_effects/effect_visualizer.h>
68 #include <system/audio_effects/effect_ns.h>
69 #include <system/audio_effects/effect_aec.h>
70 #include <system/audio_effects/effect_hapticgenerator.h>
71 #include <system/audio_effects/effect_spatializer.h>
72
73 #include <audio_utils/primitives.h>
74
75 #include <powermanager/PowerManager.h>
76
77 #include <media/IMediaLogService.h>
78 #include <media/AidlConversion.h>
79 #include <media/AudioValidator.h>
80 #include <media/nbaio/Pipe.h>
81 #include <media/nbaio/PipeReader.h>
82 #include <mediautils/BatteryNotifier.h>
83 #include <mediautils/MemoryLeakTrackUtil.h>
84 #include <mediautils/MethodStatistics.h>
85 #include <mediautils/ServiceUtilities.h>
86 #include <mediautils/TimeCheck.h>
87 #include <private/android_filesystem_config.h>
88
89 //#define BUFLOG_NDEBUG 0
90 #include <BufLog.h>
91
92 #include "TypedLogger.h"
93
94 // ----------------------------------------------------------------------------
95
96 // Note: the following macro is used for extremely verbose logging message. In
97 // order to run with ALOG_ASSERT turned on, we need to have LOG_NDEBUG set to
98 // 0; but one side effect of this is to turn all LOGV's as well. Some messages
99 // are so verbose that we want to suppress them even when we have ALOG_ASSERT
100 // turned on. Do not uncomment the #def below unless you really know what you
101 // are doing and want to see all of the extremely verbose messages.
102 //#define VERY_VERY_VERBOSE_LOGGING
103 #ifdef VERY_VERY_VERBOSE_LOGGING
104 #define ALOGVV ALOGV
105 #else
106 #define ALOGVV(a...) do { } while(0)
107 #endif
108
109 namespace android {
110
111 using ::android::base::StringPrintf;
112 using media::IEffectClient;
113 using media::audio::common::AudioMMapPolicyInfo;
114 using media::audio::common::AudioMMapPolicyType;
115 using media::audio::common::AudioMode;
116 using android::content::AttributionSourceState;
117 using android::detail::AudioHalVersionInfo;
118
119 static const AudioHalVersionInfo kMaxAAudioPropertyDeviceHalVersion =
120 AudioHalVersionInfo(AudioHalVersionInfo::Type::HIDL, 7, 1);
121
122 static constexpr char kDeadlockedString[] = "AudioFlinger may be deadlocked\n";
123 static constexpr char kHardwareLockedString[] = "Hardware lock is taken\n";
124 static constexpr char kClientLockedString[] = "Client lock is taken\n";
125 static constexpr char kNoEffectsFactory[] = "Effects Factory is absent\n";
126
127 static constexpr char kAudioServiceName[] = "audio";
128
129 nsecs_t AudioFlinger::mStandbyTimeInNsecs = kDefaultStandbyTimeInNsecs;
130
131 uint32_t AudioFlinger::mScreenState;
132
133 // In order to avoid invalidating offloaded tracks each time a Visualizer is turned on and off
134 // we define a minimum time during which a global effect is considered enabled.
135 static const nsecs_t kMinGlobalEffectEnabletimeNs = seconds(7200);
136
137 // Keep a strong reference to media.log service around forever.
138 // The service is within our parent process so it can never die in a way that we could observe.
139 // These two variables are const after initialization.
140 static sp<IBinder> sMediaLogServiceAsBinder;
141 static sp<IMediaLogService> sMediaLogService;
142
143 static pthread_once_t sMediaLogOnce = PTHREAD_ONCE_INIT;
144
sMediaLogInit()145 static void sMediaLogInit()
146 {
147 sMediaLogServiceAsBinder = defaultServiceManager()->getService(String16("media.log"));
148 if (sMediaLogServiceAsBinder != 0) {
149 sMediaLogService = interface_cast<IMediaLogService>(sMediaLogServiceAsBinder);
150 }
151 }
152
153 // Keep a strong reference to external vibrator service
154 static sp<os::IExternalVibratorService> sExternalVibratorService;
155
getExternalVibratorService()156 static sp<os::IExternalVibratorService> getExternalVibratorService() {
157 if (sExternalVibratorService == 0) {
158 sp<IBinder> binder = defaultServiceManager()->getService(
159 String16("external_vibrator_service"));
160 if (binder != 0) {
161 sExternalVibratorService =
162 interface_cast<os::IExternalVibratorService>(binder);
163 }
164 }
165 return sExternalVibratorService;
166 }
167
168 // Creates association between Binder code to name for IAudioFlinger.
169 #define IAUDIOFLINGER_BINDER_METHOD_MACRO_LIST \
170 BINDER_METHOD_ENTRY(createTrack) \
171 BINDER_METHOD_ENTRY(createRecord) \
172 BINDER_METHOD_ENTRY(sampleRate) \
173 BINDER_METHOD_ENTRY(format) \
174 BINDER_METHOD_ENTRY(frameCount) \
175 BINDER_METHOD_ENTRY(latency) \
176 BINDER_METHOD_ENTRY(setMasterVolume) \
177 BINDER_METHOD_ENTRY(setMasterMute) \
178 BINDER_METHOD_ENTRY(masterVolume) \
179 BINDER_METHOD_ENTRY(masterMute) \
180 BINDER_METHOD_ENTRY(setStreamVolume) \
181 BINDER_METHOD_ENTRY(setStreamMute) \
182 BINDER_METHOD_ENTRY(streamVolume) \
183 BINDER_METHOD_ENTRY(streamMute) \
184 BINDER_METHOD_ENTRY(setMode) \
185 BINDER_METHOD_ENTRY(setMicMute) \
186 BINDER_METHOD_ENTRY(getMicMute) \
187 BINDER_METHOD_ENTRY(setRecordSilenced) \
188 BINDER_METHOD_ENTRY(setParameters) \
189 BINDER_METHOD_ENTRY(getParameters) \
190 BINDER_METHOD_ENTRY(registerClient) \
191 BINDER_METHOD_ENTRY(getInputBufferSize) \
192 BINDER_METHOD_ENTRY(openOutput) \
193 BINDER_METHOD_ENTRY(openDuplicateOutput) \
194 BINDER_METHOD_ENTRY(closeOutput) \
195 BINDER_METHOD_ENTRY(suspendOutput) \
196 BINDER_METHOD_ENTRY(restoreOutput) \
197 BINDER_METHOD_ENTRY(openInput) \
198 BINDER_METHOD_ENTRY(closeInput) \
199 BINDER_METHOD_ENTRY(setVoiceVolume) \
200 BINDER_METHOD_ENTRY(getRenderPosition) \
201 BINDER_METHOD_ENTRY(getInputFramesLost) \
202 BINDER_METHOD_ENTRY(newAudioUniqueId) \
203 BINDER_METHOD_ENTRY(acquireAudioSessionId) \
204 BINDER_METHOD_ENTRY(releaseAudioSessionId) \
205 BINDER_METHOD_ENTRY(queryNumberEffects) \
206 BINDER_METHOD_ENTRY(queryEffect) \
207 BINDER_METHOD_ENTRY(getEffectDescriptor) \
208 BINDER_METHOD_ENTRY(createEffect) \
209 BINDER_METHOD_ENTRY(moveEffects) \
210 BINDER_METHOD_ENTRY(loadHwModule) \
211 BINDER_METHOD_ENTRY(getPrimaryOutputSamplingRate) \
212 BINDER_METHOD_ENTRY(getPrimaryOutputFrameCount) \
213 BINDER_METHOD_ENTRY(setLowRamDevice) \
214 BINDER_METHOD_ENTRY(getAudioPort) \
215 BINDER_METHOD_ENTRY(createAudioPatch) \
216 BINDER_METHOD_ENTRY(releaseAudioPatch) \
217 BINDER_METHOD_ENTRY(listAudioPatches) \
218 BINDER_METHOD_ENTRY(setAudioPortConfig) \
219 BINDER_METHOD_ENTRY(getAudioHwSyncForSession) \
220 BINDER_METHOD_ENTRY(systemReady) \
221 BINDER_METHOD_ENTRY(audioPolicyReady) \
222 BINDER_METHOD_ENTRY(frameCountHAL) \
223 BINDER_METHOD_ENTRY(getMicrophones) \
224 BINDER_METHOD_ENTRY(setMasterBalance) \
225 BINDER_METHOD_ENTRY(getMasterBalance) \
226 BINDER_METHOD_ENTRY(setEffectSuspended) \
227 BINDER_METHOD_ENTRY(setAudioHalPids) \
228 BINDER_METHOD_ENTRY(setVibratorInfos) \
229 BINDER_METHOD_ENTRY(updateSecondaryOutputs) \
230 BINDER_METHOD_ENTRY(getMmapPolicyInfos) \
231 BINDER_METHOD_ENTRY(getAAudioMixerBurstCount) \
232 BINDER_METHOD_ENTRY(getAAudioHardwareBurstMinUsec) \
233 BINDER_METHOD_ENTRY(setDeviceConnectedState) \
234 BINDER_METHOD_ENTRY(setSimulateDeviceConnections) \
235 BINDER_METHOD_ENTRY(setRequestedLatencyMode) \
236 BINDER_METHOD_ENTRY(getSupportedLatencyModes) \
237 BINDER_METHOD_ENTRY(setBluetoothVariableLatencyEnabled) \
238 BINDER_METHOD_ENTRY(isBluetoothVariableLatencyEnabled) \
239 BINDER_METHOD_ENTRY(supportsBluetoothVariableLatency) \
240 BINDER_METHOD_ENTRY(getSoundDoseInterface) \
241 BINDER_METHOD_ENTRY(getAudioPolicyConfig) \
242
243 // singleton for Binder Method Statistics for IAudioFlinger
getIAudioFlingerStatistics()244 static auto& getIAudioFlingerStatistics() {
245 using Code = android::AudioFlingerServerAdapter::Delegate::TransactionCode;
246
247 #pragma push_macro("BINDER_METHOD_ENTRY")
248 #undef BINDER_METHOD_ENTRY
249 #define BINDER_METHOD_ENTRY(ENTRY) \
250 {(Code)media::BnAudioFlingerService::TRANSACTION_##ENTRY, #ENTRY},
251
252 static mediautils::MethodStatistics<Code> methodStatistics{
253 IAUDIOFLINGER_BINDER_METHOD_MACRO_LIST
254 METHOD_STATISTICS_BINDER_CODE_NAMES(Code)
255 };
256 #pragma pop_macro("BINDER_METHOD_ENTRY")
257
258 return methodStatistics;
259 }
260
261 class DevicesFactoryHalCallbackImpl : public DevicesFactoryHalCallback {
262 public:
onNewDevicesAvailable()263 void onNewDevicesAvailable() override {
264 // Start a detached thread to execute notification in parallel.
265 // This is done to prevent mutual blocking of audio_flinger and
266 // audio_policy services during system initialization.
267 std::thread notifier([]() {
268 AudioSystem::onNewAudioModulesAvailable();
269 });
270 notifier.detach();
271 }
272 };
273
274 // TODO b/182392769: use attribution source util
275 /* static */
checkAttributionSourcePackage(const AttributionSourceState & attributionSource)276 AttributionSourceState AudioFlinger::checkAttributionSourcePackage(
277 const AttributionSourceState& attributionSource) {
278 Vector<String16> packages;
279 PermissionController{}.getPackagesForUid(attributionSource.uid, packages);
280
281 AttributionSourceState checkedAttributionSource = attributionSource;
282 if (!attributionSource.packageName.has_value()
283 || attributionSource.packageName.value().size() == 0) {
284 if (!packages.isEmpty()) {
285 checkedAttributionSource.packageName =
286 std::move(legacy2aidl_String16_string(packages[0]).value());
287 }
288 } else {
289 String16 opPackageLegacy = VALUE_OR_FATAL(
290 aidl2legacy_string_view_String16(attributionSource.packageName.value_or("")));
291 if (std::find_if(packages.begin(), packages.end(),
292 [&opPackageLegacy](const auto& package) {
293 return opPackageLegacy == package; }) == packages.end()) {
294 ALOGW("The package name(%s) provided does not correspond to the uid %d",
295 attributionSource.packageName.value_or("").c_str(), attributionSource.uid);
296 }
297 }
298 return checkedAttributionSource;
299 }
300
301 // ----------------------------------------------------------------------------
302
formatToString(audio_format_t format)303 std::string formatToString(audio_format_t format) {
304 std::string result;
305 FormatConverter::toString(format, result);
306 return result;
307 }
308
309 // ----------------------------------------------------------------------------
310
instantiate()311 void AudioFlinger::instantiate() {
312 sp<IServiceManager> sm(defaultServiceManager());
313 sm->addService(String16(IAudioFlinger::DEFAULT_SERVICE_NAME),
314 new AudioFlingerServerAdapter(new AudioFlinger()), false,
315 IServiceManager::DUMP_FLAG_PRIORITY_DEFAULT);
316 }
317
AudioFlinger()318 AudioFlinger::AudioFlinger()
319 : mMediaLogNotifier(new AudioFlinger::MediaLogNotifier()),
320 mPrimaryHardwareDev(NULL),
321 mAudioHwDevs(NULL),
322 mHardwareStatus(AUDIO_HW_IDLE),
323 mMasterVolume(1.0f),
324 mMasterMute(false),
325 // mNextUniqueId(AUDIO_UNIQUE_ID_USE_MAX),
326 mMode(AUDIO_MODE_INVALID),
327 mBtNrecIsOff(false),
328 mIsLowRamDevice(true),
329 mIsDeviceTypeKnown(false),
330 mTotalMemory(0),
331 mClientSharedHeapSize(kMinimumClientSharedHeapSizeBytes),
332 mGlobalEffectEnableTime(0),
333 mPatchPanel(this),
334 mPatchCommandThread(sp<PatchCommandThread>::make()),
335 mDeviceEffectManager(sp<DeviceEffectManager>::make(*this)),
336 mMelReporter(sp<MelReporter>::make(*this)),
337 mSystemReady(false),
338 mBluetoothLatencyModesEnabled(true)
339 {
340 // Move the audio session unique ID generator start base as time passes to limit risk of
341 // generating the same ID again after an audioserver restart.
342 // This is important because clients will reuse previously allocated audio session IDs
343 // when reconnecting after an audioserver restart and newly allocated IDs may conflict with
344 // active clients.
345 // Moving the base by 1 for each elapsed second is a good compromise between avoiding overlap
346 // between allocation ranges and not reaching wrap around too soon.
347 timespec ts{};
348 clock_gettime(CLOCK_MONOTONIC, &ts);
349 // zero ID has a special meaning, so start allocation at least at AUDIO_UNIQUE_ID_USE_MAX
350 uint32_t movingBase = (uint32_t)std::max((long)1, ts.tv_sec);
351 // unsigned instead of audio_unique_id_use_t, because ++ operator is unavailable for enum
352 for (unsigned use = AUDIO_UNIQUE_ID_USE_UNSPECIFIED; use < AUDIO_UNIQUE_ID_USE_MAX; use++) {
353 mNextUniqueIds[use] =
354 ((use == AUDIO_UNIQUE_ID_USE_SESSION || use == AUDIO_UNIQUE_ID_USE_CLIENT) ?
355 movingBase : 1) * AUDIO_UNIQUE_ID_USE_MAX;
356 }
357
358 #if 1
359 // FIXME See bug 165702394 and bug 168511485
360 const bool doLog = false;
361 #else
362 const bool doLog = property_get_bool("ro.test_harness", false);
363 #endif
364 if (doLog) {
365 mLogMemoryDealer = new MemoryDealer(kLogMemorySize, "LogWriters",
366 MemoryHeapBase::READ_ONLY);
367 (void) pthread_once(&sMediaLogOnce, sMediaLogInit);
368 }
369
370 // reset battery stats.
371 // if the audio service has crashed, battery stats could be left
372 // in bad state, reset the state upon service start.
373 BatteryNotifier::getInstance().noteResetAudio();
374
375 mDevicesFactoryHal = DevicesFactoryHalInterface::create();
376 mEffectsFactoryHal = audioflinger::EffectConfiguration::getEffectsFactoryHal();
377
378 mMediaLogNotifier->run("MediaLogNotifier");
379 std::vector<pid_t> halPids;
380 mDevicesFactoryHal->getHalPids(&halPids);
381 mediautils::TimeCheck::setAudioHalPids(halPids);
382
383 // Notify that we have started (also called when audioserver service restarts)
384 mediametrics::LogItem(mMetricsId)
385 .set(AMEDIAMETRICS_PROP_EVENT, AMEDIAMETRICS_PROP_EVENT_VALUE_CTOR)
386 .record();
387 }
388
onFirstRef()389 void AudioFlinger::onFirstRef()
390 {
391 Mutex::Autolock _l(mLock);
392
393 /* TODO: move all this work into an Init() function */
394 char val_str[PROPERTY_VALUE_MAX] = { 0 };
395 if (property_get("ro.audio.flinger_standbytime_ms", val_str, NULL) >= 0) {
396 uint32_t int_val;
397 if (1 == sscanf(val_str, "%u", &int_val)) {
398 mStandbyTimeInNsecs = milliseconds(int_val);
399 ALOGI("Using %u mSec as standby time.", int_val);
400 } else {
401 mStandbyTimeInNsecs = kDefaultStandbyTimeInNsecs;
402 ALOGI("Using default %u mSec as standby time.",
403 (uint32_t)(mStandbyTimeInNsecs / 1000000));
404 }
405 }
406
407 mMode = AUDIO_MODE_NORMAL;
408
409 gAudioFlinger = this; // we are already refcounted, store into atomic pointer.
410
411 mDevicesFactoryHalCallback = new DevicesFactoryHalCallbackImpl;
412 mDevicesFactoryHal->setCallbackOnce(mDevicesFactoryHalCallback);
413
414 if (mDevicesFactoryHal->getHalVersion() <= kMaxAAudioPropertyDeviceHalVersion) {
415 mAAudioBurstsPerBuffer = getAAudioMixerBurstCountFromSystemProperty();
416 mAAudioHwBurstMinMicros = getAAudioHardwareBurstMinUsecFromSystemProperty();
417 }
418 }
419
setAudioHalPids(const std::vector<pid_t> & pids)420 status_t AudioFlinger::setAudioHalPids(const std::vector<pid_t>& pids) {
421 mediautils::TimeCheck::setAudioHalPids(pids);
422 return NO_ERROR;
423 }
424
setVibratorInfos(const std::vector<media::AudioVibratorInfo> & vibratorInfos)425 status_t AudioFlinger::setVibratorInfos(
426 const std::vector<media::AudioVibratorInfo>& vibratorInfos) {
427 Mutex::Autolock _l(mLock);
428 mAudioVibratorInfos = vibratorInfos;
429 return NO_ERROR;
430 }
431
updateSecondaryOutputs(const TrackSecondaryOutputsMap & trackSecondaryOutputs)432 status_t AudioFlinger::updateSecondaryOutputs(
433 const TrackSecondaryOutputsMap& trackSecondaryOutputs) {
434 Mutex::Autolock _l(mLock);
435 for (const auto& [trackId, secondaryOutputs] : trackSecondaryOutputs) {
436 size_t i = 0;
437 for (; i < mPlaybackThreads.size(); ++i) {
438 PlaybackThread *thread = mPlaybackThreads.valueAt(i).get();
439 Mutex::Autolock _tl(thread->mLock);
440 sp<PlaybackThread::Track> track = thread->getTrackById_l(trackId);
441 if (track != nullptr) {
442 ALOGD("%s trackId: %u", __func__, trackId);
443 updateSecondaryOutputsForTrack_l(track.get(), thread, secondaryOutputs);
444 break;
445 }
446 }
447 ALOGW_IF(i >= mPlaybackThreads.size(),
448 "%s cannot find track with id %u", __func__, trackId);
449 }
450 return NO_ERROR;
451 }
452
getMmapPolicyInfos(AudioMMapPolicyType policyType,std::vector<AudioMMapPolicyInfo> * policyInfos)453 status_t AudioFlinger::getMmapPolicyInfos(
454 AudioMMapPolicyType policyType, std::vector<AudioMMapPolicyInfo> *policyInfos) {
455 Mutex::Autolock _l(mLock);
456 if (const auto it = mPolicyInfos.find(policyType); it != mPolicyInfos.end()) {
457 *policyInfos = it->second;
458 return NO_ERROR;
459 }
460 if (mDevicesFactoryHal->getHalVersion() > kMaxAAudioPropertyDeviceHalVersion) {
461 AutoMutex lock(mHardwareLock);
462 for (size_t i = 0; i < mAudioHwDevs.size(); ++i) {
463 AudioHwDevice *dev = mAudioHwDevs.valueAt(i);
464 std::vector<AudioMMapPolicyInfo> infos;
465 status_t status = dev->getMmapPolicyInfos(policyType, &infos);
466 if (status != NO_ERROR) {
467 ALOGE("Failed to query mmap policy info of %d, error %d",
468 mAudioHwDevs.keyAt(i), status);
469 continue;
470 }
471 policyInfos->insert(policyInfos->end(), infos.begin(), infos.end());
472 }
473 mPolicyInfos[policyType] = *policyInfos;
474 } else {
475 getMmapPolicyInfosFromSystemProperty(policyType, policyInfos);
476 mPolicyInfos[policyType] = *policyInfos;
477 }
478 return NO_ERROR;
479 }
480
getAAudioMixerBurstCount()481 int32_t AudioFlinger::getAAudioMixerBurstCount() {
482 Mutex::Autolock _l(mLock);
483 return mAAudioBurstsPerBuffer;
484 }
485
getAAudioHardwareBurstMinUsec()486 int32_t AudioFlinger::getAAudioHardwareBurstMinUsec() {
487 Mutex::Autolock _l(mLock);
488 return mAAudioHwBurstMinMicros;
489 }
490
setDeviceConnectedState(const struct audio_port_v7 * port,media::DeviceConnectedState state)491 status_t AudioFlinger::setDeviceConnectedState(const struct audio_port_v7 *port,
492 media::DeviceConnectedState state) {
493 status_t final_result = NO_INIT;
494 Mutex::Autolock _l(mLock);
495 AutoMutex lock(mHardwareLock);
496 mHardwareStatus = AUDIO_HW_SET_CONNECTED_STATE;
497 for (size_t i = 0; i < mAudioHwDevs.size(); i++) {
498 sp<DeviceHalInterface> dev = mAudioHwDevs.valueAt(i)->hwDevice();
499 status_t result = state == media::DeviceConnectedState::PREPARE_TO_DISCONNECT
500 ? dev->prepareToDisconnectExternalDevice(port)
501 : dev->setConnectedState(port, state == media::DeviceConnectedState::CONNECTED);
502 // Same logic as with setParameter: it's a success if at least one
503 // HAL module accepts the update.
504 if (final_result != NO_ERROR) {
505 final_result = result;
506 }
507 }
508 mHardwareStatus = AUDIO_HW_IDLE;
509 return final_result;
510 }
511
setSimulateDeviceConnections(bool enabled)512 status_t AudioFlinger::setSimulateDeviceConnections(bool enabled) {
513 bool at_least_one_succeeded = false;
514 status_t last_error = INVALID_OPERATION;
515 Mutex::Autolock _l(mLock);
516 AutoMutex lock(mHardwareLock);
517 mHardwareStatus = AUDIO_HW_SET_SIMULATE_CONNECTIONS;
518 for (size_t i = 0; i < mAudioHwDevs.size(); i++) {
519 sp<DeviceHalInterface> dev = mAudioHwDevs.valueAt(i)->hwDevice();
520 status_t result = dev->setSimulateDeviceConnections(enabled);
521 if (result == OK) {
522 at_least_one_succeeded = true;
523 } else {
524 last_error = result;
525 }
526 }
527 mHardwareStatus = AUDIO_HW_IDLE;
528 return at_least_one_succeeded ? OK : last_error;
529 }
530
531 // getDefaultVibratorInfo_l must be called with AudioFlinger lock held.
getDefaultVibratorInfo_l()532 std::optional<media::AudioVibratorInfo> AudioFlinger::getDefaultVibratorInfo_l() {
533 if (mAudioVibratorInfos.empty()) {
534 return {};
535 }
536 return mAudioVibratorInfos.front();
537 }
538
~AudioFlinger()539 AudioFlinger::~AudioFlinger()
540 {
541 while (!mRecordThreads.isEmpty()) {
542 // closeInput_nonvirtual() will remove specified entry from mRecordThreads
543 closeInput_nonvirtual(mRecordThreads.keyAt(0));
544 }
545 while (!mPlaybackThreads.isEmpty()) {
546 // closeOutput_nonvirtual() will remove specified entry from mPlaybackThreads
547 closeOutput_nonvirtual(mPlaybackThreads.keyAt(0));
548 }
549 while (!mMmapThreads.isEmpty()) {
550 const audio_io_handle_t io = mMmapThreads.keyAt(0);
551 if (mMmapThreads.valueAt(0)->isOutput()) {
552 closeOutput_nonvirtual(io); // removes entry from mMmapThreads
553 } else {
554 closeInput_nonvirtual(io); // removes entry from mMmapThreads
555 }
556 }
557
558 for (size_t i = 0; i < mAudioHwDevs.size(); i++) {
559 // no mHardwareLock needed, as there are no other references to this
560 delete mAudioHwDevs.valueAt(i);
561 }
562
563 // Tell media.log service about any old writers that still need to be unregistered
564 if (sMediaLogService != 0) {
565 for (size_t count = mUnregisteredWriters.size(); count > 0; count--) {
566 sp<IMemory> iMemory(mUnregisteredWriters.top()->getIMemory());
567 mUnregisteredWriters.pop();
568 sMediaLogService->unregisterWriter(iMemory);
569 }
570 }
571 }
572
573 //static
574 __attribute__ ((visibility ("default")))
openMmapStream(MmapStreamInterface::stream_direction_t direction,const audio_attributes_t * attr,audio_config_base_t * config,const AudioClient & client,audio_port_handle_t * deviceId,audio_session_t * sessionId,const sp<MmapStreamCallback> & callback,sp<MmapStreamInterface> & interface,audio_port_handle_t * handle)575 status_t MmapStreamInterface::openMmapStream(MmapStreamInterface::stream_direction_t direction,
576 const audio_attributes_t *attr,
577 audio_config_base_t *config,
578 const AudioClient& client,
579 audio_port_handle_t *deviceId,
580 audio_session_t *sessionId,
581 const sp<MmapStreamCallback>& callback,
582 sp<MmapStreamInterface>& interface,
583 audio_port_handle_t *handle)
584 {
585 // TODO: Use ServiceManager to get IAudioFlinger instead of by atomic pointer.
586 // This allows moving oboeservice (AAudio) to a separate process in the future.
587 sp<AudioFlinger> af = AudioFlinger::gAudioFlinger.load(); // either nullptr or singleton AF.
588 status_t ret = NO_INIT;
589 if (af != 0) {
590 ret = af->openMmapStream(
591 direction, attr, config, client, deviceId,
592 sessionId, callback, interface, handle);
593 }
594 return ret;
595 }
596
openMmapStream(MmapStreamInterface::stream_direction_t direction,const audio_attributes_t * attr,audio_config_base_t * config,const AudioClient & client,audio_port_handle_t * deviceId,audio_session_t * sessionId,const sp<MmapStreamCallback> & callback,sp<MmapStreamInterface> & interface,audio_port_handle_t * handle)597 status_t AudioFlinger::openMmapStream(MmapStreamInterface::stream_direction_t direction,
598 const audio_attributes_t *attr,
599 audio_config_base_t *config,
600 const AudioClient& client,
601 audio_port_handle_t *deviceId,
602 audio_session_t *sessionId,
603 const sp<MmapStreamCallback>& callback,
604 sp<MmapStreamInterface>& interface,
605 audio_port_handle_t *handle)
606 {
607 status_t ret = initCheck();
608 if (ret != NO_ERROR) {
609 return ret;
610 }
611 audio_session_t actualSessionId = *sessionId;
612 if (actualSessionId == AUDIO_SESSION_ALLOCATE) {
613 actualSessionId = (audio_session_t) newAudioUniqueId(AUDIO_UNIQUE_ID_USE_SESSION);
614 }
615 audio_stream_type_t streamType = AUDIO_STREAM_DEFAULT;
616 audio_io_handle_t io = AUDIO_IO_HANDLE_NONE;
617 audio_port_handle_t portId = AUDIO_PORT_HANDLE_NONE;
618 audio_attributes_t localAttr = *attr;
619
620 // TODO b/182392553: refactor or make clearer
621 pid_t clientPid =
622 VALUE_OR_RETURN_STATUS(aidl2legacy_int32_t_pid_t(client.attributionSource.pid));
623 bool updatePid = (clientPid == (pid_t)-1);
624 const uid_t callingUid = IPCThreadState::self()->getCallingUid();
625
626 AttributionSourceState adjAttributionSource = client.attributionSource;
627 if (!isAudioServerOrMediaServerOrSystemServerOrRootUid(callingUid)) {
628 uid_t clientUid =
629 VALUE_OR_RETURN_STATUS(aidl2legacy_int32_t_uid_t(client.attributionSource.uid));
630 ALOGW_IF(clientUid != callingUid,
631 "%s uid %d tried to pass itself off as %d",
632 __FUNCTION__, callingUid, clientUid);
633 adjAttributionSource.uid = VALUE_OR_RETURN_STATUS(legacy2aidl_uid_t_int32_t(callingUid));
634 updatePid = true;
635 }
636 if (updatePid) {
637 const pid_t callingPid = IPCThreadState::self()->getCallingPid();
638 ALOGW_IF(clientPid != (pid_t)-1 && clientPid != callingPid,
639 "%s uid %d pid %d tried to pass itself off as pid %d",
640 __func__, callingUid, callingPid, clientPid);
641 adjAttributionSource.pid = VALUE_OR_RETURN_STATUS(legacy2aidl_pid_t_int32_t(callingPid));
642 }
643 adjAttributionSource = AudioFlinger::checkAttributionSourcePackage(
644 adjAttributionSource);
645
646 if (direction == MmapStreamInterface::DIRECTION_OUTPUT) {
647 audio_config_t fullConfig = AUDIO_CONFIG_INITIALIZER;
648 fullConfig.sample_rate = config->sample_rate;
649 fullConfig.channel_mask = config->channel_mask;
650 fullConfig.format = config->format;
651 std::vector<audio_io_handle_t> secondaryOutputs;
652 bool isSpatialized;
653 bool isBitPerfect;
654 ret = AudioSystem::getOutputForAttr(&localAttr, &io,
655 actualSessionId,
656 &streamType, adjAttributionSource,
657 &fullConfig,
658 (audio_output_flags_t)(AUDIO_OUTPUT_FLAG_MMAP_NOIRQ |
659 AUDIO_OUTPUT_FLAG_DIRECT),
660 deviceId, &portId, &secondaryOutputs, &isSpatialized,
661 &isBitPerfect);
662 if (ret != NO_ERROR) {
663 config->sample_rate = fullConfig.sample_rate;
664 config->channel_mask = fullConfig.channel_mask;
665 config->format = fullConfig.format;
666 }
667 ALOGW_IF(!secondaryOutputs.empty(),
668 "%s does not support secondary outputs, ignoring them", __func__);
669 } else {
670 ret = AudioSystem::getInputForAttr(&localAttr, &io,
671 RECORD_RIID_INVALID,
672 actualSessionId,
673 adjAttributionSource,
674 config,
675 AUDIO_INPUT_FLAG_MMAP_NOIRQ, deviceId, &portId);
676 }
677 if (ret != NO_ERROR) {
678 return ret;
679 }
680
681 // at this stage, a MmapThread was created when openOutput() or openInput() was called by
682 // audio policy manager and we can retrieve it
683 sp<MmapThread> thread = mMmapThreads.valueFor(io);
684 if (thread != 0) {
685 interface = new MmapThreadHandle(thread);
686 thread->configure(&localAttr, streamType, actualSessionId, callback, *deviceId, portId);
687 *handle = portId;
688 *sessionId = actualSessionId;
689 config->sample_rate = thread->sampleRate();
690 config->channel_mask = thread->channelMask();
691 config->format = thread->format();
692 } else {
693 if (direction == MmapStreamInterface::DIRECTION_OUTPUT) {
694 AudioSystem::releaseOutput(portId);
695 } else {
696 AudioSystem::releaseInput(portId);
697 }
698 ret = NO_INIT;
699 }
700
701 ALOGV("%s done status %d portId %d", __FUNCTION__, ret, portId);
702
703 return ret;
704 }
705
706 /* static */
onExternalVibrationStart(const sp<os::ExternalVibration> & externalVibration)707 os::HapticScale AudioFlinger::onExternalVibrationStart(
708 const sp<os::ExternalVibration>& externalVibration) {
709 sp<os::IExternalVibratorService> evs = getExternalVibratorService();
710 if (evs != nullptr) {
711 int32_t ret;
712 binder::Status status = evs->onExternalVibrationStart(*externalVibration, &ret);
713 if (status.isOk()) {
714 ALOGD("%s, start external vibration with intensity as %d", __func__, ret);
715 return os::ExternalVibration::externalVibrationScaleToHapticScale(ret);
716 }
717 }
718 ALOGD("%s, start external vibration with intensity as MUTE due to %s",
719 __func__,
720 evs == nullptr ? "external vibration service not found"
721 : "error when querying intensity");
722 return os::HapticScale::MUTE;
723 }
724
725 /* static */
onExternalVibrationStop(const sp<os::ExternalVibration> & externalVibration)726 void AudioFlinger::onExternalVibrationStop(const sp<os::ExternalVibration>& externalVibration) {
727 sp<os::IExternalVibratorService> evs = getExternalVibratorService();
728 if (evs != 0) {
729 ALOGD("%s, stopping external vibration", __func__);
730 evs->onExternalVibrationStop(*externalVibration);
731 }
732 }
733
addEffectToHal(const struct audio_port_config * device,const sp<EffectHalInterface> & effect)734 status_t AudioFlinger::addEffectToHal(
735 const struct audio_port_config *device, const sp<EffectHalInterface>& effect) {
736 AutoMutex lock(mHardwareLock);
737 AudioHwDevice *audioHwDevice = mAudioHwDevs.valueFor(device->ext.device.hw_module);
738 if (audioHwDevice == nullptr) {
739 return NO_INIT;
740 }
741 return audioHwDevice->hwDevice()->addDeviceEffect(device, effect);
742 }
743
removeEffectFromHal(const struct audio_port_config * device,const sp<EffectHalInterface> & effect)744 status_t AudioFlinger::removeEffectFromHal(
745 const struct audio_port_config *device, const sp<EffectHalInterface>& effect) {
746 AutoMutex lock(mHardwareLock);
747 AudioHwDevice *audioHwDevice = mAudioHwDevs.valueFor(device->ext.device.hw_module);
748 if (audioHwDevice == nullptr) {
749 return NO_INIT;
750 }
751 return audioHwDevice->hwDevice()->removeDeviceEffect(device, effect);
752 }
753
754 static const char * const audio_interfaces[] = {
755 AUDIO_HARDWARE_MODULE_ID_PRIMARY,
756 AUDIO_HARDWARE_MODULE_ID_A2DP,
757 AUDIO_HARDWARE_MODULE_ID_USB,
758 };
759
findSuitableHwDev_l(audio_module_handle_t module,audio_devices_t deviceType)760 AudioHwDevice* AudioFlinger::findSuitableHwDev_l(
761 audio_module_handle_t module,
762 audio_devices_t deviceType)
763 {
764 // if module is 0, the request comes from an old policy manager and we should load
765 // well known modules
766 AutoMutex lock(mHardwareLock);
767 if (module == 0) {
768 ALOGW("findSuitableHwDev_l() loading well know audio hw modules");
769 for (size_t i = 0; i < arraysize(audio_interfaces); i++) {
770 loadHwModule_l(audio_interfaces[i]);
771 }
772 // then try to find a module supporting the requested device.
773 for (size_t i = 0; i < mAudioHwDevs.size(); i++) {
774 AudioHwDevice *audioHwDevice = mAudioHwDevs.valueAt(i);
775 sp<DeviceHalInterface> dev = audioHwDevice->hwDevice();
776 uint32_t supportedDevices;
777 if (dev->getSupportedDevices(&supportedDevices) == OK &&
778 (supportedDevices & deviceType) == deviceType) {
779 return audioHwDevice;
780 }
781 }
782 } else {
783 // check a match for the requested module handle
784 AudioHwDevice *audioHwDevice = mAudioHwDevs.valueFor(module);
785 if (audioHwDevice != NULL) {
786 return audioHwDevice;
787 }
788 }
789
790 return NULL;
791 }
792
dumpClients(int fd,const Vector<String16> & args __unused)793 void AudioFlinger::dumpClients(int fd, const Vector<String16>& args __unused)
794 {
795 String8 result;
796
797 result.append("Client Allocators:\n");
798 for (size_t i = 0; i < mClients.size(); ++i) {
799 sp<Client> client = mClients.valueAt(i).promote();
800 if (client != 0) {
801 result.appendFormat("Client: %d\n", client->pid());
802 result.append(client->allocator().dump().c_str());
803 }
804 }
805
806 result.append("Notification Clients:\n");
807 result.append(" pid uid name\n");
808 for (size_t i = 0; i < mNotificationClients.size(); ++i) {
809 const pid_t pid = mNotificationClients[i]->getPid();
810 const uid_t uid = mNotificationClients[i]->getUid();
811 const mediautils::UidInfo::Info info = mUidInfo.getInfo(uid);
812 result.appendFormat("%6d %6u %s\n", pid, uid, info.package.c_str());
813 }
814
815 result.append("Global session refs:\n");
816 result.append(" session cnt pid uid name\n");
817 for (size_t i = 0; i < mAudioSessionRefs.size(); i++) {
818 AudioSessionRef *r = mAudioSessionRefs[i];
819 const mediautils::UidInfo::Info info = mUidInfo.getInfo(r->mUid);
820 result.appendFormat(" %7d %4d %7d %6u %s\n", r->mSessionid, r->mCnt, r->mPid,
821 r->mUid, info.package.c_str());
822 }
823 write(fd, result.string(), result.size());
824 }
825
826
dumpInternals(int fd,const Vector<String16> & args __unused)827 void AudioFlinger::dumpInternals(int fd, const Vector<String16>& args __unused)
828 {
829 const size_t SIZE = 256;
830 char buffer[SIZE];
831 String8 result;
832 hardware_call_state hardwareStatus = mHardwareStatus;
833
834 snprintf(buffer, SIZE, "Hardware status: %d\n"
835 "Standby Time mSec: %u\n",
836 hardwareStatus,
837 (uint32_t)(mStandbyTimeInNsecs / 1000000));
838 result.append(buffer);
839 write(fd, result.string(), result.size());
840
841 dprintf(fd, "Vibrator infos(size=%zu):\n", mAudioVibratorInfos.size());
842 for (const auto& vibratorInfo : mAudioVibratorInfos) {
843 dprintf(fd, " - %s\n", vibratorInfo.toString().c_str());
844 }
845 dprintf(fd, "Bluetooth latency modes are %senabled\n",
846 mBluetoothLatencyModesEnabled ? "" : "not ");
847 }
848
dumpPermissionDenial(int fd,const Vector<String16> & args __unused)849 void AudioFlinger::dumpPermissionDenial(int fd, const Vector<String16>& args __unused)
850 {
851 const size_t SIZE = 256;
852 char buffer[SIZE];
853 String8 result;
854 snprintf(buffer, SIZE, "Permission Denial: "
855 "can't dump AudioFlinger from pid=%d, uid=%d\n",
856 IPCThreadState::self()->getCallingPid(),
857 IPCThreadState::self()->getCallingUid());
858 result.append(buffer);
859 write(fd, result.string(), result.size());
860 }
861
dumpTryLock(Mutex & mutex)862 bool AudioFlinger::dumpTryLock(Mutex& mutex)
863 {
864 status_t err = mutex.timedLock(kDumpLockTimeoutNs);
865 return err == NO_ERROR;
866 }
867
dump(int fd,const Vector<String16> & args)868 status_t AudioFlinger::dump(int fd, const Vector<String16>& args)
869 NO_THREAD_SAFETY_ANALYSIS // conditional try lock
870 {
871 if (!dumpAllowed()) {
872 dumpPermissionDenial(fd, args);
873 } else {
874 // get state of hardware lock
875 bool hardwareLocked = dumpTryLock(mHardwareLock);
876 if (!hardwareLocked) {
877 String8 result(kHardwareLockedString);
878 write(fd, result.string(), result.size());
879 } else {
880 mHardwareLock.unlock();
881 }
882
883 const bool locked = dumpTryLock(mLock);
884
885 // failed to lock - AudioFlinger is probably deadlocked
886 if (!locked) {
887 String8 result(kDeadlockedString);
888 write(fd, result.string(), result.size());
889 }
890
891 bool clientLocked = dumpTryLock(mClientLock);
892 if (!clientLocked) {
893 String8 result(kClientLockedString);
894 write(fd, result.string(), result.size());
895 }
896
897 if (mEffectsFactoryHal != 0) {
898 mEffectsFactoryHal->dumpEffects(fd);
899 } else {
900 String8 result(kNoEffectsFactory);
901 write(fd, result.string(), result.size());
902 }
903
904 dumpClients(fd, args);
905 if (clientLocked) {
906 mClientLock.unlock();
907 }
908
909 dumpInternals(fd, args);
910
911 // dump playback threads
912 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
913 mPlaybackThreads.valueAt(i)->dump(fd, args);
914 }
915
916 // dump record threads
917 for (size_t i = 0; i < mRecordThreads.size(); i++) {
918 mRecordThreads.valueAt(i)->dump(fd, args);
919 }
920
921 // dump mmap threads
922 for (size_t i = 0; i < mMmapThreads.size(); i++) {
923 mMmapThreads.valueAt(i)->dump(fd, args);
924 }
925
926 // dump orphan effect chains
927 if (mOrphanEffectChains.size() != 0) {
928 write(fd, " Orphan Effect Chains\n", strlen(" Orphan Effect Chains\n"));
929 for (size_t i = 0; i < mOrphanEffectChains.size(); i++) {
930 mOrphanEffectChains.valueAt(i)->dump(fd, args);
931 }
932 }
933 // dump all hardware devs
934 for (size_t i = 0; i < mAudioHwDevs.size(); i++) {
935 sp<DeviceHalInterface> dev = mAudioHwDevs.valueAt(i)->hwDevice();
936 dev->dump(fd, args);
937 }
938
939 mPatchPanel.dump(fd);
940
941 mDeviceEffectManager->dump(fd);
942
943 std::string melOutput = mMelReporter->dump();
944 write(fd, melOutput.c_str(), melOutput.size());
945
946 // dump external setParameters
947 auto dumpLogger = [fd](SimpleLog& logger, const char* name) {
948 dprintf(fd, "\n%s setParameters:\n", name);
949 logger.dump(fd, " " /* prefix */);
950 };
951 dumpLogger(mRejectedSetParameterLog, "Rejected");
952 dumpLogger(mAppSetParameterLog, "App");
953 dumpLogger(mSystemSetParameterLog, "System");
954
955 // dump historical threads in the last 10 seconds
956 const std::string threadLog = mThreadLog.dumpToString(
957 "Historical Thread Log ", 0 /* lines */,
958 audio_utils_get_real_time_ns() - 10 * 60 * NANOS_PER_SECOND);
959 write(fd, threadLog.c_str(), threadLog.size());
960
961 BUFLOG_RESET;
962
963 if (locked) {
964 mLock.unlock();
965 }
966
967 #ifdef TEE_SINK
968 // NBAIO_Tee dump is safe to call outside of AF lock.
969 NBAIO_Tee::dumpAll(fd, "_DUMP");
970 #endif
971 // append a copy of media.log here by forwarding fd to it, but don't attempt
972 // to lookup the service if it's not running, as it will block for a second
973 if (sMediaLogServiceAsBinder != 0) {
974 dprintf(fd, "\nmedia.log:\n");
975 sMediaLogServiceAsBinder->dump(fd, args);
976 }
977
978 // check for optional arguments
979 bool dumpMem = false;
980 bool unreachableMemory = false;
981 for (const auto &arg : args) {
982 if (arg == String16("-m")) {
983 dumpMem = true;
984 } else if (arg == String16("--unreachable")) {
985 unreachableMemory = true;
986 }
987 }
988
989 if (dumpMem) {
990 dprintf(fd, "\nDumping memory:\n");
991 std::string s = dumpMemoryAddresses(100 /* limit */);
992 write(fd, s.c_str(), s.size());
993 }
994 if (unreachableMemory) {
995 dprintf(fd, "\nDumping unreachable memory:\n");
996 // TODO - should limit be an argument parameter?
997 std::string s = GetUnreachableMemoryString(true /* contents */, 100 /* limit */);
998 write(fd, s.c_str(), s.size());
999 }
1000 {
1001 std::string timeCheckStats = getIAudioFlingerStatistics().dump();
1002 dprintf(fd, "\nIAudioFlinger binder call profile:\n");
1003 write(fd, timeCheckStats.c_str(), timeCheckStats.size());
1004
1005 extern mediautils::MethodStatistics<int>& getIEffectStatistics();
1006 timeCheckStats = getIEffectStatistics().dump();
1007 dprintf(fd, "\nIEffect binder call profile:\n");
1008 write(fd, timeCheckStats.c_str(), timeCheckStats.size());
1009
1010 // Automatically fetch HIDL statistics.
1011 std::shared_ptr<std::vector<std::string>> hidlClassNames =
1012 mediautils::getStatisticsClassesForModule(
1013 METHOD_STATISTICS_MODULE_NAME_AUDIO_HIDL);
1014 if (hidlClassNames) {
1015 for (const auto& className : *hidlClassNames) {
1016 auto stats = mediautils::getStatisticsForClass(className);
1017 if (stats) {
1018 timeCheckStats = stats->dump();
1019 dprintf(fd, "\n%s binder call profile:\n", className.c_str());
1020 write(fd, timeCheckStats.c_str(), timeCheckStats.size());
1021 }
1022 }
1023 }
1024
1025 timeCheckStats = mediautils::TimeCheck::toString();
1026 dprintf(fd, "\nTimeCheck:\n");
1027 write(fd, timeCheckStats.c_str(), timeCheckStats.size());
1028 dprintf(fd, "\n");
1029 }
1030 }
1031 return NO_ERROR;
1032 }
1033
registerPid(pid_t pid)1034 sp<AudioFlinger::Client> AudioFlinger::registerPid(pid_t pid)
1035 {
1036 Mutex::Autolock _cl(mClientLock);
1037 // If pid is already in the mClients wp<> map, then use that entry
1038 // (for which promote() is always != 0), otherwise create a new entry and Client.
1039 sp<Client> client = mClients.valueFor(pid).promote();
1040 if (client == 0) {
1041 client = new Client(this, pid);
1042 mClients.add(pid, client);
1043 }
1044
1045 return client;
1046 }
1047
newWriter_l(size_t size,const char * name)1048 sp<NBLog::Writer> AudioFlinger::newWriter_l(size_t size, const char *name)
1049 {
1050 // If there is no memory allocated for logs, return a no-op writer that does nothing.
1051 // Similarly if we can't contact the media.log service, also return a no-op writer.
1052 if (mLogMemoryDealer == 0 || sMediaLogService == 0) {
1053 return new NBLog::Writer();
1054 }
1055 sp<IMemory> shared = mLogMemoryDealer->allocate(NBLog::Timeline::sharedSize(size));
1056 // If allocation fails, consult the vector of previously unregistered writers
1057 // and garbage-collect one or more them until an allocation succeeds
1058 if (shared == 0) {
1059 Mutex::Autolock _l(mUnregisteredWritersLock);
1060 for (size_t count = mUnregisteredWriters.size(); count > 0; count--) {
1061 {
1062 // Pick the oldest stale writer to garbage-collect
1063 sp<IMemory> iMemory(mUnregisteredWriters[0]->getIMemory());
1064 mUnregisteredWriters.removeAt(0);
1065 sMediaLogService->unregisterWriter(iMemory);
1066 // Now the media.log remote reference to IMemory is gone. When our last local
1067 // reference to IMemory also drops to zero at end of this block,
1068 // the IMemory destructor will deallocate the region from mLogMemoryDealer.
1069 }
1070 // Re-attempt the allocation
1071 shared = mLogMemoryDealer->allocate(NBLog::Timeline::sharedSize(size));
1072 if (shared != 0) {
1073 goto success;
1074 }
1075 }
1076 // Even after garbage-collecting all old writers, there is still not enough memory,
1077 // so return a no-op writer
1078 return new NBLog::Writer();
1079 }
1080 success:
1081 NBLog::Shared *sharedRawPtr = (NBLog::Shared *) shared->unsecurePointer();
1082 new((void *) sharedRawPtr) NBLog::Shared(); // placement new here, but the corresponding
1083 // explicit destructor not needed since it is POD
1084 sMediaLogService->registerWriter(shared, size, name);
1085 return new NBLog::Writer(shared, size);
1086 }
1087
unregisterWriter(const sp<NBLog::Writer> & writer)1088 void AudioFlinger::unregisterWriter(const sp<NBLog::Writer>& writer)
1089 {
1090 if (writer == 0) {
1091 return;
1092 }
1093 sp<IMemory> iMemory(writer->getIMemory());
1094 if (iMemory == 0) {
1095 return;
1096 }
1097 // Rather than removing the writer immediately, append it to a queue of old writers to
1098 // be garbage-collected later. This allows us to continue to view old logs for a while.
1099 Mutex::Autolock _l(mUnregisteredWritersLock);
1100 mUnregisteredWriters.push(writer);
1101 }
1102
1103 // IAudioFlinger interface
1104
createTrack(const media::CreateTrackRequest & _input,media::CreateTrackResponse & _output)1105 status_t AudioFlinger::createTrack(const media::CreateTrackRequest& _input,
1106 media::CreateTrackResponse& _output)
1107 {
1108 // Local version of VALUE_OR_RETURN, specific to this method's calling conventions.
1109 CreateTrackInput input = VALUE_OR_RETURN_STATUS(CreateTrackInput::fromAidl(_input));
1110 CreateTrackOutput output;
1111
1112 sp<PlaybackThread::Track> track;
1113 sp<TrackHandle> trackHandle;
1114 sp<Client> client;
1115 status_t lStatus;
1116 audio_stream_type_t streamType;
1117 audio_port_handle_t portId = AUDIO_PORT_HANDLE_NONE;
1118 std::vector<audio_io_handle_t> secondaryOutputs;
1119 bool isSpatialized = false;
1120 bool isBitPerfect = false;
1121
1122 // TODO b/182392553: refactor or make clearer
1123 pid_t clientPid =
1124 VALUE_OR_RETURN_STATUS(aidl2legacy_int32_t_pid_t(input.clientInfo.attributionSource.pid));
1125 bool updatePid = (clientPid == (pid_t)-1);
1126 const uid_t callingUid = IPCThreadState::self()->getCallingUid();
1127 uid_t clientUid =
1128 VALUE_OR_RETURN_STATUS(aidl2legacy_int32_t_uid_t(input.clientInfo.attributionSource.uid));
1129 audio_io_handle_t effectThreadId = AUDIO_IO_HANDLE_NONE;
1130 std::vector<int> effectIds;
1131 audio_attributes_t localAttr = input.attr;
1132
1133 AttributionSourceState adjAttributionSource = input.clientInfo.attributionSource;
1134 if (!isAudioServerOrMediaServerOrSystemServerOrRootUid(callingUid)) {
1135 ALOGW_IF(clientUid != callingUid,
1136 "%s uid %d tried to pass itself off as %d",
1137 __FUNCTION__, callingUid, clientUid);
1138 adjAttributionSource.uid = VALUE_OR_RETURN_STATUS(legacy2aidl_uid_t_int32_t(callingUid));
1139 clientUid = callingUid;
1140 updatePid = true;
1141 }
1142 const pid_t callingPid = IPCThreadState::self()->getCallingPid();
1143 if (updatePid) {
1144 ALOGW_IF(clientPid != (pid_t)-1 && clientPid != callingPid,
1145 "%s uid %d pid %d tried to pass itself off as pid %d",
1146 __func__, callingUid, callingPid, clientPid);
1147 clientPid = callingPid;
1148 adjAttributionSource.pid = VALUE_OR_RETURN_STATUS(legacy2aidl_pid_t_int32_t(callingPid));
1149 }
1150 adjAttributionSource = AudioFlinger::checkAttributionSourcePackage(
1151 adjAttributionSource);
1152
1153 audio_session_t sessionId = input.sessionId;
1154 if (sessionId == AUDIO_SESSION_ALLOCATE) {
1155 sessionId = (audio_session_t) newAudioUniqueId(AUDIO_UNIQUE_ID_USE_SESSION);
1156 } else if (audio_unique_id_get_use(sessionId) != AUDIO_UNIQUE_ID_USE_SESSION) {
1157 lStatus = BAD_VALUE;
1158 goto Exit;
1159 }
1160
1161 output.sessionId = sessionId;
1162 output.outputId = AUDIO_IO_HANDLE_NONE;
1163 output.selectedDeviceId = input.selectedDeviceId;
1164 lStatus = AudioSystem::getOutputForAttr(&localAttr, &output.outputId, sessionId, &streamType,
1165 adjAttributionSource, &input.config, input.flags,
1166 &output.selectedDeviceId, &portId, &secondaryOutputs,
1167 &isSpatialized, &isBitPerfect);
1168
1169 if (lStatus != NO_ERROR || output.outputId == AUDIO_IO_HANDLE_NONE) {
1170 ALOGE("createTrack() getOutputForAttr() return error %d or invalid output handle", lStatus);
1171 goto Exit;
1172 }
1173 // client AudioTrack::set already implements AUDIO_STREAM_DEFAULT => AUDIO_STREAM_MUSIC,
1174 // but if someone uses binder directly they could bypass that and cause us to crash
1175 if (uint32_t(streamType) >= AUDIO_STREAM_CNT) {
1176 ALOGE("createTrack() invalid stream type %d", streamType);
1177 lStatus = BAD_VALUE;
1178 goto Exit;
1179 }
1180
1181 // further channel mask checks are performed by createTrack_l() depending on the thread type
1182 if (!audio_is_output_channel(input.config.channel_mask)) {
1183 ALOGE("createTrack() invalid channel mask %#x", input.config.channel_mask);
1184 lStatus = BAD_VALUE;
1185 goto Exit;
1186 }
1187
1188 // further format checks are performed by createTrack_l() depending on the thread type
1189 if (!audio_is_valid_format(input.config.format)) {
1190 ALOGE("createTrack() invalid format %#x", input.config.format);
1191 lStatus = BAD_VALUE;
1192 goto Exit;
1193 }
1194
1195 {
1196 Mutex::Autolock _l(mLock);
1197 PlaybackThread *thread = checkPlaybackThread_l(output.outputId);
1198 if (thread == NULL) {
1199 ALOGE("no playback thread found for output handle %d", output.outputId);
1200 lStatus = BAD_VALUE;
1201 goto Exit;
1202 }
1203
1204 client = registerPid(clientPid);
1205
1206 PlaybackThread *effectThread = NULL;
1207 // check if an effect chain with the same session ID is present on another
1208 // output thread and move it here.
1209 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
1210 sp<PlaybackThread> t = mPlaybackThreads.valueAt(i);
1211 if (mPlaybackThreads.keyAt(i) != output.outputId) {
1212 uint32_t sessions = t->hasAudioSession(sessionId);
1213 if (sessions & ThreadBase::EFFECT_SESSION) {
1214 effectThread = t.get();
1215 break;
1216 }
1217 }
1218 }
1219 ALOGV("createTrack() sessionId: %d", sessionId);
1220
1221 output.sampleRate = input.config.sample_rate;
1222 output.frameCount = input.frameCount;
1223 output.notificationFrameCount = input.notificationFrameCount;
1224 output.flags = input.flags;
1225 output.streamType = streamType;
1226
1227 track = thread->createTrack_l(client, streamType, localAttr, &output.sampleRate,
1228 input.config.format, input.config.channel_mask,
1229 &output.frameCount, &output.notificationFrameCount,
1230 input.notificationsPerBuffer, input.speed,
1231 input.sharedBuffer, sessionId, &output.flags,
1232 callingPid, adjAttributionSource, input.clientInfo.clientTid,
1233 &lStatus, portId, input.audioTrackCallback, isSpatialized,
1234 isBitPerfect);
1235 LOG_ALWAYS_FATAL_IF((lStatus == NO_ERROR) && (track == 0));
1236 // we don't abort yet if lStatus != NO_ERROR; there is still work to be done regardless
1237
1238 output.afFrameCount = thread->frameCount();
1239 output.afSampleRate = thread->sampleRate();
1240 output.afChannelMask = static_cast<audio_channel_mask_t>(thread->channelMask() |
1241 thread->hapticChannelMask());
1242 output.afFormat = thread->format();
1243 output.afLatencyMs = thread->latency();
1244 output.portId = portId;
1245
1246 if (lStatus == NO_ERROR) {
1247 // no risk of deadlock because AudioFlinger::mLock is held
1248 Mutex::Autolock _dl(thread->mLock);
1249 // Connect secondary outputs. Failure on a secondary output must not imped the primary
1250 // Any secondary output setup failure will lead to a desync between the AP and AF until
1251 // the track is destroyed.
1252 updateSecondaryOutputsForTrack_l(track.get(), thread, secondaryOutputs);
1253 // move effect chain to this output thread if an effect on same session was waiting
1254 // for a track to be created
1255 if (effectThread != nullptr) {
1256 Mutex::Autolock _sl(effectThread->mLock);
1257 if (moveEffectChain_l(sessionId, effectThread, thread) == NO_ERROR) {
1258 effectThreadId = thread->id();
1259 effectIds = thread->getEffectIds_l(sessionId);
1260 }
1261 }
1262 }
1263
1264 // Look for sync events awaiting for a session to be used.
1265 for (size_t i = 0; i < mPendingSyncEvents.size(); i++) {
1266 if (mPendingSyncEvents[i]->triggerSession() == sessionId) {
1267 if (thread->isValidSyncEvent(mPendingSyncEvents[i])) {
1268 if (lStatus == NO_ERROR) {
1269 (void) track->setSyncEvent(mPendingSyncEvents[i]);
1270 } else {
1271 mPendingSyncEvents[i]->cancel();
1272 }
1273 mPendingSyncEvents.removeAt(i);
1274 i--;
1275 }
1276 }
1277 }
1278 if ((output.flags & AUDIO_OUTPUT_FLAG_HW_AV_SYNC) == AUDIO_OUTPUT_FLAG_HW_AV_SYNC) {
1279 setAudioHwSyncForSession_l(thread, sessionId);
1280 }
1281 }
1282
1283 if (lStatus != NO_ERROR) {
1284 // remove local strong reference to Client before deleting the Track so that the
1285 // Client destructor is called by the TrackBase destructor with mClientLock held
1286 // Don't hold mClientLock when releasing the reference on the track as the
1287 // destructor will acquire it.
1288 {
1289 Mutex::Autolock _cl(mClientLock);
1290 client.clear();
1291 }
1292 track.clear();
1293 goto Exit;
1294 }
1295
1296 // effectThreadId is not NONE if an effect chain corresponding to the track session
1297 // was found on another thread and must be moved on this thread
1298 if (effectThreadId != AUDIO_IO_HANDLE_NONE) {
1299 AudioSystem::moveEffectsToIo(effectIds, effectThreadId);
1300 }
1301
1302 output.audioTrack = new TrackHandle(track);
1303 _output = VALUE_OR_FATAL(output.toAidl());
1304
1305 Exit:
1306 if (lStatus != NO_ERROR && output.outputId != AUDIO_IO_HANDLE_NONE) {
1307 AudioSystem::releaseOutput(portId);
1308 }
1309 return lStatus;
1310 }
1311
sampleRate(audio_io_handle_t ioHandle) const1312 uint32_t AudioFlinger::sampleRate(audio_io_handle_t ioHandle) const
1313 {
1314 Mutex::Autolock _l(mLock);
1315 ThreadBase *thread = checkThread_l(ioHandle);
1316 if (thread == NULL) {
1317 ALOGW("sampleRate() unknown thread %d", ioHandle);
1318 return 0;
1319 }
1320 return thread->sampleRate();
1321 }
1322
format(audio_io_handle_t output) const1323 audio_format_t AudioFlinger::format(audio_io_handle_t output) const
1324 {
1325 Mutex::Autolock _l(mLock);
1326 PlaybackThread *thread = checkPlaybackThread_l(output);
1327 if (thread == NULL) {
1328 ALOGW("format() unknown thread %d", output);
1329 return AUDIO_FORMAT_INVALID;
1330 }
1331 return thread->format();
1332 }
1333
frameCount(audio_io_handle_t ioHandle) const1334 size_t AudioFlinger::frameCount(audio_io_handle_t ioHandle) const
1335 {
1336 Mutex::Autolock _l(mLock);
1337 ThreadBase *thread = checkThread_l(ioHandle);
1338 if (thread == NULL) {
1339 ALOGW("frameCount() unknown thread %d", ioHandle);
1340 return 0;
1341 }
1342 // FIXME currently returns the normal mixer's frame count to avoid confusing legacy callers;
1343 // should examine all callers and fix them to handle smaller counts
1344 return thread->frameCount();
1345 }
1346
frameCountHAL(audio_io_handle_t ioHandle) const1347 size_t AudioFlinger::frameCountHAL(audio_io_handle_t ioHandle) const
1348 {
1349 Mutex::Autolock _l(mLock);
1350 ThreadBase *thread = checkThread_l(ioHandle);
1351 if (thread == NULL) {
1352 ALOGW("frameCountHAL() unknown thread %d", ioHandle);
1353 return 0;
1354 }
1355 return thread->frameCountHAL();
1356 }
1357
latency(audio_io_handle_t output) const1358 uint32_t AudioFlinger::latency(audio_io_handle_t output) const
1359 {
1360 Mutex::Autolock _l(mLock);
1361 PlaybackThread *thread = checkPlaybackThread_l(output);
1362 if (thread == NULL) {
1363 ALOGW("latency(): no playback thread found for output handle %d", output);
1364 return 0;
1365 }
1366 return thread->latency();
1367 }
1368
setMasterVolume(float value)1369 status_t AudioFlinger::setMasterVolume(float value)
1370 {
1371 status_t ret = initCheck();
1372 if (ret != NO_ERROR) {
1373 return ret;
1374 }
1375
1376 // check calling permissions
1377 if (!settingsAllowed()) {
1378 return PERMISSION_DENIED;
1379 }
1380
1381 Mutex::Autolock _l(mLock);
1382 mMasterVolume = value;
1383
1384 // Set master volume in the HALs which support it.
1385 {
1386 AutoMutex lock(mHardwareLock);
1387 for (size_t i = 0; i < mAudioHwDevs.size(); i++) {
1388 AudioHwDevice *dev = mAudioHwDevs.valueAt(i);
1389
1390 mHardwareStatus = AUDIO_HW_SET_MASTER_VOLUME;
1391 if (dev->canSetMasterVolume()) {
1392 dev->hwDevice()->setMasterVolume(value);
1393 }
1394 mHardwareStatus = AUDIO_HW_IDLE;
1395 }
1396 }
1397 // Now set the master volume in each playback thread. Playback threads
1398 // assigned to HALs which do not have master volume support will apply
1399 // master volume during the mix operation. Threads with HALs which do
1400 // support master volume will simply ignore the setting.
1401 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
1402 if (mPlaybackThreads.valueAt(i)->isDuplicating()) {
1403 continue;
1404 }
1405 mPlaybackThreads.valueAt(i)->setMasterVolume(value);
1406 }
1407
1408 return NO_ERROR;
1409 }
1410
setMasterBalance(float balance)1411 status_t AudioFlinger::setMasterBalance(float balance)
1412 {
1413 status_t ret = initCheck();
1414 if (ret != NO_ERROR) {
1415 return ret;
1416 }
1417
1418 // check calling permissions
1419 if (!settingsAllowed()) {
1420 return PERMISSION_DENIED;
1421 }
1422
1423 // check range
1424 if (isnan(balance) || fabs(balance) > 1.f) {
1425 return BAD_VALUE;
1426 }
1427
1428 Mutex::Autolock _l(mLock);
1429
1430 // short cut.
1431 if (mMasterBalance == balance) return NO_ERROR;
1432
1433 mMasterBalance = balance;
1434
1435 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
1436 if (mPlaybackThreads.valueAt(i)->isDuplicating()) {
1437 continue;
1438 }
1439 mPlaybackThreads.valueAt(i)->setMasterBalance(balance);
1440 }
1441
1442 return NO_ERROR;
1443 }
1444
setMode(audio_mode_t mode)1445 status_t AudioFlinger::setMode(audio_mode_t mode)
1446 {
1447 status_t ret = initCheck();
1448 if (ret != NO_ERROR) {
1449 return ret;
1450 }
1451
1452 // check calling permissions
1453 if (!settingsAllowed()) {
1454 return PERMISSION_DENIED;
1455 }
1456 if (uint32_t(mode) >= AUDIO_MODE_CNT) {
1457 ALOGW("Illegal value: setMode(%d)", mode);
1458 return BAD_VALUE;
1459 }
1460
1461 { // scope for the lock
1462 AutoMutex lock(mHardwareLock);
1463 if (mPrimaryHardwareDev == nullptr) {
1464 return INVALID_OPERATION;
1465 }
1466 sp<DeviceHalInterface> dev = mPrimaryHardwareDev->hwDevice();
1467 mHardwareStatus = AUDIO_HW_SET_MODE;
1468 ret = dev->setMode(mode);
1469 mHardwareStatus = AUDIO_HW_IDLE;
1470 }
1471
1472 if (NO_ERROR == ret) {
1473 Mutex::Autolock _l(mLock);
1474 mMode = mode;
1475 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
1476 mPlaybackThreads.valueAt(i)->setMode(mode);
1477 }
1478 }
1479
1480 mediametrics::LogItem(mMetricsId)
1481 .set(AMEDIAMETRICS_PROP_EVENT, AMEDIAMETRICS_PROP_EVENT_VALUE_SETMODE)
1482 .set(AMEDIAMETRICS_PROP_AUDIOMODE, toString(mode))
1483 .record();
1484 return ret;
1485 }
1486
setMicMute(bool state)1487 status_t AudioFlinger::setMicMute(bool state)
1488 {
1489 status_t ret = initCheck();
1490 if (ret != NO_ERROR) {
1491 return ret;
1492 }
1493
1494 // check calling permissions
1495 if (!settingsAllowed()) {
1496 return PERMISSION_DENIED;
1497 }
1498
1499 AutoMutex lock(mHardwareLock);
1500 if (mPrimaryHardwareDev == nullptr) {
1501 return INVALID_OPERATION;
1502 }
1503 sp<DeviceHalInterface> primaryDev = mPrimaryHardwareDev->hwDevice();
1504 if (primaryDev == nullptr) {
1505 ALOGW("%s: no primary HAL device", __func__);
1506 return INVALID_OPERATION;
1507 }
1508 mHardwareStatus = AUDIO_HW_SET_MIC_MUTE;
1509 ret = primaryDev->setMicMute(state);
1510 for (size_t i = 0; i < mAudioHwDevs.size(); i++) {
1511 sp<DeviceHalInterface> dev = mAudioHwDevs.valueAt(i)->hwDevice();
1512 if (dev != primaryDev) {
1513 (void)dev->setMicMute(state);
1514 }
1515 }
1516 mHardwareStatus = AUDIO_HW_IDLE;
1517 ALOGW_IF(ret != NO_ERROR, "%s: error %d setting state to HAL", __func__, ret);
1518 return ret;
1519 }
1520
getMicMute() const1521 bool AudioFlinger::getMicMute() const
1522 {
1523 status_t ret = initCheck();
1524 if (ret != NO_ERROR) {
1525 return false;
1526 }
1527 AutoMutex lock(mHardwareLock);
1528 if (mPrimaryHardwareDev == nullptr) {
1529 return false;
1530 }
1531 sp<DeviceHalInterface> primaryDev = mPrimaryHardwareDev->hwDevice();
1532 if (primaryDev == nullptr) {
1533 ALOGW("%s: no primary HAL device", __func__);
1534 return false;
1535 }
1536 bool state;
1537 mHardwareStatus = AUDIO_HW_GET_MIC_MUTE;
1538 ret = primaryDev->getMicMute(&state);
1539 mHardwareStatus = AUDIO_HW_IDLE;
1540 ALOGE_IF(ret != NO_ERROR, "%s: error %d getting state from HAL", __func__, ret);
1541 return (ret == NO_ERROR) && state;
1542 }
1543
setRecordSilenced(audio_port_handle_t portId,bool silenced)1544 void AudioFlinger::setRecordSilenced(audio_port_handle_t portId, bool silenced)
1545 {
1546 ALOGV("AudioFlinger::setRecordSilenced(portId:%d, silenced:%d)", portId, silenced);
1547
1548 AutoMutex lock(mLock);
1549 for (size_t i = 0; i < mRecordThreads.size(); i++) {
1550 mRecordThreads[i]->setRecordSilenced(portId, silenced);
1551 }
1552 for (size_t i = 0; i < mMmapThreads.size(); i++) {
1553 mMmapThreads[i]->setRecordSilenced(portId, silenced);
1554 }
1555 }
1556
setMasterMute(bool muted)1557 status_t AudioFlinger::setMasterMute(bool muted)
1558 {
1559 status_t ret = initCheck();
1560 if (ret != NO_ERROR) {
1561 return ret;
1562 }
1563
1564 // check calling permissions
1565 if (!settingsAllowed()) {
1566 return PERMISSION_DENIED;
1567 }
1568
1569 Mutex::Autolock _l(mLock);
1570 mMasterMute = muted;
1571
1572 // Set master mute in the HALs which support it.
1573 {
1574 AutoMutex lock(mHardwareLock);
1575 for (size_t i = 0; i < mAudioHwDevs.size(); i++) {
1576 AudioHwDevice *dev = mAudioHwDevs.valueAt(i);
1577
1578 mHardwareStatus = AUDIO_HW_SET_MASTER_MUTE;
1579 if (dev->canSetMasterMute()) {
1580 dev->hwDevice()->setMasterMute(muted);
1581 }
1582 mHardwareStatus = AUDIO_HW_IDLE;
1583 }
1584 }
1585
1586 // Now set the master mute in each playback thread. Playback threads
1587 // assigned to HALs which do not have master mute support will apply master mute
1588 // during the mix operation. Threads with HALs which do support master mute
1589 // will simply ignore the setting.
1590 Vector<VolumeInterface *> volumeInterfaces = getAllVolumeInterfaces_l();
1591 for (size_t i = 0; i < volumeInterfaces.size(); i++) {
1592 volumeInterfaces[i]->setMasterMute(muted);
1593 }
1594
1595 return NO_ERROR;
1596 }
1597
masterVolume() const1598 float AudioFlinger::masterVolume() const
1599 {
1600 Mutex::Autolock _l(mLock);
1601 return masterVolume_l();
1602 }
1603
getMasterBalance(float * balance) const1604 status_t AudioFlinger::getMasterBalance(float *balance) const
1605 {
1606 Mutex::Autolock _l(mLock);
1607 *balance = getMasterBalance_l();
1608 return NO_ERROR; // if called through binder, may return a transactional error
1609 }
1610
masterMute() const1611 bool AudioFlinger::masterMute() const
1612 {
1613 Mutex::Autolock _l(mLock);
1614 return masterMute_l();
1615 }
1616
masterVolume_l() const1617 float AudioFlinger::masterVolume_l() const
1618 {
1619 return mMasterVolume;
1620 }
1621
getMasterBalance_l() const1622 float AudioFlinger::getMasterBalance_l() const
1623 {
1624 return mMasterBalance;
1625 }
1626
masterMute_l() const1627 bool AudioFlinger::masterMute_l() const
1628 {
1629 return mMasterMute;
1630 }
1631
checkStreamType(audio_stream_type_t stream) const1632 status_t AudioFlinger::checkStreamType(audio_stream_type_t stream) const
1633 {
1634 if (uint32_t(stream) >= AUDIO_STREAM_CNT) {
1635 ALOGW("checkStreamType() invalid stream %d", stream);
1636 return BAD_VALUE;
1637 }
1638 const uid_t callerUid = IPCThreadState::self()->getCallingUid();
1639 if (uint32_t(stream) >= AUDIO_STREAM_PUBLIC_CNT && !isAudioServerUid(callerUid)) {
1640 ALOGW("checkStreamType() uid %d cannot use internal stream type %d", callerUid, stream);
1641 return PERMISSION_DENIED;
1642 }
1643
1644 return NO_ERROR;
1645 }
1646
setStreamVolume(audio_stream_type_t stream,float value,audio_io_handle_t output)1647 status_t AudioFlinger::setStreamVolume(audio_stream_type_t stream, float value,
1648 audio_io_handle_t output)
1649 {
1650 // check calling permissions
1651 if (!settingsAllowed()) {
1652 return PERMISSION_DENIED;
1653 }
1654
1655 status_t status = checkStreamType(stream);
1656 if (status != NO_ERROR) {
1657 return status;
1658 }
1659 if (output == AUDIO_IO_HANDLE_NONE) {
1660 return BAD_VALUE;
1661 }
1662 LOG_ALWAYS_FATAL_IF(stream == AUDIO_STREAM_PATCH && value != 1.0f,
1663 "AUDIO_STREAM_PATCH must have full scale volume");
1664
1665 AutoMutex lock(mLock);
1666 VolumeInterface *volumeInterface = getVolumeInterface_l(output);
1667 if (volumeInterface == NULL) {
1668 return BAD_VALUE;
1669 }
1670 volumeInterface->setStreamVolume(stream, value);
1671
1672 return NO_ERROR;
1673 }
1674
setRequestedLatencyMode(audio_io_handle_t output,audio_latency_mode_t mode)1675 status_t AudioFlinger::setRequestedLatencyMode(
1676 audio_io_handle_t output, audio_latency_mode_t mode) {
1677 if (output == AUDIO_IO_HANDLE_NONE) {
1678 return BAD_VALUE;
1679 }
1680 AutoMutex lock(mLock);
1681 PlaybackThread *thread = checkPlaybackThread_l(output);
1682 if (thread == nullptr) {
1683 return BAD_VALUE;
1684 }
1685 return thread->setRequestedLatencyMode(mode);
1686 }
1687
getSupportedLatencyModes(audio_io_handle_t output,std::vector<audio_latency_mode_t> * modes)1688 status_t AudioFlinger::getSupportedLatencyModes(audio_io_handle_t output,
1689 std::vector<audio_latency_mode_t>* modes) {
1690 if (output == AUDIO_IO_HANDLE_NONE) {
1691 return BAD_VALUE;
1692 }
1693 AutoMutex lock(mLock);
1694 PlaybackThread *thread = checkPlaybackThread_l(output);
1695 if (thread == nullptr) {
1696 return BAD_VALUE;
1697 }
1698 return thread->getSupportedLatencyModes(modes);
1699 }
1700
setBluetoothVariableLatencyEnabled(bool enabled)1701 status_t AudioFlinger::setBluetoothVariableLatencyEnabled(bool enabled) {
1702 Mutex::Autolock _l(mLock);
1703 status_t status = INVALID_OPERATION;
1704 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
1705 // Success if at least one PlaybackThread supports Bluetooth latency modes
1706 if (mPlaybackThreads.valueAt(i)->setBluetoothVariableLatencyEnabled(enabled) == NO_ERROR) {
1707 status = NO_ERROR;
1708 }
1709 }
1710 if (status == NO_ERROR) {
1711 mBluetoothLatencyModesEnabled.store(enabled);
1712 }
1713 return status;
1714 }
1715
isBluetoothVariableLatencyEnabled(bool * enabled)1716 status_t AudioFlinger::isBluetoothVariableLatencyEnabled(bool *enabled) {
1717 if (enabled == nullptr) {
1718 return BAD_VALUE;
1719 }
1720 *enabled = mBluetoothLatencyModesEnabled.load();
1721 return NO_ERROR;
1722 }
1723
supportsBluetoothVariableLatency(bool * support)1724 status_t AudioFlinger::supportsBluetoothVariableLatency(bool* support) {
1725 if (support == nullptr) {
1726 return BAD_VALUE;
1727 }
1728 Mutex::Autolock _l(mLock);
1729 *support = false;
1730 for (size_t i = 0; i < mAudioHwDevs.size(); i++) {
1731 if (mAudioHwDevs.valueAt(i)->supportsBluetoothVariableLatency()) {
1732 *support = true;
1733 break;
1734 }
1735 }
1736 return NO_ERROR;
1737 }
1738
getSoundDoseInterface(const sp<media::ISoundDoseCallback> & callback,sp<media::ISoundDose> * soundDose)1739 status_t AudioFlinger::getSoundDoseInterface(const sp<media::ISoundDoseCallback>& callback,
1740 sp<media::ISoundDose>* soundDose) {
1741 if (soundDose == nullptr) {
1742 return BAD_VALUE;
1743 }
1744
1745 *soundDose = mMelReporter->getSoundDoseInterface(callback);
1746 return NO_ERROR;
1747 }
1748
setStreamMute(audio_stream_type_t stream,bool muted)1749 status_t AudioFlinger::setStreamMute(audio_stream_type_t stream, bool muted)
1750 {
1751 // check calling permissions
1752 if (!settingsAllowed()) {
1753 return PERMISSION_DENIED;
1754 }
1755
1756 status_t status = checkStreamType(stream);
1757 if (status != NO_ERROR) {
1758 return status;
1759 }
1760 ALOG_ASSERT(stream != AUDIO_STREAM_PATCH, "attempt to mute AUDIO_STREAM_PATCH");
1761
1762 if (uint32_t(stream) == AUDIO_STREAM_ENFORCED_AUDIBLE) {
1763 ALOGE("setStreamMute() invalid stream %d", stream);
1764 return BAD_VALUE;
1765 }
1766
1767 AutoMutex lock(mLock);
1768 mStreamTypes[stream].mute = muted;
1769 Vector<VolumeInterface *> volumeInterfaces = getAllVolumeInterfaces_l();
1770 for (size_t i = 0; i < volumeInterfaces.size(); i++) {
1771 volumeInterfaces[i]->setStreamMute(stream, muted);
1772 }
1773
1774 return NO_ERROR;
1775 }
1776
streamVolume(audio_stream_type_t stream,audio_io_handle_t output) const1777 float AudioFlinger::streamVolume(audio_stream_type_t stream, audio_io_handle_t output) const
1778 {
1779 status_t status = checkStreamType(stream);
1780 if (status != NO_ERROR) {
1781 return 0.0f;
1782 }
1783 if (output == AUDIO_IO_HANDLE_NONE) {
1784 return 0.0f;
1785 }
1786
1787 AutoMutex lock(mLock);
1788 VolumeInterface *volumeInterface = getVolumeInterface_l(output);
1789 if (volumeInterface == NULL) {
1790 return 0.0f;
1791 }
1792
1793 return volumeInterface->streamVolume(stream);
1794 }
1795
streamMute(audio_stream_type_t stream) const1796 bool AudioFlinger::streamMute(audio_stream_type_t stream) const
1797 {
1798 status_t status = checkStreamType(stream);
1799 if (status != NO_ERROR) {
1800 return true;
1801 }
1802
1803 AutoMutex lock(mLock);
1804 return streamMute_l(stream);
1805 }
1806
1807
broadcastParametersToRecordThreads_l(const String8 & keyValuePairs)1808 void AudioFlinger::broadcastParametersToRecordThreads_l(const String8& keyValuePairs)
1809 {
1810 for (size_t i = 0; i < mRecordThreads.size(); i++) {
1811 mRecordThreads.valueAt(i)->setParameters(keyValuePairs);
1812 }
1813 }
1814
updateOutDevicesForRecordThreads_l(const DeviceDescriptorBaseVector & devices)1815 void AudioFlinger::updateOutDevicesForRecordThreads_l(const DeviceDescriptorBaseVector& devices)
1816 {
1817 for (size_t i = 0; i < mRecordThreads.size(); i++) {
1818 mRecordThreads.valueAt(i)->updateOutDevices(devices);
1819 }
1820 }
1821
1822 // forwardAudioHwSyncToDownstreamPatches_l() must be called with AudioFlinger::mLock held
forwardParametersToDownstreamPatches_l(audio_io_handle_t upStream,const String8 & keyValuePairs,const std::function<bool (const sp<PlaybackThread> &)> & useThread)1823 void AudioFlinger::forwardParametersToDownstreamPatches_l(
1824 audio_io_handle_t upStream, const String8& keyValuePairs,
1825 const std::function<bool(const sp<PlaybackThread>&)>& useThread)
1826 {
1827 std::vector<PatchPanel::SoftwarePatch> swPatches;
1828 if (mPatchPanel.getDownstreamSoftwarePatches(upStream, &swPatches) != OK) return;
1829 ALOGV_IF(!swPatches.empty(), "%s found %zu downstream patches for stream ID %d",
1830 __func__, swPatches.size(), upStream);
1831 for (const auto& swPatch : swPatches) {
1832 sp<PlaybackThread> downStream = checkPlaybackThread_l(swPatch.getPlaybackThreadHandle());
1833 if (downStream != NULL && (useThread == nullptr || useThread(downStream))) {
1834 downStream->setParameters(keyValuePairs);
1835 }
1836 }
1837 }
1838
1839 // Update downstream patches for all playback threads attached to an MSD module
updateDownStreamPatches_l(const struct audio_patch * patch,const std::set<audio_io_handle_t> & streams)1840 void AudioFlinger::updateDownStreamPatches_l(const struct audio_patch *patch,
1841 const std::set<audio_io_handle_t>& streams)
1842 {
1843 for (const audio_io_handle_t stream : streams) {
1844 PlaybackThread *playbackThread = checkPlaybackThread_l(stream);
1845 if (playbackThread == nullptr || !playbackThread->isMsdDevice()) {
1846 continue;
1847 }
1848 playbackThread->setDownStreamPatch(patch);
1849 playbackThread->sendIoConfigEvent(AUDIO_OUTPUT_CONFIG_CHANGED);
1850 }
1851 }
1852
1853 // Filter reserved keys from setParameters() before forwarding to audio HAL or acting upon.
1854 // Some keys are used for audio routing and audio path configuration and should be reserved for use
1855 // by audio policy and audio flinger for functional, privacy and security reasons.
filterReservedParameters(String8 & keyValuePairs,uid_t callingUid)1856 void AudioFlinger::filterReservedParameters(String8& keyValuePairs, uid_t callingUid)
1857 {
1858 static const String8 kReservedParameters[] = {
1859 String8(AudioParameter::keyRouting),
1860 String8(AudioParameter::keySamplingRate),
1861 String8(AudioParameter::keyFormat),
1862 String8(AudioParameter::keyChannels),
1863 String8(AudioParameter::keyFrameCount),
1864 String8(AudioParameter::keyInputSource),
1865 String8(AudioParameter::keyMonoOutput),
1866 String8(AudioParameter::keyDeviceConnect),
1867 String8(AudioParameter::keyDeviceDisconnect),
1868 String8(AudioParameter::keyStreamSupportedFormats),
1869 String8(AudioParameter::keyStreamSupportedChannels),
1870 String8(AudioParameter::keyStreamSupportedSamplingRates),
1871 String8(AudioParameter::keyClosing),
1872 String8(AudioParameter::keyExiting),
1873 };
1874
1875 if (isAudioServerUid(callingUid)) {
1876 return; // no need to filter if audioserver.
1877 }
1878
1879 AudioParameter param = AudioParameter(keyValuePairs);
1880 String8 value;
1881 AudioParameter rejectedParam;
1882 for (auto& key : kReservedParameters) {
1883 if (param.get(key, value) == NO_ERROR) {
1884 rejectedParam.add(key, value);
1885 param.remove(key);
1886 }
1887 }
1888 logFilteredParameters(param.size() + rejectedParam.size(), keyValuePairs,
1889 rejectedParam.size(), rejectedParam.toString(), callingUid);
1890 keyValuePairs = param.toString();
1891 }
1892
logFilteredParameters(size_t originalKVPSize,const String8 & originalKVPs,size_t rejectedKVPSize,const String8 & rejectedKVPs,uid_t callingUid)1893 void AudioFlinger::logFilteredParameters(size_t originalKVPSize, const String8& originalKVPs,
1894 size_t rejectedKVPSize, const String8& rejectedKVPs,
1895 uid_t callingUid) {
1896 auto prefix = String8::format("UID %5d", callingUid);
1897 auto suffix = String8::format("%zu KVP received: %s", originalKVPSize, originalKVPs.c_str());
1898 if (rejectedKVPSize != 0) {
1899 auto error = String8::format("%zu KVP rejected: %s", rejectedKVPSize, rejectedKVPs.c_str());
1900 ALOGW("%s: %s, %s, %s", __func__, prefix.c_str(), error.c_str(), suffix.c_str());
1901 mRejectedSetParameterLog.log("%s, %s, %s", prefix.c_str(), error.c_str(), suffix.c_str());
1902 } else {
1903 auto& logger = (isServiceUid(callingUid) ? mSystemSetParameterLog : mAppSetParameterLog);
1904 logger.log("%s, %s", prefix.c_str(), suffix.c_str());
1905 }
1906 }
1907
setParameters(audio_io_handle_t ioHandle,const String8 & keyValuePairs)1908 status_t AudioFlinger::setParameters(audio_io_handle_t ioHandle, const String8& keyValuePairs)
1909 {
1910 ALOGV("setParameters(): io %d, keyvalue %s, calling pid %d calling uid %d",
1911 ioHandle, keyValuePairs.string(),
1912 IPCThreadState::self()->getCallingPid(), IPCThreadState::self()->getCallingUid());
1913
1914 // check calling permissions
1915 if (!settingsAllowed()) {
1916 return PERMISSION_DENIED;
1917 }
1918
1919 String8 filteredKeyValuePairs = keyValuePairs;
1920 filterReservedParameters(filteredKeyValuePairs, IPCThreadState::self()->getCallingUid());
1921
1922 ALOGV("%s: filtered keyvalue %s", __func__, filteredKeyValuePairs.string());
1923
1924 // AUDIO_IO_HANDLE_NONE means the parameters are global to the audio hardware interface
1925 if (ioHandle == AUDIO_IO_HANDLE_NONE) {
1926 Mutex::Autolock _l(mLock);
1927 // result will remain NO_INIT if no audio device is present
1928 status_t final_result = NO_INIT;
1929 {
1930 AutoMutex lock(mHardwareLock);
1931 mHardwareStatus = AUDIO_HW_SET_PARAMETER;
1932 for (size_t i = 0; i < mAudioHwDevs.size(); i++) {
1933 sp<DeviceHalInterface> dev = mAudioHwDevs.valueAt(i)->hwDevice();
1934 status_t result = dev->setParameters(filteredKeyValuePairs);
1935 // return success if at least one audio device accepts the parameters as not all
1936 // HALs are requested to support all parameters. If no audio device supports the
1937 // requested parameters, the last error is reported.
1938 if (final_result != NO_ERROR) {
1939 final_result = result;
1940 }
1941 }
1942 mHardwareStatus = AUDIO_HW_IDLE;
1943 }
1944 // disable AEC and NS if the device is a BT SCO headset supporting those pre processings
1945 AudioParameter param = AudioParameter(filteredKeyValuePairs);
1946 String8 value;
1947 if (param.get(String8(AudioParameter::keyBtNrec), value) == NO_ERROR) {
1948 bool btNrecIsOff = (value == AudioParameter::valueOff);
1949 if (mBtNrecIsOff.exchange(btNrecIsOff) != btNrecIsOff) {
1950 for (size_t i = 0; i < mRecordThreads.size(); i++) {
1951 mRecordThreads.valueAt(i)->checkBtNrec();
1952 }
1953 }
1954 }
1955 String8 screenState;
1956 if (param.get(String8(AudioParameter::keyScreenState), screenState) == NO_ERROR) {
1957 bool isOff = (screenState == AudioParameter::valueOff);
1958 if (isOff != (AudioFlinger::mScreenState & 1)) {
1959 AudioFlinger::mScreenState = ((AudioFlinger::mScreenState & ~1) + 2) | isOff;
1960 }
1961 }
1962 return final_result;
1963 }
1964
1965 // hold a strong ref on thread in case closeOutput() or closeInput() is called
1966 // and the thread is exited once the lock is released
1967 sp<ThreadBase> thread;
1968 {
1969 Mutex::Autolock _l(mLock);
1970 thread = checkPlaybackThread_l(ioHandle);
1971 if (thread == 0) {
1972 thread = checkRecordThread_l(ioHandle);
1973 if (thread == 0) {
1974 thread = checkMmapThread_l(ioHandle);
1975 }
1976 } else if (thread == primaryPlaybackThread_l()) {
1977 // indicate output device change to all input threads for pre processing
1978 AudioParameter param = AudioParameter(filteredKeyValuePairs);
1979 int value;
1980 if ((param.getInt(String8(AudioParameter::keyRouting), value) == NO_ERROR) &&
1981 (value != 0)) {
1982 broadcastParametersToRecordThreads_l(filteredKeyValuePairs);
1983 }
1984 }
1985 }
1986 if (thread != 0) {
1987 status_t result = thread->setParameters(filteredKeyValuePairs);
1988 forwardParametersToDownstreamPatches_l(thread->id(), filteredKeyValuePairs);
1989 return result;
1990 }
1991 return BAD_VALUE;
1992 }
1993
getParameters(audio_io_handle_t ioHandle,const String8 & keys) const1994 String8 AudioFlinger::getParameters(audio_io_handle_t ioHandle, const String8& keys) const
1995 {
1996 ALOGVV("getParameters() io %d, keys %s, calling pid %d",
1997 ioHandle, keys.string(), IPCThreadState::self()->getCallingPid());
1998
1999 Mutex::Autolock _l(mLock);
2000
2001 if (ioHandle == AUDIO_IO_HANDLE_NONE) {
2002 String8 out_s8;
2003
2004 AutoMutex lock(mHardwareLock);
2005 for (size_t i = 0; i < mAudioHwDevs.size(); i++) {
2006 String8 s;
2007 mHardwareStatus = AUDIO_HW_GET_PARAMETER;
2008 sp<DeviceHalInterface> dev = mAudioHwDevs.valueAt(i)->hwDevice();
2009 status_t result = dev->getParameters(keys, &s);
2010 mHardwareStatus = AUDIO_HW_IDLE;
2011 if (result == OK) out_s8 += s;
2012 }
2013 return out_s8;
2014 }
2015
2016 ThreadBase *thread = (ThreadBase *)checkPlaybackThread_l(ioHandle);
2017 if (thread == NULL) {
2018 thread = (ThreadBase *)checkRecordThread_l(ioHandle);
2019 if (thread == NULL) {
2020 thread = (ThreadBase *)checkMmapThread_l(ioHandle);
2021 if (thread == NULL) {
2022 return String8("");
2023 }
2024 }
2025 }
2026 return thread->getParameters(keys);
2027 }
2028
getInputBufferSize(uint32_t sampleRate,audio_format_t format,audio_channel_mask_t channelMask) const2029 size_t AudioFlinger::getInputBufferSize(uint32_t sampleRate, audio_format_t format,
2030 audio_channel_mask_t channelMask) const
2031 {
2032 status_t ret = initCheck();
2033 if (ret != NO_ERROR) {
2034 return 0;
2035 }
2036 if ((sampleRate == 0) ||
2037 !audio_is_valid_format(format) || !audio_has_proportional_frames(format) ||
2038 !audio_is_input_channel(channelMask)) {
2039 return 0;
2040 }
2041
2042 AutoMutex lock(mHardwareLock);
2043 if (mPrimaryHardwareDev == nullptr) {
2044 return 0;
2045 }
2046 mHardwareStatus = AUDIO_HW_GET_INPUT_BUFFER_SIZE;
2047
2048 sp<DeviceHalInterface> dev = mPrimaryHardwareDev->hwDevice();
2049
2050 std::vector<audio_channel_mask_t> channelMasks = {channelMask};
2051 if (channelMask != AUDIO_CHANNEL_IN_MONO) {
2052 channelMasks.push_back(AUDIO_CHANNEL_IN_MONO);
2053 }
2054 if (channelMask != AUDIO_CHANNEL_IN_STEREO) {
2055 channelMasks.push_back(AUDIO_CHANNEL_IN_STEREO);
2056 }
2057
2058 std::vector<audio_format_t> formats = {format};
2059 if (format != AUDIO_FORMAT_PCM_16_BIT) {
2060 formats.push_back(AUDIO_FORMAT_PCM_16_BIT);
2061 }
2062
2063 std::vector<uint32_t> sampleRates = {sampleRate};
2064 static const uint32_t SR_44100 = 44100;
2065 static const uint32_t SR_48000 = 48000;
2066 if (sampleRate != SR_48000) {
2067 sampleRates.push_back(SR_48000);
2068 }
2069 if (sampleRate != SR_44100) {
2070 sampleRates.push_back(SR_44100);
2071 }
2072
2073 mHardwareStatus = AUDIO_HW_IDLE;
2074
2075 // Change parameters of the configuration each iteration until we find a
2076 // configuration that the device will support.
2077 audio_config_t config = AUDIO_CONFIG_INITIALIZER;
2078 for (auto testChannelMask : channelMasks) {
2079 config.channel_mask = testChannelMask;
2080 for (auto testFormat : formats) {
2081 config.format = testFormat;
2082 for (auto testSampleRate : sampleRates) {
2083 config.sample_rate = testSampleRate;
2084
2085 size_t bytes = 0;
2086 status_t result = dev->getInputBufferSize(&config, &bytes);
2087 if (result != OK || bytes == 0) {
2088 continue;
2089 }
2090
2091 if (config.sample_rate != sampleRate || config.channel_mask != channelMask ||
2092 config.format != format) {
2093 uint32_t dstChannelCount = audio_channel_count_from_in_mask(channelMask);
2094 uint32_t srcChannelCount =
2095 audio_channel_count_from_in_mask(config.channel_mask);
2096 size_t srcFrames =
2097 bytes / audio_bytes_per_frame(srcChannelCount, config.format);
2098 size_t dstFrames = destinationFramesPossible(
2099 srcFrames, config.sample_rate, sampleRate);
2100 bytes = dstFrames * audio_bytes_per_frame(dstChannelCount, format);
2101 }
2102 return bytes;
2103 }
2104 }
2105 }
2106
2107 ALOGW("getInputBufferSize failed with minimum buffer size sampleRate %u, "
2108 "format %#x, channelMask %#x",sampleRate, format, channelMask);
2109 return 0;
2110 }
2111
getInputFramesLost(audio_io_handle_t ioHandle) const2112 uint32_t AudioFlinger::getInputFramesLost(audio_io_handle_t ioHandle) const
2113 {
2114 Mutex::Autolock _l(mLock);
2115
2116 RecordThread *recordThread = checkRecordThread_l(ioHandle);
2117 if (recordThread != NULL) {
2118 return recordThread->getInputFramesLost();
2119 }
2120 return 0;
2121 }
2122
setVoiceVolume(float value)2123 status_t AudioFlinger::setVoiceVolume(float value)
2124 {
2125 status_t ret = initCheck();
2126 if (ret != NO_ERROR) {
2127 return ret;
2128 }
2129
2130 // check calling permissions
2131 if (!settingsAllowed()) {
2132 return PERMISSION_DENIED;
2133 }
2134
2135 AutoMutex lock(mHardwareLock);
2136 if (mPrimaryHardwareDev == nullptr) {
2137 return INVALID_OPERATION;
2138 }
2139 sp<DeviceHalInterface> dev = mPrimaryHardwareDev->hwDevice();
2140 mHardwareStatus = AUDIO_HW_SET_VOICE_VOLUME;
2141 ret = dev->setVoiceVolume(value);
2142 mHardwareStatus = AUDIO_HW_IDLE;
2143
2144 mediametrics::LogItem(mMetricsId)
2145 .set(AMEDIAMETRICS_PROP_EVENT, AMEDIAMETRICS_PROP_EVENT_VALUE_SETVOICEVOLUME)
2146 .set(AMEDIAMETRICS_PROP_VOICEVOLUME, (double)value)
2147 .record();
2148 return ret;
2149 }
2150
getRenderPosition(uint32_t * halFrames,uint32_t * dspFrames,audio_io_handle_t output) const2151 status_t AudioFlinger::getRenderPosition(uint32_t *halFrames, uint32_t *dspFrames,
2152 audio_io_handle_t output) const
2153 {
2154 Mutex::Autolock _l(mLock);
2155
2156 PlaybackThread *playbackThread = checkPlaybackThread_l(output);
2157 if (playbackThread != NULL) {
2158 return playbackThread->getRenderPosition(halFrames, dspFrames);
2159 }
2160
2161 return BAD_VALUE;
2162 }
2163
registerClient(const sp<media::IAudioFlingerClient> & client)2164 void AudioFlinger::registerClient(const sp<media::IAudioFlingerClient>& client)
2165 {
2166 Mutex::Autolock _l(mLock);
2167 if (client == 0) {
2168 return;
2169 }
2170 pid_t pid = IPCThreadState::self()->getCallingPid();
2171 const uid_t uid = IPCThreadState::self()->getCallingUid();
2172 {
2173 Mutex::Autolock _cl(mClientLock);
2174 if (mNotificationClients.indexOfKey(pid) < 0) {
2175 sp<NotificationClient> notificationClient = new NotificationClient(this,
2176 client,
2177 pid,
2178 uid);
2179 ALOGV("registerClient() client %p, pid %d, uid %u",
2180 notificationClient.get(), pid, uid);
2181
2182 mNotificationClients.add(pid, notificationClient);
2183
2184 sp<IBinder> binder = IInterface::asBinder(client);
2185 binder->linkToDeath(notificationClient);
2186 }
2187 }
2188
2189 // mClientLock should not be held here because ThreadBase::sendIoConfigEvent() will lock the
2190 // ThreadBase mutex and the locking order is ThreadBase::mLock then AudioFlinger::mClientLock.
2191 // the config change is always sent from playback or record threads to avoid deadlock
2192 // with AudioSystem::gLock
2193 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
2194 mPlaybackThreads.valueAt(i)->sendIoConfigEvent(AUDIO_OUTPUT_REGISTERED, pid);
2195 }
2196
2197 for (size_t i = 0; i < mRecordThreads.size(); i++) {
2198 mRecordThreads.valueAt(i)->sendIoConfigEvent(AUDIO_INPUT_REGISTERED, pid);
2199 }
2200 }
2201
removeNotificationClient(pid_t pid)2202 void AudioFlinger::removeNotificationClient(pid_t pid)
2203 {
2204 std::vector< sp<AudioFlinger::EffectModule> > removedEffects;
2205 {
2206 Mutex::Autolock _l(mLock);
2207 {
2208 Mutex::Autolock _cl(mClientLock);
2209 mNotificationClients.removeItem(pid);
2210 }
2211
2212 ALOGV("%d died, releasing its sessions", pid);
2213 size_t num = mAudioSessionRefs.size();
2214 bool removed = false;
2215 for (size_t i = 0; i < num; ) {
2216 AudioSessionRef *ref = mAudioSessionRefs.itemAt(i);
2217 ALOGV(" pid %d @ %zu", ref->mPid, i);
2218 if (ref->mPid == pid) {
2219 ALOGV(" removing entry for pid %d session %d", pid, ref->mSessionid);
2220 mAudioSessionRefs.removeAt(i);
2221 delete ref;
2222 removed = true;
2223 num--;
2224 } else {
2225 i++;
2226 }
2227 }
2228 if (removed) {
2229 removedEffects = purgeStaleEffects_l();
2230 }
2231 }
2232 for (auto& effect : removedEffects) {
2233 effect->updatePolicyState();
2234 }
2235 }
2236
ioConfigChanged(audio_io_config_event_t event,const sp<AudioIoDescriptor> & ioDesc,pid_t pid)2237 void AudioFlinger::ioConfigChanged(audio_io_config_event_t event,
2238 const sp<AudioIoDescriptor>& ioDesc,
2239 pid_t pid) {
2240 media::AudioIoConfigEvent eventAidl = VALUE_OR_FATAL(
2241 legacy2aidl_audio_io_config_event_t_AudioIoConfigEvent(event));
2242 media::AudioIoDescriptor descAidl = VALUE_OR_FATAL(
2243 legacy2aidl_AudioIoDescriptor_AudioIoDescriptor(ioDesc));
2244
2245 Mutex::Autolock _l(mClientLock);
2246 size_t size = mNotificationClients.size();
2247 for (size_t i = 0; i < size; i++) {
2248 if ((pid == 0) || (mNotificationClients.keyAt(i) == pid)) {
2249 mNotificationClients.valueAt(i)->audioFlingerClient()->ioConfigChanged(eventAidl,
2250 descAidl);
2251 }
2252 }
2253 }
2254
onSupportedLatencyModesChanged(audio_io_handle_t output,const std::vector<audio_latency_mode_t> & modes)2255 void AudioFlinger::onSupportedLatencyModesChanged(
2256 audio_io_handle_t output, const std::vector<audio_latency_mode_t>& modes) {
2257 int32_t outputAidl = VALUE_OR_FATAL(legacy2aidl_audio_io_handle_t_int32_t(output));
2258 std::vector<media::audio::common::AudioLatencyMode> modesAidl = VALUE_OR_FATAL(
2259 convertContainer<std::vector<media::audio::common::AudioLatencyMode>>(
2260 modes, legacy2aidl_audio_latency_mode_t_AudioLatencyMode));
2261
2262 Mutex::Autolock _l(mClientLock);
2263 size_t size = mNotificationClients.size();
2264 for (size_t i = 0; i < size; i++) {
2265 mNotificationClients.valueAt(i)->audioFlingerClient()
2266 ->onSupportedLatencyModesChanged(outputAidl, modesAidl);
2267 }
2268 }
2269
2270 // removeClient_l() must be called with AudioFlinger::mClientLock held
removeClient_l(pid_t pid)2271 void AudioFlinger::removeClient_l(pid_t pid)
2272 {
2273 ALOGV("removeClient_l() pid %d, calling pid %d", pid,
2274 IPCThreadState::self()->getCallingPid());
2275 mClients.removeItem(pid);
2276 }
2277
2278 // getEffectThread_l() must be called with AudioFlinger::mLock held
getEffectThread_l(audio_session_t sessionId,int effectId)2279 sp<AudioFlinger::ThreadBase> AudioFlinger::getEffectThread_l(audio_session_t sessionId,
2280 int effectId)
2281 {
2282 sp<ThreadBase> thread;
2283
2284 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
2285 if (mPlaybackThreads.valueAt(i)->getEffect(sessionId, effectId) != 0) {
2286 ALOG_ASSERT(thread == 0);
2287 thread = mPlaybackThreads.valueAt(i);
2288 }
2289 }
2290 if (thread != nullptr) {
2291 return thread;
2292 }
2293 for (size_t i = 0; i < mRecordThreads.size(); i++) {
2294 if (mRecordThreads.valueAt(i)->getEffect(sessionId, effectId) != 0) {
2295 ALOG_ASSERT(thread == 0);
2296 thread = mRecordThreads.valueAt(i);
2297 }
2298 }
2299 if (thread != nullptr) {
2300 return thread;
2301 }
2302 for (size_t i = 0; i < mMmapThreads.size(); i++) {
2303 if (mMmapThreads.valueAt(i)->getEffect(sessionId, effectId) != 0) {
2304 ALOG_ASSERT(thread == 0);
2305 thread = mMmapThreads.valueAt(i);
2306 }
2307 }
2308 return thread;
2309 }
2310
2311
2312
2313 // ----------------------------------------------------------------------------
2314
Client(const sp<AudioFlinger> & audioFlinger,pid_t pid)2315 AudioFlinger::Client::Client(const sp<AudioFlinger>& audioFlinger, pid_t pid)
2316 : RefBase(),
2317 mAudioFlinger(audioFlinger),
2318 mPid(pid),
2319 mClientAllocator(AllocatorFactory::getClientAllocator()) {}
2320
2321 // Client destructor must be called with AudioFlinger::mClientLock held
~Client()2322 AudioFlinger::Client::~Client()
2323 {
2324 mAudioFlinger->removeClient_l(mPid);
2325 }
2326
allocator()2327 AllocatorFactory::ClientAllocator& AudioFlinger::Client::allocator()
2328 {
2329 return mClientAllocator;
2330 }
2331
2332 // ----------------------------------------------------------------------------
2333
NotificationClient(const sp<AudioFlinger> & audioFlinger,const sp<media::IAudioFlingerClient> & client,pid_t pid,uid_t uid)2334 AudioFlinger::NotificationClient::NotificationClient(const sp<AudioFlinger>& audioFlinger,
2335 const sp<media::IAudioFlingerClient>& client,
2336 pid_t pid,
2337 uid_t uid)
2338 : mAudioFlinger(audioFlinger), mPid(pid), mUid(uid), mAudioFlingerClient(client)
2339 {
2340 }
2341
~NotificationClient()2342 AudioFlinger::NotificationClient::~NotificationClient()
2343 {
2344 }
2345
binderDied(const wp<IBinder> & who __unused)2346 void AudioFlinger::NotificationClient::binderDied(const wp<IBinder>& who __unused)
2347 {
2348 sp<NotificationClient> keep(this);
2349 mAudioFlinger->removeNotificationClient(mPid);
2350 }
2351
2352 // ----------------------------------------------------------------------------
MediaLogNotifier()2353 AudioFlinger::MediaLogNotifier::MediaLogNotifier()
2354 : mPendingRequests(false) {}
2355
2356
requestMerge()2357 void AudioFlinger::MediaLogNotifier::requestMerge() {
2358 AutoMutex _l(mMutex);
2359 mPendingRequests = true;
2360 mCond.signal();
2361 }
2362
threadLoop()2363 bool AudioFlinger::MediaLogNotifier::threadLoop() {
2364 // Should already have been checked, but just in case
2365 if (sMediaLogService == 0) {
2366 return false;
2367 }
2368 // Wait until there are pending requests
2369 {
2370 AutoMutex _l(mMutex);
2371 mPendingRequests = false; // to ignore past requests
2372 while (!mPendingRequests) {
2373 mCond.wait(mMutex);
2374 // TODO may also need an exitPending check
2375 }
2376 mPendingRequests = false;
2377 }
2378 // Execute the actual MediaLogService binder call and ignore extra requests for a while
2379 sMediaLogService->requestMergeWakeup();
2380 usleep(kPostTriggerSleepPeriod);
2381 return true;
2382 }
2383
requestLogMerge()2384 void AudioFlinger::requestLogMerge() {
2385 mMediaLogNotifier->requestMerge();
2386 }
2387
2388 // ----------------------------------------------------------------------------
2389
createRecord(const media::CreateRecordRequest & _input,media::CreateRecordResponse & _output)2390 status_t AudioFlinger::createRecord(const media::CreateRecordRequest& _input,
2391 media::CreateRecordResponse& _output)
2392 {
2393 CreateRecordInput input = VALUE_OR_RETURN_STATUS(CreateRecordInput::fromAidl(_input));
2394 CreateRecordOutput output;
2395
2396 sp<RecordThread::RecordTrack> recordTrack;
2397 sp<RecordHandle> recordHandle;
2398 sp<Client> client;
2399 status_t lStatus;
2400 audio_session_t sessionId = input.sessionId;
2401 audio_port_handle_t portId = AUDIO_PORT_HANDLE_NONE;
2402
2403 output.cblk.clear();
2404 output.buffers.clear();
2405 output.inputId = AUDIO_IO_HANDLE_NONE;
2406
2407 // TODO b/182392553: refactor or clean up
2408 AttributionSourceState adjAttributionSource = input.clientInfo.attributionSource;
2409 bool updatePid = (adjAttributionSource.pid == -1);
2410 const uid_t callingUid = IPCThreadState::self()->getCallingUid();
2411 const uid_t currentUid = VALUE_OR_RETURN_STATUS(legacy2aidl_uid_t_int32_t(
2412 adjAttributionSource.uid));
2413 if (!isAudioServerOrMediaServerOrSystemServerOrRootUid(callingUid)) {
2414 ALOGW_IF(currentUid != callingUid,
2415 "%s uid %d tried to pass itself off as %d",
2416 __FUNCTION__, callingUid, currentUid);
2417 adjAttributionSource.uid = VALUE_OR_RETURN_STATUS(legacy2aidl_uid_t_int32_t(callingUid));
2418 updatePid = true;
2419 }
2420 const pid_t callingPid = IPCThreadState::self()->getCallingPid();
2421 const pid_t currentPid = VALUE_OR_RETURN_STATUS(aidl2legacy_int32_t_pid_t(
2422 adjAttributionSource.pid));
2423 if (updatePid) {
2424 ALOGW_IF(currentPid != (pid_t)-1 && currentPid != callingPid,
2425 "%s uid %d pid %d tried to pass itself off as pid %d",
2426 __func__, callingUid, callingPid, currentPid);
2427 adjAttributionSource.pid = VALUE_OR_RETURN_STATUS(legacy2aidl_pid_t_int32_t(callingPid));
2428 }
2429 adjAttributionSource = AudioFlinger::checkAttributionSourcePackage(
2430 adjAttributionSource);
2431 // we don't yet support anything other than linear PCM
2432 if (!audio_is_valid_format(input.config.format) || !audio_is_linear_pcm(input.config.format)) {
2433 ALOGE("createRecord() invalid format %#x", input.config.format);
2434 lStatus = BAD_VALUE;
2435 goto Exit;
2436 }
2437
2438 // further channel mask checks are performed by createRecordTrack_l()
2439 if (!audio_is_input_channel(input.config.channel_mask)) {
2440 ALOGE("createRecord() invalid channel mask %#x", input.config.channel_mask);
2441 lStatus = BAD_VALUE;
2442 goto Exit;
2443 }
2444
2445 if (sessionId == AUDIO_SESSION_ALLOCATE) {
2446 sessionId = (audio_session_t) newAudioUniqueId(AUDIO_UNIQUE_ID_USE_SESSION);
2447 } else if (audio_unique_id_get_use(sessionId) != AUDIO_UNIQUE_ID_USE_SESSION) {
2448 lStatus = BAD_VALUE;
2449 goto Exit;
2450 }
2451
2452 output.sessionId = sessionId;
2453 output.selectedDeviceId = input.selectedDeviceId;
2454 output.flags = input.flags;
2455
2456 client = registerPid(VALUE_OR_FATAL(aidl2legacy_int32_t_pid_t(adjAttributionSource.pid)));
2457
2458 // Not a conventional loop, but a retry loop for at most two iterations total.
2459 // Try first maybe with FAST flag then try again without FAST flag if that fails.
2460 // Exits loop via break on no error of got exit on error
2461 // The sp<> references will be dropped when re-entering scope.
2462 // The lack of indentation is deliberate, to reduce code churn and ease merges.
2463 for (;;) {
2464 // release previously opened input if retrying.
2465 if (output.inputId != AUDIO_IO_HANDLE_NONE) {
2466 recordTrack.clear();
2467 AudioSystem::releaseInput(portId);
2468 output.inputId = AUDIO_IO_HANDLE_NONE;
2469 output.selectedDeviceId = input.selectedDeviceId;
2470 portId = AUDIO_PORT_HANDLE_NONE;
2471 }
2472 lStatus = AudioSystem::getInputForAttr(&input.attr, &output.inputId,
2473 input.riid,
2474 sessionId,
2475 // FIXME compare to AudioTrack
2476 adjAttributionSource,
2477 &input.config,
2478 output.flags, &output.selectedDeviceId, &portId);
2479 if (lStatus != NO_ERROR) {
2480 ALOGE("createRecord() getInputForAttr return error %d", lStatus);
2481 goto Exit;
2482 }
2483
2484 {
2485 Mutex::Autolock _l(mLock);
2486 RecordThread *thread = checkRecordThread_l(output.inputId);
2487 if (thread == NULL) {
2488 ALOGW("createRecord() checkRecordThread_l failed, input handle %d", output.inputId);
2489 lStatus = FAILED_TRANSACTION;
2490 goto Exit;
2491 }
2492
2493 ALOGV("createRecord() lSessionId: %d input %d", sessionId, output.inputId);
2494
2495 output.sampleRate = input.config.sample_rate;
2496 output.frameCount = input.frameCount;
2497 output.notificationFrameCount = input.notificationFrameCount;
2498
2499 recordTrack = thread->createRecordTrack_l(client, input.attr, &output.sampleRate,
2500 input.config.format, input.config.channel_mask,
2501 &output.frameCount, sessionId,
2502 &output.notificationFrameCount,
2503 callingPid, adjAttributionSource, &output.flags,
2504 input.clientInfo.clientTid,
2505 &lStatus, portId, input.maxSharedAudioHistoryMs);
2506 LOG_ALWAYS_FATAL_IF((lStatus == NO_ERROR) && (recordTrack == 0));
2507
2508 // lStatus == BAD_TYPE means FAST flag was rejected: request a new input from
2509 // audio policy manager without FAST constraint
2510 if (lStatus == BAD_TYPE) {
2511 continue;
2512 }
2513
2514 if (lStatus != NO_ERROR) {
2515 goto Exit;
2516 }
2517
2518 if (recordTrack->isFastTrack()) {
2519 output.serverConfig = {
2520 thread->sampleRate(),
2521 thread->channelMask(),
2522 thread->format()
2523 };
2524 } else {
2525 output.serverConfig = {
2526 recordTrack->sampleRate(),
2527 recordTrack->channelMask(),
2528 recordTrack->format()
2529 };
2530 }
2531
2532 output.halConfig = {
2533 thread->sampleRate(),
2534 thread->channelMask(),
2535 thread->format()
2536 };
2537
2538 // Check if one effect chain was awaiting for an AudioRecord to be created on this
2539 // session and move it to this thread.
2540 sp<EffectChain> chain = getOrphanEffectChain_l(sessionId);
2541 if (chain != 0) {
2542 Mutex::Autolock _l2(thread->mLock);
2543 thread->addEffectChain_l(chain);
2544 }
2545 break;
2546 }
2547 // End of retry loop.
2548 // The lack of indentation is deliberate, to reduce code churn and ease merges.
2549 }
2550
2551 output.cblk = recordTrack->getCblk();
2552 output.buffers = recordTrack->getBuffers();
2553 output.portId = portId;
2554
2555 output.audioRecord = new RecordHandle(recordTrack);
2556 _output = VALUE_OR_FATAL(output.toAidl());
2557
2558 Exit:
2559 if (lStatus != NO_ERROR) {
2560 // remove local strong reference to Client before deleting the RecordTrack so that the
2561 // Client destructor is called by the TrackBase destructor with mClientLock held
2562 // Don't hold mClientLock when releasing the reference on the track as the
2563 // destructor will acquire it.
2564 {
2565 Mutex::Autolock _cl(mClientLock);
2566 client.clear();
2567 }
2568 recordTrack.clear();
2569 if (output.inputId != AUDIO_IO_HANDLE_NONE) {
2570 AudioSystem::releaseInput(portId);
2571 }
2572 }
2573
2574 return lStatus;
2575 }
2576
2577
2578
2579 // ----------------------------------------------------------------------------
2580
getAudioPolicyConfig(media::AudioPolicyConfig * config)2581 status_t AudioFlinger::getAudioPolicyConfig(media::AudioPolicyConfig *config)
2582 {
2583 if (config == nullptr) {
2584 return BAD_VALUE;
2585 }
2586 Mutex::Autolock _l(mLock);
2587 AutoMutex lock(mHardwareLock);
2588 RETURN_STATUS_IF_ERROR(
2589 mDevicesFactoryHal->getSurroundSoundConfig(&config->surroundSoundConfig));
2590 RETURN_STATUS_IF_ERROR(mDevicesFactoryHal->getEngineConfig(&config->engineConfig));
2591 std::vector<std::string> hwModuleNames;
2592 RETURN_STATUS_IF_ERROR(mDevicesFactoryHal->getDeviceNames(&hwModuleNames));
2593 std::set<AudioMode> allSupportedModes;
2594 for (const auto& name : hwModuleNames) {
2595 AudioHwDevice* module = loadHwModule_l(name.c_str());
2596 if (module == nullptr) continue;
2597 media::AudioHwModule aidlModule;
2598 if (module->hwDevice()->getAudioPorts(&aidlModule.ports) == OK &&
2599 module->hwDevice()->getAudioRoutes(&aidlModule.routes) == OK) {
2600 aidlModule.handle = module->handle();
2601 aidlModule.name = module->moduleName();
2602 config->modules.push_back(std::move(aidlModule));
2603 }
2604 std::vector<AudioMode> supportedModes;
2605 if (module->hwDevice()->getSupportedModes(&supportedModes) == OK) {
2606 allSupportedModes.insert(supportedModes.begin(), supportedModes.end());
2607 }
2608 }
2609 if (!allSupportedModes.empty()) {
2610 config->supportedModes.insert(config->supportedModes.end(),
2611 allSupportedModes.begin(), allSupportedModes.end());
2612 } else {
2613 ALOGW("%s: The HAL does not provide telephony functionality", __func__);
2614 config->supportedModes = { media::audio::common::AudioMode::NORMAL,
2615 media::audio::common::AudioMode::RINGTONE,
2616 media::audio::common::AudioMode::IN_CALL,
2617 media::audio::common::AudioMode::IN_COMMUNICATION };
2618 }
2619 return OK;
2620 }
2621
loadHwModule(const char * name)2622 audio_module_handle_t AudioFlinger::loadHwModule(const char *name)
2623 {
2624 if (name == NULL) {
2625 return AUDIO_MODULE_HANDLE_NONE;
2626 }
2627 if (!settingsAllowed()) {
2628 return AUDIO_MODULE_HANDLE_NONE;
2629 }
2630 Mutex::Autolock _l(mLock);
2631 AutoMutex lock(mHardwareLock);
2632 AudioHwDevice* module = loadHwModule_l(name);
2633 return module != nullptr ? module->handle() : AUDIO_MODULE_HANDLE_NONE;
2634 }
2635
2636 // loadHwModule_l() must be called with AudioFlinger::mLock and AudioFlinger::mHardwareLock held
loadHwModule_l(const char * name)2637 AudioHwDevice* AudioFlinger::loadHwModule_l(const char *name)
2638 {
2639 for (size_t i = 0; i < mAudioHwDevs.size(); i++) {
2640 if (strncmp(mAudioHwDevs.valueAt(i)->moduleName(), name, strlen(name)) == 0) {
2641 ALOGW("loadHwModule() module %s already loaded", name);
2642 return mAudioHwDevs.valueAt(i);
2643 }
2644 }
2645
2646 sp<DeviceHalInterface> dev;
2647
2648 int rc = mDevicesFactoryHal->openDevice(name, &dev);
2649 if (rc) {
2650 ALOGE("loadHwModule() error %d loading module %s", rc, name);
2651 return nullptr;
2652 }
2653 if (!mMelReporter->activateHalSoundDoseComputation(name, dev)) {
2654 ALOGW("loadHwModule() sound dose reporting is not available");
2655 }
2656
2657 mHardwareStatus = AUDIO_HW_INIT;
2658 rc = dev->initCheck();
2659 mHardwareStatus = AUDIO_HW_IDLE;
2660 if (rc) {
2661 ALOGE("loadHwModule() init check error %d for module %s", rc, name);
2662 return nullptr;
2663 }
2664
2665 // Check and cache this HAL's level of support for master mute and master
2666 // volume. If this is the first HAL opened, and it supports the get
2667 // methods, use the initial values provided by the HAL as the current
2668 // master mute and volume settings.
2669
2670 AudioHwDevice::Flags flags = static_cast<AudioHwDevice::Flags>(0);
2671 if (0 == mAudioHwDevs.size()) {
2672 mHardwareStatus = AUDIO_HW_GET_MASTER_VOLUME;
2673 float mv;
2674 if (OK == dev->getMasterVolume(&mv)) {
2675 mMasterVolume = mv;
2676 }
2677
2678 mHardwareStatus = AUDIO_HW_GET_MASTER_MUTE;
2679 bool mm;
2680 if (OK == dev->getMasterMute(&mm)) {
2681 mMasterMute = mm;
2682 }
2683 }
2684
2685 mHardwareStatus = AUDIO_HW_SET_MASTER_VOLUME;
2686 if (OK == dev->setMasterVolume(mMasterVolume)) {
2687 flags = static_cast<AudioHwDevice::Flags>(flags |
2688 AudioHwDevice::AHWD_CAN_SET_MASTER_VOLUME);
2689 }
2690
2691 mHardwareStatus = AUDIO_HW_SET_MASTER_MUTE;
2692 if (OK == dev->setMasterMute(mMasterMute)) {
2693 flags = static_cast<AudioHwDevice::Flags>(flags |
2694 AudioHwDevice::AHWD_CAN_SET_MASTER_MUTE);
2695 }
2696
2697 mHardwareStatus = AUDIO_HW_IDLE;
2698
2699 if (strcmp(name, AUDIO_HARDWARE_MODULE_ID_MSD) == 0) {
2700 // An MSD module is inserted before hardware modules in order to mix encoded streams.
2701 flags = static_cast<AudioHwDevice::Flags>(flags | AudioHwDevice::AHWD_IS_INSERT);
2702 }
2703
2704
2705 if (bool supports = false;
2706 dev->supportsBluetoothVariableLatency(&supports) == NO_ERROR && supports) {
2707 flags = static_cast<AudioHwDevice::Flags>(flags |
2708 AudioHwDevice::AHWD_SUPPORTS_BT_LATENCY_MODES);
2709 }
2710
2711 audio_module_handle_t handle = (audio_module_handle_t) nextUniqueId(AUDIO_UNIQUE_ID_USE_MODULE);
2712 AudioHwDevice *audioDevice = new AudioHwDevice(handle, name, dev, flags);
2713 if (strcmp(name, AUDIO_HARDWARE_MODULE_ID_PRIMARY) == 0) {
2714 mPrimaryHardwareDev = audioDevice;
2715 mHardwareStatus = AUDIO_HW_SET_MODE;
2716 mPrimaryHardwareDev->hwDevice()->setMode(mMode);
2717 mHardwareStatus = AUDIO_HW_IDLE;
2718 }
2719
2720 if (mDevicesFactoryHal->getHalVersion() > kMaxAAudioPropertyDeviceHalVersion) {
2721 if (int32_t mixerBursts = dev->getAAudioMixerBurstCount();
2722 mixerBursts > 0 && mixerBursts > mAAudioBurstsPerBuffer) {
2723 mAAudioBurstsPerBuffer = mixerBursts;
2724 }
2725 if (int32_t hwBurstMinMicros = dev->getAAudioHardwareBurstMinUsec();
2726 hwBurstMinMicros > 0
2727 && (hwBurstMinMicros < mAAudioHwBurstMinMicros || mAAudioHwBurstMinMicros == 0)) {
2728 mAAudioHwBurstMinMicros = hwBurstMinMicros;
2729 }
2730 }
2731
2732 mAudioHwDevs.add(handle, audioDevice);
2733
2734 ALOGI("loadHwModule() Loaded %s audio interface, handle %d", name, handle);
2735
2736 return audioDevice;
2737 }
2738
2739 // ----------------------------------------------------------------------------
2740
getPrimaryOutputSamplingRate()2741 uint32_t AudioFlinger::getPrimaryOutputSamplingRate()
2742 {
2743 Mutex::Autolock _l(mLock);
2744 PlaybackThread *thread = fastPlaybackThread_l();
2745 return thread != NULL ? thread->sampleRate() : 0;
2746 }
2747
getPrimaryOutputFrameCount()2748 size_t AudioFlinger::getPrimaryOutputFrameCount()
2749 {
2750 Mutex::Autolock _l(mLock);
2751 PlaybackThread *thread = fastPlaybackThread_l();
2752 return thread != NULL ? thread->frameCountHAL() : 0;
2753 }
2754
2755 // ----------------------------------------------------------------------------
2756
setLowRamDevice(bool isLowRamDevice,int64_t totalMemory)2757 status_t AudioFlinger::setLowRamDevice(bool isLowRamDevice, int64_t totalMemory)
2758 {
2759 uid_t uid = IPCThreadState::self()->getCallingUid();
2760 if (!isAudioServerOrSystemServerUid(uid)) {
2761 return PERMISSION_DENIED;
2762 }
2763 Mutex::Autolock _l(mLock);
2764 if (mIsDeviceTypeKnown) {
2765 return INVALID_OPERATION;
2766 }
2767 mIsLowRamDevice = isLowRamDevice;
2768 mTotalMemory = totalMemory;
2769 // mIsLowRamDevice and mTotalMemory are obtained through ActivityManager;
2770 // see ActivityManager.isLowRamDevice() and ActivityManager.getMemoryInfo().
2771 // mIsLowRamDevice generally represent devices with less than 1GB of memory,
2772 // though actual setting is determined through device configuration.
2773 constexpr int64_t GB = 1024 * 1024 * 1024;
2774 mClientSharedHeapSize =
2775 isLowRamDevice ? kMinimumClientSharedHeapSizeBytes
2776 : mTotalMemory < 2 * GB ? 4 * kMinimumClientSharedHeapSizeBytes
2777 : mTotalMemory < 3 * GB ? 8 * kMinimumClientSharedHeapSizeBytes
2778 : mTotalMemory < 4 * GB ? 16 * kMinimumClientSharedHeapSizeBytes
2779 : 32 * kMinimumClientSharedHeapSizeBytes;
2780 mIsDeviceTypeKnown = true;
2781
2782 // TODO: Cache the client shared heap size in a persistent property.
2783 // It's possible that a native process or Java service or app accesses audioserver
2784 // after it is registered by system server, but before AudioService updates
2785 // the memory info. This would occur immediately after boot or an audioserver
2786 // crash and restore. Before update from AudioService, the client would get the
2787 // minimum heap size.
2788
2789 ALOGD("isLowRamDevice:%s totalMemory:%lld mClientSharedHeapSize:%zu",
2790 (isLowRamDevice ? "true" : "false"),
2791 (long long)mTotalMemory,
2792 mClientSharedHeapSize.load());
2793 return NO_ERROR;
2794 }
2795
getClientSharedHeapSize() const2796 size_t AudioFlinger::getClientSharedHeapSize() const
2797 {
2798 size_t heapSizeInBytes = property_get_int32("ro.af.client_heap_size_kbyte", 0) * 1024;
2799 if (heapSizeInBytes != 0) { // read-only property overrides all.
2800 return heapSizeInBytes;
2801 }
2802 return mClientSharedHeapSize;
2803 }
2804
setAudioPortConfig(const struct audio_port_config * config)2805 status_t AudioFlinger::setAudioPortConfig(const struct audio_port_config *config)
2806 {
2807 ALOGV(__func__);
2808
2809 status_t status = AudioValidator::validateAudioPortConfig(*config);
2810 if (status != NO_ERROR) {
2811 return status;
2812 }
2813
2814 audio_module_handle_t module;
2815 if (config->type == AUDIO_PORT_TYPE_DEVICE) {
2816 module = config->ext.device.hw_module;
2817 } else {
2818 module = config->ext.mix.hw_module;
2819 }
2820
2821 Mutex::Autolock _l(mLock);
2822 AutoMutex lock(mHardwareLock);
2823 ssize_t index = mAudioHwDevs.indexOfKey(module);
2824 if (index < 0) {
2825 ALOGW("%s() bad hw module %d", __func__, module);
2826 return BAD_VALUE;
2827 }
2828
2829 AudioHwDevice *audioHwDevice = mAudioHwDevs.valueAt(index);
2830 return audioHwDevice->hwDevice()->setAudioPortConfig(config);
2831 }
2832
getAudioHwSyncForSession(audio_session_t sessionId)2833 audio_hw_sync_t AudioFlinger::getAudioHwSyncForSession(audio_session_t sessionId)
2834 {
2835 Mutex::Autolock _l(mLock);
2836
2837 ssize_t index = mHwAvSyncIds.indexOfKey(sessionId);
2838 if (index >= 0) {
2839 ALOGV("getAudioHwSyncForSession found ID %d for session %d",
2840 mHwAvSyncIds.valueAt(index), sessionId);
2841 return mHwAvSyncIds.valueAt(index);
2842 }
2843
2844 sp<DeviceHalInterface> dev;
2845 {
2846 AutoMutex lock(mHardwareLock);
2847 if (mPrimaryHardwareDev == nullptr) {
2848 return AUDIO_HW_SYNC_INVALID;
2849 }
2850 dev = mPrimaryHardwareDev->hwDevice();
2851 }
2852 if (dev == nullptr) {
2853 return AUDIO_HW_SYNC_INVALID;
2854 }
2855
2856 error::Result<audio_hw_sync_t> result = dev->getHwAvSync();
2857 if (!result.ok()) {
2858 ALOGW("getAudioHwSyncForSession error getting sync for session %d", sessionId);
2859 return AUDIO_HW_SYNC_INVALID;
2860 }
2861 audio_hw_sync_t value = VALUE_OR_FATAL(result);
2862
2863 // allow only one session for a given HW A/V sync ID.
2864 for (size_t i = 0; i < mHwAvSyncIds.size(); i++) {
2865 if (mHwAvSyncIds.valueAt(i) == value) {
2866 ALOGV("getAudioHwSyncForSession removing ID %d for session %d",
2867 value, mHwAvSyncIds.keyAt(i));
2868 mHwAvSyncIds.removeItemsAt(i);
2869 break;
2870 }
2871 }
2872
2873 mHwAvSyncIds.add(sessionId, value);
2874
2875 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
2876 sp<PlaybackThread> thread = mPlaybackThreads.valueAt(i);
2877 uint32_t sessions = thread->hasAudioSession(sessionId);
2878 if (sessions & ThreadBase::TRACK_SESSION) {
2879 AudioParameter param = AudioParameter();
2880 param.addInt(String8(AudioParameter::keyStreamHwAvSync), value);
2881 String8 keyValuePairs = param.toString();
2882 thread->setParameters(keyValuePairs);
2883 forwardParametersToDownstreamPatches_l(thread->id(), keyValuePairs,
2884 [](const sp<PlaybackThread>& thread) { return thread->usesHwAvSync(); });
2885 break;
2886 }
2887 }
2888
2889 ALOGV("getAudioHwSyncForSession adding ID %d for session %d", value, sessionId);
2890 return (audio_hw_sync_t)value;
2891 }
2892
systemReady()2893 status_t AudioFlinger::systemReady()
2894 {
2895 Mutex::Autolock _l(mLock);
2896 ALOGI("%s", __FUNCTION__);
2897 if (mSystemReady) {
2898 ALOGW("%s called twice", __FUNCTION__);
2899 return NO_ERROR;
2900 }
2901 mSystemReady = true;
2902 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
2903 ThreadBase *thread = (ThreadBase *)mPlaybackThreads.valueAt(i).get();
2904 thread->systemReady();
2905 }
2906 for (size_t i = 0; i < mRecordThreads.size(); i++) {
2907 ThreadBase *thread = (ThreadBase *)mRecordThreads.valueAt(i).get();
2908 thread->systemReady();
2909 }
2910 for (size_t i = 0; i < mMmapThreads.size(); i++) {
2911 ThreadBase *thread = (ThreadBase *)mMmapThreads.valueAt(i).get();
2912 thread->systemReady();
2913 }
2914
2915 // Java services are ready, so we can create a reference to AudioService
2916 getOrCreateAudioManager();
2917
2918 return NO_ERROR;
2919 }
2920
getOrCreateAudioManager()2921 sp<IAudioManager> AudioFlinger::getOrCreateAudioManager()
2922 {
2923 if (mAudioManager.load() == nullptr) {
2924 // use checkService() to avoid blocking
2925 sp<IBinder> binder =
2926 defaultServiceManager()->checkService(String16(kAudioServiceName));
2927 if (binder != nullptr) {
2928 mAudioManager = interface_cast<IAudioManager>(binder);
2929 } else {
2930 ALOGE("%s(): binding to audio service failed.", __func__);
2931 }
2932 }
2933 return mAudioManager.load();
2934 }
2935
getMicrophones(std::vector<media::MicrophoneInfoFw> * microphones)2936 status_t AudioFlinger::getMicrophones(std::vector<media::MicrophoneInfoFw> *microphones)
2937 {
2938 AutoMutex lock(mHardwareLock);
2939 status_t status = INVALID_OPERATION;
2940
2941 for (size_t i = 0; i < mAudioHwDevs.size(); i++) {
2942 std::vector<audio_microphone_characteristic_t> mics;
2943 AudioHwDevice *dev = mAudioHwDevs.valueAt(i);
2944 mHardwareStatus = AUDIO_HW_GET_MICROPHONES;
2945 status_t devStatus = dev->hwDevice()->getMicrophones(&mics);
2946 mHardwareStatus = AUDIO_HW_IDLE;
2947 if (devStatus == NO_ERROR) {
2948 // report success if at least one HW module supports the function.
2949 std::transform(mics.begin(), mics.end(), std::back_inserter(*microphones), [](auto& mic)
2950 {
2951 auto microphone =
2952 legacy2aidl_audio_microphone_characteristic_t_MicrophoneInfoFw(mic);
2953 return microphone.ok() ? microphone.value() : media::MicrophoneInfoFw{};
2954 });
2955 status = NO_ERROR;
2956 }
2957 }
2958
2959 return status;
2960 }
2961
2962 // setAudioHwSyncForSession_l() must be called with AudioFlinger::mLock held
setAudioHwSyncForSession_l(PlaybackThread * thread,audio_session_t sessionId)2963 void AudioFlinger::setAudioHwSyncForSession_l(PlaybackThread *thread, audio_session_t sessionId)
2964 {
2965 ssize_t index = mHwAvSyncIds.indexOfKey(sessionId);
2966 if (index >= 0) {
2967 audio_hw_sync_t syncId = mHwAvSyncIds.valueAt(index);
2968 ALOGV("setAudioHwSyncForSession_l found ID %d for session %d", syncId, sessionId);
2969 AudioParameter param = AudioParameter();
2970 param.addInt(String8(AudioParameter::keyStreamHwAvSync), syncId);
2971 String8 keyValuePairs = param.toString();
2972 thread->setParameters(keyValuePairs);
2973 forwardParametersToDownstreamPatches_l(thread->id(), keyValuePairs,
2974 [](const sp<PlaybackThread>& thread) { return thread->usesHwAvSync(); });
2975 }
2976 }
2977
2978
2979 // ----------------------------------------------------------------------------
2980
2981
openOutput_l(audio_module_handle_t module,audio_io_handle_t * output,audio_config_t * halConfig,audio_config_base_t * mixerConfig,audio_devices_t deviceType,const String8 & address,audio_output_flags_t flags)2982 sp<AudioFlinger::ThreadBase> AudioFlinger::openOutput_l(audio_module_handle_t module,
2983 audio_io_handle_t *output,
2984 audio_config_t *halConfig,
2985 audio_config_base_t *mixerConfig,
2986 audio_devices_t deviceType,
2987 const String8& address,
2988 audio_output_flags_t flags)
2989 {
2990 AudioHwDevice *outHwDev = findSuitableHwDev_l(module, deviceType);
2991 if (outHwDev == NULL) {
2992 return nullptr;
2993 }
2994
2995 if (*output == AUDIO_IO_HANDLE_NONE) {
2996 *output = nextUniqueId(AUDIO_UNIQUE_ID_USE_OUTPUT);
2997 } else {
2998 // Audio Policy does not currently request a specific output handle.
2999 // If this is ever needed, see openInput_l() for example code.
3000 ALOGE("openOutput_l requested output handle %d is not AUDIO_IO_HANDLE_NONE", *output);
3001 return nullptr;
3002 }
3003
3004 #ifndef MULTICHANNEL_EFFECT_CHAIN
3005 if (flags & AUDIO_OUTPUT_FLAG_SPATIALIZER) {
3006 ALOGE("openOutput_l() cannot create spatializer thread "
3007 "without #define MULTICHANNEL_EFFECT_CHAIN");
3008 return nullptr;
3009 }
3010 #endif
3011
3012 mHardwareStatus = AUDIO_HW_OUTPUT_OPEN;
3013
3014 // FOR TESTING ONLY:
3015 // This if statement allows overriding the audio policy settings
3016 // and forcing a specific format or channel mask to the HAL/Sink device for testing.
3017 if (!(flags & (AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD | AUDIO_OUTPUT_FLAG_DIRECT))) {
3018 // Check only for Normal Mixing mode
3019 if (kEnableExtendedPrecision) {
3020 // Specify format (uncomment one below to choose)
3021 //halConfig->format = AUDIO_FORMAT_PCM_FLOAT;
3022 //halConfig->format = AUDIO_FORMAT_PCM_24_BIT_PACKED;
3023 //halConfig->format = AUDIO_FORMAT_PCM_32_BIT;
3024 //halConfig->format = AUDIO_FORMAT_PCM_8_24_BIT;
3025 // ALOGV("openOutput_l() upgrading format to %#08x", halConfig->format);
3026 }
3027 if (kEnableExtendedChannels) {
3028 // Specify channel mask (uncomment one below to choose)
3029 //halConfig->channel_mask = audio_channel_out_mask_from_count(4); // for USB 4ch
3030 //halConfig->channel_mask = audio_channel_mask_from_representation_and_bits(
3031 // AUDIO_CHANNEL_REPRESENTATION_INDEX, (1 << 4) - 1); // another 4ch example
3032 }
3033 }
3034
3035 AudioStreamOut *outputStream = NULL;
3036 status_t status = outHwDev->openOutputStream(
3037 &outputStream,
3038 *output,
3039 deviceType,
3040 flags,
3041 halConfig,
3042 address.string());
3043
3044 mHardwareStatus = AUDIO_HW_IDLE;
3045
3046 if (status == NO_ERROR) {
3047 if (flags & AUDIO_OUTPUT_FLAG_MMAP_NOIRQ) {
3048 sp<MmapPlaybackThread> thread =
3049 new MmapPlaybackThread(this, *output, outHwDev, outputStream, mSystemReady);
3050 mMmapThreads.add(*output, thread);
3051 ALOGV("openOutput_l() created mmap playback thread: ID %d thread %p",
3052 *output, thread.get());
3053 return thread;
3054 } else {
3055 sp<PlaybackThread> thread;
3056 if (flags & AUDIO_OUTPUT_FLAG_BIT_PERFECT) {
3057 thread = sp<BitPerfectThread>::make(this, outputStream, *output, mSystemReady);
3058 ALOGV("%s() created bit-perfect output: ID %d thread %p",
3059 __func__, *output, thread.get());
3060 } else if (flags & AUDIO_OUTPUT_FLAG_SPATIALIZER) {
3061 thread = new SpatializerThread(this, outputStream, *output,
3062 mSystemReady, mixerConfig);
3063 ALOGV("openOutput_l() created spatializer output: ID %d thread %p",
3064 *output, thread.get());
3065 } else if (flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) {
3066 thread = new OffloadThread(this, outputStream, *output,
3067 mSystemReady, halConfig->offload_info);
3068 ALOGV("openOutput_l() created offload output: ID %d thread %p",
3069 *output, thread.get());
3070 } else if ((flags & AUDIO_OUTPUT_FLAG_DIRECT)
3071 || !isValidPcmSinkFormat(halConfig->format)
3072 || !isValidPcmSinkChannelMask(halConfig->channel_mask)) {
3073 thread = new DirectOutputThread(this, outputStream, *output,
3074 mSystemReady, halConfig->offload_info);
3075 ALOGV("openOutput_l() created direct output: ID %d thread %p",
3076 *output, thread.get());
3077 } else {
3078 thread = new MixerThread(this, outputStream, *output, mSystemReady);
3079 ALOGV("openOutput_l() created mixer output: ID %d thread %p",
3080 *output, thread.get());
3081 }
3082 mPlaybackThreads.add(*output, thread);
3083 struct audio_patch patch;
3084 mPatchPanel.notifyStreamOpened(outHwDev, *output, &patch);
3085 if (thread->isMsdDevice()) {
3086 thread->setDownStreamPatch(&patch);
3087 }
3088 thread->setBluetoothVariableLatencyEnabled(mBluetoothLatencyModesEnabled.load());
3089 return thread;
3090 }
3091 }
3092
3093 return nullptr;
3094 }
3095
openOutput(const media::OpenOutputRequest & request,media::OpenOutputResponse * response)3096 status_t AudioFlinger::openOutput(const media::OpenOutputRequest& request,
3097 media::OpenOutputResponse* response)
3098 {
3099 audio_module_handle_t module = VALUE_OR_RETURN_STATUS(
3100 aidl2legacy_int32_t_audio_module_handle_t(request.module));
3101 audio_config_t halConfig = VALUE_OR_RETURN_STATUS(
3102 aidl2legacy_AudioConfig_audio_config_t(request.halConfig, false /*isInput*/));
3103 audio_config_base_t mixerConfig = VALUE_OR_RETURN_STATUS(
3104 aidl2legacy_AudioConfigBase_audio_config_base_t(request.mixerConfig, false/*isInput*/));
3105 sp<DeviceDescriptorBase> device = VALUE_OR_RETURN_STATUS(
3106 aidl2legacy_DeviceDescriptorBase(request.device));
3107 audio_output_flags_t flags = VALUE_OR_RETURN_STATUS(
3108 aidl2legacy_int32_t_audio_output_flags_t_mask(request.flags));
3109
3110 audio_io_handle_t output;
3111
3112 ALOGI("openOutput() this %p, module %d Device %s, SamplingRate %d, Format %#08x, "
3113 "Channels %#x, flags %#x",
3114 this, module,
3115 device->toString().c_str(),
3116 halConfig.sample_rate,
3117 halConfig.format,
3118 halConfig.channel_mask,
3119 flags);
3120
3121 audio_devices_t deviceType = device->type();
3122 const String8 address = String8(device->address().c_str());
3123
3124 if (deviceType == AUDIO_DEVICE_NONE) {
3125 return BAD_VALUE;
3126 }
3127
3128 Mutex::Autolock _l(mLock);
3129
3130 sp<ThreadBase> thread = openOutput_l(module, &output, &halConfig,
3131 &mixerConfig, deviceType, address, flags);
3132 if (thread != 0) {
3133 uint32_t latencyMs = 0;
3134 if ((flags & AUDIO_OUTPUT_FLAG_MMAP_NOIRQ) == 0) {
3135 PlaybackThread *playbackThread = (PlaybackThread *)thread.get();
3136 latencyMs = playbackThread->latency();
3137
3138 // notify client processes of the new output creation
3139 playbackThread->ioConfigChanged(AUDIO_OUTPUT_OPENED);
3140
3141 // the first primary output opened designates the primary hw device if no HW module
3142 // named "primary" was already loaded.
3143 AutoMutex lock(mHardwareLock);
3144 if ((mPrimaryHardwareDev == nullptr) && (flags & AUDIO_OUTPUT_FLAG_PRIMARY)) {
3145 ALOGI("Using module %d as the primary audio interface", module);
3146 mPrimaryHardwareDev = playbackThread->getOutput()->audioHwDev;
3147
3148 mHardwareStatus = AUDIO_HW_SET_MODE;
3149 mPrimaryHardwareDev->hwDevice()->setMode(mMode);
3150 mHardwareStatus = AUDIO_HW_IDLE;
3151 }
3152 } else {
3153 MmapThread *mmapThread = (MmapThread *)thread.get();
3154 mmapThread->ioConfigChanged(AUDIO_OUTPUT_OPENED);
3155 }
3156 response->output = VALUE_OR_RETURN_STATUS(legacy2aidl_audio_io_handle_t_int32_t(output));
3157 response->config = VALUE_OR_RETURN_STATUS(
3158 legacy2aidl_audio_config_t_AudioConfig(halConfig, false /*isInput*/));
3159 response->latencyMs = VALUE_OR_RETURN_STATUS(convertIntegral<int32_t>(latencyMs));
3160 response->flags = VALUE_OR_RETURN_STATUS(
3161 legacy2aidl_audio_output_flags_t_int32_t_mask(flags));
3162 return NO_ERROR;
3163 }
3164
3165 return NO_INIT;
3166 }
3167
openDuplicateOutput(audio_io_handle_t output1,audio_io_handle_t output2)3168 audio_io_handle_t AudioFlinger::openDuplicateOutput(audio_io_handle_t output1,
3169 audio_io_handle_t output2)
3170 {
3171 Mutex::Autolock _l(mLock);
3172 MixerThread *thread1 = checkMixerThread_l(output1);
3173 MixerThread *thread2 = checkMixerThread_l(output2);
3174
3175 if (thread1 == NULL || thread2 == NULL) {
3176 ALOGW("openDuplicateOutput() wrong output mixer type for output %d or %d", output1,
3177 output2);
3178 return AUDIO_IO_HANDLE_NONE;
3179 }
3180
3181 audio_io_handle_t id = nextUniqueId(AUDIO_UNIQUE_ID_USE_OUTPUT);
3182 DuplicatingThread *thread = new DuplicatingThread(this, thread1, id, mSystemReady);
3183 thread->addOutputTrack(thread2);
3184 mPlaybackThreads.add(id, thread);
3185 // notify client processes of the new output creation
3186 thread->ioConfigChanged(AUDIO_OUTPUT_OPENED);
3187 return id;
3188 }
3189
closeOutput(audio_io_handle_t output)3190 status_t AudioFlinger::closeOutput(audio_io_handle_t output)
3191 {
3192 return closeOutput_nonvirtual(output);
3193 }
3194
closeOutput_nonvirtual(audio_io_handle_t output)3195 status_t AudioFlinger::closeOutput_nonvirtual(audio_io_handle_t output)
3196 {
3197 // keep strong reference on the playback thread so that
3198 // it is not destroyed while exit() is executed
3199 sp<PlaybackThread> playbackThread;
3200 sp<MmapPlaybackThread> mmapThread;
3201 {
3202 Mutex::Autolock _l(mLock);
3203 playbackThread = checkPlaybackThread_l(output);
3204 if (playbackThread != NULL) {
3205 ALOGV("closeOutput() %d", output);
3206
3207 dumpToThreadLog_l(playbackThread);
3208
3209 if (playbackThread->type() == ThreadBase::MIXER) {
3210 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
3211 if (mPlaybackThreads.valueAt(i)->isDuplicating()) {
3212 DuplicatingThread *dupThread =
3213 (DuplicatingThread *)mPlaybackThreads.valueAt(i).get();
3214 dupThread->removeOutputTrack((MixerThread *)playbackThread.get());
3215 }
3216 }
3217 }
3218
3219
3220 mPlaybackThreads.removeItem(output);
3221 // save all effects to the default thread
3222 if (mPlaybackThreads.size()) {
3223 PlaybackThread *dstThread = checkPlaybackThread_l(mPlaybackThreads.keyAt(0));
3224 if (dstThread != NULL) {
3225 // audioflinger lock is held so order of thread lock acquisition doesn't matter
3226 Mutex::Autolock _dl(dstThread->mLock);
3227 Mutex::Autolock _sl(playbackThread->mLock);
3228 Vector< sp<EffectChain> > effectChains = playbackThread->getEffectChains_l();
3229 for (size_t i = 0; i < effectChains.size(); i ++) {
3230 moveEffectChain_l(effectChains[i]->sessionId(), playbackThread.get(),
3231 dstThread);
3232 }
3233 }
3234 }
3235 } else {
3236 mmapThread = (MmapPlaybackThread *)checkMmapThread_l(output);
3237 if (mmapThread == 0) {
3238 return BAD_VALUE;
3239 }
3240 dumpToThreadLog_l(mmapThread);
3241 mMmapThreads.removeItem(output);
3242 ALOGD("closing mmapThread %p", mmapThread.get());
3243 }
3244 ioConfigChanged(AUDIO_OUTPUT_CLOSED, sp<AudioIoDescriptor>::make(output));
3245 mPatchPanel.notifyStreamClosed(output);
3246 }
3247 // The thread entity (active unit of execution) is no longer running here,
3248 // but the ThreadBase container still exists.
3249
3250 if (playbackThread != 0) {
3251 playbackThread->exit();
3252 if (!playbackThread->isDuplicating()) {
3253 closeOutputFinish(playbackThread);
3254 }
3255 } else if (mmapThread != 0) {
3256 ALOGD("mmapThread exit()");
3257 mmapThread->exit();
3258 AudioStreamOut *out = mmapThread->clearOutput();
3259 ALOG_ASSERT(out != NULL, "out shouldn't be NULL");
3260 // from now on thread->mOutput is NULL
3261 delete out;
3262 }
3263 return NO_ERROR;
3264 }
3265
closeOutputFinish(const sp<PlaybackThread> & thread)3266 void AudioFlinger::closeOutputFinish(const sp<PlaybackThread>& thread)
3267 {
3268 AudioStreamOut *out = thread->clearOutput();
3269 ALOG_ASSERT(out != NULL, "out shouldn't be NULL");
3270 // from now on thread->mOutput is NULL
3271 delete out;
3272 }
3273
closeThreadInternal_l(const sp<PlaybackThread> & thread)3274 void AudioFlinger::closeThreadInternal_l(const sp<PlaybackThread>& thread)
3275 {
3276 mPlaybackThreads.removeItem(thread->mId);
3277 thread->exit();
3278 closeOutputFinish(thread);
3279 }
3280
suspendOutput(audio_io_handle_t output)3281 status_t AudioFlinger::suspendOutput(audio_io_handle_t output)
3282 {
3283 Mutex::Autolock _l(mLock);
3284 PlaybackThread *thread = checkPlaybackThread_l(output);
3285
3286 if (thread == NULL) {
3287 return BAD_VALUE;
3288 }
3289
3290 ALOGV("suspendOutput() %d", output);
3291 thread->suspend();
3292
3293 return NO_ERROR;
3294 }
3295
restoreOutput(audio_io_handle_t output)3296 status_t AudioFlinger::restoreOutput(audio_io_handle_t output)
3297 {
3298 Mutex::Autolock _l(mLock);
3299 PlaybackThread *thread = checkPlaybackThread_l(output);
3300
3301 if (thread == NULL) {
3302 return BAD_VALUE;
3303 }
3304
3305 ALOGV("restoreOutput() %d", output);
3306
3307 thread->restore();
3308
3309 return NO_ERROR;
3310 }
3311
openInput(const media::OpenInputRequest & request,media::OpenInputResponse * response)3312 status_t AudioFlinger::openInput(const media::OpenInputRequest& request,
3313 media::OpenInputResponse* response)
3314 {
3315 Mutex::Autolock _l(mLock);
3316
3317 AudioDeviceTypeAddr device = VALUE_OR_RETURN_STATUS(
3318 aidl2legacy_AudioDeviceTypeAddress(request.device));
3319 if (device.mType == AUDIO_DEVICE_NONE) {
3320 return BAD_VALUE;
3321 }
3322
3323 audio_io_handle_t input = VALUE_OR_RETURN_STATUS(
3324 aidl2legacy_int32_t_audio_io_handle_t(request.input));
3325 audio_config_t config = VALUE_OR_RETURN_STATUS(
3326 aidl2legacy_AudioConfig_audio_config_t(request.config, true /*isInput*/));
3327
3328 sp<ThreadBase> thread = openInput_l(
3329 VALUE_OR_RETURN_STATUS(aidl2legacy_int32_t_audio_module_handle_t(request.module)),
3330 &input,
3331 &config,
3332 device.mType,
3333 device.address().c_str(),
3334 VALUE_OR_RETURN_STATUS(aidl2legacy_AudioSource_audio_source_t(request.source)),
3335 VALUE_OR_RETURN_STATUS(aidl2legacy_int32_t_audio_input_flags_t_mask(request.flags)),
3336 AUDIO_DEVICE_NONE,
3337 String8{});
3338
3339 response->input = VALUE_OR_RETURN_STATUS(legacy2aidl_audio_io_handle_t_int32_t(input));
3340 response->config = VALUE_OR_RETURN_STATUS(
3341 legacy2aidl_audio_config_t_AudioConfig(config, true /*isInput*/));
3342 response->device = request.device;
3343
3344 if (thread != 0) {
3345 // notify client processes of the new input creation
3346 thread->ioConfigChanged(AUDIO_INPUT_OPENED);
3347 return NO_ERROR;
3348 }
3349 return NO_INIT;
3350 }
3351
openInput_l(audio_module_handle_t module,audio_io_handle_t * input,audio_config_t * config,audio_devices_t devices,const char * address,audio_source_t source,audio_input_flags_t flags,audio_devices_t outputDevice,const String8 & outputDeviceAddress)3352 sp<AudioFlinger::ThreadBase> AudioFlinger::openInput_l(audio_module_handle_t module,
3353 audio_io_handle_t *input,
3354 audio_config_t *config,
3355 audio_devices_t devices,
3356 const char* address,
3357 audio_source_t source,
3358 audio_input_flags_t flags,
3359 audio_devices_t outputDevice,
3360 const String8& outputDeviceAddress)
3361 {
3362 AudioHwDevice *inHwDev = findSuitableHwDev_l(module, devices);
3363 if (inHwDev == NULL) {
3364 *input = AUDIO_IO_HANDLE_NONE;
3365 return 0;
3366 }
3367
3368 // Audio Policy can request a specific handle for hardware hotword.
3369 // The goal here is not to re-open an already opened input.
3370 // It is to use a pre-assigned I/O handle.
3371 if (*input == AUDIO_IO_HANDLE_NONE) {
3372 *input = nextUniqueId(AUDIO_UNIQUE_ID_USE_INPUT);
3373 } else if (audio_unique_id_get_use(*input) != AUDIO_UNIQUE_ID_USE_INPUT) {
3374 ALOGE("openInput_l() requested input handle %d is invalid", *input);
3375 return 0;
3376 } else if (mRecordThreads.indexOfKey(*input) >= 0) {
3377 // This should not happen in a transient state with current design.
3378 ALOGE("openInput_l() requested input handle %d is already assigned", *input);
3379 return 0;
3380 }
3381
3382 audio_config_t halconfig = *config;
3383 sp<DeviceHalInterface> inHwHal = inHwDev->hwDevice();
3384 sp<StreamInHalInterface> inStream;
3385 status_t status = inHwHal->openInputStream(
3386 *input, devices, &halconfig, flags, address, source,
3387 outputDevice, outputDeviceAddress, &inStream);
3388 ALOGV("openInput_l() openInputStream returned input %p, devices %#x, SamplingRate %d"
3389 ", Format %#x, Channels %#x, flags %#x, status %d addr %s",
3390 inStream.get(),
3391 devices,
3392 halconfig.sample_rate,
3393 halconfig.format,
3394 halconfig.channel_mask,
3395 flags,
3396 status, address);
3397
3398 // If the input could not be opened with the requested parameters and we can handle the
3399 // conversion internally, try to open again with the proposed parameters.
3400 if (status == BAD_VALUE &&
3401 audio_is_linear_pcm(config->format) &&
3402 audio_is_linear_pcm(halconfig.format) &&
3403 (halconfig.sample_rate <= AUDIO_RESAMPLER_DOWN_RATIO_MAX * config->sample_rate) &&
3404 (audio_channel_count_from_in_mask(halconfig.channel_mask) <= FCC_LIMIT) &&
3405 (audio_channel_count_from_in_mask(config->channel_mask) <= FCC_LIMIT)) {
3406 // FIXME describe the change proposed by HAL (save old values so we can log them here)
3407 ALOGV("openInput_l() reopening with proposed sampling rate and channel mask");
3408 inStream.clear();
3409 status = inHwHal->openInputStream(
3410 *input, devices, &halconfig, flags, address, source,
3411 outputDevice, outputDeviceAddress, &inStream);
3412 // FIXME log this new status; HAL should not propose any further changes
3413 }
3414
3415 if (status == NO_ERROR && inStream != 0) {
3416 AudioStreamIn *inputStream = new AudioStreamIn(inHwDev, inStream, flags);
3417 if ((flags & AUDIO_INPUT_FLAG_MMAP_NOIRQ) != 0) {
3418 sp<MmapCaptureThread> thread =
3419 new MmapCaptureThread(this, *input, inHwDev, inputStream, mSystemReady);
3420 mMmapThreads.add(*input, thread);
3421 ALOGV("openInput_l() created mmap capture thread: ID %d thread %p", *input,
3422 thread.get());
3423 return thread;
3424 } else {
3425 // Start record thread
3426 // RecordThread requires both input and output device indication to forward to audio
3427 // pre processing modules
3428 sp<RecordThread> thread = new RecordThread(this, inputStream, *input, mSystemReady);
3429 mRecordThreads.add(*input, thread);
3430 ALOGV("openInput_l() created record thread: ID %d thread %p", *input, thread.get());
3431 return thread;
3432 }
3433 }
3434
3435 *input = AUDIO_IO_HANDLE_NONE;
3436 return 0;
3437 }
3438
closeInput(audio_io_handle_t input)3439 status_t AudioFlinger::closeInput(audio_io_handle_t input)
3440 {
3441 return closeInput_nonvirtual(input);
3442 }
3443
closeInput_nonvirtual(audio_io_handle_t input)3444 status_t AudioFlinger::closeInput_nonvirtual(audio_io_handle_t input)
3445 {
3446 // keep strong reference on the record thread so that
3447 // it is not destroyed while exit() is executed
3448 sp<RecordThread> recordThread;
3449 sp<MmapCaptureThread> mmapThread;
3450 {
3451 Mutex::Autolock _l(mLock);
3452 recordThread = checkRecordThread_l(input);
3453 if (recordThread != 0) {
3454 ALOGV("closeInput() %d", input);
3455
3456 dumpToThreadLog_l(recordThread);
3457
3458 // If we still have effect chains, it means that a client still holds a handle
3459 // on at least one effect. We must either move the chain to an existing thread with the
3460 // same session ID or put it aside in case a new record thread is opened for a
3461 // new capture on the same session
3462 sp<EffectChain> chain;
3463 {
3464 Mutex::Autolock _sl(recordThread->mLock);
3465 Vector< sp<EffectChain> > effectChains = recordThread->getEffectChains_l();
3466 // Note: maximum one chain per record thread
3467 if (effectChains.size() != 0) {
3468 chain = effectChains[0];
3469 }
3470 }
3471 if (chain != 0) {
3472 // first check if a record thread is already opened with a client on same session.
3473 // This should only happen in case of overlap between one thread tear down and the
3474 // creation of its replacement
3475 size_t i;
3476 for (i = 0; i < mRecordThreads.size(); i++) {
3477 sp<RecordThread> t = mRecordThreads.valueAt(i);
3478 if (t == recordThread) {
3479 continue;
3480 }
3481 if (t->hasAudioSession(chain->sessionId()) != 0) {
3482 Mutex::Autolock _l2(t->mLock);
3483 ALOGV("closeInput() found thread %d for effect session %d",
3484 t->id(), chain->sessionId());
3485 t->addEffectChain_l(chain);
3486 break;
3487 }
3488 }
3489 // put the chain aside if we could not find a record thread with the same session id
3490 if (i == mRecordThreads.size()) {
3491 putOrphanEffectChain_l(chain);
3492 }
3493 }
3494 mRecordThreads.removeItem(input);
3495 } else {
3496 mmapThread = (MmapCaptureThread *)checkMmapThread_l(input);
3497 if (mmapThread == 0) {
3498 return BAD_VALUE;
3499 }
3500 dumpToThreadLog_l(mmapThread);
3501 mMmapThreads.removeItem(input);
3502 }
3503 ioConfigChanged(AUDIO_INPUT_CLOSED, sp<AudioIoDescriptor>::make(input));
3504 }
3505 // FIXME: calling thread->exit() without mLock held should not be needed anymore now that
3506 // we have a different lock for notification client
3507 if (recordThread != 0) {
3508 closeInputFinish(recordThread);
3509 } else if (mmapThread != 0) {
3510 mmapThread->exit();
3511 AudioStreamIn *in = mmapThread->clearInput();
3512 ALOG_ASSERT(in != NULL, "in shouldn't be NULL");
3513 // from now on thread->mInput is NULL
3514 delete in;
3515 }
3516 return NO_ERROR;
3517 }
3518
closeInputFinish(const sp<RecordThread> & thread)3519 void AudioFlinger::closeInputFinish(const sp<RecordThread>& thread)
3520 {
3521 thread->exit();
3522 AudioStreamIn *in = thread->clearInput();
3523 ALOG_ASSERT(in != NULL, "in shouldn't be NULL");
3524 // from now on thread->mInput is NULL
3525 delete in;
3526 }
3527
closeThreadInternal_l(const sp<RecordThread> & thread)3528 void AudioFlinger::closeThreadInternal_l(const sp<RecordThread>& thread)
3529 {
3530 mRecordThreads.removeItem(thread->mId);
3531 closeInputFinish(thread);
3532 }
3533
invalidateTracks(const std::vector<audio_port_handle_t> & portIds)3534 status_t AudioFlinger::invalidateTracks(const std::vector<audio_port_handle_t> &portIds) {
3535 Mutex::Autolock _l(mLock);
3536 ALOGV("%s", __func__);
3537
3538 std::set<audio_port_handle_t> portIdSet(portIds.begin(), portIds.end());
3539 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
3540 PlaybackThread *thread = mPlaybackThreads.valueAt(i).get();
3541 thread->invalidateTracks(portIdSet);
3542 if (portIdSet.empty()) {
3543 return NO_ERROR;
3544 }
3545 }
3546 for (size_t i = 0; i < mMmapThreads.size(); i++) {
3547 mMmapThreads[i]->invalidateTracks(portIdSet);
3548 if (portIdSet.empty()) {
3549 return NO_ERROR;
3550 }
3551 }
3552 return NO_ERROR;
3553 }
3554
3555
newAudioUniqueId(audio_unique_id_use_t use)3556 audio_unique_id_t AudioFlinger::newAudioUniqueId(audio_unique_id_use_t use)
3557 {
3558 // This is a binder API, so a malicious client could pass in a bad parameter.
3559 // Check for that before calling the internal API nextUniqueId().
3560 if ((unsigned) use >= (unsigned) AUDIO_UNIQUE_ID_USE_MAX) {
3561 ALOGE("newAudioUniqueId invalid use %d", use);
3562 return AUDIO_UNIQUE_ID_ALLOCATE;
3563 }
3564 return nextUniqueId(use);
3565 }
3566
acquireAudioSessionId(audio_session_t audioSession,pid_t pid,uid_t uid)3567 void AudioFlinger::acquireAudioSessionId(
3568 audio_session_t audioSession, pid_t pid, uid_t uid)
3569 {
3570 Mutex::Autolock _l(mLock);
3571 pid_t caller = IPCThreadState::self()->getCallingPid();
3572 ALOGV("acquiring %d from %d, for %d", audioSession, caller, pid);
3573 const uid_t callerUid = IPCThreadState::self()->getCallingUid();
3574 if (pid != (pid_t)-1 && isAudioServerOrMediaServerUid(callerUid)) {
3575 caller = pid; // check must match releaseAudioSessionId()
3576 }
3577 if (uid == (uid_t)-1 || !isAudioServerOrMediaServerUid(callerUid)) {
3578 uid = callerUid;
3579 }
3580
3581 {
3582 Mutex::Autolock _cl(mClientLock);
3583 // Ignore requests received from processes not known as notification client. The request
3584 // is likely proxied by mediaserver (e.g CameraService) and releaseAudioSessionId() can be
3585 // called from a different pid leaving a stale session reference. Also we don't know how
3586 // to clear this reference if the client process dies.
3587 if (mNotificationClients.indexOfKey(caller) < 0) {
3588 ALOGW("acquireAudioSessionId() unknown client %d for session %d", caller, audioSession);
3589 return;
3590 }
3591 }
3592
3593 size_t num = mAudioSessionRefs.size();
3594 for (size_t i = 0; i < num; i++) {
3595 AudioSessionRef *ref = mAudioSessionRefs.editItemAt(i);
3596 if (ref->mSessionid == audioSession && ref->mPid == caller) {
3597 ref->mCnt++;
3598 ALOGV(" incremented refcount to %d", ref->mCnt);
3599 return;
3600 }
3601 }
3602 mAudioSessionRefs.push(new AudioSessionRef(audioSession, caller, uid));
3603 ALOGV(" added new entry for %d", audioSession);
3604 }
3605
releaseAudioSessionId(audio_session_t audioSession,pid_t pid)3606 void AudioFlinger::releaseAudioSessionId(audio_session_t audioSession, pid_t pid)
3607 {
3608 std::vector< sp<EffectModule> > removedEffects;
3609 {
3610 Mutex::Autolock _l(mLock);
3611 pid_t caller = IPCThreadState::self()->getCallingPid();
3612 ALOGV("releasing %d from %d for %d", audioSession, caller, pid);
3613 const uid_t callerUid = IPCThreadState::self()->getCallingUid();
3614 if (pid != (pid_t)-1 && isAudioServerOrMediaServerUid(callerUid)) {
3615 caller = pid; // check must match acquireAudioSessionId()
3616 }
3617 size_t num = mAudioSessionRefs.size();
3618 for (size_t i = 0; i < num; i++) {
3619 AudioSessionRef *ref = mAudioSessionRefs.itemAt(i);
3620 if (ref->mSessionid == audioSession && ref->mPid == caller) {
3621 ref->mCnt--;
3622 ALOGV(" decremented refcount to %d", ref->mCnt);
3623 if (ref->mCnt == 0) {
3624 mAudioSessionRefs.removeAt(i);
3625 delete ref;
3626 std::vector< sp<EffectModule> > effects = purgeStaleEffects_l();
3627 removedEffects.insert(removedEffects.end(), effects.begin(), effects.end());
3628 }
3629 goto Exit;
3630 }
3631 }
3632 // If the caller is audioserver it is likely that the session being released was acquired
3633 // on behalf of a process not in notification clients and we ignore the warning.
3634 ALOGW_IF(!isAudioServerUid(callerUid),
3635 "session id %d not found for pid %d", audioSession, caller);
3636 }
3637
3638 Exit:
3639 for (auto& effect : removedEffects) {
3640 effect->updatePolicyState();
3641 }
3642 }
3643
isSessionAcquired_l(audio_session_t audioSession)3644 bool AudioFlinger::isSessionAcquired_l(audio_session_t audioSession)
3645 {
3646 size_t num = mAudioSessionRefs.size();
3647 for (size_t i = 0; i < num; i++) {
3648 AudioSessionRef *ref = mAudioSessionRefs.itemAt(i);
3649 if (ref->mSessionid == audioSession) {
3650 return true;
3651 }
3652 }
3653 return false;
3654 }
3655
purgeStaleEffects_l()3656 std::vector<sp<AudioFlinger::EffectModule>> AudioFlinger::purgeStaleEffects_l() {
3657
3658 ALOGV("purging stale effects");
3659
3660 Vector< sp<EffectChain> > chains;
3661 std::vector< sp<EffectModule> > removedEffects;
3662
3663 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
3664 sp<PlaybackThread> t = mPlaybackThreads.valueAt(i);
3665 Mutex::Autolock _l(t->mLock);
3666 for (size_t j = 0; j < t->mEffectChains.size(); j++) {
3667 sp<EffectChain> ec = t->mEffectChains[j];
3668 if (!audio_is_global_session(ec->sessionId())) {
3669 chains.push(ec);
3670 }
3671 }
3672 }
3673
3674 for (size_t i = 0; i < mRecordThreads.size(); i++) {
3675 sp<RecordThread> t = mRecordThreads.valueAt(i);
3676 Mutex::Autolock _l(t->mLock);
3677 for (size_t j = 0; j < t->mEffectChains.size(); j++) {
3678 sp<EffectChain> ec = t->mEffectChains[j];
3679 chains.push(ec);
3680 }
3681 }
3682
3683 for (size_t i = 0; i < mMmapThreads.size(); i++) {
3684 sp<MmapThread> t = mMmapThreads.valueAt(i);
3685 Mutex::Autolock _l(t->mLock);
3686 for (size_t j = 0; j < t->mEffectChains.size(); j++) {
3687 sp<EffectChain> ec = t->mEffectChains[j];
3688 chains.push(ec);
3689 }
3690 }
3691
3692 for (size_t i = 0; i < chains.size(); i++) {
3693 // clang-tidy suggests const ref
3694 sp<EffectChain> ec = chains[i]; // NOLINT(performance-unnecessary-copy-initialization)
3695 int sessionid = ec->sessionId();
3696 sp<ThreadBase> t = ec->thread().promote();
3697 if (t == 0) {
3698 continue;
3699 }
3700 size_t numsessionrefs = mAudioSessionRefs.size();
3701 bool found = false;
3702 for (size_t k = 0; k < numsessionrefs; k++) {
3703 AudioSessionRef *ref = mAudioSessionRefs.itemAt(k);
3704 if (ref->mSessionid == sessionid) {
3705 ALOGV(" session %d still exists for %d with %d refs",
3706 sessionid, ref->mPid, ref->mCnt);
3707 found = true;
3708 break;
3709 }
3710 }
3711 if (!found) {
3712 Mutex::Autolock _l(t->mLock);
3713 // remove all effects from the chain
3714 while (ec->mEffects.size()) {
3715 sp<EffectModule> effect = ec->mEffects[0];
3716 effect->unPin();
3717 t->removeEffect_l(effect, /*release*/ true);
3718 if (effect->purgeHandles()) {
3719 effect->checkSuspendOnEffectEnabled(false, true /*threadLocked*/);
3720 }
3721 removedEffects.push_back(effect);
3722 }
3723 }
3724 }
3725 return removedEffects;
3726 }
3727
3728 // dumpToThreadLog_l() must be called with AudioFlinger::mLock held
dumpToThreadLog_l(const sp<ThreadBase> & thread)3729 void AudioFlinger::dumpToThreadLog_l(const sp<ThreadBase> &thread)
3730 {
3731 constexpr int THREAD_DUMP_TIMEOUT_MS = 2;
3732 audio_utils::FdToString fdToString("- ", THREAD_DUMP_TIMEOUT_MS);
3733 const int fd = fdToString.fd();
3734 if (fd >= 0) {
3735 thread->dump(fd, {} /* args */);
3736 mThreadLog.logs(-1 /* time */, fdToString.getStringAndClose());
3737 }
3738 }
3739
3740 // checkThread_l() must be called with AudioFlinger::mLock held
checkThread_l(audio_io_handle_t ioHandle) const3741 AudioFlinger::ThreadBase *AudioFlinger::checkThread_l(audio_io_handle_t ioHandle) const
3742 {
3743 ThreadBase *thread = checkMmapThread_l(ioHandle);
3744 if (thread == 0) {
3745 switch (audio_unique_id_get_use(ioHandle)) {
3746 case AUDIO_UNIQUE_ID_USE_OUTPUT:
3747 thread = checkPlaybackThread_l(ioHandle);
3748 break;
3749 case AUDIO_UNIQUE_ID_USE_INPUT:
3750 thread = checkRecordThread_l(ioHandle);
3751 break;
3752 default:
3753 break;
3754 }
3755 }
3756 return thread;
3757 }
3758
3759 // checkOutputThread_l() must be called with AudioFlinger::mLock held
checkOutputThread_l(audio_io_handle_t ioHandle) const3760 sp<AudioFlinger::ThreadBase> AudioFlinger::checkOutputThread_l(audio_io_handle_t ioHandle) const
3761 {
3762 if (audio_unique_id_get_use(ioHandle) != AUDIO_UNIQUE_ID_USE_OUTPUT) {
3763 return nullptr;
3764 }
3765
3766 sp<AudioFlinger::ThreadBase> thread = mPlaybackThreads.valueFor(ioHandle);
3767 if (thread == nullptr) {
3768 thread = mMmapThreads.valueFor(ioHandle);
3769 }
3770 return thread;
3771 }
3772
3773 // checkPlaybackThread_l() must be called with AudioFlinger::mLock held
checkPlaybackThread_l(audio_io_handle_t output) const3774 AudioFlinger::PlaybackThread *AudioFlinger::checkPlaybackThread_l(audio_io_handle_t output) const
3775 {
3776 return mPlaybackThreads.valueFor(output).get();
3777 }
3778
3779 // checkMixerThread_l() must be called with AudioFlinger::mLock held
checkMixerThread_l(audio_io_handle_t output) const3780 AudioFlinger::MixerThread *AudioFlinger::checkMixerThread_l(audio_io_handle_t output) const
3781 {
3782 PlaybackThread *thread = checkPlaybackThread_l(output);
3783 return thread != NULL && thread->type() != ThreadBase::DIRECT ? (MixerThread *) thread : NULL;
3784 }
3785
3786 // checkRecordThread_l() must be called with AudioFlinger::mLock held
checkRecordThread_l(audio_io_handle_t input) const3787 AudioFlinger::RecordThread *AudioFlinger::checkRecordThread_l(audio_io_handle_t input) const
3788 {
3789 return mRecordThreads.valueFor(input).get();
3790 }
3791
3792 // checkMmapThread_l() must be called with AudioFlinger::mLock held
checkMmapThread_l(audio_io_handle_t io) const3793 AudioFlinger::MmapThread *AudioFlinger::checkMmapThread_l(audio_io_handle_t io) const
3794 {
3795 return mMmapThreads.valueFor(io).get();
3796 }
3797
3798
3799 // checkPlaybackThread_l() must be called with AudioFlinger::mLock held
getVolumeInterface_l(audio_io_handle_t output) const3800 AudioFlinger::VolumeInterface *AudioFlinger::getVolumeInterface_l(audio_io_handle_t output) const
3801 {
3802 VolumeInterface *volumeInterface = mPlaybackThreads.valueFor(output).get();
3803 if (volumeInterface == nullptr) {
3804 MmapThread *mmapThread = mMmapThreads.valueFor(output).get();
3805 if (mmapThread != nullptr) {
3806 if (mmapThread->isOutput()) {
3807 MmapPlaybackThread *mmapPlaybackThread =
3808 static_cast<MmapPlaybackThread *>(mmapThread);
3809 volumeInterface = mmapPlaybackThread;
3810 }
3811 }
3812 }
3813 return volumeInterface;
3814 }
3815
getAllVolumeInterfaces_l() const3816 Vector <AudioFlinger::VolumeInterface *> AudioFlinger::getAllVolumeInterfaces_l() const
3817 {
3818 Vector <VolumeInterface *> volumeInterfaces;
3819 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
3820 volumeInterfaces.add(mPlaybackThreads.valueAt(i).get());
3821 }
3822 for (size_t i = 0; i < mMmapThreads.size(); i++) {
3823 if (mMmapThreads.valueAt(i)->isOutput()) {
3824 MmapPlaybackThread *mmapPlaybackThread =
3825 static_cast<MmapPlaybackThread *>(mMmapThreads.valueAt(i).get());
3826 volumeInterfaces.add(mmapPlaybackThread);
3827 }
3828 }
3829 return volumeInterfaces;
3830 }
3831
nextUniqueId(audio_unique_id_use_t use)3832 audio_unique_id_t AudioFlinger::nextUniqueId(audio_unique_id_use_t use)
3833 {
3834 // This is the internal API, so it is OK to assert on bad parameter.
3835 LOG_ALWAYS_FATAL_IF((unsigned) use >= (unsigned) AUDIO_UNIQUE_ID_USE_MAX);
3836 const int maxRetries = use == AUDIO_UNIQUE_ID_USE_SESSION ? 3 : 1;
3837 for (int retry = 0; retry < maxRetries; retry++) {
3838 // The cast allows wraparound from max positive to min negative instead of abort
3839 uint32_t base = (uint32_t) atomic_fetch_add_explicit(&mNextUniqueIds[use],
3840 (uint_fast32_t) AUDIO_UNIQUE_ID_USE_MAX, memory_order_acq_rel);
3841 ALOG_ASSERT(audio_unique_id_get_use(base) == AUDIO_UNIQUE_ID_USE_UNSPECIFIED);
3842 // allow wrap by skipping 0 and -1 for session ids
3843 if (!(base == 0 || base == (~0u & ~AUDIO_UNIQUE_ID_USE_MASK))) {
3844 ALOGW_IF(retry != 0, "unique ID overflow for use %d", use);
3845 return (audio_unique_id_t) (base | use);
3846 }
3847 }
3848 // We have no way of recovering from wraparound
3849 LOG_ALWAYS_FATAL("unique ID overflow for use %d", use);
3850 // TODO Use a floor after wraparound. This may need a mutex.
3851 }
3852
primaryPlaybackThread_l() const3853 AudioFlinger::PlaybackThread *AudioFlinger::primaryPlaybackThread_l() const
3854 {
3855 AutoMutex lock(mHardwareLock);
3856 if (mPrimaryHardwareDev == nullptr) {
3857 return nullptr;
3858 }
3859 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
3860 PlaybackThread *thread = mPlaybackThreads.valueAt(i).get();
3861 if(thread->isDuplicating()) {
3862 continue;
3863 }
3864 AudioStreamOut *output = thread->getOutput();
3865 if (output != NULL && output->audioHwDev == mPrimaryHardwareDev) {
3866 return thread;
3867 }
3868 }
3869 return nullptr;
3870 }
3871
primaryOutputDevice_l() const3872 DeviceTypeSet AudioFlinger::primaryOutputDevice_l() const
3873 {
3874 PlaybackThread *thread = primaryPlaybackThread_l();
3875
3876 if (thread == NULL) {
3877 return {};
3878 }
3879
3880 return thread->outDeviceTypes();
3881 }
3882
fastPlaybackThread_l() const3883 AudioFlinger::PlaybackThread *AudioFlinger::fastPlaybackThread_l() const
3884 {
3885 size_t minFrameCount = 0;
3886 PlaybackThread *minThread = NULL;
3887 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
3888 PlaybackThread *thread = mPlaybackThreads.valueAt(i).get();
3889 if (!thread->isDuplicating()) {
3890 size_t frameCount = thread->frameCountHAL();
3891 if (frameCount != 0 && (minFrameCount == 0 || frameCount < minFrameCount ||
3892 (frameCount == minFrameCount && thread->hasFastMixer() &&
3893 /*minThread != NULL &&*/ !minThread->hasFastMixer()))) {
3894 minFrameCount = frameCount;
3895 minThread = thread;
3896 }
3897 }
3898 }
3899 return minThread;
3900 }
3901
hapticPlaybackThread_l() const3902 AudioFlinger::ThreadBase *AudioFlinger::hapticPlaybackThread_l() const {
3903 for (size_t i = 0; i < mPlaybackThreads.size(); ++i) {
3904 PlaybackThread *thread = mPlaybackThreads.valueAt(i).get();
3905 if (thread->hapticChannelMask() != AUDIO_CHANNEL_NONE) {
3906 return thread;
3907 }
3908 }
3909 return nullptr;
3910 }
3911
updateSecondaryOutputsForTrack_l(PlaybackThread::Track * track,PlaybackThread * thread,const std::vector<audio_io_handle_t> & secondaryOutputs) const3912 void AudioFlinger::updateSecondaryOutputsForTrack_l(
3913 PlaybackThread::Track* track,
3914 PlaybackThread* thread,
3915 const std::vector<audio_io_handle_t> &secondaryOutputs) const {
3916 TeePatches teePatches;
3917 for (audio_io_handle_t secondaryOutput : secondaryOutputs) {
3918 PlaybackThread *secondaryThread = checkPlaybackThread_l(secondaryOutput);
3919 if (secondaryThread == nullptr) {
3920 ALOGE("no playback thread found for secondary output %d", thread->id());
3921 continue;
3922 }
3923
3924 size_t sourceFrameCount = thread->frameCount() * track->sampleRate()
3925 / thread->sampleRate();
3926 size_t sinkFrameCount = secondaryThread->frameCount() * track->sampleRate()
3927 / secondaryThread->sampleRate();
3928 // If the secondary output has just been opened, the first secondaryThread write
3929 // will not block as it will fill the empty startup buffer of the HAL,
3930 // so a second sink buffer needs to be ready for the immediate next blocking write.
3931 // Additionally, have a margin of one main thread buffer as the scheduling jitter
3932 // can reorder the writes (eg if thread A&B have the same write intervale,
3933 // the scheduler could schedule AB...BA)
3934 size_t frameCountToBeReady = 2 * sinkFrameCount + sourceFrameCount;
3935 // Total secondary output buffer must be at least as the read frames plus
3936 // the margin of a few buffers on both sides in case the
3937 // threads scheduling has some jitter.
3938 // That value should not impact latency as the secondary track is started before
3939 // its buffer is full, see frameCountToBeReady.
3940 size_t frameCount = frameCountToBeReady + 2 * (sourceFrameCount + sinkFrameCount);
3941 // The frameCount should also not be smaller than the secondary thread min frame
3942 // count
3943 size_t minFrameCount = AudioSystem::calculateMinFrameCount(
3944 [&] { Mutex::Autolock _l(secondaryThread->mLock);
3945 return secondaryThread->latency_l(); }(),
3946 secondaryThread->mNormalFrameCount,
3947 secondaryThread->mSampleRate,
3948 track->sampleRate(),
3949 track->getSpeed());
3950 frameCount = std::max(frameCount, minFrameCount);
3951
3952 using namespace std::chrono_literals;
3953 auto inChannelMask = audio_channel_mask_out_to_in(track->channelMask());
3954 if (inChannelMask == AUDIO_CHANNEL_INVALID) {
3955 // The downstream PatchTrack has the proper output channel mask,
3956 // so if there is no input channel mask equivalent, we can just
3957 // use an index mask here to create the PatchRecord.
3958 inChannelMask = audio_channel_mask_out_to_in_index_mask(track->channelMask());
3959 }
3960 sp patchRecord = new RecordThread::PatchRecord(nullptr /* thread */,
3961 track->sampleRate(),
3962 inChannelMask,
3963 track->format(),
3964 frameCount,
3965 nullptr /* buffer */,
3966 (size_t)0 /* bufferSize */,
3967 AUDIO_INPUT_FLAG_DIRECT,
3968 0ns /* timeout */);
3969 status_t status = patchRecord->initCheck();
3970 if (status != NO_ERROR) {
3971 ALOGE("Secondary output patchRecord init failed: %d", status);
3972 continue;
3973 }
3974
3975 // TODO: We could check compatibility of the secondaryThread with the PatchTrack
3976 // for fast usage: thread has fast mixer, sample rate matches, etc.;
3977 // for now, we exclude fast tracks by removing the Fast flag.
3978 const audio_output_flags_t outputFlags =
3979 (audio_output_flags_t)(track->getOutputFlags() & ~AUDIO_OUTPUT_FLAG_FAST);
3980 sp patchTrack = new PlaybackThread::PatchTrack(secondaryThread,
3981 track->streamType(),
3982 track->sampleRate(),
3983 track->channelMask(),
3984 track->format(),
3985 frameCount,
3986 patchRecord->buffer(),
3987 patchRecord->bufferSize(),
3988 outputFlags,
3989 0ns /* timeout */,
3990 frameCountToBeReady);
3991 status = patchTrack->initCheck();
3992 if (status != NO_ERROR) {
3993 ALOGE("Secondary output patchTrack init failed: %d", status);
3994 continue;
3995 }
3996 teePatches.push_back({patchRecord, patchTrack});
3997 secondaryThread->addPatchTrack(patchTrack);
3998 // In case the downstream patchTrack on the secondaryThread temporarily outlives
3999 // our created track, ensure the corresponding patchRecord is still alive.
4000 patchTrack->setPeerProxy(patchRecord, true /* holdReference */);
4001 patchRecord->setPeerProxy(patchTrack, false /* holdReference */);
4002 }
4003 track->setTeePatchesToUpdate_l(std::move(teePatches));
4004 }
4005
createSyncEvent(AudioSystem::sync_event_t type,audio_session_t triggerSession,audio_session_t listenerSession,sync_event_callback_t callBack,const wp<RefBase> & cookie)4006 sp<AudioFlinger::SyncEvent> AudioFlinger::createSyncEvent(AudioSystem::sync_event_t type,
4007 audio_session_t triggerSession,
4008 audio_session_t listenerSession,
4009 sync_event_callback_t callBack,
4010 const wp<RefBase>& cookie)
4011 {
4012 Mutex::Autolock _l(mLock);
4013
4014 sp<SyncEvent> event = new SyncEvent(type, triggerSession, listenerSession, callBack, cookie);
4015 status_t playStatus = NAME_NOT_FOUND;
4016 status_t recStatus = NAME_NOT_FOUND;
4017 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
4018 playStatus = mPlaybackThreads.valueAt(i)->setSyncEvent(event);
4019 if (playStatus == NO_ERROR) {
4020 return event;
4021 }
4022 }
4023 for (size_t i = 0; i < mRecordThreads.size(); i++) {
4024 recStatus = mRecordThreads.valueAt(i)->setSyncEvent(event);
4025 if (recStatus == NO_ERROR) {
4026 return event;
4027 }
4028 }
4029 if (playStatus == NAME_NOT_FOUND || recStatus == NAME_NOT_FOUND) {
4030 mPendingSyncEvents.add(event);
4031 } else {
4032 ALOGV("createSyncEvent() invalid event %d", event->type());
4033 event.clear();
4034 }
4035 return event;
4036 }
4037
4038 // ----------------------------------------------------------------------------
4039 // Effect management
4040 // ----------------------------------------------------------------------------
4041
getEffectsFactory()4042 sp<EffectsFactoryHalInterface> AudioFlinger::getEffectsFactory() {
4043 return mEffectsFactoryHal;
4044 }
4045
queryNumberEffects(uint32_t * numEffects) const4046 status_t AudioFlinger::queryNumberEffects(uint32_t *numEffects) const
4047 {
4048 Mutex::Autolock _l(mLock);
4049 if (mEffectsFactoryHal.get()) {
4050 return mEffectsFactoryHal->queryNumberEffects(numEffects);
4051 } else {
4052 return -ENODEV;
4053 }
4054 }
4055
queryEffect(uint32_t index,effect_descriptor_t * descriptor) const4056 status_t AudioFlinger::queryEffect(uint32_t index, effect_descriptor_t *descriptor) const
4057 {
4058 Mutex::Autolock _l(mLock);
4059 if (mEffectsFactoryHal.get()) {
4060 return mEffectsFactoryHal->getDescriptor(index, descriptor);
4061 } else {
4062 return -ENODEV;
4063 }
4064 }
4065
getEffectDescriptor(const effect_uuid_t * pUuid,const effect_uuid_t * pTypeUuid,uint32_t preferredTypeFlag,effect_descriptor_t * descriptor) const4066 status_t AudioFlinger::getEffectDescriptor(const effect_uuid_t *pUuid,
4067 const effect_uuid_t *pTypeUuid,
4068 uint32_t preferredTypeFlag,
4069 effect_descriptor_t *descriptor) const
4070 {
4071 if (pUuid == NULL || pTypeUuid == NULL || descriptor == NULL) {
4072 return BAD_VALUE;
4073 }
4074
4075 Mutex::Autolock _l(mLock);
4076
4077 if (!mEffectsFactoryHal.get()) {
4078 return -ENODEV;
4079 }
4080
4081 status_t status = NO_ERROR;
4082 if (!EffectsFactoryHalInterface::isNullUuid(pUuid)) {
4083 // If uuid is specified, request effect descriptor from that.
4084 status = mEffectsFactoryHal->getDescriptor(pUuid, descriptor);
4085 } else if (!EffectsFactoryHalInterface::isNullUuid(pTypeUuid)) {
4086 // If uuid is not specified, look for an available implementation
4087 // of the required type instead.
4088
4089 // Use a temporary descriptor to avoid modifying |descriptor| in the failure case.
4090 effect_descriptor_t desc;
4091 desc.flags = 0; // prevent compiler warning
4092
4093 uint32_t numEffects = 0;
4094 status = mEffectsFactoryHal->queryNumberEffects(&numEffects);
4095 if (status < 0) {
4096 ALOGW("getEffectDescriptor() error %d from FactoryHal queryNumberEffects", status);
4097 return status;
4098 }
4099
4100 bool found = false;
4101 for (uint32_t i = 0; i < numEffects; i++) {
4102 status = mEffectsFactoryHal->getDescriptor(i, &desc);
4103 if (status < 0) {
4104 ALOGW("getEffectDescriptor() error %d from FactoryHal getDescriptor", status);
4105 continue;
4106 }
4107 if (memcmp(&desc.type, pTypeUuid, sizeof(effect_uuid_t)) == 0) {
4108 // If matching type found save effect descriptor.
4109 found = true;
4110 *descriptor = desc;
4111
4112 // If there's no preferred flag or this descriptor matches the preferred
4113 // flag, success! If this descriptor doesn't match the preferred
4114 // flag, continue enumeration in case a better matching version of this
4115 // effect type is available. Note that this means if no effect with a
4116 // correct flag is found, the descriptor returned will correspond to the
4117 // last effect that at least had a matching type uuid (if any).
4118 if (preferredTypeFlag == EFFECT_FLAG_TYPE_MASK ||
4119 (desc.flags & EFFECT_FLAG_TYPE_MASK) == preferredTypeFlag) {
4120 break;
4121 }
4122 }
4123 }
4124
4125 if (!found) {
4126 status = NAME_NOT_FOUND;
4127 ALOGW("getEffectDescriptor(): Effect not found by type.");
4128 }
4129 } else {
4130 status = BAD_VALUE;
4131 ALOGE("getEffectDescriptor(): Either uuid or type uuid must be non-null UUIDs.");
4132 }
4133 return status;
4134 }
4135
createEffect(const media::CreateEffectRequest & request,media::CreateEffectResponse * response)4136 status_t AudioFlinger::createEffect(const media::CreateEffectRequest& request,
4137 media::CreateEffectResponse* response) {
4138 const sp<IEffectClient>& effectClient = request.client;
4139 const int32_t priority = request.priority;
4140 const AudioDeviceTypeAddr device = VALUE_OR_RETURN_STATUS(
4141 aidl2legacy_AudioDeviceTypeAddress(request.device));
4142 AttributionSourceState adjAttributionSource = request.attributionSource;
4143 const audio_session_t sessionId = VALUE_OR_RETURN_STATUS(
4144 aidl2legacy_int32_t_audio_session_t(request.sessionId));
4145 audio_io_handle_t io = VALUE_OR_RETURN_STATUS(
4146 aidl2legacy_int32_t_audio_io_handle_t(request.output));
4147 const effect_descriptor_t descIn = VALUE_OR_RETURN_STATUS(
4148 aidl2legacy_EffectDescriptor_effect_descriptor_t(request.desc));
4149 const bool probe = request.probe;
4150
4151 sp<EffectHandle> handle;
4152 effect_descriptor_t descOut;
4153 int enabledOut = 0;
4154 int idOut = -1;
4155
4156 status_t lStatus = NO_ERROR;
4157
4158 // TODO b/182392553: refactor or make clearer
4159 const uid_t callingUid = IPCThreadState::self()->getCallingUid();
4160 adjAttributionSource.uid = VALUE_OR_RETURN_STATUS(legacy2aidl_uid_t_int32_t(callingUid));
4161 pid_t currentPid = VALUE_OR_RETURN_STATUS(aidl2legacy_int32_t_pid_t(adjAttributionSource.pid));
4162 if (currentPid == -1 || !isAudioServerOrMediaServerOrSystemServerOrRootUid(callingUid)) {
4163 const pid_t callingPid = IPCThreadState::self()->getCallingPid();
4164 ALOGW_IF(currentPid != -1 && currentPid != callingPid,
4165 "%s uid %d pid %d tried to pass itself off as pid %d",
4166 __func__, callingUid, callingPid, currentPid);
4167 adjAttributionSource.pid = VALUE_OR_RETURN_STATUS(legacy2aidl_pid_t_int32_t(callingPid));
4168 currentPid = callingPid;
4169 }
4170 adjAttributionSource = AudioFlinger::checkAttributionSourcePackage(adjAttributionSource);
4171
4172 ALOGV("createEffect pid %d, effectClient %p, priority %d, sessionId %d, io %d, factory %p",
4173 adjAttributionSource.pid, effectClient.get(), priority, sessionId, io,
4174 mEffectsFactoryHal.get());
4175
4176 if (mEffectsFactoryHal == 0) {
4177 ALOGE("%s: no effects factory hal", __func__);
4178 lStatus = NO_INIT;
4179 goto Exit;
4180 }
4181
4182 // check audio settings permission for global effects
4183 if (sessionId == AUDIO_SESSION_OUTPUT_MIX) {
4184 if (!settingsAllowed()) {
4185 ALOGE("%s: no permission for AUDIO_SESSION_OUTPUT_MIX", __func__);
4186 lStatus = PERMISSION_DENIED;
4187 goto Exit;
4188 }
4189 } else if (sessionId == AUDIO_SESSION_OUTPUT_STAGE) {
4190 if (io == AUDIO_IO_HANDLE_NONE) {
4191 ALOGE("%s: APM must specify output when using AUDIO_SESSION_OUTPUT_STAGE", __func__);
4192 lStatus = BAD_VALUE;
4193 goto Exit;
4194 }
4195 PlaybackThread *thread = checkPlaybackThread_l(io);
4196 if (thread == nullptr) {
4197 ALOGE("%s: invalid output %d specified for AUDIO_SESSION_OUTPUT_STAGE", __func__, io);
4198 lStatus = BAD_VALUE;
4199 goto Exit;
4200 }
4201 if (!modifyDefaultAudioEffectsAllowed(adjAttributionSource)
4202 && !isAudioServerUid(callingUid)) {
4203 ALOGE("%s: effect on AUDIO_SESSION_OUTPUT_STAGE not granted for uid %d",
4204 __func__, callingUid);
4205 lStatus = PERMISSION_DENIED;
4206 goto Exit;
4207 }
4208 } else if (sessionId == AUDIO_SESSION_DEVICE) {
4209 if (!modifyDefaultAudioEffectsAllowed(adjAttributionSource)) {
4210 ALOGE("%s: device effect permission denied for uid %d", __func__, callingUid);
4211 lStatus = PERMISSION_DENIED;
4212 goto Exit;
4213 }
4214 if (io != AUDIO_IO_HANDLE_NONE) {
4215 ALOGE("%s: io handle should not be specified for device effect", __func__);
4216 lStatus = BAD_VALUE;
4217 goto Exit;
4218 }
4219 } else {
4220 // general sessionId.
4221
4222 if (audio_unique_id_get_use(sessionId) != AUDIO_UNIQUE_ID_USE_SESSION) {
4223 ALOGE("%s: invalid sessionId %d", __func__, sessionId);
4224 lStatus = BAD_VALUE;
4225 goto Exit;
4226 }
4227
4228 // TODO: should we check if the callingUid (limited to pid) is in mAudioSessionRefs
4229 // to prevent creating an effect when one doesn't actually have track with that session?
4230 }
4231
4232 {
4233 // Get the full effect descriptor from the uuid/type.
4234 // If the session is the output mix, prefer an auxiliary effect,
4235 // otherwise no preference.
4236 uint32_t preferredType = (sessionId == AUDIO_SESSION_OUTPUT_MIX ?
4237 EFFECT_FLAG_TYPE_AUXILIARY : EFFECT_FLAG_TYPE_MASK);
4238 lStatus = getEffectDescriptor(&descIn.uuid, &descIn.type, preferredType, &descOut);
4239 if (lStatus < 0) {
4240 ALOGW("createEffect() error %d from getEffectDescriptor", lStatus);
4241 goto Exit;
4242 }
4243
4244 // Do not allow auxiliary effects on a session different from 0 (output mix)
4245 if (sessionId != AUDIO_SESSION_OUTPUT_MIX &&
4246 (descOut.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
4247 lStatus = INVALID_OPERATION;
4248 goto Exit;
4249 }
4250
4251 // check recording permission for visualizer
4252 if ((memcmp(&descOut.type, SL_IID_VISUALIZATION, sizeof(effect_uuid_t)) == 0) &&
4253 // TODO: Do we need to start/stop op - i.e. is there recording being performed?
4254 !recordingAllowed(adjAttributionSource)) {
4255 lStatus = PERMISSION_DENIED;
4256 goto Exit;
4257 }
4258
4259 const bool hapticPlaybackRequired = EffectModule::isHapticGenerator(&descOut.type);
4260 if (hapticPlaybackRequired
4261 && (sessionId == AUDIO_SESSION_DEVICE
4262 || sessionId == AUDIO_SESSION_OUTPUT_MIX
4263 || sessionId == AUDIO_SESSION_OUTPUT_STAGE)) {
4264 // haptic-generating effect is only valid when the session id is a general session id
4265 lStatus = INVALID_OPERATION;
4266 goto Exit;
4267 }
4268
4269 // Only audio policy service can create a spatializer effect
4270 if ((memcmp(&descOut.type, FX_IID_SPATIALIZER, sizeof(effect_uuid_t)) == 0) &&
4271 (callingUid != AID_AUDIOSERVER || currentPid != getpid())) {
4272 ALOGW("%s: attempt to create a spatializer effect from uid/pid %d/%d",
4273 __func__, callingUid, currentPid);
4274 lStatus = PERMISSION_DENIED;
4275 goto Exit;
4276 }
4277
4278 if (io == AUDIO_IO_HANDLE_NONE && sessionId == AUDIO_SESSION_OUTPUT_MIX) {
4279 // if the output returned by getOutputForEffect() is removed before we lock the
4280 // mutex below, the call to checkPlaybackThread_l(io) below will detect it
4281 // and we will exit safely
4282 io = AudioSystem::getOutputForEffect(&descOut);
4283 ALOGV("createEffect got output %d", io);
4284 }
4285
4286 Mutex::Autolock _l(mLock);
4287
4288 if (sessionId == AUDIO_SESSION_DEVICE) {
4289 sp<Client> client = registerPid(currentPid);
4290 ALOGV("%s device type %#x address %s", __func__, device.mType, device.getAddress());
4291 handle = mDeviceEffectManager->createEffect_l(
4292 &descOut, device, client, effectClient, mPatchPanel.patches_l(),
4293 &enabledOut, &lStatus, probe, request.notifyFramesProcessed);
4294 if (lStatus != NO_ERROR && lStatus != ALREADY_EXISTS) {
4295 // remove local strong reference to Client with mClientLock held
4296 Mutex::Autolock _cl(mClientLock);
4297 client.clear();
4298 } else {
4299 // handle must be valid here, but check again to be safe.
4300 if (handle.get() != nullptr) idOut = handle->id();
4301 }
4302 goto Register;
4303 }
4304
4305 // If output is not specified try to find a matching audio session ID in one of the
4306 // output threads.
4307 // If output is 0 here, sessionId is neither SESSION_OUTPUT_STAGE nor SESSION_OUTPUT_MIX
4308 // because of code checking output when entering the function.
4309 // Note: io is never AUDIO_IO_HANDLE_NONE when creating an effect on an input by APM.
4310 // An AudioEffect created from the Java API will have io as AUDIO_IO_HANDLE_NONE.
4311 if (io == AUDIO_IO_HANDLE_NONE) {
4312 // look for the thread where the specified audio session is present
4313 io = findIoHandleBySessionId_l(sessionId, mPlaybackThreads);
4314 if (io == AUDIO_IO_HANDLE_NONE) {
4315 io = findIoHandleBySessionId_l(sessionId, mRecordThreads);
4316 }
4317 if (io == AUDIO_IO_HANDLE_NONE) {
4318 io = findIoHandleBySessionId_l(sessionId, mMmapThreads);
4319 }
4320
4321 // If you wish to create a Record preprocessing AudioEffect in Java,
4322 // you MUST create an AudioRecord first and keep it alive so it is picked up above.
4323 // Otherwise it will fail when created on a Playback thread by legacy
4324 // handling below. Ditto with Mmap, the associated Mmap track must be created
4325 // before creating the AudioEffect or the io handle must be specified.
4326 //
4327 // Detect if the effect is created after an AudioRecord is destroyed.
4328 if (getOrphanEffectChain_l(sessionId).get() != nullptr) {
4329 ALOGE("%s: effect %s with no specified io handle is denied because the AudioRecord"
4330 " for session %d no longer exists",
4331 __func__, descOut.name, sessionId);
4332 lStatus = PERMISSION_DENIED;
4333 goto Exit;
4334 }
4335
4336 // Legacy handling of creating an effect on an expired or made-up
4337 // session id. We think that it is a Playback effect.
4338 //
4339 // If no output thread contains the requested session ID, default to
4340 // first output. The effect chain will be moved to the correct output
4341 // thread when a track with the same session ID is created
4342 if (io == AUDIO_IO_HANDLE_NONE && mPlaybackThreads.size() > 0) {
4343 io = mPlaybackThreads.keyAt(0);
4344 }
4345 ALOGV("createEffect() got io %d for effect %s", io, descOut.name);
4346 } else if (checkPlaybackThread_l(io) != nullptr
4347 && sessionId != AUDIO_SESSION_OUTPUT_STAGE) {
4348 // allow only one effect chain per sessionId on mPlaybackThreads.
4349 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
4350 const audio_io_handle_t checkIo = mPlaybackThreads.keyAt(i);
4351 if (io == checkIo) {
4352 if (hapticPlaybackRequired
4353 && mPlaybackThreads.valueAt(i)
4354 ->hapticChannelMask() == AUDIO_CHANNEL_NONE) {
4355 ALOGE("%s: haptic playback thread is required while the required playback "
4356 "thread(io=%d) doesn't support", __func__, (int)io);
4357 lStatus = BAD_VALUE;
4358 goto Exit;
4359 }
4360 continue;
4361 }
4362 const uint32_t sessionType =
4363 mPlaybackThreads.valueAt(i)->hasAudioSession(sessionId);
4364 if ((sessionType & ThreadBase::EFFECT_SESSION) != 0) {
4365 ALOGE("%s: effect %s io %d denied because session %d effect exists on io %d",
4366 __func__, descOut.name, (int) io, (int) sessionId, (int) checkIo);
4367 android_errorWriteLog(0x534e4554, "123237974");
4368 lStatus = BAD_VALUE;
4369 goto Exit;
4370 }
4371 }
4372 }
4373 ThreadBase *thread = checkRecordThread_l(io);
4374 if (thread == NULL) {
4375 thread = checkPlaybackThread_l(io);
4376 if (thread == NULL) {
4377 thread = checkMmapThread_l(io);
4378 if (thread == NULL) {
4379 ALOGE("createEffect() unknown output thread");
4380 lStatus = BAD_VALUE;
4381 goto Exit;
4382 }
4383 }
4384 } else {
4385 // Check if one effect chain was awaiting for an effect to be created on this
4386 // session and used it instead of creating a new one.
4387 sp<EffectChain> chain = getOrphanEffectChain_l(sessionId);
4388 if (chain != 0) {
4389 Mutex::Autolock _l2(thread->mLock);
4390 thread->addEffectChain_l(chain);
4391 }
4392 }
4393
4394 sp<Client> client = registerPid(currentPid);
4395
4396 // create effect on selected output thread
4397 bool pinned = !audio_is_global_session(sessionId) && isSessionAcquired_l(sessionId);
4398 ThreadBase *oriThread = nullptr;
4399 if (hapticPlaybackRequired && thread->hapticChannelMask() == AUDIO_CHANNEL_NONE) {
4400 ThreadBase *hapticThread = hapticPlaybackThread_l();
4401 if (hapticThread == nullptr) {
4402 ALOGE("%s haptic thread not found while it is required", __func__);
4403 lStatus = INVALID_OPERATION;
4404 goto Exit;
4405 }
4406 if (hapticThread != thread) {
4407 // Force to use haptic thread for haptic-generating effect.
4408 oriThread = thread;
4409 thread = hapticThread;
4410 }
4411 }
4412 handle = thread->createEffect_l(client, effectClient, priority, sessionId,
4413 &descOut, &enabledOut, &lStatus, pinned, probe,
4414 request.notifyFramesProcessed);
4415 if (lStatus != NO_ERROR && lStatus != ALREADY_EXISTS) {
4416 // remove local strong reference to Client with mClientLock held
4417 Mutex::Autolock _cl(mClientLock);
4418 client.clear();
4419 } else {
4420 // handle must be valid here, but check again to be safe.
4421 if (handle.get() != nullptr) idOut = handle->id();
4422 // Invalidate audio session when haptic playback is created.
4423 if (hapticPlaybackRequired && oriThread != nullptr) {
4424 // invalidateTracksForAudioSession will trigger locking the thread.
4425 oriThread->invalidateTracksForAudioSession(sessionId);
4426 }
4427 }
4428 }
4429
4430 Register:
4431 if (!probe && (lStatus == NO_ERROR || lStatus == ALREADY_EXISTS)) {
4432 if (lStatus == ALREADY_EXISTS) {
4433 response->alreadyExists = true;
4434 lStatus = NO_ERROR;
4435 } else {
4436 response->alreadyExists = false;
4437 }
4438 // Check CPU and memory usage
4439 sp<EffectBase> effect = handle->effect().promote();
4440 if (effect != nullptr) {
4441 status_t rStatus = effect->updatePolicyState();
4442 if (rStatus != NO_ERROR) {
4443 lStatus = rStatus;
4444 }
4445 }
4446 } else {
4447 handle.clear();
4448 }
4449
4450 response->id = idOut;
4451 response->enabled = enabledOut != 0;
4452 response->effect = handle;
4453 response->desc = VALUE_OR_RETURN_STATUS(
4454 legacy2aidl_effect_descriptor_t_EffectDescriptor(descOut));
4455
4456 Exit:
4457 return lStatus;
4458 }
4459
moveEffects(audio_session_t sessionId,audio_io_handle_t srcOutput,audio_io_handle_t dstOutput)4460 status_t AudioFlinger::moveEffects(audio_session_t sessionId, audio_io_handle_t srcOutput,
4461 audio_io_handle_t dstOutput)
4462 {
4463 ALOGV("moveEffects() session %d, srcOutput %d, dstOutput %d",
4464 sessionId, srcOutput, dstOutput);
4465 Mutex::Autolock _l(mLock);
4466 if (srcOutput == dstOutput) {
4467 ALOGW("moveEffects() same dst and src outputs %d", dstOutput);
4468 return NO_ERROR;
4469 }
4470 PlaybackThread *srcThread = checkPlaybackThread_l(srcOutput);
4471 if (srcThread == NULL) {
4472 ALOGW("moveEffects() bad srcOutput %d", srcOutput);
4473 return BAD_VALUE;
4474 }
4475 PlaybackThread *dstThread = checkPlaybackThread_l(dstOutput);
4476 if (dstThread == NULL) {
4477 ALOGW("moveEffects() bad dstOutput %d", dstOutput);
4478 return BAD_VALUE;
4479 }
4480
4481 Mutex::Autolock _dl(dstThread->mLock);
4482 Mutex::Autolock _sl(srcThread->mLock);
4483 return moveEffectChain_l(sessionId, srcThread, dstThread);
4484 }
4485
4486
setEffectSuspended(int effectId,audio_session_t sessionId,bool suspended)4487 void AudioFlinger::setEffectSuspended(int effectId,
4488 audio_session_t sessionId,
4489 bool suspended)
4490 {
4491 Mutex::Autolock _l(mLock);
4492
4493 sp<ThreadBase> thread = getEffectThread_l(sessionId, effectId);
4494 if (thread == nullptr) {
4495 return;
4496 }
4497 Mutex::Autolock _sl(thread->mLock);
4498 sp<EffectModule> effect = thread->getEffect_l(sessionId, effectId);
4499 thread->setEffectSuspended_l(&effect->desc().type, suspended, sessionId);
4500 }
4501
4502
4503 // moveEffectChain_l must be called with both srcThread and dstThread mLocks held
moveEffectChain_l(audio_session_t sessionId,AudioFlinger::PlaybackThread * srcThread,AudioFlinger::PlaybackThread * dstThread)4504 status_t AudioFlinger::moveEffectChain_l(audio_session_t sessionId,
4505 AudioFlinger::PlaybackThread *srcThread,
4506 AudioFlinger::PlaybackThread *dstThread)
4507 NO_THREAD_SAFETY_ANALYSIS // requires srcThread and dstThread locks
4508 {
4509 ALOGV("moveEffectChain_l() session %d from thread %p to thread %p",
4510 sessionId, srcThread, dstThread);
4511
4512 sp<EffectChain> chain = srcThread->getEffectChain_l(sessionId);
4513 if (chain == 0) {
4514 ALOGW("moveEffectChain_l() effect chain for session %d not on source thread %p",
4515 sessionId, srcThread);
4516 return INVALID_OPERATION;
4517 }
4518
4519 // Check whether the destination thread and all effects in the chain are compatible
4520 if (!chain->isCompatibleWithThread_l(dstThread)) {
4521 ALOGW("moveEffectChain_l() effect chain failed because"
4522 " destination thread %p is not compatible with effects in the chain",
4523 dstThread);
4524 return INVALID_OPERATION;
4525 }
4526
4527 // remove chain first. This is useful only if reconfiguring effect chain on same output thread,
4528 // so that a new chain is created with correct parameters when first effect is added. This is
4529 // otherwise unnecessary as removeEffect_l() will remove the chain when last effect is
4530 // removed.
4531 // TODO(b/216875016): consider holding the effect chain locks for the duration of the move.
4532 srcThread->removeEffectChain_l(chain);
4533
4534 // transfer all effects one by one so that new effect chain is created on new thread with
4535 // correct buffer sizes and audio parameters and effect engines reconfigured accordingly
4536 sp<EffectChain> dstChain;
4537 Vector< sp<EffectModule> > removed;
4538 status_t status = NO_ERROR;
4539 std::string errorString;
4540 // process effects one by one.
4541 for (sp<EffectModule> effect = chain->getEffectFromId_l(0); effect != nullptr;
4542 effect = chain->getEffectFromId_l(0)) {
4543 srcThread->removeEffect_l(effect);
4544 removed.add(effect);
4545 status = dstThread->addEffect_l(effect);
4546 if (status != NO_ERROR) {
4547 errorString = StringPrintf(
4548 "cannot add effect %p to destination thread", effect.get());
4549 break;
4550 }
4551 // if the move request is not received from audio policy manager, the effect must be
4552 // re-registered with the new strategy and output.
4553
4554 // We obtain the dstChain once the effect is on the new thread.
4555 if (dstChain == nullptr) {
4556 dstChain = effect->getCallback()->chain().promote();
4557 if (dstChain == nullptr) {
4558 errorString = StringPrintf("cannot get chain from effect %p", effect.get());
4559 status = NO_INIT;
4560 break;
4561 }
4562 }
4563 }
4564
4565 size_t restored = 0;
4566 if (status != NO_ERROR) {
4567 dstChain.clear(); // dstChain is now from the srcThread (could be recreated).
4568 for (const auto& effect : removed) {
4569 dstThread->removeEffect_l(effect); // Note: Depending on error location, the last
4570 // effect may not have been placed on dstThread.
4571 if (srcThread->addEffect_l(effect) == NO_ERROR) {
4572 ++restored;
4573 if (dstChain == nullptr) {
4574 dstChain = effect->getCallback()->chain().promote();
4575 }
4576 }
4577 }
4578 }
4579
4580 // After all the effects have been moved to new thread (or put back) we restart the effects
4581 // because removeEffect_l() has stopped the effect if it is currently active.
4582 size_t started = 0;
4583 if (dstChain != nullptr && !removed.empty()) {
4584 // If we do not take the dstChain lock, it is possible that processing is ongoing
4585 // while we are starting the effect. This can cause glitches with volume,
4586 // see b/202360137.
4587 dstChain->lock();
4588 for (const auto& effect : removed) {
4589 if (effect->state() == EffectModule::ACTIVE ||
4590 effect->state() == EffectModule::STOPPING) {
4591 ++started;
4592 effect->start();
4593 }
4594 }
4595 dstChain->unlock();
4596 }
4597
4598 if (status != NO_ERROR) {
4599 if (errorString.empty()) {
4600 errorString = StringPrintf("%s: failed status %d", __func__, status);
4601 }
4602 ALOGW("%s: %s unsuccessful move of session %d from srcThread %p to dstThread %p "
4603 "(%zu effects removed from srcThread, %zu effects restored to srcThread, "
4604 "%zu effects started)",
4605 __func__, errorString.c_str(), sessionId, srcThread, dstThread,
4606 removed.size(), restored, started);
4607 } else {
4608 ALOGD("%s: successful move of session %d from srcThread %p to dstThread %p "
4609 "(%zu effects moved, %zu effects started)",
4610 __func__, sessionId, srcThread, dstThread, removed.size(), started);
4611 }
4612 return status;
4613 }
4614
moveAuxEffectToIo(int EffectId,const sp<PlaybackThread> & dstThread,sp<PlaybackThread> * srcThread)4615 status_t AudioFlinger::moveAuxEffectToIo(int EffectId,
4616 const sp<PlaybackThread>& dstThread,
4617 sp<PlaybackThread> *srcThread)
4618 {
4619 status_t status = NO_ERROR;
4620 Mutex::Autolock _l(mLock);
4621 sp<PlaybackThread> thread =
4622 static_cast<PlaybackThread *>(getEffectThread_l(AUDIO_SESSION_OUTPUT_MIX, EffectId).get());
4623
4624 if (EffectId != 0 && thread != 0 && dstThread != thread.get()) {
4625 Mutex::Autolock _dl(dstThread->mLock);
4626 Mutex::Autolock _sl(thread->mLock);
4627 sp<EffectChain> srcChain = thread->getEffectChain_l(AUDIO_SESSION_OUTPUT_MIX);
4628 sp<EffectChain> dstChain;
4629 if (srcChain == 0) {
4630 return INVALID_OPERATION;
4631 }
4632
4633 sp<EffectModule> effect = srcChain->getEffectFromId_l(EffectId);
4634 if (effect == 0) {
4635 return INVALID_OPERATION;
4636 }
4637 thread->removeEffect_l(effect);
4638 status = dstThread->addEffect_l(effect);
4639 if (status != NO_ERROR) {
4640 thread->addEffect_l(effect);
4641 status = INVALID_OPERATION;
4642 goto Exit;
4643 }
4644
4645 dstChain = effect->getCallback()->chain().promote();
4646 if (dstChain == 0) {
4647 thread->addEffect_l(effect);
4648 status = INVALID_OPERATION;
4649 }
4650
4651 Exit:
4652 // removeEffect_l() has stopped the effect if it was active so it must be restarted
4653 if (effect->state() == EffectModule::ACTIVE ||
4654 effect->state() == EffectModule::STOPPING) {
4655 effect->start();
4656 }
4657 }
4658
4659 if (status == NO_ERROR && srcThread != nullptr) {
4660 *srcThread = thread;
4661 }
4662 return status;
4663 }
4664
isNonOffloadableGlobalEffectEnabled_l()4665 bool AudioFlinger::isNonOffloadableGlobalEffectEnabled_l()
4666 NO_THREAD_SAFETY_ANALYSIS // thread lock for getEffectChain_l.
4667 {
4668 if (mGlobalEffectEnableTime != 0 &&
4669 ((systemTime() - mGlobalEffectEnableTime) < kMinGlobalEffectEnabletimeNs)) {
4670 return true;
4671 }
4672
4673 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
4674 sp<EffectChain> ec =
4675 mPlaybackThreads.valueAt(i)->getEffectChain_l(AUDIO_SESSION_OUTPUT_MIX);
4676 if (ec != 0 && ec->isNonOffloadableEnabled()) {
4677 return true;
4678 }
4679 }
4680 return false;
4681 }
4682
onNonOffloadableGlobalEffectEnable()4683 void AudioFlinger::onNonOffloadableGlobalEffectEnable()
4684 {
4685 Mutex::Autolock _l(mLock);
4686
4687 mGlobalEffectEnableTime = systemTime();
4688
4689 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
4690 sp<PlaybackThread> t = mPlaybackThreads.valueAt(i);
4691 if (t->mType == ThreadBase::OFFLOAD) {
4692 t->invalidateTracks(AUDIO_STREAM_MUSIC);
4693 }
4694 }
4695
4696 }
4697
putOrphanEffectChain_l(const sp<AudioFlinger::EffectChain> & chain)4698 status_t AudioFlinger::putOrphanEffectChain_l(const sp<AudioFlinger::EffectChain>& chain)
4699 {
4700 // clear possible suspended state before parking the chain so that it starts in default state
4701 // when attached to a new record thread
4702 chain->setEffectSuspended_l(FX_IID_AEC, false);
4703 chain->setEffectSuspended_l(FX_IID_NS, false);
4704
4705 audio_session_t session = chain->sessionId();
4706 ssize_t index = mOrphanEffectChains.indexOfKey(session);
4707 ALOGV("putOrphanEffectChain_l session %d index %zd", session, index);
4708 if (index >= 0) {
4709 ALOGW("putOrphanEffectChain_l chain for session %d already present", session);
4710 return ALREADY_EXISTS;
4711 }
4712 mOrphanEffectChains.add(session, chain);
4713 return NO_ERROR;
4714 }
4715
getOrphanEffectChain_l(audio_session_t session)4716 sp<AudioFlinger::EffectChain> AudioFlinger::getOrphanEffectChain_l(audio_session_t session)
4717 {
4718 sp<EffectChain> chain;
4719 ssize_t index = mOrphanEffectChains.indexOfKey(session);
4720 ALOGV("getOrphanEffectChain_l session %d index %zd", session, index);
4721 if (index >= 0) {
4722 chain = mOrphanEffectChains.valueAt(index);
4723 mOrphanEffectChains.removeItemsAt(index);
4724 }
4725 return chain;
4726 }
4727
updateOrphanEffectChains(const sp<AudioFlinger::EffectModule> & effect)4728 bool AudioFlinger::updateOrphanEffectChains(const sp<AudioFlinger::EffectModule>& effect)
4729 {
4730 Mutex::Autolock _l(mLock);
4731 audio_session_t session = effect->sessionId();
4732 ssize_t index = mOrphanEffectChains.indexOfKey(session);
4733 ALOGV("updateOrphanEffectChains session %d index %zd", session, index);
4734 if (index >= 0) {
4735 sp<EffectChain> chain = mOrphanEffectChains.valueAt(index);
4736 if (chain->removeEffect_l(effect, true) == 0) {
4737 ALOGV("updateOrphanEffectChains removing effect chain at index %zd", index);
4738 mOrphanEffectChains.removeItemsAt(index);
4739 }
4740 return true;
4741 }
4742 return false;
4743 }
4744
4745
4746 // ----------------------------------------------------------------------------
4747
onTransactWrapper(TransactionCode code,const Parcel & data,uint32_t flags,const std::function<status_t ()> & delegate)4748 status_t AudioFlinger::onTransactWrapper(TransactionCode code,
4749 [[maybe_unused]] const Parcel& data,
4750 [[maybe_unused]] uint32_t flags,
4751 const std::function<status_t()>& delegate) {
4752 // make sure transactions reserved to AudioPolicyManager do not come from other processes
4753 switch (code) {
4754 case TransactionCode::SET_STREAM_VOLUME:
4755 case TransactionCode::SET_STREAM_MUTE:
4756 case TransactionCode::OPEN_OUTPUT:
4757 case TransactionCode::OPEN_DUPLICATE_OUTPUT:
4758 case TransactionCode::CLOSE_OUTPUT:
4759 case TransactionCode::SUSPEND_OUTPUT:
4760 case TransactionCode::RESTORE_OUTPUT:
4761 case TransactionCode::OPEN_INPUT:
4762 case TransactionCode::CLOSE_INPUT:
4763 case TransactionCode::SET_VOICE_VOLUME:
4764 case TransactionCode::MOVE_EFFECTS:
4765 case TransactionCode::SET_EFFECT_SUSPENDED:
4766 case TransactionCode::LOAD_HW_MODULE:
4767 case TransactionCode::GET_AUDIO_PORT:
4768 case TransactionCode::CREATE_AUDIO_PATCH:
4769 case TransactionCode::RELEASE_AUDIO_PATCH:
4770 case TransactionCode::LIST_AUDIO_PATCHES:
4771 case TransactionCode::SET_AUDIO_PORT_CONFIG:
4772 case TransactionCode::SET_RECORD_SILENCED:
4773 case TransactionCode::AUDIO_POLICY_READY:
4774 case TransactionCode::SET_DEVICE_CONNECTED_STATE:
4775 case TransactionCode::SET_REQUESTED_LATENCY_MODE:
4776 case TransactionCode::GET_SUPPORTED_LATENCY_MODES:
4777 case TransactionCode::INVALIDATE_TRACKS:
4778 case TransactionCode::GET_AUDIO_POLICY_CONFIG:
4779 ALOGW("%s: transaction %d received from PID %d",
4780 __func__, code, IPCThreadState::self()->getCallingPid());
4781 // return status only for non void methods
4782 switch (code) {
4783 case TransactionCode::SET_RECORD_SILENCED:
4784 case TransactionCode::SET_EFFECT_SUSPENDED:
4785 break;
4786 default:
4787 return INVALID_OPERATION;
4788 }
4789 // Fail silently in these cases.
4790 return OK;
4791 default:
4792 break;
4793 }
4794
4795 // make sure the following transactions come from system components
4796 switch (code) {
4797 case TransactionCode::SET_MASTER_VOLUME:
4798 case TransactionCode::SET_MASTER_MUTE:
4799 case TransactionCode::MASTER_MUTE:
4800 case TransactionCode::GET_SOUND_DOSE_INTERFACE:
4801 case TransactionCode::SET_MODE:
4802 case TransactionCode::SET_MIC_MUTE:
4803 case TransactionCode::SET_LOW_RAM_DEVICE:
4804 case TransactionCode::SYSTEM_READY:
4805 case TransactionCode::SET_AUDIO_HAL_PIDS:
4806 case TransactionCode::SET_VIBRATOR_INFOS:
4807 case TransactionCode::UPDATE_SECONDARY_OUTPUTS:
4808 case TransactionCode::SET_BLUETOOTH_VARIABLE_LATENCY_ENABLED:
4809 case TransactionCode::IS_BLUETOOTH_VARIABLE_LATENCY_ENABLED:
4810 case TransactionCode::SUPPORTS_BLUETOOTH_VARIABLE_LATENCY: {
4811 if (!isServiceUid(IPCThreadState::self()->getCallingUid())) {
4812 ALOGW("%s: transaction %d received from PID %d unauthorized UID %d",
4813 __func__, code, IPCThreadState::self()->getCallingPid(),
4814 IPCThreadState::self()->getCallingUid());
4815 // return status only for non-void methods
4816 switch (code) {
4817 case TransactionCode::SYSTEM_READY:
4818 break;
4819 default:
4820 return INVALID_OPERATION;
4821 }
4822 // Fail silently in these cases.
4823 return OK;
4824 }
4825 } break;
4826 default:
4827 break;
4828 }
4829
4830 // List of relevant events that trigger log merging.
4831 // Log merging should activate during audio activity of any kind. This are considered the
4832 // most relevant events.
4833 // TODO should select more wisely the items from the list
4834 switch (code) {
4835 case TransactionCode::CREATE_TRACK:
4836 case TransactionCode::CREATE_RECORD:
4837 case TransactionCode::SET_MASTER_VOLUME:
4838 case TransactionCode::SET_MASTER_MUTE:
4839 case TransactionCode::SET_MIC_MUTE:
4840 case TransactionCode::SET_PARAMETERS:
4841 case TransactionCode::CREATE_EFFECT:
4842 case TransactionCode::SYSTEM_READY: {
4843 requestLogMerge();
4844 break;
4845 }
4846 default:
4847 break;
4848 }
4849
4850 const std::string methodName = getIAudioFlingerStatistics().getMethodForCode(code);
4851 mediautils::TimeCheck check(
4852 std::string("IAudioFlinger::").append(methodName),
4853 [code, methodName](bool timeout, float elapsedMs) { // don't move methodName.
4854 if (timeout) {
4855 mediametrics::LogItem(mMetricsId)
4856 .set(AMEDIAMETRICS_PROP_EVENT, AMEDIAMETRICS_PROP_EVENT_VALUE_TIMEOUT)
4857 .set(AMEDIAMETRICS_PROP_METHODCODE, int64_t(code))
4858 .set(AMEDIAMETRICS_PROP_METHODNAME, methodName.c_str())
4859 .record();
4860 } else {
4861 getIAudioFlingerStatistics().event(code, elapsedMs);
4862 }
4863 }, mediautils::TimeCheck::kDefaultTimeoutDuration,
4864 mediautils::TimeCheck::kDefaultSecondChanceDuration,
4865 true /* crashOnTimeout */);
4866
4867 // Make sure we connect to Audio Policy Service before calling into AudioFlinger:
4868 // - AudioFlinger can call into Audio Policy Service with its global mutex held
4869 // - If this is the first time Audio Policy Service is queried from inside audioserver process
4870 // this will trigger Audio Policy Manager initialization.
4871 // - Audio Policy Manager initialization calls into AudioFlinger which will try to lock
4872 // its global mutex and a deadlock will occur.
4873 if (IPCThreadState::self()->getCallingPid() != getpid()) {
4874 AudioSystem::get_audio_policy_service();
4875 }
4876
4877 return delegate();
4878 }
4879
4880 } // namespace android
4881