summaryrefslogtreecommitdiffstats
path: root/services/audiopolicy/service/AudioPolicyInterfaceImpl.cpp
diff options
context:
space:
mode:
authorEric Laurent <elaurent@google.com>2015-08-07 13:59:42 -0700
committerEric Laurent <elaurent@google.com>2015-08-07 15:23:46 -0700
commit82db269d4797cb9909988b723d91fa2094a74b38 (patch)
tree77f2ff4451760a09704ab7676f9e680e9af0729a /services/audiopolicy/service/AudioPolicyInterfaceImpl.cpp
parentaa7a4eae1cc93ccf90e273b9634f3a125b0b3565 (diff)
downloadframeworks_av-82db269d4797cb9909988b723d91fa2094a74b38.zip
frameworks_av-82db269d4797cb9909988b723d91fa2094a74b38.tar.gz
frameworks_av-82db269d4797cb9909988b723d91fa2094a74b38.tar.bz2
audio policy: protect capture from telephony RX path.
Add permission check if the capture device selected is telephony RX path. Bug: 23017158. Change-Id: Iaa34d836e6cf46b7cbbf2483fcd4306dcd27ce90
Diffstat (limited to 'services/audiopolicy/service/AudioPolicyInterfaceImpl.cpp')
-rw-r--r--services/audiopolicy/service/AudioPolicyInterfaceImpl.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/services/audiopolicy/service/AudioPolicyInterfaceImpl.cpp b/services/audiopolicy/service/AudioPolicyInterfaceImpl.cpp
index 65639c3..793c26a 100644
--- a/services/audiopolicy/service/AudioPolicyInterfaceImpl.cpp
+++ b/services/audiopolicy/service/AudioPolicyInterfaceImpl.cpp
@@ -303,6 +303,8 @@ status_t AudioPolicyService::getInputForAttr(const audio_attributes_t *attr,
switch (inputType) {
case AudioPolicyInterface::API_INPUT_LEGACY:
break;
+ case AudioPolicyInterface::API_INPUT_TELEPHONY_RX:
+ // FIXME: use the same permission as for remote submix for now.
case AudioPolicyInterface::API_INPUT_MIX_CAPTURE:
if (!captureAudioOutputAllowed()) {
ALOGE("getInputForAttr() permission denied: capture not allowed");