blob: 07db50f7b3694b84155fb627e987f851fd41a08d [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 "ProcessState"
18
Mathias Agopianc5b2c0b2009-05-19 19:08:10 -070019#include <binder/ProcessState.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080020
Mathias Agopianc5b2c0b2009-05-19 19:08:10 -070021#include <binder/BpBinder.h>
22#include <binder/IPCThreadState.h>
Steven Moreland2716e112018-02-23 14:57:20 -080023#include <binder/IServiceManager.h>
Steven Morelandc709dd82019-08-05 20:30:14 -070024#include <binder/Stability.h>
Steven Moreland2716e112018-02-23 14:57:20 -080025#include <cutils/atomic.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080026#include <utils/Log.h>
27#include <utils/String8.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080028#include <utils/threads.h>
29
Mathias Agopian208059f2009-05-18 15:08:03 -070030#include <private/binder/binder_module.h>
Steven Morelanda4853cd2019-07-12 15:44:37 -070031#include "Static.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080032
33#include <errno.h>
34#include <fcntl.h>
35#include <stdio.h>
36#include <stdlib.h>
37#include <unistd.h>
38#include <sys/ioctl.h>
39#include <sys/mman.h>
40#include <sys/stat.h>
Philip Cuadraa082fa82016-04-08 10:29:14 -070041#include <sys/types.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080042
Steven Moreland072cc7e2019-07-12 21:01:54 +000043#define BINDER_VM_SIZE ((1 * 1024 * 1024) - sysconf(_SC_PAGE_SIZE) * 2)
Wale Ogunwale376b8222015-04-13 16:16:10 -070044#define DEFAULT_MAX_BINDER_THREADS 15
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080045
Martijn Coenen7bca77a2019-03-13 11:51:08 +000046#ifdef __ANDROID_VNDK__
47const char* kDefaultDriver = "/dev/vndbinder";
48#else
Steven Moreland2ae2f5e2018-07-06 13:02:53 -070049const char* kDefaultDriver = "/dev/binder";
Martijn Coenen7bca77a2019-03-13 11:51:08 +000050#endif
Steven Moreland2ae2f5e2018-07-06 13:02:53 -070051
Philip Cuadraa082fa82016-04-08 10:29:14 -070052// -------------------------------------------------------------------------
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080053
54namespace android {
Wale Ogunwale376b8222015-04-13 16:16:10 -070055
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080056class PoolThread : public Thread
57{
58public:
Chih-Hung Hsiehe2347b72016-04-25 15:41:05 -070059 explicit PoolThread(bool isMain)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080060 : mIsMain(isMain)
61 {
62 }
63
64protected:
65 virtual bool threadLoop()
66 {
67 IPCThreadState::self()->joinThreadPool(mIsMain);
68 return false;
69 }
70
71 const bool mIsMain;
72};
73
74sp<ProcessState> ProcessState::self()
75{
Mathias Agopiane8db8712012-04-16 19:30:56 -070076 Mutex::Autolock _l(gProcessMutex);
Yi Kongfdd8da92018-06-07 17:52:27 -070077 if (gProcess != nullptr) {
Mathias Agopiane8db8712012-04-16 19:30:56 -070078 return gProcess;
79 }
Steven Moreland072cc7e2019-07-12 21:01:54 +000080 gProcess = new ProcessState(kDefaultDriver);
Martijn Coenen55d871c2017-03-21 15:56:40 -070081 return gProcess;
82}
83
84sp<ProcessState> ProcessState::initWithDriver(const char* driver)
85{
86 Mutex::Autolock _l(gProcessMutex);
Yi Kongfdd8da92018-06-07 17:52:27 -070087 if (gProcess != nullptr) {
Iliyan Malcheved1ffe02017-04-14 00:34:57 -070088 // Allow for initWithDriver to be called repeatedly with the same
89 // driver.
90 if (!strcmp(gProcess->getDriverName().c_str(), driver)) {
91 return gProcess;
92 }
Martijn Coenen55d871c2017-03-21 15:56:40 -070093 LOG_ALWAYS_FATAL("ProcessState was already initialized.");
94 }
Steven Moreland376a5592017-12-19 15:42:16 -080095
96 if (access(driver, R_OK) == -1) {
97 ALOGE("Binder driver %s is unavailable. Using /dev/binder instead.", driver);
98 driver = "/dev/binder";
99 }
100
Steven Moreland072cc7e2019-07-12 21:01:54 +0000101 gProcess = new ProcessState(driver);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800102 return gProcess;
103}
104
Steven Moreland072cc7e2019-07-12 21:01:54 +0000105sp<ProcessState> ProcessState::selfOrNull()
106{
Colin Cross9d45ccc2017-06-20 17:48:33 -0700107 Mutex::Autolock _l(gProcessMutex);
108 return gProcess;
109}
110
Colin Cross6f4f3ab2014-02-05 17:42:44 -0800111sp<IBinder> ProcessState::getContextObject(const sp<IBinder>& /*caller*/)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800112{
Steven Morelandc709dd82019-08-05 20:30:14 -0700113 sp<IBinder> context = getStrongProxyForHandle(0);
114
115 // The root object is special since we get it directly from the driver, it is never
116 // written by Parcell::writeStrongBinder.
117 internal::Stability::tryMarkCompilationUnit(context.get());
118
119 return context;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800120}
121
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800122void ProcessState::startThreadPool()
123{
124 AutoMutex _l(mLock);
125 if (!mThreadPoolStarted) {
126 mThreadPoolStarted = true;
127 spawnPooledThread(true);
128 }
129}
130
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800131bool ProcessState::becomeContextManager(context_check_func checkFunc, void* userData)
132{
Steven Moreland4411d712019-07-12 14:02:53 -0700133 AutoMutex _l(mLock);
134 mBinderContextCheckFunc = checkFunc;
135 mBinderContextUserData = userData;
Jeff Browne16986c2011-07-08 18:52:57 -0700136
Steven Moreland4411d712019-07-12 14:02:53 -0700137 flat_binder_object obj {
138 .flags = FLAT_BINDER_FLAG_TXN_SECURITY_CTX,
139 };
Steven Moreland3085a472018-12-26 13:59:23 -0800140
Steven Moreland4411d712019-07-12 14:02:53 -0700141 int result = ioctl(mDriverFD, BINDER_SET_CONTEXT_MGR_EXT, &obj);
Steven Moreland3085a472018-12-26 13:59:23 -0800142
Steven Moreland4411d712019-07-12 14:02:53 -0700143 // fallback to original method
144 if (result != 0) {
145 android_errorWriteLog(0x534e4554, "121035042");
Steven Moreland3085a472018-12-26 13:59:23 -0800146
Steven Moreland4411d712019-07-12 14:02:53 -0700147 int dummy = 0;
148 result = ioctl(mDriverFD, BINDER_SET_CONTEXT_MGR, &dummy);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800149 }
Steven Moreland4411d712019-07-12 14:02:53 -0700150
151 if (result == -1) {
152 mBinderContextCheckFunc = nullptr;
153 mBinderContextUserData = nullptr;
154 ALOGE("Binder ioctl to become context manager failed: %s\n", strerror(errno));
155 }
156
157 return result == 0;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800158}
159
Colin Cross9d45ccc2017-06-20 17:48:33 -0700160// Get references to userspace objects held by the kernel binder driver
161// Writes up to count elements into buf, and returns the total number
162// of references the kernel has, which may be larger than count.
163// buf may be NULL if count is 0. The pointers returned by this method
164// should only be used for debugging and not dereferenced, they may
165// already be invalid.
166ssize_t ProcessState::getKernelReferences(size_t buf_count, uintptr_t* buf)
167{
Colin Cross9d45ccc2017-06-20 17:48:33 -0700168 binder_node_debug_info info = {};
169
Yi Kongfdd8da92018-06-07 17:52:27 -0700170 uintptr_t* end = buf ? buf + buf_count : nullptr;
Colin Cross9d45ccc2017-06-20 17:48:33 -0700171 size_t count = 0;
172
173 do {
174 status_t result = ioctl(mDriverFD, BINDER_GET_NODE_DEBUG_INFO, &info);
175 if (result < 0) {
176 return -1;
177 }
178 if (info.ptr != 0) {
179 if (buf && buf < end)
180 *buf++ = info.ptr;
181 count++;
182 if (buf && buf < end)
183 *buf++ = info.cookie;
184 count++;
185 }
186 } while (info.ptr != 0);
187
188 return count;
189}
190
Steven Moreland7732a092019-01-02 17:54:16 -0800191void ProcessState::setCallRestriction(CallRestriction restriction) {
192 LOG_ALWAYS_FATAL_IF(IPCThreadState::selfOrNull(), "Call restrictions must be set before the threadpool is started.");
193
194 mCallRestriction = restriction;
195}
196
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800197ProcessState::handle_entry* ProcessState::lookupHandleLocked(int32_t handle)
198{
199 const size_t N=mHandleToObject.size();
200 if (N <= (size_t)handle) {
201 handle_entry e;
Yi Kongfdd8da92018-06-07 17:52:27 -0700202 e.binder = nullptr;
203 e.refs = nullptr;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800204 status_t err = mHandleToObject.insertAt(e, N, handle+1-N);
Yi Kongfdd8da92018-06-07 17:52:27 -0700205 if (err < NO_ERROR) return nullptr;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800206 }
207 return &mHandleToObject.editItemAt(handle);
208}
209
210sp<IBinder> ProcessState::getStrongProxyForHandle(int32_t handle)
211{
212 sp<IBinder> result;
213
214 AutoMutex _l(mLock);
215
216 handle_entry* e = lookupHandleLocked(handle);
217
Yi Kongfdd8da92018-06-07 17:52:27 -0700218 if (e != nullptr) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800219 // We need to create a new BpBinder if there isn't currently one, OR we
Steven Morelande171d622019-07-17 16:06:01 -0700220 // are unable to acquire a weak reference on this current one. The
221 // attemptIncWeak() is safe because we know the BpBinder destructor will always
222 // call expungeHandle(), which acquires the same lock we are holding now.
223 // We need to do this because there is a race condition between someone
224 // releasing a reference on this BpBinder, and a new reference on its handle
225 // arriving from the driver.
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800226 IBinder* b = e->binder;
Yi Kongfdd8da92018-06-07 17:52:27 -0700227 if (b == nullptr || !e->refs->attemptIncWeak(this)) {
Todd Poynora7b0f042013-06-18 17:25:37 -0700228 if (handle == 0) {
229 // Special case for context manager...
230 // The context manager is the only object for which we create
231 // a BpBinder proxy without already holding a reference.
232 // Perform a dummy transaction to ensure the context manager
233 // is registered before we create the first local reference
234 // to it (which will occur when creating the BpBinder).
235 // If a local reference is created for the BpBinder when the
236 // context manager is not present, the driver will fail to
237 // provide a reference to the context manager, but the
238 // driver API does not return status.
239 //
240 // Note that this is not race-free if the context manager
241 // dies while this code runs.
242 //
243 // TODO: add a driver API to wait for context manager, or
244 // stop special casing handle 0 for context manager and add
245 // a driver API to get a handle to the context manager with
246 // proper reference counting.
247
248 Parcel data;
249 status_t status = IPCThreadState::self()->transact(
Yi Kongfdd8da92018-06-07 17:52:27 -0700250 0, IBinder::PING_TRANSACTION, data, nullptr, 0);
Todd Poynora7b0f042013-06-18 17:25:37 -0700251 if (status == DEAD_OBJECT)
Yi Kongfdd8da92018-06-07 17:52:27 -0700252 return nullptr;
Todd Poynora7b0f042013-06-18 17:25:37 -0700253 }
254
Michael Wachenschwanz2d349902017-08-15 00:57:14 -0700255 b = BpBinder::create(handle);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800256 e->binder = b;
257 if (b) e->refs = b->getWeakRefs();
258 result = b;
259 } else {
260 // This little bit of nastyness is to allow us to add a primary
261 // reference to the remote proxy when this team doesn't have one
262 // but another team is sending the handle to us.
263 result.force_set(b);
264 e->refs->decWeak(this);
265 }
266 }
267
268 return result;
269}
270
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800271void ProcessState::expungeHandle(int32_t handle, IBinder* binder)
272{
273 AutoMutex _l(mLock);
274
275 handle_entry* e = lookupHandleLocked(handle);
276
277 // This handle may have already been replaced with a new BpBinder
278 // (if someone failed the AttemptIncWeak() above); we don't want
279 // to overwrite it.
Yi Kongfdd8da92018-06-07 17:52:27 -0700280 if (e && e->binder == binder) e->binder = nullptr;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800281}
282
Mathias Agopiane3e43b32013-03-07 15:34:28 -0800283String8 ProcessState::makeBinderThreadName() {
284 int32_t s = android_atomic_add(1, &mThreadPoolSeq);
Philip Cuadraa082fa82016-04-08 10:29:14 -0700285 pid_t pid = getpid();
Mathias Agopiane3e43b32013-03-07 15:34:28 -0800286 String8 name;
Philip Cuadraa082fa82016-04-08 10:29:14 -0700287 name.appendFormat("Binder:%d_%X", pid, s);
Mathias Agopiane3e43b32013-03-07 15:34:28 -0800288 return name;
289}
290
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800291void ProcessState::spawnPooledThread(bool isMain)
292{
293 if (mThreadPoolStarted) {
Mathias Agopiane3e43b32013-03-07 15:34:28 -0800294 String8 name = makeBinderThreadName();
295 ALOGV("Spawning new pooled thread, name=%s\n", name.string());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800296 sp<Thread> t = new PoolThread(isMain);
Mathias Agopiane3e43b32013-03-07 15:34:28 -0800297 t->run(name.string());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800298 }
299}
300
Mathias Agopian1b80f792012-04-17 16:11:08 -0700301status_t ProcessState::setThreadPoolMaxThreadCount(size_t maxThreads) {
302 status_t result = NO_ERROR;
Wale Ogunwale376b8222015-04-13 16:16:10 -0700303 if (ioctl(mDriverFD, BINDER_SET_MAX_THREADS, &maxThreads) != -1) {
304 mMaxThreads = maxThreads;
305 } else {
Mathias Agopian1b80f792012-04-17 16:11:08 -0700306 result = -errno;
307 ALOGE("Binder ioctl to set max threads failed: %s", strerror(-result));
308 }
309 return result;
310}
311
Mathias Agopiane3e43b32013-03-07 15:34:28 -0800312void ProcessState::giveThreadPoolName() {
313 androidSetThreadName( makeBinderThreadName().string() );
314}
315
Iliyan Malchev32062242017-04-10 14:06:11 -0700316String8 ProcessState::getDriverName() {
317 return mDriverName;
318}
319
Martijn Coenen55d871c2017-03-21 15:56:40 -0700320static int open_driver(const char *driver)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800321{
Martijn Coenen55d871c2017-03-21 15:56:40 -0700322 int fd = open(driver, O_RDWR | O_CLOEXEC);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800323 if (fd >= 0) {
Jin Wei78181df2012-10-18 17:00:48 +0800324 int vers = 0;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800325 status_t result = ioctl(fd, BINDER_VERSION, &vers);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800326 if (result == -1) {
Steve Blocke6f43dd2012-01-06 19:20:56 +0000327 ALOGE("Binder ioctl to obtain version failed: %s", strerror(errno));
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800328 close(fd);
329 fd = -1;
330 }
331 if (result != 0 || vers != BINDER_CURRENT_PROTOCOL_VERSION) {
Greg Hartman67ac00f2017-01-03 16:54:59 -0800332 ALOGE("Binder driver protocol(%d) does not match user space protocol(%d)! ioctl() return value: %d",
333 vers, BINDER_CURRENT_PROTOCOL_VERSION, result);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800334 close(fd);
335 fd = -1;
336 }
Wale Ogunwale376b8222015-04-13 16:16:10 -0700337 size_t maxThreads = DEFAULT_MAX_BINDER_THREADS;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800338 result = ioctl(fd, BINDER_SET_MAX_THREADS, &maxThreads);
339 if (result == -1) {
Steve Blocke6f43dd2012-01-06 19:20:56 +0000340 ALOGE("Binder ioctl to set max threads failed: %s", strerror(errno));
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800341 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800342 } else {
Martijn Coenen55d871c2017-03-21 15:56:40 -0700343 ALOGW("Opening '%s' failed: %s\n", driver, strerror(errno));
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800344 }
345 return fd;
346}
347
Steven Moreland072cc7e2019-07-12 21:01:54 +0000348ProcessState::ProcessState(const char *driver)
Iliyan Malchev32062242017-04-10 14:06:11 -0700349 : mDriverName(String8(driver))
350 , mDriverFD(open_driver(driver))
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800351 , mVMStart(MAP_FAILED)
Wale Ogunwale376b8222015-04-13 16:16:10 -0700352 , mThreadCountLock(PTHREAD_MUTEX_INITIALIZER)
353 , mThreadCountDecrement(PTHREAD_COND_INITIALIZER)
354 , mExecutingThreadsCount(0)
355 , mMaxThreads(DEFAULT_MAX_BINDER_THREADS)
Colin Cross96e83222016-04-15 14:29:55 -0700356 , mStarvationStartTimeMs(0)
Yi Kongfdd8da92018-06-07 17:52:27 -0700357 , mBinderContextCheckFunc(nullptr)
358 , mBinderContextUserData(nullptr)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800359 , mThreadPoolStarted(false)
360 , mThreadPoolSeq(1)
Steven Moreland7732a092019-01-02 17:54:16 -0800361 , mCallRestriction(CallRestriction::NONE)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800362{
363 if (mDriverFD >= 0) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800364 // mmap the binder, providing a chunk of virtual address space to receive transactions.
Steven Moreland072cc7e2019-07-12 21:01:54 +0000365 mVMStart = mmap(nullptr, BINDER_VM_SIZE, PROT_READ, MAP_PRIVATE | MAP_NORESERVE, mDriverFD, 0);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800366 if (mVMStart == MAP_FAILED) {
367 // *sigh*
Steven Moreland376a5592017-12-19 15:42:16 -0800368 ALOGE("Using %s failed: unable to mmap transaction memory.\n", mDriverName.c_str());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800369 close(mDriverFD);
370 mDriverFD = -1;
Iliyan Malchev32062242017-04-10 14:06:11 -0700371 mDriverName.clear();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800372 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800373 }
Jeff Browne16986c2011-07-08 18:52:57 -0700374
Steven Moreland8c78e2e2019-07-10 16:13:12 -0700375 LOG_ALWAYS_FATAL_IF(mDriverFD < 0, "Binder driver '%s' could not be opened. Terminating.", driver);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800376}
377
378ProcessState::~ProcessState()
379{
zhongjieff405782016-03-09 15:05:04 +0800380 if (mDriverFD >= 0) {
381 if (mVMStart != MAP_FAILED) {
Steven Moreland072cc7e2019-07-12 21:01:54 +0000382 munmap(mVMStart, BINDER_VM_SIZE);
zhongjieff405782016-03-09 15:05:04 +0800383 }
384 close(mDriverFD);
385 }
386 mDriverFD = -1;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800387}
388
389}; // namespace android