blob: 4627c885288c001c07c8d5ac99ae833645542791 [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
17package android.os;
18
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080019import android.util.Log;
Dianne Hackborndb4e33f2013-04-01 17:28:16 -070020import com.android.internal.util.FastPrintWriter;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080021
22import java.io.FileDescriptor;
23import java.io.FileOutputStream;
24import java.io.IOException;
25import java.io.PrintWriter;
26import java.lang.ref.WeakReference;
27import java.lang.reflect.Modifier;
28
29/**
30 * Base class for a remotable object, the core part of a lightweight
31 * remote procedure call mechanism defined by {@link IBinder}.
32 * This class is an implementation of IBinder that provides
33 * the standard support creating a local implementation of such an object.
34 *
35 * <p>Most developers will not implement this class directly, instead using the
Scott Main40eee612012-08-06 17:48:37 -070036 * <a href="{@docRoot}guide/components/aidl.html">aidl</a> tool to describe the desired
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080037 * interface, having it generate the appropriate Binder subclass. You can,
38 * however, derive directly from Binder to implement your own custom RPC
39 * protocol or simply instantiate a raw Binder object directly to use as a
40 * token that can be shared across processes.
41 *
42 * @see IBinder
43 */
44public class Binder implements IBinder {
45 /*
46 * Set this flag to true to detect anonymous, local or member classes
47 * that extend this Binder class and that are not static. These kind
48 * of classes can potentially create leaks.
49 */
50 private static final boolean FIND_POTENTIAL_LEAKS = false;
51 private static final String TAG = "Binder";
52
Dianne Hackborn5b88a2f2013-05-03 16:25:11 -070053 /**
54 * Control whether dump() calls are allowed.
55 */
56 private static String sDumpDisabled = null;
57
Amith Yamasani742a6712011-05-04 14:49:28 -070058 /* mObject is used by native code, do not remove or rename */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080059 private int mObject;
60 private IInterface mOwner;
61 private String mDescriptor;
62
63 /**
64 * Return the ID of the process that sent you the current transaction
65 * that is being processed. This pid can be used with higher-level
66 * system services to determine its identity and check permissions.
67 * If the current thread is not currently executing an incoming transaction,
68 * then its own pid is returned.
69 */
70 public static final native int getCallingPid();
71
72 /**
Dianne Hackborn74ee8652012-09-07 18:33:18 -070073 * Return the Linux uid assigned to the process that sent you the
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080074 * current transaction that is being processed. This uid can be used with
75 * higher-level system services to determine its identity and check
76 * permissions. If the current thread is not currently executing an
77 * incoming transaction, then its own uid is returned.
78 */
79 public static final native int getCallingUid();
Amith Yamasani742a6712011-05-04 14:49:28 -070080
81 /**
Dianne Hackborn74ee8652012-09-07 18:33:18 -070082 * Return the UserHandle assigned to the process that sent you the
83 * current transaction that is being processed. This is the user
84 * of the caller. It is distinct from {@link #getCallingUid()} in that a
85 * particular user will have multiple distinct apps running under it each
86 * with their own uid. If the current thread is not currently executing an
87 * incoming transaction, then its own UserHandle is returned.
88 */
89 public static final UserHandle getCallingUserHandle() {
90 return new UserHandle(UserHandle.getUserId(getCallingUid()));
91 }
92
93 /**
Brad Fitzpatricka0527f22010-03-25 20:40:34 -070094 * Reset the identity of the incoming IPC on the current thread. This can
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080095 * be useful if, while handling an incoming call, you will be calling
96 * on interfaces of other objects that may be local to your process and
97 * need to do permission checks on the calls coming into them (so they
98 * will check the permission of your own local process, and not whatever
99 * process originally called you).
Brad Fitzpatricka0527f22010-03-25 20:40:34 -0700100 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800101 * @return Returns an opaque token that can be used to restore the
102 * original calling identity by passing it to
103 * {@link #restoreCallingIdentity(long)}.
Brad Fitzpatricka0527f22010-03-25 20:40:34 -0700104 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800105 * @see #getCallingPid()
106 * @see #getCallingUid()
107 * @see #restoreCallingIdentity(long)
108 */
109 public static final native long clearCallingIdentity();
Brad Fitzpatricka0527f22010-03-25 20:40:34 -0700110
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800111 /**
Brad Fitzpatricka0527f22010-03-25 20:40:34 -0700112 * Restore the identity of the incoming IPC on the current thread
113 * back to a previously identity that was returned by {@link
114 * #clearCallingIdentity}.
115 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800116 * @param token The opaque token that was previously returned by
117 * {@link #clearCallingIdentity}.
Brad Fitzpatricka0527f22010-03-25 20:40:34 -0700118 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800119 * @see #clearCallingIdentity
120 */
121 public static final native void restoreCallingIdentity(long token);
Brad Fitzpatrick727de402010-07-07 16:06:39 -0700122
123 /**
124 * Sets the native thread-local StrictMode policy mask.
125 *
126 * <p>The StrictMode settings are kept in two places: a Java-level
127 * threadlocal for libcore/Dalvik, and a native threadlocal (set
128 * here) for propagation via Binder calls. This is a little
129 * unfortunate, but necessary to break otherwise more unfortunate
130 * dependencies either of Dalvik on Android, or Android
131 * native-only code on Dalvik.
132 *
133 * @see StrictMode
134 * @hide
135 */
136 public static final native void setThreadStrictModePolicy(int policyMask);
137
138 /**
139 * Gets the current native thread-local StrictMode policy mask.
140 *
141 * @see #setThreadStrictModePolicy
142 * @hide
143 */
144 public static final native int getThreadStrictModePolicy();
145
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800146 /**
147 * Flush any Binder commands pending in the current thread to the kernel
148 * driver. This can be
149 * useful to call before performing an operation that may block for a long
150 * time, to ensure that any pending object references have been released
151 * in order to prevent the process from holding on to objects longer than
152 * it needs to.
153 */
154 public static final native void flushPendingCommands();
155
156 /**
157 * Add the calling thread to the IPC thread pool. This function does
158 * not return until the current process is exiting.
159 */
160 public static final native void joinThreadPool();
Jeff Brown1951ce82013-04-04 22:45:12 -0700161
162 /**
163 * Returns true if the specified interface is a proxy.
164 * @hide
165 */
166 public static final boolean isProxy(IInterface iface) {
167 return iface.asBinder() != iface;
168 }
169
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800170 /**
171 * Default constructor initializes the object.
172 */
173 public Binder() {
174 init();
175
176 if (FIND_POTENTIAL_LEAKS) {
177 final Class<? extends Binder> klass = getClass();
178 if ((klass.isAnonymousClass() || klass.isMemberClass() || klass.isLocalClass()) &&
179 (klass.getModifiers() & Modifier.STATIC) == 0) {
180 Log.w(TAG, "The following Binder class should be static or leaks might occur: " +
181 klass.getCanonicalName());
182 }
183 }
184 }
185
186 /**
187 * Convenience method for associating a specific interface with the Binder.
188 * After calling, queryLocalInterface() will be implemented for you
189 * to return the given owner IInterface when the corresponding
190 * descriptor is requested.
191 */
192 public void attachInterface(IInterface owner, String descriptor) {
193 mOwner = owner;
194 mDescriptor = descriptor;
195 }
196
197 /**
198 * Default implementation returns an empty interface name.
199 */
200 public String getInterfaceDescriptor() {
201 return mDescriptor;
202 }
203
204 /**
205 * Default implementation always returns true -- if you got here,
206 * the object is alive.
207 */
208 public boolean pingBinder() {
209 return true;
210 }
211
212 /**
213 * {@inheritDoc}
214 *
215 * Note that if you're calling on a local binder, this always returns true
216 * because your process is alive if you're calling it.
217 */
218 public boolean isBinderAlive() {
219 return true;
220 }
221
222 /**
223 * Use information supplied to attachInterface() to return the
224 * associated IInterface if it matches the requested
225 * descriptor.
226 */
227 public IInterface queryLocalInterface(String descriptor) {
228 if (mDescriptor.equals(descriptor)) {
229 return mOwner;
230 }
231 return null;
232 }
Dianne Hackborn5b88a2f2013-05-03 16:25:11 -0700233
234 /**
235 * Control disabling of dump calls in this process. This is used by the system
236 * process watchdog to disable incoming dump calls while it has detecting the system
237 * is hung and is reporting that back to the activity controller. This is to
238 * prevent the controller from getting hung up on bug reports at this point.
239 * @hide
240 *
241 * @param msg The message to show instead of the dump; if null, dumps are
242 * re-enabled.
243 */
244 public static void setDumpDisabled(String msg) {
245 synchronized (Binder.class) {
246 sDumpDisabled = msg;
247 }
248 }
249
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800250 /**
251 * Default implementation is a stub that returns false. You will want
252 * to override this to do the appropriate unmarshalling of transactions.
253 *
254 * <p>If you want to call this, call transact().
255 */
256 protected boolean onTransact(int code, Parcel data, Parcel reply,
257 int flags) throws RemoteException {
258 if (code == INTERFACE_TRANSACTION) {
259 reply.writeString(getInterfaceDescriptor());
260 return true;
261 } else if (code == DUMP_TRANSACTION) {
262 ParcelFileDescriptor fd = data.readFileDescriptor();
263 String[] args = data.readStringArray();
264 if (fd != null) {
265 try {
266 dump(fd.getFileDescriptor(), args);
267 } finally {
268 try {
269 fd.close();
270 } catch (IOException e) {
Brad Fitzpatrickeb75888e2010-07-26 17:47:45 -0700271 // swallowed, not propagated back to the caller
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800272 }
273 }
274 }
Brad Fitzpatrickeb75888e2010-07-26 17:47:45 -0700275 // Write the StrictMode header.
276 if (reply != null) {
277 reply.writeNoException();
278 } else {
279 StrictMode.clearGatheredViolations();
280 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800281 return true;
282 }
283 return false;
284 }
285
286 /**
287 * Implemented to call the more convenient version
288 * {@link #dump(FileDescriptor, PrintWriter, String[])}.
289 */
290 public void dump(FileDescriptor fd, String[] args) {
291 FileOutputStream fout = new FileOutputStream(fd);
Dianne Hackborndb4e33f2013-04-01 17:28:16 -0700292 PrintWriter pw = new FastPrintWriter(fout);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800293 try {
Dianne Hackborn5b88a2f2013-05-03 16:25:11 -0700294 final String disabled;
295 synchronized (Binder.class) {
296 disabled = sDumpDisabled;
297 }
298 if (disabled == null) {
Dianne Hackbornd2932242013-08-05 18:18:42 -0700299 try {
300 dump(fd, pw, args);
301 } catch (SecurityException e) {
302 pw.println();
303 pw.println("Security exception: " + e.getMessage());
304 throw e;
305 } catch (Throwable e) {
306 // Unlike usual calls, in this case if an exception gets thrown
307 // back to us we want to print it back in to the dump data, since
308 // that is where the caller expects all interesting information to
309 // go.
310 pw.println();
311 pw.println("Exception occurred while dumping:");
312 e.printStackTrace(pw);
313 }
Dianne Hackborn5b88a2f2013-05-03 16:25:11 -0700314 } else {
315 pw.println(sDumpDisabled);
316 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800317 } finally {
318 pw.flush();
319 }
320 }
321
322 /**
Dianne Hackborne17aeb32011-04-07 15:11:57 -0700323 * Like {@link #dump(FileDescriptor, String[])}, but ensures the target
324 * executes asynchronously.
325 */
326 public void dumpAsync(final FileDescriptor fd, final String[] args) {
327 final FileOutputStream fout = new FileOutputStream(fd);
Dianne Hackborndb4e33f2013-04-01 17:28:16 -0700328 final PrintWriter pw = new FastPrintWriter(fout);
Dianne Hackborne17aeb32011-04-07 15:11:57 -0700329 Thread thr = new Thread("Binder.dumpAsync") {
330 public void run() {
331 try {
332 dump(fd, pw, args);
333 } finally {
334 pw.flush();
335 }
336 }
337 };
338 thr.start();
339 }
340
341 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800342 * Print the object's state into the given stream.
343 *
344 * @param fd The raw file descriptor that the dump is being sent to.
345 * @param fout The file to which you should dump your state. This will be
346 * closed for you after you return.
347 * @param args additional arguments to the dump request.
348 */
349 protected void dump(FileDescriptor fd, PrintWriter fout, String[] args) {
350 }
351
352 /**
353 * Default implementation rewinds the parcels and calls onTransact. On
354 * the remote side, transact calls into the binder to do the IPC.
355 */
356 public final boolean transact(int code, Parcel data, Parcel reply,
357 int flags) throws RemoteException {
Joe Onorato43a17652011-04-06 19:22:23 -0700358 if (false) Log.v("Binder", "Transact: " + code + " to " + this);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800359 if (data != null) {
360 data.setDataPosition(0);
361 }
362 boolean r = onTransact(code, data, reply, flags);
363 if (reply != null) {
364 reply.setDataPosition(0);
365 }
366 return r;
367 }
368
369 /**
370 * Local implementation is a no-op.
371 */
372 public void linkToDeath(DeathRecipient recipient, int flags) {
373 }
374
375 /**
376 * Local implementation is a no-op.
377 */
378 public boolean unlinkToDeath(DeathRecipient recipient, int flags) {
379 return true;
380 }
381
382 protected void finalize() throws Throwable {
383 try {
384 destroy();
385 } finally {
386 super.finalize();
387 }
388 }
389
390 private native final void init();
391 private native final void destroy();
Brad Fitzpatrick5b747192010-07-12 11:05:38 -0700392
393 // Entry point from android_util_Binder.cpp's onTransact
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800394 private boolean execTransact(int code, int dataObj, int replyObj,
395 int flags) {
396 Parcel data = Parcel.obtain(dataObj);
397 Parcel reply = Parcel.obtain(replyObj);
398 // theoretically, we should call transact, which will call onTransact,
399 // but all that does is rewind it, and we just got these from an IPC,
400 // so we'll just call it directly.
401 boolean res;
402 try {
403 res = onTransact(code, data, reply, flags);
404 } catch (RemoteException e) {
Jeff Sharkey7f97e652011-12-14 18:07:54 -0800405 reply.setDataPosition(0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800406 reply.writeException(e);
407 res = true;
408 } catch (RuntimeException e) {
Jeff Sharkey7f97e652011-12-14 18:07:54 -0800409 reply.setDataPosition(0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800410 reply.writeException(e);
411 res = true;
Mattias Petersson19f22742010-11-05 08:25:38 +0100412 } catch (OutOfMemoryError e) {
413 RuntimeException re = new RuntimeException("Out of memory", e);
Jeff Sharkey7f97e652011-12-14 18:07:54 -0800414 reply.setDataPosition(0);
Mattias Petersson19f22742010-11-05 08:25:38 +0100415 reply.writeException(re);
416 res = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800417 }
418 reply.recycle();
419 data.recycle();
420 return res;
421 }
422}
423
424final class BinderProxy implements IBinder {
425 public native boolean pingBinder();
426 public native boolean isBinderAlive();
427
428 public IInterface queryLocalInterface(String descriptor) {
429 return null;
430 }
431
432 public native String getInterfaceDescriptor() throws RemoteException;
433 public native boolean transact(int code, Parcel data, Parcel reply,
434 int flags) throws RemoteException;
435 public native void linkToDeath(DeathRecipient recipient, int flags)
436 throws RemoteException;
437 public native boolean unlinkToDeath(DeathRecipient recipient, int flags);
438
439 public void dump(FileDescriptor fd, String[] args) throws RemoteException {
440 Parcel data = Parcel.obtain();
Brad Fitzpatrickeb75888e2010-07-26 17:47:45 -0700441 Parcel reply = Parcel.obtain();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800442 data.writeFileDescriptor(fd);
443 data.writeStringArray(args);
444 try {
Brad Fitzpatrickeb75888e2010-07-26 17:47:45 -0700445 transact(DUMP_TRANSACTION, data, reply, 0);
446 reply.readException();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800447 } finally {
448 data.recycle();
Brad Fitzpatrickeb75888e2010-07-26 17:47:45 -0700449 reply.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800450 }
451 }
452
Dianne Hackborne17aeb32011-04-07 15:11:57 -0700453 public void dumpAsync(FileDescriptor fd, String[] args) throws RemoteException {
454 Parcel data = Parcel.obtain();
455 Parcel reply = Parcel.obtain();
456 data.writeFileDescriptor(fd);
457 data.writeStringArray(args);
458 try {
459 transact(DUMP_TRANSACTION, data, reply, FLAG_ONEWAY);
Dianne Hackborne17aeb32011-04-07 15:11:57 -0700460 } finally {
461 data.recycle();
462 reply.recycle();
463 }
464 }
465
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800466 BinderProxy() {
467 mSelf = new WeakReference(this);
468 }
469
470 @Override
471 protected void finalize() throws Throwable {
472 try {
473 destroy();
474 } finally {
475 super.finalize();
476 }
477 }
478
479 private native final void destroy();
480
481 private static final void sendDeathNotice(DeathRecipient recipient) {
Joe Onorato43a17652011-04-06 19:22:23 -0700482 if (false) Log.v("JavaBinder", "sendDeathNotice to " + recipient);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800483 try {
484 recipient.binderDied();
485 }
486 catch (RuntimeException exc) {
487 Log.w("BinderNative", "Uncaught exception from death notification",
488 exc);
489 }
490 }
491
492 final private WeakReference mSelf;
493 private int mObject;
Christopher Tatebd8b6f22011-03-01 11:55:27 -0800494 private int mOrgue;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800495}