blob: 7b9141840da24871ad3c840aeb336a06ab234151 [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) {
299 dump(fd, pw, args);
300 } else {
301 pw.println(sDumpDisabled);
302 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800303 } finally {
304 pw.flush();
305 }
306 }
307
308 /**
Dianne Hackborne17aeb32011-04-07 15:11:57 -0700309 * Like {@link #dump(FileDescriptor, String[])}, but ensures the target
310 * executes asynchronously.
311 */
312 public void dumpAsync(final FileDescriptor fd, final String[] args) {
313 final FileOutputStream fout = new FileOutputStream(fd);
Dianne Hackborndb4e33f2013-04-01 17:28:16 -0700314 final PrintWriter pw = new FastPrintWriter(fout);
Dianne Hackborne17aeb32011-04-07 15:11:57 -0700315 Thread thr = new Thread("Binder.dumpAsync") {
316 public void run() {
317 try {
318 dump(fd, pw, args);
319 } finally {
320 pw.flush();
321 }
322 }
323 };
324 thr.start();
325 }
326
327 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800328 * Print the object's state into the given stream.
329 *
330 * @param fd The raw file descriptor that the dump is being sent to.
331 * @param fout The file to which you should dump your state. This will be
332 * closed for you after you return.
333 * @param args additional arguments to the dump request.
334 */
335 protected void dump(FileDescriptor fd, PrintWriter fout, String[] args) {
336 }
337
338 /**
339 * Default implementation rewinds the parcels and calls onTransact. On
340 * the remote side, transact calls into the binder to do the IPC.
341 */
342 public final boolean transact(int code, Parcel data, Parcel reply,
343 int flags) throws RemoteException {
Joe Onorato43a17652011-04-06 19:22:23 -0700344 if (false) Log.v("Binder", "Transact: " + code + " to " + this);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800345 if (data != null) {
346 data.setDataPosition(0);
347 }
348 boolean r = onTransact(code, data, reply, flags);
349 if (reply != null) {
350 reply.setDataPosition(0);
351 }
352 return r;
353 }
354
355 /**
356 * Local implementation is a no-op.
357 */
358 public void linkToDeath(DeathRecipient recipient, int flags) {
359 }
360
361 /**
362 * Local implementation is a no-op.
363 */
364 public boolean unlinkToDeath(DeathRecipient recipient, int flags) {
365 return true;
366 }
367
368 protected void finalize() throws Throwable {
369 try {
370 destroy();
371 } finally {
372 super.finalize();
373 }
374 }
375
376 private native final void init();
377 private native final void destroy();
Brad Fitzpatrick5b747192010-07-12 11:05:38 -0700378
379 // Entry point from android_util_Binder.cpp's onTransact
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800380 private boolean execTransact(int code, int dataObj, int replyObj,
381 int flags) {
382 Parcel data = Parcel.obtain(dataObj);
383 Parcel reply = Parcel.obtain(replyObj);
384 // theoretically, we should call transact, which will call onTransact,
385 // but all that does is rewind it, and we just got these from an IPC,
386 // so we'll just call it directly.
387 boolean res;
388 try {
389 res = onTransact(code, data, reply, flags);
390 } catch (RemoteException e) {
Jeff Sharkey7f97e652011-12-14 18:07:54 -0800391 reply.setDataPosition(0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800392 reply.writeException(e);
393 res = true;
394 } catch (RuntimeException e) {
Jeff Sharkey7f97e652011-12-14 18:07:54 -0800395 reply.setDataPosition(0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800396 reply.writeException(e);
397 res = true;
Mattias Petersson19f22742010-11-05 08:25:38 +0100398 } catch (OutOfMemoryError e) {
399 RuntimeException re = new RuntimeException("Out of memory", e);
Jeff Sharkey7f97e652011-12-14 18:07:54 -0800400 reply.setDataPosition(0);
Mattias Petersson19f22742010-11-05 08:25:38 +0100401 reply.writeException(re);
402 res = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800403 }
404 reply.recycle();
405 data.recycle();
406 return res;
407 }
408}
409
410final class BinderProxy implements IBinder {
411 public native boolean pingBinder();
412 public native boolean isBinderAlive();
413
414 public IInterface queryLocalInterface(String descriptor) {
415 return null;
416 }
417
418 public native String getInterfaceDescriptor() throws RemoteException;
419 public native boolean transact(int code, Parcel data, Parcel reply,
420 int flags) throws RemoteException;
421 public native void linkToDeath(DeathRecipient recipient, int flags)
422 throws RemoteException;
423 public native boolean unlinkToDeath(DeathRecipient recipient, int flags);
424
425 public void dump(FileDescriptor fd, String[] args) throws RemoteException {
426 Parcel data = Parcel.obtain();
Brad Fitzpatrickeb75888e2010-07-26 17:47:45 -0700427 Parcel reply = Parcel.obtain();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800428 data.writeFileDescriptor(fd);
429 data.writeStringArray(args);
430 try {
Brad Fitzpatrickeb75888e2010-07-26 17:47:45 -0700431 transact(DUMP_TRANSACTION, data, reply, 0);
432 reply.readException();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800433 } finally {
434 data.recycle();
Brad Fitzpatrickeb75888e2010-07-26 17:47:45 -0700435 reply.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800436 }
437 }
438
Dianne Hackborne17aeb32011-04-07 15:11:57 -0700439 public void dumpAsync(FileDescriptor fd, String[] args) throws RemoteException {
440 Parcel data = Parcel.obtain();
441 Parcel reply = Parcel.obtain();
442 data.writeFileDescriptor(fd);
443 data.writeStringArray(args);
444 try {
445 transact(DUMP_TRANSACTION, data, reply, FLAG_ONEWAY);
446 reply.readException();
447 } finally {
448 data.recycle();
449 reply.recycle();
450 }
451 }
452
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800453 BinderProxy() {
454 mSelf = new WeakReference(this);
455 }
456
457 @Override
458 protected void finalize() throws Throwable {
459 try {
460 destroy();
461 } finally {
462 super.finalize();
463 }
464 }
465
466 private native final void destroy();
467
468 private static final void sendDeathNotice(DeathRecipient recipient) {
Joe Onorato43a17652011-04-06 19:22:23 -0700469 if (false) Log.v("JavaBinder", "sendDeathNotice to " + recipient);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800470 try {
471 recipient.binderDied();
472 }
473 catch (RuntimeException exc) {
474 Log.w("BinderNative", "Uncaught exception from death notification",
475 exc);
476 }
477 }
478
479 final private WeakReference mSelf;
480 private int mObject;
Christopher Tatebd8b6f22011-03-01 11:55:27 -0800481 private int mOrgue;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800482}