blob: 63f49ddba7556fe21641fd811d3c067dd44c11f7 [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>
24#include <cutils/atomic.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080025#include <utils/Log.h>
26#include <utils/String8.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080027#include <utils/String8.h>
28#include <utils/threads.h>
29
Mathias Agopian208059f2009-05-18 15:08:03 -070030#include <private/binder/binder_module.h>
31#include <private/binder/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
Ganesh Mahendran6ac7fb52017-03-03 09:41:14 +080043#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 }
Martijn Coenen7bca77a2019-03-13 11:51:08 +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
Martijn Coenen55d871c2017-03-21 15:56:40 -0700101 gProcess = new ProcessState(driver);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800102 return gProcess;
103}
104
Colin Cross9d45ccc2017-06-20 17:48:33 -0700105sp<ProcessState> ProcessState::selfOrNull()
106{
107 Mutex::Autolock _l(gProcessMutex);
108 return gProcess;
109}
110
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800111void ProcessState::setContextObject(const sp<IBinder>& object)
112{
113 setContextObject(object, String16("default"));
114}
115
Colin Cross6f4f3ab2014-02-05 17:42:44 -0800116sp<IBinder> ProcessState::getContextObject(const sp<IBinder>& /*caller*/)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800117{
Jeff Browne16986c2011-07-08 18:52:57 -0700118 return getStrongProxyForHandle(0);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800119}
120
121void ProcessState::setContextObject(const sp<IBinder>& object, const String16& name)
122{
123 AutoMutex _l(mLock);
124 mContexts.add(name, object);
125}
126
127sp<IBinder> ProcessState::getContextObject(const String16& name, const sp<IBinder>& caller)
128{
129 mLock.lock();
130 sp<IBinder> object(
Yi Kongfdd8da92018-06-07 17:52:27 -0700131 mContexts.indexOfKey(name) >= 0 ? mContexts.valueFor(name) : nullptr);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800132 mLock.unlock();
133
134 //printf("Getting context object %s for %p\n", String8(name).string(), caller.get());
135
Yi Kongfdd8da92018-06-07 17:52:27 -0700136 if (object != nullptr) return object;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800137
138 // Don't attempt to retrieve contexts if we manage them
139 if (mManagesContexts) {
Steve Blocke6f43dd2012-01-06 19:20:56 +0000140 ALOGE("getContextObject(%s) failed, but we manage the contexts!\n",
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800141 String8(name).string());
Yi Kongfdd8da92018-06-07 17:52:27 -0700142 return nullptr;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800143 }
144
145 IPCThreadState* ipc = IPCThreadState::self();
146 {
147 Parcel data, reply;
148 // no interface token on this magic transaction
149 data.writeString16(name);
150 data.writeStrongBinder(caller);
151 status_t result = ipc->transact(0 /*magic*/, 0, data, &reply, 0);
152 if (result == NO_ERROR) {
153 object = reply.readStrongBinder();
154 }
155 }
156
157 ipc->flushCommands();
158
Yi Kongfdd8da92018-06-07 17:52:27 -0700159 if (object != nullptr) setContextObject(object, name);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800160 return object;
161}
162
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800163void ProcessState::startThreadPool()
164{
165 AutoMutex _l(mLock);
166 if (!mThreadPoolStarted) {
167 mThreadPoolStarted = true;
168 spawnPooledThread(true);
169 }
170}
171
172bool ProcessState::isContextManager(void) const
173{
174 return mManagesContexts;
175}
176
177bool ProcessState::becomeContextManager(context_check_func checkFunc, void* userData)
178{
179 if (!mManagesContexts) {
180 AutoMutex _l(mLock);
181 mBinderContextCheckFunc = checkFunc;
182 mBinderContextUserData = userData;
Jeff Browne16986c2011-07-08 18:52:57 -0700183
Steven Morelandf0212002018-12-26 13:59:23 -0800184 flat_binder_object obj {
185 .flags = FLAT_BINDER_FLAG_TXN_SECURITY_CTX,
186 };
187
188 status_t result = ioctl(mDriverFD, BINDER_SET_CONTEXT_MGR_EXT, &obj);
189
190 // fallback to original method
191 if (result != 0) {
192 android_errorWriteLog(0x534e4554, "121035042");
193
194 int dummy = 0;
195 result = ioctl(mDriverFD, BINDER_SET_CONTEXT_MGR, &dummy);
196 }
197
Jeff Browne16986c2011-07-08 18:52:57 -0700198 if (result == 0) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800199 mManagesContexts = true;
Jeff Browne16986c2011-07-08 18:52:57 -0700200 } else if (result == -1) {
Yi Kongfdd8da92018-06-07 17:52:27 -0700201 mBinderContextCheckFunc = nullptr;
202 mBinderContextUserData = nullptr;
Steve Blocke6f43dd2012-01-06 19:20:56 +0000203 ALOGE("Binder ioctl to become context manager failed: %s\n", strerror(errno));
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800204 }
205 }
206 return mManagesContexts;
207}
208
Colin Cross9d45ccc2017-06-20 17:48:33 -0700209// Get references to userspace objects held by the kernel binder driver
210// Writes up to count elements into buf, and returns the total number
211// of references the kernel has, which may be larger than count.
212// buf may be NULL if count is 0. The pointers returned by this method
213// should only be used for debugging and not dereferenced, they may
214// already be invalid.
215ssize_t ProcessState::getKernelReferences(size_t buf_count, uintptr_t* buf)
216{
Colin Cross9d45ccc2017-06-20 17:48:33 -0700217 binder_node_debug_info info = {};
218
Yi Kongfdd8da92018-06-07 17:52:27 -0700219 uintptr_t* end = buf ? buf + buf_count : nullptr;
Colin Cross9d45ccc2017-06-20 17:48:33 -0700220 size_t count = 0;
221
222 do {
223 status_t result = ioctl(mDriverFD, BINDER_GET_NODE_DEBUG_INFO, &info);
224 if (result < 0) {
225 return -1;
226 }
227 if (info.ptr != 0) {
228 if (buf && buf < end)
229 *buf++ = info.ptr;
230 count++;
231 if (buf && buf < end)
232 *buf++ = info.cookie;
233 count++;
234 }
235 } while (info.ptr != 0);
236
237 return count;
238}
239
Steven Moreland7732a092019-01-02 17:54:16 -0800240void ProcessState::setCallRestriction(CallRestriction restriction) {
241 LOG_ALWAYS_FATAL_IF(IPCThreadState::selfOrNull(), "Call restrictions must be set before the threadpool is started.");
242
243 mCallRestriction = restriction;
244}
245
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800246ProcessState::handle_entry* ProcessState::lookupHandleLocked(int32_t handle)
247{
248 const size_t N=mHandleToObject.size();
249 if (N <= (size_t)handle) {
250 handle_entry e;
Yi Kongfdd8da92018-06-07 17:52:27 -0700251 e.binder = nullptr;
252 e.refs = nullptr;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800253 status_t err = mHandleToObject.insertAt(e, N, handle+1-N);
Yi Kongfdd8da92018-06-07 17:52:27 -0700254 if (err < NO_ERROR) return nullptr;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800255 }
256 return &mHandleToObject.editItemAt(handle);
257}
258
259sp<IBinder> ProcessState::getStrongProxyForHandle(int32_t handle)
260{
261 sp<IBinder> result;
262
263 AutoMutex _l(mLock);
264
265 handle_entry* e = lookupHandleLocked(handle);
266
Yi Kongfdd8da92018-06-07 17:52:27 -0700267 if (e != nullptr) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800268 // We need to create a new BpBinder if there isn't currently one, OR we
269 // are unable to acquire a weak reference on this current one. See comment
270 // in getWeakProxyForHandle() for more info about this.
271 IBinder* b = e->binder;
Yi Kongfdd8da92018-06-07 17:52:27 -0700272 if (b == nullptr || !e->refs->attemptIncWeak(this)) {
Todd Poynora7b0f042013-06-18 17:25:37 -0700273 if (handle == 0) {
274 // Special case for context manager...
275 // The context manager is the only object for which we create
276 // a BpBinder proxy without already holding a reference.
277 // Perform a dummy transaction to ensure the context manager
278 // is registered before we create the first local reference
279 // to it (which will occur when creating the BpBinder).
280 // If a local reference is created for the BpBinder when the
281 // context manager is not present, the driver will fail to
282 // provide a reference to the context manager, but the
283 // driver API does not return status.
284 //
285 // Note that this is not race-free if the context manager
286 // dies while this code runs.
287 //
288 // TODO: add a driver API to wait for context manager, or
289 // stop special casing handle 0 for context manager and add
290 // a driver API to get a handle to the context manager with
291 // proper reference counting.
292
293 Parcel data;
294 status_t status = IPCThreadState::self()->transact(
Yi Kongfdd8da92018-06-07 17:52:27 -0700295 0, IBinder::PING_TRANSACTION, data, nullptr, 0);
Todd Poynora7b0f042013-06-18 17:25:37 -0700296 if (status == DEAD_OBJECT)
Yi Kongfdd8da92018-06-07 17:52:27 -0700297 return nullptr;
Todd Poynora7b0f042013-06-18 17:25:37 -0700298 }
299
Michael Wachenschwanz2d349902017-08-15 00:57:14 -0700300 b = BpBinder::create(handle);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800301 e->binder = b;
302 if (b) e->refs = b->getWeakRefs();
303 result = b;
304 } else {
305 // This little bit of nastyness is to allow us to add a primary
306 // reference to the remote proxy when this team doesn't have one
307 // but another team is sending the handle to us.
308 result.force_set(b);
309 e->refs->decWeak(this);
310 }
311 }
312
313 return result;
314}
315
316wp<IBinder> ProcessState::getWeakProxyForHandle(int32_t handle)
317{
318 wp<IBinder> result;
319
320 AutoMutex _l(mLock);
321
322 handle_entry* e = lookupHandleLocked(handle);
323
Yi Kongfdd8da92018-06-07 17:52:27 -0700324 if (e != nullptr) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800325 // We need to create a new BpBinder if there isn't currently one, OR we
326 // are unable to acquire a weak reference on this current one. The
327 // attemptIncWeak() is safe because we know the BpBinder destructor will always
328 // call expungeHandle(), which acquires the same lock we are holding now.
329 // We need to do this because there is a race condition between someone
330 // releasing a reference on this BpBinder, and a new reference on its handle
331 // arriving from the driver.
332 IBinder* b = e->binder;
Yi Kongfdd8da92018-06-07 17:52:27 -0700333 if (b == nullptr || !e->refs->attemptIncWeak(this)) {
Michael Wachenschwanz2d349902017-08-15 00:57:14 -0700334 b = BpBinder::create(handle);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800335 result = b;
336 e->binder = b;
337 if (b) e->refs = b->getWeakRefs();
338 } else {
339 result = b;
340 e->refs->decWeak(this);
341 }
342 }
343
344 return result;
345}
346
347void ProcessState::expungeHandle(int32_t handle, IBinder* binder)
348{
349 AutoMutex _l(mLock);
350
351 handle_entry* e = lookupHandleLocked(handle);
352
353 // This handle may have already been replaced with a new BpBinder
354 // (if someone failed the AttemptIncWeak() above); we don't want
355 // to overwrite it.
Yi Kongfdd8da92018-06-07 17:52:27 -0700356 if (e && e->binder == binder) e->binder = nullptr;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800357}
358
Mathias Agopiane3e43b32013-03-07 15:34:28 -0800359String8 ProcessState::makeBinderThreadName() {
360 int32_t s = android_atomic_add(1, &mThreadPoolSeq);
Philip Cuadraa082fa82016-04-08 10:29:14 -0700361 pid_t pid = getpid();
Mathias Agopiane3e43b32013-03-07 15:34:28 -0800362 String8 name;
Philip Cuadraa082fa82016-04-08 10:29:14 -0700363 name.appendFormat("Binder:%d_%X", pid, s);
Mathias Agopiane3e43b32013-03-07 15:34:28 -0800364 return name;
365}
366
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800367void ProcessState::spawnPooledThread(bool isMain)
368{
369 if (mThreadPoolStarted) {
Mathias Agopiane3e43b32013-03-07 15:34:28 -0800370 String8 name = makeBinderThreadName();
371 ALOGV("Spawning new pooled thread, name=%s\n", name.string());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800372 sp<Thread> t = new PoolThread(isMain);
Mathias Agopiane3e43b32013-03-07 15:34:28 -0800373 t->run(name.string());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800374 }
375}
376
Mathias Agopian1b80f792012-04-17 16:11:08 -0700377status_t ProcessState::setThreadPoolMaxThreadCount(size_t maxThreads) {
378 status_t result = NO_ERROR;
Wale Ogunwale376b8222015-04-13 16:16:10 -0700379 if (ioctl(mDriverFD, BINDER_SET_MAX_THREADS, &maxThreads) != -1) {
380 mMaxThreads = maxThreads;
381 } else {
Mathias Agopian1b80f792012-04-17 16:11:08 -0700382 result = -errno;
383 ALOGE("Binder ioctl to set max threads failed: %s", strerror(-result));
384 }
385 return result;
386}
387
Mathias Agopiane3e43b32013-03-07 15:34:28 -0800388void ProcessState::giveThreadPoolName() {
389 androidSetThreadName( makeBinderThreadName().string() );
390}
391
Iliyan Malchev32062242017-04-10 14:06:11 -0700392String8 ProcessState::getDriverName() {
393 return mDriverName;
394}
395
Martijn Coenen55d871c2017-03-21 15:56:40 -0700396static int open_driver(const char *driver)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800397{
Martijn Coenen55d871c2017-03-21 15:56:40 -0700398 int fd = open(driver, O_RDWR | O_CLOEXEC);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800399 if (fd >= 0) {
Jin Wei78181df2012-10-18 17:00:48 +0800400 int vers = 0;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800401 status_t result = ioctl(fd, BINDER_VERSION, &vers);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800402 if (result == -1) {
Steve Blocke6f43dd2012-01-06 19:20:56 +0000403 ALOGE("Binder ioctl to obtain version failed: %s", strerror(errno));
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800404 close(fd);
405 fd = -1;
406 }
407 if (result != 0 || vers != BINDER_CURRENT_PROTOCOL_VERSION) {
Greg Hartman67ac00f2017-01-03 16:54:59 -0800408 ALOGE("Binder driver protocol(%d) does not match user space protocol(%d)! ioctl() return value: %d",
409 vers, BINDER_CURRENT_PROTOCOL_VERSION, result);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800410 close(fd);
411 fd = -1;
412 }
Wale Ogunwale376b8222015-04-13 16:16:10 -0700413 size_t maxThreads = DEFAULT_MAX_BINDER_THREADS;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800414 result = ioctl(fd, BINDER_SET_MAX_THREADS, &maxThreads);
415 if (result == -1) {
Steve Blocke6f43dd2012-01-06 19:20:56 +0000416 ALOGE("Binder ioctl to set max threads failed: %s", strerror(errno));
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800417 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800418 } else {
Martijn Coenen55d871c2017-03-21 15:56:40 -0700419 ALOGW("Opening '%s' failed: %s\n", driver, strerror(errno));
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800420 }
421 return fd;
422}
423
Martijn Coenen55d871c2017-03-21 15:56:40 -0700424ProcessState::ProcessState(const char *driver)
Iliyan Malchev32062242017-04-10 14:06:11 -0700425 : mDriverName(String8(driver))
426 , mDriverFD(open_driver(driver))
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800427 , mVMStart(MAP_FAILED)
Wale Ogunwale376b8222015-04-13 16:16:10 -0700428 , mThreadCountLock(PTHREAD_MUTEX_INITIALIZER)
429 , mThreadCountDecrement(PTHREAD_COND_INITIALIZER)
430 , mExecutingThreadsCount(0)
431 , mMaxThreads(DEFAULT_MAX_BINDER_THREADS)
Colin Cross96e83222016-04-15 14:29:55 -0700432 , mStarvationStartTimeMs(0)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800433 , mManagesContexts(false)
Yi Kongfdd8da92018-06-07 17:52:27 -0700434 , mBinderContextCheckFunc(nullptr)
435 , mBinderContextUserData(nullptr)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800436 , mThreadPoolStarted(false)
437 , mThreadPoolSeq(1)
Steven Moreland7732a092019-01-02 17:54:16 -0800438 , mCallRestriction(CallRestriction::NONE)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800439{
440 if (mDriverFD >= 0) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800441 // mmap the binder, providing a chunk of virtual address space to receive transactions.
Yi Kongfdd8da92018-06-07 17:52:27 -0700442 mVMStart = mmap(nullptr, BINDER_VM_SIZE, PROT_READ, MAP_PRIVATE | MAP_NORESERVE, mDriverFD, 0);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800443 if (mVMStart == MAP_FAILED) {
444 // *sigh*
Steven Moreland376a5592017-12-19 15:42:16 -0800445 ALOGE("Using %s failed: unable to mmap transaction memory.\n", mDriverName.c_str());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800446 close(mDriverFD);
447 mDriverFD = -1;
Iliyan Malchev32062242017-04-10 14:06:11 -0700448 mDriverName.clear();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800449 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800450 }
Jeff Browne16986c2011-07-08 18:52:57 -0700451
452 LOG_ALWAYS_FATAL_IF(mDriverFD < 0, "Binder driver could not be opened. Terminating.");
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800453}
454
455ProcessState::~ProcessState()
456{
zhongjieff405782016-03-09 15:05:04 +0800457 if (mDriverFD >= 0) {
458 if (mVMStart != MAP_FAILED) {
459 munmap(mVMStart, BINDER_VM_SIZE);
460 }
461 close(mDriverFD);
462 }
463 mDriverFD = -1;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800464}
465
466}; // namespace android