blob: 143a4e1fa9ffaeb39569996ece2b86b7a6e500b4 [file] [log] [blame]
Glenn Kasten44deb052012-02-05 18:09:08 -08001/*
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 Laurent9b11c022018-06-06 19:19:22 -070017#define LOG_TAG "ServiceUtilities"
18
Andy Hunga85efab2019-12-23 11:41:29 -080019#include <audio_utils/clock.h>
Svet Ganovbe71aa22015-04-28 12:06:02 -070020#include <binder/AppOpsManager.h>
Glenn Kasten44deb052012-02-05 18:09:08 -080021#include <binder/IPCThreadState.h>
22#include <binder/IServiceManager.h>
23#include <binder/PermissionCache.h>
Andy Hungab7ef302018-05-15 19:35:29 -070024#include "mediautils/ServiceUtilities.h"
Glenn Kasten44deb052012-02-05 18:09:08 -080025
Kevin Rocard8be94972019-02-22 13:26:25 -080026#include <iterator>
27#include <algorithm>
Andy Hunga85efab2019-12-23 11:41:29 -080028#include <pwd.h>
Kevin Rocard8be94972019-02-22 13:26:25 -080029
Svet Ganovbe71aa22015-04-28 12:06:02 -070030/* 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 Kasten44deb052012-02-05 18:09:08 -080037namespace android {
38
Svet Ganov5b81f552018-03-02 09:21:30 -080039static const String16 sAndroidPermissionRecordAudio("android.permission.RECORD_AUDIO");
Eric Laurent42984412019-05-09 17:57:03 -070040static const String16 sModifyPhoneState("android.permission.MODIFY_PHONE_STATE");
41static const String16 sModifyAudioRouting("android.permission.MODIFY_AUDIO_ROUTING");
Svet Ganov5b81f552018-03-02 09:21:30 -080042
Svet Ganov5b81f552018-03-02 09:21:30 -080043static String16 resolveCallingPackage(PermissionController& permissionController,
44 const String16& opPackageName, uid_t uid) {
45 if (opPackageName.size() > 0) {
46 return opPackageName;
Svet Ganovbe71aa22015-04-28 12:06:02 -070047 }
Svet Ganovbe71aa22015-04-28 12:06:02 -070048 // 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 Ganov5b81f552018-03-02 09:21:30 -080055 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 Ganov599ec462018-03-01 22:19:55 +000063
Svet Ganov5b81f552018-03-02 09:21:30 -080064static bool checkRecordingInternal(const String16& opPackageName, pid_t pid,
65 uid_t uid, bool start) {
Eric Laurent58a0dd82019-10-24 12:42:17 -070066 // Okay to not track in app ops as audio server or media server is us and if
Svet Ganov5b81f552018-03-02 09:21:30 -080067 // device is rooted security model is considered compromised.
Jeffrey Carlyle62cc92b2019-09-17 11:15:15 -070068 // 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 Laurent58a0dd82019-10-24 12:42:17 -070071 if (isAudioServerOrMediaServerOrSystemServerOrRootUid(uid)) return true;
Svetoslav Ganov599ec462018-03-01 22:19:55 +000072
Svet Ganov5b81f552018-03-02 09:21:30 -080073 // 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 Ganovbe71aa22015-04-28 12:06:02 -070087 }
Svetoslav Ganov599ec462018-03-01 22:19:55 +000088
89 AppOpsManager appOps;
Svet Ganov5b81f552018-03-02 09:21:30 -080090 const int32_t op = appOps.permissionToOpCode(sAndroidPermissionRecordAudio);
91 if (start) {
Mikhail Naganov70ff2372020-12-07 22:18:49 +000092 if (int32_t mode = appOps.startOpNoThrow(
93 op, uid, resolvedOpPackageName, /*startIfModeDefault*/ false);
94 mode != AppOpsManager::MODE_ALLOWED) {
95 ALOGE("Request start for \"%s\" (uid %d) denied by app op: %d, mode: %d",
96 String8(resolvedOpPackageName).c_str(), uid, op, mode);
Svet Ganov5b81f552018-03-02 09:21:30 -080097 return false;
98 }
99 } else {
Mikhail Naganov70ff2372020-12-07 22:18:49 +0000100 if (int32_t mode = appOps.checkOp(op, uid, resolvedOpPackageName);
101 mode != AppOpsManager::MODE_ALLOWED) {
102 ALOGE("Request check for \"%s\" (uid %d) denied by app op: %d, mode: %d",
103 String8(resolvedOpPackageName).c_str(), uid, op, mode);
Svet Ganov5b81f552018-03-02 09:21:30 -0800104 return false;
105 }
Svetoslav Ganov599ec462018-03-01 22:19:55 +0000106 }
107
108 return true;
Glenn Kasten44deb052012-02-05 18:09:08 -0800109}
110
Svet Ganov5b81f552018-03-02 09:21:30 -0800111bool recordingAllowed(const String16& opPackageName, pid_t pid, uid_t uid) {
112 return checkRecordingInternal(opPackageName, pid, uid, /*start*/ false);
113}
114
115bool startRecording(const String16& opPackageName, pid_t pid, uid_t uid) {
116 return checkRecordingInternal(opPackageName, pid, uid, /*start*/ true);
117}
118
119void finishRecording(const String16& opPackageName, uid_t uid) {
120 // Okay to not track in app ops as audio server is us and if
121 // device is rooted security model is considered compromised.
Andy Hung4ef19fa2018-05-15 19:35:29 -0700122 if (isAudioServerOrRootUid(uid)) return;
Svet Ganov5b81f552018-03-02 09:21:30 -0800123
124 PermissionController permissionController;
125 String16 resolvedOpPackageName = resolveCallingPackage(
126 permissionController, opPackageName, uid);
127 if (resolvedOpPackageName.size() == 0) {
128 return;
129 }
130
131 AppOpsManager appOps;
132 const int32_t op = appOps.permissionToOpCode(sAndroidPermissionRecordAudio);
133 appOps.finishOp(op, uid, resolvedOpPackageName);
134}
135
Eric Laurentb2379ba2016-05-23 17:42:12 -0700136bool captureAudioOutputAllowed(pid_t pid, uid_t uid) {
Andy Hung4ef19fa2018-05-15 19:35:29 -0700137 if (isAudioServerOrRootUid(uid)) return true;
Jeff Brown893a5642013-08-16 20:19:26 -0700138 static const String16 sCaptureAudioOutput("android.permission.CAPTURE_AUDIO_OUTPUT");
Svet Ganov5b81f552018-03-02 09:21:30 -0800139 bool ok = PermissionCache::checkPermission(sCaptureAudioOutput, pid, uid);
Eric Laurent6ede98f2019-06-11 14:50:30 -0700140 if (!ok) ALOGV("Request requires android.permission.CAPTURE_AUDIO_OUTPUT");
Jeff Brown893a5642013-08-16 20:19:26 -0700141 return ok;
142}
143
Kevin Rocard36b17552019-03-07 18:48:07 -0800144bool captureMediaOutputAllowed(pid_t pid, uid_t uid) {
145 if (isAudioServerOrRootUid(uid)) return true;
146 static const String16 sCaptureMediaOutput("android.permission.CAPTURE_MEDIA_OUTPUT");
147 bool ok = PermissionCache::checkPermission(sCaptureMediaOutput, pid, uid);
148 if (!ok) ALOGE("Request requires android.permission.CAPTURE_MEDIA_OUTPUT");
149 return ok;
150}
151
Nadav Bardbf0a2e2020-01-16 23:09:25 +0200152bool captureVoiceCommunicationOutputAllowed(pid_t pid, uid_t uid) {
153 if (isAudioServerOrRootUid(uid)) return true;
154 static const String16 sCaptureVoiceCommOutput(
155 "android.permission.CAPTURE_VOICE_COMMUNICATION_OUTPUT");
156 bool ok = PermissionCache::checkPermission(sCaptureVoiceCommOutput, pid, uid);
157 if (!ok) ALOGE("Request requires android.permission.CAPTURE_VOICE_COMMUNICATION_OUTPUT");
158 return ok;
159}
160
jiabin68e0df72019-03-18 17:55:35 -0700161bool captureHotwordAllowed(const String16& opPackageName, pid_t pid, uid_t uid) {
Eric Laurent7504b9e2017-08-15 18:17:26 -0700162 // CAPTURE_AUDIO_HOTWORD permission implies RECORD_AUDIO permission
jiabin68e0df72019-03-18 17:55:35 -0700163 bool ok = recordingAllowed(opPackageName, pid, uid);
Eric Laurent7504b9e2017-08-15 18:17:26 -0700164
165 if (ok) {
166 static const String16 sCaptureHotwordAllowed("android.permission.CAPTURE_AUDIO_HOTWORD");
167 // IMPORTANT: Use PermissionCache - not a runtime permission and may not change.
jiabin68e0df72019-03-18 17:55:35 -0700168 ok = PermissionCache::checkPermission(sCaptureHotwordAllowed, pid, uid);
Eric Laurent7504b9e2017-08-15 18:17:26 -0700169 }
Eric Laurent6ede98f2019-06-11 14:50:30 -0700170 if (!ok) ALOGV("android.permission.CAPTURE_AUDIO_HOTWORD");
Eric Laurent9a54bc22013-09-09 09:08:44 -0700171 return ok;
172}
173
Glenn Kasten44deb052012-02-05 18:09:08 -0800174bool settingsAllowed() {
Andy Hung4ef19fa2018-05-15 19:35:29 -0700175 // given this is a permission check, could this be isAudioServerOrRootUid()?
176 if (isAudioServerUid(IPCThreadState::self()->getCallingUid())) return true;
Glenn Kasten44deb052012-02-05 18:09:08 -0800177 static const String16 sAudioSettings("android.permission.MODIFY_AUDIO_SETTINGS");
Svet Ganovbe71aa22015-04-28 12:06:02 -0700178 // IMPORTANT: Use PermissionCache - not a runtime permission and may not change.
179 bool ok = PermissionCache::checkCallingPermission(sAudioSettings);
Glenn Kasten44deb052012-02-05 18:09:08 -0800180 if (!ok) ALOGE("Request requires android.permission.MODIFY_AUDIO_SETTINGS");
181 return ok;
182}
183
Eric Laurent5284ed52014-05-29 14:37:38 -0700184bool modifyAudioRoutingAllowed() {
Eric Laurent8a1095a2019-11-08 14:44:16 -0800185 return modifyAudioRoutingAllowed(
186 IPCThreadState::self()->getCallingPid(), IPCThreadState::self()->getCallingUid());
187}
188
189bool modifyAudioRoutingAllowed(pid_t pid, uid_t uid) {
190 if (isAudioServerUid(IPCThreadState::self()->getCallingUid())) return true;
Svet Ganovbe71aa22015-04-28 12:06:02 -0700191 // IMPORTANT: Use PermissionCache - not a runtime permission and may not change.
Eric Laurent8a1095a2019-11-08 14:44:16 -0800192 bool ok = PermissionCache::checkPermission(sModifyAudioRouting, pid, uid);
193 if (!ok) ALOGE("%s(): android.permission.MODIFY_AUDIO_ROUTING denied for uid %d",
194 __func__, uid);
Eric Laurent5284ed52014-05-29 14:37:38 -0700195 return ok;
196}
197
Ari Hausman-Cohen433722e2018-04-24 14:25:22 -0700198bool modifyDefaultAudioEffectsAllowed() {
Eric Laurent3f75a5b2019-11-12 15:55:51 -0800199 return modifyDefaultAudioEffectsAllowed(
200 IPCThreadState::self()->getCallingPid(), IPCThreadState::self()->getCallingUid());
201}
202
203bool modifyDefaultAudioEffectsAllowed(pid_t pid, uid_t uid) {
204 if (isAudioServerUid(IPCThreadState::self()->getCallingUid())) return true;
205
Ari Hausman-Cohen433722e2018-04-24 14:25:22 -0700206 static const String16 sModifyDefaultAudioEffectsAllowed(
207 "android.permission.MODIFY_DEFAULT_AUDIO_EFFECTS");
208 // IMPORTANT: Use PermissionCache - not a runtime permission and may not change.
Eric Laurent3f75a5b2019-11-12 15:55:51 -0800209 bool ok = PermissionCache::checkPermission(sModifyDefaultAudioEffectsAllowed, pid, uid);
210 ALOGE_IF(!ok, "%s(): android.permission.MODIFY_DEFAULT_AUDIO_EFFECTS denied for uid %d",
211 __func__, uid);
Ari Hausman-Cohen433722e2018-04-24 14:25:22 -0700212 return ok;
213}
214
Glenn Kasten44deb052012-02-05 18:09:08 -0800215bool dumpAllowed() {
Glenn Kasten44deb052012-02-05 18:09:08 -0800216 static const String16 sDump("android.permission.DUMP");
Svet Ganovbe71aa22015-04-28 12:06:02 -0700217 // IMPORTANT: Use PermissionCache - not a runtime permission and may not change.
Glenn Kasten44deb052012-02-05 18:09:08 -0800218 bool ok = PermissionCache::checkCallingPermission(sDump);
219 // convention is for caller to dump an error message to fd instead of logging here
220 //if (!ok) ALOGE("Request requires android.permission.DUMP");
221 return ok;
222}
223
Nadav Bar766fb022018-01-07 12:18:03 +0200224bool modifyPhoneStateAllowed(pid_t pid, uid_t uid) {
Svet Ganov5b81f552018-03-02 09:21:30 -0800225 bool ok = PermissionCache::checkPermission(sModifyPhoneState, pid, uid);
Eric Laurent42984412019-05-09 17:57:03 -0700226 ALOGE_IF(!ok, "Request requires %s", String8(sModifyPhoneState).c_str());
227 return ok;
228}
229
230// privileged behavior needed by Dialer, Settings, SetupWizard and CellBroadcastReceiver
231bool bypassInterruptionPolicyAllowed(pid_t pid, uid_t uid) {
232 static const String16 sWriteSecureSettings("android.permission.WRITE_SECURE_SETTINGS");
233 bool ok = PermissionCache::checkPermission(sModifyPhoneState, pid, uid)
234 || PermissionCache::checkPermission(sWriteSecureSettings, pid, uid)
235 || PermissionCache::checkPermission(sModifyAudioRouting, pid, uid);
236 ALOGE_IF(!ok, "Request requires %s or %s",
237 String8(sModifyPhoneState).c_str(), String8(sWriteSecureSettings).c_str());
Nadav Bar766fb022018-01-07 12:18:03 +0200238 return ok;
239}
240
Eric Laurent9b11c022018-06-06 19:19:22 -0700241status_t checkIMemory(const sp<IMemory>& iMemory)
242{
243 if (iMemory == 0) {
244 ALOGE("%s check failed: NULL IMemory pointer", __FUNCTION__);
245 return BAD_VALUE;
246 }
247
248 sp<IMemoryHeap> heap = iMemory->getMemory();
249 if (heap == 0) {
250 ALOGE("%s check failed: NULL heap pointer", __FUNCTION__);
251 return BAD_VALUE;
252 }
253
254 off_t size = lseek(heap->getHeapID(), 0, SEEK_END);
255 lseek(heap->getHeapID(), 0, SEEK_SET);
256
Ytai Ben-Tsvi7dd39722019-09-05 15:14:30 -0700257 if (iMemory->unsecurePointer() == NULL || size < (off_t)iMemory->size()) {
Eric Laurent9b11c022018-06-06 19:19:22 -0700258 ALOGE("%s check failed: pointer %p size %zu fd size %u",
Ytai Ben-Tsvi7dd39722019-09-05 15:14:30 -0700259 __FUNCTION__, iMemory->unsecurePointer(), iMemory->size(), (uint32_t)size);
Eric Laurent9b11c022018-06-06 19:19:22 -0700260 return BAD_VALUE;
261 }
262
263 return NO_ERROR;
264}
265
Ricardo Correa57a37692020-03-23 17:27:25 -0700266sp<content::pm::IPackageManagerNative> MediaPackageManager::retreivePackageManager() {
Kevin Rocard8be94972019-02-22 13:26:25 -0800267 const sp<IServiceManager> sm = defaultServiceManager();
268 if (sm == nullptr) {
269 ALOGW("%s: failed to retrieve defaultServiceManager", __func__);
Ricardo Correa57a37692020-03-23 17:27:25 -0700270 return nullptr;
Kevin Rocard8be94972019-02-22 13:26:25 -0800271 }
272 sp<IBinder> packageManager = sm->checkService(String16(nativePackageManagerName));
273 if (packageManager == nullptr) {
274 ALOGW("%s: failed to retrieve native package manager", __func__);
Ricardo Correa57a37692020-03-23 17:27:25 -0700275 return nullptr;
Kevin Rocard8be94972019-02-22 13:26:25 -0800276 }
Ricardo Correa57a37692020-03-23 17:27:25 -0700277 return interface_cast<content::pm::IPackageManagerNative>(packageManager);
Kevin Rocard8be94972019-02-22 13:26:25 -0800278}
279
280std::optional<bool> MediaPackageManager::doIsAllowed(uid_t uid) {
281 if (mPackageManager == nullptr) {
Ricardo Correa57a37692020-03-23 17:27:25 -0700282 /** Can not fetch package manager at construction it may not yet be registered. */
283 mPackageManager = retreivePackageManager();
284 if (mPackageManager == nullptr) {
285 ALOGW("%s: Playback capture is denied as package manager is not reachable", __func__);
286 return std::nullopt;
287 }
Kevin Rocard8be94972019-02-22 13:26:25 -0800288 }
289
290 std::vector<std::string> packageNames;
291 auto status = mPackageManager->getNamesForUids({(int32_t)uid}, &packageNames);
292 if (!status.isOk()) {
293 ALOGW("%s: Playback capture is denied for uid %u as the package names could not be "
294 "retrieved from the package manager: %s", __func__, uid, status.toString8().c_str());
295 return std::nullopt;
296 }
297 if (packageNames.empty()) {
298 ALOGW("%s: Playback capture for uid %u is denied as no package name could be retrieved "
299 "from the package manager: %s", __func__, uid, status.toString8().c_str());
300 return std::nullopt;
301 }
302 std::vector<bool> isAllowed;
303 status = mPackageManager->isAudioPlaybackCaptureAllowed(packageNames, &isAllowed);
304 if (!status.isOk()) {
305 ALOGW("%s: Playback capture is denied for uid %u as the manifest property could not be "
306 "retrieved from the package manager: %s", __func__, uid, status.toString8().c_str());
307 return std::nullopt;
308 }
309 if (packageNames.size() != isAllowed.size()) {
310 ALOGW("%s: Playback capture is denied for uid %u as the package manager returned incoherent"
311 " response size: %zu != %zu", __func__, uid, packageNames.size(), isAllowed.size());
312 return std::nullopt;
313 }
314
315 // Zip together packageNames and isAllowed for debug logs
316 Packages& packages = mDebugLog[uid];
317 packages.resize(packageNames.size()); // Reuse all objects
318 std::transform(begin(packageNames), end(packageNames), begin(isAllowed),
319 begin(packages), [] (auto& name, bool isAllowed) -> Package {
320 return {std::move(name), isAllowed};
321 });
322
323 // Only allow playback record if all packages in this UID allow it
324 bool playbackCaptureAllowed = std::all_of(begin(isAllowed), end(isAllowed),
325 [](bool b) { return b; });
326
327 return playbackCaptureAllowed;
328}
329
330void MediaPackageManager::dump(int fd, int spaces) const {
331 dprintf(fd, "%*sAllow playback capture log:\n", spaces, "");
332 if (mPackageManager == nullptr) {
333 dprintf(fd, "%*sNo package manager\n", spaces + 2, "");
334 }
335 dprintf(fd, "%*sPackage manager errors: %u\n", spaces + 2, "", mPackageManagerErrors);
336
337 for (const auto& uidCache : mDebugLog) {
338 for (const auto& package : std::get<Packages>(uidCache)) {
339 dprintf(fd, "%*s- uid=%5u, allowPlaybackCapture=%s, packageName=%s\n", spaces + 2, "",
340 std::get<const uid_t>(uidCache),
341 package.playbackCaptureAllowed ? "true " : "false",
342 package.name.c_str());
343 }
344 }
345}
346
Andy Hunga85efab2019-12-23 11:41:29 -0800347// How long we hold info before we re-fetch it (24 hours) if we found it previously.
348static constexpr nsecs_t INFO_EXPIRATION_NS = 24 * 60 * 60 * NANOS_PER_SECOND;
349// Maximum info records we retain before clearing everything.
350static constexpr size_t INFO_CACHE_MAX = 1000;
351
352// The original code is from MediaMetricsService.cpp.
353mediautils::UidInfo::Info mediautils::UidInfo::getInfo(uid_t uid)
354{
355 const nsecs_t now = systemTime(SYSTEM_TIME_REALTIME);
356 struct mediautils::UidInfo::Info info;
357 {
358 std::lock_guard _l(mLock);
359 auto it = mInfoMap.find(uid);
360 if (it != mInfoMap.end()) {
361 info = it->second;
362 ALOGV("%s: uid %d expiration %lld now %lld",
363 __func__, uid, (long long)info.expirationNs, (long long)now);
364 if (info.expirationNs <= now) {
365 // purge the stale entry and fall into re-fetching
366 ALOGV("%s: entry for uid %d expired, now %lld",
367 __func__, uid, (long long)now);
368 mInfoMap.erase(it);
369 info.uid = (uid_t)-1; // this is always fully overwritten
370 }
371 }
372 }
373
374 // if we did not find it in our map, look it up
375 if (info.uid == (uid_t)(-1)) {
376 sp<IServiceManager> sm = defaultServiceManager();
377 sp<content::pm::IPackageManagerNative> package_mgr;
378 if (sm.get() == nullptr) {
379 ALOGE("%s: Cannot find service manager", __func__);
380 } else {
381 sp<IBinder> binder = sm->getService(String16("package_native"));
382 if (binder.get() == nullptr) {
383 ALOGE("%s: Cannot find package_native", __func__);
384 } else {
385 package_mgr = interface_cast<content::pm::IPackageManagerNative>(binder);
386 }
387 }
388
389 // find package name
390 std::string pkg;
391 if (package_mgr != nullptr) {
392 std::vector<std::string> names;
393 binder::Status status = package_mgr->getNamesForUids({(int)uid}, &names);
394 if (!status.isOk()) {
395 ALOGE("%s: getNamesForUids failed: %s",
396 __func__, status.exceptionMessage().c_str());
397 } else {
398 if (!names[0].empty()) {
399 pkg = names[0].c_str();
400 }
401 }
402 }
403
404 if (pkg.empty()) {
405 struct passwd pw{}, *result;
406 char buf[8192]; // extra buffer space - should exceed what is
407 // required in struct passwd_pw (tested),
408 // and even then this is only used in backup
409 // when the package manager is unavailable.
410 if (getpwuid_r(uid, &pw, buf, sizeof(buf), &result) == 0
411 && result != nullptr
412 && result->pw_name != nullptr) {
413 pkg = result->pw_name;
414 }
415 }
416
417 // strip any leading "shared:" strings that came back
418 if (pkg.compare(0, 7, "shared:") == 0) {
419 pkg.erase(0, 7);
420 }
421
422 // determine how pkg was installed and the versionCode
423 std::string installer;
424 int64_t versionCode = 0;
425 bool notFound = false;
426 if (pkg.empty()) {
427 pkg = std::to_string(uid); // not found
428 notFound = true;
429 } else if (strchr(pkg.c_str(), '.') == nullptr) {
430 // not of form 'com.whatever...'; assume internal
431 // so we don't need to look it up in package manager.
Andy Hunge6a65ac2020-01-08 16:56:17 -0800432 } else if (strncmp(pkg.c_str(), "android.", 8) == 0) {
433 // android.* packages are assumed fine
Andy Hunga85efab2019-12-23 11:41:29 -0800434 } else if (package_mgr.get() != nullptr) {
435 String16 pkgName16(pkg.c_str());
436 binder::Status status = package_mgr->getInstallerForPackage(pkgName16, &installer);
437 if (!status.isOk()) {
438 ALOGE("%s: getInstallerForPackage failed: %s",
439 __func__, status.exceptionMessage().c_str());
440 }
441
442 // skip if we didn't get an installer
443 if (status.isOk()) {
444 status = package_mgr->getVersionCodeForPackage(pkgName16, &versionCode);
445 if (!status.isOk()) {
446 ALOGE("%s: getVersionCodeForPackage failed: %s",
447 __func__, status.exceptionMessage().c_str());
448 }
449 }
450
451 ALOGV("%s: package '%s' installed by '%s' versioncode %lld",
452 __func__, pkg.c_str(), installer.c_str(), (long long)versionCode);
453 }
454
455 // add it to the map, to save a subsequent lookup
456 std::lock_guard _l(mLock);
457 // first clear if we have too many cached elements. This would be rare.
458 if (mInfoMap.size() >= INFO_CACHE_MAX) mInfoMap.clear();
459
460 // always overwrite
461 info.uid = uid;
462 info.package = std::move(pkg);
463 info.installer = std::move(installer);
464 info.versionCode = versionCode;
465 info.expirationNs = now + (notFound ? 0 : INFO_EXPIRATION_NS);
466 ALOGV("%s: adding uid %d package '%s' expirationNs: %lld",
467 __func__, uid, info.package.c_str(), (long long)info.expirationNs);
468 mInfoMap[uid] = info;
469 }
470 return info;
471}
472
Glenn Kasten44deb052012-02-05 18:09:08 -0800473} // namespace android