blob: 7e974608f9b7e32cb47b802b24cae84215b2e746 [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;
Galia Peycheva45f48d32020-02-20 15:39:10 +010034import static android.app.WindowConfiguration.ACTIVITY_TYPE_DREAM;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -070035import static android.app.WindowConfiguration.WINDOWING_MODE_FREEFORM;
36import static android.app.WindowConfiguration.WINDOWING_MODE_FULLSCREEN;
Wale Ogunwale65ebd952018-04-25 15:41:44 -070037import static android.app.WindowConfiguration.WINDOWING_MODE_PINNED;
38import static android.app.WindowConfiguration.WINDOWING_MODE_SPLIT_SCREEN_PRIMARY;
39import static android.app.WindowConfiguration.WINDOWING_MODE_UNDEFINED;
Wale Ogunwale31913b52018-10-13 08:29:31 -070040import static android.content.Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -070041import static android.content.Intent.FLAG_ACTIVITY_NEW_TASK;
Wale Ogunwale214f3482018-10-04 11:00:47 -070042import static android.content.pm.ApplicationInfo.FLAG_FACTORY_TEST;
Wale Ogunwale342fbe92018-10-09 08:44:10 -070043import static android.content.pm.ConfigurationInfo.GL_ES_VERSION_UNDEFINED;
Wale Ogunwalea6191b42018-05-09 07:41:32 -070044import static android.content.pm.PackageManager.FEATURE_ACTIVITIES_ON_SECONDARY_DISPLAYS;
Sergey Nikolaienkov30c947d2020-04-15 19:55:48 +020045import static android.content.pm.PackageManager.FEATURE_CANT_SAVE_STATE;
Wale Ogunwalea6191b42018-05-09 07:41:32 -070046import static android.content.pm.PackageManager.FEATURE_FREEFORM_WINDOW_MANAGEMENT;
Sergey Nikolaienkov30c947d2020-04-15 19:55:48 +020047import static android.content.pm.PackageManager.FEATURE_LEANBACK;
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;
Louis Changa009c762020-02-26 11:21:31 +0800126import static com.android.server.wm.WindowContainer.POSITION_TOP;
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700127
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700128import android.Manifest;
Riddle Hsua0022cd2019-09-09 21:12:41 +0800129import android.annotation.IntDef;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700130import android.annotation.NonNull;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700131import android.annotation.Nullable;
132import android.annotation.UserIdInt;
133import android.app.Activity;
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700134import android.app.ActivityManager;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700135import android.app.ActivityManagerInternal;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700136import android.app.ActivityOptions;
137import android.app.ActivityTaskManager;
Wale Ogunwalef6733932018-06-27 05:14:34 -0700138import android.app.ActivityThread;
139import android.app.AlertDialog;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700140import android.app.AppGlobals;
Michal Karpinski15486842019-04-25 17:33:42 +0100141import android.app.AppOpsManager;
Evan Rosky4505b352018-09-06 11:20:40 -0700142import android.app.Dialog;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700143import android.app.IActivityController;
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700144import android.app.IActivityTaskManager;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700145import android.app.IApplicationThread;
146import android.app.IAssistDataReceiver;
Wale Ogunwale53783742018-09-16 10:21:51 -0700147import android.app.INotificationManager;
Mark Renouf446251d2019-04-26 10:22:41 -0400148import android.app.IRequestFinishCallback;
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;
Galia Peycheva6861e912019-08-21 10:20:23 +0200216import android.service.dreams.DreamActivity;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700217import android.service.voice.IVoiceInteractionSession;
218import android.service.voice.VoiceInteractionManagerInternal;
Kiyoung Kim0fe161d2018-12-20 18:26:10 +0900219import android.sysprop.DisplayProperties;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700220import android.telecom.TelecomManager;
221import android.text.TextUtils;
Neil Fuller97746812019-08-19 14:20:50 +0100222import android.text.format.TimeMigrationUtils;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700223import android.util.ArrayMap;
Nicholas Sauer3f9249f2019-09-10 20:23:41 -0700224import android.util.ArraySet;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700225import android.util.Log;
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700226import android.util.Slog;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700227import android.util.SparseArray;
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700228import android.util.TimeUtils;
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700229import android.util.proto.ProtoOutputStream;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700230import android.view.IRecentsAnimationRunner;
231import android.view.RemoteAnimationAdapter;
232import android.view.RemoteAnimationDefinition;
Louis Changa009c762020-02-26 11:21:31 +0800233import android.view.WindowManager;
Wale Ogunwale568f9f412020-03-21 22:27:35 -0700234import android.window.IWindowOrganizerController;
Wale Ogunwale57946582020-03-21 14:29:07 -0700235import android.window.WindowContainerTransaction;
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700236
Evan Rosky4505b352018-09-06 11:20:40 -0700237import com.android.internal.R;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700238import com.android.internal.annotations.VisibleForTesting;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700239import com.android.internal.app.AssistUtils;
240import com.android.internal.app.IVoiceInteractor;
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700241import com.android.internal.app.ProcessMap;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700242import com.android.internal.logging.MetricsLogger;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700243import com.android.internal.logging.nano.MetricsProto.MetricsEvent;
Wale Ogunwale53783742018-09-16 10:21:51 -0700244import com.android.internal.messages.nano.SystemMessageProto.SystemMessage;
245import com.android.internal.notification.SystemNotificationChannels;
Wale Ogunwale31913b52018-10-13 08:29:31 -0700246import com.android.internal.os.TransferPipe;
Evan Rosky4505b352018-09-06 11:20:40 -0700247import com.android.internal.os.logging.MetricsLoggerWrapper;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700248import com.android.internal.policy.IKeyguardDismissCallback;
249import com.android.internal.policy.KeyguardDismissCallback;
Wale Ogunwale31913b52018-10-13 08:29:31 -0700250import com.android.internal.util.ArrayUtils;
251import com.android.internal.util.FastPrintWriter;
Muhammad Qureshi759f92f2020-01-28 10:41:55 -0800252import com.android.internal.util.FrameworkStatsLog;
Wale Ogunwalea38654f2019-11-17 20:37:15 -0800253import com.android.internal.util.function.pooled.PooledConsumer;
254import com.android.internal.util.function.pooled.PooledFunction;
Wale Ogunwale53783742018-09-16 10:21:51 -0700255import com.android.internal.util.function.pooled.PooledLambda;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700256import com.android.server.AttributeCache;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700257import com.android.server.LocalServices;
258import com.android.server.SystemService;
Evan Rosky4505b352018-09-06 11:20:40 -0700259import com.android.server.SystemServiceManager;
Wale Ogunwale1f5e53d2018-11-05 05:12:46 -0800260import com.android.server.UiThread;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700261import com.android.server.Watchdog;
Wale Ogunwale59507092018-10-29 09:00:30 -0700262import com.android.server.am.ActivityManagerService;
Wale Ogunwale59507092018-10-29 09:00:30 -0700263import com.android.server.am.ActivityManagerServiceDumpProcessesProto;
264import com.android.server.am.AppTimeTracker;
265import com.android.server.am.BaseErrorDialog;
Wale Ogunwale59507092018-10-29 09:00:30 -0700266import com.android.server.am.PendingIntentController;
267import com.android.server.am.PendingIntentRecord;
268import com.android.server.am.UserState;
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700269import com.android.server.firewall.IntentFirewall;
Tarandeep Singh07b318b2019-07-17 11:12:04 -0700270import com.android.server.inputmethod.InputMethodSystemProperty;
Evan Rosky4505b352018-09-06 11:20:40 -0700271import com.android.server.pm.UserManagerService;
Hai Zhangf4da9be2019-05-01 13:46:06 +0800272import com.android.server.policy.PermissionPolicyInternal;
Evan Rosky4505b352018-09-06 11:20:40 -0700273import com.android.server.uri.UriGrantsManagerInternal;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700274import com.android.server.vr.VrManagerInternal;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700275
Wale Ogunwale31913b52018-10-13 08:29:31 -0700276import java.io.BufferedReader;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700277import java.io.File;
Wale Ogunwale31913b52018-10-13 08:29:31 -0700278import java.io.FileDescriptor;
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700279import java.io.FileOutputStream;
Wale Ogunwale31913b52018-10-13 08:29:31 -0700280import java.io.FileReader;
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700281import java.io.IOException;
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700282import java.io.PrintWriter;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700283import java.io.StringWriter;
Riddle Hsua0536432019-02-16 00:38:59 +0800284import java.lang.annotation.ElementType;
285import java.lang.annotation.Retention;
286import java.lang.annotation.RetentionPolicy;
287import java.lang.annotation.Target;
Wale Ogunwaleee6eca12018-09-19 20:37:53 -0700288import java.lang.ref.WeakReference;
Wale Ogunwale31913b52018-10-13 08:29:31 -0700289import java.text.DateFormat;
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700290import java.util.ArrayList;
Wale Ogunwale27c48ae2018-10-25 19:01:01 -0700291import java.util.Arrays;
Jeff Sharkey8b0cff72020-03-09 15:49:01 -0600292import java.util.Collection;
Wale Ogunwale31913b52018-10-13 08:29:31 -0700293import java.util.Date;
Alison Cichowlas3e340502018-08-07 17:15:01 -0400294import java.util.HashMap;
Wale Ogunwaleee6eca12018-09-19 20:37:53 -0700295import java.util.HashSet;
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700296import java.util.List;
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700297import java.util.Locale;
Wale Ogunwale31913b52018-10-13 08:29:31 -0700298import java.util.Map;
Daulet Zhanguzinc6c641f2020-01-02 17:18:30 +0000299import java.util.Objects;
Wale Ogunwale31913b52018-10-13 08:29:31 -0700300import java.util.Set;
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700301
302/**
303 * System service for managing activities and their containers (task, stacks, displays,... ).
304 *
305 * {@hide}
306 */
307public class ActivityTaskManagerService extends IActivityTaskManager.Stub {
Wale Ogunwale98875612018-10-12 07:53:02 -0700308 private static final String TAG = TAG_WITH_CLASS_NAME ? "ActivityTaskManagerService" : TAG_ATM;
Wale Ogunwale8f93b642019-12-26 12:10:52 -0800309 static final String TAG_STACK = TAG + POSTFIX_STACK;
Wale Ogunwale196db712019-12-27 15:35:39 +0000310 static final String TAG_SWITCH = TAG + POSTFIX_SWITCH;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700311 private static final String TAG_IMMERSIVE = TAG + POSTFIX_IMMERSIVE;
312 private static final String TAG_FOCUS = TAG + POSTFIX_FOCUS;
313 private static final String TAG_VISIBILITY = TAG + POSTFIX_VISIBILITY;
314 private static final String TAG_LOCKTASK = TAG + POSTFIX_LOCKTASK;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700315 private static final String TAG_CONFIGURATION = TAG + POSTFIX_CONFIGURATION;
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700316
Wale Ogunwale906f9c62018-07-23 11:23:44 -0700317 // How long we wait until we timeout on key dispatching.
Wale Ogunwale51cc98a2018-10-15 10:41:05 -0700318 public static final int KEY_DISPATCHING_TIMEOUT_MS = 5 * 1000;
Wale Ogunwale906f9c62018-07-23 11:23:44 -0700319 // How long we wait until we timeout on key dispatching during instrumentation.
Wale Ogunwale51cc98a2018-10-15 10:41:05 -0700320 static final int INSTRUMENTATION_KEY_DISPATCHING_TIMEOUT_MS = 60 * 1000;
Michal Karpinskifc6872e2019-05-21 15:18:44 +0100321 // How long we permit background activity starts after an activity in the process
322 // started or finished.
323 static final long ACTIVITY_BG_START_GRACE_PERIOD_MS = 10 * 1000;
Wale Ogunwale906f9c62018-07-23 11:23:44 -0700324
Wale Ogunwale98875612018-10-12 07:53:02 -0700325 /** Used to indicate that an app transition should be animated. */
326 static final boolean ANIMATE = true;
327
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700328 /** Hardware-reported OpenGLES version. */
329 final int GL_ES_VERSION;
330
Wale Ogunwale31913b52018-10-13 08:29:31 -0700331 public static final String DUMP_ACTIVITIES_CMD = "activities" ;
332 public static final String DUMP_ACTIVITIES_SHORT_CMD = "a" ;
333 public static final String DUMP_LASTANR_CMD = "lastanr" ;
334 public static final String DUMP_LASTANR_TRACES_CMD = "lastanr-traces" ;
335 public static final String DUMP_STARTER_CMD = "starter" ;
336 public static final String DUMP_CONTAINERS_CMD = "containers" ;
337 public static final String DUMP_RECENTS_CMD = "recents" ;
338 public static final String DUMP_RECENTS_SHORT_CMD = "r" ;
339
Wale Ogunwale64258362018-10-16 15:13:37 -0700340 /** This activity is not being relaunched, or being relaunched for a non-resize reason. */
341 public static final int RELAUNCH_REASON_NONE = 0;
342 /** This activity is being relaunched due to windowing mode change. */
343 public static final int RELAUNCH_REASON_WINDOWING_MODE_RESIZE = 1;
344 /** This activity is being relaunched due to a free-resize operation. */
345 public static final int RELAUNCH_REASON_FREE_RESIZE = 2;
346
Wale Ogunwale16e505a2018-05-07 15:00:49 -0700347 Context mContext;
Wale Ogunwale64258362018-10-16 15:13:37 -0700348
Wale Ogunwalef6733932018-06-27 05:14:34 -0700349 /**
350 * This Context is themable and meant for UI display (AlertDialogs, etc.). The theme can
351 * change at runtime. Use mContext for non-UI purposes.
352 */
353 final Context mUiContext;
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700354 final ActivityThread mSystemThread;
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700355 H mH;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700356 UiHandler mUiHandler;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700357 ActivityManagerInternal mAmInternal;
Wale Ogunwale6d50dcc2018-07-21 23:00:40 -0700358 UriGrantsManagerInternal mUgmInternal;
Wale Ogunwale906f9c62018-07-23 11:23:44 -0700359 private PackageManagerInternal mPmInternal;
Darryl L Johnsona0982222020-02-18 18:21:51 -0800360 /** The cached sys ui service component name from package manager. */
361 private ComponentName mSysUiServiceComponent;
Hai Zhangf4da9be2019-05-01 13:46:06 +0800362 private PermissionPolicyInternal mPermissionPolicyInternal;
Wale Ogunwaleb73f3962018-11-20 07:58:22 -0800363 @VisibleForTesting
364 final ActivityTaskManagerInternal mInternal;
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700365 PowerManagerInternal mPowerManagerInternal;
366 private UsageStatsManagerInternal mUsageStatsInternal;
367
Wale Ogunwaleee6eca12018-09-19 20:37:53 -0700368 PendingIntentController mPendingIntentController;
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700369 IntentFirewall mIntentFirewall;
370
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700371 /* Global service lock used by the package the owns this service. */
Wale Ogunwale1f5e53d2018-11-05 05:12:46 -0800372 final WindowManagerGlobalLock mGlobalLock = new WindowManagerGlobalLock();
Riddle Hsud7088f82019-01-30 13:04:50 +0800373 /**
Wale Ogunwale8a1860a2019-06-05 08:57:19 -0700374 * It is the same instance as {@link #mGlobalLock}, just declared as a type that the
Riddle Hsud7088f82019-01-30 13:04:50 +0800375 * locked-region-code-injection does't recognize it. It is used to skip wrapping priority
376 * booster for places that are already in the scope of another booster (e.g. computing oom-adj).
377 *
378 * @see WindowManagerThreadPriorityBooster
379 */
380 final Object mGlobalLockWithoutBoost = mGlobalLock;
Wale Ogunwale16e505a2018-05-07 15:00:49 -0700381 ActivityStackSupervisor mStackSupervisor;
Louis Chang149d5c82019-12-30 09:47:39 +0800382 RootWindowContainer mRootWindowContainer;
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700383 WindowManagerService mWindowManager;
Wale Ogunwalef6733932018-06-27 05:14:34 -0700384 private UserManagerService mUserManager;
Philip P. Moltmannee295092020-02-10 08:46:26 -0800385 private AppOpsManager mAppOpsManager;
Wale Ogunwalebff2df42018-10-18 17:09:19 -0700386 /** All active uids in the system. */
Riddle Hsua0536432019-02-16 00:38:59 +0800387 private final MirrorActiveUids mActiveUids = new MirrorActiveUids();
Wale Ogunwale9de19442018-10-18 19:05:03 -0700388 private final SparseArray<String> mPendingTempWhitelist = new SparseArray<>();
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700389 /** All processes currently running that might have a window organized by name. */
390 final ProcessMap<WindowProcessController> mProcessNames = new ProcessMap<>();
Michal Karpinski2e0aad22019-04-12 16:22:55 +0100391 /** All processes we currently have running mapped by pid and uid */
392 final WindowProcessControllerMap mProcessMap = new WindowProcessControllerMap();
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700393 /** This is the process holding what we currently consider to be the "home" activity. */
394 WindowProcessController mHomeProcess;
Wale Ogunwale53783742018-09-16 10:21:51 -0700395 /** The currently running heavy-weight process, if any. */
396 WindowProcessController mHeavyWeightProcess = null;
Wale Ogunwale214f3482018-10-04 11:00:47 -0700397 boolean mHasHeavyWeightFeature;
Sergey Nikolaienkov30c947d2020-04-15 19:55:48 +0200398 boolean mHasLeanbackFeature;
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700399 /**
400 * This is the process holding the activity the user last visited that is in a different process
401 * from the one they are currently in.
402 */
403 WindowProcessController mPreviousProcess;
404 /** The time at which the previous process was last visible. */
405 long mPreviousProcessVisibleTime;
406
Wale Ogunwale16e505a2018-05-07 15:00:49 -0700407 /** List of intents that were used to start the most recent tasks. */
408 private RecentTasks mRecentTasks;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700409 /** State of external calls telling us if the device is awake or asleep. */
410 private boolean mKeyguardShown = false;
411
412 // Wrapper around VoiceInteractionServiceManager
413 private AssistUtils mAssistUtils;
414
415 // VoiceInteraction session ID that changes for each new request except when
416 // being called for multi-window assist in a single session.
417 private int mViSessionId = 1000;
418
419 // How long to wait in getAssistContextExtras for the activity and foreground services
420 // to respond with the result.
421 private static final int PENDING_ASSIST_EXTRAS_TIMEOUT = 500;
422
423 // How long top wait when going through the modern assist (which doesn't need to block
424 // on getting this result before starting to launch its UI).
425 private static final int PENDING_ASSIST_EXTRAS_LONG_TIMEOUT = 2000;
426
427 // How long to wait in getAutofillAssistStructure() for the activity to respond with the result.
428 private static final int PENDING_AUTOFILL_ASSIST_STRUCTURE_TIMEOUT = 2000;
429
Alison Cichowlas3e340502018-08-07 17:15:01 -0400430 // Permission tokens are used to temporarily granted a trusted app the ability to call
431 // #startActivityAsCaller. A client is expected to dump its token after this time has elapsed,
432 // showing any appropriate error messages to the user.
433 private static final long START_AS_CALLER_TOKEN_TIMEOUT =
434 10 * MINUTE_IN_MILLIS;
435
436 // How long before the service actually expires a token. This is slightly longer than
437 // START_AS_CALLER_TOKEN_TIMEOUT, to provide a buffer so clients will rarely encounter the
438 // expiration exception.
439 private static final long START_AS_CALLER_TOKEN_TIMEOUT_IMPL =
440 START_AS_CALLER_TOKEN_TIMEOUT + 2 * 1000;
441
442 // How long the service will remember expired tokens, for the purpose of providing error
443 // messaging when a client uses an expired token.
444 private static final long START_AS_CALLER_TOKEN_EXPIRED_TIMEOUT =
445 START_AS_CALLER_TOKEN_TIMEOUT_IMPL + 20 * MINUTE_IN_MILLIS;
446
447 // Activity tokens of system activities that are delegating their call to
448 // #startActivityByCaller, keyed by the permissionToken granted to the delegate.
449 final HashMap<IBinder, IBinder> mStartActivitySources = new HashMap<>();
450
451 // Permission tokens that have expired, but we remember for error reporting.
452 final ArrayList<IBinder> mExpiredStartAsCallerTokens = new ArrayList<>();
453
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700454 private final ArrayList<PendingAssistExtras> mPendingAssistExtras = new ArrayList<>();
455
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700456 // Keeps track of the active voice interaction service component, notified from
457 // VoiceInteractionManagerService
458 ComponentName mActiveVoiceInteractionServiceComponent;
459
Michal Karpinskida34cd42019-04-02 19:46:52 +0100460 // A map userId and all its companion app uids
461 private final Map<Integer, Set<Integer>> mCompanionAppUidsMap = new ArrayMap<>();
Ricky Wai2452e2d2019-03-18 19:19:08 +0000462
Wale Ogunwalee2172292018-10-25 10:11:10 -0700463 VrController mVrController;
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700464 KeyguardController mKeyguardController;
465 private final ClientLifecycleManager mLifecycleManager;
466 private TaskChangeNotificationController mTaskChangeNotificationController;
Wale Ogunwaled95c06b2018-05-08 10:35:38 -0700467 /** The controller for all operations related to locktask. */
468 private LockTaskController mLockTaskController;
Wale Ogunwale5fa8a8c2018-05-08 13:43:21 -0700469 private ActivityStartController mActivityStartController;
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700470
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700471 boolean mSuppressResizeConfigChanges;
472
Shivam Agrawal1d3db652019-07-01 15:26:11 -0700473 final UpdateConfigurationResult mTmpUpdateConfigurationResult =
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700474 new UpdateConfigurationResult();
475
476 static final class UpdateConfigurationResult {
477 // Configuration changes that were updated.
478 int changes;
479 // If the activity was relaunched to match the new configuration.
480 boolean activityRelaunched;
481
482 void reset() {
483 changes = 0;
484 activityRelaunched = false;
485 }
486 }
487
Wale Ogunwalec9e57de2018-05-08 14:28:07 -0700488 /** Current sequencing integer of the configuration, for skipping old configurations. */
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700489 private int mConfigurationSeq;
490 // To cache the list of supported system locales
491 private String[] mSupportedSystemLocales = null;
Wale Ogunwalec9e57de2018-05-08 14:28:07 -0700492
493 /**
494 * Temp object used when global and/or display override configuration is updated. It is also
495 * sent to outer world instead of {@link #getGlobalConfiguration} because we don't trust
496 * anyone...
497 */
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700498 private Configuration mTempConfig = new Configuration();
499
Wale Ogunwalef6733932018-06-27 05:14:34 -0700500 /** Temporary to avoid allocations. */
501 final StringBuilder mStringBuilder = new StringBuilder(256);
502
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700503 // Amount of time after a call to stopAppSwitches() during which we will
504 // prevent further untrusted switches from happening.
505 private static final long APP_SWITCH_DELAY_TIME = 5 * 1000;
506
507 /**
508 * The time at which we will allow normal application switches again,
509 * after a call to {@link #stopAppSwitches()}.
510 */
Wale Ogunwalef6733932018-06-27 05:14:34 -0700511 private long mAppSwitchesAllowedTime;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700512 /**
513 * This is set to true after the first switch after mAppSwitchesAllowedTime
514 * is set; any switches after that will clear the time.
515 */
Wale Ogunwalef6733932018-06-27 05:14:34 -0700516 private boolean mDidAppSwitch;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700517
Ricky Wai906af482019-06-03 17:25:28 +0100518 /**
519 * Last stop app switches time, apps finished before this time cannot start background activity
520 * even if they are in grace period.
521 */
522 private long mLastStopAppSwitchesTime;
523
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700524 IActivityController mController = null;
525 boolean mControllerIsAMonkey = false;
526
Wale Ogunwale214f3482018-10-04 11:00:47 -0700527 final int mFactoryTest;
528
529 /** Used to control how we initialize the service. */
530 ComponentName mTopComponent;
531 String mTopAction = Intent.ACTION_MAIN;
532 String mTopData;
533
Wale Ogunwale1f5e53d2018-11-05 05:12:46 -0800534 /** Profiling app information. */
535 String mProfileApp = null;
536 WindowProcessController mProfileProc = null;
537 ProfilerInfo mProfilerInfo = null;
538
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700539 /**
Wale Ogunwale31913b52018-10-13 08:29:31 -0700540 * Dump of the activity state at the time of the last ANR. Cleared after
541 * {@link WindowManagerService#LAST_ANR_LIFETIME_DURATION_MSECS}
542 */
543 String mLastANRState;
544
545 /**
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700546 * Used to retain an update lock when the foreground activity is in
547 * immersive mode.
548 */
Wale Ogunwalef6733932018-06-27 05:14:34 -0700549 private final UpdateLock mUpdateLock = new UpdateLock("immersive");
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700550
551 /**
552 * Packages that are being allowed to perform unrestricted app switches. Mapping is
553 * User -> Type -> uid.
554 */
555 final SparseArray<ArrayMap<String, Integer>> mAllowAppSwitchUids = new SparseArray<>();
556
557 /** The dimensions of the thumbnails in the Recents UI. */
Wale Ogunwalef6733932018-06-27 05:14:34 -0700558 private int mThumbnailWidth;
559 private int mThumbnailHeight;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700560
561 /**
562 * Flag that indicates if multi-window is enabled.
563 *
564 * For any particular form of multi-window to be enabled, generic multi-window must be enabled
565 * in {@link com.android.internal.R.bool#config_supportsMultiWindow} config or
566 * {@link Settings.Global#DEVELOPMENT_FORCE_RESIZABLE_ACTIVITIES} development option set.
567 * At least one of the forms of multi-window must be enabled in order for this flag to be
568 * initialized to 'true'.
569 *
570 * @see #mSupportsSplitScreenMultiWindow
571 * @see #mSupportsFreeformWindowManagement
572 * @see #mSupportsPictureInPicture
573 * @see #mSupportsMultiDisplay
574 */
575 boolean mSupportsMultiWindow;
576 boolean mSupportsSplitScreenMultiWindow;
577 boolean mSupportsFreeformWindowManagement;
578 boolean mSupportsPictureInPicture;
579 boolean mSupportsMultiDisplay;
580 boolean mForceResizableActivities;
Shivam Agrawal780b5bb2019-07-17 10:17:11 -0700581 boolean mSizeCompatFreeform;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700582
583 final List<ActivityTaskManagerInternal.ScreenObserver> mScreenObservers = new ArrayList<>();
584
585 // VR Vr2d Display Id.
586 int mVr2dDisplayId = INVALID_DISPLAY;
Wale Ogunwalec9e57de2018-05-08 14:28:07 -0700587
Wale Ogunwalef6733932018-06-27 05:14:34 -0700588 /**
589 * Set while we are wanting to sleep, to prevent any
590 * activities from being started/resumed.
591 *
592 * TODO(b/33594039): Clarify the actual state transitions represented by mSleeping.
593 *
594 * Currently mSleeping is set to true when transitioning into the sleep state, and remains true
595 * while in the sleep state until there is a pending transition out of sleep, in which case
596 * mSleeping is set to false, and remains false while awake.
597 *
598 * Whether mSleeping can quickly toggled between true/false without the device actually
599 * display changing states is undefined.
600 */
601 private boolean mSleeping = false;
602
603 /**
Galia Peycheva480275a2020-03-18 17:33:42 +0100604 * The mDreaming state is set by the {@link DreamManagerService} when it receives a request to
605 * start/stop the dream. It is set to true shortly before the {@link DreamService} is started.
606 * It is set to false after the {@link DreamService} is stopped.
607 */
608 private boolean mDreaming = false;
609
610 /**
Wale Ogunwalef6733932018-06-27 05:14:34 -0700611 * The process state used for processes that are running the top activities.
612 * This changes between TOP and TOP_SLEEPING to following mSleeping.
613 */
614 int mTopProcessState = ActivityManager.PROCESS_STATE_TOP;
615
Riddle Hsua0022cd2019-09-09 21:12:41 +0800616 @Retention(RetentionPolicy.SOURCE)
617 @IntDef({
618 LAYOUT_REASON_CONFIG_CHANGED,
619 LAYOUT_REASON_VISIBILITY_CHANGED,
620 })
621 @interface LayoutReason {}
622 static final int LAYOUT_REASON_CONFIG_CHANGED = 0x1;
623 static final int LAYOUT_REASON_VISIBILITY_CHANGED = 0x2;
624
625 /** The reasons to perform surface placement. */
626 @LayoutReason
627 private int mLayoutReasons;
628
Wale Ogunwalef6733932018-06-27 05:14:34 -0700629 // Whether we should show our dialogs (ANR, crash, etc) or just perform their default action
630 // automatically. Important for devices without direct input devices.
631 private boolean mShowDialogs = true;
632
633 /** Set if we are shutting down the system, similar to sleeping. */
634 boolean mShuttingDown = false;
635
636 /**
637 * We want to hold a wake lock while running a voice interaction session, since
638 * this may happen with the screen off and we need to keep the CPU running to
639 * be able to continue to interact with the user.
640 */
641 PowerManager.WakeLock mVoiceWakeLock;
642
643 /**
644 * Set while we are running a voice interaction. This overrides sleeping while it is active.
645 */
646 IVoiceInteractionSession mRunningVoice;
647
648 /**
649 * The last resumed activity. This is identical to the current resumed activity most
650 * of the time but could be different when we're pausing one activity before we resume
651 * another activity.
652 */
653 ActivityRecord mLastResumedActivity;
654
655 /**
656 * The activity that is currently being traced as the active resumed activity.
657 *
658 * @see #updateResumedAppTrace
659 */
660 private @Nullable ActivityRecord mTracedResumedActivity;
661
662 /** If non-null, we are tracking the time the user spends in the currently focused app. */
663 AppTimeTracker mCurAppTimeTracker;
664
Shivam Agrawal1d3db652019-07-01 15:26:11 -0700665 AppWarnings mAppWarnings;
Wale Ogunwale008163e2018-07-23 23:11:08 -0700666
Wale Ogunwale53783742018-09-16 10:21:51 -0700667 /**
668 * Packages that the user has asked to have run in screen size
669 * compatibility mode instead of filling the screen.
670 */
671 CompatModePackages mCompatModePackages;
672
Wale Ogunwalef6733932018-06-27 05:14:34 -0700673 private FontScaleSettingObserver mFontScaleSettingObserver;
674
Wale Ogunwale568f9f412020-03-21 22:27:35 -0700675 WindowOrganizerController mWindowOrganizerController;
676 TaskOrganizerController mTaskOrganizerController;
Robert Carr8a2f9132019-11-11 15:03:15 -0800677
Ricky Wai96f5c352019-04-10 18:40:17 +0100678 private int mDeviceOwnerUid = Process.INVALID_UID;
Michal Karpinski4026cae2019-02-12 11:51:47 +0000679
Wale Ogunwalef6733932018-06-27 05:14:34 -0700680 private final class FontScaleSettingObserver extends ContentObserver {
681 private final Uri mFontScaleUri = Settings.System.getUriFor(FONT_SCALE);
682 private final Uri mHideErrorDialogsUri = Settings.Global.getUriFor(HIDE_ERROR_DIALOGS);
683
684 public FontScaleSettingObserver() {
685 super(mH);
686 final ContentResolver resolver = mContext.getContentResolver();
687 resolver.registerContentObserver(mFontScaleUri, false, this, UserHandle.USER_ALL);
688 resolver.registerContentObserver(mHideErrorDialogsUri, false, this,
689 UserHandle.USER_ALL);
690 }
691
692 @Override
Jeff Sharkey8b0cff72020-03-09 15:49:01 -0600693 public void onChange(boolean selfChange, Collection<Uri> uris, int flags,
Riddle Hsu9c024d12020-03-09 16:10:07 +0800694 @UserIdInt int userId) {
695 for (Uri uri : uris) {
696 if (mFontScaleUri.equals(uri)) {
697 updateFontScaleIfNeeded(userId);
698 } else if (mHideErrorDialogsUri.equals(uri)) {
699 synchronized (mGlobalLock) {
700 updateShouldShowDialogsLocked(getGlobalConfiguration());
701 }
Wale Ogunwalef6733932018-06-27 05:14:34 -0700702 }
703 }
704 }
705 }
706
Riddle Hsua0536432019-02-16 00:38:59 +0800707 /** Indicates that the method may be invoked frequently or is sensitive to performance. */
708 @Target(ElementType.METHOD)
709 @Retention(RetentionPolicy.SOURCE)
710 @interface HotPath {
711 int NONE = 0;
712 int OOM_ADJUSTMENT = 1;
713 int LRU_UPDATE = 2;
714 int PROCESS_CHANGE = 3;
715 int caller() default NONE;
716 }
717
Wale Ogunwalea38654f2019-11-17 20:37:15 -0800718 private final Runnable mUpdateOomAdjRunnable = new Runnable() {
719 @Override
Wale Ogunwale85fb19a2019-12-05 10:41:05 +0900720 public void run() {
Wale Ogunwalea38654f2019-11-17 20:37:15 -0800721 mAmInternal.updateOomAdj();
722 }
723 };
724
Charles Chen8d98dd22018-12-26 17:36:54 +0800725 @VisibleForTesting(visibility = VisibleForTesting.Visibility.PACKAGE)
726 public ActivityTaskManagerService(Context context) {
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700727 mContext = context;
Wale Ogunwale214f3482018-10-04 11:00:47 -0700728 mFactoryTest = FactoryTest.getMode();
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700729 mSystemThread = ActivityThread.currentActivityThread();
730 mUiContext = mSystemThread.getSystemUiContext();
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700731 mLifecycleManager = new ClientLifecycleManager();
Wale Ogunwaleb73f3962018-11-20 07:58:22 -0800732 mInternal = new LocalService();
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700733 GL_ES_VERSION = SystemProperties.getInt("ro.opengles.version", GL_ES_VERSION_UNDEFINED);
Wale Ogunwale568f9f412020-03-21 22:27:35 -0700734 mWindowOrganizerController = new WindowOrganizerController(this);
735 mTaskOrganizerController = mWindowOrganizerController.mTaskOrganizerController;
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700736 }
737
Wale Ogunwale387b34c2018-10-25 19:59:40 -0700738 public void onSystemReady() {
739 synchronized (mGlobalLock) {
Sergey Nikolaienkov30c947d2020-04-15 19:55:48 +0200740 final PackageManager pm = mContext.getPackageManager();
741 mHasHeavyWeightFeature = pm.hasSystemFeature(FEATURE_CANT_SAVE_STATE);
742 mHasLeanbackFeature = pm.hasSystemFeature(FEATURE_LEANBACK);
Wale Ogunwale387b34c2018-10-25 19:59:40 -0700743 mAssistUtils = new AssistUtils(mContext);
744 mVrController.onSystemReady();
745 mRecentTasks.onSystemReadyLocked();
Garfield Tan891146c2018-10-09 12:14:00 -0700746 mStackSupervisor.onSystemReady();
Wale Ogunwale387b34c2018-10-25 19:59:40 -0700747 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700748 }
749
Wale Ogunwale387b34c2018-10-25 19:59:40 -0700750 public void onInitPowerManagement() {
751 synchronized (mGlobalLock) {
752 mStackSupervisor.initPowerManagement();
753 final PowerManager pm = (PowerManager) mContext.getSystemService(Context.POWER_SERVICE);
754 mPowerManagerInternal = LocalServices.getService(PowerManagerInternal.class);
755 mVoiceWakeLock = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "*voice*");
756 mVoiceWakeLock.setReferenceCounted(false);
757 }
Wale Ogunwalef6733932018-06-27 05:14:34 -0700758 }
759
Wale Ogunwale387b34c2018-10-25 19:59:40 -0700760 public void installSystemProviders() {
Wale Ogunwalef6733932018-06-27 05:14:34 -0700761 mFontScaleSettingObserver = new FontScaleSettingObserver();
762 }
763
Wale Ogunwale59507092018-10-29 09:00:30 -0700764 public void retrieveSettings(ContentResolver resolver) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700765 final boolean freeformWindowManagement =
766 mContext.getPackageManager().hasSystemFeature(FEATURE_FREEFORM_WINDOW_MANAGEMENT)
767 || Settings.Global.getInt(
768 resolver, DEVELOPMENT_ENABLE_FREEFORM_WINDOWS_SUPPORT, 0) != 0;
769
770 final boolean supportsMultiWindow = ActivityTaskManager.supportsMultiWindow(mContext);
771 final boolean supportsPictureInPicture = supportsMultiWindow &&
772 mContext.getPackageManager().hasSystemFeature(FEATURE_PICTURE_IN_PICTURE);
773 final boolean supportsSplitScreenMultiWindow =
774 ActivityTaskManager.supportsSplitScreenMultiWindow(mContext);
775 final boolean supportsMultiDisplay = mContext.getPackageManager()
776 .hasSystemFeature(FEATURE_ACTIVITIES_ON_SECONDARY_DISPLAYS);
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700777 final boolean forceRtl = Settings.Global.getInt(resolver, DEVELOPMENT_FORCE_RTL, 0) != 0;
778 final boolean forceResizable = Settings.Global.getInt(
779 resolver, DEVELOPMENT_FORCE_RESIZABLE_ACTIVITIES, 0) != 0;
Shivam Agrawal780b5bb2019-07-17 10:17:11 -0700780 final boolean sizeCompatFreeform = Settings.Global.getInt(
781 resolver, DEVELOPMENT_ENABLE_SIZECOMPAT_FREEFORM, 0) != 0;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700782
783 // Transfer any global setting for forcing RTL layout, into a System Property
Kiyoung Kim0fe161d2018-12-20 18:26:10 +0900784 DisplayProperties.debug_force_rtl(forceRtl);
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700785
786 final Configuration configuration = new Configuration();
787 Settings.System.getConfiguration(resolver, configuration);
788 if (forceRtl) {
789 // This will take care of setting the correct layout direction flags
790 configuration.setLayoutDirection(configuration.locale);
791 }
792
793 synchronized (mGlobalLock) {
794 mForceResizableActivities = forceResizable;
Shivam Agrawal780b5bb2019-07-17 10:17:11 -0700795 mSizeCompatFreeform = sizeCompatFreeform;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700796 final boolean multiWindowFormEnabled = freeformWindowManagement
797 || supportsSplitScreenMultiWindow
798 || supportsPictureInPicture
799 || supportsMultiDisplay;
800 if ((supportsMultiWindow || forceResizable) && multiWindowFormEnabled) {
801 mSupportsMultiWindow = true;
802 mSupportsFreeformWindowManagement = freeformWindowManagement;
803 mSupportsSplitScreenMultiWindow = supportsSplitScreenMultiWindow;
804 mSupportsPictureInPicture = supportsPictureInPicture;
805 mSupportsMultiDisplay = supportsMultiDisplay;
806 } else {
807 mSupportsMultiWindow = false;
808 mSupportsFreeformWindowManagement = false;
809 mSupportsSplitScreenMultiWindow = false;
810 mSupportsPictureInPicture = false;
811 mSupportsMultiDisplay = false;
812 }
Garfield Tanb5910b42019-03-14 14:50:59 -0700813 mWindowManager.mRoot.onSettingsRetrieved();
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700814 // This happens before any activities are started, so we can change global configuration
815 // in-place.
816 updateConfigurationLocked(configuration, null, true);
817 final Configuration globalConfig = getGlobalConfiguration();
818 if (DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION, "Initial config: " + globalConfig);
819
820 // Load resources only after the current configuration has been set.
821 final Resources res = mContext.getResources();
822 mThumbnailWidth = res.getDimensionPixelSize(
823 com.android.internal.R.dimen.thumbnail_width);
824 mThumbnailHeight = res.getDimensionPixelSize(
825 com.android.internal.R.dimen.thumbnail_height);
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700826 }
827 }
828
Wale Ogunwale1f5e53d2018-11-05 05:12:46 -0800829 public WindowManagerGlobalLock getGlobalLock() {
830 return mGlobalLock;
831 }
832
Yunfan Chen585f2932019-01-29 16:04:45 +0900833 /** For test purpose only. */
834 @VisibleForTesting
835 public ActivityTaskManagerInternal getAtmInternal() {
836 return mInternal;
837 }
838
Riddle Hsud93a6c42018-11-29 21:50:06 +0800839 public void initialize(IntentFirewall intentFirewall, PendingIntentController intentController,
840 Looper looper) {
841 mH = new H(looper);
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700842 mUiHandler = new UiHandler();
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700843 mIntentFirewall = intentFirewall;
Wale Ogunwale53783742018-09-16 10:21:51 -0700844 final File systemDir = SystemServiceManager.ensureSystemDir();
Wale Ogunwaleda8b8272018-11-29 19:37:37 -0800845 mAppWarnings = createAppWarnings(mUiContext, mH, mUiHandler, systemDir);
Wale Ogunwale53783742018-09-16 10:21:51 -0700846 mCompatModePackages = new CompatModePackages(this, systemDir, mH);
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700847 mPendingIntentController = intentController;
Wale Ogunwalec9e57de2018-05-08 14:28:07 -0700848 mStackSupervisor = createStackSupervisor();
Wale Ogunwalec9e57de2018-05-08 14:28:07 -0700849
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700850 mTaskChangeNotificationController =
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700851 new TaskChangeNotificationController(mGlobalLock, mStackSupervisor, mH);
Wale Ogunwaled95c06b2018-05-08 10:35:38 -0700852 mLockTaskController = new LockTaskController(mContext, mStackSupervisor, mH);
Wale Ogunwalec9e57de2018-05-08 14:28:07 -0700853 mActivityStartController = new ActivityStartController(this);
Wale Ogunwale8a1860a2019-06-05 08:57:19 -0700854 setRecentTasks(new RecentTasks(this, mStackSupervisor));
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700855 mVrController = new VrController(mGlobalLock);
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700856 mKeyguardController = mStackSupervisor.getKeyguardController();
857 }
858
Wale Ogunwale387b34c2018-10-25 19:59:40 -0700859 public void onActivityManagerInternalAdded() {
860 synchronized (mGlobalLock) {
861 mAmInternal = LocalServices.getService(ActivityManagerInternal.class);
862 mUgmInternal = LocalServices.getService(UriGrantsManagerInternal.class);
863 }
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700864 }
865
Yunfan Chen75157d72018-07-27 14:47:21 +0900866 int increaseConfigurationSeqLocked() {
867 mConfigurationSeq = Math.max(++mConfigurationSeq, 1);
868 return mConfigurationSeq;
869 }
870
Wale Ogunwalec9e57de2018-05-08 14:28:07 -0700871 protected ActivityStackSupervisor createStackSupervisor() {
872 final ActivityStackSupervisor supervisor = new ActivityStackSupervisor(this, mH.getLooper());
873 supervisor.initialize();
874 return supervisor;
875 }
876
Wale Ogunwaleda8b8272018-11-29 19:37:37 -0800877 protected AppWarnings createAppWarnings(
878 Context uiContext, Handler handler, Handler uiHandler, File systemDir) {
879 return new AppWarnings(this, uiContext, handler, uiHandler, systemDir);
880 }
881
Wale Ogunwale387b34c2018-10-25 19:59:40 -0700882 public void setWindowManager(WindowManagerService wm) {
883 synchronized (mGlobalLock) {
884 mWindowManager = wm;
Louis Chang149d5c82019-12-30 09:47:39 +0800885 mRootWindowContainer = wm.mRoot;
Louis Chang3ff72a82019-12-17 12:12:59 +0800886 mTempConfig.setToDefaults();
887 mTempConfig.setLocales(LocaleList.getDefault());
888 mConfigurationSeq = mTempConfig.seq = 1;
Louis Chang149d5c82019-12-30 09:47:39 +0800889 mRootWindowContainer.onConfigurationChanged(mTempConfig);
Wale Ogunwale387b34c2018-10-25 19:59:40 -0700890 mLockTaskController.setWindowManager(wm);
891 mStackSupervisor.setWindowManager(wm);
Louis Chang149d5c82019-12-30 09:47:39 +0800892 mRootWindowContainer.setWindowManager(wm);
Wale Ogunwale387b34c2018-10-25 19:59:40 -0700893 }
Wale Ogunwale16e505a2018-05-07 15:00:49 -0700894 }
895
Wale Ogunwale387b34c2018-10-25 19:59:40 -0700896 public void setUsageStatsManager(UsageStatsManagerInternal usageStatsManager) {
897 synchronized (mGlobalLock) {
898 mUsageStatsInternal = usageStatsManager;
899 }
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700900 }
901
Wale Ogunwalef6733932018-06-27 05:14:34 -0700902 UserManagerService getUserManager() {
903 if (mUserManager == null) {
904 IBinder b = ServiceManager.getService(Context.USER_SERVICE);
905 mUserManager = (UserManagerService) IUserManager.Stub.asInterface(b);
906 }
907 return mUserManager;
908 }
909
Philip P. Moltmannee295092020-02-10 08:46:26 -0800910 AppOpsManager getAppOpsManager() {
911 if (mAppOpsManager == null) {
912 mAppOpsManager = mContext.getSystemService(AppOpsManager.class);
Wale Ogunwalef6733932018-06-27 05:14:34 -0700913 }
Philip P. Moltmannee295092020-02-10 08:46:26 -0800914 return mAppOpsManager;
Wale Ogunwalef6733932018-06-27 05:14:34 -0700915 }
916
917 boolean hasUserRestriction(String restriction, int userId) {
918 return getUserManager().hasUserRestriction(restriction, userId);
919 }
920
Michal Karpinski15486842019-04-25 17:33:42 +0100921 boolean hasSystemAlertWindowPermission(int callingUid, int callingPid, String callingPackage) {
Philip P. Moltmannee295092020-02-10 08:46:26 -0800922 final int mode = getAppOpsManager().noteOpNoThrow(AppOpsManager.OP_SYSTEM_ALERT_WINDOW,
923 callingUid, callingPackage, /* featureId */ null, "");
Michal Karpinski15486842019-04-25 17:33:42 +0100924 if (mode == AppOpsManager.MODE_DEFAULT) {
925 return checkPermission(Manifest.permission.SYSTEM_ALERT_WINDOW, callingPid, callingUid)
926 == PERMISSION_GRANTED;
927 }
928 return mode == AppOpsManager.MODE_ALLOWED;
929 }
930
Wale Ogunwale8a1860a2019-06-05 08:57:19 -0700931 @VisibleForTesting
932 protected void setRecentTasks(RecentTasks recentTasks) {
933 mRecentTasks = recentTasks;
934 mStackSupervisor.setRecentTasks(recentTasks);
Wale Ogunwale16e505a2018-05-07 15:00:49 -0700935 }
936
937 RecentTasks getRecentTasks() {
938 return mRecentTasks;
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700939 }
940
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700941 ClientLifecycleManager getLifecycleManager() {
942 return mLifecycleManager;
943 }
944
Wale Ogunwale5fa8a8c2018-05-08 13:43:21 -0700945 ActivityStartController getActivityStartController() {
946 return mActivityStartController;
947 }
948
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700949 TaskChangeNotificationController getTaskChangeNotificationController() {
950 return mTaskChangeNotificationController;
951 }
952
Wale Ogunwaled95c06b2018-05-08 10:35:38 -0700953 LockTaskController getLockTaskController() {
954 return mLockTaskController;
955 }
956
Yunfan Chen75157d72018-07-27 14:47:21 +0900957 /**
958 * Return the global configuration used by the process corresponding to the input pid. This is
959 * usually the global configuration with some overrides specific to that process.
960 */
961 Configuration getGlobalConfigurationForCallingPid() {
962 final int pid = Binder.getCallingPid();
Yunfan Chenc2ff6cf2018-12-04 16:56:21 -0800963 return getGlobalConfigurationForPid(pid);
964 }
965
966 /**
967 * Return the global configuration used by the process corresponding to the given pid.
968 */
969 Configuration getGlobalConfigurationForPid(int pid) {
Yunfan Chen75157d72018-07-27 14:47:21 +0900970 if (pid == MY_PID || pid < 0) {
971 return getGlobalConfiguration();
972 }
973 synchronized (mGlobalLock) {
Michal Karpinski2e0aad22019-04-12 16:22:55 +0100974 final WindowProcessController app = mProcessMap.getProcess(pid);
Yunfan Chen75157d72018-07-27 14:47:21 +0900975 return app != null ? app.getConfiguration() : getGlobalConfiguration();
976 }
977 }
978
979 /**
980 * Return the device configuration info used by the process corresponding to the input pid.
981 * The value is consistent with the global configuration for the process.
982 */
983 @Override
984 public ConfigurationInfo getDeviceConfigurationInfo() {
985 ConfigurationInfo config = new ConfigurationInfo();
986 synchronized (mGlobalLock) {
987 final Configuration globalConfig = getGlobalConfigurationForCallingPid();
988 config.reqTouchScreen = globalConfig.touchscreen;
989 config.reqKeyboardType = globalConfig.keyboard;
990 config.reqNavigation = globalConfig.navigation;
991 if (globalConfig.navigation == Configuration.NAVIGATION_DPAD
992 || globalConfig.navigation == Configuration.NAVIGATION_TRACKBALL) {
993 config.reqInputFeatures |= ConfigurationInfo.INPUT_FEATURE_FIVE_WAY_NAV;
994 }
995 if (globalConfig.keyboard != Configuration.KEYBOARD_UNDEFINED
996 && globalConfig.keyboard != Configuration.KEYBOARD_NOKEYS) {
997 config.reqInputFeatures |= ConfigurationInfo.INPUT_FEATURE_HARD_KEYBOARD;
998 }
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700999 config.reqGlEsVersion = GL_ES_VERSION;
Yunfan Chen75157d72018-07-27 14:47:21 +09001000 }
1001 return config;
1002 }
1003
Wale Ogunwale6767eae2018-05-03 15:52:51 -07001004 private void start() {
Wale Ogunwale53783742018-09-16 10:21:51 -07001005 LocalServices.addService(ActivityTaskManagerInternal.class, mInternal);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07001006 }
1007
Wale Ogunwale65ebd952018-04-25 15:41:44 -07001008 public static final class Lifecycle extends SystemService {
1009 private final ActivityTaskManagerService mService;
1010
1011 public Lifecycle(Context context) {
1012 super(context);
1013 mService = new ActivityTaskManagerService(context);
1014 }
1015
1016 @Override
1017 public void onStart() {
1018 publishBinderService(Context.ACTIVITY_TASK_SERVICE, mService);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07001019 mService.start();
Wale Ogunwale65ebd952018-04-25 15:41:44 -07001020 }
1021
Garfield Tan891146c2018-10-09 12:14:00 -07001022 @Override
1023 public void onUnlockUser(int userId) {
1024 synchronized (mService.getGlobalLock()) {
Garfield Tan0d407f42019-03-07 11:47:01 -08001025 mService.mStackSupervisor.onUserUnlocked(userId);
Garfield Tan891146c2018-10-09 12:14:00 -07001026 }
1027 }
1028
1029 @Override
1030 public void onCleanupUser(int userId) {
1031 synchronized (mService.getGlobalLock()) {
1032 mService.mStackSupervisor.mLaunchParamsPersister.onCleanupUser(userId);
1033 }
1034 }
1035
Wale Ogunwale65ebd952018-04-25 15:41:44 -07001036 public ActivityTaskManagerService getService() {
1037 return mService;
1038 }
1039 }
1040
1041 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001042 public final int startActivity(IApplicationThread caller, String callingPackage,
Philip P. Moltmannee295092020-02-10 08:46:26 -08001043 String callingFeatureId, Intent intent, String resolvedType, IBinder resultTo,
1044 String resultWho, int requestCode, int startFlags, ProfilerInfo profilerInfo,
1045 Bundle bOptions) {
1046 return startActivityAsUser(caller, callingPackage, callingFeatureId, intent, resolvedType,
1047 resultTo, resultWho, requestCode, startFlags, profilerInfo, bOptions,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001048 UserHandle.getCallingUserId());
1049 }
1050
1051 @Override
1052 public final int startActivities(IApplicationThread caller, String callingPackage,
Philip P. Moltmannee295092020-02-10 08:46:26 -08001053 String callingFeatureId, Intent[] intents, String[] resolvedTypes, IBinder resultTo,
1054 Bundle bOptions, int userId) {
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07001055 assertPackageMatchesCallingUid(callingPackage);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001056 final String reason = "startActivities";
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001057 enforceNotIsolatedCaller(reason);
1058 userId = handleIncomingUser(Binder.getCallingPid(), Binder.getCallingUid(), userId, reason);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001059 // TODO: Switch to user app stacks here.
Michal Karpinski84d9ebd2019-01-17 18:28:59 +00001060 return getActivityStartController().startActivities(caller, -1, 0, -1, callingPackage,
Philip P. Moltmannee295092020-02-10 08:46:26 -08001061 callingFeatureId, intents, resolvedTypes, resultTo,
1062 SafeActivityOptions.fromBundle(bOptions), userId, reason,
1063 null /* originatingPendingIntent */, false /* allowBackgroundActivityStart */);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001064 }
1065
1066 @Override
1067 public int startActivityAsUser(IApplicationThread caller, String callingPackage,
Philip P. Moltmannee295092020-02-10 08:46:26 -08001068 String callingFeatureId, Intent intent, String resolvedType, IBinder resultTo,
1069 String resultWho, int requestCode, int startFlags, ProfilerInfo profilerInfo,
1070 Bundle bOptions, int userId) {
1071 return startActivityAsUser(caller, callingPackage, callingFeatureId, intent, resolvedType,
1072 resultTo, resultWho, requestCode, startFlags, profilerInfo, bOptions, userId,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001073 true /*validateIncomingUser*/);
1074 }
1075
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07001076 private int startActivityAsUser(IApplicationThread caller, String callingPackage,
Philip P. Moltmannee295092020-02-10 08:46:26 -08001077 @Nullable String callingFeatureId, Intent intent, String resolvedType,
1078 IBinder resultTo, String resultWho, int requestCode, int startFlags,
1079 ProfilerInfo profilerInfo, Bundle bOptions, int userId, boolean validateIncomingUser) {
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07001080 assertPackageMatchesCallingUid(callingPackage);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001081 enforceNotIsolatedCaller("startActivityAsUser");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001082
Wale Ogunwale5fa8a8c2018-05-08 13:43:21 -07001083 userId = getActivityStartController().checkTargetUser(userId, validateIncomingUser,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001084 Binder.getCallingPid(), Binder.getCallingUid(), "startActivityAsUser");
1085
1086 // TODO: Switch to user app stacks here.
Wale Ogunwale5fa8a8c2018-05-08 13:43:21 -07001087 return getActivityStartController().obtainStarter(intent, "startActivityAsUser")
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001088 .setCaller(caller)
1089 .setCallingPackage(callingPackage)
Philip P. Moltmannee295092020-02-10 08:46:26 -08001090 .setCallingFeatureId(callingFeatureId)
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001091 .setResolvedType(resolvedType)
1092 .setResultTo(resultTo)
1093 .setResultWho(resultWho)
1094 .setRequestCode(requestCode)
1095 .setStartFlags(startFlags)
1096 .setProfilerInfo(profilerInfo)
1097 .setActivityOptions(bOptions)
Louis Chang54fbb052019-10-16 17:10:17 +08001098 .setUserId(userId)
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001099 .execute();
1100
1101 }
1102
1103 @Override
1104 public int startActivityIntentSender(IApplicationThread caller, IIntentSender target,
1105 IBinder whitelistToken, Intent fillInIntent, String resolvedType, IBinder resultTo,
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001106 String resultWho, int requestCode, int flagsMask, int flagsValues, Bundle bOptions) {
1107 enforceNotIsolatedCaller("startActivityIntentSender");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001108 // Refuse possible leaked file descriptors
1109 if (fillInIntent != null && fillInIntent.hasFileDescriptors()) {
1110 throw new IllegalArgumentException("File descriptors passed in Intent");
1111 }
1112
1113 if (!(target instanceof PendingIntentRecord)) {
1114 throw new IllegalArgumentException("Bad PendingIntent object");
1115 }
1116
1117 PendingIntentRecord pir = (PendingIntentRecord)target;
1118
1119 synchronized (mGlobalLock) {
1120 // If this is coming from the currently resumed activity, it is
1121 // effectively saying that app switches are allowed at this point.
Andrii Kulian5f750bc2018-07-17 08:57:23 -07001122 final ActivityStack stack = getTopDisplayFocusedStack();
Darryl L Johnson1e3885c2020-02-27 17:38:13 -08001123 if (stack != null && stack.mResumedActivity != null
1124 && stack.mResumedActivity.info.applicationInfo.uid == Binder.getCallingUid()) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001125 mAppSwitchesAllowedTime = 0;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001126 }
1127 }
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001128 return pir.sendInner(0, fillInIntent, resolvedType, whitelistToken, null, null,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001129 resultTo, resultWho, requestCode, flagsMask, flagsValues, bOptions);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001130 }
1131
1132 @Override
1133 public boolean startNextMatchingActivity(IBinder callingActivity, Intent intent,
1134 Bundle bOptions) {
1135 // Refuse possible leaked file descriptors
1136 if (intent != null && intent.hasFileDescriptors()) {
1137 throw new IllegalArgumentException("File descriptors passed in Intent");
1138 }
1139 SafeActivityOptions options = SafeActivityOptions.fromBundle(bOptions);
1140
1141 synchronized (mGlobalLock) {
1142 final ActivityRecord r = ActivityRecord.isInStackLocked(callingActivity);
1143 if (r == null) {
1144 SafeActivityOptions.abort(options);
1145 return false;
1146 }
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07001147 if (!r.attachedToProcess()) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001148 // The caller is not running... d'oh!
1149 SafeActivityOptions.abort(options);
1150 return false;
1151 }
1152 intent = new Intent(intent);
1153 // The caller is not allowed to change the data.
1154 intent.setDataAndType(r.intent.getData(), r.intent.getType());
1155 // And we are resetting to find the next component...
1156 intent.setComponent(null);
1157
1158 final boolean debug = ((intent.getFlags() & Intent.FLAG_DEBUG_LOG_RESOLUTION) != 0);
1159
1160 ActivityInfo aInfo = null;
1161 try {
1162 List<ResolveInfo> resolves =
1163 AppGlobals.getPackageManager().queryIntentActivities(
1164 intent, r.resolvedType,
1165 PackageManager.MATCH_DEFAULT_ONLY | STOCK_PM_FLAGS,
1166 UserHandle.getCallingUserId()).getList();
1167
1168 // Look for the original activity in the list...
1169 final int N = resolves != null ? resolves.size() : 0;
1170 for (int i=0; i<N; i++) {
1171 ResolveInfo rInfo = resolves.get(i);
1172 if (rInfo.activityInfo.packageName.equals(r.packageName)
1173 && rInfo.activityInfo.name.equals(r.info.name)) {
1174 // We found the current one... the next matching is
1175 // after it.
1176 i++;
1177 if (i<N) {
1178 aInfo = resolves.get(i).activityInfo;
1179 }
1180 if (debug) {
1181 Slog.v(TAG, "Next matching activity: found current " + r.packageName
1182 + "/" + r.info.name);
1183 Slog.v(TAG, "Next matching activity: next is " + ((aInfo == null)
1184 ? "null" : aInfo.packageName + "/" + aInfo.name));
1185 }
1186 break;
1187 }
1188 }
1189 } catch (RemoteException e) {
1190 }
1191
1192 if (aInfo == null) {
1193 // Nobody who is next!
1194 SafeActivityOptions.abort(options);
1195 if (debug) Slog.d(TAG, "Next matching activity: nothing found");
1196 return false;
1197 }
1198
1199 intent.setComponent(new ComponentName(
1200 aInfo.applicationInfo.packageName, aInfo.name));
1201 intent.setFlags(intent.getFlags()&~(
1202 Intent.FLAG_ACTIVITY_FORWARD_RESULT|
1203 Intent.FLAG_ACTIVITY_CLEAR_TOP|
1204 Intent.FLAG_ACTIVITY_MULTIPLE_TASK|
1205 FLAG_ACTIVITY_NEW_TASK));
1206
1207 // Okay now we need to start the new activity, replacing the currently running activity.
1208 // This is a little tricky because we want to start the new one as if the current one is
1209 // finished, but not finish the current one first so that there is no flicker.
1210 // And thus...
1211 final boolean wasFinishing = r.finishing;
1212 r.finishing = true;
1213
1214 // Propagate reply information over to the new activity.
1215 final ActivityRecord resultTo = r.resultTo;
1216 final String resultWho = r.resultWho;
1217 final int requestCode = r.requestCode;
1218 r.resultTo = null;
1219 if (resultTo != null) {
1220 resultTo.removeResultsLocked(r, resultWho, requestCode);
1221 }
1222
1223 final long origId = Binder.clearCallingIdentity();
1224 // TODO(b/64750076): Check if calling pid should really be -1.
Wale Ogunwale5fa8a8c2018-05-08 13:43:21 -07001225 final int res = getActivityStartController()
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001226 .obtainStarter(intent, "startNextMatchingActivity")
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07001227 .setCaller(r.app.getThread())
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001228 .setResolvedType(r.resolvedType)
1229 .setActivityInfo(aInfo)
1230 .setResultTo(resultTo != null ? resultTo.appToken : null)
1231 .setResultWho(resultWho)
1232 .setRequestCode(requestCode)
1233 .setCallingPid(-1)
1234 .setCallingUid(r.launchedFromUid)
1235 .setCallingPackage(r.launchedFromPackage)
Philip P. Moltmannee295092020-02-10 08:46:26 -08001236 .setCallingFeatureId(r.launchedFromFeatureId)
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001237 .setRealCallingPid(-1)
1238 .setRealCallingUid(r.launchedFromUid)
1239 .setActivityOptions(options)
1240 .execute();
1241 Binder.restoreCallingIdentity(origId);
1242
1243 r.finishing = wasFinishing;
1244 if (res != ActivityManager.START_SUCCESS) {
1245 return false;
1246 }
1247 return true;
1248 }
1249 }
1250
Galia Peychevaed401cc2020-03-19 20:28:09 +01001251 private void enforceCallerIsDream(String callerPackageName) {
Galia Peycheva52e89222020-02-18 23:41:43 +01001252 final long origId = Binder.clearCallingIdentity();
Galia Peychevaed401cc2020-03-19 20:28:09 +01001253 try {
1254 if (!ActivityRecord.canLaunchDreamActivity(callerPackageName)) {
1255 throw new SecurityException("The dream activity can be started only when the device"
1256 + " is dreaming and only by the active dream package.");
1257 }
1258 } finally {
1259 Binder.restoreCallingIdentity(origId);
Galia Peycheva52e89222020-02-18 23:41:43 +01001260 }
Galia Peychevaed401cc2020-03-19 20:28:09 +01001261 }
1262
1263 @Override
1264 public boolean startDreamActivity(@NonNull Intent intent) {
1265 assertPackageMatchesCallingUid(intent.getPackage());
1266 enforceCallerIsDream(intent.getPackage());
Galia Peycheva52e89222020-02-18 23:41:43 +01001267
Galia Peycheva6861e912019-08-21 10:20:23 +02001268 final ActivityInfo a = new ActivityInfo();
1269 a.theme = com.android.internal.R.style.Theme_Dream;
1270 a.exported = true;
1271 a.name = DreamActivity.class.getName();
Galia Peycheva6861e912019-08-21 10:20:23 +02001272 a.enabled = true;
1273 a.launchMode = ActivityInfo.LAUNCH_SINGLE_INSTANCE;
Galia Peycheva6861e912019-08-21 10:20:23 +02001274 a.persistableMode = ActivityInfo.PERSIST_NEVER;
1275 a.screenOrientation = ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED;
1276 a.colorMode = ActivityInfo.COLOR_MODE_DEFAULT;
1277 a.flags |= ActivityInfo.FLAG_EXCLUDE_FROM_RECENTS;
1278
Galia Peycheva45f48d32020-02-20 15:39:10 +01001279 final ActivityOptions options = ActivityOptions.makeBasic();
1280 options.setLaunchActivityType(ACTIVITY_TYPE_DREAM);
1281
Galia Peychevaed401cc2020-03-19 20:28:09 +01001282 synchronized (mGlobalLock) {
1283 final WindowProcessController process = mProcessMap.getProcess(Binder.getCallingPid());
1284
1285 a.packageName = process.mInfo.packageName;
1286 a.applicationInfo = process.mInfo;
1287 a.processName = process.mInfo.processName;
1288 a.uiOptions = process.mInfo.uiOptions;
1289 a.taskAffinity = "android:" + a.packageName + "/dream";
1290
1291 final int callingUid = Binder.getCallingUid();
1292 final int callingPid = Binder.getCallingPid();
1293
1294 final long origId = Binder.clearCallingIdentity();
1295 try {
1296 getActivityStartController().obtainStarter(intent, "dream")
1297 .setCallingUid(callingUid)
1298 .setCallingPid(callingPid)
1299 .setActivityInfo(a)
1300 .setActivityOptions(options.toBundle())
1301 // To start the dream from background, we need to start it from a persistent
1302 // system process. Here we set the real calling uid to the system server uid
1303 .setRealCallingUid(Binder.getCallingUid())
1304 .setAllowBackgroundActivityStart(true)
1305 .execute();
1306 return true;
1307 } finally {
1308 Binder.restoreCallingIdentity(origId);
1309 }
Galia Peycheva6861e912019-08-21 10:20:23 +02001310 }
1311 }
1312
1313 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001314 public final WaitResult startActivityAndWait(IApplicationThread caller, String callingPackage,
Philip P. Moltmannee295092020-02-10 08:46:26 -08001315 String callingFeatureId, Intent intent, String resolvedType, IBinder resultTo,
1316 String resultWho, int requestCode, int startFlags, ProfilerInfo profilerInfo,
1317 Bundle bOptions, int userId) {
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07001318 assertPackageMatchesCallingUid(callingPackage);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001319 final WaitResult res = new WaitResult();
Riddle Hsufd66d4d2019-11-14 10:35:55 +08001320 enforceNotIsolatedCaller("startActivityAndWait");
1321 userId = handleIncomingUser(Binder.getCallingPid(), Binder.getCallingUid(),
1322 userId, "startActivityAndWait");
1323 // TODO: Switch to user app stacks here.
1324 getActivityStartController().obtainStarter(intent, "startActivityAndWait")
1325 .setCaller(caller)
1326 .setCallingPackage(callingPackage)
Philip P. Moltmannee295092020-02-10 08:46:26 -08001327 .setCallingFeatureId(callingFeatureId)
Riddle Hsufd66d4d2019-11-14 10:35:55 +08001328 .setResolvedType(resolvedType)
1329 .setResultTo(resultTo)
1330 .setResultWho(resultWho)
1331 .setRequestCode(requestCode)
1332 .setStartFlags(startFlags)
1333 .setActivityOptions(bOptions)
1334 .setUserId(userId)
1335 .setProfilerInfo(profilerInfo)
1336 .setWaitResult(res)
1337 .execute();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001338 return res;
1339 }
1340
1341 @Override
1342 public final int startActivityWithConfig(IApplicationThread caller, String callingPackage,
Philip P. Moltmannee295092020-02-10 08:46:26 -08001343 String callingFeatureId, Intent intent, String resolvedType, IBinder resultTo,
1344 String resultWho, int requestCode, int startFlags, Configuration config,
1345 Bundle bOptions, int userId) {
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07001346 assertPackageMatchesCallingUid(callingPackage);
Riddle Hsufd66d4d2019-11-14 10:35:55 +08001347 enforceNotIsolatedCaller("startActivityWithConfig");
1348 userId = handleIncomingUser(Binder.getCallingPid(), Binder.getCallingUid(), userId,
1349 "startActivityWithConfig");
1350 // TODO: Switch to user app stacks here.
1351 return getActivityStartController().obtainStarter(intent, "startActivityWithConfig")
1352 .setCaller(caller)
1353 .setCallingPackage(callingPackage)
Philip P. Moltmannee295092020-02-10 08:46:26 -08001354 .setCallingFeatureId(callingFeatureId)
Riddle Hsufd66d4d2019-11-14 10:35:55 +08001355 .setResolvedType(resolvedType)
1356 .setResultTo(resultTo)
1357 .setResultWho(resultWho)
1358 .setRequestCode(requestCode)
1359 .setStartFlags(startFlags)
1360 .setGlobalConfiguration(config)
1361 .setActivityOptions(bOptions)
1362 .setUserId(userId)
1363 .execute();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001364 }
1365
Robert Carr8a2f9132019-11-11 15:03:15 -08001366 @Override
Alison Cichowlas3e340502018-08-07 17:15:01 -04001367 public IBinder requestStartActivityPermissionToken(IBinder delegatorToken) {
1368 int callingUid = Binder.getCallingUid();
1369 if (UserHandle.getAppId(callingUid) != SYSTEM_UID) {
1370 throw new SecurityException("Only the system process can request a permission token, "
1371 + "received request from uid: " + callingUid);
1372 }
1373 IBinder permissionToken = new Binder();
1374 synchronized (mGlobalLock) {
1375 mStartActivitySources.put(permissionToken, delegatorToken);
1376 }
1377
1378 Message expireMsg = PooledLambda.obtainMessage(
1379 ActivityTaskManagerService::expireStartAsCallerTokenMsg, this, permissionToken);
1380 mUiHandler.sendMessageDelayed(expireMsg, START_AS_CALLER_TOKEN_TIMEOUT_IMPL);
1381
1382 Message forgetMsg = PooledLambda.obtainMessage(
1383 ActivityTaskManagerService::forgetStartAsCallerTokenMsg, this, permissionToken);
1384 mUiHandler.sendMessageDelayed(forgetMsg, START_AS_CALLER_TOKEN_EXPIRED_TIMEOUT);
1385
1386 return permissionToken;
1387 }
1388
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001389 @Override
1390 public final int startActivityAsCaller(IApplicationThread caller, String callingPackage,
1391 Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode,
Alison Cichowlas3e340502018-08-07 17:15:01 -04001392 int startFlags, ProfilerInfo profilerInfo, Bundle bOptions, IBinder permissionToken,
1393 boolean ignoreTargetSecurity, int userId) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001394 // This is very dangerous -- it allows you to perform a start activity (including
Alison Cichowlas3e340502018-08-07 17:15:01 -04001395 // permission grants) as any app that may launch one of your own activities. So we only
1396 // allow this in two cases:
1397 // 1) The caller is an activity that is part of the core framework, and then only when it
1398 // is running as the system.
1399 // 2) The caller provides a valid permissionToken. Permission tokens are one-time use and
1400 // can only be requested by a system activity, which may then delegate this call to
1401 // another app.
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001402 final ActivityRecord sourceRecord;
1403 final int targetUid;
1404 final String targetPackage;
Philip P. Moltmannee295092020-02-10 08:46:26 -08001405 final String targetFeatureId;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001406 final boolean isResolver;
1407 synchronized (mGlobalLock) {
1408 if (resultTo == null) {
1409 throw new SecurityException("Must be called from an activity");
1410 }
Alison Cichowlas3e340502018-08-07 17:15:01 -04001411 final IBinder sourceToken;
1412 if (permissionToken != null) {
1413 // To even attempt to use a permissionToken, an app must also have this signature
1414 // permission.
1415 mAmInternal.enforceCallingPermission(
1416 android.Manifest.permission.START_ACTIVITY_AS_CALLER,
1417 "startActivityAsCaller");
1418 // If called with a permissionToken, we want the sourceRecord from the delegator
1419 // activity that requested this token.
1420 sourceToken = mStartActivitySources.remove(permissionToken);
1421 if (sourceToken == null) {
1422 // Invalid permissionToken, check if it recently expired.
1423 if (mExpiredStartAsCallerTokens.contains(permissionToken)) {
1424 throw new SecurityException("Called with expired permission token: "
1425 + permissionToken);
1426 } else {
1427 throw new SecurityException("Called with invalid permission token: "
1428 + permissionToken);
1429 }
1430 }
1431 } else {
1432 // This method was called directly by the source.
1433 sourceToken = resultTo;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001434 }
Alison Cichowlas3e340502018-08-07 17:15:01 -04001435
Louis Chang149d5c82019-12-30 09:47:39 +08001436 sourceRecord = mRootWindowContainer.isInAnyStack(sourceToken);
Alison Cichowlas3e340502018-08-07 17:15:01 -04001437 if (sourceRecord == null) {
1438 throw new SecurityException("Called with bad activity token: " + sourceToken);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001439 }
1440 if (sourceRecord.app == null) {
1441 throw new SecurityException("Called without a process attached to activity");
1442 }
Alison Cichowlas3e340502018-08-07 17:15:01 -04001443
1444 // Whether called directly or from a delegate, the source activity must be from the
1445 // android package.
1446 if (!sourceRecord.info.packageName.equals("android")) {
1447 throw new SecurityException("Must be called from an activity that is "
1448 + "declared in the android package");
1449 }
1450
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07001451 if (UserHandle.getAppId(sourceRecord.app.mUid) != SYSTEM_UID) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001452 // This is still okay, as long as this activity is running under the
1453 // uid of the original calling activity.
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07001454 if (sourceRecord.app.mUid != sourceRecord.launchedFromUid) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001455 throw new SecurityException(
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07001456 "Calling activity in uid " + sourceRecord.app.mUid
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001457 + " must be system uid or original calling uid "
1458 + sourceRecord.launchedFromUid);
1459 }
1460 }
1461 if (ignoreTargetSecurity) {
1462 if (intent.getComponent() == null) {
1463 throw new SecurityException(
1464 "Component must be specified with ignoreTargetSecurity");
1465 }
1466 if (intent.getSelector() != null) {
1467 throw new SecurityException(
1468 "Selector not allowed with ignoreTargetSecurity");
1469 }
1470 }
1471 targetUid = sourceRecord.launchedFromUid;
1472 targetPackage = sourceRecord.launchedFromPackage;
Philip P. Moltmannee295092020-02-10 08:46:26 -08001473 targetFeatureId = sourceRecord.launchedFromFeatureId;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001474 isResolver = sourceRecord.isResolverOrChildActivity();
1475 }
1476
1477 if (userId == UserHandle.USER_NULL) {
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07001478 userId = UserHandle.getUserId(sourceRecord.app.mUid);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001479 }
1480
1481 // TODO: Switch to user app stacks here.
1482 try {
Wale Ogunwale5fa8a8c2018-05-08 13:43:21 -07001483 return getActivityStartController().obtainStarter(intent, "startActivityAsCaller")
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001484 .setCallingUid(targetUid)
1485 .setCallingPackage(targetPackage)
Philip P. Moltmannee295092020-02-10 08:46:26 -08001486 .setCallingFeatureId(targetFeatureId)
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001487 .setResolvedType(resolvedType)
1488 .setResultTo(resultTo)
1489 .setResultWho(resultWho)
1490 .setRequestCode(requestCode)
1491 .setStartFlags(startFlags)
1492 .setActivityOptions(bOptions)
Louis Chang54fbb052019-10-16 17:10:17 +08001493 .setUserId(userId)
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001494 .setIgnoreTargetSecurity(ignoreTargetSecurity)
1495 .setFilterCallingUid(isResolver ? 0 /* system */ : targetUid)
Alan Stokes2f4a4ed2019-05-08 16:56:45 +01001496 // The target may well be in the background, which would normally prevent it
1497 // from starting an activity. Here we definitely want the start to succeed.
1498 .setAllowBackgroundActivityStart(true)
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001499 .execute();
1500 } catch (SecurityException e) {
1501 // XXX need to figure out how to propagate to original app.
1502 // A SecurityException here is generally actually a fault of the original
1503 // calling activity (such as a fairly granting permissions), so propagate it
1504 // back to them.
1505 /*
1506 StringBuilder msg = new StringBuilder();
1507 msg.append("While launching");
1508 msg.append(intent.toString());
1509 msg.append(": ");
1510 msg.append(e.getMessage());
1511 */
1512 throw e;
1513 }
1514 }
1515
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001516 int handleIncomingUser(int callingPid, int callingUid, int userId, String name) {
1517 return mAmInternal.handleIncomingUser(callingPid, callingUid, userId, false /* allowAll */,
Jonathan Scott92335342019-12-17 14:46:26 +00001518 ALLOW_NON_FULL, name, null /* callerPackage */);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001519 }
1520
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001521 @Override
Philip P. Moltmannee295092020-02-10 08:46:26 -08001522 public int startVoiceActivity(String callingPackage, String callingFeatureId, int callingPid,
1523 int callingUid, Intent intent, String resolvedType, IVoiceInteractionSession session,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001524 IVoiceInteractor interactor, int startFlags, ProfilerInfo profilerInfo,
1525 Bundle bOptions, int userId) {
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07001526 assertPackageMatchesCallingUid(callingPackage);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001527 mAmInternal.enforceCallingPermission(BIND_VOICE_INTERACTION, "startVoiceActivity()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001528 if (session == null || interactor == null) {
1529 throw new NullPointerException("null session or interactor");
1530 }
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001531 userId = handleIncomingUser(callingPid, callingUid, userId, "startVoiceActivity");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001532 // TODO: Switch to user app stacks here.
Wale Ogunwale5fa8a8c2018-05-08 13:43:21 -07001533 return getActivityStartController().obtainStarter(intent, "startVoiceActivity")
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001534 .setCallingUid(callingUid)
1535 .setCallingPackage(callingPackage)
Philip P. Moltmannee295092020-02-10 08:46:26 -08001536 .setCallingFeatureId(callingFeatureId)
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001537 .setResolvedType(resolvedType)
1538 .setVoiceSession(session)
1539 .setVoiceInteractor(interactor)
1540 .setStartFlags(startFlags)
1541 .setProfilerInfo(profilerInfo)
1542 .setActivityOptions(bOptions)
Louis Chang54fbb052019-10-16 17:10:17 +08001543 .setUserId(userId)
Michal Karpinski85fa2022019-02-08 12:05:09 +00001544 .setAllowBackgroundActivityStart(true)
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001545 .execute();
1546 }
1547
1548 @Override
Philip P. Moltmannee295092020-02-10 08:46:26 -08001549 public int startAssistantActivity(String callingPackage, @NonNull String callingFeatureId,
1550 int callingPid, int callingUid, Intent intent, String resolvedType, Bundle bOptions,
1551 int userId) {
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07001552 assertPackageMatchesCallingUid(callingPackage);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001553 mAmInternal.enforceCallingPermission(BIND_VOICE_INTERACTION, "startAssistantActivity()");
1554 userId = handleIncomingUser(callingPid, callingUid, userId, "startAssistantActivity");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001555
Wale Ogunwale5fa8a8c2018-05-08 13:43:21 -07001556 return getActivityStartController().obtainStarter(intent, "startAssistantActivity")
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001557 .setCallingUid(callingUid)
1558 .setCallingPackage(callingPackage)
Philip P. Moltmannee295092020-02-10 08:46:26 -08001559 .setCallingFeatureId(callingFeatureId)
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001560 .setResolvedType(resolvedType)
1561 .setActivityOptions(bOptions)
Louis Chang54fbb052019-10-16 17:10:17 +08001562 .setUserId(userId)
Michal Karpinski85fa2022019-02-08 12:05:09 +00001563 .setAllowBackgroundActivityStart(true)
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001564 .execute();
1565 }
1566
Riddle Hsu609a8e22019-06-27 16:46:29 -06001567 /**
1568 * Start the recents activity to perform the recents animation.
1569 *
1570 * @param intent The intent to start the recents activity.
1571 * @param recentsAnimationRunner Pass {@code null} to only preload the activity.
1572 */
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001573 @Override
Riddle Hsu609a8e22019-06-27 16:46:29 -06001574 public void startRecentsActivity(Intent intent, @Deprecated IAssistDataReceiver unused,
1575 @Nullable IRecentsAnimationRunner recentsAnimationRunner) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001576 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "startRecentsActivity()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001577 final int callingPid = Binder.getCallingPid();
Jorim Jaggi589c5ba2019-07-30 16:50:13 +02001578 final int callingUid = Binder.getCallingUid();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001579 final long origId = Binder.clearCallingIdentity();
1580 try {
1581 synchronized (mGlobalLock) {
Wale Ogunwale16e505a2018-05-07 15:00:49 -07001582 final ComponentName recentsComponent = mRecentTasks.getRecentsComponent();
Philip P. Moltmannee295092020-02-10 08:46:26 -08001583 final String recentsFeatureId = mRecentTasks.getRecentsComponentFeatureId();
Wale Ogunwale16e505a2018-05-07 15:00:49 -07001584 final int recentsUid = mRecentTasks.getRecentsComponentUid();
Jorim Jaggi589c5ba2019-07-30 16:50:13 +02001585 final WindowProcessController caller = getProcessController(callingPid, callingUid);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001586
1587 // Start a new recents animation
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001588 final RecentsAnimation anim = new RecentsAnimation(this, mStackSupervisor,
Riddle Hsu609a8e22019-06-27 16:46:29 -06001589 getActivityStartController(), mWindowManager, intent, recentsComponent,
Philip P. Moltmannee295092020-02-10 08:46:26 -08001590 recentsFeatureId, recentsUid, caller);
Riddle Hsu609a8e22019-06-27 16:46:29 -06001591 if (recentsAnimationRunner == null) {
1592 anim.preloadRecentsActivity();
1593 } else {
1594 anim.startRecentsActivity(recentsAnimationRunner);
1595 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001596 }
1597 } finally {
1598 Binder.restoreCallingIdentity(origId);
1599 }
1600 }
1601
1602 @Override
1603 public final int startActivityFromRecents(int taskId, Bundle bOptions) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001604 enforceCallerIsRecentsOrHasPermission(START_TASKS_FROM_RECENTS,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001605 "startActivityFromRecents()");
1606
1607 final int callingPid = Binder.getCallingPid();
1608 final int callingUid = Binder.getCallingUid();
1609 final SafeActivityOptions safeOptions = SafeActivityOptions.fromBundle(bOptions);
1610 final long origId = Binder.clearCallingIdentity();
1611 try {
1612 synchronized (mGlobalLock) {
1613 return mStackSupervisor.startActivityFromRecents(callingPid, callingUid, taskId,
1614 safeOptions);
1615 }
1616 } finally {
1617 Binder.restoreCallingIdentity(origId);
1618 }
1619 }
1620
1621 /**
Andrii Kulian2eb84b22018-12-13 18:18:54 -08001622 * Public API to check if the client is allowed to start an activity on specified display.
1623 *
1624 * If the target display is private or virtual, some restrictions will apply.
1625 *
1626 * @param displayId Target display id.
1627 * @param intent Intent used to launch the activity.
1628 * @param resolvedType The MIME type of the intent.
1629 * @param userId The id of the user for whom the call is made.
1630 * @return {@code true} if a call to start an activity on the target display should succeed and
1631 * no {@link SecurityException} will be thrown, {@code false} otherwise.
1632 */
1633 @Override
1634 public final boolean isActivityStartAllowedOnDisplay(int displayId, Intent intent,
1635 String resolvedType, int userId) {
1636 final int callingUid = Binder.getCallingUid();
1637 final int callingPid = Binder.getCallingPid();
1638 final long origId = Binder.clearCallingIdentity();
1639
1640 try {
1641 // Collect information about the target of the Intent.
1642 ActivityInfo aInfo = mStackSupervisor.resolveActivity(intent, resolvedType,
1643 0 /* startFlags */, null /* profilerInfo */, userId,
1644 ActivityStarter.computeResolveFilterUid(callingUid, callingUid,
1645 UserHandle.USER_NULL));
1646 aInfo = mAmInternal.getActivityInfoForUser(aInfo, userId);
1647
1648 synchronized (mGlobalLock) {
1649 return mStackSupervisor.canPlaceEntityOnDisplay(displayId, callingPid, callingUid,
1650 aInfo);
1651 }
1652 } finally {
1653 Binder.restoreCallingIdentity(origId);
1654 }
1655 }
1656
1657 /**
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001658 * This is the internal entry point for handling Activity.finish().
1659 *
1660 * @param token The Binder token referencing the Activity we want to finish.
1661 * @param resultCode Result code, if any, from this Activity.
1662 * @param resultData Result data (Intent), if any, from this Activity.
1663 * @param finishTask Whether to finish the task associated with this Activity.
1664 *
1665 * @return Returns true if the activity successfully finished, or false if it is still running.
1666 */
1667 @Override
1668 public final boolean finishActivity(IBinder token, int resultCode, Intent resultData,
1669 int finishTask) {
1670 // Refuse possible leaked file descriptors
1671 if (resultData != null && resultData.hasFileDescriptors()) {
1672 throw new IllegalArgumentException("File descriptors passed in Intent");
1673 }
1674
1675 synchronized (mGlobalLock) {
Andrii Kulian057a6512019-07-15 16:15:51 -07001676 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001677 if (r == null) {
1678 return true;
1679 }
1680 // Keep track of the root activity of the task before we finish it
Louis Changcdec0802019-11-11 11:45:07 +08001681 final Task tr = r.getTask();
Andrii Kulian057a6512019-07-15 16:15:51 -07001682 final ActivityRecord rootR = tr.getRootActivity();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001683 if (rootR == null) {
1684 Slog.w(TAG, "Finishing task with all activities already finished");
1685 }
1686 // Do not allow task to finish if last task in lockTask mode. Launchable priv-apps can
1687 // finish.
Wale Ogunwaled95c06b2018-05-08 10:35:38 -07001688 if (getLockTaskController().activityBlockedFromFinish(r)) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001689 return false;
1690 }
1691
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001692 // TODO: There is a dup. of this block of code in ActivityStack.navigateUpToLocked
1693 // We should consolidate.
1694 if (mController != null) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001695 // Find the first activity that is not finishing.
Wale Ogunwale85fb19a2019-12-05 10:41:05 +09001696 final ActivityRecord next =
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08001697 r.getRootTask().topRunningActivity(token, INVALID_TASK_ID);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001698 if (next != null) {
1699 // ask watcher if this is allowed
1700 boolean resumeOK = true;
1701 try {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001702 resumeOK = mController.activityResuming(next.packageName);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001703 } catch (RemoteException e) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001704 mController = null;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001705 Watchdog.getInstance().setActivityController(null);
1706 }
1707
1708 if (!resumeOK) {
1709 Slog.i(TAG, "Not finishing activity because controller resumed");
1710 return false;
1711 }
1712 }
1713 }
Michal Karpinskifc6872e2019-05-21 15:18:44 +01001714
1715 // note down that the process has finished an activity and is in background activity
1716 // starts grace period
1717 if (r.app != null) {
1718 r.app.setLastActivityFinishTimeIfNeeded(SystemClock.uptimeMillis());
1719 }
1720
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001721 final long origId = Binder.clearCallingIdentity();
Riddle Hsu2ca561b2019-10-08 21:58:58 +08001722 Trace.traceBegin(TRACE_TAG_WINDOW_MANAGER, "finishActivity");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001723 try {
1724 boolean res;
1725 final boolean finishWithRootActivity =
1726 finishTask == Activity.FINISH_TASK_WITH_ROOT_ACTIVITY;
1727 if (finishTask == Activity.FINISH_TASK_WITH_ACTIVITY
1728 || (finishWithRootActivity && r == rootR)) {
1729 // If requested, remove the task that is associated to this activity only if it
1730 // was the root activity in the task. The result code and data is ignored
1731 // because we don't support returning them across task boundaries. Also, to
1732 // keep backwards compatibility we remove the task from recents when finishing
1733 // task with root activity.
Wale Ogunwale85fb19a2019-12-05 10:41:05 +09001734 mStackSupervisor.removeTask(tr, false /*killProcess*/,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001735 finishWithRootActivity, "finish-activity");
Wale Ogunwale85fb19a2019-12-05 10:41:05 +09001736 res = true;
Garfield Tan2746ab52018-07-25 12:33:01 -07001737 // Explicitly dismissing the activity so reset its relaunch flag.
Wale Ogunwale64258362018-10-16 15:13:37 -07001738 r.mRelaunchReason = RELAUNCH_REASON_NONE;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001739 } else {
Louis Chang7b03ad92019-08-21 12:32:33 +08001740 r.finishIfPossible(resultCode, resultData, "app-request", true /* oomAdj */);
Andrii Kulian40eda672019-07-30 15:05:57 -07001741 res = r.finishing;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001742 if (!res) {
1743 Slog.i(TAG, "Failed to finish by app-request");
1744 }
1745 }
1746 return res;
1747 } finally {
Riddle Hsu2ca561b2019-10-08 21:58:58 +08001748 Trace.traceEnd(TRACE_TAG_WINDOW_MANAGER);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001749 Binder.restoreCallingIdentity(origId);
1750 }
1751 }
1752 }
1753
1754 @Override
1755 public boolean finishActivityAffinity(IBinder token) {
1756 synchronized (mGlobalLock) {
1757 final long origId = Binder.clearCallingIdentity();
1758 try {
1759 ActivityRecord r = ActivityRecord.isInStackLocked(token);
1760 if (r == null) {
1761 return false;
1762 }
1763
1764 // Do not allow task to finish if last task in lockTask mode. Launchable priv-apps
1765 // can finish.
Wale Ogunwaled95c06b2018-05-08 10:35:38 -07001766 if (getLockTaskController().activityBlockedFromFinish(r)) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001767 return false;
1768 }
Wale Ogunwalea38654f2019-11-17 20:37:15 -08001769
1770 final PooledFunction p = PooledLambda.obtainFunction(
1771 ActivityRecord::finishIfSameAffinity, r,
1772 PooledLambda.__(ActivityRecord.class));
1773 r.getTask().forAllActivities(
1774 p, r, true /*includeBoundary*/, true /*traverseTopToBottom*/);
1775 p.recycle();
1776
Andrii Kuliande93eff2019-07-12 12:21:27 -07001777 return true;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001778 } finally {
1779 Binder.restoreCallingIdentity(origId);
1780 }
1781 }
1782 }
1783
1784 @Override
1785 public final void activityIdle(IBinder token, Configuration config, boolean stopProfiling) {
1786 final long origId = Binder.clearCallingIdentity();
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07001787 try {
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07001788 synchronized (mGlobalLock) {
Riddle Hsu2ca561b2019-10-08 21:58:58 +08001789 Trace.traceBegin(TRACE_TAG_WINDOW_MANAGER, "activityIdle");
Riddle Hsufc8ab262019-12-31 15:31:24 +08001790 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
1791 if (r == null) {
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07001792 return;
1793 }
Riddle Hsufc8ab262019-12-31 15:31:24 +08001794 mStackSupervisor.activityIdleInternal(r, false /* fromTimeout */,
1795 false /* processPausingActivities */, config);
1796 if (stopProfiling && r.hasProcess()) {
1797 r.app.clearProfilerIfNeeded();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001798 }
1799 }
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07001800 } finally {
Riddle Hsu2ca561b2019-10-08 21:58:58 +08001801 Trace.traceEnd(TRACE_TAG_WINDOW_MANAGER);
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07001802 Binder.restoreCallingIdentity(origId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001803 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001804 }
1805
1806 @Override
1807 public final void activityResumed(IBinder token) {
1808 final long origId = Binder.clearCallingIdentity();
1809 synchronized (mGlobalLock) {
1810 ActivityRecord.activityResumedLocked(token);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001811 }
1812 Binder.restoreCallingIdentity(origId);
1813 }
1814
1815 @Override
Andrii Kulian86e70fc2019-02-12 11:04:10 +00001816 public final void activityTopResumedStateLost() {
1817 final long origId = Binder.clearCallingIdentity();
1818 synchronized (mGlobalLock) {
1819 mStackSupervisor.handleTopResumedStateReleased(false /* timeout */);
1820 }
1821 Binder.restoreCallingIdentity(origId);
1822 }
1823
1824 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001825 public final void activityPaused(IBinder token) {
1826 final long origId = Binder.clearCallingIdentity();
1827 synchronized (mGlobalLock) {
Riddle Hsu2ca561b2019-10-08 21:58:58 +08001828 Trace.traceBegin(TRACE_TAG_WINDOW_MANAGER, "activityPaused");
Wale Ogunwale196db712019-12-27 15:35:39 +00001829 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
1830 if (r != null) {
1831 r.activityPaused(false);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001832 }
Riddle Hsu2ca561b2019-10-08 21:58:58 +08001833 Trace.traceEnd(TRACE_TAG_WINDOW_MANAGER);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001834 }
1835 Binder.restoreCallingIdentity(origId);
1836 }
1837
1838 @Override
1839 public final void activityStopped(IBinder token, Bundle icicle,
1840 PersistableBundle persistentState, CharSequence description) {
1841 if (DEBUG_ALL) Slog.v(TAG, "Activity stopped: token=" + token);
1842
1843 // Refuse possible leaked file descriptors
1844 if (icicle != null && icicle.hasFileDescriptors()) {
1845 throw new IllegalArgumentException("File descriptors passed in Bundle");
1846 }
1847
1848 final long origId = Binder.clearCallingIdentity();
1849
Riddle Hsu7b766fd2019-01-28 21:14:59 +08001850 String restartingName = null;
1851 int restartingUid = 0;
1852 final ActivityRecord r;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001853 synchronized (mGlobalLock) {
Riddle Hsu2ca561b2019-10-08 21:58:58 +08001854 Trace.traceBegin(TRACE_TAG_WINDOW_MANAGER, "activityStopped");
Riddle Hsu7b766fd2019-01-28 21:14:59 +08001855 r = ActivityRecord.isInStackLocked(token);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001856 if (r != null) {
Riddle Hsu7b766fd2019-01-28 21:14:59 +08001857 if (r.attachedToProcess()
1858 && r.isState(ActivityStack.ActivityState.RESTARTING_PROCESS)) {
1859 // The activity was requested to restart from
1860 // {@link #restartActivityProcessIfVisible}.
1861 restartingName = r.app.mName;
1862 restartingUid = r.app.mUid;
1863 }
Wale Ogunwale196db712019-12-27 15:35:39 +00001864 r.activityStopped(icicle, persistentState, description);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001865 }
Riddle Hsu2ca561b2019-10-08 21:58:58 +08001866 Trace.traceEnd(TRACE_TAG_WINDOW_MANAGER);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001867 }
1868
Riddle Hsu7b766fd2019-01-28 21:14:59 +08001869 if (restartingName != null) {
1870 // In order to let the foreground activity can be restarted with its saved state from
1871 // {@link android.app.Activity#onSaveInstanceState}, the kill operation is postponed
1872 // until the activity reports stopped with the state. And the activity record will be
1873 // kept because the record state is restarting, then the activity will be restarted
1874 // immediately if it is still the top one.
1875 mStackSupervisor.removeRestartTimeouts(r);
1876 mAmInternal.killProcess(restartingName, restartingUid, "restartActivityProcess");
1877 }
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001878 mAmInternal.trimApplications();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001879
1880 Binder.restoreCallingIdentity(origId);
1881 }
1882
1883 @Override
1884 public final void activityDestroyed(IBinder token) {
1885 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "ACTIVITY DESTROYED: " + token);
1886 synchronized (mGlobalLock) {
Andrii Kulian79d67982019-08-19 11:56:16 -07001887 final long origId = Binder.clearCallingIdentity();
Riddle Hsu2ca561b2019-10-08 21:58:58 +08001888 Trace.traceBegin(TRACE_TAG_WINDOW_MANAGER, "activityDestroyed");
Andrii Kulian79d67982019-08-19 11:56:16 -07001889 try {
1890 final ActivityRecord activity = ActivityRecord.forTokenLocked(token);
1891 if (activity != null) {
1892 activity.destroyed("activityDestroyed");
1893 }
1894 } finally {
Riddle Hsu2ca561b2019-10-08 21:58:58 +08001895 Trace.traceEnd(TRACE_TAG_WINDOW_MANAGER);
Andrii Kulian79d67982019-08-19 11:56:16 -07001896 Binder.restoreCallingIdentity(origId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001897 }
1898 }
1899 }
1900
1901 @Override
1902 public final void activityRelaunched(IBinder token) {
1903 final long origId = Binder.clearCallingIdentity();
1904 synchronized (mGlobalLock) {
1905 mStackSupervisor.activityRelaunchedLocked(token);
1906 }
1907 Binder.restoreCallingIdentity(origId);
1908 }
1909
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001910 @Override
1911 public void setRequestedOrientation(IBinder token, int requestedOrientation) {
1912 synchronized (mGlobalLock) {
1913 ActivityRecord r = ActivityRecord.isInStackLocked(token);
1914 if (r == null) {
1915 return;
1916 }
1917 final long origId = Binder.clearCallingIdentity();
1918 try {
1919 r.setRequestedOrientation(requestedOrientation);
1920 } finally {
1921 Binder.restoreCallingIdentity(origId);
1922 }
1923 }
1924 }
1925
1926 @Override
1927 public int getRequestedOrientation(IBinder token) {
1928 synchronized (mGlobalLock) {
Wale Ogunwaleda8b8272018-11-29 19:37:37 -08001929 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
1930 return (r != null)
1931 ? r.getRequestedOrientation() : ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001932 }
1933 }
1934
1935 @Override
1936 public void setImmersive(IBinder token, boolean immersive) {
1937 synchronized (mGlobalLock) {
1938 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
1939 if (r == null) {
1940 throw new IllegalArgumentException();
1941 }
1942 r.immersive = immersive;
1943
1944 // update associated state if we're frontmost
Andrii Kulian52d255c2018-07-13 11:32:19 -07001945 if (r.isResumedActivityOnDisplay()) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001946 if (DEBUG_IMMERSIVE) Slog.d(TAG_IMMERSIVE, "Frontmost changed immersion: "+ r);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001947 applyUpdateLockStateLocked(r);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001948 }
1949 }
1950 }
1951
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001952 void applyUpdateLockStateLocked(ActivityRecord r) {
1953 // Modifications to the UpdateLock state are done on our handler, outside
1954 // the activity manager's locks. The new state is determined based on the
1955 // state *now* of the relevant activity record. The object is passed to
1956 // the handler solely for logging detail, not to be consulted/modified.
1957 final boolean nextState = r != null && r.immersive;
1958 mH.post(() -> {
1959 if (mUpdateLock.isHeld() != nextState) {
1960 if (DEBUG_IMMERSIVE) Slog.d(TAG_IMMERSIVE,
1961 "Applying new update lock state '" + nextState + "' for " + r);
1962 if (nextState) {
1963 mUpdateLock.acquire();
1964 } else {
1965 mUpdateLock.release();
1966 }
1967 }
1968 });
1969 }
1970
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001971 @Override
1972 public boolean isImmersive(IBinder token) {
1973 synchronized (mGlobalLock) {
1974 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
1975 if (r == null) {
1976 throw new IllegalArgumentException();
1977 }
1978 return r.immersive;
1979 }
1980 }
1981
1982 @Override
1983 public boolean isTopActivityImmersive() {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001984 enforceNotIsolatedCaller("isTopActivityImmersive");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001985 synchronized (mGlobalLock) {
Darryl L Johnson1e3885c2020-02-27 17:38:13 -08001986 final ActivityStack topFocusedStack = getTopDisplayFocusedStack();
1987 if (topFocusedStack == null) {
1988 return false;
1989 }
1990
1991 final ActivityRecord r = topFocusedStack.topRunningActivity();
1992 return r != null && r.immersive;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001993 }
1994 }
1995
1996 @Override
1997 public void overridePendingTransition(IBinder token, String packageName,
1998 int enterAnim, int exitAnim) {
1999 synchronized (mGlobalLock) {
2000 ActivityRecord self = ActivityRecord.isInStackLocked(token);
2001 if (self == null) {
2002 return;
2003 }
2004
2005 final long origId = Binder.clearCallingIdentity();
2006
2007 if (self.isState(
2008 ActivityStack.ActivityState.RESUMED, ActivityStack.ActivityState.PAUSING)) {
Wale Ogunwale3a256e62018-12-06 14:41:18 -08002009 self.getDisplay().mDisplayContent.mAppTransition.overridePendingAppTransition(
Ming-Shin Lub6d70022020-03-27 23:51:56 +08002010 packageName, enterAnim, exitAnim, null, null);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002011 }
2012
2013 Binder.restoreCallingIdentity(origId);
2014 }
2015 }
2016
2017 @Override
2018 public int getFrontActivityScreenCompatMode() {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002019 enforceNotIsolatedCaller("getFrontActivityScreenCompatMode");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002020 synchronized (mGlobalLock) {
Darryl L Johnson1e3885c2020-02-27 17:38:13 -08002021 final ActivityStack stack = getTopDisplayFocusedStack();
2022 final ActivityRecord r = stack != null ? stack.topRunningActivity() : null;
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002023 if (r == null) {
2024 return ActivityManager.COMPAT_MODE_UNKNOWN;
2025 }
Wale Ogunwale53783742018-09-16 10:21:51 -07002026 return mCompatModePackages.computeCompatModeLocked(r.info.applicationInfo);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002027 }
2028 }
2029
2030 @Override
2031 public void setFrontActivityScreenCompatMode(int mode) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002032 mAmInternal.enforceCallingPermission(android.Manifest.permission.SET_SCREEN_COMPATIBILITY,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002033 "setFrontActivityScreenCompatMode");
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002034 ApplicationInfo ai;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002035 synchronized (mGlobalLock) {
Darryl L Johnson1e3885c2020-02-27 17:38:13 -08002036 final ActivityStack stack = getTopDisplayFocusedStack();
2037 final ActivityRecord r = stack != null ? stack.topRunningActivity() : null;
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002038 if (r == null) {
2039 Slog.w(TAG, "setFrontActivityScreenCompatMode failed: no top activity");
2040 return;
2041 }
2042 ai = r.info.applicationInfo;
Wale Ogunwale53783742018-09-16 10:21:51 -07002043 mCompatModePackages.setPackageScreenCompatModeLocked(ai, mode);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002044 }
2045 }
2046
2047 @Override
2048 public int getLaunchedFromUid(IBinder activityToken) {
2049 ActivityRecord srec;
2050 synchronized (mGlobalLock) {
2051 srec = ActivityRecord.forTokenLocked(activityToken);
2052 }
2053 if (srec == null) {
2054 return -1;
2055 }
2056 return srec.launchedFromUid;
2057 }
2058
2059 @Override
2060 public String getLaunchedFromPackage(IBinder activityToken) {
2061 ActivityRecord srec;
2062 synchronized (mGlobalLock) {
2063 srec = ActivityRecord.forTokenLocked(activityToken);
2064 }
2065 if (srec == null) {
2066 return null;
2067 }
2068 return srec.launchedFromPackage;
2069 }
2070
2071 @Override
2072 public boolean convertFromTranslucent(IBinder token) {
2073 final long origId = Binder.clearCallingIdentity();
2074 try {
2075 synchronized (mGlobalLock) {
2076 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
2077 if (r == null) {
2078 return false;
2079 }
Wale Ogunwale83b8a6b2019-06-27 20:15:15 -07002080 return r.setOccludesParent(true);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002081 }
2082 } finally {
2083 Binder.restoreCallingIdentity(origId);
2084 }
2085 }
2086
2087 @Override
2088 public boolean convertToTranslucent(IBinder token, Bundle options) {
2089 SafeActivityOptions safeOptions = SafeActivityOptions.fromBundle(options);
2090 final long origId = Binder.clearCallingIdentity();
2091 try {
2092 synchronized (mGlobalLock) {
2093 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
2094 if (r == null) {
2095 return false;
2096 }
Wale Ogunwalea38654f2019-11-17 20:37:15 -08002097 final ActivityRecord under = r.getTask().getActivityBelow(r);
2098 if (under != null) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002099 under.returningOptions = safeOptions != null ? safeOptions.getOptions(r) : null;
2100 }
Wale Ogunwale83b8a6b2019-06-27 20:15:15 -07002101 return r.setOccludesParent(false);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002102 }
2103 } finally {
2104 Binder.restoreCallingIdentity(origId);
2105 }
2106 }
2107
2108 @Override
2109 public void notifyActivityDrawn(IBinder token) {
2110 if (DEBUG_VISIBILITY) Slog.d(TAG_VISIBILITY, "notifyActivityDrawn: token=" + token);
2111 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08002112 ActivityRecord r = mRootWindowContainer.isInAnyStack(token);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002113 if (r != null) {
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08002114 r.getRootTask().notifyActivityDrawnLocked(r);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002115 }
2116 }
2117 }
2118
2119 @Override
2120 public void reportActivityFullyDrawn(IBinder token, boolean restoredFromBundle) {
2121 synchronized (mGlobalLock) {
2122 ActivityRecord r = ActivityRecord.isInStackLocked(token);
2123 if (r == null) {
2124 return;
2125 }
2126 r.reportFullyDrawnLocked(restoredFromBundle);
2127 }
2128 }
2129
2130 @Override
Louis Chang677921f2019-12-06 16:44:24 +08002131 public int getDisplayId(IBinder activityToken) throws RemoteException {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002132 synchronized (mGlobalLock) {
2133 final ActivityStack stack = ActivityRecord.getStackLocked(activityToken);
Wale Ogunwale8f93b642019-12-26 12:10:52 -08002134 if (stack != null) {
2135 final int displayId = stack.getDisplayId();
2136 return displayId != INVALID_DISPLAY ? displayId : DEFAULT_DISPLAY;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002137 }
2138 return DEFAULT_DISPLAY;
2139 }
2140 }
2141
2142 @Override
2143 public ActivityManager.StackInfo getFocusedStackInfo() throws RemoteException {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002144 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "getStackInfo()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002145 long ident = Binder.clearCallingIdentity();
2146 try {
2147 synchronized (mGlobalLock) {
Andrii Kulian5f750bc2018-07-17 08:57:23 -07002148 ActivityStack focusedStack = getTopDisplayFocusedStack();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002149 if (focusedStack != null) {
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08002150 return mRootWindowContainer.getStackInfo(focusedStack.mTaskId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002151 }
2152 return null;
2153 }
2154 } finally {
2155 Binder.restoreCallingIdentity(ident);
2156 }
2157 }
2158
2159 @Override
2160 public void setFocusedStack(int stackId) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002161 mAmInternal.enforceCallingPermission(MANAGE_ACTIVITY_STACKS, "setFocusedStack()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002162 if (DEBUG_FOCUS) Slog.d(TAG_FOCUS, "setFocusedStack: stackId=" + stackId);
2163 final long callingId = Binder.clearCallingIdentity();
2164 try {
2165 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08002166 final ActivityStack stack = mRootWindowContainer.getStack(stackId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002167 if (stack == null) {
2168 Slog.w(TAG, "setFocusedStack: No stack with id=" + stackId);
2169 return;
2170 }
Wale Ogunwale85fb19a2019-12-05 10:41:05 +09002171 final ActivityRecord r = stack.topRunningActivity();
Louis Chang19443452018-10-09 12:10:21 +08002172 if (r != null && r.moveFocusableActivityToTop("setFocusedStack")) {
Louis Chang149d5c82019-12-30 09:47:39 +08002173 mRootWindowContainer.resumeFocusedStacksTopActivities();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002174 }
2175 }
2176 } finally {
2177 Binder.restoreCallingIdentity(callingId);
2178 }
2179 }
2180
2181 @Override
2182 public void setFocusedTask(int taskId) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002183 mAmInternal.enforceCallingPermission(MANAGE_ACTIVITY_STACKS, "setFocusedTask()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002184 if (DEBUG_FOCUS) Slog.d(TAG_FOCUS, "setFocusedTask: taskId=" + taskId);
2185 final long callingId = Binder.clearCallingIdentity();
2186 try {
2187 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08002188 final Task task = mRootWindowContainer.anyTaskForId(taskId,
Riddle Hsu090ac6f2018-10-31 12:55:29 +08002189 MATCH_TASK_IN_STACKS_ONLY);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002190 if (task == null) {
2191 return;
2192 }
2193 final ActivityRecord r = task.topRunningActivityLocked();
Louis Chang19443452018-10-09 12:10:21 +08002194 if (r != null && r.moveFocusableActivityToTop("setFocusedTask")) {
Louis Chang149d5c82019-12-30 09:47:39 +08002195 mRootWindowContainer.resumeFocusedStacksTopActivities();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002196 }
2197 }
2198 } finally {
2199 Binder.restoreCallingIdentity(callingId);
2200 }
2201 }
2202
2203 @Override
Riddle Hsu7b766fd2019-01-28 21:14:59 +08002204 public void restartActivityProcessIfVisible(IBinder activityToken) {
2205 mAmInternal.enforceCallingPermission(MANAGE_ACTIVITY_STACKS, "restartActivityProcess()");
2206 final long callingId = Binder.clearCallingIdentity();
2207 try {
2208 synchronized (mGlobalLock) {
2209 final ActivityRecord r = ActivityRecord.isInStackLocked(activityToken);
2210 if (r == null) {
2211 return;
2212 }
2213 r.restartProcessIfVisible();
2214 }
2215 } finally {
2216 Binder.restoreCallingIdentity(callingId);
2217 }
2218 }
2219
2220 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002221 public boolean removeTask(int taskId) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002222 enforceCallerIsRecentsOrHasPermission(REMOVE_TASKS, "removeTask()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002223 synchronized (mGlobalLock) {
2224 final long ident = Binder.clearCallingIdentity();
2225 try {
Wale Ogunwale85fb19a2019-12-05 10:41:05 +09002226 return mStackSupervisor.removeTaskById(taskId, true, REMOVE_FROM_RECENTS,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002227 "remove-task");
2228 } finally {
2229 Binder.restoreCallingIdentity(ident);
2230 }
2231 }
2232 }
2233
2234 @Override
Winson Chunge6439102018-07-30 15:48:01 -07002235 public void removeAllVisibleRecentTasks() {
2236 enforceCallerIsRecentsOrHasPermission(REMOVE_TASKS, "removeAllVisibleRecentTasks()");
2237 synchronized (mGlobalLock) {
2238 final long ident = Binder.clearCallingIdentity();
2239 try {
Winson Chung42fa21f2019-04-02 16:23:46 -07002240 getRecentTasks().removeAllVisibleTasks(mAmInternal.getCurrentUserId());
Winson Chunge6439102018-07-30 15:48:01 -07002241 } finally {
2242 Binder.restoreCallingIdentity(ident);
2243 }
2244 }
2245 }
2246
2247 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002248 public boolean shouldUpRecreateTask(IBinder token, String destAffinity) {
2249 synchronized (mGlobalLock) {
2250 final ActivityRecord srec = ActivityRecord.forTokenLocked(token);
2251 if (srec != null) {
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08002252 return srec.getRootTask().shouldUpRecreateTaskLocked(srec, destAffinity);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002253 }
2254 }
2255 return false;
2256 }
2257
2258 @Override
2259 public boolean navigateUpTo(IBinder token, Intent destIntent, int resultCode,
2260 Intent resultData) {
Wale Ogunwale586a8ee2019-06-04 13:44:14 +00002261
Jeff Sharkey344ce7c2019-05-29 14:52:59 -06002262 synchronized (mGlobalLock) {
Wale Ogunwale586a8ee2019-06-04 13:44:14 +00002263 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
2264 if (r != null) {
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08002265 return r.getRootTask().navigateUpTo(
Wale Ogunwale586a8ee2019-06-04 13:44:14 +00002266 r, destIntent, resultCode, resultData);
Jeff Sharkey344ce7c2019-05-29 14:52:59 -06002267 }
Wale Ogunwale586a8ee2019-06-04 13:44:14 +00002268 return false;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002269 }
2270 }
2271
2272 /**
2273 * Attempts to move a task backwards in z-order (the order of activities within the task is
2274 * unchanged).
2275 *
2276 * There are several possible results of this call:
2277 * - if the task is locked, then we will show the lock toast
2278 * - if there is a task behind the provided task, then that task is made visible and resumed as
2279 * this task is moved to the back
2280 * - otherwise, if there are no other tasks in the stack:
2281 * - if this task is in the pinned stack, then we remove the stack completely, which will
2282 * have the effect of moving the task to the top or bottom of the fullscreen stack
2283 * (depending on whether it is visible)
2284 * - otherwise, we simply return home and hide this task
2285 *
2286 * @param token A reference to the activity we wish to move
2287 * @param nonRoot If false then this only works if the activity is the root
2288 * of a task; if true it will work for any activity in a task.
2289 * @return Returns true if the move completed, false if not.
2290 */
2291 @Override
2292 public boolean moveActivityTaskToBack(IBinder token, boolean nonRoot) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002293 enforceNotIsolatedCaller("moveActivityTaskToBack");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002294 synchronized (mGlobalLock) {
2295 final long origId = Binder.clearCallingIdentity();
2296 try {
2297 int taskId = ActivityRecord.getTaskForActivityLocked(token, !nonRoot);
Louis Chang149d5c82019-12-30 09:47:39 +08002298 final Task task = mRootWindowContainer.anyTaskForId(taskId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002299 if (task != null) {
Wale Ogunwale85fb19a2019-12-05 10:41:05 +09002300 return ActivityRecord.getStackLocked(token).moveTaskToBack(task);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002301 }
2302 } finally {
2303 Binder.restoreCallingIdentity(origId);
2304 }
2305 }
2306 return false;
2307 }
2308
2309 @Override
2310 public Rect getTaskBounds(int taskId) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002311 mAmInternal.enforceCallingPermission(MANAGE_ACTIVITY_STACKS, "getTaskBounds()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002312 long ident = Binder.clearCallingIdentity();
2313 Rect rect = new Rect();
2314 try {
2315 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08002316 final Task task = mRootWindowContainer.anyTaskForId(taskId,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002317 MATCH_TASK_IN_STACKS_OR_RECENT_TASKS);
2318 if (task == null) {
2319 Slog.w(TAG, "getTaskBounds: taskId=" + taskId + " not found");
2320 return rect;
2321 }
Wale Ogunwale2322bed2019-10-10 17:24:19 +02002322 if (task.getParent() != null) {
2323 rect.set(task.getBounds());
2324 } else if (task.mLastNonFullscreenBounds != null) {
2325 rect.set(task.mLastNonFullscreenBounds);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002326 }
2327 }
2328 } finally {
2329 Binder.restoreCallingIdentity(ident);
2330 }
2331 return rect;
2332 }
2333
2334 @Override
2335 public ActivityManager.TaskDescription getTaskDescription(int id) {
2336 synchronized (mGlobalLock) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002337 enforceCallerIsRecentsOrHasPermission(
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002338 MANAGE_ACTIVITY_STACKS, "getTaskDescription()");
Louis Chang149d5c82019-12-30 09:47:39 +08002339 final Task tr = mRootWindowContainer.anyTaskForId(id,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002340 MATCH_TASK_IN_STACKS_OR_RECENT_TASKS);
2341 if (tr != null) {
Wale Ogunwale2322bed2019-10-10 17:24:19 +02002342 return tr.getTaskDescription();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002343 }
2344 }
2345 return null;
2346 }
2347
2348 @Override
Winson Chung7ccc6812020-01-23 16:15:10 -08002349 public boolean setTaskWindowingMode(int taskId, int windowingMode, boolean toTop) {
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002350 if (windowingMode == WINDOWING_MODE_SPLIT_SCREEN_PRIMARY) {
Evan Rosky73a7fe92019-11-18 18:28:01 -08002351 return setTaskWindowingModeSplitScreenPrimary(taskId, toTop);
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002352 }
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002353 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "setTaskWindowingMode()");
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002354 synchronized (mGlobalLock) {
2355 final long ident = Binder.clearCallingIdentity();
2356 try {
Evan Roskyaf9f27c2020-02-18 18:58:35 +00002357 if (WindowConfiguration.isSplitScreenWindowingMode(windowingMode)) {
2358 return setTaskWindowingModeSplitScreen(taskId, windowingMode, toTop);
2359 }
Louis Chang149d5c82019-12-30 09:47:39 +08002360 final Task task = mRootWindowContainer.anyTaskForId(taskId,
Riddle Hsu090ac6f2018-10-31 12:55:29 +08002361 MATCH_TASK_IN_STACKS_ONLY);
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002362 if (task == null) {
2363 Slog.w(TAG, "setTaskWindowingMode: No task for id=" + taskId);
Winson Chung7ccc6812020-01-23 16:15:10 -08002364 return false;
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002365 }
2366
2367 if (DEBUG_STACK) Slog.d(TAG_STACK, "setTaskWindowingMode: moving task=" + taskId
2368 + " to windowingMode=" + windowingMode + " toTop=" + toTop);
2369
2370 if (!task.isActivityTypeStandardOrUndefined()) {
2371 throw new IllegalArgumentException("setTaskWindowingMode: Attempt to move"
2372 + " non-standard task " + taskId + " to windowing mode="
2373 + windowingMode);
2374 }
2375
2376 final ActivityStack stack = task.getStack();
2377 if (toTop) {
2378 stack.moveToFront("setTaskWindowingMode", task);
2379 }
Louis Changa009c762020-02-26 11:21:31 +08002380 // Convert some windowing-mode changes into root-task reparents for split-screen.
2381 if (stack.inSplitScreenWindowingMode()) {
Andrii Kulian86d676c2020-03-27 19:34:54 -07002382 stack.getDisplayArea().onSplitScreenModeDismissed();
Louis Changa009c762020-02-26 11:21:31 +08002383
2384 } else {
2385 stack.setWindowingMode(windowingMode);
2386 stack.getDisplay().ensureActivitiesVisible(null, 0, PRESERVE_WINDOWS,
2387 true /* notifyClients */);
2388 }
Winson Chung7ccc6812020-01-23 16:15:10 -08002389 return true;
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002390 } finally {
2391 Binder.restoreCallingIdentity(ident);
2392 }
2393 }
2394 }
2395
2396 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002397 public String getCallingPackage(IBinder token) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002398 synchronized (mGlobalLock) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002399 ActivityRecord r = getCallingRecordLocked(token);
2400 return r != null ? r.info.packageName : null;
2401 }
2402 }
2403
2404 @Override
2405 public ComponentName getCallingActivity(IBinder token) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002406 synchronized (mGlobalLock) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002407 ActivityRecord r = getCallingRecordLocked(token);
2408 return r != null ? r.intent.getComponent() : null;
2409 }
2410 }
2411
2412 private ActivityRecord getCallingRecordLocked(IBinder token) {
2413 ActivityRecord r = ActivityRecord.isInStackLocked(token);
2414 if (r == null) {
2415 return null;
2416 }
2417 return r.resultTo;
2418 }
2419
2420 @Override
2421 public void unhandledBack() {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002422 mAmInternal.enforceCallingPermission(android.Manifest.permission.FORCE_BACK, "unhandledBack()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002423
2424 synchronized (mGlobalLock) {
2425 final long origId = Binder.clearCallingIdentity();
2426 try {
Darryl L Johnson1e3885c2020-02-27 17:38:13 -08002427 final ActivityStack topFocusedStack = getTopDisplayFocusedStack();
2428 if (topFocusedStack != null) {
2429 topFocusedStack.unhandledBackLocked();
2430 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002431 } finally {
2432 Binder.restoreCallingIdentity(origId);
2433 }
2434 }
2435 }
2436
Mark Renouf446251d2019-04-26 10:22:41 -04002437 @Override
2438 public void onBackPressedOnTaskRoot(IBinder token, IRequestFinishCallback callback) {
2439 synchronized (mGlobalLock) {
2440 ActivityRecord r = ActivityRecord.isInStackLocked(token);
2441 if (r == null) {
2442 return;
2443 }
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08002444 ActivityStack stack = r.getRootTask();
Winson Chunga1f869d2020-03-21 23:02:48 -07002445 final TaskOrganizerController taskOrgController =
2446 mWindowOrganizerController.mTaskOrganizerController;
2447 if (taskOrgController.handleInterceptBackPressedOnTaskRoot(stack)) {
2448 // This task is handled by a task organizer that has requested the back pressed
2449 // callback
2450 } else if (stack != null && (stack.isSingleTaskInstance())) {
Mark Renouf446251d2019-04-26 10:22:41 -04002451 // Single-task stacks are used for activities which are presented in floating
2452 // windows above full screen activities. Instead of directly finishing the
2453 // task, a task change listener is used to notify SystemUI so the action can be
2454 // handled specially.
Louis Changcdec0802019-11-11 11:45:07 +08002455 final Task task = r.getTask();
Mark Renouf446251d2019-04-26 10:22:41 -04002456 mTaskChangeNotificationController
2457 .notifyBackPressedOnTaskRoot(task.getTaskInfo());
2458 } else {
2459 try {
2460 callback.requestFinish();
2461 } catch (RemoteException e) {
2462 Slog.e(TAG, "Failed to invoke request finish callback", e);
2463 }
2464 }
2465 }
2466 }
2467
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002468 /**
2469 * TODO: Add mController hook
2470 */
2471 @Override
Ricky Waiaca8a772019-04-04 16:01:06 +01002472 public void moveTaskToFront(IApplicationThread appThread, String callingPackage, int taskId,
2473 int flags, Bundle bOptions) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002474 mAmInternal.enforceCallingPermission(android.Manifest.permission.REORDER_TASKS, "moveTaskToFront()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002475
2476 if (DEBUG_STACK) Slog.d(TAG_STACK, "moveTaskToFront: moving taskId=" + taskId);
2477 synchronized (mGlobalLock) {
Ricky Waiaca8a772019-04-04 16:01:06 +01002478 moveTaskToFrontLocked(appThread, callingPackage, taskId, flags,
Riddle Hsueae6ef3e2020-05-13 01:07:33 +08002479 SafeActivityOptions.fromBundle(bOptions));
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002480 }
2481 }
2482
Ricky Waiaca8a772019-04-04 16:01:06 +01002483 void moveTaskToFrontLocked(@Nullable IApplicationThread appThread,
Riddle Hsueae6ef3e2020-05-13 01:07:33 +08002484 @Nullable String callingPackage, int taskId, int flags, SafeActivityOptions options) {
Ricky Waiaca8a772019-04-04 16:01:06 +01002485 final int callingPid = Binder.getCallingPid();
2486 final int callingUid = Binder.getCallingUid();
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07002487 assertPackageMatchesCallingUid(callingPackage);
Ricky Waiaca8a772019-04-04 16:01:06 +01002488 if (!checkAppSwitchAllowedLocked(callingPid, callingUid, -1, -1, "Task to front")) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002489 SafeActivityOptions.abort(options);
2490 return;
2491 }
2492 final long origId = Binder.clearCallingIdentity();
Ricky Waiaca8a772019-04-04 16:01:06 +01002493 WindowProcessController callerApp = null;
2494 if (appThread != null) {
2495 callerApp = getProcessController(appThread);
2496 }
2497 final ActivityStarter starter = getActivityStartController().obtainStarter(
2498 null /* intent */, "moveTaskToFront");
2499 if (starter.shouldAbortBackgroundActivityStart(callingUid, callingPid, callingPackage, -1,
Galia Peychevaed401cc2020-03-19 20:28:09 +01002500 -1, callerApp, null, false, null)) {
Alan Stokes9e245762019-05-21 14:54:28 +01002501 if (!isBackgroundActivityStartsEnabled()) {
Ricky Waiaca8a772019-04-04 16:01:06 +01002502 return;
2503 }
2504 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002505 try {
Louis Chang149d5c82019-12-30 09:47:39 +08002506 final Task task = mRootWindowContainer.anyTaskForId(taskId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002507 if (task == null) {
2508 Slog.d(TAG, "Could not find task for id: "+ taskId);
Winson Chungd0243682018-09-25 18:11:54 -07002509 SafeActivityOptions.abort(options);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002510 return;
2511 }
Wale Ogunwaled95c06b2018-05-08 10:35:38 -07002512 if (getLockTaskController().isLockTaskModeViolation(task)) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002513 Slog.e(TAG, "moveTaskToFront: Attempt to violate Lock Task Mode");
Winson Chungd0243682018-09-25 18:11:54 -07002514 SafeActivityOptions.abort(options);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002515 return;
2516 }
2517 ActivityOptions realOptions = options != null
2518 ? options.getOptions(mStackSupervisor)
2519 : null;
2520 mStackSupervisor.findTaskToMoveToFront(task, flags, realOptions, "moveTaskToFront",
2521 false /* forceNonResizable */);
2522
Wale Ogunwale21e06482019-11-18 05:14:15 -08002523 final ActivityRecord topActivity = task.getTopNonFinishingActivity();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002524 if (topActivity != null) {
2525
2526 // We are reshowing a task, use a starting window to hide the initial draw delay
2527 // so the transition can start earlier.
2528 topActivity.showStartingWindow(null /* prev */, false /* newTask */,
Riddle Hsueae6ef3e2020-05-13 01:07:33 +08002529 true /* taskSwitch */);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002530 }
2531 } finally {
2532 Binder.restoreCallingIdentity(origId);
2533 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002534 }
2535
Ricky Waiaca8a772019-04-04 16:01:06 +01002536 /**
2537 * Return true if callingUid is system, or packageName belongs to that callingUid.
2538 */
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07002539 private boolean isSameApp(int callingUid, @Nullable String packageName) {
Ricky Waiaca8a772019-04-04 16:01:06 +01002540 try {
2541 if (callingUid != 0 && callingUid != SYSTEM_UID) {
2542 if (packageName == null) {
2543 return false;
2544 }
2545 final int uid = AppGlobals.getPackageManager().getPackageUid(packageName,
2546 PackageManager.MATCH_DEBUG_TRIAGED_MISSING,
2547 UserHandle.getUserId(callingUid));
2548 return UserHandle.isSameApp(callingUid, uid);
2549 }
2550 } catch (RemoteException e) {
2551 // Should not happen
2552 }
2553 return true;
2554 }
2555
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07002556 /**
2557 * Checks that the provided package name matches the current calling UID, throws a security
2558 * exception if it doesn't.
2559 */
2560 void assertPackageMatchesCallingUid(@Nullable String packageName) {
2561 final int callingUid = Binder.getCallingUid();
2562 if (isSameApp(callingUid, packageName)) {
2563 return;
2564 }
2565 final String msg = "Permission Denial: package=" + packageName
2566 + " does not belong to uid=" + callingUid;
2567 Slog.w(TAG, msg);
2568 throw new SecurityException(msg);
2569 }
2570
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002571 boolean checkAppSwitchAllowedLocked(int sourcePid, int sourceUid,
2572 int callingPid, int callingUid, String name) {
2573 if (mAppSwitchesAllowedTime < SystemClock.uptimeMillis()) {
2574 return true;
2575 }
2576
2577 if (getRecentTasks().isCallerRecents(sourceUid)) {
2578 return true;
2579 }
2580
2581 int perm = checkComponentPermission(STOP_APP_SWITCHES, sourcePid, sourceUid, -1, true);
2582 if (perm == PackageManager.PERMISSION_GRANTED) {
2583 return true;
2584 }
2585 if (checkAllowAppSwitchUid(sourceUid)) {
2586 return true;
2587 }
2588
2589 // If the actual IPC caller is different from the logical source, then
2590 // also see if they are allowed to control app switches.
2591 if (callingUid != -1 && callingUid != sourceUid) {
2592 perm = checkComponentPermission(STOP_APP_SWITCHES, callingPid, callingUid, -1, true);
2593 if (perm == PackageManager.PERMISSION_GRANTED) {
2594 return true;
2595 }
2596 if (checkAllowAppSwitchUid(callingUid)) {
2597 return true;
2598 }
2599 }
2600
2601 Slog.w(TAG, name + " request from " + sourceUid + " stopped");
2602 return false;
2603 }
2604
2605 private boolean checkAllowAppSwitchUid(int uid) {
2606 ArrayMap<String, Integer> types = mAllowAppSwitchUids.get(UserHandle.getUserId(uid));
2607 if (types != null) {
2608 for (int i = types.size() - 1; i >= 0; i--) {
2609 if (types.valueAt(i).intValue() == uid) {
2610 return true;
2611 }
2612 }
2613 }
2614 return false;
2615 }
2616
2617 @Override
2618 public void setActivityController(IActivityController controller, boolean imAMonkey) {
2619 mAmInternal.enforceCallingPermission(android.Manifest.permission.SET_ACTIVITY_WATCHER,
2620 "setActivityController()");
2621 synchronized (mGlobalLock) {
2622 mController = controller;
2623 mControllerIsAMonkey = imAMonkey;
2624 Watchdog.getInstance().setActivityController(controller);
2625 }
2626 }
2627
Wale Ogunwale387b34c2018-10-25 19:59:40 -07002628 public boolean isControllerAMonkey() {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002629 synchronized (mGlobalLock) {
2630 return mController != null && mControllerIsAMonkey;
2631 }
2632 }
2633
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002634 @Override
2635 public int getTaskForActivity(IBinder token, boolean onlyRoot) {
2636 synchronized (mGlobalLock) {
2637 return ActivityRecord.getTaskForActivityLocked(token, onlyRoot);
2638 }
2639 }
2640
2641 @Override
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002642 public List<ActivityManager.RunningTaskInfo> getTasks(int maxNum) {
Winson Chunge5ab0172020-03-21 23:00:24 -07002643 return getFilteredTasks(maxNum, false /* filterForVisibleRecents */);
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002644 }
2645
Winson Chunge5ab0172020-03-21 23:00:24 -07002646 /**
2647 * @param filterOnlyVisibleRecents whether to filter the tasks based on whether they would ever
2648 * be visible in the recent task list in systemui
2649 */
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002650 @Override
2651 public List<ActivityManager.RunningTaskInfo> getFilteredTasks(int maxNum,
Winson Chunge5ab0172020-03-21 23:00:24 -07002652 boolean filterOnlyVisibleRecents) {
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002653 final int callingUid = Binder.getCallingUid();
Nicholas Sauer0259e532019-08-30 08:24:55 -07002654 final int callingPid = Binder.getCallingPid();
2655 final boolean crossUser = isCrossUserAllowed(callingPid, callingUid);
Nicholas Sauer3f9249f2019-09-10 20:23:41 -07002656 final int[] profileIds = getUserManager().getProfileIds(
2657 UserHandle.getUserId(callingUid), true);
2658 ArraySet<Integer> callingProfileIds = new ArraySet<>();
2659 for (int i = 0; i < profileIds.length; i++) {
2660 callingProfileIds.add(profileIds[i]);
2661 }
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002662 ArrayList<ActivityManager.RunningTaskInfo> list = new ArrayList<>();
2663
2664 synchronized (mGlobalLock) {
2665 if (DEBUG_ALL) Slog.v(TAG, "getTasks: max=" + maxNum);
2666
Nicholas Sauer0259e532019-08-30 08:24:55 -07002667 final boolean allowed = isGetTasksAllowed("getTasks", callingPid, callingUid);
Winson Chunge5ab0172020-03-21 23:00:24 -07002668 mRootWindowContainer.getRunningTasks(maxNum, list, filterOnlyVisibleRecents, callingUid,
2669 allowed, crossUser, callingProfileIds);
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002670 }
2671
2672 return list;
2673 }
2674
2675 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002676 public final void finishSubActivity(IBinder token, String resultWho, int requestCode) {
2677 synchronized (mGlobalLock) {
2678 final long origId = Binder.clearCallingIdentity();
Wale Ogunwalea38654f2019-11-17 20:37:15 -08002679 try {
2680 ActivityRecord r = ActivityRecord.isInStackLocked(token);
2681 if (r == null) return;
2682
2683 final PooledConsumer c = PooledLambda.obtainConsumer(
2684 ActivityRecord::finishIfSubActivity, PooledLambda.__(ActivityRecord.class),
2685 r, resultWho, requestCode);
2686 // TODO: This should probably only loop over the task since you need to be in the
2687 // same task to return results.
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08002688 r.getRootTask().forAllActivities(c);
Wale Ogunwalea38654f2019-11-17 20:37:15 -08002689 c.recycle();
2690
2691 updateOomAdj();
2692 } finally {
2693 Binder.restoreCallingIdentity(origId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002694 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002695 }
2696 }
2697
2698 @Override
2699 public boolean willActivityBeVisible(IBinder token) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002700 synchronized (mGlobalLock) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002701 ActivityStack stack = ActivityRecord.getStackLocked(token);
2702 if (stack != null) {
Wale Ogunwalea38654f2019-11-17 20:37:15 -08002703 return stack.willActivityBeVisible(token);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002704 }
2705 return false;
2706 }
2707 }
2708
2709 @Override
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002710 public void moveTaskToStack(int taskId, int stackId, boolean toTop) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002711 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "moveTaskToStack()");
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002712 synchronized (mGlobalLock) {
2713 final long ident = Binder.clearCallingIdentity();
2714 try {
Louis Chang149d5c82019-12-30 09:47:39 +08002715 final Task task = mRootWindowContainer.anyTaskForId(taskId);
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002716 if (task == null) {
2717 Slog.w(TAG, "moveTaskToStack: No task for id=" + taskId);
2718 return;
2719 }
2720
2721 if (DEBUG_STACK) Slog.d(TAG_STACK, "moveTaskToStack: moving task=" + taskId
2722 + " to stackId=" + stackId + " toTop=" + toTop);
2723
Louis Chang149d5c82019-12-30 09:47:39 +08002724 final ActivityStack stack = mRootWindowContainer.getStack(stackId);
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002725 if (stack == null) {
2726 throw new IllegalStateException(
2727 "moveTaskToStack: No stack for stackId=" + stackId);
2728 }
2729 if (!stack.isActivityTypeStandardOrUndefined()) {
2730 throw new IllegalArgumentException("moveTaskToStack: Attempt to move task "
2731 + taskId + " to stack " + stackId);
2732 }
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002733 task.reparent(stack, toTop, REPARENT_KEEP_STACK_AT_FRONT, ANIMATE, !DEFER_RESUME,
2734 "moveTaskToStack");
2735 } finally {
2736 Binder.restoreCallingIdentity(ident);
2737 }
2738 }
2739 }
2740
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002741 /**
2742 * Moves the specified task to the primary-split-screen stack.
2743 *
2744 * @param taskId Id of task to move.
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002745 * @param toTop If the task and stack should be moved to the top.
Winson Chung7ccc6812020-01-23 16:15:10 -08002746 * @return Whether the task was successfully put into splitscreen.
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002747 */
2748 @Override
Evan Rosky73a7fe92019-11-18 18:28:01 -08002749 public boolean setTaskWindowingModeSplitScreenPrimary(int taskId, boolean toTop) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002750 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS,
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002751 "setTaskWindowingModeSplitScreenPrimary()");
2752 synchronized (mGlobalLock) {
2753 final long ident = Binder.clearCallingIdentity();
2754 try {
Evan Roskyaf9f27c2020-02-18 18:58:35 +00002755 return setTaskWindowingModeSplitScreen(taskId, WINDOWING_MODE_SPLIT_SCREEN_PRIMARY,
2756 toTop);
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002757 } finally {
2758 Binder.restoreCallingIdentity(ident);
2759 }
2760 }
2761 }
2762
2763 /**
Evan Roskyaf9f27c2020-02-18 18:58:35 +00002764 * Moves the specified task into a split-screen tile.
2765 */
2766 private boolean setTaskWindowingModeSplitScreen(int taskId, int windowingMode, boolean toTop) {
2767 if (!WindowConfiguration.isSplitScreenWindowingMode(windowingMode)) {
2768 throw new IllegalArgumentException("Calling setTaskWindowingModeSplitScreen with non"
2769 + "split-screen mode: " + windowingMode);
2770 }
2771 if (isInLockTaskMode()) {
2772 Slog.w(TAG, "setTaskWindowingModeSplitScreen: Is in lock task mode="
2773 + getLockTaskModeState());
2774 return false;
2775 }
2776
2777 final Task task = mRootWindowContainer.anyTaskForId(taskId,
2778 MATCH_TASK_IN_STACKS_ONLY);
2779 if (task == null) {
2780 Slog.w(TAG, "setTaskWindowingModeSplitScreenPrimary: No task for id=" + taskId);
2781 return false;
2782 }
2783 if (!task.isActivityTypeStandardOrUndefined()) {
2784 throw new IllegalArgumentException("setTaskWindowingMode: Attempt to move"
2785 + " non-standard task " + taskId + " to split-screen windowing mode");
2786 }
Wale Ogunwale0d465192020-01-23 19:14:44 -08002787 if (!task.supportsSplitScreenWindowingMode()) {
2788 return false;
2789 }
Evan Roskyaf9f27c2020-02-18 18:58:35 +00002790
2791 final int prevMode = task.getWindowingMode();
Louis Changcf3d1452020-04-16 16:36:05 +08002792 if (prevMode == windowingMode) {
2793 // The task is already in split-screen and with correct windowing mode.
2794 return true;
2795 }
2796
Louis Changa009c762020-02-26 11:21:31 +08002797 moveTaskToSplitScreenPrimaryTask(task, toTop);
Wale Ogunwale0d465192020-01-23 19:14:44 -08002798 return prevMode != task.getWindowingMode();
2799 }
2800
Louis Changa009c762020-02-26 11:21:31 +08002801 void moveTaskToSplitScreenPrimaryTask(Task task, boolean toTop) {
Andrii Kulian86d676c2020-03-27 19:34:54 -07002802 final TaskDisplayArea taskDisplayArea = task.getDisplayArea();
2803 final ActivityStack primarySplitTask = taskDisplayArea.getRootSplitScreenPrimaryTask();
Louis Changa009c762020-02-26 11:21:31 +08002804 if (primarySplitTask == null) {
2805 throw new IllegalStateException("Can't enter split without associated organized task");
Evan Roskyaf9f27c2020-02-18 18:58:35 +00002806 }
Louis Changa009c762020-02-26 11:21:31 +08002807
2808 if (toTop) {
Andrii Kulian86d676c2020-03-27 19:34:54 -07002809 taskDisplayArea.positionStackAt(POSITION_TOP, primarySplitTask,
Andrii Kulian9ea12da2020-03-27 17:16:38 -07002810 false /* includingParents */);
Evan Roskyaf9f27c2020-02-18 18:58:35 +00002811 }
2812 WindowContainerTransaction wct = new WindowContainerTransaction();
Wale Ogunwale465b1e12020-03-31 12:15:51 -07002813 // Clear out current windowing mode before reparenting to split taks.
2814 wct.setWindowingMode(
2815 task.getStack().mRemoteToken.toWindowContainerToken(), WINDOWING_MODE_UNDEFINED);
Wale Ogunwaleadf116e2020-03-27 16:36:01 -07002816 wct.reparent(task.getStack().mRemoteToken.toWindowContainerToken(),
2817 primarySplitTask.mRemoteToken.toWindowContainerToken(), toTop);
Wale Ogunwale568f9f412020-03-21 22:27:35 -07002818 mWindowOrganizerController.applyTransaction(wct);
Evan Roskyaf9f27c2020-02-18 18:58:35 +00002819 }
2820
2821 /**
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002822 * Removes stacks in the input windowing modes from the system if they are of activity type
2823 * ACTIVITY_TYPE_STANDARD or ACTIVITY_TYPE_UNDEFINED
2824 */
2825 @Override
2826 public void removeStacksInWindowingModes(int[] windowingModes) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002827 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS,
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002828 "removeStacksInWindowingModes()");
2829
2830 synchronized (mGlobalLock) {
2831 final long ident = Binder.clearCallingIdentity();
2832 try {
Louis Chang149d5c82019-12-30 09:47:39 +08002833 mRootWindowContainer.removeStacksInWindowingModes(windowingModes);
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002834 } finally {
2835 Binder.restoreCallingIdentity(ident);
2836 }
2837 }
2838 }
2839
2840 @Override
2841 public void removeStacksWithActivityTypes(int[] activityTypes) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002842 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS,
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002843 "removeStacksWithActivityTypes()");
2844
2845 synchronized (mGlobalLock) {
2846 final long ident = Binder.clearCallingIdentity();
2847 try {
Louis Chang149d5c82019-12-30 09:47:39 +08002848 mRootWindowContainer.removeStacksWithActivityTypes(activityTypes);
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002849 } finally {
2850 Binder.restoreCallingIdentity(ident);
2851 }
2852 }
2853 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002854
2855 @Override
2856 public ParceledListSlice<ActivityManager.RecentTaskInfo> getRecentTasks(int maxNum, int flags,
2857 int userId) {
2858 final int callingUid = Binder.getCallingUid();
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002859 userId = handleIncomingUser(Binder.getCallingPid(), callingUid, userId, "getRecentTasks");
2860 final boolean allowed = isGetTasksAllowed("getRecentTasks", Binder.getCallingPid(),
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002861 callingUid);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002862 synchronized (mGlobalLock) {
Winson Chung66b08f02020-03-03 14:32:35 -08002863 return mRecentTasks.getRecentTasks(maxNum, flags, allowed, userId, callingUid);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002864 }
2865 }
2866
Evan Rosky29d4a0a2020-02-04 16:40:44 -08002867 // TODO(148895075): deprecate and replace with task equivalents
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002868 @Override
2869 public List<ActivityManager.StackInfo> getAllStackInfos() {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002870 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "getAllStackInfos()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002871 long ident = Binder.clearCallingIdentity();
2872 try {
2873 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08002874 return mRootWindowContainer.getAllStackInfos(INVALID_DISPLAY);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002875 }
2876 } finally {
2877 Binder.restoreCallingIdentity(ident);
2878 }
2879 }
2880
2881 @Override
2882 public ActivityManager.StackInfo getStackInfo(int windowingMode, int activityType) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002883 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "getStackInfo()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002884 long ident = Binder.clearCallingIdentity();
2885 try {
2886 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08002887 return mRootWindowContainer.getStackInfo(windowingMode, activityType);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002888 }
2889 } finally {
2890 Binder.restoreCallingIdentity(ident);
2891 }
2892 }
2893
Evan Rosky29d4a0a2020-02-04 16:40:44 -08002894 // TODO(148895075): deprecate and replace with task equivalents
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002895 @Override
Evan Roskyfd439692019-11-06 16:12:59 -08002896 public List<ActivityManager.StackInfo> getAllStackInfosOnDisplay(int displayId) {
2897 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "getAllStackInfos()");
2898 long ident = Binder.clearCallingIdentity();
2899 try {
2900 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08002901 return mRootWindowContainer.getAllStackInfos(displayId);
Evan Roskyfd439692019-11-06 16:12:59 -08002902 }
2903 } finally {
2904 Binder.restoreCallingIdentity(ident);
2905 }
2906 }
2907
2908 @Override
2909 public ActivityManager.StackInfo getStackInfoOnDisplay(int windowingMode, int activityType,
2910 int displayId) {
2911 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "getStackInfo()");
2912 long ident = Binder.clearCallingIdentity();
2913 try {
2914 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08002915 return mRootWindowContainer.getStackInfo(windowingMode, activityType, displayId);
Evan Roskyfd439692019-11-06 16:12:59 -08002916 }
2917 } finally {
2918 Binder.restoreCallingIdentity(ident);
2919 }
2920 }
2921
2922 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002923 public void cancelRecentsAnimation(boolean restoreHomeStackPosition) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002924 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "cancelRecentsAnimation()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002925 final long callingUid = Binder.getCallingUid();
2926 final long origId = Binder.clearCallingIdentity();
2927 try {
2928 synchronized (mGlobalLock) {
2929 // Cancel the recents animation synchronously (do not hold the WM lock)
Wale Ogunwalea441b922019-06-27 19:21:44 -07002930 mWindowManager.cancelRecentsAnimation(restoreHomeStackPosition
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002931 ? REORDER_MOVE_TO_ORIGINAL_POSITION
2932 : REORDER_KEEP_IN_PLACE, "cancelRecentsAnimation/uid=" + callingUid);
2933 }
2934 } finally {
2935 Binder.restoreCallingIdentity(origId);
2936 }
2937 }
2938
2939 @Override
2940 public void startLockTaskModeByToken(IBinder token) {
2941 synchronized (mGlobalLock) {
2942 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
2943 if (r == null) {
2944 return;
2945 }
Louis Changcdec0802019-11-11 11:45:07 +08002946 startLockTaskModeLocked(r.getTask(), false /* isSystemCaller */);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002947 }
2948 }
2949
2950 @Override
Riddle Hsu090ac6f2018-10-31 12:55:29 +08002951 public void startSystemLockTaskMode(int taskId) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002952 mAmInternal.enforceCallingPermission(MANAGE_ACTIVITY_STACKS, "startSystemLockTaskMode");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002953 // This makes inner call to look as if it was initiated by system.
2954 long ident = Binder.clearCallingIdentity();
2955 try {
2956 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08002957 final Task task = mRootWindowContainer.anyTaskForId(taskId,
Riddle Hsu090ac6f2018-10-31 12:55:29 +08002958 MATCH_TASK_IN_STACKS_ONLY);
2959 if (task == null) {
2960 return;
2961 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002962
2963 // When starting lock task mode the stack must be in front and focused
2964 task.getStack().moveToFront("startSystemLockTaskMode");
2965 startLockTaskModeLocked(task, true /* isSystemCaller */);
2966 }
2967 } finally {
2968 Binder.restoreCallingIdentity(ident);
2969 }
2970 }
2971
2972 @Override
2973 public void stopLockTaskModeByToken(IBinder token) {
2974 synchronized (mGlobalLock) {
2975 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
2976 if (r == null) {
2977 return;
2978 }
Louis Changcdec0802019-11-11 11:45:07 +08002979 stopLockTaskModeInternal(r.getTask(), false /* isSystemCaller */);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002980 }
2981 }
2982
2983 /**
2984 * This API should be called by SystemUI only when user perform certain action to dismiss
2985 * lock task mode. We should only dismiss pinned lock task mode in this case.
2986 */
2987 @Override
2988 public void stopSystemLockTaskMode() throws RemoteException {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002989 mAmInternal.enforceCallingPermission(MANAGE_ACTIVITY_STACKS, "stopSystemLockTaskMode");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002990 stopLockTaskModeInternal(null, true /* isSystemCaller */);
2991 }
2992
Louis Changcdec0802019-11-11 11:45:07 +08002993 private void startLockTaskModeLocked(@Nullable Task task, boolean isSystemCaller) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002994 if (DEBUG_LOCKTASK) Slog.w(TAG_LOCKTASK, "startLockTaskModeLocked: " + task);
2995 if (task == null || task.mLockTaskAuth == LOCK_TASK_AUTH_DONT_LOCK) {
2996 return;
2997 }
2998
Louis Chang149d5c82019-12-30 09:47:39 +08002999 final ActivityStack stack = mRootWindowContainer.getTopDisplayFocusedStack();
Wale Ogunwale85fb19a2019-12-05 10:41:05 +09003000 if (stack == null || task != stack.getTopMostTask()) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003001 throw new IllegalArgumentException("Invalid task, not in foreground");
3002 }
3003
3004 // {@code isSystemCaller} is used to distinguish whether this request is initiated by the
3005 // system or a specific app.
3006 // * System-initiated requests will only start the pinned mode (screen pinning)
3007 // * App-initiated requests
3008 // - will put the device in fully locked mode (LockTask), if the app is whitelisted
3009 // - will start the pinned mode, otherwise
3010 final int callingUid = Binder.getCallingUid();
3011 long ident = Binder.clearCallingIdentity();
3012 try {
3013 // When a task is locked, dismiss the pinned stack if it exists
Louis Chang149d5c82019-12-30 09:47:39 +08003014 mRootWindowContainer.removeStacksInWindowingModes(WINDOWING_MODE_PINNED);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003015
Wale Ogunwaled95c06b2018-05-08 10:35:38 -07003016 getLockTaskController().startLockTaskMode(task, isSystemCaller, callingUid);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003017 } finally {
3018 Binder.restoreCallingIdentity(ident);
3019 }
3020 }
3021
Louis Changcdec0802019-11-11 11:45:07 +08003022 private void stopLockTaskModeInternal(@Nullable Task task, boolean isSystemCaller) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003023 final int callingUid = Binder.getCallingUid();
3024 long ident = Binder.clearCallingIdentity();
3025 try {
3026 synchronized (mGlobalLock) {
Wale Ogunwaled95c06b2018-05-08 10:35:38 -07003027 getLockTaskController().stopLockTaskMode(task, isSystemCaller, callingUid);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003028 }
3029 // Launch in-call UI if a call is ongoing. This is necessary to allow stopping the lock
3030 // task and jumping straight into a call in the case of emergency call back.
3031 TelecomManager tm = (TelecomManager) mContext.getSystemService(Context.TELECOM_SERVICE);
3032 if (tm != null) {
3033 tm.showInCallScreen(false);
3034 }
3035 } finally {
3036 Binder.restoreCallingIdentity(ident);
3037 }
3038 }
3039
3040 @Override
Wale Ogunwale27c48ae2018-10-25 19:01:01 -07003041 public void updateLockTaskPackages(int userId, String[] packages) {
3042 final int callingUid = Binder.getCallingUid();
3043 if (callingUid != 0 && callingUid != SYSTEM_UID) {
3044 mAmInternal.enforceCallingPermission(Manifest.permission.UPDATE_LOCK_TASK_PACKAGES,
3045 "updateLockTaskPackages()");
3046 }
Riddle Hsu8419e4b2019-09-18 23:28:01 +08003047 synchronized (mGlobalLock) {
Wale Ogunwale27c48ae2018-10-25 19:01:01 -07003048 if (DEBUG_LOCKTASK) Slog.w(TAG_LOCKTASK, "Whitelisting " + userId + ":"
3049 + Arrays.toString(packages));
3050 getLockTaskController().updateLockTaskPackages(userId, packages);
3051 }
3052 }
3053
3054 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003055 public boolean isInLockTaskMode() {
3056 return getLockTaskModeState() != LOCK_TASK_MODE_NONE;
3057 }
3058
3059 @Override
3060 public int getLockTaskModeState() {
3061 synchronized (mGlobalLock) {
Wale Ogunwaled95c06b2018-05-08 10:35:38 -07003062 return getLockTaskController().getLockTaskModeState();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003063 }
3064 }
3065
3066 @Override
3067 public void setTaskDescription(IBinder token, ActivityManager.TaskDescription td) {
3068 synchronized (mGlobalLock) {
3069 ActivityRecord r = ActivityRecord.isInStackLocked(token);
3070 if (r != null) {
3071 r.setTaskDescription(td);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003072 }
3073 }
3074 }
3075
3076 @Override
3077 public Bundle getActivityOptions(IBinder token) {
3078 final long origId = Binder.clearCallingIdentity();
3079 try {
3080 synchronized (mGlobalLock) {
3081 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
3082 if (r != null) {
Jorim Jaggi346702a2019-05-08 17:49:33 +02003083 final ActivityOptions activityOptions = r.takeOptionsLocked(
3084 true /* fromClient */);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003085 return activityOptions == null ? null : activityOptions.toBundle();
3086 }
3087 return null;
3088 }
3089 } finally {
3090 Binder.restoreCallingIdentity(origId);
3091 }
3092 }
3093
3094 @Override
3095 public List<IBinder> getAppTasks(String callingPackage) {
3096 int callingUid = Binder.getCallingUid();
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07003097 assertPackageMatchesCallingUid(callingPackage);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003098 long ident = Binder.clearCallingIdentity();
3099 try {
3100 synchronized (mGlobalLock) {
Wale Ogunwale16e505a2018-05-07 15:00:49 -07003101 return mRecentTasks.getAppTasksList(callingUid, callingPackage);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003102 }
3103 } finally {
3104 Binder.restoreCallingIdentity(ident);
3105 }
3106 }
3107
3108 @Override
3109 public void finishVoiceTask(IVoiceInteractionSession session) {
3110 synchronized (mGlobalLock) {
3111 final long origId = Binder.clearCallingIdentity();
3112 try {
3113 // TODO: VI Consider treating local voice interactions and voice tasks
3114 // differently here
Louis Chang149d5c82019-12-30 09:47:39 +08003115 mRootWindowContainer.finishVoiceTask(session);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003116 } finally {
3117 Binder.restoreCallingIdentity(origId);
3118 }
3119 }
3120
3121 }
3122
3123 @Override
3124 public boolean isTopOfTask(IBinder token) {
3125 synchronized (mGlobalLock) {
3126 ActivityRecord r = ActivityRecord.isInStackLocked(token);
Wale Ogunwale21e06482019-11-18 05:14:15 -08003127 return r != null && r.getTask().getTopNonFinishingActivity() == r;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003128 }
3129 }
3130
3131 @Override
3132 public void notifyLaunchTaskBehindComplete(IBinder token) {
3133 mStackSupervisor.scheduleLaunchTaskBehindComplete(token);
3134 }
3135
3136 @Override
3137 public void notifyEnterAnimationComplete(IBinder token) {
Wale Ogunwaled0412b32018-05-08 09:25:50 -07003138 mH.post(() -> {
3139 synchronized (mGlobalLock) {
3140 ActivityRecord r = ActivityRecord.forTokenLocked(token);
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07003141 if (r != null && r.attachedToProcess()) {
Wale Ogunwaled0412b32018-05-08 09:25:50 -07003142 try {
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07003143 r.app.getThread().scheduleEnterAnimationComplete(r.appToken);
Wale Ogunwaled0412b32018-05-08 09:25:50 -07003144 } catch (RemoteException e) {
3145 }
3146 }
3147 }
3148
3149 });
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003150 }
3151
3152 /** Called from an app when assist data is ready. */
3153 @Override
3154 public void reportAssistContextExtras(IBinder token, Bundle extras, AssistStructure structure,
3155 AssistContent content, Uri referrer) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003156 PendingAssistExtras pae = (PendingAssistExtras) token;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003157 synchronized (pae) {
3158 pae.result = extras;
3159 pae.structure = structure;
3160 pae.content = content;
3161 if (referrer != null) {
3162 pae.extras.putParcelable(Intent.EXTRA_REFERRER, referrer);
3163 }
3164 if (structure != null) {
Winson Chung48b25652018-10-22 14:04:30 -07003165 // Pre-fill the task/activity component for all assist data receivers
Louis Changcdec0802019-11-11 11:45:07 +08003166 structure.setTaskId(pae.activity.getTask().mTaskId);
Wale Ogunwale8b19de92018-11-29 19:58:26 -08003167 structure.setActivityComponent(pae.activity.mActivityComponent);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003168 structure.setHomeActivity(pae.isHome);
3169 }
3170 pae.haveResult = true;
3171 pae.notifyAll();
3172 if (pae.intent == null && pae.receiver == null) {
3173 // Caller is just waiting for the result.
3174 return;
3175 }
3176 }
3177 // We are now ready to launch the assist activity.
3178 IAssistDataReceiver sendReceiver = null;
3179 Bundle sendBundle = null;
3180 synchronized (mGlobalLock) {
3181 buildAssistBundleLocked(pae, extras);
3182 boolean exists = mPendingAssistExtras.remove(pae);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003183 mUiHandler.removeCallbacks(pae);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003184 if (!exists) {
3185 // Timed out.
3186 return;
3187 }
3188
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003189 if ((sendReceiver = pae.receiver) != null) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003190 // Caller wants result sent back to them.
3191 sendBundle = new Bundle();
Sunny Goyald40c3452019-03-20 12:46:55 -07003192 sendBundle.putInt(ActivityTaskManagerInternal.ASSIST_TASK_ID,
Louis Changcdec0802019-11-11 11:45:07 +08003193 pae.activity.getTask().mTaskId);
Sunny Goyald40c3452019-03-20 12:46:55 -07003194 sendBundle.putBinder(ActivityTaskManagerInternal.ASSIST_ACTIVITY_ID,
3195 pae.activity.assistToken);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003196 sendBundle.putBundle(ASSIST_KEY_DATA, pae.extras);
3197 sendBundle.putParcelable(ASSIST_KEY_STRUCTURE, pae.structure);
3198 sendBundle.putParcelable(ASSIST_KEY_CONTENT, pae.content);
3199 sendBundle.putBundle(ASSIST_KEY_RECEIVER_EXTRAS, pae.receiverExtras);
3200 }
3201 }
3202 if (sendReceiver != null) {
3203 try {
3204 sendReceiver.onHandleAssistData(sendBundle);
3205 } catch (RemoteException e) {
3206 }
3207 return;
3208 }
3209
3210 final long ident = Binder.clearCallingIdentity();
3211 try {
3212 if (TextUtils.equals(pae.intent.getAction(),
3213 android.service.voice.VoiceInteractionService.SERVICE_INTERFACE)) {
Galia Peychevabffbfc32019-06-18 10:11:35 +02003214 // Start voice interaction through VoiceInteractionManagerService.
3215 mAssistUtils.showSessionForActiveService(sendBundle, SHOW_SOURCE_APPLICATION,
3216 null, null);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003217 } else {
3218 pae.intent.replaceExtras(pae.extras);
3219 pae.intent.setFlags(FLAG_ACTIVITY_NEW_TASK
3220 | Intent.FLAG_ACTIVITY_SINGLE_TOP
3221 | Intent.FLAG_ACTIVITY_CLEAR_TOP);
Wale Ogunwale31913b52018-10-13 08:29:31 -07003222 mInternal.closeSystemDialogs("assist");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003223
3224 try {
3225 mContext.startActivityAsUser(pae.intent, new UserHandle(pae.userHandle));
3226 } catch (ActivityNotFoundException e) {
3227 Slog.w(TAG, "No activity to handle assist action.", e);
3228 }
3229 }
3230 } finally {
3231 Binder.restoreCallingIdentity(ident);
3232 }
3233 }
3234
3235 @Override
3236 public int addAppTask(IBinder activityToken, Intent intent,
3237 ActivityManager.TaskDescription description, Bitmap thumbnail) throws RemoteException {
3238 final int callingUid = Binder.getCallingUid();
3239 final long callingIdent = Binder.clearCallingIdentity();
3240
3241 try {
3242 synchronized (mGlobalLock) {
3243 ActivityRecord r = ActivityRecord.isInStackLocked(activityToken);
3244 if (r == null) {
3245 throw new IllegalArgumentException("Activity does not exist; token="
3246 + activityToken);
3247 }
3248 ComponentName comp = intent.getComponent();
3249 if (comp == null) {
3250 throw new IllegalArgumentException("Intent " + intent
3251 + " must specify explicit component");
3252 }
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003253 if (thumbnail.getWidth() != mThumbnailWidth
3254 || thumbnail.getHeight() != mThumbnailHeight) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003255 throw new IllegalArgumentException("Bad thumbnail size: got "
3256 + thumbnail.getWidth() + "x" + thumbnail.getHeight() + ", require "
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003257 + mThumbnailWidth + "x" + mThumbnailHeight);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003258 }
3259 if (intent.getSelector() != null) {
3260 intent.setSelector(null);
3261 }
3262 if (intent.getSourceBounds() != null) {
3263 intent.setSourceBounds(null);
3264 }
3265 if ((intent.getFlags()&Intent.FLAG_ACTIVITY_NEW_DOCUMENT) != 0) {
3266 if ((intent.getFlags()&Intent.FLAG_ACTIVITY_RETAIN_IN_RECENTS) == 0) {
3267 // The caller has added this as an auto-remove task... that makes no
3268 // sense, so turn off auto-remove.
3269 intent.addFlags(Intent.FLAG_ACTIVITY_RETAIN_IN_RECENTS);
3270 }
3271 }
3272 final ActivityInfo ainfo = AppGlobals.getPackageManager().getActivityInfo(comp,
3273 STOCK_PM_FLAGS, UserHandle.getUserId(callingUid));
3274 if (ainfo.applicationInfo.uid != callingUid) {
3275 throw new SecurityException(
3276 "Can't add task for another application: target uid="
3277 + ainfo.applicationInfo.uid + ", calling uid=" + callingUid);
3278 }
3279
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08003280 final ActivityStack stack = r.getRootTask();
Andrii Kulian86d676c2020-03-27 19:34:54 -07003281 final Task task = stack.getDisplayArea().createStack(stack.getWindowingMode(),
3282 stack.getActivityType(), !ON_TOP, ainfo, intent,
Louis Changa009c762020-02-26 11:21:31 +08003283 false /* createdByOrganizer */);
Wale Ogunwale0d465192020-01-23 19:14:44 -08003284
Wale Ogunwale16e505a2018-05-07 15:00:49 -07003285 if (!mRecentTasks.addToBottom(task)) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003286 // The app has too many tasks already and we can't add any more
Wale Ogunwale2322bed2019-10-10 17:24:19 +02003287 stack.removeChild(task, "addAppTask");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003288 return INVALID_TASK_ID;
3289 }
Wale Ogunwale2322bed2019-10-10 17:24:19 +02003290 task.getTaskDescription().copyFrom(description);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003291
3292 // TODO: Send the thumbnail to WM to store it.
3293
Wale Ogunwale4e79a1c2019-10-05 20:52:40 -07003294 return task.mTaskId;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003295 }
3296 } finally {
3297 Binder.restoreCallingIdentity(callingIdent);
3298 }
3299 }
3300
3301 @Override
3302 public Point getAppTaskThumbnailSize() {
3303 synchronized (mGlobalLock) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003304 return new Point(mThumbnailWidth, mThumbnailHeight);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003305 }
3306 }
3307
3308 @Override
3309 public void setTaskResizeable(int taskId, int resizeableMode) {
3310 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08003311 final Task task = mRootWindowContainer.anyTaskForId(
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003312 taskId, MATCH_TASK_IN_STACKS_OR_RECENT_TASKS);
3313 if (task == null) {
3314 Slog.w(TAG, "setTaskResizeable: taskId=" + taskId + " not found");
3315 return;
3316 }
3317 task.setResizeMode(resizeableMode);
3318 }
3319 }
3320
3321 @Override
3322 public void resizeTask(int taskId, Rect bounds, int resizeMode) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003323 mAmInternal.enforceCallingPermission(MANAGE_ACTIVITY_STACKS, "resizeTask()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003324 long ident = Binder.clearCallingIdentity();
3325 try {
3326 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08003327 final Task task = mRootWindowContainer.anyTaskForId(taskId,
Riddle Hsu090ac6f2018-10-31 12:55:29 +08003328 MATCH_TASK_IN_STACKS_ONLY);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003329 if (task == null) {
3330 Slog.w(TAG, "resizeTask: taskId=" + taskId + " not found");
3331 return;
3332 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003333 if (!task.getWindowConfiguration().canResizeTask()) {
3334 throw new IllegalArgumentException("resizeTask not allowed on task=" + task);
3335 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003336
3337 // Reparent the task to the right stack if necessary
3338 boolean preserveWindow = (resizeMode & RESIZE_MODE_PRESERVE_WINDOW) != 0;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003339
3340 // After reparenting (which only resizes the task to the stack bounds), resize the
3341 // task to the actual bounds provided
Evan Rosky18e00a72020-05-08 09:36:27 -07003342 task.resize(bounds, resizeMode, preserveWindow);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003343 }
3344 } finally {
3345 Binder.restoreCallingIdentity(ident);
3346 }
3347 }
3348
3349 @Override
3350 public boolean releaseActivityInstance(IBinder token) {
3351 synchronized (mGlobalLock) {
3352 final long origId = Binder.clearCallingIdentity();
3353 try {
Andrii Kulianf49a58c2019-08-14 17:34:27 -07003354 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
3355 if (r == null || !r.isDestroyable()) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003356 return false;
3357 }
Andrii Kulianf49a58c2019-08-14 17:34:27 -07003358 r.destroyImmediately(true /* removeFromApp */, "app-req");
3359 return r.isState(DESTROYING, DESTROYED);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003360 } finally {
3361 Binder.restoreCallingIdentity(origId);
3362 }
3363 }
3364 }
3365
3366 @Override
3367 public void releaseSomeActivities(IApplicationThread appInt) {
3368 synchronized (mGlobalLock) {
3369 final long origId = Binder.clearCallingIdentity();
3370 try {
Wale Ogunwale342fbe92018-10-09 08:44:10 -07003371 final WindowProcessController app = getProcessController(appInt);
Wale Ogunwalea38654f2019-11-17 20:37:15 -08003372 app.releaseSomeActivities("low-mem");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003373 } finally {
3374 Binder.restoreCallingIdentity(origId);
3375 }
3376 }
3377 }
3378
3379 @Override
wilsonshih177261f2019-02-22 12:02:18 +08003380 public void setLockScreenShown(boolean keyguardShowing, boolean aodShowing) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003381 if (checkCallingPermission(android.Manifest.permission.DEVICE_POWER)
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003382 != PackageManager.PERMISSION_GRANTED) {
3383 throw new SecurityException("Requires permission "
3384 + android.Manifest.permission.DEVICE_POWER);
3385 }
3386
3387 synchronized (mGlobalLock) {
3388 long ident = Binder.clearCallingIdentity();
3389 if (mKeyguardShown != keyguardShowing) {
3390 mKeyguardShown = keyguardShowing;
Wale Ogunwale342fbe92018-10-09 08:44:10 -07003391 final Message msg = PooledLambda.obtainMessage(
3392 ActivityManagerInternal::reportCurKeyguardUsageEvent, mAmInternal,
3393 keyguardShowing);
3394 mH.sendMessage(msg);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003395 }
3396 try {
wilsonshih177261f2019-02-22 12:02:18 +08003397 mKeyguardController.setKeyguardShown(keyguardShowing, aodShowing);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003398 } finally {
3399 Binder.restoreCallingIdentity(ident);
3400 }
3401 }
3402
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003403 mH.post(() -> {
3404 for (int i = mScreenObservers.size() - 1; i >= 0; i--) {
3405 mScreenObservers.get(i).onKeyguardStateChanged(keyguardShowing);
3406 }
3407 });
3408 }
3409
Wale Ogunwale387b34c2018-10-25 19:59:40 -07003410 public void onScreenAwakeChanged(boolean isAwake) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003411 mH.post(() -> {
3412 for (int i = mScreenObservers.size() - 1; i >= 0; i--) {
3413 mScreenObservers.get(i).onAwakeStateChanged(isAwake);
3414 }
3415 });
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003416 }
3417
3418 @Override
3419 public Bitmap getTaskDescriptionIcon(String filePath, int userId) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003420 userId = handleIncomingUser(Binder.getCallingPid(), Binder.getCallingUid(),
3421 userId, "getTaskDescriptionIcon");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003422
3423 final File passedIconFile = new File(filePath);
3424 final File legitIconFile = new File(TaskPersister.getUserImagesDir(userId),
3425 passedIconFile.getName());
3426 if (!legitIconFile.getPath().equals(filePath)
3427 || !filePath.contains(ActivityRecord.ACTIVITY_ICON_SUFFIX)) {
3428 throw new IllegalArgumentException("Bad file path: " + filePath
3429 + " passed for userId " + userId);
3430 }
Wale Ogunwale16e505a2018-05-07 15:00:49 -07003431 return mRecentTasks.getTaskDescriptionIcon(filePath);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003432 }
3433
3434 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003435 public void removeStack(int stackId) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003436 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "removeStack()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003437 synchronized (mGlobalLock) {
3438 final long ident = Binder.clearCallingIdentity();
3439 try {
Louis Chang149d5c82019-12-30 09:47:39 +08003440 final ActivityStack stack = mRootWindowContainer.getStack(stackId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003441 if (stack == null) {
3442 Slog.w(TAG, "removeStack: No stack with id=" + stackId);
3443 return;
3444 }
3445 if (!stack.isActivityTypeStandardOrUndefined()) {
3446 throw new IllegalArgumentException(
3447 "Removing non-standard stack is not allowed.");
3448 }
3449 mStackSupervisor.removeStack(stack);
3450 } finally {
3451 Binder.restoreCallingIdentity(ident);
3452 }
3453 }
3454 }
3455
3456 @Override
3457 public void moveStackToDisplay(int stackId, int displayId) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003458 mAmInternal.enforceCallingPermission(INTERNAL_SYSTEM_WINDOW, "moveStackToDisplay()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003459
3460 synchronized (mGlobalLock) {
3461 final long ident = Binder.clearCallingIdentity();
3462 try {
3463 if (DEBUG_STACK) Slog.d(TAG_STACK, "moveStackToDisplay: moving stackId=" + stackId
3464 + " to displayId=" + displayId);
Louis Chang149d5c82019-12-30 09:47:39 +08003465 mRootWindowContainer.moveStackToDisplay(stackId, displayId, ON_TOP);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003466 } finally {
3467 Binder.restoreCallingIdentity(ident);
3468 }
3469 }
3470 }
3471
3472 @Override
Yunfan Chend967af82019-01-17 18:30:18 +09003473 public void toggleFreeformWindowingMode(IBinder token) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003474 synchronized (mGlobalLock) {
3475 long ident = Binder.clearCallingIdentity();
3476 try {
3477 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
3478 if (r == null) {
3479 throw new IllegalArgumentException(
Yunfan Chend967af82019-01-17 18:30:18 +09003480 "toggleFreeformWindowingMode: No activity record matching token="
3481 + token);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003482 }
3483
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08003484 final ActivityStack stack = r.getRootTask();
Yunfan Chend967af82019-01-17 18:30:18 +09003485 if (stack == null) {
3486 throw new IllegalStateException("toggleFreeformWindowingMode: the activity "
3487 + "doesn't have a stack");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003488 }
3489
Yunfan Chend967af82019-01-17 18:30:18 +09003490 if (!stack.inFreeformWindowingMode()
3491 && stack.getWindowingMode() != WINDOWING_MODE_FULLSCREEN) {
3492 throw new IllegalStateException("toggleFreeformWindowingMode: You can only "
3493 + "toggle between fullscreen and freeform.");
3494 }
3495
3496 if (stack.inFreeformWindowingMode()) {
3497 stack.setWindowingMode(WINDOWING_MODE_FULLSCREEN);
Evan Rosky3a8d7fe2019-11-06 17:08:35 -08003498 } else if (!mSizeCompatFreeform && r.inSizeCompatMode()) {
Shivam Agrawal780b5bb2019-07-17 10:17:11 -07003499 throw new IllegalStateException("Size-compat windows are currently not"
3500 + "freeform-enabled");
Yunfan Chene9c1c312019-04-18 14:49:15 +09003501 } else if (stack.getParent().inFreeformWindowingMode()) {
3502 // If the window is on a freeform display, set it to undefined. It will be
3503 // resolved to freeform and it can adjust windowing mode when the display mode
3504 // changes in runtime.
3505 stack.setWindowingMode(WINDOWING_MODE_UNDEFINED);
Yunfan Chend967af82019-01-17 18:30:18 +09003506 } else {
3507 stack.setWindowingMode(WINDOWING_MODE_FREEFORM);
3508 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003509 } finally {
3510 Binder.restoreCallingIdentity(ident);
3511 }
3512 }
3513 }
3514
3515 /** Sets the task stack listener that gets callbacks when a task stack changes. */
3516 @Override
3517 public void registerTaskStackListener(ITaskStackListener listener) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003518 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003519 "registerTaskStackListener()");
Wale Ogunwaled0412b32018-05-08 09:25:50 -07003520 mTaskChangeNotificationController.registerTaskStackListener(listener);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003521 }
3522
3523 /** Unregister a task stack listener so that it stops receiving callbacks. */
3524 @Override
3525 public void unregisterTaskStackListener(ITaskStackListener listener) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003526 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003527 "unregisterTaskStackListener()");
Wale Ogunwaled0412b32018-05-08 09:25:50 -07003528 mTaskChangeNotificationController.unregisterTaskStackListener(listener);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003529 }
3530
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003531 @Override
3532 public boolean requestAssistContextExtras(int requestType, IAssistDataReceiver receiver,
3533 Bundle receiverExtras, IBinder activityToken, boolean focused, boolean newSessionId) {
3534 return enqueueAssistContext(requestType, null, null, receiver, receiverExtras,
3535 activityToken, focused, newSessionId, UserHandle.getCallingUserId(), null,
3536 PENDING_ASSIST_EXTRAS_LONG_TIMEOUT, 0) != null;
3537 }
3538
3539 @Override
3540 public boolean requestAutofillData(IAssistDataReceiver receiver, Bundle receiverExtras,
3541 IBinder activityToken, int flags) {
3542 return enqueueAssistContext(ActivityManager.ASSIST_CONTEXT_AUTOFILL, null, null,
3543 receiver, receiverExtras, activityToken, true, true, UserHandle.getCallingUserId(),
3544 null, PENDING_AUTOFILL_ASSIST_STRUCTURE_TIMEOUT, flags) != null;
3545 }
3546
3547 @Override
3548 public boolean launchAssistIntent(Intent intent, int requestType, String hint, int userHandle,
3549 Bundle args) {
3550 return enqueueAssistContext(requestType, intent, hint, null, null, null,
3551 true /* focused */, true /* newSessionId */, userHandle, args,
3552 PENDING_ASSIST_EXTRAS_TIMEOUT, 0) != null;
3553 }
3554
3555 @Override
3556 public Bundle getAssistContextExtras(int requestType) {
3557 PendingAssistExtras pae = enqueueAssistContext(requestType, null, null, null,
3558 null, null, true /* focused */, true /* newSessionId */,
3559 UserHandle.getCallingUserId(), null, PENDING_ASSIST_EXTRAS_TIMEOUT, 0);
3560 if (pae == null) {
3561 return null;
3562 }
3563 synchronized (pae) {
3564 while (!pae.haveResult) {
3565 try {
3566 pae.wait();
3567 } catch (InterruptedException e) {
3568 }
3569 }
3570 }
3571 synchronized (mGlobalLock) {
3572 buildAssistBundleLocked(pae, pae.result);
3573 mPendingAssistExtras.remove(pae);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003574 mUiHandler.removeCallbacks(pae);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003575 }
3576 return pae.extras;
3577 }
3578
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003579 /**
3580 * Binder IPC calls go through the public entry point.
3581 * This can be called with or without the global lock held.
3582 */
3583 private static int checkCallingPermission(String permission) {
3584 return checkPermission(
3585 permission, Binder.getCallingPid(), UserHandle.getAppId(Binder.getCallingUid()));
3586 }
3587
3588 /** This can be called with or without the global lock held. */
Wale Ogunwale214f3482018-10-04 11:00:47 -07003589 private void enforceCallerIsRecentsOrHasPermission(String permission, String func) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003590 if (!getRecentTasks().isCallerRecents(Binder.getCallingUid())) {
3591 mAmInternal.enforceCallingPermission(permission, func);
3592 }
3593 }
3594
3595 @VisibleForTesting
3596 int checkGetTasksPermission(String permission, int pid, int uid) {
3597 return checkPermission(permission, pid, uid);
3598 }
3599
3600 static int checkPermission(String permission, int pid, int uid) {
3601 if (permission == null) {
3602 return PackageManager.PERMISSION_DENIED;
3603 }
3604 return checkComponentPermission(permission, pid, uid, -1, true);
3605 }
3606
Wale Ogunwale214f3482018-10-04 11:00:47 -07003607 public static int checkComponentPermission(String permission, int pid, int uid,
3608 int owningUid, boolean exported) {
3609 return ActivityManagerService.checkComponentPermission(
3610 permission, pid, uid, owningUid, exported);
3611 }
3612
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003613 boolean isGetTasksAllowed(String caller, int callingPid, int callingUid) {
3614 if (getRecentTasks().isCallerRecents(callingUid)) {
3615 // Always allow the recents component to get tasks
3616 return true;
3617 }
3618
3619 boolean allowed = checkGetTasksPermission(android.Manifest.permission.REAL_GET_TASKS,
3620 callingPid, callingUid) == PackageManager.PERMISSION_GRANTED;
3621 if (!allowed) {
3622 if (checkGetTasksPermission(android.Manifest.permission.GET_TASKS,
3623 callingPid, callingUid) == PackageManager.PERMISSION_GRANTED) {
3624 // Temporary compatibility: some existing apps on the system image may
3625 // still be requesting the old permission and not switched to the new
3626 // one; if so, we'll still allow them full access. This means we need
3627 // to see if they are holding the old permission and are a system app.
3628 try {
3629 if (AppGlobals.getPackageManager().isUidPrivileged(callingUid)) {
3630 allowed = true;
3631 if (DEBUG_TASKS) Slog.w(TAG, caller + ": caller " + callingUid
3632 + " is using old GET_TASKS but privileged; allowing");
3633 }
3634 } catch (RemoteException e) {
3635 }
3636 }
3637 if (DEBUG_TASKS) Slog.w(TAG, caller + ": caller " + callingUid
3638 + " does not hold REAL_GET_TASKS; limiting output");
3639 }
3640 return allowed;
3641 }
3642
Nicholas Sauer0259e532019-08-30 08:24:55 -07003643 boolean isCrossUserAllowed(int pid, int uid) {
3644 return checkPermission(INTERACT_ACROSS_USERS, pid, uid) == PERMISSION_GRANTED
3645 || checkPermission(INTERACT_ACROSS_USERS_FULL, pid, uid) == PERMISSION_GRANTED;
3646 }
3647
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003648 private PendingAssistExtras enqueueAssistContext(int requestType, Intent intent, String hint,
3649 IAssistDataReceiver receiver, Bundle receiverExtras, IBinder activityToken,
3650 boolean focused, boolean newSessionId, int userHandle, Bundle args, long timeout,
3651 int flags) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003652 mAmInternal.enforceCallingPermission(android.Manifest.permission.GET_TOP_ACTIVITY_INFO,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003653 "enqueueAssistContext()");
3654
3655 synchronized (mGlobalLock) {
Darryl L Johnson1e3885c2020-02-27 17:38:13 -08003656 final ActivityStack stack = getTopDisplayFocusedStack();
3657 ActivityRecord activity = stack != null ? stack.getTopNonFinishingActivity() : null;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003658 if (activity == null) {
3659 Slog.w(TAG, "getAssistContextExtras failed: no top activity");
3660 return null;
3661 }
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07003662 if (!activity.attachedToProcess()) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003663 Slog.w(TAG, "getAssistContextExtras failed: no process for " + activity);
3664 return null;
3665 }
3666 if (focused) {
3667 if (activityToken != null) {
3668 ActivityRecord caller = ActivityRecord.forTokenLocked(activityToken);
3669 if (activity != caller) {
3670 Slog.w(TAG, "enqueueAssistContext failed: caller " + caller
3671 + " is not current top " + activity);
3672 return null;
3673 }
3674 }
3675 } else {
3676 activity = ActivityRecord.forTokenLocked(activityToken);
3677 if (activity == null) {
3678 Slog.w(TAG, "enqueueAssistContext failed: activity for token=" + activityToken
3679 + " couldn't be found");
3680 return null;
3681 }
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07003682 if (!activity.attachedToProcess()) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003683 Slog.w(TAG, "enqueueAssistContext failed: no process for " + activity);
3684 return null;
3685 }
3686 }
3687
3688 PendingAssistExtras pae;
3689 Bundle extras = new Bundle();
3690 if (args != null) {
3691 extras.putAll(args);
3692 }
3693 extras.putString(Intent.EXTRA_ASSIST_PACKAGE, activity.packageName);
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07003694 extras.putInt(Intent.EXTRA_ASSIST_UID, activity.app.mUid);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003695
3696 pae = new PendingAssistExtras(activity, extras, intent, hint, receiver, receiverExtras,
3697 userHandle);
3698 pae.isHome = activity.isActivityTypeHome();
3699
3700 // Increment the sessionId if necessary
3701 if (newSessionId) {
3702 mViSessionId++;
3703 }
3704 try {
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07003705 activity.app.getThread().requestAssistContextExtras(activity.appToken, pae,
3706 requestType, mViSessionId, flags);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003707 mPendingAssistExtras.add(pae);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003708 mUiHandler.postDelayed(pae, timeout);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003709 } catch (RemoteException e) {
3710 Slog.w(TAG, "getAssistContextExtras failed: crash calling " + activity);
3711 return null;
3712 }
3713 return pae;
3714 }
3715 }
3716
3717 private void buildAssistBundleLocked(PendingAssistExtras pae, Bundle result) {
3718 if (result != null) {
3719 pae.extras.putBundle(Intent.EXTRA_ASSIST_CONTEXT, result);
3720 }
3721 if (pae.hint != null) {
3722 pae.extras.putBoolean(pae.hint, true);
3723 }
3724 }
3725
3726 private void pendingAssistExtrasTimedOut(PendingAssistExtras pae) {
3727 IAssistDataReceiver receiver;
3728 synchronized (mGlobalLock) {
3729 mPendingAssistExtras.remove(pae);
3730 receiver = pae.receiver;
3731 }
3732 if (receiver != null) {
3733 // Caller wants result sent back to them.
3734 Bundle sendBundle = new Bundle();
3735 // At least return the receiver extras
3736 sendBundle.putBundle(ASSIST_KEY_RECEIVER_EXTRAS, pae.receiverExtras);
3737 try {
3738 pae.receiver.onHandleAssistData(sendBundle);
3739 } catch (RemoteException e) {
3740 }
3741 }
3742 }
3743
3744 public class PendingAssistExtras extends Binder implements Runnable {
3745 public final ActivityRecord activity;
3746 public boolean isHome;
3747 public final Bundle extras;
3748 public final Intent intent;
3749 public final String hint;
3750 public final IAssistDataReceiver receiver;
3751 public final int userHandle;
3752 public boolean haveResult = false;
3753 public Bundle result = null;
3754 public AssistStructure structure = null;
3755 public AssistContent content = null;
3756 public Bundle receiverExtras;
3757
3758 public PendingAssistExtras(ActivityRecord _activity, Bundle _extras, Intent _intent,
3759 String _hint, IAssistDataReceiver _receiver, Bundle _receiverExtras,
3760 int _userHandle) {
3761 activity = _activity;
3762 extras = _extras;
3763 intent = _intent;
3764 hint = _hint;
3765 receiver = _receiver;
3766 receiverExtras = _receiverExtras;
3767 userHandle = _userHandle;
3768 }
3769
3770 @Override
3771 public void run() {
3772 Slog.w(TAG, "getAssistContextExtras failed: timeout retrieving from " + activity);
3773 synchronized (this) {
3774 haveResult = true;
3775 notifyAll();
3776 }
3777 pendingAssistExtrasTimedOut(this);
3778 }
3779 }
3780
3781 @Override
3782 public boolean isAssistDataAllowedOnCurrentActivity() {
3783 int userId;
3784 synchronized (mGlobalLock) {
Andrii Kulian5f750bc2018-07-17 08:57:23 -07003785 final ActivityStack focusedStack = getTopDisplayFocusedStack();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003786 if (focusedStack == null || focusedStack.isActivityTypeAssistant()) {
3787 return false;
3788 }
3789
Wale Ogunwale21e06482019-11-18 05:14:15 -08003790 final ActivityRecord activity = focusedStack.getTopNonFinishingActivity();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003791 if (activity == null) {
3792 return false;
3793 }
Wale Ogunwale8b19de92018-11-29 19:58:26 -08003794 userId = activity.mUserId;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003795 }
3796 return !DevicePolicyCache.getInstance().getScreenCaptureDisabled(userId);
3797 }
3798
3799 @Override
3800 public boolean showAssistFromActivity(IBinder token, Bundle args) {
3801 long ident = Binder.clearCallingIdentity();
3802 try {
3803 synchronized (mGlobalLock) {
3804 ActivityRecord caller = ActivityRecord.forTokenLocked(token);
Wale Ogunwale21e06482019-11-18 05:14:15 -08003805 ActivityRecord top = getTopDisplayFocusedStack().getTopNonFinishingActivity();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003806 if (top != caller) {
3807 Slog.w(TAG, "showAssistFromActivity failed: caller " + caller
3808 + " is not current top " + top);
3809 return false;
3810 }
3811 if (!top.nowVisible) {
3812 Slog.w(TAG, "showAssistFromActivity failed: caller " + caller
3813 + " is not visible");
3814 return false;
3815 }
3816 }
3817 return mAssistUtils.showSessionForActiveService(args, SHOW_SOURCE_APPLICATION, null,
3818 token);
3819 } finally {
3820 Binder.restoreCallingIdentity(ident);
3821 }
3822 }
3823
3824 @Override
3825 public boolean isRootVoiceInteraction(IBinder token) {
3826 synchronized (mGlobalLock) {
3827 ActivityRecord r = ActivityRecord.isInStackLocked(token);
3828 if (r == null) {
3829 return false;
3830 }
3831 return r.rootVoiceInteraction;
3832 }
3833 }
3834
Wale Ogunwalef6733932018-06-27 05:14:34 -07003835 private void onLocalVoiceInteractionStartedLocked(IBinder activity,
3836 IVoiceInteractionSession voiceSession, IVoiceInteractor voiceInteractor) {
3837 ActivityRecord activityToCallback = ActivityRecord.forTokenLocked(activity);
3838 if (activityToCallback == null) return;
3839 activityToCallback.setVoiceSessionLocked(voiceSession);
3840
3841 // Inform the activity
3842 try {
3843 activityToCallback.app.getThread().scheduleLocalVoiceInteractionStarted(activity,
3844 voiceInteractor);
3845 long token = Binder.clearCallingIdentity();
3846 try {
Andrii Kulianeceebbf2019-06-26 17:36:51 -07003847 startRunningVoiceLocked(voiceSession, activityToCallback.info.applicationInfo.uid);
Wale Ogunwalef6733932018-06-27 05:14:34 -07003848 } finally {
3849 Binder.restoreCallingIdentity(token);
3850 }
3851 // TODO: VI Should we cache the activity so that it's easier to find later
3852 // rather than scan through all the stacks and activities?
3853 } catch (RemoteException re) {
3854 activityToCallback.clearVoiceSessionLocked();
3855 // TODO: VI Should this terminate the voice session?
3856 }
3857 }
3858
3859 private void startRunningVoiceLocked(IVoiceInteractionSession session, int targetUid) {
3860 Slog.d(TAG, "<<< startRunningVoiceLocked()");
3861 mVoiceWakeLock.setWorkSource(new WorkSource(targetUid));
3862 if (mRunningVoice == null || mRunningVoice.asBinder() != session.asBinder()) {
3863 boolean wasRunningVoice = mRunningVoice != null;
3864 mRunningVoice = session;
3865 if (!wasRunningVoice) {
3866 mVoiceWakeLock.acquire();
3867 updateSleepIfNeededLocked();
3868 }
3869 }
3870 }
3871
3872 void finishRunningVoiceLocked() {
3873 if (mRunningVoice != null) {
3874 mRunningVoice = null;
3875 mVoiceWakeLock.release();
3876 updateSleepIfNeededLocked();
3877 }
3878 }
3879
3880 @Override
3881 public void setVoiceKeepAwake(IVoiceInteractionSession session, boolean keepAwake) {
3882 synchronized (mGlobalLock) {
3883 if (mRunningVoice != null && mRunningVoice.asBinder() == session.asBinder()) {
3884 if (keepAwake) {
3885 mVoiceWakeLock.acquire();
3886 } else {
3887 mVoiceWakeLock.release();
3888 }
3889 }
3890 }
3891 }
3892
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003893 @Override
3894 public ComponentName getActivityClassForToken(IBinder token) {
3895 synchronized (mGlobalLock) {
3896 ActivityRecord r = ActivityRecord.isInStackLocked(token);
3897 if (r == null) {
3898 return null;
3899 }
3900 return r.intent.getComponent();
3901 }
3902 }
3903
3904 @Override
3905 public String getPackageForToken(IBinder token) {
3906 synchronized (mGlobalLock) {
3907 ActivityRecord r = ActivityRecord.isInStackLocked(token);
3908 if (r == null) {
3909 return null;
3910 }
3911 return r.packageName;
3912 }
3913 }
3914
3915 @Override
3916 public void showLockTaskEscapeMessage(IBinder token) {
3917 synchronized (mGlobalLock) {
3918 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
3919 if (r == null) {
3920 return;
3921 }
Wale Ogunwaled95c06b2018-05-08 10:35:38 -07003922 getLockTaskController().showLockTaskToast();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003923 }
3924 }
3925
3926 @Override
3927 public void keyguardGoingAway(int flags) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003928 enforceNotIsolatedCaller("keyguardGoingAway");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003929 final long token = Binder.clearCallingIdentity();
3930 try {
3931 synchronized (mGlobalLock) {
Wale Ogunwaled0412b32018-05-08 09:25:50 -07003932 mKeyguardController.keyguardGoingAway(flags);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003933 }
3934 } finally {
3935 Binder.restoreCallingIdentity(token);
3936 }
3937 }
3938
3939 /**
3940 * Try to place task to provided position. The final position might be different depending on
3941 * current user and stacks state. The task will be moved to target stack if it's currently in
3942 * different stack.
3943 */
3944 @Override
3945 public void positionTaskInStack(int taskId, int stackId, int position) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003946 mAmInternal.enforceCallingPermission(MANAGE_ACTIVITY_STACKS, "positionTaskInStack()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003947 synchronized (mGlobalLock) {
3948 long ident = Binder.clearCallingIdentity();
3949 try {
3950 if (DEBUG_STACK) Slog.d(TAG_STACK, "positionTaskInStack: positioning task="
3951 + taskId + " in stackId=" + stackId + " at position=" + position);
Louis Chang149d5c82019-12-30 09:47:39 +08003952 final Task task = mRootWindowContainer.anyTaskForId(taskId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003953 if (task == null) {
3954 throw new IllegalArgumentException("positionTaskInStack: no task for id="
3955 + taskId);
3956 }
3957
Louis Chang149d5c82019-12-30 09:47:39 +08003958 final ActivityStack stack = mRootWindowContainer.getStack(stackId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003959
3960 if (stack == null) {
3961 throw new IllegalArgumentException("positionTaskInStack: no stack for id="
3962 + stackId);
3963 }
3964 if (!stack.isActivityTypeStandardOrUndefined()) {
3965 throw new IllegalArgumentException("positionTaskInStack: Attempt to change"
3966 + " the position of task " + taskId + " in/to non-standard stack");
3967 }
3968
3969 // TODO: Have the callers of this API call a separate reparent method if that is
3970 // what they intended to do vs. having this method also do reparenting.
3971 if (task.getStack() == stack) {
3972 // Change position in current stack.
3973 stack.positionChildAt(task, position);
3974 } else {
3975 // Reparent to new stack.
3976 task.reparent(stack, position, REPARENT_LEAVE_STACK_IN_PLACE, !ANIMATE,
3977 !DEFER_RESUME, "positionTaskInStack");
3978 }
3979 } finally {
3980 Binder.restoreCallingIdentity(ident);
3981 }
3982 }
3983 }
3984
3985 @Override
3986 public void reportSizeConfigurations(IBinder token, int[] horizontalSizeConfiguration,
3987 int[] verticalSizeConfigurations, int[] smallestSizeConfigurations) {
3988 if (DEBUG_CONFIGURATION) Slog.v(TAG, "Report configuration: " + token + " "
Yuichiro Hanadae7e930b2019-06-06 19:07:21 +09003989 + Arrays.toString(horizontalSizeConfiguration) + " "
3990 + Arrays.toString(verticalSizeConfigurations));
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003991 synchronized (mGlobalLock) {
3992 ActivityRecord record = ActivityRecord.isInStackLocked(token);
3993 if (record == null) {
3994 throw new IllegalArgumentException("reportSizeConfigurations: ActivityRecord not "
3995 + "found for: " + token);
3996 }
3997 record.setSizeConfigurations(horizontalSizeConfiguration,
3998 verticalSizeConfigurations, smallestSizeConfigurations);
3999 }
4000 }
4001
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004002 @Override
4003 public void suppressResizeConfigChanges(boolean suppress) throws RemoteException {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004004 mAmInternal.enforceCallingPermission(MANAGE_ACTIVITY_STACKS, "suppressResizeConfigChanges()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004005 synchronized (mGlobalLock) {
4006 mSuppressResizeConfigChanges = suppress;
4007 }
4008 }
4009
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004010 /**
4011 * Moves the top activity in the input stackId to the pinned stack.
4012 *
4013 * @param stackId Id of stack to move the top activity to pinned stack.
4014 * @param bounds Bounds to use for pinned stack.
4015 *
4016 * @return True if the top activity of the input stack was successfully moved to the pinned
4017 * stack.
4018 */
4019 @Override
4020 public boolean moveTopActivityToPinnedStack(int stackId, Rect bounds) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004021 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004022 "moveTopActivityToPinnedStack()");
4023 synchronized (mGlobalLock) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004024 if (!mSupportsPictureInPicture) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004025 throw new IllegalStateException("moveTopActivityToPinnedStack:"
4026 + "Device doesn't support picture-in-picture mode");
4027 }
4028
4029 long ident = Binder.clearCallingIdentity();
4030 try {
Louis Chang149d5c82019-12-30 09:47:39 +08004031 return mRootWindowContainer.moveTopStackActivityToPinnedStack(stackId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004032 } finally {
4033 Binder.restoreCallingIdentity(ident);
4034 }
4035 }
4036 }
4037
Hongwei Wang5711b8f2019-11-15 15:44:12 -08004038 @VisibleForTesting
4039 boolean isInPictureInPictureMode(ActivityRecord r) {
Hongwei Wang85cf41f2020-01-15 15:14:47 -08004040 return r != null
4041 && r.getRootTask() != null
4042 && r.inPinnedWindowingMode()
Wale Ogunwale0db64ac2020-04-11 10:00:42 -07004043 && r.getRootTask().isInTask(r) != null;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004044 }
4045
4046 @Override
4047 public boolean enterPictureInPictureMode(IBinder token, final PictureInPictureParams params) {
4048 final long origId = Binder.clearCallingIdentity();
4049 try {
4050 synchronized (mGlobalLock) {
4051 final ActivityRecord r = ensureValidPictureInPictureActivityParamsLocked(
4052 "enterPictureInPictureMode", token, params);
4053
4054 // If the activity is already in picture in picture mode, then just return early
4055 if (isInPictureInPictureMode(r)) {
4056 return true;
4057 }
4058
4059 // Activity supports picture-in-picture, now check that we can enter PiP at this
4060 // point, if it is
4061 if (!r.checkEnterPictureInPictureState("enterPictureInPictureMode",
4062 false /* beforeStopping */)) {
4063 return false;
4064 }
4065
4066 final Runnable enterPipRunnable = () -> {
Wale Ogunwalef276a6f2018-06-15 08:26:07 -07004067 synchronized (mGlobalLock) {
Hyangseok Chaeed0624e2019-11-07 10:15:46 +09004068 if (r.getParent() == null) {
4069 Slog.e(TAG, "Skip enterPictureInPictureMode, destroyed " + r);
4070 return;
4071 }
Wale Ogunwalef276a6f2018-06-15 08:26:07 -07004072 // Only update the saved args from the args that are set
Robert Carrf6690d12020-02-04 14:16:21 -08004073 r.setPictureInPictureParams(params);
Wale Ogunwalef276a6f2018-06-15 08:26:07 -07004074 final float aspectRatio = r.pictureInPictureArgs.getAspectRatio();
4075 final List<RemoteAction> actions = r.pictureInPictureArgs.getActions();
Louis Chang149d5c82019-12-30 09:47:39 +08004076 mRootWindowContainer.moveActivityToPinnedStack(
Hongwei Wange8e32862020-04-08 13:23:45 -07004077 r, "enterPictureInPictureMode");
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08004078 final ActivityStack stack = r.getRootTask();
Wale Ogunwalef276a6f2018-06-15 08:26:07 -07004079 stack.setPictureInPictureAspectRatio(aspectRatio);
4080 stack.setPictureInPictureActions(actions);
Andrii Kulianeceebbf2019-06-26 17:36:51 -07004081 MetricsLoggerWrapper.logPictureInPictureEnter(mContext,
4082 r.info.applicationInfo.uid, r.shortComponentName,
4083 r.supportsEnterPipOnTaskSwitch);
Wale Ogunwalef276a6f2018-06-15 08:26:07 -07004084 logPictureInPictureArgs(params);
4085 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004086 };
4087
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004088 if (isKeyguardLocked()) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004089 // If the keyguard is showing or occluded, then try and dismiss it before
4090 // entering picture-in-picture (this will prompt the user to authenticate if the
4091 // device is currently locked).
4092 dismissKeyguard(token, new KeyguardDismissCallback() {
4093 @Override
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004094 public void onDismissSucceeded() {
4095 mH.post(enterPipRunnable);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004096 }
4097 }, null /* message */);
4098 } else {
4099 // Enter picture in picture immediately otherwise
4100 enterPipRunnable.run();
4101 }
4102 return true;
4103 }
4104 } finally {
4105 Binder.restoreCallingIdentity(origId);
4106 }
4107 }
4108
4109 @Override
4110 public void setPictureInPictureParams(IBinder token, final PictureInPictureParams params) {
4111 final long origId = Binder.clearCallingIdentity();
4112 try {
4113 synchronized (mGlobalLock) {
4114 final ActivityRecord r = ensureValidPictureInPictureActivityParamsLocked(
4115 "setPictureInPictureParams", token, params);
4116
4117 // Only update the saved args from the args that are set
Robert Carrf6690d12020-02-04 14:16:21 -08004118 r.setPictureInPictureParams(params);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004119 if (r.inPinnedWindowingMode()) {
4120 // If the activity is already in picture-in-picture, update the pinned stack now
4121 // if it is not already expanding to fullscreen. Otherwise, the arguments will
4122 // be used the next time the activity enters PiP
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08004123 final ActivityStack stack = r.getRootTask();
Hongwei Wang85cf41f2020-01-15 15:14:47 -08004124 stack.setPictureInPictureAspectRatio(
4125 r.pictureInPictureArgs.getAspectRatio());
4126 stack.setPictureInPictureActions(r.pictureInPictureArgs.getActions());
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004127 }
4128 logPictureInPictureArgs(params);
4129 }
4130 } finally {
4131 Binder.restoreCallingIdentity(origId);
4132 }
4133 }
4134
4135 @Override
4136 public int getMaxNumPictureInPictureActions(IBinder token) {
4137 // Currently, this is a static constant, but later, we may change this to be dependent on
4138 // the context of the activity
4139 return 3;
4140 }
4141
4142 private void logPictureInPictureArgs(PictureInPictureParams params) {
4143 if (params.hasSetActions()) {
4144 MetricsLogger.histogram(mContext, "tron_varz_picture_in_picture_actions_count",
4145 params.getActions().size());
4146 }
4147 if (params.hasSetAspectRatio()) {
4148 LogMaker lm = new LogMaker(MetricsEvent.ACTION_PICTURE_IN_PICTURE_ASPECT_RATIO_CHANGED);
4149 lm.addTaggedData(MetricsEvent.PICTURE_IN_PICTURE_ASPECT_RATIO, params.getAspectRatio());
4150 MetricsLogger.action(lm);
4151 }
4152 }
4153
4154 /**
4155 * Checks the state of the system and the activity associated with the given {@param token} to
4156 * verify that picture-in-picture is supported for that activity.
4157 *
4158 * @return the activity record for the given {@param token} if all the checks pass.
4159 */
4160 private ActivityRecord ensureValidPictureInPictureActivityParamsLocked(String caller,
4161 IBinder token, PictureInPictureParams params) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004162 if (!mSupportsPictureInPicture) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004163 throw new IllegalStateException(caller
4164 + ": Device doesn't support picture-in-picture mode.");
4165 }
4166
4167 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
4168 if (r == null) {
4169 throw new IllegalStateException(caller
4170 + ": Can't find activity for token=" + token);
4171 }
4172
4173 if (!r.supportsPictureInPicture()) {
4174 throw new IllegalStateException(caller
4175 + ": Current activity does not support picture-in-picture.");
4176 }
4177
4178 if (params.hasSetAspectRatio()
Wale Ogunwale8b19de92018-11-29 19:58:26 -08004179 && !mWindowManager.isValidPictureInPictureAspectRatio(
Wale Ogunwale8f93b642019-12-26 12:10:52 -08004180 r.getDisplay(), params.getAspectRatio())) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004181 final float minAspectRatio = mContext.getResources().getFloat(
4182 com.android.internal.R.dimen.config_pictureInPictureMinAspectRatio);
4183 final float maxAspectRatio = mContext.getResources().getFloat(
4184 com.android.internal.R.dimen.config_pictureInPictureMaxAspectRatio);
4185 throw new IllegalArgumentException(String.format(caller
4186 + ": Aspect ratio is too extreme (must be between %f and %f).",
4187 minAspectRatio, maxAspectRatio));
4188 }
4189
4190 // Truncate the number of actions if necessary
4191 params.truncateActions(getMaxNumPictureInPictureActions(token));
4192
4193 return r;
4194 }
4195
4196 @Override
4197 public IBinder getUriPermissionOwnerForActivity(IBinder activityToken) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004198 enforceNotIsolatedCaller("getUriPermissionOwnerForActivity");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004199 synchronized (mGlobalLock) {
4200 ActivityRecord r = ActivityRecord.isInStackLocked(activityToken);
4201 if (r == null) {
4202 throw new IllegalArgumentException("Activity does not exist; token="
4203 + activityToken);
4204 }
Wale Ogunwale6d50dcc2018-07-21 23:00:40 -07004205 return r.getUriPermissionsLocked().getExternalToken();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004206 }
4207 }
4208
Evan Rosky73a7fe92019-11-18 18:28:01 -08004209 // TODO(b/149338177): remove when CTS no-longer requires it
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004210 @Override
4211 public void resizeDockedStack(Rect dockedBounds, Rect tempDockedTaskBounds,
4212 Rect tempDockedTaskInsetBounds,
4213 Rect tempOtherTaskBounds, Rect tempOtherTaskInsetBounds) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004214 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "resizeDockedStack()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004215 long ident = Binder.clearCallingIdentity();
4216 try {
4217 synchronized (mGlobalLock) {
Andrii Kulian4c0fd0d2020-03-29 13:32:14 -07004218 final TaskDisplayArea tc = mRootWindowContainer.getDefaultTaskDisplayArea();
4219 final Task primary = tc.getRootSplitScreenPrimaryTask();
4220 final Task secondary = tc.getTask(t -> t.mCreatedByOrganizer && t.isRootTask()
Louis Changa009c762020-02-26 11:21:31 +08004221 && t.inSplitScreenSecondaryWindowingMode());
Evan Rosky73a7fe92019-11-18 18:28:01 -08004222 if (primary == null || secondary == null) {
4223 return;
4224 }
4225 final WindowContainerTransaction wct = new WindowContainerTransaction();
4226 final Rect primaryRect =
4227 tempDockedTaskInsetBounds != null ? tempDockedTaskInsetBounds
4228 : (tempDockedTaskBounds != null ? tempDockedTaskBounds
4229 : dockedBounds);
Wale Ogunwaleadf116e2020-03-27 16:36:01 -07004230 wct.setBounds(primary.mRemoteToken.toWindowContainerToken(), primaryRect);
Evan Rosky73a7fe92019-11-18 18:28:01 -08004231 Rect otherRect = tempOtherTaskInsetBounds != null ? tempOtherTaskInsetBounds
4232 : tempOtherTaskBounds;
4233 if (otherRect == null) {
4234 // Temporary estimation... again this is just for tests.
4235 otherRect = new Rect(secondary.getBounds());
Andrii Kulian4c0fd0d2020-03-29 13:32:14 -07004236 if (tc.getBounds().width() > tc.getBounds().height()) {
Evan Rosky73a7fe92019-11-18 18:28:01 -08004237 otherRect.left = primaryRect.right + 6;
4238 } else {
4239 otherRect.top = primaryRect.bottom + 6;
4240 }
4241 }
Wale Ogunwaleadf116e2020-03-27 16:36:01 -07004242 wct.setBounds(secondary.mRemoteToken.toWindowContainerToken(), otherRect);
Wale Ogunwale568f9f412020-03-21 22:27:35 -07004243 mWindowOrganizerController.applyTransaction(wct);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004244 }
4245 } finally {
4246 Binder.restoreCallingIdentity(ident);
4247 }
4248 }
4249
4250 @Override
4251 public void setSplitScreenResizing(boolean resizing) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004252 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "setSplitScreenResizing()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004253 final long ident = Binder.clearCallingIdentity();
4254 try {
4255 synchronized (mGlobalLock) {
4256 mStackSupervisor.setSplitScreenResizing(resizing);
4257 }
4258 } finally {
4259 Binder.restoreCallingIdentity(ident);
4260 }
4261 }
4262
Evan Rosky0037e5f2019-11-05 10:26:24 -08004263 @Override
Wale Ogunwale568f9f412020-03-21 22:27:35 -07004264 public IWindowOrganizerController getWindowOrganizerController() {
Evan Rosky0037e5f2019-11-05 10:26:24 -08004265 mAmInternal.enforceCallingPermission(MANAGE_ACTIVITY_STACKS,
Wale Ogunwale568f9f412020-03-21 22:27:35 -07004266 "getWindowOrganizerController()");
4267 return mWindowOrganizerController;
Evan Rosky0037e5f2019-11-05 10:26:24 -08004268 }
4269
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004270 /**
4271 * Check that we have the features required for VR-related API calls, and throw an exception if
4272 * not.
4273 */
Wale Ogunwale59507092018-10-29 09:00:30 -07004274 public void enforceSystemHasVrFeature() {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004275 if (!mContext.getPackageManager().hasSystemFeature(
4276 PackageManager.FEATURE_VR_MODE_HIGH_PERFORMANCE)) {
4277 throw new UnsupportedOperationException("VR mode not supported on this device!");
4278 }
4279 }
4280
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004281 @Override
4282 public int setVrMode(IBinder token, boolean enabled, ComponentName packageName) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004283 enforceSystemHasVrFeature();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004284
4285 final VrManagerInternal vrService = LocalServices.getService(VrManagerInternal.class);
4286
4287 ActivityRecord r;
4288 synchronized (mGlobalLock) {
4289 r = ActivityRecord.isInStackLocked(token);
4290 }
4291
4292 if (r == null) {
4293 throw new IllegalArgumentException();
4294 }
4295
4296 int err;
Wale Ogunwale8b19de92018-11-29 19:58:26 -08004297 if ((err = vrService.hasVrPackage(packageName, r.mUserId)) !=
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004298 VrManagerInternal.NO_ERROR) {
4299 return err;
4300 }
4301
4302 // Clear the binder calling uid since this path may call moveToTask().
4303 final long callingId = Binder.clearCallingIdentity();
4304 try {
4305 synchronized (mGlobalLock) {
4306 r.requestedVrComponent = (enabled) ? packageName : null;
4307
4308 // Update associated state if this activity is currently focused
Andrii Kulian52d255c2018-07-13 11:32:19 -07004309 if (r.isResumedActivityOnDisplay()) {
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004310 applyUpdateVrModeLocked(r);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004311 }
4312 return 0;
4313 }
4314 } finally {
4315 Binder.restoreCallingIdentity(callingId);
4316 }
4317 }
4318
4319 @Override
4320 public void startLocalVoiceInteraction(IBinder callingActivity, Bundle options) {
4321 Slog.i(TAG, "Activity tried to startLocalVoiceInteraction");
4322 synchronized (mGlobalLock) {
Wale Ogunwale21e06482019-11-18 05:14:15 -08004323 ActivityRecord activity = getTopDisplayFocusedStack().getTopNonFinishingActivity();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004324 if (ActivityRecord.forTokenLocked(callingActivity) != activity) {
4325 throw new SecurityException("Only focused activity can call startVoiceInteraction");
4326 }
Louis Changcdec0802019-11-11 11:45:07 +08004327 if (mRunningVoice != null || activity.getTask().voiceSession != null
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004328 || activity.voiceSession != null) {
4329 Slog.w(TAG, "Already in a voice interaction, cannot start new voice interaction");
4330 return;
4331 }
4332 if (activity.pendingVoiceInteractionStart) {
4333 Slog.w(TAG, "Pending start of voice interaction already.");
4334 return;
4335 }
4336 activity.pendingVoiceInteractionStart = true;
4337 }
4338 LocalServices.getService(VoiceInteractionManagerInternal.class)
4339 .startLocalVoiceInteraction(callingActivity, options);
4340 }
4341
4342 @Override
4343 public void stopLocalVoiceInteraction(IBinder callingActivity) {
4344 LocalServices.getService(VoiceInteractionManagerInternal.class)
4345 .stopLocalVoiceInteraction(callingActivity);
4346 }
4347
4348 @Override
4349 public boolean supportsLocalVoiceInteraction() {
4350 return LocalServices.getService(VoiceInteractionManagerInternal.class)
4351 .supportsLocalVoiceInteraction();
4352 }
4353
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004354 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004355 public boolean updateConfiguration(Configuration values) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004356 mAmInternal.enforceCallingPermission(CHANGE_CONFIGURATION, "updateConfiguration()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004357
4358 synchronized (mGlobalLock) {
Riddle Hsua0022cd2019-09-09 21:12:41 +08004359 if (mWindowManager == null) {
4360 Slog.w(TAG, "Skip updateConfiguration because mWindowManager isn't set");
4361 return false;
4362 }
4363
4364 if (values == null) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004365 // sentinel: fetch the current configuration from the window manager
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004366 values = mWindowManager.computeNewConfiguration(DEFAULT_DISPLAY);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004367 }
4368
Riddle Hsua0022cd2019-09-09 21:12:41 +08004369 mH.sendMessage(PooledLambda.obtainMessage(
4370 ActivityManagerInternal::updateOomLevelsForDisplay, mAmInternal,
4371 DEFAULT_DISPLAY));
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004372
4373 final long origId = Binder.clearCallingIdentity();
4374 try {
4375 if (values != null) {
4376 Settings.System.clearConfiguration(values);
4377 }
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004378 updateConfigurationLocked(values, null, false, false /* persistent */,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004379 UserHandle.USER_NULL, false /* deferResume */,
4380 mTmpUpdateConfigurationResult);
4381 return mTmpUpdateConfigurationResult.changes != 0;
4382 } finally {
4383 Binder.restoreCallingIdentity(origId);
4384 }
4385 }
4386 }
4387
4388 @Override
4389 public void dismissKeyguard(IBinder token, IKeyguardDismissCallback callback,
4390 CharSequence message) {
4391 if (message != null) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004392 mAmInternal.enforceCallingPermission(
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004393 Manifest.permission.SHOW_KEYGUARD_MESSAGE, "dismissKeyguard()");
4394 }
4395 final long callingId = Binder.clearCallingIdentity();
4396 try {
4397 synchronized (mGlobalLock) {
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004398 mKeyguardController.dismissKeyguard(token, callback, message);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004399 }
4400 } finally {
4401 Binder.restoreCallingIdentity(callingId);
4402 }
4403 }
4404
4405 @Override
4406 public void cancelTaskWindowTransition(int taskId) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004407 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004408 "cancelTaskWindowTransition()");
4409 final long ident = Binder.clearCallingIdentity();
4410 try {
4411 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08004412 final Task task = mRootWindowContainer.anyTaskForId(taskId,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004413 MATCH_TASK_IN_STACKS_ONLY);
4414 if (task == null) {
4415 Slog.w(TAG, "cancelTaskWindowTransition: taskId=" + taskId + " not found");
4416 return;
4417 }
Wale Ogunwale2322bed2019-10-10 17:24:19 +02004418 task.cancelTaskWindowTransition();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004419 }
4420 } finally {
4421 Binder.restoreCallingIdentity(ident);
4422 }
4423 }
4424
4425 @Override
Peter Kalauskas4dc04602020-02-12 18:49:03 -08004426 public ActivityManager.TaskSnapshot getTaskSnapshot(int taskId, boolean isLowResolution) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004427 enforceCallerIsRecentsOrHasPermission(READ_FRAME_BUFFER, "getTaskSnapshot()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004428 final long ident = Binder.clearCallingIdentity();
4429 try {
Peter Kalauskas4dc04602020-02-12 18:49:03 -08004430 return getTaskSnapshot(taskId, isLowResolution, true /* restoreFromDisk */);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004431 } finally {
4432 Binder.restoreCallingIdentity(ident);
4433 }
4434 }
4435
Peter Kalauskas4dc04602020-02-12 18:49:03 -08004436 private ActivityManager.TaskSnapshot getTaskSnapshot(int taskId, boolean isLowResolution,
Jorim Jaggi925bb3c2019-06-04 19:51:45 +02004437 boolean restoreFromDisk) {
Louis Changcdec0802019-11-11 11:45:07 +08004438 final Task task;
Jorim Jaggi925bb3c2019-06-04 19:51:45 +02004439 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08004440 task = mRootWindowContainer.anyTaskForId(taskId,
Jorim Jaggi925bb3c2019-06-04 19:51:45 +02004441 MATCH_TASK_IN_STACKS_OR_RECENT_TASKS);
4442 if (task == null) {
4443 Slog.w(TAG, "getTaskSnapshot: taskId=" + taskId + " not found");
4444 return null;
4445 }
4446 }
4447 // Don't call this while holding the lock as this operation might hit the disk.
Peter Kalauskas4dc04602020-02-12 18:49:03 -08004448 return task.getSnapshot(isLowResolution, restoreFromDisk);
Jorim Jaggi925bb3c2019-06-04 19:51:45 +02004449 }
4450
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004451 @Override
4452 public void setDisablePreviewScreenshots(IBinder token, boolean disable) {
4453 synchronized (mGlobalLock) {
4454 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
4455 if (r == null) {
4456 Slog.w(TAG, "setDisablePreviewScreenshots: Unable to find activity for token="
4457 + token);
4458 return;
4459 }
4460 final long origId = Binder.clearCallingIdentity();
4461 try {
4462 r.setDisablePreviewScreenshots(disable);
4463 } finally {
4464 Binder.restoreCallingIdentity(origId);
4465 }
4466 }
4467 }
4468
Riddle Hsu440f88b2019-11-06 22:17:35 +08004469 @Override
4470 public void invalidateHomeTaskSnapshot(IBinder token) {
4471 synchronized (mGlobalLock) {
4472 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
4473 if (r == null || !r.isActivityTypeHome()) {
4474 return;
4475 }
4476 mWindowManager.mTaskSnapshotController.removeSnapshotCache(r.getTask().mTaskId);
4477 }
4478 }
4479
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004480 /** Return the user id of the last resumed activity. */
4481 @Override
4482 public @UserIdInt
4483 int getLastResumedActivityUserId() {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004484 mAmInternal.enforceCallingPermission(
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004485 Manifest.permission.INTERACT_ACROSS_USERS_FULL, "getLastResumedActivityUserId()");
4486 synchronized (mGlobalLock) {
Wale Ogunwalef6733932018-06-27 05:14:34 -07004487 if (mLastResumedActivity == null) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004488 return getCurrentUserId();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004489 }
Wale Ogunwale8b19de92018-11-29 19:58:26 -08004490 return mLastResumedActivity.mUserId;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004491 }
4492 }
4493
4494 @Override
4495 public void updateLockTaskFeatures(int userId, int flags) {
4496 final int callingUid = Binder.getCallingUid();
4497 if (callingUid != 0 && callingUid != SYSTEM_UID) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004498 mAmInternal.enforceCallingPermission(android.Manifest.permission.UPDATE_LOCK_TASK_PACKAGES,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004499 "updateLockTaskFeatures()");
4500 }
4501 synchronized (mGlobalLock) {
4502 if (DEBUG_LOCKTASK) Slog.w(TAG_LOCKTASK, "Allowing features " + userId + ":0x" +
4503 Integer.toHexString(flags));
Wale Ogunwaled95c06b2018-05-08 10:35:38 -07004504 getLockTaskController().updateLockTaskFeatures(userId, flags);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004505 }
4506 }
4507
4508 @Override
4509 public void setShowWhenLocked(IBinder token, boolean showWhenLocked) {
4510 synchronized (mGlobalLock) {
4511 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
4512 if (r == null) {
4513 return;
4514 }
4515 final long origId = Binder.clearCallingIdentity();
4516 try {
4517 r.setShowWhenLocked(showWhenLocked);
4518 } finally {
4519 Binder.restoreCallingIdentity(origId);
4520 }
4521 }
4522 }
4523
4524 @Override
Issei Suzuki74e1eb22018-12-20 17:42:52 +01004525 public void setInheritShowWhenLocked(IBinder token, boolean inheritShowWhenLocked) {
4526 synchronized (mGlobalLock) {
4527 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
4528 if (r == null) {
4529 return;
4530 }
4531 final long origId = Binder.clearCallingIdentity();
4532 try {
4533 r.setInheritShowWhenLocked(inheritShowWhenLocked);
4534 } finally {
4535 Binder.restoreCallingIdentity(origId);
4536 }
4537 }
4538 }
4539
4540 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004541 public void setTurnScreenOn(IBinder token, boolean turnScreenOn) {
4542 synchronized (mGlobalLock) {
4543 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
4544 if (r == null) {
4545 return;
4546 }
4547 final long origId = Binder.clearCallingIdentity();
4548 try {
4549 r.setTurnScreenOn(turnScreenOn);
4550 } finally {
4551 Binder.restoreCallingIdentity(origId);
4552 }
4553 }
4554 }
4555
4556 @Override
4557 public void registerRemoteAnimations(IBinder token, RemoteAnimationDefinition definition) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004558 mAmInternal.enforceCallingPermission(CONTROL_REMOTE_APP_TRANSITION_ANIMATIONS,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004559 "registerRemoteAnimations");
Jorim Jaggi589c5ba2019-07-30 16:50:13 +02004560 definition.setCallingPidUid(Binder.getCallingPid(), Binder.getCallingUid());
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004561 synchronized (mGlobalLock) {
4562 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
4563 if (r == null) {
4564 return;
4565 }
4566 final long origId = Binder.clearCallingIdentity();
4567 try {
4568 r.registerRemoteAnimations(definition);
4569 } finally {
4570 Binder.restoreCallingIdentity(origId);
4571 }
4572 }
4573 }
4574
4575 @Override
Winson Chung10fc25d2019-12-10 14:13:56 -08004576 public void unregisterRemoteAnimations(IBinder token) {
4577 mAmInternal.enforceCallingPermission(CONTROL_REMOTE_APP_TRANSITION_ANIMATIONS,
4578 "unregisterRemoteAnimations");
4579 synchronized (mGlobalLock) {
4580 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
4581 if (r == null) {
4582 return;
4583 }
4584 final long origId = Binder.clearCallingIdentity();
4585 try {
4586 r.unregisterRemoteAnimations();
4587 } finally {
4588 Binder.restoreCallingIdentity(origId);
4589 }
4590 }
4591 }
4592
4593 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004594 public void registerRemoteAnimationForNextActivityStart(String packageName,
4595 RemoteAnimationAdapter adapter) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004596 mAmInternal.enforceCallingPermission(CONTROL_REMOTE_APP_TRANSITION_ANIMATIONS,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004597 "registerRemoteAnimationForNextActivityStart");
Jorim Jaggi589c5ba2019-07-30 16:50:13 +02004598 adapter.setCallingPidUid(Binder.getCallingPid(), Binder.getCallingUid());
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004599 synchronized (mGlobalLock) {
4600 final long origId = Binder.clearCallingIdentity();
4601 try {
Wale Ogunwale5fa8a8c2018-05-08 13:43:21 -07004602 getActivityStartController().registerRemoteAnimationForNextActivityStart(
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004603 packageName, adapter);
4604 } finally {
4605 Binder.restoreCallingIdentity(origId);
4606 }
4607 }
4608 }
4609
Evan Rosky966759f2019-01-15 10:33:58 -08004610 @Override
4611 public void registerRemoteAnimationsForDisplay(int displayId,
4612 RemoteAnimationDefinition definition) {
4613 mAmInternal.enforceCallingPermission(CONTROL_REMOTE_APP_TRANSITION_ANIMATIONS,
4614 "registerRemoteAnimations");
Jorim Jaggi589c5ba2019-07-30 16:50:13 +02004615 definition.setCallingPidUid(Binder.getCallingPid(), Binder.getCallingUid());
Evan Rosky966759f2019-01-15 10:33:58 -08004616 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08004617 final DisplayContent display = mRootWindowContainer.getDisplayContent(displayId);
Evan Rosky966759f2019-01-15 10:33:58 -08004618 if (display == null) {
4619 Slog.e(TAG, "Couldn't find display with id: " + displayId);
4620 return;
4621 }
4622 final long origId = Binder.clearCallingIdentity();
4623 try {
4624 display.mDisplayContent.registerRemoteAnimations(definition);
4625 } finally {
4626 Binder.restoreCallingIdentity(origId);
4627 }
4628 }
4629 }
4630
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004631 /** @see android.app.ActivityManager#alwaysShowUnsupportedCompileSdkWarning */
4632 @Override
4633 public void alwaysShowUnsupportedCompileSdkWarning(ComponentName activity) {
4634 synchronized (mGlobalLock) {
4635 final long origId = Binder.clearCallingIdentity();
4636 try {
Wale Ogunwale008163e2018-07-23 23:11:08 -07004637 mAppWarnings.alwaysShowUnsupportedCompileSdkWarning(activity);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004638 } finally {
4639 Binder.restoreCallingIdentity(origId);
4640 }
4641 }
4642 }
Wale Ogunwale6767eae2018-05-03 15:52:51 -07004643
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004644 @Override
4645 public void setVrThread(int tid) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004646 enforceSystemHasVrFeature();
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004647 synchronized (mGlobalLock) {
Wale Ogunwale342fbe92018-10-09 08:44:10 -07004648 final int pid = Binder.getCallingPid();
Michal Karpinski2e0aad22019-04-12 16:22:55 +01004649 final WindowProcessController wpc = mProcessMap.getProcess(pid);
Wale Ogunwale342fbe92018-10-09 08:44:10 -07004650 mVrController.setVrThreadLocked(tid, pid, wpc);
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004651 }
4652 }
4653
4654 @Override
4655 public void setPersistentVrThread(int tid) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004656 if (checkCallingPermission(Manifest.permission.RESTRICTED_VR_ACCESS)
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004657 != PERMISSION_GRANTED) {
4658 final String msg = "Permission Denial: setPersistentVrThread() from pid="
4659 + Binder.getCallingPid()
4660 + ", uid=" + Binder.getCallingUid()
4661 + " requires " + Manifest.permission.RESTRICTED_VR_ACCESS;
4662 Slog.w(TAG, msg);
4663 throw new SecurityException(msg);
4664 }
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004665 enforceSystemHasVrFeature();
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004666 synchronized (mGlobalLock) {
Wale Ogunwale342fbe92018-10-09 08:44:10 -07004667 final int pid = Binder.getCallingPid();
Michal Karpinski2e0aad22019-04-12 16:22:55 +01004668 final WindowProcessController proc = mProcessMap.getProcess(pid);
Wale Ogunwale342fbe92018-10-09 08:44:10 -07004669 mVrController.setPersistentVrThreadLocked(tid, pid, proc);
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004670 }
4671 }
4672
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004673 @Override
4674 public void stopAppSwitches() {
4675 enforceCallerIsRecentsOrHasPermission(STOP_APP_SWITCHES, "stopAppSwitches");
4676 synchronized (mGlobalLock) {
4677 mAppSwitchesAllowedTime = SystemClock.uptimeMillis() + APP_SWITCH_DELAY_TIME;
Ricky Wai906af482019-06-03 17:25:28 +01004678 mLastStopAppSwitchesTime = SystemClock.uptimeMillis();
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004679 mDidAppSwitch = false;
4680 getActivityStartController().schedulePendingActivityLaunches(APP_SWITCH_DELAY_TIME);
4681 }
4682 }
4683
4684 @Override
4685 public void resumeAppSwitches() {
4686 enforceCallerIsRecentsOrHasPermission(STOP_APP_SWITCHES, "resumeAppSwitches");
4687 synchronized (mGlobalLock) {
4688 // Note that we don't execute any pending app switches... we will
4689 // let those wait until either the timeout, or the next start
4690 // activity request.
4691 mAppSwitchesAllowedTime = 0;
4692 }
4693 }
4694
Ricky Wai906af482019-06-03 17:25:28 +01004695 long getLastStopAppSwitchesTime() {
4696 return mLastStopAppSwitchesTime;
4697 }
4698
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004699 void onStartActivitySetDidAppSwitch() {
4700 if (mDidAppSwitch) {
4701 // This is the second allowed switch since we stopped switches, so now just generally
4702 // allow switches. Use case:
4703 // - user presses home (switches disabled, switch to home, mDidAppSwitch now true);
4704 // - user taps a home icon (coming from home so allowed, we hit here and now allow
4705 // anyone to switch again).
4706 mAppSwitchesAllowedTime = 0;
4707 } else {
4708 mDidAppSwitch = true;
4709 }
4710 }
4711
4712 /** @return whether the system should disable UI modes incompatible with VR mode. */
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004713 boolean shouldDisableNonVrUiLocked() {
4714 return mVrController.shouldDisableNonVrUiLocked();
4715 }
4716
Wale Ogunwale53783742018-09-16 10:21:51 -07004717 private void applyUpdateVrModeLocked(ActivityRecord r) {
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004718 // 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 +00004719 // itself, but isn't on the main display, then move it there before enabling VR Mode.
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004720 if (r.requestedVrComponent != null && r.getDisplayId() != DEFAULT_DISPLAY) {
Wale Ogunwaleb8e6b632019-06-28 15:19:25 +00004721 Slog.i(TAG, "Moving " + r.shortComponentName + " from display " + r.getDisplayId()
4722 + " to main display for VR");
Louis Chang149d5c82019-12-30 09:47:39 +08004723 mRootWindowContainer.moveStackToDisplay(
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08004724 r.getRootTaskId(), DEFAULT_DISPLAY, true /* toTop */);
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004725 }
4726 mH.post(() -> {
4727 if (!mVrController.onVrModeChanged(r)) {
4728 return;
4729 }
4730 synchronized (mGlobalLock) {
4731 final boolean disableNonVrUi = mVrController.shouldDisableNonVrUiLocked();
4732 mWindowManager.disableNonVrUi(disableNonVrUi);
4733 if (disableNonVrUi) {
4734 // If we are in a VR mode where Picture-in-Picture mode is unsupported,
4735 // then remove the pinned stack.
Louis Chang149d5c82019-12-30 09:47:39 +08004736 mRootWindowContainer.removeStacksInWindowingModes(WINDOWING_MODE_PINNED);
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004737 }
4738 }
4739 });
4740 }
4741
Wale Ogunwale53783742018-09-16 10:21:51 -07004742 @Override
4743 public int getPackageScreenCompatMode(String packageName) {
4744 enforceNotIsolatedCaller("getPackageScreenCompatMode");
4745 synchronized (mGlobalLock) {
4746 return mCompatModePackages.getPackageScreenCompatModeLocked(packageName);
4747 }
4748 }
4749
4750 @Override
4751 public void setPackageScreenCompatMode(String packageName, int mode) {
4752 mAmInternal.enforceCallingPermission(android.Manifest.permission.SET_SCREEN_COMPATIBILITY,
4753 "setPackageScreenCompatMode");
4754 synchronized (mGlobalLock) {
4755 mCompatModePackages.setPackageScreenCompatModeLocked(packageName, mode);
4756 }
4757 }
4758
4759 @Override
4760 public boolean getPackageAskScreenCompat(String packageName) {
4761 enforceNotIsolatedCaller("getPackageAskScreenCompat");
4762 synchronized (mGlobalLock) {
4763 return mCompatModePackages.getPackageAskCompatModeLocked(packageName);
4764 }
4765 }
4766
4767 @Override
4768 public void setPackageAskScreenCompat(String packageName, boolean ask) {
4769 mAmInternal.enforceCallingPermission(android.Manifest.permission.SET_SCREEN_COMPATIBILITY,
4770 "setPackageAskScreenCompat");
4771 synchronized (mGlobalLock) {
4772 mCompatModePackages.setPackageAskCompatModeLocked(packageName, ask);
4773 }
4774 }
4775
Wale Ogunwale64258362018-10-16 15:13:37 -07004776 public static String relaunchReasonToString(int relaunchReason) {
4777 switch (relaunchReason) {
4778 case RELAUNCH_REASON_WINDOWING_MODE_RESIZE:
4779 return "window_resize";
4780 case RELAUNCH_REASON_FREE_RESIZE:
4781 return "free_resize";
4782 default:
4783 return null;
4784 }
4785 }
4786
Andrii Kulian5f750bc2018-07-17 08:57:23 -07004787 ActivityStack getTopDisplayFocusedStack() {
Louis Chang149d5c82019-12-30 09:47:39 +08004788 return mRootWindowContainer.getTopDisplayFocusedStack();
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004789 }
4790
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004791 /** Pokes the task persister. */
Louis Changcdec0802019-11-11 11:45:07 +08004792 void notifyTaskPersisterLocked(Task task, boolean flush) {
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004793 mRecentTasks.notifyTaskPersisterLocked(task, flush);
4794 }
4795
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004796 boolean isKeyguardLocked() {
4797 return mKeyguardController.isKeyguardLocked();
4798 }
4799
Garfield Tan01548632018-11-27 10:15:48 -08004800 /**
4801 * Clears launch params for the given package.
4802 * @param packageNames the names of the packages of which the launch params are to be cleared
4803 */
4804 @Override
4805 public void clearLaunchParamsForPackages(List<String> packageNames) {
4806 mAmInternal.enforceCallingPermission(Manifest.permission.MANAGE_ACTIVITY_STACKS,
4807 "clearLaunchParamsForPackages");
4808 synchronized (mGlobalLock) {
4809 for (int i = 0; i < packageNames.size(); ++i) {
4810 mStackSupervisor.mLaunchParamsPersister.removeRecordForPackage(packageNames.get(i));
4811 }
4812 }
4813 }
4814
Wale Ogunwale9e737db2018-12-17 15:42:37 -08004815 /**
4816 * Makes the display with the given id a single task instance display. I.e the display can only
4817 * contain one task.
4818 */
4819 @Override
4820 public void setDisplayToSingleTaskInstance(int displayId) {
4821 mAmInternal.enforceCallingPermission(Manifest.permission.MANAGE_ACTIVITY_STACKS,
4822 "setDisplayToSingleTaskInstance");
4823 final long origId = Binder.clearCallingIdentity();
4824 try {
Louis Chang677921f2019-12-06 16:44:24 +08004825 final DisplayContent display =
Louis Chang149d5c82019-12-30 09:47:39 +08004826 mRootWindowContainer.getDisplayContentOrCreate(displayId);
Wale Ogunwale9e737db2018-12-17 15:42:37 -08004827 if (display != null) {
4828 display.setDisplayToSingleTaskInstance();
4829 }
4830 } finally {
4831 Binder.restoreCallingIdentity(origId);
4832 }
4833 }
4834
jorgegil@google.com06bc3232019-10-31 14:51:22 -07004835 /**
4836 * Requests that an activity should enter picture-in-picture mode if possible.
4837 */
4838 @Override
4839 public void requestPictureInPictureMode(IBinder token) throws RemoteException {
4840 mAmInternal.enforceCallingPermission(Manifest.permission.MANAGE_ACTIVITY_STACKS,
4841 "requestPictureInPictureMode");
4842 final long origId = Binder.clearCallingIdentity();
4843 try {
4844 synchronized (mGlobalLock) {
4845 final ActivityRecord activity = ActivityRecord.forTokenLocked(token);
4846 if (activity == null) {
4847 return;
4848 }
4849
4850 final boolean canEnterPictureInPicture = activity.checkEnterPictureInPictureState(
4851 "requestPictureInPictureMode", /* beforeStopping */ false);
4852 if (!canEnterPictureInPicture) {
4853 throw new IllegalStateException(
4854 "Requested PIP on an activity that doesn't support it");
4855 }
4856
4857 try {
4858 final ClientTransaction transaction = ClientTransaction.obtain(
4859 activity.app.getThread(),
4860 activity.token);
4861 transaction.addCallback(EnterPipRequestedItem.obtain());
4862 getLifecycleManager().scheduleTransaction(transaction);
4863 } catch (Exception e) {
4864 Slog.w(TAG, "Failed to send enter pip requested item: "
4865 + activity.intent.getComponent(), e);
4866 }
4867 }
4868 } finally {
4869 Binder.restoreCallingIdentity(origId);
4870 }
4871 }
4872
Wale Ogunwale31913b52018-10-13 08:29:31 -07004873 void dumpLastANRLocked(PrintWriter pw) {
4874 pw.println("ACTIVITY MANAGER LAST ANR (dumpsys activity lastanr)");
4875 if (mLastANRState == null) {
4876 pw.println(" <no ANR has occurred since boot>");
4877 } else {
4878 pw.println(mLastANRState);
4879 }
4880 }
4881
4882 void dumpLastANRTracesLocked(PrintWriter pw) {
4883 pw.println("ACTIVITY MANAGER LAST ANR TRACES (dumpsys activity lastanr-traces)");
4884
4885 final File[] files = new File(ANR_TRACE_DIR).listFiles();
4886 if (ArrayUtils.isEmpty(files)) {
4887 pw.println(" <no ANR has occurred since boot>");
4888 return;
4889 }
4890 // Find the latest file.
4891 File latest = null;
4892 for (File f : files) {
4893 if ((latest == null) || (latest.lastModified() < f.lastModified())) {
4894 latest = f;
Wale Ogunwalef6733932018-06-27 05:14:34 -07004895 }
Wale Ogunwale31913b52018-10-13 08:29:31 -07004896 }
4897 pw.print("File: ");
4898 pw.print(latest.getName());
4899 pw.println();
4900 try (BufferedReader in = new BufferedReader(new FileReader(latest))) {
4901 String line;
4902 while ((line = in.readLine()) != null) {
4903 pw.println(line);
4904 }
4905 } catch (IOException e) {
4906 pw.print("Unable to read: ");
4907 pw.print(e);
4908 pw.println();
4909 }
4910 }
4911
4912 void dumpActivitiesLocked(FileDescriptor fd, PrintWriter pw, String[] args,
4913 int opti, boolean dumpAll, boolean dumpClient, String dumpPackage) {
4914 dumpActivitiesLocked(fd, pw, args, opti, dumpAll, dumpClient, dumpPackage,
4915 "ACTIVITY MANAGER ACTIVITIES (dumpsys activity activities)");
4916 }
4917
4918 void dumpActivitiesLocked(FileDescriptor fd, PrintWriter pw, String[] args,
4919 int opti, boolean dumpAll, boolean dumpClient, String dumpPackage, String header) {
4920 pw.println(header);
4921
Louis Chang149d5c82019-12-30 09:47:39 +08004922 boolean printedAnything = mRootWindowContainer.dumpActivities(fd, pw, dumpAll, dumpClient,
Wale Ogunwale31913b52018-10-13 08:29:31 -07004923 dumpPackage);
4924 boolean needSep = printedAnything;
4925
4926 boolean printed = ActivityStackSupervisor.printThisActivity(pw,
Louis Chang149d5c82019-12-30 09:47:39 +08004927 mRootWindowContainer.getTopResumedActivity(), dumpPackage, needSep,
Dianne Hackborn9106f2a2020-04-30 16:23:20 -07004928 " ResumedActivity: ", null);
Wale Ogunwale31913b52018-10-13 08:29:31 -07004929 if (printed) {
4930 printedAnything = true;
4931 needSep = false;
4932 }
4933
4934 if (dumpPackage == null) {
4935 if (needSep) {
4936 pw.println();
4937 }
4938 printedAnything = true;
4939 mStackSupervisor.dump(pw, " ");
Winson Chung268eccb2020-03-26 13:43:44 -07004940 mTaskOrganizerController.dump(pw, " ");
Wale Ogunwale31913b52018-10-13 08:29:31 -07004941 }
4942
4943 if (!printedAnything) {
4944 pw.println(" (nothing)");
4945 }
4946 }
4947
4948 void dumpActivityContainersLocked(PrintWriter pw) {
Jeff Changde322732019-07-12 12:16:23 +08004949 pw.println("ACTIVITY MANAGER CONTAINERS (dumpsys activity containers)");
Louis Chang149d5c82019-12-30 09:47:39 +08004950 mRootWindowContainer.dumpChildrenNames(pw, " ");
Wale Ogunwale31913b52018-10-13 08:29:31 -07004951 pw.println(" ");
4952 }
4953
4954 void dumpActivityStarterLocked(PrintWriter pw, String dumpPackage) {
4955 pw.println("ACTIVITY MANAGER STARTER (dumpsys activity starter)");
4956 getActivityStartController().dump(pw, "", dumpPackage);
4957 }
4958
4959 /**
4960 * There are three things that cmd can be:
4961 * - a flattened component name that matches an existing activity
4962 * - the cmd arg isn't the flattened component name of an existing activity:
4963 * dump all activity whose component contains the cmd as a substring
4964 * - A hex number of the ActivityRecord object instance.
Riddle Hsud7cd8ed2019-07-16 18:19:01 +08004965 * <p>
4966 * The caller should not hold lock when calling this method because it will wait for the
4967 * activities to complete the dump.
Wale Ogunwale31913b52018-10-13 08:29:31 -07004968 *
4969 * @param dumpVisibleStacksOnly dump activity with {@param name} only if in a visible stack
4970 * @param dumpFocusedStackOnly dump activity with {@param name} only if in the focused stack
4971 */
4972 protected boolean dumpActivity(FileDescriptor fd, PrintWriter pw, String name, String[] args,
4973 int opti, boolean dumpAll, boolean dumpVisibleStacksOnly, boolean dumpFocusedStackOnly) {
4974 ArrayList<ActivityRecord> activities;
4975
4976 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08004977 activities = mRootWindowContainer.getDumpActivities(name, dumpVisibleStacksOnly,
Wale Ogunwale31913b52018-10-13 08:29:31 -07004978 dumpFocusedStackOnly);
4979 }
4980
4981 if (activities.size() <= 0) {
4982 return false;
4983 }
4984
4985 String[] newArgs = new String[args.length - opti];
4986 System.arraycopy(args, opti, newArgs, 0, args.length - opti);
4987
Louis Changcdec0802019-11-11 11:45:07 +08004988 Task lastTask = null;
Wale Ogunwale31913b52018-10-13 08:29:31 -07004989 boolean needSep = false;
4990 for (int i = activities.size() - 1; i >= 0; i--) {
4991 ActivityRecord r = activities.get(i);
4992 if (needSep) {
4993 pw.println();
4994 }
4995 needSep = true;
4996 synchronized (mGlobalLock) {
Louis Changcdec0802019-11-11 11:45:07 +08004997 final Task task = r.getTask();
Wale Ogunwale31913b52018-10-13 08:29:31 -07004998 if (lastTask != task) {
4999 lastTask = task;
5000 pw.print("TASK "); pw.print(lastTask.affinity);
Wale Ogunwale4e79a1c2019-10-05 20:52:40 -07005001 pw.print(" id="); pw.print(lastTask.mTaskId);
5002 pw.print(" userId="); pw.println(lastTask.mUserId);
Wale Ogunwale31913b52018-10-13 08:29:31 -07005003 if (dumpAll) {
5004 lastTask.dump(pw, " ");
5005 }
5006 }
5007 }
5008 dumpActivity(" ", fd, pw, activities.get(i), newArgs, dumpAll);
5009 }
5010 return true;
5011 }
5012
5013 /**
5014 * Invokes IApplicationThread.dumpActivity() on the thread of the specified activity if
5015 * there is a thread associated with the activity.
5016 */
5017 private void dumpActivity(String prefix, FileDescriptor fd, PrintWriter pw,
5018 final ActivityRecord r, String[] args, boolean dumpAll) {
5019 String innerPrefix = prefix + " ";
Riddle Hsud7cd8ed2019-07-16 18:19:01 +08005020 IApplicationThread appThread = null;
Wale Ogunwale31913b52018-10-13 08:29:31 -07005021 synchronized (mGlobalLock) {
5022 pw.print(prefix); pw.print("ACTIVITY "); pw.print(r.shortComponentName);
5023 pw.print(" "); pw.print(Integer.toHexString(System.identityHashCode(r)));
5024 pw.print(" pid=");
Riddle Hsud7cd8ed2019-07-16 18:19:01 +08005025 if (r.hasProcess()) {
5026 pw.println(r.app.getPid());
5027 appThread = r.app.getThread();
5028 } else {
5029 pw.println("(not running)");
5030 }
Wale Ogunwale31913b52018-10-13 08:29:31 -07005031 if (dumpAll) {
Garfield Tane8d84ab2019-10-11 09:49:40 -07005032 r.dump(pw, innerPrefix, true /* dumpAll */);
Wale Ogunwale31913b52018-10-13 08:29:31 -07005033 }
5034 }
Riddle Hsud7cd8ed2019-07-16 18:19:01 +08005035 if (appThread != null) {
Wale Ogunwale31913b52018-10-13 08:29:31 -07005036 // flush anything that is already in the PrintWriter since the thread is going
5037 // to write to the file descriptor directly
5038 pw.flush();
Riddle Hsud7cd8ed2019-07-16 18:19:01 +08005039 try (TransferPipe tp = new TransferPipe()) {
5040 appThread.dumpActivity(tp.getWriteFd(), r.appToken, innerPrefix, args);
5041 tp.go(fd);
Wale Ogunwale31913b52018-10-13 08:29:31 -07005042 } catch (IOException e) {
5043 pw.println(innerPrefix + "Failure while dumping the activity: " + e);
5044 } catch (RemoteException e) {
5045 pw.println(innerPrefix + "Got a RemoteException while dumping the activity");
5046 }
Wale Ogunwalef6733932018-06-27 05:14:34 -07005047 }
Wale Ogunwaled0412b32018-05-08 09:25:50 -07005048 }
5049
sanryhuang498e77e2018-12-06 14:57:01 +08005050 private void writeSleepStateToProto(ProtoOutputStream proto, int wakeFullness,
5051 boolean testPssMode) {
5052 final long sleepToken = proto.start(ActivityManagerServiceDumpProcessesProto.SLEEP_STATUS);
5053 proto.write(ActivityManagerServiceDumpProcessesProto.SleepStatus.WAKEFULNESS,
5054 PowerManagerInternal.wakefulnessToProtoEnum(wakeFullness));
Louis Chang149d5c82019-12-30 09:47:39 +08005055 for (ActivityTaskManagerInternal.SleepToken st : mRootWindowContainer.mSleepTokens) {
Wale Ogunwalef6733932018-06-27 05:14:34 -07005056 proto.write(ActivityManagerServiceDumpProcessesProto.SleepStatus.SLEEP_TOKENS,
5057 st.toString());
5058 }
Wale Ogunwalef6733932018-06-27 05:14:34 -07005059 proto.write(ActivityManagerServiceDumpProcessesProto.SleepStatus.SLEEPING, mSleeping);
5060 proto.write(ActivityManagerServiceDumpProcessesProto.SleepStatus.SHUTTING_DOWN,
5061 mShuttingDown);
sanryhuang498e77e2018-12-06 14:57:01 +08005062 proto.write(ActivityManagerServiceDumpProcessesProto.SleepStatus.TEST_PSS_MODE,
5063 testPssMode);
5064 proto.end(sleepToken);
Wale Ogunwaled0412b32018-05-08 09:25:50 -07005065 }
5066
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005067 int getCurrentUserId() {
5068 return mAmInternal.getCurrentUserId();
5069 }
5070
5071 private void enforceNotIsolatedCaller(String caller) {
5072 if (UserHandle.isIsolated(Binder.getCallingUid())) {
5073 throw new SecurityException("Isolated process not allowed to call " + caller);
5074 }
5075 }
5076
Wale Ogunwalef6733932018-06-27 05:14:34 -07005077 public Configuration getConfiguration() {
5078 Configuration ci;
5079 synchronized(mGlobalLock) {
Yunfan Chen75157d72018-07-27 14:47:21 +09005080 ci = new Configuration(getGlobalConfigurationForCallingPid());
Wale Ogunwalef6733932018-06-27 05:14:34 -07005081 ci.userSetLocale = false;
5082 }
5083 return ci;
5084 }
5085
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005086 /**
5087 * Current global configuration information. Contains general settings for the entire system,
5088 * also corresponds to the merged configuration of the default display.
5089 */
5090 Configuration getGlobalConfiguration() {
Louis Chang149d5c82019-12-30 09:47:39 +08005091 // Return default configuration before mRootWindowContainer initialized, which happens
Louis Chang3ff72a82019-12-17 12:12:59 +08005092 // while initializing process record for system, see {@link
5093 // ActivityManagerService#setSystemProcess}.
Louis Chang149d5c82019-12-30 09:47:39 +08005094 return mRootWindowContainer != null ? mRootWindowContainer.getConfiguration()
Louis Chang3ff72a82019-12-17 12:12:59 +08005095 : new Configuration();
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005096 }
5097
5098 boolean updateConfigurationLocked(Configuration values, ActivityRecord starting,
5099 boolean initLocale) {
5100 return updateConfigurationLocked(values, starting, initLocale, false /* deferResume */);
5101 }
5102
5103 boolean updateConfigurationLocked(Configuration values, ActivityRecord starting,
5104 boolean initLocale, boolean deferResume) {
5105 // pass UserHandle.USER_NULL as userId because we don't persist configuration for any user
5106 return updateConfigurationLocked(values, starting, initLocale, false /* persistent */,
5107 UserHandle.USER_NULL, deferResume);
5108 }
5109
Wale Ogunwale59507092018-10-29 09:00:30 -07005110 public void updatePersistentConfiguration(Configuration values, @UserIdInt int userId) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005111 final long origId = Binder.clearCallingIdentity();
5112 try {
5113 synchronized (mGlobalLock) {
5114 updateConfigurationLocked(values, null, false, true, userId,
5115 false /* deferResume */);
5116 }
5117 } finally {
5118 Binder.restoreCallingIdentity(origId);
5119 }
5120 }
5121
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005122 private boolean updateConfigurationLocked(Configuration values, ActivityRecord starting,
5123 boolean initLocale, boolean persistent, int userId, boolean deferResume) {
5124 return updateConfigurationLocked(values, starting, initLocale, persistent, userId,
5125 deferResume, null /* result */);
5126 }
5127
5128 /**
5129 * Do either or both things: (1) change the current configuration, and (2)
5130 * make sure the given activity is running with the (now) current
5131 * configuration. Returns true if the activity has been left running, or
5132 * false if <var>starting</var> is being destroyed to match the new
5133 * configuration.
5134 *
5135 * @param userId is only used when persistent parameter is set to true to persist configuration
5136 * for that particular user
5137 */
5138 boolean updateConfigurationLocked(Configuration values, ActivityRecord starting,
5139 boolean initLocale, boolean persistent, int userId, boolean deferResume,
5140 ActivityTaskManagerService.UpdateConfigurationResult result) {
5141 int changes = 0;
5142 boolean kept = true;
5143
Riddle Hsua0022cd2019-09-09 21:12:41 +08005144 deferWindowLayout();
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005145 try {
5146 if (values != null) {
5147 changes = updateGlobalConfigurationLocked(values, initLocale, persistent, userId,
5148 deferResume);
5149 }
5150
5151 kept = ensureConfigAndVisibilityAfterUpdate(starting, changes);
5152 } finally {
Riddle Hsua0022cd2019-09-09 21:12:41 +08005153 continueWindowLayout();
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005154 }
5155
5156 if (result != null) {
5157 result.changes = changes;
5158 result.activityRelaunched = !kept;
5159 }
5160 return kept;
5161 }
5162
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005163 /** Update default (global) configuration and notify listeners about changes. */
Shivam Agrawal1d3db652019-07-01 15:26:11 -07005164 int updateGlobalConfigurationLocked(@NonNull Configuration values, boolean initLocale,
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005165 boolean persistent, int userId, boolean deferResume) {
Shivam Agrawal1d3db652019-07-01 15:26:11 -07005166
Louis Chang677921f2019-12-06 16:44:24 +08005167 final DisplayContent defaultDisplay =
Louis Chang149d5c82019-12-30 09:47:39 +08005168 mRootWindowContainer.getDisplayContent(DEFAULT_DISPLAY);
Shivam Agrawal1d3db652019-07-01 15:26:11 -07005169
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005170 mTempConfig.setTo(getGlobalConfiguration());
5171 final int changes = mTempConfig.updateFrom(values);
5172 if (changes == 0) {
5173 // Since calling to Activity.setRequestedOrientation leads to freezing the window with
5174 // setting WindowManagerService.mWaitingForConfig to true, it is important that we call
5175 // performDisplayOverrideConfigUpdate in order to send the new display configuration
5176 // (even if there are no actual changes) to unfreeze the window.
Shivam Agrawal1d3db652019-07-01 15:26:11 -07005177 defaultDisplay.performDisplayOverrideConfigUpdate(values, deferResume);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005178 return 0;
5179 }
5180
5181 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.i(TAG_CONFIGURATION,
5182 "Updating global configuration to: " + values);
Jeff Changd136e772019-11-05 20:33:52 +08005183 writeConfigurationChanged(changes);
Muhammad Qureshi759f92f2020-01-28 10:41:55 -08005184 FrameworkStatsLog.write(FrameworkStatsLog.RESOURCE_CONFIGURATION_CHANGED,
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005185 values.colorMode,
5186 values.densityDpi,
5187 values.fontScale,
5188 values.hardKeyboardHidden,
5189 values.keyboard,
5190 values.keyboardHidden,
5191 values.mcc,
5192 values.mnc,
5193 values.navigation,
5194 values.navigationHidden,
5195 values.orientation,
5196 values.screenHeightDp,
5197 values.screenLayout,
5198 values.screenWidthDp,
5199 values.smallestScreenWidthDp,
5200 values.touchscreen,
5201 values.uiMode);
5202
5203
5204 if (!initLocale && !values.getLocales().isEmpty() && values.userSetLocale) {
5205 final LocaleList locales = values.getLocales();
5206 int bestLocaleIndex = 0;
5207 if (locales.size() > 1) {
5208 if (mSupportedSystemLocales == null) {
5209 mSupportedSystemLocales = Resources.getSystem().getAssets().getLocales();
5210 }
5211 bestLocaleIndex = Math.max(0, locales.getFirstMatchIndex(mSupportedSystemLocales));
5212 }
5213 SystemProperties.set("persist.sys.locale",
5214 locales.get(bestLocaleIndex).toLanguageTag());
5215 LocaleList.setDefault(locales, bestLocaleIndex);
Wale Ogunwale342fbe92018-10-09 08:44:10 -07005216
5217 final Message m = PooledLambda.obtainMessage(
5218 ActivityTaskManagerService::sendLocaleToMountDaemonMsg, this,
5219 locales.get(bestLocaleIndex));
5220 mH.sendMessage(m);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005221 }
5222
Yunfan Chen75157d72018-07-27 14:47:21 +09005223 mTempConfig.seq = increaseConfigurationSeqLocked();
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005224
5225 // Update stored global config and notify everyone about the change.
Louis Chang149d5c82019-12-30 09:47:39 +08005226 mRootWindowContainer.onConfigurationChanged(mTempConfig);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005227
5228 Slog.i(TAG, "Config changes=" + Integer.toHexString(changes) + " " + mTempConfig);
5229 // TODO(multi-display): Update UsageEvents#Event to include displayId.
Wale Ogunwale342fbe92018-10-09 08:44:10 -07005230 mUsageStatsInternal.reportConfigurationChange(mTempConfig, mAmInternal.getCurrentUserId());
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005231
5232 // TODO: If our config changes, should we auto dismiss any currently showing dialogs?
Wale Ogunwalef6733932018-06-27 05:14:34 -07005233 updateShouldShowDialogsLocked(mTempConfig);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005234
5235 AttributeCache ac = AttributeCache.instance();
5236 if (ac != null) {
5237 ac.updateConfiguration(mTempConfig);
5238 }
5239
5240 // Make sure all resources in our process are updated right now, so that anyone who is going
5241 // to retrieve resource values after we return will be sure to get the new ones. This is
5242 // especially important during boot, where the first config change needs to guarantee all
5243 // resources have that config before following boot code is executed.
Wale Ogunwale342fbe92018-10-09 08:44:10 -07005244 mSystemThread.applyConfigurationToResources(mTempConfig);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005245
5246 // We need another copy of global config because we're scheduling some calls instead of
5247 // running them in place. We need to be sure that object we send will be handled unchanged.
5248 final Configuration configCopy = new Configuration(mTempConfig);
5249 if (persistent && Settings.System.hasInterestingConfigurationChanges(changes)) {
Wale Ogunwale342fbe92018-10-09 08:44:10 -07005250 final Message msg = PooledLambda.obtainMessage(
5251 ActivityTaskManagerService::sendPutConfigurationForUserMsg,
5252 this, userId, configCopy);
5253 mH.sendMessage(msg);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005254 }
5255
Michal Karpinski2e0aad22019-04-12 16:22:55 +01005256 SparseArray<WindowProcessController> pidMap = mProcessMap.getPidMap();
5257 for (int i = pidMap.size() - 1; i >= 0; i--) {
5258 final int pid = pidMap.keyAt(i);
5259 final WindowProcessController app = pidMap.get(pid);
Yunfan Chen34fcc7a2018-10-11 16:26:09 -07005260 if (DEBUG_CONFIGURATION) {
5261 Slog.v(TAG_CONFIGURATION, "Update process config of "
5262 + app.mName + " to new config " + configCopy);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005263 }
Yunfan Chen34fcc7a2018-10-11 16:26:09 -07005264 app.onConfigurationChanged(configCopy);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005265 }
5266
Wale Ogunwale2ea36d42018-10-18 10:27:31 -07005267 final Message msg = PooledLambda.obtainMessage(
5268 ActivityManagerInternal::broadcastGlobalConfigurationChanged,
5269 mAmInternal, changes, initLocale);
5270 mH.sendMessage(msg);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005271
5272 // Override configuration of the default display duplicates global config, so we need to
5273 // update it also. This will also notify WindowManager about changes.
Louis Chang149d5c82019-12-30 09:47:39 +08005274 defaultDisplay.performDisplayOverrideConfigUpdate(mRootWindowContainer.getConfiguration(),
Shivam Agrawal1d3db652019-07-01 15:26:11 -07005275 deferResume);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005276
5277 return changes;
5278 }
5279
Riddle Hsua0022cd2019-09-09 21:12:41 +08005280 /** @see WindowSurfacePlacer#deferLayout */
5281 void deferWindowLayout() {
5282 if (!mWindowManager.mWindowPlacerLocked.isLayoutDeferred()) {
5283 // Reset the reasons at the first entrance because we only care about the changes in the
5284 // deferred scope.
5285 mLayoutReasons = 0;
5286 }
5287
5288 mWindowManager.mWindowPlacerLocked.deferLayout();
5289 }
5290
5291 /** @see WindowSurfacePlacer#continueLayout */
5292 void continueWindowLayout() {
5293 mWindowManager.mWindowPlacerLocked.continueLayout(mLayoutReasons != 0);
5294 if (DEBUG_ALL && !mWindowManager.mWindowPlacerLocked.isLayoutDeferred()) {
5295 Slog.i(TAG, "continueWindowLayout reason=" + mLayoutReasons);
5296 }
5297 }
5298
5299 /**
5300 * If a reason is added between {@link #deferWindowLayout} and {@link #continueWindowLayout},
5301 * it will make sure {@link WindowSurfacePlacer#performSurfacePlacement} is called when the last
5302 * defer count is gone.
5303 */
5304 void addWindowLayoutReasons(@LayoutReason int reasons) {
5305 mLayoutReasons |= reasons;
5306 }
5307
Wale Ogunwalef6733932018-06-27 05:14:34 -07005308 private void updateEventDispatchingLocked(boolean booted) {
5309 mWindowManager.setEventDispatching(booted && !mShuttingDown);
5310 }
5311
Wale Ogunwale342fbe92018-10-09 08:44:10 -07005312 private void sendPutConfigurationForUserMsg(int userId, Configuration config) {
5313 final ContentResolver resolver = mContext.getContentResolver();
5314 Settings.System.putConfigurationForUser(resolver, config, userId);
5315 }
5316
5317 private void sendLocaleToMountDaemonMsg(Locale l) {
5318 try {
5319 IBinder service = ServiceManager.getService("mount");
5320 IStorageManager storageManager = IStorageManager.Stub.asInterface(service);
5321 Log.d(TAG, "Storing locale " + l.toLanguageTag() + " for decryption UI");
5322 storageManager.setField(StorageManager.SYSTEM_LOCALE_KEY, l.toLanguageTag());
5323 } catch (RemoteException e) {
5324 Log.e(TAG, "Error storing locale for decryption UI", e);
5325 }
5326 }
5327
Alison Cichowlas3e340502018-08-07 17:15:01 -04005328 private void expireStartAsCallerTokenMsg(IBinder permissionToken) {
5329 mStartActivitySources.remove(permissionToken);
5330 mExpiredStartAsCallerTokens.add(permissionToken);
5331 }
5332
5333 private void forgetStartAsCallerTokenMsg(IBinder permissionToken) {
5334 mExpiredStartAsCallerTokens.remove(permissionToken);
5335 }
5336
Wale Ogunwale342fbe92018-10-09 08:44:10 -07005337 boolean isActivityStartsLoggingEnabled() {
5338 return mAmInternal.isActivityStartsLoggingEnabled();
5339 }
5340
Michal Karpinski8596ded2018-11-14 14:43:48 +00005341 boolean isBackgroundActivityStartsEnabled() {
5342 return mAmInternal.isBackgroundActivityStartsEnabled();
5343 }
5344
Wale Ogunwalef6733932018-06-27 05:14:34 -07005345 void enableScreenAfterBoot(boolean booted) {
Jeff Changd136e772019-11-05 20:33:52 +08005346 writeBootProgressEnableScreen(SystemClock.uptimeMillis());
Wale Ogunwalef6733932018-06-27 05:14:34 -07005347 mWindowManager.enableScreenAfterBoot();
5348
5349 synchronized (mGlobalLock) {
5350 updateEventDispatchingLocked(booted);
5351 }
5352 }
5353
Wale Ogunwale906f9c62018-07-23 11:23:44 -07005354 static long getInputDispatchingTimeoutLocked(ActivityRecord r) {
5355 if (r == null || !r.hasProcess()) {
5356 return KEY_DISPATCHING_TIMEOUT_MS;
5357 }
5358 return getInputDispatchingTimeoutLocked(r.app);
5359 }
5360
5361 private static long getInputDispatchingTimeoutLocked(WindowProcessController r) {
Wale Ogunwale51cc98a2018-10-15 10:41:05 -07005362 return r != null ? r.getInputDispatchingTimeout() : KEY_DISPATCHING_TIMEOUT_MS;
Wale Ogunwale906f9c62018-07-23 11:23:44 -07005363 }
5364
Wale Ogunwalef6733932018-06-27 05:14:34 -07005365 /**
5366 * Decide based on the configuration whether we should show the ANR,
5367 * crash, etc dialogs. The idea is that if there is no affordance to
5368 * press the on-screen buttons, or the user experience would be more
5369 * greatly impacted than the crash itself, we shouldn't show the dialog.
5370 *
5371 * A thought: SystemUI might also want to get told about this, the Power
5372 * dialog / global actions also might want different behaviors.
5373 */
5374 private void updateShouldShowDialogsLocked(Configuration config) {
5375 final boolean inputMethodExists = !(config.keyboard == Configuration.KEYBOARD_NOKEYS
5376 && config.touchscreen == Configuration.TOUCHSCREEN_NOTOUCH
5377 && config.navigation == Configuration.NAVIGATION_NONAV);
Wale Ogunwalef6733932018-06-27 05:14:34 -07005378 final boolean hideDialogsSet = Settings.Global.getInt(mContext.getContentResolver(),
5379 HIDE_ERROR_DIALOGS, 0) != 0;
Yuncheol Heo5d9b2712020-04-16 17:31:32 -07005380 mShowDialogs = inputMethodExists
5381 && ActivityTaskManager.currentUiModeSupportsErrorDialogs(mContext)
5382 && !hideDialogsSet;
Wale Ogunwalef6733932018-06-27 05:14:34 -07005383 }
5384
5385 private void updateFontScaleIfNeeded(@UserIdInt int userId) {
5386 final float scaleFactor = Settings.System.getFloatForUser(mContext.getContentResolver(),
5387 FONT_SCALE, 1.0f, userId);
5388
Riddle Hsu8419e4b2019-09-18 23:28:01 +08005389 synchronized (mGlobalLock) {
Wale Ogunwalef6733932018-06-27 05:14:34 -07005390 if (getGlobalConfiguration().fontScale == scaleFactor) {
5391 return;
5392 }
5393
5394 final Configuration configuration
5395 = mWindowManager.computeNewConfiguration(DEFAULT_DISPLAY);
5396 configuration.fontScale = scaleFactor;
5397 updatePersistentConfiguration(configuration, userId);
5398 }
5399 }
5400
5401 // Actually is sleeping or shutting down or whatever else in the future
5402 // is an inactive state.
5403 boolean isSleepingOrShuttingDownLocked() {
5404 return isSleepingLocked() || mShuttingDown;
5405 }
5406
5407 boolean isSleepingLocked() {
5408 return mSleeping;
5409 }
5410
Riddle Hsu16567132018-08-16 21:37:47 +08005411 /** Update AMS states when an activity is resumed. */
Wale Ogunwalef6733932018-06-27 05:14:34 -07005412 void setResumedActivityUncheckLocked(ActivityRecord r, String reason) {
Louis Changcdec0802019-11-11 11:45:07 +08005413 final Task task = r.getTask();
Wale Ogunwalef6733932018-06-27 05:14:34 -07005414 if (task.isActivityTypeStandard()) {
5415 if (mCurAppTimeTracker != r.appTimeTracker) {
5416 // We are switching app tracking. Complete the current one.
5417 if (mCurAppTimeTracker != null) {
5418 mCurAppTimeTracker.stop();
5419 mH.obtainMessage(
5420 REPORT_TIME_TRACKER_MSG, mCurAppTimeTracker).sendToTarget();
Louis Chang149d5c82019-12-30 09:47:39 +08005421 mRootWindowContainer.clearOtherAppTimeTrackers(r.appTimeTracker);
Wale Ogunwalef6733932018-06-27 05:14:34 -07005422 mCurAppTimeTracker = null;
5423 }
5424 if (r.appTimeTracker != null) {
5425 mCurAppTimeTracker = r.appTimeTracker;
5426 startTimeTrackingFocusedActivityLocked();
5427 }
5428 } else {
5429 startTimeTrackingFocusedActivityLocked();
5430 }
5431 } else {
5432 r.appTimeTracker = null;
5433 }
5434 // TODO: VI Maybe r.task.voiceInteractor || r.voiceInteractor != null
5435 // TODO: Probably not, because we don't want to resume voice on switching
5436 // back to this activity
5437 if (task.voiceInteractor != null) {
5438 startRunningVoiceLocked(task.voiceSession, r.info.applicationInfo.uid);
5439 } else {
5440 finishRunningVoiceLocked();
5441
5442 if (mLastResumedActivity != null) {
5443 final IVoiceInteractionSession session;
5444
Louis Changcdec0802019-11-11 11:45:07 +08005445 final Task lastResumedActivityTask = mLastResumedActivity.getTask();
Wale Ogunwalef6733932018-06-27 05:14:34 -07005446 if (lastResumedActivityTask != null
5447 && lastResumedActivityTask.voiceSession != null) {
5448 session = lastResumedActivityTask.voiceSession;
5449 } else {
5450 session = mLastResumedActivity.voiceSession;
5451 }
5452
5453 if (session != null) {
5454 // We had been in a voice interaction session, but now focused has
5455 // move to something different. Just finish the session, we can't
5456 // return to it and retain the proper state and synchronization with
5457 // the voice interaction service.
5458 finishVoiceTask(session);
5459 }
5460 }
5461 }
5462
Wale Ogunwale8b19de92018-11-29 19:58:26 -08005463 if (mLastResumedActivity != null && r.mUserId != mLastResumedActivity.mUserId) {
5464 mAmInternal.sendForegroundProfileChanged(r.mUserId);
Wale Ogunwalef6733932018-06-27 05:14:34 -07005465 }
Bogyun Sonbfb64dc2019-12-09 17:50:24 +09005466 final Task prevTask = mLastResumedActivity != null ? mLastResumedActivity.getTask() : null;
5467
Wale Ogunwalef6733932018-06-27 05:14:34 -07005468 updateResumedAppTrace(r);
5469 mLastResumedActivity = r;
5470
Tiger Huang1e5b10a2018-07-30 20:19:51 +08005471 r.getDisplay().setFocusedApp(r, true);
Wale Ogunwalef6733932018-06-27 05:14:34 -07005472
Bogyun Sonbfb64dc2019-12-09 17:50:24 +09005473 if (prevTask == null || task != prevTask) {
5474 if (prevTask != null) {
5475 mTaskChangeNotificationController.notifyTaskFocusChanged(prevTask.mTaskId, false);
5476 }
5477 mTaskChangeNotificationController.notifyTaskFocusChanged(task.mTaskId, true);
5478 }
5479
Wale Ogunwalef6733932018-06-27 05:14:34 -07005480 applyUpdateLockStateLocked(r);
5481 applyUpdateVrModeLocked(r);
5482
Jeff Changd136e772019-11-05 20:33:52 +08005483 EventLogTags.writeWmSetResumedActivity(
Wale Ogunwale8b19de92018-11-29 19:58:26 -08005484 r == null ? -1 : r.mUserId,
Wale Ogunwalef6733932018-06-27 05:14:34 -07005485 r == null ? "NULL" : r.shortComponentName,
5486 reason);
5487 }
5488
5489 ActivityTaskManagerInternal.SleepToken acquireSleepToken(String tag, int displayId) {
5490 synchronized (mGlobalLock) {
Wale Ogunwaled32da472018-11-16 07:19:28 -08005491 final ActivityTaskManagerInternal.SleepToken token =
Louis Chang149d5c82019-12-30 09:47:39 +08005492 mRootWindowContainer.createSleepToken(tag, displayId);
Wale Ogunwalef6733932018-06-27 05:14:34 -07005493 updateSleepIfNeededLocked();
5494 return token;
5495 }
5496 }
5497
5498 void updateSleepIfNeededLocked() {
Louis Chang149d5c82019-12-30 09:47:39 +08005499 final boolean shouldSleep = !mRootWindowContainer.hasAwakeDisplay();
Wale Ogunwalef6733932018-06-27 05:14:34 -07005500 final boolean wasSleeping = mSleeping;
5501 boolean updateOomAdj = false;
5502
5503 if (!shouldSleep) {
5504 // If wasSleeping is true, we need to wake up activity manager state from when
5505 // we started sleeping. In either case, we need to apply the sleep tokens, which
5506 // will wake up stacks or put them to sleep as appropriate.
5507 if (wasSleeping) {
5508 mSleeping = false;
Muhammad Qureshi759f92f2020-01-28 10:41:55 -08005509 FrameworkStatsLog.write(FrameworkStatsLog.ACTIVITY_MANAGER_SLEEP_STATE_CHANGED,
5510 FrameworkStatsLog.ACTIVITY_MANAGER_SLEEP_STATE_CHANGED__STATE__AWAKE);
Wale Ogunwalef6733932018-06-27 05:14:34 -07005511 startTimeTrackingFocusedActivityLocked();
5512 mTopProcessState = ActivityManager.PROCESS_STATE_TOP;
Varun Shah98694fb2019-04-11 09:28:27 -07005513 Slog.d(TAG, "Top Process State changed to PROCESS_STATE_TOP");
Wale Ogunwalef6733932018-06-27 05:14:34 -07005514 mStackSupervisor.comeOutOfSleepIfNeededLocked();
5515 }
Louis Chang149d5c82019-12-30 09:47:39 +08005516 mRootWindowContainer.applySleepTokens(true /* applyToStacks */);
Wale Ogunwalef6733932018-06-27 05:14:34 -07005517 if (wasSleeping) {
5518 updateOomAdj = true;
5519 }
5520 } else if (!mSleeping && shouldSleep) {
5521 mSleeping = true;
Muhammad Qureshi759f92f2020-01-28 10:41:55 -08005522 FrameworkStatsLog.write(FrameworkStatsLog.ACTIVITY_MANAGER_SLEEP_STATE_CHANGED,
5523 FrameworkStatsLog.ACTIVITY_MANAGER_SLEEP_STATE_CHANGED__STATE__ASLEEP);
Wale Ogunwalef6733932018-06-27 05:14:34 -07005524 if (mCurAppTimeTracker != null) {
5525 mCurAppTimeTracker.stop();
5526 }
5527 mTopProcessState = ActivityManager.PROCESS_STATE_TOP_SLEEPING;
Varun Shah98694fb2019-04-11 09:28:27 -07005528 Slog.d(TAG, "Top Process State changed to PROCESS_STATE_TOP_SLEEPING");
Wale Ogunwalef6733932018-06-27 05:14:34 -07005529 mStackSupervisor.goingToSleepLocked();
5530 updateResumedAppTrace(null /* resumed */);
5531 updateOomAdj = true;
5532 }
5533 if (updateOomAdj) {
wilsonshih8d096d22019-08-01 17:46:14 +08005534 updateOomAdj();
Wale Ogunwalef6733932018-06-27 05:14:34 -07005535 }
5536 }
5537
5538 void updateOomAdj() {
Wale Ogunwalea38654f2019-11-17 20:37:15 -08005539 mH.removeCallbacks(mUpdateOomAdjRunnable);
5540 mH.post(mUpdateOomAdjRunnable);
Wale Ogunwalef6733932018-06-27 05:14:34 -07005541 }
5542
Wale Ogunwale53783742018-09-16 10:21:51 -07005543 void updateCpuStats() {
5544 mH.post(mAmInternal::updateCpuStats);
5545 }
5546
Hui Yu03d12402018-12-06 18:00:37 -08005547 void updateBatteryStats(ActivityRecord component, boolean resumed) {
5548 final Message m = PooledLambda.obtainMessage(ActivityManagerInternal::updateBatteryStats,
Wale Ogunwale8b19de92018-11-29 19:58:26 -08005549 mAmInternal, component.mActivityComponent, component.app.mUid, component.mUserId,
5550 resumed);
Wale Ogunwale53783742018-09-16 10:21:51 -07005551 mH.sendMessage(m);
5552 }
5553
Hui Yu03d12402018-12-06 18:00:37 -08005554 void updateActivityUsageStats(ActivityRecord activity, int event) {
Michael Wachenschwanz0b4ab1f2019-01-07 13:59:10 -08005555 ComponentName taskRoot = null;
Louis Changcdec0802019-11-11 11:45:07 +08005556 final Task task = activity.getTask();
Michael Wachenschwanz0b4ab1f2019-01-07 13:59:10 -08005557 if (task != null) {
5558 final ActivityRecord rootActivity = task.getRootActivity();
5559 if (rootActivity != null) {
5560 taskRoot = rootActivity.mActivityComponent;
5561 }
5562 }
5563
Hui Yu03d12402018-12-06 18:00:37 -08005564 final Message m = PooledLambda.obtainMessage(
5565 ActivityManagerInternal::updateActivityUsageStats, mAmInternal,
Michael Wachenschwanz0b4ab1f2019-01-07 13:59:10 -08005566 activity.mActivityComponent, activity.mUserId, event, activity.appToken, taskRoot);
Hui Yu03d12402018-12-06 18:00:37 -08005567 mH.sendMessage(m);
5568 }
5569
Riddle Hsu32dbdca2019-05-17 23:10:16 -06005570 void startProcessAsync(ActivityRecord activity, boolean knownToBeDead, boolean isTop,
5571 String hostingType) {
5572 try {
Riddle Hsu2ca561b2019-10-08 21:58:58 +08005573 if (Trace.isTagEnabled(TRACE_TAG_WINDOW_MANAGER)) {
5574 Trace.traceBegin(TRACE_TAG_WINDOW_MANAGER, "dispatchingStartProcess:"
Riddle Hsu32dbdca2019-05-17 23:10:16 -06005575 + activity.processName);
5576 }
5577 // Post message to start process to avoid possible deadlock of calling into AMS with the
5578 // ATMS lock held.
5579 final Message m = PooledLambda.obtainMessage(ActivityManagerInternal::startProcess,
5580 mAmInternal, activity.processName, activity.info.applicationInfo, knownToBeDead,
5581 isTop, hostingType, activity.intent.getComponent());
5582 mH.sendMessage(m);
5583 } finally {
Riddle Hsu2ca561b2019-10-08 21:58:58 +08005584 Trace.traceEnd(TRACE_TAG_WINDOW_MANAGER);
Riddle Hsu32dbdca2019-05-17 23:10:16 -06005585 }
5586 }
5587
Wale Ogunwale53783742018-09-16 10:21:51 -07005588 void setBooting(boolean booting) {
5589 mAmInternal.setBooting(booting);
5590 }
5591
5592 boolean isBooting() {
5593 return mAmInternal.isBooting();
5594 }
5595
5596 void setBooted(boolean booted) {
5597 mAmInternal.setBooted(booted);
5598 }
5599
5600 boolean isBooted() {
5601 return mAmInternal.isBooted();
5602 }
5603
5604 void postFinishBooting(boolean finishBooting, boolean enableScreen) {
5605 mH.post(() -> {
5606 if (finishBooting) {
5607 mAmInternal.finishBooting();
5608 }
5609 if (enableScreen) {
5610 mInternal.enableScreenAfterBoot(isBooted());
5611 }
5612 });
5613 }
5614
5615 void setHeavyWeightProcess(ActivityRecord root) {
5616 mHeavyWeightProcess = root.app;
5617 final Message m = PooledLambda.obtainMessage(
5618 ActivityTaskManagerService::postHeavyWeightProcessNotification, this,
Wale Ogunwale8b19de92018-11-29 19:58:26 -08005619 root.app, root.intent, root.mUserId);
Wale Ogunwale53783742018-09-16 10:21:51 -07005620 mH.sendMessage(m);
5621 }
5622
5623 void clearHeavyWeightProcessIfEquals(WindowProcessController proc) {
5624 if (mHeavyWeightProcess == null || mHeavyWeightProcess != proc) {
5625 return;
5626 }
5627
5628 mHeavyWeightProcess = null;
5629 final Message m = PooledLambda.obtainMessage(
5630 ActivityTaskManagerService::cancelHeavyWeightProcessNotification, this,
5631 proc.mUserId);
5632 mH.sendMessage(m);
5633 }
5634
5635 private void cancelHeavyWeightProcessNotification(int userId) {
5636 final INotificationManager inm = NotificationManager.getService();
5637 if (inm == null) {
5638 return;
5639 }
5640 try {
Julia Reynoldse4a47dd2019-06-07 13:40:59 -04005641 inm.cancelNotificationWithTag("android", "android", null,
Wale Ogunwale53783742018-09-16 10:21:51 -07005642 SystemMessage.NOTE_HEAVY_WEIGHT_NOTIFICATION, userId);
5643 } catch (RuntimeException e) {
5644 Slog.w(TAG, "Error canceling notification for service", e);
5645 } catch (RemoteException e) {
5646 }
5647
5648 }
5649
5650 private void postHeavyWeightProcessNotification(
5651 WindowProcessController proc, Intent intent, int userId) {
5652 if (proc == null) {
5653 return;
5654 }
5655
5656 final INotificationManager inm = NotificationManager.getService();
5657 if (inm == null) {
5658 return;
5659 }
5660
5661 try {
5662 Context context = mContext.createPackageContext(proc.mInfo.packageName, 0);
5663 String text = mContext.getString(R.string.heavy_weight_notification,
5664 context.getApplicationInfo().loadLabel(context.getPackageManager()));
5665 Notification notification =
5666 new Notification.Builder(context,
5667 SystemNotificationChannels.HEAVY_WEIGHT_APP)
5668 .setSmallIcon(com.android.internal.R.drawable.stat_sys_adb)
5669 .setWhen(0)
5670 .setOngoing(true)
5671 .setTicker(text)
5672 .setColor(mContext.getColor(
5673 com.android.internal.R.color.system_notification_accent_color))
5674 .setContentTitle(text)
5675 .setContentText(
5676 mContext.getText(R.string.heavy_weight_notification_detail))
5677 .setContentIntent(PendingIntent.getActivityAsUser(mContext, 0,
5678 intent, PendingIntent.FLAG_CANCEL_CURRENT, null,
5679 new UserHandle(userId)))
5680 .build();
5681 try {
5682 inm.enqueueNotificationWithTag("android", "android", null,
5683 SystemMessage.NOTE_HEAVY_WEIGHT_NOTIFICATION, notification, userId);
5684 } catch (RuntimeException e) {
5685 Slog.w(TAG, "Error showing notification for heavy-weight app", e);
5686 } catch (RemoteException e) {
5687 }
5688 } catch (PackageManager.NameNotFoundException e) {
5689 Slog.w(TAG, "Unable to create context for heavy notification", e);
5690 }
5691
5692 }
5693
Philip P. Moltmannee295092020-02-10 08:46:26 -08005694 IIntentSender getIntentSenderLocked(int type, String packageName, String featureId,
5695 int callingUid, int userId, IBinder token, String resultWho, int requestCode,
5696 Intent[] intents, String[] resolvedTypes, int flags, Bundle bOptions) {
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07005697
5698 ActivityRecord activity = null;
5699 if (type == ActivityManager.INTENT_SENDER_ACTIVITY_RESULT) {
5700 activity = ActivityRecord.isInStackLocked(token);
5701 if (activity == null) {
5702 Slog.w(TAG, "Failed createPendingResult: activity " + token + " not in any stack");
5703 return null;
5704 }
5705 if (activity.finishing) {
5706 Slog.w(TAG, "Failed createPendingResult: activity " + activity + " is finishing");
5707 return null;
5708 }
5709 }
5710
5711 final PendingIntentRecord rec = mPendingIntentController.getIntentSender(type, packageName,
Philip P. Moltmannee295092020-02-10 08:46:26 -08005712 featureId, callingUid, userId, token, resultWho, requestCode, intents,
5713 resolvedTypes, flags, bOptions);
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07005714 final boolean noCreate = (flags & PendingIntent.FLAG_NO_CREATE) != 0;
5715 if (noCreate) {
5716 return rec;
5717 }
5718 if (type == ActivityManager.INTENT_SENDER_ACTIVITY_RESULT) {
5719 if (activity.pendingResults == null) {
5720 activity.pendingResults = new HashSet<>();
5721 }
5722 activity.pendingResults.add(rec.ref);
5723 }
5724 return rec;
5725 }
5726
Andrii Kulian52d255c2018-07-13 11:32:19 -07005727 // TODO(b/111541062): Update app time tracking to make it aware of multiple resumed activities
Wale Ogunwalef6733932018-06-27 05:14:34 -07005728 private void startTimeTrackingFocusedActivityLocked() {
Louis Chang149d5c82019-12-30 09:47:39 +08005729 final ActivityRecord resumedActivity = mRootWindowContainer.getTopResumedActivity();
Wale Ogunwalef6733932018-06-27 05:14:34 -07005730 if (!mSleeping && mCurAppTimeTracker != null && resumedActivity != null) {
5731 mCurAppTimeTracker.start(resumedActivity.packageName);
5732 }
5733 }
5734
5735 private void updateResumedAppTrace(@Nullable ActivityRecord resumed) {
5736 if (mTracedResumedActivity != null) {
Riddle Hsu2ca561b2019-10-08 21:58:58 +08005737 Trace.asyncTraceEnd(TRACE_TAG_WINDOW_MANAGER,
Wale Ogunwalef6733932018-06-27 05:14:34 -07005738 constructResumedTraceName(mTracedResumedActivity.packageName), 0);
5739 }
5740 if (resumed != null) {
Riddle Hsu2ca561b2019-10-08 21:58:58 +08005741 Trace.asyncTraceBegin(TRACE_TAG_WINDOW_MANAGER,
Wale Ogunwalef6733932018-06-27 05:14:34 -07005742 constructResumedTraceName(resumed.packageName), 0);
5743 }
5744 mTracedResumedActivity = resumed;
5745 }
5746
5747 private String constructResumedTraceName(String packageName) {
5748 return "focused app: " + packageName;
5749 }
5750
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005751 /** Applies latest configuration and/or visibility updates if needed. */
Shivam Agrawal1d3db652019-07-01 15:26:11 -07005752 boolean ensureConfigAndVisibilityAfterUpdate(ActivityRecord starting, int changes) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005753 boolean kept = true;
Louis Chang149d5c82019-12-30 09:47:39 +08005754 final ActivityStack mainStack = mRootWindowContainer.getTopDisplayFocusedStack();
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005755 // mainStack is null during startup.
5756 if (mainStack != null) {
5757 if (changes != 0 && starting == null) {
5758 // If the configuration changed, and the caller is not already
5759 // in the process of starting an activity, then find the top
5760 // activity to check if its configuration needs to change.
Wale Ogunwale85fb19a2019-12-05 10:41:05 +09005761 starting = mainStack.topRunningActivity();
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005762 }
5763
5764 if (starting != null) {
5765 kept = starting.ensureActivityConfiguration(changes,
5766 false /* preserveWindow */);
5767 // And we need to make sure at this point that all other activities
5768 // are made visible with the correct configuration.
Louis Chang149d5c82019-12-30 09:47:39 +08005769 mRootWindowContainer.ensureActivitiesVisible(starting, changes,
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005770 !PRESERVE_WINDOWS);
5771 }
5772 }
5773
5774 return kept;
5775 }
5776
Wale Ogunwale906f9c62018-07-23 11:23:44 -07005777 void scheduleAppGcsLocked() {
5778 mH.post(() -> mAmInternal.scheduleAppGcs());
5779 }
5780
Wale Ogunwale53783742018-09-16 10:21:51 -07005781 CompatibilityInfo compatibilityInfoForPackageLocked(ApplicationInfo ai) {
5782 return mCompatModePackages.compatibilityInfoForPackageLocked(ai);
5783 }
5784
Wale Ogunwale906f9c62018-07-23 11:23:44 -07005785 /**
5786 * Returns the PackageManager. Used by classes hosted by {@link ActivityTaskManagerService}. The
5787 * PackageManager could be unavailable at construction time and therefore needs to be accessed
5788 * on demand.
5789 */
5790 IPackageManager getPackageManager() {
5791 return AppGlobals.getPackageManager();
5792 }
5793
5794 PackageManagerInternal getPackageManagerInternalLocked() {
5795 if (mPmInternal == null) {
5796 mPmInternal = LocalServices.getService(PackageManagerInternal.class);
5797 }
5798 return mPmInternal;
5799 }
5800
Darryl L Johnsona0982222020-02-18 18:21:51 -08005801 ComponentName getSysUiServiceComponentLocked() {
5802 if (mSysUiServiceComponent == null) {
5803 final PackageManagerInternal pm = getPackageManagerInternalLocked();
5804 mSysUiServiceComponent = pm.getSystemUiServiceComponent();
5805 }
5806 return mSysUiServiceComponent;
5807 }
5808
Hai Zhangf4da9be2019-05-01 13:46:06 +08005809 PermissionPolicyInternal getPermissionPolicyInternal() {
5810 if (mPermissionPolicyInternal == null) {
5811 mPermissionPolicyInternal = LocalServices.getService(PermissionPolicyInternal.class);
5812 }
5813 return mPermissionPolicyInternal;
5814 }
5815
Wale Ogunwale008163e2018-07-23 23:11:08 -07005816 AppWarnings getAppWarningsLocked() {
5817 return mAppWarnings;
5818 }
5819
Wale Ogunwale214f3482018-10-04 11:00:47 -07005820 Intent getHomeIntent() {
5821 Intent intent = new Intent(mTopAction, mTopData != null ? Uri.parse(mTopData) : null);
5822 intent.setComponent(mTopComponent);
5823 intent.addFlags(Intent.FLAG_DEBUG_TRIAGED_MISSING);
5824 if (mFactoryTest != FactoryTest.FACTORY_TEST_LOW_LEVEL) {
5825 intent.addCategory(Intent.CATEGORY_HOME);
5826 }
5827 return intent;
5828 }
5829
Chilun2ef71f72018-11-16 17:57:15 +08005830 /**
5831 * Return the intent set with {@link Intent#CATEGORY_SECONDARY_HOME} to resolve secondary home
5832 * activities.
5833 *
Chilun939b05c2020-02-19 14:50:59 +08005834 * @param preferredPackage Specify a preferred package name, otherwise use the package name
5835 * defined in config_secondaryHomePackage.
Chilun2ef71f72018-11-16 17:57:15 +08005836 * @return the intent set with {@link Intent#CATEGORY_SECONDARY_HOME}
5837 */
5838 Intent getSecondaryHomeIntent(String preferredPackage) {
5839 final Intent intent = new Intent(mTopAction, mTopData != null ? Uri.parse(mTopData) : null);
Keun young Park340546a2019-05-06 16:27:44 -07005840 final boolean useSystemProvidedLauncher = mContext.getResources().getBoolean(
5841 com.android.internal.R.bool.config_useSystemProvidedLauncherForSecondary);
5842 if (preferredPackage == null || useSystemProvidedLauncher) {
Chilun939b05c2020-02-19 14:50:59 +08005843 // Using the package name stored in config if no preferred package name or forced.
5844 final String secondaryHomePackage = mContext.getResources().getString(
5845 com.android.internal.R.string.config_secondaryHomePackage);
5846 intent.setPackage(secondaryHomePackage);
Chilun2ef71f72018-11-16 17:57:15 +08005847 } else {
5848 intent.setPackage(preferredPackage);
5849 }
5850 intent.addFlags(Intent.FLAG_DEBUG_TRIAGED_MISSING);
5851 if (mFactoryTest != FactoryTest.FACTORY_TEST_LOW_LEVEL) {
5852 intent.addCategory(Intent.CATEGORY_SECONDARY_HOME);
5853 }
5854 return intent;
5855 }
5856
Wale Ogunwale214f3482018-10-04 11:00:47 -07005857 ApplicationInfo getAppInfoForUser(ApplicationInfo info, int userId) {
5858 if (info == null) return null;
5859 ApplicationInfo newInfo = new ApplicationInfo(info);
5860 newInfo.initForUser(userId);
5861 return newInfo;
5862 }
5863
Wale Ogunwale9c103022018-10-18 07:44:54 -07005864 WindowProcessController getProcessController(String processName, int uid) {
Wale Ogunwale214f3482018-10-04 11:00:47 -07005865 if (uid == SYSTEM_UID) {
5866 // The system gets to run in any process. If there are multiple processes with the same
5867 // uid, just pick the first (this should never happen).
5868 final SparseArray<WindowProcessController> procs =
5869 mProcessNames.getMap().get(processName);
5870 if (procs == null) return null;
5871 final int procCount = procs.size();
5872 for (int i = 0; i < procCount; i++) {
5873 final int procUid = procs.keyAt(i);
5874 if (UserHandle.isApp(procUid) || !UserHandle.isSameUser(procUid, uid)) {
5875 // Don't use an app process or different user process for system component.
5876 continue;
5877 }
5878 return procs.valueAt(i);
5879 }
5880 }
5881
5882 return mProcessNames.get(processName, uid);
5883 }
5884
Wale Ogunwale342fbe92018-10-09 08:44:10 -07005885 WindowProcessController getProcessController(IApplicationThread thread) {
5886 if (thread == null) {
5887 return null;
5888 }
5889
5890 final IBinder threadBinder = thread.asBinder();
5891 final ArrayMap<String, SparseArray<WindowProcessController>> pmap = mProcessNames.getMap();
5892 for (int i = pmap.size()-1; i >= 0; i--) {
5893 final SparseArray<WindowProcessController> procs = pmap.valueAt(i);
5894 for (int j = procs.size() - 1; j >= 0; j--) {
5895 final WindowProcessController proc = procs.valueAt(j);
5896 if (proc.hasThread() && proc.getThread().asBinder() == threadBinder) {
5897 return proc;
5898 }
5899 }
5900 }
5901
5902 return null;
5903 }
5904
Michal Karpinski9cbb20b2019-02-05 17:31:50 +00005905 WindowProcessController getProcessController(int pid, int uid) {
Michal Karpinski2e0aad22019-04-12 16:22:55 +01005906 final WindowProcessController proc = mProcessMap.getProcess(pid);
Yunfan Chen8546b212019-04-01 15:34:44 +09005907 if (proc == null) return null;
5908 if (UserHandle.isApp(uid) && proc.mUid == uid) {
5909 return proc;
Michal Karpinski9cbb20b2019-02-05 17:31:50 +00005910 }
5911 return null;
5912 }
5913
Riddle Hsua0536432019-02-16 00:38:59 +08005914 int getUidState(int uid) {
5915 return mActiveUids.getUidState(uid);
Wale Ogunwalebff2df42018-10-18 17:09:19 -07005916 }
5917
Michal Karpinskicc88d7e2019-01-24 15:32:12 +00005918 boolean isUidForeground(int uid) {
Alan Stokeseea8d3e2019-04-10 17:37:25 +01005919 // A uid is considered to be foreground if it has a visible non-toast window.
5920 return mWindowManager.mRoot.isAnyNonToastWindowVisibleForUid(uid);
Michal Karpinskicc88d7e2019-01-24 15:32:12 +00005921 }
5922
Ricky Wai96f5c352019-04-10 18:40:17 +01005923 boolean isDeviceOwner(int uid) {
5924 return uid >= 0 && mDeviceOwnerUid == uid;
Michal Karpinski4026cae2019-02-12 11:51:47 +00005925 }
5926
Ricky Wai96f5c352019-04-10 18:40:17 +01005927 void setDeviceOwnerUid(int uid) {
5928 mDeviceOwnerUid = uid;
Michal Karpinski4026cae2019-02-12 11:51:47 +00005929 }
5930
Wale Ogunwale9de19442018-10-18 19:05:03 -07005931 /**
5932 * @return whitelist tag for a uid from mPendingTempWhitelist, null if not currently on
5933 * the whitelist
5934 */
5935 String getPendingTempWhitelistTagForUidLocked(int uid) {
5936 return mPendingTempWhitelist.get(uid);
5937 }
5938
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07005939 void logAppTooSlow(WindowProcessController app, long startTime, String msg) {
5940 if (true || Build.IS_USER) {
5941 return;
5942 }
5943
5944 StrictMode.ThreadPolicy oldPolicy = StrictMode.allowThreadDiskReads();
5945 StrictMode.allowThreadDiskWrites();
5946 try {
5947 File tracesDir = new File("/data/anr");
5948 File tracesFile = null;
5949 try {
5950 tracesFile = File.createTempFile("app_slow", null, tracesDir);
5951
5952 StringBuilder sb = new StringBuilder();
Neil Fuller97746812019-08-19 14:20:50 +01005953 String timeString =
5954 TimeMigrationUtils.formatMillisWithFixedFormat(System.currentTimeMillis());
5955 sb.append(timeString);
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07005956 sb.append(": ");
5957 TimeUtils.formatDuration(SystemClock.uptimeMillis()-startTime, sb);
5958 sb.append(" since ");
5959 sb.append(msg);
5960 FileOutputStream fos = new FileOutputStream(tracesFile);
5961 fos.write(sb.toString().getBytes());
5962 if (app == null) {
5963 fos.write("\n*** No application process!".getBytes());
5964 }
5965 fos.close();
5966 FileUtils.setPermissions(tracesFile.getPath(), 0666, -1, -1); // -rw-rw-rw-
5967 } catch (IOException e) {
5968 Slog.w(TAG, "Unable to prepare slow app traces file: " + tracesFile, e);
5969 return;
5970 }
5971
5972 if (app != null && app.getPid() > 0) {
5973 ArrayList<Integer> firstPids = new ArrayList<Integer>();
5974 firstPids.add(app.getPid());
5975 dumpStackTraces(tracesFile.getAbsolutePath(), firstPids, null, null);
5976 }
5977
5978 File lastTracesFile = null;
5979 File curTracesFile = null;
5980 for (int i=9; i>=0; i--) {
5981 String name = String.format(Locale.US, "slow%02d.txt", i);
5982 curTracesFile = new File(tracesDir, name);
5983 if (curTracesFile.exists()) {
5984 if (lastTracesFile != null) {
5985 curTracesFile.renameTo(lastTracesFile);
5986 } else {
5987 curTracesFile.delete();
5988 }
5989 }
5990 lastTracesFile = curTracesFile;
5991 }
5992 tracesFile.renameTo(curTracesFile);
5993 } finally {
5994 StrictMode.setThreadPolicy(oldPolicy);
5995 }
5996 }
5997
Michal Karpinskida34cd42019-04-02 19:46:52 +01005998 boolean isAssociatedCompanionApp(int userId, int uid) {
5999 final Set<Integer> allUids = mCompanionAppUidsMap.get(userId);
6000 if (allUids == null) {
Ricky Wai2452e2d2019-03-18 19:19:08 +00006001 return false;
6002 }
Michal Karpinskida34cd42019-04-02 19:46:52 +01006003 return allUids.contains(uid);
Ricky Wai2452e2d2019-03-18 19:19:08 +00006004 }
6005
Issei Suzuki734bc942019-06-05 13:59:52 +02006006 void notifySingleTaskDisplayEmpty(int displayId) {
6007 mTaskChangeNotificationController.notifySingleTaskDisplayEmpty(displayId);
6008 }
6009
Wale Ogunwaled0412b32018-05-08 09:25:50 -07006010 final class H extends Handler {
Wale Ogunwalef6733932018-06-27 05:14:34 -07006011 static final int REPORT_TIME_TRACKER_MSG = 1;
Alison Cichowlas3e340502018-08-07 17:15:01 -04006012
6013
Wale Ogunwale98875612018-10-12 07:53:02 -07006014 static final int FIRST_ACTIVITY_STACK_MSG = 100;
6015 static final int FIRST_SUPERVISOR_STACK_MSG = 200;
Wale Ogunwalef6733932018-06-27 05:14:34 -07006016
Riddle Hsud93a6c42018-11-29 21:50:06 +08006017 H(Looper looper) {
6018 super(looper);
Wale Ogunwaled0412b32018-05-08 09:25:50 -07006019 }
Wale Ogunwalef6733932018-06-27 05:14:34 -07006020
6021 @Override
6022 public void handleMessage(Message msg) {
6023 switch (msg.what) {
6024 case REPORT_TIME_TRACKER_MSG: {
6025 AppTimeTracker tracker = (AppTimeTracker) msg.obj;
6026 tracker.deliverResult(mContext);
6027 } break;
6028 }
6029 }
Wale Ogunwaled0412b32018-05-08 09:25:50 -07006030 }
6031
Wale Ogunwalea6191b42018-05-09 07:41:32 -07006032 final class UiHandler extends Handler {
Wale Ogunwalef6733932018-06-27 05:14:34 -07006033 static final int DISMISS_DIALOG_UI_MSG = 1;
Wale Ogunwalea6191b42018-05-09 07:41:32 -07006034
6035 public UiHandler() {
Wale Ogunwale1f5e53d2018-11-05 05:12:46 -08006036 super(UiThread.get().getLooper(), null, true);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07006037 }
Wale Ogunwalef6733932018-06-27 05:14:34 -07006038
6039 @Override
6040 public void handleMessage(Message msg) {
6041 switch (msg.what) {
6042 case DISMISS_DIALOG_UI_MSG: {
6043 final Dialog d = (Dialog) msg.obj;
6044 d.dismiss();
6045 break;
6046 }
6047 }
6048 }
Wale Ogunwalea6191b42018-05-09 07:41:32 -07006049 }
6050
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006051 final class LocalService extends ActivityTaskManagerInternal {
6052 @Override
6053 public SleepToken acquireSleepToken(String tag, int displayId) {
Daulet Zhanguzinc6c641f2020-01-02 17:18:30 +00006054 Objects.requireNonNull(tag);
Wale Ogunwalef6733932018-06-27 05:14:34 -07006055 return ActivityTaskManagerService.this.acquireSleepToken(tag, displayId);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006056 }
6057
6058 @Override
6059 public ComponentName getHomeActivityForUser(int userId) {
6060 synchronized (mGlobalLock) {
Wale Ogunwaled32da472018-11-16 07:19:28 -08006061 final ActivityRecord homeActivity =
Louis Chang149d5c82019-12-30 09:47:39 +08006062 mRootWindowContainer.getDefaultDisplayHomeActivityForUser(userId);
Wale Ogunwale8b19de92018-11-29 19:58:26 -08006063 return homeActivity == null ? null : homeActivity.mActivityComponent;
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006064 }
6065 }
6066
6067 @Override
6068 public void onLocalVoiceInteractionStarted(IBinder activity,
6069 IVoiceInteractionSession voiceSession, IVoiceInteractor voiceInteractor) {
6070 synchronized (mGlobalLock) {
Wale Ogunwalef6733932018-06-27 05:14:34 -07006071 onLocalVoiceInteractionStartedLocked(activity, voiceSession, voiceInteractor);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006072 }
6073 }
6074
6075 @Override
Issei Suzukicac2a502019-04-16 16:52:50 +02006076 public void notifySingleTaskDisplayDrawn(int displayId) {
6077 mTaskChangeNotificationController.notifySingleTaskDisplayDrawn(displayId);
6078 }
6079
6080 @Override
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006081 public List<IBinder> getTopVisibleActivities() {
6082 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08006083 return mRootWindowContainer.getTopVisibleActivities();
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006084 }
6085 }
6086
6087 @Override
Bernardo Rufinoe6cb3102020-03-06 20:33:11 +00006088 public boolean hasResumedActivity(int uid) {
6089 synchronized (mGlobalLock) {
6090 final ArraySet<WindowProcessController> processes = mProcessMap.getProcesses(uid);
6091 for (int i = 0, n = processes.size(); i < n; i++) {
6092 final WindowProcessController process = processes.valueAt(i);
6093 if (process.hasResumedActivity()) {
6094 return true;
6095 }
6096 }
6097 }
6098 return false;
6099 }
6100
6101 @Override
Philip P. Moltmannee295092020-02-10 08:46:26 -08006102 public int startActivitiesAsPackage(String packageName, @Nullable String featureId,
6103 int userId, Intent[] intents, Bundle bOptions) {
Daulet Zhanguzinc6c641f2020-01-02 17:18:30 +00006104 Objects.requireNonNull(intents, "intents");
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006105 final String[] resolvedTypes = new String[intents.length];
6106
6107 // UID of the package on user userId.
6108 // "= 0" is needed because otherwise catch(RemoteException) would make it look like
6109 // packageUid may not be initialized.
6110 int packageUid = 0;
6111 final long ident = Binder.clearCallingIdentity();
6112
6113 try {
6114 for (int i = 0; i < intents.length; i++) {
6115 resolvedTypes[i] =
6116 intents[i].resolveTypeIfNeeded(mContext.getContentResolver());
6117 }
6118
6119 packageUid = AppGlobals.getPackageManager().getPackageUid(
6120 packageName, PackageManager.MATCH_DEBUG_TRIAGED_MISSING, userId);
6121 } catch (RemoteException e) {
6122 // Shouldn't happen.
6123 } finally {
6124 Binder.restoreCallingIdentity(ident);
6125 }
6126
Riddle Hsu591bf612019-02-14 17:55:31 +08006127 return getActivityStartController().startActivitiesInPackage(
Philip P. Moltmannee295092020-02-10 08:46:26 -08006128 packageUid, packageName, featureId,
Riddle Hsu591bf612019-02-14 17:55:31 +08006129 intents, resolvedTypes, null /* resultTo */,
6130 SafeActivityOptions.fromBundle(bOptions), userId,
6131 false /* validateIncomingUser */, null /* originatingPendingIntent */,
6132 false /* allowBackgroundActivityStart */);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006133 }
6134
6135 @Override
Michal Karpinski84d9ebd2019-01-17 18:28:59 +00006136 public int startActivitiesInPackage(int uid, int realCallingPid, int realCallingUid,
Philip P. Moltmannee295092020-02-10 08:46:26 -08006137 String callingPackage, @Nullable String callingFeatureId, Intent[] intents,
6138 String[] resolvedTypes, IBinder resultTo, SafeActivityOptions options, int userId,
6139 boolean validateIncomingUser, PendingIntentRecord originatingPendingIntent,
Michal Karpinskiac116df2018-12-10 17:51:42 +00006140 boolean allowBackgroundActivityStart) {
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07006141 assertPackageMatchesCallingUid(callingPackage);
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006142 synchronized (mGlobalLock) {
Michal Karpinski84d9ebd2019-01-17 18:28:59 +00006143 return getActivityStartController().startActivitiesInPackage(uid, realCallingPid,
Philip P. Moltmannee295092020-02-10 08:46:26 -08006144 realCallingUid, callingPackage, callingFeatureId, intents, resolvedTypes,
6145 resultTo, options, userId, validateIncomingUser, originatingPendingIntent,
Michal Karpinski84d9ebd2019-01-17 18:28:59 +00006146 allowBackgroundActivityStart);
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006147 }
6148 }
6149
6150 @Override
6151 public int startActivityInPackage(int uid, int realCallingPid, int realCallingUid,
Philip P. Moltmannee295092020-02-10 08:46:26 -08006152 String callingPackage, @Nullable String callingFeatureId, Intent intent,
6153 String resolvedType, IBinder resultTo, String resultWho, int requestCode,
6154 int startFlags, SafeActivityOptions options, int userId, Task inTask, String reason,
6155 boolean validateIncomingUser, PendingIntentRecord originatingPendingIntent,
Michal Karpinskiac116df2018-12-10 17:51:42 +00006156 boolean allowBackgroundActivityStart) {
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07006157 assertPackageMatchesCallingUid(callingPackage);
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006158 synchronized (mGlobalLock) {
6159 return getActivityStartController().startActivityInPackage(uid, realCallingPid,
Philip P. Moltmannee295092020-02-10 08:46:26 -08006160 realCallingUid, callingPackage, callingFeatureId, intent, resolvedType,
6161 resultTo, resultWho, requestCode, startFlags, options, userId, inTask,
6162 reason, validateIncomingUser, originatingPendingIntent,
Michal Karpinskiac116df2018-12-10 17:51:42 +00006163 allowBackgroundActivityStart);
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006164 }
6165 }
6166
6167 @Override
Philip P. Moltmannee295092020-02-10 08:46:26 -08006168 public int startActivityAsUser(IApplicationThread caller, String callerPackage,
Alex Kershaw16406c32020-02-17 12:28:53 +00006169 @Nullable String callerFeatureId, Intent intent, @Nullable IBinder resultTo,
6170 int startFlags, Bundle options, int userId) {
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006171 return ActivityTaskManagerService.this.startActivityAsUser(
Philip P. Moltmannee295092020-02-10 08:46:26 -08006172 caller, callerPackage, callerFeatureId, intent,
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006173 intent.resolveTypeIfNeeded(mContext.getContentResolver()),
Alex Kershaw16406c32020-02-17 12:28:53 +00006174 resultTo, null, 0, startFlags, null, options, userId,
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006175 false /*validateIncomingUser*/);
6176 }
6177
6178 @Override
lumark588a3e82018-07-20 18:53:54 +08006179 public void notifyKeyguardFlagsChanged(@Nullable Runnable callback, int displayId) {
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006180 synchronized (mGlobalLock) {
6181
6182 // We might change the visibilities here, so prepare an empty app transition which
6183 // might be overridden later if we actually change visibilities.
Louis Chang677921f2019-12-06 16:44:24 +08006184 final DisplayContent displayContent =
Louis Chang149d5c82019-12-30 09:47:39 +08006185 mRootWindowContainer.getDisplayContent(displayId);
Louis Chang677921f2019-12-06 16:44:24 +08006186 if (displayContent == null) {
lumark52ea28e2018-11-09 17:30:47 +08006187 return;
6188 }
Louis Chang677921f2019-12-06 16:44:24 +08006189 final DisplayContent dc = displayContent.mDisplayContent;
Wale Ogunwale3a256e62018-12-06 14:41:18 -08006190 final boolean wasTransitionSet =
6191 dc.mAppTransition.getAppTransition() != TRANSIT_NONE;
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006192 if (!wasTransitionSet) {
Wale Ogunwale3a256e62018-12-06 14:41:18 -08006193 dc.prepareAppTransition(TRANSIT_NONE, false /* alwaysKeepCurrent */);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006194 }
Louis Chang149d5c82019-12-30 09:47:39 +08006195 mRootWindowContainer.ensureActivitiesVisible(null, 0, !PRESERVE_WINDOWS);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006196
6197 // If there was a transition set already we don't want to interfere with it as we
6198 // might be starting it too early.
6199 if (!wasTransitionSet) {
Wale Ogunwale3a256e62018-12-06 14:41:18 -08006200 dc.executeAppTransition();
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006201 }
6202 }
6203 if (callback != null) {
6204 callback.run();
6205 }
6206 }
6207
6208 @Override
6209 public void notifyKeyguardTrustedChanged() {
6210 synchronized (mGlobalLock) {
Wale Ogunwaled0412b32018-05-08 09:25:50 -07006211 if (mKeyguardController.isKeyguardShowing(DEFAULT_DISPLAY)) {
Louis Chang149d5c82019-12-30 09:47:39 +08006212 mRootWindowContainer.ensureActivitiesVisible(null, 0, !PRESERVE_WINDOWS);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006213 }
6214 }
6215 }
6216
6217 /**
6218 * Called after virtual display Id is updated by
6219 * {@link com.android.server.vr.Vr2dDisplay} with a specific
6220 * {@param vrVr2dDisplayId}.
6221 */
6222 @Override
6223 public void setVr2dDisplayId(int vr2dDisplayId) {
6224 if (DEBUG_STACK) Slog.d(TAG, "setVr2dDisplayId called for: " + vr2dDisplayId);
6225 synchronized (mGlobalLock) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07006226 mVr2dDisplayId = vr2dDisplayId;
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006227 }
6228 }
6229
6230 @Override
6231 public void setFocusedActivity(IBinder token) {
6232 synchronized (mGlobalLock) {
6233 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
6234 if (r == null) {
6235 throw new IllegalArgumentException(
6236 "setFocusedActivity: No activity record matching token=" + token);
6237 }
Louis Chang19443452018-10-09 12:10:21 +08006238 if (r.moveFocusableActivityToTop("setFocusedActivity")) {
Louis Chang149d5c82019-12-30 09:47:39 +08006239 mRootWindowContainer.resumeFocusedStacksTopActivities();
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006240 }
6241 }
6242 }
6243
6244 @Override
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006245 public void registerScreenObserver(ScreenObserver observer) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07006246 mScreenObservers.add(observer);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006247 }
6248
6249 @Override
6250 public boolean isCallerRecents(int callingUid) {
Wale Ogunwale16e505a2018-05-07 15:00:49 -07006251 return getRecentTasks().isCallerRecents(callingUid);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006252 }
6253
6254 @Override
6255 public boolean isRecentsComponentHomeActivity(int userId) {
Wale Ogunwale16e505a2018-05-07 15:00:49 -07006256 return getRecentTasks().isRecentsComponentHomeActivity(userId);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006257 }
6258
6259 @Override
6260 public void cancelRecentsAnimation(boolean restoreHomeStackPosition) {
6261 ActivityTaskManagerService.this.cancelRecentsAnimation(restoreHomeStackPosition);
6262 }
6263
6264 @Override
6265 public void enforceCallerIsRecentsOrHasPermission(String permission, String func) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07006266 ActivityTaskManagerService.this.enforceCallerIsRecentsOrHasPermission(permission, func);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006267 }
Wale Ogunwaled0412b32018-05-08 09:25:50 -07006268
6269 @Override
6270 public void notifyActiveVoiceInteractionServiceChanged(ComponentName component) {
6271 synchronized (mGlobalLock) {
6272 mActiveVoiceInteractionServiceComponent = component;
6273 }
6274 }
Wale Ogunwalea6191b42018-05-09 07:41:32 -07006275
6276 @Override
Galia Peycheva480275a2020-03-18 17:33:42 +01006277 public void notifyDreamStateChanged(boolean dreaming) {
6278 synchronized (mGlobalLock) {
6279 mDreaming = dreaming;
6280 }
6281 }
6282
6283 @Override
Wale Ogunwalea6191b42018-05-09 07:41:32 -07006284 public void setAllowAppSwitches(@NonNull String type, int uid, int userId) {
6285 if (!mAmInternal.isUserRunning(userId, ActivityManager.FLAG_OR_STOPPED)) {
6286 return;
6287 }
6288 synchronized (mGlobalLock) {
6289 ArrayMap<String, Integer> types = mAllowAppSwitchUids.get(userId);
6290 if (types == null) {
6291 if (uid < 0) {
6292 return;
6293 }
6294 types = new ArrayMap<>();
6295 mAllowAppSwitchUids.put(userId, types);
6296 }
6297 if (uid < 0) {
6298 types.remove(type);
6299 } else {
6300 types.put(type, uid);
6301 }
6302 }
6303 }
6304
6305 @Override
6306 public void onUserStopped(int userId) {
6307 synchronized (mGlobalLock) {
6308 getRecentTasks().unloadUserDataFromMemoryLocked(userId);
6309 mAllowAppSwitchUids.remove(userId);
6310 }
6311 }
6312
6313 @Override
6314 public boolean isGetTasksAllowed(String caller, int callingPid, int callingUid) {
6315 synchronized (mGlobalLock) {
6316 return ActivityTaskManagerService.this.isGetTasksAllowed(
6317 caller, callingPid, callingUid);
6318 }
6319 }
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07006320
Riddle Hsua0536432019-02-16 00:38:59 +08006321 @HotPath(caller = HotPath.PROCESS_CHANGE)
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07006322 @Override
6323 public void onProcessAdded(WindowProcessController proc) {
Riddle Hsua0536432019-02-16 00:38:59 +08006324 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07006325 mProcessNames.put(proc.mName, proc.mUid, proc);
6326 }
6327 }
6328
Riddle Hsua0536432019-02-16 00:38:59 +08006329 @HotPath(caller = HotPath.PROCESS_CHANGE)
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07006330 @Override
6331 public void onProcessRemoved(String name, int uid) {
Riddle Hsua0536432019-02-16 00:38:59 +08006332 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07006333 mProcessNames.remove(name, uid);
6334 }
6335 }
6336
Riddle Hsua0536432019-02-16 00:38:59 +08006337 @HotPath(caller = HotPath.PROCESS_CHANGE)
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07006338 @Override
6339 public void onCleanUpApplicationRecord(WindowProcessController proc) {
Riddle Hsua0536432019-02-16 00:38:59 +08006340 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07006341 if (proc == mHomeProcess) {
6342 mHomeProcess = null;
6343 }
6344 if (proc == mPreviousProcess) {
6345 mPreviousProcess = null;
6346 }
6347 }
6348 }
Wale Ogunwalef6733932018-06-27 05:14:34 -07006349
Riddle Hsua0536432019-02-16 00:38:59 +08006350 @HotPath(caller = HotPath.OOM_ADJUSTMENT)
Wale Ogunwalef6733932018-06-27 05:14:34 -07006351 @Override
6352 public int getTopProcessState() {
Riddle Hsua0536432019-02-16 00:38:59 +08006353 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwalef6733932018-06-27 05:14:34 -07006354 return mTopProcessState;
6355 }
6356 }
6357
Riddle Hsua0536432019-02-16 00:38:59 +08006358 @HotPath(caller = HotPath.OOM_ADJUSTMENT)
Wale Ogunwalef6733932018-06-27 05:14:34 -07006359 @Override
Wale Ogunwale53783742018-09-16 10:21:51 -07006360 public boolean isHeavyWeightProcess(WindowProcessController proc) {
Riddle Hsua0536432019-02-16 00:38:59 +08006361 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale53783742018-09-16 10:21:51 -07006362 return proc == mHeavyWeightProcess;
6363 }
6364 }
6365
Riddle Hsua0536432019-02-16 00:38:59 +08006366 @HotPath(caller = HotPath.PROCESS_CHANGE)
Wale Ogunwale53783742018-09-16 10:21:51 -07006367 @Override
6368 public void clearHeavyWeightProcessIfEquals(WindowProcessController proc) {
Riddle Hsua0536432019-02-16 00:38:59 +08006369 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale53783742018-09-16 10:21:51 -07006370 ActivityTaskManagerService.this.clearHeavyWeightProcessIfEquals(proc);
6371 }
6372 }
6373
6374 @Override
6375 public void finishHeavyWeightApp() {
6376 synchronized (mGlobalLock) {
Sudheer Shankaee1da272018-10-20 20:11:44 -07006377 if (mHeavyWeightProcess != null) {
6378 mHeavyWeightProcess.finishActivities();
6379 }
Wale Ogunwale53783742018-09-16 10:21:51 -07006380 ActivityTaskManagerService.this.clearHeavyWeightProcessIfEquals(
6381 mHeavyWeightProcess);
6382 }
6383 }
6384
Galia Peycheva480275a2020-03-18 17:33:42 +01006385 @Override
6386 public boolean isDreaming() {
6387 synchronized (mGlobalLock) {
6388 return mDreaming;
6389 }
6390 }
6391
Riddle Hsua0536432019-02-16 00:38:59 +08006392 @HotPath(caller = HotPath.OOM_ADJUSTMENT)
Wale Ogunwale53783742018-09-16 10:21:51 -07006393 @Override
Wale Ogunwalef6733932018-06-27 05:14:34 -07006394 public boolean isSleeping() {
Riddle Hsua0536432019-02-16 00:38:59 +08006395 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwalef6733932018-06-27 05:14:34 -07006396 return isSleepingLocked();
6397 }
6398 }
6399
6400 @Override
6401 public boolean isShuttingDown() {
6402 synchronized (mGlobalLock) {
6403 return mShuttingDown;
6404 }
6405 }
6406
6407 @Override
6408 public boolean shuttingDown(boolean booted, int timeout) {
6409 synchronized (mGlobalLock) {
6410 mShuttingDown = true;
Louis Chang149d5c82019-12-30 09:47:39 +08006411 mRootWindowContainer.prepareForShutdown();
Wale Ogunwalef6733932018-06-27 05:14:34 -07006412 updateEventDispatchingLocked(booted);
Wale Ogunwaled4d67d02018-10-25 18:09:39 -07006413 notifyTaskPersisterLocked(null, true);
Wale Ogunwalef6733932018-06-27 05:14:34 -07006414 return mStackSupervisor.shutdownLocked(timeout);
6415 }
6416 }
6417
6418 @Override
6419 public void enableScreenAfterBoot(boolean booted) {
6420 synchronized (mGlobalLock) {
Jeff Changd136e772019-11-05 20:33:52 +08006421 writeBootProgressEnableScreen(SystemClock.uptimeMillis());
Wale Ogunwalef6733932018-06-27 05:14:34 -07006422 mWindowManager.enableScreenAfterBoot();
6423 updateEventDispatchingLocked(booted);
6424 }
6425 }
6426
6427 @Override
6428 public boolean showStrictModeViolationDialog() {
6429 synchronized (mGlobalLock) {
6430 return mShowDialogs && !mSleeping && !mShuttingDown;
6431 }
6432 }
6433
6434 @Override
6435 public void showSystemReadyErrorDialogsIfNeeded() {
6436 synchronized (mGlobalLock) {
6437 try {
6438 if (AppGlobals.getPackageManager().hasSystemUidErrors()) {
6439 Slog.e(TAG, "UIDs on the system are inconsistent, you need to wipe your"
6440 + " data partition or your device will be unstable.");
6441 mUiHandler.post(() -> {
6442 if (mShowDialogs) {
6443 AlertDialog d = new BaseErrorDialog(mUiContext);
6444 d.getWindow().setType(WindowManager.LayoutParams.TYPE_SYSTEM_ERROR);
6445 d.setCancelable(false);
6446 d.setTitle(mUiContext.getText(R.string.android_system_label));
6447 d.setMessage(mUiContext.getText(R.string.system_error_wipe_data));
6448 d.setButton(DialogInterface.BUTTON_POSITIVE,
6449 mUiContext.getText(R.string.ok),
6450 mUiHandler.obtainMessage(DISMISS_DIALOG_UI_MSG, d));
6451 d.show();
6452 }
6453 });
6454 }
6455 } catch (RemoteException e) {
6456 }
6457
6458 if (!Build.isBuildConsistent()) {
6459 Slog.e(TAG, "Build fingerprint is not consistent, warning user");
6460 mUiHandler.post(() -> {
6461 if (mShowDialogs) {
6462 AlertDialog d = new BaseErrorDialog(mUiContext);
6463 d.getWindow().setType(WindowManager.LayoutParams.TYPE_SYSTEM_ERROR);
6464 d.setCancelable(false);
6465 d.setTitle(mUiContext.getText(R.string.android_system_label));
6466 d.setMessage(mUiContext.getText(R.string.system_error_manufacturer));
6467 d.setButton(DialogInterface.BUTTON_POSITIVE,
6468 mUiContext.getText(R.string.ok),
6469 mUiHandler.obtainMessage(DISMISS_DIALOG_UI_MSG, d));
6470 d.show();
6471 }
6472 });
6473 }
6474 }
6475 }
Wale Ogunwale906f9c62018-07-23 11:23:44 -07006476
6477 @Override
Wale Ogunwale906f9c62018-07-23 11:23:44 -07006478 public void onProcessMapped(int pid, WindowProcessController proc) {
6479 synchronized (mGlobalLock) {
Michal Karpinski2e0aad22019-04-12 16:22:55 +01006480 mProcessMap.put(pid, proc);
Wale Ogunwale906f9c62018-07-23 11:23:44 -07006481 }
6482 }
6483
6484 @Override
6485 public void onProcessUnMapped(int pid) {
6486 synchronized (mGlobalLock) {
Michal Karpinski2e0aad22019-04-12 16:22:55 +01006487 mProcessMap.remove(pid);
Wale Ogunwale906f9c62018-07-23 11:23:44 -07006488 }
6489 }
Wale Ogunwale008163e2018-07-23 23:11:08 -07006490
6491 @Override
6492 public void onPackageDataCleared(String name) {
6493 synchronized (mGlobalLock) {
Wale Ogunwale53783742018-09-16 10:21:51 -07006494 mCompatModePackages.handlePackageDataClearedLocked(name);
Wale Ogunwale008163e2018-07-23 23:11:08 -07006495 mAppWarnings.onPackageDataCleared(name);
6496 }
6497 }
6498
6499 @Override
6500 public void onPackageUninstalled(String name) {
6501 synchronized (mGlobalLock) {
6502 mAppWarnings.onPackageUninstalled(name);
Wale Ogunwale53783742018-09-16 10:21:51 -07006503 mCompatModePackages.handlePackageUninstalledLocked(name);
Wale Ogunwale008163e2018-07-23 23:11:08 -07006504 }
6505 }
Wale Ogunwale53783742018-09-16 10:21:51 -07006506
6507 @Override
6508 public void onPackageAdded(String name, boolean replacing) {
6509 synchronized (mGlobalLock) {
6510 mCompatModePackages.handlePackageAddedLocked(name, replacing);
6511 }
6512 }
6513
6514 @Override
Wale Ogunwale31913b52018-10-13 08:29:31 -07006515 public void onPackageReplaced(ApplicationInfo aInfo) {
6516 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08006517 mRootWindowContainer.updateActivityApplicationInfo(aInfo);
Wale Ogunwale31913b52018-10-13 08:29:31 -07006518 }
6519 }
6520
6521 @Override
Wale Ogunwale53783742018-09-16 10:21:51 -07006522 public CompatibilityInfo compatibilityInfoForPackage(ApplicationInfo ai) {
6523 synchronized (mGlobalLock) {
6524 return compatibilityInfoForPackageLocked(ai);
6525 }
6526 }
6527
Yunfan Chen75157d72018-07-27 14:47:21 +09006528 /**
6529 * Set the corresponding display information for the process global configuration. To be
6530 * called when we need to show IME on a different display.
6531 *
6532 * @param pid The process id associated with the IME window.
6533 * @param displayId The ID of the display showing the IME.
6534 */
6535 @Override
Yunfan Chen79b96062018-10-17 12:45:23 -07006536 public void onImeWindowSetOnDisplay(final int pid, final int displayId) {
lumark48973532019-04-12 20:18:15 +08006537 // Don't update process-level configuration for Multi-Client IME process since other
6538 // IMEs on other displays will also receive this configuration change due to IME
6539 // services use the same application config/context.
6540 if (InputMethodSystemProperty.MULTI_CLIENT_IME_ENABLED) return;
lumark5df49512019-04-02 14:56:46 +08006541
Yunfan Chen75157d72018-07-27 14:47:21 +09006542 if (pid == MY_PID || pid < 0) {
6543 if (DEBUG_CONFIGURATION) {
6544 Slog.w(TAG,
6545 "Trying to update display configuration for system/invalid process.");
6546 }
6547 return;
6548 }
Yunfan Chencafc7062019-01-22 17:21:32 +09006549 synchronized (mGlobalLock) {
Louis Chang677921f2019-12-06 16:44:24 +08006550 final DisplayContent displayContent =
Louis Chang149d5c82019-12-30 09:47:39 +08006551 mRootWindowContainer.getDisplayContent(displayId);
Louis Chang677921f2019-12-06 16:44:24 +08006552 if (displayContent == null) {
Yunfan Chencafc7062019-01-22 17:21:32 +09006553 // Call might come when display is not yet added or has been removed.
6554 if (DEBUG_CONFIGURATION) {
6555 Slog.w(TAG, "Trying to update display configuration for non-existing "
6556 + "displayId=" + displayId);
Yunfan Chen75157d72018-07-27 14:47:21 +09006557 }
Yunfan Chencafc7062019-01-22 17:21:32 +09006558 return;
Yunfan Chen75157d72018-07-27 14:47:21 +09006559 }
Michal Karpinski2e0aad22019-04-12 16:22:55 +01006560 final WindowProcessController process = mProcessMap.getProcess(pid);
Yunfan Chencafc7062019-01-22 17:21:32 +09006561 if (process == null) {
6562 if (DEBUG_CONFIGURATION) {
6563 Slog.w(TAG, "Trying to update display configuration for invalid "
6564 + "process, pid=" + pid);
6565 }
6566 return;
6567 }
Andrii Kulianfa23a9e2019-10-10 15:15:36 -07006568 process.registerDisplayConfigurationListener(displayContent);
Yunfan Chencafc7062019-01-22 17:21:32 +09006569 }
Yunfan Chen75157d72018-07-27 14:47:21 +09006570 }
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006571
6572 @Override
6573 public void sendActivityResult(int callingUid, IBinder activityToken, String resultWho,
Wale Ogunwale586a8ee2019-06-04 13:44:14 +00006574 int requestCode, int resultCode, Intent data) {
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006575 synchronized (mGlobalLock) {
Wale Ogunwale586a8ee2019-06-04 13:44:14 +00006576 final ActivityRecord r = ActivityRecord.isInStackLocked(activityToken);
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08006577 if (r != null && r.getRootTask() != null) {
Andrii Kulian79d67982019-08-19 11:56:16 -07006578 r.sendResult(callingUid, resultWho, requestCode, resultCode, data);
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006579 }
6580 }
6581 }
6582
6583 @Override
6584 public void clearPendingResultForActivity(IBinder activityToken,
6585 WeakReference<PendingIntentRecord> pir) {
6586 synchronized (mGlobalLock) {
6587 final ActivityRecord r = ActivityRecord.isInStackLocked(activityToken);
6588 if (r != null && r.pendingResults != null) {
6589 r.pendingResults.remove(pir);
6590 }
6591 }
6592 }
6593
6594 @Override
Sunny Goyald40c3452019-03-20 12:46:55 -07006595 public ActivityTokens getTopActivityForTask(int taskId) {
6596 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08006597 final Task task = mRootWindowContainer.anyTaskForId(taskId);
Louis Changcdec0802019-11-11 11:45:07 +08006598 if (task == null) {
Sunny Goyald40c3452019-03-20 12:46:55 -07006599 Slog.w(TAG, "getApplicationThreadForTopActivity failed:"
6600 + " Requested task not found");
6601 return null;
6602 }
Wale Ogunwale21e06482019-11-18 05:14:15 -08006603 final ActivityRecord activity = task.getTopNonFinishingActivity();
Sunny Goyald40c3452019-03-20 12:46:55 -07006604 if (activity == null) {
6605 Slog.w(TAG, "getApplicationThreadForTopActivity failed:"
6606 + " Requested activity not found");
6607 return null;
6608 }
6609 if (!activity.attachedToProcess()) {
6610 Slog.w(TAG, "getApplicationThreadForTopActivity failed: No process for "
6611 + activity);
6612 return null;
6613 }
6614 return new ActivityTokens(activity.appToken, activity.assistToken,
6615 activity.app.getThread());
6616 }
6617 }
6618
6619 @Override
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006620 public IIntentSender getIntentSender(int type, String packageName,
Philip P. Moltmannee295092020-02-10 08:46:26 -08006621 @Nullable String featureId, int callingUid, int userId, IBinder token,
6622 String resultWho, int requestCode, Intent[] intents, String[] resolvedTypes,
6623 int flags, Bundle bOptions) {
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006624 synchronized (mGlobalLock) {
Philip P. Moltmannee295092020-02-10 08:46:26 -08006625 return getIntentSenderLocked(type, packageName, featureId, callingUid, userId,
6626 token, resultWho, requestCode, intents, resolvedTypes, flags, bOptions);
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006627 }
6628 }
Wale Ogunwalec4e63a42018-10-02 13:19:54 -07006629
6630 @Override
6631 public ActivityServiceConnectionsHolder getServiceConnectionsHolder(IBinder token) {
6632 synchronized (mGlobalLock) {
6633 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
6634 if (r == null) {
6635 return null;
6636 }
6637 if (r.mServiceConnectionsHolder == null) {
6638 r.mServiceConnectionsHolder = new ActivityServiceConnectionsHolder(
6639 ActivityTaskManagerService.this, r);
6640 }
6641
6642 return r.mServiceConnectionsHolder;
6643 }
6644 }
Wale Ogunwale214f3482018-10-04 11:00:47 -07006645
6646 @Override
6647 public Intent getHomeIntent() {
6648 synchronized (mGlobalLock) {
6649 return ActivityTaskManagerService.this.getHomeIntent();
6650 }
6651 }
6652
6653 @Override
6654 public boolean startHomeActivity(int userId, String reason) {
6655 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08006656 return mRootWindowContainer.startHomeOnDisplay(userId, reason, DEFAULT_DISPLAY);
Louis Chang89f43fc2018-10-05 10:59:14 +08006657 }
6658 }
6659
6660 @Override
Chilun8b1f1be2019-03-13 17:14:36 +08006661 public boolean startHomeOnDisplay(int userId, String reason, int displayId,
Chilun39232092019-03-22 14:41:30 +08006662 boolean allowInstrumenting, boolean fromHomeKey) {
Chilun5fd56542019-03-21 19:51:37 +08006663 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08006664 return mRootWindowContainer.startHomeOnDisplay(userId, reason, displayId,
Chilun39232092019-03-22 14:41:30 +08006665 allowInstrumenting, fromHomeKey);
Chilun5fd56542019-03-21 19:51:37 +08006666 }
Chilun8b1f1be2019-03-13 17:14:36 +08006667 }
6668
6669 @Override
Louis Chang89f43fc2018-10-05 10:59:14 +08006670 public boolean startHomeOnAllDisplays(int userId, String reason) {
6671 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08006672 return mRootWindowContainer.startHomeOnAllDisplays(userId, reason);
Wale Ogunwale214f3482018-10-04 11:00:47 -07006673 }
6674 }
6675
Riddle Hsua0536432019-02-16 00:38:59 +08006676 @HotPath(caller = HotPath.PROCESS_CHANGE)
Wale Ogunwale214f3482018-10-04 11:00:47 -07006677 @Override
6678 public boolean isFactoryTestProcess(WindowProcessController wpc) {
Riddle Hsua0536432019-02-16 00:38:59 +08006679 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale214f3482018-10-04 11:00:47 -07006680 if (mFactoryTest == FACTORY_TEST_OFF) {
6681 return false;
6682 }
6683 if (mFactoryTest == FACTORY_TEST_LOW_LEVEL && mTopComponent != null
6684 && wpc.mName.equals(mTopComponent.getPackageName())) {
6685 return true;
6686 }
6687 return mFactoryTest == FACTORY_TEST_HIGH_LEVEL
6688 && (wpc.mInfo.flags & FLAG_FACTORY_TEST) != 0;
6689 }
6690 }
6691
6692 @Override
6693 public void updateTopComponentForFactoryTest() {
6694 synchronized (mGlobalLock) {
6695 if (mFactoryTest != FACTORY_TEST_LOW_LEVEL) {
6696 return;
6697 }
6698 final ResolveInfo ri = mContext.getPackageManager()
6699 .resolveActivity(new Intent(Intent.ACTION_FACTORY_TEST), STOCK_PM_FLAGS);
6700 final CharSequence errorMsg;
6701 if (ri != null) {
6702 final ActivityInfo ai = ri.activityInfo;
6703 final ApplicationInfo app = ai.applicationInfo;
6704 if ((app.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
6705 mTopAction = Intent.ACTION_FACTORY_TEST;
6706 mTopData = null;
6707 mTopComponent = new ComponentName(app.packageName, ai.name);
6708 errorMsg = null;
6709 } else {
6710 errorMsg = mContext.getResources().getText(
6711 com.android.internal.R.string.factorytest_not_system);
6712 }
6713 } else {
6714 errorMsg = mContext.getResources().getText(
6715 com.android.internal.R.string.factorytest_no_action);
6716 }
6717 if (errorMsg == null) {
6718 return;
6719 }
6720
6721 mTopAction = null;
6722 mTopData = null;
6723 mTopComponent = null;
6724 mUiHandler.post(() -> {
6725 Dialog d = new FactoryErrorDialog(mUiContext, errorMsg);
6726 d.show();
Wale Ogunwale342fbe92018-10-09 08:44:10 -07006727 mAmInternal.ensureBootCompleted();
Wale Ogunwale214f3482018-10-04 11:00:47 -07006728 });
6729 }
6730 }
Wale Ogunwale31913b52018-10-13 08:29:31 -07006731
Riddle Hsua0536432019-02-16 00:38:59 +08006732 @HotPath(caller = HotPath.PROCESS_CHANGE)
Wale Ogunwale31913b52018-10-13 08:29:31 -07006733 @Override
6734 public void handleAppDied(WindowProcessController wpc, boolean restarting,
6735 Runnable finishInstrumentationCallback) {
Riddle Hsua0536432019-02-16 00:38:59 +08006736 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale31913b52018-10-13 08:29:31 -07006737 // Remove this application's activities from active lists.
Louis Chang149d5c82019-12-30 09:47:39 +08006738 boolean hasVisibleActivities = mRootWindowContainer.handleAppDied(wpc);
Wale Ogunwale31913b52018-10-13 08:29:31 -07006739
6740 wpc.clearRecentTasks();
6741 wpc.clearActivities();
6742
6743 if (wpc.isInstrumenting()) {
6744 finishInstrumentationCallback.run();
6745 }
6746
Jorim Jaggid0752812018-10-16 16:07:20 +02006747 if (!restarting && hasVisibleActivities) {
Riddle Hsua0022cd2019-09-09 21:12:41 +08006748 deferWindowLayout();
Jorim Jaggid0752812018-10-16 16:07:20 +02006749 try {
Louis Chang149d5c82019-12-30 09:47:39 +08006750 if (!mRootWindowContainer.resumeFocusedStacksTopActivities()) {
Jorim Jaggid0752812018-10-16 16:07:20 +02006751 // If there was nothing to resume, and we are not already restarting
6752 // this process, but there is a visible activity that is hosted by the
6753 // process...then make sure all visible activities are running, taking
6754 // care of restarting this process.
Louis Chang149d5c82019-12-30 09:47:39 +08006755 mRootWindowContainer.ensureActivitiesVisible(null, 0,
Jorim Jaggid0752812018-10-16 16:07:20 +02006756 !PRESERVE_WINDOWS);
6757 }
6758 } finally {
Riddle Hsua0022cd2019-09-09 21:12:41 +08006759 continueWindowLayout();
Wale Ogunwale31913b52018-10-13 08:29:31 -07006760 }
Wale Ogunwale31913b52018-10-13 08:29:31 -07006761 }
6762 }
6763 }
6764
6765 @Override
6766 public void closeSystemDialogs(String reason) {
6767 enforceNotIsolatedCaller("closeSystemDialogs");
6768
6769 final int pid = Binder.getCallingPid();
6770 final int uid = Binder.getCallingUid();
6771 final long origId = Binder.clearCallingIdentity();
6772 try {
6773 synchronized (mGlobalLock) {
6774 // Only allow this from foreground processes, so that background
6775 // applications can't abuse it to prevent system UI from being shown.
6776 if (uid >= FIRST_APPLICATION_UID) {
Michal Karpinski2e0aad22019-04-12 16:22:55 +01006777 final WindowProcessController proc = mProcessMap.getProcess(pid);
Wale Ogunwale31913b52018-10-13 08:29:31 -07006778 if (!proc.isPerceptible()) {
6779 Slog.w(TAG, "Ignoring closeSystemDialogs " + reason
6780 + " from background process " + proc);
6781 return;
6782 }
6783 }
Wale Ogunwale31913b52018-10-13 08:29:31 -07006784 mWindowManager.closeSystemDialogs(reason);
6785
Louis Chang149d5c82019-12-30 09:47:39 +08006786 mRootWindowContainer.closeSystemDialogs();
Wale Ogunwale31913b52018-10-13 08:29:31 -07006787 }
Wale Ogunwale2ea36d42018-10-18 10:27:31 -07006788 // Call into AM outside the synchronized block.
6789 mAmInternal.broadcastCloseSystemDialogs(reason);
Wale Ogunwale31913b52018-10-13 08:29:31 -07006790 } finally {
6791 Binder.restoreCallingIdentity(origId);
6792 }
6793 }
6794
6795 @Override
6796 public void cleanupDisabledPackageComponents(
6797 String packageName, Set<String> disabledClasses, int userId, boolean booted) {
6798 synchronized (mGlobalLock) {
6799 // Clean-up disabled activities.
Louis Chang149d5c82019-12-30 09:47:39 +08006800 if (mRootWindowContainer.finishDisabledPackageActivities(
Wale Ogunwale31913b52018-10-13 08:29:31 -07006801 packageName, disabledClasses, true, false, userId) && booted) {
Louis Chang149d5c82019-12-30 09:47:39 +08006802 mRootWindowContainer.resumeFocusedStacksTopActivities();
Riddle Hsufc8ab262019-12-31 15:31:24 +08006803 mStackSupervisor.scheduleIdle();
Wale Ogunwale31913b52018-10-13 08:29:31 -07006804 }
6805
6806 // Clean-up disabled tasks
6807 getRecentTasks().cleanupDisabledPackageTasksLocked(
6808 packageName, disabledClasses, userId);
6809 }
6810 }
6811
6812 @Override
6813 public boolean onForceStopPackage(String packageName, boolean doit, boolean evenPersistent,
6814 int userId) {
6815 synchronized (mGlobalLock) {
6816
6817 boolean didSomething =
6818 getActivityStartController().clearPendingActivityLaunches(packageName);
Louis Chang149d5c82019-12-30 09:47:39 +08006819 didSomething |= mRootWindowContainer.finishDisabledPackageActivities(packageName,
Wale Ogunwale31913b52018-10-13 08:29:31 -07006820 null, doit, evenPersistent, userId);
6821 return didSomething;
6822 }
6823 }
6824
6825 @Override
6826 public void resumeTopActivities(boolean scheduleIdle) {
6827 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08006828 mRootWindowContainer.resumeFocusedStacksTopActivities();
Wale Ogunwale31913b52018-10-13 08:29:31 -07006829 if (scheduleIdle) {
Riddle Hsufc8ab262019-12-31 15:31:24 +08006830 mStackSupervisor.scheduleIdle();
Wale Ogunwale31913b52018-10-13 08:29:31 -07006831 }
6832 }
6833 }
6834
Riddle Hsua0536432019-02-16 00:38:59 +08006835 @HotPath(caller = HotPath.PROCESS_CHANGE)
Wale Ogunwale31913b52018-10-13 08:29:31 -07006836 @Override
6837 public void preBindApplication(WindowProcessController wpc) {
Riddle Hsua0536432019-02-16 00:38:59 +08006838 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale31913b52018-10-13 08:29:31 -07006839 mStackSupervisor.getActivityMetricsLogger().notifyBindApplication(wpc.mInfo);
6840 }
6841 }
6842
Riddle Hsua0536432019-02-16 00:38:59 +08006843 @HotPath(caller = HotPath.PROCESS_CHANGE)
Wale Ogunwale31913b52018-10-13 08:29:31 -07006844 @Override
6845 public boolean attachApplication(WindowProcessController wpc) throws RemoteException {
Riddle Hsua0536432019-02-16 00:38:59 +08006846 synchronized (mGlobalLockWithoutBoost) {
Riddle Hsu2ca561b2019-10-08 21:58:58 +08006847 if (Trace.isTagEnabled(TRACE_TAG_WINDOW_MANAGER)) {
6848 Trace.traceBegin(TRACE_TAG_WINDOW_MANAGER, "attachApplication:" + wpc.mName);
6849 }
6850 try {
Louis Chang149d5c82019-12-30 09:47:39 +08006851 return mRootWindowContainer.attachApplication(wpc);
Riddle Hsu2ca561b2019-10-08 21:58:58 +08006852 } finally {
6853 Trace.traceEnd(TRACE_TAG_WINDOW_MANAGER);
6854 }
Wale Ogunwale31913b52018-10-13 08:29:31 -07006855 }
6856 }
6857
6858 @Override
6859 public void notifyLockedProfile(@UserIdInt int userId, int currentUserId) {
6860 try {
6861 if (!AppGlobals.getPackageManager().isUidPrivileged(Binder.getCallingUid())) {
6862 throw new SecurityException("Only privileged app can call notifyLockedProfile");
6863 }
6864 } catch (RemoteException ex) {
6865 throw new SecurityException("Fail to check is caller a privileged app", ex);
6866 }
6867
6868 synchronized (mGlobalLock) {
6869 final long ident = Binder.clearCallingIdentity();
6870 try {
6871 if (mAmInternal.shouldConfirmCredentials(userId)) {
6872 if (mKeyguardController.isKeyguardLocked()) {
6873 // Showing launcher to avoid user entering credential twice.
6874 startHomeActivity(currentUserId, "notifyLockedProfile");
6875 }
Louis Chang149d5c82019-12-30 09:47:39 +08006876 mRootWindowContainer.lockAllProfileTasks(userId);
Wale Ogunwale31913b52018-10-13 08:29:31 -07006877 }
6878 } finally {
6879 Binder.restoreCallingIdentity(ident);
6880 }
6881 }
6882 }
6883
6884 @Override
6885 public void startConfirmDeviceCredentialIntent(Intent intent, Bundle options) {
6886 mAmInternal.enforceCallingPermission(
6887 MANAGE_ACTIVITY_STACKS, "startConfirmDeviceCredentialIntent");
6888
6889 synchronized (mGlobalLock) {
6890 final long ident = Binder.clearCallingIdentity();
6891 try {
Pavel Grafovc0fe0a02019-05-13 18:19:33 +01006892 intent.addFlags(FLAG_ACTIVITY_NEW_TASK | FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
6893 final ActivityOptions activityOptions = options != null
Wale Ogunwale31913b52018-10-13 08:29:31 -07006894 ? new ActivityOptions(options) : ActivityOptions.makeBasic();
Wale Ogunwale31913b52018-10-13 08:29:31 -07006895 mContext.startActivityAsUser(intent, activityOptions.toBundle(),
6896 UserHandle.CURRENT);
6897 } finally {
6898 Binder.restoreCallingIdentity(ident);
6899 }
6900 }
6901 }
6902
6903 @Override
6904 public void writeActivitiesToProto(ProtoOutputStream proto) {
6905 synchronized (mGlobalLock) {
6906 // The output proto of "activity --proto activities"
Wale Ogunwalef342f062020-01-27 07:34:13 -08006907 mRootWindowContainer.dumpDebug(
6908 proto, ROOT_WINDOW_CONTAINER, WindowTraceLogLevel.ALL);
Wale Ogunwale31913b52018-10-13 08:29:31 -07006909 }
6910 }
6911
6912 @Override
6913 public void saveANRState(String reason) {
6914 synchronized (mGlobalLock) {
6915 final StringWriter sw = new StringWriter();
6916 final PrintWriter pw = new FastPrintWriter(sw, false, 1024);
6917 pw.println(" ANR time: " + DateFormat.getDateTimeInstance().format(new Date()));
6918 if (reason != null) {
6919 pw.println(" Reason: " + reason);
6920 }
6921 pw.println();
6922 getActivityStartController().dump(pw, " ", null);
6923 pw.println();
6924 pw.println("-------------------------------------------------------------------------------");
6925 dumpActivitiesLocked(null /* fd */, pw, null /* args */, 0 /* opti */,
6926 true /* dumpAll */, false /* dumpClient */, null /* dumpPackage */,
6927 "" /* header */);
6928 pw.println();
6929 pw.close();
6930
6931 mLastANRState = sw.toString();
6932 }
6933 }
6934
6935 @Override
6936 public void clearSavedANRState() {
6937 synchronized (mGlobalLock) {
6938 mLastANRState = null;
6939 }
6940 }
6941
6942 @Override
6943 public void dump(String cmd, FileDescriptor fd, PrintWriter pw, String[] args, int opti,
6944 boolean dumpAll, boolean dumpClient, String dumpPackage) {
6945 synchronized (mGlobalLock) {
6946 if (DUMP_ACTIVITIES_CMD.equals(cmd) || DUMP_ACTIVITIES_SHORT_CMD.equals(cmd)) {
6947 dumpActivitiesLocked(fd, pw, args, opti, dumpAll, dumpClient, dumpPackage);
6948 } else if (DUMP_LASTANR_CMD.equals(cmd)) {
6949 dumpLastANRLocked(pw);
6950 } else if (DUMP_LASTANR_TRACES_CMD.equals(cmd)) {
6951 dumpLastANRTracesLocked(pw);
6952 } else if (DUMP_STARTER_CMD.equals(cmd)) {
6953 dumpActivityStarterLocked(pw, dumpPackage);
6954 } else if (DUMP_CONTAINERS_CMD.equals(cmd)) {
6955 dumpActivityContainersLocked(pw);
6956 } else if (DUMP_RECENTS_CMD.equals(cmd) || DUMP_RECENTS_SHORT_CMD.equals(cmd)) {
6957 if (getRecentTasks() != null) {
6958 getRecentTasks().dump(pw, dumpAll, dumpPackage);
6959 }
6960 }
6961 }
6962 }
6963
6964 @Override
6965 public boolean dumpForProcesses(FileDescriptor fd, PrintWriter pw, boolean dumpAll,
6966 String dumpPackage, int dumpAppId, boolean needSep, boolean testPssMode,
6967 int wakefulness) {
6968 synchronized (mGlobalLock) {
6969 if (mHomeProcess != null && (dumpPackage == null
6970 || mHomeProcess.mPkgList.contains(dumpPackage))) {
6971 if (needSep) {
6972 pw.println();
6973 needSep = false;
6974 }
6975 pw.println(" mHomeProcess: " + mHomeProcess);
6976 }
6977 if (mPreviousProcess != null && (dumpPackage == null
6978 || mPreviousProcess.mPkgList.contains(dumpPackage))) {
6979 if (needSep) {
6980 pw.println();
6981 needSep = false;
6982 }
6983 pw.println(" mPreviousProcess: " + mPreviousProcess);
6984 }
6985 if (dumpAll && (mPreviousProcess == null || dumpPackage == null
6986 || mPreviousProcess.mPkgList.contains(dumpPackage))) {
6987 StringBuilder sb = new StringBuilder(128);
6988 sb.append(" mPreviousProcessVisibleTime: ");
6989 TimeUtils.formatDuration(mPreviousProcessVisibleTime, sb);
6990 pw.println(sb);
6991 }
6992 if (mHeavyWeightProcess != null && (dumpPackage == null
6993 || mHeavyWeightProcess.mPkgList.contains(dumpPackage))) {
6994 if (needSep) {
6995 pw.println();
6996 needSep = false;
6997 }
6998 pw.println(" mHeavyWeightProcess: " + mHeavyWeightProcess);
6999 }
7000 if (dumpPackage == null) {
7001 pw.println(" mGlobalConfiguration: " + getGlobalConfiguration());
Louis Chang149d5c82019-12-30 09:47:39 +08007002 mRootWindowContainer.dumpDisplayConfigs(pw, " ");
Wale Ogunwale31913b52018-10-13 08:29:31 -07007003 }
7004 if (dumpAll) {
Darryl L Johnson1e3885c2020-02-27 17:38:13 -08007005 final ActivityStack topFocusedStack = getTopDisplayFocusedStack();
7006 if (dumpPackage == null && topFocusedStack != null) {
7007 pw.println(" mConfigWillChange: " + topFocusedStack.mConfigWillChange);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007008 }
7009 if (mCompatModePackages.getPackages().size() > 0) {
7010 boolean printed = false;
7011 for (Map.Entry<String, Integer> entry
7012 : mCompatModePackages.getPackages().entrySet()) {
7013 String pkg = entry.getKey();
7014 int mode = entry.getValue();
7015 if (dumpPackage != null && !dumpPackage.equals(pkg)) {
7016 continue;
7017 }
7018 if (!printed) {
7019 pw.println(" mScreenCompatPackages:");
7020 printed = true;
7021 }
7022 pw.println(" " + pkg + ": " + mode);
7023 }
7024 }
7025 }
7026
7027 if (dumpPackage == null) {
7028 pw.println(" mWakefulness="
7029 + PowerManagerInternal.wakefulnessToString(wakefulness));
Louis Chang149d5c82019-12-30 09:47:39 +08007030 pw.println(" mSleepTokens=" + mRootWindowContainer.mSleepTokens);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007031 if (mRunningVoice != null) {
7032 pw.println(" mRunningVoice=" + mRunningVoice);
7033 pw.println(" mVoiceWakeLock" + mVoiceWakeLock);
7034 }
7035 pw.println(" mSleeping=" + mSleeping);
7036 pw.println(" mShuttingDown=" + mShuttingDown + " mTestPssMode=" + testPssMode);
7037 pw.println(" mVrController=" + mVrController);
7038 }
7039 if (mCurAppTimeTracker != null) {
7040 mCurAppTimeTracker.dumpWithHeader(pw, " ", true);
7041 }
7042 if (mAllowAppSwitchUids.size() > 0) {
7043 boolean printed = false;
7044 for (int i = 0; i < mAllowAppSwitchUids.size(); i++) {
7045 ArrayMap<String, Integer> types = mAllowAppSwitchUids.valueAt(i);
7046 for (int j = 0; j < types.size(); j++) {
7047 if (dumpPackage == null ||
7048 UserHandle.getAppId(types.valueAt(j).intValue()) == dumpAppId) {
7049 if (needSep) {
7050 pw.println();
7051 needSep = false;
7052 }
7053 if (!printed) {
7054 pw.println(" mAllowAppSwitchUids:");
7055 printed = true;
7056 }
7057 pw.print(" User ");
7058 pw.print(mAllowAppSwitchUids.keyAt(i));
7059 pw.print(": Type ");
7060 pw.print(types.keyAt(j));
7061 pw.print(" = ");
7062 UserHandle.formatUid(pw, types.valueAt(j).intValue());
7063 pw.println();
7064 }
7065 }
7066 }
7067 }
7068 if (dumpPackage == null) {
7069 if (mController != null) {
7070 pw.println(" mController=" + mController
7071 + " mControllerIsAMonkey=" + mControllerIsAMonkey);
7072 }
Andrii Kulianc598b2d2019-02-07 17:16:38 -08007073 pw.println(" mGoingToSleepWakeLock=" + mStackSupervisor.mGoingToSleepWakeLock);
7074 pw.println(" mLaunchingActivityWakeLock="
7075 + mStackSupervisor.mLaunchingActivityWakeLock);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007076 }
7077
7078 return needSep;
7079 }
7080 }
7081
7082 @Override
sanryhuang498e77e2018-12-06 14:57:01 +08007083 public void writeProcessesToProto(ProtoOutputStream proto, String dumpPackage,
7084 int wakeFullness, boolean testPssMode) {
Wale Ogunwale31913b52018-10-13 08:29:31 -07007085 synchronized (mGlobalLock) {
7086 if (dumpPackage == null) {
Jeffrey Huangcb782852019-12-05 11:28:11 -08007087 getGlobalConfiguration().dumpDebug(proto, GLOBAL_CONFIGURATION);
Darryl L Johnson1e3885c2020-02-27 17:38:13 -08007088 final ActivityStack topFocusedStack = getTopDisplayFocusedStack();
7089 if (topFocusedStack != null) {
7090 proto.write(CONFIG_WILL_CHANGE, topFocusedStack.mConfigWillChange);
7091 }
sanryhuang498e77e2018-12-06 14:57:01 +08007092 writeSleepStateToProto(proto, wakeFullness, testPssMode);
7093 if (mRunningVoice != null) {
7094 final long vrToken = proto.start(
7095 ActivityManagerServiceDumpProcessesProto.RUNNING_VOICE);
7096 proto.write(ActivityManagerServiceDumpProcessesProto.Voice.SESSION,
7097 mRunningVoice.toString());
Jeffrey Huangcb782852019-12-05 11:28:11 -08007098 mVoiceWakeLock.dumpDebug(
sanryhuang498e77e2018-12-06 14:57:01 +08007099 proto, ActivityManagerServiceDumpProcessesProto.Voice.WAKELOCK);
7100 proto.end(vrToken);
7101 }
Jeffrey Huangcb782852019-12-05 11:28:11 -08007102 mVrController.dumpDebug(proto,
sanryhuang498e77e2018-12-06 14:57:01 +08007103 ActivityManagerServiceDumpProcessesProto.VR_CONTROLLER);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007104 if (mController != null) {
7105 final long token = proto.start(CONTROLLER);
Wally Yau0eb29f62020-01-08 10:16:43 -08007106 proto.write(ActivityManagerServiceDumpProcessesProto.Controller.CONTROLLER,
7107 mController.toString());
Wale Ogunwale31913b52018-10-13 08:29:31 -07007108 proto.write(IS_A_MONKEY, mControllerIsAMonkey);
7109 proto.end(token);
7110 }
Jeffrey Huangcb782852019-12-05 11:28:11 -08007111 mStackSupervisor.mGoingToSleepWakeLock.dumpDebug(proto, GOING_TO_SLEEP);
7112 mStackSupervisor.mLaunchingActivityWakeLock.dumpDebug(proto,
Andrii Kulianc598b2d2019-02-07 17:16:38 -08007113 LAUNCHING_ACTIVITY);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007114 }
7115
7116 if (mHomeProcess != null && (dumpPackage == null
7117 || mHomeProcess.mPkgList.contains(dumpPackage))) {
Jeffrey Huangcb782852019-12-05 11:28:11 -08007118 mHomeProcess.dumpDebug(proto, HOME_PROC);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007119 }
7120
7121 if (mPreviousProcess != null && (dumpPackage == null
7122 || mPreviousProcess.mPkgList.contains(dumpPackage))) {
Jeffrey Huangcb782852019-12-05 11:28:11 -08007123 mPreviousProcess.dumpDebug(proto, PREVIOUS_PROC);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007124 proto.write(PREVIOUS_PROC_VISIBLE_TIME_MS, mPreviousProcessVisibleTime);
7125 }
7126
7127 if (mHeavyWeightProcess != null && (dumpPackage == null
7128 || mHeavyWeightProcess.mPkgList.contains(dumpPackage))) {
Jeffrey Huangcb782852019-12-05 11:28:11 -08007129 mHeavyWeightProcess.dumpDebug(proto, HEAVY_WEIGHT_PROC);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007130 }
7131
7132 for (Map.Entry<String, Integer> entry
7133 : mCompatModePackages.getPackages().entrySet()) {
7134 String pkg = entry.getKey();
7135 int mode = entry.getValue();
7136 if (dumpPackage == null || dumpPackage.equals(pkg)) {
7137 long compatToken = proto.start(SCREEN_COMPAT_PACKAGES);
7138 proto.write(PACKAGE, pkg);
7139 proto.write(MODE, mode);
7140 proto.end(compatToken);
7141 }
7142 }
7143
7144 if (mCurAppTimeTracker != null) {
Jeffrey Huangcb782852019-12-05 11:28:11 -08007145 mCurAppTimeTracker.dumpDebug(proto, CURRENT_TRACKER, true);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007146 }
7147
7148 }
7149 }
7150
7151 @Override
7152 public boolean dumpActivity(FileDescriptor fd, PrintWriter pw, String name,
7153 String[] args, int opti, boolean dumpAll, boolean dumpVisibleStacksOnly,
7154 boolean dumpFocusedStackOnly) {
Riddle Hsud7cd8ed2019-07-16 18:19:01 +08007155 return ActivityTaskManagerService.this.dumpActivity(fd, pw, name, args, opti, dumpAll,
7156 dumpVisibleStacksOnly, dumpFocusedStackOnly);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007157 }
7158
7159 @Override
Wale Ogunwaled4d67d02018-10-25 18:09:39 -07007160 public void dumpForOom(PrintWriter pw) {
7161 synchronized (mGlobalLock) {
7162 pw.println(" mHomeProcess: " + mHomeProcess);
7163 pw.println(" mPreviousProcess: " + mPreviousProcess);
7164 if (mHeavyWeightProcess != null) {
7165 pw.println(" mHeavyWeightProcess: " + mHeavyWeightProcess);
7166 }
7167 }
7168 }
7169
7170 @Override
Wale Ogunwale31913b52018-10-13 08:29:31 -07007171 public boolean canGcNow() {
7172 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08007173 return isSleeping() || mRootWindowContainer.allResumedActivitiesIdle();
Wale Ogunwale31913b52018-10-13 08:29:31 -07007174 }
7175 }
7176
Riddle Hsua0536432019-02-16 00:38:59 +08007177 @HotPath(caller = HotPath.OOM_ADJUSTMENT)
Wale Ogunwale31913b52018-10-13 08:29:31 -07007178 @Override
7179 public WindowProcessController getTopApp() {
Riddle Hsud7088f82019-01-30 13:04:50 +08007180 synchronized (mGlobalLockWithoutBoost) {
Louis Chang149d5c82019-12-30 09:47:39 +08007181 if (mRootWindowContainer == null) {
7182 // Return null if mRootWindowContainer not yet initialize, while update
Louis Chang3ff72a82019-12-17 12:12:59 +08007183 // oomadj after AMS created.
7184 return null;
7185 }
Louis Chang149d5c82019-12-30 09:47:39 +08007186 final ActivityRecord top = mRootWindowContainer.getTopResumedActivity();
Wale Ogunwale31913b52018-10-13 08:29:31 -07007187 return top != null ? top.app : null;
7188 }
7189 }
7190
Riddle Hsua0536432019-02-16 00:38:59 +08007191 @HotPath(caller = HotPath.OOM_ADJUSTMENT)
Wale Ogunwale31913b52018-10-13 08:29:31 -07007192 @Override
7193 public void rankTaskLayersIfNeeded() {
Riddle Hsud7088f82019-01-30 13:04:50 +08007194 synchronized (mGlobalLockWithoutBoost) {
Louis Chang149d5c82019-12-30 09:47:39 +08007195 if (mRootWindowContainer != null) {
7196 mRootWindowContainer.rankTaskLayersIfNeeded();
Wale Ogunwale31913b52018-10-13 08:29:31 -07007197 }
7198 }
7199 }
7200
7201 @Override
7202 public void scheduleDestroyAllActivities(String reason) {
7203 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08007204 mRootWindowContainer.scheduleDestroyAllActivities(reason);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007205 }
7206 }
7207
7208 @Override
7209 public void removeUser(int userId) {
7210 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08007211 mRootWindowContainer.removeUser(userId);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007212 }
7213 }
7214
7215 @Override
7216 public boolean switchUser(int userId, UserState userState) {
7217 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08007218 return mRootWindowContainer.switchUser(userId, userState);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007219 }
7220 }
7221
7222 @Override
7223 public void onHandleAppCrash(WindowProcessController wpc) {
7224 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08007225 mRootWindowContainer.handleAppCrash(wpc);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007226 }
7227 }
Wale Ogunwale64258362018-10-16 15:13:37 -07007228
7229 @Override
7230 public int finishTopCrashedActivities(WindowProcessController crashedApp, String reason) {
7231 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08007232 return mRootWindowContainer.finishTopCrashedActivities(crashedApp, reason);
Wale Ogunwale64258362018-10-16 15:13:37 -07007233 }
7234 }
Wale Ogunwalebff2df42018-10-18 17:09:19 -07007235
Riddle Hsua0536432019-02-16 00:38:59 +08007236 @HotPath(caller = HotPath.OOM_ADJUSTMENT)
Wale Ogunwalebff2df42018-10-18 17:09:19 -07007237 @Override
7238 public void onUidActive(int uid, int procState) {
Riddle Hsua0536432019-02-16 00:38:59 +08007239 mActiveUids.onUidActive(uid, procState);
Wale Ogunwalebff2df42018-10-18 17:09:19 -07007240 }
7241
Riddle Hsua0536432019-02-16 00:38:59 +08007242 @HotPath(caller = HotPath.OOM_ADJUSTMENT)
Wale Ogunwalebff2df42018-10-18 17:09:19 -07007243 @Override
7244 public void onUidInactive(int uid) {
Riddle Hsua0536432019-02-16 00:38:59 +08007245 mActiveUids.onUidInactive(uid);
Wale Ogunwalebff2df42018-10-18 17:09:19 -07007246 }
7247
Riddle Hsua0536432019-02-16 00:38:59 +08007248 @HotPath(caller = HotPath.OOM_ADJUSTMENT)
Wale Ogunwalebff2df42018-10-18 17:09:19 -07007249 @Override
7250 public void onActiveUidsCleared() {
Riddle Hsua0536432019-02-16 00:38:59 +08007251 mActiveUids.onActiveUidsCleared();
Wale Ogunwalebff2df42018-10-18 17:09:19 -07007252 }
7253
Riddle Hsua0536432019-02-16 00:38:59 +08007254 @HotPath(caller = HotPath.OOM_ADJUSTMENT)
Wale Ogunwalebff2df42018-10-18 17:09:19 -07007255 @Override
7256 public void onUidProcStateChanged(int uid, int procState) {
Riddle Hsua0536432019-02-16 00:38:59 +08007257 mActiveUids.onUidProcStateChanged(uid, procState);
Wale Ogunwalebff2df42018-10-18 17:09:19 -07007258 }
Wale Ogunwale9de19442018-10-18 19:05:03 -07007259
7260 @Override
7261 public void onUidAddedToPendingTempWhitelist(int uid, String tag) {
Riddle Hsud7088f82019-01-30 13:04:50 +08007262 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale9de19442018-10-18 19:05:03 -07007263 mPendingTempWhitelist.put(uid, tag);
7264 }
7265 }
7266
7267 @Override
7268 public void onUidRemovedFromPendingTempWhitelist(int uid) {
Riddle Hsud7088f82019-01-30 13:04:50 +08007269 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale9de19442018-10-18 19:05:03 -07007270 mPendingTempWhitelist.remove(uid);
7271 }
7272 }
Wale Ogunwalee2172292018-10-25 10:11:10 -07007273
7274 @Override
7275 public boolean handleAppCrashInActivityController(String processName, int pid,
7276 String shortMsg, String longMsg, long timeMillis, String stackTrace,
7277 Runnable killCrashingAppCallback) {
7278 synchronized (mGlobalLock) {
7279 if (mController == null) {
7280 return false;
7281 }
7282
7283 try {
7284 if (!mController.appCrashed(processName, pid, shortMsg, longMsg, timeMillis,
7285 stackTrace)) {
7286 killCrashingAppCallback.run();
7287 return true;
7288 }
7289 } catch (RemoteException e) {
7290 mController = null;
7291 Watchdog.getInstance().setActivityController(null);
7292 }
7293 return false;
7294 }
7295 }
Wale Ogunwaled7889f52018-10-25 11:03:20 -07007296
7297 @Override
7298 public void removeRecentTasksByPackageName(String packageName, int userId) {
7299 synchronized (mGlobalLock) {
7300 mRecentTasks.removeTasksByPackageName(packageName, userId);
7301 }
7302 }
7303
7304 @Override
7305 public void cleanupRecentTasksForUser(int userId) {
7306 synchronized (mGlobalLock) {
7307 mRecentTasks.cleanupLocked(userId);
7308 }
7309 }
7310
7311 @Override
7312 public void loadRecentTasksForUser(int userId) {
7313 synchronized (mGlobalLock) {
7314 mRecentTasks.loadUserRecentsLocked(userId);
7315 }
7316 }
7317
7318 @Override
7319 public void onPackagesSuspendedChanged(String[] packages, boolean suspended, int userId) {
7320 synchronized (mGlobalLock) {
7321 mRecentTasks.onPackagesSuspendedChanged(packages, suspended, userId);
7322 }
7323 }
7324
7325 @Override
7326 public void flushRecentTasks() {
7327 mRecentTasks.flush();
7328 }
Wale Ogunwaled4d67d02018-10-25 18:09:39 -07007329
7330 @Override
7331 public WindowProcessController getHomeProcess() {
7332 synchronized (mGlobalLock) {
7333 return mHomeProcess;
7334 }
7335 }
7336
7337 @Override
7338 public WindowProcessController getPreviousProcess() {
7339 synchronized (mGlobalLock) {
7340 return mPreviousProcess;
7341 }
7342 }
Wale Ogunwale27c48ae2018-10-25 19:01:01 -07007343
7344 @Override
7345 public void clearLockedTasks(String reason) {
7346 synchronized (mGlobalLock) {
7347 getLockTaskController().clearLockedTasks(reason);
7348 }
7349 }
7350
7351 @Override
7352 public void updateUserConfiguration() {
7353 synchronized (mGlobalLock) {
7354 final Configuration configuration = new Configuration(getGlobalConfiguration());
7355 final int currentUserId = mAmInternal.getCurrentUserId();
7356 Settings.System.adjustConfigurationForUser(mContext.getContentResolver(),
7357 configuration, currentUserId, Settings.System.canWrite(mContext));
7358 updateConfigurationLocked(configuration, null /* starting */,
7359 false /* initLocale */, false /* persistent */, currentUserId,
7360 false /* deferResume */);
7361 }
7362 }
Wale Ogunwale387b34c2018-10-25 19:59:40 -07007363
7364 @Override
7365 public boolean canShowErrorDialogs() {
7366 synchronized (mGlobalLock) {
7367 return mShowDialogs && !mSleeping && !mShuttingDown
7368 && !mKeyguardController.isKeyguardOrAodShowing(DEFAULT_DISPLAY)
7369 && !hasUserRestriction(UserManager.DISALLOW_SYSTEM_ERROR_DIALOGS,
7370 mAmInternal.getCurrentUserId())
7371 && !(UserManager.isDeviceInDemoMode(mContext)
7372 && mAmInternal.getCurrentUser().isDemo());
7373 }
7374 }
Wale Ogunwale1f5e53d2018-11-05 05:12:46 -08007375
7376 @Override
7377 public void setProfileApp(String profileApp) {
7378 synchronized (mGlobalLock) {
7379 mProfileApp = profileApp;
7380 }
7381 }
7382
7383 @Override
7384 public void setProfileProc(WindowProcessController wpc) {
7385 synchronized (mGlobalLock) {
7386 mProfileProc = wpc;
7387 }
7388 }
7389
7390 @Override
7391 public void setProfilerInfo(ProfilerInfo profilerInfo) {
7392 synchronized (mGlobalLock) {
7393 mProfilerInfo = profilerInfo;
7394 }
7395 }
Igor Murashkinc0b47e42018-11-07 15:54:18 -08007396
7397 @Override
7398 public ActivityMetricsLaunchObserverRegistry getLaunchObserverRegistry() {
7399 synchronized (mGlobalLock) {
7400 return mStackSupervisor.getActivityMetricsLogger().getLaunchObserverRegistry();
7401 }
7402 }
Winson Chung3fb0f252019-01-08 17:41:55 -08007403
7404 @Override
Zak Cohen84b43182020-03-09 14:36:01 -07007405 public ActivityManager.TaskSnapshot getTaskSnapshotBlocking(
7406 int taskId, boolean isLowResolution) {
Peter Kalauskas4dc04602020-02-12 18:49:03 -08007407 return ActivityTaskManagerService.this.getTaskSnapshot(taskId, isLowResolution,
Zak Cohen84b43182020-03-09 14:36:01 -07007408 true /* restoreFromDisk */);
Winson Chung3fb0f252019-01-08 17:41:55 -08007409 }
Michal Karpinskicc88d7e2019-01-24 15:32:12 +00007410
7411 @Override
7412 public boolean isUidForeground(int uid) {
7413 synchronized (mGlobalLock) {
7414 return ActivityTaskManagerService.this.isUidForeground(uid);
7415 }
7416 }
Michal Karpinski4026cae2019-02-12 11:51:47 +00007417
7418 @Override
Ricky Wai96f5c352019-04-10 18:40:17 +01007419 public void setDeviceOwnerUid(int uid) {
Michal Karpinski4026cae2019-02-12 11:51:47 +00007420 synchronized (mGlobalLock) {
Ricky Wai96f5c352019-04-10 18:40:17 +01007421 ActivityTaskManagerService.this.setDeviceOwnerUid(uid);
Michal Karpinski4026cae2019-02-12 11:51:47 +00007422 }
7423 }
Ricky Wai2452e2d2019-03-18 19:19:08 +00007424
7425 @Override
7426 public void setCompanionAppPackages(int userId, Set<String> companionAppPackages) {
Michal Karpinskida34cd42019-04-02 19:46:52 +01007427 // Translate package names into UIDs
7428 final Set<Integer> result = new HashSet<>();
Ricky Wai2452e2d2019-03-18 19:19:08 +00007429 for (String pkg : companionAppPackages) {
Michal Karpinskida34cd42019-04-02 19:46:52 +01007430 final int uid = getPackageManagerInternalLocked().getPackageUid(pkg, 0, userId);
7431 if (uid >= 0) {
7432 result.add(uid);
7433 }
Ricky Wai2452e2d2019-03-18 19:19:08 +00007434 }
7435 synchronized (mGlobalLock) {
Michal Karpinskida34cd42019-04-02 19:46:52 +01007436 mCompanionAppUidsMap.put(userId, result);
Ricky Wai2452e2d2019-03-18 19:19:08 +00007437 }
7438 }
Wale Ogunwale6767eae2018-05-03 15:52:51 -07007439 }
Wale Ogunwaleb73f3962018-11-20 07:58:22 -08007440}