| 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 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 21 | #include <utils/Log.h> | 
| Mathias Agopian | 375f563 | 2009-06-15 18:24:59 -0700 | [diff] [blame] | 22 | #include <binder/IPCThreadState.h> | 
| Jiyong Park | 47f876b | 2018-04-17 13:56:46 +0900 | [diff] [blame] | 23 | #ifndef __ANDROID_VNDK__ | 
|  | 24 | #include <binder/IPermissionController.h> | 
|  | 25 | #endif | 
| Mathias Agopian | c5b2c0b | 2009-05-19 19:08:10 -0700 | [diff] [blame] | 26 | #include <binder/Parcel.h> | 
| Yunfan Chen | 788e1c4 | 2018-03-29 16:52:09 +0900 | [diff] [blame] | 27 | #include <cutils/properties.h> | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 28 | #include <utils/String8.h> | 
|  | 29 | #include <utils/SystemClock.h> | 
| Iliyan Malchev | 273e144 | 2017-04-10 14:09:04 -0700 | [diff] [blame] | 30 | #include <utils/CallStack.h> | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 31 |  | 
| Mathias Agopian | 208059f | 2009-05-18 15:08:03 -0700 | [diff] [blame] | 32 | #include <private/binder/Static.h> | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 33 |  | 
|  | 34 | #include <unistd.h> | 
|  | 35 |  | 
|  | 36 | namespace android { | 
|  | 37 |  | 
|  | 38 | sp<IServiceManager> defaultServiceManager() | 
|  | 39 | { | 
|  | 40 | if (gDefaultServiceManager != NULL) return gDefaultServiceManager; | 
| Daniel Erat | c283270 | 2015-10-13 15:29:32 -0600 | [diff] [blame] | 41 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 42 | { | 
|  | 43 | AutoMutex _l(gDefaultServiceManagerLock); | 
| Todd Poynor | a7b0f04 | 2013-06-18 17:25:37 -0700 | [diff] [blame] | 44 | while (gDefaultServiceManager == NULL) { | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 45 | gDefaultServiceManager = interface_cast<IServiceManager>( | 
|  | 46 | ProcessState::self()->getContextObject(NULL)); | 
| Todd Poynor | a7b0f04 | 2013-06-18 17:25:37 -0700 | [diff] [blame] | 47 | if (gDefaultServiceManager == NULL) | 
|  | 48 | sleep(1); | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 49 | } | 
|  | 50 | } | 
| Daniel Erat | c283270 | 2015-10-13 15:29:32 -0600 | [diff] [blame] | 51 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 52 | return gDefaultServiceManager; | 
|  | 53 | } | 
|  | 54 |  | 
| Jiyong Park | 47f876b | 2018-04-17 13:56:46 +0900 | [diff] [blame] | 55 | #ifndef __ANDROID_VNDK__ | 
|  | 56 | // IPermissionController is not accessible to vendors | 
|  | 57 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 58 | bool checkCallingPermission(const String16& permission) | 
|  | 59 | { | 
|  | 60 | return checkCallingPermission(permission, NULL, NULL); | 
|  | 61 | } | 
|  | 62 |  | 
|  | 63 | static String16 _permission("permission"); | 
|  | 64 |  | 
| Mathias Agopian | 375f563 | 2009-06-15 18:24:59 -0700 | [diff] [blame] | 65 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 66 | bool checkCallingPermission(const String16& permission, int32_t* outPid, int32_t* outUid) | 
|  | 67 | { | 
|  | 68 | IPCThreadState* ipcState = IPCThreadState::self(); | 
| Mathias Agopian | 375f563 | 2009-06-15 18:24:59 -0700 | [diff] [blame] | 69 | pid_t pid = ipcState->getCallingPid(); | 
|  | 70 | uid_t uid = ipcState->getCallingUid(); | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 71 | if (outPid) *outPid = pid; | 
| Mathias Agopian | 375f563 | 2009-06-15 18:24:59 -0700 | [diff] [blame] | 72 | if (outUid) *outUid = uid; | 
|  | 73 | return checkPermission(permission, pid, uid); | 
|  | 74 | } | 
|  | 75 |  | 
|  | 76 | bool checkPermission(const String16& permission, pid_t pid, uid_t uid) | 
|  | 77 | { | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 78 | sp<IPermissionController> pc; | 
|  | 79 | gDefaultServiceManagerLock.lock(); | 
|  | 80 | pc = gPermissionController; | 
|  | 81 | gDefaultServiceManagerLock.unlock(); | 
| Daniel Erat | c283270 | 2015-10-13 15:29:32 -0600 | [diff] [blame] | 82 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 83 | int64_t startTime = 0; | 
|  | 84 |  | 
|  | 85 | while (true) { | 
|  | 86 | if (pc != NULL) { | 
|  | 87 | bool res = pc->checkPermission(permission, pid, uid); | 
|  | 88 | if (res) { | 
|  | 89 | if (startTime != 0) { | 
| Steve Block | a19954a | 2012-01-04 20:05:49 +0000 | [diff] [blame] | 90 | 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] | 91 | (int)((uptimeMillis()-startTime)/1000), | 
|  | 92 | String8(permission).string(), uid, pid); | 
|  | 93 | } | 
|  | 94 | return res; | 
|  | 95 | } | 
| Daniel Erat | c283270 | 2015-10-13 15:29:32 -0600 | [diff] [blame] | 96 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 97 | // Is this a permission failure, or did the controller go away? | 
| Marco Nelissen | 097ca27 | 2014-11-14 08:01:01 -0800 | [diff] [blame] | 98 | if (IInterface::asBinder(pc)->isBinderAlive()) { | 
| Steve Block | 32397c1 | 2012-01-05 23:22:43 +0000 | [diff] [blame] | 99 | ALOGW("Permission failure: %s from uid=%d pid=%d", | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 100 | String8(permission).string(), uid, pid); | 
|  | 101 | return false; | 
|  | 102 | } | 
| Daniel Erat | c283270 | 2015-10-13 15:29:32 -0600 | [diff] [blame] | 103 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 104 | // Object is dead! | 
|  | 105 | gDefaultServiceManagerLock.lock(); | 
|  | 106 | if (gPermissionController == pc) { | 
|  | 107 | gPermissionController = NULL; | 
|  | 108 | } | 
|  | 109 | gDefaultServiceManagerLock.unlock(); | 
|  | 110 | } | 
| Daniel Erat | c283270 | 2015-10-13 15:29:32 -0600 | [diff] [blame] | 111 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 112 | // Need to retrieve the permission controller. | 
|  | 113 | sp<IBinder> binder = defaultServiceManager()->checkService(_permission); | 
|  | 114 | if (binder == NULL) { | 
|  | 115 | // Wait for the permission controller to come back... | 
|  | 116 | if (startTime == 0) { | 
|  | 117 | startTime = uptimeMillis(); | 
| Steve Block | a19954a | 2012-01-04 20:05:49 +0000 | [diff] [blame] | 118 | 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] | 119 | String8(permission).string(), uid, pid); | 
|  | 120 | } | 
|  | 121 | sleep(1); | 
|  | 122 | } else { | 
|  | 123 | pc = interface_cast<IPermissionController>(binder); | 
| Daniel Erat | c283270 | 2015-10-13 15:29:32 -0600 | [diff] [blame] | 124 | // Install the new permission controller, and try again. | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 125 | gDefaultServiceManagerLock.lock(); | 
|  | 126 | gPermissionController = pc; | 
|  | 127 | gDefaultServiceManagerLock.unlock(); | 
|  | 128 | } | 
|  | 129 | } | 
|  | 130 | } | 
|  | 131 |  | 
| Jiyong Park | 47f876b | 2018-04-17 13:56:46 +0900 | [diff] [blame] | 132 | #endif //__ANDROID_VNDK__ | 
|  | 133 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 134 | // ---------------------------------------------------------------------- | 
|  | 135 |  | 
|  | 136 | class BpServiceManager : public BpInterface<IServiceManager> | 
|  | 137 | { | 
|  | 138 | public: | 
| Chih-Hung Hsieh | e2347b7 | 2016-04-25 15:41:05 -0700 | [diff] [blame] | 139 | explicit BpServiceManager(const sp<IBinder>& impl) | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 140 | : BpInterface<IServiceManager>(impl) | 
|  | 141 | { | 
|  | 142 | } | 
| Brad Fitzpatrick | 702ea9d | 2010-06-18 13:07:53 -0700 | [diff] [blame] | 143 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 144 | virtual sp<IBinder> getService(const String16& name) const | 
|  | 145 | { | 
| Yunfan Chen | 788e1c4 | 2018-03-29 16:52:09 +0900 | [diff] [blame] | 146 | sp<IBinder> svc = checkService(name); | 
|  | 147 | if (svc != NULL) return svc; | 
|  | 148 |  | 
|  | 149 | const bool isVendorService = | 
|  | 150 | strcmp(ProcessState::self()->getDriverName().c_str(), "/dev/vndbinder") == 0; | 
|  | 151 | const long timeout = uptimeMillis() + 5000; | 
|  | 152 | if (!gSystemBootCompleted) { | 
|  | 153 | char bootCompleted[PROPERTY_VALUE_MAX]; | 
|  | 154 | property_get("sys.boot_completed", bootCompleted, "0"); | 
|  | 155 | gSystemBootCompleted = strcmp(bootCompleted, "1") == 0 ? true : false; | 
|  | 156 | } | 
|  | 157 | // retry interval in millisecond. | 
|  | 158 | const long sleepTime = gSystemBootCompleted ? 1000 : 100; | 
|  | 159 |  | 
|  | 160 | int n = 0; | 
|  | 161 | while (uptimeMillis() < timeout) { | 
|  | 162 | n++; | 
|  | 163 | if (isVendorService) { | 
|  | 164 | ALOGI("Waiting for vendor service %s...", String8(name).string()); | 
|  | 165 | CallStack stack(LOG_TAG); | 
|  | 166 | } else if (n%10 == 0) { | 
|  | 167 | ALOGI("Waiting for service %s...", String8(name).string()); | 
| Andy Hung | 6456e44 | 2016-12-06 09:40:01 -0800 | [diff] [blame] | 168 | } | 
| Yunfan Chen | 788e1c4 | 2018-03-29 16:52:09 +0900 | [diff] [blame] | 169 | usleep(1000*sleepTime); | 
|  | 170 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 171 | sp<IBinder> svc = checkService(name); | 
|  | 172 | if (svc != NULL) return svc; | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 173 | } | 
| Yunfan Chen | 788e1c4 | 2018-03-29 16:52:09 +0900 | [diff] [blame] | 174 | ALOGW("Service %s didn't start. Returning NULL", String8(name).string()); | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 175 | return NULL; | 
|  | 176 | } | 
| Brad Fitzpatrick | 702ea9d | 2010-06-18 13:07:53 -0700 | [diff] [blame] | 177 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 178 | virtual sp<IBinder> checkService( const String16& name) const | 
|  | 179 | { | 
|  | 180 | Parcel data, reply; | 
|  | 181 | data.writeInterfaceToken(IServiceManager::getInterfaceDescriptor()); | 
|  | 182 | data.writeString16(name); | 
|  | 183 | remote()->transact(CHECK_SERVICE_TRANSACTION, data, &reply); | 
|  | 184 | return reply.readStrongBinder(); | 
|  | 185 | } | 
|  | 186 |  | 
| Dianne Hackborn | a94f129 | 2012-02-09 16:12:18 -0800 | [diff] [blame] | 187 | virtual status_t addService(const String16& name, const sp<IBinder>& service, | 
| Vishnu Nair | f56042d | 2017-09-19 15:25:10 -0700 | [diff] [blame] | 188 | bool allowIsolated, int dumpsysPriority) { | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 189 | Parcel data, reply; | 
|  | 190 | data.writeInterfaceToken(IServiceManager::getInterfaceDescriptor()); | 
|  | 191 | data.writeString16(name); | 
|  | 192 | data.writeStrongBinder(service); | 
| Dianne Hackborn | a94f129 | 2012-02-09 16:12:18 -0800 | [diff] [blame] | 193 | data.writeInt32(allowIsolated ? 1 : 0); | 
| Vishnu Nair | f56042d | 2017-09-19 15:25:10 -0700 | [diff] [blame] | 194 | data.writeInt32(dumpsysPriority); | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 195 | status_t err = remote()->transact(ADD_SERVICE_TRANSACTION, data, &reply); | 
| Brad Fitzpatrick | 837a0d0 | 2010-07-13 15:33:35 -0700 | [diff] [blame] | 196 | return err == NO_ERROR ? reply.readExceptionCode() : err; | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 197 | } | 
|  | 198 |  | 
| Vishnu Nair | f56042d | 2017-09-19 15:25:10 -0700 | [diff] [blame] | 199 | virtual Vector<String16> listServices(int dumpsysPriority) { | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 200 | Vector<String16> res; | 
|  | 201 | int n = 0; | 
|  | 202 |  | 
|  | 203 | for (;;) { | 
|  | 204 | Parcel data, reply; | 
|  | 205 | data.writeInterfaceToken(IServiceManager::getInterfaceDescriptor()); | 
|  | 206 | data.writeInt32(n++); | 
| Vishnu Nair | f56042d | 2017-09-19 15:25:10 -0700 | [diff] [blame] | 207 | data.writeInt32(dumpsysPriority); | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 208 | status_t err = remote()->transact(LIST_SERVICES_TRANSACTION, data, &reply); | 
|  | 209 | if (err != NO_ERROR) | 
|  | 210 | break; | 
|  | 211 | res.add(reply.readString16()); | 
|  | 212 | } | 
|  | 213 | return res; | 
|  | 214 | } | 
|  | 215 | }; | 
|  | 216 |  | 
|  | 217 | IMPLEMENT_META_INTERFACE(ServiceManager, "android.os.IServiceManager"); | 
|  | 218 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 219 | }; // namespace android |