blob: 7764be794c19600d0f607fa9a8543a6e1f11d0df [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 com.android.server.am;
18
Dianne Hackbornf51f6122013-02-04 18:23:34 -080019import android.app.AppOpsManager;
Dianne Hackborna750a632015-06-16 17:18:23 -070020import android.app.BroadcastOptions;
Suchi Amalapurapu1ccac752009-06-12 10:09:58 -070021import android.content.IIntentReceiver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080022import android.content.ComponentName;
23import android.content.Intent;
24import android.content.pm.ActivityInfo;
25import android.content.pm.ResolveInfo;
26import android.os.Binder;
27import android.os.Bundle;
28import android.os.IBinder;
29import android.os.SystemClock;
Wale Ogunwaleca1c1252015-05-15 12:49:13 -070030import android.os.UserHandle;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080031import android.util.PrintWriterPrinter;
Dianne Hackborn39792d22010-08-19 18:01:52 -070032import android.util.TimeUtils;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080033
34import java.io.PrintWriter;
Dianne Hackborn865907d2015-10-21 17:12:53 -070035import java.text.SimpleDateFormat;
Fyodor Kupolovd4fd8c72015-07-13 19:19:25 -070036import java.util.Arrays;
Dianne Hackbornd99b2932011-08-18 14:39:58 -070037import java.util.Date;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080038import java.util.List;
Wale Ogunwaleca1c1252015-05-15 12:49:13 -070039import java.util.Set;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080040
41/**
42 * An active intent broadcast.
43 */
Dianne Hackbornbe4e6aa2013-06-07 13:25:29 -070044final class BroadcastRecord extends Binder {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080045 final Intent intent; // the original intent that generated us
Dianne Hackborna40cfeb2013-03-25 17:49:36 -070046 final ComponentName targetComp; // original component name set on the intent
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080047 final ProcessRecord callerApp; // process that sent this
48 final String callerPackage; // who sent this
49 final int callingPid; // the pid of who sent this
50 final int callingUid; // the uid of who sent this
Chad Brubaker816c83b2017-03-02 10:27:59 -080051 final boolean callerInstantApp; // caller is an Instant App?
Dianne Hackborn68d881c2009-10-05 13:58:17 -070052 final boolean ordered; // serialize the send to receivers?
53 final boolean sticky; // originated from existing sticky data?
Dianne Hackborn12527f92009-11-11 17:39:50 -080054 final boolean initialSticky; // initial broadcast from register to sticky?
Dianne Hackborn786b4402012-08-27 15:14:02 -070055 final int userId; // user id this broadcast was for
Ben Gruver49660c72013-08-06 19:54:08 -070056 final String resolvedType; // the resolved data type
Fyodor Kupolovd4fd8c72015-07-13 19:19:25 -070057 final String[] requiredPermissions; // permissions the caller has required
Dianne Hackbornf51f6122013-02-04 18:23:34 -080058 final int appOp; // an app op that is associated with this broadcast
Dianne Hackborna750a632015-06-16 17:18:23 -070059 final BroadcastOptions options; // BroadcastOptions supplied by caller
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080060 final List receivers; // contains BroadcastFilter and ResolveInfo
Dianne Hackborne0e413e2015-12-09 17:22:26 -080061 final int[] delivery; // delivery state of each receiver
Johannes Carlssonb5a86542010-10-27 10:08:10 +020062 IIntentReceiver resultTo; // who receives final result if non-null
Jeff Brown9fb3fd12014-09-29 15:32:12 -070063 long enqueueClockTime; // the clock time the broadcast was enqueued
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080064 long dispatchTime; // when dispatch started on this set of receivers
Dianne Hackbornd99b2932011-08-18 14:39:58 -070065 long dispatchClockTime; // the clock time the dispatch started
Dianne Hackborn12527f92009-11-11 17:39:50 -080066 long receiverTime; // when current receiver started for timeouts.
67 long finishTime; // when we finished the broadcast.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080068 int resultCode; // current result code value.
69 String resultData; // current result data value.
70 Bundle resultExtras; // current result extra data values.
71 boolean resultAbort; // current result abortBroadcast value.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080072 int nextReceiver; // next receiver to be executed.
73 IBinder receiver; // who is currently running, null if none.
74 int state;
75 int anrCount; // has this broadcast record hit any ANRs?
Dianne Hackbornbc02a392016-06-02 17:15:08 -070076 int manifestCount; // number of manifest receivers dispatched.
77 int manifestSkipCount; // number of manifest receivers skipped.
Dianne Hackborn40c8db52012-02-10 18:59:48 -080078 BroadcastQueue queue; // the outbound queue handling this broadcast
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080079
80 static final int IDLE = 0;
81 static final int APP_RECEIVE = 1;
82 static final int CALL_IN_RECEIVE = 2;
83 static final int CALL_DONE_RECEIVE = 3;
Dianne Hackborn6285a322013-09-18 12:09:47 -070084 static final int WAITING_SERVICES = 4;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080085
Dianne Hackborne0e413e2015-12-09 17:22:26 -080086 static final int DELIVERY_PENDING = 0;
87 static final int DELIVERY_DELIVERED = 1;
88 static final int DELIVERY_SKIPPED = 2;
89 static final int DELIVERY_TIMEOUT = 3;
90
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080091 // The following are set when we are calling a receiver (one that
92 // was found in our list of registered receivers).
93 BroadcastFilter curFilter;
94
95 // The following are set only when we are launching a receiver (one
96 // that was found by querying the package manager).
97 ProcessRecord curApp; // hosting application of current receiver.
98 ComponentName curComponent; // the receiver class that is currently running.
99 ActivityInfo curReceiver; // info about the receiver that is currently running.
100
Dianne Hackborn865907d2015-10-21 17:12:53 -0700101 void dump(PrintWriter pw, String prefix, SimpleDateFormat sdf) {
Dianne Hackborn39792d22010-08-19 18:01:52 -0700102 final long now = SystemClock.uptimeMillis();
103
Dianne Hackborn786b4402012-08-27 15:14:02 -0700104 pw.print(prefix); pw.print(this); pw.print(" to user "); pw.println(userId);
Dianne Hackbornc0bd7472012-10-09 14:00:30 -0700105 pw.print(prefix); pw.println(intent.toInsecureString());
Dianne Hackborna40cfeb2013-03-25 17:49:36 -0700106 if (targetComp != null && targetComp != intent.getComponent()) {
107 pw.print(prefix); pw.print(" targetComp: "); pw.println(targetComp.toShortString());
108 }
Dianne Hackbornc0bd7472012-10-09 14:00:30 -0700109 Bundle bundle = intent.getExtras();
110 if (bundle != null) {
Dianne Hackborna40cfeb2013-03-25 17:49:36 -0700111 pw.print(prefix); pw.print(" extras: "); pw.println(bundle.toString());
Dianne Hackborn12527f92009-11-11 17:39:50 -0800112 }
Dianne Hackborn043fcd92010-10-06 14:27:34 -0700113 pw.print(prefix); pw.print("caller="); pw.print(callerPackage); pw.print(" ");
114 pw.print(callerApp != null ? callerApp.toShortString() : "null");
Dianne Hackborn39792d22010-08-19 18:01:52 -0700115 pw.print(" pid="); pw.print(callingPid);
116 pw.print(" uid="); pw.println(callingUid);
Fyodor Kupolovd4fd8c72015-07-13 19:19:25 -0700117 if ((requiredPermissions != null && requiredPermissions.length > 0)
118 || appOp != AppOpsManager.OP_NONE) {
119 pw.print(prefix); pw.print("requiredPermissions=");
120 pw.print(Arrays.toString(requiredPermissions));
121 pw.print(" appOp="); pw.println(appOp);
Dianne Hackborn12527f92009-11-11 17:39:50 -0800122 }
Dianne Hackborna750a632015-06-16 17:18:23 -0700123 if (options != null) {
124 pw.print(prefix); pw.print("options="); pw.println(options.toBundle());
125 }
Jeff Brown9fb3fd12014-09-29 15:32:12 -0700126 pw.print(prefix); pw.print("enqueueClockTime=");
Dianne Hackborn865907d2015-10-21 17:12:53 -0700127 pw.print(sdf.format(new Date(enqueueClockTime)));
Jeff Brown9fb3fd12014-09-29 15:32:12 -0700128 pw.print(" dispatchClockTime=");
Dianne Hackborn865907d2015-10-21 17:12:53 -0700129 pw.println(sdf.format(new Date(dispatchClockTime)));
Dianne Hackborn39792d22010-08-19 18:01:52 -0700130 pw.print(prefix); pw.print("dispatchTime=");
131 TimeUtils.formatDuration(dispatchTime, now, pw);
Dianne Hackborn865907d2015-10-21 17:12:53 -0700132 pw.print(" (");
133 TimeUtils.formatDuration(dispatchClockTime-enqueueClockTime, pw);
134 pw.print(" since enq)");
Dianne Hackborn12527f92009-11-11 17:39:50 -0800135 if (finishTime != 0) {
Dianne Hackborn39792d22010-08-19 18:01:52 -0700136 pw.print(" finishTime="); TimeUtils.formatDuration(finishTime, now, pw);
Dianne Hackborn865907d2015-10-21 17:12:53 -0700137 pw.print(" (");
138 TimeUtils.formatDuration(finishTime-dispatchTime, pw);
139 pw.print(" since disp)");
Dianne Hackborn12527f92009-11-11 17:39:50 -0800140 } else {
Dianne Hackborn39792d22010-08-19 18:01:52 -0700141 pw.print(" receiverTime="); TimeUtils.formatDuration(receiverTime, now, pw);
Dianne Hackborn12527f92009-11-11 17:39:50 -0800142 }
Dianne Hackborn39792d22010-08-19 18:01:52 -0700143 pw.println("");
Dianne Hackborn12527f92009-11-11 17:39:50 -0800144 if (anrCount != 0) {
Dianne Hackborn39792d22010-08-19 18:01:52 -0700145 pw.print(prefix); pw.print("anrCount="); pw.println(anrCount);
Dianne Hackborn12527f92009-11-11 17:39:50 -0800146 }
147 if (resultTo != null || resultCode != -1 || resultData != null) {
Dianne Hackborn39792d22010-08-19 18:01:52 -0700148 pw.print(prefix); pw.print("resultTo="); pw.print(resultTo);
149 pw.print(" resultCode="); pw.print(resultCode);
150 pw.print(" resultData="); pw.println(resultData);
Dianne Hackborn12527f92009-11-11 17:39:50 -0800151 }
152 if (resultExtras != null) {
Dianne Hackborn39792d22010-08-19 18:01:52 -0700153 pw.print(prefix); pw.print("resultExtras="); pw.println(resultExtras);
Dianne Hackborn12527f92009-11-11 17:39:50 -0800154 }
155 if (resultAbort || ordered || sticky || initialSticky) {
Dianne Hackborn39792d22010-08-19 18:01:52 -0700156 pw.print(prefix); pw.print("resultAbort="); pw.print(resultAbort);
157 pw.print(" ordered="); pw.print(ordered);
158 pw.print(" sticky="); pw.print(sticky);
159 pw.print(" initialSticky="); pw.println(initialSticky);
Dianne Hackborn12527f92009-11-11 17:39:50 -0800160 }
161 if (nextReceiver != 0 || receiver != null) {
Dianne Hackborn39792d22010-08-19 18:01:52 -0700162 pw.print(prefix); pw.print("nextReceiver="); pw.print(nextReceiver);
163 pw.print(" receiver="); pw.println(receiver);
Dianne Hackborn12527f92009-11-11 17:39:50 -0800164 }
165 if (curFilter != null) {
Dianne Hackborn39792d22010-08-19 18:01:52 -0700166 pw.print(prefix); pw.print("curFilter="); pw.println(curFilter);
Dianne Hackborn12527f92009-11-11 17:39:50 -0800167 }
168 if (curReceiver != null) {
Dianne Hackborn39792d22010-08-19 18:01:52 -0700169 pw.print(prefix); pw.print("curReceiver="); pw.println(curReceiver);
Dianne Hackborn12527f92009-11-11 17:39:50 -0800170 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800171 if (curApp != null) {
Dianne Hackborn39792d22010-08-19 18:01:52 -0700172 pw.print(prefix); pw.print("curApp="); pw.println(curApp);
173 pw.print(prefix); pw.print("curComponent=");
174 pw.println((curComponent != null ? curComponent.toShortString() : "--"));
Dianne Hackborn399cccb2010-04-13 22:57:49 -0700175 if (curReceiver != null && curReceiver.applicationInfo != null) {
Dianne Hackborn39792d22010-08-19 18:01:52 -0700176 pw.print(prefix); pw.print("curSourceDir=");
177 pw.println(curReceiver.applicationInfo.sourceDir);
Dianne Hackborn399cccb2010-04-13 22:57:49 -0700178 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800179 }
Dianne Hackborn786b4402012-08-27 15:14:02 -0700180 if (state != IDLE) {
181 String stateStr = " (?)";
182 switch (state) {
183 case APP_RECEIVE: stateStr=" (APP_RECEIVE)"; break;
184 case CALL_IN_RECEIVE: stateStr=" (CALL_IN_RECEIVE)"; break;
185 case CALL_DONE_RECEIVE: stateStr=" (CALL_DONE_RECEIVE)"; break;
Dianne Hackborn6285a322013-09-18 12:09:47 -0700186 case WAITING_SERVICES: stateStr=" (WAITING_SERVICES)"; break;
Dianne Hackborn786b4402012-08-27 15:14:02 -0700187 }
188 pw.print(prefix); pw.print("state="); pw.print(state); pw.println(stateStr);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800189 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800190 final int N = receivers != null ? receivers.size() : 0;
191 String p2 = prefix + " ";
192 PrintWriterPrinter printer = new PrintWriterPrinter(pw);
Wale Ogunwaleca1c1252015-05-15 12:49:13 -0700193 for (int i = 0; i < N; i++) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800194 Object o = receivers.get(i);
Dianne Hackborne0e413e2015-12-09 17:22:26 -0800195 pw.print(prefix);
196 switch (delivery[i]) {
197 case DELIVERY_PENDING: pw.print("Pending"); break;
198 case DELIVERY_DELIVERED: pw.print("Deliver"); break;
199 case DELIVERY_SKIPPED: pw.print("Skipped"); break;
200 case DELIVERY_TIMEOUT: pw.print("Timeout"); break;
201 default: pw.print("???????"); break;
202 }
203 pw.print(" #"); pw.print(i); pw.print(": ");
204 if (o instanceof BroadcastFilter) {
205 pw.println(o);
206 ((BroadcastFilter) o).dumpBrief(pw, p2);
207 } else if (o instanceof ResolveInfo) {
208 pw.println("(manifest)");
209 ((ResolveInfo) o).dump(printer, p2, 0);
210 } else {
211 pw.println(o);
212 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800213 }
214 }
215
Dianne Hackborn40c8db52012-02-10 18:59:48 -0800216 BroadcastRecord(BroadcastQueue _queue,
Christopher Tatef46723b2012-01-26 14:19:24 -0800217 Intent _intent, ProcessRecord _callerApp, String _callerPackage,
Chad Brubaker816c83b2017-03-02 10:27:59 -0800218 int _callingPid, int _callingUid, boolean _callerInstantApp, String _resolvedType,
219 String[] _requiredPermissions, int _appOp, BroadcastOptions _options, List _receivers,
220 IIntentReceiver _resultTo, int _resultCode, String _resultData, Bundle _resultExtras,
221 boolean _serialized, boolean _sticky, boolean _initialSticky, int _userId) {
Dianne Hackborn448489a2016-09-29 10:55:10 -0700222 if (_intent == null) {
223 throw new NullPointerException("Can't construct with a null intent");
224 }
Christopher Tatef46723b2012-01-26 14:19:24 -0800225 queue = _queue;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800226 intent = _intent;
Dianne Hackborna40cfeb2013-03-25 17:49:36 -0700227 targetComp = _intent.getComponent();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800228 callerApp = _callerApp;
229 callerPackage = _callerPackage;
230 callingPid = _callingPid;
231 callingUid = _callingUid;
Chad Brubaker816c83b2017-03-02 10:27:59 -0800232 callerInstantApp = _callerInstantApp;
Ben Gruver49660c72013-08-06 19:54:08 -0700233 resolvedType = _resolvedType;
Fyodor Kupolovd4fd8c72015-07-13 19:19:25 -0700234 requiredPermissions = _requiredPermissions;
Dianne Hackbornf51f6122013-02-04 18:23:34 -0800235 appOp = _appOp;
Dianne Hackborna750a632015-06-16 17:18:23 -0700236 options = _options;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800237 receivers = _receivers;
Dianne Hackborne0e413e2015-12-09 17:22:26 -0800238 delivery = new int[_receivers != null ? _receivers.size() : 0];
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800239 resultTo = _resultTo;
240 resultCode = _resultCode;
241 resultData = _resultData;
242 resultExtras = _resultExtras;
243 ordered = _serialized;
Dianne Hackborn68d881c2009-10-05 13:58:17 -0700244 sticky = _sticky;
Dianne Hackborn12527f92009-11-11 17:39:50 -0800245 initialSticky = _initialSticky;
Dianne Hackborn786b4402012-08-27 15:14:02 -0700246 userId = _userId;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800247 nextReceiver = 0;
248 state = IDLE;
249 }
250
Wale Ogunwaleca1c1252015-05-15 12:49:13 -0700251 boolean cleanupDisabledPackageReceiversLocked(
252 String packageName, Set<String> filterByClasses, int userId, boolean doit) {
253 if ((userId != UserHandle.USER_ALL && this.userId != userId) || receivers == null) {
254 return false;
255 }
256
257 boolean didSomething = false;
258 Object o;
259 for (int i = receivers.size() - 1; i >= 0; i--) {
260 o = receivers.get(i);
261 if (!(o instanceof ResolveInfo)) {
262 continue;
263 }
264 ActivityInfo info = ((ResolveInfo)o).activityInfo;
265
266 final boolean sameComponent = packageName == null
267 || (info.applicationInfo.packageName.equals(packageName)
268 && (filterByClasses == null || filterByClasses.contains(info.name)));
269 if (sameComponent) {
270 if (!doit) {
271 return true;
272 }
273 didSomething = true;
274 receivers.remove(i);
Wale Ogunwale9a6e13c2015-08-03 15:21:44 -0700275 if (i < nextReceiver) {
276 nextReceiver--;
277 }
Wale Ogunwaleca1c1252015-05-15 12:49:13 -0700278 }
279 }
Wale Ogunwale9a6e13c2015-08-03 15:21:44 -0700280 nextReceiver = Math.min(nextReceiver, receivers.size());
Wale Ogunwaleca1c1252015-05-15 12:49:13 -0700281
282 return didSomething;
283 }
284
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800285 public String toString() {
286 return "BroadcastRecord{"
287 + Integer.toHexString(System.identityHashCode(this))
Dianne Hackbornb12e1352012-09-26 11:39:20 -0700288 + " u" + userId + " " + intent.getAction() + "}";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800289 }
290}