blob: 70f51087229abf50729718daeb88427a79db4c97 [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
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080021#include <utils/Log.h>
Mathias Agopian375f5632009-06-15 18:24:59 -070022#include <binder/IPCThreadState.h>
Mathias Agopianc5b2c0b2009-05-19 19:08:10 -070023#include <binder/Parcel.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080024#include <utils/String8.h>
25#include <utils/SystemClock.h>
Iliyan Malchev273e1442017-04-10 14:09:04 -070026#include <utils/CallStack.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080027
Mathias Agopian208059f2009-05-18 15:08:03 -070028#include <private/binder/Static.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080029
30#include <unistd.h>
31
32namespace android {
33
34sp<IServiceManager> defaultServiceManager()
35{
36 if (gDefaultServiceManager != NULL) return gDefaultServiceManager;
Daniel Eratc2832702015-10-13 15:29:32 -060037
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080038 {
39 AutoMutex _l(gDefaultServiceManagerLock);
Todd Poynora7b0f042013-06-18 17:25:37 -070040 while (gDefaultServiceManager == NULL) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080041 gDefaultServiceManager = interface_cast<IServiceManager>(
42 ProcessState::self()->getContextObject(NULL));
Todd Poynora7b0f042013-06-18 17:25:37 -070043 if (gDefaultServiceManager == NULL)
44 sleep(1);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080045 }
46 }
Daniel Eratc2832702015-10-13 15:29:32 -060047
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080048 return gDefaultServiceManager;
49}
50
51bool checkCallingPermission(const String16& permission)
52{
53 return checkCallingPermission(permission, NULL, NULL);
54}
55
56static String16 _permission("permission");
57
Mathias Agopian375f5632009-06-15 18:24:59 -070058
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080059bool checkCallingPermission(const String16& permission, int32_t* outPid, int32_t* outUid)
60{
61 IPCThreadState* ipcState = IPCThreadState::self();
Mathias Agopian375f5632009-06-15 18:24:59 -070062 pid_t pid = ipcState->getCallingPid();
63 uid_t uid = ipcState->getCallingUid();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080064 if (outPid) *outPid = pid;
Mathias Agopian375f5632009-06-15 18:24:59 -070065 if (outUid) *outUid = uid;
66 return checkPermission(permission, pid, uid);
67}
68
69bool checkPermission(const String16& permission, pid_t pid, uid_t uid)
70{
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080071 sp<IPermissionController> pc;
72 gDefaultServiceManagerLock.lock();
73 pc = gPermissionController;
74 gDefaultServiceManagerLock.unlock();
Daniel Eratc2832702015-10-13 15:29:32 -060075
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080076 int64_t startTime = 0;
77
78 while (true) {
79 if (pc != NULL) {
80 bool res = pc->checkPermission(permission, pid, uid);
81 if (res) {
82 if (startTime != 0) {
Steve Blocka19954a2012-01-04 20:05:49 +000083 ALOGI("Check passed after %d seconds for %s from uid=%d pid=%d",
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080084 (int)((uptimeMillis()-startTime)/1000),
85 String8(permission).string(), uid, pid);
86 }
87 return res;
88 }
Daniel Eratc2832702015-10-13 15:29:32 -060089
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080090 // Is this a permission failure, or did the controller go away?
Marco Nelissen097ca272014-11-14 08:01:01 -080091 if (IInterface::asBinder(pc)->isBinderAlive()) {
Steve Block32397c12012-01-05 23:22:43 +000092 ALOGW("Permission failure: %s from uid=%d pid=%d",
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080093 String8(permission).string(), uid, pid);
94 return false;
95 }
Daniel Eratc2832702015-10-13 15:29:32 -060096
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080097 // Object is dead!
98 gDefaultServiceManagerLock.lock();
99 if (gPermissionController == pc) {
100 gPermissionController = NULL;
101 }
102 gDefaultServiceManagerLock.unlock();
103 }
Daniel Eratc2832702015-10-13 15:29:32 -0600104
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800105 // Need to retrieve the permission controller.
106 sp<IBinder> binder = defaultServiceManager()->checkService(_permission);
107 if (binder == NULL) {
108 // Wait for the permission controller to come back...
109 if (startTime == 0) {
110 startTime = uptimeMillis();
Steve Blocka19954a2012-01-04 20:05:49 +0000111 ALOGI("Waiting to check permission %s from uid=%d pid=%d",
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800112 String8(permission).string(), uid, pid);
113 }
114 sleep(1);
115 } else {
116 pc = interface_cast<IPermissionController>(binder);
Daniel Eratc2832702015-10-13 15:29:32 -0600117 // Install the new permission controller, and try again.
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800118 gDefaultServiceManagerLock.lock();
119 gPermissionController = pc;
120 gDefaultServiceManagerLock.unlock();
121 }
122 }
123}
124
125// ----------------------------------------------------------------------
126
127class BpServiceManager : public BpInterface<IServiceManager>
128{
129public:
Chih-Hung Hsiehe2347b72016-04-25 15:41:05 -0700130 explicit BpServiceManager(const sp<IBinder>& impl)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800131 : BpInterface<IServiceManager>(impl)
132 {
133 }
Brad Fitzpatrick702ea9d2010-06-18 13:07:53 -0700134
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800135 virtual sp<IBinder> getService(const String16& name) const
136 {
137 unsigned n;
138 for (n = 0; n < 5; n++){
Andy Hung6456e442016-12-06 09:40:01 -0800139 if (n > 0) {
Iliyan Malchev273e1442017-04-10 14:09:04 -0700140 if (!strcmp(ProcessState::self()->getDriverName().c_str(), "/dev/vndbinder")) {
141 ALOGI("Waiting for vendor service %s...", String8(name).string());
142 CallStack stack(LOG_TAG);
143 } else {
144 ALOGI("Waiting for service %s...", String8(name).string());
145 }
Andy Hung6456e442016-12-06 09:40:01 -0800146 sleep(1);
147 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800148 sp<IBinder> svc = checkService(name);
149 if (svc != NULL) return svc;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800150 }
151 return NULL;
152 }
Brad Fitzpatrick702ea9d2010-06-18 13:07:53 -0700153
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800154 virtual sp<IBinder> checkService( const String16& name) const
155 {
156 Parcel data, reply;
157 data.writeInterfaceToken(IServiceManager::getInterfaceDescriptor());
158 data.writeString16(name);
159 remote()->transact(CHECK_SERVICE_TRANSACTION, data, &reply);
160 return reply.readStrongBinder();
161 }
162
Dianne Hackborna94f1292012-02-09 16:12:18 -0800163 virtual status_t addService(const String16& name, const sp<IBinder>& service,
Vishnu Nairf56042d2017-09-19 15:25:10 -0700164 bool allowIsolated, int dumpsysPriority) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800165 Parcel data, reply;
166 data.writeInterfaceToken(IServiceManager::getInterfaceDescriptor());
167 data.writeString16(name);
168 data.writeStrongBinder(service);
Dianne Hackborna94f1292012-02-09 16:12:18 -0800169 data.writeInt32(allowIsolated ? 1 : 0);
Vishnu Nairf56042d2017-09-19 15:25:10 -0700170 data.writeInt32(dumpsysPriority);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800171 status_t err = remote()->transact(ADD_SERVICE_TRANSACTION, data, &reply);
Brad Fitzpatrick837a0d02010-07-13 15:33:35 -0700172 return err == NO_ERROR ? reply.readExceptionCode() : err;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800173 }
174
Vishnu Nairf56042d2017-09-19 15:25:10 -0700175 virtual Vector<String16> listServices(int dumpsysPriority) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800176 Vector<String16> res;
177 int n = 0;
178
179 for (;;) {
180 Parcel data, reply;
181 data.writeInterfaceToken(IServiceManager::getInterfaceDescriptor());
182 data.writeInt32(n++);
Vishnu Nairf56042d2017-09-19 15:25:10 -0700183 data.writeInt32(dumpsysPriority);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800184 status_t err = remote()->transact(LIST_SERVICES_TRANSACTION, data, &reply);
185 if (err != NO_ERROR)
186 break;
187 res.add(reply.readString16());
188 }
189 return res;
190 }
191};
192
193IMPLEMENT_META_INTERFACE(ServiceManager, "android.os.IServiceManager");
194
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800195}; // namespace android