blob: 0b50aa2801960b78b0fcfdecf13ab095a1f6b5fb [file] [log] [blame]
Wale Ogunwale65ebd952018-04-25 15:41:44 -07001/*
2 * Copyright (C) 2018 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
Wale Ogunwale59507092018-10-29 09:00:30 -070017package com.android.server.wm;
Wale Ogunwale65ebd952018-04-25 15:41:44 -070018
Wale Ogunwale04d9cb52018-04-30 13:55:07 -070019import static android.Manifest.permission.BIND_VOICE_INTERACTION;
20import static android.Manifest.permission.CHANGE_CONFIGURATION;
21import static android.Manifest.permission.CONTROL_REMOTE_APP_TRANSITION_ANIMATIONS;
Nicholas Sauer0259e532019-08-30 08:24:55 -070022import static android.Manifest.permission.INTERACT_ACROSS_USERS;
23import static android.Manifest.permission.INTERACT_ACROSS_USERS_FULL;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -070024import static android.Manifest.permission.INTERNAL_SYSTEM_WINDOW;
Wale Ogunwale65ebd952018-04-25 15:41:44 -070025import static android.Manifest.permission.MANAGE_ACTIVITY_STACKS;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -070026import static android.Manifest.permission.READ_FRAME_BUFFER;
27import static android.Manifest.permission.REMOVE_TASKS;
28import static android.Manifest.permission.START_TASKS_FROM_RECENTS;
Wale Ogunwalea6191b42018-05-09 07:41:32 -070029import static android.Manifest.permission.STOP_APP_SWITCHES;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -070030import static android.app.ActivityManager.LOCK_TASK_MODE_NONE;
Jonathan Scott92335342019-12-17 14:46:26 +000031import static android.app.ActivityManagerInternal.ALLOW_NON_FULL;
Yunfan Chen79b96062018-10-17 12:45:23 -070032import static android.app.ActivityTaskManager.INVALID_TASK_ID;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -070033import static android.app.ActivityTaskManager.RESIZE_MODE_PRESERVE_WINDOW;
Wale Ogunwale65ebd952018-04-25 15:41:44 -070034import static android.app.ActivityTaskManager.SPLIT_SCREEN_CREATE_MODE_TOP_OR_LEFT;
35import static android.app.WindowConfiguration.ACTIVITY_TYPE_UNDEFINED;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -070036import static android.app.WindowConfiguration.WINDOWING_MODE_FREEFORM;
37import static android.app.WindowConfiguration.WINDOWING_MODE_FULLSCREEN;
Wale Ogunwale65ebd952018-04-25 15:41:44 -070038import static android.app.WindowConfiguration.WINDOWING_MODE_PINNED;
39import static android.app.WindowConfiguration.WINDOWING_MODE_SPLIT_SCREEN_PRIMARY;
Jorim Jaggi2a3002a2020-02-17 15:57:34 +000040import static android.app.WindowConfiguration.WINDOWING_MODE_SPLIT_SCREEN_SECONDARY;
Wale Ogunwale65ebd952018-04-25 15:41:44 -070041import static android.app.WindowConfiguration.WINDOWING_MODE_UNDEFINED;
Wale Ogunwale31913b52018-10-13 08:29:31 -070042import static android.content.Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -070043import static android.content.Intent.FLAG_ACTIVITY_NEW_TASK;
Wale Ogunwale214f3482018-10-04 11:00:47 -070044import static android.content.pm.ApplicationInfo.FLAG_FACTORY_TEST;
Wale Ogunwale342fbe92018-10-09 08:44:10 -070045import static android.content.pm.ConfigurationInfo.GL_ES_VERSION_UNDEFINED;
Wale Ogunwalea6191b42018-05-09 07:41:32 -070046import static android.content.pm.PackageManager.FEATURE_ACTIVITIES_ON_SECONDARY_DISPLAYS;
47import static android.content.pm.PackageManager.FEATURE_FREEFORM_WINDOW_MANAGEMENT;
Wale Ogunwalea6191b42018-05-09 07:41:32 -070048import static android.content.pm.PackageManager.FEATURE_PICTURE_IN_PICTURE;
Wale Ogunwaled0412b32018-05-08 09:25:50 -070049import static android.content.pm.PackageManager.PERMISSION_GRANTED;
Wale Ogunwale214f3482018-10-04 11:00:47 -070050import static android.os.FactoryTest.FACTORY_TEST_HIGH_LEVEL;
51import static android.os.FactoryTest.FACTORY_TEST_LOW_LEVEL;
52import static android.os.FactoryTest.FACTORY_TEST_OFF;
Wale Ogunwale31913b52018-10-13 08:29:31 -070053import static android.os.Process.FIRST_APPLICATION_UID;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -070054import static android.os.Process.SYSTEM_UID;
Riddle Hsu2ca561b2019-10-08 21:58:58 +080055import static android.os.Trace.TRACE_TAG_WINDOW_MANAGER;
Wale Ogunwalea6191b42018-05-09 07:41:32 -070056import static android.provider.Settings.Global.DEVELOPMENT_ENABLE_FREEFORM_WINDOWS_SUPPORT;
Shivam Agrawal780b5bb2019-07-17 10:17:11 -070057import static android.provider.Settings.Global.DEVELOPMENT_ENABLE_SIZECOMPAT_FREEFORM;
Wale Ogunwalea6191b42018-05-09 07:41:32 -070058import static android.provider.Settings.Global.DEVELOPMENT_FORCE_RESIZABLE_ACTIVITIES;
59import static android.provider.Settings.Global.DEVELOPMENT_FORCE_RTL;
Evan Rosky4505b352018-09-06 11:20:40 -070060import static android.provider.Settings.Global.HIDE_ERROR_DIALOGS;
61import static android.provider.Settings.System.FONT_SCALE;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -070062import static android.service.voice.VoiceInteractionSession.SHOW_SOURCE_APPLICATION;
Alison Cichowlas3e340502018-08-07 17:15:01 -040063import static android.text.format.DateUtils.MINUTE_IN_MILLIS;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -070064import static android.view.Display.DEFAULT_DISPLAY;
65import static android.view.Display.INVALID_DISPLAY;
Wale Ogunwale6767eae2018-05-03 15:52:51 -070066import static android.view.WindowManager.TRANSIT_NONE;
Evan Rosky4505b352018-09-06 11:20:40 -070067
Yunfan Chen79b96062018-10-17 12:45:23 -070068import static com.android.server.am.ActivityManagerService.ANR_TRACE_DIR;
69import static com.android.server.am.ActivityManagerService.MY_PID;
70import static com.android.server.am.ActivityManagerService.STOCK_PM_FLAGS;
71import static com.android.server.am.ActivityManagerService.dumpStackTraces;
Wale Ogunwalef342f062020-01-27 07:34:13 -080072import static com.android.server.am.ActivityManagerServiceDumpActivitiesProto.ROOT_WINDOW_CONTAINER;
Wale Ogunwale31913b52018-10-13 08:29:31 -070073import static com.android.server.am.ActivityManagerServiceDumpProcessesProto.CONFIG_WILL_CHANGE;
74import static com.android.server.am.ActivityManagerServiceDumpProcessesProto.CONTROLLER;
75import static com.android.server.am.ActivityManagerServiceDumpProcessesProto.CURRENT_TRACKER;
76import static com.android.server.am.ActivityManagerServiceDumpProcessesProto.Controller.IS_A_MONKEY;
77import static com.android.server.am.ActivityManagerServiceDumpProcessesProto.GLOBAL_CONFIGURATION;
78import static com.android.server.am.ActivityManagerServiceDumpProcessesProto.GOING_TO_SLEEP;
79import static com.android.server.am.ActivityManagerServiceDumpProcessesProto.HEAVY_WEIGHT_PROC;
80import static com.android.server.am.ActivityManagerServiceDumpProcessesProto.HOME_PROC;
81import static com.android.server.am.ActivityManagerServiceDumpProcessesProto.LAUNCHING_ACTIVITY;
82import static com.android.server.am.ActivityManagerServiceDumpProcessesProto.PREVIOUS_PROC;
Yunfan Chen279f5582018-12-12 15:24:50 -080083import static com.android.server.am.ActivityManagerServiceDumpProcessesProto.PREVIOUS_PROC_VISIBLE_TIME_MS;
Wale Ogunwale31913b52018-10-13 08:29:31 -070084import static com.android.server.am.ActivityManagerServiceDumpProcessesProto.SCREEN_COMPAT_PACKAGES;
Yunfan Chen279f5582018-12-12 15:24:50 -080085import static com.android.server.am.ActivityManagerServiceDumpProcessesProto.ScreenCompatPackage.MODE;
86import static com.android.server.am.ActivityManagerServiceDumpProcessesProto.ScreenCompatPackage.PACKAGE;
Jeff Changd136e772019-11-05 20:33:52 +080087import static com.android.server.am.EventLogTags.writeBootProgressEnableScreen;
88import static com.android.server.am.EventLogTags.writeConfigurationChanged;
Andrii Kulianf49a58c2019-08-14 17:34:27 -070089import static com.android.server.wm.ActivityStack.ActivityState.DESTROYED;
90import static com.android.server.wm.ActivityStack.ActivityState.DESTROYING;
Wale Ogunwale59507092018-10-29 09:00:30 -070091import static com.android.server.wm.ActivityStackSupervisor.DEFER_RESUME;
Wale Ogunwale59507092018-10-29 09:00:30 -070092import static com.android.server.wm.ActivityStackSupervisor.ON_TOP;
93import static com.android.server.wm.ActivityStackSupervisor.PRESERVE_WINDOWS;
94import static com.android.server.wm.ActivityStackSupervisor.REMOVE_FROM_RECENTS;
95import static com.android.server.wm.ActivityTaskManagerDebugConfig.DEBUG_ALL;
96import static com.android.server.wm.ActivityTaskManagerDebugConfig.DEBUG_CONFIGURATION;
97import static com.android.server.wm.ActivityTaskManagerDebugConfig.DEBUG_FOCUS;
98import static com.android.server.wm.ActivityTaskManagerDebugConfig.DEBUG_IMMERSIVE;
99import static com.android.server.wm.ActivityTaskManagerDebugConfig.DEBUG_LOCKTASK;
100import static com.android.server.wm.ActivityTaskManagerDebugConfig.DEBUG_STACK;
101import static com.android.server.wm.ActivityTaskManagerDebugConfig.DEBUG_SWITCH;
102import static com.android.server.wm.ActivityTaskManagerDebugConfig.DEBUG_TASKS;
103import static com.android.server.wm.ActivityTaskManagerDebugConfig.DEBUG_VISIBILITY;
104import static com.android.server.wm.ActivityTaskManagerDebugConfig.POSTFIX_CONFIGURATION;
105import static com.android.server.wm.ActivityTaskManagerDebugConfig.POSTFIX_FOCUS;
106import static com.android.server.wm.ActivityTaskManagerDebugConfig.POSTFIX_IMMERSIVE;
107import static com.android.server.wm.ActivityTaskManagerDebugConfig.POSTFIX_LOCKTASK;
108import static com.android.server.wm.ActivityTaskManagerDebugConfig.POSTFIX_STACK;
109import static com.android.server.wm.ActivityTaskManagerDebugConfig.POSTFIX_SWITCH;
110import static com.android.server.wm.ActivityTaskManagerDebugConfig.POSTFIX_VISIBILITY;
111import static com.android.server.wm.ActivityTaskManagerDebugConfig.TAG_ATM;
112import static com.android.server.wm.ActivityTaskManagerDebugConfig.TAG_WITH_CLASS_NAME;
Evan Rosky4505b352018-09-06 11:20:40 -0700113import static com.android.server.wm.ActivityTaskManagerInternal.ASSIST_KEY_CONTENT;
114import static com.android.server.wm.ActivityTaskManagerInternal.ASSIST_KEY_DATA;
115import static com.android.server.wm.ActivityTaskManagerInternal.ASSIST_KEY_RECEIVER_EXTRAS;
116import static com.android.server.wm.ActivityTaskManagerInternal.ASSIST_KEY_STRUCTURE;
wilsonshihe7903ea2018-09-26 16:17:59 +0800117import static com.android.server.wm.ActivityTaskManagerService.H.REPORT_TIME_TRACKER_MSG;
118import static com.android.server.wm.ActivityTaskManagerService.UiHandler.DISMISS_DIALOG_UI_MSG;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700119import static com.android.server.wm.RecentsAnimationController.REORDER_KEEP_IN_PLACE;
120import static com.android.server.wm.RecentsAnimationController.REORDER_MOVE_TO_ORIGINAL_POSITION;
Louis Chang149d5c82019-12-30 09:47:39 +0800121import static com.android.server.wm.RootWindowContainer.MATCH_TASK_IN_STACKS_ONLY;
122import static com.android.server.wm.RootWindowContainer.MATCH_TASK_IN_STACKS_OR_RECENT_TASKS;
Louis Changcdec0802019-11-11 11:45:07 +0800123import static com.android.server.wm.Task.LOCK_TASK_AUTH_DONT_LOCK;
124import static com.android.server.wm.Task.REPARENT_KEEP_STACK_AT_FRONT;
125import static com.android.server.wm.Task.REPARENT_LEAVE_STACK_IN_PLACE;
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700126
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700127import android.Manifest;
Riddle Hsua0022cd2019-09-09 21:12:41 +0800128import android.annotation.IntDef;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700129import android.annotation.NonNull;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700130import android.annotation.Nullable;
131import android.annotation.UserIdInt;
132import android.app.Activity;
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700133import android.app.ActivityManager;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700134import android.app.ActivityManagerInternal;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700135import android.app.ActivityOptions;
136import android.app.ActivityTaskManager;
Wale Ogunwalef6733932018-06-27 05:14:34 -0700137import android.app.ActivityThread;
138import android.app.AlertDialog;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700139import android.app.AppGlobals;
Michal Karpinski15486842019-04-25 17:33:42 +0100140import android.app.AppOpsManager;
Evan Rosky4505b352018-09-06 11:20:40 -0700141import android.app.Dialog;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700142import android.app.IActivityController;
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700143import android.app.IActivityTaskManager;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700144import android.app.IApplicationThread;
145import android.app.IAssistDataReceiver;
Wale Ogunwale53783742018-09-16 10:21:51 -0700146import android.app.INotificationManager;
Mark Renouf446251d2019-04-26 10:22:41 -0400147import android.app.IRequestFinishCallback;
Evan Rosky0037e5f2019-11-05 10:26:24 -0800148import android.app.ITaskOrganizerController;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700149import android.app.ITaskStackListener;
Wale Ogunwale53783742018-09-16 10:21:51 -0700150import android.app.Notification;
151import android.app.NotificationManager;
152import android.app.PendingIntent;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700153import android.app.PictureInPictureParams;
154import android.app.ProfilerInfo;
155import android.app.RemoteAction;
156import android.app.WaitResult;
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700157import android.app.WindowConfiguration;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700158import android.app.admin.DevicePolicyCache;
159import android.app.assist.AssistContent;
160import android.app.assist.AssistStructure;
jorgegil@google.com06bc3232019-10-31 14:51:22 -0700161import android.app.servertransaction.ClientTransaction;
162import android.app.servertransaction.EnterPipRequestedItem;
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700163import android.app.usage.UsageStatsManagerInternal;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700164import android.content.ActivityNotFoundException;
165import android.content.ComponentName;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700166import android.content.ContentResolver;
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700167import android.content.Context;
Evan Rosky4505b352018-09-06 11:20:40 -0700168import android.content.DialogInterface;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700169import android.content.IIntentSender;
170import android.content.Intent;
171import android.content.pm.ActivityInfo;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700172import android.content.pm.ApplicationInfo;
Yunfan Chen75157d72018-07-27 14:47:21 +0900173import android.content.pm.ConfigurationInfo;
Evan Rosky4505b352018-09-06 11:20:40 -0700174import android.content.pm.IPackageManager;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700175import android.content.pm.PackageManager;
Evan Rosky4505b352018-09-06 11:20:40 -0700176import android.content.pm.PackageManagerInternal;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700177import android.content.pm.ParceledListSlice;
178import android.content.pm.ResolveInfo;
Wale Ogunwale53783742018-09-16 10:21:51 -0700179import android.content.res.CompatibilityInfo;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700180import android.content.res.Configuration;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700181import android.content.res.Resources;
Evan Rosky4505b352018-09-06 11:20:40 -0700182import android.database.ContentObserver;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700183import android.graphics.Bitmap;
184import android.graphics.Point;
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700185import android.graphics.Rect;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700186import android.metrics.LogMaker;
187import android.net.Uri;
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700188import android.os.Binder;
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700189import android.os.Build;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700190import android.os.Bundle;
Wale Ogunwale214f3482018-10-04 11:00:47 -0700191import android.os.FactoryTest;
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700192import android.os.FileUtils;
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700193import android.os.Handler;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700194import android.os.IBinder;
Evan Rosky4505b352018-09-06 11:20:40 -0700195import android.os.IUserManager;
Wale Ogunwalec9e57de2018-05-08 14:28:07 -0700196import android.os.LocaleList;
Riddle Hsud93a6c42018-11-29 21:50:06 +0800197import android.os.Looper;
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700198import android.os.Message;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700199import android.os.PersistableBundle;
Evan Rosky4505b352018-09-06 11:20:40 -0700200import android.os.PowerManager;
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700201import android.os.PowerManagerInternal;
Marvin Ramin830d4e32019-03-12 13:16:58 +0100202import android.os.Process;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700203import android.os.RemoteException;
Evan Rosky4505b352018-09-06 11:20:40 -0700204import android.os.ServiceManager;
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700205import android.os.StrictMode;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700206import android.os.SystemClock;
207import android.os.SystemProperties;
Evan Rosky4505b352018-09-06 11:20:40 -0700208import android.os.Trace;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700209import android.os.UpdateLock;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700210import android.os.UserHandle;
Evan Rosky4505b352018-09-06 11:20:40 -0700211import android.os.UserManager;
212import android.os.WorkSource;
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700213import android.os.storage.IStorageManager;
214import android.os.storage.StorageManager;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700215import android.provider.Settings;
216import android.service.voice.IVoiceInteractionSession;
217import android.service.voice.VoiceInteractionManagerInternal;
Kiyoung Kim0fe161d2018-12-20 18:26:10 +0900218import android.sysprop.DisplayProperties;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700219import android.telecom.TelecomManager;
220import android.text.TextUtils;
Neil Fuller97746812019-08-19 14:20:50 +0100221import android.text.format.TimeMigrationUtils;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700222import android.util.ArrayMap;
Nicholas Sauer3f9249f2019-09-10 20:23:41 -0700223import android.util.ArraySet;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700224import android.util.Log;
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700225import android.util.Slog;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700226import android.util.SparseArray;
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700227import android.util.TimeUtils;
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700228import android.util.proto.ProtoOutputStream;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700229import android.view.IRecentsAnimationRunner;
230import android.view.RemoteAnimationAdapter;
231import android.view.RemoteAnimationDefinition;
Evan Rosky4505b352018-09-06 11:20:40 -0700232import android.view.WindowManager;
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700233
Evan Rosky4505b352018-09-06 11:20:40 -0700234import com.android.internal.R;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700235import com.android.internal.annotations.VisibleForTesting;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700236import com.android.internal.app.AssistUtils;
237import com.android.internal.app.IVoiceInteractor;
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700238import com.android.internal.app.ProcessMap;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700239import com.android.internal.logging.MetricsLogger;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700240import com.android.internal.logging.nano.MetricsProto.MetricsEvent;
Wale Ogunwale53783742018-09-16 10:21:51 -0700241import com.android.internal.messages.nano.SystemMessageProto.SystemMessage;
242import com.android.internal.notification.SystemNotificationChannels;
Wale Ogunwale31913b52018-10-13 08:29:31 -0700243import com.android.internal.os.TransferPipe;
Evan Rosky4505b352018-09-06 11:20:40 -0700244import com.android.internal.os.logging.MetricsLoggerWrapper;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700245import com.android.internal.policy.IKeyguardDismissCallback;
246import com.android.internal.policy.KeyguardDismissCallback;
Wale Ogunwale31913b52018-10-13 08:29:31 -0700247import com.android.internal.util.ArrayUtils;
248import com.android.internal.util.FastPrintWriter;
Muhammad Qureshi759f92f2020-01-28 10:41:55 -0800249import com.android.internal.util.FrameworkStatsLog;
Wale Ogunwalea38654f2019-11-17 20:37:15 -0800250import com.android.internal.util.function.pooled.PooledConsumer;
251import com.android.internal.util.function.pooled.PooledFunction;
Wale Ogunwale53783742018-09-16 10:21:51 -0700252import com.android.internal.util.function.pooled.PooledLambda;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700253import com.android.server.AttributeCache;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700254import com.android.server.LocalServices;
255import com.android.server.SystemService;
Evan Rosky4505b352018-09-06 11:20:40 -0700256import com.android.server.SystemServiceManager;
Wale Ogunwale1f5e53d2018-11-05 05:12:46 -0800257import com.android.server.UiThread;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700258import com.android.server.Watchdog;
Wale Ogunwale59507092018-10-29 09:00:30 -0700259import com.android.server.am.ActivityManagerService;
Wale Ogunwale59507092018-10-29 09:00:30 -0700260import com.android.server.am.ActivityManagerServiceDumpProcessesProto;
261import com.android.server.am.AppTimeTracker;
262import com.android.server.am.BaseErrorDialog;
Wale Ogunwale59507092018-10-29 09:00:30 -0700263import com.android.server.am.PendingIntentController;
264import com.android.server.am.PendingIntentRecord;
265import com.android.server.am.UserState;
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700266import com.android.server.firewall.IntentFirewall;
Tarandeep Singh07b318b2019-07-17 11:12:04 -0700267import com.android.server.inputmethod.InputMethodSystemProperty;
Evan Rosky4505b352018-09-06 11:20:40 -0700268import com.android.server.pm.UserManagerService;
Hai Zhangf4da9be2019-05-01 13:46:06 +0800269import com.android.server.policy.PermissionPolicyInternal;
Evan Rosky4505b352018-09-06 11:20:40 -0700270import com.android.server.uri.UriGrantsManagerInternal;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700271import com.android.server.vr.VrManagerInternal;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700272
Wale Ogunwale31913b52018-10-13 08:29:31 -0700273import java.io.BufferedReader;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700274import java.io.File;
Wale Ogunwale31913b52018-10-13 08:29:31 -0700275import java.io.FileDescriptor;
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700276import java.io.FileOutputStream;
Wale Ogunwale31913b52018-10-13 08:29:31 -0700277import java.io.FileReader;
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700278import java.io.IOException;
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700279import java.io.PrintWriter;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700280import java.io.StringWriter;
Riddle Hsua0536432019-02-16 00:38:59 +0800281import java.lang.annotation.ElementType;
282import java.lang.annotation.Retention;
283import java.lang.annotation.RetentionPolicy;
284import java.lang.annotation.Target;
Wale Ogunwaleee6eca12018-09-19 20:37:53 -0700285import java.lang.ref.WeakReference;
Wale Ogunwale31913b52018-10-13 08:29:31 -0700286import java.text.DateFormat;
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700287import java.util.ArrayList;
Wale Ogunwale27c48ae2018-10-25 19:01:01 -0700288import java.util.Arrays;
Wale Ogunwale31913b52018-10-13 08:29:31 -0700289import java.util.Date;
Alison Cichowlas3e340502018-08-07 17:15:01 -0400290import java.util.HashMap;
Wale Ogunwaleee6eca12018-09-19 20:37:53 -0700291import java.util.HashSet;
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700292import java.util.List;
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700293import java.util.Locale;
Wale Ogunwale31913b52018-10-13 08:29:31 -0700294import java.util.Map;
Daulet Zhanguzinc6c641f2020-01-02 17:18:30 +0000295import java.util.Objects;
Wale Ogunwale31913b52018-10-13 08:29:31 -0700296import java.util.Set;
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700297
298/**
299 * System service for managing activities and their containers (task, stacks, displays,... ).
300 *
301 * {@hide}
302 */
303public class ActivityTaskManagerService extends IActivityTaskManager.Stub {
Wale Ogunwale98875612018-10-12 07:53:02 -0700304 private static final String TAG = TAG_WITH_CLASS_NAME ? "ActivityTaskManagerService" : TAG_ATM;
Wale Ogunwale8f93b642019-12-26 12:10:52 -0800305 static final String TAG_STACK = TAG + POSTFIX_STACK;
Wale Ogunwale196db712019-12-27 15:35:39 +0000306 static final String TAG_SWITCH = TAG + POSTFIX_SWITCH;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700307 private static final String TAG_IMMERSIVE = TAG + POSTFIX_IMMERSIVE;
308 private static final String TAG_FOCUS = TAG + POSTFIX_FOCUS;
309 private static final String TAG_VISIBILITY = TAG + POSTFIX_VISIBILITY;
310 private static final String TAG_LOCKTASK = TAG + POSTFIX_LOCKTASK;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700311 private static final String TAG_CONFIGURATION = TAG + POSTFIX_CONFIGURATION;
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700312
Wale Ogunwale906f9c62018-07-23 11:23:44 -0700313 // How long we wait until we timeout on key dispatching.
Wale Ogunwale51cc98a2018-10-15 10:41:05 -0700314 public static final int KEY_DISPATCHING_TIMEOUT_MS = 5 * 1000;
Wale Ogunwale906f9c62018-07-23 11:23:44 -0700315 // How long we wait until we timeout on key dispatching during instrumentation.
Wale Ogunwale51cc98a2018-10-15 10:41:05 -0700316 static final int INSTRUMENTATION_KEY_DISPATCHING_TIMEOUT_MS = 60 * 1000;
Michal Karpinskifc6872e2019-05-21 15:18:44 +0100317 // How long we permit background activity starts after an activity in the process
318 // started or finished.
319 static final long ACTIVITY_BG_START_GRACE_PERIOD_MS = 10 * 1000;
Wale Ogunwale906f9c62018-07-23 11:23:44 -0700320
Wale Ogunwale98875612018-10-12 07:53:02 -0700321 /** Used to indicate that an app transition should be animated. */
322 static final boolean ANIMATE = true;
323
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700324 /** Hardware-reported OpenGLES version. */
325 final int GL_ES_VERSION;
326
Wale Ogunwale31913b52018-10-13 08:29:31 -0700327 public static final String DUMP_ACTIVITIES_CMD = "activities" ;
328 public static final String DUMP_ACTIVITIES_SHORT_CMD = "a" ;
329 public static final String DUMP_LASTANR_CMD = "lastanr" ;
330 public static final String DUMP_LASTANR_TRACES_CMD = "lastanr-traces" ;
331 public static final String DUMP_STARTER_CMD = "starter" ;
332 public static final String DUMP_CONTAINERS_CMD = "containers" ;
333 public static final String DUMP_RECENTS_CMD = "recents" ;
334 public static final String DUMP_RECENTS_SHORT_CMD = "r" ;
335
Wale Ogunwale64258362018-10-16 15:13:37 -0700336 /** This activity is not being relaunched, or being relaunched for a non-resize reason. */
337 public static final int RELAUNCH_REASON_NONE = 0;
338 /** This activity is being relaunched due to windowing mode change. */
339 public static final int RELAUNCH_REASON_WINDOWING_MODE_RESIZE = 1;
340 /** This activity is being relaunched due to a free-resize operation. */
341 public static final int RELAUNCH_REASON_FREE_RESIZE = 2;
342
Wale Ogunwale16e505a2018-05-07 15:00:49 -0700343 Context mContext;
Wale Ogunwale64258362018-10-16 15:13:37 -0700344
Wale Ogunwalef6733932018-06-27 05:14:34 -0700345 /**
346 * This Context is themable and meant for UI display (AlertDialogs, etc.). The theme can
347 * change at runtime. Use mContext for non-UI purposes.
348 */
349 final Context mUiContext;
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700350 final ActivityThread mSystemThread;
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700351 H mH;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700352 UiHandler mUiHandler;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700353 ActivityManagerInternal mAmInternal;
Wale Ogunwale6d50dcc2018-07-21 23:00:40 -0700354 UriGrantsManagerInternal mUgmInternal;
Wale Ogunwale906f9c62018-07-23 11:23:44 -0700355 private PackageManagerInternal mPmInternal;
Hai Zhangf4da9be2019-05-01 13:46:06 +0800356 private PermissionPolicyInternal mPermissionPolicyInternal;
Wale Ogunwaleb73f3962018-11-20 07:58:22 -0800357 @VisibleForTesting
358 final ActivityTaskManagerInternal mInternal;
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700359 PowerManagerInternal mPowerManagerInternal;
360 private UsageStatsManagerInternal mUsageStatsInternal;
361
Wale Ogunwaleee6eca12018-09-19 20:37:53 -0700362 PendingIntentController mPendingIntentController;
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700363 IntentFirewall mIntentFirewall;
364
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700365 /* Global service lock used by the package the owns this service. */
Wale Ogunwale1f5e53d2018-11-05 05:12:46 -0800366 final WindowManagerGlobalLock mGlobalLock = new WindowManagerGlobalLock();
Riddle Hsud7088f82019-01-30 13:04:50 +0800367 /**
Wale Ogunwale8a1860a2019-06-05 08:57:19 -0700368 * It is the same instance as {@link #mGlobalLock}, just declared as a type that the
Riddle Hsud7088f82019-01-30 13:04:50 +0800369 * locked-region-code-injection does't recognize it. It is used to skip wrapping priority
370 * booster for places that are already in the scope of another booster (e.g. computing oom-adj).
371 *
372 * @see WindowManagerThreadPriorityBooster
373 */
374 final Object mGlobalLockWithoutBoost = mGlobalLock;
Wale Ogunwale16e505a2018-05-07 15:00:49 -0700375 ActivityStackSupervisor mStackSupervisor;
Louis Chang149d5c82019-12-30 09:47:39 +0800376 RootWindowContainer mRootWindowContainer;
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700377 WindowManagerService mWindowManager;
Wale Ogunwalef6733932018-06-27 05:14:34 -0700378 private UserManagerService mUserManager;
Philip P. Moltmannee295092020-02-10 08:46:26 -0800379 private AppOpsManager mAppOpsManager;
Wale Ogunwalebff2df42018-10-18 17:09:19 -0700380 /** All active uids in the system. */
Riddle Hsua0536432019-02-16 00:38:59 +0800381 private final MirrorActiveUids mActiveUids = new MirrorActiveUids();
Wale Ogunwale9de19442018-10-18 19:05:03 -0700382 private final SparseArray<String> mPendingTempWhitelist = new SparseArray<>();
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700383 /** All processes currently running that might have a window organized by name. */
384 final ProcessMap<WindowProcessController> mProcessNames = new ProcessMap<>();
Michal Karpinski2e0aad22019-04-12 16:22:55 +0100385 /** All processes we currently have running mapped by pid and uid */
386 final WindowProcessControllerMap mProcessMap = new WindowProcessControllerMap();
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700387 /** This is the process holding what we currently consider to be the "home" activity. */
388 WindowProcessController mHomeProcess;
Wale Ogunwale53783742018-09-16 10:21:51 -0700389 /** The currently running heavy-weight process, if any. */
390 WindowProcessController mHeavyWeightProcess = null;
Wale Ogunwale214f3482018-10-04 11:00:47 -0700391 boolean mHasHeavyWeightFeature;
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700392 /**
393 * This is the process holding the activity the user last visited that is in a different process
394 * from the one they are currently in.
395 */
396 WindowProcessController mPreviousProcess;
397 /** The time at which the previous process was last visible. */
398 long mPreviousProcessVisibleTime;
399
Wale Ogunwale16e505a2018-05-07 15:00:49 -0700400 /** List of intents that were used to start the most recent tasks. */
401 private RecentTasks mRecentTasks;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700402 /** State of external calls telling us if the device is awake or asleep. */
403 private boolean mKeyguardShown = false;
404
405 // Wrapper around VoiceInteractionServiceManager
406 private AssistUtils mAssistUtils;
407
408 // VoiceInteraction session ID that changes for each new request except when
409 // being called for multi-window assist in a single session.
410 private int mViSessionId = 1000;
411
412 // How long to wait in getAssistContextExtras for the activity and foreground services
413 // to respond with the result.
414 private static final int PENDING_ASSIST_EXTRAS_TIMEOUT = 500;
415
416 // How long top wait when going through the modern assist (which doesn't need to block
417 // on getting this result before starting to launch its UI).
418 private static final int PENDING_ASSIST_EXTRAS_LONG_TIMEOUT = 2000;
419
420 // How long to wait in getAutofillAssistStructure() for the activity to respond with the result.
421 private static final int PENDING_AUTOFILL_ASSIST_STRUCTURE_TIMEOUT = 2000;
422
Alison Cichowlas3e340502018-08-07 17:15:01 -0400423 // Permission tokens are used to temporarily granted a trusted app the ability to call
424 // #startActivityAsCaller. A client is expected to dump its token after this time has elapsed,
425 // showing any appropriate error messages to the user.
426 private static final long START_AS_CALLER_TOKEN_TIMEOUT =
427 10 * MINUTE_IN_MILLIS;
428
429 // How long before the service actually expires a token. This is slightly longer than
430 // START_AS_CALLER_TOKEN_TIMEOUT, to provide a buffer so clients will rarely encounter the
431 // expiration exception.
432 private static final long START_AS_CALLER_TOKEN_TIMEOUT_IMPL =
433 START_AS_CALLER_TOKEN_TIMEOUT + 2 * 1000;
434
435 // How long the service will remember expired tokens, for the purpose of providing error
436 // messaging when a client uses an expired token.
437 private static final long START_AS_CALLER_TOKEN_EXPIRED_TIMEOUT =
438 START_AS_CALLER_TOKEN_TIMEOUT_IMPL + 20 * MINUTE_IN_MILLIS;
439
440 // Activity tokens of system activities that are delegating their call to
441 // #startActivityByCaller, keyed by the permissionToken granted to the delegate.
442 final HashMap<IBinder, IBinder> mStartActivitySources = new HashMap<>();
443
444 // Permission tokens that have expired, but we remember for error reporting.
445 final ArrayList<IBinder> mExpiredStartAsCallerTokens = new ArrayList<>();
446
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700447 private final ArrayList<PendingAssistExtras> mPendingAssistExtras = new ArrayList<>();
448
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700449 // Keeps track of the active voice interaction service component, notified from
450 // VoiceInteractionManagerService
451 ComponentName mActiveVoiceInteractionServiceComponent;
452
Michal Karpinskida34cd42019-04-02 19:46:52 +0100453 // A map userId and all its companion app uids
454 private final Map<Integer, Set<Integer>> mCompanionAppUidsMap = new ArrayMap<>();
Ricky Wai2452e2d2019-03-18 19:19:08 +0000455
Wale Ogunwalee2172292018-10-25 10:11:10 -0700456 VrController mVrController;
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700457 KeyguardController mKeyguardController;
458 private final ClientLifecycleManager mLifecycleManager;
459 private TaskChangeNotificationController mTaskChangeNotificationController;
Wale Ogunwaled95c06b2018-05-08 10:35:38 -0700460 /** The controller for all operations related to locktask. */
461 private LockTaskController mLockTaskController;
Wale Ogunwale5fa8a8c2018-05-08 13:43:21 -0700462 private ActivityStartController mActivityStartController;
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700463
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700464 boolean mSuppressResizeConfigChanges;
465
Shivam Agrawal1d3db652019-07-01 15:26:11 -0700466 final UpdateConfigurationResult mTmpUpdateConfigurationResult =
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700467 new UpdateConfigurationResult();
468
469 static final class UpdateConfigurationResult {
470 // Configuration changes that were updated.
471 int changes;
472 // If the activity was relaunched to match the new configuration.
473 boolean activityRelaunched;
474
475 void reset() {
476 changes = 0;
477 activityRelaunched = false;
478 }
479 }
480
Wale Ogunwalec9e57de2018-05-08 14:28:07 -0700481 /** Current sequencing integer of the configuration, for skipping old configurations. */
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700482 private int mConfigurationSeq;
483 // To cache the list of supported system locales
484 private String[] mSupportedSystemLocales = null;
Wale Ogunwalec9e57de2018-05-08 14:28:07 -0700485
486 /**
487 * Temp object used when global and/or display override configuration is updated. It is also
488 * sent to outer world instead of {@link #getGlobalConfiguration} because we don't trust
489 * anyone...
490 */
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700491 private Configuration mTempConfig = new Configuration();
492
Wale Ogunwalef6733932018-06-27 05:14:34 -0700493 /** Temporary to avoid allocations. */
494 final StringBuilder mStringBuilder = new StringBuilder(256);
495
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700496 // Amount of time after a call to stopAppSwitches() during which we will
497 // prevent further untrusted switches from happening.
498 private static final long APP_SWITCH_DELAY_TIME = 5 * 1000;
499
500 /**
501 * The time at which we will allow normal application switches again,
502 * after a call to {@link #stopAppSwitches()}.
503 */
Wale Ogunwalef6733932018-06-27 05:14:34 -0700504 private long mAppSwitchesAllowedTime;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700505 /**
506 * This is set to true after the first switch after mAppSwitchesAllowedTime
507 * is set; any switches after that will clear the time.
508 */
Wale Ogunwalef6733932018-06-27 05:14:34 -0700509 private boolean mDidAppSwitch;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700510
Ricky Wai906af482019-06-03 17:25:28 +0100511 /**
512 * Last stop app switches time, apps finished before this time cannot start background activity
513 * even if they are in grace period.
514 */
515 private long mLastStopAppSwitchesTime;
516
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700517 IActivityController mController = null;
518 boolean mControllerIsAMonkey = false;
519
Wale Ogunwale214f3482018-10-04 11:00:47 -0700520 final int mFactoryTest;
521
522 /** Used to control how we initialize the service. */
523 ComponentName mTopComponent;
524 String mTopAction = Intent.ACTION_MAIN;
525 String mTopData;
526
Wale Ogunwale1f5e53d2018-11-05 05:12:46 -0800527 /** Profiling app information. */
528 String mProfileApp = null;
529 WindowProcessController mProfileProc = null;
530 ProfilerInfo mProfilerInfo = null;
531
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700532 /**
Wale Ogunwale31913b52018-10-13 08:29:31 -0700533 * Dump of the activity state at the time of the last ANR. Cleared after
534 * {@link WindowManagerService#LAST_ANR_LIFETIME_DURATION_MSECS}
535 */
536 String mLastANRState;
537
538 /**
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700539 * Used to retain an update lock when the foreground activity is in
540 * immersive mode.
541 */
Wale Ogunwalef6733932018-06-27 05:14:34 -0700542 private final UpdateLock mUpdateLock = new UpdateLock("immersive");
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700543
544 /**
545 * Packages that are being allowed to perform unrestricted app switches. Mapping is
546 * User -> Type -> uid.
547 */
548 final SparseArray<ArrayMap<String, Integer>> mAllowAppSwitchUids = new SparseArray<>();
549
550 /** The dimensions of the thumbnails in the Recents UI. */
Wale Ogunwalef6733932018-06-27 05:14:34 -0700551 private int mThumbnailWidth;
552 private int mThumbnailHeight;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700553
554 /**
555 * Flag that indicates if multi-window is enabled.
556 *
557 * For any particular form of multi-window to be enabled, generic multi-window must be enabled
558 * in {@link com.android.internal.R.bool#config_supportsMultiWindow} config or
559 * {@link Settings.Global#DEVELOPMENT_FORCE_RESIZABLE_ACTIVITIES} development option set.
560 * At least one of the forms of multi-window must be enabled in order for this flag to be
561 * initialized to 'true'.
562 *
563 * @see #mSupportsSplitScreenMultiWindow
564 * @see #mSupportsFreeformWindowManagement
565 * @see #mSupportsPictureInPicture
566 * @see #mSupportsMultiDisplay
567 */
568 boolean mSupportsMultiWindow;
569 boolean mSupportsSplitScreenMultiWindow;
570 boolean mSupportsFreeformWindowManagement;
571 boolean mSupportsPictureInPicture;
572 boolean mSupportsMultiDisplay;
573 boolean mForceResizableActivities;
Shivam Agrawal780b5bb2019-07-17 10:17:11 -0700574 boolean mSizeCompatFreeform;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700575
576 final List<ActivityTaskManagerInternal.ScreenObserver> mScreenObservers = new ArrayList<>();
577
578 // VR Vr2d Display Id.
579 int mVr2dDisplayId = INVALID_DISPLAY;
Wale Ogunwalec9e57de2018-05-08 14:28:07 -0700580
Wale Ogunwalef6733932018-06-27 05:14:34 -0700581 /**
582 * Set while we are wanting to sleep, to prevent any
583 * activities from being started/resumed.
584 *
585 * TODO(b/33594039): Clarify the actual state transitions represented by mSleeping.
586 *
587 * Currently mSleeping is set to true when transitioning into the sleep state, and remains true
588 * while in the sleep state until there is a pending transition out of sleep, in which case
589 * mSleeping is set to false, and remains false while awake.
590 *
591 * Whether mSleeping can quickly toggled between true/false without the device actually
592 * display changing states is undefined.
593 */
594 private boolean mSleeping = false;
595
596 /**
597 * The process state used for processes that are running the top activities.
598 * This changes between TOP and TOP_SLEEPING to following mSleeping.
599 */
600 int mTopProcessState = ActivityManager.PROCESS_STATE_TOP;
601
Riddle Hsua0022cd2019-09-09 21:12:41 +0800602 @Retention(RetentionPolicy.SOURCE)
603 @IntDef({
604 LAYOUT_REASON_CONFIG_CHANGED,
605 LAYOUT_REASON_VISIBILITY_CHANGED,
606 })
607 @interface LayoutReason {}
608 static final int LAYOUT_REASON_CONFIG_CHANGED = 0x1;
609 static final int LAYOUT_REASON_VISIBILITY_CHANGED = 0x2;
610
611 /** The reasons to perform surface placement. */
612 @LayoutReason
613 private int mLayoutReasons;
614
Wale Ogunwalef6733932018-06-27 05:14:34 -0700615 // Whether we should show our dialogs (ANR, crash, etc) or just perform their default action
616 // automatically. Important for devices without direct input devices.
617 private boolean mShowDialogs = true;
618
619 /** Set if we are shutting down the system, similar to sleeping. */
620 boolean mShuttingDown = false;
621
622 /**
623 * We want to hold a wake lock while running a voice interaction session, since
624 * this may happen with the screen off and we need to keep the CPU running to
625 * be able to continue to interact with the user.
626 */
627 PowerManager.WakeLock mVoiceWakeLock;
628
629 /**
630 * Set while we are running a voice interaction. This overrides sleeping while it is active.
631 */
632 IVoiceInteractionSession mRunningVoice;
633
634 /**
635 * The last resumed activity. This is identical to the current resumed activity most
636 * of the time but could be different when we're pausing one activity before we resume
637 * another activity.
638 */
639 ActivityRecord mLastResumedActivity;
640
641 /**
642 * The activity that is currently being traced as the active resumed activity.
643 *
644 * @see #updateResumedAppTrace
645 */
646 private @Nullable ActivityRecord mTracedResumedActivity;
647
648 /** If non-null, we are tracking the time the user spends in the currently focused app. */
649 AppTimeTracker mCurAppTimeTracker;
650
Shivam Agrawal1d3db652019-07-01 15:26:11 -0700651 AppWarnings mAppWarnings;
Wale Ogunwale008163e2018-07-23 23:11:08 -0700652
Wale Ogunwale53783742018-09-16 10:21:51 -0700653 /**
654 * Packages that the user has asked to have run in screen size
655 * compatibility mode instead of filling the screen.
656 */
657 CompatModePackages mCompatModePackages;
658
Wale Ogunwalef6733932018-06-27 05:14:34 -0700659 private FontScaleSettingObserver mFontScaleSettingObserver;
660
Robert Carr8a2f9132019-11-11 15:03:15 -0800661 /**
662 * Stores the registration and state of TaskOrganizers in use.
663 */
Evan Rosky0037e5f2019-11-05 10:26:24 -0800664 TaskOrganizerController mTaskOrganizerController = new TaskOrganizerController(this);
Robert Carr8a2f9132019-11-11 15:03:15 -0800665
Ricky Wai96f5c352019-04-10 18:40:17 +0100666 private int mDeviceOwnerUid = Process.INVALID_UID;
Michal Karpinski4026cae2019-02-12 11:51:47 +0000667
Wale Ogunwalef6733932018-06-27 05:14:34 -0700668 private final class FontScaleSettingObserver extends ContentObserver {
669 private final Uri mFontScaleUri = Settings.System.getUriFor(FONT_SCALE);
670 private final Uri mHideErrorDialogsUri = Settings.Global.getUriFor(HIDE_ERROR_DIALOGS);
671
672 public FontScaleSettingObserver() {
673 super(mH);
674 final ContentResolver resolver = mContext.getContentResolver();
675 resolver.registerContentObserver(mFontScaleUri, false, this, UserHandle.USER_ALL);
676 resolver.registerContentObserver(mHideErrorDialogsUri, false, this,
677 UserHandle.USER_ALL);
678 }
679
680 @Override
681 public void onChange(boolean selfChange, Uri uri, @UserIdInt int userId) {
682 if (mFontScaleUri.equals(uri)) {
683 updateFontScaleIfNeeded(userId);
684 } else if (mHideErrorDialogsUri.equals(uri)) {
685 synchronized (mGlobalLock) {
686 updateShouldShowDialogsLocked(getGlobalConfiguration());
687 }
688 }
689 }
690 }
691
Riddle Hsua0536432019-02-16 00:38:59 +0800692 /** Indicates that the method may be invoked frequently or is sensitive to performance. */
693 @Target(ElementType.METHOD)
694 @Retention(RetentionPolicy.SOURCE)
695 @interface HotPath {
696 int NONE = 0;
697 int OOM_ADJUSTMENT = 1;
698 int LRU_UPDATE = 2;
699 int PROCESS_CHANGE = 3;
700 int caller() default NONE;
701 }
702
Wale Ogunwalea38654f2019-11-17 20:37:15 -0800703 private final Runnable mUpdateOomAdjRunnable = new Runnable() {
704 @Override
Wale Ogunwale85fb19a2019-12-05 10:41:05 +0900705 public void run() {
Wale Ogunwalea38654f2019-11-17 20:37:15 -0800706 mAmInternal.updateOomAdj();
707 }
708 };
709
Charles Chen8d98dd22018-12-26 17:36:54 +0800710 @VisibleForTesting(visibility = VisibleForTesting.Visibility.PACKAGE)
711 public ActivityTaskManagerService(Context context) {
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700712 mContext = context;
Wale Ogunwale214f3482018-10-04 11:00:47 -0700713 mFactoryTest = FactoryTest.getMode();
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700714 mSystemThread = ActivityThread.currentActivityThread();
715 mUiContext = mSystemThread.getSystemUiContext();
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700716 mLifecycleManager = new ClientLifecycleManager();
Wale Ogunwaleb73f3962018-11-20 07:58:22 -0800717 mInternal = new LocalService();
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700718 GL_ES_VERSION = SystemProperties.getInt("ro.opengles.version", GL_ES_VERSION_UNDEFINED);
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700719 }
720
Wale Ogunwale387b34c2018-10-25 19:59:40 -0700721 public void onSystemReady() {
722 synchronized (mGlobalLock) {
723 mHasHeavyWeightFeature = mContext.getPackageManager().hasSystemFeature(
724 PackageManager.FEATURE_CANT_SAVE_STATE);
725 mAssistUtils = new AssistUtils(mContext);
726 mVrController.onSystemReady();
727 mRecentTasks.onSystemReadyLocked();
Garfield Tan891146c2018-10-09 12:14:00 -0700728 mStackSupervisor.onSystemReady();
Wale Ogunwale387b34c2018-10-25 19:59:40 -0700729 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700730 }
731
Wale Ogunwale387b34c2018-10-25 19:59:40 -0700732 public void onInitPowerManagement() {
733 synchronized (mGlobalLock) {
734 mStackSupervisor.initPowerManagement();
735 final PowerManager pm = (PowerManager) mContext.getSystemService(Context.POWER_SERVICE);
736 mPowerManagerInternal = LocalServices.getService(PowerManagerInternal.class);
737 mVoiceWakeLock = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "*voice*");
738 mVoiceWakeLock.setReferenceCounted(false);
739 }
Wale Ogunwalef6733932018-06-27 05:14:34 -0700740 }
741
Wale Ogunwale387b34c2018-10-25 19:59:40 -0700742 public void installSystemProviders() {
Wale Ogunwalef6733932018-06-27 05:14:34 -0700743 mFontScaleSettingObserver = new FontScaleSettingObserver();
744 }
745
Wale Ogunwale59507092018-10-29 09:00:30 -0700746 public void retrieveSettings(ContentResolver resolver) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700747 final boolean freeformWindowManagement =
748 mContext.getPackageManager().hasSystemFeature(FEATURE_FREEFORM_WINDOW_MANAGEMENT)
749 || Settings.Global.getInt(
750 resolver, DEVELOPMENT_ENABLE_FREEFORM_WINDOWS_SUPPORT, 0) != 0;
751
752 final boolean supportsMultiWindow = ActivityTaskManager.supportsMultiWindow(mContext);
753 final boolean supportsPictureInPicture = supportsMultiWindow &&
754 mContext.getPackageManager().hasSystemFeature(FEATURE_PICTURE_IN_PICTURE);
755 final boolean supportsSplitScreenMultiWindow =
756 ActivityTaskManager.supportsSplitScreenMultiWindow(mContext);
757 final boolean supportsMultiDisplay = mContext.getPackageManager()
758 .hasSystemFeature(FEATURE_ACTIVITIES_ON_SECONDARY_DISPLAYS);
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700759 final boolean forceRtl = Settings.Global.getInt(resolver, DEVELOPMENT_FORCE_RTL, 0) != 0;
760 final boolean forceResizable = Settings.Global.getInt(
761 resolver, DEVELOPMENT_FORCE_RESIZABLE_ACTIVITIES, 0) != 0;
Shivam Agrawal780b5bb2019-07-17 10:17:11 -0700762 final boolean sizeCompatFreeform = Settings.Global.getInt(
763 resolver, DEVELOPMENT_ENABLE_SIZECOMPAT_FREEFORM, 0) != 0;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700764
765 // Transfer any global setting for forcing RTL layout, into a System Property
Kiyoung Kim0fe161d2018-12-20 18:26:10 +0900766 DisplayProperties.debug_force_rtl(forceRtl);
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700767
768 final Configuration configuration = new Configuration();
769 Settings.System.getConfiguration(resolver, configuration);
770 if (forceRtl) {
771 // This will take care of setting the correct layout direction flags
772 configuration.setLayoutDirection(configuration.locale);
773 }
774
775 synchronized (mGlobalLock) {
776 mForceResizableActivities = forceResizable;
Shivam Agrawal780b5bb2019-07-17 10:17:11 -0700777 mSizeCompatFreeform = sizeCompatFreeform;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700778 final boolean multiWindowFormEnabled = freeformWindowManagement
779 || supportsSplitScreenMultiWindow
780 || supportsPictureInPicture
781 || supportsMultiDisplay;
782 if ((supportsMultiWindow || forceResizable) && multiWindowFormEnabled) {
783 mSupportsMultiWindow = true;
784 mSupportsFreeformWindowManagement = freeformWindowManagement;
785 mSupportsSplitScreenMultiWindow = supportsSplitScreenMultiWindow;
786 mSupportsPictureInPicture = supportsPictureInPicture;
787 mSupportsMultiDisplay = supportsMultiDisplay;
788 } else {
789 mSupportsMultiWindow = false;
790 mSupportsFreeformWindowManagement = false;
791 mSupportsSplitScreenMultiWindow = false;
792 mSupportsPictureInPicture = false;
793 mSupportsMultiDisplay = false;
794 }
Garfield Tanb5910b42019-03-14 14:50:59 -0700795 mWindowManager.mRoot.onSettingsRetrieved();
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700796 // This happens before any activities are started, so we can change global configuration
797 // in-place.
798 updateConfigurationLocked(configuration, null, true);
799 final Configuration globalConfig = getGlobalConfiguration();
800 if (DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION, "Initial config: " + globalConfig);
801
802 // Load resources only after the current configuration has been set.
803 final Resources res = mContext.getResources();
804 mThumbnailWidth = res.getDimensionPixelSize(
805 com.android.internal.R.dimen.thumbnail_width);
806 mThumbnailHeight = res.getDimensionPixelSize(
807 com.android.internal.R.dimen.thumbnail_height);
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700808 }
809 }
810
Wale Ogunwale1f5e53d2018-11-05 05:12:46 -0800811 public WindowManagerGlobalLock getGlobalLock() {
812 return mGlobalLock;
813 }
814
Yunfan Chen585f2932019-01-29 16:04:45 +0900815 /** For test purpose only. */
816 @VisibleForTesting
817 public ActivityTaskManagerInternal getAtmInternal() {
818 return mInternal;
819 }
820
Riddle Hsud93a6c42018-11-29 21:50:06 +0800821 public void initialize(IntentFirewall intentFirewall, PendingIntentController intentController,
822 Looper looper) {
823 mH = new H(looper);
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700824 mUiHandler = new UiHandler();
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700825 mIntentFirewall = intentFirewall;
Wale Ogunwale53783742018-09-16 10:21:51 -0700826 final File systemDir = SystemServiceManager.ensureSystemDir();
Wale Ogunwaleda8b8272018-11-29 19:37:37 -0800827 mAppWarnings = createAppWarnings(mUiContext, mH, mUiHandler, systemDir);
Wale Ogunwale53783742018-09-16 10:21:51 -0700828 mCompatModePackages = new CompatModePackages(this, systemDir, mH);
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700829 mPendingIntentController = intentController;
Wale Ogunwalec9e57de2018-05-08 14:28:07 -0700830 mStackSupervisor = createStackSupervisor();
Wale Ogunwalec9e57de2018-05-08 14:28:07 -0700831
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700832 mTaskChangeNotificationController =
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700833 new TaskChangeNotificationController(mGlobalLock, mStackSupervisor, mH);
Wale Ogunwaled95c06b2018-05-08 10:35:38 -0700834 mLockTaskController = new LockTaskController(mContext, mStackSupervisor, mH);
Wale Ogunwalec9e57de2018-05-08 14:28:07 -0700835 mActivityStartController = new ActivityStartController(this);
Wale Ogunwale8a1860a2019-06-05 08:57:19 -0700836 setRecentTasks(new RecentTasks(this, mStackSupervisor));
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700837 mVrController = new VrController(mGlobalLock);
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700838 mKeyguardController = mStackSupervisor.getKeyguardController();
839 }
840
Wale Ogunwale387b34c2018-10-25 19:59:40 -0700841 public void onActivityManagerInternalAdded() {
842 synchronized (mGlobalLock) {
843 mAmInternal = LocalServices.getService(ActivityManagerInternal.class);
844 mUgmInternal = LocalServices.getService(UriGrantsManagerInternal.class);
845 }
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700846 }
847
Yunfan Chen75157d72018-07-27 14:47:21 +0900848 int increaseConfigurationSeqLocked() {
849 mConfigurationSeq = Math.max(++mConfigurationSeq, 1);
850 return mConfigurationSeq;
851 }
852
Wale Ogunwalec9e57de2018-05-08 14:28:07 -0700853 protected ActivityStackSupervisor createStackSupervisor() {
854 final ActivityStackSupervisor supervisor = new ActivityStackSupervisor(this, mH.getLooper());
855 supervisor.initialize();
856 return supervisor;
857 }
858
Wale Ogunwaleda8b8272018-11-29 19:37:37 -0800859 protected AppWarnings createAppWarnings(
860 Context uiContext, Handler handler, Handler uiHandler, File systemDir) {
861 return new AppWarnings(this, uiContext, handler, uiHandler, systemDir);
862 }
863
Wale Ogunwale387b34c2018-10-25 19:59:40 -0700864 public void setWindowManager(WindowManagerService wm) {
865 synchronized (mGlobalLock) {
866 mWindowManager = wm;
Louis Chang149d5c82019-12-30 09:47:39 +0800867 mRootWindowContainer = wm.mRoot;
Louis Chang3ff72a82019-12-17 12:12:59 +0800868 mTempConfig.setToDefaults();
869 mTempConfig.setLocales(LocaleList.getDefault());
870 mConfigurationSeq = mTempConfig.seq = 1;
Louis Chang149d5c82019-12-30 09:47:39 +0800871 mRootWindowContainer.onConfigurationChanged(mTempConfig);
Wale Ogunwale387b34c2018-10-25 19:59:40 -0700872 mLockTaskController.setWindowManager(wm);
873 mStackSupervisor.setWindowManager(wm);
Louis Chang149d5c82019-12-30 09:47:39 +0800874 mRootWindowContainer.setWindowManager(wm);
Wale Ogunwale387b34c2018-10-25 19:59:40 -0700875 }
Wale Ogunwale16e505a2018-05-07 15:00:49 -0700876 }
877
Wale Ogunwale387b34c2018-10-25 19:59:40 -0700878 public void setUsageStatsManager(UsageStatsManagerInternal usageStatsManager) {
879 synchronized (mGlobalLock) {
880 mUsageStatsInternal = usageStatsManager;
881 }
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700882 }
883
Wale Ogunwalef6733932018-06-27 05:14:34 -0700884 UserManagerService getUserManager() {
885 if (mUserManager == null) {
886 IBinder b = ServiceManager.getService(Context.USER_SERVICE);
887 mUserManager = (UserManagerService) IUserManager.Stub.asInterface(b);
888 }
889 return mUserManager;
890 }
891
Philip P. Moltmannee295092020-02-10 08:46:26 -0800892 AppOpsManager getAppOpsManager() {
893 if (mAppOpsManager == null) {
894 mAppOpsManager = mContext.getSystemService(AppOpsManager.class);
Wale Ogunwalef6733932018-06-27 05:14:34 -0700895 }
Philip P. Moltmannee295092020-02-10 08:46:26 -0800896 return mAppOpsManager;
Wale Ogunwalef6733932018-06-27 05:14:34 -0700897 }
898
899 boolean hasUserRestriction(String restriction, int userId) {
900 return getUserManager().hasUserRestriction(restriction, userId);
901 }
902
Michal Karpinski15486842019-04-25 17:33:42 +0100903 boolean hasSystemAlertWindowPermission(int callingUid, int callingPid, String callingPackage) {
Philip P. Moltmannee295092020-02-10 08:46:26 -0800904 final int mode = getAppOpsManager().noteOpNoThrow(AppOpsManager.OP_SYSTEM_ALERT_WINDOW,
905 callingUid, callingPackage, /* featureId */ null, "");
Michal Karpinski15486842019-04-25 17:33:42 +0100906 if (mode == AppOpsManager.MODE_DEFAULT) {
907 return checkPermission(Manifest.permission.SYSTEM_ALERT_WINDOW, callingPid, callingUid)
908 == PERMISSION_GRANTED;
909 }
910 return mode == AppOpsManager.MODE_ALLOWED;
911 }
912
Wale Ogunwale8a1860a2019-06-05 08:57:19 -0700913 @VisibleForTesting
914 protected void setRecentTasks(RecentTasks recentTasks) {
915 mRecentTasks = recentTasks;
916 mStackSupervisor.setRecentTasks(recentTasks);
Wale Ogunwale16e505a2018-05-07 15:00:49 -0700917 }
918
919 RecentTasks getRecentTasks() {
920 return mRecentTasks;
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700921 }
922
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700923 ClientLifecycleManager getLifecycleManager() {
924 return mLifecycleManager;
925 }
926
Wale Ogunwale5fa8a8c2018-05-08 13:43:21 -0700927 ActivityStartController getActivityStartController() {
928 return mActivityStartController;
929 }
930
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700931 TaskChangeNotificationController getTaskChangeNotificationController() {
932 return mTaskChangeNotificationController;
933 }
934
Wale Ogunwaled95c06b2018-05-08 10:35:38 -0700935 LockTaskController getLockTaskController() {
936 return mLockTaskController;
937 }
938
Yunfan Chen75157d72018-07-27 14:47:21 +0900939 /**
940 * Return the global configuration used by the process corresponding to the input pid. This is
941 * usually the global configuration with some overrides specific to that process.
942 */
943 Configuration getGlobalConfigurationForCallingPid() {
944 final int pid = Binder.getCallingPid();
Yunfan Chenc2ff6cf2018-12-04 16:56:21 -0800945 return getGlobalConfigurationForPid(pid);
946 }
947
948 /**
949 * Return the global configuration used by the process corresponding to the given pid.
950 */
951 Configuration getGlobalConfigurationForPid(int pid) {
Yunfan Chen75157d72018-07-27 14:47:21 +0900952 if (pid == MY_PID || pid < 0) {
953 return getGlobalConfiguration();
954 }
955 synchronized (mGlobalLock) {
Michal Karpinski2e0aad22019-04-12 16:22:55 +0100956 final WindowProcessController app = mProcessMap.getProcess(pid);
Yunfan Chen75157d72018-07-27 14:47:21 +0900957 return app != null ? app.getConfiguration() : getGlobalConfiguration();
958 }
959 }
960
961 /**
962 * Return the device configuration info used by the process corresponding to the input pid.
963 * The value is consistent with the global configuration for the process.
964 */
965 @Override
966 public ConfigurationInfo getDeviceConfigurationInfo() {
967 ConfigurationInfo config = new ConfigurationInfo();
968 synchronized (mGlobalLock) {
969 final Configuration globalConfig = getGlobalConfigurationForCallingPid();
970 config.reqTouchScreen = globalConfig.touchscreen;
971 config.reqKeyboardType = globalConfig.keyboard;
972 config.reqNavigation = globalConfig.navigation;
973 if (globalConfig.navigation == Configuration.NAVIGATION_DPAD
974 || globalConfig.navigation == Configuration.NAVIGATION_TRACKBALL) {
975 config.reqInputFeatures |= ConfigurationInfo.INPUT_FEATURE_FIVE_WAY_NAV;
976 }
977 if (globalConfig.keyboard != Configuration.KEYBOARD_UNDEFINED
978 && globalConfig.keyboard != Configuration.KEYBOARD_NOKEYS) {
979 config.reqInputFeatures |= ConfigurationInfo.INPUT_FEATURE_HARD_KEYBOARD;
980 }
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700981 config.reqGlEsVersion = GL_ES_VERSION;
Yunfan Chen75157d72018-07-27 14:47:21 +0900982 }
983 return config;
984 }
985
Wale Ogunwale6767eae2018-05-03 15:52:51 -0700986 private void start() {
Wale Ogunwale53783742018-09-16 10:21:51 -0700987 LocalServices.addService(ActivityTaskManagerInternal.class, mInternal);
Wale Ogunwale6767eae2018-05-03 15:52:51 -0700988 }
989
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700990 public static final class Lifecycle extends SystemService {
991 private final ActivityTaskManagerService mService;
992
993 public Lifecycle(Context context) {
994 super(context);
995 mService = new ActivityTaskManagerService(context);
996 }
997
998 @Override
999 public void onStart() {
1000 publishBinderService(Context.ACTIVITY_TASK_SERVICE, mService);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07001001 mService.start();
Wale Ogunwale65ebd952018-04-25 15:41:44 -07001002 }
1003
Garfield Tan891146c2018-10-09 12:14:00 -07001004 @Override
1005 public void onUnlockUser(int userId) {
1006 synchronized (mService.getGlobalLock()) {
Garfield Tan0d407f42019-03-07 11:47:01 -08001007 mService.mStackSupervisor.onUserUnlocked(userId);
Garfield Tan891146c2018-10-09 12:14:00 -07001008 }
1009 }
1010
1011 @Override
1012 public void onCleanupUser(int userId) {
1013 synchronized (mService.getGlobalLock()) {
1014 mService.mStackSupervisor.mLaunchParamsPersister.onCleanupUser(userId);
1015 }
1016 }
1017
Wale Ogunwale65ebd952018-04-25 15:41:44 -07001018 public ActivityTaskManagerService getService() {
1019 return mService;
1020 }
1021 }
1022
1023 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001024 public final int startActivity(IApplicationThread caller, String callingPackage,
Philip P. Moltmannee295092020-02-10 08:46:26 -08001025 String callingFeatureId, Intent intent, String resolvedType, IBinder resultTo,
1026 String resultWho, int requestCode, int startFlags, ProfilerInfo profilerInfo,
1027 Bundle bOptions) {
1028 return startActivityAsUser(caller, callingPackage, callingFeatureId, intent, resolvedType,
1029 resultTo, resultWho, requestCode, startFlags, profilerInfo, bOptions,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001030 UserHandle.getCallingUserId());
1031 }
1032
1033 @Override
1034 public final int startActivities(IApplicationThread caller, String callingPackage,
Philip P. Moltmannee295092020-02-10 08:46:26 -08001035 String callingFeatureId, Intent[] intents, String[] resolvedTypes, IBinder resultTo,
1036 Bundle bOptions, int userId) {
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07001037 assertPackageMatchesCallingUid(callingPackage);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001038 final String reason = "startActivities";
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001039 enforceNotIsolatedCaller(reason);
1040 userId = handleIncomingUser(Binder.getCallingPid(), Binder.getCallingUid(), userId, reason);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001041 // TODO: Switch to user app stacks here.
Michal Karpinski84d9ebd2019-01-17 18:28:59 +00001042 return getActivityStartController().startActivities(caller, -1, 0, -1, callingPackage,
Philip P. Moltmannee295092020-02-10 08:46:26 -08001043 callingFeatureId, intents, resolvedTypes, resultTo,
1044 SafeActivityOptions.fromBundle(bOptions), userId, reason,
1045 null /* originatingPendingIntent */, false /* allowBackgroundActivityStart */);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001046 }
1047
1048 @Override
1049 public int startActivityAsUser(IApplicationThread caller, String callingPackage,
Philip P. Moltmannee295092020-02-10 08:46:26 -08001050 String callingFeatureId, Intent intent, String resolvedType, IBinder resultTo,
1051 String resultWho, int requestCode, int startFlags, ProfilerInfo profilerInfo,
1052 Bundle bOptions, int userId) {
1053 return startActivityAsUser(caller, callingPackage, callingFeatureId, intent, resolvedType,
1054 resultTo, resultWho, requestCode, startFlags, profilerInfo, bOptions, userId,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001055 true /*validateIncomingUser*/);
1056 }
1057
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07001058 private int startActivityAsUser(IApplicationThread caller, String callingPackage,
Philip P. Moltmannee295092020-02-10 08:46:26 -08001059 @Nullable String callingFeatureId, Intent intent, String resolvedType,
1060 IBinder resultTo, String resultWho, int requestCode, int startFlags,
1061 ProfilerInfo profilerInfo, Bundle bOptions, int userId, boolean validateIncomingUser) {
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07001062 assertPackageMatchesCallingUid(callingPackage);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001063 enforceNotIsolatedCaller("startActivityAsUser");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001064
Wale Ogunwale5fa8a8c2018-05-08 13:43:21 -07001065 userId = getActivityStartController().checkTargetUser(userId, validateIncomingUser,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001066 Binder.getCallingPid(), Binder.getCallingUid(), "startActivityAsUser");
1067
1068 // TODO: Switch to user app stacks here.
Wale Ogunwale5fa8a8c2018-05-08 13:43:21 -07001069 return getActivityStartController().obtainStarter(intent, "startActivityAsUser")
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001070 .setCaller(caller)
1071 .setCallingPackage(callingPackage)
Philip P. Moltmannee295092020-02-10 08:46:26 -08001072 .setCallingFeatureId(callingFeatureId)
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001073 .setResolvedType(resolvedType)
1074 .setResultTo(resultTo)
1075 .setResultWho(resultWho)
1076 .setRequestCode(requestCode)
1077 .setStartFlags(startFlags)
1078 .setProfilerInfo(profilerInfo)
1079 .setActivityOptions(bOptions)
Louis Chang54fbb052019-10-16 17:10:17 +08001080 .setUserId(userId)
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001081 .execute();
1082
1083 }
1084
1085 @Override
1086 public int startActivityIntentSender(IApplicationThread caller, IIntentSender target,
1087 IBinder whitelistToken, Intent fillInIntent, String resolvedType, IBinder resultTo,
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001088 String resultWho, int requestCode, int flagsMask, int flagsValues, Bundle bOptions) {
1089 enforceNotIsolatedCaller("startActivityIntentSender");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001090 // Refuse possible leaked file descriptors
1091 if (fillInIntent != null && fillInIntent.hasFileDescriptors()) {
1092 throw new IllegalArgumentException("File descriptors passed in Intent");
1093 }
1094
1095 if (!(target instanceof PendingIntentRecord)) {
1096 throw new IllegalArgumentException("Bad PendingIntent object");
1097 }
1098
1099 PendingIntentRecord pir = (PendingIntentRecord)target;
1100
1101 synchronized (mGlobalLock) {
1102 // If this is coming from the currently resumed activity, it is
1103 // effectively saying that app switches are allowed at this point.
Andrii Kulian5f750bc2018-07-17 08:57:23 -07001104 final ActivityStack stack = getTopDisplayFocusedStack();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001105 if (stack.mResumedActivity != null &&
1106 stack.mResumedActivity.info.applicationInfo.uid == Binder.getCallingUid()) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001107 mAppSwitchesAllowedTime = 0;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001108 }
1109 }
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001110 return pir.sendInner(0, fillInIntent, resolvedType, whitelistToken, null, null,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001111 resultTo, resultWho, requestCode, flagsMask, flagsValues, bOptions);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001112 }
1113
1114 @Override
1115 public boolean startNextMatchingActivity(IBinder callingActivity, Intent intent,
1116 Bundle bOptions) {
1117 // Refuse possible leaked file descriptors
1118 if (intent != null && intent.hasFileDescriptors()) {
1119 throw new IllegalArgumentException("File descriptors passed in Intent");
1120 }
1121 SafeActivityOptions options = SafeActivityOptions.fromBundle(bOptions);
1122
1123 synchronized (mGlobalLock) {
1124 final ActivityRecord r = ActivityRecord.isInStackLocked(callingActivity);
1125 if (r == null) {
1126 SafeActivityOptions.abort(options);
1127 return false;
1128 }
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07001129 if (!r.attachedToProcess()) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001130 // The caller is not running... d'oh!
1131 SafeActivityOptions.abort(options);
1132 return false;
1133 }
1134 intent = new Intent(intent);
1135 // The caller is not allowed to change the data.
1136 intent.setDataAndType(r.intent.getData(), r.intent.getType());
1137 // And we are resetting to find the next component...
1138 intent.setComponent(null);
1139
1140 final boolean debug = ((intent.getFlags() & Intent.FLAG_DEBUG_LOG_RESOLUTION) != 0);
1141
1142 ActivityInfo aInfo = null;
1143 try {
1144 List<ResolveInfo> resolves =
1145 AppGlobals.getPackageManager().queryIntentActivities(
1146 intent, r.resolvedType,
1147 PackageManager.MATCH_DEFAULT_ONLY | STOCK_PM_FLAGS,
1148 UserHandle.getCallingUserId()).getList();
1149
1150 // Look for the original activity in the list...
1151 final int N = resolves != null ? resolves.size() : 0;
1152 for (int i=0; i<N; i++) {
1153 ResolveInfo rInfo = resolves.get(i);
1154 if (rInfo.activityInfo.packageName.equals(r.packageName)
1155 && rInfo.activityInfo.name.equals(r.info.name)) {
1156 // We found the current one... the next matching is
1157 // after it.
1158 i++;
1159 if (i<N) {
1160 aInfo = resolves.get(i).activityInfo;
1161 }
1162 if (debug) {
1163 Slog.v(TAG, "Next matching activity: found current " + r.packageName
1164 + "/" + r.info.name);
1165 Slog.v(TAG, "Next matching activity: next is " + ((aInfo == null)
1166 ? "null" : aInfo.packageName + "/" + aInfo.name));
1167 }
1168 break;
1169 }
1170 }
1171 } catch (RemoteException e) {
1172 }
1173
1174 if (aInfo == null) {
1175 // Nobody who is next!
1176 SafeActivityOptions.abort(options);
1177 if (debug) Slog.d(TAG, "Next matching activity: nothing found");
1178 return false;
1179 }
1180
1181 intent.setComponent(new ComponentName(
1182 aInfo.applicationInfo.packageName, aInfo.name));
1183 intent.setFlags(intent.getFlags()&~(
1184 Intent.FLAG_ACTIVITY_FORWARD_RESULT|
1185 Intent.FLAG_ACTIVITY_CLEAR_TOP|
1186 Intent.FLAG_ACTIVITY_MULTIPLE_TASK|
1187 FLAG_ACTIVITY_NEW_TASK));
1188
1189 // Okay now we need to start the new activity, replacing the currently running activity.
1190 // This is a little tricky because we want to start the new one as if the current one is
1191 // finished, but not finish the current one first so that there is no flicker.
1192 // And thus...
1193 final boolean wasFinishing = r.finishing;
1194 r.finishing = true;
1195
1196 // Propagate reply information over to the new activity.
1197 final ActivityRecord resultTo = r.resultTo;
1198 final String resultWho = r.resultWho;
1199 final int requestCode = r.requestCode;
1200 r.resultTo = null;
1201 if (resultTo != null) {
1202 resultTo.removeResultsLocked(r, resultWho, requestCode);
1203 }
1204
1205 final long origId = Binder.clearCallingIdentity();
1206 // TODO(b/64750076): Check if calling pid should really be -1.
Wale Ogunwale5fa8a8c2018-05-08 13:43:21 -07001207 final int res = getActivityStartController()
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001208 .obtainStarter(intent, "startNextMatchingActivity")
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07001209 .setCaller(r.app.getThread())
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001210 .setResolvedType(r.resolvedType)
1211 .setActivityInfo(aInfo)
1212 .setResultTo(resultTo != null ? resultTo.appToken : null)
1213 .setResultWho(resultWho)
1214 .setRequestCode(requestCode)
1215 .setCallingPid(-1)
1216 .setCallingUid(r.launchedFromUid)
1217 .setCallingPackage(r.launchedFromPackage)
Philip P. Moltmannee295092020-02-10 08:46:26 -08001218 .setCallingFeatureId(r.launchedFromFeatureId)
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001219 .setRealCallingPid(-1)
1220 .setRealCallingUid(r.launchedFromUid)
1221 .setActivityOptions(options)
1222 .execute();
1223 Binder.restoreCallingIdentity(origId);
1224
1225 r.finishing = wasFinishing;
1226 if (res != ActivityManager.START_SUCCESS) {
1227 return false;
1228 }
1229 return true;
1230 }
1231 }
1232
1233 @Override
1234 public final WaitResult startActivityAndWait(IApplicationThread caller, String callingPackage,
Philip P. Moltmannee295092020-02-10 08:46:26 -08001235 String callingFeatureId, Intent intent, String resolvedType, IBinder resultTo,
1236 String resultWho, int requestCode, int startFlags, ProfilerInfo profilerInfo,
1237 Bundle bOptions, int userId) {
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07001238 assertPackageMatchesCallingUid(callingPackage);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001239 final WaitResult res = new WaitResult();
Riddle Hsufd66d4d2019-11-14 10:35:55 +08001240 enforceNotIsolatedCaller("startActivityAndWait");
1241 userId = handleIncomingUser(Binder.getCallingPid(), Binder.getCallingUid(),
1242 userId, "startActivityAndWait");
1243 // TODO: Switch to user app stacks here.
1244 getActivityStartController().obtainStarter(intent, "startActivityAndWait")
1245 .setCaller(caller)
1246 .setCallingPackage(callingPackage)
Philip P. Moltmannee295092020-02-10 08:46:26 -08001247 .setCallingFeatureId(callingFeatureId)
Riddle Hsufd66d4d2019-11-14 10:35:55 +08001248 .setResolvedType(resolvedType)
1249 .setResultTo(resultTo)
1250 .setResultWho(resultWho)
1251 .setRequestCode(requestCode)
1252 .setStartFlags(startFlags)
1253 .setActivityOptions(bOptions)
1254 .setUserId(userId)
1255 .setProfilerInfo(profilerInfo)
1256 .setWaitResult(res)
1257 .execute();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001258 return res;
1259 }
1260
1261 @Override
1262 public final int startActivityWithConfig(IApplicationThread caller, String callingPackage,
Philip P. Moltmannee295092020-02-10 08:46:26 -08001263 String callingFeatureId, Intent intent, String resolvedType, IBinder resultTo,
1264 String resultWho, int requestCode, int startFlags, Configuration config,
1265 Bundle bOptions, int userId) {
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07001266 assertPackageMatchesCallingUid(callingPackage);
Riddle Hsufd66d4d2019-11-14 10:35:55 +08001267 enforceNotIsolatedCaller("startActivityWithConfig");
1268 userId = handleIncomingUser(Binder.getCallingPid(), Binder.getCallingUid(), userId,
1269 "startActivityWithConfig");
1270 // TODO: Switch to user app stacks here.
1271 return getActivityStartController().obtainStarter(intent, "startActivityWithConfig")
1272 .setCaller(caller)
1273 .setCallingPackage(callingPackage)
Philip P. Moltmannee295092020-02-10 08:46:26 -08001274 .setCallingFeatureId(callingFeatureId)
Riddle Hsufd66d4d2019-11-14 10:35:55 +08001275 .setResolvedType(resolvedType)
1276 .setResultTo(resultTo)
1277 .setResultWho(resultWho)
1278 .setRequestCode(requestCode)
1279 .setStartFlags(startFlags)
1280 .setGlobalConfiguration(config)
1281 .setActivityOptions(bOptions)
1282 .setUserId(userId)
1283 .execute();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001284 }
1285
Robert Carr8a2f9132019-11-11 15:03:15 -08001286 @Override
Alison Cichowlas3e340502018-08-07 17:15:01 -04001287 public IBinder requestStartActivityPermissionToken(IBinder delegatorToken) {
1288 int callingUid = Binder.getCallingUid();
1289 if (UserHandle.getAppId(callingUid) != SYSTEM_UID) {
1290 throw new SecurityException("Only the system process can request a permission token, "
1291 + "received request from uid: " + callingUid);
1292 }
1293 IBinder permissionToken = new Binder();
1294 synchronized (mGlobalLock) {
1295 mStartActivitySources.put(permissionToken, delegatorToken);
1296 }
1297
1298 Message expireMsg = PooledLambda.obtainMessage(
1299 ActivityTaskManagerService::expireStartAsCallerTokenMsg, this, permissionToken);
1300 mUiHandler.sendMessageDelayed(expireMsg, START_AS_CALLER_TOKEN_TIMEOUT_IMPL);
1301
1302 Message forgetMsg = PooledLambda.obtainMessage(
1303 ActivityTaskManagerService::forgetStartAsCallerTokenMsg, this, permissionToken);
1304 mUiHandler.sendMessageDelayed(forgetMsg, START_AS_CALLER_TOKEN_EXPIRED_TIMEOUT);
1305
1306 return permissionToken;
1307 }
1308
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001309 @Override
1310 public final int startActivityAsCaller(IApplicationThread caller, String callingPackage,
1311 Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode,
Alison Cichowlas3e340502018-08-07 17:15:01 -04001312 int startFlags, ProfilerInfo profilerInfo, Bundle bOptions, IBinder permissionToken,
1313 boolean ignoreTargetSecurity, int userId) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001314 // This is very dangerous -- it allows you to perform a start activity (including
Alison Cichowlas3e340502018-08-07 17:15:01 -04001315 // permission grants) as any app that may launch one of your own activities. So we only
1316 // allow this in two cases:
1317 // 1) The caller is an activity that is part of the core framework, and then only when it
1318 // is running as the system.
1319 // 2) The caller provides a valid permissionToken. Permission tokens are one-time use and
1320 // can only be requested by a system activity, which may then delegate this call to
1321 // another app.
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001322 final ActivityRecord sourceRecord;
1323 final int targetUid;
1324 final String targetPackage;
Philip P. Moltmannee295092020-02-10 08:46:26 -08001325 final String targetFeatureId;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001326 final boolean isResolver;
1327 synchronized (mGlobalLock) {
1328 if (resultTo == null) {
1329 throw new SecurityException("Must be called from an activity");
1330 }
Alison Cichowlas3e340502018-08-07 17:15:01 -04001331 final IBinder sourceToken;
1332 if (permissionToken != null) {
1333 // To even attempt to use a permissionToken, an app must also have this signature
1334 // permission.
1335 mAmInternal.enforceCallingPermission(
1336 android.Manifest.permission.START_ACTIVITY_AS_CALLER,
1337 "startActivityAsCaller");
1338 // If called with a permissionToken, we want the sourceRecord from the delegator
1339 // activity that requested this token.
1340 sourceToken = mStartActivitySources.remove(permissionToken);
1341 if (sourceToken == null) {
1342 // Invalid permissionToken, check if it recently expired.
1343 if (mExpiredStartAsCallerTokens.contains(permissionToken)) {
1344 throw new SecurityException("Called with expired permission token: "
1345 + permissionToken);
1346 } else {
1347 throw new SecurityException("Called with invalid permission token: "
1348 + permissionToken);
1349 }
1350 }
1351 } else {
1352 // This method was called directly by the source.
1353 sourceToken = resultTo;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001354 }
Alison Cichowlas3e340502018-08-07 17:15:01 -04001355
Louis Chang149d5c82019-12-30 09:47:39 +08001356 sourceRecord = mRootWindowContainer.isInAnyStack(sourceToken);
Alison Cichowlas3e340502018-08-07 17:15:01 -04001357 if (sourceRecord == null) {
1358 throw new SecurityException("Called with bad activity token: " + sourceToken);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001359 }
1360 if (sourceRecord.app == null) {
1361 throw new SecurityException("Called without a process attached to activity");
1362 }
Alison Cichowlas3e340502018-08-07 17:15:01 -04001363
1364 // Whether called directly or from a delegate, the source activity must be from the
1365 // android package.
1366 if (!sourceRecord.info.packageName.equals("android")) {
1367 throw new SecurityException("Must be called from an activity that is "
1368 + "declared in the android package");
1369 }
1370
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07001371 if (UserHandle.getAppId(sourceRecord.app.mUid) != SYSTEM_UID) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001372 // This is still okay, as long as this activity is running under the
1373 // uid of the original calling activity.
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07001374 if (sourceRecord.app.mUid != sourceRecord.launchedFromUid) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001375 throw new SecurityException(
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07001376 "Calling activity in uid " + sourceRecord.app.mUid
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001377 + " must be system uid or original calling uid "
1378 + sourceRecord.launchedFromUid);
1379 }
1380 }
1381 if (ignoreTargetSecurity) {
1382 if (intent.getComponent() == null) {
1383 throw new SecurityException(
1384 "Component must be specified with ignoreTargetSecurity");
1385 }
1386 if (intent.getSelector() != null) {
1387 throw new SecurityException(
1388 "Selector not allowed with ignoreTargetSecurity");
1389 }
1390 }
1391 targetUid = sourceRecord.launchedFromUid;
1392 targetPackage = sourceRecord.launchedFromPackage;
Philip P. Moltmannee295092020-02-10 08:46:26 -08001393 targetFeatureId = sourceRecord.launchedFromFeatureId;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001394 isResolver = sourceRecord.isResolverOrChildActivity();
1395 }
1396
1397 if (userId == UserHandle.USER_NULL) {
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07001398 userId = UserHandle.getUserId(sourceRecord.app.mUid);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001399 }
1400
1401 // TODO: Switch to user app stacks here.
1402 try {
Wale Ogunwale5fa8a8c2018-05-08 13:43:21 -07001403 return getActivityStartController().obtainStarter(intent, "startActivityAsCaller")
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001404 .setCallingUid(targetUid)
1405 .setCallingPackage(targetPackage)
Philip P. Moltmannee295092020-02-10 08:46:26 -08001406 .setCallingFeatureId(targetFeatureId)
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001407 .setResolvedType(resolvedType)
1408 .setResultTo(resultTo)
1409 .setResultWho(resultWho)
1410 .setRequestCode(requestCode)
1411 .setStartFlags(startFlags)
1412 .setActivityOptions(bOptions)
Louis Chang54fbb052019-10-16 17:10:17 +08001413 .setUserId(userId)
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001414 .setIgnoreTargetSecurity(ignoreTargetSecurity)
1415 .setFilterCallingUid(isResolver ? 0 /* system */ : targetUid)
Alan Stokes2f4a4ed2019-05-08 16:56:45 +01001416 // The target may well be in the background, which would normally prevent it
1417 // from starting an activity. Here we definitely want the start to succeed.
1418 .setAllowBackgroundActivityStart(true)
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001419 .execute();
1420 } catch (SecurityException e) {
1421 // XXX need to figure out how to propagate to original app.
1422 // A SecurityException here is generally actually a fault of the original
1423 // calling activity (such as a fairly granting permissions), so propagate it
1424 // back to them.
1425 /*
1426 StringBuilder msg = new StringBuilder();
1427 msg.append("While launching");
1428 msg.append(intent.toString());
1429 msg.append(": ");
1430 msg.append(e.getMessage());
1431 */
1432 throw e;
1433 }
1434 }
1435
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001436 int handleIncomingUser(int callingPid, int callingUid, int userId, String name) {
1437 return mAmInternal.handleIncomingUser(callingPid, callingUid, userId, false /* allowAll */,
Jonathan Scott92335342019-12-17 14:46:26 +00001438 ALLOW_NON_FULL, name, null /* callerPackage */);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001439 }
1440
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001441 @Override
Philip P. Moltmannee295092020-02-10 08:46:26 -08001442 public int startVoiceActivity(String callingPackage, String callingFeatureId, int callingPid,
1443 int callingUid, Intent intent, String resolvedType, IVoiceInteractionSession session,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001444 IVoiceInteractor interactor, int startFlags, ProfilerInfo profilerInfo,
1445 Bundle bOptions, int userId) {
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07001446 assertPackageMatchesCallingUid(callingPackage);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001447 mAmInternal.enforceCallingPermission(BIND_VOICE_INTERACTION, "startVoiceActivity()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001448 if (session == null || interactor == null) {
1449 throw new NullPointerException("null session or interactor");
1450 }
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001451 userId = handleIncomingUser(callingPid, callingUid, userId, "startVoiceActivity");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001452 // TODO: Switch to user app stacks here.
Wale Ogunwale5fa8a8c2018-05-08 13:43:21 -07001453 return getActivityStartController().obtainStarter(intent, "startVoiceActivity")
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001454 .setCallingUid(callingUid)
1455 .setCallingPackage(callingPackage)
Philip P. Moltmannee295092020-02-10 08:46:26 -08001456 .setCallingFeatureId(callingFeatureId)
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001457 .setResolvedType(resolvedType)
1458 .setVoiceSession(session)
1459 .setVoiceInteractor(interactor)
1460 .setStartFlags(startFlags)
1461 .setProfilerInfo(profilerInfo)
1462 .setActivityOptions(bOptions)
Louis Chang54fbb052019-10-16 17:10:17 +08001463 .setUserId(userId)
Michal Karpinski85fa2022019-02-08 12:05:09 +00001464 .setAllowBackgroundActivityStart(true)
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001465 .execute();
1466 }
1467
1468 @Override
Philip P. Moltmannee295092020-02-10 08:46:26 -08001469 public int startAssistantActivity(String callingPackage, @NonNull String callingFeatureId,
1470 int callingPid, int callingUid, Intent intent, String resolvedType, Bundle bOptions,
1471 int userId) {
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07001472 assertPackageMatchesCallingUid(callingPackage);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001473 mAmInternal.enforceCallingPermission(BIND_VOICE_INTERACTION, "startAssistantActivity()");
1474 userId = handleIncomingUser(callingPid, callingUid, userId, "startAssistantActivity");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001475
Wale Ogunwale5fa8a8c2018-05-08 13:43:21 -07001476 return getActivityStartController().obtainStarter(intent, "startAssistantActivity")
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001477 .setCallingUid(callingUid)
1478 .setCallingPackage(callingPackage)
Philip P. Moltmannee295092020-02-10 08:46:26 -08001479 .setCallingFeatureId(callingFeatureId)
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001480 .setResolvedType(resolvedType)
1481 .setActivityOptions(bOptions)
Louis Chang54fbb052019-10-16 17:10:17 +08001482 .setUserId(userId)
Michal Karpinski85fa2022019-02-08 12:05:09 +00001483 .setAllowBackgroundActivityStart(true)
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001484 .execute();
1485 }
1486
Riddle Hsu609a8e22019-06-27 16:46:29 -06001487 /**
1488 * Start the recents activity to perform the recents animation.
1489 *
1490 * @param intent The intent to start the recents activity.
1491 * @param recentsAnimationRunner Pass {@code null} to only preload the activity.
1492 */
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001493 @Override
Riddle Hsu609a8e22019-06-27 16:46:29 -06001494 public void startRecentsActivity(Intent intent, @Deprecated IAssistDataReceiver unused,
1495 @Nullable IRecentsAnimationRunner recentsAnimationRunner) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001496 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "startRecentsActivity()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001497 final int callingPid = Binder.getCallingPid();
Jorim Jaggi589c5ba2019-07-30 16:50:13 +02001498 final int callingUid = Binder.getCallingUid();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001499 final long origId = Binder.clearCallingIdentity();
1500 try {
1501 synchronized (mGlobalLock) {
Wale Ogunwale16e505a2018-05-07 15:00:49 -07001502 final ComponentName recentsComponent = mRecentTasks.getRecentsComponent();
Philip P. Moltmannee295092020-02-10 08:46:26 -08001503 final String recentsFeatureId = mRecentTasks.getRecentsComponentFeatureId();
Wale Ogunwale16e505a2018-05-07 15:00:49 -07001504 final int recentsUid = mRecentTasks.getRecentsComponentUid();
Jorim Jaggi589c5ba2019-07-30 16:50:13 +02001505 final WindowProcessController caller = getProcessController(callingPid, callingUid);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001506
1507 // Start a new recents animation
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001508 final RecentsAnimation anim = new RecentsAnimation(this, mStackSupervisor,
Riddle Hsu609a8e22019-06-27 16:46:29 -06001509 getActivityStartController(), mWindowManager, intent, recentsComponent,
Philip P. Moltmannee295092020-02-10 08:46:26 -08001510 recentsFeatureId, recentsUid, caller);
Riddle Hsu609a8e22019-06-27 16:46:29 -06001511 if (recentsAnimationRunner == null) {
1512 anim.preloadRecentsActivity();
1513 } else {
1514 anim.startRecentsActivity(recentsAnimationRunner);
1515 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001516 }
1517 } finally {
1518 Binder.restoreCallingIdentity(origId);
1519 }
1520 }
1521
1522 @Override
1523 public final int startActivityFromRecents(int taskId, Bundle bOptions) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001524 enforceCallerIsRecentsOrHasPermission(START_TASKS_FROM_RECENTS,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001525 "startActivityFromRecents()");
1526
1527 final int callingPid = Binder.getCallingPid();
1528 final int callingUid = Binder.getCallingUid();
1529 final SafeActivityOptions safeOptions = SafeActivityOptions.fromBundle(bOptions);
1530 final long origId = Binder.clearCallingIdentity();
1531 try {
1532 synchronized (mGlobalLock) {
1533 return mStackSupervisor.startActivityFromRecents(callingPid, callingUid, taskId,
1534 safeOptions);
1535 }
1536 } finally {
1537 Binder.restoreCallingIdentity(origId);
1538 }
1539 }
1540
1541 /**
Andrii Kulian2eb84b22018-12-13 18:18:54 -08001542 * Public API to check if the client is allowed to start an activity on specified display.
1543 *
1544 * If the target display is private or virtual, some restrictions will apply.
1545 *
1546 * @param displayId Target display id.
1547 * @param intent Intent used to launch the activity.
1548 * @param resolvedType The MIME type of the intent.
1549 * @param userId The id of the user for whom the call is made.
1550 * @return {@code true} if a call to start an activity on the target display should succeed and
1551 * no {@link SecurityException} will be thrown, {@code false} otherwise.
1552 */
1553 @Override
1554 public final boolean isActivityStartAllowedOnDisplay(int displayId, Intent intent,
1555 String resolvedType, int userId) {
1556 final int callingUid = Binder.getCallingUid();
1557 final int callingPid = Binder.getCallingPid();
1558 final long origId = Binder.clearCallingIdentity();
1559
1560 try {
1561 // Collect information about the target of the Intent.
1562 ActivityInfo aInfo = mStackSupervisor.resolveActivity(intent, resolvedType,
1563 0 /* startFlags */, null /* profilerInfo */, userId,
1564 ActivityStarter.computeResolveFilterUid(callingUid, callingUid,
1565 UserHandle.USER_NULL));
1566 aInfo = mAmInternal.getActivityInfoForUser(aInfo, userId);
1567
1568 synchronized (mGlobalLock) {
1569 return mStackSupervisor.canPlaceEntityOnDisplay(displayId, callingPid, callingUid,
1570 aInfo);
1571 }
1572 } finally {
1573 Binder.restoreCallingIdentity(origId);
1574 }
1575 }
1576
1577 /**
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001578 * This is the internal entry point for handling Activity.finish().
1579 *
1580 * @param token The Binder token referencing the Activity we want to finish.
1581 * @param resultCode Result code, if any, from this Activity.
1582 * @param resultData Result data (Intent), if any, from this Activity.
1583 * @param finishTask Whether to finish the task associated with this Activity.
1584 *
1585 * @return Returns true if the activity successfully finished, or false if it is still running.
1586 */
1587 @Override
1588 public final boolean finishActivity(IBinder token, int resultCode, Intent resultData,
1589 int finishTask) {
1590 // Refuse possible leaked file descriptors
1591 if (resultData != null && resultData.hasFileDescriptors()) {
1592 throw new IllegalArgumentException("File descriptors passed in Intent");
1593 }
1594
1595 synchronized (mGlobalLock) {
Andrii Kulian057a6512019-07-15 16:15:51 -07001596 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001597 if (r == null) {
1598 return true;
1599 }
1600 // Keep track of the root activity of the task before we finish it
Louis Changcdec0802019-11-11 11:45:07 +08001601 final Task tr = r.getTask();
Andrii Kulian057a6512019-07-15 16:15:51 -07001602 final ActivityRecord rootR = tr.getRootActivity();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001603 if (rootR == null) {
1604 Slog.w(TAG, "Finishing task with all activities already finished");
1605 }
1606 // Do not allow task to finish if last task in lockTask mode. Launchable priv-apps can
1607 // finish.
Wale Ogunwaled95c06b2018-05-08 10:35:38 -07001608 if (getLockTaskController().activityBlockedFromFinish(r)) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001609 return false;
1610 }
1611
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001612 // TODO: There is a dup. of this block of code in ActivityStack.navigateUpToLocked
1613 // We should consolidate.
1614 if (mController != null) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001615 // Find the first activity that is not finishing.
Wale Ogunwale85fb19a2019-12-05 10:41:05 +09001616 final ActivityRecord next =
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08001617 r.getRootTask().topRunningActivity(token, INVALID_TASK_ID);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001618 if (next != null) {
1619 // ask watcher if this is allowed
1620 boolean resumeOK = true;
1621 try {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001622 resumeOK = mController.activityResuming(next.packageName);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001623 } catch (RemoteException e) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001624 mController = null;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001625 Watchdog.getInstance().setActivityController(null);
1626 }
1627
1628 if (!resumeOK) {
1629 Slog.i(TAG, "Not finishing activity because controller resumed");
1630 return false;
1631 }
1632 }
1633 }
Michal Karpinskifc6872e2019-05-21 15:18:44 +01001634
1635 // note down that the process has finished an activity and is in background activity
1636 // starts grace period
1637 if (r.app != null) {
1638 r.app.setLastActivityFinishTimeIfNeeded(SystemClock.uptimeMillis());
1639 }
1640
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001641 final long origId = Binder.clearCallingIdentity();
Riddle Hsu2ca561b2019-10-08 21:58:58 +08001642 Trace.traceBegin(TRACE_TAG_WINDOW_MANAGER, "finishActivity");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001643 try {
1644 boolean res;
1645 final boolean finishWithRootActivity =
1646 finishTask == Activity.FINISH_TASK_WITH_ROOT_ACTIVITY;
1647 if (finishTask == Activity.FINISH_TASK_WITH_ACTIVITY
1648 || (finishWithRootActivity && r == rootR)) {
1649 // If requested, remove the task that is associated to this activity only if it
1650 // was the root activity in the task. The result code and data is ignored
1651 // because we don't support returning them across task boundaries. Also, to
1652 // keep backwards compatibility we remove the task from recents when finishing
1653 // task with root activity.
Wale Ogunwale85fb19a2019-12-05 10:41:05 +09001654 mStackSupervisor.removeTask(tr, false /*killProcess*/,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001655 finishWithRootActivity, "finish-activity");
Wale Ogunwale85fb19a2019-12-05 10:41:05 +09001656 res = true;
Garfield Tan2746ab52018-07-25 12:33:01 -07001657 // Explicitly dismissing the activity so reset its relaunch flag.
Wale Ogunwale64258362018-10-16 15:13:37 -07001658 r.mRelaunchReason = RELAUNCH_REASON_NONE;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001659 } else {
Louis Chang7b03ad92019-08-21 12:32:33 +08001660 r.finishIfPossible(resultCode, resultData, "app-request", true /* oomAdj */);
Andrii Kulian40eda672019-07-30 15:05:57 -07001661 res = r.finishing;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001662 if (!res) {
1663 Slog.i(TAG, "Failed to finish by app-request");
1664 }
1665 }
1666 return res;
1667 } finally {
Riddle Hsu2ca561b2019-10-08 21:58:58 +08001668 Trace.traceEnd(TRACE_TAG_WINDOW_MANAGER);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001669 Binder.restoreCallingIdentity(origId);
1670 }
1671 }
1672 }
1673
1674 @Override
1675 public boolean finishActivityAffinity(IBinder token) {
1676 synchronized (mGlobalLock) {
1677 final long origId = Binder.clearCallingIdentity();
1678 try {
1679 ActivityRecord r = ActivityRecord.isInStackLocked(token);
1680 if (r == null) {
1681 return false;
1682 }
1683
1684 // Do not allow task to finish if last task in lockTask mode. Launchable priv-apps
1685 // can finish.
Wale Ogunwaled95c06b2018-05-08 10:35:38 -07001686 if (getLockTaskController().activityBlockedFromFinish(r)) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001687 return false;
1688 }
Wale Ogunwalea38654f2019-11-17 20:37:15 -08001689
1690 final PooledFunction p = PooledLambda.obtainFunction(
1691 ActivityRecord::finishIfSameAffinity, r,
1692 PooledLambda.__(ActivityRecord.class));
1693 r.getTask().forAllActivities(
1694 p, r, true /*includeBoundary*/, true /*traverseTopToBottom*/);
1695 p.recycle();
1696
Andrii Kuliande93eff2019-07-12 12:21:27 -07001697 return true;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001698 } finally {
1699 Binder.restoreCallingIdentity(origId);
1700 }
1701 }
1702 }
1703
1704 @Override
1705 public final void activityIdle(IBinder token, Configuration config, boolean stopProfiling) {
1706 final long origId = Binder.clearCallingIdentity();
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07001707 try {
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07001708 synchronized (mGlobalLock) {
Riddle Hsu2ca561b2019-10-08 21:58:58 +08001709 Trace.traceBegin(TRACE_TAG_WINDOW_MANAGER, "activityIdle");
Riddle Hsufc8ab262019-12-31 15:31:24 +08001710 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
1711 if (r == null) {
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07001712 return;
1713 }
Riddle Hsufc8ab262019-12-31 15:31:24 +08001714 mStackSupervisor.activityIdleInternal(r, false /* fromTimeout */,
1715 false /* processPausingActivities */, config);
1716 if (stopProfiling && r.hasProcess()) {
1717 r.app.clearProfilerIfNeeded();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001718 }
1719 }
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07001720 } finally {
Riddle Hsu2ca561b2019-10-08 21:58:58 +08001721 Trace.traceEnd(TRACE_TAG_WINDOW_MANAGER);
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07001722 Binder.restoreCallingIdentity(origId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001723 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001724 }
1725
1726 @Override
1727 public final void activityResumed(IBinder token) {
1728 final long origId = Binder.clearCallingIdentity();
1729 synchronized (mGlobalLock) {
1730 ActivityRecord.activityResumedLocked(token);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001731 }
1732 Binder.restoreCallingIdentity(origId);
1733 }
1734
1735 @Override
Andrii Kulian86e70fc2019-02-12 11:04:10 +00001736 public final void activityTopResumedStateLost() {
1737 final long origId = Binder.clearCallingIdentity();
1738 synchronized (mGlobalLock) {
1739 mStackSupervisor.handleTopResumedStateReleased(false /* timeout */);
1740 }
1741 Binder.restoreCallingIdentity(origId);
1742 }
1743
1744 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001745 public final void activityPaused(IBinder token) {
1746 final long origId = Binder.clearCallingIdentity();
1747 synchronized (mGlobalLock) {
Riddle Hsu2ca561b2019-10-08 21:58:58 +08001748 Trace.traceBegin(TRACE_TAG_WINDOW_MANAGER, "activityPaused");
Wale Ogunwale196db712019-12-27 15:35:39 +00001749 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
1750 if (r != null) {
1751 r.activityPaused(false);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001752 }
Riddle Hsu2ca561b2019-10-08 21:58:58 +08001753 Trace.traceEnd(TRACE_TAG_WINDOW_MANAGER);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001754 }
1755 Binder.restoreCallingIdentity(origId);
1756 }
1757
1758 @Override
1759 public final void activityStopped(IBinder token, Bundle icicle,
1760 PersistableBundle persistentState, CharSequence description) {
1761 if (DEBUG_ALL) Slog.v(TAG, "Activity stopped: token=" + token);
1762
1763 // Refuse possible leaked file descriptors
1764 if (icicle != null && icicle.hasFileDescriptors()) {
1765 throw new IllegalArgumentException("File descriptors passed in Bundle");
1766 }
1767
1768 final long origId = Binder.clearCallingIdentity();
1769
Riddle Hsu7b766fd2019-01-28 21:14:59 +08001770 String restartingName = null;
1771 int restartingUid = 0;
1772 final ActivityRecord r;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001773 synchronized (mGlobalLock) {
Riddle Hsu2ca561b2019-10-08 21:58:58 +08001774 Trace.traceBegin(TRACE_TAG_WINDOW_MANAGER, "activityStopped");
Riddle Hsu7b766fd2019-01-28 21:14:59 +08001775 r = ActivityRecord.isInStackLocked(token);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001776 if (r != null) {
Riddle Hsu7b766fd2019-01-28 21:14:59 +08001777 if (r.attachedToProcess()
1778 && r.isState(ActivityStack.ActivityState.RESTARTING_PROCESS)) {
1779 // The activity was requested to restart from
1780 // {@link #restartActivityProcessIfVisible}.
1781 restartingName = r.app.mName;
1782 restartingUid = r.app.mUid;
1783 }
Wale Ogunwale196db712019-12-27 15:35:39 +00001784 r.activityStopped(icicle, persistentState, description);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001785 }
Riddle Hsu2ca561b2019-10-08 21:58:58 +08001786 Trace.traceEnd(TRACE_TAG_WINDOW_MANAGER);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001787 }
1788
Riddle Hsu7b766fd2019-01-28 21:14:59 +08001789 if (restartingName != null) {
1790 // In order to let the foreground activity can be restarted with its saved state from
1791 // {@link android.app.Activity#onSaveInstanceState}, the kill operation is postponed
1792 // until the activity reports stopped with the state. And the activity record will be
1793 // kept because the record state is restarting, then the activity will be restarted
1794 // immediately if it is still the top one.
1795 mStackSupervisor.removeRestartTimeouts(r);
1796 mAmInternal.killProcess(restartingName, restartingUid, "restartActivityProcess");
1797 }
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001798 mAmInternal.trimApplications();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001799
1800 Binder.restoreCallingIdentity(origId);
1801 }
1802
1803 @Override
1804 public final void activityDestroyed(IBinder token) {
1805 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "ACTIVITY DESTROYED: " + token);
1806 synchronized (mGlobalLock) {
Andrii Kulian79d67982019-08-19 11:56:16 -07001807 final long origId = Binder.clearCallingIdentity();
Riddle Hsu2ca561b2019-10-08 21:58:58 +08001808 Trace.traceBegin(TRACE_TAG_WINDOW_MANAGER, "activityDestroyed");
Andrii Kulian79d67982019-08-19 11:56:16 -07001809 try {
1810 final ActivityRecord activity = ActivityRecord.forTokenLocked(token);
1811 if (activity != null) {
1812 activity.destroyed("activityDestroyed");
1813 }
1814 } finally {
Riddle Hsu2ca561b2019-10-08 21:58:58 +08001815 Trace.traceEnd(TRACE_TAG_WINDOW_MANAGER);
Andrii Kulian79d67982019-08-19 11:56:16 -07001816 Binder.restoreCallingIdentity(origId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001817 }
1818 }
1819 }
1820
1821 @Override
1822 public final void activityRelaunched(IBinder token) {
1823 final long origId = Binder.clearCallingIdentity();
1824 synchronized (mGlobalLock) {
1825 mStackSupervisor.activityRelaunchedLocked(token);
1826 }
1827 Binder.restoreCallingIdentity(origId);
1828 }
1829
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001830 @Override
1831 public void setRequestedOrientation(IBinder token, int requestedOrientation) {
1832 synchronized (mGlobalLock) {
1833 ActivityRecord r = ActivityRecord.isInStackLocked(token);
1834 if (r == null) {
1835 return;
1836 }
1837 final long origId = Binder.clearCallingIdentity();
1838 try {
1839 r.setRequestedOrientation(requestedOrientation);
1840 } finally {
1841 Binder.restoreCallingIdentity(origId);
1842 }
1843 }
1844 }
1845
1846 @Override
1847 public int getRequestedOrientation(IBinder token) {
1848 synchronized (mGlobalLock) {
Wale Ogunwaleda8b8272018-11-29 19:37:37 -08001849 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
1850 return (r != null)
1851 ? r.getRequestedOrientation() : ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001852 }
1853 }
1854
1855 @Override
1856 public void setImmersive(IBinder token, boolean immersive) {
1857 synchronized (mGlobalLock) {
1858 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
1859 if (r == null) {
1860 throw new IllegalArgumentException();
1861 }
1862 r.immersive = immersive;
1863
1864 // update associated state if we're frontmost
Andrii Kulian52d255c2018-07-13 11:32:19 -07001865 if (r.isResumedActivityOnDisplay()) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001866 if (DEBUG_IMMERSIVE) Slog.d(TAG_IMMERSIVE, "Frontmost changed immersion: "+ r);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001867 applyUpdateLockStateLocked(r);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001868 }
1869 }
1870 }
1871
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001872 void applyUpdateLockStateLocked(ActivityRecord r) {
1873 // Modifications to the UpdateLock state are done on our handler, outside
1874 // the activity manager's locks. The new state is determined based on the
1875 // state *now* of the relevant activity record. The object is passed to
1876 // the handler solely for logging detail, not to be consulted/modified.
1877 final boolean nextState = r != null && r.immersive;
1878 mH.post(() -> {
1879 if (mUpdateLock.isHeld() != nextState) {
1880 if (DEBUG_IMMERSIVE) Slog.d(TAG_IMMERSIVE,
1881 "Applying new update lock state '" + nextState + "' for " + r);
1882 if (nextState) {
1883 mUpdateLock.acquire();
1884 } else {
1885 mUpdateLock.release();
1886 }
1887 }
1888 });
1889 }
1890
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001891 @Override
1892 public boolean isImmersive(IBinder token) {
1893 synchronized (mGlobalLock) {
1894 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
1895 if (r == null) {
1896 throw new IllegalArgumentException();
1897 }
1898 return r.immersive;
1899 }
1900 }
1901
1902 @Override
1903 public boolean isTopActivityImmersive() {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001904 enforceNotIsolatedCaller("isTopActivityImmersive");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001905 synchronized (mGlobalLock) {
Wale Ogunwale85fb19a2019-12-05 10:41:05 +09001906 final ActivityRecord r = getTopDisplayFocusedStack().topRunningActivity();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001907 return (r != null) ? r.immersive : false;
1908 }
1909 }
1910
1911 @Override
1912 public void overridePendingTransition(IBinder token, String packageName,
1913 int enterAnim, int exitAnim) {
1914 synchronized (mGlobalLock) {
1915 ActivityRecord self = ActivityRecord.isInStackLocked(token);
1916 if (self == null) {
1917 return;
1918 }
1919
1920 final long origId = Binder.clearCallingIdentity();
1921
1922 if (self.isState(
1923 ActivityStack.ActivityState.RESUMED, ActivityStack.ActivityState.PAUSING)) {
Wale Ogunwale3a256e62018-12-06 14:41:18 -08001924 self.getDisplay().mDisplayContent.mAppTransition.overridePendingAppTransition(
lumark588a3e82018-07-20 18:53:54 +08001925 packageName, enterAnim, exitAnim, null);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001926 }
1927
1928 Binder.restoreCallingIdentity(origId);
1929 }
1930 }
1931
1932 @Override
1933 public int getFrontActivityScreenCompatMode() {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001934 enforceNotIsolatedCaller("getFrontActivityScreenCompatMode");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001935 synchronized (mGlobalLock) {
Wale Ogunwale85fb19a2019-12-05 10:41:05 +09001936 final ActivityRecord r = getTopDisplayFocusedStack().topRunningActivity();
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001937 if (r == null) {
1938 return ActivityManager.COMPAT_MODE_UNKNOWN;
1939 }
Wale Ogunwale53783742018-09-16 10:21:51 -07001940 return mCompatModePackages.computeCompatModeLocked(r.info.applicationInfo);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001941 }
1942 }
1943
1944 @Override
1945 public void setFrontActivityScreenCompatMode(int mode) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001946 mAmInternal.enforceCallingPermission(android.Manifest.permission.SET_SCREEN_COMPATIBILITY,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001947 "setFrontActivityScreenCompatMode");
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001948 ApplicationInfo ai;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001949 synchronized (mGlobalLock) {
Wale Ogunwale85fb19a2019-12-05 10:41:05 +09001950 final ActivityRecord r = getTopDisplayFocusedStack().topRunningActivity();
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001951 if (r == null) {
1952 Slog.w(TAG, "setFrontActivityScreenCompatMode failed: no top activity");
1953 return;
1954 }
1955 ai = r.info.applicationInfo;
Wale Ogunwale53783742018-09-16 10:21:51 -07001956 mCompatModePackages.setPackageScreenCompatModeLocked(ai, mode);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001957 }
1958 }
1959
1960 @Override
1961 public int getLaunchedFromUid(IBinder activityToken) {
1962 ActivityRecord srec;
1963 synchronized (mGlobalLock) {
1964 srec = ActivityRecord.forTokenLocked(activityToken);
1965 }
1966 if (srec == null) {
1967 return -1;
1968 }
1969 return srec.launchedFromUid;
1970 }
1971
1972 @Override
1973 public String getLaunchedFromPackage(IBinder activityToken) {
1974 ActivityRecord srec;
1975 synchronized (mGlobalLock) {
1976 srec = ActivityRecord.forTokenLocked(activityToken);
1977 }
1978 if (srec == null) {
1979 return null;
1980 }
1981 return srec.launchedFromPackage;
1982 }
1983
1984 @Override
1985 public boolean convertFromTranslucent(IBinder token) {
1986 final long origId = Binder.clearCallingIdentity();
1987 try {
1988 synchronized (mGlobalLock) {
1989 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
1990 if (r == null) {
1991 return false;
1992 }
Wale Ogunwale83b8a6b2019-06-27 20:15:15 -07001993 return r.setOccludesParent(true);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001994 }
1995 } finally {
1996 Binder.restoreCallingIdentity(origId);
1997 }
1998 }
1999
2000 @Override
2001 public boolean convertToTranslucent(IBinder token, Bundle options) {
2002 SafeActivityOptions safeOptions = SafeActivityOptions.fromBundle(options);
2003 final long origId = Binder.clearCallingIdentity();
2004 try {
2005 synchronized (mGlobalLock) {
2006 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
2007 if (r == null) {
2008 return false;
2009 }
Wale Ogunwalea38654f2019-11-17 20:37:15 -08002010 final ActivityRecord under = r.getTask().getActivityBelow(r);
2011 if (under != null) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002012 under.returningOptions = safeOptions != null ? safeOptions.getOptions(r) : null;
2013 }
Wale Ogunwale83b8a6b2019-06-27 20:15:15 -07002014 return r.setOccludesParent(false);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002015 }
2016 } finally {
2017 Binder.restoreCallingIdentity(origId);
2018 }
2019 }
2020
2021 @Override
2022 public void notifyActivityDrawn(IBinder token) {
2023 if (DEBUG_VISIBILITY) Slog.d(TAG_VISIBILITY, "notifyActivityDrawn: token=" + token);
2024 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08002025 ActivityRecord r = mRootWindowContainer.isInAnyStack(token);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002026 if (r != null) {
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08002027 r.getRootTask().notifyActivityDrawnLocked(r);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002028 }
2029 }
2030 }
2031
2032 @Override
2033 public void reportActivityFullyDrawn(IBinder token, boolean restoredFromBundle) {
2034 synchronized (mGlobalLock) {
2035 ActivityRecord r = ActivityRecord.isInStackLocked(token);
2036 if (r == null) {
2037 return;
2038 }
2039 r.reportFullyDrawnLocked(restoredFromBundle);
2040 }
2041 }
2042
2043 @Override
Louis Chang677921f2019-12-06 16:44:24 +08002044 public int getDisplayId(IBinder activityToken) throws RemoteException {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002045 synchronized (mGlobalLock) {
2046 final ActivityStack stack = ActivityRecord.getStackLocked(activityToken);
Wale Ogunwale8f93b642019-12-26 12:10:52 -08002047 if (stack != null) {
2048 final int displayId = stack.getDisplayId();
2049 return displayId != INVALID_DISPLAY ? displayId : DEFAULT_DISPLAY;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002050 }
2051 return DEFAULT_DISPLAY;
2052 }
2053 }
2054
2055 @Override
2056 public ActivityManager.StackInfo getFocusedStackInfo() throws RemoteException {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002057 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "getStackInfo()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002058 long ident = Binder.clearCallingIdentity();
2059 try {
2060 synchronized (mGlobalLock) {
Andrii Kulian5f750bc2018-07-17 08:57:23 -07002061 ActivityStack focusedStack = getTopDisplayFocusedStack();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002062 if (focusedStack != null) {
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08002063 return mRootWindowContainer.getStackInfo(focusedStack.mTaskId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002064 }
2065 return null;
2066 }
2067 } finally {
2068 Binder.restoreCallingIdentity(ident);
2069 }
2070 }
2071
2072 @Override
2073 public void setFocusedStack(int stackId) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002074 mAmInternal.enforceCallingPermission(MANAGE_ACTIVITY_STACKS, "setFocusedStack()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002075 if (DEBUG_FOCUS) Slog.d(TAG_FOCUS, "setFocusedStack: stackId=" + stackId);
2076 final long callingId = Binder.clearCallingIdentity();
2077 try {
2078 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08002079 final ActivityStack stack = mRootWindowContainer.getStack(stackId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002080 if (stack == null) {
2081 Slog.w(TAG, "setFocusedStack: No stack with id=" + stackId);
2082 return;
2083 }
Wale Ogunwale85fb19a2019-12-05 10:41:05 +09002084 final ActivityRecord r = stack.topRunningActivity();
Louis Chang19443452018-10-09 12:10:21 +08002085 if (r != null && r.moveFocusableActivityToTop("setFocusedStack")) {
Louis Chang149d5c82019-12-30 09:47:39 +08002086 mRootWindowContainer.resumeFocusedStacksTopActivities();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002087 }
2088 }
2089 } finally {
2090 Binder.restoreCallingIdentity(callingId);
2091 }
2092 }
2093
2094 @Override
2095 public void setFocusedTask(int taskId) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002096 mAmInternal.enforceCallingPermission(MANAGE_ACTIVITY_STACKS, "setFocusedTask()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002097 if (DEBUG_FOCUS) Slog.d(TAG_FOCUS, "setFocusedTask: taskId=" + taskId);
2098 final long callingId = Binder.clearCallingIdentity();
2099 try {
2100 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08002101 final Task task = mRootWindowContainer.anyTaskForId(taskId,
Riddle Hsu090ac6f2018-10-31 12:55:29 +08002102 MATCH_TASK_IN_STACKS_ONLY);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002103 if (task == null) {
2104 return;
2105 }
2106 final ActivityRecord r = task.topRunningActivityLocked();
Louis Chang19443452018-10-09 12:10:21 +08002107 if (r != null && r.moveFocusableActivityToTop("setFocusedTask")) {
Louis Chang149d5c82019-12-30 09:47:39 +08002108 mRootWindowContainer.resumeFocusedStacksTopActivities();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002109 }
2110 }
2111 } finally {
2112 Binder.restoreCallingIdentity(callingId);
2113 }
2114 }
2115
2116 @Override
Riddle Hsu7b766fd2019-01-28 21:14:59 +08002117 public void restartActivityProcessIfVisible(IBinder activityToken) {
2118 mAmInternal.enforceCallingPermission(MANAGE_ACTIVITY_STACKS, "restartActivityProcess()");
2119 final long callingId = Binder.clearCallingIdentity();
2120 try {
2121 synchronized (mGlobalLock) {
2122 final ActivityRecord r = ActivityRecord.isInStackLocked(activityToken);
2123 if (r == null) {
2124 return;
2125 }
2126 r.restartProcessIfVisible();
2127 }
2128 } finally {
2129 Binder.restoreCallingIdentity(callingId);
2130 }
2131 }
2132
2133 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002134 public boolean removeTask(int taskId) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002135 enforceCallerIsRecentsOrHasPermission(REMOVE_TASKS, "removeTask()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002136 synchronized (mGlobalLock) {
2137 final long ident = Binder.clearCallingIdentity();
2138 try {
Wale Ogunwale85fb19a2019-12-05 10:41:05 +09002139 return mStackSupervisor.removeTaskById(taskId, true, REMOVE_FROM_RECENTS,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002140 "remove-task");
2141 } finally {
2142 Binder.restoreCallingIdentity(ident);
2143 }
2144 }
2145 }
2146
2147 @Override
Winson Chunge6439102018-07-30 15:48:01 -07002148 public void removeAllVisibleRecentTasks() {
2149 enforceCallerIsRecentsOrHasPermission(REMOVE_TASKS, "removeAllVisibleRecentTasks()");
2150 synchronized (mGlobalLock) {
2151 final long ident = Binder.clearCallingIdentity();
2152 try {
Winson Chung42fa21f2019-04-02 16:23:46 -07002153 getRecentTasks().removeAllVisibleTasks(mAmInternal.getCurrentUserId());
Winson Chunge6439102018-07-30 15:48:01 -07002154 } finally {
2155 Binder.restoreCallingIdentity(ident);
2156 }
2157 }
2158 }
2159
2160 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002161 public boolean shouldUpRecreateTask(IBinder token, String destAffinity) {
2162 synchronized (mGlobalLock) {
2163 final ActivityRecord srec = ActivityRecord.forTokenLocked(token);
2164 if (srec != null) {
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08002165 return srec.getRootTask().shouldUpRecreateTaskLocked(srec, destAffinity);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002166 }
2167 }
2168 return false;
2169 }
2170
2171 @Override
2172 public boolean navigateUpTo(IBinder token, Intent destIntent, int resultCode,
2173 Intent resultData) {
Wale Ogunwale586a8ee2019-06-04 13:44:14 +00002174
Jeff Sharkey344ce7c2019-05-29 14:52:59 -06002175 synchronized (mGlobalLock) {
Wale Ogunwale586a8ee2019-06-04 13:44:14 +00002176 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
2177 if (r != null) {
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08002178 return r.getRootTask().navigateUpTo(
Wale Ogunwale586a8ee2019-06-04 13:44:14 +00002179 r, destIntent, resultCode, resultData);
Jeff Sharkey344ce7c2019-05-29 14:52:59 -06002180 }
Wale Ogunwale586a8ee2019-06-04 13:44:14 +00002181 return false;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002182 }
2183 }
2184
2185 /**
2186 * Attempts to move a task backwards in z-order (the order of activities within the task is
2187 * unchanged).
2188 *
2189 * There are several possible results of this call:
2190 * - if the task is locked, then we will show the lock toast
2191 * - if there is a task behind the provided task, then that task is made visible and resumed as
2192 * this task is moved to the back
2193 * - otherwise, if there are no other tasks in the stack:
2194 * - if this task is in the pinned stack, then we remove the stack completely, which will
2195 * have the effect of moving the task to the top or bottom of the fullscreen stack
2196 * (depending on whether it is visible)
2197 * - otherwise, we simply return home and hide this task
2198 *
2199 * @param token A reference to the activity we wish to move
2200 * @param nonRoot If false then this only works if the activity is the root
2201 * of a task; if true it will work for any activity in a task.
2202 * @return Returns true if the move completed, false if not.
2203 */
2204 @Override
2205 public boolean moveActivityTaskToBack(IBinder token, boolean nonRoot) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002206 enforceNotIsolatedCaller("moveActivityTaskToBack");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002207 synchronized (mGlobalLock) {
2208 final long origId = Binder.clearCallingIdentity();
2209 try {
2210 int taskId = ActivityRecord.getTaskForActivityLocked(token, !nonRoot);
Louis Chang149d5c82019-12-30 09:47:39 +08002211 final Task task = mRootWindowContainer.anyTaskForId(taskId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002212 if (task != null) {
Wale Ogunwale85fb19a2019-12-05 10:41:05 +09002213 return ActivityRecord.getStackLocked(token).moveTaskToBack(task);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002214 }
2215 } finally {
2216 Binder.restoreCallingIdentity(origId);
2217 }
2218 }
2219 return false;
2220 }
2221
2222 @Override
2223 public Rect getTaskBounds(int taskId) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002224 mAmInternal.enforceCallingPermission(MANAGE_ACTIVITY_STACKS, "getTaskBounds()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002225 long ident = Binder.clearCallingIdentity();
2226 Rect rect = new Rect();
2227 try {
2228 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08002229 final Task task = mRootWindowContainer.anyTaskForId(taskId,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002230 MATCH_TASK_IN_STACKS_OR_RECENT_TASKS);
2231 if (task == null) {
2232 Slog.w(TAG, "getTaskBounds: taskId=" + taskId + " not found");
2233 return rect;
2234 }
Wale Ogunwale2322bed2019-10-10 17:24:19 +02002235 if (task.getParent() != null) {
2236 rect.set(task.getBounds());
2237 } else if (task.mLastNonFullscreenBounds != null) {
2238 rect.set(task.mLastNonFullscreenBounds);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002239 }
2240 }
2241 } finally {
2242 Binder.restoreCallingIdentity(ident);
2243 }
2244 return rect;
2245 }
2246
2247 @Override
2248 public ActivityManager.TaskDescription getTaskDescription(int id) {
2249 synchronized (mGlobalLock) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002250 enforceCallerIsRecentsOrHasPermission(
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002251 MANAGE_ACTIVITY_STACKS, "getTaskDescription()");
Louis Chang149d5c82019-12-30 09:47:39 +08002252 final Task tr = mRootWindowContainer.anyTaskForId(id,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002253 MATCH_TASK_IN_STACKS_OR_RECENT_TASKS);
2254 if (tr != null) {
Wale Ogunwale2322bed2019-10-10 17:24:19 +02002255 return tr.getTaskDescription();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002256 }
2257 }
2258 return null;
2259 }
2260
2261 @Override
Winson Chung7ccc6812020-01-23 16:15:10 -08002262 public boolean setTaskWindowingMode(int taskId, int windowingMode, boolean toTop) {
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002263 if (windowingMode == WINDOWING_MODE_SPLIT_SCREEN_PRIMARY) {
Winson Chung7ccc6812020-01-23 16:15:10 -08002264 return setTaskWindowingModeSplitScreenPrimary(taskId,
2265 SPLIT_SCREEN_CREATE_MODE_TOP_OR_LEFT,
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002266 toTop, ANIMATE, null /* initialBounds */, true /* showRecents */);
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002267 }
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002268 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "setTaskWindowingMode()");
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002269 synchronized (mGlobalLock) {
2270 final long ident = Binder.clearCallingIdentity();
2271 try {
Louis Chang149d5c82019-12-30 09:47:39 +08002272 final Task task = mRootWindowContainer.anyTaskForId(taskId,
Riddle Hsu090ac6f2018-10-31 12:55:29 +08002273 MATCH_TASK_IN_STACKS_ONLY);
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002274 if (task == null) {
2275 Slog.w(TAG, "setTaskWindowingMode: No task for id=" + taskId);
Winson Chung7ccc6812020-01-23 16:15:10 -08002276 return false;
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002277 }
2278
2279 if (DEBUG_STACK) Slog.d(TAG_STACK, "setTaskWindowingMode: moving task=" + taskId
2280 + " to windowingMode=" + windowingMode + " toTop=" + toTop);
2281
2282 if (!task.isActivityTypeStandardOrUndefined()) {
2283 throw new IllegalArgumentException("setTaskWindowingMode: Attempt to move"
2284 + " non-standard task " + taskId + " to windowing mode="
2285 + windowingMode);
2286 }
2287
2288 final ActivityStack stack = task.getStack();
2289 if (toTop) {
2290 stack.moveToFront("setTaskWindowingMode", task);
2291 }
2292 stack.setWindowingMode(windowingMode);
Winson Chung7ccc6812020-01-23 16:15:10 -08002293 return true;
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002294 } finally {
2295 Binder.restoreCallingIdentity(ident);
2296 }
2297 }
2298 }
2299
2300 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002301 public String getCallingPackage(IBinder token) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002302 synchronized (mGlobalLock) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002303 ActivityRecord r = getCallingRecordLocked(token);
2304 return r != null ? r.info.packageName : null;
2305 }
2306 }
2307
2308 @Override
2309 public ComponentName getCallingActivity(IBinder token) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002310 synchronized (mGlobalLock) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002311 ActivityRecord r = getCallingRecordLocked(token);
2312 return r != null ? r.intent.getComponent() : null;
2313 }
2314 }
2315
2316 private ActivityRecord getCallingRecordLocked(IBinder token) {
2317 ActivityRecord r = ActivityRecord.isInStackLocked(token);
2318 if (r == null) {
2319 return null;
2320 }
2321 return r.resultTo;
2322 }
2323
2324 @Override
2325 public void unhandledBack() {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002326 mAmInternal.enforceCallingPermission(android.Manifest.permission.FORCE_BACK, "unhandledBack()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002327
2328 synchronized (mGlobalLock) {
2329 final long origId = Binder.clearCallingIdentity();
2330 try {
Andrii Kulian5f750bc2018-07-17 08:57:23 -07002331 getTopDisplayFocusedStack().unhandledBackLocked();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002332 } finally {
2333 Binder.restoreCallingIdentity(origId);
2334 }
2335 }
2336 }
2337
Mark Renouf446251d2019-04-26 10:22:41 -04002338 @Override
2339 public void onBackPressedOnTaskRoot(IBinder token, IRequestFinishCallback callback) {
2340 synchronized (mGlobalLock) {
2341 ActivityRecord r = ActivityRecord.isInStackLocked(token);
2342 if (r == null) {
2343 return;
2344 }
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08002345 ActivityStack stack = r.getRootTask();
Mark Renouf446251d2019-04-26 10:22:41 -04002346 if (stack != null && stack.isSingleTaskInstance()) {
2347 // Single-task stacks are used for activities which are presented in floating
2348 // windows above full screen activities. Instead of directly finishing the
2349 // task, a task change listener is used to notify SystemUI so the action can be
2350 // handled specially.
Louis Changcdec0802019-11-11 11:45:07 +08002351 final Task task = r.getTask();
Mark Renouf446251d2019-04-26 10:22:41 -04002352 mTaskChangeNotificationController
2353 .notifyBackPressedOnTaskRoot(task.getTaskInfo());
2354 } else {
2355 try {
2356 callback.requestFinish();
2357 } catch (RemoteException e) {
2358 Slog.e(TAG, "Failed to invoke request finish callback", e);
2359 }
2360 }
2361 }
2362 }
2363
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002364 /**
2365 * TODO: Add mController hook
2366 */
2367 @Override
Ricky Waiaca8a772019-04-04 16:01:06 +01002368 public void moveTaskToFront(IApplicationThread appThread, String callingPackage, int taskId,
2369 int flags, Bundle bOptions) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002370 mAmInternal.enforceCallingPermission(android.Manifest.permission.REORDER_TASKS, "moveTaskToFront()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002371
2372 if (DEBUG_STACK) Slog.d(TAG_STACK, "moveTaskToFront: moving taskId=" + taskId);
2373 synchronized (mGlobalLock) {
Ricky Waiaca8a772019-04-04 16:01:06 +01002374 moveTaskToFrontLocked(appThread, callingPackage, taskId, flags,
2375 SafeActivityOptions.fromBundle(bOptions), false /* fromRecents */);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002376 }
2377 }
2378
Ricky Waiaca8a772019-04-04 16:01:06 +01002379 void moveTaskToFrontLocked(@Nullable IApplicationThread appThread,
2380 @Nullable String callingPackage, int taskId, int flags, SafeActivityOptions options,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002381 boolean fromRecents) {
Ricky Waiaca8a772019-04-04 16:01:06 +01002382 final int callingPid = Binder.getCallingPid();
2383 final int callingUid = Binder.getCallingUid();
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07002384 assertPackageMatchesCallingUid(callingPackage);
Ricky Waiaca8a772019-04-04 16:01:06 +01002385 if (!checkAppSwitchAllowedLocked(callingPid, callingUid, -1, -1, "Task to front")) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002386 SafeActivityOptions.abort(options);
2387 return;
2388 }
2389 final long origId = Binder.clearCallingIdentity();
Ricky Waiaca8a772019-04-04 16:01:06 +01002390 WindowProcessController callerApp = null;
2391 if (appThread != null) {
2392 callerApp = getProcessController(appThread);
2393 }
2394 final ActivityStarter starter = getActivityStartController().obtainStarter(
2395 null /* intent */, "moveTaskToFront");
2396 if (starter.shouldAbortBackgroundActivityStart(callingUid, callingPid, callingPackage, -1,
2397 -1, callerApp, null, false, null)) {
Alan Stokes9e245762019-05-21 14:54:28 +01002398 if (!isBackgroundActivityStartsEnabled()) {
Ricky Waiaca8a772019-04-04 16:01:06 +01002399 return;
2400 }
2401 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002402 try {
Louis Chang149d5c82019-12-30 09:47:39 +08002403 final Task task = mRootWindowContainer.anyTaskForId(taskId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002404 if (task == null) {
2405 Slog.d(TAG, "Could not find task for id: "+ taskId);
Winson Chungd0243682018-09-25 18:11:54 -07002406 SafeActivityOptions.abort(options);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002407 return;
2408 }
Wale Ogunwaled95c06b2018-05-08 10:35:38 -07002409 if (getLockTaskController().isLockTaskModeViolation(task)) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002410 Slog.e(TAG, "moveTaskToFront: Attempt to violate Lock Task Mode");
Winson Chungd0243682018-09-25 18:11:54 -07002411 SafeActivityOptions.abort(options);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002412 return;
2413 }
2414 ActivityOptions realOptions = options != null
2415 ? options.getOptions(mStackSupervisor)
2416 : null;
2417 mStackSupervisor.findTaskToMoveToFront(task, flags, realOptions, "moveTaskToFront",
2418 false /* forceNonResizable */);
2419
Wale Ogunwale21e06482019-11-18 05:14:15 -08002420 final ActivityRecord topActivity = task.getTopNonFinishingActivity();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002421 if (topActivity != null) {
2422
2423 // We are reshowing a task, use a starting window to hide the initial draw delay
2424 // so the transition can start earlier.
2425 topActivity.showStartingWindow(null /* prev */, false /* newTask */,
2426 true /* taskSwitch */, fromRecents);
2427 }
2428 } finally {
2429 Binder.restoreCallingIdentity(origId);
2430 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002431 }
2432
Ricky Waiaca8a772019-04-04 16:01:06 +01002433 /**
2434 * Return true if callingUid is system, or packageName belongs to that callingUid.
2435 */
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07002436 private boolean isSameApp(int callingUid, @Nullable String packageName) {
Ricky Waiaca8a772019-04-04 16:01:06 +01002437 try {
2438 if (callingUid != 0 && callingUid != SYSTEM_UID) {
2439 if (packageName == null) {
2440 return false;
2441 }
2442 final int uid = AppGlobals.getPackageManager().getPackageUid(packageName,
2443 PackageManager.MATCH_DEBUG_TRIAGED_MISSING,
2444 UserHandle.getUserId(callingUid));
2445 return UserHandle.isSameApp(callingUid, uid);
2446 }
2447 } catch (RemoteException e) {
2448 // Should not happen
2449 }
2450 return true;
2451 }
2452
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07002453 /**
2454 * Checks that the provided package name matches the current calling UID, throws a security
2455 * exception if it doesn't.
2456 */
2457 void assertPackageMatchesCallingUid(@Nullable String packageName) {
2458 final int callingUid = Binder.getCallingUid();
2459 if (isSameApp(callingUid, packageName)) {
2460 return;
2461 }
2462 final String msg = "Permission Denial: package=" + packageName
2463 + " does not belong to uid=" + callingUid;
2464 Slog.w(TAG, msg);
2465 throw new SecurityException(msg);
2466 }
2467
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002468 boolean checkAppSwitchAllowedLocked(int sourcePid, int sourceUid,
2469 int callingPid, int callingUid, String name) {
2470 if (mAppSwitchesAllowedTime < SystemClock.uptimeMillis()) {
2471 return true;
2472 }
2473
2474 if (getRecentTasks().isCallerRecents(sourceUid)) {
2475 return true;
2476 }
2477
2478 int perm = checkComponentPermission(STOP_APP_SWITCHES, sourcePid, sourceUid, -1, true);
2479 if (perm == PackageManager.PERMISSION_GRANTED) {
2480 return true;
2481 }
2482 if (checkAllowAppSwitchUid(sourceUid)) {
2483 return true;
2484 }
2485
2486 // If the actual IPC caller is different from the logical source, then
2487 // also see if they are allowed to control app switches.
2488 if (callingUid != -1 && callingUid != sourceUid) {
2489 perm = checkComponentPermission(STOP_APP_SWITCHES, callingPid, callingUid, -1, true);
2490 if (perm == PackageManager.PERMISSION_GRANTED) {
2491 return true;
2492 }
2493 if (checkAllowAppSwitchUid(callingUid)) {
2494 return true;
2495 }
2496 }
2497
2498 Slog.w(TAG, name + " request from " + sourceUid + " stopped");
2499 return false;
2500 }
2501
2502 private boolean checkAllowAppSwitchUid(int uid) {
2503 ArrayMap<String, Integer> types = mAllowAppSwitchUids.get(UserHandle.getUserId(uid));
2504 if (types != null) {
2505 for (int i = types.size() - 1; i >= 0; i--) {
2506 if (types.valueAt(i).intValue() == uid) {
2507 return true;
2508 }
2509 }
2510 }
2511 return false;
2512 }
2513
2514 @Override
2515 public void setActivityController(IActivityController controller, boolean imAMonkey) {
2516 mAmInternal.enforceCallingPermission(android.Manifest.permission.SET_ACTIVITY_WATCHER,
2517 "setActivityController()");
2518 synchronized (mGlobalLock) {
2519 mController = controller;
2520 mControllerIsAMonkey = imAMonkey;
2521 Watchdog.getInstance().setActivityController(controller);
2522 }
2523 }
2524
Wale Ogunwale387b34c2018-10-25 19:59:40 -07002525 public boolean isControllerAMonkey() {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002526 synchronized (mGlobalLock) {
2527 return mController != null && mControllerIsAMonkey;
2528 }
2529 }
2530
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002531 @Override
2532 public int getTaskForActivity(IBinder token, boolean onlyRoot) {
2533 synchronized (mGlobalLock) {
2534 return ActivityRecord.getTaskForActivityLocked(token, onlyRoot);
2535 }
2536 }
2537
2538 @Override
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002539 public List<ActivityManager.RunningTaskInfo> getTasks(int maxNum) {
2540 return getFilteredTasks(maxNum, ACTIVITY_TYPE_UNDEFINED, WINDOWING_MODE_UNDEFINED);
2541 }
2542
2543 @Override
2544 public List<ActivityManager.RunningTaskInfo> getFilteredTasks(int maxNum,
2545 @WindowConfiguration.ActivityType int ignoreActivityType,
2546 @WindowConfiguration.WindowingMode int ignoreWindowingMode) {
2547 final int callingUid = Binder.getCallingUid();
Nicholas Sauer0259e532019-08-30 08:24:55 -07002548 final int callingPid = Binder.getCallingPid();
2549 final boolean crossUser = isCrossUserAllowed(callingPid, callingUid);
Nicholas Sauer3f9249f2019-09-10 20:23:41 -07002550 final int[] profileIds = getUserManager().getProfileIds(
2551 UserHandle.getUserId(callingUid), true);
2552 ArraySet<Integer> callingProfileIds = new ArraySet<>();
2553 for (int i = 0; i < profileIds.length; i++) {
2554 callingProfileIds.add(profileIds[i]);
2555 }
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002556 ArrayList<ActivityManager.RunningTaskInfo> list = new ArrayList<>();
2557
2558 synchronized (mGlobalLock) {
2559 if (DEBUG_ALL) Slog.v(TAG, "getTasks: max=" + maxNum);
2560
Nicholas Sauer0259e532019-08-30 08:24:55 -07002561 final boolean allowed = isGetTasksAllowed("getTasks", callingPid, callingUid);
Louis Chang149d5c82019-12-30 09:47:39 +08002562 mRootWindowContainer.getRunningTasks(maxNum, list, ignoreActivityType,
Nicholas Sauer3f9249f2019-09-10 20:23:41 -07002563 ignoreWindowingMode, callingUid, allowed, crossUser, callingProfileIds);
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002564 }
2565
2566 return list;
2567 }
2568
2569 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002570 public final void finishSubActivity(IBinder token, String resultWho, int requestCode) {
2571 synchronized (mGlobalLock) {
2572 final long origId = Binder.clearCallingIdentity();
Wale Ogunwalea38654f2019-11-17 20:37:15 -08002573 try {
2574 ActivityRecord r = ActivityRecord.isInStackLocked(token);
2575 if (r == null) return;
2576
2577 final PooledConsumer c = PooledLambda.obtainConsumer(
2578 ActivityRecord::finishIfSubActivity, PooledLambda.__(ActivityRecord.class),
2579 r, resultWho, requestCode);
2580 // TODO: This should probably only loop over the task since you need to be in the
2581 // same task to return results.
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08002582 r.getRootTask().forAllActivities(c);
Wale Ogunwalea38654f2019-11-17 20:37:15 -08002583 c.recycle();
2584
2585 updateOomAdj();
2586 } finally {
2587 Binder.restoreCallingIdentity(origId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002588 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002589 }
2590 }
2591
2592 @Override
2593 public boolean willActivityBeVisible(IBinder token) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002594 synchronized (mGlobalLock) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002595 ActivityStack stack = ActivityRecord.getStackLocked(token);
2596 if (stack != null) {
Wale Ogunwalea38654f2019-11-17 20:37:15 -08002597 return stack.willActivityBeVisible(token);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002598 }
2599 return false;
2600 }
2601 }
2602
2603 @Override
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002604 public void moveTaskToStack(int taskId, int stackId, boolean toTop) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002605 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "moveTaskToStack()");
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002606 synchronized (mGlobalLock) {
2607 final long ident = Binder.clearCallingIdentity();
2608 try {
Louis Chang149d5c82019-12-30 09:47:39 +08002609 final Task task = mRootWindowContainer.anyTaskForId(taskId);
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002610 if (task == null) {
2611 Slog.w(TAG, "moveTaskToStack: No task for id=" + taskId);
2612 return;
2613 }
2614
2615 if (DEBUG_STACK) Slog.d(TAG_STACK, "moveTaskToStack: moving task=" + taskId
2616 + " to stackId=" + stackId + " toTop=" + toTop);
2617
Louis Chang149d5c82019-12-30 09:47:39 +08002618 final ActivityStack stack = mRootWindowContainer.getStack(stackId);
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002619 if (stack == null) {
2620 throw new IllegalStateException(
2621 "moveTaskToStack: No stack for stackId=" + stackId);
2622 }
2623 if (!stack.isActivityTypeStandardOrUndefined()) {
2624 throw new IllegalArgumentException("moveTaskToStack: Attempt to move task "
2625 + taskId + " to stack " + stackId);
2626 }
2627 if (stack.inSplitScreenPrimaryWindowingMode()) {
Wale Ogunwale83b8a6b2019-06-27 20:15:15 -07002628 mWindowManager.setDockedStackCreateStateLocked(
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002629 SPLIT_SCREEN_CREATE_MODE_TOP_OR_LEFT, null /* initialBounds */);
2630 }
2631 task.reparent(stack, toTop, REPARENT_KEEP_STACK_AT_FRONT, ANIMATE, !DEFER_RESUME,
2632 "moveTaskToStack");
2633 } finally {
2634 Binder.restoreCallingIdentity(ident);
2635 }
2636 }
2637 }
2638
2639 @Override
Evan Roskydbe2ce52019-07-18 11:13:17 -07002640 public void animateResizePinnedStack(int stackId, Rect destBounds, int animationDuration) {
2641 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "animateResizePinnedStack()");
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002642
2643 final long ident = Binder.clearCallingIdentity();
2644 try {
2645 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08002646 final ActivityStack stack = mRootWindowContainer.getStack(stackId);
Evan Roskydbe2ce52019-07-18 11:13:17 -07002647 if (stack == null) {
2648 Slog.w(TAG, "resizeStack: stackId " + stackId + " not found.");
2649 return;
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002650 }
Evan Roskydbe2ce52019-07-18 11:13:17 -07002651 if (stack.getWindowingMode() != WINDOWING_MODE_PINNED) {
2652 throw new IllegalArgumentException("Stack: " + stackId
2653 + " doesn't support animated resize.");
2654 }
Wale Ogunwalebebd8cd2019-10-28 15:53:31 -07002655 stack.animateResizePinnedStack(destBounds, null /* sourceHintBounds */,
Evan Roskydbe2ce52019-07-18 11:13:17 -07002656 animationDuration, false /* fromFullscreen */);
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002657 }
2658 } finally {
2659 Binder.restoreCallingIdentity(ident);
2660 }
2661 }
2662
wilsonshih5c4cf522019-01-25 09:03:47 +08002663 @Override
2664 public void offsetPinnedStackBounds(int stackId, Rect compareBounds, int xOffset, int yOffset,
2665 int animationDuration) {
2666 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "offsetPinnedStackBounds()");
2667
2668 final long ident = Binder.clearCallingIdentity();
2669 try {
2670 synchronized (mGlobalLock) {
2671 if (xOffset == 0 && yOffset == 0) {
2672 return;
2673 }
Louis Chang149d5c82019-12-30 09:47:39 +08002674 final ActivityStack stack = mRootWindowContainer.getStack(stackId);
wilsonshih5c4cf522019-01-25 09:03:47 +08002675 if (stack == null) {
2676 Slog.w(TAG, "offsetPinnedStackBounds: stackId " + stackId + " not found.");
2677 return;
2678 }
2679 if (stack.getWindowingMode() != WINDOWING_MODE_PINNED) {
2680 throw new IllegalArgumentException("Stack: " + stackId
2681 + " doesn't support animated resize.");
2682 }
2683 final Rect destBounds = new Rect();
2684 stack.getAnimationOrCurrentBounds(destBounds);
wilsonshiha6e408c2019-02-19 17:30:03 +08002685 if (destBounds.isEmpty() || !destBounds.equals(compareBounds)) {
wilsonshih5c4cf522019-01-25 09:03:47 +08002686 Slog.w(TAG, "The current stack bounds does not matched! It may be obsolete.");
2687 return;
2688 }
2689 destBounds.offset(xOffset, yOffset);
Wale Ogunwalebebd8cd2019-10-28 15:53:31 -07002690 stack.animateResizePinnedStack(destBounds, null /* sourceHintBounds */,
wilsonshih5c4cf522019-01-25 09:03:47 +08002691 animationDuration, false /* fromFullscreen */);
2692 }
2693 } finally {
2694 Binder.restoreCallingIdentity(ident);
2695 }
2696 }
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002697 /**
2698 * Moves the specified task to the primary-split-screen stack.
2699 *
2700 * @param taskId Id of task to move.
2701 * @param createMode The mode the primary split screen stack should be created in if it doesn't
2702 * exist already. See
2703 * {@link android.app.ActivityTaskManager#SPLIT_SCREEN_CREATE_MODE_TOP_OR_LEFT}
2704 * and
2705 * {@link android.app.ActivityTaskManager#SPLIT_SCREEN_CREATE_MODE_BOTTOM_OR_RIGHT}
2706 * @param toTop If the task and stack should be moved to the top.
2707 * @param animate Whether we should play an animation for the moving the task.
2708 * @param initialBounds If the primary stack gets created, it will use these bounds for the
2709 * stack. Pass {@code null} to use default bounds.
2710 * @param showRecents If the recents activity should be shown on the other side of the task
2711 * going into split-screen mode.
Winson Chung7ccc6812020-01-23 16:15:10 -08002712 * @return Whether the task was successfully put into splitscreen.
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002713 */
2714 @Override
2715 public boolean setTaskWindowingModeSplitScreenPrimary(int taskId, int createMode,
2716 boolean toTop, boolean animate, Rect initialBounds, boolean showRecents) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002717 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS,
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002718 "setTaskWindowingModeSplitScreenPrimary()");
2719 synchronized (mGlobalLock) {
2720 final long ident = Binder.clearCallingIdentity();
2721 try {
Jorim Jaggi2a3002a2020-02-17 15:57:34 +00002722 if (isInLockTaskMode()) {
2723 Slog.w(TAG, "setTaskWindowingModeSplitScreenPrimary: Is in lock task mode="
2724 + getLockTaskModeState());
2725 return false;
2726 }
2727
2728 final Task task = mRootWindowContainer.anyTaskForId(taskId,
2729 MATCH_TASK_IN_STACKS_ONLY);
2730 if (task == null) {
2731 Slog.w(TAG, "setTaskWindowingModeSplitScreenPrimary: No task for id=" + taskId);
2732 return false;
2733 }
2734 if (!task.isActivityTypeStandardOrUndefined()) {
2735 throw new IllegalArgumentException("setTaskWindowingMode: Attempt to move"
2736 + " non-standard task " + taskId + " to split-screen windowing mode");
2737 }
2738
2739 if (DEBUG_STACK) Slog.d(TAG_STACK,
2740 "setTaskWindowingModeSplitScreenPrimary: moving task=" + taskId
2741 + " to createMode=" + createMode + " toTop=" + toTop);
2742 mWindowManager.setDockedStackCreateStateLocked(createMode, initialBounds);
2743 final int windowingMode = task.getWindowingMode();
2744 final ActivityStack stack = task.getStack();
2745 if (toTop) {
2746 stack.moveToFront("setTaskWindowingModeSplitScreenPrimary", task);
2747 }
2748 stack.setWindowingMode(WINDOWING_MODE_SPLIT_SCREEN_PRIMARY, animate, showRecents,
2749 false /* enteringSplitScreenMode */, false /* deferEnsuringVisibility */,
2750 false /* creating */);
2751 return windowingMode != task.getWindowingMode();
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002752 } finally {
2753 Binder.restoreCallingIdentity(ident);
2754 }
2755 }
2756 }
2757
2758 /**
2759 * Removes stacks in the input windowing modes from the system if they are of activity type
2760 * ACTIVITY_TYPE_STANDARD or ACTIVITY_TYPE_UNDEFINED
2761 */
2762 @Override
2763 public void removeStacksInWindowingModes(int[] windowingModes) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002764 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS,
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002765 "removeStacksInWindowingModes()");
2766
2767 synchronized (mGlobalLock) {
2768 final long ident = Binder.clearCallingIdentity();
2769 try {
Louis Chang149d5c82019-12-30 09:47:39 +08002770 mRootWindowContainer.removeStacksInWindowingModes(windowingModes);
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002771 } finally {
2772 Binder.restoreCallingIdentity(ident);
2773 }
2774 }
2775 }
2776
2777 @Override
2778 public void removeStacksWithActivityTypes(int[] activityTypes) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002779 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS,
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002780 "removeStacksWithActivityTypes()");
2781
2782 synchronized (mGlobalLock) {
2783 final long ident = Binder.clearCallingIdentity();
2784 try {
Louis Chang149d5c82019-12-30 09:47:39 +08002785 mRootWindowContainer.removeStacksWithActivityTypes(activityTypes);
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002786 } finally {
2787 Binder.restoreCallingIdentity(ident);
2788 }
2789 }
2790 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002791
2792 @Override
2793 public ParceledListSlice<ActivityManager.RecentTaskInfo> getRecentTasks(int maxNum, int flags,
2794 int userId) {
2795 final int callingUid = Binder.getCallingUid();
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002796 userId = handleIncomingUser(Binder.getCallingPid(), callingUid, userId, "getRecentTasks");
2797 final boolean allowed = isGetTasksAllowed("getRecentTasks", Binder.getCallingPid(),
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002798 callingUid);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002799 final boolean detailed = checkGetTasksPermission(
2800 android.Manifest.permission.GET_DETAILED_TASKS, Binder.getCallingPid(),
2801 UserHandle.getAppId(callingUid))
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002802 == PackageManager.PERMISSION_GRANTED;
2803
2804 synchronized (mGlobalLock) {
Wale Ogunwale16e505a2018-05-07 15:00:49 -07002805 return mRecentTasks.getRecentTasks(maxNum, flags, allowed, detailed, userId,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002806 callingUid);
2807 }
2808 }
2809
Evan Rosky29d4a0a2020-02-04 16:40:44 -08002810 // TODO(148895075): deprecate and replace with task equivalents
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002811 @Override
2812 public List<ActivityManager.StackInfo> getAllStackInfos() {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002813 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "getAllStackInfos()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002814 long ident = Binder.clearCallingIdentity();
2815 try {
2816 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08002817 return mRootWindowContainer.getAllStackInfos(INVALID_DISPLAY);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002818 }
2819 } finally {
2820 Binder.restoreCallingIdentity(ident);
2821 }
2822 }
2823
2824 @Override
2825 public ActivityManager.StackInfo getStackInfo(int windowingMode, int activityType) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002826 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "getStackInfo()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002827 long ident = Binder.clearCallingIdentity();
2828 try {
2829 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08002830 return mRootWindowContainer.getStackInfo(windowingMode, activityType);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002831 }
2832 } finally {
2833 Binder.restoreCallingIdentity(ident);
2834 }
2835 }
2836
Evan Rosky29d4a0a2020-02-04 16:40:44 -08002837 // TODO(148895075): deprecate and replace with task equivalents
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002838 @Override
Evan Roskyfd439692019-11-06 16:12:59 -08002839 public List<ActivityManager.StackInfo> getAllStackInfosOnDisplay(int displayId) {
2840 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "getAllStackInfos()");
2841 long ident = Binder.clearCallingIdentity();
2842 try {
2843 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08002844 return mRootWindowContainer.getAllStackInfos(displayId);
Evan Roskyfd439692019-11-06 16:12:59 -08002845 }
2846 } finally {
2847 Binder.restoreCallingIdentity(ident);
2848 }
2849 }
2850
2851 @Override
2852 public ActivityManager.StackInfo getStackInfoOnDisplay(int windowingMode, int activityType,
2853 int displayId) {
2854 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "getStackInfo()");
2855 long ident = Binder.clearCallingIdentity();
2856 try {
2857 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08002858 return mRootWindowContainer.getStackInfo(windowingMode, activityType, displayId);
Evan Roskyfd439692019-11-06 16:12:59 -08002859 }
2860 } finally {
2861 Binder.restoreCallingIdentity(ident);
2862 }
2863 }
2864
2865 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002866 public void cancelRecentsAnimation(boolean restoreHomeStackPosition) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002867 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "cancelRecentsAnimation()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002868 final long callingUid = Binder.getCallingUid();
2869 final long origId = Binder.clearCallingIdentity();
2870 try {
2871 synchronized (mGlobalLock) {
2872 // Cancel the recents animation synchronously (do not hold the WM lock)
Wale Ogunwalea441b922019-06-27 19:21:44 -07002873 mWindowManager.cancelRecentsAnimation(restoreHomeStackPosition
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002874 ? REORDER_MOVE_TO_ORIGINAL_POSITION
2875 : REORDER_KEEP_IN_PLACE, "cancelRecentsAnimation/uid=" + callingUid);
2876 }
2877 } finally {
2878 Binder.restoreCallingIdentity(origId);
2879 }
2880 }
2881
2882 @Override
2883 public void startLockTaskModeByToken(IBinder token) {
2884 synchronized (mGlobalLock) {
2885 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
2886 if (r == null) {
2887 return;
2888 }
Louis Changcdec0802019-11-11 11:45:07 +08002889 startLockTaskModeLocked(r.getTask(), false /* isSystemCaller */);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002890 }
2891 }
2892
2893 @Override
Riddle Hsu090ac6f2018-10-31 12:55:29 +08002894 public void startSystemLockTaskMode(int taskId) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002895 mAmInternal.enforceCallingPermission(MANAGE_ACTIVITY_STACKS, "startSystemLockTaskMode");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002896 // This makes inner call to look as if it was initiated by system.
2897 long ident = Binder.clearCallingIdentity();
2898 try {
2899 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08002900 final Task task = mRootWindowContainer.anyTaskForId(taskId,
Riddle Hsu090ac6f2018-10-31 12:55:29 +08002901 MATCH_TASK_IN_STACKS_ONLY);
2902 if (task == null) {
2903 return;
2904 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002905
2906 // When starting lock task mode the stack must be in front and focused
2907 task.getStack().moveToFront("startSystemLockTaskMode");
2908 startLockTaskModeLocked(task, true /* isSystemCaller */);
2909 }
2910 } finally {
2911 Binder.restoreCallingIdentity(ident);
2912 }
2913 }
2914
2915 @Override
2916 public void stopLockTaskModeByToken(IBinder token) {
2917 synchronized (mGlobalLock) {
2918 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
2919 if (r == null) {
2920 return;
2921 }
Louis Changcdec0802019-11-11 11:45:07 +08002922 stopLockTaskModeInternal(r.getTask(), false /* isSystemCaller */);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002923 }
2924 }
2925
2926 /**
2927 * This API should be called by SystemUI only when user perform certain action to dismiss
2928 * lock task mode. We should only dismiss pinned lock task mode in this case.
2929 */
2930 @Override
2931 public void stopSystemLockTaskMode() throws RemoteException {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002932 mAmInternal.enforceCallingPermission(MANAGE_ACTIVITY_STACKS, "stopSystemLockTaskMode");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002933 stopLockTaskModeInternal(null, true /* isSystemCaller */);
2934 }
2935
Louis Changcdec0802019-11-11 11:45:07 +08002936 private void startLockTaskModeLocked(@Nullable Task task, boolean isSystemCaller) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002937 if (DEBUG_LOCKTASK) Slog.w(TAG_LOCKTASK, "startLockTaskModeLocked: " + task);
2938 if (task == null || task.mLockTaskAuth == LOCK_TASK_AUTH_DONT_LOCK) {
2939 return;
2940 }
2941
Louis Chang149d5c82019-12-30 09:47:39 +08002942 final ActivityStack stack = mRootWindowContainer.getTopDisplayFocusedStack();
Wale Ogunwale85fb19a2019-12-05 10:41:05 +09002943 if (stack == null || task != stack.getTopMostTask()) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002944 throw new IllegalArgumentException("Invalid task, not in foreground");
2945 }
2946
2947 // {@code isSystemCaller} is used to distinguish whether this request is initiated by the
2948 // system or a specific app.
2949 // * System-initiated requests will only start the pinned mode (screen pinning)
2950 // * App-initiated requests
2951 // - will put the device in fully locked mode (LockTask), if the app is whitelisted
2952 // - will start the pinned mode, otherwise
2953 final int callingUid = Binder.getCallingUid();
2954 long ident = Binder.clearCallingIdentity();
2955 try {
2956 // When a task is locked, dismiss the pinned stack if it exists
Louis Chang149d5c82019-12-30 09:47:39 +08002957 mRootWindowContainer.removeStacksInWindowingModes(WINDOWING_MODE_PINNED);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002958
Wale Ogunwaled95c06b2018-05-08 10:35:38 -07002959 getLockTaskController().startLockTaskMode(task, isSystemCaller, callingUid);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002960 } finally {
2961 Binder.restoreCallingIdentity(ident);
2962 }
2963 }
2964
Louis Changcdec0802019-11-11 11:45:07 +08002965 private void stopLockTaskModeInternal(@Nullable Task task, boolean isSystemCaller) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002966 final int callingUid = Binder.getCallingUid();
2967 long ident = Binder.clearCallingIdentity();
2968 try {
2969 synchronized (mGlobalLock) {
Wale Ogunwaled95c06b2018-05-08 10:35:38 -07002970 getLockTaskController().stopLockTaskMode(task, isSystemCaller, callingUid);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002971 }
2972 // Launch in-call UI if a call is ongoing. This is necessary to allow stopping the lock
2973 // task and jumping straight into a call in the case of emergency call back.
2974 TelecomManager tm = (TelecomManager) mContext.getSystemService(Context.TELECOM_SERVICE);
2975 if (tm != null) {
2976 tm.showInCallScreen(false);
2977 }
2978 } finally {
2979 Binder.restoreCallingIdentity(ident);
2980 }
2981 }
2982
2983 @Override
Wale Ogunwale27c48ae2018-10-25 19:01:01 -07002984 public void updateLockTaskPackages(int userId, String[] packages) {
2985 final int callingUid = Binder.getCallingUid();
2986 if (callingUid != 0 && callingUid != SYSTEM_UID) {
2987 mAmInternal.enforceCallingPermission(Manifest.permission.UPDATE_LOCK_TASK_PACKAGES,
2988 "updateLockTaskPackages()");
2989 }
Riddle Hsu8419e4b2019-09-18 23:28:01 +08002990 synchronized (mGlobalLock) {
Wale Ogunwale27c48ae2018-10-25 19:01:01 -07002991 if (DEBUG_LOCKTASK) Slog.w(TAG_LOCKTASK, "Whitelisting " + userId + ":"
2992 + Arrays.toString(packages));
2993 getLockTaskController().updateLockTaskPackages(userId, packages);
2994 }
2995 }
2996
2997 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002998 public boolean isInLockTaskMode() {
2999 return getLockTaskModeState() != LOCK_TASK_MODE_NONE;
3000 }
3001
3002 @Override
3003 public int getLockTaskModeState() {
3004 synchronized (mGlobalLock) {
Wale Ogunwaled95c06b2018-05-08 10:35:38 -07003005 return getLockTaskController().getLockTaskModeState();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003006 }
3007 }
3008
3009 @Override
3010 public void setTaskDescription(IBinder token, ActivityManager.TaskDescription td) {
3011 synchronized (mGlobalLock) {
3012 ActivityRecord r = ActivityRecord.isInStackLocked(token);
3013 if (r != null) {
3014 r.setTaskDescription(td);
Louis Changcdec0802019-11-11 11:45:07 +08003015 final Task task = r.getTask();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003016 task.updateTaskDescription();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003017 }
3018 }
3019 }
3020
3021 @Override
3022 public Bundle getActivityOptions(IBinder token) {
3023 final long origId = Binder.clearCallingIdentity();
3024 try {
3025 synchronized (mGlobalLock) {
3026 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
3027 if (r != null) {
Jorim Jaggi346702a2019-05-08 17:49:33 +02003028 final ActivityOptions activityOptions = r.takeOptionsLocked(
3029 true /* fromClient */);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003030 return activityOptions == null ? null : activityOptions.toBundle();
3031 }
3032 return null;
3033 }
3034 } finally {
3035 Binder.restoreCallingIdentity(origId);
3036 }
3037 }
3038
3039 @Override
3040 public List<IBinder> getAppTasks(String callingPackage) {
3041 int callingUid = Binder.getCallingUid();
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07003042 assertPackageMatchesCallingUid(callingPackage);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003043 long ident = Binder.clearCallingIdentity();
3044 try {
3045 synchronized (mGlobalLock) {
Wale Ogunwale16e505a2018-05-07 15:00:49 -07003046 return mRecentTasks.getAppTasksList(callingUid, callingPackage);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003047 }
3048 } finally {
3049 Binder.restoreCallingIdentity(ident);
3050 }
3051 }
3052
3053 @Override
3054 public void finishVoiceTask(IVoiceInteractionSession session) {
3055 synchronized (mGlobalLock) {
3056 final long origId = Binder.clearCallingIdentity();
3057 try {
3058 // TODO: VI Consider treating local voice interactions and voice tasks
3059 // differently here
Louis Chang149d5c82019-12-30 09:47:39 +08003060 mRootWindowContainer.finishVoiceTask(session);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003061 } finally {
3062 Binder.restoreCallingIdentity(origId);
3063 }
3064 }
3065
3066 }
3067
3068 @Override
3069 public boolean isTopOfTask(IBinder token) {
3070 synchronized (mGlobalLock) {
3071 ActivityRecord r = ActivityRecord.isInStackLocked(token);
Wale Ogunwale21e06482019-11-18 05:14:15 -08003072 return r != null && r.getTask().getTopNonFinishingActivity() == r;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003073 }
3074 }
3075
3076 @Override
3077 public void notifyLaunchTaskBehindComplete(IBinder token) {
3078 mStackSupervisor.scheduleLaunchTaskBehindComplete(token);
3079 }
3080
3081 @Override
3082 public void notifyEnterAnimationComplete(IBinder token) {
Wale Ogunwaled0412b32018-05-08 09:25:50 -07003083 mH.post(() -> {
3084 synchronized (mGlobalLock) {
3085 ActivityRecord r = ActivityRecord.forTokenLocked(token);
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07003086 if (r != null && r.attachedToProcess()) {
Wale Ogunwaled0412b32018-05-08 09:25:50 -07003087 try {
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07003088 r.app.getThread().scheduleEnterAnimationComplete(r.appToken);
Wale Ogunwaled0412b32018-05-08 09:25:50 -07003089 } catch (RemoteException e) {
3090 }
3091 }
3092 }
3093
3094 });
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003095 }
3096
3097 /** Called from an app when assist data is ready. */
3098 @Override
3099 public void reportAssistContextExtras(IBinder token, Bundle extras, AssistStructure structure,
3100 AssistContent content, Uri referrer) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003101 PendingAssistExtras pae = (PendingAssistExtras) token;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003102 synchronized (pae) {
3103 pae.result = extras;
3104 pae.structure = structure;
3105 pae.content = content;
3106 if (referrer != null) {
3107 pae.extras.putParcelable(Intent.EXTRA_REFERRER, referrer);
3108 }
3109 if (structure != null) {
Winson Chung48b25652018-10-22 14:04:30 -07003110 // Pre-fill the task/activity component for all assist data receivers
Louis Changcdec0802019-11-11 11:45:07 +08003111 structure.setTaskId(pae.activity.getTask().mTaskId);
Wale Ogunwale8b19de92018-11-29 19:58:26 -08003112 structure.setActivityComponent(pae.activity.mActivityComponent);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003113 structure.setHomeActivity(pae.isHome);
3114 }
3115 pae.haveResult = true;
3116 pae.notifyAll();
3117 if (pae.intent == null && pae.receiver == null) {
3118 // Caller is just waiting for the result.
3119 return;
3120 }
3121 }
3122 // We are now ready to launch the assist activity.
3123 IAssistDataReceiver sendReceiver = null;
3124 Bundle sendBundle = null;
3125 synchronized (mGlobalLock) {
3126 buildAssistBundleLocked(pae, extras);
3127 boolean exists = mPendingAssistExtras.remove(pae);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003128 mUiHandler.removeCallbacks(pae);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003129 if (!exists) {
3130 // Timed out.
3131 return;
3132 }
3133
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003134 if ((sendReceiver = pae.receiver) != null) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003135 // Caller wants result sent back to them.
3136 sendBundle = new Bundle();
Sunny Goyald40c3452019-03-20 12:46:55 -07003137 sendBundle.putInt(ActivityTaskManagerInternal.ASSIST_TASK_ID,
Louis Changcdec0802019-11-11 11:45:07 +08003138 pae.activity.getTask().mTaskId);
Sunny Goyald40c3452019-03-20 12:46:55 -07003139 sendBundle.putBinder(ActivityTaskManagerInternal.ASSIST_ACTIVITY_ID,
3140 pae.activity.assistToken);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003141 sendBundle.putBundle(ASSIST_KEY_DATA, pae.extras);
3142 sendBundle.putParcelable(ASSIST_KEY_STRUCTURE, pae.structure);
3143 sendBundle.putParcelable(ASSIST_KEY_CONTENT, pae.content);
3144 sendBundle.putBundle(ASSIST_KEY_RECEIVER_EXTRAS, pae.receiverExtras);
3145 }
3146 }
3147 if (sendReceiver != null) {
3148 try {
3149 sendReceiver.onHandleAssistData(sendBundle);
3150 } catch (RemoteException e) {
3151 }
3152 return;
3153 }
3154
3155 final long ident = Binder.clearCallingIdentity();
3156 try {
3157 if (TextUtils.equals(pae.intent.getAction(),
3158 android.service.voice.VoiceInteractionService.SERVICE_INTERFACE)) {
Galia Peychevabffbfc32019-06-18 10:11:35 +02003159 // Start voice interaction through VoiceInteractionManagerService.
3160 mAssistUtils.showSessionForActiveService(sendBundle, SHOW_SOURCE_APPLICATION,
3161 null, null);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003162 } else {
3163 pae.intent.replaceExtras(pae.extras);
3164 pae.intent.setFlags(FLAG_ACTIVITY_NEW_TASK
3165 | Intent.FLAG_ACTIVITY_SINGLE_TOP
3166 | Intent.FLAG_ACTIVITY_CLEAR_TOP);
Wale Ogunwale31913b52018-10-13 08:29:31 -07003167 mInternal.closeSystemDialogs("assist");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003168
3169 try {
3170 mContext.startActivityAsUser(pae.intent, new UserHandle(pae.userHandle));
3171 } catch (ActivityNotFoundException e) {
3172 Slog.w(TAG, "No activity to handle assist action.", e);
3173 }
3174 }
3175 } finally {
3176 Binder.restoreCallingIdentity(ident);
3177 }
3178 }
3179
3180 @Override
3181 public int addAppTask(IBinder activityToken, Intent intent,
3182 ActivityManager.TaskDescription description, Bitmap thumbnail) throws RemoteException {
3183 final int callingUid = Binder.getCallingUid();
3184 final long callingIdent = Binder.clearCallingIdentity();
3185
3186 try {
3187 synchronized (mGlobalLock) {
3188 ActivityRecord r = ActivityRecord.isInStackLocked(activityToken);
3189 if (r == null) {
3190 throw new IllegalArgumentException("Activity does not exist; token="
3191 + activityToken);
3192 }
3193 ComponentName comp = intent.getComponent();
3194 if (comp == null) {
3195 throw new IllegalArgumentException("Intent " + intent
3196 + " must specify explicit component");
3197 }
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003198 if (thumbnail.getWidth() != mThumbnailWidth
3199 || thumbnail.getHeight() != mThumbnailHeight) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003200 throw new IllegalArgumentException("Bad thumbnail size: got "
3201 + thumbnail.getWidth() + "x" + thumbnail.getHeight() + ", require "
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003202 + mThumbnailWidth + "x" + mThumbnailHeight);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003203 }
3204 if (intent.getSelector() != null) {
3205 intent.setSelector(null);
3206 }
3207 if (intent.getSourceBounds() != null) {
3208 intent.setSourceBounds(null);
3209 }
3210 if ((intent.getFlags()&Intent.FLAG_ACTIVITY_NEW_DOCUMENT) != 0) {
3211 if ((intent.getFlags()&Intent.FLAG_ACTIVITY_RETAIN_IN_RECENTS) == 0) {
3212 // The caller has added this as an auto-remove task... that makes no
3213 // sense, so turn off auto-remove.
3214 intent.addFlags(Intent.FLAG_ACTIVITY_RETAIN_IN_RECENTS);
3215 }
3216 }
3217 final ActivityInfo ainfo = AppGlobals.getPackageManager().getActivityInfo(comp,
3218 STOCK_PM_FLAGS, UserHandle.getUserId(callingUid));
3219 if (ainfo.applicationInfo.uid != callingUid) {
3220 throw new SecurityException(
3221 "Can't add task for another application: target uid="
3222 + ainfo.applicationInfo.uid + ", calling uid=" + callingUid);
3223 }
3224
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08003225 final ActivityStack stack = r.getRootTask();
Louis Changcdec0802019-11-11 11:45:07 +08003226 final Task task = stack.createTask(
Wale Ogunwale8f93b642019-12-26 12:10:52 -08003227 mStackSupervisor.getNextTaskIdForUser(r.mUserId), ainfo, intent, !ON_TOP);
Wale Ogunwale16e505a2018-05-07 15:00:49 -07003228 if (!mRecentTasks.addToBottom(task)) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003229 // The app has too many tasks already and we can't add any more
Wale Ogunwale2322bed2019-10-10 17:24:19 +02003230 stack.removeChild(task, "addAppTask");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003231 return INVALID_TASK_ID;
3232 }
Wale Ogunwale2322bed2019-10-10 17:24:19 +02003233 task.getTaskDescription().copyFrom(description);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003234
3235 // TODO: Send the thumbnail to WM to store it.
3236
Wale Ogunwale4e79a1c2019-10-05 20:52:40 -07003237 return task.mTaskId;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003238 }
3239 } finally {
3240 Binder.restoreCallingIdentity(callingIdent);
3241 }
3242 }
3243
3244 @Override
3245 public Point getAppTaskThumbnailSize() {
3246 synchronized (mGlobalLock) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003247 return new Point(mThumbnailWidth, mThumbnailHeight);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003248 }
3249 }
3250
3251 @Override
3252 public void setTaskResizeable(int taskId, int resizeableMode) {
3253 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08003254 final Task task = mRootWindowContainer.anyTaskForId(
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003255 taskId, MATCH_TASK_IN_STACKS_OR_RECENT_TASKS);
3256 if (task == null) {
3257 Slog.w(TAG, "setTaskResizeable: taskId=" + taskId + " not found");
3258 return;
3259 }
3260 task.setResizeMode(resizeableMode);
3261 }
3262 }
3263
3264 @Override
3265 public void resizeTask(int taskId, Rect bounds, int resizeMode) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003266 mAmInternal.enforceCallingPermission(MANAGE_ACTIVITY_STACKS, "resizeTask()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003267 long ident = Binder.clearCallingIdentity();
3268 try {
3269 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08003270 final Task task = mRootWindowContainer.anyTaskForId(taskId,
Riddle Hsu090ac6f2018-10-31 12:55:29 +08003271 MATCH_TASK_IN_STACKS_ONLY);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003272 if (task == null) {
3273 Slog.w(TAG, "resizeTask: taskId=" + taskId + " not found");
3274 return;
3275 }
3276 // Place the task in the right stack if it isn't there already based on
3277 // the requested bounds.
3278 // The stack transition logic is:
3279 // - a null bounds on a freeform task moves that task to fullscreen
3280 // - a non-null bounds on a non-freeform (fullscreen OR docked) task moves
3281 // that task to freeform
3282 // - otherwise the task is not moved
3283 ActivityStack stack = task.getStack();
3284 if (!task.getWindowConfiguration().canResizeTask()) {
3285 throw new IllegalArgumentException("resizeTask not allowed on task=" + task);
3286 }
3287 if (bounds == null && stack.getWindowingMode() == WINDOWING_MODE_FREEFORM) {
3288 stack = stack.getDisplay().getOrCreateStack(
3289 WINDOWING_MODE_FULLSCREEN, stack.getActivityType(), ON_TOP);
3290 } else if (bounds != null && stack.getWindowingMode() != WINDOWING_MODE_FREEFORM) {
3291 stack = stack.getDisplay().getOrCreateStack(
3292 WINDOWING_MODE_FREEFORM, stack.getActivityType(), ON_TOP);
3293 }
3294
3295 // Reparent the task to the right stack if necessary
3296 boolean preserveWindow = (resizeMode & RESIZE_MODE_PRESERVE_WINDOW) != 0;
3297 if (stack != task.getStack()) {
3298 // Defer resume until the task is resized below
3299 task.reparent(stack, ON_TOP, REPARENT_KEEP_STACK_AT_FRONT, ANIMATE,
3300 DEFER_RESUME, "resizeTask");
3301 preserveWindow = false;
3302 }
3303
3304 // After reparenting (which only resizes the task to the stack bounds), resize the
3305 // task to the actual bounds provided
3306 task.resize(bounds, resizeMode, preserveWindow, !DEFER_RESUME);
3307 }
3308 } finally {
3309 Binder.restoreCallingIdentity(ident);
3310 }
3311 }
3312
3313 @Override
3314 public boolean releaseActivityInstance(IBinder token) {
3315 synchronized (mGlobalLock) {
3316 final long origId = Binder.clearCallingIdentity();
3317 try {
Andrii Kulianf49a58c2019-08-14 17:34:27 -07003318 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
3319 if (r == null || !r.isDestroyable()) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003320 return false;
3321 }
Andrii Kulianf49a58c2019-08-14 17:34:27 -07003322 r.destroyImmediately(true /* removeFromApp */, "app-req");
3323 return r.isState(DESTROYING, DESTROYED);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003324 } finally {
3325 Binder.restoreCallingIdentity(origId);
3326 }
3327 }
3328 }
3329
3330 @Override
3331 public void releaseSomeActivities(IApplicationThread appInt) {
3332 synchronized (mGlobalLock) {
3333 final long origId = Binder.clearCallingIdentity();
3334 try {
Wale Ogunwale342fbe92018-10-09 08:44:10 -07003335 final WindowProcessController app = getProcessController(appInt);
Wale Ogunwalea38654f2019-11-17 20:37:15 -08003336 app.releaseSomeActivities("low-mem");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003337 } finally {
3338 Binder.restoreCallingIdentity(origId);
3339 }
3340 }
3341 }
3342
3343 @Override
wilsonshih177261f2019-02-22 12:02:18 +08003344 public void setLockScreenShown(boolean keyguardShowing, boolean aodShowing) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003345 if (checkCallingPermission(android.Manifest.permission.DEVICE_POWER)
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003346 != PackageManager.PERMISSION_GRANTED) {
3347 throw new SecurityException("Requires permission "
3348 + android.Manifest.permission.DEVICE_POWER);
3349 }
3350
3351 synchronized (mGlobalLock) {
3352 long ident = Binder.clearCallingIdentity();
3353 if (mKeyguardShown != keyguardShowing) {
3354 mKeyguardShown = keyguardShowing;
Wale Ogunwale342fbe92018-10-09 08:44:10 -07003355 final Message msg = PooledLambda.obtainMessage(
3356 ActivityManagerInternal::reportCurKeyguardUsageEvent, mAmInternal,
3357 keyguardShowing);
3358 mH.sendMessage(msg);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003359 }
3360 try {
wilsonshih177261f2019-02-22 12:02:18 +08003361 mKeyguardController.setKeyguardShown(keyguardShowing, aodShowing);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003362 } finally {
3363 Binder.restoreCallingIdentity(ident);
3364 }
3365 }
3366
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003367 mH.post(() -> {
3368 for (int i = mScreenObservers.size() - 1; i >= 0; i--) {
3369 mScreenObservers.get(i).onKeyguardStateChanged(keyguardShowing);
3370 }
3371 });
3372 }
3373
Wale Ogunwale387b34c2018-10-25 19:59:40 -07003374 public void onScreenAwakeChanged(boolean isAwake) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003375 mH.post(() -> {
3376 for (int i = mScreenObservers.size() - 1; i >= 0; i--) {
3377 mScreenObservers.get(i).onAwakeStateChanged(isAwake);
3378 }
3379 });
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003380 }
3381
3382 @Override
3383 public Bitmap getTaskDescriptionIcon(String filePath, int userId) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003384 userId = handleIncomingUser(Binder.getCallingPid(), Binder.getCallingUid(),
3385 userId, "getTaskDescriptionIcon");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003386
3387 final File passedIconFile = new File(filePath);
3388 final File legitIconFile = new File(TaskPersister.getUserImagesDir(userId),
3389 passedIconFile.getName());
3390 if (!legitIconFile.getPath().equals(filePath)
3391 || !filePath.contains(ActivityRecord.ACTIVITY_ICON_SUFFIX)) {
3392 throw new IllegalArgumentException("Bad file path: " + filePath
3393 + " passed for userId " + userId);
3394 }
Wale Ogunwale16e505a2018-05-07 15:00:49 -07003395 return mRecentTasks.getTaskDescriptionIcon(filePath);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003396 }
3397
3398 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003399 public void removeStack(int stackId) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003400 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "removeStack()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003401 synchronized (mGlobalLock) {
3402 final long ident = Binder.clearCallingIdentity();
3403 try {
Louis Chang149d5c82019-12-30 09:47:39 +08003404 final ActivityStack stack = mRootWindowContainer.getStack(stackId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003405 if (stack == null) {
3406 Slog.w(TAG, "removeStack: No stack with id=" + stackId);
3407 return;
3408 }
3409 if (!stack.isActivityTypeStandardOrUndefined()) {
3410 throw new IllegalArgumentException(
3411 "Removing non-standard stack is not allowed.");
3412 }
3413 mStackSupervisor.removeStack(stack);
3414 } finally {
3415 Binder.restoreCallingIdentity(ident);
3416 }
3417 }
3418 }
3419
3420 @Override
3421 public void moveStackToDisplay(int stackId, int displayId) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003422 mAmInternal.enforceCallingPermission(INTERNAL_SYSTEM_WINDOW, "moveStackToDisplay()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003423
3424 synchronized (mGlobalLock) {
3425 final long ident = Binder.clearCallingIdentity();
3426 try {
3427 if (DEBUG_STACK) Slog.d(TAG_STACK, "moveStackToDisplay: moving stackId=" + stackId
3428 + " to displayId=" + displayId);
Louis Chang149d5c82019-12-30 09:47:39 +08003429 mRootWindowContainer.moveStackToDisplay(stackId, displayId, ON_TOP);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003430 } finally {
3431 Binder.restoreCallingIdentity(ident);
3432 }
3433 }
3434 }
3435
3436 @Override
Yunfan Chend967af82019-01-17 18:30:18 +09003437 public void toggleFreeformWindowingMode(IBinder token) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003438 synchronized (mGlobalLock) {
3439 long ident = Binder.clearCallingIdentity();
3440 try {
3441 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
3442 if (r == null) {
3443 throw new IllegalArgumentException(
Yunfan Chend967af82019-01-17 18:30:18 +09003444 "toggleFreeformWindowingMode: No activity record matching token="
3445 + token);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003446 }
3447
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08003448 final ActivityStack stack = r.getRootTask();
Yunfan Chend967af82019-01-17 18:30:18 +09003449 if (stack == null) {
3450 throw new IllegalStateException("toggleFreeformWindowingMode: the activity "
3451 + "doesn't have a stack");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003452 }
3453
Yunfan Chend967af82019-01-17 18:30:18 +09003454 if (!stack.inFreeformWindowingMode()
3455 && stack.getWindowingMode() != WINDOWING_MODE_FULLSCREEN) {
3456 throw new IllegalStateException("toggleFreeformWindowingMode: You can only "
3457 + "toggle between fullscreen and freeform.");
3458 }
3459
3460 if (stack.inFreeformWindowingMode()) {
3461 stack.setWindowingMode(WINDOWING_MODE_FULLSCREEN);
Evan Rosky3a8d7fe2019-11-06 17:08:35 -08003462 } else if (!mSizeCompatFreeform && r.inSizeCompatMode()) {
Shivam Agrawal780b5bb2019-07-17 10:17:11 -07003463 throw new IllegalStateException("Size-compat windows are currently not"
3464 + "freeform-enabled");
Yunfan Chene9c1c312019-04-18 14:49:15 +09003465 } else if (stack.getParent().inFreeformWindowingMode()) {
3466 // If the window is on a freeform display, set it to undefined. It will be
3467 // resolved to freeform and it can adjust windowing mode when the display mode
3468 // changes in runtime.
3469 stack.setWindowingMode(WINDOWING_MODE_UNDEFINED);
Yunfan Chend967af82019-01-17 18:30:18 +09003470 } else {
3471 stack.setWindowingMode(WINDOWING_MODE_FREEFORM);
3472 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003473 } finally {
3474 Binder.restoreCallingIdentity(ident);
3475 }
3476 }
3477 }
3478
3479 /** Sets the task stack listener that gets callbacks when a task stack changes. */
3480 @Override
3481 public void registerTaskStackListener(ITaskStackListener listener) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003482 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003483 "registerTaskStackListener()");
Wale Ogunwaled0412b32018-05-08 09:25:50 -07003484 mTaskChangeNotificationController.registerTaskStackListener(listener);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003485 }
3486
3487 /** Unregister a task stack listener so that it stops receiving callbacks. */
3488 @Override
3489 public void unregisterTaskStackListener(ITaskStackListener listener) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003490 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003491 "unregisterTaskStackListener()");
Wale Ogunwaled0412b32018-05-08 09:25:50 -07003492 mTaskChangeNotificationController.unregisterTaskStackListener(listener);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003493 }
3494
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003495 @Override
3496 public boolean requestAssistContextExtras(int requestType, IAssistDataReceiver receiver,
3497 Bundle receiverExtras, IBinder activityToken, boolean focused, boolean newSessionId) {
3498 return enqueueAssistContext(requestType, null, null, receiver, receiverExtras,
3499 activityToken, focused, newSessionId, UserHandle.getCallingUserId(), null,
3500 PENDING_ASSIST_EXTRAS_LONG_TIMEOUT, 0) != null;
3501 }
3502
3503 @Override
3504 public boolean requestAutofillData(IAssistDataReceiver receiver, Bundle receiverExtras,
3505 IBinder activityToken, int flags) {
3506 return enqueueAssistContext(ActivityManager.ASSIST_CONTEXT_AUTOFILL, null, null,
3507 receiver, receiverExtras, activityToken, true, true, UserHandle.getCallingUserId(),
3508 null, PENDING_AUTOFILL_ASSIST_STRUCTURE_TIMEOUT, flags) != null;
3509 }
3510
3511 @Override
3512 public boolean launchAssistIntent(Intent intent, int requestType, String hint, int userHandle,
3513 Bundle args) {
3514 return enqueueAssistContext(requestType, intent, hint, null, null, null,
3515 true /* focused */, true /* newSessionId */, userHandle, args,
3516 PENDING_ASSIST_EXTRAS_TIMEOUT, 0) != null;
3517 }
3518
3519 @Override
3520 public Bundle getAssistContextExtras(int requestType) {
3521 PendingAssistExtras pae = enqueueAssistContext(requestType, null, null, null,
3522 null, null, true /* focused */, true /* newSessionId */,
3523 UserHandle.getCallingUserId(), null, PENDING_ASSIST_EXTRAS_TIMEOUT, 0);
3524 if (pae == null) {
3525 return null;
3526 }
3527 synchronized (pae) {
3528 while (!pae.haveResult) {
3529 try {
3530 pae.wait();
3531 } catch (InterruptedException e) {
3532 }
3533 }
3534 }
3535 synchronized (mGlobalLock) {
3536 buildAssistBundleLocked(pae, pae.result);
3537 mPendingAssistExtras.remove(pae);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003538 mUiHandler.removeCallbacks(pae);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003539 }
3540 return pae.extras;
3541 }
3542
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003543 /**
3544 * Binder IPC calls go through the public entry point.
3545 * This can be called with or without the global lock held.
3546 */
3547 private static int checkCallingPermission(String permission) {
3548 return checkPermission(
3549 permission, Binder.getCallingPid(), UserHandle.getAppId(Binder.getCallingUid()));
3550 }
3551
3552 /** This can be called with or without the global lock held. */
Wale Ogunwale214f3482018-10-04 11:00:47 -07003553 private void enforceCallerIsRecentsOrHasPermission(String permission, String func) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003554 if (!getRecentTasks().isCallerRecents(Binder.getCallingUid())) {
3555 mAmInternal.enforceCallingPermission(permission, func);
3556 }
3557 }
3558
3559 @VisibleForTesting
3560 int checkGetTasksPermission(String permission, int pid, int uid) {
3561 return checkPermission(permission, pid, uid);
3562 }
3563
3564 static int checkPermission(String permission, int pid, int uid) {
3565 if (permission == null) {
3566 return PackageManager.PERMISSION_DENIED;
3567 }
3568 return checkComponentPermission(permission, pid, uid, -1, true);
3569 }
3570
Wale Ogunwale214f3482018-10-04 11:00:47 -07003571 public static int checkComponentPermission(String permission, int pid, int uid,
3572 int owningUid, boolean exported) {
3573 return ActivityManagerService.checkComponentPermission(
3574 permission, pid, uid, owningUid, exported);
3575 }
3576
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003577 boolean isGetTasksAllowed(String caller, int callingPid, int callingUid) {
3578 if (getRecentTasks().isCallerRecents(callingUid)) {
3579 // Always allow the recents component to get tasks
3580 return true;
3581 }
3582
3583 boolean allowed = checkGetTasksPermission(android.Manifest.permission.REAL_GET_TASKS,
3584 callingPid, callingUid) == PackageManager.PERMISSION_GRANTED;
3585 if (!allowed) {
3586 if (checkGetTasksPermission(android.Manifest.permission.GET_TASKS,
3587 callingPid, callingUid) == PackageManager.PERMISSION_GRANTED) {
3588 // Temporary compatibility: some existing apps on the system image may
3589 // still be requesting the old permission and not switched to the new
3590 // one; if so, we'll still allow them full access. This means we need
3591 // to see if they are holding the old permission and are a system app.
3592 try {
3593 if (AppGlobals.getPackageManager().isUidPrivileged(callingUid)) {
3594 allowed = true;
3595 if (DEBUG_TASKS) Slog.w(TAG, caller + ": caller " + callingUid
3596 + " is using old GET_TASKS but privileged; allowing");
3597 }
3598 } catch (RemoteException e) {
3599 }
3600 }
3601 if (DEBUG_TASKS) Slog.w(TAG, caller + ": caller " + callingUid
3602 + " does not hold REAL_GET_TASKS; limiting output");
3603 }
3604 return allowed;
3605 }
3606
Nicholas Sauer0259e532019-08-30 08:24:55 -07003607 boolean isCrossUserAllowed(int pid, int uid) {
3608 return checkPermission(INTERACT_ACROSS_USERS, pid, uid) == PERMISSION_GRANTED
3609 || checkPermission(INTERACT_ACROSS_USERS_FULL, pid, uid) == PERMISSION_GRANTED;
3610 }
3611
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003612 private PendingAssistExtras enqueueAssistContext(int requestType, Intent intent, String hint,
3613 IAssistDataReceiver receiver, Bundle receiverExtras, IBinder activityToken,
3614 boolean focused, boolean newSessionId, int userHandle, Bundle args, long timeout,
3615 int flags) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003616 mAmInternal.enforceCallingPermission(android.Manifest.permission.GET_TOP_ACTIVITY_INFO,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003617 "enqueueAssistContext()");
3618
3619 synchronized (mGlobalLock) {
Wale Ogunwale21e06482019-11-18 05:14:15 -08003620 ActivityRecord activity = getTopDisplayFocusedStack().getTopNonFinishingActivity();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003621 if (activity == null) {
3622 Slog.w(TAG, "getAssistContextExtras failed: no top activity");
3623 return null;
3624 }
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07003625 if (!activity.attachedToProcess()) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003626 Slog.w(TAG, "getAssistContextExtras failed: no process for " + activity);
3627 return null;
3628 }
3629 if (focused) {
3630 if (activityToken != null) {
3631 ActivityRecord caller = ActivityRecord.forTokenLocked(activityToken);
3632 if (activity != caller) {
3633 Slog.w(TAG, "enqueueAssistContext failed: caller " + caller
3634 + " is not current top " + activity);
3635 return null;
3636 }
3637 }
3638 } else {
3639 activity = ActivityRecord.forTokenLocked(activityToken);
3640 if (activity == null) {
3641 Slog.w(TAG, "enqueueAssistContext failed: activity for token=" + activityToken
3642 + " couldn't be found");
3643 return null;
3644 }
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07003645 if (!activity.attachedToProcess()) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003646 Slog.w(TAG, "enqueueAssistContext failed: no process for " + activity);
3647 return null;
3648 }
3649 }
3650
3651 PendingAssistExtras pae;
3652 Bundle extras = new Bundle();
3653 if (args != null) {
3654 extras.putAll(args);
3655 }
3656 extras.putString(Intent.EXTRA_ASSIST_PACKAGE, activity.packageName);
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07003657 extras.putInt(Intent.EXTRA_ASSIST_UID, activity.app.mUid);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003658
3659 pae = new PendingAssistExtras(activity, extras, intent, hint, receiver, receiverExtras,
3660 userHandle);
3661 pae.isHome = activity.isActivityTypeHome();
3662
3663 // Increment the sessionId if necessary
3664 if (newSessionId) {
3665 mViSessionId++;
3666 }
3667 try {
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07003668 activity.app.getThread().requestAssistContextExtras(activity.appToken, pae,
3669 requestType, mViSessionId, flags);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003670 mPendingAssistExtras.add(pae);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003671 mUiHandler.postDelayed(pae, timeout);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003672 } catch (RemoteException e) {
3673 Slog.w(TAG, "getAssistContextExtras failed: crash calling " + activity);
3674 return null;
3675 }
3676 return pae;
3677 }
3678 }
3679
3680 private void buildAssistBundleLocked(PendingAssistExtras pae, Bundle result) {
3681 if (result != null) {
3682 pae.extras.putBundle(Intent.EXTRA_ASSIST_CONTEXT, result);
3683 }
3684 if (pae.hint != null) {
3685 pae.extras.putBoolean(pae.hint, true);
3686 }
3687 }
3688
3689 private void pendingAssistExtrasTimedOut(PendingAssistExtras pae) {
3690 IAssistDataReceiver receiver;
3691 synchronized (mGlobalLock) {
3692 mPendingAssistExtras.remove(pae);
3693 receiver = pae.receiver;
3694 }
3695 if (receiver != null) {
3696 // Caller wants result sent back to them.
3697 Bundle sendBundle = new Bundle();
3698 // At least return the receiver extras
3699 sendBundle.putBundle(ASSIST_KEY_RECEIVER_EXTRAS, pae.receiverExtras);
3700 try {
3701 pae.receiver.onHandleAssistData(sendBundle);
3702 } catch (RemoteException e) {
3703 }
3704 }
3705 }
3706
3707 public class PendingAssistExtras extends Binder implements Runnable {
3708 public final ActivityRecord activity;
3709 public boolean isHome;
3710 public final Bundle extras;
3711 public final Intent intent;
3712 public final String hint;
3713 public final IAssistDataReceiver receiver;
3714 public final int userHandle;
3715 public boolean haveResult = false;
3716 public Bundle result = null;
3717 public AssistStructure structure = null;
3718 public AssistContent content = null;
3719 public Bundle receiverExtras;
3720
3721 public PendingAssistExtras(ActivityRecord _activity, Bundle _extras, Intent _intent,
3722 String _hint, IAssistDataReceiver _receiver, Bundle _receiverExtras,
3723 int _userHandle) {
3724 activity = _activity;
3725 extras = _extras;
3726 intent = _intent;
3727 hint = _hint;
3728 receiver = _receiver;
3729 receiverExtras = _receiverExtras;
3730 userHandle = _userHandle;
3731 }
3732
3733 @Override
3734 public void run() {
3735 Slog.w(TAG, "getAssistContextExtras failed: timeout retrieving from " + activity);
3736 synchronized (this) {
3737 haveResult = true;
3738 notifyAll();
3739 }
3740 pendingAssistExtrasTimedOut(this);
3741 }
3742 }
3743
3744 @Override
3745 public boolean isAssistDataAllowedOnCurrentActivity() {
3746 int userId;
3747 synchronized (mGlobalLock) {
Andrii Kulian5f750bc2018-07-17 08:57:23 -07003748 final ActivityStack focusedStack = getTopDisplayFocusedStack();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003749 if (focusedStack == null || focusedStack.isActivityTypeAssistant()) {
3750 return false;
3751 }
3752
Wale Ogunwale21e06482019-11-18 05:14:15 -08003753 final ActivityRecord activity = focusedStack.getTopNonFinishingActivity();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003754 if (activity == null) {
3755 return false;
3756 }
Wale Ogunwale8b19de92018-11-29 19:58:26 -08003757 userId = activity.mUserId;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003758 }
3759 return !DevicePolicyCache.getInstance().getScreenCaptureDisabled(userId);
3760 }
3761
3762 @Override
3763 public boolean showAssistFromActivity(IBinder token, Bundle args) {
3764 long ident = Binder.clearCallingIdentity();
3765 try {
3766 synchronized (mGlobalLock) {
3767 ActivityRecord caller = ActivityRecord.forTokenLocked(token);
Wale Ogunwale21e06482019-11-18 05:14:15 -08003768 ActivityRecord top = getTopDisplayFocusedStack().getTopNonFinishingActivity();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003769 if (top != caller) {
3770 Slog.w(TAG, "showAssistFromActivity failed: caller " + caller
3771 + " is not current top " + top);
3772 return false;
3773 }
3774 if (!top.nowVisible) {
3775 Slog.w(TAG, "showAssistFromActivity failed: caller " + caller
3776 + " is not visible");
3777 return false;
3778 }
3779 }
3780 return mAssistUtils.showSessionForActiveService(args, SHOW_SOURCE_APPLICATION, null,
3781 token);
3782 } finally {
3783 Binder.restoreCallingIdentity(ident);
3784 }
3785 }
3786
3787 @Override
3788 public boolean isRootVoiceInteraction(IBinder token) {
3789 synchronized (mGlobalLock) {
3790 ActivityRecord r = ActivityRecord.isInStackLocked(token);
3791 if (r == null) {
3792 return false;
3793 }
3794 return r.rootVoiceInteraction;
3795 }
3796 }
3797
Wale Ogunwalef6733932018-06-27 05:14:34 -07003798 private void onLocalVoiceInteractionStartedLocked(IBinder activity,
3799 IVoiceInteractionSession voiceSession, IVoiceInteractor voiceInteractor) {
3800 ActivityRecord activityToCallback = ActivityRecord.forTokenLocked(activity);
3801 if (activityToCallback == null) return;
3802 activityToCallback.setVoiceSessionLocked(voiceSession);
3803
3804 // Inform the activity
3805 try {
3806 activityToCallback.app.getThread().scheduleLocalVoiceInteractionStarted(activity,
3807 voiceInteractor);
3808 long token = Binder.clearCallingIdentity();
3809 try {
Andrii Kulianeceebbf2019-06-26 17:36:51 -07003810 startRunningVoiceLocked(voiceSession, activityToCallback.info.applicationInfo.uid);
Wale Ogunwalef6733932018-06-27 05:14:34 -07003811 } finally {
3812 Binder.restoreCallingIdentity(token);
3813 }
3814 // TODO: VI Should we cache the activity so that it's easier to find later
3815 // rather than scan through all the stacks and activities?
3816 } catch (RemoteException re) {
3817 activityToCallback.clearVoiceSessionLocked();
3818 // TODO: VI Should this terminate the voice session?
3819 }
3820 }
3821
3822 private void startRunningVoiceLocked(IVoiceInteractionSession session, int targetUid) {
3823 Slog.d(TAG, "<<< startRunningVoiceLocked()");
3824 mVoiceWakeLock.setWorkSource(new WorkSource(targetUid));
3825 if (mRunningVoice == null || mRunningVoice.asBinder() != session.asBinder()) {
3826 boolean wasRunningVoice = mRunningVoice != null;
3827 mRunningVoice = session;
3828 if (!wasRunningVoice) {
3829 mVoiceWakeLock.acquire();
3830 updateSleepIfNeededLocked();
3831 }
3832 }
3833 }
3834
3835 void finishRunningVoiceLocked() {
3836 if (mRunningVoice != null) {
3837 mRunningVoice = null;
3838 mVoiceWakeLock.release();
3839 updateSleepIfNeededLocked();
3840 }
3841 }
3842
3843 @Override
3844 public void setVoiceKeepAwake(IVoiceInteractionSession session, boolean keepAwake) {
3845 synchronized (mGlobalLock) {
3846 if (mRunningVoice != null && mRunningVoice.asBinder() == session.asBinder()) {
3847 if (keepAwake) {
3848 mVoiceWakeLock.acquire();
3849 } else {
3850 mVoiceWakeLock.release();
3851 }
3852 }
3853 }
3854 }
3855
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003856 @Override
3857 public ComponentName getActivityClassForToken(IBinder token) {
3858 synchronized (mGlobalLock) {
3859 ActivityRecord r = ActivityRecord.isInStackLocked(token);
3860 if (r == null) {
3861 return null;
3862 }
3863 return r.intent.getComponent();
3864 }
3865 }
3866
3867 @Override
3868 public String getPackageForToken(IBinder token) {
3869 synchronized (mGlobalLock) {
3870 ActivityRecord r = ActivityRecord.isInStackLocked(token);
3871 if (r == null) {
3872 return null;
3873 }
3874 return r.packageName;
3875 }
3876 }
3877
3878 @Override
3879 public void showLockTaskEscapeMessage(IBinder token) {
3880 synchronized (mGlobalLock) {
3881 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
3882 if (r == null) {
3883 return;
3884 }
Wale Ogunwaled95c06b2018-05-08 10:35:38 -07003885 getLockTaskController().showLockTaskToast();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003886 }
3887 }
3888
3889 @Override
3890 public void keyguardGoingAway(int flags) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003891 enforceNotIsolatedCaller("keyguardGoingAway");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003892 final long token = Binder.clearCallingIdentity();
3893 try {
3894 synchronized (mGlobalLock) {
Wale Ogunwaled0412b32018-05-08 09:25:50 -07003895 mKeyguardController.keyguardGoingAway(flags);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003896 }
3897 } finally {
3898 Binder.restoreCallingIdentity(token);
3899 }
3900 }
3901
3902 /**
3903 * Try to place task to provided position. The final position might be different depending on
3904 * current user and stacks state. The task will be moved to target stack if it's currently in
3905 * different stack.
3906 */
3907 @Override
3908 public void positionTaskInStack(int taskId, int stackId, int position) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003909 mAmInternal.enforceCallingPermission(MANAGE_ACTIVITY_STACKS, "positionTaskInStack()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003910 synchronized (mGlobalLock) {
3911 long ident = Binder.clearCallingIdentity();
3912 try {
3913 if (DEBUG_STACK) Slog.d(TAG_STACK, "positionTaskInStack: positioning task="
3914 + taskId + " in stackId=" + stackId + " at position=" + position);
Louis Chang149d5c82019-12-30 09:47:39 +08003915 final Task task = mRootWindowContainer.anyTaskForId(taskId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003916 if (task == null) {
3917 throw new IllegalArgumentException("positionTaskInStack: no task for id="
3918 + taskId);
3919 }
3920
Louis Chang149d5c82019-12-30 09:47:39 +08003921 final ActivityStack stack = mRootWindowContainer.getStack(stackId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003922
3923 if (stack == null) {
3924 throw new IllegalArgumentException("positionTaskInStack: no stack for id="
3925 + stackId);
3926 }
3927 if (!stack.isActivityTypeStandardOrUndefined()) {
3928 throw new IllegalArgumentException("positionTaskInStack: Attempt to change"
3929 + " the position of task " + taskId + " in/to non-standard stack");
3930 }
3931
3932 // TODO: Have the callers of this API call a separate reparent method if that is
3933 // what they intended to do vs. having this method also do reparenting.
3934 if (task.getStack() == stack) {
3935 // Change position in current stack.
3936 stack.positionChildAt(task, position);
3937 } else {
3938 // Reparent to new stack.
3939 task.reparent(stack, position, REPARENT_LEAVE_STACK_IN_PLACE, !ANIMATE,
3940 !DEFER_RESUME, "positionTaskInStack");
3941 }
3942 } finally {
3943 Binder.restoreCallingIdentity(ident);
3944 }
3945 }
3946 }
3947
3948 @Override
3949 public void reportSizeConfigurations(IBinder token, int[] horizontalSizeConfiguration,
3950 int[] verticalSizeConfigurations, int[] smallestSizeConfigurations) {
3951 if (DEBUG_CONFIGURATION) Slog.v(TAG, "Report configuration: " + token + " "
Yuichiro Hanadae7e930b2019-06-06 19:07:21 +09003952 + Arrays.toString(horizontalSizeConfiguration) + " "
3953 + Arrays.toString(verticalSizeConfigurations));
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003954 synchronized (mGlobalLock) {
3955 ActivityRecord record = ActivityRecord.isInStackLocked(token);
3956 if (record == null) {
3957 throw new IllegalArgumentException("reportSizeConfigurations: ActivityRecord not "
3958 + "found for: " + token);
3959 }
3960 record.setSizeConfigurations(horizontalSizeConfiguration,
3961 verticalSizeConfigurations, smallestSizeConfigurations);
3962 }
3963 }
3964
3965 /**
Jorim Jaggi2a3002a2020-02-17 15:57:34 +00003966 * Dismisses split-screen multi-window mode.
3967 * @param toTop If true the current primary split-screen stack will be placed or left on top.
3968 */
3969 @Override
3970 public void dismissSplitScreenMode(boolean toTop) {
3971 enforceCallerIsRecentsOrHasPermission(
3972 MANAGE_ACTIVITY_STACKS, "dismissSplitScreenMode()");
3973 final long ident = Binder.clearCallingIdentity();
3974 try {
3975 synchronized (mGlobalLock) {
3976 final ActivityStack stack =
3977 mRootWindowContainer.getDefaultDisplay().getRootSplitScreenPrimaryTask();
3978 if (stack == null) {
3979 Slog.w(TAG, "dismissSplitScreenMode: primary split-screen stack not found.");
3980 return;
3981 }
3982
3983 if (toTop) {
3984 // Caller wants the current split-screen primary stack to be the top stack after
3985 // it goes fullscreen, so move it to the front.
3986 stack.moveToFront("dismissSplitScreenMode");
3987 } else {
3988 // In this case the current split-screen primary stack shouldn't be the top
3989 // stack after it goes fullscreen, so we move the focus to the top-most
3990 // split-screen secondary stack next to it.
3991 final ActivityStack otherStack = stack.getDisplay().getTopStackInWindowingMode(
3992 WINDOWING_MODE_SPLIT_SCREEN_SECONDARY);
3993 if (otherStack != null) {
3994 otherStack.moveToFront("dismissSplitScreenMode_other");
3995 }
3996 }
3997
3998 stack.setWindowingMode(WINDOWING_MODE_UNDEFINED);
3999 }
4000 } finally {
4001 Binder.restoreCallingIdentity(ident);
4002 }
4003 }
4004
4005 /**
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004006 * Dismisses Pip
4007 * @param animate True if the dismissal should be animated.
4008 * @param animationDuration The duration of the resize animation in milliseconds or -1 if the
4009 * default animation duration should be used.
4010 */
4011 @Override
4012 public void dismissPip(boolean animate, int animationDuration) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004013 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "dismissPip()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004014 final long ident = Binder.clearCallingIdentity();
4015 try {
4016 synchronized (mGlobalLock) {
Yunfan Chen279f5582018-12-12 15:24:50 -08004017 final ActivityStack stack =
Wale Ogunwale734b8962020-01-21 12:17:42 -08004018 mRootWindowContainer.getDefaultDisplay().getRootPinnedTask();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004019 if (stack == null) {
4020 Slog.w(TAG, "dismissPip: pinned stack not found.");
4021 return;
4022 }
4023 if (stack.getWindowingMode() != WINDOWING_MODE_PINNED) {
4024 throw new IllegalArgumentException("Stack: " + stack
4025 + " doesn't support animated resize.");
4026 }
Robert Carr8a2f9132019-11-11 15:03:15 -08004027 /**
4028 * TODO(b/146594635): Remove all PIP animation code from WM
4029 * once SysUI handles animation. Don't even try to animate TaskOrganized tasks.
4030 */
4031 if (animate && !stack.isControlledByTaskOrganizer()) {
Wale Ogunwalebebd8cd2019-10-28 15:53:31 -07004032 stack.animateResizePinnedStack(null /* destBounds */,
4033 null /* sourceHintBounds */, animationDuration,
4034 false /* fromFullscreen */);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004035 } else {
Ben Lin6db8fb22019-10-18 16:03:44 -07004036 stack.dismissPip();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004037 }
4038 }
4039 } finally {
4040 Binder.restoreCallingIdentity(ident);
4041 }
4042 }
4043
4044 @Override
4045 public void suppressResizeConfigChanges(boolean suppress) throws RemoteException {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004046 mAmInternal.enforceCallingPermission(MANAGE_ACTIVITY_STACKS, "suppressResizeConfigChanges()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004047 synchronized (mGlobalLock) {
4048 mSuppressResizeConfigChanges = suppress;
4049 }
4050 }
4051
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004052 @Override
4053 // TODO: API should just be about changing windowing modes...
4054 public void moveTasksToFullscreenStack(int fromStackId, boolean onTop) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004055 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004056 "moveTasksToFullscreenStack()");
4057 synchronized (mGlobalLock) {
4058 final long origId = Binder.clearCallingIdentity();
4059 try {
Louis Chang149d5c82019-12-30 09:47:39 +08004060 final ActivityStack stack = mRootWindowContainer.getStack(fromStackId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004061 if (stack != null){
4062 if (!stack.isActivityTypeStandardOrUndefined()) {
4063 throw new IllegalArgumentException(
4064 "You can't move tasks from non-standard stacks.");
4065 }
4066 mStackSupervisor.moveTasksToFullscreenStackLocked(stack, onTop);
4067 }
4068 } finally {
4069 Binder.restoreCallingIdentity(origId);
4070 }
4071 }
4072 }
4073
4074 /**
4075 * Moves the top activity in the input stackId to the pinned stack.
4076 *
4077 * @param stackId Id of stack to move the top activity to pinned stack.
4078 * @param bounds Bounds to use for pinned stack.
4079 *
4080 * @return True if the top activity of the input stack was successfully moved to the pinned
4081 * stack.
4082 */
4083 @Override
4084 public boolean moveTopActivityToPinnedStack(int stackId, Rect bounds) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004085 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004086 "moveTopActivityToPinnedStack()");
4087 synchronized (mGlobalLock) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004088 if (!mSupportsPictureInPicture) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004089 throw new IllegalStateException("moveTopActivityToPinnedStack:"
4090 + "Device doesn't support picture-in-picture mode");
4091 }
4092
4093 long ident = Binder.clearCallingIdentity();
4094 try {
Louis Chang149d5c82019-12-30 09:47:39 +08004095 return mRootWindowContainer.moveTopStackActivityToPinnedStack(stackId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004096 } finally {
4097 Binder.restoreCallingIdentity(ident);
4098 }
4099 }
4100 }
4101
4102 @Override
4103 public boolean isInMultiWindowMode(IBinder token) {
4104 final long origId = Binder.clearCallingIdentity();
4105 try {
4106 synchronized (mGlobalLock) {
4107 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
4108 if (r == null) {
4109 return false;
4110 }
4111 // An activity is consider to be in multi-window mode if its task isn't fullscreen.
4112 return r.inMultiWindowMode();
4113 }
4114 } finally {
4115 Binder.restoreCallingIdentity(origId);
4116 }
4117 }
4118
4119 @Override
4120 public boolean isInPictureInPictureMode(IBinder token) {
4121 final long origId = Binder.clearCallingIdentity();
4122 try {
4123 synchronized (mGlobalLock) {
4124 return isInPictureInPictureMode(ActivityRecord.forTokenLocked(token));
4125 }
4126 } finally {
4127 Binder.restoreCallingIdentity(origId);
4128 }
4129 }
4130
4131 private boolean isInPictureInPictureMode(ActivityRecord r) {
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08004132 if (r == null || r.getRootTask() == null || !r.inPinnedWindowingMode()
4133 || r.getRootTask().isInStackLocked(r) == null) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004134 return false;
4135 }
4136
4137 // If we are animating to fullscreen then we have already dispatched the PIP mode
4138 // changed, so we should reflect that check here as well.
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08004139 final ActivityStack taskStack = r.getRootTask();
Yunfan Chen279f5582018-12-12 15:24:50 -08004140 return !taskStack.isAnimatingBoundsToFullscreen();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004141 }
4142
4143 @Override
4144 public boolean enterPictureInPictureMode(IBinder token, final PictureInPictureParams params) {
4145 final long origId = Binder.clearCallingIdentity();
4146 try {
4147 synchronized (mGlobalLock) {
4148 final ActivityRecord r = ensureValidPictureInPictureActivityParamsLocked(
4149 "enterPictureInPictureMode", token, params);
4150
4151 // If the activity is already in picture in picture mode, then just return early
4152 if (isInPictureInPictureMode(r)) {
4153 return true;
4154 }
4155
4156 // Activity supports picture-in-picture, now check that we can enter PiP at this
4157 // point, if it is
4158 if (!r.checkEnterPictureInPictureState("enterPictureInPictureMode",
4159 false /* beforeStopping */)) {
4160 return false;
4161 }
4162
4163 final Runnable enterPipRunnable = () -> {
Wale Ogunwalef276a6f2018-06-15 08:26:07 -07004164 synchronized (mGlobalLock) {
Hyangseok Chaeed0624e2019-11-07 10:15:46 +09004165 if (r.getParent() == null) {
4166 Slog.e(TAG, "Skip enterPictureInPictureMode, destroyed " + r);
4167 return;
4168 }
Wale Ogunwalef276a6f2018-06-15 08:26:07 -07004169 // Only update the saved args from the args that are set
Robert Carrf6690d12020-02-04 14:16:21 -08004170 r.setPictureInPictureParams(params);
Wale Ogunwalef276a6f2018-06-15 08:26:07 -07004171 final float aspectRatio = r.pictureInPictureArgs.getAspectRatio();
4172 final List<RemoteAction> actions = r.pictureInPictureArgs.getActions();
4173 // Adjust the source bounds by the insets for the transition down
4174 final Rect sourceBounds = new Rect(
4175 r.pictureInPictureArgs.getSourceRectHint());
Louis Chang149d5c82019-12-30 09:47:39 +08004176 mRootWindowContainer.moveActivityToPinnedStack(
Wale Ogunwalef276a6f2018-06-15 08:26:07 -07004177 r, sourceBounds, aspectRatio, "enterPictureInPictureMode");
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08004178 final ActivityStack stack = r.getRootTask();
Wale Ogunwalef276a6f2018-06-15 08:26:07 -07004179 stack.setPictureInPictureAspectRatio(aspectRatio);
4180 stack.setPictureInPictureActions(actions);
Andrii Kulianeceebbf2019-06-26 17:36:51 -07004181 MetricsLoggerWrapper.logPictureInPictureEnter(mContext,
4182 r.info.applicationInfo.uid, r.shortComponentName,
4183 r.supportsEnterPipOnTaskSwitch);
Wale Ogunwalef276a6f2018-06-15 08:26:07 -07004184 logPictureInPictureArgs(params);
4185 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004186 };
4187
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004188 if (isKeyguardLocked()) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004189 // If the keyguard is showing or occluded, then try and dismiss it before
4190 // entering picture-in-picture (this will prompt the user to authenticate if the
4191 // device is currently locked).
4192 dismissKeyguard(token, new KeyguardDismissCallback() {
4193 @Override
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004194 public void onDismissSucceeded() {
4195 mH.post(enterPipRunnable);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004196 }
4197 }, null /* message */);
4198 } else {
4199 // Enter picture in picture immediately otherwise
4200 enterPipRunnable.run();
4201 }
4202 return true;
4203 }
4204 } finally {
4205 Binder.restoreCallingIdentity(origId);
4206 }
4207 }
4208
4209 @Override
4210 public void setPictureInPictureParams(IBinder token, final PictureInPictureParams params) {
4211 final long origId = Binder.clearCallingIdentity();
4212 try {
4213 synchronized (mGlobalLock) {
4214 final ActivityRecord r = ensureValidPictureInPictureActivityParamsLocked(
4215 "setPictureInPictureParams", token, params);
4216
4217 // Only update the saved args from the args that are set
Robert Carrf6690d12020-02-04 14:16:21 -08004218 r.setPictureInPictureParams(params);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004219 if (r.inPinnedWindowingMode()) {
4220 // If the activity is already in picture-in-picture, update the pinned stack now
4221 // if it is not already expanding to fullscreen. Otherwise, the arguments will
4222 // be used the next time the activity enters PiP
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08004223 final ActivityStack stack = r.getRootTask();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004224 if (!stack.isAnimatingBoundsToFullscreen()) {
4225 stack.setPictureInPictureAspectRatio(
4226 r.pictureInPictureArgs.getAspectRatio());
4227 stack.setPictureInPictureActions(r.pictureInPictureArgs.getActions());
4228 }
4229 }
4230 logPictureInPictureArgs(params);
4231 }
4232 } finally {
4233 Binder.restoreCallingIdentity(origId);
4234 }
4235 }
4236
4237 @Override
4238 public int getMaxNumPictureInPictureActions(IBinder token) {
4239 // Currently, this is a static constant, but later, we may change this to be dependent on
4240 // the context of the activity
4241 return 3;
4242 }
4243
4244 private void logPictureInPictureArgs(PictureInPictureParams params) {
4245 if (params.hasSetActions()) {
4246 MetricsLogger.histogram(mContext, "tron_varz_picture_in_picture_actions_count",
4247 params.getActions().size());
4248 }
4249 if (params.hasSetAspectRatio()) {
4250 LogMaker lm = new LogMaker(MetricsEvent.ACTION_PICTURE_IN_PICTURE_ASPECT_RATIO_CHANGED);
4251 lm.addTaggedData(MetricsEvent.PICTURE_IN_PICTURE_ASPECT_RATIO, params.getAspectRatio());
4252 MetricsLogger.action(lm);
4253 }
4254 }
4255
4256 /**
4257 * Checks the state of the system and the activity associated with the given {@param token} to
4258 * verify that picture-in-picture is supported for that activity.
4259 *
4260 * @return the activity record for the given {@param token} if all the checks pass.
4261 */
4262 private ActivityRecord ensureValidPictureInPictureActivityParamsLocked(String caller,
4263 IBinder token, PictureInPictureParams params) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004264 if (!mSupportsPictureInPicture) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004265 throw new IllegalStateException(caller
4266 + ": Device doesn't support picture-in-picture mode.");
4267 }
4268
4269 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
4270 if (r == null) {
4271 throw new IllegalStateException(caller
4272 + ": Can't find activity for token=" + token);
4273 }
4274
4275 if (!r.supportsPictureInPicture()) {
4276 throw new IllegalStateException(caller
4277 + ": Current activity does not support picture-in-picture.");
4278 }
4279
4280 if (params.hasSetAspectRatio()
Wale Ogunwale8b19de92018-11-29 19:58:26 -08004281 && !mWindowManager.isValidPictureInPictureAspectRatio(
Wale Ogunwale8f93b642019-12-26 12:10:52 -08004282 r.getDisplay(), params.getAspectRatio())) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004283 final float minAspectRatio = mContext.getResources().getFloat(
4284 com.android.internal.R.dimen.config_pictureInPictureMinAspectRatio);
4285 final float maxAspectRatio = mContext.getResources().getFloat(
4286 com.android.internal.R.dimen.config_pictureInPictureMaxAspectRatio);
4287 throw new IllegalArgumentException(String.format(caller
4288 + ": Aspect ratio is too extreme (must be between %f and %f).",
4289 minAspectRatio, maxAspectRatio));
4290 }
4291
4292 // Truncate the number of actions if necessary
4293 params.truncateActions(getMaxNumPictureInPictureActions(token));
4294
4295 return r;
4296 }
4297
4298 @Override
4299 public IBinder getUriPermissionOwnerForActivity(IBinder activityToken) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004300 enforceNotIsolatedCaller("getUriPermissionOwnerForActivity");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004301 synchronized (mGlobalLock) {
4302 ActivityRecord r = ActivityRecord.isInStackLocked(activityToken);
4303 if (r == null) {
4304 throw new IllegalArgumentException("Activity does not exist; token="
4305 + activityToken);
4306 }
Wale Ogunwale6d50dcc2018-07-21 23:00:40 -07004307 return r.getUriPermissionsLocked().getExternalToken();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004308 }
4309 }
4310
4311 @Override
4312 public void resizeDockedStack(Rect dockedBounds, Rect tempDockedTaskBounds,
4313 Rect tempDockedTaskInsetBounds,
4314 Rect tempOtherTaskBounds, Rect tempOtherTaskInsetBounds) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004315 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "resizeDockedStack()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004316 long ident = Binder.clearCallingIdentity();
4317 try {
4318 synchronized (mGlobalLock) {
4319 mStackSupervisor.resizeDockedStackLocked(dockedBounds, tempDockedTaskBounds,
4320 tempDockedTaskInsetBounds, tempOtherTaskBounds, tempOtherTaskInsetBounds,
4321 PRESERVE_WINDOWS);
4322 }
4323 } finally {
4324 Binder.restoreCallingIdentity(ident);
4325 }
4326 }
4327
4328 @Override
4329 public void setSplitScreenResizing(boolean resizing) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004330 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "setSplitScreenResizing()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004331 final long ident = Binder.clearCallingIdentity();
4332 try {
4333 synchronized (mGlobalLock) {
4334 mStackSupervisor.setSplitScreenResizing(resizing);
4335 }
4336 } finally {
4337 Binder.restoreCallingIdentity(ident);
4338 }
4339 }
4340
Evan Rosky0037e5f2019-11-05 10:26:24 -08004341 @Override
4342 public ITaskOrganizerController getTaskOrganizerController() {
4343 mAmInternal.enforceCallingPermission(MANAGE_ACTIVITY_STACKS,
4344 "getTaskOrganizerController()");
4345 return mTaskOrganizerController;
4346 }
4347
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004348 /**
4349 * Check that we have the features required for VR-related API calls, and throw an exception if
4350 * not.
4351 */
Wale Ogunwale59507092018-10-29 09:00:30 -07004352 public void enforceSystemHasVrFeature() {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004353 if (!mContext.getPackageManager().hasSystemFeature(
4354 PackageManager.FEATURE_VR_MODE_HIGH_PERFORMANCE)) {
4355 throw new UnsupportedOperationException("VR mode not supported on this device!");
4356 }
4357 }
4358
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004359 @Override
4360 public int setVrMode(IBinder token, boolean enabled, ComponentName packageName) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004361 enforceSystemHasVrFeature();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004362
4363 final VrManagerInternal vrService = LocalServices.getService(VrManagerInternal.class);
4364
4365 ActivityRecord r;
4366 synchronized (mGlobalLock) {
4367 r = ActivityRecord.isInStackLocked(token);
4368 }
4369
4370 if (r == null) {
4371 throw new IllegalArgumentException();
4372 }
4373
4374 int err;
Wale Ogunwale8b19de92018-11-29 19:58:26 -08004375 if ((err = vrService.hasVrPackage(packageName, r.mUserId)) !=
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004376 VrManagerInternal.NO_ERROR) {
4377 return err;
4378 }
4379
4380 // Clear the binder calling uid since this path may call moveToTask().
4381 final long callingId = Binder.clearCallingIdentity();
4382 try {
4383 synchronized (mGlobalLock) {
4384 r.requestedVrComponent = (enabled) ? packageName : null;
4385
4386 // Update associated state if this activity is currently focused
Andrii Kulian52d255c2018-07-13 11:32:19 -07004387 if (r.isResumedActivityOnDisplay()) {
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004388 applyUpdateVrModeLocked(r);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004389 }
4390 return 0;
4391 }
4392 } finally {
4393 Binder.restoreCallingIdentity(callingId);
4394 }
4395 }
4396
4397 @Override
4398 public void startLocalVoiceInteraction(IBinder callingActivity, Bundle options) {
4399 Slog.i(TAG, "Activity tried to startLocalVoiceInteraction");
4400 synchronized (mGlobalLock) {
Wale Ogunwale21e06482019-11-18 05:14:15 -08004401 ActivityRecord activity = getTopDisplayFocusedStack().getTopNonFinishingActivity();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004402 if (ActivityRecord.forTokenLocked(callingActivity) != activity) {
4403 throw new SecurityException("Only focused activity can call startVoiceInteraction");
4404 }
Louis Changcdec0802019-11-11 11:45:07 +08004405 if (mRunningVoice != null || activity.getTask().voiceSession != null
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004406 || activity.voiceSession != null) {
4407 Slog.w(TAG, "Already in a voice interaction, cannot start new voice interaction");
4408 return;
4409 }
4410 if (activity.pendingVoiceInteractionStart) {
4411 Slog.w(TAG, "Pending start of voice interaction already.");
4412 return;
4413 }
4414 activity.pendingVoiceInteractionStart = true;
4415 }
4416 LocalServices.getService(VoiceInteractionManagerInternal.class)
4417 .startLocalVoiceInteraction(callingActivity, options);
4418 }
4419
4420 @Override
4421 public void stopLocalVoiceInteraction(IBinder callingActivity) {
4422 LocalServices.getService(VoiceInteractionManagerInternal.class)
4423 .stopLocalVoiceInteraction(callingActivity);
4424 }
4425
4426 @Override
4427 public boolean supportsLocalVoiceInteraction() {
4428 return LocalServices.getService(VoiceInteractionManagerInternal.class)
4429 .supportsLocalVoiceInteraction();
4430 }
4431
4432 /** Notifies all listeners when the pinned stack animation starts. */
4433 @Override
4434 public void notifyPinnedStackAnimationStarted() {
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004435 mTaskChangeNotificationController.notifyPinnedStackAnimationStarted();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004436 }
4437
4438 /** Notifies all listeners when the pinned stack animation ends. */
4439 @Override
4440 public void notifyPinnedStackAnimationEnded() {
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004441 mTaskChangeNotificationController.notifyPinnedStackAnimationEnded();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004442 }
4443
4444 @Override
4445 public void resizePinnedStack(Rect pinnedBounds, Rect tempPinnedTaskBounds) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004446 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "resizePinnedStack()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004447 final long ident = Binder.clearCallingIdentity();
4448 try {
4449 synchronized (mGlobalLock) {
4450 mStackSupervisor.resizePinnedStackLocked(pinnedBounds, tempPinnedTaskBounds);
4451 }
4452 } finally {
4453 Binder.restoreCallingIdentity(ident);
4454 }
4455 }
4456
4457 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004458 public boolean updateConfiguration(Configuration values) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004459 mAmInternal.enforceCallingPermission(CHANGE_CONFIGURATION, "updateConfiguration()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004460
4461 synchronized (mGlobalLock) {
Riddle Hsua0022cd2019-09-09 21:12:41 +08004462 if (mWindowManager == null) {
4463 Slog.w(TAG, "Skip updateConfiguration because mWindowManager isn't set");
4464 return false;
4465 }
4466
4467 if (values == null) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004468 // sentinel: fetch the current configuration from the window manager
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004469 values = mWindowManager.computeNewConfiguration(DEFAULT_DISPLAY);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004470 }
4471
Riddle Hsua0022cd2019-09-09 21:12:41 +08004472 mH.sendMessage(PooledLambda.obtainMessage(
4473 ActivityManagerInternal::updateOomLevelsForDisplay, mAmInternal,
4474 DEFAULT_DISPLAY));
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004475
4476 final long origId = Binder.clearCallingIdentity();
4477 try {
4478 if (values != null) {
4479 Settings.System.clearConfiguration(values);
4480 }
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004481 updateConfigurationLocked(values, null, false, false /* persistent */,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004482 UserHandle.USER_NULL, false /* deferResume */,
4483 mTmpUpdateConfigurationResult);
4484 return mTmpUpdateConfigurationResult.changes != 0;
4485 } finally {
4486 Binder.restoreCallingIdentity(origId);
4487 }
4488 }
4489 }
4490
4491 @Override
4492 public void dismissKeyguard(IBinder token, IKeyguardDismissCallback callback,
4493 CharSequence message) {
4494 if (message != null) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004495 mAmInternal.enforceCallingPermission(
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004496 Manifest.permission.SHOW_KEYGUARD_MESSAGE, "dismissKeyguard()");
4497 }
4498 final long callingId = Binder.clearCallingIdentity();
4499 try {
4500 synchronized (mGlobalLock) {
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004501 mKeyguardController.dismissKeyguard(token, callback, message);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004502 }
4503 } finally {
4504 Binder.restoreCallingIdentity(callingId);
4505 }
4506 }
4507
4508 @Override
4509 public void cancelTaskWindowTransition(int taskId) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004510 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004511 "cancelTaskWindowTransition()");
4512 final long ident = Binder.clearCallingIdentity();
4513 try {
4514 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08004515 final Task task = mRootWindowContainer.anyTaskForId(taskId,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004516 MATCH_TASK_IN_STACKS_ONLY);
4517 if (task == null) {
4518 Slog.w(TAG, "cancelTaskWindowTransition: taskId=" + taskId + " not found");
4519 return;
4520 }
Wale Ogunwale2322bed2019-10-10 17:24:19 +02004521 task.cancelTaskWindowTransition();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004522 }
4523 } finally {
4524 Binder.restoreCallingIdentity(ident);
4525 }
4526 }
4527
4528 @Override
Peter Kalauskas4dc04602020-02-12 18:49:03 -08004529 public ActivityManager.TaskSnapshot getTaskSnapshot(int taskId, boolean isLowResolution) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004530 enforceCallerIsRecentsOrHasPermission(READ_FRAME_BUFFER, "getTaskSnapshot()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004531 final long ident = Binder.clearCallingIdentity();
4532 try {
Peter Kalauskas4dc04602020-02-12 18:49:03 -08004533 return getTaskSnapshot(taskId, isLowResolution, true /* restoreFromDisk */);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004534 } finally {
4535 Binder.restoreCallingIdentity(ident);
4536 }
4537 }
4538
Peter Kalauskas4dc04602020-02-12 18:49:03 -08004539 private ActivityManager.TaskSnapshot getTaskSnapshot(int taskId, boolean isLowResolution,
Jorim Jaggi925bb3c2019-06-04 19:51:45 +02004540 boolean restoreFromDisk) {
Louis Changcdec0802019-11-11 11:45:07 +08004541 final Task task;
Jorim Jaggi925bb3c2019-06-04 19:51:45 +02004542 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08004543 task = mRootWindowContainer.anyTaskForId(taskId,
Jorim Jaggi925bb3c2019-06-04 19:51:45 +02004544 MATCH_TASK_IN_STACKS_OR_RECENT_TASKS);
4545 if (task == null) {
4546 Slog.w(TAG, "getTaskSnapshot: taskId=" + taskId + " not found");
4547 return null;
4548 }
4549 }
4550 // Don't call this while holding the lock as this operation might hit the disk.
Peter Kalauskas4dc04602020-02-12 18:49:03 -08004551 return task.getSnapshot(isLowResolution, restoreFromDisk);
Jorim Jaggi925bb3c2019-06-04 19:51:45 +02004552 }
4553
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004554 @Override
4555 public void setDisablePreviewScreenshots(IBinder token, boolean disable) {
4556 synchronized (mGlobalLock) {
4557 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
4558 if (r == null) {
4559 Slog.w(TAG, "setDisablePreviewScreenshots: Unable to find activity for token="
4560 + token);
4561 return;
4562 }
4563 final long origId = Binder.clearCallingIdentity();
4564 try {
4565 r.setDisablePreviewScreenshots(disable);
4566 } finally {
4567 Binder.restoreCallingIdentity(origId);
4568 }
4569 }
4570 }
4571
Riddle Hsu440f88b2019-11-06 22:17:35 +08004572 @Override
4573 public void invalidateHomeTaskSnapshot(IBinder token) {
4574 synchronized (mGlobalLock) {
4575 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
4576 if (r == null || !r.isActivityTypeHome()) {
4577 return;
4578 }
4579 mWindowManager.mTaskSnapshotController.removeSnapshotCache(r.getTask().mTaskId);
4580 }
4581 }
4582
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004583 /** Return the user id of the last resumed activity. */
4584 @Override
4585 public @UserIdInt
4586 int getLastResumedActivityUserId() {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004587 mAmInternal.enforceCallingPermission(
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004588 Manifest.permission.INTERACT_ACROSS_USERS_FULL, "getLastResumedActivityUserId()");
4589 synchronized (mGlobalLock) {
Wale Ogunwalef6733932018-06-27 05:14:34 -07004590 if (mLastResumedActivity == null) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004591 return getCurrentUserId();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004592 }
Wale Ogunwale8b19de92018-11-29 19:58:26 -08004593 return mLastResumedActivity.mUserId;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004594 }
4595 }
4596
4597 @Override
4598 public void updateLockTaskFeatures(int userId, int flags) {
4599 final int callingUid = Binder.getCallingUid();
4600 if (callingUid != 0 && callingUid != SYSTEM_UID) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004601 mAmInternal.enforceCallingPermission(android.Manifest.permission.UPDATE_LOCK_TASK_PACKAGES,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004602 "updateLockTaskFeatures()");
4603 }
4604 synchronized (mGlobalLock) {
4605 if (DEBUG_LOCKTASK) Slog.w(TAG_LOCKTASK, "Allowing features " + userId + ":0x" +
4606 Integer.toHexString(flags));
Wale Ogunwaled95c06b2018-05-08 10:35:38 -07004607 getLockTaskController().updateLockTaskFeatures(userId, flags);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004608 }
4609 }
4610
4611 @Override
4612 public void setShowWhenLocked(IBinder token, boolean showWhenLocked) {
4613 synchronized (mGlobalLock) {
4614 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
4615 if (r == null) {
4616 return;
4617 }
4618 final long origId = Binder.clearCallingIdentity();
4619 try {
4620 r.setShowWhenLocked(showWhenLocked);
4621 } finally {
4622 Binder.restoreCallingIdentity(origId);
4623 }
4624 }
4625 }
4626
4627 @Override
Issei Suzuki74e1eb22018-12-20 17:42:52 +01004628 public void setInheritShowWhenLocked(IBinder token, boolean inheritShowWhenLocked) {
4629 synchronized (mGlobalLock) {
4630 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
4631 if (r == null) {
4632 return;
4633 }
4634 final long origId = Binder.clearCallingIdentity();
4635 try {
4636 r.setInheritShowWhenLocked(inheritShowWhenLocked);
4637 } finally {
4638 Binder.restoreCallingIdentity(origId);
4639 }
4640 }
4641 }
4642
4643 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004644 public void setTurnScreenOn(IBinder token, boolean turnScreenOn) {
4645 synchronized (mGlobalLock) {
4646 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
4647 if (r == null) {
4648 return;
4649 }
4650 final long origId = Binder.clearCallingIdentity();
4651 try {
4652 r.setTurnScreenOn(turnScreenOn);
4653 } finally {
4654 Binder.restoreCallingIdentity(origId);
4655 }
4656 }
4657 }
4658
4659 @Override
4660 public void registerRemoteAnimations(IBinder token, RemoteAnimationDefinition definition) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004661 mAmInternal.enforceCallingPermission(CONTROL_REMOTE_APP_TRANSITION_ANIMATIONS,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004662 "registerRemoteAnimations");
Jorim Jaggi589c5ba2019-07-30 16:50:13 +02004663 definition.setCallingPidUid(Binder.getCallingPid(), Binder.getCallingUid());
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004664 synchronized (mGlobalLock) {
4665 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
4666 if (r == null) {
4667 return;
4668 }
4669 final long origId = Binder.clearCallingIdentity();
4670 try {
4671 r.registerRemoteAnimations(definition);
4672 } finally {
4673 Binder.restoreCallingIdentity(origId);
4674 }
4675 }
4676 }
4677
4678 @Override
Winson Chung10fc25d2019-12-10 14:13:56 -08004679 public void unregisterRemoteAnimations(IBinder token) {
4680 mAmInternal.enforceCallingPermission(CONTROL_REMOTE_APP_TRANSITION_ANIMATIONS,
4681 "unregisterRemoteAnimations");
4682 synchronized (mGlobalLock) {
4683 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
4684 if (r == null) {
4685 return;
4686 }
4687 final long origId = Binder.clearCallingIdentity();
4688 try {
4689 r.unregisterRemoteAnimations();
4690 } finally {
4691 Binder.restoreCallingIdentity(origId);
4692 }
4693 }
4694 }
4695
4696 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004697 public void registerRemoteAnimationForNextActivityStart(String packageName,
4698 RemoteAnimationAdapter adapter) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004699 mAmInternal.enforceCallingPermission(CONTROL_REMOTE_APP_TRANSITION_ANIMATIONS,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004700 "registerRemoteAnimationForNextActivityStart");
Jorim Jaggi589c5ba2019-07-30 16:50:13 +02004701 adapter.setCallingPidUid(Binder.getCallingPid(), Binder.getCallingUid());
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004702 synchronized (mGlobalLock) {
4703 final long origId = Binder.clearCallingIdentity();
4704 try {
Wale Ogunwale5fa8a8c2018-05-08 13:43:21 -07004705 getActivityStartController().registerRemoteAnimationForNextActivityStart(
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004706 packageName, adapter);
4707 } finally {
4708 Binder.restoreCallingIdentity(origId);
4709 }
4710 }
4711 }
4712
Evan Rosky966759f2019-01-15 10:33:58 -08004713 @Override
4714 public void registerRemoteAnimationsForDisplay(int displayId,
4715 RemoteAnimationDefinition definition) {
4716 mAmInternal.enforceCallingPermission(CONTROL_REMOTE_APP_TRANSITION_ANIMATIONS,
4717 "registerRemoteAnimations");
Jorim Jaggi589c5ba2019-07-30 16:50:13 +02004718 definition.setCallingPidUid(Binder.getCallingPid(), Binder.getCallingUid());
Evan Rosky966759f2019-01-15 10:33:58 -08004719 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08004720 final DisplayContent display = mRootWindowContainer.getDisplayContent(displayId);
Evan Rosky966759f2019-01-15 10:33:58 -08004721 if (display == null) {
4722 Slog.e(TAG, "Couldn't find display with id: " + displayId);
4723 return;
4724 }
4725 final long origId = Binder.clearCallingIdentity();
4726 try {
4727 display.mDisplayContent.registerRemoteAnimations(definition);
4728 } finally {
4729 Binder.restoreCallingIdentity(origId);
4730 }
4731 }
4732 }
4733
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004734 /** @see android.app.ActivityManager#alwaysShowUnsupportedCompileSdkWarning */
4735 @Override
4736 public void alwaysShowUnsupportedCompileSdkWarning(ComponentName activity) {
4737 synchronized (mGlobalLock) {
4738 final long origId = Binder.clearCallingIdentity();
4739 try {
Wale Ogunwale008163e2018-07-23 23:11:08 -07004740 mAppWarnings.alwaysShowUnsupportedCompileSdkWarning(activity);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004741 } finally {
4742 Binder.restoreCallingIdentity(origId);
4743 }
4744 }
4745 }
Wale Ogunwale6767eae2018-05-03 15:52:51 -07004746
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004747 @Override
4748 public void setVrThread(int tid) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004749 enforceSystemHasVrFeature();
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004750 synchronized (mGlobalLock) {
Wale Ogunwale342fbe92018-10-09 08:44:10 -07004751 final int pid = Binder.getCallingPid();
Michal Karpinski2e0aad22019-04-12 16:22:55 +01004752 final WindowProcessController wpc = mProcessMap.getProcess(pid);
Wale Ogunwale342fbe92018-10-09 08:44:10 -07004753 mVrController.setVrThreadLocked(tid, pid, wpc);
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004754 }
4755 }
4756
4757 @Override
4758 public void setPersistentVrThread(int tid) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004759 if (checkCallingPermission(Manifest.permission.RESTRICTED_VR_ACCESS)
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004760 != PERMISSION_GRANTED) {
4761 final String msg = "Permission Denial: setPersistentVrThread() from pid="
4762 + Binder.getCallingPid()
4763 + ", uid=" + Binder.getCallingUid()
4764 + " requires " + Manifest.permission.RESTRICTED_VR_ACCESS;
4765 Slog.w(TAG, msg);
4766 throw new SecurityException(msg);
4767 }
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004768 enforceSystemHasVrFeature();
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004769 synchronized (mGlobalLock) {
Wale Ogunwale342fbe92018-10-09 08:44:10 -07004770 final int pid = Binder.getCallingPid();
Michal Karpinski2e0aad22019-04-12 16:22:55 +01004771 final WindowProcessController proc = mProcessMap.getProcess(pid);
Wale Ogunwale342fbe92018-10-09 08:44:10 -07004772 mVrController.setPersistentVrThreadLocked(tid, pid, proc);
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004773 }
4774 }
4775
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004776 @Override
4777 public void stopAppSwitches() {
4778 enforceCallerIsRecentsOrHasPermission(STOP_APP_SWITCHES, "stopAppSwitches");
4779 synchronized (mGlobalLock) {
4780 mAppSwitchesAllowedTime = SystemClock.uptimeMillis() + APP_SWITCH_DELAY_TIME;
Ricky Wai906af482019-06-03 17:25:28 +01004781 mLastStopAppSwitchesTime = SystemClock.uptimeMillis();
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004782 mDidAppSwitch = false;
4783 getActivityStartController().schedulePendingActivityLaunches(APP_SWITCH_DELAY_TIME);
4784 }
4785 }
4786
4787 @Override
4788 public void resumeAppSwitches() {
4789 enforceCallerIsRecentsOrHasPermission(STOP_APP_SWITCHES, "resumeAppSwitches");
4790 synchronized (mGlobalLock) {
4791 // Note that we don't execute any pending app switches... we will
4792 // let those wait until either the timeout, or the next start
4793 // activity request.
4794 mAppSwitchesAllowedTime = 0;
4795 }
4796 }
4797
Ricky Wai906af482019-06-03 17:25:28 +01004798 long getLastStopAppSwitchesTime() {
4799 return mLastStopAppSwitchesTime;
4800 }
4801
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004802 void onStartActivitySetDidAppSwitch() {
4803 if (mDidAppSwitch) {
4804 // This is the second allowed switch since we stopped switches, so now just generally
4805 // allow switches. Use case:
4806 // - user presses home (switches disabled, switch to home, mDidAppSwitch now true);
4807 // - user taps a home icon (coming from home so allowed, we hit here and now allow
4808 // anyone to switch again).
4809 mAppSwitchesAllowedTime = 0;
4810 } else {
4811 mDidAppSwitch = true;
4812 }
4813 }
4814
4815 /** @return whether the system should disable UI modes incompatible with VR mode. */
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004816 boolean shouldDisableNonVrUiLocked() {
4817 return mVrController.shouldDisableNonVrUiLocked();
4818 }
4819
Wale Ogunwale53783742018-09-16 10:21:51 -07004820 private void applyUpdateVrModeLocked(ActivityRecord r) {
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004821 // VR apps are expected to run in a main display. If an app is turning on VR for
Wale Ogunwaleb8e6b632019-06-28 15:19:25 +00004822 // itself, but isn't on the main display, then move it there before enabling VR Mode.
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004823 if (r.requestedVrComponent != null && r.getDisplayId() != DEFAULT_DISPLAY) {
Wale Ogunwaleb8e6b632019-06-28 15:19:25 +00004824 Slog.i(TAG, "Moving " + r.shortComponentName + " from display " + r.getDisplayId()
4825 + " to main display for VR");
Louis Chang149d5c82019-12-30 09:47:39 +08004826 mRootWindowContainer.moveStackToDisplay(
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08004827 r.getRootTaskId(), DEFAULT_DISPLAY, true /* toTop */);
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004828 }
4829 mH.post(() -> {
4830 if (!mVrController.onVrModeChanged(r)) {
4831 return;
4832 }
4833 synchronized (mGlobalLock) {
4834 final boolean disableNonVrUi = mVrController.shouldDisableNonVrUiLocked();
4835 mWindowManager.disableNonVrUi(disableNonVrUi);
4836 if (disableNonVrUi) {
4837 // If we are in a VR mode where Picture-in-Picture mode is unsupported,
4838 // then remove the pinned stack.
Louis Chang149d5c82019-12-30 09:47:39 +08004839 mRootWindowContainer.removeStacksInWindowingModes(WINDOWING_MODE_PINNED);
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004840 }
4841 }
4842 });
4843 }
4844
Wale Ogunwale53783742018-09-16 10:21:51 -07004845 @Override
4846 public int getPackageScreenCompatMode(String packageName) {
4847 enforceNotIsolatedCaller("getPackageScreenCompatMode");
4848 synchronized (mGlobalLock) {
4849 return mCompatModePackages.getPackageScreenCompatModeLocked(packageName);
4850 }
4851 }
4852
4853 @Override
4854 public void setPackageScreenCompatMode(String packageName, int mode) {
4855 mAmInternal.enforceCallingPermission(android.Manifest.permission.SET_SCREEN_COMPATIBILITY,
4856 "setPackageScreenCompatMode");
4857 synchronized (mGlobalLock) {
4858 mCompatModePackages.setPackageScreenCompatModeLocked(packageName, mode);
4859 }
4860 }
4861
4862 @Override
4863 public boolean getPackageAskScreenCompat(String packageName) {
4864 enforceNotIsolatedCaller("getPackageAskScreenCompat");
4865 synchronized (mGlobalLock) {
4866 return mCompatModePackages.getPackageAskCompatModeLocked(packageName);
4867 }
4868 }
4869
4870 @Override
4871 public void setPackageAskScreenCompat(String packageName, boolean ask) {
4872 mAmInternal.enforceCallingPermission(android.Manifest.permission.SET_SCREEN_COMPATIBILITY,
4873 "setPackageAskScreenCompat");
4874 synchronized (mGlobalLock) {
4875 mCompatModePackages.setPackageAskCompatModeLocked(packageName, ask);
4876 }
4877 }
4878
Wale Ogunwale64258362018-10-16 15:13:37 -07004879 public static String relaunchReasonToString(int relaunchReason) {
4880 switch (relaunchReason) {
4881 case RELAUNCH_REASON_WINDOWING_MODE_RESIZE:
4882 return "window_resize";
4883 case RELAUNCH_REASON_FREE_RESIZE:
4884 return "free_resize";
4885 default:
4886 return null;
4887 }
4888 }
4889
Andrii Kulian5f750bc2018-07-17 08:57:23 -07004890 ActivityStack getTopDisplayFocusedStack() {
Louis Chang149d5c82019-12-30 09:47:39 +08004891 return mRootWindowContainer.getTopDisplayFocusedStack();
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004892 }
4893
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004894 /** Pokes the task persister. */
Louis Changcdec0802019-11-11 11:45:07 +08004895 void notifyTaskPersisterLocked(Task task, boolean flush) {
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004896 mRecentTasks.notifyTaskPersisterLocked(task, flush);
4897 }
4898
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004899 boolean isKeyguardLocked() {
4900 return mKeyguardController.isKeyguardLocked();
4901 }
4902
Garfield Tan01548632018-11-27 10:15:48 -08004903 /**
4904 * Clears launch params for the given package.
4905 * @param packageNames the names of the packages of which the launch params are to be cleared
4906 */
4907 @Override
4908 public void clearLaunchParamsForPackages(List<String> packageNames) {
4909 mAmInternal.enforceCallingPermission(Manifest.permission.MANAGE_ACTIVITY_STACKS,
4910 "clearLaunchParamsForPackages");
4911 synchronized (mGlobalLock) {
4912 for (int i = 0; i < packageNames.size(); ++i) {
4913 mStackSupervisor.mLaunchParamsPersister.removeRecordForPackage(packageNames.get(i));
4914 }
4915 }
4916 }
4917
Wale Ogunwale9e737db2018-12-17 15:42:37 -08004918 /**
4919 * Makes the display with the given id a single task instance display. I.e the display can only
4920 * contain one task.
4921 */
4922 @Override
4923 public void setDisplayToSingleTaskInstance(int displayId) {
4924 mAmInternal.enforceCallingPermission(Manifest.permission.MANAGE_ACTIVITY_STACKS,
4925 "setDisplayToSingleTaskInstance");
4926 final long origId = Binder.clearCallingIdentity();
4927 try {
Louis Chang677921f2019-12-06 16:44:24 +08004928 final DisplayContent display =
Louis Chang149d5c82019-12-30 09:47:39 +08004929 mRootWindowContainer.getDisplayContentOrCreate(displayId);
Wale Ogunwale9e737db2018-12-17 15:42:37 -08004930 if (display != null) {
4931 display.setDisplayToSingleTaskInstance();
4932 }
4933 } finally {
4934 Binder.restoreCallingIdentity(origId);
4935 }
4936 }
4937
jorgegil@google.com06bc3232019-10-31 14:51:22 -07004938 /**
4939 * Requests that an activity should enter picture-in-picture mode if possible.
4940 */
4941 @Override
4942 public void requestPictureInPictureMode(IBinder token) throws RemoteException {
4943 mAmInternal.enforceCallingPermission(Manifest.permission.MANAGE_ACTIVITY_STACKS,
4944 "requestPictureInPictureMode");
4945 final long origId = Binder.clearCallingIdentity();
4946 try {
4947 synchronized (mGlobalLock) {
4948 final ActivityRecord activity = ActivityRecord.forTokenLocked(token);
4949 if (activity == null) {
4950 return;
4951 }
4952
4953 final boolean canEnterPictureInPicture = activity.checkEnterPictureInPictureState(
4954 "requestPictureInPictureMode", /* beforeStopping */ false);
4955 if (!canEnterPictureInPicture) {
4956 throw new IllegalStateException(
4957 "Requested PIP on an activity that doesn't support it");
4958 }
4959
4960 try {
4961 final ClientTransaction transaction = ClientTransaction.obtain(
4962 activity.app.getThread(),
4963 activity.token);
4964 transaction.addCallback(EnterPipRequestedItem.obtain());
4965 getLifecycleManager().scheduleTransaction(transaction);
4966 } catch (Exception e) {
4967 Slog.w(TAG, "Failed to send enter pip requested item: "
4968 + activity.intent.getComponent(), e);
4969 }
4970 }
4971 } finally {
4972 Binder.restoreCallingIdentity(origId);
4973 }
4974 }
4975
Wale Ogunwale31913b52018-10-13 08:29:31 -07004976 void dumpLastANRLocked(PrintWriter pw) {
4977 pw.println("ACTIVITY MANAGER LAST ANR (dumpsys activity lastanr)");
4978 if (mLastANRState == null) {
4979 pw.println(" <no ANR has occurred since boot>");
4980 } else {
4981 pw.println(mLastANRState);
4982 }
4983 }
4984
4985 void dumpLastANRTracesLocked(PrintWriter pw) {
4986 pw.println("ACTIVITY MANAGER LAST ANR TRACES (dumpsys activity lastanr-traces)");
4987
4988 final File[] files = new File(ANR_TRACE_DIR).listFiles();
4989 if (ArrayUtils.isEmpty(files)) {
4990 pw.println(" <no ANR has occurred since boot>");
4991 return;
4992 }
4993 // Find the latest file.
4994 File latest = null;
4995 for (File f : files) {
4996 if ((latest == null) || (latest.lastModified() < f.lastModified())) {
4997 latest = f;
Wale Ogunwalef6733932018-06-27 05:14:34 -07004998 }
Wale Ogunwale31913b52018-10-13 08:29:31 -07004999 }
5000 pw.print("File: ");
5001 pw.print(latest.getName());
5002 pw.println();
5003 try (BufferedReader in = new BufferedReader(new FileReader(latest))) {
5004 String line;
5005 while ((line = in.readLine()) != null) {
5006 pw.println(line);
5007 }
5008 } catch (IOException e) {
5009 pw.print("Unable to read: ");
5010 pw.print(e);
5011 pw.println();
5012 }
5013 }
5014
5015 void dumpActivitiesLocked(FileDescriptor fd, PrintWriter pw, String[] args,
5016 int opti, boolean dumpAll, boolean dumpClient, String dumpPackage) {
5017 dumpActivitiesLocked(fd, pw, args, opti, dumpAll, dumpClient, dumpPackage,
5018 "ACTIVITY MANAGER ACTIVITIES (dumpsys activity activities)");
5019 }
5020
5021 void dumpActivitiesLocked(FileDescriptor fd, PrintWriter pw, String[] args,
5022 int opti, boolean dumpAll, boolean dumpClient, String dumpPackage, String header) {
5023 pw.println(header);
5024
Louis Chang149d5c82019-12-30 09:47:39 +08005025 boolean printedAnything = mRootWindowContainer.dumpActivities(fd, pw, dumpAll, dumpClient,
Wale Ogunwale31913b52018-10-13 08:29:31 -07005026 dumpPackage);
5027 boolean needSep = printedAnything;
5028
5029 boolean printed = ActivityStackSupervisor.printThisActivity(pw,
Louis Chang149d5c82019-12-30 09:47:39 +08005030 mRootWindowContainer.getTopResumedActivity(), dumpPackage, needSep,
Wale Ogunwale31913b52018-10-13 08:29:31 -07005031 " ResumedActivity: ");
5032 if (printed) {
5033 printedAnything = true;
5034 needSep = false;
5035 }
5036
5037 if (dumpPackage == null) {
5038 if (needSep) {
5039 pw.println();
5040 }
5041 printedAnything = true;
5042 mStackSupervisor.dump(pw, " ");
5043 }
5044
5045 if (!printedAnything) {
5046 pw.println(" (nothing)");
5047 }
5048 }
5049
5050 void dumpActivityContainersLocked(PrintWriter pw) {
Jeff Changde322732019-07-12 12:16:23 +08005051 pw.println("ACTIVITY MANAGER CONTAINERS (dumpsys activity containers)");
Louis Chang149d5c82019-12-30 09:47:39 +08005052 mRootWindowContainer.dumpChildrenNames(pw, " ");
Wale Ogunwale31913b52018-10-13 08:29:31 -07005053 pw.println(" ");
5054 }
5055
5056 void dumpActivityStarterLocked(PrintWriter pw, String dumpPackage) {
5057 pw.println("ACTIVITY MANAGER STARTER (dumpsys activity starter)");
5058 getActivityStartController().dump(pw, "", dumpPackage);
5059 }
5060
5061 /**
5062 * There are three things that cmd can be:
5063 * - a flattened component name that matches an existing activity
5064 * - the cmd arg isn't the flattened component name of an existing activity:
5065 * dump all activity whose component contains the cmd as a substring
5066 * - A hex number of the ActivityRecord object instance.
Riddle Hsud7cd8ed2019-07-16 18:19:01 +08005067 * <p>
5068 * The caller should not hold lock when calling this method because it will wait for the
5069 * activities to complete the dump.
Wale Ogunwale31913b52018-10-13 08:29:31 -07005070 *
5071 * @param dumpVisibleStacksOnly dump activity with {@param name} only if in a visible stack
5072 * @param dumpFocusedStackOnly dump activity with {@param name} only if in the focused stack
5073 */
5074 protected boolean dumpActivity(FileDescriptor fd, PrintWriter pw, String name, String[] args,
5075 int opti, boolean dumpAll, boolean dumpVisibleStacksOnly, boolean dumpFocusedStackOnly) {
5076 ArrayList<ActivityRecord> activities;
5077
5078 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08005079 activities = mRootWindowContainer.getDumpActivities(name, dumpVisibleStacksOnly,
Wale Ogunwale31913b52018-10-13 08:29:31 -07005080 dumpFocusedStackOnly);
5081 }
5082
5083 if (activities.size() <= 0) {
5084 return false;
5085 }
5086
5087 String[] newArgs = new String[args.length - opti];
5088 System.arraycopy(args, opti, newArgs, 0, args.length - opti);
5089
Louis Changcdec0802019-11-11 11:45:07 +08005090 Task lastTask = null;
Wale Ogunwale31913b52018-10-13 08:29:31 -07005091 boolean needSep = false;
5092 for (int i = activities.size() - 1; i >= 0; i--) {
5093 ActivityRecord r = activities.get(i);
5094 if (needSep) {
5095 pw.println();
5096 }
5097 needSep = true;
5098 synchronized (mGlobalLock) {
Louis Changcdec0802019-11-11 11:45:07 +08005099 final Task task = r.getTask();
Wale Ogunwale31913b52018-10-13 08:29:31 -07005100 if (lastTask != task) {
5101 lastTask = task;
5102 pw.print("TASK "); pw.print(lastTask.affinity);
Wale Ogunwale4e79a1c2019-10-05 20:52:40 -07005103 pw.print(" id="); pw.print(lastTask.mTaskId);
5104 pw.print(" userId="); pw.println(lastTask.mUserId);
Wale Ogunwale31913b52018-10-13 08:29:31 -07005105 if (dumpAll) {
5106 lastTask.dump(pw, " ");
5107 }
5108 }
5109 }
5110 dumpActivity(" ", fd, pw, activities.get(i), newArgs, dumpAll);
5111 }
5112 return true;
5113 }
5114
5115 /**
5116 * Invokes IApplicationThread.dumpActivity() on the thread of the specified activity if
5117 * there is a thread associated with the activity.
5118 */
5119 private void dumpActivity(String prefix, FileDescriptor fd, PrintWriter pw,
5120 final ActivityRecord r, String[] args, boolean dumpAll) {
5121 String innerPrefix = prefix + " ";
Riddle Hsud7cd8ed2019-07-16 18:19:01 +08005122 IApplicationThread appThread = null;
Wale Ogunwale31913b52018-10-13 08:29:31 -07005123 synchronized (mGlobalLock) {
5124 pw.print(prefix); pw.print("ACTIVITY "); pw.print(r.shortComponentName);
5125 pw.print(" "); pw.print(Integer.toHexString(System.identityHashCode(r)));
5126 pw.print(" pid=");
Riddle Hsud7cd8ed2019-07-16 18:19:01 +08005127 if (r.hasProcess()) {
5128 pw.println(r.app.getPid());
5129 appThread = r.app.getThread();
5130 } else {
5131 pw.println("(not running)");
5132 }
Wale Ogunwale31913b52018-10-13 08:29:31 -07005133 if (dumpAll) {
Garfield Tane8d84ab2019-10-11 09:49:40 -07005134 r.dump(pw, innerPrefix, true /* dumpAll */);
Wale Ogunwale31913b52018-10-13 08:29:31 -07005135 }
5136 }
Riddle Hsud7cd8ed2019-07-16 18:19:01 +08005137 if (appThread != null) {
Wale Ogunwale31913b52018-10-13 08:29:31 -07005138 // flush anything that is already in the PrintWriter since the thread is going
5139 // to write to the file descriptor directly
5140 pw.flush();
Riddle Hsud7cd8ed2019-07-16 18:19:01 +08005141 try (TransferPipe tp = new TransferPipe()) {
5142 appThread.dumpActivity(tp.getWriteFd(), r.appToken, innerPrefix, args);
5143 tp.go(fd);
Wale Ogunwale31913b52018-10-13 08:29:31 -07005144 } catch (IOException e) {
5145 pw.println(innerPrefix + "Failure while dumping the activity: " + e);
5146 } catch (RemoteException e) {
5147 pw.println(innerPrefix + "Got a RemoteException while dumping the activity");
5148 }
Wale Ogunwalef6733932018-06-27 05:14:34 -07005149 }
Wale Ogunwaled0412b32018-05-08 09:25:50 -07005150 }
5151
sanryhuang498e77e2018-12-06 14:57:01 +08005152 private void writeSleepStateToProto(ProtoOutputStream proto, int wakeFullness,
5153 boolean testPssMode) {
5154 final long sleepToken = proto.start(ActivityManagerServiceDumpProcessesProto.SLEEP_STATUS);
5155 proto.write(ActivityManagerServiceDumpProcessesProto.SleepStatus.WAKEFULNESS,
5156 PowerManagerInternal.wakefulnessToProtoEnum(wakeFullness));
Louis Chang149d5c82019-12-30 09:47:39 +08005157 for (ActivityTaskManagerInternal.SleepToken st : mRootWindowContainer.mSleepTokens) {
Wale Ogunwalef6733932018-06-27 05:14:34 -07005158 proto.write(ActivityManagerServiceDumpProcessesProto.SleepStatus.SLEEP_TOKENS,
5159 st.toString());
5160 }
Wale Ogunwalef6733932018-06-27 05:14:34 -07005161 proto.write(ActivityManagerServiceDumpProcessesProto.SleepStatus.SLEEPING, mSleeping);
5162 proto.write(ActivityManagerServiceDumpProcessesProto.SleepStatus.SHUTTING_DOWN,
5163 mShuttingDown);
sanryhuang498e77e2018-12-06 14:57:01 +08005164 proto.write(ActivityManagerServiceDumpProcessesProto.SleepStatus.TEST_PSS_MODE,
5165 testPssMode);
5166 proto.end(sleepToken);
Wale Ogunwaled0412b32018-05-08 09:25:50 -07005167 }
5168
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005169 int getCurrentUserId() {
5170 return mAmInternal.getCurrentUserId();
5171 }
5172
5173 private void enforceNotIsolatedCaller(String caller) {
5174 if (UserHandle.isIsolated(Binder.getCallingUid())) {
5175 throw new SecurityException("Isolated process not allowed to call " + caller);
5176 }
5177 }
5178
Wale Ogunwalef6733932018-06-27 05:14:34 -07005179 public Configuration getConfiguration() {
5180 Configuration ci;
5181 synchronized(mGlobalLock) {
Yunfan Chen75157d72018-07-27 14:47:21 +09005182 ci = new Configuration(getGlobalConfigurationForCallingPid());
Wale Ogunwalef6733932018-06-27 05:14:34 -07005183 ci.userSetLocale = false;
5184 }
5185 return ci;
5186 }
5187
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005188 /**
5189 * Current global configuration information. Contains general settings for the entire system,
5190 * also corresponds to the merged configuration of the default display.
5191 */
5192 Configuration getGlobalConfiguration() {
Louis Chang149d5c82019-12-30 09:47:39 +08005193 // Return default configuration before mRootWindowContainer initialized, which happens
Louis Chang3ff72a82019-12-17 12:12:59 +08005194 // while initializing process record for system, see {@link
5195 // ActivityManagerService#setSystemProcess}.
Louis Chang149d5c82019-12-30 09:47:39 +08005196 return mRootWindowContainer != null ? mRootWindowContainer.getConfiguration()
Louis Chang3ff72a82019-12-17 12:12:59 +08005197 : new Configuration();
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005198 }
5199
5200 boolean updateConfigurationLocked(Configuration values, ActivityRecord starting,
5201 boolean initLocale) {
5202 return updateConfigurationLocked(values, starting, initLocale, false /* deferResume */);
5203 }
5204
5205 boolean updateConfigurationLocked(Configuration values, ActivityRecord starting,
5206 boolean initLocale, boolean deferResume) {
5207 // pass UserHandle.USER_NULL as userId because we don't persist configuration for any user
5208 return updateConfigurationLocked(values, starting, initLocale, false /* persistent */,
5209 UserHandle.USER_NULL, deferResume);
5210 }
5211
Wale Ogunwale59507092018-10-29 09:00:30 -07005212 public void updatePersistentConfiguration(Configuration values, @UserIdInt int userId) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005213 final long origId = Binder.clearCallingIdentity();
5214 try {
5215 synchronized (mGlobalLock) {
5216 updateConfigurationLocked(values, null, false, true, userId,
5217 false /* deferResume */);
5218 }
5219 } finally {
5220 Binder.restoreCallingIdentity(origId);
5221 }
5222 }
5223
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005224 private boolean updateConfigurationLocked(Configuration values, ActivityRecord starting,
5225 boolean initLocale, boolean persistent, int userId, boolean deferResume) {
5226 return updateConfigurationLocked(values, starting, initLocale, persistent, userId,
5227 deferResume, null /* result */);
5228 }
5229
5230 /**
5231 * Do either or both things: (1) change the current configuration, and (2)
5232 * make sure the given activity is running with the (now) current
5233 * configuration. Returns true if the activity has been left running, or
5234 * false if <var>starting</var> is being destroyed to match the new
5235 * configuration.
5236 *
5237 * @param userId is only used when persistent parameter is set to true to persist configuration
5238 * for that particular user
5239 */
5240 boolean updateConfigurationLocked(Configuration values, ActivityRecord starting,
5241 boolean initLocale, boolean persistent, int userId, boolean deferResume,
5242 ActivityTaskManagerService.UpdateConfigurationResult result) {
5243 int changes = 0;
5244 boolean kept = true;
5245
Riddle Hsua0022cd2019-09-09 21:12:41 +08005246 deferWindowLayout();
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005247 try {
5248 if (values != null) {
5249 changes = updateGlobalConfigurationLocked(values, initLocale, persistent, userId,
5250 deferResume);
5251 }
5252
5253 kept = ensureConfigAndVisibilityAfterUpdate(starting, changes);
5254 } finally {
Riddle Hsua0022cd2019-09-09 21:12:41 +08005255 continueWindowLayout();
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005256 }
5257
5258 if (result != null) {
5259 result.changes = changes;
5260 result.activityRelaunched = !kept;
5261 }
5262 return kept;
5263 }
5264
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005265 /** Update default (global) configuration and notify listeners about changes. */
Shivam Agrawal1d3db652019-07-01 15:26:11 -07005266 int updateGlobalConfigurationLocked(@NonNull Configuration values, boolean initLocale,
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005267 boolean persistent, int userId, boolean deferResume) {
Shivam Agrawal1d3db652019-07-01 15:26:11 -07005268
Louis Chang677921f2019-12-06 16:44:24 +08005269 final DisplayContent defaultDisplay =
Louis Chang149d5c82019-12-30 09:47:39 +08005270 mRootWindowContainer.getDisplayContent(DEFAULT_DISPLAY);
Shivam Agrawal1d3db652019-07-01 15:26:11 -07005271
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005272 mTempConfig.setTo(getGlobalConfiguration());
5273 final int changes = mTempConfig.updateFrom(values);
5274 if (changes == 0) {
5275 // Since calling to Activity.setRequestedOrientation leads to freezing the window with
5276 // setting WindowManagerService.mWaitingForConfig to true, it is important that we call
5277 // performDisplayOverrideConfigUpdate in order to send the new display configuration
5278 // (even if there are no actual changes) to unfreeze the window.
Shivam Agrawal1d3db652019-07-01 15:26:11 -07005279 defaultDisplay.performDisplayOverrideConfigUpdate(values, deferResume);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005280 return 0;
5281 }
5282
5283 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.i(TAG_CONFIGURATION,
5284 "Updating global configuration to: " + values);
Jeff Changd136e772019-11-05 20:33:52 +08005285 writeConfigurationChanged(changes);
Muhammad Qureshi759f92f2020-01-28 10:41:55 -08005286 FrameworkStatsLog.write(FrameworkStatsLog.RESOURCE_CONFIGURATION_CHANGED,
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005287 values.colorMode,
5288 values.densityDpi,
5289 values.fontScale,
5290 values.hardKeyboardHidden,
5291 values.keyboard,
5292 values.keyboardHidden,
5293 values.mcc,
5294 values.mnc,
5295 values.navigation,
5296 values.navigationHidden,
5297 values.orientation,
5298 values.screenHeightDp,
5299 values.screenLayout,
5300 values.screenWidthDp,
5301 values.smallestScreenWidthDp,
5302 values.touchscreen,
5303 values.uiMode);
5304
5305
5306 if (!initLocale && !values.getLocales().isEmpty() && values.userSetLocale) {
5307 final LocaleList locales = values.getLocales();
5308 int bestLocaleIndex = 0;
5309 if (locales.size() > 1) {
5310 if (mSupportedSystemLocales == null) {
5311 mSupportedSystemLocales = Resources.getSystem().getAssets().getLocales();
5312 }
5313 bestLocaleIndex = Math.max(0, locales.getFirstMatchIndex(mSupportedSystemLocales));
5314 }
5315 SystemProperties.set("persist.sys.locale",
5316 locales.get(bestLocaleIndex).toLanguageTag());
5317 LocaleList.setDefault(locales, bestLocaleIndex);
Wale Ogunwale342fbe92018-10-09 08:44:10 -07005318
5319 final Message m = PooledLambda.obtainMessage(
5320 ActivityTaskManagerService::sendLocaleToMountDaemonMsg, this,
5321 locales.get(bestLocaleIndex));
5322 mH.sendMessage(m);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005323 }
5324
Yunfan Chen75157d72018-07-27 14:47:21 +09005325 mTempConfig.seq = increaseConfigurationSeqLocked();
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005326
5327 // Update stored global config and notify everyone about the change.
Louis Chang149d5c82019-12-30 09:47:39 +08005328 mRootWindowContainer.onConfigurationChanged(mTempConfig);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005329
5330 Slog.i(TAG, "Config changes=" + Integer.toHexString(changes) + " " + mTempConfig);
5331 // TODO(multi-display): Update UsageEvents#Event to include displayId.
Wale Ogunwale342fbe92018-10-09 08:44:10 -07005332 mUsageStatsInternal.reportConfigurationChange(mTempConfig, mAmInternal.getCurrentUserId());
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005333
5334 // TODO: If our config changes, should we auto dismiss any currently showing dialogs?
Wale Ogunwalef6733932018-06-27 05:14:34 -07005335 updateShouldShowDialogsLocked(mTempConfig);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005336
5337 AttributeCache ac = AttributeCache.instance();
5338 if (ac != null) {
5339 ac.updateConfiguration(mTempConfig);
5340 }
5341
5342 // Make sure all resources in our process are updated right now, so that anyone who is going
5343 // to retrieve resource values after we return will be sure to get the new ones. This is
5344 // especially important during boot, where the first config change needs to guarantee all
5345 // resources have that config before following boot code is executed.
Wale Ogunwale342fbe92018-10-09 08:44:10 -07005346 mSystemThread.applyConfigurationToResources(mTempConfig);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005347
5348 // We need another copy of global config because we're scheduling some calls instead of
5349 // running them in place. We need to be sure that object we send will be handled unchanged.
5350 final Configuration configCopy = new Configuration(mTempConfig);
5351 if (persistent && Settings.System.hasInterestingConfigurationChanges(changes)) {
Wale Ogunwale342fbe92018-10-09 08:44:10 -07005352 final Message msg = PooledLambda.obtainMessage(
5353 ActivityTaskManagerService::sendPutConfigurationForUserMsg,
5354 this, userId, configCopy);
5355 mH.sendMessage(msg);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005356 }
5357
Michal Karpinski2e0aad22019-04-12 16:22:55 +01005358 SparseArray<WindowProcessController> pidMap = mProcessMap.getPidMap();
5359 for (int i = pidMap.size() - 1; i >= 0; i--) {
5360 final int pid = pidMap.keyAt(i);
5361 final WindowProcessController app = pidMap.get(pid);
Yunfan Chen34fcc7a2018-10-11 16:26:09 -07005362 if (DEBUG_CONFIGURATION) {
5363 Slog.v(TAG_CONFIGURATION, "Update process config of "
5364 + app.mName + " to new config " + configCopy);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005365 }
Yunfan Chen34fcc7a2018-10-11 16:26:09 -07005366 app.onConfigurationChanged(configCopy);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005367 }
5368
Wale Ogunwale2ea36d42018-10-18 10:27:31 -07005369 final Message msg = PooledLambda.obtainMessage(
5370 ActivityManagerInternal::broadcastGlobalConfigurationChanged,
5371 mAmInternal, changes, initLocale);
5372 mH.sendMessage(msg);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005373
5374 // Override configuration of the default display duplicates global config, so we need to
5375 // update it also. This will also notify WindowManager about changes.
Louis Chang149d5c82019-12-30 09:47:39 +08005376 defaultDisplay.performDisplayOverrideConfigUpdate(mRootWindowContainer.getConfiguration(),
Shivam Agrawal1d3db652019-07-01 15:26:11 -07005377 deferResume);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005378
5379 return changes;
5380 }
5381
Riddle Hsua0022cd2019-09-09 21:12:41 +08005382 /** @see WindowSurfacePlacer#deferLayout */
5383 void deferWindowLayout() {
5384 if (!mWindowManager.mWindowPlacerLocked.isLayoutDeferred()) {
5385 // Reset the reasons at the first entrance because we only care about the changes in the
5386 // deferred scope.
5387 mLayoutReasons = 0;
5388 }
5389
5390 mWindowManager.mWindowPlacerLocked.deferLayout();
5391 }
5392
5393 /** @see WindowSurfacePlacer#continueLayout */
5394 void continueWindowLayout() {
5395 mWindowManager.mWindowPlacerLocked.continueLayout(mLayoutReasons != 0);
5396 if (DEBUG_ALL && !mWindowManager.mWindowPlacerLocked.isLayoutDeferred()) {
5397 Slog.i(TAG, "continueWindowLayout reason=" + mLayoutReasons);
5398 }
5399 }
5400
5401 /**
5402 * If a reason is added between {@link #deferWindowLayout} and {@link #continueWindowLayout},
5403 * it will make sure {@link WindowSurfacePlacer#performSurfacePlacement} is called when the last
5404 * defer count is gone.
5405 */
5406 void addWindowLayoutReasons(@LayoutReason int reasons) {
5407 mLayoutReasons |= reasons;
5408 }
5409
Wale Ogunwalef6733932018-06-27 05:14:34 -07005410 private void updateEventDispatchingLocked(boolean booted) {
5411 mWindowManager.setEventDispatching(booted && !mShuttingDown);
5412 }
5413
Wale Ogunwale342fbe92018-10-09 08:44:10 -07005414 private void sendPutConfigurationForUserMsg(int userId, Configuration config) {
5415 final ContentResolver resolver = mContext.getContentResolver();
5416 Settings.System.putConfigurationForUser(resolver, config, userId);
5417 }
5418
5419 private void sendLocaleToMountDaemonMsg(Locale l) {
5420 try {
5421 IBinder service = ServiceManager.getService("mount");
5422 IStorageManager storageManager = IStorageManager.Stub.asInterface(service);
5423 Log.d(TAG, "Storing locale " + l.toLanguageTag() + " for decryption UI");
5424 storageManager.setField(StorageManager.SYSTEM_LOCALE_KEY, l.toLanguageTag());
5425 } catch (RemoteException e) {
5426 Log.e(TAG, "Error storing locale for decryption UI", e);
5427 }
5428 }
5429
Alison Cichowlas3e340502018-08-07 17:15:01 -04005430 private void expireStartAsCallerTokenMsg(IBinder permissionToken) {
5431 mStartActivitySources.remove(permissionToken);
5432 mExpiredStartAsCallerTokens.add(permissionToken);
5433 }
5434
5435 private void forgetStartAsCallerTokenMsg(IBinder permissionToken) {
5436 mExpiredStartAsCallerTokens.remove(permissionToken);
5437 }
5438
Wale Ogunwale342fbe92018-10-09 08:44:10 -07005439 boolean isActivityStartsLoggingEnabled() {
5440 return mAmInternal.isActivityStartsLoggingEnabled();
5441 }
5442
Michal Karpinski8596ded2018-11-14 14:43:48 +00005443 boolean isBackgroundActivityStartsEnabled() {
5444 return mAmInternal.isBackgroundActivityStartsEnabled();
5445 }
5446
Wale Ogunwalef6733932018-06-27 05:14:34 -07005447 void enableScreenAfterBoot(boolean booted) {
Jeff Changd136e772019-11-05 20:33:52 +08005448 writeBootProgressEnableScreen(SystemClock.uptimeMillis());
Wale Ogunwalef6733932018-06-27 05:14:34 -07005449 mWindowManager.enableScreenAfterBoot();
5450
5451 synchronized (mGlobalLock) {
5452 updateEventDispatchingLocked(booted);
5453 }
5454 }
5455
Wale Ogunwale906f9c62018-07-23 11:23:44 -07005456 static long getInputDispatchingTimeoutLocked(ActivityRecord r) {
5457 if (r == null || !r.hasProcess()) {
5458 return KEY_DISPATCHING_TIMEOUT_MS;
5459 }
5460 return getInputDispatchingTimeoutLocked(r.app);
5461 }
5462
5463 private static long getInputDispatchingTimeoutLocked(WindowProcessController r) {
Wale Ogunwale51cc98a2018-10-15 10:41:05 -07005464 return r != null ? r.getInputDispatchingTimeout() : KEY_DISPATCHING_TIMEOUT_MS;
Wale Ogunwale906f9c62018-07-23 11:23:44 -07005465 }
5466
Wale Ogunwalef6733932018-06-27 05:14:34 -07005467 /**
5468 * Decide based on the configuration whether we should show the ANR,
5469 * crash, etc dialogs. The idea is that if there is no affordance to
5470 * press the on-screen buttons, or the user experience would be more
5471 * greatly impacted than the crash itself, we shouldn't show the dialog.
5472 *
5473 * A thought: SystemUI might also want to get told about this, the Power
5474 * dialog / global actions also might want different behaviors.
5475 */
5476 private void updateShouldShowDialogsLocked(Configuration config) {
5477 final boolean inputMethodExists = !(config.keyboard == Configuration.KEYBOARD_NOKEYS
5478 && config.touchscreen == Configuration.TOUCHSCREEN_NOTOUCH
5479 && config.navigation == Configuration.NAVIGATION_NONAV);
5480 int modeType = config.uiMode & Configuration.UI_MODE_TYPE_MASK;
5481 final boolean uiModeSupportsDialogs = (modeType != Configuration.UI_MODE_TYPE_CAR
5482 && !(modeType == Configuration.UI_MODE_TYPE_WATCH && Build.IS_USER)
5483 && modeType != Configuration.UI_MODE_TYPE_TELEVISION
5484 && modeType != Configuration.UI_MODE_TYPE_VR_HEADSET);
5485 final boolean hideDialogsSet = Settings.Global.getInt(mContext.getContentResolver(),
5486 HIDE_ERROR_DIALOGS, 0) != 0;
5487 mShowDialogs = inputMethodExists && uiModeSupportsDialogs && !hideDialogsSet;
5488 }
5489
5490 private void updateFontScaleIfNeeded(@UserIdInt int userId) {
5491 final float scaleFactor = Settings.System.getFloatForUser(mContext.getContentResolver(),
5492 FONT_SCALE, 1.0f, userId);
5493
Riddle Hsu8419e4b2019-09-18 23:28:01 +08005494 synchronized (mGlobalLock) {
Wale Ogunwalef6733932018-06-27 05:14:34 -07005495 if (getGlobalConfiguration().fontScale == scaleFactor) {
5496 return;
5497 }
5498
5499 final Configuration configuration
5500 = mWindowManager.computeNewConfiguration(DEFAULT_DISPLAY);
5501 configuration.fontScale = scaleFactor;
5502 updatePersistentConfiguration(configuration, userId);
5503 }
5504 }
5505
5506 // Actually is sleeping or shutting down or whatever else in the future
5507 // is an inactive state.
5508 boolean isSleepingOrShuttingDownLocked() {
5509 return isSleepingLocked() || mShuttingDown;
5510 }
5511
5512 boolean isSleepingLocked() {
5513 return mSleeping;
5514 }
5515
Riddle Hsu16567132018-08-16 21:37:47 +08005516 /** Update AMS states when an activity is resumed. */
Wale Ogunwalef6733932018-06-27 05:14:34 -07005517 void setResumedActivityUncheckLocked(ActivityRecord r, String reason) {
Louis Changcdec0802019-11-11 11:45:07 +08005518 final Task task = r.getTask();
Wale Ogunwalef6733932018-06-27 05:14:34 -07005519 if (task.isActivityTypeStandard()) {
5520 if (mCurAppTimeTracker != r.appTimeTracker) {
5521 // We are switching app tracking. Complete the current one.
5522 if (mCurAppTimeTracker != null) {
5523 mCurAppTimeTracker.stop();
5524 mH.obtainMessage(
5525 REPORT_TIME_TRACKER_MSG, mCurAppTimeTracker).sendToTarget();
Louis Chang149d5c82019-12-30 09:47:39 +08005526 mRootWindowContainer.clearOtherAppTimeTrackers(r.appTimeTracker);
Wale Ogunwalef6733932018-06-27 05:14:34 -07005527 mCurAppTimeTracker = null;
5528 }
5529 if (r.appTimeTracker != null) {
5530 mCurAppTimeTracker = r.appTimeTracker;
5531 startTimeTrackingFocusedActivityLocked();
5532 }
5533 } else {
5534 startTimeTrackingFocusedActivityLocked();
5535 }
5536 } else {
5537 r.appTimeTracker = null;
5538 }
5539 // TODO: VI Maybe r.task.voiceInteractor || r.voiceInteractor != null
5540 // TODO: Probably not, because we don't want to resume voice on switching
5541 // back to this activity
5542 if (task.voiceInteractor != null) {
5543 startRunningVoiceLocked(task.voiceSession, r.info.applicationInfo.uid);
5544 } else {
5545 finishRunningVoiceLocked();
5546
5547 if (mLastResumedActivity != null) {
5548 final IVoiceInteractionSession session;
5549
Louis Changcdec0802019-11-11 11:45:07 +08005550 final Task lastResumedActivityTask = mLastResumedActivity.getTask();
Wale Ogunwalef6733932018-06-27 05:14:34 -07005551 if (lastResumedActivityTask != null
5552 && lastResumedActivityTask.voiceSession != null) {
5553 session = lastResumedActivityTask.voiceSession;
5554 } else {
5555 session = mLastResumedActivity.voiceSession;
5556 }
5557
5558 if (session != null) {
5559 // We had been in a voice interaction session, but now focused has
5560 // move to something different. Just finish the session, we can't
5561 // return to it and retain the proper state and synchronization with
5562 // the voice interaction service.
5563 finishVoiceTask(session);
5564 }
5565 }
5566 }
5567
Wale Ogunwale8b19de92018-11-29 19:58:26 -08005568 if (mLastResumedActivity != null && r.mUserId != mLastResumedActivity.mUserId) {
5569 mAmInternal.sendForegroundProfileChanged(r.mUserId);
Wale Ogunwalef6733932018-06-27 05:14:34 -07005570 }
Bogyun Sonbfb64dc2019-12-09 17:50:24 +09005571 final Task prevTask = mLastResumedActivity != null ? mLastResumedActivity.getTask() : null;
5572
Wale Ogunwalef6733932018-06-27 05:14:34 -07005573 updateResumedAppTrace(r);
5574 mLastResumedActivity = r;
5575
Tiger Huang1e5b10a2018-07-30 20:19:51 +08005576 r.getDisplay().setFocusedApp(r, true);
Wale Ogunwalef6733932018-06-27 05:14:34 -07005577
Bogyun Sonbfb64dc2019-12-09 17:50:24 +09005578 if (prevTask == null || task != prevTask) {
5579 if (prevTask != null) {
5580 mTaskChangeNotificationController.notifyTaskFocusChanged(prevTask.mTaskId, false);
5581 }
5582 mTaskChangeNotificationController.notifyTaskFocusChanged(task.mTaskId, true);
5583 }
5584
Wale Ogunwalef6733932018-06-27 05:14:34 -07005585 applyUpdateLockStateLocked(r);
5586 applyUpdateVrModeLocked(r);
5587
Jeff Changd136e772019-11-05 20:33:52 +08005588 EventLogTags.writeWmSetResumedActivity(
Wale Ogunwale8b19de92018-11-29 19:58:26 -08005589 r == null ? -1 : r.mUserId,
Wale Ogunwalef6733932018-06-27 05:14:34 -07005590 r == null ? "NULL" : r.shortComponentName,
5591 reason);
5592 }
5593
5594 ActivityTaskManagerInternal.SleepToken acquireSleepToken(String tag, int displayId) {
5595 synchronized (mGlobalLock) {
Wale Ogunwaled32da472018-11-16 07:19:28 -08005596 final ActivityTaskManagerInternal.SleepToken token =
Louis Chang149d5c82019-12-30 09:47:39 +08005597 mRootWindowContainer.createSleepToken(tag, displayId);
Wale Ogunwalef6733932018-06-27 05:14:34 -07005598 updateSleepIfNeededLocked();
5599 return token;
5600 }
5601 }
5602
5603 void updateSleepIfNeededLocked() {
Louis Chang149d5c82019-12-30 09:47:39 +08005604 final boolean shouldSleep = !mRootWindowContainer.hasAwakeDisplay();
Wale Ogunwalef6733932018-06-27 05:14:34 -07005605 final boolean wasSleeping = mSleeping;
5606 boolean updateOomAdj = false;
5607
5608 if (!shouldSleep) {
5609 // If wasSleeping is true, we need to wake up activity manager state from when
5610 // we started sleeping. In either case, we need to apply the sleep tokens, which
5611 // will wake up stacks or put them to sleep as appropriate.
5612 if (wasSleeping) {
5613 mSleeping = false;
Muhammad Qureshi759f92f2020-01-28 10:41:55 -08005614 FrameworkStatsLog.write(FrameworkStatsLog.ACTIVITY_MANAGER_SLEEP_STATE_CHANGED,
5615 FrameworkStatsLog.ACTIVITY_MANAGER_SLEEP_STATE_CHANGED__STATE__AWAKE);
Wale Ogunwalef6733932018-06-27 05:14:34 -07005616 startTimeTrackingFocusedActivityLocked();
5617 mTopProcessState = ActivityManager.PROCESS_STATE_TOP;
Varun Shah98694fb2019-04-11 09:28:27 -07005618 Slog.d(TAG, "Top Process State changed to PROCESS_STATE_TOP");
Wale Ogunwalef6733932018-06-27 05:14:34 -07005619 mStackSupervisor.comeOutOfSleepIfNeededLocked();
5620 }
Louis Chang149d5c82019-12-30 09:47:39 +08005621 mRootWindowContainer.applySleepTokens(true /* applyToStacks */);
Wale Ogunwalef6733932018-06-27 05:14:34 -07005622 if (wasSleeping) {
5623 updateOomAdj = true;
5624 }
5625 } else if (!mSleeping && shouldSleep) {
5626 mSleeping = true;
Muhammad Qureshi759f92f2020-01-28 10:41:55 -08005627 FrameworkStatsLog.write(FrameworkStatsLog.ACTIVITY_MANAGER_SLEEP_STATE_CHANGED,
5628 FrameworkStatsLog.ACTIVITY_MANAGER_SLEEP_STATE_CHANGED__STATE__ASLEEP);
Wale Ogunwalef6733932018-06-27 05:14:34 -07005629 if (mCurAppTimeTracker != null) {
5630 mCurAppTimeTracker.stop();
5631 }
5632 mTopProcessState = ActivityManager.PROCESS_STATE_TOP_SLEEPING;
Varun Shah98694fb2019-04-11 09:28:27 -07005633 Slog.d(TAG, "Top Process State changed to PROCESS_STATE_TOP_SLEEPING");
Wale Ogunwalef6733932018-06-27 05:14:34 -07005634 mStackSupervisor.goingToSleepLocked();
5635 updateResumedAppTrace(null /* resumed */);
5636 updateOomAdj = true;
5637 }
5638 if (updateOomAdj) {
wilsonshih8d096d22019-08-01 17:46:14 +08005639 updateOomAdj();
Wale Ogunwalef6733932018-06-27 05:14:34 -07005640 }
5641 }
5642
5643 void updateOomAdj() {
Wale Ogunwalea38654f2019-11-17 20:37:15 -08005644 mH.removeCallbacks(mUpdateOomAdjRunnable);
5645 mH.post(mUpdateOomAdjRunnable);
Wale Ogunwalef6733932018-06-27 05:14:34 -07005646 }
5647
Wale Ogunwale53783742018-09-16 10:21:51 -07005648 void updateCpuStats() {
5649 mH.post(mAmInternal::updateCpuStats);
5650 }
5651
Hui Yu03d12402018-12-06 18:00:37 -08005652 void updateBatteryStats(ActivityRecord component, boolean resumed) {
5653 final Message m = PooledLambda.obtainMessage(ActivityManagerInternal::updateBatteryStats,
Wale Ogunwale8b19de92018-11-29 19:58:26 -08005654 mAmInternal, component.mActivityComponent, component.app.mUid, component.mUserId,
5655 resumed);
Wale Ogunwale53783742018-09-16 10:21:51 -07005656 mH.sendMessage(m);
5657 }
5658
Hui Yu03d12402018-12-06 18:00:37 -08005659 void updateActivityUsageStats(ActivityRecord activity, int event) {
Michael Wachenschwanz0b4ab1f2019-01-07 13:59:10 -08005660 ComponentName taskRoot = null;
Louis Changcdec0802019-11-11 11:45:07 +08005661 final Task task = activity.getTask();
Michael Wachenschwanz0b4ab1f2019-01-07 13:59:10 -08005662 if (task != null) {
5663 final ActivityRecord rootActivity = task.getRootActivity();
5664 if (rootActivity != null) {
5665 taskRoot = rootActivity.mActivityComponent;
5666 }
5667 }
5668
Hui Yu03d12402018-12-06 18:00:37 -08005669 final Message m = PooledLambda.obtainMessage(
5670 ActivityManagerInternal::updateActivityUsageStats, mAmInternal,
Michael Wachenschwanz0b4ab1f2019-01-07 13:59:10 -08005671 activity.mActivityComponent, activity.mUserId, event, activity.appToken, taskRoot);
Hui Yu03d12402018-12-06 18:00:37 -08005672 mH.sendMessage(m);
5673 }
5674
Riddle Hsu32dbdca2019-05-17 23:10:16 -06005675 void startProcessAsync(ActivityRecord activity, boolean knownToBeDead, boolean isTop,
5676 String hostingType) {
5677 try {
Riddle Hsu2ca561b2019-10-08 21:58:58 +08005678 if (Trace.isTagEnabled(TRACE_TAG_WINDOW_MANAGER)) {
5679 Trace.traceBegin(TRACE_TAG_WINDOW_MANAGER, "dispatchingStartProcess:"
Riddle Hsu32dbdca2019-05-17 23:10:16 -06005680 + activity.processName);
5681 }
5682 // Post message to start process to avoid possible deadlock of calling into AMS with the
5683 // ATMS lock held.
5684 final Message m = PooledLambda.obtainMessage(ActivityManagerInternal::startProcess,
5685 mAmInternal, activity.processName, activity.info.applicationInfo, knownToBeDead,
5686 isTop, hostingType, activity.intent.getComponent());
5687 mH.sendMessage(m);
5688 } finally {
Riddle Hsu2ca561b2019-10-08 21:58:58 +08005689 Trace.traceEnd(TRACE_TAG_WINDOW_MANAGER);
Riddle Hsu32dbdca2019-05-17 23:10:16 -06005690 }
5691 }
5692
Wale Ogunwale53783742018-09-16 10:21:51 -07005693 void setBooting(boolean booting) {
5694 mAmInternal.setBooting(booting);
5695 }
5696
5697 boolean isBooting() {
5698 return mAmInternal.isBooting();
5699 }
5700
5701 void setBooted(boolean booted) {
5702 mAmInternal.setBooted(booted);
5703 }
5704
5705 boolean isBooted() {
5706 return mAmInternal.isBooted();
5707 }
5708
5709 void postFinishBooting(boolean finishBooting, boolean enableScreen) {
5710 mH.post(() -> {
5711 if (finishBooting) {
5712 mAmInternal.finishBooting();
5713 }
5714 if (enableScreen) {
5715 mInternal.enableScreenAfterBoot(isBooted());
5716 }
5717 });
5718 }
5719
5720 void setHeavyWeightProcess(ActivityRecord root) {
5721 mHeavyWeightProcess = root.app;
5722 final Message m = PooledLambda.obtainMessage(
5723 ActivityTaskManagerService::postHeavyWeightProcessNotification, this,
Wale Ogunwale8b19de92018-11-29 19:58:26 -08005724 root.app, root.intent, root.mUserId);
Wale Ogunwale53783742018-09-16 10:21:51 -07005725 mH.sendMessage(m);
5726 }
5727
5728 void clearHeavyWeightProcessIfEquals(WindowProcessController proc) {
5729 if (mHeavyWeightProcess == null || mHeavyWeightProcess != proc) {
5730 return;
5731 }
5732
5733 mHeavyWeightProcess = null;
5734 final Message m = PooledLambda.obtainMessage(
5735 ActivityTaskManagerService::cancelHeavyWeightProcessNotification, this,
5736 proc.mUserId);
5737 mH.sendMessage(m);
5738 }
5739
5740 private void cancelHeavyWeightProcessNotification(int userId) {
5741 final INotificationManager inm = NotificationManager.getService();
5742 if (inm == null) {
5743 return;
5744 }
5745 try {
Julia Reynoldse4a47dd2019-06-07 13:40:59 -04005746 inm.cancelNotificationWithTag("android", "android", null,
Wale Ogunwale53783742018-09-16 10:21:51 -07005747 SystemMessage.NOTE_HEAVY_WEIGHT_NOTIFICATION, userId);
5748 } catch (RuntimeException e) {
5749 Slog.w(TAG, "Error canceling notification for service", e);
5750 } catch (RemoteException e) {
5751 }
5752
5753 }
5754
5755 private void postHeavyWeightProcessNotification(
5756 WindowProcessController proc, Intent intent, int userId) {
5757 if (proc == null) {
5758 return;
5759 }
5760
5761 final INotificationManager inm = NotificationManager.getService();
5762 if (inm == null) {
5763 return;
5764 }
5765
5766 try {
5767 Context context = mContext.createPackageContext(proc.mInfo.packageName, 0);
5768 String text = mContext.getString(R.string.heavy_weight_notification,
5769 context.getApplicationInfo().loadLabel(context.getPackageManager()));
5770 Notification notification =
5771 new Notification.Builder(context,
5772 SystemNotificationChannels.HEAVY_WEIGHT_APP)
5773 .setSmallIcon(com.android.internal.R.drawable.stat_sys_adb)
5774 .setWhen(0)
5775 .setOngoing(true)
5776 .setTicker(text)
5777 .setColor(mContext.getColor(
5778 com.android.internal.R.color.system_notification_accent_color))
5779 .setContentTitle(text)
5780 .setContentText(
5781 mContext.getText(R.string.heavy_weight_notification_detail))
5782 .setContentIntent(PendingIntent.getActivityAsUser(mContext, 0,
5783 intent, PendingIntent.FLAG_CANCEL_CURRENT, null,
5784 new UserHandle(userId)))
5785 .build();
5786 try {
5787 inm.enqueueNotificationWithTag("android", "android", null,
5788 SystemMessage.NOTE_HEAVY_WEIGHT_NOTIFICATION, notification, userId);
5789 } catch (RuntimeException e) {
5790 Slog.w(TAG, "Error showing notification for heavy-weight app", e);
5791 } catch (RemoteException e) {
5792 }
5793 } catch (PackageManager.NameNotFoundException e) {
5794 Slog.w(TAG, "Unable to create context for heavy notification", e);
5795 }
5796
5797 }
5798
Philip P. Moltmannee295092020-02-10 08:46:26 -08005799 IIntentSender getIntentSenderLocked(int type, String packageName, String featureId,
5800 int callingUid, int userId, IBinder token, String resultWho, int requestCode,
5801 Intent[] intents, String[] resolvedTypes, int flags, Bundle bOptions) {
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07005802
5803 ActivityRecord activity = null;
5804 if (type == ActivityManager.INTENT_SENDER_ACTIVITY_RESULT) {
5805 activity = ActivityRecord.isInStackLocked(token);
5806 if (activity == null) {
5807 Slog.w(TAG, "Failed createPendingResult: activity " + token + " not in any stack");
5808 return null;
5809 }
5810 if (activity.finishing) {
5811 Slog.w(TAG, "Failed createPendingResult: activity " + activity + " is finishing");
5812 return null;
5813 }
5814 }
5815
5816 final PendingIntentRecord rec = mPendingIntentController.getIntentSender(type, packageName,
Philip P. Moltmannee295092020-02-10 08:46:26 -08005817 featureId, callingUid, userId, token, resultWho, requestCode, intents,
5818 resolvedTypes, flags, bOptions);
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07005819 final boolean noCreate = (flags & PendingIntent.FLAG_NO_CREATE) != 0;
5820 if (noCreate) {
5821 return rec;
5822 }
5823 if (type == ActivityManager.INTENT_SENDER_ACTIVITY_RESULT) {
5824 if (activity.pendingResults == null) {
5825 activity.pendingResults = new HashSet<>();
5826 }
5827 activity.pendingResults.add(rec.ref);
5828 }
5829 return rec;
5830 }
5831
Andrii Kulian52d255c2018-07-13 11:32:19 -07005832 // TODO(b/111541062): Update app time tracking to make it aware of multiple resumed activities
Wale Ogunwalef6733932018-06-27 05:14:34 -07005833 private void startTimeTrackingFocusedActivityLocked() {
Louis Chang149d5c82019-12-30 09:47:39 +08005834 final ActivityRecord resumedActivity = mRootWindowContainer.getTopResumedActivity();
Wale Ogunwalef6733932018-06-27 05:14:34 -07005835 if (!mSleeping && mCurAppTimeTracker != null && resumedActivity != null) {
5836 mCurAppTimeTracker.start(resumedActivity.packageName);
5837 }
5838 }
5839
5840 private void updateResumedAppTrace(@Nullable ActivityRecord resumed) {
5841 if (mTracedResumedActivity != null) {
Riddle Hsu2ca561b2019-10-08 21:58:58 +08005842 Trace.asyncTraceEnd(TRACE_TAG_WINDOW_MANAGER,
Wale Ogunwalef6733932018-06-27 05:14:34 -07005843 constructResumedTraceName(mTracedResumedActivity.packageName), 0);
5844 }
5845 if (resumed != null) {
Riddle Hsu2ca561b2019-10-08 21:58:58 +08005846 Trace.asyncTraceBegin(TRACE_TAG_WINDOW_MANAGER,
Wale Ogunwalef6733932018-06-27 05:14:34 -07005847 constructResumedTraceName(resumed.packageName), 0);
5848 }
5849 mTracedResumedActivity = resumed;
5850 }
5851
5852 private String constructResumedTraceName(String packageName) {
5853 return "focused app: " + packageName;
5854 }
5855
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005856 /** Applies latest configuration and/or visibility updates if needed. */
Shivam Agrawal1d3db652019-07-01 15:26:11 -07005857 boolean ensureConfigAndVisibilityAfterUpdate(ActivityRecord starting, int changes) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005858 boolean kept = true;
Louis Chang149d5c82019-12-30 09:47:39 +08005859 final ActivityStack mainStack = mRootWindowContainer.getTopDisplayFocusedStack();
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005860 // mainStack is null during startup.
5861 if (mainStack != null) {
5862 if (changes != 0 && starting == null) {
5863 // If the configuration changed, and the caller is not already
5864 // in the process of starting an activity, then find the top
5865 // activity to check if its configuration needs to change.
Wale Ogunwale85fb19a2019-12-05 10:41:05 +09005866 starting = mainStack.topRunningActivity();
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005867 }
5868
5869 if (starting != null) {
5870 kept = starting.ensureActivityConfiguration(changes,
5871 false /* preserveWindow */);
5872 // And we need to make sure at this point that all other activities
5873 // are made visible with the correct configuration.
Louis Chang149d5c82019-12-30 09:47:39 +08005874 mRootWindowContainer.ensureActivitiesVisible(starting, changes,
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005875 !PRESERVE_WINDOWS);
5876 }
5877 }
5878
5879 return kept;
5880 }
5881
Wale Ogunwale906f9c62018-07-23 11:23:44 -07005882 void scheduleAppGcsLocked() {
5883 mH.post(() -> mAmInternal.scheduleAppGcs());
5884 }
5885
Wale Ogunwale53783742018-09-16 10:21:51 -07005886 CompatibilityInfo compatibilityInfoForPackageLocked(ApplicationInfo ai) {
5887 return mCompatModePackages.compatibilityInfoForPackageLocked(ai);
5888 }
5889
Wale Ogunwale906f9c62018-07-23 11:23:44 -07005890 /**
5891 * Returns the PackageManager. Used by classes hosted by {@link ActivityTaskManagerService}. The
5892 * PackageManager could be unavailable at construction time and therefore needs to be accessed
5893 * on demand.
5894 */
5895 IPackageManager getPackageManager() {
5896 return AppGlobals.getPackageManager();
5897 }
5898
5899 PackageManagerInternal getPackageManagerInternalLocked() {
5900 if (mPmInternal == null) {
5901 mPmInternal = LocalServices.getService(PackageManagerInternal.class);
5902 }
5903 return mPmInternal;
5904 }
5905
Hai Zhangf4da9be2019-05-01 13:46:06 +08005906 PermissionPolicyInternal getPermissionPolicyInternal() {
5907 if (mPermissionPolicyInternal == null) {
5908 mPermissionPolicyInternal = LocalServices.getService(PermissionPolicyInternal.class);
5909 }
5910 return mPermissionPolicyInternal;
5911 }
5912
Wale Ogunwale008163e2018-07-23 23:11:08 -07005913 AppWarnings getAppWarningsLocked() {
5914 return mAppWarnings;
5915 }
5916
Wale Ogunwale214f3482018-10-04 11:00:47 -07005917 Intent getHomeIntent() {
5918 Intent intent = new Intent(mTopAction, mTopData != null ? Uri.parse(mTopData) : null);
5919 intent.setComponent(mTopComponent);
5920 intent.addFlags(Intent.FLAG_DEBUG_TRIAGED_MISSING);
5921 if (mFactoryTest != FactoryTest.FACTORY_TEST_LOW_LEVEL) {
5922 intent.addCategory(Intent.CATEGORY_HOME);
5923 }
5924 return intent;
5925 }
5926
Chilun2ef71f72018-11-16 17:57:15 +08005927 /**
5928 * Return the intent set with {@link Intent#CATEGORY_SECONDARY_HOME} to resolve secondary home
5929 * activities.
5930 *
5931 * @param preferredPackage Specify a preferred package name, otherwise use secondary home
5932 * component defined in config_secondaryHomeComponent.
5933 * @return the intent set with {@link Intent#CATEGORY_SECONDARY_HOME}
5934 */
5935 Intent getSecondaryHomeIntent(String preferredPackage) {
5936 final Intent intent = new Intent(mTopAction, mTopData != null ? Uri.parse(mTopData) : null);
Keun young Park340546a2019-05-06 16:27:44 -07005937 final boolean useSystemProvidedLauncher = mContext.getResources().getBoolean(
5938 com.android.internal.R.bool.config_useSystemProvidedLauncherForSecondary);
5939 if (preferredPackage == null || useSystemProvidedLauncher) {
5940 // Using the component stored in config if no package name or forced.
Chilun2ef71f72018-11-16 17:57:15 +08005941 final String secondaryHomeComponent = mContext.getResources().getString(
5942 com.android.internal.R.string.config_secondaryHomeComponent);
5943 intent.setComponent(ComponentName.unflattenFromString(secondaryHomeComponent));
5944 } else {
5945 intent.setPackage(preferredPackage);
5946 }
5947 intent.addFlags(Intent.FLAG_DEBUG_TRIAGED_MISSING);
5948 if (mFactoryTest != FactoryTest.FACTORY_TEST_LOW_LEVEL) {
5949 intent.addCategory(Intent.CATEGORY_SECONDARY_HOME);
5950 }
5951 return intent;
5952 }
5953
Wale Ogunwale214f3482018-10-04 11:00:47 -07005954 ApplicationInfo getAppInfoForUser(ApplicationInfo info, int userId) {
5955 if (info == null) return null;
5956 ApplicationInfo newInfo = new ApplicationInfo(info);
5957 newInfo.initForUser(userId);
5958 return newInfo;
5959 }
5960
Wale Ogunwale9c103022018-10-18 07:44:54 -07005961 WindowProcessController getProcessController(String processName, int uid) {
Wale Ogunwale214f3482018-10-04 11:00:47 -07005962 if (uid == SYSTEM_UID) {
5963 // The system gets to run in any process. If there are multiple processes with the same
5964 // uid, just pick the first (this should never happen).
5965 final SparseArray<WindowProcessController> procs =
5966 mProcessNames.getMap().get(processName);
5967 if (procs == null) return null;
5968 final int procCount = procs.size();
5969 for (int i = 0; i < procCount; i++) {
5970 final int procUid = procs.keyAt(i);
5971 if (UserHandle.isApp(procUid) || !UserHandle.isSameUser(procUid, uid)) {
5972 // Don't use an app process or different user process for system component.
5973 continue;
5974 }
5975 return procs.valueAt(i);
5976 }
5977 }
5978
5979 return mProcessNames.get(processName, uid);
5980 }
5981
Wale Ogunwale342fbe92018-10-09 08:44:10 -07005982 WindowProcessController getProcessController(IApplicationThread thread) {
5983 if (thread == null) {
5984 return null;
5985 }
5986
5987 final IBinder threadBinder = thread.asBinder();
5988 final ArrayMap<String, SparseArray<WindowProcessController>> pmap = mProcessNames.getMap();
5989 for (int i = pmap.size()-1; i >= 0; i--) {
5990 final SparseArray<WindowProcessController> procs = pmap.valueAt(i);
5991 for (int j = procs.size() - 1; j >= 0; j--) {
5992 final WindowProcessController proc = procs.valueAt(j);
5993 if (proc.hasThread() && proc.getThread().asBinder() == threadBinder) {
5994 return proc;
5995 }
5996 }
5997 }
5998
5999 return null;
6000 }
6001
Michal Karpinski9cbb20b2019-02-05 17:31:50 +00006002 WindowProcessController getProcessController(int pid, int uid) {
Michal Karpinski2e0aad22019-04-12 16:22:55 +01006003 final WindowProcessController proc = mProcessMap.getProcess(pid);
Yunfan Chen8546b212019-04-01 15:34:44 +09006004 if (proc == null) return null;
6005 if (UserHandle.isApp(uid) && proc.mUid == uid) {
6006 return proc;
Michal Karpinski9cbb20b2019-02-05 17:31:50 +00006007 }
6008 return null;
6009 }
6010
Riddle Hsua0536432019-02-16 00:38:59 +08006011 int getUidState(int uid) {
6012 return mActiveUids.getUidState(uid);
Wale Ogunwalebff2df42018-10-18 17:09:19 -07006013 }
6014
Michal Karpinskicc88d7e2019-01-24 15:32:12 +00006015 boolean isUidForeground(int uid) {
Alan Stokeseea8d3e2019-04-10 17:37:25 +01006016 // A uid is considered to be foreground if it has a visible non-toast window.
6017 return mWindowManager.mRoot.isAnyNonToastWindowVisibleForUid(uid);
Michal Karpinskicc88d7e2019-01-24 15:32:12 +00006018 }
6019
Ricky Wai96f5c352019-04-10 18:40:17 +01006020 boolean isDeviceOwner(int uid) {
6021 return uid >= 0 && mDeviceOwnerUid == uid;
Michal Karpinski4026cae2019-02-12 11:51:47 +00006022 }
6023
Ricky Wai96f5c352019-04-10 18:40:17 +01006024 void setDeviceOwnerUid(int uid) {
6025 mDeviceOwnerUid = uid;
Michal Karpinski4026cae2019-02-12 11:51:47 +00006026 }
6027
Wale Ogunwale9de19442018-10-18 19:05:03 -07006028 /**
6029 * @return whitelist tag for a uid from mPendingTempWhitelist, null if not currently on
6030 * the whitelist
6031 */
6032 String getPendingTempWhitelistTagForUidLocked(int uid) {
6033 return mPendingTempWhitelist.get(uid);
6034 }
6035
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07006036 void logAppTooSlow(WindowProcessController app, long startTime, String msg) {
6037 if (true || Build.IS_USER) {
6038 return;
6039 }
6040
6041 StrictMode.ThreadPolicy oldPolicy = StrictMode.allowThreadDiskReads();
6042 StrictMode.allowThreadDiskWrites();
6043 try {
6044 File tracesDir = new File("/data/anr");
6045 File tracesFile = null;
6046 try {
6047 tracesFile = File.createTempFile("app_slow", null, tracesDir);
6048
6049 StringBuilder sb = new StringBuilder();
Neil Fuller97746812019-08-19 14:20:50 +01006050 String timeString =
6051 TimeMigrationUtils.formatMillisWithFixedFormat(System.currentTimeMillis());
6052 sb.append(timeString);
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07006053 sb.append(": ");
6054 TimeUtils.formatDuration(SystemClock.uptimeMillis()-startTime, sb);
6055 sb.append(" since ");
6056 sb.append(msg);
6057 FileOutputStream fos = new FileOutputStream(tracesFile);
6058 fos.write(sb.toString().getBytes());
6059 if (app == null) {
6060 fos.write("\n*** No application process!".getBytes());
6061 }
6062 fos.close();
6063 FileUtils.setPermissions(tracesFile.getPath(), 0666, -1, -1); // -rw-rw-rw-
6064 } catch (IOException e) {
6065 Slog.w(TAG, "Unable to prepare slow app traces file: " + tracesFile, e);
6066 return;
6067 }
6068
6069 if (app != null && app.getPid() > 0) {
6070 ArrayList<Integer> firstPids = new ArrayList<Integer>();
6071 firstPids.add(app.getPid());
6072 dumpStackTraces(tracesFile.getAbsolutePath(), firstPids, null, null);
6073 }
6074
6075 File lastTracesFile = null;
6076 File curTracesFile = null;
6077 for (int i=9; i>=0; i--) {
6078 String name = String.format(Locale.US, "slow%02d.txt", i);
6079 curTracesFile = new File(tracesDir, name);
6080 if (curTracesFile.exists()) {
6081 if (lastTracesFile != null) {
6082 curTracesFile.renameTo(lastTracesFile);
6083 } else {
6084 curTracesFile.delete();
6085 }
6086 }
6087 lastTracesFile = curTracesFile;
6088 }
6089 tracesFile.renameTo(curTracesFile);
6090 } finally {
6091 StrictMode.setThreadPolicy(oldPolicy);
6092 }
6093 }
6094
Michal Karpinskida34cd42019-04-02 19:46:52 +01006095 boolean isAssociatedCompanionApp(int userId, int uid) {
6096 final Set<Integer> allUids = mCompanionAppUidsMap.get(userId);
6097 if (allUids == null) {
Ricky Wai2452e2d2019-03-18 19:19:08 +00006098 return false;
6099 }
Michal Karpinskida34cd42019-04-02 19:46:52 +01006100 return allUids.contains(uid);
Ricky Wai2452e2d2019-03-18 19:19:08 +00006101 }
6102
Issei Suzuki734bc942019-06-05 13:59:52 +02006103 void notifySingleTaskDisplayEmpty(int displayId) {
6104 mTaskChangeNotificationController.notifySingleTaskDisplayEmpty(displayId);
6105 }
6106
Wale Ogunwaled0412b32018-05-08 09:25:50 -07006107 final class H extends Handler {
Wale Ogunwalef6733932018-06-27 05:14:34 -07006108 static final int REPORT_TIME_TRACKER_MSG = 1;
Alison Cichowlas3e340502018-08-07 17:15:01 -04006109
6110
Wale Ogunwale98875612018-10-12 07:53:02 -07006111 static final int FIRST_ACTIVITY_STACK_MSG = 100;
6112 static final int FIRST_SUPERVISOR_STACK_MSG = 200;
Wale Ogunwalef6733932018-06-27 05:14:34 -07006113
Riddle Hsud93a6c42018-11-29 21:50:06 +08006114 H(Looper looper) {
6115 super(looper);
Wale Ogunwaled0412b32018-05-08 09:25:50 -07006116 }
Wale Ogunwalef6733932018-06-27 05:14:34 -07006117
6118 @Override
6119 public void handleMessage(Message msg) {
6120 switch (msg.what) {
6121 case REPORT_TIME_TRACKER_MSG: {
6122 AppTimeTracker tracker = (AppTimeTracker) msg.obj;
6123 tracker.deliverResult(mContext);
6124 } break;
6125 }
6126 }
Wale Ogunwaled0412b32018-05-08 09:25:50 -07006127 }
6128
Wale Ogunwalea6191b42018-05-09 07:41:32 -07006129 final class UiHandler extends Handler {
Wale Ogunwalef6733932018-06-27 05:14:34 -07006130 static final int DISMISS_DIALOG_UI_MSG = 1;
Wale Ogunwalea6191b42018-05-09 07:41:32 -07006131
6132 public UiHandler() {
Wale Ogunwale1f5e53d2018-11-05 05:12:46 -08006133 super(UiThread.get().getLooper(), null, true);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07006134 }
Wale Ogunwalef6733932018-06-27 05:14:34 -07006135
6136 @Override
6137 public void handleMessage(Message msg) {
6138 switch (msg.what) {
6139 case DISMISS_DIALOG_UI_MSG: {
6140 final Dialog d = (Dialog) msg.obj;
6141 d.dismiss();
6142 break;
6143 }
6144 }
6145 }
Wale Ogunwalea6191b42018-05-09 07:41:32 -07006146 }
6147
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006148 final class LocalService extends ActivityTaskManagerInternal {
6149 @Override
6150 public SleepToken acquireSleepToken(String tag, int displayId) {
Daulet Zhanguzinc6c641f2020-01-02 17:18:30 +00006151 Objects.requireNonNull(tag);
Wale Ogunwalef6733932018-06-27 05:14:34 -07006152 return ActivityTaskManagerService.this.acquireSleepToken(tag, displayId);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006153 }
6154
6155 @Override
6156 public ComponentName getHomeActivityForUser(int userId) {
6157 synchronized (mGlobalLock) {
Wale Ogunwaled32da472018-11-16 07:19:28 -08006158 final ActivityRecord homeActivity =
Louis Chang149d5c82019-12-30 09:47:39 +08006159 mRootWindowContainer.getDefaultDisplayHomeActivityForUser(userId);
Wale Ogunwale8b19de92018-11-29 19:58:26 -08006160 return homeActivity == null ? null : homeActivity.mActivityComponent;
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006161 }
6162 }
6163
6164 @Override
6165 public void onLocalVoiceInteractionStarted(IBinder activity,
6166 IVoiceInteractionSession voiceSession, IVoiceInteractor voiceInteractor) {
6167 synchronized (mGlobalLock) {
Wale Ogunwalef6733932018-06-27 05:14:34 -07006168 onLocalVoiceInteractionStartedLocked(activity, voiceSession, voiceInteractor);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006169 }
6170 }
6171
6172 @Override
Issei Suzukicac2a502019-04-16 16:52:50 +02006173 public void notifySingleTaskDisplayDrawn(int displayId) {
6174 mTaskChangeNotificationController.notifySingleTaskDisplayDrawn(displayId);
6175 }
6176
6177 @Override
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006178 public void notifyAppTransitionFinished() {
6179 synchronized (mGlobalLock) {
6180 mStackSupervisor.notifyAppTransitionDone();
6181 }
6182 }
6183
6184 @Override
6185 public void notifyAppTransitionCancelled() {
6186 synchronized (mGlobalLock) {
6187 mStackSupervisor.notifyAppTransitionDone();
6188 }
6189 }
6190
6191 @Override
6192 public List<IBinder> getTopVisibleActivities() {
6193 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08006194 return mRootWindowContainer.getTopVisibleActivities();
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006195 }
6196 }
6197
6198 @Override
6199 public void notifyDockedStackMinimizedChanged(boolean minimized) {
6200 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08006201 mRootWindowContainer.setDockedStackMinimized(minimized);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006202 }
6203 }
6204
6205 @Override
Philip P. Moltmannee295092020-02-10 08:46:26 -08006206 public int startActivitiesAsPackage(String packageName, @Nullable String featureId,
6207 int userId, Intent[] intents, Bundle bOptions) {
Daulet Zhanguzinc6c641f2020-01-02 17:18:30 +00006208 Objects.requireNonNull(intents, "intents");
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006209 final String[] resolvedTypes = new String[intents.length];
6210
6211 // UID of the package on user userId.
6212 // "= 0" is needed because otherwise catch(RemoteException) would make it look like
6213 // packageUid may not be initialized.
6214 int packageUid = 0;
6215 final long ident = Binder.clearCallingIdentity();
6216
6217 try {
6218 for (int i = 0; i < intents.length; i++) {
6219 resolvedTypes[i] =
6220 intents[i].resolveTypeIfNeeded(mContext.getContentResolver());
6221 }
6222
6223 packageUid = AppGlobals.getPackageManager().getPackageUid(
6224 packageName, PackageManager.MATCH_DEBUG_TRIAGED_MISSING, userId);
6225 } catch (RemoteException e) {
6226 // Shouldn't happen.
6227 } finally {
6228 Binder.restoreCallingIdentity(ident);
6229 }
6230
Riddle Hsu591bf612019-02-14 17:55:31 +08006231 return getActivityStartController().startActivitiesInPackage(
Philip P. Moltmannee295092020-02-10 08:46:26 -08006232 packageUid, packageName, featureId,
Riddle Hsu591bf612019-02-14 17:55:31 +08006233 intents, resolvedTypes, null /* resultTo */,
6234 SafeActivityOptions.fromBundle(bOptions), userId,
6235 false /* validateIncomingUser */, null /* originatingPendingIntent */,
6236 false /* allowBackgroundActivityStart */);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006237 }
6238
6239 @Override
Michal Karpinski84d9ebd2019-01-17 18:28:59 +00006240 public int startActivitiesInPackage(int uid, int realCallingPid, int realCallingUid,
Philip P. Moltmannee295092020-02-10 08:46:26 -08006241 String callingPackage, @Nullable String callingFeatureId, Intent[] intents,
6242 String[] resolvedTypes, IBinder resultTo, SafeActivityOptions options, int userId,
6243 boolean validateIncomingUser, PendingIntentRecord originatingPendingIntent,
Michal Karpinskiac116df2018-12-10 17:51:42 +00006244 boolean allowBackgroundActivityStart) {
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07006245 assertPackageMatchesCallingUid(callingPackage);
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006246 synchronized (mGlobalLock) {
Michal Karpinski84d9ebd2019-01-17 18:28:59 +00006247 return getActivityStartController().startActivitiesInPackage(uid, realCallingPid,
Philip P. Moltmannee295092020-02-10 08:46:26 -08006248 realCallingUid, callingPackage, callingFeatureId, intents, resolvedTypes,
6249 resultTo, options, userId, validateIncomingUser, originatingPendingIntent,
Michal Karpinski84d9ebd2019-01-17 18:28:59 +00006250 allowBackgroundActivityStart);
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006251 }
6252 }
6253
6254 @Override
6255 public int startActivityInPackage(int uid, int realCallingPid, int realCallingUid,
Philip P. Moltmannee295092020-02-10 08:46:26 -08006256 String callingPackage, @Nullable String callingFeatureId, Intent intent,
6257 String resolvedType, IBinder resultTo, String resultWho, int requestCode,
6258 int startFlags, SafeActivityOptions options, int userId, Task inTask, String reason,
6259 boolean validateIncomingUser, PendingIntentRecord originatingPendingIntent,
Michal Karpinskiac116df2018-12-10 17:51:42 +00006260 boolean allowBackgroundActivityStart) {
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07006261 assertPackageMatchesCallingUid(callingPackage);
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006262 synchronized (mGlobalLock) {
6263 return getActivityStartController().startActivityInPackage(uid, realCallingPid,
Philip P. Moltmannee295092020-02-10 08:46:26 -08006264 realCallingUid, callingPackage, callingFeatureId, intent, resolvedType,
6265 resultTo, resultWho, requestCode, startFlags, options, userId, inTask,
6266 reason, validateIncomingUser, originatingPendingIntent,
Michal Karpinskiac116df2018-12-10 17:51:42 +00006267 allowBackgroundActivityStart);
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006268 }
6269 }
6270
6271 @Override
Philip P. Moltmannee295092020-02-10 08:46:26 -08006272 public int startActivityAsUser(IApplicationThread caller, String callerPackage,
Alex Kershaw16406c32020-02-17 12:28:53 +00006273 @Nullable String callerFeatureId, Intent intent, @Nullable IBinder resultTo,
6274 int startFlags, Bundle options, int userId) {
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006275 return ActivityTaskManagerService.this.startActivityAsUser(
Philip P. Moltmannee295092020-02-10 08:46:26 -08006276 caller, callerPackage, callerFeatureId, intent,
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006277 intent.resolveTypeIfNeeded(mContext.getContentResolver()),
Alex Kershaw16406c32020-02-17 12:28:53 +00006278 resultTo, null, 0, startFlags, null, options, userId,
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006279 false /*validateIncomingUser*/);
6280 }
6281
6282 @Override
lumark588a3e82018-07-20 18:53:54 +08006283 public void notifyKeyguardFlagsChanged(@Nullable Runnable callback, int displayId) {
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006284 synchronized (mGlobalLock) {
6285
6286 // We might change the visibilities here, so prepare an empty app transition which
6287 // might be overridden later if we actually change visibilities.
Louis Chang677921f2019-12-06 16:44:24 +08006288 final DisplayContent displayContent =
Louis Chang149d5c82019-12-30 09:47:39 +08006289 mRootWindowContainer.getDisplayContent(displayId);
Louis Chang677921f2019-12-06 16:44:24 +08006290 if (displayContent == null) {
lumark52ea28e2018-11-09 17:30:47 +08006291 return;
6292 }
Louis Chang677921f2019-12-06 16:44:24 +08006293 final DisplayContent dc = displayContent.mDisplayContent;
Wale Ogunwale3a256e62018-12-06 14:41:18 -08006294 final boolean wasTransitionSet =
6295 dc.mAppTransition.getAppTransition() != TRANSIT_NONE;
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006296 if (!wasTransitionSet) {
Wale Ogunwale3a256e62018-12-06 14:41:18 -08006297 dc.prepareAppTransition(TRANSIT_NONE, false /* alwaysKeepCurrent */);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006298 }
Louis Chang149d5c82019-12-30 09:47:39 +08006299 mRootWindowContainer.ensureActivitiesVisible(null, 0, !PRESERVE_WINDOWS);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006300
6301 // If there was a transition set already we don't want to interfere with it as we
6302 // might be starting it too early.
6303 if (!wasTransitionSet) {
Wale Ogunwale3a256e62018-12-06 14:41:18 -08006304 dc.executeAppTransition();
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006305 }
6306 }
6307 if (callback != null) {
6308 callback.run();
6309 }
6310 }
6311
6312 @Override
6313 public void notifyKeyguardTrustedChanged() {
6314 synchronized (mGlobalLock) {
Wale Ogunwaled0412b32018-05-08 09:25:50 -07006315 if (mKeyguardController.isKeyguardShowing(DEFAULT_DISPLAY)) {
Louis Chang149d5c82019-12-30 09:47:39 +08006316 mRootWindowContainer.ensureActivitiesVisible(null, 0, !PRESERVE_WINDOWS);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006317 }
6318 }
6319 }
6320
6321 /**
6322 * Called after virtual display Id is updated by
6323 * {@link com.android.server.vr.Vr2dDisplay} with a specific
6324 * {@param vrVr2dDisplayId}.
6325 */
6326 @Override
6327 public void setVr2dDisplayId(int vr2dDisplayId) {
6328 if (DEBUG_STACK) Slog.d(TAG, "setVr2dDisplayId called for: " + vr2dDisplayId);
6329 synchronized (mGlobalLock) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07006330 mVr2dDisplayId = vr2dDisplayId;
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006331 }
6332 }
6333
6334 @Override
6335 public void setFocusedActivity(IBinder token) {
6336 synchronized (mGlobalLock) {
6337 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
6338 if (r == null) {
6339 throw new IllegalArgumentException(
6340 "setFocusedActivity: No activity record matching token=" + token);
6341 }
Louis Chang19443452018-10-09 12:10:21 +08006342 if (r.moveFocusableActivityToTop("setFocusedActivity")) {
Louis Chang149d5c82019-12-30 09:47:39 +08006343 mRootWindowContainer.resumeFocusedStacksTopActivities();
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006344 }
6345 }
6346 }
6347
6348 @Override
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006349 public void registerScreenObserver(ScreenObserver observer) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07006350 mScreenObservers.add(observer);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006351 }
6352
6353 @Override
6354 public boolean isCallerRecents(int callingUid) {
Wale Ogunwale16e505a2018-05-07 15:00:49 -07006355 return getRecentTasks().isCallerRecents(callingUid);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006356 }
6357
6358 @Override
6359 public boolean isRecentsComponentHomeActivity(int userId) {
Wale Ogunwale16e505a2018-05-07 15:00:49 -07006360 return getRecentTasks().isRecentsComponentHomeActivity(userId);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006361 }
6362
6363 @Override
6364 public void cancelRecentsAnimation(boolean restoreHomeStackPosition) {
6365 ActivityTaskManagerService.this.cancelRecentsAnimation(restoreHomeStackPosition);
6366 }
6367
6368 @Override
6369 public void enforceCallerIsRecentsOrHasPermission(String permission, String func) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07006370 ActivityTaskManagerService.this.enforceCallerIsRecentsOrHasPermission(permission, func);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006371 }
Wale Ogunwaled0412b32018-05-08 09:25:50 -07006372
6373 @Override
6374 public void notifyActiveVoiceInteractionServiceChanged(ComponentName component) {
6375 synchronized (mGlobalLock) {
6376 mActiveVoiceInteractionServiceComponent = component;
6377 }
6378 }
Wale Ogunwalea6191b42018-05-09 07:41:32 -07006379
6380 @Override
6381 public void setAllowAppSwitches(@NonNull String type, int uid, int userId) {
6382 if (!mAmInternal.isUserRunning(userId, ActivityManager.FLAG_OR_STOPPED)) {
6383 return;
6384 }
6385 synchronized (mGlobalLock) {
6386 ArrayMap<String, Integer> types = mAllowAppSwitchUids.get(userId);
6387 if (types == null) {
6388 if (uid < 0) {
6389 return;
6390 }
6391 types = new ArrayMap<>();
6392 mAllowAppSwitchUids.put(userId, types);
6393 }
6394 if (uid < 0) {
6395 types.remove(type);
6396 } else {
6397 types.put(type, uid);
6398 }
6399 }
6400 }
6401
6402 @Override
6403 public void onUserStopped(int userId) {
6404 synchronized (mGlobalLock) {
6405 getRecentTasks().unloadUserDataFromMemoryLocked(userId);
6406 mAllowAppSwitchUids.remove(userId);
6407 }
6408 }
6409
6410 @Override
6411 public boolean isGetTasksAllowed(String caller, int callingPid, int callingUid) {
6412 synchronized (mGlobalLock) {
6413 return ActivityTaskManagerService.this.isGetTasksAllowed(
6414 caller, callingPid, callingUid);
6415 }
6416 }
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07006417
Riddle Hsua0536432019-02-16 00:38:59 +08006418 @HotPath(caller = HotPath.PROCESS_CHANGE)
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07006419 @Override
6420 public void onProcessAdded(WindowProcessController proc) {
Riddle Hsua0536432019-02-16 00:38:59 +08006421 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07006422 mProcessNames.put(proc.mName, proc.mUid, proc);
6423 }
6424 }
6425
Riddle Hsua0536432019-02-16 00:38:59 +08006426 @HotPath(caller = HotPath.PROCESS_CHANGE)
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07006427 @Override
6428 public void onProcessRemoved(String name, int uid) {
Riddle Hsua0536432019-02-16 00:38:59 +08006429 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07006430 mProcessNames.remove(name, uid);
6431 }
6432 }
6433
Riddle Hsua0536432019-02-16 00:38:59 +08006434 @HotPath(caller = HotPath.PROCESS_CHANGE)
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07006435 @Override
6436 public void onCleanUpApplicationRecord(WindowProcessController proc) {
Riddle Hsua0536432019-02-16 00:38:59 +08006437 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07006438 if (proc == mHomeProcess) {
6439 mHomeProcess = null;
6440 }
6441 if (proc == mPreviousProcess) {
6442 mPreviousProcess = null;
6443 }
6444 }
6445 }
Wale Ogunwalef6733932018-06-27 05:14:34 -07006446
Riddle Hsua0536432019-02-16 00:38:59 +08006447 @HotPath(caller = HotPath.OOM_ADJUSTMENT)
Wale Ogunwalef6733932018-06-27 05:14:34 -07006448 @Override
6449 public int getTopProcessState() {
Riddle Hsua0536432019-02-16 00:38:59 +08006450 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwalef6733932018-06-27 05:14:34 -07006451 return mTopProcessState;
6452 }
6453 }
6454
Riddle Hsua0536432019-02-16 00:38:59 +08006455 @HotPath(caller = HotPath.OOM_ADJUSTMENT)
Wale Ogunwalef6733932018-06-27 05:14:34 -07006456 @Override
Wale Ogunwale53783742018-09-16 10:21:51 -07006457 public boolean isHeavyWeightProcess(WindowProcessController proc) {
Riddle Hsua0536432019-02-16 00:38:59 +08006458 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale53783742018-09-16 10:21:51 -07006459 return proc == mHeavyWeightProcess;
6460 }
6461 }
6462
Riddle Hsua0536432019-02-16 00:38:59 +08006463 @HotPath(caller = HotPath.PROCESS_CHANGE)
Wale Ogunwale53783742018-09-16 10:21:51 -07006464 @Override
6465 public void clearHeavyWeightProcessIfEquals(WindowProcessController proc) {
Riddle Hsua0536432019-02-16 00:38:59 +08006466 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale53783742018-09-16 10:21:51 -07006467 ActivityTaskManagerService.this.clearHeavyWeightProcessIfEquals(proc);
6468 }
6469 }
6470
6471 @Override
6472 public void finishHeavyWeightApp() {
6473 synchronized (mGlobalLock) {
Sudheer Shankaee1da272018-10-20 20:11:44 -07006474 if (mHeavyWeightProcess != null) {
6475 mHeavyWeightProcess.finishActivities();
6476 }
Wale Ogunwale53783742018-09-16 10:21:51 -07006477 ActivityTaskManagerService.this.clearHeavyWeightProcessIfEquals(
6478 mHeavyWeightProcess);
6479 }
6480 }
6481
Riddle Hsua0536432019-02-16 00:38:59 +08006482 @HotPath(caller = HotPath.OOM_ADJUSTMENT)
Wale Ogunwale53783742018-09-16 10:21:51 -07006483 @Override
Wale Ogunwalef6733932018-06-27 05:14:34 -07006484 public boolean isSleeping() {
Riddle Hsua0536432019-02-16 00:38:59 +08006485 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwalef6733932018-06-27 05:14:34 -07006486 return isSleepingLocked();
6487 }
6488 }
6489
6490 @Override
6491 public boolean isShuttingDown() {
6492 synchronized (mGlobalLock) {
6493 return mShuttingDown;
6494 }
6495 }
6496
6497 @Override
6498 public boolean shuttingDown(boolean booted, int timeout) {
6499 synchronized (mGlobalLock) {
6500 mShuttingDown = true;
Louis Chang149d5c82019-12-30 09:47:39 +08006501 mRootWindowContainer.prepareForShutdown();
Wale Ogunwalef6733932018-06-27 05:14:34 -07006502 updateEventDispatchingLocked(booted);
Wale Ogunwaled4d67d02018-10-25 18:09:39 -07006503 notifyTaskPersisterLocked(null, true);
Wale Ogunwalef6733932018-06-27 05:14:34 -07006504 return mStackSupervisor.shutdownLocked(timeout);
6505 }
6506 }
6507
6508 @Override
6509 public void enableScreenAfterBoot(boolean booted) {
6510 synchronized (mGlobalLock) {
Jeff Changd136e772019-11-05 20:33:52 +08006511 writeBootProgressEnableScreen(SystemClock.uptimeMillis());
Wale Ogunwalef6733932018-06-27 05:14:34 -07006512 mWindowManager.enableScreenAfterBoot();
6513 updateEventDispatchingLocked(booted);
6514 }
6515 }
6516
6517 @Override
6518 public boolean showStrictModeViolationDialog() {
6519 synchronized (mGlobalLock) {
6520 return mShowDialogs && !mSleeping && !mShuttingDown;
6521 }
6522 }
6523
6524 @Override
6525 public void showSystemReadyErrorDialogsIfNeeded() {
6526 synchronized (mGlobalLock) {
6527 try {
6528 if (AppGlobals.getPackageManager().hasSystemUidErrors()) {
6529 Slog.e(TAG, "UIDs on the system are inconsistent, you need to wipe your"
6530 + " data partition or your device will be unstable.");
6531 mUiHandler.post(() -> {
6532 if (mShowDialogs) {
6533 AlertDialog d = new BaseErrorDialog(mUiContext);
6534 d.getWindow().setType(WindowManager.LayoutParams.TYPE_SYSTEM_ERROR);
6535 d.setCancelable(false);
6536 d.setTitle(mUiContext.getText(R.string.android_system_label));
6537 d.setMessage(mUiContext.getText(R.string.system_error_wipe_data));
6538 d.setButton(DialogInterface.BUTTON_POSITIVE,
6539 mUiContext.getText(R.string.ok),
6540 mUiHandler.obtainMessage(DISMISS_DIALOG_UI_MSG, d));
6541 d.show();
6542 }
6543 });
6544 }
6545 } catch (RemoteException e) {
6546 }
6547
6548 if (!Build.isBuildConsistent()) {
6549 Slog.e(TAG, "Build fingerprint is not consistent, warning user");
6550 mUiHandler.post(() -> {
6551 if (mShowDialogs) {
6552 AlertDialog d = new BaseErrorDialog(mUiContext);
6553 d.getWindow().setType(WindowManager.LayoutParams.TYPE_SYSTEM_ERROR);
6554 d.setCancelable(false);
6555 d.setTitle(mUiContext.getText(R.string.android_system_label));
6556 d.setMessage(mUiContext.getText(R.string.system_error_manufacturer));
6557 d.setButton(DialogInterface.BUTTON_POSITIVE,
6558 mUiContext.getText(R.string.ok),
6559 mUiHandler.obtainMessage(DISMISS_DIALOG_UI_MSG, d));
6560 d.show();
6561 }
6562 });
6563 }
6564 }
6565 }
Wale Ogunwale906f9c62018-07-23 11:23:44 -07006566
6567 @Override
Wale Ogunwale906f9c62018-07-23 11:23:44 -07006568 public void onProcessMapped(int pid, WindowProcessController proc) {
6569 synchronized (mGlobalLock) {
Michal Karpinski2e0aad22019-04-12 16:22:55 +01006570 mProcessMap.put(pid, proc);
Wale Ogunwale906f9c62018-07-23 11:23:44 -07006571 }
6572 }
6573
6574 @Override
6575 public void onProcessUnMapped(int pid) {
6576 synchronized (mGlobalLock) {
Michal Karpinski2e0aad22019-04-12 16:22:55 +01006577 mProcessMap.remove(pid);
Wale Ogunwale906f9c62018-07-23 11:23:44 -07006578 }
6579 }
Wale Ogunwale008163e2018-07-23 23:11:08 -07006580
6581 @Override
6582 public void onPackageDataCleared(String name) {
6583 synchronized (mGlobalLock) {
Wale Ogunwale53783742018-09-16 10:21:51 -07006584 mCompatModePackages.handlePackageDataClearedLocked(name);
Wale Ogunwale008163e2018-07-23 23:11:08 -07006585 mAppWarnings.onPackageDataCleared(name);
6586 }
6587 }
6588
6589 @Override
6590 public void onPackageUninstalled(String name) {
6591 synchronized (mGlobalLock) {
6592 mAppWarnings.onPackageUninstalled(name);
Wale Ogunwale53783742018-09-16 10:21:51 -07006593 mCompatModePackages.handlePackageUninstalledLocked(name);
Wale Ogunwale008163e2018-07-23 23:11:08 -07006594 }
6595 }
Wale Ogunwale53783742018-09-16 10:21:51 -07006596
6597 @Override
6598 public void onPackageAdded(String name, boolean replacing) {
6599 synchronized (mGlobalLock) {
6600 mCompatModePackages.handlePackageAddedLocked(name, replacing);
6601 }
6602 }
6603
6604 @Override
Wale Ogunwale31913b52018-10-13 08:29:31 -07006605 public void onPackageReplaced(ApplicationInfo aInfo) {
6606 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08006607 mRootWindowContainer.updateActivityApplicationInfo(aInfo);
Wale Ogunwale31913b52018-10-13 08:29:31 -07006608 }
6609 }
6610
6611 @Override
Wale Ogunwale53783742018-09-16 10:21:51 -07006612 public CompatibilityInfo compatibilityInfoForPackage(ApplicationInfo ai) {
6613 synchronized (mGlobalLock) {
6614 return compatibilityInfoForPackageLocked(ai);
6615 }
6616 }
6617
Yunfan Chen75157d72018-07-27 14:47:21 +09006618 /**
6619 * Set the corresponding display information for the process global configuration. To be
6620 * called when we need to show IME on a different display.
6621 *
6622 * @param pid The process id associated with the IME window.
6623 * @param displayId The ID of the display showing the IME.
6624 */
6625 @Override
Yunfan Chen79b96062018-10-17 12:45:23 -07006626 public void onImeWindowSetOnDisplay(final int pid, final int displayId) {
lumark48973532019-04-12 20:18:15 +08006627 // Don't update process-level configuration for Multi-Client IME process since other
6628 // IMEs on other displays will also receive this configuration change due to IME
6629 // services use the same application config/context.
6630 if (InputMethodSystemProperty.MULTI_CLIENT_IME_ENABLED) return;
lumark5df49512019-04-02 14:56:46 +08006631
Yunfan Chen75157d72018-07-27 14:47:21 +09006632 if (pid == MY_PID || pid < 0) {
6633 if (DEBUG_CONFIGURATION) {
6634 Slog.w(TAG,
6635 "Trying to update display configuration for system/invalid process.");
6636 }
6637 return;
6638 }
Yunfan Chencafc7062019-01-22 17:21:32 +09006639 synchronized (mGlobalLock) {
Louis Chang677921f2019-12-06 16:44:24 +08006640 final DisplayContent displayContent =
Louis Chang149d5c82019-12-30 09:47:39 +08006641 mRootWindowContainer.getDisplayContent(displayId);
Louis Chang677921f2019-12-06 16:44:24 +08006642 if (displayContent == null) {
Yunfan Chencafc7062019-01-22 17:21:32 +09006643 // Call might come when display is not yet added or has been removed.
6644 if (DEBUG_CONFIGURATION) {
6645 Slog.w(TAG, "Trying to update display configuration for non-existing "
6646 + "displayId=" + displayId);
Yunfan Chen75157d72018-07-27 14:47:21 +09006647 }
Yunfan Chencafc7062019-01-22 17:21:32 +09006648 return;
Yunfan Chen75157d72018-07-27 14:47:21 +09006649 }
Michal Karpinski2e0aad22019-04-12 16:22:55 +01006650 final WindowProcessController process = mProcessMap.getProcess(pid);
Yunfan Chencafc7062019-01-22 17:21:32 +09006651 if (process == null) {
6652 if (DEBUG_CONFIGURATION) {
6653 Slog.w(TAG, "Trying to update display configuration for invalid "
6654 + "process, pid=" + pid);
6655 }
6656 return;
6657 }
lumarkddc77fb2019-06-27 22:22:23 +08006658 process.mIsImeProcess = true;
Andrii Kulianfa23a9e2019-10-10 15:15:36 -07006659 process.registerDisplayConfigurationListener(displayContent);
Yunfan Chencafc7062019-01-22 17:21:32 +09006660 }
Yunfan Chen75157d72018-07-27 14:47:21 +09006661 }
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006662
6663 @Override
6664 public void sendActivityResult(int callingUid, IBinder activityToken, String resultWho,
Wale Ogunwale586a8ee2019-06-04 13:44:14 +00006665 int requestCode, int resultCode, Intent data) {
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006666 synchronized (mGlobalLock) {
Wale Ogunwale586a8ee2019-06-04 13:44:14 +00006667 final ActivityRecord r = ActivityRecord.isInStackLocked(activityToken);
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08006668 if (r != null && r.getRootTask() != null) {
Andrii Kulian79d67982019-08-19 11:56:16 -07006669 r.sendResult(callingUid, resultWho, requestCode, resultCode, data);
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006670 }
6671 }
6672 }
6673
6674 @Override
6675 public void clearPendingResultForActivity(IBinder activityToken,
6676 WeakReference<PendingIntentRecord> pir) {
6677 synchronized (mGlobalLock) {
6678 final ActivityRecord r = ActivityRecord.isInStackLocked(activityToken);
6679 if (r != null && r.pendingResults != null) {
6680 r.pendingResults.remove(pir);
6681 }
6682 }
6683 }
6684
6685 @Override
Sunny Goyald40c3452019-03-20 12:46:55 -07006686 public ActivityTokens getTopActivityForTask(int taskId) {
6687 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08006688 final Task task = mRootWindowContainer.anyTaskForId(taskId);
Louis Changcdec0802019-11-11 11:45:07 +08006689 if (task == null) {
Sunny Goyald40c3452019-03-20 12:46:55 -07006690 Slog.w(TAG, "getApplicationThreadForTopActivity failed:"
6691 + " Requested task not found");
6692 return null;
6693 }
Wale Ogunwale21e06482019-11-18 05:14:15 -08006694 final ActivityRecord activity = task.getTopNonFinishingActivity();
Sunny Goyald40c3452019-03-20 12:46:55 -07006695 if (activity == null) {
6696 Slog.w(TAG, "getApplicationThreadForTopActivity failed:"
6697 + " Requested activity not found");
6698 return null;
6699 }
6700 if (!activity.attachedToProcess()) {
6701 Slog.w(TAG, "getApplicationThreadForTopActivity failed: No process for "
6702 + activity);
6703 return null;
6704 }
6705 return new ActivityTokens(activity.appToken, activity.assistToken,
6706 activity.app.getThread());
6707 }
6708 }
6709
6710 @Override
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006711 public IIntentSender getIntentSender(int type, String packageName,
Philip P. Moltmannee295092020-02-10 08:46:26 -08006712 @Nullable String featureId, int callingUid, int userId, IBinder token,
6713 String resultWho, int requestCode, Intent[] intents, String[] resolvedTypes,
6714 int flags, Bundle bOptions) {
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006715 synchronized (mGlobalLock) {
Philip P. Moltmannee295092020-02-10 08:46:26 -08006716 return getIntentSenderLocked(type, packageName, featureId, callingUid, userId,
6717 token, resultWho, requestCode, intents, resolvedTypes, flags, bOptions);
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006718 }
6719 }
Wale Ogunwalec4e63a42018-10-02 13:19:54 -07006720
6721 @Override
6722 public ActivityServiceConnectionsHolder getServiceConnectionsHolder(IBinder token) {
6723 synchronized (mGlobalLock) {
6724 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
6725 if (r == null) {
6726 return null;
6727 }
6728 if (r.mServiceConnectionsHolder == null) {
6729 r.mServiceConnectionsHolder = new ActivityServiceConnectionsHolder(
6730 ActivityTaskManagerService.this, r);
6731 }
6732
6733 return r.mServiceConnectionsHolder;
6734 }
6735 }
Wale Ogunwale214f3482018-10-04 11:00:47 -07006736
6737 @Override
6738 public Intent getHomeIntent() {
6739 synchronized (mGlobalLock) {
6740 return ActivityTaskManagerService.this.getHomeIntent();
6741 }
6742 }
6743
6744 @Override
6745 public boolean startHomeActivity(int userId, String reason) {
6746 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08006747 return mRootWindowContainer.startHomeOnDisplay(userId, reason, DEFAULT_DISPLAY);
Louis Chang89f43fc2018-10-05 10:59:14 +08006748 }
6749 }
6750
6751 @Override
Chilun8b1f1be2019-03-13 17:14:36 +08006752 public boolean startHomeOnDisplay(int userId, String reason, int displayId,
Chilun39232092019-03-22 14:41:30 +08006753 boolean allowInstrumenting, boolean fromHomeKey) {
Chilun5fd56542019-03-21 19:51:37 +08006754 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08006755 return mRootWindowContainer.startHomeOnDisplay(userId, reason, displayId,
Chilun39232092019-03-22 14:41:30 +08006756 allowInstrumenting, fromHomeKey);
Chilun5fd56542019-03-21 19:51:37 +08006757 }
Chilun8b1f1be2019-03-13 17:14:36 +08006758 }
6759
6760 @Override
Louis Chang89f43fc2018-10-05 10:59:14 +08006761 public boolean startHomeOnAllDisplays(int userId, String reason) {
6762 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08006763 return mRootWindowContainer.startHomeOnAllDisplays(userId, reason);
Wale Ogunwale214f3482018-10-04 11:00:47 -07006764 }
6765 }
6766
Riddle Hsua0536432019-02-16 00:38:59 +08006767 @HotPath(caller = HotPath.PROCESS_CHANGE)
Wale Ogunwale214f3482018-10-04 11:00:47 -07006768 @Override
6769 public boolean isFactoryTestProcess(WindowProcessController wpc) {
Riddle Hsua0536432019-02-16 00:38:59 +08006770 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale214f3482018-10-04 11:00:47 -07006771 if (mFactoryTest == FACTORY_TEST_OFF) {
6772 return false;
6773 }
6774 if (mFactoryTest == FACTORY_TEST_LOW_LEVEL && mTopComponent != null
6775 && wpc.mName.equals(mTopComponent.getPackageName())) {
6776 return true;
6777 }
6778 return mFactoryTest == FACTORY_TEST_HIGH_LEVEL
6779 && (wpc.mInfo.flags & FLAG_FACTORY_TEST) != 0;
6780 }
6781 }
6782
6783 @Override
6784 public void updateTopComponentForFactoryTest() {
6785 synchronized (mGlobalLock) {
6786 if (mFactoryTest != FACTORY_TEST_LOW_LEVEL) {
6787 return;
6788 }
6789 final ResolveInfo ri = mContext.getPackageManager()
6790 .resolveActivity(new Intent(Intent.ACTION_FACTORY_TEST), STOCK_PM_FLAGS);
6791 final CharSequence errorMsg;
6792 if (ri != null) {
6793 final ActivityInfo ai = ri.activityInfo;
6794 final ApplicationInfo app = ai.applicationInfo;
6795 if ((app.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
6796 mTopAction = Intent.ACTION_FACTORY_TEST;
6797 mTopData = null;
6798 mTopComponent = new ComponentName(app.packageName, ai.name);
6799 errorMsg = null;
6800 } else {
6801 errorMsg = mContext.getResources().getText(
6802 com.android.internal.R.string.factorytest_not_system);
6803 }
6804 } else {
6805 errorMsg = mContext.getResources().getText(
6806 com.android.internal.R.string.factorytest_no_action);
6807 }
6808 if (errorMsg == null) {
6809 return;
6810 }
6811
6812 mTopAction = null;
6813 mTopData = null;
6814 mTopComponent = null;
6815 mUiHandler.post(() -> {
6816 Dialog d = new FactoryErrorDialog(mUiContext, errorMsg);
6817 d.show();
Wale Ogunwale342fbe92018-10-09 08:44:10 -07006818 mAmInternal.ensureBootCompleted();
Wale Ogunwale214f3482018-10-04 11:00:47 -07006819 });
6820 }
6821 }
Wale Ogunwale31913b52018-10-13 08:29:31 -07006822
Riddle Hsua0536432019-02-16 00:38:59 +08006823 @HotPath(caller = HotPath.PROCESS_CHANGE)
Wale Ogunwale31913b52018-10-13 08:29:31 -07006824 @Override
6825 public void handleAppDied(WindowProcessController wpc, boolean restarting,
6826 Runnable finishInstrumentationCallback) {
Riddle Hsua0536432019-02-16 00:38:59 +08006827 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale31913b52018-10-13 08:29:31 -07006828 // Remove this application's activities from active lists.
Louis Chang149d5c82019-12-30 09:47:39 +08006829 boolean hasVisibleActivities = mRootWindowContainer.handleAppDied(wpc);
Wale Ogunwale31913b52018-10-13 08:29:31 -07006830
6831 wpc.clearRecentTasks();
6832 wpc.clearActivities();
6833
6834 if (wpc.isInstrumenting()) {
6835 finishInstrumentationCallback.run();
6836 }
6837
Jorim Jaggid0752812018-10-16 16:07:20 +02006838 if (!restarting && hasVisibleActivities) {
Riddle Hsua0022cd2019-09-09 21:12:41 +08006839 deferWindowLayout();
Jorim Jaggid0752812018-10-16 16:07:20 +02006840 try {
Louis Chang149d5c82019-12-30 09:47:39 +08006841 if (!mRootWindowContainer.resumeFocusedStacksTopActivities()) {
Jorim Jaggid0752812018-10-16 16:07:20 +02006842 // If there was nothing to resume, and we are not already restarting
6843 // this process, but there is a visible activity that is hosted by the
6844 // process...then make sure all visible activities are running, taking
6845 // care of restarting this process.
Louis Chang149d5c82019-12-30 09:47:39 +08006846 mRootWindowContainer.ensureActivitiesVisible(null, 0,
Jorim Jaggid0752812018-10-16 16:07:20 +02006847 !PRESERVE_WINDOWS);
6848 }
6849 } finally {
Riddle Hsua0022cd2019-09-09 21:12:41 +08006850 continueWindowLayout();
Wale Ogunwale31913b52018-10-13 08:29:31 -07006851 }
Wale Ogunwale31913b52018-10-13 08:29:31 -07006852 }
6853 }
6854 }
6855
6856 @Override
6857 public void closeSystemDialogs(String reason) {
6858 enforceNotIsolatedCaller("closeSystemDialogs");
6859
6860 final int pid = Binder.getCallingPid();
6861 final int uid = Binder.getCallingUid();
6862 final long origId = Binder.clearCallingIdentity();
6863 try {
6864 synchronized (mGlobalLock) {
6865 // Only allow this from foreground processes, so that background
6866 // applications can't abuse it to prevent system UI from being shown.
6867 if (uid >= FIRST_APPLICATION_UID) {
Michal Karpinski2e0aad22019-04-12 16:22:55 +01006868 final WindowProcessController proc = mProcessMap.getProcess(pid);
Wale Ogunwale31913b52018-10-13 08:29:31 -07006869 if (!proc.isPerceptible()) {
6870 Slog.w(TAG, "Ignoring closeSystemDialogs " + reason
6871 + " from background process " + proc);
6872 return;
6873 }
6874 }
Wale Ogunwale31913b52018-10-13 08:29:31 -07006875 mWindowManager.closeSystemDialogs(reason);
6876
Louis Chang149d5c82019-12-30 09:47:39 +08006877 mRootWindowContainer.closeSystemDialogs();
Wale Ogunwale31913b52018-10-13 08:29:31 -07006878 }
Wale Ogunwale2ea36d42018-10-18 10:27:31 -07006879 // Call into AM outside the synchronized block.
6880 mAmInternal.broadcastCloseSystemDialogs(reason);
Wale Ogunwale31913b52018-10-13 08:29:31 -07006881 } finally {
6882 Binder.restoreCallingIdentity(origId);
6883 }
6884 }
6885
6886 @Override
6887 public void cleanupDisabledPackageComponents(
6888 String packageName, Set<String> disabledClasses, int userId, boolean booted) {
6889 synchronized (mGlobalLock) {
6890 // Clean-up disabled activities.
Louis Chang149d5c82019-12-30 09:47:39 +08006891 if (mRootWindowContainer.finishDisabledPackageActivities(
Wale Ogunwale31913b52018-10-13 08:29:31 -07006892 packageName, disabledClasses, true, false, userId) && booted) {
Louis Chang149d5c82019-12-30 09:47:39 +08006893 mRootWindowContainer.resumeFocusedStacksTopActivities();
Riddle Hsufc8ab262019-12-31 15:31:24 +08006894 mStackSupervisor.scheduleIdle();
Wale Ogunwale31913b52018-10-13 08:29:31 -07006895 }
6896
6897 // Clean-up disabled tasks
6898 getRecentTasks().cleanupDisabledPackageTasksLocked(
6899 packageName, disabledClasses, userId);
6900 }
6901 }
6902
6903 @Override
6904 public boolean onForceStopPackage(String packageName, boolean doit, boolean evenPersistent,
6905 int userId) {
6906 synchronized (mGlobalLock) {
6907
6908 boolean didSomething =
6909 getActivityStartController().clearPendingActivityLaunches(packageName);
Louis Chang149d5c82019-12-30 09:47:39 +08006910 didSomething |= mRootWindowContainer.finishDisabledPackageActivities(packageName,
Wale Ogunwale31913b52018-10-13 08:29:31 -07006911 null, doit, evenPersistent, userId);
6912 return didSomething;
6913 }
6914 }
6915
6916 @Override
6917 public void resumeTopActivities(boolean scheduleIdle) {
6918 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08006919 mRootWindowContainer.resumeFocusedStacksTopActivities();
Wale Ogunwale31913b52018-10-13 08:29:31 -07006920 if (scheduleIdle) {
Riddle Hsufc8ab262019-12-31 15:31:24 +08006921 mStackSupervisor.scheduleIdle();
Wale Ogunwale31913b52018-10-13 08:29:31 -07006922 }
6923 }
6924 }
6925
Riddle Hsua0536432019-02-16 00:38:59 +08006926 @HotPath(caller = HotPath.PROCESS_CHANGE)
Wale Ogunwale31913b52018-10-13 08:29:31 -07006927 @Override
6928 public void preBindApplication(WindowProcessController wpc) {
Riddle Hsua0536432019-02-16 00:38:59 +08006929 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale31913b52018-10-13 08:29:31 -07006930 mStackSupervisor.getActivityMetricsLogger().notifyBindApplication(wpc.mInfo);
6931 }
6932 }
6933
Riddle Hsua0536432019-02-16 00:38:59 +08006934 @HotPath(caller = HotPath.PROCESS_CHANGE)
Wale Ogunwale31913b52018-10-13 08:29:31 -07006935 @Override
6936 public boolean attachApplication(WindowProcessController wpc) throws RemoteException {
Riddle Hsua0536432019-02-16 00:38:59 +08006937 synchronized (mGlobalLockWithoutBoost) {
Riddle Hsu2ca561b2019-10-08 21:58:58 +08006938 if (Trace.isTagEnabled(TRACE_TAG_WINDOW_MANAGER)) {
6939 Trace.traceBegin(TRACE_TAG_WINDOW_MANAGER, "attachApplication:" + wpc.mName);
6940 }
6941 try {
Louis Chang149d5c82019-12-30 09:47:39 +08006942 return mRootWindowContainer.attachApplication(wpc);
Riddle Hsu2ca561b2019-10-08 21:58:58 +08006943 } finally {
6944 Trace.traceEnd(TRACE_TAG_WINDOW_MANAGER);
6945 }
Wale Ogunwale31913b52018-10-13 08:29:31 -07006946 }
6947 }
6948
6949 @Override
6950 public void notifyLockedProfile(@UserIdInt int userId, int currentUserId) {
6951 try {
6952 if (!AppGlobals.getPackageManager().isUidPrivileged(Binder.getCallingUid())) {
6953 throw new SecurityException("Only privileged app can call notifyLockedProfile");
6954 }
6955 } catch (RemoteException ex) {
6956 throw new SecurityException("Fail to check is caller a privileged app", ex);
6957 }
6958
6959 synchronized (mGlobalLock) {
6960 final long ident = Binder.clearCallingIdentity();
6961 try {
6962 if (mAmInternal.shouldConfirmCredentials(userId)) {
6963 if (mKeyguardController.isKeyguardLocked()) {
6964 // Showing launcher to avoid user entering credential twice.
6965 startHomeActivity(currentUserId, "notifyLockedProfile");
6966 }
Louis Chang149d5c82019-12-30 09:47:39 +08006967 mRootWindowContainer.lockAllProfileTasks(userId);
Wale Ogunwale31913b52018-10-13 08:29:31 -07006968 }
6969 } finally {
6970 Binder.restoreCallingIdentity(ident);
6971 }
6972 }
6973 }
6974
6975 @Override
6976 public void startConfirmDeviceCredentialIntent(Intent intent, Bundle options) {
6977 mAmInternal.enforceCallingPermission(
6978 MANAGE_ACTIVITY_STACKS, "startConfirmDeviceCredentialIntent");
6979
6980 synchronized (mGlobalLock) {
6981 final long ident = Binder.clearCallingIdentity();
6982 try {
Pavel Grafovc0fe0a02019-05-13 18:19:33 +01006983 intent.addFlags(FLAG_ACTIVITY_NEW_TASK | FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
6984 final ActivityOptions activityOptions = options != null
Wale Ogunwale31913b52018-10-13 08:29:31 -07006985 ? new ActivityOptions(options) : ActivityOptions.makeBasic();
Wale Ogunwale31913b52018-10-13 08:29:31 -07006986 mContext.startActivityAsUser(intent, activityOptions.toBundle(),
6987 UserHandle.CURRENT);
6988 } finally {
6989 Binder.restoreCallingIdentity(ident);
6990 }
6991 }
6992 }
6993
6994 @Override
6995 public void writeActivitiesToProto(ProtoOutputStream proto) {
6996 synchronized (mGlobalLock) {
6997 // The output proto of "activity --proto activities"
Wale Ogunwalef342f062020-01-27 07:34:13 -08006998 mRootWindowContainer.dumpDebug(
6999 proto, ROOT_WINDOW_CONTAINER, WindowTraceLogLevel.ALL);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007000 }
7001 }
7002
7003 @Override
7004 public void saveANRState(String reason) {
7005 synchronized (mGlobalLock) {
7006 final StringWriter sw = new StringWriter();
7007 final PrintWriter pw = new FastPrintWriter(sw, false, 1024);
7008 pw.println(" ANR time: " + DateFormat.getDateTimeInstance().format(new Date()));
7009 if (reason != null) {
7010 pw.println(" Reason: " + reason);
7011 }
7012 pw.println();
7013 getActivityStartController().dump(pw, " ", null);
7014 pw.println();
7015 pw.println("-------------------------------------------------------------------------------");
7016 dumpActivitiesLocked(null /* fd */, pw, null /* args */, 0 /* opti */,
7017 true /* dumpAll */, false /* dumpClient */, null /* dumpPackage */,
7018 "" /* header */);
7019 pw.println();
7020 pw.close();
7021
7022 mLastANRState = sw.toString();
7023 }
7024 }
7025
7026 @Override
7027 public void clearSavedANRState() {
7028 synchronized (mGlobalLock) {
7029 mLastANRState = null;
7030 }
7031 }
7032
7033 @Override
7034 public void dump(String cmd, FileDescriptor fd, PrintWriter pw, String[] args, int opti,
7035 boolean dumpAll, boolean dumpClient, String dumpPackage) {
7036 synchronized (mGlobalLock) {
7037 if (DUMP_ACTIVITIES_CMD.equals(cmd) || DUMP_ACTIVITIES_SHORT_CMD.equals(cmd)) {
7038 dumpActivitiesLocked(fd, pw, args, opti, dumpAll, dumpClient, dumpPackage);
7039 } else if (DUMP_LASTANR_CMD.equals(cmd)) {
7040 dumpLastANRLocked(pw);
7041 } else if (DUMP_LASTANR_TRACES_CMD.equals(cmd)) {
7042 dumpLastANRTracesLocked(pw);
7043 } else if (DUMP_STARTER_CMD.equals(cmd)) {
7044 dumpActivityStarterLocked(pw, dumpPackage);
7045 } else if (DUMP_CONTAINERS_CMD.equals(cmd)) {
7046 dumpActivityContainersLocked(pw);
7047 } else if (DUMP_RECENTS_CMD.equals(cmd) || DUMP_RECENTS_SHORT_CMD.equals(cmd)) {
7048 if (getRecentTasks() != null) {
7049 getRecentTasks().dump(pw, dumpAll, dumpPackage);
7050 }
7051 }
7052 }
7053 }
7054
7055 @Override
7056 public boolean dumpForProcesses(FileDescriptor fd, PrintWriter pw, boolean dumpAll,
7057 String dumpPackage, int dumpAppId, boolean needSep, boolean testPssMode,
7058 int wakefulness) {
7059 synchronized (mGlobalLock) {
7060 if (mHomeProcess != null && (dumpPackage == null
7061 || mHomeProcess.mPkgList.contains(dumpPackage))) {
7062 if (needSep) {
7063 pw.println();
7064 needSep = false;
7065 }
7066 pw.println(" mHomeProcess: " + mHomeProcess);
7067 }
7068 if (mPreviousProcess != null && (dumpPackage == null
7069 || mPreviousProcess.mPkgList.contains(dumpPackage))) {
7070 if (needSep) {
7071 pw.println();
7072 needSep = false;
7073 }
7074 pw.println(" mPreviousProcess: " + mPreviousProcess);
7075 }
7076 if (dumpAll && (mPreviousProcess == null || dumpPackage == null
7077 || mPreviousProcess.mPkgList.contains(dumpPackage))) {
7078 StringBuilder sb = new StringBuilder(128);
7079 sb.append(" mPreviousProcessVisibleTime: ");
7080 TimeUtils.formatDuration(mPreviousProcessVisibleTime, sb);
7081 pw.println(sb);
7082 }
7083 if (mHeavyWeightProcess != null && (dumpPackage == null
7084 || mHeavyWeightProcess.mPkgList.contains(dumpPackage))) {
7085 if (needSep) {
7086 pw.println();
7087 needSep = false;
7088 }
7089 pw.println(" mHeavyWeightProcess: " + mHeavyWeightProcess);
7090 }
7091 if (dumpPackage == null) {
7092 pw.println(" mGlobalConfiguration: " + getGlobalConfiguration());
Louis Chang149d5c82019-12-30 09:47:39 +08007093 mRootWindowContainer.dumpDisplayConfigs(pw, " ");
Wale Ogunwale31913b52018-10-13 08:29:31 -07007094 }
7095 if (dumpAll) {
7096 if (dumpPackage == null) {
7097 pw.println(" mConfigWillChange: "
7098 + getTopDisplayFocusedStack().mConfigWillChange);
7099 }
7100 if (mCompatModePackages.getPackages().size() > 0) {
7101 boolean printed = false;
7102 for (Map.Entry<String, Integer> entry
7103 : mCompatModePackages.getPackages().entrySet()) {
7104 String pkg = entry.getKey();
7105 int mode = entry.getValue();
7106 if (dumpPackage != null && !dumpPackage.equals(pkg)) {
7107 continue;
7108 }
7109 if (!printed) {
7110 pw.println(" mScreenCompatPackages:");
7111 printed = true;
7112 }
7113 pw.println(" " + pkg + ": " + mode);
7114 }
7115 }
7116 }
7117
7118 if (dumpPackage == null) {
7119 pw.println(" mWakefulness="
7120 + PowerManagerInternal.wakefulnessToString(wakefulness));
Louis Chang149d5c82019-12-30 09:47:39 +08007121 pw.println(" mSleepTokens=" + mRootWindowContainer.mSleepTokens);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007122 if (mRunningVoice != null) {
7123 pw.println(" mRunningVoice=" + mRunningVoice);
7124 pw.println(" mVoiceWakeLock" + mVoiceWakeLock);
7125 }
7126 pw.println(" mSleeping=" + mSleeping);
7127 pw.println(" mShuttingDown=" + mShuttingDown + " mTestPssMode=" + testPssMode);
7128 pw.println(" mVrController=" + mVrController);
7129 }
7130 if (mCurAppTimeTracker != null) {
7131 mCurAppTimeTracker.dumpWithHeader(pw, " ", true);
7132 }
7133 if (mAllowAppSwitchUids.size() > 0) {
7134 boolean printed = false;
7135 for (int i = 0; i < mAllowAppSwitchUids.size(); i++) {
7136 ArrayMap<String, Integer> types = mAllowAppSwitchUids.valueAt(i);
7137 for (int j = 0; j < types.size(); j++) {
7138 if (dumpPackage == null ||
7139 UserHandle.getAppId(types.valueAt(j).intValue()) == dumpAppId) {
7140 if (needSep) {
7141 pw.println();
7142 needSep = false;
7143 }
7144 if (!printed) {
7145 pw.println(" mAllowAppSwitchUids:");
7146 printed = true;
7147 }
7148 pw.print(" User ");
7149 pw.print(mAllowAppSwitchUids.keyAt(i));
7150 pw.print(": Type ");
7151 pw.print(types.keyAt(j));
7152 pw.print(" = ");
7153 UserHandle.formatUid(pw, types.valueAt(j).intValue());
7154 pw.println();
7155 }
7156 }
7157 }
7158 }
7159 if (dumpPackage == null) {
7160 if (mController != null) {
7161 pw.println(" mController=" + mController
7162 + " mControllerIsAMonkey=" + mControllerIsAMonkey);
7163 }
Andrii Kulianc598b2d2019-02-07 17:16:38 -08007164 pw.println(" mGoingToSleepWakeLock=" + mStackSupervisor.mGoingToSleepWakeLock);
7165 pw.println(" mLaunchingActivityWakeLock="
7166 + mStackSupervisor.mLaunchingActivityWakeLock);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007167 }
7168
7169 return needSep;
7170 }
7171 }
7172
7173 @Override
sanryhuang498e77e2018-12-06 14:57:01 +08007174 public void writeProcessesToProto(ProtoOutputStream proto, String dumpPackage,
7175 int wakeFullness, boolean testPssMode) {
Wale Ogunwale31913b52018-10-13 08:29:31 -07007176 synchronized (mGlobalLock) {
7177 if (dumpPackage == null) {
Jeffrey Huangcb782852019-12-05 11:28:11 -08007178 getGlobalConfiguration().dumpDebug(proto, GLOBAL_CONFIGURATION);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007179 proto.write(CONFIG_WILL_CHANGE, getTopDisplayFocusedStack().mConfigWillChange);
sanryhuang498e77e2018-12-06 14:57:01 +08007180 writeSleepStateToProto(proto, wakeFullness, testPssMode);
7181 if (mRunningVoice != null) {
7182 final long vrToken = proto.start(
7183 ActivityManagerServiceDumpProcessesProto.RUNNING_VOICE);
7184 proto.write(ActivityManagerServiceDumpProcessesProto.Voice.SESSION,
7185 mRunningVoice.toString());
Jeffrey Huangcb782852019-12-05 11:28:11 -08007186 mVoiceWakeLock.dumpDebug(
sanryhuang498e77e2018-12-06 14:57:01 +08007187 proto, ActivityManagerServiceDumpProcessesProto.Voice.WAKELOCK);
7188 proto.end(vrToken);
7189 }
Jeffrey Huangcb782852019-12-05 11:28:11 -08007190 mVrController.dumpDebug(proto,
sanryhuang498e77e2018-12-06 14:57:01 +08007191 ActivityManagerServiceDumpProcessesProto.VR_CONTROLLER);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007192 if (mController != null) {
7193 final long token = proto.start(CONTROLLER);
Wally Yau0eb29f62020-01-08 10:16:43 -08007194 proto.write(ActivityManagerServiceDumpProcessesProto.Controller.CONTROLLER,
7195 mController.toString());
Wale Ogunwale31913b52018-10-13 08:29:31 -07007196 proto.write(IS_A_MONKEY, mControllerIsAMonkey);
7197 proto.end(token);
7198 }
Jeffrey Huangcb782852019-12-05 11:28:11 -08007199 mStackSupervisor.mGoingToSleepWakeLock.dumpDebug(proto, GOING_TO_SLEEP);
7200 mStackSupervisor.mLaunchingActivityWakeLock.dumpDebug(proto,
Andrii Kulianc598b2d2019-02-07 17:16:38 -08007201 LAUNCHING_ACTIVITY);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007202 }
7203
7204 if (mHomeProcess != null && (dumpPackage == null
7205 || mHomeProcess.mPkgList.contains(dumpPackage))) {
Jeffrey Huangcb782852019-12-05 11:28:11 -08007206 mHomeProcess.dumpDebug(proto, HOME_PROC);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007207 }
7208
7209 if (mPreviousProcess != null && (dumpPackage == null
7210 || mPreviousProcess.mPkgList.contains(dumpPackage))) {
Jeffrey Huangcb782852019-12-05 11:28:11 -08007211 mPreviousProcess.dumpDebug(proto, PREVIOUS_PROC);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007212 proto.write(PREVIOUS_PROC_VISIBLE_TIME_MS, mPreviousProcessVisibleTime);
7213 }
7214
7215 if (mHeavyWeightProcess != null && (dumpPackage == null
7216 || mHeavyWeightProcess.mPkgList.contains(dumpPackage))) {
Jeffrey Huangcb782852019-12-05 11:28:11 -08007217 mHeavyWeightProcess.dumpDebug(proto, HEAVY_WEIGHT_PROC);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007218 }
7219
7220 for (Map.Entry<String, Integer> entry
7221 : mCompatModePackages.getPackages().entrySet()) {
7222 String pkg = entry.getKey();
7223 int mode = entry.getValue();
7224 if (dumpPackage == null || dumpPackage.equals(pkg)) {
7225 long compatToken = proto.start(SCREEN_COMPAT_PACKAGES);
7226 proto.write(PACKAGE, pkg);
7227 proto.write(MODE, mode);
7228 proto.end(compatToken);
7229 }
7230 }
7231
7232 if (mCurAppTimeTracker != null) {
Jeffrey Huangcb782852019-12-05 11:28:11 -08007233 mCurAppTimeTracker.dumpDebug(proto, CURRENT_TRACKER, true);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007234 }
7235
7236 }
7237 }
7238
7239 @Override
7240 public boolean dumpActivity(FileDescriptor fd, PrintWriter pw, String name,
7241 String[] args, int opti, boolean dumpAll, boolean dumpVisibleStacksOnly,
7242 boolean dumpFocusedStackOnly) {
Riddle Hsud7cd8ed2019-07-16 18:19:01 +08007243 return ActivityTaskManagerService.this.dumpActivity(fd, pw, name, args, opti, dumpAll,
7244 dumpVisibleStacksOnly, dumpFocusedStackOnly);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007245 }
7246
7247 @Override
Wale Ogunwaled4d67d02018-10-25 18:09:39 -07007248 public void dumpForOom(PrintWriter pw) {
7249 synchronized (mGlobalLock) {
7250 pw.println(" mHomeProcess: " + mHomeProcess);
7251 pw.println(" mPreviousProcess: " + mPreviousProcess);
7252 if (mHeavyWeightProcess != null) {
7253 pw.println(" mHeavyWeightProcess: " + mHeavyWeightProcess);
7254 }
7255 }
7256 }
7257
7258 @Override
Wale Ogunwale31913b52018-10-13 08:29:31 -07007259 public boolean canGcNow() {
7260 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08007261 return isSleeping() || mRootWindowContainer.allResumedActivitiesIdle();
Wale Ogunwale31913b52018-10-13 08:29:31 -07007262 }
7263 }
7264
Riddle Hsua0536432019-02-16 00:38:59 +08007265 @HotPath(caller = HotPath.OOM_ADJUSTMENT)
Wale Ogunwale31913b52018-10-13 08:29:31 -07007266 @Override
7267 public WindowProcessController getTopApp() {
Riddle Hsud7088f82019-01-30 13:04:50 +08007268 synchronized (mGlobalLockWithoutBoost) {
Louis Chang149d5c82019-12-30 09:47:39 +08007269 if (mRootWindowContainer == null) {
7270 // Return null if mRootWindowContainer not yet initialize, while update
Louis Chang3ff72a82019-12-17 12:12:59 +08007271 // oomadj after AMS created.
7272 return null;
7273 }
Louis Chang149d5c82019-12-30 09:47:39 +08007274 final ActivityRecord top = mRootWindowContainer.getTopResumedActivity();
Wale Ogunwale31913b52018-10-13 08:29:31 -07007275 return top != null ? top.app : null;
7276 }
7277 }
7278
Riddle Hsua0536432019-02-16 00:38:59 +08007279 @HotPath(caller = HotPath.OOM_ADJUSTMENT)
Wale Ogunwale31913b52018-10-13 08:29:31 -07007280 @Override
7281 public void rankTaskLayersIfNeeded() {
Riddle Hsud7088f82019-01-30 13:04:50 +08007282 synchronized (mGlobalLockWithoutBoost) {
Louis Chang149d5c82019-12-30 09:47:39 +08007283 if (mRootWindowContainer != null) {
7284 mRootWindowContainer.rankTaskLayersIfNeeded();
Wale Ogunwale31913b52018-10-13 08:29:31 -07007285 }
7286 }
7287 }
7288
7289 @Override
7290 public void scheduleDestroyAllActivities(String reason) {
7291 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08007292 mRootWindowContainer.scheduleDestroyAllActivities(reason);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007293 }
7294 }
7295
7296 @Override
7297 public void removeUser(int userId) {
7298 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08007299 mRootWindowContainer.removeUser(userId);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007300 }
7301 }
7302
7303 @Override
7304 public boolean switchUser(int userId, UserState userState) {
7305 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08007306 return mRootWindowContainer.switchUser(userId, userState);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007307 }
7308 }
7309
7310 @Override
7311 public void onHandleAppCrash(WindowProcessController wpc) {
7312 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08007313 mRootWindowContainer.handleAppCrash(wpc);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007314 }
7315 }
Wale Ogunwale64258362018-10-16 15:13:37 -07007316
7317 @Override
7318 public int finishTopCrashedActivities(WindowProcessController crashedApp, String reason) {
7319 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08007320 return mRootWindowContainer.finishTopCrashedActivities(crashedApp, reason);
Wale Ogunwale64258362018-10-16 15:13:37 -07007321 }
7322 }
Wale Ogunwalebff2df42018-10-18 17:09:19 -07007323
Riddle Hsua0536432019-02-16 00:38:59 +08007324 @HotPath(caller = HotPath.OOM_ADJUSTMENT)
Wale Ogunwalebff2df42018-10-18 17:09:19 -07007325 @Override
7326 public void onUidActive(int uid, int procState) {
Riddle Hsua0536432019-02-16 00:38:59 +08007327 mActiveUids.onUidActive(uid, procState);
Wale Ogunwalebff2df42018-10-18 17:09:19 -07007328 }
7329
Riddle Hsua0536432019-02-16 00:38:59 +08007330 @HotPath(caller = HotPath.OOM_ADJUSTMENT)
Wale Ogunwalebff2df42018-10-18 17:09:19 -07007331 @Override
7332 public void onUidInactive(int uid) {
Riddle Hsua0536432019-02-16 00:38:59 +08007333 mActiveUids.onUidInactive(uid);
Wale Ogunwalebff2df42018-10-18 17:09:19 -07007334 }
7335
Riddle Hsua0536432019-02-16 00:38:59 +08007336 @HotPath(caller = HotPath.OOM_ADJUSTMENT)
Wale Ogunwalebff2df42018-10-18 17:09:19 -07007337 @Override
7338 public void onActiveUidsCleared() {
Riddle Hsua0536432019-02-16 00:38:59 +08007339 mActiveUids.onActiveUidsCleared();
Wale Ogunwalebff2df42018-10-18 17:09:19 -07007340 }
7341
Riddle Hsua0536432019-02-16 00:38:59 +08007342 @HotPath(caller = HotPath.OOM_ADJUSTMENT)
Wale Ogunwalebff2df42018-10-18 17:09:19 -07007343 @Override
7344 public void onUidProcStateChanged(int uid, int procState) {
Riddle Hsua0536432019-02-16 00:38:59 +08007345 mActiveUids.onUidProcStateChanged(uid, procState);
Wale Ogunwalebff2df42018-10-18 17:09:19 -07007346 }
Wale Ogunwale9de19442018-10-18 19:05:03 -07007347
7348 @Override
7349 public void onUidAddedToPendingTempWhitelist(int uid, String tag) {
Riddle Hsud7088f82019-01-30 13:04:50 +08007350 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale9de19442018-10-18 19:05:03 -07007351 mPendingTempWhitelist.put(uid, tag);
7352 }
7353 }
7354
7355 @Override
7356 public void onUidRemovedFromPendingTempWhitelist(int uid) {
Riddle Hsud7088f82019-01-30 13:04:50 +08007357 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale9de19442018-10-18 19:05:03 -07007358 mPendingTempWhitelist.remove(uid);
7359 }
7360 }
Wale Ogunwalee2172292018-10-25 10:11:10 -07007361
7362 @Override
7363 public boolean handleAppCrashInActivityController(String processName, int pid,
7364 String shortMsg, String longMsg, long timeMillis, String stackTrace,
7365 Runnable killCrashingAppCallback) {
7366 synchronized (mGlobalLock) {
7367 if (mController == null) {
7368 return false;
7369 }
7370
7371 try {
7372 if (!mController.appCrashed(processName, pid, shortMsg, longMsg, timeMillis,
7373 stackTrace)) {
7374 killCrashingAppCallback.run();
7375 return true;
7376 }
7377 } catch (RemoteException e) {
7378 mController = null;
7379 Watchdog.getInstance().setActivityController(null);
7380 }
7381 return false;
7382 }
7383 }
Wale Ogunwaled7889f52018-10-25 11:03:20 -07007384
7385 @Override
7386 public void removeRecentTasksByPackageName(String packageName, int userId) {
7387 synchronized (mGlobalLock) {
7388 mRecentTasks.removeTasksByPackageName(packageName, userId);
7389 }
7390 }
7391
7392 @Override
7393 public void cleanupRecentTasksForUser(int userId) {
7394 synchronized (mGlobalLock) {
7395 mRecentTasks.cleanupLocked(userId);
7396 }
7397 }
7398
7399 @Override
7400 public void loadRecentTasksForUser(int userId) {
7401 synchronized (mGlobalLock) {
7402 mRecentTasks.loadUserRecentsLocked(userId);
7403 }
7404 }
7405
7406 @Override
7407 public void onPackagesSuspendedChanged(String[] packages, boolean suspended, int userId) {
7408 synchronized (mGlobalLock) {
7409 mRecentTasks.onPackagesSuspendedChanged(packages, suspended, userId);
7410 }
7411 }
7412
7413 @Override
7414 public void flushRecentTasks() {
7415 mRecentTasks.flush();
7416 }
Wale Ogunwaled4d67d02018-10-25 18:09:39 -07007417
7418 @Override
7419 public WindowProcessController getHomeProcess() {
7420 synchronized (mGlobalLock) {
7421 return mHomeProcess;
7422 }
7423 }
7424
7425 @Override
7426 public WindowProcessController getPreviousProcess() {
7427 synchronized (mGlobalLock) {
7428 return mPreviousProcess;
7429 }
7430 }
Wale Ogunwale27c48ae2018-10-25 19:01:01 -07007431
7432 @Override
7433 public void clearLockedTasks(String reason) {
7434 synchronized (mGlobalLock) {
7435 getLockTaskController().clearLockedTasks(reason);
7436 }
7437 }
7438
7439 @Override
7440 public void updateUserConfiguration() {
7441 synchronized (mGlobalLock) {
7442 final Configuration configuration = new Configuration(getGlobalConfiguration());
7443 final int currentUserId = mAmInternal.getCurrentUserId();
7444 Settings.System.adjustConfigurationForUser(mContext.getContentResolver(),
7445 configuration, currentUserId, Settings.System.canWrite(mContext));
7446 updateConfigurationLocked(configuration, null /* starting */,
7447 false /* initLocale */, false /* persistent */, currentUserId,
7448 false /* deferResume */);
7449 }
7450 }
Wale Ogunwale387b34c2018-10-25 19:59:40 -07007451
7452 @Override
7453 public boolean canShowErrorDialogs() {
7454 synchronized (mGlobalLock) {
7455 return mShowDialogs && !mSleeping && !mShuttingDown
7456 && !mKeyguardController.isKeyguardOrAodShowing(DEFAULT_DISPLAY)
7457 && !hasUserRestriction(UserManager.DISALLOW_SYSTEM_ERROR_DIALOGS,
7458 mAmInternal.getCurrentUserId())
7459 && !(UserManager.isDeviceInDemoMode(mContext)
7460 && mAmInternal.getCurrentUser().isDemo());
7461 }
7462 }
Wale Ogunwale1f5e53d2018-11-05 05:12:46 -08007463
7464 @Override
7465 public void setProfileApp(String profileApp) {
7466 synchronized (mGlobalLock) {
7467 mProfileApp = profileApp;
7468 }
7469 }
7470
7471 @Override
7472 public void setProfileProc(WindowProcessController wpc) {
7473 synchronized (mGlobalLock) {
7474 mProfileProc = wpc;
7475 }
7476 }
7477
7478 @Override
7479 public void setProfilerInfo(ProfilerInfo profilerInfo) {
7480 synchronized (mGlobalLock) {
7481 mProfilerInfo = profilerInfo;
7482 }
7483 }
Igor Murashkinc0b47e42018-11-07 15:54:18 -08007484
7485 @Override
7486 public ActivityMetricsLaunchObserverRegistry getLaunchObserverRegistry() {
7487 synchronized (mGlobalLock) {
7488 return mStackSupervisor.getActivityMetricsLogger().getLaunchObserverRegistry();
7489 }
7490 }
Winson Chung3fb0f252019-01-08 17:41:55 -08007491
7492 @Override
Jorim Jaggi925bb3c2019-06-04 19:51:45 +02007493 public ActivityManager.TaskSnapshot getTaskSnapshotNoRestore(int taskId,
Peter Kalauskas4dc04602020-02-12 18:49:03 -08007494 boolean isLowResolution) {
7495 return ActivityTaskManagerService.this.getTaskSnapshot(taskId, isLowResolution,
Jorim Jaggi925bb3c2019-06-04 19:51:45 +02007496 false /* restoreFromDisk */);
Winson Chung3fb0f252019-01-08 17:41:55 -08007497 }
Michal Karpinskicc88d7e2019-01-24 15:32:12 +00007498
7499 @Override
7500 public boolean isUidForeground(int uid) {
7501 synchronized (mGlobalLock) {
7502 return ActivityTaskManagerService.this.isUidForeground(uid);
7503 }
7504 }
Michal Karpinski4026cae2019-02-12 11:51:47 +00007505
7506 @Override
Ricky Wai96f5c352019-04-10 18:40:17 +01007507 public void setDeviceOwnerUid(int uid) {
Michal Karpinski4026cae2019-02-12 11:51:47 +00007508 synchronized (mGlobalLock) {
Ricky Wai96f5c352019-04-10 18:40:17 +01007509 ActivityTaskManagerService.this.setDeviceOwnerUid(uid);
Michal Karpinski4026cae2019-02-12 11:51:47 +00007510 }
7511 }
Ricky Wai2452e2d2019-03-18 19:19:08 +00007512
7513 @Override
7514 public void setCompanionAppPackages(int userId, Set<String> companionAppPackages) {
Michal Karpinskida34cd42019-04-02 19:46:52 +01007515 // Translate package names into UIDs
7516 final Set<Integer> result = new HashSet<>();
Ricky Wai2452e2d2019-03-18 19:19:08 +00007517 for (String pkg : companionAppPackages) {
Michal Karpinskida34cd42019-04-02 19:46:52 +01007518 final int uid = getPackageManagerInternalLocked().getPackageUid(pkg, 0, userId);
7519 if (uid >= 0) {
7520 result.add(uid);
7521 }
Ricky Wai2452e2d2019-03-18 19:19:08 +00007522 }
7523 synchronized (mGlobalLock) {
Michal Karpinskida34cd42019-04-02 19:46:52 +01007524 mCompanionAppUidsMap.put(userId, result);
Ricky Wai2452e2d2019-03-18 19:19:08 +00007525 }
7526 }
Wale Ogunwale6767eae2018-05-03 15:52:51 -07007527 }
Wale Ogunwaleb73f3962018-11-20 07:58:22 -08007528}