summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTyler Gunn <tgunn@google.com>2018-02-14 14:19:42 -0800
committerAndi B. <andi@unlegacy-android.org>2018-05-20 13:46:16 +0200
commit0b118b2b74e20b95dbca6a469c0fea372aa0a103 (patch)
tree58d24fd08c43788c02622fa9c5ceb558c3832f4a
parentf0f5b4eb0d12c9f58483aedfcb609fbf43c1c4aa (diff)
downloadandroid_packages_services_Telephony-0b118b2b74e20b95dbca6a469c0fea372aa0a103.tar.gz
android_packages_services_Telephony-0b118b2b74e20b95dbca6a469c0fea372aa0a103.tar.bz2
android_packages_services_Telephony-0b118b2b74e20b95dbca6a469c0fea372aa0a103.zip
Enhanced permission checks for TelephonyManager#endCall() API.replicant-6.0-0004-rc1
The existing permission checks require CALL permission in order to end an ongoing call or reject an incoming call. The Telecom equivalent of this API requires MODIFY_PHONE_STATE. Since this API IS in fact a system API, modifying the permission requirements to require the same MODIFY_PHONE_STATE permission. Test: Manual testing per bug reproduction steps. Bug: 67862398 Change-Id: I8f15f6afd00466f6b861079a83e9fa03b962f63f (cherry picked from commit 6707357c6e198287046e76c1d6fc5edf1fcb3fee) (cherry picked from commit ee1901e859ed4624723d18497b70c59b0b658747)
-rw-r--r--src/com/android/phone/PhoneInterfaceManager.java8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/com/android/phone/PhoneInterfaceManager.java b/src/com/android/phone/PhoneInterfaceManager.java
index eafcb38e4..0e1ae1aec 100644
--- a/src/com/android/phone/PhoneInterfaceManager.java
+++ b/src/com/android/phone/PhoneInterfaceManager.java
@@ -52,6 +52,7 @@ import android.telephony.ModemActivityInfo;
import android.text.TextUtils;
import android.util.ArrayMap;
import android.util.ArraySet;
+import android.util.EventLog;
import android.util.Log;
import android.util.Pair;
import android.util.Slog;
@@ -1039,7 +1040,12 @@ public class PhoneInterfaceManager extends ITelephony.Stub {
* @return true is a call was ended
*/
public boolean endCallForSubscriber(int subId) {
- enforceCallPermission();
+ if (mApp.checkCallingOrSelfPermission(android.Manifest.permission.MODIFY_PHONE_STATE)
+ != PackageManager.PERMISSION_GRANTED) {
+ Log.i(LOG_TAG, "endCall: called without modify phone state.");
+ EventLog.writeEvent(0x534e4554, "67862398", -1, "");
+ throw new SecurityException("MODIFY_PHONE_STATE permission required.");
+ }
return (Boolean) sendRequest(CMD_END_CALL, null, new Integer(subId));
}