blob: f6e4ec3c0d615e062b132bf8a01e2f751ae0b39d [file] [log] [blame]
Steven Moreland80e1e6d2019-06-21 12:35:59 -07001/*
2 * Copyright (C) 2019 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
17#include "ServiceManager.h"
18
19#include <android-base/logging.h>
Jon Spivack0d844302019-07-22 18:40:34 -070020#include <android-base/properties.h>
Jon Spivack9f503a42019-10-22 16:49:19 -070021#include <binder/BpBinder.h>
22#include <binder/IPCThreadState.h>
23#include <binder/ProcessState.h>
Steven Moreland86a17f82019-09-10 10:18:00 -070024#include <binder/Stability.h>
Steven Moreland80e1e6d2019-06-21 12:35:59 -070025#include <cutils/android_filesystem_config.h>
26#include <cutils/multiuser.h>
Jon Spivack0d844302019-07-22 18:40:34 -070027#include <thread>
Steven Moreland80e1e6d2019-06-21 12:35:59 -070028
Steven Moreland86a17f82019-09-10 10:18:00 -070029#ifndef VENDORSERVICEMANAGER
30#include <vintf/VintfObject.h>
Yifan Hong0a9b56e2021-11-30 16:45:40 -080031#ifdef __ANDROID_RECOVERY__
32#include <vintf/VintfObjectRecovery.h>
33#endif // __ANDROID_RECOVERY__
Steven Moreland86a17f82019-09-10 10:18:00 -070034#include <vintf/constants.h>
35#endif // !VENDORSERVICEMANAGER
36
Steven Moreland80e1e6d2019-06-21 12:35:59 -070037using ::android::binder::Status;
Steven Moreland86a17f82019-09-10 10:18:00 -070038using ::android::internal::Stability;
Steven Moreland80e1e6d2019-06-21 12:35:59 -070039
40namespace android {
41
Steven Morelandb9e1cbe2023-02-01 22:44:45 +000042bool is_multiuser_uid_isolated(uid_t uid) {
43 uid_t appid = multiuser_get_app_id(uid);
44 return appid >= AID_ISOLATED_START && appid <= AID_ISOLATED_END;
45}
46
Steven Moreland86a17f82019-09-10 10:18:00 -070047#ifndef VENDORSERVICEMANAGER
Yifan Hong0a9b56e2021-11-30 16:45:40 -080048
Steven Moreland2e293aa2020-09-23 00:25:16 +000049struct ManifestWithDescription {
50 std::shared_ptr<const vintf::HalManifest> manifest;
51 const char* description;
52};
Yifan Hong0a9b56e2021-11-30 16:45:40 -080053static std::vector<ManifestWithDescription> GetManifestsWithDescription() {
54#ifdef __ANDROID_RECOVERY__
55 auto vintfObject = vintf::VintfObjectRecovery::GetInstance();
56 if (vintfObject == nullptr) {
Pawan Wagh37526162022-09-29 21:55:26 +000057 ALOGE("NULL VintfObjectRecovery!");
Yifan Hong0a9b56e2021-11-30 16:45:40 -080058 return {};
59 }
60 return {ManifestWithDescription{vintfObject->getRecoveryHalManifest(), "recovery"}};
61#else
62 auto vintfObject = vintf::VintfObject::GetInstance();
63 if (vintfObject == nullptr) {
Pawan Wagh37526162022-09-29 21:55:26 +000064 ALOGE("NULL VintfObject!");
Yifan Hong0a9b56e2021-11-30 16:45:40 -080065 return {};
66 }
67 return {ManifestWithDescription{vintfObject->getDeviceHalManifest(), "device"},
68 ManifestWithDescription{vintfObject->getFrameworkHalManifest(), "framework"}};
69#endif
70}
71
Steven Moreland2e293aa2020-09-23 00:25:16 +000072// func true -> stop search and forEachManifest will return true
73static bool forEachManifest(const std::function<bool(const ManifestWithDescription&)>& func) {
Yifan Hong0a9b56e2021-11-30 16:45:40 -080074 for (const ManifestWithDescription& mwd : GetManifestsWithDescription()) {
Steven Moreland2e293aa2020-09-23 00:25:16 +000075 if (mwd.manifest == nullptr) {
Pawan Wagh37526162022-09-29 21:55:26 +000076 ALOGE("NULL VINTF MANIFEST!: %s", mwd.description);
77 // note, we explicitly do not retry here, so that we can detect VINTF
78 // or other bugs (b/151696835)
79 continue;
Steven Moreland2e293aa2020-09-23 00:25:16 +000080 }
81 if (func(mwd)) return true;
82 }
83 return false;
84}
85
Steven Morelandedd4e072021-04-21 00:27:29 +000086struct AidlName {
87 std::string package;
88 std::string iface;
89 std::string instance;
Steven Moreland86a17f82019-09-10 10:18:00 -070090
Steven Morelandedd4e072021-04-21 00:27:29 +000091 static bool fill(const std::string& name, AidlName* aname) {
92 size_t firstSlash = name.find('/');
93 size_t lastDot = name.rfind('.', firstSlash);
94 if (firstSlash == std::string::npos || lastDot == std::string::npos) {
Pawan Wagh37526162022-09-29 21:55:26 +000095 ALOGE("VINTF HALs require names in the format type/instance (e.g. "
96 "some.package.foo.IFoo/default) but got: %s",
97 name.c_str());
Steven Morelandedd4e072021-04-21 00:27:29 +000098 return false;
99 }
100 aname->package = name.substr(0, lastDot);
101 aname->iface = name.substr(lastDot + 1, firstSlash - lastDot - 1);
102 aname->instance = name.substr(firstSlash + 1);
103 return true;
104 }
105};
106
107static bool isVintfDeclared(const std::string& name) {
108 AidlName aname;
109 if (!AidlName::fill(name, &aname)) return false;
110
111 bool found = forEachManifest([&](const ManifestWithDescription& mwd) {
112 if (mwd.manifest->hasAidlInstance(aname.package, aname.iface, aname.instance)) {
Pawan Wagh37526162022-09-29 21:55:26 +0000113 ALOGI("Found %s in %s VINTF manifest.", name.c_str(), mwd.description);
Steven Morelandedd4e072021-04-21 00:27:29 +0000114 return true; // break
Steven Moreland86a17f82019-09-10 10:18:00 -0700115 }
Steven Moreland2e293aa2020-09-23 00:25:16 +0000116 return false; // continue
117 });
118
119 if (!found) {
120 // Although it is tested, explicitly rebuilding qualified name, in case it
121 // becomes something unexpected.
Pawan Wagh37526162022-09-29 21:55:26 +0000122 ALOGI("Could not find %s.%s/%s in the VINTF manifest.", aname.package.c_str(),
123 aname.iface.c_str(), aname.instance.c_str());
Steven Moreland86a17f82019-09-10 10:18:00 -0700124 }
Steven Moreland2edde8e2020-04-30 17:04:54 -0700125
Steven Moreland2e293aa2020-09-23 00:25:16 +0000126 return found;
127}
128
Steven Morelandedd4e072021-04-21 00:27:29 +0000129static std::optional<std::string> getVintfUpdatableApex(const std::string& name) {
130 AidlName aname;
131 if (!AidlName::fill(name, &aname)) return std::nullopt;
132
133 std::optional<std::string> updatableViaApex;
134
135 forEachManifest([&](const ManifestWithDescription& mwd) {
136 mwd.manifest->forEachInstance([&](const auto& manifestInstance) {
137 if (manifestInstance.format() != vintf::HalFormat::AIDL) return true;
138 if (manifestInstance.package() != aname.package) return true;
139 if (manifestInstance.interface() != aname.iface) return true;
140 if (manifestInstance.instance() != aname.instance) return true;
141 updatableViaApex = manifestInstance.updatableViaApex();
142 return false; // break (libvintf uses opposite convention)
143 });
Jooyung Hance94b752022-11-14 18:55:06 +0900144 if (updatableViaApex.has_value()) return true; // break (found match)
Steven Morelandedd4e072021-04-21 00:27:29 +0000145 return false; // continue
146 });
147
148 return updatableViaApex;
149}
150
Jooyung Han76944fe2022-10-25 17:02:45 +0900151static std::vector<std::string> getVintfUpdatableInstances(const std::string& apexName) {
152 std::vector<std::string> instances;
153
154 forEachManifest([&](const ManifestWithDescription& mwd) {
155 mwd.manifest->forEachInstance([&](const auto& manifestInstance) {
156 if (manifestInstance.format() == vintf::HalFormat::AIDL &&
157 manifestInstance.updatableViaApex().has_value() &&
158 manifestInstance.updatableViaApex().value() == apexName) {
159 std::string aname = manifestInstance.package() + "." +
160 manifestInstance.interface() + "/" + manifestInstance.instance();
161 instances.push_back(aname);
162 }
Jooyung Hance94b752022-11-14 18:55:06 +0900163 return true; // continue (libvintf uses opposite convention)
Jooyung Han76944fe2022-10-25 17:02:45 +0900164 });
165 return false; // continue
166 });
167
168 return instances;
169}
170
Devin Moore5e4c2f12021-09-09 22:36:33 +0000171static std::optional<ConnectionInfo> getVintfConnectionInfo(const std::string& name) {
172 AidlName aname;
173 if (!AidlName::fill(name, &aname)) return std::nullopt;
174
175 std::optional<std::string> ip;
176 std::optional<uint64_t> port;
177 forEachManifest([&](const ManifestWithDescription& mwd) {
178 mwd.manifest->forEachInstance([&](const auto& manifestInstance) {
179 if (manifestInstance.format() != vintf::HalFormat::AIDL) return true;
180 if (manifestInstance.package() != aname.package) return true;
181 if (manifestInstance.interface() != aname.iface) return true;
182 if (manifestInstance.instance() != aname.instance) return true;
183 ip = manifestInstance.ip();
184 port = manifestInstance.port();
185 return false; // break (libvintf uses opposite convention)
186 });
187 return false; // continue
188 });
189
190 if (ip.has_value() && port.has_value()) {
191 ConnectionInfo info;
192 info.ipAddress = *ip;
193 info.port = *port;
194 return std::make_optional<ConnectionInfo>(info);
195 } else {
196 return std::nullopt;
197 }
198}
199
Steven Moreland2e293aa2020-09-23 00:25:16 +0000200static std::vector<std::string> getVintfInstances(const std::string& interface) {
201 size_t lastDot = interface.rfind('.');
202 if (lastDot == std::string::npos) {
Pawan Wagh37526162022-09-29 21:55:26 +0000203 ALOGE("VINTF interfaces require names in Java package format (e.g. some.package.foo.IFoo) "
204 "but got: %s",
205 interface.c_str());
Steven Moreland2e293aa2020-09-23 00:25:16 +0000206 return {};
207 }
208 const std::string package = interface.substr(0, lastDot);
209 const std::string iface = interface.substr(lastDot+1);
210
211 std::vector<std::string> ret;
212 (void)forEachManifest([&](const ManifestWithDescription& mwd) {
213 auto instances = mwd.manifest->getAidlInstances(package, iface);
214 ret.insert(ret.end(), instances.begin(), instances.end());
215 return false; // continue
216 });
217
218 return ret;
Steven Moreland86a17f82019-09-10 10:18:00 -0700219}
Steven Morelandb82b8f82019-10-28 10:52:34 -0700220
221static bool meetsDeclarationRequirements(const sp<IBinder>& binder, const std::string& name) {
222 if (!Stability::requiresVintfDeclaration(binder)) {
223 return true;
224 }
225
226 return isVintfDeclared(name);
227}
Steven Moreland86a17f82019-09-10 10:18:00 -0700228#endif // !VENDORSERVICEMANAGER
229
Steven Morelandb8361902023-02-01 23:18:04 +0000230ServiceManager::Service::~Service() {
Steven Morelandcb591562023-03-06 15:53:44 +0000231 if (hasClients) {
232 // only expected to happen on process death, we don't store the service
233 // name this late (it's in the map that holds this service), but if it
234 // is happening, we might want to change 'unlinkToDeath' to explicitly
235 // clear this bit so that we can abort in other cases, where it would
236 // mean inconsistent logic in servicemanager (unexpected and tested, but
237 // the original lazy service impl here had that bug).
Steven Morelandb8361902023-02-01 23:18:04 +0000238 LOG(WARNING) << "a service was removed when there are clients";
239 }
240}
241
Steven Morelandd13f08b2019-11-18 14:23:09 -0800242ServiceManager::ServiceManager(std::unique_ptr<Access>&& access) : mAccess(std::move(access)) {
Steven Moreland8d0c9a72020-04-30 16:51:56 -0700243// TODO(b/151696835): reenable performance hack when we solve bug, since with
244// this hack and other fixes, it is unlikely we will see even an ephemeral
245// failure when the manifest parse fails. The goal is that the manifest will
246// be read incorrectly and cause the process trying to register a HAL to
247// fail. If this is in fact an early boot kernel contention issue, then we
248// will get no failure, and by its absence, be signalled to invest more
249// effort in re-adding this performance hack.
250// #ifndef VENDORSERVICEMANAGER
251// // can process these at any times, don't want to delay first VINTF client
252// std::thread([] {
253// vintf::VintfObject::GetDeviceHalManifest();
254// vintf::VintfObject::GetFrameworkHalManifest();
255// }).detach();
256// #endif // !VENDORSERVICEMANAGER
Steven Morelandd13f08b2019-11-18 14:23:09 -0800257}
Steven Moreland130242d2019-08-26 17:41:32 -0700258ServiceManager::~ServiceManager() {
259 // this should only happen in tests
260
Jon Spivackf288b1d2019-12-19 17:15:51 -0800261 for (const auto& [name, callbacks] : mNameToRegistrationCallback) {
Steven Moreland27cfab02019-08-12 14:34:16 -0700262 CHECK(!callbacks.empty()) << name;
263 for (const auto& callback : callbacks) {
264 CHECK(callback != nullptr) << name;
265 }
266 }
267
Steven Moreland130242d2019-08-26 17:41:32 -0700268 for (const auto& [name, service] : mNameToService) {
269 CHECK(service.binder != nullptr) << name;
270 }
271}
Steven Moreland80e1e6d2019-06-21 12:35:59 -0700272
273Status ServiceManager::getService(const std::string& name, sp<IBinder>* outBinder) {
Jon Spivack0d844302019-07-22 18:40:34 -0700274 *outBinder = tryGetService(name, true);
275 // returns ok regardless of result for legacy reasons
276 return Status::ok();
Steven Moreland80e1e6d2019-06-21 12:35:59 -0700277}
278
279Status ServiceManager::checkService(const std::string& name, sp<IBinder>* outBinder) {
Jon Spivack0d844302019-07-22 18:40:34 -0700280 *outBinder = tryGetService(name, false);
281 // returns ok regardless of result for legacy reasons
282 return Status::ok();
283}
284
285sp<IBinder> ServiceManager::tryGetService(const std::string& name, bool startIfNotFound) {
Steven Morelanda9fe4742019-07-18 14:45:20 -0700286 auto ctx = mAccess->getCallingContext();
Steven Moreland80e1e6d2019-06-21 12:35:59 -0700287
Jon Spivack0d844302019-07-22 18:40:34 -0700288 sp<IBinder> out;
Jon Spivack9f503a42019-10-22 16:49:19 -0700289 Service* service = nullptr;
Jon Spivack0d844302019-07-22 18:40:34 -0700290 if (auto it = mNameToService.find(name); it != mNameToService.end()) {
Jon Spivack9f503a42019-10-22 16:49:19 -0700291 service = &(it->second);
Steven Moreland80e1e6d2019-06-21 12:35:59 -0700292
Steven Morelandb9e1cbe2023-02-01 22:44:45 +0000293 if (!service->allowIsolated && is_multiuser_uid_isolated(ctx.uid)) {
294 return nullptr;
Steven Moreland80e1e6d2019-06-21 12:35:59 -0700295 }
Jon Spivack9f503a42019-10-22 16:49:19 -0700296 out = service->binder;
Steven Moreland80e1e6d2019-06-21 12:35:59 -0700297 }
298
Steven Morelanda9fe4742019-07-18 14:45:20 -0700299 if (!mAccess->canFind(ctx, name)) {
Jon Spivack0d844302019-07-22 18:40:34 -0700300 return nullptr;
Steven Moreland80e1e6d2019-06-21 12:35:59 -0700301 }
302
Jon Spivack0d844302019-07-22 18:40:34 -0700303 if (!out && startIfNotFound) {
Steven Morelandaa33e852023-05-10 16:42:15 +0000304 tryStartService(ctx, name);
Jon Spivack0d844302019-07-22 18:40:34 -0700305 }
306
Jon Spivack9f503a42019-10-22 16:49:19 -0700307 if (out) {
Steven Morelandb8361902023-02-01 23:18:04 +0000308 // Force onClients to get sent, and then make sure the timerfd won't clear it
309 // by setting guaranteeClient again. This logic could be simplified by using
310 // a time-based guarantee. However, forcing onClients(true) to get sent
311 // right here is always going to be important for processes serving multiple
312 // lazy interfaces.
313 service->guaranteeClient = true;
314 CHECK(handleServiceClientCallback(2 /* sm + transaction */, name, false));
Jon Spivack9f503a42019-10-22 16:49:19 -0700315 service->guaranteeClient = true;
316 }
317
Jon Spivack0d844302019-07-22 18:40:34 -0700318 return out;
Steven Moreland80e1e6d2019-06-21 12:35:59 -0700319}
320
Steven Moreland905e2e82019-07-17 11:05:45 -0700321bool isValidServiceName(const std::string& name) {
322 if (name.size() == 0) return false;
323 if (name.size() > 127) return false;
324
325 for (char c : name) {
Steven Morelandbb7951d2019-08-20 16:58:25 -0700326 if (c == '_' || c == '-' || c == '.' || c == '/') continue;
Steven Moreland905e2e82019-07-17 11:05:45 -0700327 if (c >= 'a' && c <= 'z') continue;
328 if (c >= 'A' && c <= 'Z') continue;
329 if (c >= '0' && c <= '9') continue;
330 return false;
331 }
332
333 return true;
334}
335
Steven Moreland80e1e6d2019-06-21 12:35:59 -0700336Status ServiceManager::addService(const std::string& name, const sp<IBinder>& binder, bool allowIsolated, int32_t dumpPriority) {
Steven Morelanda9fe4742019-07-18 14:45:20 -0700337 auto ctx = mAccess->getCallingContext();
Steven Moreland80e1e6d2019-06-21 12:35:59 -0700338
Steven Moreland80e1e6d2019-06-21 12:35:59 -0700339 if (multiuser_get_app_id(ctx.uid) >= AID_APP) {
Steven Morelandffb905b2023-03-28 18:24:37 +0000340 return Status::fromExceptionCode(Status::EX_SECURITY, "App UIDs cannot add services.");
Steven Moreland80e1e6d2019-06-21 12:35:59 -0700341 }
342
Steven Morelanda9fe4742019-07-18 14:45:20 -0700343 if (!mAccess->canAdd(ctx, name)) {
Steven Morelandffb905b2023-03-28 18:24:37 +0000344 return Status::fromExceptionCode(Status::EX_SECURITY, "SELinux denied.");
Steven Moreland80e1e6d2019-06-21 12:35:59 -0700345 }
346
347 if (binder == nullptr) {
Steven Morelandffb905b2023-03-28 18:24:37 +0000348 return Status::fromExceptionCode(Status::EX_ILLEGAL_ARGUMENT, "Null binder.");
Steven Moreland80e1e6d2019-06-21 12:35:59 -0700349 }
350
Steven Moreland905e2e82019-07-17 11:05:45 -0700351 if (!isValidServiceName(name)) {
Pawan Wagh37526162022-09-29 21:55:26 +0000352 ALOGE("Invalid service name: %s", name.c_str());
Steven Morelandffb905b2023-03-28 18:24:37 +0000353 return Status::fromExceptionCode(Status::EX_ILLEGAL_ARGUMENT, "Invalid service name.");
Steven Moreland80e1e6d2019-06-21 12:35:59 -0700354 }
355
Steven Moreland86a17f82019-09-10 10:18:00 -0700356#ifndef VENDORSERVICEMANAGER
357 if (!meetsDeclarationRequirements(binder, name)) {
358 // already logged
Steven Morelandffb905b2023-03-28 18:24:37 +0000359 return Status::fromExceptionCode(Status::EX_ILLEGAL_ARGUMENT, "VINTF declaration error.");
Steven Moreland86a17f82019-09-10 10:18:00 -0700360 }
361#endif // !VENDORSERVICEMANAGER
362
Devin Moore4e21def2023-02-24 21:54:14 +0000363 if ((dumpPriority & DUMP_FLAG_PRIORITY_ALL) == 0) {
364 ALOGW("Dump flag priority is not set when adding %s", name.c_str());
365 }
366
Steven Moreland88860b02019-08-12 14:24:14 -0700367 // implicitly unlinked when the binder is removed
Steven Morelandb0983182021-04-02 03:14:04 +0000368 if (binder->remoteBinder() != nullptr &&
369 binder->linkToDeath(sp<ServiceManager>::fromExisting(this)) != OK) {
Pawan Wagh37526162022-09-29 21:55:26 +0000370 ALOGE("Could not linkToDeath when adding %s", name.c_str());
Steven Morelandffb905b2023-03-28 18:24:37 +0000371 return Status::fromExceptionCode(Status::EX_ILLEGAL_STATE, "Couldn't linkToDeath.");
Steven Moreland80e1e6d2019-06-21 12:35:59 -0700372 }
373
Steven Moreland7ee423b2022-09-24 03:52:08 +0000374 auto it = mNameToService.find(name);
Steven Moreland79578672023-04-27 19:38:00 +0000375 bool prevClients = false;
Steven Moreland7ee423b2022-09-24 03:52:08 +0000376 if (it != mNameToService.end()) {
377 const Service& existing = it->second;
Steven Moreland79578672023-04-27 19:38:00 +0000378 prevClients = existing.hasClients;
Steven Moreland7ee423b2022-09-24 03:52:08 +0000379
380 // We could do better than this because if the other service dies, it
381 // may not have an entry here. However, this case is unlikely. We are
382 // only trying to detect when two different services are accidentally installed.
383
384 if (existing.ctx.uid != ctx.uid) {
Pawan Wagh37526162022-09-29 21:55:26 +0000385 ALOGW("Service '%s' originally registered from UID %u but it is now being registered "
386 "from UID %u. Multiple instances installed?",
387 name.c_str(), existing.ctx.uid, ctx.uid);
Steven Moreland7ee423b2022-09-24 03:52:08 +0000388 }
389
390 if (existing.ctx.sid != ctx.sid) {
Pawan Wagh37526162022-09-29 21:55:26 +0000391 ALOGW("Service '%s' originally registered from SID %s but it is now being registered "
392 "from SID %s. Multiple instances installed?",
393 name.c_str(), existing.ctx.sid.c_str(), ctx.sid.c_str());
Steven Moreland7ee423b2022-09-24 03:52:08 +0000394 }
395
Pawan Wagh37526162022-09-29 21:55:26 +0000396 ALOGI("Service '%s' originally registered from PID %d but it is being registered again "
397 "from PID %d. Bad state? Late death notification? Multiple instances installed?",
398 name.c_str(), existing.ctx.debugPid, ctx.debugPid);
Steven Moreland7ee423b2022-09-24 03:52:08 +0000399 }
400
Devin Moore05ffe522020-08-06 13:58:29 -0700401 // Overwrite the old service if it exists
Steven Moreland7ee423b2022-09-24 03:52:08 +0000402 mNameToService[name] = Service{
403 .binder = binder,
404 .allowIsolated = allowIsolated,
405 .dumpPriority = dumpPriority,
Steven Moreland79578672023-04-27 19:38:00 +0000406 .hasClients = prevClients, // see b/279898063, matters if existing callbacks
Steven Morelandefea66b2023-06-17 01:59:34 +0000407 .guaranteeClient = false,
Steven Moreland7ee423b2022-09-24 03:52:08 +0000408 .ctx = ctx,
Devin Moore05ffe522020-08-06 13:58:29 -0700409 };
Steven Moreland80e1e6d2019-06-21 12:35:59 -0700410
Steven Moreland7ee423b2022-09-24 03:52:08 +0000411 if (auto it = mNameToRegistrationCallback.find(name); it != mNameToRegistrationCallback.end()) {
Steven Morelandefea66b2023-06-17 01:59:34 +0000412 // If someone is currently waiting on the service, notify the service that
413 // we're waiting and flush it to the service.
Steven Morelandb8361902023-02-01 23:18:04 +0000414 mNameToService[name].guaranteeClient = true;
415 CHECK(handleServiceClientCallback(2 /* sm + transaction */, name, false));
416 mNameToService[name].guaranteeClient = true;
417
Steven Moreland27cfab02019-08-12 14:34:16 -0700418 for (const sp<IServiceCallback>& cb : it->second) {
419 // permission checked in registerForNotifications
420 cb->onRegistration(name, binder);
421 }
422 }
423
Steven Moreland80e1e6d2019-06-21 12:35:59 -0700424 return Status::ok();
425}
426
427Status ServiceManager::listServices(int32_t dumpPriority, std::vector<std::string>* outList) {
Steven Morelanda9fe4742019-07-18 14:45:20 -0700428 if (!mAccess->canList(mAccess->getCallingContext())) {
Steven Morelandffb905b2023-03-28 18:24:37 +0000429 return Status::fromExceptionCode(Status::EX_SECURITY, "SELinux denied.");
Steven Moreland80e1e6d2019-06-21 12:35:59 -0700430 }
431
432 size_t toReserve = 0;
433 for (auto const& [name, service] : mNameToService) {
434 (void) name;
435
436 if (service.dumpPriority & dumpPriority) ++toReserve;
437 }
438
439 CHECK(outList->empty());
440
441 outList->reserve(toReserve);
442 for (auto const& [name, service] : mNameToService) {
443 (void) service;
444
445 if (service.dumpPriority & dumpPriority) {
446 outList->push_back(name);
447 }
448 }
449
450 return Status::ok();
451}
452
Steven Moreland27cfab02019-08-12 14:34:16 -0700453Status ServiceManager::registerForNotifications(
454 const std::string& name, const sp<IServiceCallback>& callback) {
455 auto ctx = mAccess->getCallingContext();
456
457 if (!mAccess->canFind(ctx, name)) {
Steven Morelandb9e1cbe2023-02-01 22:44:45 +0000458 return Status::fromExceptionCode(Status::EX_SECURITY, "SELinux");
459 }
460
461 // note - we could allow isolated apps to get notifications if we
462 // keep track of isolated callbacks and non-isolated callbacks, but
463 // this is done since isolated apps shouldn't access lazy services
464 // so we should be able to use different APIs to keep things simple.
465 // Here, we disallow everything, because the service might not be
466 // registered yet.
467 if (is_multiuser_uid_isolated(ctx.uid)) {
468 return Status::fromExceptionCode(Status::EX_SECURITY, "isolated app");
Steven Moreland27cfab02019-08-12 14:34:16 -0700469 }
470
471 if (!isValidServiceName(name)) {
Pawan Wagh37526162022-09-29 21:55:26 +0000472 ALOGE("Invalid service name: %s", name.c_str());
Steven Morelandffb905b2023-03-28 18:24:37 +0000473 return Status::fromExceptionCode(Status::EX_ILLEGAL_ARGUMENT, "Invalid service name.");
Steven Moreland27cfab02019-08-12 14:34:16 -0700474 }
475
476 if (callback == nullptr) {
Steven Morelandffb905b2023-03-28 18:24:37 +0000477 return Status::fromExceptionCode(Status::EX_NULL_POINTER, "Null callback.");
Steven Moreland27cfab02019-08-12 14:34:16 -0700478 }
479
Steven Morelandb0983182021-04-02 03:14:04 +0000480 if (OK !=
481 IInterface::asBinder(callback)->linkToDeath(
482 sp<ServiceManager>::fromExisting(this))) {
Pawan Wagh37526162022-09-29 21:55:26 +0000483 ALOGE("Could not linkToDeath when adding %s", name.c_str());
Steven Morelandffb905b2023-03-28 18:24:37 +0000484 return Status::fromExceptionCode(Status::EX_ILLEGAL_STATE, "Couldn't link to death.");
Steven Moreland27cfab02019-08-12 14:34:16 -0700485 }
486
Jon Spivackf288b1d2019-12-19 17:15:51 -0800487 mNameToRegistrationCallback[name].push_back(callback);
Steven Moreland27cfab02019-08-12 14:34:16 -0700488
489 if (auto it = mNameToService.find(name); it != mNameToService.end()) {
490 const sp<IBinder>& binder = it->second.binder;
491
492 // never null if an entry exists
493 CHECK(binder != nullptr) << name;
494 callback->onRegistration(name, binder);
495 }
496
497 return Status::ok();
498}
499Status ServiceManager::unregisterForNotifications(
500 const std::string& name, const sp<IServiceCallback>& callback) {
501 auto ctx = mAccess->getCallingContext();
502
503 if (!mAccess->canFind(ctx, name)) {
Steven Morelandffb905b2023-03-28 18:24:37 +0000504 return Status::fromExceptionCode(Status::EX_SECURITY, "SELinux denied.");
Steven Moreland27cfab02019-08-12 14:34:16 -0700505 }
506
507 bool found = false;
508
Jon Spivackf288b1d2019-12-19 17:15:51 -0800509 auto it = mNameToRegistrationCallback.find(name);
510 if (it != mNameToRegistrationCallback.end()) {
511 removeRegistrationCallback(IInterface::asBinder(callback), &it, &found);
Steven Moreland27cfab02019-08-12 14:34:16 -0700512 }
513
514 if (!found) {
Pawan Wagh37526162022-09-29 21:55:26 +0000515 ALOGE("Trying to unregister callback, but none exists %s", name.c_str());
Steven Morelandffb905b2023-03-28 18:24:37 +0000516 return Status::fromExceptionCode(Status::EX_ILLEGAL_STATE, "Nothing to unregister.");
Steven Moreland27cfab02019-08-12 14:34:16 -0700517 }
518
519 return Status::ok();
520}
521
Steven Morelandb82b8f82019-10-28 10:52:34 -0700522Status ServiceManager::isDeclared(const std::string& name, bool* outReturn) {
523 auto ctx = mAccess->getCallingContext();
524
525 if (!mAccess->canFind(ctx, name)) {
Steven Morelandffb905b2023-03-28 18:24:37 +0000526 return Status::fromExceptionCode(Status::EX_SECURITY, "SELinux denied.");
Steven Morelandb82b8f82019-10-28 10:52:34 -0700527 }
528
529 *outReturn = false;
530
531#ifndef VENDORSERVICEMANAGER
532 *outReturn = isVintfDeclared(name);
533#endif
534 return Status::ok();
535}
536
Steven Moreland2e293aa2020-09-23 00:25:16 +0000537binder::Status ServiceManager::getDeclaredInstances(const std::string& interface, std::vector<std::string>* outReturn) {
538 auto ctx = mAccess->getCallingContext();
539
540 std::vector<std::string> allInstances;
541#ifndef VENDORSERVICEMANAGER
542 allInstances = getVintfInstances(interface);
543#endif
544
545 outReturn->clear();
546
547 for (const std::string& instance : allInstances) {
Steven Moreland2e293aa2020-09-23 00:25:16 +0000548 if (mAccess->canFind(ctx, interface + "/" + instance)) {
549 outReturn->push_back(instance);
550 }
551 }
552
553 if (outReturn->size() == 0 && allInstances.size() != 0) {
Steven Morelandffb905b2023-03-28 18:24:37 +0000554 return Status::fromExceptionCode(Status::EX_SECURITY, "SELinux denied.");
Steven Moreland2e293aa2020-09-23 00:25:16 +0000555 }
556
557 return Status::ok();
558}
559
Steven Morelandedd4e072021-04-21 00:27:29 +0000560Status ServiceManager::updatableViaApex(const std::string& name,
561 std::optional<std::string>* outReturn) {
562 auto ctx = mAccess->getCallingContext();
563
564 if (!mAccess->canFind(ctx, name)) {
Steven Morelandffb905b2023-03-28 18:24:37 +0000565 return Status::fromExceptionCode(Status::EX_SECURITY, "SELinux denied.");
Steven Morelandedd4e072021-04-21 00:27:29 +0000566 }
567
568 *outReturn = std::nullopt;
569
570#ifndef VENDORSERVICEMANAGER
571 *outReturn = getVintfUpdatableApex(name);
572#endif
573 return Status::ok();
574}
575
Jooyung Han76944fe2022-10-25 17:02:45 +0900576Status ServiceManager::getUpdatableNames([[maybe_unused]] const std::string& apexName,
577 std::vector<std::string>* outReturn) {
578 auto ctx = mAccess->getCallingContext();
579
580 std::vector<std::string> apexUpdatableInstances;
581#ifndef VENDORSERVICEMANAGER
582 apexUpdatableInstances = getVintfUpdatableInstances(apexName);
583#endif
584
585 outReturn->clear();
586
587 for (const std::string& instance : apexUpdatableInstances) {
588 if (mAccess->canFind(ctx, instance)) {
589 outReturn->push_back(instance);
590 }
591 }
592
593 if (outReturn->size() == 0 && apexUpdatableInstances.size() != 0) {
Steven Morelandffb905b2023-03-28 18:24:37 +0000594 return Status::fromExceptionCode(Status::EX_SECURITY, "SELinux denied.");
Jooyung Han76944fe2022-10-25 17:02:45 +0900595 }
596
597 return Status::ok();
598}
599
Devin Moore5e4c2f12021-09-09 22:36:33 +0000600Status ServiceManager::getConnectionInfo(const std::string& name,
601 std::optional<ConnectionInfo>* outReturn) {
602 auto ctx = mAccess->getCallingContext();
603
604 if (!mAccess->canFind(ctx, name)) {
Steven Morelandffb905b2023-03-28 18:24:37 +0000605 return Status::fromExceptionCode(Status::EX_SECURITY, "SELinux denied.");
Devin Moore5e4c2f12021-09-09 22:36:33 +0000606 }
607
608 *outReturn = std::nullopt;
609
610#ifndef VENDORSERVICEMANAGER
611 *outReturn = getVintfConnectionInfo(name);
612#endif
613 return Status::ok();
614}
615
Jon Spivackf288b1d2019-12-19 17:15:51 -0800616void ServiceManager::removeRegistrationCallback(const wp<IBinder>& who,
617 ServiceCallbackMap::iterator* it,
Steven Moreland27cfab02019-08-12 14:34:16 -0700618 bool* found) {
619 std::vector<sp<IServiceCallback>>& listeners = (*it)->second;
620
621 for (auto lit = listeners.begin(); lit != listeners.end();) {
622 if (IInterface::asBinder(*lit) == who) {
623 if(found) *found = true;
624 lit = listeners.erase(lit);
625 } else {
626 ++lit;
627 }
628 }
629
630 if (listeners.empty()) {
Jon Spivackf288b1d2019-12-19 17:15:51 -0800631 *it = mNameToRegistrationCallback.erase(*it);
Steven Moreland27cfab02019-08-12 14:34:16 -0700632 } else {
Jon Spivacke223f082019-11-19 16:21:20 -0800633 (*it)++;
Steven Moreland27cfab02019-08-12 14:34:16 -0700634 }
635}
636
Steven Moreland80e1e6d2019-06-21 12:35:59 -0700637void ServiceManager::binderDied(const wp<IBinder>& who) {
638 for (auto it = mNameToService.begin(); it != mNameToService.end();) {
639 if (who == it->second.binder) {
Steven Moreland79578672023-04-27 19:38:00 +0000640 // TODO: currently, this entry contains the state also
641 // associated with mNameToClientCallback. If we allowed
642 // other processes to register client callbacks, we
643 // would have to preserve hasClients (perhaps moving
644 // that state into mNameToClientCallback, which is complicated
645 // because those callbacks are associated w/ particular binder
646 // objects, though they are indexed by name now, they may
647 // need to be indexed by binder at that point).
Steven Moreland80e1e6d2019-06-21 12:35:59 -0700648 it = mNameToService.erase(it);
649 } else {
650 ++it;
651 }
652 }
Steven Moreland27cfab02019-08-12 14:34:16 -0700653
Jon Spivackf288b1d2019-12-19 17:15:51 -0800654 for (auto it = mNameToRegistrationCallback.begin(); it != mNameToRegistrationCallback.end();) {
655 removeRegistrationCallback(who, &it, nullptr /*found*/);
Steven Moreland27cfab02019-08-12 14:34:16 -0700656 }
Jon Spivack9f503a42019-10-22 16:49:19 -0700657
658 for (auto it = mNameToClientCallback.begin(); it != mNameToClientCallback.end();) {
659 removeClientCallback(who, &it);
660 }
Steven Moreland80e1e6d2019-06-21 12:35:59 -0700661}
662
Steven Morelandaa33e852023-05-10 16:42:15 +0000663void ServiceManager::tryStartService(const Access::CallingContext& ctx, const std::string& name) {
664 ALOGI("Since '%s' could not be found (requested by debug pid %d), trying to start it as a lazy "
665 "AIDL service. (if it's not configured to be a lazy service, it may be stuck starting or "
666 "still starting).",
667 name.c_str(), ctx.debugPid);
Jon Spivack0d844302019-07-22 18:40:34 -0700668
669 std::thread([=] {
Steven Morelandbfe9fba2021-04-27 18:39:57 +0000670 if (!base::SetProperty("ctl.interface_start", "aidl/" + name)) {
Pawan Wagh37526162022-09-29 21:55:26 +0000671 ALOGI("Tried to start aidl service %s as a lazy service, but was unable to. Usually "
672 "this happens when a "
673 "service is not installed, but if the service is intended to be used as a "
674 "lazy service, then it may be configured incorrectly.",
675 name.c_str());
Steven Morelandbfe9fba2021-04-27 18:39:57 +0000676 }
Jon Spivack0d844302019-07-22 18:40:34 -0700677 }).detach();
678}
679
Jon Spivack9f503a42019-10-22 16:49:19 -0700680Status ServiceManager::registerClientCallback(const std::string& name, const sp<IBinder>& service,
681 const sp<IClientCallback>& cb) {
682 if (cb == nullptr) {
Steven Morelandffb905b2023-03-28 18:24:37 +0000683 return Status::fromExceptionCode(Status::EX_NULL_POINTER, "Callback null.");
Jon Spivack9f503a42019-10-22 16:49:19 -0700684 }
685
686 auto ctx = mAccess->getCallingContext();
687 if (!mAccess->canAdd(ctx, name)) {
Steven Morelandffb905b2023-03-28 18:24:37 +0000688 return Status::fromExceptionCode(Status::EX_SECURITY, "SELinux denied.");
Jon Spivack9f503a42019-10-22 16:49:19 -0700689 }
690
691 auto serviceIt = mNameToService.find(name);
692 if (serviceIt == mNameToService.end()) {
Pawan Wagh37526162022-09-29 21:55:26 +0000693 ALOGE("Could not add callback for nonexistent service: %s", name.c_str());
Steven Morelandffb905b2023-03-28 18:24:37 +0000694 return Status::fromExceptionCode(Status::EX_ILLEGAL_ARGUMENT, "Service doesn't exist.");
Jon Spivack9f503a42019-10-22 16:49:19 -0700695 }
696
Steven Moreland7ee423b2022-09-24 03:52:08 +0000697 if (serviceIt->second.ctx.debugPid != IPCThreadState::self()->getCallingPid()) {
Pawan Wagh37526162022-09-29 21:55:26 +0000698 ALOGW("Only a server can register for client callbacks (for %s)", name.c_str());
Steven Morelandffb905b2023-03-28 18:24:37 +0000699 return Status::fromExceptionCode(Status::EX_UNSUPPORTED_OPERATION,
700 "Only service can register client callback for itself.");
Jon Spivack9f503a42019-10-22 16:49:19 -0700701 }
702
703 if (serviceIt->second.binder != service) {
Pawan Wagh37526162022-09-29 21:55:26 +0000704 ALOGW("Tried to register client callback for %s but a different service is registered "
705 "under this name.",
706 name.c_str());
Steven Morelandffb905b2023-03-28 18:24:37 +0000707 return Status::fromExceptionCode(Status::EX_ILLEGAL_ARGUMENT, "Service mismatch.");
Jon Spivack9f503a42019-10-22 16:49:19 -0700708 }
709
Steven Morelandb0983182021-04-02 03:14:04 +0000710 if (OK !=
711 IInterface::asBinder(cb)->linkToDeath(sp<ServiceManager>::fromExisting(this))) {
Pawan Wagh37526162022-09-29 21:55:26 +0000712 ALOGE("Could not linkToDeath when adding client callback for %s", name.c_str());
Steven Morelandffb905b2023-03-28 18:24:37 +0000713 return Status::fromExceptionCode(Status::EX_ILLEGAL_STATE, "Couldn't linkToDeath.");
Jon Spivack9f503a42019-10-22 16:49:19 -0700714 }
715
Steven Moreland79578672023-04-27 19:38:00 +0000716 // WARNING: binderDied makes an assumption about this. If we open up client
717 // callbacks to other services, certain race conditions may lead to services
718 // getting extra client callback notifications.
719 // Make sure all callbacks have been told about a consistent state - b/278038751
Steven Moreland7bb4ab82023-04-13 20:29:33 +0000720 if (serviceIt->second.hasClients) {
721 cb->onClients(service, true);
722 }
723
Jon Spivack9f503a42019-10-22 16:49:19 -0700724 mNameToClientCallback[name].push_back(cb);
725
Steven Morelandefea66b2023-06-17 01:59:34 +0000726 // Flush updated info to client callbacks (especially if guaranteeClient
727 // and !hasClient, see b/285202885). We may or may not have clients at
728 // this point, so ignore the return value.
729 (void)handleServiceClientCallback(2 /* sm + transaction */, name, false);
730
Jon Spivack9f503a42019-10-22 16:49:19 -0700731 return Status::ok();
732}
733
734void ServiceManager::removeClientCallback(const wp<IBinder>& who,
735 ClientCallbackMap::iterator* it) {
736 std::vector<sp<IClientCallback>>& listeners = (*it)->second;
737
738 for (auto lit = listeners.begin(); lit != listeners.end();) {
739 if (IInterface::asBinder(*lit) == who) {
740 lit = listeners.erase(lit);
741 } else {
742 ++lit;
743 }
744 }
745
746 if (listeners.empty()) {
747 *it = mNameToClientCallback.erase(*it);
748 } else {
749 (*it)++;
750 }
751}
752
753ssize_t ServiceManager::Service::getNodeStrongRefCount() {
Steven Morelandb0983182021-04-02 03:14:04 +0000754 sp<BpBinder> bpBinder = sp<BpBinder>::fromExisting(binder->remoteBinder());
Jon Spivack9f503a42019-10-22 16:49:19 -0700755 if (bpBinder == nullptr) return -1;
756
Steven Morelande8393882020-12-18 02:27:20 +0000757 return ProcessState::self()->getStrongRefCountForNode(bpBinder);
Jon Spivack9f503a42019-10-22 16:49:19 -0700758}
759
760void ServiceManager::handleClientCallbacks() {
761 for (const auto& [name, service] : mNameToService) {
Steven Morelandb8361902023-02-01 23:18:04 +0000762 handleServiceClientCallback(1 /* sm has one refcount */, name, true);
Jon Spivack9f503a42019-10-22 16:49:19 -0700763 }
764}
765
Steven Morelandb8361902023-02-01 23:18:04 +0000766bool ServiceManager::handleServiceClientCallback(size_t knownClients,
767 const std::string& serviceName,
768 bool isCalledOnInterval) {
Jon Spivack9f503a42019-10-22 16:49:19 -0700769 auto serviceIt = mNameToService.find(serviceName);
770 if (serviceIt == mNameToService.end() || mNameToClientCallback.count(serviceName) < 1) {
Steven Morelandb8361902023-02-01 23:18:04 +0000771 return true; // return we do have clients a.k.a. DON'T DO ANYTHING
Jon Spivack9f503a42019-10-22 16:49:19 -0700772 }
773
774 Service& service = serviceIt->second;
775 ssize_t count = service.getNodeStrongRefCount();
776
Steven Morelandb8361902023-02-01 23:18:04 +0000777 // binder driver doesn't support this feature, consider we have clients
778 if (count == -1) return true;
Jon Spivack9f503a42019-10-22 16:49:19 -0700779
Steven Morelandb8361902023-02-01 23:18:04 +0000780 bool hasKernelReportedClients = static_cast<size_t>(count) > knownClients;
Jon Spivack9f503a42019-10-22 16:49:19 -0700781
782 if (service.guaranteeClient) {
Steven Morelandb8361902023-02-01 23:18:04 +0000783 if (!service.hasClients && !hasKernelReportedClients) {
Steven Moreland3e083b22023-01-26 00:46:30 +0000784 sendClientCallbackNotifications(serviceName, true,
785 "service is guaranteed to be in use");
Jon Spivack9f503a42019-10-22 16:49:19 -0700786 }
787
788 // guarantee is temporary
789 service.guaranteeClient = false;
790 }
791
Steven Morelandb8361902023-02-01 23:18:04 +0000792 // Regardless of this situation, we want to give this notification as soon as possible.
793 // This way, we have a chance of preventing further thrashing.
794 if (hasKernelReportedClients && !service.hasClients) {
795 sendClientCallbackNotifications(serviceName, true, "we now have a record of a client");
796 }
Steven Moreland66417652023-02-01 22:19:41 +0000797
Steven Morelandb8361902023-02-01 23:18:04 +0000798 // But limit rate of shutting down service.
799 if (isCalledOnInterval) {
800 if (!hasKernelReportedClients && service.hasClients) {
Steven Moreland3e083b22023-01-26 00:46:30 +0000801 sendClientCallbackNotifications(serviceName, false,
802 "we now have no record of a client");
Jon Spivackd9533c22020-01-27 22:19:22 +0000803 }
Jon Spivack9f503a42019-10-22 16:49:19 -0700804 }
805
Steven Morelandb8361902023-02-01 23:18:04 +0000806 // May be different than 'hasKernelReportedClients'. We intentionally delay
807 // information about clients going away to reduce thrashing.
808 return service.hasClients;
Jon Spivack9f503a42019-10-22 16:49:19 -0700809}
810
Steven Moreland3e083b22023-01-26 00:46:30 +0000811void ServiceManager::sendClientCallbackNotifications(const std::string& serviceName,
812 bool hasClients, const char* context) {
Jon Spivack9f503a42019-10-22 16:49:19 -0700813 auto serviceIt = mNameToService.find(serviceName);
814 if (serviceIt == mNameToService.end()) {
Steven Moreland3e083b22023-01-26 00:46:30 +0000815 ALOGW("sendClientCallbackNotifications could not find service %s when %s",
816 serviceName.c_str(), context);
Jon Spivack9f503a42019-10-22 16:49:19 -0700817 return;
818 }
819 Service& service = serviceIt->second;
820
Steven Morelandb8361902023-02-01 23:18:04 +0000821 CHECK_NE(hasClients, service.hasClients) << context;
Jon Spivack9f503a42019-10-22 16:49:19 -0700822
Steven Morelandb8361902023-02-01 23:18:04 +0000823 ALOGI("Notifying %s they %s (previously: %s) have clients when %s", serviceName.c_str(),
824 hasClients ? "do" : "don't", service.hasClients ? "do" : "don't", context);
Jon Spivack9f503a42019-10-22 16:49:19 -0700825
826 auto ccIt = mNameToClientCallback.find(serviceName);
827 CHECK(ccIt != mNameToClientCallback.end())
Steven Moreland3e083b22023-01-26 00:46:30 +0000828 << "sendClientCallbackNotifications could not find callbacks for service when "
829 << context;
Jon Spivack9f503a42019-10-22 16:49:19 -0700830
831 for (const auto& callback : ccIt->second) {
832 callback->onClients(service.binder, hasClients);
833 }
834
835 service.hasClients = hasClients;
836}
837
838Status ServiceManager::tryUnregisterService(const std::string& name, const sp<IBinder>& binder) {
839 if (binder == nullptr) {
Steven Morelandffb905b2023-03-28 18:24:37 +0000840 return Status::fromExceptionCode(Status::EX_NULL_POINTER, "Null service.");
Jon Spivack9f503a42019-10-22 16:49:19 -0700841 }
842
843 auto ctx = mAccess->getCallingContext();
844 if (!mAccess->canAdd(ctx, name)) {
Steven Morelandffb905b2023-03-28 18:24:37 +0000845 return Status::fromExceptionCode(Status::EX_SECURITY, "SELinux denied.");
Jon Spivack9f503a42019-10-22 16:49:19 -0700846 }
847
848 auto serviceIt = mNameToService.find(name);
849 if (serviceIt == mNameToService.end()) {
Pawan Wagh37526162022-09-29 21:55:26 +0000850 ALOGW("Tried to unregister %s, but that service wasn't registered to begin with.",
851 name.c_str());
Steven Morelandffb905b2023-03-28 18:24:37 +0000852 return Status::fromExceptionCode(Status::EX_ILLEGAL_STATE, "Service not registered.");
Jon Spivack9f503a42019-10-22 16:49:19 -0700853 }
854
Steven Moreland7ee423b2022-09-24 03:52:08 +0000855 if (serviceIt->second.ctx.debugPid != IPCThreadState::self()->getCallingPid()) {
Pawan Wagh37526162022-09-29 21:55:26 +0000856 ALOGW("Only a server can unregister itself (for %s)", name.c_str());
Steven Morelandffb905b2023-03-28 18:24:37 +0000857 return Status::fromExceptionCode(Status::EX_UNSUPPORTED_OPERATION,
858 "Service can only unregister itself.");
Jon Spivack9f503a42019-10-22 16:49:19 -0700859 }
860
861 sp<IBinder> storedBinder = serviceIt->second.binder;
862
863 if (binder != storedBinder) {
Pawan Wagh37526162022-09-29 21:55:26 +0000864 ALOGW("Tried to unregister %s, but a different service is registered under this name.",
865 name.c_str());
Steven Morelandffb905b2023-03-28 18:24:37 +0000866 return Status::fromExceptionCode(Status::EX_ILLEGAL_STATE,
867 "Different service registered under this name.");
Jon Spivack9f503a42019-10-22 16:49:19 -0700868 }
869
Steven Morelandb8361902023-02-01 23:18:04 +0000870 // important because we don't have timer-based guarantees, we don't want to clear
871 // this
Jon Spivack0f18f2c2020-03-13 20:45:18 -0700872 if (serviceIt->second.guaranteeClient) {
Pawan Wagh37526162022-09-29 21:55:26 +0000873 ALOGI("Tried to unregister %s, but there is about to be a client.", name.c_str());
Steven Morelandffb905b2023-03-28 18:24:37 +0000874 return Status::fromExceptionCode(Status::EX_ILLEGAL_STATE,
875 "Can't unregister, pending client.");
Jon Spivack0f18f2c2020-03-13 20:45:18 -0700876 }
877
Jon Spivack9f503a42019-10-22 16:49:19 -0700878 // - kernel driver will hold onto one refcount (during this transaction)
879 // - servicemanager has a refcount (guaranteed by this transaction)
Steven Morelandb8361902023-02-01 23:18:04 +0000880 constexpr size_t kKnownClients = 2;
881
882 if (handleServiceClientCallback(kKnownClients, name, false)) {
883 ALOGI("Tried to unregister %s, but there are clients.", name.c_str());
884
885 // Since we had a failed registration attempt, and the HIDL implementation of
886 // delaying service shutdown for multiple periods wasn't ported here... this may
887 // help reduce thrashing, but we should be able to remove it.
Jon Spivack620d2dc2020-03-06 13:58:01 -0800888 serviceIt->second.guaranteeClient = true;
Steven Morelandb8361902023-02-01 23:18:04 +0000889
Steven Morelandffb905b2023-03-28 18:24:37 +0000890 return Status::fromExceptionCode(Status::EX_ILLEGAL_STATE,
891 "Can't unregister, known client.");
Jon Spivack9f503a42019-10-22 16:49:19 -0700892 }
893
Steven Morelandb8361902023-02-01 23:18:04 +0000894 ALOGI("Unregistering %s", name.c_str());
Jon Spivack9f503a42019-10-22 16:49:19 -0700895 mNameToService.erase(name);
896
897 return Status::ok();
898}
899
Steven Moreland3ea43272021-01-28 22:49:28 +0000900Status ServiceManager::getServiceDebugInfo(std::vector<ServiceDebugInfo>* outReturn) {
901 if (!mAccess->canList(mAccess->getCallingContext())) {
Steven Morelandffb905b2023-03-28 18:24:37 +0000902 return Status::fromExceptionCode(Status::EX_SECURITY, "SELinux denied.");
Steven Moreland3ea43272021-01-28 22:49:28 +0000903 }
904
905 outReturn->reserve(mNameToService.size());
906 for (auto const& [name, service] : mNameToService) {
907 ServiceDebugInfo info;
908 info.name = name;
Steven Moreland7ee423b2022-09-24 03:52:08 +0000909 info.debugPid = service.ctx.debugPid;
Steven Moreland3ea43272021-01-28 22:49:28 +0000910
911 outReturn->push_back(std::move(info));
912 }
913
914 return Status::ok();
915}
916
Pawan Wagh243888e2022-09-20 19:37:35 +0000917void ServiceManager::clear() {
918 mNameToService.clear();
919 mNameToRegistrationCallback.clear();
920 mNameToClientCallback.clear();
921}
922
Steven Moreland8d0c9a72020-04-30 16:51:56 -0700923} // namespace android