blob: ae7f2a5d8565aa0cc4c1a26e583ff6ca06874b83 [file] [log] [blame]
/*
* Copyright (C) 2006 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.server.am;
import static android.app.ActivityManager.RESTRICTION_LEVEL_BACKGROUND_RESTRICTED;
import static com.android.server.am.BroadcastConstants.DEFER_BOOT_COMPLETED_BROADCAST_ALL;
import static com.android.server.am.BroadcastConstants.DEFER_BOOT_COMPLETED_BROADCAST_BACKGROUND_RESTRICTED_ONLY;
import static com.android.server.am.BroadcastConstants.DEFER_BOOT_COMPLETED_BROADCAST_CHANGE_ID;
import static com.android.server.am.BroadcastConstants.DEFER_BOOT_COMPLETED_BROADCAST_NONE;
import static com.android.server.am.BroadcastConstants.DEFER_BOOT_COMPLETED_BROADCAST_TARGET_T_ONLY;
import static com.android.server.am.BroadcastQueue.checkState;
import android.annotation.DurationMillisLong;
import android.annotation.IntDef;
import android.annotation.NonNull;
import android.annotation.Nullable;
import android.app.ActivityManagerInternal;
import android.app.AppOpsManager;
import android.app.BroadcastOptions;
import android.app.compat.CompatChanges;
import android.content.ComponentName;
import android.content.IIntentReceiver;
import android.content.Intent;
import android.content.pm.ActivityInfo;
import android.content.pm.ResolveInfo;
import android.os.Binder;
import android.os.Bundle;
import android.os.IBinder;
import android.os.SystemClock;
import android.os.UserHandle;
import android.util.PrintWriterPrinter;
import android.util.SparseArray;
import android.util.TimeUtils;
import android.util.proto.ProtoOutputStream;
import com.android.internal.annotations.VisibleForTesting;
import java.io.PrintWriter;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Date;
import java.util.List;
import java.util.Set;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.function.BiFunction;
/**
* An active intent broadcast.
*/
final class BroadcastRecord extends Binder {
final Intent intent; // the original intent that generated us
final ComponentName targetComp; // original component name set on the intent
final ProcessRecord callerApp; // process that sent this
final String callerPackage; // who sent this
final @Nullable String callerFeatureId; // which feature in the package sent this
final int callingPid; // the pid of who sent this
final int callingUid; // the uid of who sent this
final boolean callerInstantApp; // caller is an Instant App?
final boolean ordered; // serialize the send to receivers?
final boolean sticky; // originated from existing sticky data?
final boolean alarm; // originated from an alarm triggering?
final boolean pushMessage; // originated from a push message?
final boolean pushMessageOverQuota; // originated from a push message which was over quota?
final boolean initialSticky; // initial broadcast from register to sticky?
final int userId; // user id this broadcast was for
final String resolvedType; // the resolved data type
final String[] requiredPermissions; // permissions the caller has required
final String[] excludedPermissions; // permissions to exclude
final String[] excludedPackages; // packages to exclude
final int appOp; // an app op that is associated with this broadcast
final BroadcastOptions options; // BroadcastOptions supplied by caller
final List receivers; // contains BroadcastFilter and ResolveInfo
final @DeliveryState int[] delivery; // delivery state of each receiver
final long[] scheduledTime; // uptimeMillis when each receiver was scheduled
final long[] duration; // duration a receiver took to process broadcast
IIntentReceiver resultTo; // who receives final result if non-null
boolean deferred;
int splitCount; // refcount for result callback, when split
int splitToken; // identifier for cross-BroadcastRecord refcount
long enqueueTime; // uptimeMillis when the broadcast was enqueued
long enqueueRealTime; // elapsedRealtime when the broadcast was enqueued
long enqueueClockTime; // the clock time the broadcast was enqueued
long dispatchTime; // when dispatch started on this set of receivers
long dispatchRealTime; // elapsedRealtime when the broadcast was dispatched
long dispatchClockTime; // the clock time the dispatch started
long receiverTime; // when current receiver started for timeouts.
long finishTime; // when we finished the current receiver.
boolean timeoutExempt; // true if this broadcast is not subject to receiver timeouts
int resultCode; // current result code value.
String resultData; // current result data value.
Bundle resultExtras; // current result extra data values.
boolean resultAbort; // current result abortBroadcast value.
int nextReceiver; // next receiver to be executed.
int state;
int anrCount; // has this broadcast record hit any ANRs?
int manifestCount; // number of manifest receivers dispatched.
int manifestSkipCount; // number of manifest receivers skipped.
int finishedCount; // number of receivers finished.
BroadcastQueue queue; // the outbound queue handling this broadcast
// if set to true, app's process will be temporarily allowed to start activities from background
// for the duration of the broadcast dispatch
final boolean allowBackgroundActivityStarts;
// token used to trace back the grant for activity starts, optional
@Nullable
final IBinder mBackgroundActivityStartsToken;
// Filter the intent extras by using the rules of the package visibility before broadcasting
// the intent to the receiver.
@Nullable
final BiFunction<Integer, Bundle, Bundle> filterExtrasForReceiver;
static final int IDLE = 0;
static final int APP_RECEIVE = 1;
static final int CALL_IN_RECEIVE = 2;
static final int CALL_DONE_RECEIVE = 3;
static final int WAITING_SERVICES = 4;
/** Initial state: waiting to run in future */
static final int DELIVERY_PENDING = 0;
/** Terminal state: finished successfully */
static final int DELIVERY_DELIVERED = 1;
/** Terminal state: skipped due to internal policy */
static final int DELIVERY_SKIPPED = 2;
/** Terminal state: timed out during attempted delivery */
static final int DELIVERY_TIMEOUT = 3;
/** Intermediate state: currently executing */
static final int DELIVERY_SCHEDULED = 4;
/** Terminal state: failure to dispatch */
static final int DELIVERY_FAILURE = 5;
@IntDef(flag = false, prefix = { "DELIVERY_" }, value = {
DELIVERY_PENDING,
DELIVERY_DELIVERED,
DELIVERY_SKIPPED,
DELIVERY_TIMEOUT,
DELIVERY_SCHEDULED,
DELIVERY_FAILURE,
})
@Retention(RetentionPolicy.SOURCE)
public @interface DeliveryState {}
static @NonNull String deliveryStateToString(@DeliveryState int deliveryState) {
switch (deliveryState) {
case DELIVERY_PENDING: return "Pending";
case DELIVERY_DELIVERED: return "Delivered";
case DELIVERY_SKIPPED: return "Skipped";
case DELIVERY_TIMEOUT: return "Timeout";
case DELIVERY_SCHEDULED: return "Scheduled";
case DELIVERY_FAILURE: return "Failure";
default: return Integer.toString(deliveryState);
}
}
/**
* Return if the given delivery state is "terminal", where no additional
* delivery state changes will be made.
*/
static boolean isDeliveryStateTerminal(@DeliveryState int deliveryState) {
switch (deliveryState) {
case DELIVERY_DELIVERED:
case DELIVERY_SKIPPED:
case DELIVERY_TIMEOUT:
case DELIVERY_FAILURE:
return true;
default:
return false;
}
}
ProcessRecord curApp; // hosting application of current receiver.
ComponentName curComponent; // the receiver class that is currently running.
ActivityInfo curReceiver; // the manifest receiver that is currently running.
BroadcastFilter curFilter; // the registered receiver currently running.
Bundle curFilteredExtras; // the bundle that has been filtered by the package visibility rules
boolean mIsReceiverAppRunning; // Was the receiver's app already running.
// Private refcount-management bookkeeping; start > 0
static AtomicInteger sNextToken = new AtomicInteger(1);
void dump(PrintWriter pw, String prefix, SimpleDateFormat sdf) {
final long now = SystemClock.uptimeMillis();
pw.print(prefix); pw.print(this); pw.print(" to user "); pw.println(userId);
pw.print(prefix); pw.println(intent.toInsecureString());
if (targetComp != null && targetComp != intent.getComponent()) {
pw.print(prefix); pw.print(" targetComp: "); pw.println(targetComp.toShortString());
}
Bundle bundle = intent.getExtras();
if (bundle != null) {
pw.print(prefix); pw.print(" extras: "); pw.println(bundle.toString());
}
pw.print(prefix); pw.print("caller="); pw.print(callerPackage); pw.print(" ");
pw.print(callerApp != null ? callerApp.toShortString() : "null");
pw.print(" pid="); pw.print(callingPid);
pw.print(" uid="); pw.println(callingUid);
if ((requiredPermissions != null && requiredPermissions.length > 0)
|| appOp != AppOpsManager.OP_NONE) {
pw.print(prefix); pw.print("requiredPermissions=");
pw.print(Arrays.toString(requiredPermissions));
pw.print(" appOp="); pw.println(appOp);
}
if (excludedPermissions != null && excludedPermissions.length > 0) {
pw.print(prefix); pw.print("excludedPermissions=");
pw.print(Arrays.toString(excludedPermissions));
}
if (excludedPackages != null && excludedPackages.length > 0) {
pw.print(prefix); pw.print("excludedPackages=");
pw.print(Arrays.toString(excludedPackages));
}
if (options != null) {
pw.print(prefix); pw.print("options="); pw.println(options.toBundle());
}
pw.print(prefix); pw.print("enqueueClockTime=");
pw.print(sdf.format(new Date(enqueueClockTime)));
pw.print(" dispatchClockTime=");
pw.println(sdf.format(new Date(dispatchClockTime)));
pw.print(prefix); pw.print("dispatchTime=");
TimeUtils.formatDuration(dispatchTime, now, pw);
pw.print(" (");
TimeUtils.formatDuration(dispatchTime - enqueueTime, pw);
pw.print(" since enq)");
if (finishTime != 0) {
pw.print(" finishTime="); TimeUtils.formatDuration(finishTime, now, pw);
pw.print(" (");
TimeUtils.formatDuration(finishTime-dispatchTime, pw);
pw.print(" since disp)");
} else {
pw.print(" receiverTime="); TimeUtils.formatDuration(receiverTime, now, pw);
}
pw.println("");
if (anrCount != 0) {
pw.print(prefix); pw.print("anrCount="); pw.println(anrCount);
}
if (resultTo != null || resultCode != -1 || resultData != null) {
pw.print(prefix); pw.print("resultTo="); pw.print(resultTo);
pw.print(" resultCode="); pw.print(resultCode);
pw.print(" resultData="); pw.println(resultData);
}
if (resultExtras != null) {
pw.print(prefix); pw.print("resultExtras="); pw.println(resultExtras);
}
if (resultAbort || ordered || sticky || initialSticky) {
pw.print(prefix); pw.print("resultAbort="); pw.print(resultAbort);
pw.print(" ordered="); pw.print(ordered);
pw.print(" sticky="); pw.print(sticky);
pw.print(" initialSticky="); pw.println(initialSticky);
}
if (nextReceiver != 0) {
pw.print(prefix); pw.print("nextReceiver="); pw.print(nextReceiver);
}
if (curFilter != null) {
pw.print(prefix); pw.print("curFilter="); pw.println(curFilter);
}
if (curReceiver != null) {
pw.print(prefix); pw.print("curReceiver="); pw.println(curReceiver);
}
if (curApp != null) {
pw.print(prefix); pw.print("curApp="); pw.println(curApp);
pw.print(prefix); pw.print("curComponent=");
pw.println((curComponent != null ? curComponent.toShortString() : "--"));
if (curReceiver != null && curReceiver.applicationInfo != null) {
pw.print(prefix); pw.print("curSourceDir=");
pw.println(curReceiver.applicationInfo.sourceDir);
}
}
if (curFilteredExtras != null) {
pw.print(" filtered extras: "); pw.println(curFilteredExtras);
}
if (state != IDLE) {
String stateStr = " (?)";
switch (state) {
case APP_RECEIVE: stateStr=" (APP_RECEIVE)"; break;
case CALL_IN_RECEIVE: stateStr=" (CALL_IN_RECEIVE)"; break;
case CALL_DONE_RECEIVE: stateStr=" (CALL_DONE_RECEIVE)"; break;
case WAITING_SERVICES: stateStr=" (WAITING_SERVICES)"; break;
}
pw.print(prefix); pw.print("state="); pw.print(state); pw.println(stateStr);
}
final int N = receivers != null ? receivers.size() : 0;
String p2 = prefix + " ";
PrintWriterPrinter printer = new PrintWriterPrinter(pw);
for (int i = 0; i < N; i++) {
Object o = receivers.get(i);
pw.print(prefix);
pw.print(deliveryStateToString(delivery[i]));
pw.print(" "); TimeUtils.formatDuration(duration[i], pw);
pw.print(" #"); pw.print(i); pw.print(": ");
if (o instanceof BroadcastFilter) {
pw.println(o);
((BroadcastFilter) o).dumpBrief(pw, p2);
} else if (o instanceof ResolveInfo) {
pw.println("(manifest)");
((ResolveInfo) o).dump(printer, p2, 0);
} else {
pw.println(o);
}
}
}
BroadcastRecord(BroadcastQueue _queue,
Intent _intent, ProcessRecord _callerApp, String _callerPackage,
@Nullable String _callerFeatureId, int _callingPid, int _callingUid,
boolean _callerInstantApp, String _resolvedType,
String[] _requiredPermissions, String[] _excludedPermissions,
String[] _excludedPackages, int _appOp,
BroadcastOptions _options, List _receivers, IIntentReceiver _resultTo, int _resultCode,
String _resultData, Bundle _resultExtras, boolean _serialized, boolean _sticky,
boolean _initialSticky, int _userId, boolean allowBackgroundActivityStarts,
@Nullable IBinder backgroundActivityStartsToken, boolean timeoutExempt,
@Nullable BiFunction<Integer, Bundle, Bundle> filterExtrasForReceiver) {
if (_intent == null) {
throw new NullPointerException("Can't construct with a null intent");
}
queue = _queue;
intent = _intent;
targetComp = _intent.getComponent();
callerApp = _callerApp;
callerPackage = _callerPackage;
callerFeatureId = _callerFeatureId;
callingPid = _callingPid;
callingUid = _callingUid;
callerInstantApp = _callerInstantApp;
resolvedType = _resolvedType;
requiredPermissions = _requiredPermissions;
excludedPermissions = _excludedPermissions;
excludedPackages = _excludedPackages;
appOp = _appOp;
options = _options;
receivers = _receivers;
delivery = new int[_receivers != null ? _receivers.size() : 0];
scheduledTime = new long[delivery.length];
duration = new long[delivery.length];
resultTo = _resultTo;
resultCode = _resultCode;
resultData = _resultData;
resultExtras = _resultExtras;
ordered = _serialized;
sticky = _sticky;
initialSticky = _initialSticky;
userId = _userId;
nextReceiver = 0;
state = IDLE;
this.allowBackgroundActivityStarts = allowBackgroundActivityStarts;
mBackgroundActivityStartsToken = backgroundActivityStartsToken;
this.timeoutExempt = timeoutExempt;
alarm = options != null && options.isAlarmBroadcast();
pushMessage = options != null && options.isPushMessagingBroadcast();
pushMessageOverQuota = options != null && options.isPushMessagingOverQuotaBroadcast();
this.filterExtrasForReceiver = filterExtrasForReceiver;
}
/**
* Copy constructor which takes a different intent.
* Only used by {@link #maybeStripForHistory}.
*/
private BroadcastRecord(BroadcastRecord from, Intent newIntent) {
intent = newIntent;
targetComp = newIntent.getComponent();
callerApp = from.callerApp;
callerPackage = from.callerPackage;
callerFeatureId = from.callerFeatureId;
callingPid = from.callingPid;
callingUid = from.callingUid;
callerInstantApp = from.callerInstantApp;
ordered = from.ordered;
sticky = from.sticky;
initialSticky = from.initialSticky;
userId = from.userId;
resolvedType = from.resolvedType;
requiredPermissions = from.requiredPermissions;
excludedPermissions = from.excludedPermissions;
excludedPackages = from.excludedPackages;
appOp = from.appOp;
options = from.options;
receivers = from.receivers;
delivery = from.delivery;
scheduledTime = from.scheduledTime;
duration = from.duration;
resultTo = from.resultTo;
enqueueTime = from.enqueueTime;
enqueueRealTime = from.enqueueRealTime;
enqueueClockTime = from.enqueueClockTime;
dispatchTime = from.dispatchTime;
dispatchRealTime = from.dispatchRealTime;
dispatchClockTime = from.dispatchClockTime;
receiverTime = from.receiverTime;
finishTime = from.finishTime;
resultCode = from.resultCode;
resultData = from.resultData;
resultExtras = from.resultExtras;
resultAbort = from.resultAbort;
nextReceiver = from.nextReceiver;
state = from.state;
anrCount = from.anrCount;
manifestCount = from.manifestCount;
manifestSkipCount = from.manifestSkipCount;
queue = from.queue;
allowBackgroundActivityStarts = from.allowBackgroundActivityStarts;
mBackgroundActivityStartsToken = from.mBackgroundActivityStartsToken;
timeoutExempt = from.timeoutExempt;
alarm = from.alarm;
pushMessage = from.pushMessage;
pushMessageOverQuota = from.pushMessageOverQuota;
filterExtrasForReceiver = from.filterExtrasForReceiver;
}
/**
* Split off a new BroadcastRecord that clones this one, but contains only the
* recipient records for the current (just-finished) receiver's app, starting
* after the just-finished receiver [i.e. at r.nextReceiver]. Returns null
* if there are no matching subsequent receivers in this BroadcastRecord.
*/
BroadcastRecord splitRecipientsLocked(int slowAppUid, int startingAt) {
// Do we actually have any matching receivers down the line...?
ArrayList splitReceivers = null;
for (int i = startingAt; i < receivers.size(); ) {
Object o = receivers.get(i);
if (getReceiverUid(o) == slowAppUid) {
if (splitReceivers == null) {
splitReceivers = new ArrayList<>();
}
splitReceivers.add(o);
receivers.remove(i);
} else {
i++;
}
}
// No later receivers in the same app, so we have no more to do
if (splitReceivers == null) {
return null;
}
// build a new BroadcastRecord around that single-target list
BroadcastRecord split = new BroadcastRecord(queue, intent, callerApp, callerPackage,
callerFeatureId, callingPid, callingUid, callerInstantApp, resolvedType,
requiredPermissions, excludedPermissions, excludedPackages, appOp, options,
splitReceivers, resultTo, resultCode, resultData, resultExtras, ordered, sticky,
initialSticky, userId, allowBackgroundActivityStarts,
mBackgroundActivityStartsToken, timeoutExempt, filterExtrasForReceiver);
split.enqueueTime = this.enqueueTime;
split.enqueueRealTime = this.enqueueRealTime;
split.enqueueClockTime = this.enqueueClockTime;
split.splitToken = this.splitToken;
return split;
}
/**
* Split a BroadcastRecord to a map of deferred receiver UID to deferred BroadcastRecord.
*
* The receivers that are deferred are removed from original BroadcastRecord's receivers list.
* The receivers that are not deferred are kept in original BroadcastRecord's receivers list.
*
* Only used to split LOCKED_BOOT_COMPLETED or BOOT_COMPLETED BroadcastRecord.
* LOCKED_BOOT_COMPLETED or BOOT_COMPLETED broadcast can be deferred until the first time
* the receiver's UID has a process started.
*
* @param ams The ActivityManagerService object.
* @param deferType Defer what UID?
* @return the deferred UID to BroadcastRecord map, the BroadcastRecord has the list of
* receivers in that UID.
*/
@NonNull SparseArray<BroadcastRecord> splitDeferredBootCompletedBroadcastLocked(
ActivityManagerInternal activityManagerInternal,
@BroadcastConstants.DeferBootCompletedBroadcastType int deferType) {
final SparseArray<BroadcastRecord> ret = new SparseArray<>();
if (deferType == DEFER_BOOT_COMPLETED_BROADCAST_NONE) {
return ret;
}
if (receivers == null) {
return ret;
}
final String action = intent.getAction();
if (!Intent.ACTION_LOCKED_BOOT_COMPLETED.equals(action)
&& !Intent.ACTION_BOOT_COMPLETED.equals(action)) {
return ret;
}
final SparseArray<List<Object>> uid2receiverList = new SparseArray<>();
for (int i = receivers.size() - 1; i >= 0; i--) {
final Object receiver = receivers.get(i);
final int uid = getReceiverUid(receiver);
if (deferType != DEFER_BOOT_COMPLETED_BROADCAST_ALL) {
if ((deferType & DEFER_BOOT_COMPLETED_BROADCAST_BACKGROUND_RESTRICTED_ONLY) != 0) {
if (activityManagerInternal.getRestrictionLevel(uid)
< RESTRICTION_LEVEL_BACKGROUND_RESTRICTED) {
// skip if the UID is not background restricted.
continue;
}
}
if ((deferType & DEFER_BOOT_COMPLETED_BROADCAST_TARGET_T_ONLY) != 0) {
if (!CompatChanges.isChangeEnabled(DEFER_BOOT_COMPLETED_BROADCAST_CHANGE_ID,
uid)) {
// skip if the UID is not targetSdkVersion T+.
continue;
}
}
}
// Remove receiver from original BroadcastRecord's receivers list.
receivers.remove(i);
final List<Object> receiverList = uid2receiverList.get(uid);
if (receiverList != null) {
receiverList.add(0, receiver);
} else {
ArrayList<Object> splitReceivers = new ArrayList<>();
splitReceivers.add(0, receiver);
uid2receiverList.put(uid, splitReceivers);
}
}
final int uidSize = uid2receiverList.size();
for (int i = 0; i < uidSize; i++) {
final BroadcastRecord br = new BroadcastRecord(queue, intent, callerApp, callerPackage,
callerFeatureId, callingPid, callingUid, callerInstantApp, resolvedType,
requiredPermissions, excludedPermissions, excludedPackages, appOp, options,
uid2receiverList.valueAt(i), null /* _resultTo */,
resultCode, resultData, resultExtras, ordered, sticky, initialSticky, userId,
allowBackgroundActivityStarts, mBackgroundActivityStartsToken, timeoutExempt,
filterExtrasForReceiver);
br.enqueueTime = this.enqueueTime;
br.enqueueRealTime = this.enqueueRealTime;
br.enqueueClockTime = this.enqueueClockTime;
ret.put(uid2receiverList.keyAt(i), br);
}
return ret;
}
/**
* Update the delivery state of the given {@link #receivers} index.
* Automatically updates any time measurements related to state changes.
*/
void setDeliveryState(int index, @DeliveryState int deliveryState) {
delivery[index] = deliveryState;
switch (deliveryState) {
case DELIVERY_DELIVERED:
duration[index] = SystemClock.uptimeMillis() - scheduledTime[index];
break;
case DELIVERY_SCHEDULED:
scheduledTime[index] = SystemClock.uptimeMillis();
break;
}
}
@DeliveryState int getDeliveryState(int index) {
return delivery[index];
}
boolean isForeground() {
return (intent.getFlags() & Intent.FLAG_RECEIVER_FOREGROUND) != 0;
}
boolean isReplacePending() {
return (intent.getFlags() & Intent.FLAG_RECEIVER_REPLACE_PENDING) != 0;
}
boolean isNoAbort() {
return (intent.getFlags() & Intent.FLAG_RECEIVER_NO_ABORT) != 0;
}
@NonNull String getHostingRecordTriggerType() {
if (alarm) {
return HostingRecord.TRIGGER_TYPE_ALARM;
} else if (pushMessage) {
return HostingRecord.TRIGGER_TYPE_PUSH_MESSAGE;
} else if (pushMessageOverQuota) {
return HostingRecord.TRIGGER_TYPE_PUSH_MESSAGE_OVER_QUOTA;
}
return HostingRecord.TRIGGER_TYPE_UNKNOWN;
}
/**
* Return an instance of {@link #intent} specialized for the given receiver.
* For example, this returns a new specialized instance if the extras need
* to be filtered, or a {@link ResolveInfo} needs to be configured.
*
* @return a specialized intent, otherwise {@code null} to indicate that the
* broadcast should not be delivered to this receiver, typically due
* to it being filtered away by {@link #filterExtrasForReceiver}.
*/
@Nullable Intent getReceiverIntent(@NonNull Object receiver) {
Intent newIntent = null;
if (filterExtrasForReceiver != null) {
final Bundle extras = intent.getExtras();
if (extras != null) {
final int receiverUid = getReceiverUid(receiver);
final Bundle filteredExtras = filterExtrasForReceiver.apply(receiverUid, extras);
if (filteredExtras == null) {
// Completely filtered; skip the broadcast!
return null;
} else {
newIntent = new Intent(intent);
newIntent.replaceExtras(filteredExtras);
}
}
}
if (receiver instanceof ResolveInfo) {
if (newIntent == null) {
newIntent = new Intent(intent);
}
newIntent.setComponent(((ResolveInfo) receiver).activityInfo.getComponentName());
}
return (newIntent != null) ? newIntent : intent;
}
static int getReceiverUid(@NonNull Object receiver) {
if (receiver instanceof BroadcastFilter) {
return ((BroadcastFilter) receiver).owningUid;
} else /* if (receiver instanceof ResolveInfo) */ {
return ((ResolveInfo) receiver).activityInfo.applicationInfo.uid;
}
}
static @NonNull String getReceiverProcessName(@NonNull Object receiver) {
if (receiver instanceof BroadcastFilter) {
return ((BroadcastFilter) receiver).receiverList.app.processName;
} else /* if (receiver instanceof ResolveInfo) */ {
return ((ResolveInfo) receiver).activityInfo.processName;
}
}
static @NonNull String getReceiverPackageName(@NonNull Object receiver) {
if (receiver instanceof BroadcastFilter) {
return ((BroadcastFilter) receiver).receiverList.app.info.packageName;
} else /* if (receiver instanceof ResolveInfo) */ {
return ((ResolveInfo) receiver).activityInfo.packageName;
}
}
public BroadcastRecord maybeStripForHistory() {
if (!intent.canStripForHistory()) {
return this;
}
return new BroadcastRecord(this, intent.maybeStripForHistory());
}
@VisibleForTesting
boolean cleanupDisabledPackageReceiversLocked(
String packageName, Set<String> filterByClasses, int userId, boolean doit) {
if (receivers == null) {
return false;
}
final boolean cleanupAllUsers = userId == UserHandle.USER_ALL;
final boolean sendToAllUsers = this.userId == UserHandle.USER_ALL;
if (this.userId != userId && !cleanupAllUsers && !sendToAllUsers) {
return false;
}
boolean didSomething = false;
Object o;
for (int i = receivers.size() - 1; i >= 0; i--) {
o = receivers.get(i);
if (!(o instanceof ResolveInfo)) {
continue;
}
ActivityInfo info = ((ResolveInfo)o).activityInfo;
final boolean sameComponent = packageName == null
|| (info.applicationInfo.packageName.equals(packageName)
&& (filterByClasses == null || filterByClasses.contains(info.name)));
if (sameComponent && (cleanupAllUsers
|| UserHandle.getUserId(info.applicationInfo.uid) == userId)) {
if (!doit) {
return true;
}
didSomething = true;
receivers.remove(i);
if (i < nextReceiver) {
nextReceiver--;
}
}
}
nextReceiver = Math.min(nextReceiver, receivers.size());
return didSomething;
}
@Override
public String toString() {
String label = intent.getAction();
if (label == null) {
label = intent.toString();
}
return "BroadcastRecord{"
+ Integer.toHexString(System.identityHashCode(this))
+ " u" + userId + " " + label + "}";
}
public String toShortString() {
String label = intent.getAction();
if (label == null) {
label = intent.toString();
}
return label + "/u" + userId;
}
public void dumpDebug(ProtoOutputStream proto, long fieldId) {
long token = proto.start(fieldId);
proto.write(BroadcastRecordProto.USER_ID, userId);
proto.write(BroadcastRecordProto.INTENT_ACTION, intent.getAction());
proto.end(token);
}
}