Glenn Kasten | 44deb05 | 2012-02-05 18:09:08 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2012 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
Eric Laurent | 9b11c02 | 2018-06-06 19:19:22 -0700 | [diff] [blame] | 17 | #define LOG_TAG "ServiceUtilities" |
| 18 | |
Andy Hung | a85efab | 2019-12-23 11:41:29 -0800 | [diff] [blame] | 19 | #include <audio_utils/clock.h> |
Svet Ganov | be71aa2 | 2015-04-28 12:06:02 -0700 | [diff] [blame] | 20 | #include <binder/AppOpsManager.h> |
Glenn Kasten | 44deb05 | 2012-02-05 18:09:08 -0800 | [diff] [blame] | 21 | #include <binder/IPCThreadState.h> |
| 22 | #include <binder/IServiceManager.h> |
| 23 | #include <binder/PermissionCache.h> |
Andy Hung | ab7ef30 | 2018-05-15 19:35:29 -0700 | [diff] [blame] | 24 | #include "mediautils/ServiceUtilities.h" |
Glenn Kasten | 44deb05 | 2012-02-05 18:09:08 -0800 | [diff] [blame] | 25 | |
Kevin Rocard | 8be9497 | 2019-02-22 13:26:25 -0800 | [diff] [blame] | 26 | #include <iterator> |
| 27 | #include <algorithm> |
Andy Hung | a85efab | 2019-12-23 11:41:29 -0800 | [diff] [blame] | 28 | #include <pwd.h> |
Kevin Rocard | 8be9497 | 2019-02-22 13:26:25 -0800 | [diff] [blame] | 29 | |
Svet Ganov | be71aa2 | 2015-04-28 12:06:02 -0700 | [diff] [blame] | 30 | /* When performing permission checks we do not use permission cache for |
| 31 | * runtime permissions (protection level dangerous) as they may change at |
| 32 | * runtime. All other permissions (protection level normal and dangerous) |
| 33 | * can be cached as they never change. Of course all permission checked |
| 34 | * here are platform defined. |
| 35 | */ |
| 36 | |
Glenn Kasten | 44deb05 | 2012-02-05 18:09:08 -0800 | [diff] [blame] | 37 | namespace android { |
| 38 | |
Svet Ganov | 5b81f55 | 2018-03-02 09:21:30 -0800 | [diff] [blame] | 39 | static const String16 sAndroidPermissionRecordAudio("android.permission.RECORD_AUDIO"); |
Eric Laurent | 4298441 | 2019-05-09 17:57:03 -0700 | [diff] [blame] | 40 | static const String16 sModifyPhoneState("android.permission.MODIFY_PHONE_STATE"); |
| 41 | static const String16 sModifyAudioRouting("android.permission.MODIFY_AUDIO_ROUTING"); |
Svet Ganov | 5b81f55 | 2018-03-02 09:21:30 -0800 | [diff] [blame] | 42 | |
Svet Ganov | 5b81f55 | 2018-03-02 09:21:30 -0800 | [diff] [blame] | 43 | static String16 resolveCallingPackage(PermissionController& permissionController, |
| 44 | const String16& opPackageName, uid_t uid) { |
| 45 | if (opPackageName.size() > 0) { |
| 46 | return opPackageName; |
Svet Ganov | be71aa2 | 2015-04-28 12:06:02 -0700 | [diff] [blame] | 47 | } |
Svet Ganov | be71aa2 | 2015-04-28 12:06:02 -0700 | [diff] [blame] | 48 | // In some cases the calling code has no access to the package it runs under. |
| 49 | // For example, code using the wilhelm framework's OpenSL-ES APIs. In this |
| 50 | // case we will get the packages for the calling UID and pick the first one |
| 51 | // for attributing the app op. This will work correctly for runtime permissions |
| 52 | // as for legacy apps we will toggle the app op for all packages in the UID. |
| 53 | // The caveat is that the operation may be attributed to the wrong package and |
| 54 | // stats based on app ops may be slightly off. |
Svet Ganov | 5b81f55 | 2018-03-02 09:21:30 -0800 | [diff] [blame] | 55 | Vector<String16> packages; |
| 56 | permissionController.getPackagesForUid(uid, packages); |
| 57 | if (packages.isEmpty()) { |
| 58 | ALOGE("No packages for uid %d", uid); |
| 59 | return opPackageName; // empty string |
| 60 | } |
| 61 | return packages[0]; |
| 62 | } |
Svetoslav Ganov | 599ec46 | 2018-03-01 22:19:55 +0000 | [diff] [blame] | 63 | |
Svet Ganov | 5b81f55 | 2018-03-02 09:21:30 -0800 | [diff] [blame] | 64 | static bool checkRecordingInternal(const String16& opPackageName, pid_t pid, |
Narayan Kamath | d127644 | 2020-08-20 17:19:57 +0100 | [diff] [blame] | 65 | uid_t uid, bool start, bool isHotwordSource) { |
Eric Laurent | 58a0dd8 | 2019-10-24 12:42:17 -0700 | [diff] [blame] | 66 | // Okay to not track in app ops as audio server or media server is us and if |
Svet Ganov | 5b81f55 | 2018-03-02 09:21:30 -0800 | [diff] [blame] | 67 | // device is rooted security model is considered compromised. |
Jeffrey Carlyle | 62cc92b | 2019-09-17 11:15:15 -0700 | [diff] [blame] | 68 | // system_server loses its RECORD_AUDIO permission when a secondary |
| 69 | // user is active, but it is a core system service so let it through. |
| 70 | // TODO(b/141210120): UserManager.DISALLOW_RECORD_AUDIO should not affect system user 0 |
Eric Laurent | 58a0dd8 | 2019-10-24 12:42:17 -0700 | [diff] [blame] | 71 | if (isAudioServerOrMediaServerOrSystemServerOrRootUid(uid)) return true; |
Svetoslav Ganov | 599ec46 | 2018-03-01 22:19:55 +0000 | [diff] [blame] | 72 | |
Svet Ganov | 5b81f55 | 2018-03-02 09:21:30 -0800 | [diff] [blame] | 73 | // We specify a pid and uid here as mediaserver (aka MediaRecorder or StageFrightRecorder) |
| 74 | // may open a record track on behalf of a client. Note that pid may be a tid. |
| 75 | // IMPORTANT: DON'T USE PermissionCache - RUNTIME PERMISSIONS CHANGE. |
| 76 | PermissionController permissionController; |
| 77 | const bool ok = permissionController.checkPermission(sAndroidPermissionRecordAudio, pid, uid); |
| 78 | if (!ok) { |
| 79 | ALOGE("Request requires %s", String8(sAndroidPermissionRecordAudio).c_str()); |
| 80 | return false; |
| 81 | } |
| 82 | |
| 83 | String16 resolvedOpPackageName = resolveCallingPackage( |
| 84 | permissionController, opPackageName, uid); |
| 85 | if (resolvedOpPackageName.size() == 0) { |
| 86 | return false; |
Svet Ganov | be71aa2 | 2015-04-28 12:06:02 -0700 | [diff] [blame] | 87 | } |
Svetoslav Ganov | 599ec46 | 2018-03-01 22:19:55 +0000 | [diff] [blame] | 88 | |
| 89 | AppOpsManager appOps; |
Narayan Kamath | d127644 | 2020-08-20 17:19:57 +0100 | [diff] [blame] | 90 | const int32_t opRecordAudio = appOps.permissionToOpCode(sAndroidPermissionRecordAudio); |
| 91 | |
Svet Ganov | 5b81f55 | 2018-03-02 09:21:30 -0800 | [diff] [blame] | 92 | if (start) { |
Narayan Kamath | d127644 | 2020-08-20 17:19:57 +0100 | [diff] [blame] | 93 | const int32_t op = isHotwordSource ? |
| 94 | AppOpsManager::OP_RECORD_AUDIO_HOTWORD : opRecordAudio; |
Svet Ganov | 5b81f55 | 2018-03-02 09:21:30 -0800 | [diff] [blame] | 95 | if (appOps.startOpNoThrow(op, uid, resolvedOpPackageName, /*startIfModeDefault*/ false) |
| 96 | != AppOpsManager::MODE_ALLOWED) { |
| 97 | ALOGE("Request denied by app op: %d", op); |
| 98 | return false; |
| 99 | } |
| 100 | } else { |
Narayan Kamath | d127644 | 2020-08-20 17:19:57 +0100 | [diff] [blame] | 101 | // Always use OP_RECORD_AUDIO for checks at creation time. |
| 102 | if (appOps.checkOp(opRecordAudio, uid, resolvedOpPackageName) |
| 103 | != AppOpsManager::MODE_ALLOWED) { |
| 104 | ALOGE("Request denied by app op: %d", opRecordAudio); |
Svet Ganov | 5b81f55 | 2018-03-02 09:21:30 -0800 | [diff] [blame] | 105 | return false; |
| 106 | } |
Svetoslav Ganov | 599ec46 | 2018-03-01 22:19:55 +0000 | [diff] [blame] | 107 | } |
| 108 | |
| 109 | return true; |
Glenn Kasten | 44deb05 | 2012-02-05 18:09:08 -0800 | [diff] [blame] | 110 | } |
| 111 | |
Svet Ganov | 5b81f55 | 2018-03-02 09:21:30 -0800 | [diff] [blame] | 112 | bool recordingAllowed(const String16& opPackageName, pid_t pid, uid_t uid) { |
Narayan Kamath | d127644 | 2020-08-20 17:19:57 +0100 | [diff] [blame] | 113 | return checkRecordingInternal(opPackageName, pid, uid, /*start*/ false, |
| 114 | /*is_hotword_source*/ false); |
Svet Ganov | 5b81f55 | 2018-03-02 09:21:30 -0800 | [diff] [blame] | 115 | } |
| 116 | |
Narayan Kamath | d127644 | 2020-08-20 17:19:57 +0100 | [diff] [blame] | 117 | bool startRecording(const String16& opPackageName, pid_t pid, uid_t uid, bool isHotwordSource) { |
| 118 | return checkRecordingInternal(opPackageName, pid, uid, /*start*/ true, isHotwordSource); |
Svet Ganov | 5b81f55 | 2018-03-02 09:21:30 -0800 | [diff] [blame] | 119 | } |
| 120 | |
Narayan Kamath | d127644 | 2020-08-20 17:19:57 +0100 | [diff] [blame] | 121 | void finishRecording(const String16& opPackageName, uid_t uid, bool isHotwordSource) { |
Svet Ganov | 5b81f55 | 2018-03-02 09:21:30 -0800 | [diff] [blame] | 122 | // Okay to not track in app ops as audio server is us and if |
| 123 | // device is rooted security model is considered compromised. |
Andy Hung | 4ef19fa | 2018-05-15 19:35:29 -0700 | [diff] [blame] | 124 | if (isAudioServerOrRootUid(uid)) return; |
Svet Ganov | 5b81f55 | 2018-03-02 09:21:30 -0800 | [diff] [blame] | 125 | |
| 126 | PermissionController permissionController; |
| 127 | String16 resolvedOpPackageName = resolveCallingPackage( |
| 128 | permissionController, opPackageName, uid); |
| 129 | if (resolvedOpPackageName.size() == 0) { |
| 130 | return; |
| 131 | } |
| 132 | |
| 133 | AppOpsManager appOps; |
Narayan Kamath | d127644 | 2020-08-20 17:19:57 +0100 | [diff] [blame] | 134 | const int32_t op = isHotwordSource ? AppOpsManager::OP_RECORD_AUDIO_HOTWORD |
| 135 | : appOps.permissionToOpCode(sAndroidPermissionRecordAudio); |
Svet Ganov | 5b81f55 | 2018-03-02 09:21:30 -0800 | [diff] [blame] | 136 | appOps.finishOp(op, uid, resolvedOpPackageName); |
| 137 | } |
| 138 | |
Eric Laurent | b2379ba | 2016-05-23 17:42:12 -0700 | [diff] [blame] | 139 | bool captureAudioOutputAllowed(pid_t pid, uid_t uid) { |
Andy Hung | 4ef19fa | 2018-05-15 19:35:29 -0700 | [diff] [blame] | 140 | if (isAudioServerOrRootUid(uid)) return true; |
Jeff Brown | 893a564 | 2013-08-16 20:19:26 -0700 | [diff] [blame] | 141 | static const String16 sCaptureAudioOutput("android.permission.CAPTURE_AUDIO_OUTPUT"); |
Svet Ganov | 5b81f55 | 2018-03-02 09:21:30 -0800 | [diff] [blame] | 142 | bool ok = PermissionCache::checkPermission(sCaptureAudioOutput, pid, uid); |
Eric Laurent | 6ede98f | 2019-06-11 14:50:30 -0700 | [diff] [blame] | 143 | if (!ok) ALOGV("Request requires android.permission.CAPTURE_AUDIO_OUTPUT"); |
Jeff Brown | 893a564 | 2013-08-16 20:19:26 -0700 | [diff] [blame] | 144 | return ok; |
| 145 | } |
| 146 | |
Kevin Rocard | 36b1755 | 2019-03-07 18:48:07 -0800 | [diff] [blame] | 147 | bool captureMediaOutputAllowed(pid_t pid, uid_t uid) { |
| 148 | if (isAudioServerOrRootUid(uid)) return true; |
| 149 | static const String16 sCaptureMediaOutput("android.permission.CAPTURE_MEDIA_OUTPUT"); |
| 150 | bool ok = PermissionCache::checkPermission(sCaptureMediaOutput, pid, uid); |
| 151 | if (!ok) ALOGE("Request requires android.permission.CAPTURE_MEDIA_OUTPUT"); |
| 152 | return ok; |
| 153 | } |
| 154 | |
Nadav Bar | dbf0a2e | 2020-01-16 23:09:25 +0200 | [diff] [blame] | 155 | bool captureVoiceCommunicationOutputAllowed(pid_t pid, uid_t uid) { |
| 156 | if (isAudioServerOrRootUid(uid)) return true; |
| 157 | static const String16 sCaptureVoiceCommOutput( |
| 158 | "android.permission.CAPTURE_VOICE_COMMUNICATION_OUTPUT"); |
| 159 | bool ok = PermissionCache::checkPermission(sCaptureVoiceCommOutput, pid, uid); |
| 160 | if (!ok) ALOGE("Request requires android.permission.CAPTURE_VOICE_COMMUNICATION_OUTPUT"); |
| 161 | return ok; |
| 162 | } |
| 163 | |
jiabin | 68e0df7 | 2019-03-18 17:55:35 -0700 | [diff] [blame] | 164 | bool captureHotwordAllowed(const String16& opPackageName, pid_t pid, uid_t uid) { |
Eric Laurent | 7504b9e | 2017-08-15 18:17:26 -0700 | [diff] [blame] | 165 | // CAPTURE_AUDIO_HOTWORD permission implies RECORD_AUDIO permission |
jiabin | 68e0df7 | 2019-03-18 17:55:35 -0700 | [diff] [blame] | 166 | bool ok = recordingAllowed(opPackageName, pid, uid); |
Eric Laurent | 7504b9e | 2017-08-15 18:17:26 -0700 | [diff] [blame] | 167 | |
| 168 | if (ok) { |
| 169 | static const String16 sCaptureHotwordAllowed("android.permission.CAPTURE_AUDIO_HOTWORD"); |
| 170 | // IMPORTANT: Use PermissionCache - not a runtime permission and may not change. |
jiabin | 68e0df7 | 2019-03-18 17:55:35 -0700 | [diff] [blame] | 171 | ok = PermissionCache::checkPermission(sCaptureHotwordAllowed, pid, uid); |
Eric Laurent | 7504b9e | 2017-08-15 18:17:26 -0700 | [diff] [blame] | 172 | } |
Eric Laurent | 6ede98f | 2019-06-11 14:50:30 -0700 | [diff] [blame] | 173 | if (!ok) ALOGV("android.permission.CAPTURE_AUDIO_HOTWORD"); |
Eric Laurent | 9a54bc2 | 2013-09-09 09:08:44 -0700 | [diff] [blame] | 174 | return ok; |
| 175 | } |
| 176 | |
Glenn Kasten | 44deb05 | 2012-02-05 18:09:08 -0800 | [diff] [blame] | 177 | bool settingsAllowed() { |
Andy Hung | 4ef19fa | 2018-05-15 19:35:29 -0700 | [diff] [blame] | 178 | // given this is a permission check, could this be isAudioServerOrRootUid()? |
| 179 | if (isAudioServerUid(IPCThreadState::self()->getCallingUid())) return true; |
Glenn Kasten | 44deb05 | 2012-02-05 18:09:08 -0800 | [diff] [blame] | 180 | static const String16 sAudioSettings("android.permission.MODIFY_AUDIO_SETTINGS"); |
Svet Ganov | be71aa2 | 2015-04-28 12:06:02 -0700 | [diff] [blame] | 181 | // IMPORTANT: Use PermissionCache - not a runtime permission and may not change. |
| 182 | bool ok = PermissionCache::checkCallingPermission(sAudioSettings); |
Glenn Kasten | 44deb05 | 2012-02-05 18:09:08 -0800 | [diff] [blame] | 183 | if (!ok) ALOGE("Request requires android.permission.MODIFY_AUDIO_SETTINGS"); |
| 184 | return ok; |
| 185 | } |
| 186 | |
Eric Laurent | 5284ed5 | 2014-05-29 14:37:38 -0700 | [diff] [blame] | 187 | bool modifyAudioRoutingAllowed() { |
Eric Laurent | 8a1095a | 2019-11-08 14:44:16 -0800 | [diff] [blame] | 188 | return modifyAudioRoutingAllowed( |
| 189 | IPCThreadState::self()->getCallingPid(), IPCThreadState::self()->getCallingUid()); |
| 190 | } |
| 191 | |
| 192 | bool modifyAudioRoutingAllowed(pid_t pid, uid_t uid) { |
| 193 | if (isAudioServerUid(IPCThreadState::self()->getCallingUid())) return true; |
Svet Ganov | be71aa2 | 2015-04-28 12:06:02 -0700 | [diff] [blame] | 194 | // IMPORTANT: Use PermissionCache - not a runtime permission and may not change. |
Eric Laurent | 8a1095a | 2019-11-08 14:44:16 -0800 | [diff] [blame] | 195 | bool ok = PermissionCache::checkPermission(sModifyAudioRouting, pid, uid); |
| 196 | if (!ok) ALOGE("%s(): android.permission.MODIFY_AUDIO_ROUTING denied for uid %d", |
| 197 | __func__, uid); |
Eric Laurent | 5284ed5 | 2014-05-29 14:37:38 -0700 | [diff] [blame] | 198 | return ok; |
| 199 | } |
| 200 | |
Ari Hausman-Cohen | 433722e | 2018-04-24 14:25:22 -0700 | [diff] [blame] | 201 | bool modifyDefaultAudioEffectsAllowed() { |
Eric Laurent | 3f75a5b | 2019-11-12 15:55:51 -0800 | [diff] [blame] | 202 | return modifyDefaultAudioEffectsAllowed( |
| 203 | IPCThreadState::self()->getCallingPid(), IPCThreadState::self()->getCallingUid()); |
| 204 | } |
| 205 | |
| 206 | bool modifyDefaultAudioEffectsAllowed(pid_t pid, uid_t uid) { |
| 207 | if (isAudioServerUid(IPCThreadState::self()->getCallingUid())) return true; |
| 208 | |
Ari Hausman-Cohen | 433722e | 2018-04-24 14:25:22 -0700 | [diff] [blame] | 209 | static const String16 sModifyDefaultAudioEffectsAllowed( |
| 210 | "android.permission.MODIFY_DEFAULT_AUDIO_EFFECTS"); |
| 211 | // IMPORTANT: Use PermissionCache - not a runtime permission and may not change. |
Eric Laurent | 3f75a5b | 2019-11-12 15:55:51 -0800 | [diff] [blame] | 212 | bool ok = PermissionCache::checkPermission(sModifyDefaultAudioEffectsAllowed, pid, uid); |
| 213 | ALOGE_IF(!ok, "%s(): android.permission.MODIFY_DEFAULT_AUDIO_EFFECTS denied for uid %d", |
| 214 | __func__, uid); |
Ari Hausman-Cohen | 433722e | 2018-04-24 14:25:22 -0700 | [diff] [blame] | 215 | return ok; |
| 216 | } |
| 217 | |
Glenn Kasten | 44deb05 | 2012-02-05 18:09:08 -0800 | [diff] [blame] | 218 | bool dumpAllowed() { |
Glenn Kasten | 44deb05 | 2012-02-05 18:09:08 -0800 | [diff] [blame] | 219 | static const String16 sDump("android.permission.DUMP"); |
Svet Ganov | be71aa2 | 2015-04-28 12:06:02 -0700 | [diff] [blame] | 220 | // IMPORTANT: Use PermissionCache - not a runtime permission and may not change. |
Glenn Kasten | 44deb05 | 2012-02-05 18:09:08 -0800 | [diff] [blame] | 221 | bool ok = PermissionCache::checkCallingPermission(sDump); |
| 222 | // convention is for caller to dump an error message to fd instead of logging here |
| 223 | //if (!ok) ALOGE("Request requires android.permission.DUMP"); |
| 224 | return ok; |
| 225 | } |
| 226 | |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 227 | bool modifyPhoneStateAllowed(pid_t pid, uid_t uid) { |
Svet Ganov | 5b81f55 | 2018-03-02 09:21:30 -0800 | [diff] [blame] | 228 | bool ok = PermissionCache::checkPermission(sModifyPhoneState, pid, uid); |
Eric Laurent | 4298441 | 2019-05-09 17:57:03 -0700 | [diff] [blame] | 229 | ALOGE_IF(!ok, "Request requires %s", String8(sModifyPhoneState).c_str()); |
| 230 | return ok; |
| 231 | } |
| 232 | |
| 233 | // privileged behavior needed by Dialer, Settings, SetupWizard and CellBroadcastReceiver |
| 234 | bool bypassInterruptionPolicyAllowed(pid_t pid, uid_t uid) { |
| 235 | static const String16 sWriteSecureSettings("android.permission.WRITE_SECURE_SETTINGS"); |
| 236 | bool ok = PermissionCache::checkPermission(sModifyPhoneState, pid, uid) |
| 237 | || PermissionCache::checkPermission(sWriteSecureSettings, pid, uid) |
| 238 | || PermissionCache::checkPermission(sModifyAudioRouting, pid, uid); |
| 239 | ALOGE_IF(!ok, "Request requires %s or %s", |
| 240 | String8(sModifyPhoneState).c_str(), String8(sWriteSecureSettings).c_str()); |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 241 | return ok; |
| 242 | } |
| 243 | |
Eric Laurent | 9b11c02 | 2018-06-06 19:19:22 -0700 | [diff] [blame] | 244 | status_t checkIMemory(const sp<IMemory>& iMemory) |
| 245 | { |
| 246 | if (iMemory == 0) { |
| 247 | ALOGE("%s check failed: NULL IMemory pointer", __FUNCTION__); |
| 248 | return BAD_VALUE; |
| 249 | } |
| 250 | |
| 251 | sp<IMemoryHeap> heap = iMemory->getMemory(); |
| 252 | if (heap == 0) { |
| 253 | ALOGE("%s check failed: NULL heap pointer", __FUNCTION__); |
| 254 | return BAD_VALUE; |
| 255 | } |
| 256 | |
| 257 | off_t size = lseek(heap->getHeapID(), 0, SEEK_END); |
| 258 | lseek(heap->getHeapID(), 0, SEEK_SET); |
| 259 | |
Ytai Ben-Tsvi | 7dd3972 | 2019-09-05 15:14:30 -0700 | [diff] [blame] | 260 | if (iMemory->unsecurePointer() == NULL || size < (off_t)iMemory->size()) { |
Eric Laurent | 9b11c02 | 2018-06-06 19:19:22 -0700 | [diff] [blame] | 261 | ALOGE("%s check failed: pointer %p size %zu fd size %u", |
Ytai Ben-Tsvi | 7dd3972 | 2019-09-05 15:14:30 -0700 | [diff] [blame] | 262 | __FUNCTION__, iMemory->unsecurePointer(), iMemory->size(), (uint32_t)size); |
Eric Laurent | 9b11c02 | 2018-06-06 19:19:22 -0700 | [diff] [blame] | 263 | return BAD_VALUE; |
| 264 | } |
| 265 | |
| 266 | return NO_ERROR; |
| 267 | } |
| 268 | |
Ricardo Correa | 57a3769 | 2020-03-23 17:27:25 -0700 | [diff] [blame] | 269 | sp<content::pm::IPackageManagerNative> MediaPackageManager::retreivePackageManager() { |
Kevin Rocard | 8be9497 | 2019-02-22 13:26:25 -0800 | [diff] [blame] | 270 | const sp<IServiceManager> sm = defaultServiceManager(); |
| 271 | if (sm == nullptr) { |
| 272 | ALOGW("%s: failed to retrieve defaultServiceManager", __func__); |
Ricardo Correa | 57a3769 | 2020-03-23 17:27:25 -0700 | [diff] [blame] | 273 | return nullptr; |
Kevin Rocard | 8be9497 | 2019-02-22 13:26:25 -0800 | [diff] [blame] | 274 | } |
| 275 | sp<IBinder> packageManager = sm->checkService(String16(nativePackageManagerName)); |
| 276 | if (packageManager == nullptr) { |
| 277 | ALOGW("%s: failed to retrieve native package manager", __func__); |
Ricardo Correa | 57a3769 | 2020-03-23 17:27:25 -0700 | [diff] [blame] | 278 | return nullptr; |
Kevin Rocard | 8be9497 | 2019-02-22 13:26:25 -0800 | [diff] [blame] | 279 | } |
Ricardo Correa | 57a3769 | 2020-03-23 17:27:25 -0700 | [diff] [blame] | 280 | return interface_cast<content::pm::IPackageManagerNative>(packageManager); |
Kevin Rocard | 8be9497 | 2019-02-22 13:26:25 -0800 | [diff] [blame] | 281 | } |
| 282 | |
| 283 | std::optional<bool> MediaPackageManager::doIsAllowed(uid_t uid) { |
| 284 | if (mPackageManager == nullptr) { |
Ricardo Correa | 57a3769 | 2020-03-23 17:27:25 -0700 | [diff] [blame] | 285 | /** Can not fetch package manager at construction it may not yet be registered. */ |
| 286 | mPackageManager = retreivePackageManager(); |
| 287 | if (mPackageManager == nullptr) { |
| 288 | ALOGW("%s: Playback capture is denied as package manager is not reachable", __func__); |
| 289 | return std::nullopt; |
| 290 | } |
Kevin Rocard | 8be9497 | 2019-02-22 13:26:25 -0800 | [diff] [blame] | 291 | } |
| 292 | |
| 293 | std::vector<std::string> packageNames; |
| 294 | auto status = mPackageManager->getNamesForUids({(int32_t)uid}, &packageNames); |
| 295 | if (!status.isOk()) { |
| 296 | ALOGW("%s: Playback capture is denied for uid %u as the package names could not be " |
| 297 | "retrieved from the package manager: %s", __func__, uid, status.toString8().c_str()); |
| 298 | return std::nullopt; |
| 299 | } |
| 300 | if (packageNames.empty()) { |
| 301 | ALOGW("%s: Playback capture for uid %u is denied as no package name could be retrieved " |
| 302 | "from the package manager: %s", __func__, uid, status.toString8().c_str()); |
| 303 | return std::nullopt; |
| 304 | } |
| 305 | std::vector<bool> isAllowed; |
| 306 | status = mPackageManager->isAudioPlaybackCaptureAllowed(packageNames, &isAllowed); |
| 307 | if (!status.isOk()) { |
| 308 | ALOGW("%s: Playback capture is denied for uid %u as the manifest property could not be " |
| 309 | "retrieved from the package manager: %s", __func__, uid, status.toString8().c_str()); |
| 310 | return std::nullopt; |
| 311 | } |
| 312 | if (packageNames.size() != isAllowed.size()) { |
| 313 | ALOGW("%s: Playback capture is denied for uid %u as the package manager returned incoherent" |
| 314 | " response size: %zu != %zu", __func__, uid, packageNames.size(), isAllowed.size()); |
| 315 | return std::nullopt; |
| 316 | } |
| 317 | |
| 318 | // Zip together packageNames and isAllowed for debug logs |
| 319 | Packages& packages = mDebugLog[uid]; |
| 320 | packages.resize(packageNames.size()); // Reuse all objects |
| 321 | std::transform(begin(packageNames), end(packageNames), begin(isAllowed), |
| 322 | begin(packages), [] (auto& name, bool isAllowed) -> Package { |
| 323 | return {std::move(name), isAllowed}; |
| 324 | }); |
| 325 | |
| 326 | // Only allow playback record if all packages in this UID allow it |
| 327 | bool playbackCaptureAllowed = std::all_of(begin(isAllowed), end(isAllowed), |
| 328 | [](bool b) { return b; }); |
| 329 | |
| 330 | return playbackCaptureAllowed; |
| 331 | } |
| 332 | |
| 333 | void MediaPackageManager::dump(int fd, int spaces) const { |
| 334 | dprintf(fd, "%*sAllow playback capture log:\n", spaces, ""); |
| 335 | if (mPackageManager == nullptr) { |
| 336 | dprintf(fd, "%*sNo package manager\n", spaces + 2, ""); |
| 337 | } |
| 338 | dprintf(fd, "%*sPackage manager errors: %u\n", spaces + 2, "", mPackageManagerErrors); |
| 339 | |
| 340 | for (const auto& uidCache : mDebugLog) { |
| 341 | for (const auto& package : std::get<Packages>(uidCache)) { |
| 342 | dprintf(fd, "%*s- uid=%5u, allowPlaybackCapture=%s, packageName=%s\n", spaces + 2, "", |
| 343 | std::get<const uid_t>(uidCache), |
| 344 | package.playbackCaptureAllowed ? "true " : "false", |
| 345 | package.name.c_str()); |
| 346 | } |
| 347 | } |
| 348 | } |
| 349 | |
Andy Hung | a85efab | 2019-12-23 11:41:29 -0800 | [diff] [blame] | 350 | // How long we hold info before we re-fetch it (24 hours) if we found it previously. |
| 351 | static constexpr nsecs_t INFO_EXPIRATION_NS = 24 * 60 * 60 * NANOS_PER_SECOND; |
| 352 | // Maximum info records we retain before clearing everything. |
| 353 | static constexpr size_t INFO_CACHE_MAX = 1000; |
| 354 | |
| 355 | // The original code is from MediaMetricsService.cpp. |
| 356 | mediautils::UidInfo::Info mediautils::UidInfo::getInfo(uid_t uid) |
| 357 | { |
| 358 | const nsecs_t now = systemTime(SYSTEM_TIME_REALTIME); |
| 359 | struct mediautils::UidInfo::Info info; |
| 360 | { |
| 361 | std::lock_guard _l(mLock); |
| 362 | auto it = mInfoMap.find(uid); |
| 363 | if (it != mInfoMap.end()) { |
| 364 | info = it->second; |
| 365 | ALOGV("%s: uid %d expiration %lld now %lld", |
| 366 | __func__, uid, (long long)info.expirationNs, (long long)now); |
| 367 | if (info.expirationNs <= now) { |
| 368 | // purge the stale entry and fall into re-fetching |
| 369 | ALOGV("%s: entry for uid %d expired, now %lld", |
| 370 | __func__, uid, (long long)now); |
| 371 | mInfoMap.erase(it); |
| 372 | info.uid = (uid_t)-1; // this is always fully overwritten |
| 373 | } |
| 374 | } |
| 375 | } |
| 376 | |
| 377 | // if we did not find it in our map, look it up |
| 378 | if (info.uid == (uid_t)(-1)) { |
| 379 | sp<IServiceManager> sm = defaultServiceManager(); |
| 380 | sp<content::pm::IPackageManagerNative> package_mgr; |
| 381 | if (sm.get() == nullptr) { |
| 382 | ALOGE("%s: Cannot find service manager", __func__); |
| 383 | } else { |
| 384 | sp<IBinder> binder = sm->getService(String16("package_native")); |
| 385 | if (binder.get() == nullptr) { |
| 386 | ALOGE("%s: Cannot find package_native", __func__); |
| 387 | } else { |
| 388 | package_mgr = interface_cast<content::pm::IPackageManagerNative>(binder); |
| 389 | } |
| 390 | } |
| 391 | |
| 392 | // find package name |
| 393 | std::string pkg; |
| 394 | if (package_mgr != nullptr) { |
| 395 | std::vector<std::string> names; |
| 396 | binder::Status status = package_mgr->getNamesForUids({(int)uid}, &names); |
| 397 | if (!status.isOk()) { |
| 398 | ALOGE("%s: getNamesForUids failed: %s", |
| 399 | __func__, status.exceptionMessage().c_str()); |
| 400 | } else { |
| 401 | if (!names[0].empty()) { |
| 402 | pkg = names[0].c_str(); |
| 403 | } |
| 404 | } |
| 405 | } |
| 406 | |
| 407 | if (pkg.empty()) { |
| 408 | struct passwd pw{}, *result; |
| 409 | char buf[8192]; // extra buffer space - should exceed what is |
| 410 | // required in struct passwd_pw (tested), |
| 411 | // and even then this is only used in backup |
| 412 | // when the package manager is unavailable. |
| 413 | if (getpwuid_r(uid, &pw, buf, sizeof(buf), &result) == 0 |
| 414 | && result != nullptr |
| 415 | && result->pw_name != nullptr) { |
| 416 | pkg = result->pw_name; |
| 417 | } |
| 418 | } |
| 419 | |
| 420 | // strip any leading "shared:" strings that came back |
| 421 | if (pkg.compare(0, 7, "shared:") == 0) { |
| 422 | pkg.erase(0, 7); |
| 423 | } |
| 424 | |
| 425 | // determine how pkg was installed and the versionCode |
| 426 | std::string installer; |
| 427 | int64_t versionCode = 0; |
| 428 | bool notFound = false; |
| 429 | if (pkg.empty()) { |
| 430 | pkg = std::to_string(uid); // not found |
| 431 | notFound = true; |
| 432 | } else if (strchr(pkg.c_str(), '.') == nullptr) { |
| 433 | // not of form 'com.whatever...'; assume internal |
| 434 | // so we don't need to look it up in package manager. |
Andy Hung | e6a65ac | 2020-01-08 16:56:17 -0800 | [diff] [blame] | 435 | } else if (strncmp(pkg.c_str(), "android.", 8) == 0) { |
| 436 | // android.* packages are assumed fine |
Andy Hung | a85efab | 2019-12-23 11:41:29 -0800 | [diff] [blame] | 437 | } else if (package_mgr.get() != nullptr) { |
| 438 | String16 pkgName16(pkg.c_str()); |
| 439 | binder::Status status = package_mgr->getInstallerForPackage(pkgName16, &installer); |
| 440 | if (!status.isOk()) { |
| 441 | ALOGE("%s: getInstallerForPackage failed: %s", |
| 442 | __func__, status.exceptionMessage().c_str()); |
| 443 | } |
| 444 | |
| 445 | // skip if we didn't get an installer |
| 446 | if (status.isOk()) { |
| 447 | status = package_mgr->getVersionCodeForPackage(pkgName16, &versionCode); |
| 448 | if (!status.isOk()) { |
| 449 | ALOGE("%s: getVersionCodeForPackage failed: %s", |
| 450 | __func__, status.exceptionMessage().c_str()); |
| 451 | } |
| 452 | } |
| 453 | |
| 454 | ALOGV("%s: package '%s' installed by '%s' versioncode %lld", |
| 455 | __func__, pkg.c_str(), installer.c_str(), (long long)versionCode); |
| 456 | } |
| 457 | |
| 458 | // add it to the map, to save a subsequent lookup |
| 459 | std::lock_guard _l(mLock); |
| 460 | // first clear if we have too many cached elements. This would be rare. |
| 461 | if (mInfoMap.size() >= INFO_CACHE_MAX) mInfoMap.clear(); |
| 462 | |
| 463 | // always overwrite |
| 464 | info.uid = uid; |
| 465 | info.package = std::move(pkg); |
| 466 | info.installer = std::move(installer); |
| 467 | info.versionCode = versionCode; |
| 468 | info.expirationNs = now + (notFound ? 0 : INFO_EXPIRATION_NS); |
| 469 | ALOGV("%s: adding uid %d package '%s' expirationNs: %lld", |
| 470 | __func__, uid, info.package.c_str(), (long long)info.expirationNs); |
| 471 | mInfoMap[uid] = info; |
| 472 | } |
| 473 | return info; |
| 474 | } |
| 475 | |
Glenn Kasten | 44deb05 | 2012-02-05 18:09:08 -0800 | [diff] [blame] | 476 | } // namespace android |