blob: 3ac2225ebbdb8dcb92a1f9661e576816e29ba643 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2006 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 "JavaBinder"
18//#define LOG_NDEBUG 0
19
Jeff Sharkeyd84e1ce2012-03-06 18:26:19 -080020#include "android_os_Parcel.h"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080021#include "android_util_Binder.h"
Jeff Sharkeyd84e1ce2012-03-06 18:26:19 -080022
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080023#include "JNIHelp.h"
24
25#include <fcntl.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080026#include <stdio.h>
Brad Fitzpatrickad8fd282010-03-25 02:01:32 -070027#include <sys/stat.h>
Brad Fitzpatrickad8fd282010-03-25 02:01:32 -070028#include <sys/types.h>
Brad Fitzpatrick8f26b322010-03-25 00:25:37 -070029#include <unistd.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080030
31#include <utils/Atomic.h>
Mathias Agopian07952722009-05-19 19:08:10 -070032#include <binder/IInterface.h>
33#include <binder/IPCThreadState.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080034#include <utils/Log.h>
Brad Fitzpatrick2c5da312010-03-24 16:14:09 -070035#include <utils/SystemClock.h>
Christopher Tate0b414482011-02-17 13:00:38 -080036#include <utils/List.h>
37#include <utils/KeyedVector.h>
Colin Cross44bc1862013-07-23 18:17:08 -070038#include <log/logger.h>
Mathias Agopian07952722009-05-19 19:08:10 -070039#include <binder/Parcel.h>
40#include <binder/ProcessState.h>
41#include <binder/IServiceManager.h>
Brad Fitzpatrick5348c012010-03-25 12:43:56 -070042#include <utils/threads.h>
Jeff Brown0bde66a2011-11-07 12:50:08 -080043#include <utils/String8.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080044
Christopher Tateac5e3502011-08-25 15:48:09 -070045#include <ScopedUtfChars.h>
46#include <ScopedLocalRef.h>
47
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080048#include <android_runtime/AndroidRuntime.h>
49
Steve Block71f2cf12011-10-20 11:56:00 +010050//#undef ALOGV
51//#define ALOGV(...) fprintf(stderr, __VA_ARGS__)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080052
Christopher Tate79dd31f2011-03-04 17:45:00 -080053#define DEBUG_DEATH 0
54#if DEBUG_DEATH
Steve Block5baa3a62011-12-20 16:23:08 +000055#define LOGDEATH ALOGD
Christopher Tate79dd31f2011-03-04 17:45:00 -080056#else
Steve Block71f2cf12011-10-20 11:56:00 +010057#define LOGDEATH ALOGV
Christopher Tate79dd31f2011-03-04 17:45:00 -080058#endif
59
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080060using namespace android;
61
62// ----------------------------------------------------------------------------
63
64static struct bindernative_offsets_t
65{
66 // Class state.
67 jclass mClass;
68 jmethodID mExecTransact;
69
70 // Object state.
71 jfieldID mObject;
72
73} gBinderOffsets;
74
75// ----------------------------------------------------------------------------
76
77static struct binderinternal_offsets_t
78{
79 // Class state.
80 jclass mClass;
81 jmethodID mForceGc;
82
83} gBinderInternalOffsets;
84
85// ----------------------------------------------------------------------------
86
87static struct debug_offsets_t
88{
89 // Class state.
90 jclass mClass;
91
92} gDebugOffsets;
93
94// ----------------------------------------------------------------------------
95
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080096static struct error_offsets_t
97{
98 jclass mClass;
99} gErrorOffsets;
100
101// ----------------------------------------------------------------------------
102
103static struct binderproxy_offsets_t
104{
105 // Class state.
106 jclass mClass;
107 jmethodID mConstructor;
108 jmethodID mSendDeathNotice;
109
110 // Object state.
111 jfieldID mObject;
112 jfieldID mSelf;
Christopher Tatebd8b6f22011-03-01 11:55:27 -0800113 jfieldID mOrgue;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800114
115} gBinderProxyOffsets;
116
Christopher Tate0d4a7922011-08-30 12:09:43 -0700117static struct class_offsets_t
118{
119 jmethodID mGetName;
120} gClassOffsets;
121
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800122// ----------------------------------------------------------------------------
123
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800124static struct log_offsets_t
125{
126 // Class state.
127 jclass mClass;
128 jmethodID mLogE;
129} gLogOffsets;
130
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800131static struct parcel_file_descriptor_offsets_t
132{
133 jclass mClass;
134 jmethodID mConstructor;
135} gParcelFileDescriptorOffsets;
136
Brad Fitzpatrick727de402010-07-07 16:06:39 -0700137static struct strict_mode_callback_offsets_t
138{
139 jclass mClass;
140 jmethodID mCallback;
141} gStrictModeCallbackOffsets;
142
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800143// ****************************************************************************
144// ****************************************************************************
145// ****************************************************************************
146
147static volatile int32_t gNumRefsCreated = 0;
148static volatile int32_t gNumProxyRefs = 0;
149static volatile int32_t gNumLocalRefs = 0;
150static volatile int32_t gNumDeathRefs = 0;
151
152static void incRefsCreated(JNIEnv* env)
153{
154 int old = android_atomic_inc(&gNumRefsCreated);
155 if (old == 200) {
156 android_atomic_and(0, &gNumRefsCreated);
157 env->CallStaticVoidMethod(gBinderInternalOffsets.mClass,
158 gBinderInternalOffsets.mForceGc);
159 } else {
Steve Block71f2cf12011-10-20 11:56:00 +0100160 ALOGV("Now have %d binder ops", old);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800161 }
162}
163
164static JavaVM* jnienv_to_javavm(JNIEnv* env)
165{
166 JavaVM* vm;
167 return env->GetJavaVM(&vm) >= 0 ? vm : NULL;
168}
169
170static JNIEnv* javavm_to_jnienv(JavaVM* vm)
171{
172 JNIEnv* env;
173 return vm->GetEnv((void **)&env, JNI_VERSION_1_4) >= 0 ? env : NULL;
174}
175
176static void report_exception(JNIEnv* env, jthrowable excep, const char* msg)
177{
178 env->ExceptionClear();
179
180 jstring tagstr = env->NewStringUTF(LOG_TAG);
181 jstring msgstr = env->NewStringUTF(msg);
182
183 if ((tagstr == NULL) || (msgstr == NULL)) {
184 env->ExceptionClear(); /* assume exception (OOM?) was thrown */
Steve Block3762c312012-01-06 19:20:56 +0000185 ALOGE("Unable to call Log.e()\n");
186 ALOGE("%s", msg);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800187 goto bail;
188 }
189
190 env->CallStaticIntMethod(
191 gLogOffsets.mClass, gLogOffsets.mLogE, tagstr, msgstr, excep);
192 if (env->ExceptionCheck()) {
193 /* attempting to log the failure has failed */
Steve Block8564c8d2012-01-05 23:22:43 +0000194 ALOGW("Failed trying to log exception, msg='%s'\n", msg);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800195 env->ExceptionClear();
196 }
197
198 if (env->IsInstanceOf(excep, gErrorOffsets.mClass)) {
199 /*
200 * It's an Error: Reraise the exception, detach this thread, and
201 * wait for the fireworks. Die even more blatantly after a minute
202 * if the gentler attempt doesn't do the trick.
203 *
204 * The GetJavaVM function isn't on the "approved" list of JNI calls
205 * that can be made while an exception is pending, so we want to
206 * get the VM ptr, throw the exception, and then detach the thread.
207 */
208 JavaVM* vm = jnienv_to_javavm(env);
209 env->Throw(excep);
210 vm->DetachCurrentThread();
211 sleep(60);
Steve Block3762c312012-01-06 19:20:56 +0000212 ALOGE("Forcefully exiting");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800213 exit(1);
214 *((int *) 1) = 1;
215 }
216
217bail:
218 /* discard local refs created for us by VM */
219 env->DeleteLocalRef(tagstr);
220 env->DeleteLocalRef(msgstr);
221}
222
223class JavaBBinderHolder;
224
225class JavaBBinder : public BBinder
226{
227public:
228 JavaBBinder(JNIEnv* env, jobject object)
229 : mVM(jnienv_to_javavm(env)), mObject(env->NewGlobalRef(object))
230 {
Steve Block71f2cf12011-10-20 11:56:00 +0100231 ALOGV("Creating JavaBBinder %p\n", this);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800232 android_atomic_inc(&gNumLocalRefs);
233 incRefsCreated(env);
234 }
235
236 bool checkSubclass(const void* subclassID) const
237 {
238 return subclassID == &gBinderOffsets;
239 }
240
241 jobject object() const
242 {
243 return mObject;
244 }
245
246protected:
247 virtual ~JavaBBinder()
248 {
Steve Block71f2cf12011-10-20 11:56:00 +0100249 ALOGV("Destroying JavaBBinder %p\n", this);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800250 android_atomic_dec(&gNumLocalRefs);
251 JNIEnv* env = javavm_to_jnienv(mVM);
252 env->DeleteGlobalRef(mObject);
253 }
254
255 virtual status_t onTransact(
256 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags = 0)
257 {
258 JNIEnv* env = javavm_to_jnienv(mVM);
259
Steve Block71f2cf12011-10-20 11:56:00 +0100260 ALOGV("onTransact() on %p calling object %p in env %p vm %p\n", this, mObject, env, mVM);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800261
Brad Fitzpatrick727de402010-07-07 16:06:39 -0700262 IPCThreadState* thread_state = IPCThreadState::self();
263 const int strict_policy_before = thread_state->getStrictModePolicy();
Brad Fitzpatrick02343762010-08-30 16:01:16 -0700264 thread_state->setLastTransactionBinderFlags(flags);
Brad Fitzpatrick727de402010-07-07 16:06:39 -0700265
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800266 //printf("Transact from %p to Java code sending: ", this);
267 //data.print();
268 //printf("\n");
269 jboolean res = env->CallBooleanMethod(mObject, gBinderOffsets.mExecTransact,
270 code, (int32_t)&data, (int32_t)reply, flags);
271 jthrowable excep = env->ExceptionOccurred();
Brad Fitzpatrick727de402010-07-07 16:06:39 -0700272
Bjorn Bringert9013ccd2011-04-26 19:10:58 +0100273 if (excep) {
274 report_exception(env, excep,
275 "*** Uncaught remote exception! "
276 "(Exceptions are not yet supported across processes.)");
277 res = JNI_FALSE;
278
279 /* clean up JNI local ref -- we don't return to Java code */
280 env->DeleteLocalRef(excep);
281 }
282
Brad Fitzpatrick727de402010-07-07 16:06:39 -0700283 // Restore the Java binder thread's state if it changed while
284 // processing a call (as it would if the Parcel's header had a
285 // new policy mask and Parcel.enforceInterface() changed
286 // it...)
287 const int strict_policy_after = thread_state->getStrictModePolicy();
288 if (strict_policy_after != strict_policy_before) {
289 // Our thread-local...
290 thread_state->setStrictModePolicy(strict_policy_before);
291 // And the Java-level thread-local...
292 set_dalvik_blockguard_policy(env, strict_policy_before);
293 }
294
Bjorn Bringert9013ccd2011-04-26 19:10:58 +0100295 jthrowable excep2 = env->ExceptionOccurred();
296 if (excep2) {
297 report_exception(env, excep2,
298 "*** Uncaught exception in onBinderStrictModePolicyChange");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800299 /* clean up JNI local ref -- we don't return to Java code */
Bjorn Bringert9013ccd2011-04-26 19:10:58 +0100300 env->DeleteLocalRef(excep2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800301 }
302
Dianne Hackborna53de062012-05-08 18:53:51 -0700303 // Need to always call through the native implementation of
304 // SYSPROPS_TRANSACTION.
305 if (code == SYSPROPS_TRANSACTION) {
306 BBinder::onTransact(code, data, reply, flags);
307 }
308
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800309 //aout << "onTransact to Java code; result=" << res << endl
310 // << "Transact from " << this << " to Java code returning "
311 // << reply << ": " << *reply << endl;
312 return res != JNI_FALSE ? NO_ERROR : UNKNOWN_TRANSACTION;
313 }
314
315 virtual status_t dump(int fd, const Vector<String16>& args)
316 {
317 return 0;
318 }
319
320private:
321 JavaVM* const mVM;
322 jobject const mObject;
323};
324
325// ----------------------------------------------------------------------------
326
327class JavaBBinderHolder : public RefBase
328{
329public:
Christopher Tate0b414482011-02-17 13:00:38 -0800330 sp<JavaBBinder> get(JNIEnv* env, jobject obj)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800331 {
332 AutoMutex _l(mLock);
333 sp<JavaBBinder> b = mBinder.promote();
334 if (b == NULL) {
Christopher Tate0b414482011-02-17 13:00:38 -0800335 b = new JavaBBinder(env, obj);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800336 mBinder = b;
Steve Block71f2cf12011-10-20 11:56:00 +0100337 ALOGV("Creating JavaBinder %p (refs %p) for Object %p, weakCount=%d\n",
Christopher Tate0b414482011-02-17 13:00:38 -0800338 b.get(), b->getWeakRefs(), obj, b->getWeakRefs()->getWeakCount());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800339 }
340
341 return b;
342 }
343
344 sp<JavaBBinder> getExisting()
345 {
346 AutoMutex _l(mLock);
347 return mBinder.promote();
348 }
349
350private:
351 Mutex mLock;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800352 wp<JavaBBinder> mBinder;
353};
354
355// ----------------------------------------------------------------------------
356
Christopher Tate0b414482011-02-17 13:00:38 -0800357// Per-IBinder death recipient bookkeeping. This is how we reconcile local jobject
358// death recipient references passed in through JNI with the permanent corresponding
359// JavaDeathRecipient objects.
360
361class JavaDeathRecipient;
362
363class DeathRecipientList : public RefBase {
364 List< sp<JavaDeathRecipient> > mList;
365 Mutex mLock;
366
367public:
Christopher Tate79dd31f2011-03-04 17:45:00 -0800368 DeathRecipientList();
Christopher Tate0b414482011-02-17 13:00:38 -0800369 ~DeathRecipientList();
370
371 void add(const sp<JavaDeathRecipient>& recipient);
372 void remove(const sp<JavaDeathRecipient>& recipient);
373 sp<JavaDeathRecipient> find(jobject recipient);
374};
375
376// ----------------------------------------------------------------------------
377
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800378class JavaDeathRecipient : public IBinder::DeathRecipient
379{
380public:
Christopher Tatebd8b6f22011-03-01 11:55:27 -0800381 JavaDeathRecipient(JNIEnv* env, jobject object, const sp<DeathRecipientList>& list)
Christopher Tate86284c62011-08-17 15:19:29 -0700382 : mVM(jnienv_to_javavm(env)), mObject(env->NewGlobalRef(object)),
383 mObjectWeak(NULL), mList(list)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800384 {
Christopher Tate0b414482011-02-17 13:00:38 -0800385 // These objects manage their own lifetimes so are responsible for final bookkeeping.
386 // The list holds a strong reference to this object.
Christopher Tate79dd31f2011-03-04 17:45:00 -0800387 LOGDEATH("Adding JDR %p to DRL %p", this, list.get());
Christopher Tatebd8b6f22011-03-01 11:55:27 -0800388 list->add(this);
Christopher Tate0b414482011-02-17 13:00:38 -0800389
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800390 android_atomic_inc(&gNumDeathRefs);
391 incRefsCreated(env);
392 }
393
394 void binderDied(const wp<IBinder>& who)
395 {
Christopher Tate79dd31f2011-03-04 17:45:00 -0800396 LOGDEATH("Receiving binderDied() on JavaDeathRecipient %p\n", this);
Christopher Tate86284c62011-08-17 15:19:29 -0700397 if (mObject != NULL) {
398 JNIEnv* env = javavm_to_jnienv(mVM);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800399
Christopher Tate86284c62011-08-17 15:19:29 -0700400 env->CallStaticVoidMethod(gBinderProxyOffsets.mClass,
401 gBinderProxyOffsets.mSendDeathNotice, mObject);
402 jthrowable excep = env->ExceptionOccurred();
403 if (excep) {
404 report_exception(env, excep,
405 "*** Uncaught exception returned from death notification!");
406 }
407
408 // Demote from strong ref to weak after binderDied() has been delivered,
409 // to allow the DeathRecipient and BinderProxy to be GC'd if no longer needed.
410 mObjectWeak = env->NewWeakGlobalRef(mObject);
411 env->DeleteGlobalRef(mObject);
412 mObject = NULL;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800413 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800414 }
415
416 void clearReference()
417 {
Christopher Tatebd8b6f22011-03-01 11:55:27 -0800418 sp<DeathRecipientList> list = mList.promote();
419 if (list != NULL) {
Christopher Tate79dd31f2011-03-04 17:45:00 -0800420 LOGDEATH("Removing JDR %p from DRL %p", this, list.get());
Christopher Tatebd8b6f22011-03-01 11:55:27 -0800421 list->remove(this);
Christopher Tate79dd31f2011-03-04 17:45:00 -0800422 } else {
423 LOGDEATH("clearReference() on JDR %p but DRL wp purged", this);
Christopher Tatebd8b6f22011-03-01 11:55:27 -0800424 }
Christopher Tate0b414482011-02-17 13:00:38 -0800425 }
426
427 bool matches(jobject obj) {
Christopher Tate86284c62011-08-17 15:19:29 -0700428 bool result;
Christopher Tate0b414482011-02-17 13:00:38 -0800429 JNIEnv* env = javavm_to_jnienv(mVM);
Christopher Tate86284c62011-08-17 15:19:29 -0700430
431 if (mObject != NULL) {
432 result = env->IsSameObject(obj, mObject);
433 } else {
434 jobject me = env->NewLocalRef(mObjectWeak);
435 result = env->IsSameObject(obj, me);
436 env->DeleteLocalRef(me);
437 }
438 return result;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800439 }
440
Christopher Tateac5e3502011-08-25 15:48:09 -0700441 void warnIfStillLive() {
442 if (mObject != NULL) {
443 // Okay, something is wrong -- we have a hard reference to a live death
444 // recipient on the VM side, but the list is being torn down.
445 JNIEnv* env = javavm_to_jnienv(mVM);
Christopher Tate0d4a7922011-08-30 12:09:43 -0700446 ScopedLocalRef<jclass> objClassRef(env, env->GetObjectClass(mObject));
447 ScopedLocalRef<jstring> nameRef(env,
448 (jstring) env->CallObjectMethod(objClassRef.get(), gClassOffsets.mGetName));
449 ScopedUtfChars nameUtf(env, nameRef.get());
450 if (nameUtf.c_str() != NULL) {
Steve Block8564c8d2012-01-05 23:22:43 +0000451 ALOGW("BinderProxy is being destroyed but the application did not call "
Christopher Tate0d4a7922011-08-30 12:09:43 -0700452 "unlinkToDeath to unlink all of its death recipients beforehand. "
453 "Releasing leaked death recipient: %s", nameUtf.c_str());
454 } else {
Steve Block8564c8d2012-01-05 23:22:43 +0000455 ALOGW("BinderProxy being destroyed; unable to get DR object name");
Christopher Tate0d4a7922011-08-30 12:09:43 -0700456 env->ExceptionClear();
457 }
Christopher Tateac5e3502011-08-25 15:48:09 -0700458 }
459 }
460
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800461protected:
462 virtual ~JavaDeathRecipient()
463 {
Steve Block6215d3f2012-01-04 20:05:49 +0000464 //ALOGI("Removing death ref: recipient=%p\n", mObject);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800465 android_atomic_dec(&gNumDeathRefs);
466 JNIEnv* env = javavm_to_jnienv(mVM);
Christopher Tate86284c62011-08-17 15:19:29 -0700467 if (mObject != NULL) {
468 env->DeleteGlobalRef(mObject);
469 } else {
470 env->DeleteWeakGlobalRef(mObjectWeak);
471 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800472 }
473
474private:
Christopher Tate86284c62011-08-17 15:19:29 -0700475 JavaVM* const mVM;
476 jobject mObject;
477 jweak mObjectWeak; // will be a weak ref to the same VM-side DeathRecipient after binderDied()
Christopher Tatebd8b6f22011-03-01 11:55:27 -0800478 wp<DeathRecipientList> mList;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800479};
480
481// ----------------------------------------------------------------------------
482
Christopher Tate79dd31f2011-03-04 17:45:00 -0800483DeathRecipientList::DeathRecipientList() {
484 LOGDEATH("New DRL @ %p", this);
485}
486
Christopher Tate0b414482011-02-17 13:00:38 -0800487DeathRecipientList::~DeathRecipientList() {
Christopher Tate79dd31f2011-03-04 17:45:00 -0800488 LOGDEATH("Destroy DRL @ %p", this);
Christopher Tate0b414482011-02-17 13:00:38 -0800489 AutoMutex _l(mLock);
490
491 // Should never happen -- the JavaDeathRecipient objects that have added themselves
492 // to the list are holding references on the list object. Only when they are torn
493 // down can the list header be destroyed.
494 if (mList.size() > 0) {
Christopher Tateac5e3502011-08-25 15:48:09 -0700495 List< sp<JavaDeathRecipient> >::iterator iter;
496 for (iter = mList.begin(); iter != mList.end(); iter++) {
497 (*iter)->warnIfStillLive();
498 }
Christopher Tate0b414482011-02-17 13:00:38 -0800499 }
500}
501
502void DeathRecipientList::add(const sp<JavaDeathRecipient>& recipient) {
503 AutoMutex _l(mLock);
504
Christopher Tate79dd31f2011-03-04 17:45:00 -0800505 LOGDEATH("DRL @ %p : add JDR %p", this, recipient.get());
Christopher Tate0b414482011-02-17 13:00:38 -0800506 mList.push_back(recipient);
507}
508
509void DeathRecipientList::remove(const sp<JavaDeathRecipient>& recipient) {
510 AutoMutex _l(mLock);
511
512 List< sp<JavaDeathRecipient> >::iterator iter;
513 for (iter = mList.begin(); iter != mList.end(); iter++) {
514 if (*iter == recipient) {
Christopher Tate79dd31f2011-03-04 17:45:00 -0800515 LOGDEATH("DRL @ %p : remove JDR %p", this, recipient.get());
Christopher Tate0b414482011-02-17 13:00:38 -0800516 mList.erase(iter);
517 return;
518 }
519 }
520}
521
522sp<JavaDeathRecipient> DeathRecipientList::find(jobject recipient) {
523 AutoMutex _l(mLock);
524
525 List< sp<JavaDeathRecipient> >::iterator iter;
526 for (iter = mList.begin(); iter != mList.end(); iter++) {
527 if ((*iter)->matches(recipient)) {
528 return *iter;
529 }
530 }
531 return NULL;
532}
533
Christopher Tate0b414482011-02-17 13:00:38 -0800534// ----------------------------------------------------------------------------
535
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800536namespace android {
537
538static void proxy_cleanup(const void* id, void* obj, void* cleanupCookie)
539{
540 android_atomic_dec(&gNumProxyRefs);
541 JNIEnv* env = javavm_to_jnienv((JavaVM*)cleanupCookie);
542 env->DeleteGlobalRef((jobject)obj);
543}
544
545static Mutex mProxyLock;
546
547jobject javaObjectForIBinder(JNIEnv* env, const sp<IBinder>& val)
548{
549 if (val == NULL) return NULL;
550
551 if (val->checkSubclass(&gBinderOffsets)) {
552 // One of our own!
553 jobject object = static_cast<JavaBBinder*>(val.get())->object();
Christopher Tate86284c62011-08-17 15:19:29 -0700554 LOGDEATH("objectForBinder %p: it's our own %p!\n", val.get(), object);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800555 return object;
556 }
557
558 // For the rest of the function we will hold this lock, to serialize
559 // looking/creation of Java proxies for native Binder proxies.
560 AutoMutex _l(mProxyLock);
561
562 // Someone else's... do we know about it?
563 jobject object = (jobject)val->findObject(&gBinderProxyOffsets);
564 if (object != NULL) {
Jeff Browna4ca8ea2013-04-02 18:01:38 -0700565 jobject res = jniGetReferent(env, object);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800566 if (res != NULL) {
Steve Block71f2cf12011-10-20 11:56:00 +0100567 ALOGV("objectForBinder %p: found existing %p!\n", val.get(), res);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800568 return res;
569 }
Christopher Tate86284c62011-08-17 15:19:29 -0700570 LOGDEATH("Proxy object %p of IBinder %p no longer in working set!!!", object, val.get());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800571 android_atomic_dec(&gNumProxyRefs);
572 val->detachObject(&gBinderProxyOffsets);
573 env->DeleteGlobalRef(object);
574 }
575
576 object = env->NewObject(gBinderProxyOffsets.mClass, gBinderProxyOffsets.mConstructor);
577 if (object != NULL) {
Christopher Tate79dd31f2011-03-04 17:45:00 -0800578 LOGDEATH("objectForBinder %p: created new proxy %p !\n", val.get(), object);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800579 // The proxy holds a reference to the native object.
580 env->SetIntField(object, gBinderProxyOffsets.mObject, (int)val.get());
Mathias Agopianb1d90c82013-03-06 17:45:42 -0800581 val->incStrong((void*)javaObjectForIBinder);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800582
583 // The native object needs to hold a weak reference back to the
584 // proxy, so we can retrieve the same proxy if it is still active.
585 jobject refObject = env->NewGlobalRef(
586 env->GetObjectField(object, gBinderProxyOffsets.mSelf));
587 val->attachObject(&gBinderProxyOffsets, refObject,
588 jnienv_to_javavm(env), proxy_cleanup);
589
Christopher Tatebd8b6f22011-03-01 11:55:27 -0800590 // Also remember the death recipients registered on this proxy
591 sp<DeathRecipientList> drl = new DeathRecipientList;
592 drl->incStrong((void*)javaObjectForIBinder);
593 env->SetIntField(object, gBinderProxyOffsets.mOrgue, reinterpret_cast<jint>(drl.get()));
594
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800595 // Note that a new object reference has been created.
596 android_atomic_inc(&gNumProxyRefs);
597 incRefsCreated(env);
598 }
599
600 return object;
601}
602
603sp<IBinder> ibinderForJavaObject(JNIEnv* env, jobject obj)
604{
605 if (obj == NULL) return NULL;
606
607 if (env->IsInstanceOf(obj, gBinderOffsets.mClass)) {
608 JavaBBinderHolder* jbh = (JavaBBinderHolder*)
609 env->GetIntField(obj, gBinderOffsets.mObject);
Christopher Tate0b414482011-02-17 13:00:38 -0800610 return jbh != NULL ? jbh->get(env, obj) : NULL;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800611 }
612
613 if (env->IsInstanceOf(obj, gBinderProxyOffsets.mClass)) {
614 return (IBinder*)
615 env->GetIntField(obj, gBinderProxyOffsets.mObject);
616 }
617
Steve Block8564c8d2012-01-05 23:22:43 +0000618 ALOGW("ibinderForJavaObject: %p is not a Binder object", obj);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800619 return NULL;
620}
621
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800622jobject newParcelFileDescriptor(JNIEnv* env, jobject fileDesc)
623{
624 return env->NewObject(
625 gParcelFileDescriptorOffsets.mClass, gParcelFileDescriptorOffsets.mConstructor, fileDesc);
626}
627
Jeff Sharkeyd84e1ce2012-03-06 18:26:19 -0800628void set_dalvik_blockguard_policy(JNIEnv* env, jint strict_policy)
629{
630 // Call back into android.os.StrictMode#onBinderStrictModePolicyChange
631 // to sync our state back to it. See the comments in StrictMode.java.
632 env->CallStaticVoidMethod(gStrictModeCallbackOffsets.mClass,
633 gStrictModeCallbackOffsets.mCallback,
634 strict_policy);
635}
636
637void signalExceptionForError(JNIEnv* env, jobject obj, status_t err,
638 bool canThrowRemoteException)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800639{
640 switch (err) {
641 case UNKNOWN_ERROR:
642 jniThrowException(env, "java/lang/RuntimeException", "Unknown error");
643 break;
644 case NO_MEMORY:
645 jniThrowException(env, "java/lang/OutOfMemoryError", NULL);
646 break;
647 case INVALID_OPERATION:
648 jniThrowException(env, "java/lang/UnsupportedOperationException", NULL);
649 break;
650 case BAD_VALUE:
651 jniThrowException(env, "java/lang/IllegalArgumentException", NULL);
652 break;
653 case BAD_INDEX:
654 jniThrowException(env, "java/lang/IndexOutOfBoundsException", NULL);
655 break;
656 case BAD_TYPE:
657 jniThrowException(env, "java/lang/IllegalArgumentException", NULL);
658 break;
659 case NAME_NOT_FOUND:
660 jniThrowException(env, "java/util/NoSuchElementException", NULL);
661 break;
662 case PERMISSION_DENIED:
663 jniThrowException(env, "java/lang/SecurityException", NULL);
664 break;
665 case NOT_ENOUGH_DATA:
666 jniThrowException(env, "android/os/ParcelFormatException", "Not enough data");
667 break;
668 case NO_INIT:
669 jniThrowException(env, "java/lang/RuntimeException", "Not initialized");
670 break;
671 case ALREADY_EXISTS:
672 jniThrowException(env, "java/lang/RuntimeException", "Item already exists");
673 break;
674 case DEAD_OBJECT:
Jeff Brown0bde66a2011-11-07 12:50:08 -0800675 // DeadObjectException is a checked exception, only throw from certain methods.
676 jniThrowException(env, canThrowRemoteException
677 ? "android/os/DeadObjectException"
678 : "java/lang/RuntimeException", NULL);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800679 break;
680 case UNKNOWN_TRANSACTION:
681 jniThrowException(env, "java/lang/RuntimeException", "Unknown transaction code");
682 break;
683 case FAILED_TRANSACTION:
Steve Block3762c312012-01-06 19:20:56 +0000684 ALOGE("!!! FAILED BINDER TRANSACTION !!!");
Jeff Brown0bde66a2011-11-07 12:50:08 -0800685 // TransactionTooLargeException is a checked exception, only throw from certain methods.
686 // FIXME: Transaction too large is the most common reason for FAILED_TRANSACTION
687 // but it is not the only one. The Binder driver can return BR_FAILED_REPLY
688 // for other reasons also, such as if the transaction is malformed or
689 // refers to an FD that has been closed. We should change the driver
690 // to enable us to distinguish these cases in the future.
691 jniThrowException(env, canThrowRemoteException
692 ? "android/os/TransactionTooLargeException"
693 : "java/lang/RuntimeException", NULL);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800694 break;
Dianne Hackborn9ecebbf2011-09-28 23:19:47 -0400695 case FDS_NOT_ALLOWED:
696 jniThrowException(env, "java/lang/RuntimeException",
697 "Not allowed to write file descriptors here");
698 break;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800699 default:
Steve Block3762c312012-01-06 19:20:56 +0000700 ALOGE("Unknown binder error code. 0x%x", err);
Jeff Brown0bde66a2011-11-07 12:50:08 -0800701 String8 msg;
702 msg.appendFormat("Unknown binder error code. 0x%x", err);
703 // RemoteException is a checked exception, only throw from certain methods.
704 jniThrowException(env, canThrowRemoteException
705 ? "android/os/RemoteException" : "java/lang/RuntimeException", msg.string());
706 break;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800707 }
708}
709
710}
711
712// ----------------------------------------------------------------------------
713
714static jint android_os_Binder_getCallingPid(JNIEnv* env, jobject clazz)
715{
716 return IPCThreadState::self()->getCallingPid();
717}
718
719static jint android_os_Binder_getCallingUid(JNIEnv* env, jobject clazz)
720{
721 return IPCThreadState::self()->getCallingUid();
722}
723
724static jlong android_os_Binder_clearCallingIdentity(JNIEnv* env, jobject clazz)
725{
726 return IPCThreadState::self()->clearCallingIdentity();
727}
728
729static void android_os_Binder_restoreCallingIdentity(JNIEnv* env, jobject clazz, jlong token)
730{
Dianne Hackborncf3004a2011-03-14 14:24:04 -0700731 // XXX temporary sanity check to debug crashes.
732 int uid = (int)(token>>32);
733 if (uid > 0 && uid < 999) {
734 // In Android currently there are no uids in this range.
735 char buf[128];
736 sprintf(buf, "Restoring bad calling ident: 0x%Lx", token);
737 jniThrowException(env, "java/lang/IllegalStateException", buf);
738 return;
739 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800740 IPCThreadState::self()->restoreCallingIdentity(token);
741}
742
Brad Fitzpatrick727de402010-07-07 16:06:39 -0700743static void android_os_Binder_setThreadStrictModePolicy(JNIEnv* env, jobject clazz, jint policyMask)
744{
745 IPCThreadState::self()->setStrictModePolicy(policyMask);
746}
747
748static jint android_os_Binder_getThreadStrictModePolicy(JNIEnv* env, jobject clazz)
749{
750 return IPCThreadState::self()->getStrictModePolicy();
751}
752
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800753static void android_os_Binder_flushPendingCommands(JNIEnv* env, jobject clazz)
754{
755 IPCThreadState::self()->flushCommands();
756}
757
Christopher Tate0b414482011-02-17 13:00:38 -0800758static void android_os_Binder_init(JNIEnv* env, jobject obj)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800759{
Christopher Tate0b414482011-02-17 13:00:38 -0800760 JavaBBinderHolder* jbh = new JavaBBinderHolder();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800761 if (jbh == NULL) {
762 jniThrowException(env, "java/lang/OutOfMemoryError", NULL);
763 return;
764 }
Steve Block71f2cf12011-10-20 11:56:00 +0100765 ALOGV("Java Binder %p: acquiring first ref on holder %p", obj, jbh);
Christopher Tate0b414482011-02-17 13:00:38 -0800766 jbh->incStrong((void*)android_os_Binder_init);
767 env->SetIntField(obj, gBinderOffsets.mObject, (int)jbh);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800768}
769
Christopher Tate0b414482011-02-17 13:00:38 -0800770static void android_os_Binder_destroy(JNIEnv* env, jobject obj)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800771{
772 JavaBBinderHolder* jbh = (JavaBBinderHolder*)
Christopher Tate0b414482011-02-17 13:00:38 -0800773 env->GetIntField(obj, gBinderOffsets.mObject);
Jeff Brown582763a2010-03-24 18:56:57 -0700774 if (jbh != NULL) {
Christopher Tate0b414482011-02-17 13:00:38 -0800775 env->SetIntField(obj, gBinderOffsets.mObject, 0);
Steve Block71f2cf12011-10-20 11:56:00 +0100776 ALOGV("Java Binder %p: removing ref on holder %p", obj, jbh);
Christopher Tate0b414482011-02-17 13:00:38 -0800777 jbh->decStrong((void*)android_os_Binder_init);
Jeff Brown582763a2010-03-24 18:56:57 -0700778 } else {
779 // Encountering an uninitialized binder is harmless. All it means is that
780 // the Binder was only partially initialized when its finalizer ran and called
781 // destroy(). The Binder could be partially initialized for several reasons.
782 // For example, a Binder subclass constructor might have thrown an exception before
783 // it could delegate to its superclass's constructor. Consequently init() would
784 // not have been called and the holder pointer would remain NULL.
Steve Block71f2cf12011-10-20 11:56:00 +0100785 ALOGV("Java Binder %p: ignoring uninitialized binder", obj);
Jeff Brown582763a2010-03-24 18:56:57 -0700786 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800787}
788
789// ----------------------------------------------------------------------------
790
791static const JNINativeMethod gBinderMethods[] = {
792 /* name, signature, funcPtr */
793 { "getCallingPid", "()I", (void*)android_os_Binder_getCallingPid },
794 { "getCallingUid", "()I", (void*)android_os_Binder_getCallingUid },
795 { "clearCallingIdentity", "()J", (void*)android_os_Binder_clearCallingIdentity },
796 { "restoreCallingIdentity", "(J)V", (void*)android_os_Binder_restoreCallingIdentity },
Brad Fitzpatrick727de402010-07-07 16:06:39 -0700797 { "setThreadStrictModePolicy", "(I)V", (void*)android_os_Binder_setThreadStrictModePolicy },
798 { "getThreadStrictModePolicy", "()I", (void*)android_os_Binder_getThreadStrictModePolicy },
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800799 { "flushPendingCommands", "()V", (void*)android_os_Binder_flushPendingCommands },
800 { "init", "()V", (void*)android_os_Binder_init },
801 { "destroy", "()V", (void*)android_os_Binder_destroy }
802};
803
804const char* const kBinderPathName = "android/os/Binder";
805
806static int int_register_android_os_Binder(JNIEnv* env)
807{
808 jclass clazz;
809
810 clazz = env->FindClass(kBinderPathName);
811 LOG_FATAL_IF(clazz == NULL, "Unable to find class android.os.Binder");
812
813 gBinderOffsets.mClass = (jclass) env->NewGlobalRef(clazz);
814 gBinderOffsets.mExecTransact
815 = env->GetMethodID(clazz, "execTransact", "(IIII)Z");
816 assert(gBinderOffsets.mExecTransact);
817
818 gBinderOffsets.mObject
819 = env->GetFieldID(clazz, "mObject", "I");
820 assert(gBinderOffsets.mObject);
821
822 return AndroidRuntime::registerNativeMethods(
823 env, kBinderPathName,
824 gBinderMethods, NELEM(gBinderMethods));
825}
826
827// ****************************************************************************
828// ****************************************************************************
829// ****************************************************************************
830
831namespace android {
832
833jint android_os_Debug_getLocalObjectCount(JNIEnv* env, jobject clazz)
834{
835 return gNumLocalRefs;
836}
837
838jint android_os_Debug_getProxyObjectCount(JNIEnv* env, jobject clazz)
839{
840 return gNumProxyRefs;
841}
842
843jint android_os_Debug_getDeathObjectCount(JNIEnv* env, jobject clazz)
844{
845 return gNumDeathRefs;
846}
847
848}
849
850// ****************************************************************************
851// ****************************************************************************
852// ****************************************************************************
853
854static jobject android_os_BinderInternal_getContextObject(JNIEnv* env, jobject clazz)
855{
856 sp<IBinder> b = ProcessState::self()->getContextObject(NULL);
857 return javaObjectForIBinder(env, b);
858}
859
860static void android_os_BinderInternal_joinThreadPool(JNIEnv* env, jobject clazz)
861{
862 sp<IBinder> b = ProcessState::self()->getContextObject(NULL);
863 android::IPCThreadState::self()->joinThreadPool();
864}
865
Dianne Hackborn887f3552009-12-07 17:59:37 -0800866static void android_os_BinderInternal_disableBackgroundScheduling(JNIEnv* env,
867 jobject clazz, jboolean disable)
868{
869 IPCThreadState::disableBackgroundScheduling(disable ? true : false);
870}
871
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800872static void android_os_BinderInternal_handleGc(JNIEnv* env, jobject clazz)
873{
Steve Block71f2cf12011-10-20 11:56:00 +0100874 ALOGV("Gc has executed, clearing binder ops");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800875 android_atomic_and(0, &gNumRefsCreated);
876}
877
878// ----------------------------------------------------------------------------
879
880static const JNINativeMethod gBinderInternalMethods[] = {
881 /* name, signature, funcPtr */
882 { "getContextObject", "()Landroid/os/IBinder;", (void*)android_os_BinderInternal_getContextObject },
883 { "joinThreadPool", "()V", (void*)android_os_BinderInternal_joinThreadPool },
Dianne Hackborn887f3552009-12-07 17:59:37 -0800884 { "disableBackgroundScheduling", "(Z)V", (void*)android_os_BinderInternal_disableBackgroundScheduling },
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800885 { "handleGc", "()V", (void*)android_os_BinderInternal_handleGc }
886};
887
888const char* const kBinderInternalPathName = "com/android/internal/os/BinderInternal";
889
890static int int_register_android_os_BinderInternal(JNIEnv* env)
891{
892 jclass clazz;
893
894 clazz = env->FindClass(kBinderInternalPathName);
895 LOG_FATAL_IF(clazz == NULL, "Unable to find class com.android.internal.os.BinderInternal");
896
897 gBinderInternalOffsets.mClass = (jclass) env->NewGlobalRef(clazz);
898 gBinderInternalOffsets.mForceGc
899 = env->GetStaticMethodID(clazz, "forceBinderGc", "()V");
900 assert(gBinderInternalOffsets.mForceGc);
901
902 return AndroidRuntime::registerNativeMethods(
903 env, kBinderInternalPathName,
904 gBinderInternalMethods, NELEM(gBinderInternalMethods));
905}
906
907// ****************************************************************************
908// ****************************************************************************
909// ****************************************************************************
910
911static jboolean android_os_BinderProxy_pingBinder(JNIEnv* env, jobject obj)
912{
913 IBinder* target = (IBinder*)
914 env->GetIntField(obj, gBinderProxyOffsets.mObject);
915 if (target == NULL) {
916 return JNI_FALSE;
917 }
918 status_t err = target->pingBinder();
919 return err == NO_ERROR ? JNI_TRUE : JNI_FALSE;
920}
921
922static jstring android_os_BinderProxy_getInterfaceDescriptor(JNIEnv* env, jobject obj)
923{
924 IBinder* target = (IBinder*) env->GetIntField(obj, gBinderProxyOffsets.mObject);
925 if (target != NULL) {
Brad Fitzpatrick2c5da312010-03-24 16:14:09 -0700926 const String16& desc = target->getInterfaceDescriptor();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800927 return env->NewString(desc.string(), desc.size());
928 }
929 jniThrowException(env, "java/lang/RuntimeException",
930 "No binder found for object");
931 return NULL;
932}
933
934static jboolean android_os_BinderProxy_isBinderAlive(JNIEnv* env, jobject obj)
935{
936 IBinder* target = (IBinder*)
937 env->GetIntField(obj, gBinderProxyOffsets.mObject);
938 if (target == NULL) {
939 return JNI_FALSE;
940 }
941 bool alive = target->isBinderAlive();
942 return alive ? JNI_TRUE : JNI_FALSE;
943}
944
Brad Fitzpatrick2c5da312010-03-24 16:14:09 -0700945static int getprocname(pid_t pid, char *buf, size_t len) {
946 char filename[20];
947 FILE *f;
948
949 sprintf(filename, "/proc/%d/cmdline", pid);
950 f = fopen(filename, "r");
951 if (!f) { *buf = '\0'; return 1; }
952 if (!fgets(buf, len, f)) { *buf = '\0'; return 2; }
953 fclose(f);
954 return 0;
955}
956
957static bool push_eventlog_string(char** pos, const char* end, const char* str) {
958 jint len = strlen(str);
959 int space_needed = 1 + sizeof(len) + len;
960 if (end - *pos < space_needed) {
Steve Block8564c8d2012-01-05 23:22:43 +0000961 ALOGW("not enough space for string. remain=%d; needed=%d",
Brad Fitzpatrick2c5da312010-03-24 16:14:09 -0700962 (end - *pos), space_needed);
963 return false;
964 }
965 **pos = EVENT_TYPE_STRING;
966 (*pos)++;
967 memcpy(*pos, &len, sizeof(len));
968 *pos += sizeof(len);
969 memcpy(*pos, str, len);
970 *pos += len;
971 return true;
972}
973
974static bool push_eventlog_int(char** pos, const char* end, jint val) {
975 int space_needed = 1 + sizeof(val);
976 if (end - *pos < space_needed) {
Steve Block8564c8d2012-01-05 23:22:43 +0000977 ALOGW("not enough space for int. remain=%d; needed=%d",
Brad Fitzpatrick2c5da312010-03-24 16:14:09 -0700978 (end - *pos), space_needed);
979 return false;
980 }
981 **pos = EVENT_TYPE_INT;
982 (*pos)++;
983 memcpy(*pos, &val, sizeof(val));
984 *pos += sizeof(val);
985 return true;
986}
987
988// From frameworks/base/core/java/android/content/EventLogTags.logtags:
Jeff Sharkey2b4d22c2013-04-26 10:52:00 -0700989#define ENABLE_BINDER_SAMPLE 0
Brad Fitzpatrick2c5da312010-03-24 16:14:09 -0700990#define LOGTAG_BINDER_OPERATION 52004
991
992static void conditionally_log_binder_call(int64_t start_millis,
993 IBinder* target, jint code) {
994 int duration_ms = static_cast<int>(uptimeMillis() - start_millis);
995
996 int sample_percent;
997 if (duration_ms >= 500) {
998 sample_percent = 100;
999 } else {
1000 sample_percent = 100 * duration_ms / 500;
1001 if (sample_percent == 0) {
1002 return;
1003 }
1004 if (sample_percent < (random() % 100 + 1)) {
1005 return;
1006 }
1007 }
1008
1009 char process_name[40];
1010 getprocname(getpid(), process_name, sizeof(process_name));
1011 String8 desc(target->getInterfaceDescriptor());
1012
1013 char buf[LOGGER_ENTRY_MAX_PAYLOAD];
1014 buf[0] = EVENT_TYPE_LIST;
1015 buf[1] = 5;
1016 char* pos = &buf[2];
1017 char* end = &buf[LOGGER_ENTRY_MAX_PAYLOAD - 1]; // leave room for final \n
1018 if (!push_eventlog_string(&pos, end, desc.string())) return;
1019 if (!push_eventlog_int(&pos, end, code)) return;
1020 if (!push_eventlog_int(&pos, end, duration_ms)) return;
1021 if (!push_eventlog_string(&pos, end, process_name)) return;
1022 if (!push_eventlog_int(&pos, end, sample_percent)) return;
1023 *(pos++) = '\n'; // conventional with EVENT_TYPE_LIST apparently.
1024 android_bWriteLog(LOGTAG_BINDER_OPERATION, buf, pos - buf);
1025}
1026
Brad Fitzpatrickad8fd282010-03-25 02:01:32 -07001027// We only measure binder call durations to potentially log them if
1028// we're on the main thread. Unfortunately sim-eng doesn't seem to
1029// have gettid, so we just ignore this and don't log if we can't
1030// get the thread id.
1031static bool should_time_binder_calls() {
Brad Fitzpatrick5348c012010-03-25 12:43:56 -07001032#ifdef HAVE_GETTID
1033 return (getpid() == androidGetTid());
Brad Fitzpatrickad8fd282010-03-25 02:01:32 -07001034#else
1035#warning no gettid(), so not logging Binder calls...
1036 return false;
1037#endif
1038}
1039
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001040static jboolean android_os_BinderProxy_transact(JNIEnv* env, jobject obj,
Jeff Brown0bde66a2011-11-07 12:50:08 -08001041 jint code, jobject dataObj, jobject replyObj, jint flags) // throws RemoteException
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001042{
1043 if (dataObj == NULL) {
Elliott Hughes69a017b2011-04-08 14:10:28 -07001044 jniThrowNullPointerException(env, NULL);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001045 return JNI_FALSE;
1046 }
1047
1048 Parcel* data = parcelForJavaObject(env, dataObj);
1049 if (data == NULL) {
1050 return JNI_FALSE;
1051 }
1052 Parcel* reply = parcelForJavaObject(env, replyObj);
1053 if (reply == NULL && replyObj != NULL) {
1054 return JNI_FALSE;
1055 }
1056
1057 IBinder* target = (IBinder*)
1058 env->GetIntField(obj, gBinderProxyOffsets.mObject);
1059 if (target == NULL) {
1060 jniThrowException(env, "java/lang/IllegalStateException", "Binder has been finalized!");
1061 return JNI_FALSE;
1062 }
1063
Steve Block71f2cf12011-10-20 11:56:00 +01001064 ALOGV("Java code calling transact on %p in Java object %p with code %d\n",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001065 target, obj, code);
Brad Fitzpatrick2c5da312010-03-24 16:14:09 -07001066
Jeff Sharkey2b4d22c2013-04-26 10:52:00 -07001067#if ENABLE_BINDER_SAMPLE
Brad Fitzpatrick2c5da312010-03-24 16:14:09 -07001068 // Only log the binder call duration for things on the Java-level main thread.
Brad Fitzpatrickad8fd282010-03-25 02:01:32 -07001069 // But if we don't
1070 const bool time_binder_calls = should_time_binder_calls();
1071
Brad Fitzpatrick2c5da312010-03-24 16:14:09 -07001072 int64_t start_millis;
Brad Fitzpatrickad8fd282010-03-25 02:01:32 -07001073 if (time_binder_calls) {
Brad Fitzpatrick2c5da312010-03-24 16:14:09 -07001074 start_millis = uptimeMillis();
1075 }
Jeff Sharkey2b4d22c2013-04-26 10:52:00 -07001076#endif
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001077 //printf("Transact from Java code to %p sending: ", target); data->print();
1078 status_t err = target->transact(code, *data, reply, flags);
1079 //if (reply) printf("Transact from Java code to %p received: ", target); reply->print();
Jeff Sharkey2b4d22c2013-04-26 10:52:00 -07001080#if ENABLE_BINDER_SAMPLE
Brad Fitzpatrickad8fd282010-03-25 02:01:32 -07001081 if (time_binder_calls) {
Brad Fitzpatrick2c5da312010-03-24 16:14:09 -07001082 conditionally_log_binder_call(start_millis, target, code);
1083 }
Jeff Sharkey2b4d22c2013-04-26 10:52:00 -07001084#endif
Brad Fitzpatrick2c5da312010-03-24 16:14:09 -07001085
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001086 if (err == NO_ERROR) {
1087 return JNI_TRUE;
1088 } else if (err == UNKNOWN_TRANSACTION) {
1089 return JNI_FALSE;
1090 }
1091
Jeff Brown0bde66a2011-11-07 12:50:08 -08001092 signalExceptionForError(env, obj, err, true /*canThrowRemoteException*/);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001093 return JNI_FALSE;
1094}
1095
1096static void android_os_BinderProxy_linkToDeath(JNIEnv* env, jobject obj,
Jeff Brown0bde66a2011-11-07 12:50:08 -08001097 jobject recipient, jint flags) // throws RemoteException
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001098{
1099 if (recipient == NULL) {
Elliott Hughes69a017b2011-04-08 14:10:28 -07001100 jniThrowNullPointerException(env, NULL);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001101 return;
1102 }
1103
1104 IBinder* target = (IBinder*)
1105 env->GetIntField(obj, gBinderProxyOffsets.mObject);
1106 if (target == NULL) {
Steve Block8564c8d2012-01-05 23:22:43 +00001107 ALOGW("Binder has been finalized when calling linkToDeath() with recip=%p)\n", recipient);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001108 assert(false);
1109 }
1110
Christopher Tate79dd31f2011-03-04 17:45:00 -08001111 LOGDEATH("linkToDeath: binder=%p recipient=%p\n", target, recipient);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001112
1113 if (!target->localBinder()) {
Christopher Tatebd8b6f22011-03-01 11:55:27 -08001114 DeathRecipientList* list = (DeathRecipientList*)
1115 env->GetIntField(obj, gBinderProxyOffsets.mOrgue);
1116 sp<JavaDeathRecipient> jdr = new JavaDeathRecipient(env, recipient, list);
Christopher Tate0b414482011-02-17 13:00:38 -08001117 status_t err = target->linkToDeath(jdr, NULL, flags);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001118 if (err != NO_ERROR) {
1119 // Failure adding the death recipient, so clear its reference
1120 // now.
1121 jdr->clearReference();
Jeff Brown0bde66a2011-11-07 12:50:08 -08001122 signalExceptionForError(env, obj, err, true /*canThrowRemoteException*/);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001123 }
1124 }
1125}
1126
1127static jboolean android_os_BinderProxy_unlinkToDeath(JNIEnv* env, jobject obj,
1128 jobject recipient, jint flags)
1129{
1130 jboolean res = JNI_FALSE;
1131 if (recipient == NULL) {
Elliott Hughes69a017b2011-04-08 14:10:28 -07001132 jniThrowNullPointerException(env, NULL);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001133 return res;
1134 }
1135
1136 IBinder* target = (IBinder*)
1137 env->GetIntField(obj, gBinderProxyOffsets.mObject);
1138 if (target == NULL) {
Steve Block8564c8d2012-01-05 23:22:43 +00001139 ALOGW("Binder has been finalized when calling linkToDeath() with recip=%p)\n", recipient);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001140 return JNI_FALSE;
1141 }
1142
Christopher Tate79dd31f2011-03-04 17:45:00 -08001143 LOGDEATH("unlinkToDeath: binder=%p recipient=%p\n", target, recipient);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001144
1145 if (!target->localBinder()) {
Christopher Tate0b414482011-02-17 13:00:38 -08001146 status_t err = NAME_NOT_FOUND;
Christopher Tatebd8b6f22011-03-01 11:55:27 -08001147
1148 // If we find the matching recipient, proceed to unlink using that
1149 DeathRecipientList* list = (DeathRecipientList*)
1150 env->GetIntField(obj, gBinderProxyOffsets.mOrgue);
1151 sp<JavaDeathRecipient> origJDR = list->find(recipient);
Christopher Tate79dd31f2011-03-04 17:45:00 -08001152 LOGDEATH(" unlink found list %p and JDR %p", list, origJDR.get());
Christopher Tate0b414482011-02-17 13:00:38 -08001153 if (origJDR != NULL) {
1154 wp<IBinder::DeathRecipient> dr;
1155 err = target->unlinkToDeath(origJDR, NULL, flags, &dr);
1156 if (err == NO_ERROR && dr != NULL) {
1157 sp<IBinder::DeathRecipient> sdr = dr.promote();
1158 JavaDeathRecipient* jdr = static_cast<JavaDeathRecipient*>(sdr.get());
1159 if (jdr != NULL) {
1160 jdr->clearReference();
1161 }
1162 }
1163 }
1164
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001165 if (err == NO_ERROR || err == DEAD_OBJECT) {
1166 res = JNI_TRUE;
1167 } else {
1168 jniThrowException(env, "java/util/NoSuchElementException",
1169 "Death link does not exist");
1170 }
1171 }
1172
1173 return res;
1174}
1175
1176static void android_os_BinderProxy_destroy(JNIEnv* env, jobject obj)
1177{
1178 IBinder* b = (IBinder*)
Christopher Tatebd8b6f22011-03-01 11:55:27 -08001179 env->GetIntField(obj, gBinderProxyOffsets.mObject);
1180 DeathRecipientList* drl = (DeathRecipientList*)
1181 env->GetIntField(obj, gBinderProxyOffsets.mOrgue);
Christopher Tate0b414482011-02-17 13:00:38 -08001182
Christopher Tate79dd31f2011-03-04 17:45:00 -08001183 LOGDEATH("Destroying BinderProxy %p: binder=%p drl=%p\n", obj, b, drl);
Christopher Tatebd8b6f22011-03-01 11:55:27 -08001184 env->SetIntField(obj, gBinderProxyOffsets.mObject, 0);
1185 env->SetIntField(obj, gBinderProxyOffsets.mOrgue, 0);
1186 drl->decStrong((void*)javaObjectForIBinder);
Mathias Agopianb1d90c82013-03-06 17:45:42 -08001187 b->decStrong((void*)javaObjectForIBinder);
Christopher Tatebd8b6f22011-03-01 11:55:27 -08001188
1189 IPCThreadState::self()->flushCommands();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001190}
1191
1192// ----------------------------------------------------------------------------
1193
1194static const JNINativeMethod gBinderProxyMethods[] = {
1195 /* name, signature, funcPtr */
1196 {"pingBinder", "()Z", (void*)android_os_BinderProxy_pingBinder},
1197 {"isBinderAlive", "()Z", (void*)android_os_BinderProxy_isBinderAlive},
1198 {"getInterfaceDescriptor", "()Ljava/lang/String;", (void*)android_os_BinderProxy_getInterfaceDescriptor},
1199 {"transact", "(ILandroid/os/Parcel;Landroid/os/Parcel;I)Z", (void*)android_os_BinderProxy_transact},
1200 {"linkToDeath", "(Landroid/os/IBinder$DeathRecipient;I)V", (void*)android_os_BinderProxy_linkToDeath},
1201 {"unlinkToDeath", "(Landroid/os/IBinder$DeathRecipient;I)Z", (void*)android_os_BinderProxy_unlinkToDeath},
1202 {"destroy", "()V", (void*)android_os_BinderProxy_destroy},
1203};
1204
1205const char* const kBinderProxyPathName = "android/os/BinderProxy";
1206
1207static int int_register_android_os_BinderProxy(JNIEnv* env)
1208{
1209 jclass clazz;
1210
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001211 clazz = env->FindClass("java/lang/Error");
1212 LOG_FATAL_IF(clazz == NULL, "Unable to find class java.lang.Error");
1213 gErrorOffsets.mClass = (jclass) env->NewGlobalRef(clazz);
Elliott Hughes69a017b2011-04-08 14:10:28 -07001214
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001215 clazz = env->FindClass(kBinderProxyPathName);
1216 LOG_FATAL_IF(clazz == NULL, "Unable to find class android.os.BinderProxy");
1217
1218 gBinderProxyOffsets.mClass = (jclass) env->NewGlobalRef(clazz);
1219 gBinderProxyOffsets.mConstructor
1220 = env->GetMethodID(clazz, "<init>", "()V");
1221 assert(gBinderProxyOffsets.mConstructor);
1222 gBinderProxyOffsets.mSendDeathNotice
1223 = env->GetStaticMethodID(clazz, "sendDeathNotice", "(Landroid/os/IBinder$DeathRecipient;)V");
1224 assert(gBinderProxyOffsets.mSendDeathNotice);
1225
1226 gBinderProxyOffsets.mObject
1227 = env->GetFieldID(clazz, "mObject", "I");
1228 assert(gBinderProxyOffsets.mObject);
1229 gBinderProxyOffsets.mSelf
1230 = env->GetFieldID(clazz, "mSelf", "Ljava/lang/ref/WeakReference;");
1231 assert(gBinderProxyOffsets.mSelf);
Christopher Tatebd8b6f22011-03-01 11:55:27 -08001232 gBinderProxyOffsets.mOrgue
1233 = env->GetFieldID(clazz, "mOrgue", "I");
1234 assert(gBinderProxyOffsets.mOrgue);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001235
Christopher Tate0d4a7922011-08-30 12:09:43 -07001236 clazz = env->FindClass("java/lang/Class");
1237 LOG_FATAL_IF(clazz == NULL, "Unable to find java.lang.Class");
1238 gClassOffsets.mGetName = env->GetMethodID(clazz, "getName", "()Ljava/lang/String;");
1239 assert(gClassOffsets.mGetName);
1240
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001241 return AndroidRuntime::registerNativeMethods(
1242 env, kBinderProxyPathName,
1243 gBinderProxyMethods, NELEM(gBinderProxyMethods));
1244}
1245
1246// ****************************************************************************
1247// ****************************************************************************
1248// ****************************************************************************
1249
Jeff Sharkeyd84e1ce2012-03-06 18:26:19 -08001250int register_android_os_Binder(JNIEnv* env)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001251{
Jeff Sharkeyd84e1ce2012-03-06 18:26:19 -08001252 if (int_register_android_os_Binder(env) < 0)
1253 return -1;
1254 if (int_register_android_os_BinderInternal(env) < 0)
1255 return -1;
1256 if (int_register_android_os_BinderProxy(env) < 0)
1257 return -1;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001258
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001259 jclass clazz;
1260
1261 clazz = env->FindClass("android/util/Log");
1262 LOG_FATAL_IF(clazz == NULL, "Unable to find class android.util.Log");
1263 gLogOffsets.mClass = (jclass) env->NewGlobalRef(clazz);
1264 gLogOffsets.mLogE = env->GetStaticMethodID(
1265 clazz, "e", "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)I");
1266 assert(gLogOffsets.mLogE);
1267
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001268 clazz = env->FindClass("android/os/ParcelFileDescriptor");
1269 LOG_FATAL_IF(clazz == NULL, "Unable to find class android.os.ParcelFileDescriptor");
1270 gParcelFileDescriptorOffsets.mClass = (jclass) env->NewGlobalRef(clazz);
1271 gParcelFileDescriptorOffsets.mConstructor
1272 = env->GetMethodID(clazz, "<init>", "(Ljava/io/FileDescriptor;)V");
1273
Brad Fitzpatrick727de402010-07-07 16:06:39 -07001274 clazz = env->FindClass("android/os/StrictMode");
1275 LOG_FATAL_IF(clazz == NULL, "Unable to find class android.os.StrictMode");
1276 gStrictModeCallbackOffsets.mClass = (jclass) env->NewGlobalRef(clazz);
1277 gStrictModeCallbackOffsets.mCallback = env->GetStaticMethodID(
1278 clazz, "onBinderStrictModePolicyChange", "(I)V");
1279 LOG_FATAL_IF(gStrictModeCallbackOffsets.mCallback == NULL,
1280 "Unable to find strict mode callback.");
1281
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001282 return 0;
1283}