blob: 44d235f0fccf9c66930bd40b7f0e7bc94aff8b2e [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>
26
Mathias Agopian208059f2009-05-18 15:08:03 -070027#include <private/binder/Static.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080028
29#include <unistd.h>
30
31namespace android {
32
33sp<IServiceManager> defaultServiceManager()
34{
35 if (gDefaultServiceManager != NULL) return gDefaultServiceManager;
Daniel Eratc2832702015-10-13 15:29:32 -060036
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080037 {
38 AutoMutex _l(gDefaultServiceManagerLock);
Todd Poynora7b0f042013-06-18 17:25:37 -070039 while (gDefaultServiceManager == NULL) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080040 gDefaultServiceManager = interface_cast<IServiceManager>(
41 ProcessState::self()->getContextObject(NULL));
Todd Poynora7b0f042013-06-18 17:25:37 -070042 if (gDefaultServiceManager == NULL)
43 sleep(1);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080044 }
45 }
Daniel Eratc2832702015-10-13 15:29:32 -060046
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080047 return gDefaultServiceManager;
48}
49
50bool checkCallingPermission(const String16& permission)
51{
52 return checkCallingPermission(permission, NULL, NULL);
53}
54
55static String16 _permission("permission");
56
Mathias Agopian375f5632009-06-15 18:24:59 -070057
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080058bool checkCallingPermission(const String16& permission, int32_t* outPid, int32_t* outUid)
59{
60 IPCThreadState* ipcState = IPCThreadState::self();
Mathias Agopian375f5632009-06-15 18:24:59 -070061 pid_t pid = ipcState->getCallingPid();
62 uid_t uid = ipcState->getCallingUid();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080063 if (outPid) *outPid = pid;
Mathias Agopian375f5632009-06-15 18:24:59 -070064 if (outUid) *outUid = uid;
65 return checkPermission(permission, pid, uid);
66}
67
68bool checkPermission(const String16& permission, pid_t pid, uid_t uid)
69{
Daniel Eratc2832702015-10-13 15:29:32 -060070#ifdef __BRILLO__
71 // Brillo doesn't currently run ActivityManager or support framework permissions.
72 return true;
73#endif
74
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080075 sp<IPermissionController> pc;
76 gDefaultServiceManagerLock.lock();
77 pc = gPermissionController;
78 gDefaultServiceManagerLock.unlock();
Daniel Eratc2832702015-10-13 15:29:32 -060079
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080080 int64_t startTime = 0;
81
82 while (true) {
83 if (pc != NULL) {
84 bool res = pc->checkPermission(permission, pid, uid);
85 if (res) {
86 if (startTime != 0) {
Steve Blocka19954a2012-01-04 20:05:49 +000087 ALOGI("Check passed after %d seconds for %s from uid=%d pid=%d",
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080088 (int)((uptimeMillis()-startTime)/1000),
89 String8(permission).string(), uid, pid);
90 }
91 return res;
92 }
Daniel Eratc2832702015-10-13 15:29:32 -060093
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080094 // Is this a permission failure, or did the controller go away?
Marco Nelissen097ca272014-11-14 08:01:01 -080095 if (IInterface::asBinder(pc)->isBinderAlive()) {
Steve Block32397c12012-01-05 23:22:43 +000096 ALOGW("Permission failure: %s from uid=%d pid=%d",
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080097 String8(permission).string(), uid, pid);
98 return false;
99 }
Daniel Eratc2832702015-10-13 15:29:32 -0600100
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800101 // Object is dead!
102 gDefaultServiceManagerLock.lock();
103 if (gPermissionController == pc) {
104 gPermissionController = NULL;
105 }
106 gDefaultServiceManagerLock.unlock();
107 }
Daniel Eratc2832702015-10-13 15:29:32 -0600108
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800109 // Need to retrieve the permission controller.
110 sp<IBinder> binder = defaultServiceManager()->checkService(_permission);
111 if (binder == NULL) {
112 // Wait for the permission controller to come back...
113 if (startTime == 0) {
114 startTime = uptimeMillis();
Steve Blocka19954a2012-01-04 20:05:49 +0000115 ALOGI("Waiting to check permission %s from uid=%d pid=%d",
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800116 String8(permission).string(), uid, pid);
117 }
118 sleep(1);
119 } else {
120 pc = interface_cast<IPermissionController>(binder);
Daniel Eratc2832702015-10-13 15:29:32 -0600121 // Install the new permission controller, and try again.
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800122 gDefaultServiceManagerLock.lock();
123 gPermissionController = pc;
124 gDefaultServiceManagerLock.unlock();
125 }
126 }
127}
128
129// ----------------------------------------------------------------------
130
131class BpServiceManager : public BpInterface<IServiceManager>
132{
133public:
134 BpServiceManager(const sp<IBinder>& impl)
135 : BpInterface<IServiceManager>(impl)
136 {
137 }
Brad Fitzpatrick702ea9d2010-06-18 13:07:53 -0700138
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800139 virtual sp<IBinder> getService(const String16& name) const
140 {
141 unsigned n;
142 for (n = 0; n < 5; n++){
Andy Hung3b36bcf2016-12-06 09:40:01 -0800143 if (n > 0) {
144 ALOGI("Waiting for service %s...", String8(name).string());
145 sleep(1);
146 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800147 sp<IBinder> svc = checkService(name);
148 if (svc != NULL) return svc;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800149 }
150 return NULL;
151 }
Brad Fitzpatrick702ea9d2010-06-18 13:07:53 -0700152
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800153 virtual sp<IBinder> checkService( const String16& name) const
154 {
155 Parcel data, reply;
156 data.writeInterfaceToken(IServiceManager::getInterfaceDescriptor());
157 data.writeString16(name);
158 remote()->transact(CHECK_SERVICE_TRANSACTION, data, &reply);
159 return reply.readStrongBinder();
160 }
161
Dianne Hackborna94f1292012-02-09 16:12:18 -0800162 virtual status_t addService(const String16& name, const sp<IBinder>& service,
163 bool allowIsolated)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800164 {
165 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);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800170 status_t err = remote()->transact(ADD_SERVICE_TRANSACTION, data, &reply);
Brad Fitzpatrick837a0d02010-07-13 15:33:35 -0700171 return err == NO_ERROR ? reply.readExceptionCode() : err;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800172 }
173
174 virtual Vector<String16> listServices()
175 {
176 Vector<String16> res;
177 int n = 0;
178
179 for (;;) {
180 Parcel data, reply;
181 data.writeInterfaceToken(IServiceManager::getInterfaceDescriptor());
182 data.writeInt32(n++);
183 status_t err = remote()->transact(LIST_SERVICES_TRANSACTION, data, &reply);
184 if (err != NO_ERROR)
185 break;
186 res.add(reply.readString16());
187 }
188 return res;
189 }
190};
191
192IMPLEMENT_META_INTERFACE(ServiceManager, "android.os.IServiceManager");
193
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800194}; // namespace android