The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1 | /* |
| 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 Agopian | c5b2c0b | 2009-05-19 19:08:10 -0700 | [diff] [blame] | 19 | #include <binder/IServiceManager.h> |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 20 | |
Steven Moreland | 1c47b58 | 2019-08-27 18:05:27 -0700 | [diff] [blame] | 21 | #include <android/os/BnServiceCallback.h> |
Steven Moreland | 80e1e6d | 2019-06-21 12:35:59 -0700 | [diff] [blame] | 22 | #include <android/os/IServiceManager.h> |
Mathias Agopian | 375f563 | 2009-06-15 18:24:59 -0700 | [diff] [blame] | 23 | #include <binder/IPCThreadState.h> |
Steven Moreland | 28723ae | 2019-04-01 18:52:30 -0700 | [diff] [blame] | 24 | #include <binder/Parcel.h> |
| 25 | #include <utils/Log.h> |
| 26 | #include <utils/String8.h> |
| 27 | #include <utils/SystemClock.h> |
| 28 | |
Jiyong Park | 47f876b | 2018-04-17 13:56:46 +0900 | [diff] [blame] | 29 | #ifndef __ANDROID_VNDK__ |
| 30 | #include <binder/IPermissionController.h> |
| 31 | #endif |
Steven Moreland | 28723ae | 2019-04-01 18:52:30 -0700 | [diff] [blame] | 32 | |
Steven Moreland | ed3b563 | 2019-09-20 11:24:28 -0700 | [diff] [blame] | 33 | #ifdef __ANDROID__ |
Yunfan Chen | 788e1c4 | 2018-03-29 16:52:09 +0900 | [diff] [blame] | 34 | #include <cutils/properties.h> |
Steven Moreland | 28723ae | 2019-04-01 18:52:30 -0700 | [diff] [blame] | 35 | #endif |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 36 | |
Steven Moreland | a4853cd | 2019-07-12 15:44:37 -0700 | [diff] [blame] | 37 | #include "Static.h" |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 38 | |
| 39 | #include <unistd.h> |
| 40 | |
| 41 | namespace android { |
| 42 | |
Steven Moreland | 80e1e6d | 2019-06-21 12:35:59 -0700 | [diff] [blame] | 43 | using AidlServiceManager = android::os::IServiceManager; |
| 44 | using android::binder::Status; |
| 45 | |
Steven Moreland | 635a291 | 2019-10-02 15:50:10 -0700 | [diff] [blame] | 46 | // 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. |
| 50 | static_assert(AidlServiceManager::DUMP_FLAG_PRIORITY_CRITICAL == IServiceManager::DUMP_FLAG_PRIORITY_CRITICAL); |
| 51 | static_assert(AidlServiceManager::DUMP_FLAG_PRIORITY_HIGH == IServiceManager::DUMP_FLAG_PRIORITY_HIGH); |
| 52 | static_assert(AidlServiceManager::DUMP_FLAG_PRIORITY_NORMAL == IServiceManager::DUMP_FLAG_PRIORITY_NORMAL); |
| 53 | static_assert(AidlServiceManager::DUMP_FLAG_PRIORITY_DEFAULT == IServiceManager::DUMP_FLAG_PRIORITY_DEFAULT); |
| 54 | static_assert(AidlServiceManager::DUMP_FLAG_PRIORITY_ALL == IServiceManager::DUMP_FLAG_PRIORITY_ALL); |
| 55 | static_assert(AidlServiceManager::DUMP_FLAG_PROTO == IServiceManager::DUMP_FLAG_PROTO); |
| 56 | |
Steven Moreland | 583685e | 2019-10-02 16:45:11 -0700 | [diff] [blame] | 57 | const String16& IServiceManager::getInterfaceDescriptor() const { |
| 58 | return AidlServiceManager::descriptor; |
| 59 | } |
| 60 | IServiceManager::IServiceManager() {} |
| 61 | IServiceManager::~IServiceManager() {} |
| 62 | |
| 63 | // From the old libbinder IServiceManager interface to IServiceManager. |
| 64 | class ServiceManagerShim : public IServiceManager |
| 65 | { |
| 66 | public: |
| 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 Moreland | b82b8f8 | 2019-10-28 10:52:34 -0700 | [diff] [blame^] | 75 | bool isDeclared(const String16& name) override; |
Steven Moreland | 583685e | 2019-10-02 16:45:11 -0700 | [diff] [blame] | 76 | |
| 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 | } |
| 84 | private: |
| 85 | sp<AidlServiceManager> mTheRealServiceManager; |
| 86 | }; |
| 87 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 88 | sp<IServiceManager> defaultServiceManager() |
| 89 | { |
Steven Moreland | 92b17c6 | 2019-04-02 15:46:24 -0700 | [diff] [blame] | 90 | static Mutex gDefaultServiceManagerLock; |
| 91 | static sp<IServiceManager> gDefaultServiceManager; |
| 92 | |
Yi Kong | fdd8da9 | 2018-06-07 17:52:27 -0700 | [diff] [blame] | 93 | if (gDefaultServiceManager != nullptr) return gDefaultServiceManager; |
Daniel Erat | c283270 | 2015-10-13 15:29:32 -0600 | [diff] [blame] | 94 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 95 | { |
| 96 | AutoMutex _l(gDefaultServiceManagerLock); |
Yi Kong | fdd8da9 | 2018-06-07 17:52:27 -0700 | [diff] [blame] | 97 | while (gDefaultServiceManager == nullptr) { |
Steven Moreland | 583685e | 2019-10-02 16:45:11 -0700 | [diff] [blame] | 98 | gDefaultServiceManager = new ServiceManagerShim( |
| 99 | interface_cast<AidlServiceManager>( |
| 100 | ProcessState::self()->getContextObject(nullptr))); |
Yi Kong | fdd8da9 | 2018-06-07 17:52:27 -0700 | [diff] [blame] | 101 | if (gDefaultServiceManager == nullptr) |
Todd Poynor | a7b0f04 | 2013-06-18 17:25:37 -0700 | [diff] [blame] | 102 | sleep(1); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 103 | } |
| 104 | } |
Daniel Erat | c283270 | 2015-10-13 15:29:32 -0600 | [diff] [blame] | 105 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 106 | return gDefaultServiceManager; |
| 107 | } |
| 108 | |
Steven Moreland | ed3b563 | 2019-09-20 11:24:28 -0700 | [diff] [blame] | 109 | #if !defined(__ANDROID_VNDK__) && defined(__ANDROID__) |
Jiyong Park | 47f876b | 2018-04-17 13:56:46 +0900 | [diff] [blame] | 110 | // IPermissionController is not accessible to vendors |
| 111 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 112 | bool checkCallingPermission(const String16& permission) |
| 113 | { |
Yi Kong | fdd8da9 | 2018-06-07 17:52:27 -0700 | [diff] [blame] | 114 | return checkCallingPermission(permission, nullptr, nullptr); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 115 | } |
| 116 | |
| 117 | static String16 _permission("permission"); |
| 118 | |
Mathias Agopian | 375f563 | 2009-06-15 18:24:59 -0700 | [diff] [blame] | 119 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 120 | bool checkCallingPermission(const String16& permission, int32_t* outPid, int32_t* outUid) |
| 121 | { |
| 122 | IPCThreadState* ipcState = IPCThreadState::self(); |
Mathias Agopian | 375f563 | 2009-06-15 18:24:59 -0700 | [diff] [blame] | 123 | pid_t pid = ipcState->getCallingPid(); |
| 124 | uid_t uid = ipcState->getCallingUid(); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 125 | if (outPid) *outPid = pid; |
Mathias Agopian | 375f563 | 2009-06-15 18:24:59 -0700 | [diff] [blame] | 126 | if (outUid) *outUid = uid; |
| 127 | return checkPermission(permission, pid, uid); |
| 128 | } |
| 129 | |
| 130 | bool checkPermission(const String16& permission, pid_t pid, uid_t uid) |
| 131 | { |
Steven Moreland | 92b17c6 | 2019-04-02 15:46:24 -0700 | [diff] [blame] | 132 | static Mutex gPermissionControllerLock; |
| 133 | static sp<IPermissionController> gPermissionController; |
| 134 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 135 | sp<IPermissionController> pc; |
Steven Moreland | 92b17c6 | 2019-04-02 15:46:24 -0700 | [diff] [blame] | 136 | gPermissionControllerLock.lock(); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 137 | pc = gPermissionController; |
Steven Moreland | 92b17c6 | 2019-04-02 15:46:24 -0700 | [diff] [blame] | 138 | gPermissionControllerLock.unlock(); |
Daniel Erat | c283270 | 2015-10-13 15:29:32 -0600 | [diff] [blame] | 139 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 140 | int64_t startTime = 0; |
| 141 | |
| 142 | while (true) { |
Yi Kong | fdd8da9 | 2018-06-07 17:52:27 -0700 | [diff] [blame] | 143 | if (pc != nullptr) { |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 144 | bool res = pc->checkPermission(permission, pid, uid); |
| 145 | if (res) { |
| 146 | if (startTime != 0) { |
Steve Block | a19954a | 2012-01-04 20:05:49 +0000 | [diff] [blame] | 147 | ALOGI("Check passed after %d seconds for %s from uid=%d pid=%d", |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 148 | (int)((uptimeMillis()-startTime)/1000), |
| 149 | String8(permission).string(), uid, pid); |
| 150 | } |
| 151 | return res; |
| 152 | } |
Daniel Erat | c283270 | 2015-10-13 15:29:32 -0600 | [diff] [blame] | 153 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 154 | // Is this a permission failure, or did the controller go away? |
Marco Nelissen | 097ca27 | 2014-11-14 08:01:01 -0800 | [diff] [blame] | 155 | if (IInterface::asBinder(pc)->isBinderAlive()) { |
Steve Block | 32397c1 | 2012-01-05 23:22:43 +0000 | [diff] [blame] | 156 | ALOGW("Permission failure: %s from uid=%d pid=%d", |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 157 | String8(permission).string(), uid, pid); |
| 158 | return false; |
| 159 | } |
Daniel Erat | c283270 | 2015-10-13 15:29:32 -0600 | [diff] [blame] | 160 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 161 | // Object is dead! |
Steven Moreland | 92b17c6 | 2019-04-02 15:46:24 -0700 | [diff] [blame] | 162 | gPermissionControllerLock.lock(); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 163 | if (gPermissionController == pc) { |
Yi Kong | fdd8da9 | 2018-06-07 17:52:27 -0700 | [diff] [blame] | 164 | gPermissionController = nullptr; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 165 | } |
Steven Moreland | 92b17c6 | 2019-04-02 15:46:24 -0700 | [diff] [blame] | 166 | gPermissionControllerLock.unlock(); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 167 | } |
Daniel Erat | c283270 | 2015-10-13 15:29:32 -0600 | [diff] [blame] | 168 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 169 | // Need to retrieve the permission controller. |
| 170 | sp<IBinder> binder = defaultServiceManager()->checkService(_permission); |
Yi Kong | fdd8da9 | 2018-06-07 17:52:27 -0700 | [diff] [blame] | 171 | if (binder == nullptr) { |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 172 | // Wait for the permission controller to come back... |
| 173 | if (startTime == 0) { |
| 174 | startTime = uptimeMillis(); |
Steve Block | a19954a | 2012-01-04 20:05:49 +0000 | [diff] [blame] | 175 | ALOGI("Waiting to check permission %s from uid=%d pid=%d", |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 176 | String8(permission).string(), uid, pid); |
| 177 | } |
| 178 | sleep(1); |
| 179 | } else { |
| 180 | pc = interface_cast<IPermissionController>(binder); |
Daniel Erat | c283270 | 2015-10-13 15:29:32 -0600 | [diff] [blame] | 181 | // Install the new permission controller, and try again. |
Steven Moreland | 92b17c6 | 2019-04-02 15:46:24 -0700 | [diff] [blame] | 182 | gPermissionControllerLock.lock(); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 183 | gPermissionController = pc; |
Steven Moreland | 92b17c6 | 2019-04-02 15:46:24 -0700 | [diff] [blame] | 184 | gPermissionControllerLock.unlock(); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 185 | } |
| 186 | } |
| 187 | } |
| 188 | |
Jiyong Park | 47f876b | 2018-04-17 13:56:46 +0900 | [diff] [blame] | 189 | #endif //__ANDROID_VNDK__ |
| 190 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 191 | // ---------------------------------------------------------------------- |
| 192 | |
Steven Moreland | 583685e | 2019-10-02 16:45:11 -0700 | [diff] [blame] | 193 | ServiceManagerShim::ServiceManagerShim(const sp<AidlServiceManager>& impl) |
| 194 | : mTheRealServiceManager(impl) |
| 195 | {} |
Brad Fitzpatrick | 702ea9d | 2010-06-18 13:07:53 -0700 | [diff] [blame] | 196 | |
Steven Moreland | 583685e | 2019-10-02 16:45:11 -0700 | [diff] [blame] | 197 | sp<IBinder> ServiceManagerShim::getService(const String16& name) const |
| 198 | { |
| 199 | static bool gSystemBootCompleted = false; |
| 200 | |
| 201 | sp<IBinder> svc = checkService(name); |
| 202 | if (svc != nullptr) return svc; |
| 203 | |
| 204 | const bool isVendorService = |
| 205 | strcmp(ProcessState::self()->getDriverName().c_str(), "/dev/vndbinder") == 0; |
| 206 | const long timeout = uptimeMillis() + 5000; |
| 207 | // Vendor code can't access system properties |
| 208 | if (!gSystemBootCompleted && !isVendorService) { |
| 209 | #ifdef __ANDROID__ |
| 210 | char bootCompleted[PROPERTY_VALUE_MAX]; |
| 211 | property_get("sys.boot_completed", bootCompleted, "0"); |
| 212 | gSystemBootCompleted = strcmp(bootCompleted, "1") == 0 ? true : false; |
| 213 | #else |
| 214 | gSystemBootCompleted = true; |
| 215 | #endif |
| 216 | } |
| 217 | // retry interval in millisecond; note that vendor services stay at 100ms |
| 218 | const long sleepTime = gSystemBootCompleted ? 1000 : 100; |
| 219 | |
| 220 | int n = 0; |
| 221 | while (uptimeMillis() < timeout) { |
| 222 | n++; |
| 223 | ALOGI("Waiting for service '%s' on '%s'...", String8(name).string(), |
| 224 | ProcessState::self()->getDriverName().c_str()); |
| 225 | usleep(1000*sleepTime); |
Steven Moreland | 92b17c6 | 2019-04-02 15:46:24 -0700 | [diff] [blame] | 226 | |
Yunfan Chen | 788e1c4 | 2018-03-29 16:52:09 +0900 | [diff] [blame] | 227 | sp<IBinder> svc = checkService(name); |
Xin Li | f11e2bd | 2018-06-08 15:11:57 -0700 | [diff] [blame] | 228 | if (svc != nullptr) return svc; |
Steven Moreland | 583685e | 2019-10-02 16:45:11 -0700 | [diff] [blame] | 229 | } |
| 230 | ALOGW("Service %s didn't start. Returning NULL", String8(name).string()); |
| 231 | return nullptr; |
| 232 | } |
Yunfan Chen | 788e1c4 | 2018-03-29 16:52:09 +0900 | [diff] [blame] | 233 | |
Steven Moreland | 583685e | 2019-10-02 16:45:11 -0700 | [diff] [blame] | 234 | sp<IBinder> ServiceManagerShim::checkService(const String16& name) const |
| 235 | { |
| 236 | sp<IBinder> ret; |
| 237 | if (!mTheRealServiceManager->checkService(String8(name).c_str(), &ret).isOk()) { |
| 238 | return nullptr; |
| 239 | } |
| 240 | return ret; |
| 241 | } |
| 242 | |
| 243 | status_t ServiceManagerShim::addService(const String16& name, const sp<IBinder>& service, |
| 244 | bool allowIsolated, int dumpsysPriority) |
| 245 | { |
| 246 | Status status = mTheRealServiceManager->addService( |
| 247 | String8(name).c_str(), service, allowIsolated, dumpsysPriority); |
| 248 | return status.exceptionCode(); |
| 249 | } |
| 250 | |
| 251 | Vector<String16> ServiceManagerShim::listServices(int dumpsysPriority) |
| 252 | { |
| 253 | std::vector<std::string> ret; |
| 254 | if (!mTheRealServiceManager->listServices(dumpsysPriority, &ret).isOk()) { |
| 255 | return {}; |
| 256 | } |
| 257 | |
| 258 | Vector<String16> res; |
| 259 | res.setCapacity(ret.size()); |
| 260 | for (const std::string& name : ret) { |
| 261 | res.push(String16(name.c_str())); |
| 262 | } |
| 263 | return res; |
| 264 | } |
| 265 | |
| 266 | sp<IBinder> ServiceManagerShim::waitForService(const String16& name16) |
| 267 | { |
| 268 | class Waiter : public android::os::BnServiceCallback { |
| 269 | Status onRegistration(const std::string& /*name*/, |
| 270 | const sp<IBinder>& binder) override { |
| 271 | std::unique_lock<std::mutex> lock(mMutex); |
| 272 | mBinder = binder; |
| 273 | lock.unlock(); |
| 274 | mCv.notify_one(); |
| 275 | return Status::ok(); |
Yunfan Chen | 788e1c4 | 2018-03-29 16:52:09 +0900 | [diff] [blame] | 276 | } |
Steven Moreland | 583685e | 2019-10-02 16:45:11 -0700 | [diff] [blame] | 277 | public: |
| 278 | sp<IBinder> mBinder; |
| 279 | std::mutex mMutex; |
| 280 | std::condition_variable mCv; |
| 281 | }; |
Yunfan Chen | 788e1c4 | 2018-03-29 16:52:09 +0900 | [diff] [blame] | 282 | |
Steven Moreland | 583685e | 2019-10-02 16:45:11 -0700 | [diff] [blame] | 283 | const std::string name = String8(name16).c_str(); |
Yunfan Chen | 788e1c4 | 2018-03-29 16:52:09 +0900 | [diff] [blame] | 284 | |
Steven Moreland | 583685e | 2019-10-02 16:45:11 -0700 | [diff] [blame] | 285 | sp<IBinder> out; |
| 286 | if (!mTheRealServiceManager->getService(name, &out).isOk()) { |
| 287 | return nullptr; |
| 288 | } |
| 289 | if(out != nullptr) return out; |
| 290 | |
| 291 | sp<Waiter> waiter = new Waiter; |
| 292 | if (!mTheRealServiceManager->registerForNotifications( |
| 293 | name, waiter).isOk()) { |
Yi Kong | fdd8da9 | 2018-06-07 17:52:27 -0700 | [diff] [blame] | 294 | return nullptr; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 295 | } |
Brad Fitzpatrick | 702ea9d | 2010-06-18 13:07:53 -0700 | [diff] [blame] | 296 | |
Steven Moreland | 583685e | 2019-10-02 16:45:11 -0700 | [diff] [blame] | 297 | while(true) { |
| 298 | { |
| 299 | std::unique_lock<std::mutex> lock(waiter->mMutex); |
| 300 | using std::literals::chrono_literals::operator""s; |
| 301 | waiter->mCv.wait_for(lock, 1s, [&] { |
| 302 | return waiter->mBinder != nullptr; |
| 303 | }); |
| 304 | if (waiter->mBinder != nullptr) return waiter->mBinder; |
Steven Moreland | 80e1e6d | 2019-06-21 12:35:59 -0700 | [diff] [blame] | 305 | } |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 306 | |
Steven Moreland | 583685e | 2019-10-02 16:45:11 -0700 | [diff] [blame] | 307 | // Handle race condition for lazy services. Here is what can happen: |
| 308 | // - the service dies (not processed by init yet). |
| 309 | // - sm processes death notification. |
| 310 | // - sm gets getService and calls init to start service. |
| 311 | // - init gets the start signal, but the service already appears |
| 312 | // started, so it does nothing. |
| 313 | // - init gets death signal, but doesn't know it needs to restart |
| 314 | // the service |
| 315 | // - we need to request service again to get it to start |
Jon Spivack | 0d84430 | 2019-07-22 18:40:34 -0700 | [diff] [blame] | 316 | if (!mTheRealServiceManager->getService(name, &out).isOk()) { |
Steven Moreland | 1c47b58 | 2019-08-27 18:05:27 -0700 | [diff] [blame] | 317 | return nullptr; |
| 318 | } |
| 319 | if(out != nullptr) return out; |
| 320 | |
Steven Moreland | 583685e | 2019-10-02 16:45:11 -0700 | [diff] [blame] | 321 | ALOGW("Waited one second for %s", name.c_str()); |
Steven Moreland | 1c47b58 | 2019-08-27 18:05:27 -0700 | [diff] [blame] | 322 | } |
Steven Moreland | 583685e | 2019-10-02 16:45:11 -0700 | [diff] [blame] | 323 | } |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 324 | |
Steven Moreland | b82b8f8 | 2019-10-28 10:52:34 -0700 | [diff] [blame^] | 325 | bool ServiceManagerShim::isDeclared(const String16& name) { |
| 326 | bool declared; |
| 327 | if (!mTheRealServiceManager->isDeclared(String8(name).c_str(), &declared).isOk()) { |
| 328 | return false; |
| 329 | } |
| 330 | return declared; |
| 331 | } |
| 332 | |
Steven Moreland | 61ff849 | 2019-09-26 16:05:45 -0700 | [diff] [blame] | 333 | } // namespace android |