blob: dab7ad5e0299ee18637dd5fcaf319679f4fd4260 [file] [log] [blame]
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2005 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#define LOG_TAG "ServiceManager"
18
Mathias Agopianc5b2c0b2009-05-19 19:08:10 -070019#include <binder/IServiceManager.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080020
Steven Moreland1c47b582019-08-27 18:05:27 -070021#include <android/os/BnServiceCallback.h>
Steven Moreland80e1e6d2019-06-21 12:35:59 -070022#include <android/os/IServiceManager.h>
Mathias Agopian375f5632009-06-15 18:24:59 -070023#include <binder/IPCThreadState.h>
Steven Moreland28723ae2019-04-01 18:52:30 -070024#include <binder/Parcel.h>
25#include <utils/Log.h>
26#include <utils/String8.h>
27#include <utils/SystemClock.h>
28
Jiyong Park47f876b2018-04-17 13:56:46 +090029#ifndef __ANDROID_VNDK__
30#include <binder/IPermissionController.h>
31#endif
Steven Moreland28723ae2019-04-01 18:52:30 -070032
Steven Morelanded3b5632019-09-20 11:24:28 -070033#ifdef __ANDROID__
Yunfan Chen788e1c42018-03-29 16:52:09 +090034#include <cutils/properties.h>
Steven Moreland28723ae2019-04-01 18:52:30 -070035#endif
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080036
Steven Morelanda4853cd2019-07-12 15:44:37 -070037#include "Static.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080038
39#include <unistd.h>
40
41namespace android {
42
Steven Moreland80e1e6d2019-06-21 12:35:59 -070043using AidlServiceManager = android::os::IServiceManager;
44using android::binder::Status;
45
Steven Moreland635a2912019-10-02 15:50:10 -070046// libbinder's IServiceManager.h can't rely on the values generated by AIDL
47// because many places use its headers via include_dirs (meaning, without
48// declaring the dependency in the build system). So, for now, we can just check
49// the values here.
50static_assert(AidlServiceManager::DUMP_FLAG_PRIORITY_CRITICAL == IServiceManager::DUMP_FLAG_PRIORITY_CRITICAL);
51static_assert(AidlServiceManager::DUMP_FLAG_PRIORITY_HIGH == IServiceManager::DUMP_FLAG_PRIORITY_HIGH);
52static_assert(AidlServiceManager::DUMP_FLAG_PRIORITY_NORMAL == IServiceManager::DUMP_FLAG_PRIORITY_NORMAL);
53static_assert(AidlServiceManager::DUMP_FLAG_PRIORITY_DEFAULT == IServiceManager::DUMP_FLAG_PRIORITY_DEFAULT);
54static_assert(AidlServiceManager::DUMP_FLAG_PRIORITY_ALL == IServiceManager::DUMP_FLAG_PRIORITY_ALL);
55static_assert(AidlServiceManager::DUMP_FLAG_PROTO == IServiceManager::DUMP_FLAG_PROTO);
56
Steven Moreland583685e2019-10-02 16:45:11 -070057const String16& IServiceManager::getInterfaceDescriptor() const {
58 return AidlServiceManager::descriptor;
59}
60IServiceManager::IServiceManager() {}
61IServiceManager::~IServiceManager() {}
62
63// From the old libbinder IServiceManager interface to IServiceManager.
64class ServiceManagerShim : public IServiceManager
65{
66public:
67 explicit ServiceManagerShim (const sp<AidlServiceManager>& impl);
68
69 sp<IBinder> getService(const String16& name) const override;
70 sp<IBinder> checkService(const String16& name) const override;
71 status_t addService(const String16& name, const sp<IBinder>& service,
72 bool allowIsolated, int dumpsysPriority) override;
73 Vector<String16> listServices(int dumpsysPriority) override;
74 sp<IBinder> waitForService(const String16& name16) override;
Steven Morelandb82b8f82019-10-28 10:52:34 -070075 bool isDeclared(const String16& name) override;
Steven Moreland583685e2019-10-02 16:45:11 -070076
77 // for legacy ABI
78 const String16& getInterfaceDescriptor() const override {
79 return mTheRealServiceManager->getInterfaceDescriptor();
80 }
81 IBinder* onAsBinder() override {
82 return IInterface::asBinder(mTheRealServiceManager).get();
83 }
84private:
85 sp<AidlServiceManager> mTheRealServiceManager;
86};
87
Martijn Coenen402c8672020-02-03 10:01:36 +010088static std::once_flag gSmOnce;
Brett Chabot38dbade2020-01-24 12:59:43 -080089static sp<IServiceManager> gDefaultServiceManager;
90
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080091sp<IServiceManager> defaultServiceManager()
92{
Martijn Coenen402c8672020-02-03 10:01:36 +010093 std::call_once(gSmOnce, []() {
94 sp<AidlServiceManager> sm = nullptr;
95 while (sm == nullptr) {
96 sm = interface_cast<AidlServiceManager>(ProcessState::self()->getContextObject(nullptr));
97 if (sm == nullptr) {
Todd Poynora7b0f042013-06-18 17:25:37 -070098 sleep(1);
Martijn Coenen402c8672020-02-03 10:01:36 +010099 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800100 }
Martijn Coenen402c8672020-02-03 10:01:36 +0100101
102 gDefaultServiceManager = new ServiceManagerShim(sm);
103 });
Daniel Eratc2832702015-10-13 15:29:32 -0600104
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800105 return gDefaultServiceManager;
106}
107
Brett Chabot38dbade2020-01-24 12:59:43 -0800108void setDefaultServiceManager(const sp<IServiceManager>& sm) {
Martijn Coenen402c8672020-02-03 10:01:36 +0100109 bool called = false;
110 std::call_once(gSmOnce, [&]() {
111 gDefaultServiceManager = sm;
112 called = true;
113 });
114
115 if (!called) {
116 LOG_ALWAYS_FATAL("setDefaultServiceManager() called after defaultServiceManager().");
117 }
Brett Chabot38dbade2020-01-24 12:59:43 -0800118}
119
Steven Morelanded3b5632019-09-20 11:24:28 -0700120#if !defined(__ANDROID_VNDK__) && defined(__ANDROID__)
Jiyong Park47f876b2018-04-17 13:56:46 +0900121// IPermissionController is not accessible to vendors
122
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800123bool checkCallingPermission(const String16& permission)
124{
Yi Kongfdd8da92018-06-07 17:52:27 -0700125 return checkCallingPermission(permission, nullptr, nullptr);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800126}
127
128static String16 _permission("permission");
129
Mathias Agopian375f5632009-06-15 18:24:59 -0700130
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800131bool checkCallingPermission(const String16& permission, int32_t* outPid, int32_t* outUid)
132{
133 IPCThreadState* ipcState = IPCThreadState::self();
Mathias Agopian375f5632009-06-15 18:24:59 -0700134 pid_t pid = ipcState->getCallingPid();
135 uid_t uid = ipcState->getCallingUid();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800136 if (outPid) *outPid = pid;
Mathias Agopian375f5632009-06-15 18:24:59 -0700137 if (outUid) *outUid = uid;
138 return checkPermission(permission, pid, uid);
139}
140
141bool checkPermission(const String16& permission, pid_t pid, uid_t uid)
142{
Steven Moreland92b17c62019-04-02 15:46:24 -0700143 static Mutex gPermissionControllerLock;
144 static sp<IPermissionController> gPermissionController;
145
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800146 sp<IPermissionController> pc;
Steven Moreland92b17c62019-04-02 15:46:24 -0700147 gPermissionControllerLock.lock();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800148 pc = gPermissionController;
Steven Moreland92b17c62019-04-02 15:46:24 -0700149 gPermissionControllerLock.unlock();
Daniel Eratc2832702015-10-13 15:29:32 -0600150
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800151 int64_t startTime = 0;
152
153 while (true) {
Yi Kongfdd8da92018-06-07 17:52:27 -0700154 if (pc != nullptr) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800155 bool res = pc->checkPermission(permission, pid, uid);
156 if (res) {
157 if (startTime != 0) {
Steve Blocka19954a2012-01-04 20:05:49 +0000158 ALOGI("Check passed after %d seconds for %s from uid=%d pid=%d",
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800159 (int)((uptimeMillis()-startTime)/1000),
160 String8(permission).string(), uid, pid);
161 }
162 return res;
163 }
Daniel Eratc2832702015-10-13 15:29:32 -0600164
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800165 // Is this a permission failure, or did the controller go away?
Marco Nelissen097ca272014-11-14 08:01:01 -0800166 if (IInterface::asBinder(pc)->isBinderAlive()) {
Steve Block32397c12012-01-05 23:22:43 +0000167 ALOGW("Permission failure: %s from uid=%d pid=%d",
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800168 String8(permission).string(), uid, pid);
169 return false;
170 }
Daniel Eratc2832702015-10-13 15:29:32 -0600171
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800172 // Object is dead!
Steven Moreland92b17c62019-04-02 15:46:24 -0700173 gPermissionControllerLock.lock();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800174 if (gPermissionController == pc) {
Yi Kongfdd8da92018-06-07 17:52:27 -0700175 gPermissionController = nullptr;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800176 }
Steven Moreland92b17c62019-04-02 15:46:24 -0700177 gPermissionControllerLock.unlock();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800178 }
Daniel Eratc2832702015-10-13 15:29:32 -0600179
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800180 // Need to retrieve the permission controller.
181 sp<IBinder> binder = defaultServiceManager()->checkService(_permission);
Yi Kongfdd8da92018-06-07 17:52:27 -0700182 if (binder == nullptr) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800183 // Wait for the permission controller to come back...
184 if (startTime == 0) {
185 startTime = uptimeMillis();
Steve Blocka19954a2012-01-04 20:05:49 +0000186 ALOGI("Waiting to check permission %s from uid=%d pid=%d",
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800187 String8(permission).string(), uid, pid);
188 }
189 sleep(1);
190 } else {
191 pc = interface_cast<IPermissionController>(binder);
Daniel Eratc2832702015-10-13 15:29:32 -0600192 // Install the new permission controller, and try again.
Steven Moreland92b17c62019-04-02 15:46:24 -0700193 gPermissionControllerLock.lock();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800194 gPermissionController = pc;
Steven Moreland92b17c62019-04-02 15:46:24 -0700195 gPermissionControllerLock.unlock();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800196 }
197 }
198}
199
Jiyong Park47f876b2018-04-17 13:56:46 +0900200#endif //__ANDROID_VNDK__
201
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800202// ----------------------------------------------------------------------
203
Steven Moreland583685e2019-10-02 16:45:11 -0700204ServiceManagerShim::ServiceManagerShim(const sp<AidlServiceManager>& impl)
205 : mTheRealServiceManager(impl)
206{}
Brad Fitzpatrick702ea9d2010-06-18 13:07:53 -0700207
Steven Moreland5af7d852020-04-29 15:40:29 -0700208// This implementation could be simplified and made more efficient by delegating
209// to waitForService. However, this changes the threading structure in some
210// cases and could potentially break prebuilts. Once we have higher logistical
211// complexity, this could be attempted.
Steven Moreland583685e2019-10-02 16:45:11 -0700212sp<IBinder> ServiceManagerShim::getService(const String16& name) const
213{
214 static bool gSystemBootCompleted = false;
215
216 sp<IBinder> svc = checkService(name);
217 if (svc != nullptr) return svc;
218
219 const bool isVendorService =
220 strcmp(ProcessState::self()->getDriverName().c_str(), "/dev/vndbinder") == 0;
221 const long timeout = uptimeMillis() + 5000;
222 // Vendor code can't access system properties
223 if (!gSystemBootCompleted && !isVendorService) {
224#ifdef __ANDROID__
225 char bootCompleted[PROPERTY_VALUE_MAX];
226 property_get("sys.boot_completed", bootCompleted, "0");
227 gSystemBootCompleted = strcmp(bootCompleted, "1") == 0 ? true : false;
228#else
229 gSystemBootCompleted = true;
230#endif
231 }
232 // retry interval in millisecond; note that vendor services stay at 100ms
233 const long sleepTime = gSystemBootCompleted ? 1000 : 100;
234
235 int n = 0;
236 while (uptimeMillis() < timeout) {
237 n++;
238 ALOGI("Waiting for service '%s' on '%s'...", String8(name).string(),
239 ProcessState::self()->getDriverName().c_str());
240 usleep(1000*sleepTime);
Steven Moreland92b17c62019-04-02 15:46:24 -0700241
Yunfan Chen788e1c42018-03-29 16:52:09 +0900242 sp<IBinder> svc = checkService(name);
Xin Lif11e2bd2018-06-08 15:11:57 -0700243 if (svc != nullptr) return svc;
Steven Moreland583685e2019-10-02 16:45:11 -0700244 }
245 ALOGW("Service %s didn't start. Returning NULL", String8(name).string());
246 return nullptr;
247}
Yunfan Chen788e1c42018-03-29 16:52:09 +0900248
Steven Moreland583685e2019-10-02 16:45:11 -0700249sp<IBinder> ServiceManagerShim::checkService(const String16& name) const
250{
251 sp<IBinder> ret;
252 if (!mTheRealServiceManager->checkService(String8(name).c_str(), &ret).isOk()) {
253 return nullptr;
254 }
255 return ret;
256}
257
258status_t ServiceManagerShim::addService(const String16& name, const sp<IBinder>& service,
259 bool allowIsolated, int dumpsysPriority)
260{
261 Status status = mTheRealServiceManager->addService(
262 String8(name).c_str(), service, allowIsolated, dumpsysPriority);
263 return status.exceptionCode();
264}
265
266Vector<String16> ServiceManagerShim::listServices(int dumpsysPriority)
267{
268 std::vector<std::string> ret;
269 if (!mTheRealServiceManager->listServices(dumpsysPriority, &ret).isOk()) {
270 return {};
271 }
272
273 Vector<String16> res;
274 res.setCapacity(ret.size());
275 for (const std::string& name : ret) {
276 res.push(String16(name.c_str()));
277 }
278 return res;
279}
280
281sp<IBinder> ServiceManagerShim::waitForService(const String16& name16)
282{
283 class Waiter : public android::os::BnServiceCallback {
284 Status onRegistration(const std::string& /*name*/,
285 const sp<IBinder>& binder) override {
286 std::unique_lock<std::mutex> lock(mMutex);
287 mBinder = binder;
288 lock.unlock();
Jon Spivack9f503a42019-10-22 16:49:19 -0700289 // Flushing here helps ensure the service's ref count remains accurate
290 IPCThreadState::self()->flushCommands();
Steven Moreland583685e2019-10-02 16:45:11 -0700291 mCv.notify_one();
292 return Status::ok();
Yunfan Chen788e1c42018-03-29 16:52:09 +0900293 }
Steven Moreland583685e2019-10-02 16:45:11 -0700294 public:
295 sp<IBinder> mBinder;
296 std::mutex mMutex;
297 std::condition_variable mCv;
298 };
Yunfan Chen788e1c42018-03-29 16:52:09 +0900299
Jon Spivackfed6db42019-11-18 16:43:59 -0800300 // Simple RAII object to ensure a function call immediately before going out of scope
301 class Defer {
302 public:
303 Defer(std::function<void()>&& f) : mF(std::move(f)) {}
304 ~Defer() { mF(); }
305 private:
306 std::function<void()> mF;
307 };
308
Steven Moreland583685e2019-10-02 16:45:11 -0700309 const std::string name = String8(name16).c_str();
Yunfan Chen788e1c42018-03-29 16:52:09 +0900310
Steven Moreland583685e2019-10-02 16:45:11 -0700311 sp<IBinder> out;
312 if (!mTheRealServiceManager->getService(name, &out).isOk()) {
313 return nullptr;
314 }
Jon Spivackfed6db42019-11-18 16:43:59 -0800315 if (out != nullptr) return out;
Steven Moreland583685e2019-10-02 16:45:11 -0700316
317 sp<Waiter> waiter = new Waiter;
318 if (!mTheRealServiceManager->registerForNotifications(
319 name, waiter).isOk()) {
Yi Kongfdd8da92018-06-07 17:52:27 -0700320 return nullptr;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800321 }
Jon Spivackfed6db42019-11-18 16:43:59 -0800322 Defer unregister ([&] {
323 mTheRealServiceManager->unregisterForNotifications(name, waiter);
324 });
Brad Fitzpatrick702ea9d2010-06-18 13:07:53 -0700325
Steven Moreland583685e2019-10-02 16:45:11 -0700326 while(true) {
327 {
328 std::unique_lock<std::mutex> lock(waiter->mMutex);
329 using std::literals::chrono_literals::operator""s;
330 waiter->mCv.wait_for(lock, 1s, [&] {
331 return waiter->mBinder != nullptr;
332 });
333 if (waiter->mBinder != nullptr) return waiter->mBinder;
Steven Moreland80e1e6d2019-06-21 12:35:59 -0700334 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800335
Steven Moreland583685e2019-10-02 16:45:11 -0700336 // Handle race condition for lazy services. Here is what can happen:
337 // - the service dies (not processed by init yet).
338 // - sm processes death notification.
339 // - sm gets getService and calls init to start service.
340 // - init gets the start signal, but the service already appears
341 // started, so it does nothing.
342 // - init gets death signal, but doesn't know it needs to restart
343 // the service
344 // - we need to request service again to get it to start
Jon Spivack0d844302019-07-22 18:40:34 -0700345 if (!mTheRealServiceManager->getService(name, &out).isOk()) {
Steven Moreland1c47b582019-08-27 18:05:27 -0700346 return nullptr;
347 }
Jon Spivackfed6db42019-11-18 16:43:59 -0800348 if (out != nullptr) return out;
Steven Moreland1c47b582019-08-27 18:05:27 -0700349
Steven Moreland583685e2019-10-02 16:45:11 -0700350 ALOGW("Waited one second for %s", name.c_str());
Steven Moreland1c47b582019-08-27 18:05:27 -0700351 }
Steven Moreland583685e2019-10-02 16:45:11 -0700352}
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800353
Steven Morelandb82b8f82019-10-28 10:52:34 -0700354bool ServiceManagerShim::isDeclared(const String16& name) {
355 bool declared;
356 if (!mTheRealServiceManager->isDeclared(String8(name).c_str(), &declared).isOk()) {
357 return false;
358 }
359 return declared;
360}
361
Steven Moreland61ff8492019-09-26 16:05:45 -0700362} // namespace android