blob: 5220fb25af741a1ee8c6089bc6760a2929b18334 [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,
2479 SafeActivityOptions.fromBundle(bOptions), false /* fromRecents */);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002480 }
2481 }
2482
Ricky Waiaca8a772019-04-04 16:01:06 +01002483 void moveTaskToFrontLocked(@Nullable IApplicationThread appThread,
2484 @Nullable String callingPackage, int taskId, int flags, SafeActivityOptions options,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002485 boolean fromRecents) {
Ricky Waiaca8a772019-04-04 16:01:06 +01002486 final int callingPid = Binder.getCallingPid();
2487 final int callingUid = Binder.getCallingUid();
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07002488 assertPackageMatchesCallingUid(callingPackage);
Ricky Waiaca8a772019-04-04 16:01:06 +01002489 if (!checkAppSwitchAllowedLocked(callingPid, callingUid, -1, -1, "Task to front")) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002490 SafeActivityOptions.abort(options);
2491 return;
2492 }
2493 final long origId = Binder.clearCallingIdentity();
Ricky Waiaca8a772019-04-04 16:01:06 +01002494 WindowProcessController callerApp = null;
2495 if (appThread != null) {
2496 callerApp = getProcessController(appThread);
2497 }
2498 final ActivityStarter starter = getActivityStartController().obtainStarter(
2499 null /* intent */, "moveTaskToFront");
2500 if (starter.shouldAbortBackgroundActivityStart(callingUid, callingPid, callingPackage, -1,
Galia Peychevaed401cc2020-03-19 20:28:09 +01002501 -1, callerApp, null, false, null)) {
Alan Stokes9e245762019-05-21 14:54:28 +01002502 if (!isBackgroundActivityStartsEnabled()) {
Ricky Waiaca8a772019-04-04 16:01:06 +01002503 return;
2504 }
2505 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002506 try {
Louis Chang149d5c82019-12-30 09:47:39 +08002507 final Task task = mRootWindowContainer.anyTaskForId(taskId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002508 if (task == null) {
2509 Slog.d(TAG, "Could not find task for id: "+ taskId);
Winson Chungd0243682018-09-25 18:11:54 -07002510 SafeActivityOptions.abort(options);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002511 return;
2512 }
Wale Ogunwaled95c06b2018-05-08 10:35:38 -07002513 if (getLockTaskController().isLockTaskModeViolation(task)) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002514 Slog.e(TAG, "moveTaskToFront: Attempt to violate Lock Task Mode");
Winson Chungd0243682018-09-25 18:11:54 -07002515 SafeActivityOptions.abort(options);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002516 return;
2517 }
2518 ActivityOptions realOptions = options != null
2519 ? options.getOptions(mStackSupervisor)
2520 : null;
2521 mStackSupervisor.findTaskToMoveToFront(task, flags, realOptions, "moveTaskToFront",
2522 false /* forceNonResizable */);
2523
Wale Ogunwale21e06482019-11-18 05:14:15 -08002524 final ActivityRecord topActivity = task.getTopNonFinishingActivity();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002525 if (topActivity != null) {
2526
2527 // We are reshowing a task, use a starting window to hide the initial draw delay
2528 // so the transition can start earlier.
2529 topActivity.showStartingWindow(null /* prev */, false /* newTask */,
2530 true /* taskSwitch */, fromRecents);
2531 }
2532 } finally {
2533 Binder.restoreCallingIdentity(origId);
2534 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002535 }
2536
Ricky Waiaca8a772019-04-04 16:01:06 +01002537 /**
2538 * Return true if callingUid is system, or packageName belongs to that callingUid.
2539 */
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07002540 private boolean isSameApp(int callingUid, @Nullable String packageName) {
Ricky Waiaca8a772019-04-04 16:01:06 +01002541 try {
2542 if (callingUid != 0 && callingUid != SYSTEM_UID) {
2543 if (packageName == null) {
2544 return false;
2545 }
2546 final int uid = AppGlobals.getPackageManager().getPackageUid(packageName,
2547 PackageManager.MATCH_DEBUG_TRIAGED_MISSING,
2548 UserHandle.getUserId(callingUid));
2549 return UserHandle.isSameApp(callingUid, uid);
2550 }
2551 } catch (RemoteException e) {
2552 // Should not happen
2553 }
2554 return true;
2555 }
2556
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07002557 /**
2558 * Checks that the provided package name matches the current calling UID, throws a security
2559 * exception if it doesn't.
2560 */
2561 void assertPackageMatchesCallingUid(@Nullable String packageName) {
2562 final int callingUid = Binder.getCallingUid();
2563 if (isSameApp(callingUid, packageName)) {
2564 return;
2565 }
2566 final String msg = "Permission Denial: package=" + packageName
2567 + " does not belong to uid=" + callingUid;
2568 Slog.w(TAG, msg);
2569 throw new SecurityException(msg);
2570 }
2571
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002572 boolean checkAppSwitchAllowedLocked(int sourcePid, int sourceUid,
2573 int callingPid, int callingUid, String name) {
2574 if (mAppSwitchesAllowedTime < SystemClock.uptimeMillis()) {
2575 return true;
2576 }
2577
2578 if (getRecentTasks().isCallerRecents(sourceUid)) {
2579 return true;
2580 }
2581
2582 int perm = checkComponentPermission(STOP_APP_SWITCHES, sourcePid, sourceUid, -1, true);
2583 if (perm == PackageManager.PERMISSION_GRANTED) {
2584 return true;
2585 }
2586 if (checkAllowAppSwitchUid(sourceUid)) {
2587 return true;
2588 }
2589
2590 // If the actual IPC caller is different from the logical source, then
2591 // also see if they are allowed to control app switches.
2592 if (callingUid != -1 && callingUid != sourceUid) {
2593 perm = checkComponentPermission(STOP_APP_SWITCHES, callingPid, callingUid, -1, true);
2594 if (perm == PackageManager.PERMISSION_GRANTED) {
2595 return true;
2596 }
2597 if (checkAllowAppSwitchUid(callingUid)) {
2598 return true;
2599 }
2600 }
2601
2602 Slog.w(TAG, name + " request from " + sourceUid + " stopped");
2603 return false;
2604 }
2605
2606 private boolean checkAllowAppSwitchUid(int uid) {
2607 ArrayMap<String, Integer> types = mAllowAppSwitchUids.get(UserHandle.getUserId(uid));
2608 if (types != null) {
2609 for (int i = types.size() - 1; i >= 0; i--) {
2610 if (types.valueAt(i).intValue() == uid) {
2611 return true;
2612 }
2613 }
2614 }
2615 return false;
2616 }
2617
2618 @Override
2619 public void setActivityController(IActivityController controller, boolean imAMonkey) {
2620 mAmInternal.enforceCallingPermission(android.Manifest.permission.SET_ACTIVITY_WATCHER,
2621 "setActivityController()");
2622 synchronized (mGlobalLock) {
2623 mController = controller;
2624 mControllerIsAMonkey = imAMonkey;
2625 Watchdog.getInstance().setActivityController(controller);
2626 }
2627 }
2628
Wale Ogunwale387b34c2018-10-25 19:59:40 -07002629 public boolean isControllerAMonkey() {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002630 synchronized (mGlobalLock) {
2631 return mController != null && mControllerIsAMonkey;
2632 }
2633 }
2634
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002635 @Override
2636 public int getTaskForActivity(IBinder token, boolean onlyRoot) {
2637 synchronized (mGlobalLock) {
2638 return ActivityRecord.getTaskForActivityLocked(token, onlyRoot);
2639 }
2640 }
2641
2642 @Override
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002643 public List<ActivityManager.RunningTaskInfo> getTasks(int maxNum) {
Winson Chunge5ab0172020-03-21 23:00:24 -07002644 return getFilteredTasks(maxNum, false /* filterForVisibleRecents */);
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002645 }
2646
Winson Chunge5ab0172020-03-21 23:00:24 -07002647 /**
2648 * @param filterOnlyVisibleRecents whether to filter the tasks based on whether they would ever
2649 * be visible in the recent task list in systemui
2650 */
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002651 @Override
2652 public List<ActivityManager.RunningTaskInfo> getFilteredTasks(int maxNum,
Winson Chunge5ab0172020-03-21 23:00:24 -07002653 boolean filterOnlyVisibleRecents) {
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002654 final int callingUid = Binder.getCallingUid();
Nicholas Sauer0259e532019-08-30 08:24:55 -07002655 final int callingPid = Binder.getCallingPid();
2656 final boolean crossUser = isCrossUserAllowed(callingPid, callingUid);
Nicholas Sauer3f9249f2019-09-10 20:23:41 -07002657 final int[] profileIds = getUserManager().getProfileIds(
2658 UserHandle.getUserId(callingUid), true);
2659 ArraySet<Integer> callingProfileIds = new ArraySet<>();
2660 for (int i = 0; i < profileIds.length; i++) {
2661 callingProfileIds.add(profileIds[i]);
2662 }
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002663 ArrayList<ActivityManager.RunningTaskInfo> list = new ArrayList<>();
2664
2665 synchronized (mGlobalLock) {
2666 if (DEBUG_ALL) Slog.v(TAG, "getTasks: max=" + maxNum);
2667
Nicholas Sauer0259e532019-08-30 08:24:55 -07002668 final boolean allowed = isGetTasksAllowed("getTasks", callingPid, callingUid);
Winson Chunge5ab0172020-03-21 23:00:24 -07002669 mRootWindowContainer.getRunningTasks(maxNum, list, filterOnlyVisibleRecents, callingUid,
2670 allowed, crossUser, callingProfileIds);
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002671 }
2672
2673 return list;
2674 }
2675
2676 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002677 public final void finishSubActivity(IBinder token, String resultWho, int requestCode) {
2678 synchronized (mGlobalLock) {
2679 final long origId = Binder.clearCallingIdentity();
Wale Ogunwalea38654f2019-11-17 20:37:15 -08002680 try {
2681 ActivityRecord r = ActivityRecord.isInStackLocked(token);
2682 if (r == null) return;
2683
2684 final PooledConsumer c = PooledLambda.obtainConsumer(
2685 ActivityRecord::finishIfSubActivity, PooledLambda.__(ActivityRecord.class),
2686 r, resultWho, requestCode);
2687 // TODO: This should probably only loop over the task since you need to be in the
2688 // same task to return results.
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08002689 r.getRootTask().forAllActivities(c);
Wale Ogunwalea38654f2019-11-17 20:37:15 -08002690 c.recycle();
2691
2692 updateOomAdj();
2693 } finally {
2694 Binder.restoreCallingIdentity(origId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002695 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002696 }
2697 }
2698
2699 @Override
2700 public boolean willActivityBeVisible(IBinder token) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002701 synchronized (mGlobalLock) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002702 ActivityStack stack = ActivityRecord.getStackLocked(token);
2703 if (stack != null) {
Wale Ogunwalea38654f2019-11-17 20:37:15 -08002704 return stack.willActivityBeVisible(token);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002705 }
2706 return false;
2707 }
2708 }
2709
2710 @Override
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002711 public void moveTaskToStack(int taskId, int stackId, boolean toTop) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002712 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "moveTaskToStack()");
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002713 synchronized (mGlobalLock) {
2714 final long ident = Binder.clearCallingIdentity();
2715 try {
Louis Chang149d5c82019-12-30 09:47:39 +08002716 final Task task = mRootWindowContainer.anyTaskForId(taskId);
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002717 if (task == null) {
2718 Slog.w(TAG, "moveTaskToStack: No task for id=" + taskId);
2719 return;
2720 }
2721
2722 if (DEBUG_STACK) Slog.d(TAG_STACK, "moveTaskToStack: moving task=" + taskId
2723 + " to stackId=" + stackId + " toTop=" + toTop);
2724
Louis Chang149d5c82019-12-30 09:47:39 +08002725 final ActivityStack stack = mRootWindowContainer.getStack(stackId);
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002726 if (stack == null) {
2727 throw new IllegalStateException(
2728 "moveTaskToStack: No stack for stackId=" + stackId);
2729 }
2730 if (!stack.isActivityTypeStandardOrUndefined()) {
2731 throw new IllegalArgumentException("moveTaskToStack: Attempt to move task "
2732 + taskId + " to stack " + stackId);
2733 }
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002734 task.reparent(stack, toTop, REPARENT_KEEP_STACK_AT_FRONT, ANIMATE, !DEFER_RESUME,
2735 "moveTaskToStack");
2736 } finally {
2737 Binder.restoreCallingIdentity(ident);
2738 }
2739 }
2740 }
2741
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002742 /**
2743 * Moves the specified task to the primary-split-screen stack.
2744 *
2745 * @param taskId Id of task to move.
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002746 * @param toTop If the task and stack should be moved to the top.
Winson Chung7ccc6812020-01-23 16:15:10 -08002747 * @return Whether the task was successfully put into splitscreen.
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002748 */
2749 @Override
Evan Rosky73a7fe92019-11-18 18:28:01 -08002750 public boolean setTaskWindowingModeSplitScreenPrimary(int taskId, boolean toTop) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002751 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS,
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002752 "setTaskWindowingModeSplitScreenPrimary()");
2753 synchronized (mGlobalLock) {
2754 final long ident = Binder.clearCallingIdentity();
2755 try {
Evan Roskyaf9f27c2020-02-18 18:58:35 +00002756 return setTaskWindowingModeSplitScreen(taskId, WINDOWING_MODE_SPLIT_SCREEN_PRIMARY,
2757 toTop);
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002758 } finally {
2759 Binder.restoreCallingIdentity(ident);
2760 }
2761 }
2762 }
2763
2764 /**
Evan Roskyaf9f27c2020-02-18 18:58:35 +00002765 * Moves the specified task into a split-screen tile.
2766 */
2767 private boolean setTaskWindowingModeSplitScreen(int taskId, int windowingMode, boolean toTop) {
2768 if (!WindowConfiguration.isSplitScreenWindowingMode(windowingMode)) {
2769 throw new IllegalArgumentException("Calling setTaskWindowingModeSplitScreen with non"
2770 + "split-screen mode: " + windowingMode);
2771 }
2772 if (isInLockTaskMode()) {
2773 Slog.w(TAG, "setTaskWindowingModeSplitScreen: Is in lock task mode="
2774 + getLockTaskModeState());
2775 return false;
2776 }
2777
2778 final Task task = mRootWindowContainer.anyTaskForId(taskId,
2779 MATCH_TASK_IN_STACKS_ONLY);
2780 if (task == null) {
2781 Slog.w(TAG, "setTaskWindowingModeSplitScreenPrimary: No task for id=" + taskId);
2782 return false;
2783 }
2784 if (!task.isActivityTypeStandardOrUndefined()) {
2785 throw new IllegalArgumentException("setTaskWindowingMode: Attempt to move"
2786 + " non-standard task " + taskId + " to split-screen windowing mode");
2787 }
Wale Ogunwale0d465192020-01-23 19:14:44 -08002788 if (!task.supportsSplitScreenWindowingMode()) {
2789 return false;
2790 }
Evan Roskyaf9f27c2020-02-18 18:58:35 +00002791
2792 final int prevMode = task.getWindowingMode();
Louis Changcf3d1452020-04-16 16:36:05 +08002793 if (prevMode == windowingMode) {
2794 // The task is already in split-screen and with correct windowing mode.
2795 return true;
2796 }
2797
Louis Changa009c762020-02-26 11:21:31 +08002798 moveTaskToSplitScreenPrimaryTask(task, toTop);
Wale Ogunwale0d465192020-01-23 19:14:44 -08002799 return prevMode != task.getWindowingMode();
2800 }
2801
Louis Changa009c762020-02-26 11:21:31 +08002802 void moveTaskToSplitScreenPrimaryTask(Task task, boolean toTop) {
Andrii Kulian86d676c2020-03-27 19:34:54 -07002803 final TaskDisplayArea taskDisplayArea = task.getDisplayArea();
2804 final ActivityStack primarySplitTask = taskDisplayArea.getRootSplitScreenPrimaryTask();
Louis Changa009c762020-02-26 11:21:31 +08002805 if (primarySplitTask == null) {
2806 throw new IllegalStateException("Can't enter split without associated organized task");
Evan Roskyaf9f27c2020-02-18 18:58:35 +00002807 }
Louis Changa009c762020-02-26 11:21:31 +08002808
2809 if (toTop) {
Andrii Kulian86d676c2020-03-27 19:34:54 -07002810 taskDisplayArea.positionStackAt(POSITION_TOP, primarySplitTask,
Andrii Kulian9ea12da2020-03-27 17:16:38 -07002811 false /* includingParents */);
Evan Roskyaf9f27c2020-02-18 18:58:35 +00002812 }
2813 WindowContainerTransaction wct = new WindowContainerTransaction();
Wale Ogunwale465b1e12020-03-31 12:15:51 -07002814 // Clear out current windowing mode before reparenting to split taks.
2815 wct.setWindowingMode(
2816 task.getStack().mRemoteToken.toWindowContainerToken(), WINDOWING_MODE_UNDEFINED);
Wale Ogunwaleadf116e2020-03-27 16:36:01 -07002817 wct.reparent(task.getStack().mRemoteToken.toWindowContainerToken(),
2818 primarySplitTask.mRemoteToken.toWindowContainerToken(), toTop);
Wale Ogunwale568f9f412020-03-21 22:27:35 -07002819 mWindowOrganizerController.applyTransaction(wct);
Evan Roskyaf9f27c2020-02-18 18:58:35 +00002820 }
2821
2822 /**
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002823 * Removes stacks in the input windowing modes from the system if they are of activity type
2824 * ACTIVITY_TYPE_STANDARD or ACTIVITY_TYPE_UNDEFINED
2825 */
2826 @Override
2827 public void removeStacksInWindowingModes(int[] windowingModes) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002828 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS,
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002829 "removeStacksInWindowingModes()");
2830
2831 synchronized (mGlobalLock) {
2832 final long ident = Binder.clearCallingIdentity();
2833 try {
Louis Chang149d5c82019-12-30 09:47:39 +08002834 mRootWindowContainer.removeStacksInWindowingModes(windowingModes);
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002835 } finally {
2836 Binder.restoreCallingIdentity(ident);
2837 }
2838 }
2839 }
2840
2841 @Override
2842 public void removeStacksWithActivityTypes(int[] activityTypes) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002843 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS,
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002844 "removeStacksWithActivityTypes()");
2845
2846 synchronized (mGlobalLock) {
2847 final long ident = Binder.clearCallingIdentity();
2848 try {
Louis Chang149d5c82019-12-30 09:47:39 +08002849 mRootWindowContainer.removeStacksWithActivityTypes(activityTypes);
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002850 } finally {
2851 Binder.restoreCallingIdentity(ident);
2852 }
2853 }
2854 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002855
2856 @Override
2857 public ParceledListSlice<ActivityManager.RecentTaskInfo> getRecentTasks(int maxNum, int flags,
2858 int userId) {
2859 final int callingUid = Binder.getCallingUid();
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002860 userId = handleIncomingUser(Binder.getCallingPid(), callingUid, userId, "getRecentTasks");
2861 final boolean allowed = isGetTasksAllowed("getRecentTasks", Binder.getCallingPid(),
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002862 callingUid);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002863 synchronized (mGlobalLock) {
Winson Chung66b08f02020-03-03 14:32:35 -08002864 return mRecentTasks.getRecentTasks(maxNum, flags, allowed, userId, callingUid);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002865 }
2866 }
2867
Evan Rosky29d4a0a2020-02-04 16:40:44 -08002868 // TODO(148895075): deprecate and replace with task equivalents
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002869 @Override
2870 public List<ActivityManager.StackInfo> getAllStackInfos() {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002871 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "getAllStackInfos()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002872 long ident = Binder.clearCallingIdentity();
2873 try {
2874 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08002875 return mRootWindowContainer.getAllStackInfos(INVALID_DISPLAY);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002876 }
2877 } finally {
2878 Binder.restoreCallingIdentity(ident);
2879 }
2880 }
2881
2882 @Override
2883 public ActivityManager.StackInfo getStackInfo(int windowingMode, int activityType) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002884 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "getStackInfo()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002885 long ident = Binder.clearCallingIdentity();
2886 try {
2887 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08002888 return mRootWindowContainer.getStackInfo(windowingMode, activityType);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002889 }
2890 } finally {
2891 Binder.restoreCallingIdentity(ident);
2892 }
2893 }
2894
Evan Rosky29d4a0a2020-02-04 16:40:44 -08002895 // TODO(148895075): deprecate and replace with task equivalents
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002896 @Override
Evan Roskyfd439692019-11-06 16:12:59 -08002897 public List<ActivityManager.StackInfo> getAllStackInfosOnDisplay(int displayId) {
2898 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "getAllStackInfos()");
2899 long ident = Binder.clearCallingIdentity();
2900 try {
2901 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08002902 return mRootWindowContainer.getAllStackInfos(displayId);
Evan Roskyfd439692019-11-06 16:12:59 -08002903 }
2904 } finally {
2905 Binder.restoreCallingIdentity(ident);
2906 }
2907 }
2908
2909 @Override
2910 public ActivityManager.StackInfo getStackInfoOnDisplay(int windowingMode, int activityType,
2911 int displayId) {
2912 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "getStackInfo()");
2913 long ident = Binder.clearCallingIdentity();
2914 try {
2915 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08002916 return mRootWindowContainer.getStackInfo(windowingMode, activityType, displayId);
Evan Roskyfd439692019-11-06 16:12:59 -08002917 }
2918 } finally {
2919 Binder.restoreCallingIdentity(ident);
2920 }
2921 }
2922
2923 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002924 public void cancelRecentsAnimation(boolean restoreHomeStackPosition) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002925 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "cancelRecentsAnimation()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002926 final long callingUid = Binder.getCallingUid();
2927 final long origId = Binder.clearCallingIdentity();
2928 try {
2929 synchronized (mGlobalLock) {
2930 // Cancel the recents animation synchronously (do not hold the WM lock)
Wale Ogunwalea441b922019-06-27 19:21:44 -07002931 mWindowManager.cancelRecentsAnimation(restoreHomeStackPosition
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002932 ? REORDER_MOVE_TO_ORIGINAL_POSITION
2933 : REORDER_KEEP_IN_PLACE, "cancelRecentsAnimation/uid=" + callingUid);
2934 }
2935 } finally {
2936 Binder.restoreCallingIdentity(origId);
2937 }
2938 }
2939
2940 @Override
2941 public void startLockTaskModeByToken(IBinder token) {
2942 synchronized (mGlobalLock) {
2943 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
2944 if (r == null) {
2945 return;
2946 }
Louis Changcdec0802019-11-11 11:45:07 +08002947 startLockTaskModeLocked(r.getTask(), false /* isSystemCaller */);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002948 }
2949 }
2950
2951 @Override
Riddle Hsu090ac6f2018-10-31 12:55:29 +08002952 public void startSystemLockTaskMode(int taskId) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002953 mAmInternal.enforceCallingPermission(MANAGE_ACTIVITY_STACKS, "startSystemLockTaskMode");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002954 // This makes inner call to look as if it was initiated by system.
2955 long ident = Binder.clearCallingIdentity();
2956 try {
2957 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08002958 final Task task = mRootWindowContainer.anyTaskForId(taskId,
Riddle Hsu090ac6f2018-10-31 12:55:29 +08002959 MATCH_TASK_IN_STACKS_ONLY);
2960 if (task == null) {
2961 return;
2962 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002963
2964 // When starting lock task mode the stack must be in front and focused
2965 task.getStack().moveToFront("startSystemLockTaskMode");
2966 startLockTaskModeLocked(task, true /* isSystemCaller */);
2967 }
2968 } finally {
2969 Binder.restoreCallingIdentity(ident);
2970 }
2971 }
2972
2973 @Override
2974 public void stopLockTaskModeByToken(IBinder token) {
2975 synchronized (mGlobalLock) {
2976 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
2977 if (r == null) {
2978 return;
2979 }
Louis Changcdec0802019-11-11 11:45:07 +08002980 stopLockTaskModeInternal(r.getTask(), false /* isSystemCaller */);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002981 }
2982 }
2983
2984 /**
2985 * This API should be called by SystemUI only when user perform certain action to dismiss
2986 * lock task mode. We should only dismiss pinned lock task mode in this case.
2987 */
2988 @Override
2989 public void stopSystemLockTaskMode() throws RemoteException {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002990 mAmInternal.enforceCallingPermission(MANAGE_ACTIVITY_STACKS, "stopSystemLockTaskMode");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002991 stopLockTaskModeInternal(null, true /* isSystemCaller */);
2992 }
2993
Louis Changcdec0802019-11-11 11:45:07 +08002994 private void startLockTaskModeLocked(@Nullable Task task, boolean isSystemCaller) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002995 if (DEBUG_LOCKTASK) Slog.w(TAG_LOCKTASK, "startLockTaskModeLocked: " + task);
2996 if (task == null || task.mLockTaskAuth == LOCK_TASK_AUTH_DONT_LOCK) {
2997 return;
2998 }
2999
Louis Chang149d5c82019-12-30 09:47:39 +08003000 final ActivityStack stack = mRootWindowContainer.getTopDisplayFocusedStack();
Wale Ogunwale85fb19a2019-12-05 10:41:05 +09003001 if (stack == null || task != stack.getTopMostTask()) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003002 throw new IllegalArgumentException("Invalid task, not in foreground");
3003 }
3004
3005 // {@code isSystemCaller} is used to distinguish whether this request is initiated by the
3006 // system or a specific app.
3007 // * System-initiated requests will only start the pinned mode (screen pinning)
3008 // * App-initiated requests
3009 // - will put the device in fully locked mode (LockTask), if the app is whitelisted
3010 // - will start the pinned mode, otherwise
3011 final int callingUid = Binder.getCallingUid();
3012 long ident = Binder.clearCallingIdentity();
3013 try {
3014 // When a task is locked, dismiss the pinned stack if it exists
Louis Chang149d5c82019-12-30 09:47:39 +08003015 mRootWindowContainer.removeStacksInWindowingModes(WINDOWING_MODE_PINNED);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003016
Wale Ogunwaled95c06b2018-05-08 10:35:38 -07003017 getLockTaskController().startLockTaskMode(task, isSystemCaller, callingUid);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003018 } finally {
3019 Binder.restoreCallingIdentity(ident);
3020 }
3021 }
3022
Louis Changcdec0802019-11-11 11:45:07 +08003023 private void stopLockTaskModeInternal(@Nullable Task task, boolean isSystemCaller) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003024 final int callingUid = Binder.getCallingUid();
3025 long ident = Binder.clearCallingIdentity();
3026 try {
3027 synchronized (mGlobalLock) {
Wale Ogunwaled95c06b2018-05-08 10:35:38 -07003028 getLockTaskController().stopLockTaskMode(task, isSystemCaller, callingUid);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003029 }
3030 // Launch in-call UI if a call is ongoing. This is necessary to allow stopping the lock
3031 // task and jumping straight into a call in the case of emergency call back.
3032 TelecomManager tm = (TelecomManager) mContext.getSystemService(Context.TELECOM_SERVICE);
3033 if (tm != null) {
3034 tm.showInCallScreen(false);
3035 }
3036 } finally {
3037 Binder.restoreCallingIdentity(ident);
3038 }
3039 }
3040
3041 @Override
Wale Ogunwale27c48ae2018-10-25 19:01:01 -07003042 public void updateLockTaskPackages(int userId, String[] packages) {
3043 final int callingUid = Binder.getCallingUid();
3044 if (callingUid != 0 && callingUid != SYSTEM_UID) {
3045 mAmInternal.enforceCallingPermission(Manifest.permission.UPDATE_LOCK_TASK_PACKAGES,
3046 "updateLockTaskPackages()");
3047 }
Riddle Hsu8419e4b2019-09-18 23:28:01 +08003048 synchronized (mGlobalLock) {
Wale Ogunwale27c48ae2018-10-25 19:01:01 -07003049 if (DEBUG_LOCKTASK) Slog.w(TAG_LOCKTASK, "Whitelisting " + userId + ":"
3050 + Arrays.toString(packages));
3051 getLockTaskController().updateLockTaskPackages(userId, packages);
3052 }
3053 }
3054
3055 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003056 public boolean isInLockTaskMode() {
3057 return getLockTaskModeState() != LOCK_TASK_MODE_NONE;
3058 }
3059
3060 @Override
3061 public int getLockTaskModeState() {
3062 synchronized (mGlobalLock) {
Wale Ogunwaled95c06b2018-05-08 10:35:38 -07003063 return getLockTaskController().getLockTaskModeState();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003064 }
3065 }
3066
3067 @Override
3068 public void setTaskDescription(IBinder token, ActivityManager.TaskDescription td) {
3069 synchronized (mGlobalLock) {
3070 ActivityRecord r = ActivityRecord.isInStackLocked(token);
3071 if (r != null) {
3072 r.setTaskDescription(td);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003073 }
3074 }
3075 }
3076
3077 @Override
3078 public Bundle getActivityOptions(IBinder token) {
3079 final long origId = Binder.clearCallingIdentity();
3080 try {
3081 synchronized (mGlobalLock) {
3082 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
3083 if (r != null) {
Jorim Jaggi346702a2019-05-08 17:49:33 +02003084 final ActivityOptions activityOptions = r.takeOptionsLocked(
3085 true /* fromClient */);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003086 return activityOptions == null ? null : activityOptions.toBundle();
3087 }
3088 return null;
3089 }
3090 } finally {
3091 Binder.restoreCallingIdentity(origId);
3092 }
3093 }
3094
3095 @Override
3096 public List<IBinder> getAppTasks(String callingPackage) {
3097 int callingUid = Binder.getCallingUid();
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07003098 assertPackageMatchesCallingUid(callingPackage);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003099 long ident = Binder.clearCallingIdentity();
3100 try {
3101 synchronized (mGlobalLock) {
Wale Ogunwale16e505a2018-05-07 15:00:49 -07003102 return mRecentTasks.getAppTasksList(callingUid, callingPackage);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003103 }
3104 } finally {
3105 Binder.restoreCallingIdentity(ident);
3106 }
3107 }
3108
3109 @Override
3110 public void finishVoiceTask(IVoiceInteractionSession session) {
3111 synchronized (mGlobalLock) {
3112 final long origId = Binder.clearCallingIdentity();
3113 try {
3114 // TODO: VI Consider treating local voice interactions and voice tasks
3115 // differently here
Louis Chang149d5c82019-12-30 09:47:39 +08003116 mRootWindowContainer.finishVoiceTask(session);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003117 } finally {
3118 Binder.restoreCallingIdentity(origId);
3119 }
3120 }
3121
3122 }
3123
3124 @Override
3125 public boolean isTopOfTask(IBinder token) {
3126 synchronized (mGlobalLock) {
3127 ActivityRecord r = ActivityRecord.isInStackLocked(token);
Wale Ogunwale21e06482019-11-18 05:14:15 -08003128 return r != null && r.getTask().getTopNonFinishingActivity() == r;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003129 }
3130 }
3131
3132 @Override
3133 public void notifyLaunchTaskBehindComplete(IBinder token) {
3134 mStackSupervisor.scheduleLaunchTaskBehindComplete(token);
3135 }
3136
3137 @Override
3138 public void notifyEnterAnimationComplete(IBinder token) {
Wale Ogunwaled0412b32018-05-08 09:25:50 -07003139 mH.post(() -> {
3140 synchronized (mGlobalLock) {
3141 ActivityRecord r = ActivityRecord.forTokenLocked(token);
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07003142 if (r != null && r.attachedToProcess()) {
Wale Ogunwaled0412b32018-05-08 09:25:50 -07003143 try {
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07003144 r.app.getThread().scheduleEnterAnimationComplete(r.appToken);
Wale Ogunwaled0412b32018-05-08 09:25:50 -07003145 } catch (RemoteException e) {
3146 }
3147 }
3148 }
3149
3150 });
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003151 }
3152
3153 /** Called from an app when assist data is ready. */
3154 @Override
3155 public void reportAssistContextExtras(IBinder token, Bundle extras, AssistStructure structure,
3156 AssistContent content, Uri referrer) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003157 PendingAssistExtras pae = (PendingAssistExtras) token;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003158 synchronized (pae) {
3159 pae.result = extras;
3160 pae.structure = structure;
3161 pae.content = content;
3162 if (referrer != null) {
3163 pae.extras.putParcelable(Intent.EXTRA_REFERRER, referrer);
3164 }
3165 if (structure != null) {
Winson Chung48b25652018-10-22 14:04:30 -07003166 // Pre-fill the task/activity component for all assist data receivers
Louis Changcdec0802019-11-11 11:45:07 +08003167 structure.setTaskId(pae.activity.getTask().mTaskId);
Wale Ogunwale8b19de92018-11-29 19:58:26 -08003168 structure.setActivityComponent(pae.activity.mActivityComponent);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003169 structure.setHomeActivity(pae.isHome);
3170 }
3171 pae.haveResult = true;
3172 pae.notifyAll();
3173 if (pae.intent == null && pae.receiver == null) {
3174 // Caller is just waiting for the result.
3175 return;
3176 }
3177 }
3178 // We are now ready to launch the assist activity.
3179 IAssistDataReceiver sendReceiver = null;
3180 Bundle sendBundle = null;
3181 synchronized (mGlobalLock) {
3182 buildAssistBundleLocked(pae, extras);
3183 boolean exists = mPendingAssistExtras.remove(pae);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003184 mUiHandler.removeCallbacks(pae);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003185 if (!exists) {
3186 // Timed out.
3187 return;
3188 }
3189
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003190 if ((sendReceiver = pae.receiver) != null) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003191 // Caller wants result sent back to them.
3192 sendBundle = new Bundle();
Sunny Goyald40c3452019-03-20 12:46:55 -07003193 sendBundle.putInt(ActivityTaskManagerInternal.ASSIST_TASK_ID,
Louis Changcdec0802019-11-11 11:45:07 +08003194 pae.activity.getTask().mTaskId);
Sunny Goyald40c3452019-03-20 12:46:55 -07003195 sendBundle.putBinder(ActivityTaskManagerInternal.ASSIST_ACTIVITY_ID,
3196 pae.activity.assistToken);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003197 sendBundle.putBundle(ASSIST_KEY_DATA, pae.extras);
3198 sendBundle.putParcelable(ASSIST_KEY_STRUCTURE, pae.structure);
3199 sendBundle.putParcelable(ASSIST_KEY_CONTENT, pae.content);
3200 sendBundle.putBundle(ASSIST_KEY_RECEIVER_EXTRAS, pae.receiverExtras);
3201 }
3202 }
3203 if (sendReceiver != null) {
3204 try {
3205 sendReceiver.onHandleAssistData(sendBundle);
3206 } catch (RemoteException e) {
3207 }
3208 return;
3209 }
3210
3211 final long ident = Binder.clearCallingIdentity();
3212 try {
3213 if (TextUtils.equals(pae.intent.getAction(),
3214 android.service.voice.VoiceInteractionService.SERVICE_INTERFACE)) {
Galia Peychevabffbfc32019-06-18 10:11:35 +02003215 // Start voice interaction through VoiceInteractionManagerService.
3216 mAssistUtils.showSessionForActiveService(sendBundle, SHOW_SOURCE_APPLICATION,
3217 null, null);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003218 } else {
3219 pae.intent.replaceExtras(pae.extras);
3220 pae.intent.setFlags(FLAG_ACTIVITY_NEW_TASK
3221 | Intent.FLAG_ACTIVITY_SINGLE_TOP
3222 | Intent.FLAG_ACTIVITY_CLEAR_TOP);
Wale Ogunwale31913b52018-10-13 08:29:31 -07003223 mInternal.closeSystemDialogs("assist");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003224
3225 try {
3226 mContext.startActivityAsUser(pae.intent, new UserHandle(pae.userHandle));
3227 } catch (ActivityNotFoundException e) {
3228 Slog.w(TAG, "No activity to handle assist action.", e);
3229 }
3230 }
3231 } finally {
3232 Binder.restoreCallingIdentity(ident);
3233 }
3234 }
3235
3236 @Override
3237 public int addAppTask(IBinder activityToken, Intent intent,
3238 ActivityManager.TaskDescription description, Bitmap thumbnail) throws RemoteException {
3239 final int callingUid = Binder.getCallingUid();
3240 final long callingIdent = Binder.clearCallingIdentity();
3241
3242 try {
3243 synchronized (mGlobalLock) {
3244 ActivityRecord r = ActivityRecord.isInStackLocked(activityToken);
3245 if (r == null) {
3246 throw new IllegalArgumentException("Activity does not exist; token="
3247 + activityToken);
3248 }
3249 ComponentName comp = intent.getComponent();
3250 if (comp == null) {
3251 throw new IllegalArgumentException("Intent " + intent
3252 + " must specify explicit component");
3253 }
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003254 if (thumbnail.getWidth() != mThumbnailWidth
3255 || thumbnail.getHeight() != mThumbnailHeight) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003256 throw new IllegalArgumentException("Bad thumbnail size: got "
3257 + thumbnail.getWidth() + "x" + thumbnail.getHeight() + ", require "
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003258 + mThumbnailWidth + "x" + mThumbnailHeight);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003259 }
3260 if (intent.getSelector() != null) {
3261 intent.setSelector(null);
3262 }
3263 if (intent.getSourceBounds() != null) {
3264 intent.setSourceBounds(null);
3265 }
3266 if ((intent.getFlags()&Intent.FLAG_ACTIVITY_NEW_DOCUMENT) != 0) {
3267 if ((intent.getFlags()&Intent.FLAG_ACTIVITY_RETAIN_IN_RECENTS) == 0) {
3268 // The caller has added this as an auto-remove task... that makes no
3269 // sense, so turn off auto-remove.
3270 intent.addFlags(Intent.FLAG_ACTIVITY_RETAIN_IN_RECENTS);
3271 }
3272 }
3273 final ActivityInfo ainfo = AppGlobals.getPackageManager().getActivityInfo(comp,
3274 STOCK_PM_FLAGS, UserHandle.getUserId(callingUid));
3275 if (ainfo.applicationInfo.uid != callingUid) {
3276 throw new SecurityException(
3277 "Can't add task for another application: target uid="
3278 + ainfo.applicationInfo.uid + ", calling uid=" + callingUid);
3279 }
3280
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08003281 final ActivityStack stack = r.getRootTask();
Andrii Kulian86d676c2020-03-27 19:34:54 -07003282 final Task task = stack.getDisplayArea().createStack(stack.getWindowingMode(),
3283 stack.getActivityType(), !ON_TOP, ainfo, intent,
Louis Changa009c762020-02-26 11:21:31 +08003284 false /* createdByOrganizer */);
Wale Ogunwale0d465192020-01-23 19:14:44 -08003285
Wale Ogunwale16e505a2018-05-07 15:00:49 -07003286 if (!mRecentTasks.addToBottom(task)) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003287 // The app has too many tasks already and we can't add any more
Wale Ogunwale2322bed2019-10-10 17:24:19 +02003288 stack.removeChild(task, "addAppTask");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003289 return INVALID_TASK_ID;
3290 }
Wale Ogunwale2322bed2019-10-10 17:24:19 +02003291 task.getTaskDescription().copyFrom(description);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003292
3293 // TODO: Send the thumbnail to WM to store it.
3294
Wale Ogunwale4e79a1c2019-10-05 20:52:40 -07003295 return task.mTaskId;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003296 }
3297 } finally {
3298 Binder.restoreCallingIdentity(callingIdent);
3299 }
3300 }
3301
3302 @Override
3303 public Point getAppTaskThumbnailSize() {
3304 synchronized (mGlobalLock) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003305 return new Point(mThumbnailWidth, mThumbnailHeight);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003306 }
3307 }
3308
3309 @Override
3310 public void setTaskResizeable(int taskId, int resizeableMode) {
3311 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08003312 final Task task = mRootWindowContainer.anyTaskForId(
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003313 taskId, MATCH_TASK_IN_STACKS_OR_RECENT_TASKS);
3314 if (task == null) {
3315 Slog.w(TAG, "setTaskResizeable: taskId=" + taskId + " not found");
3316 return;
3317 }
3318 task.setResizeMode(resizeableMode);
3319 }
3320 }
3321
3322 @Override
3323 public void resizeTask(int taskId, Rect bounds, int resizeMode) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003324 mAmInternal.enforceCallingPermission(MANAGE_ACTIVITY_STACKS, "resizeTask()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003325 long ident = Binder.clearCallingIdentity();
3326 try {
3327 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08003328 final Task task = mRootWindowContainer.anyTaskForId(taskId,
Riddle Hsu090ac6f2018-10-31 12:55:29 +08003329 MATCH_TASK_IN_STACKS_ONLY);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003330 if (task == null) {
3331 Slog.w(TAG, "resizeTask: taskId=" + taskId + " not found");
3332 return;
3333 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003334 if (!task.getWindowConfiguration().canResizeTask()) {
3335 throw new IllegalArgumentException("resizeTask not allowed on task=" + task);
3336 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003337
3338 // Reparent the task to the right stack if necessary
3339 boolean preserveWindow = (resizeMode & RESIZE_MODE_PRESERVE_WINDOW) != 0;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003340
3341 // After reparenting (which only resizes the task to the stack bounds), resize the
3342 // task to the actual bounds provided
3343 task.resize(bounds, resizeMode, preserveWindow, !DEFER_RESUME);
3344 }
3345 } finally {
3346 Binder.restoreCallingIdentity(ident);
3347 }
3348 }
3349
3350 @Override
3351 public boolean releaseActivityInstance(IBinder token) {
3352 synchronized (mGlobalLock) {
3353 final long origId = Binder.clearCallingIdentity();
3354 try {
Andrii Kulianf49a58c2019-08-14 17:34:27 -07003355 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
3356 if (r == null || !r.isDestroyable()) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003357 return false;
3358 }
Andrii Kulianf49a58c2019-08-14 17:34:27 -07003359 r.destroyImmediately(true /* removeFromApp */, "app-req");
3360 return r.isState(DESTROYING, DESTROYED);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003361 } finally {
3362 Binder.restoreCallingIdentity(origId);
3363 }
3364 }
3365 }
3366
3367 @Override
3368 public void releaseSomeActivities(IApplicationThread appInt) {
3369 synchronized (mGlobalLock) {
3370 final long origId = Binder.clearCallingIdentity();
3371 try {
Wale Ogunwale342fbe92018-10-09 08:44:10 -07003372 final WindowProcessController app = getProcessController(appInt);
Wale Ogunwalea38654f2019-11-17 20:37:15 -08003373 app.releaseSomeActivities("low-mem");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003374 } finally {
3375 Binder.restoreCallingIdentity(origId);
3376 }
3377 }
3378 }
3379
3380 @Override
wilsonshih177261f2019-02-22 12:02:18 +08003381 public void setLockScreenShown(boolean keyguardShowing, boolean aodShowing) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003382 if (checkCallingPermission(android.Manifest.permission.DEVICE_POWER)
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003383 != PackageManager.PERMISSION_GRANTED) {
3384 throw new SecurityException("Requires permission "
3385 + android.Manifest.permission.DEVICE_POWER);
3386 }
3387
3388 synchronized (mGlobalLock) {
3389 long ident = Binder.clearCallingIdentity();
3390 if (mKeyguardShown != keyguardShowing) {
3391 mKeyguardShown = keyguardShowing;
Wale Ogunwale342fbe92018-10-09 08:44:10 -07003392 final Message msg = PooledLambda.obtainMessage(
3393 ActivityManagerInternal::reportCurKeyguardUsageEvent, mAmInternal,
3394 keyguardShowing);
3395 mH.sendMessage(msg);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003396 }
3397 try {
wilsonshih177261f2019-02-22 12:02:18 +08003398 mKeyguardController.setKeyguardShown(keyguardShowing, aodShowing);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003399 } finally {
3400 Binder.restoreCallingIdentity(ident);
3401 }
3402 }
3403
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003404 mH.post(() -> {
3405 for (int i = mScreenObservers.size() - 1; i >= 0; i--) {
3406 mScreenObservers.get(i).onKeyguardStateChanged(keyguardShowing);
3407 }
3408 });
3409 }
3410
Wale Ogunwale387b34c2018-10-25 19:59:40 -07003411 public void onScreenAwakeChanged(boolean isAwake) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003412 mH.post(() -> {
3413 for (int i = mScreenObservers.size() - 1; i >= 0; i--) {
3414 mScreenObservers.get(i).onAwakeStateChanged(isAwake);
3415 }
3416 });
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003417 }
3418
3419 @Override
3420 public Bitmap getTaskDescriptionIcon(String filePath, int userId) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003421 userId = handleIncomingUser(Binder.getCallingPid(), Binder.getCallingUid(),
3422 userId, "getTaskDescriptionIcon");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003423
3424 final File passedIconFile = new File(filePath);
3425 final File legitIconFile = new File(TaskPersister.getUserImagesDir(userId),
3426 passedIconFile.getName());
3427 if (!legitIconFile.getPath().equals(filePath)
3428 || !filePath.contains(ActivityRecord.ACTIVITY_ICON_SUFFIX)) {
3429 throw new IllegalArgumentException("Bad file path: " + filePath
3430 + " passed for userId " + userId);
3431 }
Wale Ogunwale16e505a2018-05-07 15:00:49 -07003432 return mRecentTasks.getTaskDescriptionIcon(filePath);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003433 }
3434
3435 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003436 public void removeStack(int stackId) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003437 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "removeStack()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003438 synchronized (mGlobalLock) {
3439 final long ident = Binder.clearCallingIdentity();
3440 try {
Louis Chang149d5c82019-12-30 09:47:39 +08003441 final ActivityStack stack = mRootWindowContainer.getStack(stackId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003442 if (stack == null) {
3443 Slog.w(TAG, "removeStack: No stack with id=" + stackId);
3444 return;
3445 }
3446 if (!stack.isActivityTypeStandardOrUndefined()) {
3447 throw new IllegalArgumentException(
3448 "Removing non-standard stack is not allowed.");
3449 }
3450 mStackSupervisor.removeStack(stack);
3451 } finally {
3452 Binder.restoreCallingIdentity(ident);
3453 }
3454 }
3455 }
3456
3457 @Override
3458 public void moveStackToDisplay(int stackId, int displayId) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003459 mAmInternal.enforceCallingPermission(INTERNAL_SYSTEM_WINDOW, "moveStackToDisplay()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003460
3461 synchronized (mGlobalLock) {
3462 final long ident = Binder.clearCallingIdentity();
3463 try {
3464 if (DEBUG_STACK) Slog.d(TAG_STACK, "moveStackToDisplay: moving stackId=" + stackId
3465 + " to displayId=" + displayId);
Louis Chang149d5c82019-12-30 09:47:39 +08003466 mRootWindowContainer.moveStackToDisplay(stackId, displayId, ON_TOP);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003467 } finally {
3468 Binder.restoreCallingIdentity(ident);
3469 }
3470 }
3471 }
3472
3473 @Override
Yunfan Chend967af82019-01-17 18:30:18 +09003474 public void toggleFreeformWindowingMode(IBinder token) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003475 synchronized (mGlobalLock) {
3476 long ident = Binder.clearCallingIdentity();
3477 try {
3478 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
3479 if (r == null) {
3480 throw new IllegalArgumentException(
Yunfan Chend967af82019-01-17 18:30:18 +09003481 "toggleFreeformWindowingMode: No activity record matching token="
3482 + token);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003483 }
3484
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08003485 final ActivityStack stack = r.getRootTask();
Yunfan Chend967af82019-01-17 18:30:18 +09003486 if (stack == null) {
3487 throw new IllegalStateException("toggleFreeformWindowingMode: the activity "
3488 + "doesn't have a stack");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003489 }
3490
Yunfan Chend967af82019-01-17 18:30:18 +09003491 if (!stack.inFreeformWindowingMode()
3492 && stack.getWindowingMode() != WINDOWING_MODE_FULLSCREEN) {
3493 throw new IllegalStateException("toggleFreeformWindowingMode: You can only "
3494 + "toggle between fullscreen and freeform.");
3495 }
3496
3497 if (stack.inFreeformWindowingMode()) {
3498 stack.setWindowingMode(WINDOWING_MODE_FULLSCREEN);
Evan Rosky3a8d7fe2019-11-06 17:08:35 -08003499 } else if (!mSizeCompatFreeform && r.inSizeCompatMode()) {
Shivam Agrawal780b5bb2019-07-17 10:17:11 -07003500 throw new IllegalStateException("Size-compat windows are currently not"
3501 + "freeform-enabled");
Yunfan Chene9c1c312019-04-18 14:49:15 +09003502 } else if (stack.getParent().inFreeformWindowingMode()) {
3503 // If the window is on a freeform display, set it to undefined. It will be
3504 // resolved to freeform and it can adjust windowing mode when the display mode
3505 // changes in runtime.
3506 stack.setWindowingMode(WINDOWING_MODE_UNDEFINED);
Yunfan Chend967af82019-01-17 18:30:18 +09003507 } else {
3508 stack.setWindowingMode(WINDOWING_MODE_FREEFORM);
3509 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003510 } finally {
3511 Binder.restoreCallingIdentity(ident);
3512 }
3513 }
3514 }
3515
3516 /** Sets the task stack listener that gets callbacks when a task stack changes. */
3517 @Override
3518 public void registerTaskStackListener(ITaskStackListener listener) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003519 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003520 "registerTaskStackListener()");
Wale Ogunwaled0412b32018-05-08 09:25:50 -07003521 mTaskChangeNotificationController.registerTaskStackListener(listener);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003522 }
3523
3524 /** Unregister a task stack listener so that it stops receiving callbacks. */
3525 @Override
3526 public void unregisterTaskStackListener(ITaskStackListener listener) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003527 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003528 "unregisterTaskStackListener()");
Wale Ogunwaled0412b32018-05-08 09:25:50 -07003529 mTaskChangeNotificationController.unregisterTaskStackListener(listener);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003530 }
3531
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003532 @Override
3533 public boolean requestAssistContextExtras(int requestType, IAssistDataReceiver receiver,
3534 Bundle receiverExtras, IBinder activityToken, boolean focused, boolean newSessionId) {
3535 return enqueueAssistContext(requestType, null, null, receiver, receiverExtras,
3536 activityToken, focused, newSessionId, UserHandle.getCallingUserId(), null,
3537 PENDING_ASSIST_EXTRAS_LONG_TIMEOUT, 0) != null;
3538 }
3539
3540 @Override
3541 public boolean requestAutofillData(IAssistDataReceiver receiver, Bundle receiverExtras,
3542 IBinder activityToken, int flags) {
3543 return enqueueAssistContext(ActivityManager.ASSIST_CONTEXT_AUTOFILL, null, null,
3544 receiver, receiverExtras, activityToken, true, true, UserHandle.getCallingUserId(),
3545 null, PENDING_AUTOFILL_ASSIST_STRUCTURE_TIMEOUT, flags) != null;
3546 }
3547
3548 @Override
3549 public boolean launchAssistIntent(Intent intent, int requestType, String hint, int userHandle,
3550 Bundle args) {
3551 return enqueueAssistContext(requestType, intent, hint, null, null, null,
3552 true /* focused */, true /* newSessionId */, userHandle, args,
3553 PENDING_ASSIST_EXTRAS_TIMEOUT, 0) != null;
3554 }
3555
3556 @Override
3557 public Bundle getAssistContextExtras(int requestType) {
3558 PendingAssistExtras pae = enqueueAssistContext(requestType, null, null, null,
3559 null, null, true /* focused */, true /* newSessionId */,
3560 UserHandle.getCallingUserId(), null, PENDING_ASSIST_EXTRAS_TIMEOUT, 0);
3561 if (pae == null) {
3562 return null;
3563 }
3564 synchronized (pae) {
3565 while (!pae.haveResult) {
3566 try {
3567 pae.wait();
3568 } catch (InterruptedException e) {
3569 }
3570 }
3571 }
3572 synchronized (mGlobalLock) {
3573 buildAssistBundleLocked(pae, pae.result);
3574 mPendingAssistExtras.remove(pae);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003575 mUiHandler.removeCallbacks(pae);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003576 }
3577 return pae.extras;
3578 }
3579
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003580 /**
3581 * Binder IPC calls go through the public entry point.
3582 * This can be called with or without the global lock held.
3583 */
3584 private static int checkCallingPermission(String permission) {
3585 return checkPermission(
3586 permission, Binder.getCallingPid(), UserHandle.getAppId(Binder.getCallingUid()));
3587 }
3588
3589 /** This can be called with or without the global lock held. */
Wale Ogunwale214f3482018-10-04 11:00:47 -07003590 private void enforceCallerIsRecentsOrHasPermission(String permission, String func) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003591 if (!getRecentTasks().isCallerRecents(Binder.getCallingUid())) {
3592 mAmInternal.enforceCallingPermission(permission, func);
3593 }
3594 }
3595
3596 @VisibleForTesting
3597 int checkGetTasksPermission(String permission, int pid, int uid) {
3598 return checkPermission(permission, pid, uid);
3599 }
3600
3601 static int checkPermission(String permission, int pid, int uid) {
3602 if (permission == null) {
3603 return PackageManager.PERMISSION_DENIED;
3604 }
3605 return checkComponentPermission(permission, pid, uid, -1, true);
3606 }
3607
Wale Ogunwale214f3482018-10-04 11:00:47 -07003608 public static int checkComponentPermission(String permission, int pid, int uid,
3609 int owningUid, boolean exported) {
3610 return ActivityManagerService.checkComponentPermission(
3611 permission, pid, uid, owningUid, exported);
3612 }
3613
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003614 boolean isGetTasksAllowed(String caller, int callingPid, int callingUid) {
3615 if (getRecentTasks().isCallerRecents(callingUid)) {
3616 // Always allow the recents component to get tasks
3617 return true;
3618 }
3619
3620 boolean allowed = checkGetTasksPermission(android.Manifest.permission.REAL_GET_TASKS,
3621 callingPid, callingUid) == PackageManager.PERMISSION_GRANTED;
3622 if (!allowed) {
3623 if (checkGetTasksPermission(android.Manifest.permission.GET_TASKS,
3624 callingPid, callingUid) == PackageManager.PERMISSION_GRANTED) {
3625 // Temporary compatibility: some existing apps on the system image may
3626 // still be requesting the old permission and not switched to the new
3627 // one; if so, we'll still allow them full access. This means we need
3628 // to see if they are holding the old permission and are a system app.
3629 try {
3630 if (AppGlobals.getPackageManager().isUidPrivileged(callingUid)) {
3631 allowed = true;
3632 if (DEBUG_TASKS) Slog.w(TAG, caller + ": caller " + callingUid
3633 + " is using old GET_TASKS but privileged; allowing");
3634 }
3635 } catch (RemoteException e) {
3636 }
3637 }
3638 if (DEBUG_TASKS) Slog.w(TAG, caller + ": caller " + callingUid
3639 + " does not hold REAL_GET_TASKS; limiting output");
3640 }
3641 return allowed;
3642 }
3643
Nicholas Sauer0259e532019-08-30 08:24:55 -07003644 boolean isCrossUserAllowed(int pid, int uid) {
3645 return checkPermission(INTERACT_ACROSS_USERS, pid, uid) == PERMISSION_GRANTED
3646 || checkPermission(INTERACT_ACROSS_USERS_FULL, pid, uid) == PERMISSION_GRANTED;
3647 }
3648
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003649 private PendingAssistExtras enqueueAssistContext(int requestType, Intent intent, String hint,
3650 IAssistDataReceiver receiver, Bundle receiverExtras, IBinder activityToken,
3651 boolean focused, boolean newSessionId, int userHandle, Bundle args, long timeout,
3652 int flags) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003653 mAmInternal.enforceCallingPermission(android.Manifest.permission.GET_TOP_ACTIVITY_INFO,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003654 "enqueueAssistContext()");
3655
3656 synchronized (mGlobalLock) {
Darryl L Johnson1e3885c2020-02-27 17:38:13 -08003657 final ActivityStack stack = getTopDisplayFocusedStack();
3658 ActivityRecord activity = stack != null ? stack.getTopNonFinishingActivity() : null;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003659 if (activity == null) {
3660 Slog.w(TAG, "getAssistContextExtras failed: no top activity");
3661 return null;
3662 }
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07003663 if (!activity.attachedToProcess()) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003664 Slog.w(TAG, "getAssistContextExtras failed: no process for " + activity);
3665 return null;
3666 }
3667 if (focused) {
3668 if (activityToken != null) {
3669 ActivityRecord caller = ActivityRecord.forTokenLocked(activityToken);
3670 if (activity != caller) {
3671 Slog.w(TAG, "enqueueAssistContext failed: caller " + caller
3672 + " is not current top " + activity);
3673 return null;
3674 }
3675 }
3676 } else {
3677 activity = ActivityRecord.forTokenLocked(activityToken);
3678 if (activity == null) {
3679 Slog.w(TAG, "enqueueAssistContext failed: activity for token=" + activityToken
3680 + " couldn't be found");
3681 return null;
3682 }
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07003683 if (!activity.attachedToProcess()) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003684 Slog.w(TAG, "enqueueAssistContext failed: no process for " + activity);
3685 return null;
3686 }
3687 }
3688
3689 PendingAssistExtras pae;
3690 Bundle extras = new Bundle();
3691 if (args != null) {
3692 extras.putAll(args);
3693 }
3694 extras.putString(Intent.EXTRA_ASSIST_PACKAGE, activity.packageName);
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07003695 extras.putInt(Intent.EXTRA_ASSIST_UID, activity.app.mUid);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003696
3697 pae = new PendingAssistExtras(activity, extras, intent, hint, receiver, receiverExtras,
3698 userHandle);
3699 pae.isHome = activity.isActivityTypeHome();
3700
3701 // Increment the sessionId if necessary
3702 if (newSessionId) {
3703 mViSessionId++;
3704 }
3705 try {
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07003706 activity.app.getThread().requestAssistContextExtras(activity.appToken, pae,
3707 requestType, mViSessionId, flags);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003708 mPendingAssistExtras.add(pae);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003709 mUiHandler.postDelayed(pae, timeout);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003710 } catch (RemoteException e) {
3711 Slog.w(TAG, "getAssistContextExtras failed: crash calling " + activity);
3712 return null;
3713 }
3714 return pae;
3715 }
3716 }
3717
3718 private void buildAssistBundleLocked(PendingAssistExtras pae, Bundle result) {
3719 if (result != null) {
3720 pae.extras.putBundle(Intent.EXTRA_ASSIST_CONTEXT, result);
3721 }
3722 if (pae.hint != null) {
3723 pae.extras.putBoolean(pae.hint, true);
3724 }
3725 }
3726
3727 private void pendingAssistExtrasTimedOut(PendingAssistExtras pae) {
3728 IAssistDataReceiver receiver;
3729 synchronized (mGlobalLock) {
3730 mPendingAssistExtras.remove(pae);
3731 receiver = pae.receiver;
3732 }
3733 if (receiver != null) {
3734 // Caller wants result sent back to them.
3735 Bundle sendBundle = new Bundle();
3736 // At least return the receiver extras
3737 sendBundle.putBundle(ASSIST_KEY_RECEIVER_EXTRAS, pae.receiverExtras);
3738 try {
3739 pae.receiver.onHandleAssistData(sendBundle);
3740 } catch (RemoteException e) {
3741 }
3742 }
3743 }
3744
3745 public class PendingAssistExtras extends Binder implements Runnable {
3746 public final ActivityRecord activity;
3747 public boolean isHome;
3748 public final Bundle extras;
3749 public final Intent intent;
3750 public final String hint;
3751 public final IAssistDataReceiver receiver;
3752 public final int userHandle;
3753 public boolean haveResult = false;
3754 public Bundle result = null;
3755 public AssistStructure structure = null;
3756 public AssistContent content = null;
3757 public Bundle receiverExtras;
3758
3759 public PendingAssistExtras(ActivityRecord _activity, Bundle _extras, Intent _intent,
3760 String _hint, IAssistDataReceiver _receiver, Bundle _receiverExtras,
3761 int _userHandle) {
3762 activity = _activity;
3763 extras = _extras;
3764 intent = _intent;
3765 hint = _hint;
3766 receiver = _receiver;
3767 receiverExtras = _receiverExtras;
3768 userHandle = _userHandle;
3769 }
3770
3771 @Override
3772 public void run() {
3773 Slog.w(TAG, "getAssistContextExtras failed: timeout retrieving from " + activity);
3774 synchronized (this) {
3775 haveResult = true;
3776 notifyAll();
3777 }
3778 pendingAssistExtrasTimedOut(this);
3779 }
3780 }
3781
3782 @Override
3783 public boolean isAssistDataAllowedOnCurrentActivity() {
3784 int userId;
3785 synchronized (mGlobalLock) {
Andrii Kulian5f750bc2018-07-17 08:57:23 -07003786 final ActivityStack focusedStack = getTopDisplayFocusedStack();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003787 if (focusedStack == null || focusedStack.isActivityTypeAssistant()) {
3788 return false;
3789 }
3790
Wale Ogunwale21e06482019-11-18 05:14:15 -08003791 final ActivityRecord activity = focusedStack.getTopNonFinishingActivity();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003792 if (activity == null) {
3793 return false;
3794 }
Wale Ogunwale8b19de92018-11-29 19:58:26 -08003795 userId = activity.mUserId;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003796 }
3797 return !DevicePolicyCache.getInstance().getScreenCaptureDisabled(userId);
3798 }
3799
3800 @Override
3801 public boolean showAssistFromActivity(IBinder token, Bundle args) {
3802 long ident = Binder.clearCallingIdentity();
3803 try {
3804 synchronized (mGlobalLock) {
3805 ActivityRecord caller = ActivityRecord.forTokenLocked(token);
Wale Ogunwale21e06482019-11-18 05:14:15 -08003806 ActivityRecord top = getTopDisplayFocusedStack().getTopNonFinishingActivity();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003807 if (top != caller) {
3808 Slog.w(TAG, "showAssistFromActivity failed: caller " + caller
3809 + " is not current top " + top);
3810 return false;
3811 }
3812 if (!top.nowVisible) {
3813 Slog.w(TAG, "showAssistFromActivity failed: caller " + caller
3814 + " is not visible");
3815 return false;
3816 }
3817 }
3818 return mAssistUtils.showSessionForActiveService(args, SHOW_SOURCE_APPLICATION, null,
3819 token);
3820 } finally {
3821 Binder.restoreCallingIdentity(ident);
3822 }
3823 }
3824
3825 @Override
3826 public boolean isRootVoiceInteraction(IBinder token) {
3827 synchronized (mGlobalLock) {
3828 ActivityRecord r = ActivityRecord.isInStackLocked(token);
3829 if (r == null) {
3830 return false;
3831 }
3832 return r.rootVoiceInteraction;
3833 }
3834 }
3835
Wale Ogunwalef6733932018-06-27 05:14:34 -07003836 private void onLocalVoiceInteractionStartedLocked(IBinder activity,
3837 IVoiceInteractionSession voiceSession, IVoiceInteractor voiceInteractor) {
3838 ActivityRecord activityToCallback = ActivityRecord.forTokenLocked(activity);
3839 if (activityToCallback == null) return;
3840 activityToCallback.setVoiceSessionLocked(voiceSession);
3841
3842 // Inform the activity
3843 try {
3844 activityToCallback.app.getThread().scheduleLocalVoiceInteractionStarted(activity,
3845 voiceInteractor);
3846 long token = Binder.clearCallingIdentity();
3847 try {
Andrii Kulianeceebbf2019-06-26 17:36:51 -07003848 startRunningVoiceLocked(voiceSession, activityToCallback.info.applicationInfo.uid);
Wale Ogunwalef6733932018-06-27 05:14:34 -07003849 } finally {
3850 Binder.restoreCallingIdentity(token);
3851 }
3852 // TODO: VI Should we cache the activity so that it's easier to find later
3853 // rather than scan through all the stacks and activities?
3854 } catch (RemoteException re) {
3855 activityToCallback.clearVoiceSessionLocked();
3856 // TODO: VI Should this terminate the voice session?
3857 }
3858 }
3859
3860 private void startRunningVoiceLocked(IVoiceInteractionSession session, int targetUid) {
3861 Slog.d(TAG, "<<< startRunningVoiceLocked()");
3862 mVoiceWakeLock.setWorkSource(new WorkSource(targetUid));
3863 if (mRunningVoice == null || mRunningVoice.asBinder() != session.asBinder()) {
3864 boolean wasRunningVoice = mRunningVoice != null;
3865 mRunningVoice = session;
3866 if (!wasRunningVoice) {
3867 mVoiceWakeLock.acquire();
3868 updateSleepIfNeededLocked();
3869 }
3870 }
3871 }
3872
3873 void finishRunningVoiceLocked() {
3874 if (mRunningVoice != null) {
3875 mRunningVoice = null;
3876 mVoiceWakeLock.release();
3877 updateSleepIfNeededLocked();
3878 }
3879 }
3880
3881 @Override
3882 public void setVoiceKeepAwake(IVoiceInteractionSession session, boolean keepAwake) {
3883 synchronized (mGlobalLock) {
3884 if (mRunningVoice != null && mRunningVoice.asBinder() == session.asBinder()) {
3885 if (keepAwake) {
3886 mVoiceWakeLock.acquire();
3887 } else {
3888 mVoiceWakeLock.release();
3889 }
3890 }
3891 }
3892 }
3893
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003894 @Override
3895 public ComponentName getActivityClassForToken(IBinder token) {
3896 synchronized (mGlobalLock) {
3897 ActivityRecord r = ActivityRecord.isInStackLocked(token);
3898 if (r == null) {
3899 return null;
3900 }
3901 return r.intent.getComponent();
3902 }
3903 }
3904
3905 @Override
3906 public String getPackageForToken(IBinder token) {
3907 synchronized (mGlobalLock) {
3908 ActivityRecord r = ActivityRecord.isInStackLocked(token);
3909 if (r == null) {
3910 return null;
3911 }
3912 return r.packageName;
3913 }
3914 }
3915
3916 @Override
3917 public void showLockTaskEscapeMessage(IBinder token) {
3918 synchronized (mGlobalLock) {
3919 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
3920 if (r == null) {
3921 return;
3922 }
Wale Ogunwaled95c06b2018-05-08 10:35:38 -07003923 getLockTaskController().showLockTaskToast();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003924 }
3925 }
3926
3927 @Override
3928 public void keyguardGoingAway(int flags) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003929 enforceNotIsolatedCaller("keyguardGoingAway");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003930 final long token = Binder.clearCallingIdentity();
3931 try {
3932 synchronized (mGlobalLock) {
Wale Ogunwaled0412b32018-05-08 09:25:50 -07003933 mKeyguardController.keyguardGoingAway(flags);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003934 }
3935 } finally {
3936 Binder.restoreCallingIdentity(token);
3937 }
3938 }
3939
3940 /**
3941 * Try to place task to provided position. The final position might be different depending on
3942 * current user and stacks state. The task will be moved to target stack if it's currently in
3943 * different stack.
3944 */
3945 @Override
3946 public void positionTaskInStack(int taskId, int stackId, int position) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003947 mAmInternal.enforceCallingPermission(MANAGE_ACTIVITY_STACKS, "positionTaskInStack()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003948 synchronized (mGlobalLock) {
3949 long ident = Binder.clearCallingIdentity();
3950 try {
3951 if (DEBUG_STACK) Slog.d(TAG_STACK, "positionTaskInStack: positioning task="
3952 + taskId + " in stackId=" + stackId + " at position=" + position);
Louis Chang149d5c82019-12-30 09:47:39 +08003953 final Task task = mRootWindowContainer.anyTaskForId(taskId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003954 if (task == null) {
3955 throw new IllegalArgumentException("positionTaskInStack: no task for id="
3956 + taskId);
3957 }
3958
Louis Chang149d5c82019-12-30 09:47:39 +08003959 final ActivityStack stack = mRootWindowContainer.getStack(stackId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003960
3961 if (stack == null) {
3962 throw new IllegalArgumentException("positionTaskInStack: no stack for id="
3963 + stackId);
3964 }
3965 if (!stack.isActivityTypeStandardOrUndefined()) {
3966 throw new IllegalArgumentException("positionTaskInStack: Attempt to change"
3967 + " the position of task " + taskId + " in/to non-standard stack");
3968 }
3969
3970 // TODO: Have the callers of this API call a separate reparent method if that is
3971 // what they intended to do vs. having this method also do reparenting.
3972 if (task.getStack() == stack) {
3973 // Change position in current stack.
3974 stack.positionChildAt(task, position);
3975 } else {
3976 // Reparent to new stack.
3977 task.reparent(stack, position, REPARENT_LEAVE_STACK_IN_PLACE, !ANIMATE,
3978 !DEFER_RESUME, "positionTaskInStack");
3979 }
3980 } finally {
3981 Binder.restoreCallingIdentity(ident);
3982 }
3983 }
3984 }
3985
3986 @Override
3987 public void reportSizeConfigurations(IBinder token, int[] horizontalSizeConfiguration,
3988 int[] verticalSizeConfigurations, int[] smallestSizeConfigurations) {
3989 if (DEBUG_CONFIGURATION) Slog.v(TAG, "Report configuration: " + token + " "
Yuichiro Hanadae7e930b2019-06-06 19:07:21 +09003990 + Arrays.toString(horizontalSizeConfiguration) + " "
3991 + Arrays.toString(verticalSizeConfigurations));
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003992 synchronized (mGlobalLock) {
3993 ActivityRecord record = ActivityRecord.isInStackLocked(token);
3994 if (record == null) {
3995 throw new IllegalArgumentException("reportSizeConfigurations: ActivityRecord not "
3996 + "found for: " + token);
3997 }
3998 record.setSizeConfigurations(horizontalSizeConfiguration,
3999 verticalSizeConfigurations, smallestSizeConfigurations);
4000 }
4001 }
4002
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004003 @Override
4004 public void suppressResizeConfigChanges(boolean suppress) throws RemoteException {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004005 mAmInternal.enforceCallingPermission(MANAGE_ACTIVITY_STACKS, "suppressResizeConfigChanges()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004006 synchronized (mGlobalLock) {
4007 mSuppressResizeConfigChanges = suppress;
4008 }
4009 }
4010
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004011 /**
4012 * Moves the top activity in the input stackId to the pinned stack.
4013 *
4014 * @param stackId Id of stack to move the top activity to pinned stack.
4015 * @param bounds Bounds to use for pinned stack.
4016 *
4017 * @return True if the top activity of the input stack was successfully moved to the pinned
4018 * stack.
4019 */
4020 @Override
4021 public boolean moveTopActivityToPinnedStack(int stackId, Rect bounds) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004022 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004023 "moveTopActivityToPinnedStack()");
4024 synchronized (mGlobalLock) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004025 if (!mSupportsPictureInPicture) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004026 throw new IllegalStateException("moveTopActivityToPinnedStack:"
4027 + "Device doesn't support picture-in-picture mode");
4028 }
4029
4030 long ident = Binder.clearCallingIdentity();
4031 try {
Louis Chang149d5c82019-12-30 09:47:39 +08004032 return mRootWindowContainer.moveTopStackActivityToPinnedStack(stackId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004033 } finally {
4034 Binder.restoreCallingIdentity(ident);
4035 }
4036 }
4037 }
4038
4039 @Override
4040 public boolean isInMultiWindowMode(IBinder token) {
4041 final long origId = Binder.clearCallingIdentity();
4042 try {
4043 synchronized (mGlobalLock) {
4044 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
4045 if (r == null) {
4046 return false;
4047 }
4048 // An activity is consider to be in multi-window mode if its task isn't fullscreen.
4049 return r.inMultiWindowMode();
4050 }
4051 } finally {
4052 Binder.restoreCallingIdentity(origId);
4053 }
4054 }
4055
4056 @Override
4057 public boolean isInPictureInPictureMode(IBinder token) {
4058 final long origId = Binder.clearCallingIdentity();
4059 try {
4060 synchronized (mGlobalLock) {
4061 return isInPictureInPictureMode(ActivityRecord.forTokenLocked(token));
4062 }
4063 } finally {
4064 Binder.restoreCallingIdentity(origId);
4065 }
4066 }
4067
4068 private boolean isInPictureInPictureMode(ActivityRecord r) {
Hongwei Wang85cf41f2020-01-15 15:14:47 -08004069 return r != null
4070 && r.getRootTask() != null
4071 && r.inPinnedWindowingMode()
Wale Ogunwale0db64ac2020-04-11 10:00:42 -07004072 && r.getRootTask().isInTask(r) != null;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004073 }
4074
4075 @Override
4076 public boolean enterPictureInPictureMode(IBinder token, final PictureInPictureParams params) {
4077 final long origId = Binder.clearCallingIdentity();
4078 try {
4079 synchronized (mGlobalLock) {
4080 final ActivityRecord r = ensureValidPictureInPictureActivityParamsLocked(
4081 "enterPictureInPictureMode", token, params);
4082
4083 // If the activity is already in picture in picture mode, then just return early
4084 if (isInPictureInPictureMode(r)) {
4085 return true;
4086 }
4087
4088 // Activity supports picture-in-picture, now check that we can enter PiP at this
4089 // point, if it is
4090 if (!r.checkEnterPictureInPictureState("enterPictureInPictureMode",
4091 false /* beforeStopping */)) {
4092 return false;
4093 }
4094
4095 final Runnable enterPipRunnable = () -> {
Wale Ogunwalef276a6f2018-06-15 08:26:07 -07004096 synchronized (mGlobalLock) {
Hyangseok Chaeed0624e2019-11-07 10:15:46 +09004097 if (r.getParent() == null) {
4098 Slog.e(TAG, "Skip enterPictureInPictureMode, destroyed " + r);
4099 return;
4100 }
Wale Ogunwalef276a6f2018-06-15 08:26:07 -07004101 // Only update the saved args from the args that are set
Robert Carrf6690d12020-02-04 14:16:21 -08004102 r.setPictureInPictureParams(params);
Wale Ogunwalef276a6f2018-06-15 08:26:07 -07004103 final float aspectRatio = r.pictureInPictureArgs.getAspectRatio();
4104 final List<RemoteAction> actions = r.pictureInPictureArgs.getActions();
Louis Chang149d5c82019-12-30 09:47:39 +08004105 mRootWindowContainer.moveActivityToPinnedStack(
Hongwei Wange8e32862020-04-08 13:23:45 -07004106 r, "enterPictureInPictureMode");
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08004107 final ActivityStack stack = r.getRootTask();
Wale Ogunwalef276a6f2018-06-15 08:26:07 -07004108 stack.setPictureInPictureAspectRatio(aspectRatio);
4109 stack.setPictureInPictureActions(actions);
Andrii Kulianeceebbf2019-06-26 17:36:51 -07004110 MetricsLoggerWrapper.logPictureInPictureEnter(mContext,
4111 r.info.applicationInfo.uid, r.shortComponentName,
4112 r.supportsEnterPipOnTaskSwitch);
Wale Ogunwalef276a6f2018-06-15 08:26:07 -07004113 logPictureInPictureArgs(params);
4114 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004115 };
4116
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004117 if (isKeyguardLocked()) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004118 // If the keyguard is showing or occluded, then try and dismiss it before
4119 // entering picture-in-picture (this will prompt the user to authenticate if the
4120 // device is currently locked).
4121 dismissKeyguard(token, new KeyguardDismissCallback() {
4122 @Override
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004123 public void onDismissSucceeded() {
4124 mH.post(enterPipRunnable);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004125 }
4126 }, null /* message */);
4127 } else {
4128 // Enter picture in picture immediately otherwise
4129 enterPipRunnable.run();
4130 }
4131 return true;
4132 }
4133 } finally {
4134 Binder.restoreCallingIdentity(origId);
4135 }
4136 }
4137
4138 @Override
4139 public void setPictureInPictureParams(IBinder token, final PictureInPictureParams params) {
4140 final long origId = Binder.clearCallingIdentity();
4141 try {
4142 synchronized (mGlobalLock) {
4143 final ActivityRecord r = ensureValidPictureInPictureActivityParamsLocked(
4144 "setPictureInPictureParams", token, params);
4145
4146 // Only update the saved args from the args that are set
Robert Carrf6690d12020-02-04 14:16:21 -08004147 r.setPictureInPictureParams(params);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004148 if (r.inPinnedWindowingMode()) {
4149 // If the activity is already in picture-in-picture, update the pinned stack now
4150 // if it is not already expanding to fullscreen. Otherwise, the arguments will
4151 // be used the next time the activity enters PiP
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08004152 final ActivityStack stack = r.getRootTask();
Hongwei Wang85cf41f2020-01-15 15:14:47 -08004153 stack.setPictureInPictureAspectRatio(
4154 r.pictureInPictureArgs.getAspectRatio());
4155 stack.setPictureInPictureActions(r.pictureInPictureArgs.getActions());
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004156 }
4157 logPictureInPictureArgs(params);
4158 }
4159 } finally {
4160 Binder.restoreCallingIdentity(origId);
4161 }
4162 }
4163
4164 @Override
4165 public int getMaxNumPictureInPictureActions(IBinder token) {
4166 // Currently, this is a static constant, but later, we may change this to be dependent on
4167 // the context of the activity
4168 return 3;
4169 }
4170
4171 private void logPictureInPictureArgs(PictureInPictureParams params) {
4172 if (params.hasSetActions()) {
4173 MetricsLogger.histogram(mContext, "tron_varz_picture_in_picture_actions_count",
4174 params.getActions().size());
4175 }
4176 if (params.hasSetAspectRatio()) {
4177 LogMaker lm = new LogMaker(MetricsEvent.ACTION_PICTURE_IN_PICTURE_ASPECT_RATIO_CHANGED);
4178 lm.addTaggedData(MetricsEvent.PICTURE_IN_PICTURE_ASPECT_RATIO, params.getAspectRatio());
4179 MetricsLogger.action(lm);
4180 }
4181 }
4182
4183 /**
4184 * Checks the state of the system and the activity associated with the given {@param token} to
4185 * verify that picture-in-picture is supported for that activity.
4186 *
4187 * @return the activity record for the given {@param token} if all the checks pass.
4188 */
4189 private ActivityRecord ensureValidPictureInPictureActivityParamsLocked(String caller,
4190 IBinder token, PictureInPictureParams params) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004191 if (!mSupportsPictureInPicture) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004192 throw new IllegalStateException(caller
4193 + ": Device doesn't support picture-in-picture mode.");
4194 }
4195
4196 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
4197 if (r == null) {
4198 throw new IllegalStateException(caller
4199 + ": Can't find activity for token=" + token);
4200 }
4201
4202 if (!r.supportsPictureInPicture()) {
4203 throw new IllegalStateException(caller
4204 + ": Current activity does not support picture-in-picture.");
4205 }
4206
4207 if (params.hasSetAspectRatio()
Wale Ogunwale8b19de92018-11-29 19:58:26 -08004208 && !mWindowManager.isValidPictureInPictureAspectRatio(
Wale Ogunwale8f93b642019-12-26 12:10:52 -08004209 r.getDisplay(), params.getAspectRatio())) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004210 final float minAspectRatio = mContext.getResources().getFloat(
4211 com.android.internal.R.dimen.config_pictureInPictureMinAspectRatio);
4212 final float maxAspectRatio = mContext.getResources().getFloat(
4213 com.android.internal.R.dimen.config_pictureInPictureMaxAspectRatio);
4214 throw new IllegalArgumentException(String.format(caller
4215 + ": Aspect ratio is too extreme (must be between %f and %f).",
4216 minAspectRatio, maxAspectRatio));
4217 }
4218
4219 // Truncate the number of actions if necessary
4220 params.truncateActions(getMaxNumPictureInPictureActions(token));
4221
4222 return r;
4223 }
4224
4225 @Override
4226 public IBinder getUriPermissionOwnerForActivity(IBinder activityToken) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004227 enforceNotIsolatedCaller("getUriPermissionOwnerForActivity");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004228 synchronized (mGlobalLock) {
4229 ActivityRecord r = ActivityRecord.isInStackLocked(activityToken);
4230 if (r == null) {
4231 throw new IllegalArgumentException("Activity does not exist; token="
4232 + activityToken);
4233 }
Wale Ogunwale6d50dcc2018-07-21 23:00:40 -07004234 return r.getUriPermissionsLocked().getExternalToken();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004235 }
4236 }
4237
Evan Rosky73a7fe92019-11-18 18:28:01 -08004238 // TODO(b/149338177): remove when CTS no-longer requires it
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004239 @Override
4240 public void resizeDockedStack(Rect dockedBounds, Rect tempDockedTaskBounds,
4241 Rect tempDockedTaskInsetBounds,
4242 Rect tempOtherTaskBounds, Rect tempOtherTaskInsetBounds) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004243 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "resizeDockedStack()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004244 long ident = Binder.clearCallingIdentity();
4245 try {
4246 synchronized (mGlobalLock) {
Andrii Kulian4c0fd0d2020-03-29 13:32:14 -07004247 final TaskDisplayArea tc = mRootWindowContainer.getDefaultTaskDisplayArea();
4248 final Task primary = tc.getRootSplitScreenPrimaryTask();
4249 final Task secondary = tc.getTask(t -> t.mCreatedByOrganizer && t.isRootTask()
Louis Changa009c762020-02-26 11:21:31 +08004250 && t.inSplitScreenSecondaryWindowingMode());
Evan Rosky73a7fe92019-11-18 18:28:01 -08004251 if (primary == null || secondary == null) {
4252 return;
4253 }
4254 final WindowContainerTransaction wct = new WindowContainerTransaction();
4255 final Rect primaryRect =
4256 tempDockedTaskInsetBounds != null ? tempDockedTaskInsetBounds
4257 : (tempDockedTaskBounds != null ? tempDockedTaskBounds
4258 : dockedBounds);
Wale Ogunwaleadf116e2020-03-27 16:36:01 -07004259 wct.setBounds(primary.mRemoteToken.toWindowContainerToken(), primaryRect);
Evan Rosky73a7fe92019-11-18 18:28:01 -08004260 Rect otherRect = tempOtherTaskInsetBounds != null ? tempOtherTaskInsetBounds
4261 : tempOtherTaskBounds;
4262 if (otherRect == null) {
4263 // Temporary estimation... again this is just for tests.
4264 otherRect = new Rect(secondary.getBounds());
Andrii Kulian4c0fd0d2020-03-29 13:32:14 -07004265 if (tc.getBounds().width() > tc.getBounds().height()) {
Evan Rosky73a7fe92019-11-18 18:28:01 -08004266 otherRect.left = primaryRect.right + 6;
4267 } else {
4268 otherRect.top = primaryRect.bottom + 6;
4269 }
4270 }
Wale Ogunwaleadf116e2020-03-27 16:36:01 -07004271 wct.setBounds(secondary.mRemoteToken.toWindowContainerToken(), otherRect);
Wale Ogunwale568f9f412020-03-21 22:27:35 -07004272 mWindowOrganizerController.applyTransaction(wct);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004273 }
4274 } finally {
4275 Binder.restoreCallingIdentity(ident);
4276 }
4277 }
4278
4279 @Override
4280 public void setSplitScreenResizing(boolean resizing) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004281 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "setSplitScreenResizing()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004282 final long ident = Binder.clearCallingIdentity();
4283 try {
4284 synchronized (mGlobalLock) {
4285 mStackSupervisor.setSplitScreenResizing(resizing);
4286 }
4287 } finally {
4288 Binder.restoreCallingIdentity(ident);
4289 }
4290 }
4291
Evan Rosky0037e5f2019-11-05 10:26:24 -08004292 @Override
Wale Ogunwale568f9f412020-03-21 22:27:35 -07004293 public IWindowOrganizerController getWindowOrganizerController() {
Evan Rosky0037e5f2019-11-05 10:26:24 -08004294 mAmInternal.enforceCallingPermission(MANAGE_ACTIVITY_STACKS,
Wale Ogunwale568f9f412020-03-21 22:27:35 -07004295 "getWindowOrganizerController()");
4296 return mWindowOrganizerController;
Evan Rosky0037e5f2019-11-05 10:26:24 -08004297 }
4298
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004299 /**
4300 * Check that we have the features required for VR-related API calls, and throw an exception if
4301 * not.
4302 */
Wale Ogunwale59507092018-10-29 09:00:30 -07004303 public void enforceSystemHasVrFeature() {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004304 if (!mContext.getPackageManager().hasSystemFeature(
4305 PackageManager.FEATURE_VR_MODE_HIGH_PERFORMANCE)) {
4306 throw new UnsupportedOperationException("VR mode not supported on this device!");
4307 }
4308 }
4309
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004310 @Override
4311 public int setVrMode(IBinder token, boolean enabled, ComponentName packageName) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004312 enforceSystemHasVrFeature();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004313
4314 final VrManagerInternal vrService = LocalServices.getService(VrManagerInternal.class);
4315
4316 ActivityRecord r;
4317 synchronized (mGlobalLock) {
4318 r = ActivityRecord.isInStackLocked(token);
4319 }
4320
4321 if (r == null) {
4322 throw new IllegalArgumentException();
4323 }
4324
4325 int err;
Wale Ogunwale8b19de92018-11-29 19:58:26 -08004326 if ((err = vrService.hasVrPackage(packageName, r.mUserId)) !=
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004327 VrManagerInternal.NO_ERROR) {
4328 return err;
4329 }
4330
4331 // Clear the binder calling uid since this path may call moveToTask().
4332 final long callingId = Binder.clearCallingIdentity();
4333 try {
4334 synchronized (mGlobalLock) {
4335 r.requestedVrComponent = (enabled) ? packageName : null;
4336
4337 // Update associated state if this activity is currently focused
Andrii Kulian52d255c2018-07-13 11:32:19 -07004338 if (r.isResumedActivityOnDisplay()) {
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004339 applyUpdateVrModeLocked(r);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004340 }
4341 return 0;
4342 }
4343 } finally {
4344 Binder.restoreCallingIdentity(callingId);
4345 }
4346 }
4347
4348 @Override
4349 public void startLocalVoiceInteraction(IBinder callingActivity, Bundle options) {
4350 Slog.i(TAG, "Activity tried to startLocalVoiceInteraction");
4351 synchronized (mGlobalLock) {
Wale Ogunwale21e06482019-11-18 05:14:15 -08004352 ActivityRecord activity = getTopDisplayFocusedStack().getTopNonFinishingActivity();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004353 if (ActivityRecord.forTokenLocked(callingActivity) != activity) {
4354 throw new SecurityException("Only focused activity can call startVoiceInteraction");
4355 }
Louis Changcdec0802019-11-11 11:45:07 +08004356 if (mRunningVoice != null || activity.getTask().voiceSession != null
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004357 || activity.voiceSession != null) {
4358 Slog.w(TAG, "Already in a voice interaction, cannot start new voice interaction");
4359 return;
4360 }
4361 if (activity.pendingVoiceInteractionStart) {
4362 Slog.w(TAG, "Pending start of voice interaction already.");
4363 return;
4364 }
4365 activity.pendingVoiceInteractionStart = true;
4366 }
4367 LocalServices.getService(VoiceInteractionManagerInternal.class)
4368 .startLocalVoiceInteraction(callingActivity, options);
4369 }
4370
4371 @Override
4372 public void stopLocalVoiceInteraction(IBinder callingActivity) {
4373 LocalServices.getService(VoiceInteractionManagerInternal.class)
4374 .stopLocalVoiceInteraction(callingActivity);
4375 }
4376
4377 @Override
4378 public boolean supportsLocalVoiceInteraction() {
4379 return LocalServices.getService(VoiceInteractionManagerInternal.class)
4380 .supportsLocalVoiceInteraction();
4381 }
4382
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004383 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004384 public boolean updateConfiguration(Configuration values) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004385 mAmInternal.enforceCallingPermission(CHANGE_CONFIGURATION, "updateConfiguration()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004386
4387 synchronized (mGlobalLock) {
Riddle Hsua0022cd2019-09-09 21:12:41 +08004388 if (mWindowManager == null) {
4389 Slog.w(TAG, "Skip updateConfiguration because mWindowManager isn't set");
4390 return false;
4391 }
4392
4393 if (values == null) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004394 // sentinel: fetch the current configuration from the window manager
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004395 values = mWindowManager.computeNewConfiguration(DEFAULT_DISPLAY);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004396 }
4397
Riddle Hsua0022cd2019-09-09 21:12:41 +08004398 mH.sendMessage(PooledLambda.obtainMessage(
4399 ActivityManagerInternal::updateOomLevelsForDisplay, mAmInternal,
4400 DEFAULT_DISPLAY));
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004401
4402 final long origId = Binder.clearCallingIdentity();
4403 try {
4404 if (values != null) {
4405 Settings.System.clearConfiguration(values);
4406 }
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004407 updateConfigurationLocked(values, null, false, false /* persistent */,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004408 UserHandle.USER_NULL, false /* deferResume */,
4409 mTmpUpdateConfigurationResult);
4410 return mTmpUpdateConfigurationResult.changes != 0;
4411 } finally {
4412 Binder.restoreCallingIdentity(origId);
4413 }
4414 }
4415 }
4416
4417 @Override
4418 public void dismissKeyguard(IBinder token, IKeyguardDismissCallback callback,
4419 CharSequence message) {
4420 if (message != null) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004421 mAmInternal.enforceCallingPermission(
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004422 Manifest.permission.SHOW_KEYGUARD_MESSAGE, "dismissKeyguard()");
4423 }
4424 final long callingId = Binder.clearCallingIdentity();
4425 try {
4426 synchronized (mGlobalLock) {
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004427 mKeyguardController.dismissKeyguard(token, callback, message);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004428 }
4429 } finally {
4430 Binder.restoreCallingIdentity(callingId);
4431 }
4432 }
4433
4434 @Override
4435 public void cancelTaskWindowTransition(int taskId) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004436 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004437 "cancelTaskWindowTransition()");
4438 final long ident = Binder.clearCallingIdentity();
4439 try {
4440 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08004441 final Task task = mRootWindowContainer.anyTaskForId(taskId,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004442 MATCH_TASK_IN_STACKS_ONLY);
4443 if (task == null) {
4444 Slog.w(TAG, "cancelTaskWindowTransition: taskId=" + taskId + " not found");
4445 return;
4446 }
Wale Ogunwale2322bed2019-10-10 17:24:19 +02004447 task.cancelTaskWindowTransition();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004448 }
4449 } finally {
4450 Binder.restoreCallingIdentity(ident);
4451 }
4452 }
4453
4454 @Override
Peter Kalauskas4dc04602020-02-12 18:49:03 -08004455 public ActivityManager.TaskSnapshot getTaskSnapshot(int taskId, boolean isLowResolution) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004456 enforceCallerIsRecentsOrHasPermission(READ_FRAME_BUFFER, "getTaskSnapshot()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004457 final long ident = Binder.clearCallingIdentity();
4458 try {
Peter Kalauskas4dc04602020-02-12 18:49:03 -08004459 return getTaskSnapshot(taskId, isLowResolution, true /* restoreFromDisk */);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004460 } finally {
4461 Binder.restoreCallingIdentity(ident);
4462 }
4463 }
4464
Peter Kalauskas4dc04602020-02-12 18:49:03 -08004465 private ActivityManager.TaskSnapshot getTaskSnapshot(int taskId, boolean isLowResolution,
Jorim Jaggi925bb3c2019-06-04 19:51:45 +02004466 boolean restoreFromDisk) {
Louis Changcdec0802019-11-11 11:45:07 +08004467 final Task task;
Jorim Jaggi925bb3c2019-06-04 19:51:45 +02004468 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08004469 task = mRootWindowContainer.anyTaskForId(taskId,
Jorim Jaggi925bb3c2019-06-04 19:51:45 +02004470 MATCH_TASK_IN_STACKS_OR_RECENT_TASKS);
4471 if (task == null) {
4472 Slog.w(TAG, "getTaskSnapshot: taskId=" + taskId + " not found");
4473 return null;
4474 }
4475 }
4476 // Don't call this while holding the lock as this operation might hit the disk.
Peter Kalauskas4dc04602020-02-12 18:49:03 -08004477 return task.getSnapshot(isLowResolution, restoreFromDisk);
Jorim Jaggi925bb3c2019-06-04 19:51:45 +02004478 }
4479
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004480 @Override
4481 public void setDisablePreviewScreenshots(IBinder token, boolean disable) {
4482 synchronized (mGlobalLock) {
4483 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
4484 if (r == null) {
4485 Slog.w(TAG, "setDisablePreviewScreenshots: Unable to find activity for token="
4486 + token);
4487 return;
4488 }
4489 final long origId = Binder.clearCallingIdentity();
4490 try {
4491 r.setDisablePreviewScreenshots(disable);
4492 } finally {
4493 Binder.restoreCallingIdentity(origId);
4494 }
4495 }
4496 }
4497
Riddle Hsu440f88b2019-11-06 22:17:35 +08004498 @Override
4499 public void invalidateHomeTaskSnapshot(IBinder token) {
4500 synchronized (mGlobalLock) {
4501 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
4502 if (r == null || !r.isActivityTypeHome()) {
4503 return;
4504 }
4505 mWindowManager.mTaskSnapshotController.removeSnapshotCache(r.getTask().mTaskId);
4506 }
4507 }
4508
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004509 /** Return the user id of the last resumed activity. */
4510 @Override
4511 public @UserIdInt
4512 int getLastResumedActivityUserId() {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004513 mAmInternal.enforceCallingPermission(
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004514 Manifest.permission.INTERACT_ACROSS_USERS_FULL, "getLastResumedActivityUserId()");
4515 synchronized (mGlobalLock) {
Wale Ogunwalef6733932018-06-27 05:14:34 -07004516 if (mLastResumedActivity == null) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004517 return getCurrentUserId();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004518 }
Wale Ogunwale8b19de92018-11-29 19:58:26 -08004519 return mLastResumedActivity.mUserId;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004520 }
4521 }
4522
4523 @Override
4524 public void updateLockTaskFeatures(int userId, int flags) {
4525 final int callingUid = Binder.getCallingUid();
4526 if (callingUid != 0 && callingUid != SYSTEM_UID) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004527 mAmInternal.enforceCallingPermission(android.Manifest.permission.UPDATE_LOCK_TASK_PACKAGES,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004528 "updateLockTaskFeatures()");
4529 }
4530 synchronized (mGlobalLock) {
4531 if (DEBUG_LOCKTASK) Slog.w(TAG_LOCKTASK, "Allowing features " + userId + ":0x" +
4532 Integer.toHexString(flags));
Wale Ogunwaled95c06b2018-05-08 10:35:38 -07004533 getLockTaskController().updateLockTaskFeatures(userId, flags);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004534 }
4535 }
4536
4537 @Override
4538 public void setShowWhenLocked(IBinder token, boolean showWhenLocked) {
4539 synchronized (mGlobalLock) {
4540 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
4541 if (r == null) {
4542 return;
4543 }
4544 final long origId = Binder.clearCallingIdentity();
4545 try {
4546 r.setShowWhenLocked(showWhenLocked);
4547 } finally {
4548 Binder.restoreCallingIdentity(origId);
4549 }
4550 }
4551 }
4552
4553 @Override
Issei Suzuki74e1eb22018-12-20 17:42:52 +01004554 public void setInheritShowWhenLocked(IBinder token, boolean inheritShowWhenLocked) {
4555 synchronized (mGlobalLock) {
4556 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
4557 if (r == null) {
4558 return;
4559 }
4560 final long origId = Binder.clearCallingIdentity();
4561 try {
4562 r.setInheritShowWhenLocked(inheritShowWhenLocked);
4563 } finally {
4564 Binder.restoreCallingIdentity(origId);
4565 }
4566 }
4567 }
4568
4569 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004570 public void setTurnScreenOn(IBinder token, boolean turnScreenOn) {
4571 synchronized (mGlobalLock) {
4572 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
4573 if (r == null) {
4574 return;
4575 }
4576 final long origId = Binder.clearCallingIdentity();
4577 try {
4578 r.setTurnScreenOn(turnScreenOn);
4579 } finally {
4580 Binder.restoreCallingIdentity(origId);
4581 }
4582 }
4583 }
4584
4585 @Override
4586 public void registerRemoteAnimations(IBinder token, RemoteAnimationDefinition definition) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004587 mAmInternal.enforceCallingPermission(CONTROL_REMOTE_APP_TRANSITION_ANIMATIONS,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004588 "registerRemoteAnimations");
Jorim Jaggi589c5ba2019-07-30 16:50:13 +02004589 definition.setCallingPidUid(Binder.getCallingPid(), Binder.getCallingUid());
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004590 synchronized (mGlobalLock) {
4591 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
4592 if (r == null) {
4593 return;
4594 }
4595 final long origId = Binder.clearCallingIdentity();
4596 try {
4597 r.registerRemoteAnimations(definition);
4598 } finally {
4599 Binder.restoreCallingIdentity(origId);
4600 }
4601 }
4602 }
4603
4604 @Override
Winson Chung10fc25d2019-12-10 14:13:56 -08004605 public void unregisterRemoteAnimations(IBinder token) {
4606 mAmInternal.enforceCallingPermission(CONTROL_REMOTE_APP_TRANSITION_ANIMATIONS,
4607 "unregisterRemoteAnimations");
4608 synchronized (mGlobalLock) {
4609 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
4610 if (r == null) {
4611 return;
4612 }
4613 final long origId = Binder.clearCallingIdentity();
4614 try {
4615 r.unregisterRemoteAnimations();
4616 } finally {
4617 Binder.restoreCallingIdentity(origId);
4618 }
4619 }
4620 }
4621
4622 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004623 public void registerRemoteAnimationForNextActivityStart(String packageName,
4624 RemoteAnimationAdapter adapter) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004625 mAmInternal.enforceCallingPermission(CONTROL_REMOTE_APP_TRANSITION_ANIMATIONS,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004626 "registerRemoteAnimationForNextActivityStart");
Jorim Jaggi589c5ba2019-07-30 16:50:13 +02004627 adapter.setCallingPidUid(Binder.getCallingPid(), Binder.getCallingUid());
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004628 synchronized (mGlobalLock) {
4629 final long origId = Binder.clearCallingIdentity();
4630 try {
Wale Ogunwale5fa8a8c2018-05-08 13:43:21 -07004631 getActivityStartController().registerRemoteAnimationForNextActivityStart(
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004632 packageName, adapter);
4633 } finally {
4634 Binder.restoreCallingIdentity(origId);
4635 }
4636 }
4637 }
4638
Evan Rosky966759f2019-01-15 10:33:58 -08004639 @Override
4640 public void registerRemoteAnimationsForDisplay(int displayId,
4641 RemoteAnimationDefinition definition) {
4642 mAmInternal.enforceCallingPermission(CONTROL_REMOTE_APP_TRANSITION_ANIMATIONS,
4643 "registerRemoteAnimations");
Jorim Jaggi589c5ba2019-07-30 16:50:13 +02004644 definition.setCallingPidUid(Binder.getCallingPid(), Binder.getCallingUid());
Evan Rosky966759f2019-01-15 10:33:58 -08004645 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08004646 final DisplayContent display = mRootWindowContainer.getDisplayContent(displayId);
Evan Rosky966759f2019-01-15 10:33:58 -08004647 if (display == null) {
4648 Slog.e(TAG, "Couldn't find display with id: " + displayId);
4649 return;
4650 }
4651 final long origId = Binder.clearCallingIdentity();
4652 try {
4653 display.mDisplayContent.registerRemoteAnimations(definition);
4654 } finally {
4655 Binder.restoreCallingIdentity(origId);
4656 }
4657 }
4658 }
4659
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004660 /** @see android.app.ActivityManager#alwaysShowUnsupportedCompileSdkWarning */
4661 @Override
4662 public void alwaysShowUnsupportedCompileSdkWarning(ComponentName activity) {
4663 synchronized (mGlobalLock) {
4664 final long origId = Binder.clearCallingIdentity();
4665 try {
Wale Ogunwale008163e2018-07-23 23:11:08 -07004666 mAppWarnings.alwaysShowUnsupportedCompileSdkWarning(activity);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004667 } finally {
4668 Binder.restoreCallingIdentity(origId);
4669 }
4670 }
4671 }
Wale Ogunwale6767eae2018-05-03 15:52:51 -07004672
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004673 @Override
4674 public void setVrThread(int tid) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004675 enforceSystemHasVrFeature();
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004676 synchronized (mGlobalLock) {
Wale Ogunwale342fbe92018-10-09 08:44:10 -07004677 final int pid = Binder.getCallingPid();
Michal Karpinski2e0aad22019-04-12 16:22:55 +01004678 final WindowProcessController wpc = mProcessMap.getProcess(pid);
Wale Ogunwale342fbe92018-10-09 08:44:10 -07004679 mVrController.setVrThreadLocked(tid, pid, wpc);
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004680 }
4681 }
4682
4683 @Override
4684 public void setPersistentVrThread(int tid) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004685 if (checkCallingPermission(Manifest.permission.RESTRICTED_VR_ACCESS)
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004686 != PERMISSION_GRANTED) {
4687 final String msg = "Permission Denial: setPersistentVrThread() from pid="
4688 + Binder.getCallingPid()
4689 + ", uid=" + Binder.getCallingUid()
4690 + " requires " + Manifest.permission.RESTRICTED_VR_ACCESS;
4691 Slog.w(TAG, msg);
4692 throw new SecurityException(msg);
4693 }
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004694 enforceSystemHasVrFeature();
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004695 synchronized (mGlobalLock) {
Wale Ogunwale342fbe92018-10-09 08:44:10 -07004696 final int pid = Binder.getCallingPid();
Michal Karpinski2e0aad22019-04-12 16:22:55 +01004697 final WindowProcessController proc = mProcessMap.getProcess(pid);
Wale Ogunwale342fbe92018-10-09 08:44:10 -07004698 mVrController.setPersistentVrThreadLocked(tid, pid, proc);
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004699 }
4700 }
4701
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004702 @Override
4703 public void stopAppSwitches() {
4704 enforceCallerIsRecentsOrHasPermission(STOP_APP_SWITCHES, "stopAppSwitches");
4705 synchronized (mGlobalLock) {
4706 mAppSwitchesAllowedTime = SystemClock.uptimeMillis() + APP_SWITCH_DELAY_TIME;
Ricky Wai906af482019-06-03 17:25:28 +01004707 mLastStopAppSwitchesTime = SystemClock.uptimeMillis();
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004708 mDidAppSwitch = false;
4709 getActivityStartController().schedulePendingActivityLaunches(APP_SWITCH_DELAY_TIME);
4710 }
4711 }
4712
4713 @Override
4714 public void resumeAppSwitches() {
4715 enforceCallerIsRecentsOrHasPermission(STOP_APP_SWITCHES, "resumeAppSwitches");
4716 synchronized (mGlobalLock) {
4717 // Note that we don't execute any pending app switches... we will
4718 // let those wait until either the timeout, or the next start
4719 // activity request.
4720 mAppSwitchesAllowedTime = 0;
4721 }
4722 }
4723
Ricky Wai906af482019-06-03 17:25:28 +01004724 long getLastStopAppSwitchesTime() {
4725 return mLastStopAppSwitchesTime;
4726 }
4727
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004728 void onStartActivitySetDidAppSwitch() {
4729 if (mDidAppSwitch) {
4730 // This is the second allowed switch since we stopped switches, so now just generally
4731 // allow switches. Use case:
4732 // - user presses home (switches disabled, switch to home, mDidAppSwitch now true);
4733 // - user taps a home icon (coming from home so allowed, we hit here and now allow
4734 // anyone to switch again).
4735 mAppSwitchesAllowedTime = 0;
4736 } else {
4737 mDidAppSwitch = true;
4738 }
4739 }
4740
4741 /** @return whether the system should disable UI modes incompatible with VR mode. */
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004742 boolean shouldDisableNonVrUiLocked() {
4743 return mVrController.shouldDisableNonVrUiLocked();
4744 }
4745
Wale Ogunwale53783742018-09-16 10:21:51 -07004746 private void applyUpdateVrModeLocked(ActivityRecord r) {
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004747 // 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 +00004748 // itself, but isn't on the main display, then move it there before enabling VR Mode.
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004749 if (r.requestedVrComponent != null && r.getDisplayId() != DEFAULT_DISPLAY) {
Wale Ogunwaleb8e6b632019-06-28 15:19:25 +00004750 Slog.i(TAG, "Moving " + r.shortComponentName + " from display " + r.getDisplayId()
4751 + " to main display for VR");
Louis Chang149d5c82019-12-30 09:47:39 +08004752 mRootWindowContainer.moveStackToDisplay(
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08004753 r.getRootTaskId(), DEFAULT_DISPLAY, true /* toTop */);
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004754 }
4755 mH.post(() -> {
4756 if (!mVrController.onVrModeChanged(r)) {
4757 return;
4758 }
4759 synchronized (mGlobalLock) {
4760 final boolean disableNonVrUi = mVrController.shouldDisableNonVrUiLocked();
4761 mWindowManager.disableNonVrUi(disableNonVrUi);
4762 if (disableNonVrUi) {
4763 // If we are in a VR mode where Picture-in-Picture mode is unsupported,
4764 // then remove the pinned stack.
Louis Chang149d5c82019-12-30 09:47:39 +08004765 mRootWindowContainer.removeStacksInWindowingModes(WINDOWING_MODE_PINNED);
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004766 }
4767 }
4768 });
4769 }
4770
Wale Ogunwale53783742018-09-16 10:21:51 -07004771 @Override
4772 public int getPackageScreenCompatMode(String packageName) {
4773 enforceNotIsolatedCaller("getPackageScreenCompatMode");
4774 synchronized (mGlobalLock) {
4775 return mCompatModePackages.getPackageScreenCompatModeLocked(packageName);
4776 }
4777 }
4778
4779 @Override
4780 public void setPackageScreenCompatMode(String packageName, int mode) {
4781 mAmInternal.enforceCallingPermission(android.Manifest.permission.SET_SCREEN_COMPATIBILITY,
4782 "setPackageScreenCompatMode");
4783 synchronized (mGlobalLock) {
4784 mCompatModePackages.setPackageScreenCompatModeLocked(packageName, mode);
4785 }
4786 }
4787
4788 @Override
4789 public boolean getPackageAskScreenCompat(String packageName) {
4790 enforceNotIsolatedCaller("getPackageAskScreenCompat");
4791 synchronized (mGlobalLock) {
4792 return mCompatModePackages.getPackageAskCompatModeLocked(packageName);
4793 }
4794 }
4795
4796 @Override
4797 public void setPackageAskScreenCompat(String packageName, boolean ask) {
4798 mAmInternal.enforceCallingPermission(android.Manifest.permission.SET_SCREEN_COMPATIBILITY,
4799 "setPackageAskScreenCompat");
4800 synchronized (mGlobalLock) {
4801 mCompatModePackages.setPackageAskCompatModeLocked(packageName, ask);
4802 }
4803 }
4804
Wale Ogunwale64258362018-10-16 15:13:37 -07004805 public static String relaunchReasonToString(int relaunchReason) {
4806 switch (relaunchReason) {
4807 case RELAUNCH_REASON_WINDOWING_MODE_RESIZE:
4808 return "window_resize";
4809 case RELAUNCH_REASON_FREE_RESIZE:
4810 return "free_resize";
4811 default:
4812 return null;
4813 }
4814 }
4815
Andrii Kulian5f750bc2018-07-17 08:57:23 -07004816 ActivityStack getTopDisplayFocusedStack() {
Louis Chang149d5c82019-12-30 09:47:39 +08004817 return mRootWindowContainer.getTopDisplayFocusedStack();
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004818 }
4819
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004820 /** Pokes the task persister. */
Louis Changcdec0802019-11-11 11:45:07 +08004821 void notifyTaskPersisterLocked(Task task, boolean flush) {
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004822 mRecentTasks.notifyTaskPersisterLocked(task, flush);
4823 }
4824
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004825 boolean isKeyguardLocked() {
4826 return mKeyguardController.isKeyguardLocked();
4827 }
4828
Garfield Tan01548632018-11-27 10:15:48 -08004829 /**
4830 * Clears launch params for the given package.
4831 * @param packageNames the names of the packages of which the launch params are to be cleared
4832 */
4833 @Override
4834 public void clearLaunchParamsForPackages(List<String> packageNames) {
4835 mAmInternal.enforceCallingPermission(Manifest.permission.MANAGE_ACTIVITY_STACKS,
4836 "clearLaunchParamsForPackages");
4837 synchronized (mGlobalLock) {
4838 for (int i = 0; i < packageNames.size(); ++i) {
4839 mStackSupervisor.mLaunchParamsPersister.removeRecordForPackage(packageNames.get(i));
4840 }
4841 }
4842 }
4843
Wale Ogunwale9e737db2018-12-17 15:42:37 -08004844 /**
4845 * Makes the display with the given id a single task instance display. I.e the display can only
4846 * contain one task.
4847 */
4848 @Override
4849 public void setDisplayToSingleTaskInstance(int displayId) {
4850 mAmInternal.enforceCallingPermission(Manifest.permission.MANAGE_ACTIVITY_STACKS,
4851 "setDisplayToSingleTaskInstance");
4852 final long origId = Binder.clearCallingIdentity();
4853 try {
Louis Chang677921f2019-12-06 16:44:24 +08004854 final DisplayContent display =
Louis Chang149d5c82019-12-30 09:47:39 +08004855 mRootWindowContainer.getDisplayContentOrCreate(displayId);
Wale Ogunwale9e737db2018-12-17 15:42:37 -08004856 if (display != null) {
4857 display.setDisplayToSingleTaskInstance();
4858 }
4859 } finally {
4860 Binder.restoreCallingIdentity(origId);
4861 }
4862 }
4863
jorgegil@google.com06bc3232019-10-31 14:51:22 -07004864 /**
4865 * Requests that an activity should enter picture-in-picture mode if possible.
4866 */
4867 @Override
4868 public void requestPictureInPictureMode(IBinder token) throws RemoteException {
4869 mAmInternal.enforceCallingPermission(Manifest.permission.MANAGE_ACTIVITY_STACKS,
4870 "requestPictureInPictureMode");
4871 final long origId = Binder.clearCallingIdentity();
4872 try {
4873 synchronized (mGlobalLock) {
4874 final ActivityRecord activity = ActivityRecord.forTokenLocked(token);
4875 if (activity == null) {
4876 return;
4877 }
4878
4879 final boolean canEnterPictureInPicture = activity.checkEnterPictureInPictureState(
4880 "requestPictureInPictureMode", /* beforeStopping */ false);
4881 if (!canEnterPictureInPicture) {
4882 throw new IllegalStateException(
4883 "Requested PIP on an activity that doesn't support it");
4884 }
4885
4886 try {
4887 final ClientTransaction transaction = ClientTransaction.obtain(
4888 activity.app.getThread(),
4889 activity.token);
4890 transaction.addCallback(EnterPipRequestedItem.obtain());
4891 getLifecycleManager().scheduleTransaction(transaction);
4892 } catch (Exception e) {
4893 Slog.w(TAG, "Failed to send enter pip requested item: "
4894 + activity.intent.getComponent(), e);
4895 }
4896 }
4897 } finally {
4898 Binder.restoreCallingIdentity(origId);
4899 }
4900 }
4901
Wale Ogunwale31913b52018-10-13 08:29:31 -07004902 void dumpLastANRLocked(PrintWriter pw) {
4903 pw.println("ACTIVITY MANAGER LAST ANR (dumpsys activity lastanr)");
4904 if (mLastANRState == null) {
4905 pw.println(" <no ANR has occurred since boot>");
4906 } else {
4907 pw.println(mLastANRState);
4908 }
4909 }
4910
4911 void dumpLastANRTracesLocked(PrintWriter pw) {
4912 pw.println("ACTIVITY MANAGER LAST ANR TRACES (dumpsys activity lastanr-traces)");
4913
4914 final File[] files = new File(ANR_TRACE_DIR).listFiles();
4915 if (ArrayUtils.isEmpty(files)) {
4916 pw.println(" <no ANR has occurred since boot>");
4917 return;
4918 }
4919 // Find the latest file.
4920 File latest = null;
4921 for (File f : files) {
4922 if ((latest == null) || (latest.lastModified() < f.lastModified())) {
4923 latest = f;
Wale Ogunwalef6733932018-06-27 05:14:34 -07004924 }
Wale Ogunwale31913b52018-10-13 08:29:31 -07004925 }
4926 pw.print("File: ");
4927 pw.print(latest.getName());
4928 pw.println();
4929 try (BufferedReader in = new BufferedReader(new FileReader(latest))) {
4930 String line;
4931 while ((line = in.readLine()) != null) {
4932 pw.println(line);
4933 }
4934 } catch (IOException e) {
4935 pw.print("Unable to read: ");
4936 pw.print(e);
4937 pw.println();
4938 }
4939 }
4940
4941 void dumpActivitiesLocked(FileDescriptor fd, PrintWriter pw, String[] args,
4942 int opti, boolean dumpAll, boolean dumpClient, String dumpPackage) {
4943 dumpActivitiesLocked(fd, pw, args, opti, dumpAll, dumpClient, dumpPackage,
4944 "ACTIVITY MANAGER ACTIVITIES (dumpsys activity activities)");
4945 }
4946
4947 void dumpActivitiesLocked(FileDescriptor fd, PrintWriter pw, String[] args,
4948 int opti, boolean dumpAll, boolean dumpClient, String dumpPackage, String header) {
4949 pw.println(header);
4950
Louis Chang149d5c82019-12-30 09:47:39 +08004951 boolean printedAnything = mRootWindowContainer.dumpActivities(fd, pw, dumpAll, dumpClient,
Wale Ogunwale31913b52018-10-13 08:29:31 -07004952 dumpPackage);
4953 boolean needSep = printedAnything;
4954
4955 boolean printed = ActivityStackSupervisor.printThisActivity(pw,
Louis Chang149d5c82019-12-30 09:47:39 +08004956 mRootWindowContainer.getTopResumedActivity(), dumpPackage, needSep,
Wale Ogunwale31913b52018-10-13 08:29:31 -07004957 " ResumedActivity: ");
4958 if (printed) {
4959 printedAnything = true;
4960 needSep = false;
4961 }
4962
4963 if (dumpPackage == null) {
4964 if (needSep) {
4965 pw.println();
4966 }
4967 printedAnything = true;
4968 mStackSupervisor.dump(pw, " ");
Winson Chung268eccb2020-03-26 13:43:44 -07004969 mTaskOrganizerController.dump(pw, " ");
Wale Ogunwale31913b52018-10-13 08:29:31 -07004970 }
4971
4972 if (!printedAnything) {
4973 pw.println(" (nothing)");
4974 }
4975 }
4976
4977 void dumpActivityContainersLocked(PrintWriter pw) {
Jeff Changde322732019-07-12 12:16:23 +08004978 pw.println("ACTIVITY MANAGER CONTAINERS (dumpsys activity containers)");
Louis Chang149d5c82019-12-30 09:47:39 +08004979 mRootWindowContainer.dumpChildrenNames(pw, " ");
Wale Ogunwale31913b52018-10-13 08:29:31 -07004980 pw.println(" ");
4981 }
4982
4983 void dumpActivityStarterLocked(PrintWriter pw, String dumpPackage) {
4984 pw.println("ACTIVITY MANAGER STARTER (dumpsys activity starter)");
4985 getActivityStartController().dump(pw, "", dumpPackage);
4986 }
4987
4988 /**
4989 * There are three things that cmd can be:
4990 * - a flattened component name that matches an existing activity
4991 * - the cmd arg isn't the flattened component name of an existing activity:
4992 * dump all activity whose component contains the cmd as a substring
4993 * - A hex number of the ActivityRecord object instance.
Riddle Hsud7cd8ed2019-07-16 18:19:01 +08004994 * <p>
4995 * The caller should not hold lock when calling this method because it will wait for the
4996 * activities to complete the dump.
Wale Ogunwale31913b52018-10-13 08:29:31 -07004997 *
4998 * @param dumpVisibleStacksOnly dump activity with {@param name} only if in a visible stack
4999 * @param dumpFocusedStackOnly dump activity with {@param name} only if in the focused stack
5000 */
5001 protected boolean dumpActivity(FileDescriptor fd, PrintWriter pw, String name, String[] args,
5002 int opti, boolean dumpAll, boolean dumpVisibleStacksOnly, boolean dumpFocusedStackOnly) {
5003 ArrayList<ActivityRecord> activities;
5004
5005 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08005006 activities = mRootWindowContainer.getDumpActivities(name, dumpVisibleStacksOnly,
Wale Ogunwale31913b52018-10-13 08:29:31 -07005007 dumpFocusedStackOnly);
5008 }
5009
5010 if (activities.size() <= 0) {
5011 return false;
5012 }
5013
5014 String[] newArgs = new String[args.length - opti];
5015 System.arraycopy(args, opti, newArgs, 0, args.length - opti);
5016
Louis Changcdec0802019-11-11 11:45:07 +08005017 Task lastTask = null;
Wale Ogunwale31913b52018-10-13 08:29:31 -07005018 boolean needSep = false;
5019 for (int i = activities.size() - 1; i >= 0; i--) {
5020 ActivityRecord r = activities.get(i);
5021 if (needSep) {
5022 pw.println();
5023 }
5024 needSep = true;
5025 synchronized (mGlobalLock) {
Louis Changcdec0802019-11-11 11:45:07 +08005026 final Task task = r.getTask();
Wale Ogunwale31913b52018-10-13 08:29:31 -07005027 if (lastTask != task) {
5028 lastTask = task;
5029 pw.print("TASK "); pw.print(lastTask.affinity);
Wale Ogunwale4e79a1c2019-10-05 20:52:40 -07005030 pw.print(" id="); pw.print(lastTask.mTaskId);
5031 pw.print(" userId="); pw.println(lastTask.mUserId);
Wale Ogunwale31913b52018-10-13 08:29:31 -07005032 if (dumpAll) {
5033 lastTask.dump(pw, " ");
5034 }
5035 }
5036 }
5037 dumpActivity(" ", fd, pw, activities.get(i), newArgs, dumpAll);
5038 }
5039 return true;
5040 }
5041
5042 /**
5043 * Invokes IApplicationThread.dumpActivity() on the thread of the specified activity if
5044 * there is a thread associated with the activity.
5045 */
5046 private void dumpActivity(String prefix, FileDescriptor fd, PrintWriter pw,
5047 final ActivityRecord r, String[] args, boolean dumpAll) {
5048 String innerPrefix = prefix + " ";
Riddle Hsud7cd8ed2019-07-16 18:19:01 +08005049 IApplicationThread appThread = null;
Wale Ogunwale31913b52018-10-13 08:29:31 -07005050 synchronized (mGlobalLock) {
5051 pw.print(prefix); pw.print("ACTIVITY "); pw.print(r.shortComponentName);
5052 pw.print(" "); pw.print(Integer.toHexString(System.identityHashCode(r)));
5053 pw.print(" pid=");
Riddle Hsud7cd8ed2019-07-16 18:19:01 +08005054 if (r.hasProcess()) {
5055 pw.println(r.app.getPid());
5056 appThread = r.app.getThread();
5057 } else {
5058 pw.println("(not running)");
5059 }
Wale Ogunwale31913b52018-10-13 08:29:31 -07005060 if (dumpAll) {
Garfield Tane8d84ab2019-10-11 09:49:40 -07005061 r.dump(pw, innerPrefix, true /* dumpAll */);
Wale Ogunwale31913b52018-10-13 08:29:31 -07005062 }
5063 }
Riddle Hsud7cd8ed2019-07-16 18:19:01 +08005064 if (appThread != null) {
Wale Ogunwale31913b52018-10-13 08:29:31 -07005065 // flush anything that is already in the PrintWriter since the thread is going
5066 // to write to the file descriptor directly
5067 pw.flush();
Riddle Hsud7cd8ed2019-07-16 18:19:01 +08005068 try (TransferPipe tp = new TransferPipe()) {
5069 appThread.dumpActivity(tp.getWriteFd(), r.appToken, innerPrefix, args);
5070 tp.go(fd);
Wale Ogunwale31913b52018-10-13 08:29:31 -07005071 } catch (IOException e) {
5072 pw.println(innerPrefix + "Failure while dumping the activity: " + e);
5073 } catch (RemoteException e) {
5074 pw.println(innerPrefix + "Got a RemoteException while dumping the activity");
5075 }
Wale Ogunwalef6733932018-06-27 05:14:34 -07005076 }
Wale Ogunwaled0412b32018-05-08 09:25:50 -07005077 }
5078
sanryhuang498e77e2018-12-06 14:57:01 +08005079 private void writeSleepStateToProto(ProtoOutputStream proto, int wakeFullness,
5080 boolean testPssMode) {
5081 final long sleepToken = proto.start(ActivityManagerServiceDumpProcessesProto.SLEEP_STATUS);
5082 proto.write(ActivityManagerServiceDumpProcessesProto.SleepStatus.WAKEFULNESS,
5083 PowerManagerInternal.wakefulnessToProtoEnum(wakeFullness));
Louis Chang149d5c82019-12-30 09:47:39 +08005084 for (ActivityTaskManagerInternal.SleepToken st : mRootWindowContainer.mSleepTokens) {
Wale Ogunwalef6733932018-06-27 05:14:34 -07005085 proto.write(ActivityManagerServiceDumpProcessesProto.SleepStatus.SLEEP_TOKENS,
5086 st.toString());
5087 }
Wale Ogunwalef6733932018-06-27 05:14:34 -07005088 proto.write(ActivityManagerServiceDumpProcessesProto.SleepStatus.SLEEPING, mSleeping);
5089 proto.write(ActivityManagerServiceDumpProcessesProto.SleepStatus.SHUTTING_DOWN,
5090 mShuttingDown);
sanryhuang498e77e2018-12-06 14:57:01 +08005091 proto.write(ActivityManagerServiceDumpProcessesProto.SleepStatus.TEST_PSS_MODE,
5092 testPssMode);
5093 proto.end(sleepToken);
Wale Ogunwaled0412b32018-05-08 09:25:50 -07005094 }
5095
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005096 int getCurrentUserId() {
5097 return mAmInternal.getCurrentUserId();
5098 }
5099
5100 private void enforceNotIsolatedCaller(String caller) {
5101 if (UserHandle.isIsolated(Binder.getCallingUid())) {
5102 throw new SecurityException("Isolated process not allowed to call " + caller);
5103 }
5104 }
5105
Wale Ogunwalef6733932018-06-27 05:14:34 -07005106 public Configuration getConfiguration() {
5107 Configuration ci;
5108 synchronized(mGlobalLock) {
Yunfan Chen75157d72018-07-27 14:47:21 +09005109 ci = new Configuration(getGlobalConfigurationForCallingPid());
Wale Ogunwalef6733932018-06-27 05:14:34 -07005110 ci.userSetLocale = false;
5111 }
5112 return ci;
5113 }
5114
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005115 /**
5116 * Current global configuration information. Contains general settings for the entire system,
5117 * also corresponds to the merged configuration of the default display.
5118 */
5119 Configuration getGlobalConfiguration() {
Louis Chang149d5c82019-12-30 09:47:39 +08005120 // Return default configuration before mRootWindowContainer initialized, which happens
Louis Chang3ff72a82019-12-17 12:12:59 +08005121 // while initializing process record for system, see {@link
5122 // ActivityManagerService#setSystemProcess}.
Louis Chang149d5c82019-12-30 09:47:39 +08005123 return mRootWindowContainer != null ? mRootWindowContainer.getConfiguration()
Louis Chang3ff72a82019-12-17 12:12:59 +08005124 : new Configuration();
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005125 }
5126
5127 boolean updateConfigurationLocked(Configuration values, ActivityRecord starting,
5128 boolean initLocale) {
5129 return updateConfigurationLocked(values, starting, initLocale, false /* deferResume */);
5130 }
5131
5132 boolean updateConfigurationLocked(Configuration values, ActivityRecord starting,
5133 boolean initLocale, boolean deferResume) {
5134 // pass UserHandle.USER_NULL as userId because we don't persist configuration for any user
5135 return updateConfigurationLocked(values, starting, initLocale, false /* persistent */,
5136 UserHandle.USER_NULL, deferResume);
5137 }
5138
Wale Ogunwale59507092018-10-29 09:00:30 -07005139 public void updatePersistentConfiguration(Configuration values, @UserIdInt int userId) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005140 final long origId = Binder.clearCallingIdentity();
5141 try {
5142 synchronized (mGlobalLock) {
5143 updateConfigurationLocked(values, null, false, true, userId,
5144 false /* deferResume */);
5145 }
5146 } finally {
5147 Binder.restoreCallingIdentity(origId);
5148 }
5149 }
5150
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005151 private boolean updateConfigurationLocked(Configuration values, ActivityRecord starting,
5152 boolean initLocale, boolean persistent, int userId, boolean deferResume) {
5153 return updateConfigurationLocked(values, starting, initLocale, persistent, userId,
5154 deferResume, null /* result */);
5155 }
5156
5157 /**
5158 * Do either or both things: (1) change the current configuration, and (2)
5159 * make sure the given activity is running with the (now) current
5160 * configuration. Returns true if the activity has been left running, or
5161 * false if <var>starting</var> is being destroyed to match the new
5162 * configuration.
5163 *
5164 * @param userId is only used when persistent parameter is set to true to persist configuration
5165 * for that particular user
5166 */
5167 boolean updateConfigurationLocked(Configuration values, ActivityRecord starting,
5168 boolean initLocale, boolean persistent, int userId, boolean deferResume,
5169 ActivityTaskManagerService.UpdateConfigurationResult result) {
5170 int changes = 0;
5171 boolean kept = true;
5172
Riddle Hsua0022cd2019-09-09 21:12:41 +08005173 deferWindowLayout();
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005174 try {
5175 if (values != null) {
5176 changes = updateGlobalConfigurationLocked(values, initLocale, persistent, userId,
5177 deferResume);
5178 }
5179
5180 kept = ensureConfigAndVisibilityAfterUpdate(starting, changes);
5181 } finally {
Riddle Hsua0022cd2019-09-09 21:12:41 +08005182 continueWindowLayout();
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005183 }
5184
5185 if (result != null) {
5186 result.changes = changes;
5187 result.activityRelaunched = !kept;
5188 }
5189 return kept;
5190 }
5191
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005192 /** Update default (global) configuration and notify listeners about changes. */
Shivam Agrawal1d3db652019-07-01 15:26:11 -07005193 int updateGlobalConfigurationLocked(@NonNull Configuration values, boolean initLocale,
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005194 boolean persistent, int userId, boolean deferResume) {
Shivam Agrawal1d3db652019-07-01 15:26:11 -07005195
Louis Chang677921f2019-12-06 16:44:24 +08005196 final DisplayContent defaultDisplay =
Louis Chang149d5c82019-12-30 09:47:39 +08005197 mRootWindowContainer.getDisplayContent(DEFAULT_DISPLAY);
Shivam Agrawal1d3db652019-07-01 15:26:11 -07005198
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005199 mTempConfig.setTo(getGlobalConfiguration());
5200 final int changes = mTempConfig.updateFrom(values);
5201 if (changes == 0) {
5202 // Since calling to Activity.setRequestedOrientation leads to freezing the window with
5203 // setting WindowManagerService.mWaitingForConfig to true, it is important that we call
5204 // performDisplayOverrideConfigUpdate in order to send the new display configuration
5205 // (even if there are no actual changes) to unfreeze the window.
Shivam Agrawal1d3db652019-07-01 15:26:11 -07005206 defaultDisplay.performDisplayOverrideConfigUpdate(values, deferResume);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005207 return 0;
5208 }
5209
5210 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.i(TAG_CONFIGURATION,
5211 "Updating global configuration to: " + values);
Jeff Changd136e772019-11-05 20:33:52 +08005212 writeConfigurationChanged(changes);
Muhammad Qureshi759f92f2020-01-28 10:41:55 -08005213 FrameworkStatsLog.write(FrameworkStatsLog.RESOURCE_CONFIGURATION_CHANGED,
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005214 values.colorMode,
5215 values.densityDpi,
5216 values.fontScale,
5217 values.hardKeyboardHidden,
5218 values.keyboard,
5219 values.keyboardHidden,
5220 values.mcc,
5221 values.mnc,
5222 values.navigation,
5223 values.navigationHidden,
5224 values.orientation,
5225 values.screenHeightDp,
5226 values.screenLayout,
5227 values.screenWidthDp,
5228 values.smallestScreenWidthDp,
5229 values.touchscreen,
5230 values.uiMode);
5231
5232
5233 if (!initLocale && !values.getLocales().isEmpty() && values.userSetLocale) {
5234 final LocaleList locales = values.getLocales();
5235 int bestLocaleIndex = 0;
5236 if (locales.size() > 1) {
5237 if (mSupportedSystemLocales == null) {
5238 mSupportedSystemLocales = Resources.getSystem().getAssets().getLocales();
5239 }
5240 bestLocaleIndex = Math.max(0, locales.getFirstMatchIndex(mSupportedSystemLocales));
5241 }
5242 SystemProperties.set("persist.sys.locale",
5243 locales.get(bestLocaleIndex).toLanguageTag());
5244 LocaleList.setDefault(locales, bestLocaleIndex);
Wale Ogunwale342fbe92018-10-09 08:44:10 -07005245
5246 final Message m = PooledLambda.obtainMessage(
5247 ActivityTaskManagerService::sendLocaleToMountDaemonMsg, this,
5248 locales.get(bestLocaleIndex));
5249 mH.sendMessage(m);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005250 }
5251
Yunfan Chen75157d72018-07-27 14:47:21 +09005252 mTempConfig.seq = increaseConfigurationSeqLocked();
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005253
5254 // Update stored global config and notify everyone about the change.
Louis Chang149d5c82019-12-30 09:47:39 +08005255 mRootWindowContainer.onConfigurationChanged(mTempConfig);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005256
5257 Slog.i(TAG, "Config changes=" + Integer.toHexString(changes) + " " + mTempConfig);
5258 // TODO(multi-display): Update UsageEvents#Event to include displayId.
Wale Ogunwale342fbe92018-10-09 08:44:10 -07005259 mUsageStatsInternal.reportConfigurationChange(mTempConfig, mAmInternal.getCurrentUserId());
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005260
5261 // TODO: If our config changes, should we auto dismiss any currently showing dialogs?
Wale Ogunwalef6733932018-06-27 05:14:34 -07005262 updateShouldShowDialogsLocked(mTempConfig);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005263
5264 AttributeCache ac = AttributeCache.instance();
5265 if (ac != null) {
5266 ac.updateConfiguration(mTempConfig);
5267 }
5268
5269 // Make sure all resources in our process are updated right now, so that anyone who is going
5270 // to retrieve resource values after we return will be sure to get the new ones. This is
5271 // especially important during boot, where the first config change needs to guarantee all
5272 // resources have that config before following boot code is executed.
Wale Ogunwale342fbe92018-10-09 08:44:10 -07005273 mSystemThread.applyConfigurationToResources(mTempConfig);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005274
5275 // We need another copy of global config because we're scheduling some calls instead of
5276 // running them in place. We need to be sure that object we send will be handled unchanged.
5277 final Configuration configCopy = new Configuration(mTempConfig);
5278 if (persistent && Settings.System.hasInterestingConfigurationChanges(changes)) {
Wale Ogunwale342fbe92018-10-09 08:44:10 -07005279 final Message msg = PooledLambda.obtainMessage(
5280 ActivityTaskManagerService::sendPutConfigurationForUserMsg,
5281 this, userId, configCopy);
5282 mH.sendMessage(msg);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005283 }
5284
Michal Karpinski2e0aad22019-04-12 16:22:55 +01005285 SparseArray<WindowProcessController> pidMap = mProcessMap.getPidMap();
5286 for (int i = pidMap.size() - 1; i >= 0; i--) {
5287 final int pid = pidMap.keyAt(i);
5288 final WindowProcessController app = pidMap.get(pid);
Yunfan Chen34fcc7a2018-10-11 16:26:09 -07005289 if (DEBUG_CONFIGURATION) {
5290 Slog.v(TAG_CONFIGURATION, "Update process config of "
5291 + app.mName + " to new config " + configCopy);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005292 }
Yunfan Chen34fcc7a2018-10-11 16:26:09 -07005293 app.onConfigurationChanged(configCopy);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005294 }
5295
Wale Ogunwale2ea36d42018-10-18 10:27:31 -07005296 final Message msg = PooledLambda.obtainMessage(
5297 ActivityManagerInternal::broadcastGlobalConfigurationChanged,
5298 mAmInternal, changes, initLocale);
5299 mH.sendMessage(msg);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005300
5301 // Override configuration of the default display duplicates global config, so we need to
5302 // update it also. This will also notify WindowManager about changes.
Louis Chang149d5c82019-12-30 09:47:39 +08005303 defaultDisplay.performDisplayOverrideConfigUpdate(mRootWindowContainer.getConfiguration(),
Shivam Agrawal1d3db652019-07-01 15:26:11 -07005304 deferResume);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005305
5306 return changes;
5307 }
5308
Riddle Hsua0022cd2019-09-09 21:12:41 +08005309 /** @see WindowSurfacePlacer#deferLayout */
5310 void deferWindowLayout() {
5311 if (!mWindowManager.mWindowPlacerLocked.isLayoutDeferred()) {
5312 // Reset the reasons at the first entrance because we only care about the changes in the
5313 // deferred scope.
5314 mLayoutReasons = 0;
5315 }
5316
5317 mWindowManager.mWindowPlacerLocked.deferLayout();
5318 }
5319
5320 /** @see WindowSurfacePlacer#continueLayout */
5321 void continueWindowLayout() {
5322 mWindowManager.mWindowPlacerLocked.continueLayout(mLayoutReasons != 0);
5323 if (DEBUG_ALL && !mWindowManager.mWindowPlacerLocked.isLayoutDeferred()) {
5324 Slog.i(TAG, "continueWindowLayout reason=" + mLayoutReasons);
5325 }
5326 }
5327
5328 /**
5329 * If a reason is added between {@link #deferWindowLayout} and {@link #continueWindowLayout},
5330 * it will make sure {@link WindowSurfacePlacer#performSurfacePlacement} is called when the last
5331 * defer count is gone.
5332 */
5333 void addWindowLayoutReasons(@LayoutReason int reasons) {
5334 mLayoutReasons |= reasons;
5335 }
5336
Wale Ogunwalef6733932018-06-27 05:14:34 -07005337 private void updateEventDispatchingLocked(boolean booted) {
5338 mWindowManager.setEventDispatching(booted && !mShuttingDown);
5339 }
5340
Wale Ogunwale342fbe92018-10-09 08:44:10 -07005341 private void sendPutConfigurationForUserMsg(int userId, Configuration config) {
5342 final ContentResolver resolver = mContext.getContentResolver();
5343 Settings.System.putConfigurationForUser(resolver, config, userId);
5344 }
5345
5346 private void sendLocaleToMountDaemonMsg(Locale l) {
5347 try {
5348 IBinder service = ServiceManager.getService("mount");
5349 IStorageManager storageManager = IStorageManager.Stub.asInterface(service);
5350 Log.d(TAG, "Storing locale " + l.toLanguageTag() + " for decryption UI");
5351 storageManager.setField(StorageManager.SYSTEM_LOCALE_KEY, l.toLanguageTag());
5352 } catch (RemoteException e) {
5353 Log.e(TAG, "Error storing locale for decryption UI", e);
5354 }
5355 }
5356
Alison Cichowlas3e340502018-08-07 17:15:01 -04005357 private void expireStartAsCallerTokenMsg(IBinder permissionToken) {
5358 mStartActivitySources.remove(permissionToken);
5359 mExpiredStartAsCallerTokens.add(permissionToken);
5360 }
5361
5362 private void forgetStartAsCallerTokenMsg(IBinder permissionToken) {
5363 mExpiredStartAsCallerTokens.remove(permissionToken);
5364 }
5365
Wale Ogunwale342fbe92018-10-09 08:44:10 -07005366 boolean isActivityStartsLoggingEnabled() {
5367 return mAmInternal.isActivityStartsLoggingEnabled();
5368 }
5369
Michal Karpinski8596ded2018-11-14 14:43:48 +00005370 boolean isBackgroundActivityStartsEnabled() {
5371 return mAmInternal.isBackgroundActivityStartsEnabled();
5372 }
5373
Wale Ogunwalef6733932018-06-27 05:14:34 -07005374 void enableScreenAfterBoot(boolean booted) {
Jeff Changd136e772019-11-05 20:33:52 +08005375 writeBootProgressEnableScreen(SystemClock.uptimeMillis());
Wale Ogunwalef6733932018-06-27 05:14:34 -07005376 mWindowManager.enableScreenAfterBoot();
5377
5378 synchronized (mGlobalLock) {
5379 updateEventDispatchingLocked(booted);
5380 }
5381 }
5382
Wale Ogunwale906f9c62018-07-23 11:23:44 -07005383 static long getInputDispatchingTimeoutLocked(ActivityRecord r) {
5384 if (r == null || !r.hasProcess()) {
5385 return KEY_DISPATCHING_TIMEOUT_MS;
5386 }
5387 return getInputDispatchingTimeoutLocked(r.app);
5388 }
5389
5390 private static long getInputDispatchingTimeoutLocked(WindowProcessController r) {
Wale Ogunwale51cc98a2018-10-15 10:41:05 -07005391 return r != null ? r.getInputDispatchingTimeout() : KEY_DISPATCHING_TIMEOUT_MS;
Wale Ogunwale906f9c62018-07-23 11:23:44 -07005392 }
5393
Wale Ogunwalef6733932018-06-27 05:14:34 -07005394 /**
5395 * Decide based on the configuration whether we should show the ANR,
5396 * crash, etc dialogs. The idea is that if there is no affordance to
5397 * press the on-screen buttons, or the user experience would be more
5398 * greatly impacted than the crash itself, we shouldn't show the dialog.
5399 *
5400 * A thought: SystemUI might also want to get told about this, the Power
5401 * dialog / global actions also might want different behaviors.
5402 */
5403 private void updateShouldShowDialogsLocked(Configuration config) {
5404 final boolean inputMethodExists = !(config.keyboard == Configuration.KEYBOARD_NOKEYS
5405 && config.touchscreen == Configuration.TOUCHSCREEN_NOTOUCH
5406 && config.navigation == Configuration.NAVIGATION_NONAV);
Wale Ogunwalef6733932018-06-27 05:14:34 -07005407 final boolean hideDialogsSet = Settings.Global.getInt(mContext.getContentResolver(),
5408 HIDE_ERROR_DIALOGS, 0) != 0;
Yuncheol Heo5d9b2712020-04-16 17:31:32 -07005409 mShowDialogs = inputMethodExists
5410 && ActivityTaskManager.currentUiModeSupportsErrorDialogs(mContext)
5411 && !hideDialogsSet;
Wale Ogunwalef6733932018-06-27 05:14:34 -07005412 }
5413
5414 private void updateFontScaleIfNeeded(@UserIdInt int userId) {
5415 final float scaleFactor = Settings.System.getFloatForUser(mContext.getContentResolver(),
5416 FONT_SCALE, 1.0f, userId);
5417
Riddle Hsu8419e4b2019-09-18 23:28:01 +08005418 synchronized (mGlobalLock) {
Wale Ogunwalef6733932018-06-27 05:14:34 -07005419 if (getGlobalConfiguration().fontScale == scaleFactor) {
5420 return;
5421 }
5422
5423 final Configuration configuration
5424 = mWindowManager.computeNewConfiguration(DEFAULT_DISPLAY);
5425 configuration.fontScale = scaleFactor;
5426 updatePersistentConfiguration(configuration, userId);
5427 }
5428 }
5429
5430 // Actually is sleeping or shutting down or whatever else in the future
5431 // is an inactive state.
5432 boolean isSleepingOrShuttingDownLocked() {
5433 return isSleepingLocked() || mShuttingDown;
5434 }
5435
5436 boolean isSleepingLocked() {
5437 return mSleeping;
5438 }
5439
Riddle Hsu16567132018-08-16 21:37:47 +08005440 /** Update AMS states when an activity is resumed. */
Wale Ogunwalef6733932018-06-27 05:14:34 -07005441 void setResumedActivityUncheckLocked(ActivityRecord r, String reason) {
Louis Changcdec0802019-11-11 11:45:07 +08005442 final Task task = r.getTask();
Wale Ogunwalef6733932018-06-27 05:14:34 -07005443 if (task.isActivityTypeStandard()) {
5444 if (mCurAppTimeTracker != r.appTimeTracker) {
5445 // We are switching app tracking. Complete the current one.
5446 if (mCurAppTimeTracker != null) {
5447 mCurAppTimeTracker.stop();
5448 mH.obtainMessage(
5449 REPORT_TIME_TRACKER_MSG, mCurAppTimeTracker).sendToTarget();
Louis Chang149d5c82019-12-30 09:47:39 +08005450 mRootWindowContainer.clearOtherAppTimeTrackers(r.appTimeTracker);
Wale Ogunwalef6733932018-06-27 05:14:34 -07005451 mCurAppTimeTracker = null;
5452 }
5453 if (r.appTimeTracker != null) {
5454 mCurAppTimeTracker = r.appTimeTracker;
5455 startTimeTrackingFocusedActivityLocked();
5456 }
5457 } else {
5458 startTimeTrackingFocusedActivityLocked();
5459 }
5460 } else {
5461 r.appTimeTracker = null;
5462 }
5463 // TODO: VI Maybe r.task.voiceInteractor || r.voiceInteractor != null
5464 // TODO: Probably not, because we don't want to resume voice on switching
5465 // back to this activity
5466 if (task.voiceInteractor != null) {
5467 startRunningVoiceLocked(task.voiceSession, r.info.applicationInfo.uid);
5468 } else {
5469 finishRunningVoiceLocked();
5470
5471 if (mLastResumedActivity != null) {
5472 final IVoiceInteractionSession session;
5473
Louis Changcdec0802019-11-11 11:45:07 +08005474 final Task lastResumedActivityTask = mLastResumedActivity.getTask();
Wale Ogunwalef6733932018-06-27 05:14:34 -07005475 if (lastResumedActivityTask != null
5476 && lastResumedActivityTask.voiceSession != null) {
5477 session = lastResumedActivityTask.voiceSession;
5478 } else {
5479 session = mLastResumedActivity.voiceSession;
5480 }
5481
5482 if (session != null) {
5483 // We had been in a voice interaction session, but now focused has
5484 // move to something different. Just finish the session, we can't
5485 // return to it and retain the proper state and synchronization with
5486 // the voice interaction service.
5487 finishVoiceTask(session);
5488 }
5489 }
5490 }
5491
Wale Ogunwale8b19de92018-11-29 19:58:26 -08005492 if (mLastResumedActivity != null && r.mUserId != mLastResumedActivity.mUserId) {
5493 mAmInternal.sendForegroundProfileChanged(r.mUserId);
Wale Ogunwalef6733932018-06-27 05:14:34 -07005494 }
Bogyun Sonbfb64dc2019-12-09 17:50:24 +09005495 final Task prevTask = mLastResumedActivity != null ? mLastResumedActivity.getTask() : null;
5496
Wale Ogunwalef6733932018-06-27 05:14:34 -07005497 updateResumedAppTrace(r);
5498 mLastResumedActivity = r;
5499
Tiger Huang1e5b10a2018-07-30 20:19:51 +08005500 r.getDisplay().setFocusedApp(r, true);
Wale Ogunwalef6733932018-06-27 05:14:34 -07005501
Bogyun Sonbfb64dc2019-12-09 17:50:24 +09005502 if (prevTask == null || task != prevTask) {
5503 if (prevTask != null) {
5504 mTaskChangeNotificationController.notifyTaskFocusChanged(prevTask.mTaskId, false);
5505 }
5506 mTaskChangeNotificationController.notifyTaskFocusChanged(task.mTaskId, true);
5507 }
5508
Wale Ogunwalef6733932018-06-27 05:14:34 -07005509 applyUpdateLockStateLocked(r);
5510 applyUpdateVrModeLocked(r);
5511
Jeff Changd136e772019-11-05 20:33:52 +08005512 EventLogTags.writeWmSetResumedActivity(
Wale Ogunwale8b19de92018-11-29 19:58:26 -08005513 r == null ? -1 : r.mUserId,
Wale Ogunwalef6733932018-06-27 05:14:34 -07005514 r == null ? "NULL" : r.shortComponentName,
5515 reason);
5516 }
5517
5518 ActivityTaskManagerInternal.SleepToken acquireSleepToken(String tag, int displayId) {
5519 synchronized (mGlobalLock) {
Wale Ogunwaled32da472018-11-16 07:19:28 -08005520 final ActivityTaskManagerInternal.SleepToken token =
Louis Chang149d5c82019-12-30 09:47:39 +08005521 mRootWindowContainer.createSleepToken(tag, displayId);
Wale Ogunwalef6733932018-06-27 05:14:34 -07005522 updateSleepIfNeededLocked();
5523 return token;
5524 }
5525 }
5526
5527 void updateSleepIfNeededLocked() {
Louis Chang149d5c82019-12-30 09:47:39 +08005528 final boolean shouldSleep = !mRootWindowContainer.hasAwakeDisplay();
Wale Ogunwalef6733932018-06-27 05:14:34 -07005529 final boolean wasSleeping = mSleeping;
5530 boolean updateOomAdj = false;
5531
5532 if (!shouldSleep) {
5533 // If wasSleeping is true, we need to wake up activity manager state from when
5534 // we started sleeping. In either case, we need to apply the sleep tokens, which
5535 // will wake up stacks or put them to sleep as appropriate.
5536 if (wasSleeping) {
5537 mSleeping = false;
Muhammad Qureshi759f92f2020-01-28 10:41:55 -08005538 FrameworkStatsLog.write(FrameworkStatsLog.ACTIVITY_MANAGER_SLEEP_STATE_CHANGED,
5539 FrameworkStatsLog.ACTIVITY_MANAGER_SLEEP_STATE_CHANGED__STATE__AWAKE);
Wale Ogunwalef6733932018-06-27 05:14:34 -07005540 startTimeTrackingFocusedActivityLocked();
5541 mTopProcessState = ActivityManager.PROCESS_STATE_TOP;
Varun Shah98694fb2019-04-11 09:28:27 -07005542 Slog.d(TAG, "Top Process State changed to PROCESS_STATE_TOP");
Wale Ogunwalef6733932018-06-27 05:14:34 -07005543 mStackSupervisor.comeOutOfSleepIfNeededLocked();
5544 }
Louis Chang149d5c82019-12-30 09:47:39 +08005545 mRootWindowContainer.applySleepTokens(true /* applyToStacks */);
Wale Ogunwalef6733932018-06-27 05:14:34 -07005546 if (wasSleeping) {
5547 updateOomAdj = true;
5548 }
5549 } else if (!mSleeping && shouldSleep) {
5550 mSleeping = true;
Muhammad Qureshi759f92f2020-01-28 10:41:55 -08005551 FrameworkStatsLog.write(FrameworkStatsLog.ACTIVITY_MANAGER_SLEEP_STATE_CHANGED,
5552 FrameworkStatsLog.ACTIVITY_MANAGER_SLEEP_STATE_CHANGED__STATE__ASLEEP);
Wale Ogunwalef6733932018-06-27 05:14:34 -07005553 if (mCurAppTimeTracker != null) {
5554 mCurAppTimeTracker.stop();
5555 }
5556 mTopProcessState = ActivityManager.PROCESS_STATE_TOP_SLEEPING;
Varun Shah98694fb2019-04-11 09:28:27 -07005557 Slog.d(TAG, "Top Process State changed to PROCESS_STATE_TOP_SLEEPING");
Wale Ogunwalef6733932018-06-27 05:14:34 -07005558 mStackSupervisor.goingToSleepLocked();
5559 updateResumedAppTrace(null /* resumed */);
5560 updateOomAdj = true;
5561 }
5562 if (updateOomAdj) {
wilsonshih8d096d22019-08-01 17:46:14 +08005563 updateOomAdj();
Wale Ogunwalef6733932018-06-27 05:14:34 -07005564 }
5565 }
5566
5567 void updateOomAdj() {
Wale Ogunwalea38654f2019-11-17 20:37:15 -08005568 mH.removeCallbacks(mUpdateOomAdjRunnable);
5569 mH.post(mUpdateOomAdjRunnable);
Wale Ogunwalef6733932018-06-27 05:14:34 -07005570 }
5571
Wale Ogunwale53783742018-09-16 10:21:51 -07005572 void updateCpuStats() {
5573 mH.post(mAmInternal::updateCpuStats);
5574 }
5575
Hui Yu03d12402018-12-06 18:00:37 -08005576 void updateBatteryStats(ActivityRecord component, boolean resumed) {
5577 final Message m = PooledLambda.obtainMessage(ActivityManagerInternal::updateBatteryStats,
Wale Ogunwale8b19de92018-11-29 19:58:26 -08005578 mAmInternal, component.mActivityComponent, component.app.mUid, component.mUserId,
5579 resumed);
Wale Ogunwale53783742018-09-16 10:21:51 -07005580 mH.sendMessage(m);
5581 }
5582
Hui Yu03d12402018-12-06 18:00:37 -08005583 void updateActivityUsageStats(ActivityRecord activity, int event) {
Michael Wachenschwanz0b4ab1f2019-01-07 13:59:10 -08005584 ComponentName taskRoot = null;
Louis Changcdec0802019-11-11 11:45:07 +08005585 final Task task = activity.getTask();
Michael Wachenschwanz0b4ab1f2019-01-07 13:59:10 -08005586 if (task != null) {
5587 final ActivityRecord rootActivity = task.getRootActivity();
5588 if (rootActivity != null) {
5589 taskRoot = rootActivity.mActivityComponent;
5590 }
5591 }
5592
Hui Yu03d12402018-12-06 18:00:37 -08005593 final Message m = PooledLambda.obtainMessage(
5594 ActivityManagerInternal::updateActivityUsageStats, mAmInternal,
Michael Wachenschwanz0b4ab1f2019-01-07 13:59:10 -08005595 activity.mActivityComponent, activity.mUserId, event, activity.appToken, taskRoot);
Hui Yu03d12402018-12-06 18:00:37 -08005596 mH.sendMessage(m);
5597 }
5598
Riddle Hsu32dbdca2019-05-17 23:10:16 -06005599 void startProcessAsync(ActivityRecord activity, boolean knownToBeDead, boolean isTop,
5600 String hostingType) {
5601 try {
Riddle Hsu2ca561b2019-10-08 21:58:58 +08005602 if (Trace.isTagEnabled(TRACE_TAG_WINDOW_MANAGER)) {
5603 Trace.traceBegin(TRACE_TAG_WINDOW_MANAGER, "dispatchingStartProcess:"
Riddle Hsu32dbdca2019-05-17 23:10:16 -06005604 + activity.processName);
5605 }
5606 // Post message to start process to avoid possible deadlock of calling into AMS with the
5607 // ATMS lock held.
5608 final Message m = PooledLambda.obtainMessage(ActivityManagerInternal::startProcess,
5609 mAmInternal, activity.processName, activity.info.applicationInfo, knownToBeDead,
5610 isTop, hostingType, activity.intent.getComponent());
5611 mH.sendMessage(m);
5612 } finally {
Riddle Hsu2ca561b2019-10-08 21:58:58 +08005613 Trace.traceEnd(TRACE_TAG_WINDOW_MANAGER);
Riddle Hsu32dbdca2019-05-17 23:10:16 -06005614 }
5615 }
5616
Wale Ogunwale53783742018-09-16 10:21:51 -07005617 void setBooting(boolean booting) {
5618 mAmInternal.setBooting(booting);
5619 }
5620
5621 boolean isBooting() {
5622 return mAmInternal.isBooting();
5623 }
5624
5625 void setBooted(boolean booted) {
5626 mAmInternal.setBooted(booted);
5627 }
5628
5629 boolean isBooted() {
5630 return mAmInternal.isBooted();
5631 }
5632
5633 void postFinishBooting(boolean finishBooting, boolean enableScreen) {
5634 mH.post(() -> {
5635 if (finishBooting) {
5636 mAmInternal.finishBooting();
5637 }
5638 if (enableScreen) {
5639 mInternal.enableScreenAfterBoot(isBooted());
5640 }
5641 });
5642 }
5643
5644 void setHeavyWeightProcess(ActivityRecord root) {
5645 mHeavyWeightProcess = root.app;
5646 final Message m = PooledLambda.obtainMessage(
5647 ActivityTaskManagerService::postHeavyWeightProcessNotification, this,
Wale Ogunwale8b19de92018-11-29 19:58:26 -08005648 root.app, root.intent, root.mUserId);
Wale Ogunwale53783742018-09-16 10:21:51 -07005649 mH.sendMessage(m);
5650 }
5651
5652 void clearHeavyWeightProcessIfEquals(WindowProcessController proc) {
5653 if (mHeavyWeightProcess == null || mHeavyWeightProcess != proc) {
5654 return;
5655 }
5656
5657 mHeavyWeightProcess = null;
5658 final Message m = PooledLambda.obtainMessage(
5659 ActivityTaskManagerService::cancelHeavyWeightProcessNotification, this,
5660 proc.mUserId);
5661 mH.sendMessage(m);
5662 }
5663
5664 private void cancelHeavyWeightProcessNotification(int userId) {
5665 final INotificationManager inm = NotificationManager.getService();
5666 if (inm == null) {
5667 return;
5668 }
5669 try {
Julia Reynoldse4a47dd2019-06-07 13:40:59 -04005670 inm.cancelNotificationWithTag("android", "android", null,
Wale Ogunwale53783742018-09-16 10:21:51 -07005671 SystemMessage.NOTE_HEAVY_WEIGHT_NOTIFICATION, userId);
5672 } catch (RuntimeException e) {
5673 Slog.w(TAG, "Error canceling notification for service", e);
5674 } catch (RemoteException e) {
5675 }
5676
5677 }
5678
5679 private void postHeavyWeightProcessNotification(
5680 WindowProcessController proc, Intent intent, int userId) {
5681 if (proc == null) {
5682 return;
5683 }
5684
5685 final INotificationManager inm = NotificationManager.getService();
5686 if (inm == null) {
5687 return;
5688 }
5689
5690 try {
5691 Context context = mContext.createPackageContext(proc.mInfo.packageName, 0);
5692 String text = mContext.getString(R.string.heavy_weight_notification,
5693 context.getApplicationInfo().loadLabel(context.getPackageManager()));
5694 Notification notification =
5695 new Notification.Builder(context,
5696 SystemNotificationChannels.HEAVY_WEIGHT_APP)
5697 .setSmallIcon(com.android.internal.R.drawable.stat_sys_adb)
5698 .setWhen(0)
5699 .setOngoing(true)
5700 .setTicker(text)
5701 .setColor(mContext.getColor(
5702 com.android.internal.R.color.system_notification_accent_color))
5703 .setContentTitle(text)
5704 .setContentText(
5705 mContext.getText(R.string.heavy_weight_notification_detail))
5706 .setContentIntent(PendingIntent.getActivityAsUser(mContext, 0,
5707 intent, PendingIntent.FLAG_CANCEL_CURRENT, null,
5708 new UserHandle(userId)))
5709 .build();
5710 try {
5711 inm.enqueueNotificationWithTag("android", "android", null,
5712 SystemMessage.NOTE_HEAVY_WEIGHT_NOTIFICATION, notification, userId);
5713 } catch (RuntimeException e) {
5714 Slog.w(TAG, "Error showing notification for heavy-weight app", e);
5715 } catch (RemoteException e) {
5716 }
5717 } catch (PackageManager.NameNotFoundException e) {
5718 Slog.w(TAG, "Unable to create context for heavy notification", e);
5719 }
5720
5721 }
5722
Philip P. Moltmannee295092020-02-10 08:46:26 -08005723 IIntentSender getIntentSenderLocked(int type, String packageName, String featureId,
5724 int callingUid, int userId, IBinder token, String resultWho, int requestCode,
5725 Intent[] intents, String[] resolvedTypes, int flags, Bundle bOptions) {
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07005726
5727 ActivityRecord activity = null;
5728 if (type == ActivityManager.INTENT_SENDER_ACTIVITY_RESULT) {
5729 activity = ActivityRecord.isInStackLocked(token);
5730 if (activity == null) {
5731 Slog.w(TAG, "Failed createPendingResult: activity " + token + " not in any stack");
5732 return null;
5733 }
5734 if (activity.finishing) {
5735 Slog.w(TAG, "Failed createPendingResult: activity " + activity + " is finishing");
5736 return null;
5737 }
5738 }
5739
5740 final PendingIntentRecord rec = mPendingIntentController.getIntentSender(type, packageName,
Philip P. Moltmannee295092020-02-10 08:46:26 -08005741 featureId, callingUid, userId, token, resultWho, requestCode, intents,
5742 resolvedTypes, flags, bOptions);
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07005743 final boolean noCreate = (flags & PendingIntent.FLAG_NO_CREATE) != 0;
5744 if (noCreate) {
5745 return rec;
5746 }
5747 if (type == ActivityManager.INTENT_SENDER_ACTIVITY_RESULT) {
5748 if (activity.pendingResults == null) {
5749 activity.pendingResults = new HashSet<>();
5750 }
5751 activity.pendingResults.add(rec.ref);
5752 }
5753 return rec;
5754 }
5755
Andrii Kulian52d255c2018-07-13 11:32:19 -07005756 // TODO(b/111541062): Update app time tracking to make it aware of multiple resumed activities
Wale Ogunwalef6733932018-06-27 05:14:34 -07005757 private void startTimeTrackingFocusedActivityLocked() {
Louis Chang149d5c82019-12-30 09:47:39 +08005758 final ActivityRecord resumedActivity = mRootWindowContainer.getTopResumedActivity();
Wale Ogunwalef6733932018-06-27 05:14:34 -07005759 if (!mSleeping && mCurAppTimeTracker != null && resumedActivity != null) {
5760 mCurAppTimeTracker.start(resumedActivity.packageName);
5761 }
5762 }
5763
5764 private void updateResumedAppTrace(@Nullable ActivityRecord resumed) {
5765 if (mTracedResumedActivity != null) {
Riddle Hsu2ca561b2019-10-08 21:58:58 +08005766 Trace.asyncTraceEnd(TRACE_TAG_WINDOW_MANAGER,
Wale Ogunwalef6733932018-06-27 05:14:34 -07005767 constructResumedTraceName(mTracedResumedActivity.packageName), 0);
5768 }
5769 if (resumed != null) {
Riddle Hsu2ca561b2019-10-08 21:58:58 +08005770 Trace.asyncTraceBegin(TRACE_TAG_WINDOW_MANAGER,
Wale Ogunwalef6733932018-06-27 05:14:34 -07005771 constructResumedTraceName(resumed.packageName), 0);
5772 }
5773 mTracedResumedActivity = resumed;
5774 }
5775
5776 private String constructResumedTraceName(String packageName) {
5777 return "focused app: " + packageName;
5778 }
5779
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005780 /** Applies latest configuration and/or visibility updates if needed. */
Shivam Agrawal1d3db652019-07-01 15:26:11 -07005781 boolean ensureConfigAndVisibilityAfterUpdate(ActivityRecord starting, int changes) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005782 boolean kept = true;
Louis Chang149d5c82019-12-30 09:47:39 +08005783 final ActivityStack mainStack = mRootWindowContainer.getTopDisplayFocusedStack();
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005784 // mainStack is null during startup.
5785 if (mainStack != null) {
5786 if (changes != 0 && starting == null) {
5787 // If the configuration changed, and the caller is not already
5788 // in the process of starting an activity, then find the top
5789 // activity to check if its configuration needs to change.
Wale Ogunwale85fb19a2019-12-05 10:41:05 +09005790 starting = mainStack.topRunningActivity();
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005791 }
5792
5793 if (starting != null) {
5794 kept = starting.ensureActivityConfiguration(changes,
5795 false /* preserveWindow */);
5796 // And we need to make sure at this point that all other activities
5797 // are made visible with the correct configuration.
Louis Chang149d5c82019-12-30 09:47:39 +08005798 mRootWindowContainer.ensureActivitiesVisible(starting, changes,
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005799 !PRESERVE_WINDOWS);
5800 }
5801 }
5802
5803 return kept;
5804 }
5805
Wale Ogunwale906f9c62018-07-23 11:23:44 -07005806 void scheduleAppGcsLocked() {
5807 mH.post(() -> mAmInternal.scheduleAppGcs());
5808 }
5809
Wale Ogunwale53783742018-09-16 10:21:51 -07005810 CompatibilityInfo compatibilityInfoForPackageLocked(ApplicationInfo ai) {
5811 return mCompatModePackages.compatibilityInfoForPackageLocked(ai);
5812 }
5813
Wale Ogunwale906f9c62018-07-23 11:23:44 -07005814 /**
5815 * Returns the PackageManager. Used by classes hosted by {@link ActivityTaskManagerService}. The
5816 * PackageManager could be unavailable at construction time and therefore needs to be accessed
5817 * on demand.
5818 */
5819 IPackageManager getPackageManager() {
5820 return AppGlobals.getPackageManager();
5821 }
5822
5823 PackageManagerInternal getPackageManagerInternalLocked() {
5824 if (mPmInternal == null) {
5825 mPmInternal = LocalServices.getService(PackageManagerInternal.class);
5826 }
5827 return mPmInternal;
5828 }
5829
Darryl L Johnsona0982222020-02-18 18:21:51 -08005830 ComponentName getSysUiServiceComponentLocked() {
5831 if (mSysUiServiceComponent == null) {
5832 final PackageManagerInternal pm = getPackageManagerInternalLocked();
5833 mSysUiServiceComponent = pm.getSystemUiServiceComponent();
5834 }
5835 return mSysUiServiceComponent;
5836 }
5837
Hai Zhangf4da9be2019-05-01 13:46:06 +08005838 PermissionPolicyInternal getPermissionPolicyInternal() {
5839 if (mPermissionPolicyInternal == null) {
5840 mPermissionPolicyInternal = LocalServices.getService(PermissionPolicyInternal.class);
5841 }
5842 return mPermissionPolicyInternal;
5843 }
5844
Wale Ogunwale008163e2018-07-23 23:11:08 -07005845 AppWarnings getAppWarningsLocked() {
5846 return mAppWarnings;
5847 }
5848
Wale Ogunwale214f3482018-10-04 11:00:47 -07005849 Intent getHomeIntent() {
5850 Intent intent = new Intent(mTopAction, mTopData != null ? Uri.parse(mTopData) : null);
5851 intent.setComponent(mTopComponent);
5852 intent.addFlags(Intent.FLAG_DEBUG_TRIAGED_MISSING);
5853 if (mFactoryTest != FactoryTest.FACTORY_TEST_LOW_LEVEL) {
5854 intent.addCategory(Intent.CATEGORY_HOME);
5855 }
5856 return intent;
5857 }
5858
Chilun2ef71f72018-11-16 17:57:15 +08005859 /**
5860 * Return the intent set with {@link Intent#CATEGORY_SECONDARY_HOME} to resolve secondary home
5861 * activities.
5862 *
Chilun939b05c2020-02-19 14:50:59 +08005863 * @param preferredPackage Specify a preferred package name, otherwise use the package name
5864 * defined in config_secondaryHomePackage.
Chilun2ef71f72018-11-16 17:57:15 +08005865 * @return the intent set with {@link Intent#CATEGORY_SECONDARY_HOME}
5866 */
5867 Intent getSecondaryHomeIntent(String preferredPackage) {
5868 final Intent intent = new Intent(mTopAction, mTopData != null ? Uri.parse(mTopData) : null);
Keun young Park340546a2019-05-06 16:27:44 -07005869 final boolean useSystemProvidedLauncher = mContext.getResources().getBoolean(
5870 com.android.internal.R.bool.config_useSystemProvidedLauncherForSecondary);
5871 if (preferredPackage == null || useSystemProvidedLauncher) {
Chilun939b05c2020-02-19 14:50:59 +08005872 // Using the package name stored in config if no preferred package name or forced.
5873 final String secondaryHomePackage = mContext.getResources().getString(
5874 com.android.internal.R.string.config_secondaryHomePackage);
5875 intent.setPackage(secondaryHomePackage);
Chilun2ef71f72018-11-16 17:57:15 +08005876 } else {
5877 intent.setPackage(preferredPackage);
5878 }
5879 intent.addFlags(Intent.FLAG_DEBUG_TRIAGED_MISSING);
5880 if (mFactoryTest != FactoryTest.FACTORY_TEST_LOW_LEVEL) {
5881 intent.addCategory(Intent.CATEGORY_SECONDARY_HOME);
5882 }
5883 return intent;
5884 }
5885
Wale Ogunwale214f3482018-10-04 11:00:47 -07005886 ApplicationInfo getAppInfoForUser(ApplicationInfo info, int userId) {
5887 if (info == null) return null;
5888 ApplicationInfo newInfo = new ApplicationInfo(info);
5889 newInfo.initForUser(userId);
5890 return newInfo;
5891 }
5892
Wale Ogunwale9c103022018-10-18 07:44:54 -07005893 WindowProcessController getProcessController(String processName, int uid) {
Wale Ogunwale214f3482018-10-04 11:00:47 -07005894 if (uid == SYSTEM_UID) {
5895 // The system gets to run in any process. If there are multiple processes with the same
5896 // uid, just pick the first (this should never happen).
5897 final SparseArray<WindowProcessController> procs =
5898 mProcessNames.getMap().get(processName);
5899 if (procs == null) return null;
5900 final int procCount = procs.size();
5901 for (int i = 0; i < procCount; i++) {
5902 final int procUid = procs.keyAt(i);
5903 if (UserHandle.isApp(procUid) || !UserHandle.isSameUser(procUid, uid)) {
5904 // Don't use an app process or different user process for system component.
5905 continue;
5906 }
5907 return procs.valueAt(i);
5908 }
5909 }
5910
5911 return mProcessNames.get(processName, uid);
5912 }
5913
Wale Ogunwale342fbe92018-10-09 08:44:10 -07005914 WindowProcessController getProcessController(IApplicationThread thread) {
5915 if (thread == null) {
5916 return null;
5917 }
5918
5919 final IBinder threadBinder = thread.asBinder();
5920 final ArrayMap<String, SparseArray<WindowProcessController>> pmap = mProcessNames.getMap();
5921 for (int i = pmap.size()-1; i >= 0; i--) {
5922 final SparseArray<WindowProcessController> procs = pmap.valueAt(i);
5923 for (int j = procs.size() - 1; j >= 0; j--) {
5924 final WindowProcessController proc = procs.valueAt(j);
5925 if (proc.hasThread() && proc.getThread().asBinder() == threadBinder) {
5926 return proc;
5927 }
5928 }
5929 }
5930
5931 return null;
5932 }
5933
Michal Karpinski9cbb20b2019-02-05 17:31:50 +00005934 WindowProcessController getProcessController(int pid, int uid) {
Michal Karpinski2e0aad22019-04-12 16:22:55 +01005935 final WindowProcessController proc = mProcessMap.getProcess(pid);
Yunfan Chen8546b212019-04-01 15:34:44 +09005936 if (proc == null) return null;
5937 if (UserHandle.isApp(uid) && proc.mUid == uid) {
5938 return proc;
Michal Karpinski9cbb20b2019-02-05 17:31:50 +00005939 }
5940 return null;
5941 }
5942
Riddle Hsua0536432019-02-16 00:38:59 +08005943 int getUidState(int uid) {
5944 return mActiveUids.getUidState(uid);
Wale Ogunwalebff2df42018-10-18 17:09:19 -07005945 }
5946
Michal Karpinskicc88d7e2019-01-24 15:32:12 +00005947 boolean isUidForeground(int uid) {
Alan Stokeseea8d3e2019-04-10 17:37:25 +01005948 // A uid is considered to be foreground if it has a visible non-toast window.
5949 return mWindowManager.mRoot.isAnyNonToastWindowVisibleForUid(uid);
Michal Karpinskicc88d7e2019-01-24 15:32:12 +00005950 }
5951
Ricky Wai96f5c352019-04-10 18:40:17 +01005952 boolean isDeviceOwner(int uid) {
5953 return uid >= 0 && mDeviceOwnerUid == uid;
Michal Karpinski4026cae2019-02-12 11:51:47 +00005954 }
5955
Ricky Wai96f5c352019-04-10 18:40:17 +01005956 void setDeviceOwnerUid(int uid) {
5957 mDeviceOwnerUid = uid;
Michal Karpinski4026cae2019-02-12 11:51:47 +00005958 }
5959
Wale Ogunwale9de19442018-10-18 19:05:03 -07005960 /**
5961 * @return whitelist tag for a uid from mPendingTempWhitelist, null if not currently on
5962 * the whitelist
5963 */
5964 String getPendingTempWhitelistTagForUidLocked(int uid) {
5965 return mPendingTempWhitelist.get(uid);
5966 }
5967
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07005968 void logAppTooSlow(WindowProcessController app, long startTime, String msg) {
5969 if (true || Build.IS_USER) {
5970 return;
5971 }
5972
5973 StrictMode.ThreadPolicy oldPolicy = StrictMode.allowThreadDiskReads();
5974 StrictMode.allowThreadDiskWrites();
5975 try {
5976 File tracesDir = new File("/data/anr");
5977 File tracesFile = null;
5978 try {
5979 tracesFile = File.createTempFile("app_slow", null, tracesDir);
5980
5981 StringBuilder sb = new StringBuilder();
Neil Fuller97746812019-08-19 14:20:50 +01005982 String timeString =
5983 TimeMigrationUtils.formatMillisWithFixedFormat(System.currentTimeMillis());
5984 sb.append(timeString);
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07005985 sb.append(": ");
5986 TimeUtils.formatDuration(SystemClock.uptimeMillis()-startTime, sb);
5987 sb.append(" since ");
5988 sb.append(msg);
5989 FileOutputStream fos = new FileOutputStream(tracesFile);
5990 fos.write(sb.toString().getBytes());
5991 if (app == null) {
5992 fos.write("\n*** No application process!".getBytes());
5993 }
5994 fos.close();
5995 FileUtils.setPermissions(tracesFile.getPath(), 0666, -1, -1); // -rw-rw-rw-
5996 } catch (IOException e) {
5997 Slog.w(TAG, "Unable to prepare slow app traces file: " + tracesFile, e);
5998 return;
5999 }
6000
6001 if (app != null && app.getPid() > 0) {
6002 ArrayList<Integer> firstPids = new ArrayList<Integer>();
6003 firstPids.add(app.getPid());
6004 dumpStackTraces(tracesFile.getAbsolutePath(), firstPids, null, null);
6005 }
6006
6007 File lastTracesFile = null;
6008 File curTracesFile = null;
6009 for (int i=9; i>=0; i--) {
6010 String name = String.format(Locale.US, "slow%02d.txt", i);
6011 curTracesFile = new File(tracesDir, name);
6012 if (curTracesFile.exists()) {
6013 if (lastTracesFile != null) {
6014 curTracesFile.renameTo(lastTracesFile);
6015 } else {
6016 curTracesFile.delete();
6017 }
6018 }
6019 lastTracesFile = curTracesFile;
6020 }
6021 tracesFile.renameTo(curTracesFile);
6022 } finally {
6023 StrictMode.setThreadPolicy(oldPolicy);
6024 }
6025 }
6026
Michal Karpinskida34cd42019-04-02 19:46:52 +01006027 boolean isAssociatedCompanionApp(int userId, int uid) {
6028 final Set<Integer> allUids = mCompanionAppUidsMap.get(userId);
6029 if (allUids == null) {
Ricky Wai2452e2d2019-03-18 19:19:08 +00006030 return false;
6031 }
Michal Karpinskida34cd42019-04-02 19:46:52 +01006032 return allUids.contains(uid);
Ricky Wai2452e2d2019-03-18 19:19:08 +00006033 }
6034
Issei Suzuki734bc942019-06-05 13:59:52 +02006035 void notifySingleTaskDisplayEmpty(int displayId) {
6036 mTaskChangeNotificationController.notifySingleTaskDisplayEmpty(displayId);
6037 }
6038
Wale Ogunwaled0412b32018-05-08 09:25:50 -07006039 final class H extends Handler {
Wale Ogunwalef6733932018-06-27 05:14:34 -07006040 static final int REPORT_TIME_TRACKER_MSG = 1;
Alison Cichowlas3e340502018-08-07 17:15:01 -04006041
6042
Wale Ogunwale98875612018-10-12 07:53:02 -07006043 static final int FIRST_ACTIVITY_STACK_MSG = 100;
6044 static final int FIRST_SUPERVISOR_STACK_MSG = 200;
Wale Ogunwalef6733932018-06-27 05:14:34 -07006045
Riddle Hsud93a6c42018-11-29 21:50:06 +08006046 H(Looper looper) {
6047 super(looper);
Wale Ogunwaled0412b32018-05-08 09:25:50 -07006048 }
Wale Ogunwalef6733932018-06-27 05:14:34 -07006049
6050 @Override
6051 public void handleMessage(Message msg) {
6052 switch (msg.what) {
6053 case REPORT_TIME_TRACKER_MSG: {
6054 AppTimeTracker tracker = (AppTimeTracker) msg.obj;
6055 tracker.deliverResult(mContext);
6056 } break;
6057 }
6058 }
Wale Ogunwaled0412b32018-05-08 09:25:50 -07006059 }
6060
Wale Ogunwalea6191b42018-05-09 07:41:32 -07006061 final class UiHandler extends Handler {
Wale Ogunwalef6733932018-06-27 05:14:34 -07006062 static final int DISMISS_DIALOG_UI_MSG = 1;
Wale Ogunwalea6191b42018-05-09 07:41:32 -07006063
6064 public UiHandler() {
Wale Ogunwale1f5e53d2018-11-05 05:12:46 -08006065 super(UiThread.get().getLooper(), null, true);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07006066 }
Wale Ogunwalef6733932018-06-27 05:14:34 -07006067
6068 @Override
6069 public void handleMessage(Message msg) {
6070 switch (msg.what) {
6071 case DISMISS_DIALOG_UI_MSG: {
6072 final Dialog d = (Dialog) msg.obj;
6073 d.dismiss();
6074 break;
6075 }
6076 }
6077 }
Wale Ogunwalea6191b42018-05-09 07:41:32 -07006078 }
6079
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006080 final class LocalService extends ActivityTaskManagerInternal {
6081 @Override
6082 public SleepToken acquireSleepToken(String tag, int displayId) {
Daulet Zhanguzinc6c641f2020-01-02 17:18:30 +00006083 Objects.requireNonNull(tag);
Wale Ogunwalef6733932018-06-27 05:14:34 -07006084 return ActivityTaskManagerService.this.acquireSleepToken(tag, displayId);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006085 }
6086
6087 @Override
6088 public ComponentName getHomeActivityForUser(int userId) {
6089 synchronized (mGlobalLock) {
Wale Ogunwaled32da472018-11-16 07:19:28 -08006090 final ActivityRecord homeActivity =
Louis Chang149d5c82019-12-30 09:47:39 +08006091 mRootWindowContainer.getDefaultDisplayHomeActivityForUser(userId);
Wale Ogunwale8b19de92018-11-29 19:58:26 -08006092 return homeActivity == null ? null : homeActivity.mActivityComponent;
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006093 }
6094 }
6095
6096 @Override
6097 public void onLocalVoiceInteractionStarted(IBinder activity,
6098 IVoiceInteractionSession voiceSession, IVoiceInteractor voiceInteractor) {
6099 synchronized (mGlobalLock) {
Wale Ogunwalef6733932018-06-27 05:14:34 -07006100 onLocalVoiceInteractionStartedLocked(activity, voiceSession, voiceInteractor);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006101 }
6102 }
6103
6104 @Override
Issei Suzukicac2a502019-04-16 16:52:50 +02006105 public void notifySingleTaskDisplayDrawn(int displayId) {
6106 mTaskChangeNotificationController.notifySingleTaskDisplayDrawn(displayId);
6107 }
6108
6109 @Override
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006110 public void notifyAppTransitionFinished() {
6111 synchronized (mGlobalLock) {
6112 mStackSupervisor.notifyAppTransitionDone();
6113 }
6114 }
6115
6116 @Override
6117 public void notifyAppTransitionCancelled() {
6118 synchronized (mGlobalLock) {
6119 mStackSupervisor.notifyAppTransitionDone();
6120 }
6121 }
6122
6123 @Override
6124 public List<IBinder> getTopVisibleActivities() {
6125 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08006126 return mRootWindowContainer.getTopVisibleActivities();
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006127 }
6128 }
6129
6130 @Override
Bernardo Rufinoe6cb3102020-03-06 20:33:11 +00006131 public boolean hasResumedActivity(int uid) {
6132 synchronized (mGlobalLock) {
6133 final ArraySet<WindowProcessController> processes = mProcessMap.getProcesses(uid);
6134 for (int i = 0, n = processes.size(); i < n; i++) {
6135 final WindowProcessController process = processes.valueAt(i);
6136 if (process.hasResumedActivity()) {
6137 return true;
6138 }
6139 }
6140 }
6141 return false;
6142 }
6143
6144 @Override
Philip P. Moltmannee295092020-02-10 08:46:26 -08006145 public int startActivitiesAsPackage(String packageName, @Nullable String featureId,
6146 int userId, Intent[] intents, Bundle bOptions) {
Daulet Zhanguzinc6c641f2020-01-02 17:18:30 +00006147 Objects.requireNonNull(intents, "intents");
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006148 final String[] resolvedTypes = new String[intents.length];
6149
6150 // UID of the package on user userId.
6151 // "= 0" is needed because otherwise catch(RemoteException) would make it look like
6152 // packageUid may not be initialized.
6153 int packageUid = 0;
6154 final long ident = Binder.clearCallingIdentity();
6155
6156 try {
6157 for (int i = 0; i < intents.length; i++) {
6158 resolvedTypes[i] =
6159 intents[i].resolveTypeIfNeeded(mContext.getContentResolver());
6160 }
6161
6162 packageUid = AppGlobals.getPackageManager().getPackageUid(
6163 packageName, PackageManager.MATCH_DEBUG_TRIAGED_MISSING, userId);
6164 } catch (RemoteException e) {
6165 // Shouldn't happen.
6166 } finally {
6167 Binder.restoreCallingIdentity(ident);
6168 }
6169
Riddle Hsu591bf612019-02-14 17:55:31 +08006170 return getActivityStartController().startActivitiesInPackage(
Philip P. Moltmannee295092020-02-10 08:46:26 -08006171 packageUid, packageName, featureId,
Riddle Hsu591bf612019-02-14 17:55:31 +08006172 intents, resolvedTypes, null /* resultTo */,
6173 SafeActivityOptions.fromBundle(bOptions), userId,
6174 false /* validateIncomingUser */, null /* originatingPendingIntent */,
6175 false /* allowBackgroundActivityStart */);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006176 }
6177
6178 @Override
Michal Karpinski84d9ebd2019-01-17 18:28:59 +00006179 public int startActivitiesInPackage(int uid, int realCallingPid, int realCallingUid,
Philip P. Moltmannee295092020-02-10 08:46:26 -08006180 String callingPackage, @Nullable String callingFeatureId, Intent[] intents,
6181 String[] resolvedTypes, IBinder resultTo, SafeActivityOptions options, int userId,
6182 boolean validateIncomingUser, PendingIntentRecord originatingPendingIntent,
Michal Karpinskiac116df2018-12-10 17:51:42 +00006183 boolean allowBackgroundActivityStart) {
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07006184 assertPackageMatchesCallingUid(callingPackage);
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006185 synchronized (mGlobalLock) {
Michal Karpinski84d9ebd2019-01-17 18:28:59 +00006186 return getActivityStartController().startActivitiesInPackage(uid, realCallingPid,
Philip P. Moltmannee295092020-02-10 08:46:26 -08006187 realCallingUid, callingPackage, callingFeatureId, intents, resolvedTypes,
6188 resultTo, options, userId, validateIncomingUser, originatingPendingIntent,
Michal Karpinski84d9ebd2019-01-17 18:28:59 +00006189 allowBackgroundActivityStart);
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006190 }
6191 }
6192
6193 @Override
6194 public int startActivityInPackage(int uid, int realCallingPid, int realCallingUid,
Philip P. Moltmannee295092020-02-10 08:46:26 -08006195 String callingPackage, @Nullable String callingFeatureId, Intent intent,
6196 String resolvedType, IBinder resultTo, String resultWho, int requestCode,
6197 int startFlags, SafeActivityOptions options, int userId, Task inTask, String reason,
6198 boolean validateIncomingUser, PendingIntentRecord originatingPendingIntent,
Michal Karpinskiac116df2018-12-10 17:51:42 +00006199 boolean allowBackgroundActivityStart) {
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07006200 assertPackageMatchesCallingUid(callingPackage);
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006201 synchronized (mGlobalLock) {
6202 return getActivityStartController().startActivityInPackage(uid, realCallingPid,
Philip P. Moltmannee295092020-02-10 08:46:26 -08006203 realCallingUid, callingPackage, callingFeatureId, intent, resolvedType,
6204 resultTo, resultWho, requestCode, startFlags, options, userId, inTask,
6205 reason, validateIncomingUser, originatingPendingIntent,
Michal Karpinskiac116df2018-12-10 17:51:42 +00006206 allowBackgroundActivityStart);
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006207 }
6208 }
6209
6210 @Override
Philip P. Moltmannee295092020-02-10 08:46:26 -08006211 public int startActivityAsUser(IApplicationThread caller, String callerPackage,
Alex Kershaw16406c32020-02-17 12:28:53 +00006212 @Nullable String callerFeatureId, Intent intent, @Nullable IBinder resultTo,
6213 int startFlags, Bundle options, int userId) {
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006214 return ActivityTaskManagerService.this.startActivityAsUser(
Philip P. Moltmannee295092020-02-10 08:46:26 -08006215 caller, callerPackage, callerFeatureId, intent,
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006216 intent.resolveTypeIfNeeded(mContext.getContentResolver()),
Alex Kershaw16406c32020-02-17 12:28:53 +00006217 resultTo, null, 0, startFlags, null, options, userId,
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006218 false /*validateIncomingUser*/);
6219 }
6220
6221 @Override
lumark588a3e82018-07-20 18:53:54 +08006222 public void notifyKeyguardFlagsChanged(@Nullable Runnable callback, int displayId) {
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006223 synchronized (mGlobalLock) {
6224
6225 // We might change the visibilities here, so prepare an empty app transition which
6226 // might be overridden later if we actually change visibilities.
Louis Chang677921f2019-12-06 16:44:24 +08006227 final DisplayContent displayContent =
Louis Chang149d5c82019-12-30 09:47:39 +08006228 mRootWindowContainer.getDisplayContent(displayId);
Louis Chang677921f2019-12-06 16:44:24 +08006229 if (displayContent == null) {
lumark52ea28e2018-11-09 17:30:47 +08006230 return;
6231 }
Louis Chang677921f2019-12-06 16:44:24 +08006232 final DisplayContent dc = displayContent.mDisplayContent;
Wale Ogunwale3a256e62018-12-06 14:41:18 -08006233 final boolean wasTransitionSet =
6234 dc.mAppTransition.getAppTransition() != TRANSIT_NONE;
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006235 if (!wasTransitionSet) {
Wale Ogunwale3a256e62018-12-06 14:41:18 -08006236 dc.prepareAppTransition(TRANSIT_NONE, false /* alwaysKeepCurrent */);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006237 }
Louis Chang149d5c82019-12-30 09:47:39 +08006238 mRootWindowContainer.ensureActivitiesVisible(null, 0, !PRESERVE_WINDOWS);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006239
6240 // If there was a transition set already we don't want to interfere with it as we
6241 // might be starting it too early.
6242 if (!wasTransitionSet) {
Wale Ogunwale3a256e62018-12-06 14:41:18 -08006243 dc.executeAppTransition();
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006244 }
6245 }
6246 if (callback != null) {
6247 callback.run();
6248 }
6249 }
6250
6251 @Override
6252 public void notifyKeyguardTrustedChanged() {
6253 synchronized (mGlobalLock) {
Wale Ogunwaled0412b32018-05-08 09:25:50 -07006254 if (mKeyguardController.isKeyguardShowing(DEFAULT_DISPLAY)) {
Louis Chang149d5c82019-12-30 09:47:39 +08006255 mRootWindowContainer.ensureActivitiesVisible(null, 0, !PRESERVE_WINDOWS);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006256 }
6257 }
6258 }
6259
6260 /**
6261 * Called after virtual display Id is updated by
6262 * {@link com.android.server.vr.Vr2dDisplay} with a specific
6263 * {@param vrVr2dDisplayId}.
6264 */
6265 @Override
6266 public void setVr2dDisplayId(int vr2dDisplayId) {
6267 if (DEBUG_STACK) Slog.d(TAG, "setVr2dDisplayId called for: " + vr2dDisplayId);
6268 synchronized (mGlobalLock) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07006269 mVr2dDisplayId = vr2dDisplayId;
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006270 }
6271 }
6272
6273 @Override
6274 public void setFocusedActivity(IBinder token) {
6275 synchronized (mGlobalLock) {
6276 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
6277 if (r == null) {
6278 throw new IllegalArgumentException(
6279 "setFocusedActivity: No activity record matching token=" + token);
6280 }
Louis Chang19443452018-10-09 12:10:21 +08006281 if (r.moveFocusableActivityToTop("setFocusedActivity")) {
Louis Chang149d5c82019-12-30 09:47:39 +08006282 mRootWindowContainer.resumeFocusedStacksTopActivities();
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006283 }
6284 }
6285 }
6286
6287 @Override
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006288 public void registerScreenObserver(ScreenObserver observer) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07006289 mScreenObservers.add(observer);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006290 }
6291
6292 @Override
6293 public boolean isCallerRecents(int callingUid) {
Wale Ogunwale16e505a2018-05-07 15:00:49 -07006294 return getRecentTasks().isCallerRecents(callingUid);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006295 }
6296
6297 @Override
6298 public boolean isRecentsComponentHomeActivity(int userId) {
Wale Ogunwale16e505a2018-05-07 15:00:49 -07006299 return getRecentTasks().isRecentsComponentHomeActivity(userId);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006300 }
6301
6302 @Override
6303 public void cancelRecentsAnimation(boolean restoreHomeStackPosition) {
6304 ActivityTaskManagerService.this.cancelRecentsAnimation(restoreHomeStackPosition);
6305 }
6306
6307 @Override
6308 public void enforceCallerIsRecentsOrHasPermission(String permission, String func) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07006309 ActivityTaskManagerService.this.enforceCallerIsRecentsOrHasPermission(permission, func);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006310 }
Wale Ogunwaled0412b32018-05-08 09:25:50 -07006311
6312 @Override
6313 public void notifyActiveVoiceInteractionServiceChanged(ComponentName component) {
6314 synchronized (mGlobalLock) {
6315 mActiveVoiceInteractionServiceComponent = component;
6316 }
6317 }
Wale Ogunwalea6191b42018-05-09 07:41:32 -07006318
6319 @Override
Galia Peycheva480275a2020-03-18 17:33:42 +01006320 public void notifyDreamStateChanged(boolean dreaming) {
6321 synchronized (mGlobalLock) {
6322 mDreaming = dreaming;
6323 }
6324 }
6325
6326 @Override
Wale Ogunwalea6191b42018-05-09 07:41:32 -07006327 public void setAllowAppSwitches(@NonNull String type, int uid, int userId) {
6328 if (!mAmInternal.isUserRunning(userId, ActivityManager.FLAG_OR_STOPPED)) {
6329 return;
6330 }
6331 synchronized (mGlobalLock) {
6332 ArrayMap<String, Integer> types = mAllowAppSwitchUids.get(userId);
6333 if (types == null) {
6334 if (uid < 0) {
6335 return;
6336 }
6337 types = new ArrayMap<>();
6338 mAllowAppSwitchUids.put(userId, types);
6339 }
6340 if (uid < 0) {
6341 types.remove(type);
6342 } else {
6343 types.put(type, uid);
6344 }
6345 }
6346 }
6347
6348 @Override
6349 public void onUserStopped(int userId) {
6350 synchronized (mGlobalLock) {
6351 getRecentTasks().unloadUserDataFromMemoryLocked(userId);
6352 mAllowAppSwitchUids.remove(userId);
6353 }
6354 }
6355
6356 @Override
6357 public boolean isGetTasksAllowed(String caller, int callingPid, int callingUid) {
6358 synchronized (mGlobalLock) {
6359 return ActivityTaskManagerService.this.isGetTasksAllowed(
6360 caller, callingPid, callingUid);
6361 }
6362 }
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07006363
Riddle Hsua0536432019-02-16 00:38:59 +08006364 @HotPath(caller = HotPath.PROCESS_CHANGE)
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07006365 @Override
6366 public void onProcessAdded(WindowProcessController proc) {
Riddle Hsua0536432019-02-16 00:38:59 +08006367 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07006368 mProcessNames.put(proc.mName, proc.mUid, proc);
6369 }
6370 }
6371
Riddle Hsua0536432019-02-16 00:38:59 +08006372 @HotPath(caller = HotPath.PROCESS_CHANGE)
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07006373 @Override
6374 public void onProcessRemoved(String name, int uid) {
Riddle Hsua0536432019-02-16 00:38:59 +08006375 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07006376 mProcessNames.remove(name, uid);
6377 }
6378 }
6379
Riddle Hsua0536432019-02-16 00:38:59 +08006380 @HotPath(caller = HotPath.PROCESS_CHANGE)
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07006381 @Override
6382 public void onCleanUpApplicationRecord(WindowProcessController proc) {
Riddle Hsua0536432019-02-16 00:38:59 +08006383 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07006384 if (proc == mHomeProcess) {
6385 mHomeProcess = null;
6386 }
6387 if (proc == mPreviousProcess) {
6388 mPreviousProcess = null;
6389 }
6390 }
6391 }
Wale Ogunwalef6733932018-06-27 05:14:34 -07006392
Riddle Hsua0536432019-02-16 00:38:59 +08006393 @HotPath(caller = HotPath.OOM_ADJUSTMENT)
Wale Ogunwalef6733932018-06-27 05:14:34 -07006394 @Override
6395 public int getTopProcessState() {
Riddle Hsua0536432019-02-16 00:38:59 +08006396 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwalef6733932018-06-27 05:14:34 -07006397 return mTopProcessState;
6398 }
6399 }
6400
Riddle Hsua0536432019-02-16 00:38:59 +08006401 @HotPath(caller = HotPath.OOM_ADJUSTMENT)
Wale Ogunwalef6733932018-06-27 05:14:34 -07006402 @Override
Wale Ogunwale53783742018-09-16 10:21:51 -07006403 public boolean isHeavyWeightProcess(WindowProcessController proc) {
Riddle Hsua0536432019-02-16 00:38:59 +08006404 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale53783742018-09-16 10:21:51 -07006405 return proc == mHeavyWeightProcess;
6406 }
6407 }
6408
Riddle Hsua0536432019-02-16 00:38:59 +08006409 @HotPath(caller = HotPath.PROCESS_CHANGE)
Wale Ogunwale53783742018-09-16 10:21:51 -07006410 @Override
6411 public void clearHeavyWeightProcessIfEquals(WindowProcessController proc) {
Riddle Hsua0536432019-02-16 00:38:59 +08006412 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale53783742018-09-16 10:21:51 -07006413 ActivityTaskManagerService.this.clearHeavyWeightProcessIfEquals(proc);
6414 }
6415 }
6416
6417 @Override
6418 public void finishHeavyWeightApp() {
6419 synchronized (mGlobalLock) {
Sudheer Shankaee1da272018-10-20 20:11:44 -07006420 if (mHeavyWeightProcess != null) {
6421 mHeavyWeightProcess.finishActivities();
6422 }
Wale Ogunwale53783742018-09-16 10:21:51 -07006423 ActivityTaskManagerService.this.clearHeavyWeightProcessIfEquals(
6424 mHeavyWeightProcess);
6425 }
6426 }
6427
Galia Peycheva480275a2020-03-18 17:33:42 +01006428 @Override
6429 public boolean isDreaming() {
6430 synchronized (mGlobalLock) {
6431 return mDreaming;
6432 }
6433 }
6434
Riddle Hsua0536432019-02-16 00:38:59 +08006435 @HotPath(caller = HotPath.OOM_ADJUSTMENT)
Wale Ogunwale53783742018-09-16 10:21:51 -07006436 @Override
Wale Ogunwalef6733932018-06-27 05:14:34 -07006437 public boolean isSleeping() {
Riddle Hsua0536432019-02-16 00:38:59 +08006438 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwalef6733932018-06-27 05:14:34 -07006439 return isSleepingLocked();
6440 }
6441 }
6442
6443 @Override
6444 public boolean isShuttingDown() {
6445 synchronized (mGlobalLock) {
6446 return mShuttingDown;
6447 }
6448 }
6449
6450 @Override
6451 public boolean shuttingDown(boolean booted, int timeout) {
6452 synchronized (mGlobalLock) {
6453 mShuttingDown = true;
Louis Chang149d5c82019-12-30 09:47:39 +08006454 mRootWindowContainer.prepareForShutdown();
Wale Ogunwalef6733932018-06-27 05:14:34 -07006455 updateEventDispatchingLocked(booted);
Wale Ogunwaled4d67d02018-10-25 18:09:39 -07006456 notifyTaskPersisterLocked(null, true);
Wale Ogunwalef6733932018-06-27 05:14:34 -07006457 return mStackSupervisor.shutdownLocked(timeout);
6458 }
6459 }
6460
6461 @Override
6462 public void enableScreenAfterBoot(boolean booted) {
6463 synchronized (mGlobalLock) {
Jeff Changd136e772019-11-05 20:33:52 +08006464 writeBootProgressEnableScreen(SystemClock.uptimeMillis());
Wale Ogunwalef6733932018-06-27 05:14:34 -07006465 mWindowManager.enableScreenAfterBoot();
6466 updateEventDispatchingLocked(booted);
6467 }
6468 }
6469
6470 @Override
6471 public boolean showStrictModeViolationDialog() {
6472 synchronized (mGlobalLock) {
6473 return mShowDialogs && !mSleeping && !mShuttingDown;
6474 }
6475 }
6476
6477 @Override
6478 public void showSystemReadyErrorDialogsIfNeeded() {
6479 synchronized (mGlobalLock) {
6480 try {
6481 if (AppGlobals.getPackageManager().hasSystemUidErrors()) {
6482 Slog.e(TAG, "UIDs on the system are inconsistent, you need to wipe your"
6483 + " data partition or your device will be unstable.");
6484 mUiHandler.post(() -> {
6485 if (mShowDialogs) {
6486 AlertDialog d = new BaseErrorDialog(mUiContext);
6487 d.getWindow().setType(WindowManager.LayoutParams.TYPE_SYSTEM_ERROR);
6488 d.setCancelable(false);
6489 d.setTitle(mUiContext.getText(R.string.android_system_label));
6490 d.setMessage(mUiContext.getText(R.string.system_error_wipe_data));
6491 d.setButton(DialogInterface.BUTTON_POSITIVE,
6492 mUiContext.getText(R.string.ok),
6493 mUiHandler.obtainMessage(DISMISS_DIALOG_UI_MSG, d));
6494 d.show();
6495 }
6496 });
6497 }
6498 } catch (RemoteException e) {
6499 }
6500
6501 if (!Build.isBuildConsistent()) {
6502 Slog.e(TAG, "Build fingerprint is not consistent, warning user");
6503 mUiHandler.post(() -> {
6504 if (mShowDialogs) {
6505 AlertDialog d = new BaseErrorDialog(mUiContext);
6506 d.getWindow().setType(WindowManager.LayoutParams.TYPE_SYSTEM_ERROR);
6507 d.setCancelable(false);
6508 d.setTitle(mUiContext.getText(R.string.android_system_label));
6509 d.setMessage(mUiContext.getText(R.string.system_error_manufacturer));
6510 d.setButton(DialogInterface.BUTTON_POSITIVE,
6511 mUiContext.getText(R.string.ok),
6512 mUiHandler.obtainMessage(DISMISS_DIALOG_UI_MSG, d));
6513 d.show();
6514 }
6515 });
6516 }
6517 }
6518 }
Wale Ogunwale906f9c62018-07-23 11:23:44 -07006519
6520 @Override
Wale Ogunwale906f9c62018-07-23 11:23:44 -07006521 public void onProcessMapped(int pid, WindowProcessController proc) {
6522 synchronized (mGlobalLock) {
Michal Karpinski2e0aad22019-04-12 16:22:55 +01006523 mProcessMap.put(pid, proc);
Wale Ogunwale906f9c62018-07-23 11:23:44 -07006524 }
6525 }
6526
6527 @Override
6528 public void onProcessUnMapped(int pid) {
6529 synchronized (mGlobalLock) {
Michal Karpinski2e0aad22019-04-12 16:22:55 +01006530 mProcessMap.remove(pid);
Wale Ogunwale906f9c62018-07-23 11:23:44 -07006531 }
6532 }
Wale Ogunwale008163e2018-07-23 23:11:08 -07006533
6534 @Override
6535 public void onPackageDataCleared(String name) {
6536 synchronized (mGlobalLock) {
Wale Ogunwale53783742018-09-16 10:21:51 -07006537 mCompatModePackages.handlePackageDataClearedLocked(name);
Wale Ogunwale008163e2018-07-23 23:11:08 -07006538 mAppWarnings.onPackageDataCleared(name);
6539 }
6540 }
6541
6542 @Override
6543 public void onPackageUninstalled(String name) {
6544 synchronized (mGlobalLock) {
6545 mAppWarnings.onPackageUninstalled(name);
Wale Ogunwale53783742018-09-16 10:21:51 -07006546 mCompatModePackages.handlePackageUninstalledLocked(name);
Wale Ogunwale008163e2018-07-23 23:11:08 -07006547 }
6548 }
Wale Ogunwale53783742018-09-16 10:21:51 -07006549
6550 @Override
6551 public void onPackageAdded(String name, boolean replacing) {
6552 synchronized (mGlobalLock) {
6553 mCompatModePackages.handlePackageAddedLocked(name, replacing);
6554 }
6555 }
6556
6557 @Override
Wale Ogunwale31913b52018-10-13 08:29:31 -07006558 public void onPackageReplaced(ApplicationInfo aInfo) {
6559 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08006560 mRootWindowContainer.updateActivityApplicationInfo(aInfo);
Wale Ogunwale31913b52018-10-13 08:29:31 -07006561 }
6562 }
6563
6564 @Override
Wale Ogunwale53783742018-09-16 10:21:51 -07006565 public CompatibilityInfo compatibilityInfoForPackage(ApplicationInfo ai) {
6566 synchronized (mGlobalLock) {
6567 return compatibilityInfoForPackageLocked(ai);
6568 }
6569 }
6570
Yunfan Chen75157d72018-07-27 14:47:21 +09006571 /**
6572 * Set the corresponding display information for the process global configuration. To be
6573 * called when we need to show IME on a different display.
6574 *
6575 * @param pid The process id associated with the IME window.
6576 * @param displayId The ID of the display showing the IME.
6577 */
6578 @Override
Yunfan Chen79b96062018-10-17 12:45:23 -07006579 public void onImeWindowSetOnDisplay(final int pid, final int displayId) {
lumark48973532019-04-12 20:18:15 +08006580 // Don't update process-level configuration for Multi-Client IME process since other
6581 // IMEs on other displays will also receive this configuration change due to IME
6582 // services use the same application config/context.
6583 if (InputMethodSystemProperty.MULTI_CLIENT_IME_ENABLED) return;
lumark5df49512019-04-02 14:56:46 +08006584
Yunfan Chen75157d72018-07-27 14:47:21 +09006585 if (pid == MY_PID || pid < 0) {
6586 if (DEBUG_CONFIGURATION) {
6587 Slog.w(TAG,
6588 "Trying to update display configuration for system/invalid process.");
6589 }
6590 return;
6591 }
Yunfan Chencafc7062019-01-22 17:21:32 +09006592 synchronized (mGlobalLock) {
Louis Chang677921f2019-12-06 16:44:24 +08006593 final DisplayContent displayContent =
Louis Chang149d5c82019-12-30 09:47:39 +08006594 mRootWindowContainer.getDisplayContent(displayId);
Louis Chang677921f2019-12-06 16:44:24 +08006595 if (displayContent == null) {
Yunfan Chencafc7062019-01-22 17:21:32 +09006596 // Call might come when display is not yet added or has been removed.
6597 if (DEBUG_CONFIGURATION) {
6598 Slog.w(TAG, "Trying to update display configuration for non-existing "
6599 + "displayId=" + displayId);
Yunfan Chen75157d72018-07-27 14:47:21 +09006600 }
Yunfan Chencafc7062019-01-22 17:21:32 +09006601 return;
Yunfan Chen75157d72018-07-27 14:47:21 +09006602 }
Michal Karpinski2e0aad22019-04-12 16:22:55 +01006603 final WindowProcessController process = mProcessMap.getProcess(pid);
Yunfan Chencafc7062019-01-22 17:21:32 +09006604 if (process == null) {
6605 if (DEBUG_CONFIGURATION) {
6606 Slog.w(TAG, "Trying to update display configuration for invalid "
6607 + "process, pid=" + pid);
6608 }
6609 return;
6610 }
Andrii Kulianfa23a9e2019-10-10 15:15:36 -07006611 process.registerDisplayConfigurationListener(displayContent);
Yunfan Chencafc7062019-01-22 17:21:32 +09006612 }
Yunfan Chen75157d72018-07-27 14:47:21 +09006613 }
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006614
6615 @Override
6616 public void sendActivityResult(int callingUid, IBinder activityToken, String resultWho,
Wale Ogunwale586a8ee2019-06-04 13:44:14 +00006617 int requestCode, int resultCode, Intent data) {
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006618 synchronized (mGlobalLock) {
Wale Ogunwale586a8ee2019-06-04 13:44:14 +00006619 final ActivityRecord r = ActivityRecord.isInStackLocked(activityToken);
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08006620 if (r != null && r.getRootTask() != null) {
Andrii Kulian79d67982019-08-19 11:56:16 -07006621 r.sendResult(callingUid, resultWho, requestCode, resultCode, data);
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006622 }
6623 }
6624 }
6625
6626 @Override
6627 public void clearPendingResultForActivity(IBinder activityToken,
6628 WeakReference<PendingIntentRecord> pir) {
6629 synchronized (mGlobalLock) {
6630 final ActivityRecord r = ActivityRecord.isInStackLocked(activityToken);
6631 if (r != null && r.pendingResults != null) {
6632 r.pendingResults.remove(pir);
6633 }
6634 }
6635 }
6636
6637 @Override
Sunny Goyald40c3452019-03-20 12:46:55 -07006638 public ActivityTokens getTopActivityForTask(int taskId) {
6639 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08006640 final Task task = mRootWindowContainer.anyTaskForId(taskId);
Louis Changcdec0802019-11-11 11:45:07 +08006641 if (task == null) {
Sunny Goyald40c3452019-03-20 12:46:55 -07006642 Slog.w(TAG, "getApplicationThreadForTopActivity failed:"
6643 + " Requested task not found");
6644 return null;
6645 }
Wale Ogunwale21e06482019-11-18 05:14:15 -08006646 final ActivityRecord activity = task.getTopNonFinishingActivity();
Sunny Goyald40c3452019-03-20 12:46:55 -07006647 if (activity == null) {
6648 Slog.w(TAG, "getApplicationThreadForTopActivity failed:"
6649 + " Requested activity not found");
6650 return null;
6651 }
6652 if (!activity.attachedToProcess()) {
6653 Slog.w(TAG, "getApplicationThreadForTopActivity failed: No process for "
6654 + activity);
6655 return null;
6656 }
6657 return new ActivityTokens(activity.appToken, activity.assistToken,
6658 activity.app.getThread());
6659 }
6660 }
6661
6662 @Override
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006663 public IIntentSender getIntentSender(int type, String packageName,
Philip P. Moltmannee295092020-02-10 08:46:26 -08006664 @Nullable String featureId, int callingUid, int userId, IBinder token,
6665 String resultWho, int requestCode, Intent[] intents, String[] resolvedTypes,
6666 int flags, Bundle bOptions) {
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006667 synchronized (mGlobalLock) {
Philip P. Moltmannee295092020-02-10 08:46:26 -08006668 return getIntentSenderLocked(type, packageName, featureId, callingUid, userId,
6669 token, resultWho, requestCode, intents, resolvedTypes, flags, bOptions);
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006670 }
6671 }
Wale Ogunwalec4e63a42018-10-02 13:19:54 -07006672
6673 @Override
6674 public ActivityServiceConnectionsHolder getServiceConnectionsHolder(IBinder token) {
6675 synchronized (mGlobalLock) {
6676 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
6677 if (r == null) {
6678 return null;
6679 }
6680 if (r.mServiceConnectionsHolder == null) {
6681 r.mServiceConnectionsHolder = new ActivityServiceConnectionsHolder(
6682 ActivityTaskManagerService.this, r);
6683 }
6684
6685 return r.mServiceConnectionsHolder;
6686 }
6687 }
Wale Ogunwale214f3482018-10-04 11:00:47 -07006688
6689 @Override
6690 public Intent getHomeIntent() {
6691 synchronized (mGlobalLock) {
6692 return ActivityTaskManagerService.this.getHomeIntent();
6693 }
6694 }
6695
6696 @Override
6697 public boolean startHomeActivity(int userId, String reason) {
6698 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08006699 return mRootWindowContainer.startHomeOnDisplay(userId, reason, DEFAULT_DISPLAY);
Louis Chang89f43fc2018-10-05 10:59:14 +08006700 }
6701 }
6702
6703 @Override
Chilun8b1f1be2019-03-13 17:14:36 +08006704 public boolean startHomeOnDisplay(int userId, String reason, int displayId,
Chilun39232092019-03-22 14:41:30 +08006705 boolean allowInstrumenting, boolean fromHomeKey) {
Chilun5fd56542019-03-21 19:51:37 +08006706 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08006707 return mRootWindowContainer.startHomeOnDisplay(userId, reason, displayId,
Chilun39232092019-03-22 14:41:30 +08006708 allowInstrumenting, fromHomeKey);
Chilun5fd56542019-03-21 19:51:37 +08006709 }
Chilun8b1f1be2019-03-13 17:14:36 +08006710 }
6711
6712 @Override
Louis Chang89f43fc2018-10-05 10:59:14 +08006713 public boolean startHomeOnAllDisplays(int userId, String reason) {
6714 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08006715 return mRootWindowContainer.startHomeOnAllDisplays(userId, reason);
Wale Ogunwale214f3482018-10-04 11:00:47 -07006716 }
6717 }
6718
Riddle Hsua0536432019-02-16 00:38:59 +08006719 @HotPath(caller = HotPath.PROCESS_CHANGE)
Wale Ogunwale214f3482018-10-04 11:00:47 -07006720 @Override
6721 public boolean isFactoryTestProcess(WindowProcessController wpc) {
Riddle Hsua0536432019-02-16 00:38:59 +08006722 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale214f3482018-10-04 11:00:47 -07006723 if (mFactoryTest == FACTORY_TEST_OFF) {
6724 return false;
6725 }
6726 if (mFactoryTest == FACTORY_TEST_LOW_LEVEL && mTopComponent != null
6727 && wpc.mName.equals(mTopComponent.getPackageName())) {
6728 return true;
6729 }
6730 return mFactoryTest == FACTORY_TEST_HIGH_LEVEL
6731 && (wpc.mInfo.flags & FLAG_FACTORY_TEST) != 0;
6732 }
6733 }
6734
6735 @Override
6736 public void updateTopComponentForFactoryTest() {
6737 synchronized (mGlobalLock) {
6738 if (mFactoryTest != FACTORY_TEST_LOW_LEVEL) {
6739 return;
6740 }
6741 final ResolveInfo ri = mContext.getPackageManager()
6742 .resolveActivity(new Intent(Intent.ACTION_FACTORY_TEST), STOCK_PM_FLAGS);
6743 final CharSequence errorMsg;
6744 if (ri != null) {
6745 final ActivityInfo ai = ri.activityInfo;
6746 final ApplicationInfo app = ai.applicationInfo;
6747 if ((app.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
6748 mTopAction = Intent.ACTION_FACTORY_TEST;
6749 mTopData = null;
6750 mTopComponent = new ComponentName(app.packageName, ai.name);
6751 errorMsg = null;
6752 } else {
6753 errorMsg = mContext.getResources().getText(
6754 com.android.internal.R.string.factorytest_not_system);
6755 }
6756 } else {
6757 errorMsg = mContext.getResources().getText(
6758 com.android.internal.R.string.factorytest_no_action);
6759 }
6760 if (errorMsg == null) {
6761 return;
6762 }
6763
6764 mTopAction = null;
6765 mTopData = null;
6766 mTopComponent = null;
6767 mUiHandler.post(() -> {
6768 Dialog d = new FactoryErrorDialog(mUiContext, errorMsg);
6769 d.show();
Wale Ogunwale342fbe92018-10-09 08:44:10 -07006770 mAmInternal.ensureBootCompleted();
Wale Ogunwale214f3482018-10-04 11:00:47 -07006771 });
6772 }
6773 }
Wale Ogunwale31913b52018-10-13 08:29:31 -07006774
Riddle Hsua0536432019-02-16 00:38:59 +08006775 @HotPath(caller = HotPath.PROCESS_CHANGE)
Wale Ogunwale31913b52018-10-13 08:29:31 -07006776 @Override
6777 public void handleAppDied(WindowProcessController wpc, boolean restarting,
6778 Runnable finishInstrumentationCallback) {
Riddle Hsua0536432019-02-16 00:38:59 +08006779 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale31913b52018-10-13 08:29:31 -07006780 // Remove this application's activities from active lists.
Louis Chang149d5c82019-12-30 09:47:39 +08006781 boolean hasVisibleActivities = mRootWindowContainer.handleAppDied(wpc);
Wale Ogunwale31913b52018-10-13 08:29:31 -07006782
6783 wpc.clearRecentTasks();
6784 wpc.clearActivities();
6785
6786 if (wpc.isInstrumenting()) {
6787 finishInstrumentationCallback.run();
6788 }
6789
Jorim Jaggid0752812018-10-16 16:07:20 +02006790 if (!restarting && hasVisibleActivities) {
Riddle Hsua0022cd2019-09-09 21:12:41 +08006791 deferWindowLayout();
Jorim Jaggid0752812018-10-16 16:07:20 +02006792 try {
Louis Chang149d5c82019-12-30 09:47:39 +08006793 if (!mRootWindowContainer.resumeFocusedStacksTopActivities()) {
Jorim Jaggid0752812018-10-16 16:07:20 +02006794 // If there was nothing to resume, and we are not already restarting
6795 // this process, but there is a visible activity that is hosted by the
6796 // process...then make sure all visible activities are running, taking
6797 // care of restarting this process.
Louis Chang149d5c82019-12-30 09:47:39 +08006798 mRootWindowContainer.ensureActivitiesVisible(null, 0,
Jorim Jaggid0752812018-10-16 16:07:20 +02006799 !PRESERVE_WINDOWS);
6800 }
6801 } finally {
Riddle Hsua0022cd2019-09-09 21:12:41 +08006802 continueWindowLayout();
Wale Ogunwale31913b52018-10-13 08:29:31 -07006803 }
Wale Ogunwale31913b52018-10-13 08:29:31 -07006804 }
6805 }
6806 }
6807
6808 @Override
6809 public void closeSystemDialogs(String reason) {
6810 enforceNotIsolatedCaller("closeSystemDialogs");
6811
6812 final int pid = Binder.getCallingPid();
6813 final int uid = Binder.getCallingUid();
6814 final long origId = Binder.clearCallingIdentity();
6815 try {
6816 synchronized (mGlobalLock) {
6817 // Only allow this from foreground processes, so that background
6818 // applications can't abuse it to prevent system UI from being shown.
6819 if (uid >= FIRST_APPLICATION_UID) {
Michal Karpinski2e0aad22019-04-12 16:22:55 +01006820 final WindowProcessController proc = mProcessMap.getProcess(pid);
Wale Ogunwale31913b52018-10-13 08:29:31 -07006821 if (!proc.isPerceptible()) {
6822 Slog.w(TAG, "Ignoring closeSystemDialogs " + reason
6823 + " from background process " + proc);
6824 return;
6825 }
6826 }
Wale Ogunwale31913b52018-10-13 08:29:31 -07006827 mWindowManager.closeSystemDialogs(reason);
6828
Louis Chang149d5c82019-12-30 09:47:39 +08006829 mRootWindowContainer.closeSystemDialogs();
Wale Ogunwale31913b52018-10-13 08:29:31 -07006830 }
Wale Ogunwale2ea36d42018-10-18 10:27:31 -07006831 // Call into AM outside the synchronized block.
6832 mAmInternal.broadcastCloseSystemDialogs(reason);
Wale Ogunwale31913b52018-10-13 08:29:31 -07006833 } finally {
6834 Binder.restoreCallingIdentity(origId);
6835 }
6836 }
6837
6838 @Override
6839 public void cleanupDisabledPackageComponents(
6840 String packageName, Set<String> disabledClasses, int userId, boolean booted) {
6841 synchronized (mGlobalLock) {
6842 // Clean-up disabled activities.
Louis Chang149d5c82019-12-30 09:47:39 +08006843 if (mRootWindowContainer.finishDisabledPackageActivities(
Wale Ogunwale31913b52018-10-13 08:29:31 -07006844 packageName, disabledClasses, true, false, userId) && booted) {
Louis Chang149d5c82019-12-30 09:47:39 +08006845 mRootWindowContainer.resumeFocusedStacksTopActivities();
Riddle Hsufc8ab262019-12-31 15:31:24 +08006846 mStackSupervisor.scheduleIdle();
Wale Ogunwale31913b52018-10-13 08:29:31 -07006847 }
6848
6849 // Clean-up disabled tasks
6850 getRecentTasks().cleanupDisabledPackageTasksLocked(
6851 packageName, disabledClasses, userId);
6852 }
6853 }
6854
6855 @Override
6856 public boolean onForceStopPackage(String packageName, boolean doit, boolean evenPersistent,
6857 int userId) {
6858 synchronized (mGlobalLock) {
6859
6860 boolean didSomething =
6861 getActivityStartController().clearPendingActivityLaunches(packageName);
Louis Chang149d5c82019-12-30 09:47:39 +08006862 didSomething |= mRootWindowContainer.finishDisabledPackageActivities(packageName,
Wale Ogunwale31913b52018-10-13 08:29:31 -07006863 null, doit, evenPersistent, userId);
6864 return didSomething;
6865 }
6866 }
6867
6868 @Override
6869 public void resumeTopActivities(boolean scheduleIdle) {
6870 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08006871 mRootWindowContainer.resumeFocusedStacksTopActivities();
Wale Ogunwale31913b52018-10-13 08:29:31 -07006872 if (scheduleIdle) {
Riddle Hsufc8ab262019-12-31 15:31:24 +08006873 mStackSupervisor.scheduleIdle();
Wale Ogunwale31913b52018-10-13 08:29:31 -07006874 }
6875 }
6876 }
6877
Riddle Hsua0536432019-02-16 00:38:59 +08006878 @HotPath(caller = HotPath.PROCESS_CHANGE)
Wale Ogunwale31913b52018-10-13 08:29:31 -07006879 @Override
6880 public void preBindApplication(WindowProcessController wpc) {
Riddle Hsua0536432019-02-16 00:38:59 +08006881 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale31913b52018-10-13 08:29:31 -07006882 mStackSupervisor.getActivityMetricsLogger().notifyBindApplication(wpc.mInfo);
6883 }
6884 }
6885
Riddle Hsua0536432019-02-16 00:38:59 +08006886 @HotPath(caller = HotPath.PROCESS_CHANGE)
Wale Ogunwale31913b52018-10-13 08:29:31 -07006887 @Override
6888 public boolean attachApplication(WindowProcessController wpc) throws RemoteException {
Riddle Hsua0536432019-02-16 00:38:59 +08006889 synchronized (mGlobalLockWithoutBoost) {
Riddle Hsu2ca561b2019-10-08 21:58:58 +08006890 if (Trace.isTagEnabled(TRACE_TAG_WINDOW_MANAGER)) {
6891 Trace.traceBegin(TRACE_TAG_WINDOW_MANAGER, "attachApplication:" + wpc.mName);
6892 }
6893 try {
Louis Chang149d5c82019-12-30 09:47:39 +08006894 return mRootWindowContainer.attachApplication(wpc);
Riddle Hsu2ca561b2019-10-08 21:58:58 +08006895 } finally {
6896 Trace.traceEnd(TRACE_TAG_WINDOW_MANAGER);
6897 }
Wale Ogunwale31913b52018-10-13 08:29:31 -07006898 }
6899 }
6900
6901 @Override
6902 public void notifyLockedProfile(@UserIdInt int userId, int currentUserId) {
6903 try {
6904 if (!AppGlobals.getPackageManager().isUidPrivileged(Binder.getCallingUid())) {
6905 throw new SecurityException("Only privileged app can call notifyLockedProfile");
6906 }
6907 } catch (RemoteException ex) {
6908 throw new SecurityException("Fail to check is caller a privileged app", ex);
6909 }
6910
6911 synchronized (mGlobalLock) {
6912 final long ident = Binder.clearCallingIdentity();
6913 try {
6914 if (mAmInternal.shouldConfirmCredentials(userId)) {
6915 if (mKeyguardController.isKeyguardLocked()) {
6916 // Showing launcher to avoid user entering credential twice.
6917 startHomeActivity(currentUserId, "notifyLockedProfile");
6918 }
Louis Chang149d5c82019-12-30 09:47:39 +08006919 mRootWindowContainer.lockAllProfileTasks(userId);
Wale Ogunwale31913b52018-10-13 08:29:31 -07006920 }
6921 } finally {
6922 Binder.restoreCallingIdentity(ident);
6923 }
6924 }
6925 }
6926
6927 @Override
6928 public void startConfirmDeviceCredentialIntent(Intent intent, Bundle options) {
6929 mAmInternal.enforceCallingPermission(
6930 MANAGE_ACTIVITY_STACKS, "startConfirmDeviceCredentialIntent");
6931
6932 synchronized (mGlobalLock) {
6933 final long ident = Binder.clearCallingIdentity();
6934 try {
Pavel Grafovc0fe0a02019-05-13 18:19:33 +01006935 intent.addFlags(FLAG_ACTIVITY_NEW_TASK | FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
6936 final ActivityOptions activityOptions = options != null
Wale Ogunwale31913b52018-10-13 08:29:31 -07006937 ? new ActivityOptions(options) : ActivityOptions.makeBasic();
Wale Ogunwale31913b52018-10-13 08:29:31 -07006938 mContext.startActivityAsUser(intent, activityOptions.toBundle(),
6939 UserHandle.CURRENT);
6940 } finally {
6941 Binder.restoreCallingIdentity(ident);
6942 }
6943 }
6944 }
6945
6946 @Override
6947 public void writeActivitiesToProto(ProtoOutputStream proto) {
6948 synchronized (mGlobalLock) {
6949 // The output proto of "activity --proto activities"
Wale Ogunwalef342f062020-01-27 07:34:13 -08006950 mRootWindowContainer.dumpDebug(
6951 proto, ROOT_WINDOW_CONTAINER, WindowTraceLogLevel.ALL);
Wale Ogunwale31913b52018-10-13 08:29:31 -07006952 }
6953 }
6954
6955 @Override
6956 public void saveANRState(String reason) {
6957 synchronized (mGlobalLock) {
6958 final StringWriter sw = new StringWriter();
6959 final PrintWriter pw = new FastPrintWriter(sw, false, 1024);
6960 pw.println(" ANR time: " + DateFormat.getDateTimeInstance().format(new Date()));
6961 if (reason != null) {
6962 pw.println(" Reason: " + reason);
6963 }
6964 pw.println();
6965 getActivityStartController().dump(pw, " ", null);
6966 pw.println();
6967 pw.println("-------------------------------------------------------------------------------");
6968 dumpActivitiesLocked(null /* fd */, pw, null /* args */, 0 /* opti */,
6969 true /* dumpAll */, false /* dumpClient */, null /* dumpPackage */,
6970 "" /* header */);
6971 pw.println();
6972 pw.close();
6973
6974 mLastANRState = sw.toString();
6975 }
6976 }
6977
6978 @Override
6979 public void clearSavedANRState() {
6980 synchronized (mGlobalLock) {
6981 mLastANRState = null;
6982 }
6983 }
6984
6985 @Override
6986 public void dump(String cmd, FileDescriptor fd, PrintWriter pw, String[] args, int opti,
6987 boolean dumpAll, boolean dumpClient, String dumpPackage) {
6988 synchronized (mGlobalLock) {
6989 if (DUMP_ACTIVITIES_CMD.equals(cmd) || DUMP_ACTIVITIES_SHORT_CMD.equals(cmd)) {
6990 dumpActivitiesLocked(fd, pw, args, opti, dumpAll, dumpClient, dumpPackage);
6991 } else if (DUMP_LASTANR_CMD.equals(cmd)) {
6992 dumpLastANRLocked(pw);
6993 } else if (DUMP_LASTANR_TRACES_CMD.equals(cmd)) {
6994 dumpLastANRTracesLocked(pw);
6995 } else if (DUMP_STARTER_CMD.equals(cmd)) {
6996 dumpActivityStarterLocked(pw, dumpPackage);
6997 } else if (DUMP_CONTAINERS_CMD.equals(cmd)) {
6998 dumpActivityContainersLocked(pw);
6999 } else if (DUMP_RECENTS_CMD.equals(cmd) || DUMP_RECENTS_SHORT_CMD.equals(cmd)) {
7000 if (getRecentTasks() != null) {
7001 getRecentTasks().dump(pw, dumpAll, dumpPackage);
7002 }
7003 }
7004 }
7005 }
7006
7007 @Override
7008 public boolean dumpForProcesses(FileDescriptor fd, PrintWriter pw, boolean dumpAll,
7009 String dumpPackage, int dumpAppId, boolean needSep, boolean testPssMode,
7010 int wakefulness) {
7011 synchronized (mGlobalLock) {
7012 if (mHomeProcess != null && (dumpPackage == null
7013 || mHomeProcess.mPkgList.contains(dumpPackage))) {
7014 if (needSep) {
7015 pw.println();
7016 needSep = false;
7017 }
7018 pw.println(" mHomeProcess: " + mHomeProcess);
7019 }
7020 if (mPreviousProcess != null && (dumpPackage == null
7021 || mPreviousProcess.mPkgList.contains(dumpPackage))) {
7022 if (needSep) {
7023 pw.println();
7024 needSep = false;
7025 }
7026 pw.println(" mPreviousProcess: " + mPreviousProcess);
7027 }
7028 if (dumpAll && (mPreviousProcess == null || dumpPackage == null
7029 || mPreviousProcess.mPkgList.contains(dumpPackage))) {
7030 StringBuilder sb = new StringBuilder(128);
7031 sb.append(" mPreviousProcessVisibleTime: ");
7032 TimeUtils.formatDuration(mPreviousProcessVisibleTime, sb);
7033 pw.println(sb);
7034 }
7035 if (mHeavyWeightProcess != null && (dumpPackage == null
7036 || mHeavyWeightProcess.mPkgList.contains(dumpPackage))) {
7037 if (needSep) {
7038 pw.println();
7039 needSep = false;
7040 }
7041 pw.println(" mHeavyWeightProcess: " + mHeavyWeightProcess);
7042 }
7043 if (dumpPackage == null) {
7044 pw.println(" mGlobalConfiguration: " + getGlobalConfiguration());
Louis Chang149d5c82019-12-30 09:47:39 +08007045 mRootWindowContainer.dumpDisplayConfigs(pw, " ");
Wale Ogunwale31913b52018-10-13 08:29:31 -07007046 }
7047 if (dumpAll) {
Darryl L Johnson1e3885c2020-02-27 17:38:13 -08007048 final ActivityStack topFocusedStack = getTopDisplayFocusedStack();
7049 if (dumpPackage == null && topFocusedStack != null) {
7050 pw.println(" mConfigWillChange: " + topFocusedStack.mConfigWillChange);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007051 }
7052 if (mCompatModePackages.getPackages().size() > 0) {
7053 boolean printed = false;
7054 for (Map.Entry<String, Integer> entry
7055 : mCompatModePackages.getPackages().entrySet()) {
7056 String pkg = entry.getKey();
7057 int mode = entry.getValue();
7058 if (dumpPackage != null && !dumpPackage.equals(pkg)) {
7059 continue;
7060 }
7061 if (!printed) {
7062 pw.println(" mScreenCompatPackages:");
7063 printed = true;
7064 }
7065 pw.println(" " + pkg + ": " + mode);
7066 }
7067 }
7068 }
7069
7070 if (dumpPackage == null) {
7071 pw.println(" mWakefulness="
7072 + PowerManagerInternal.wakefulnessToString(wakefulness));
Louis Chang149d5c82019-12-30 09:47:39 +08007073 pw.println(" mSleepTokens=" + mRootWindowContainer.mSleepTokens);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007074 if (mRunningVoice != null) {
7075 pw.println(" mRunningVoice=" + mRunningVoice);
7076 pw.println(" mVoiceWakeLock" + mVoiceWakeLock);
7077 }
7078 pw.println(" mSleeping=" + mSleeping);
7079 pw.println(" mShuttingDown=" + mShuttingDown + " mTestPssMode=" + testPssMode);
7080 pw.println(" mVrController=" + mVrController);
7081 }
7082 if (mCurAppTimeTracker != null) {
7083 mCurAppTimeTracker.dumpWithHeader(pw, " ", true);
7084 }
7085 if (mAllowAppSwitchUids.size() > 0) {
7086 boolean printed = false;
7087 for (int i = 0; i < mAllowAppSwitchUids.size(); i++) {
7088 ArrayMap<String, Integer> types = mAllowAppSwitchUids.valueAt(i);
7089 for (int j = 0; j < types.size(); j++) {
7090 if (dumpPackage == null ||
7091 UserHandle.getAppId(types.valueAt(j).intValue()) == dumpAppId) {
7092 if (needSep) {
7093 pw.println();
7094 needSep = false;
7095 }
7096 if (!printed) {
7097 pw.println(" mAllowAppSwitchUids:");
7098 printed = true;
7099 }
7100 pw.print(" User ");
7101 pw.print(mAllowAppSwitchUids.keyAt(i));
7102 pw.print(": Type ");
7103 pw.print(types.keyAt(j));
7104 pw.print(" = ");
7105 UserHandle.formatUid(pw, types.valueAt(j).intValue());
7106 pw.println();
7107 }
7108 }
7109 }
7110 }
7111 if (dumpPackage == null) {
7112 if (mController != null) {
7113 pw.println(" mController=" + mController
7114 + " mControllerIsAMonkey=" + mControllerIsAMonkey);
7115 }
Andrii Kulianc598b2d2019-02-07 17:16:38 -08007116 pw.println(" mGoingToSleepWakeLock=" + mStackSupervisor.mGoingToSleepWakeLock);
7117 pw.println(" mLaunchingActivityWakeLock="
7118 + mStackSupervisor.mLaunchingActivityWakeLock);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007119 }
7120
7121 return needSep;
7122 }
7123 }
7124
7125 @Override
sanryhuang498e77e2018-12-06 14:57:01 +08007126 public void writeProcessesToProto(ProtoOutputStream proto, String dumpPackage,
7127 int wakeFullness, boolean testPssMode) {
Wale Ogunwale31913b52018-10-13 08:29:31 -07007128 synchronized (mGlobalLock) {
7129 if (dumpPackage == null) {
Jeffrey Huangcb782852019-12-05 11:28:11 -08007130 getGlobalConfiguration().dumpDebug(proto, GLOBAL_CONFIGURATION);
Darryl L Johnson1e3885c2020-02-27 17:38:13 -08007131 final ActivityStack topFocusedStack = getTopDisplayFocusedStack();
7132 if (topFocusedStack != null) {
7133 proto.write(CONFIG_WILL_CHANGE, topFocusedStack.mConfigWillChange);
7134 }
sanryhuang498e77e2018-12-06 14:57:01 +08007135 writeSleepStateToProto(proto, wakeFullness, testPssMode);
7136 if (mRunningVoice != null) {
7137 final long vrToken = proto.start(
7138 ActivityManagerServiceDumpProcessesProto.RUNNING_VOICE);
7139 proto.write(ActivityManagerServiceDumpProcessesProto.Voice.SESSION,
7140 mRunningVoice.toString());
Jeffrey Huangcb782852019-12-05 11:28:11 -08007141 mVoiceWakeLock.dumpDebug(
sanryhuang498e77e2018-12-06 14:57:01 +08007142 proto, ActivityManagerServiceDumpProcessesProto.Voice.WAKELOCK);
7143 proto.end(vrToken);
7144 }
Jeffrey Huangcb782852019-12-05 11:28:11 -08007145 mVrController.dumpDebug(proto,
sanryhuang498e77e2018-12-06 14:57:01 +08007146 ActivityManagerServiceDumpProcessesProto.VR_CONTROLLER);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007147 if (mController != null) {
7148 final long token = proto.start(CONTROLLER);
Wally Yau0eb29f62020-01-08 10:16:43 -08007149 proto.write(ActivityManagerServiceDumpProcessesProto.Controller.CONTROLLER,
7150 mController.toString());
Wale Ogunwale31913b52018-10-13 08:29:31 -07007151 proto.write(IS_A_MONKEY, mControllerIsAMonkey);
7152 proto.end(token);
7153 }
Jeffrey Huangcb782852019-12-05 11:28:11 -08007154 mStackSupervisor.mGoingToSleepWakeLock.dumpDebug(proto, GOING_TO_SLEEP);
7155 mStackSupervisor.mLaunchingActivityWakeLock.dumpDebug(proto,
Andrii Kulianc598b2d2019-02-07 17:16:38 -08007156 LAUNCHING_ACTIVITY);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007157 }
7158
7159 if (mHomeProcess != null && (dumpPackage == null
7160 || mHomeProcess.mPkgList.contains(dumpPackage))) {
Jeffrey Huangcb782852019-12-05 11:28:11 -08007161 mHomeProcess.dumpDebug(proto, HOME_PROC);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007162 }
7163
7164 if (mPreviousProcess != null && (dumpPackage == null
7165 || mPreviousProcess.mPkgList.contains(dumpPackage))) {
Jeffrey Huangcb782852019-12-05 11:28:11 -08007166 mPreviousProcess.dumpDebug(proto, PREVIOUS_PROC);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007167 proto.write(PREVIOUS_PROC_VISIBLE_TIME_MS, mPreviousProcessVisibleTime);
7168 }
7169
7170 if (mHeavyWeightProcess != null && (dumpPackage == null
7171 || mHeavyWeightProcess.mPkgList.contains(dumpPackage))) {
Jeffrey Huangcb782852019-12-05 11:28:11 -08007172 mHeavyWeightProcess.dumpDebug(proto, HEAVY_WEIGHT_PROC);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007173 }
7174
7175 for (Map.Entry<String, Integer> entry
7176 : mCompatModePackages.getPackages().entrySet()) {
7177 String pkg = entry.getKey();
7178 int mode = entry.getValue();
7179 if (dumpPackage == null || dumpPackage.equals(pkg)) {
7180 long compatToken = proto.start(SCREEN_COMPAT_PACKAGES);
7181 proto.write(PACKAGE, pkg);
7182 proto.write(MODE, mode);
7183 proto.end(compatToken);
7184 }
7185 }
7186
7187 if (mCurAppTimeTracker != null) {
Jeffrey Huangcb782852019-12-05 11:28:11 -08007188 mCurAppTimeTracker.dumpDebug(proto, CURRENT_TRACKER, true);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007189 }
7190
7191 }
7192 }
7193
7194 @Override
7195 public boolean dumpActivity(FileDescriptor fd, PrintWriter pw, String name,
7196 String[] args, int opti, boolean dumpAll, boolean dumpVisibleStacksOnly,
7197 boolean dumpFocusedStackOnly) {
Riddle Hsud7cd8ed2019-07-16 18:19:01 +08007198 return ActivityTaskManagerService.this.dumpActivity(fd, pw, name, args, opti, dumpAll,
7199 dumpVisibleStacksOnly, dumpFocusedStackOnly);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007200 }
7201
7202 @Override
Wale Ogunwaled4d67d02018-10-25 18:09:39 -07007203 public void dumpForOom(PrintWriter pw) {
7204 synchronized (mGlobalLock) {
7205 pw.println(" mHomeProcess: " + mHomeProcess);
7206 pw.println(" mPreviousProcess: " + mPreviousProcess);
7207 if (mHeavyWeightProcess != null) {
7208 pw.println(" mHeavyWeightProcess: " + mHeavyWeightProcess);
7209 }
7210 }
7211 }
7212
7213 @Override
Wale Ogunwale31913b52018-10-13 08:29:31 -07007214 public boolean canGcNow() {
7215 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08007216 return isSleeping() || mRootWindowContainer.allResumedActivitiesIdle();
Wale Ogunwale31913b52018-10-13 08:29:31 -07007217 }
7218 }
7219
Riddle Hsua0536432019-02-16 00:38:59 +08007220 @HotPath(caller = HotPath.OOM_ADJUSTMENT)
Wale Ogunwale31913b52018-10-13 08:29:31 -07007221 @Override
7222 public WindowProcessController getTopApp() {
Riddle Hsud7088f82019-01-30 13:04:50 +08007223 synchronized (mGlobalLockWithoutBoost) {
Louis Chang149d5c82019-12-30 09:47:39 +08007224 if (mRootWindowContainer == null) {
7225 // Return null if mRootWindowContainer not yet initialize, while update
Louis Chang3ff72a82019-12-17 12:12:59 +08007226 // oomadj after AMS created.
7227 return null;
7228 }
Louis Chang149d5c82019-12-30 09:47:39 +08007229 final ActivityRecord top = mRootWindowContainer.getTopResumedActivity();
Wale Ogunwale31913b52018-10-13 08:29:31 -07007230 return top != null ? top.app : null;
7231 }
7232 }
7233
Riddle Hsua0536432019-02-16 00:38:59 +08007234 @HotPath(caller = HotPath.OOM_ADJUSTMENT)
Wale Ogunwale31913b52018-10-13 08:29:31 -07007235 @Override
7236 public void rankTaskLayersIfNeeded() {
Riddle Hsud7088f82019-01-30 13:04:50 +08007237 synchronized (mGlobalLockWithoutBoost) {
Louis Chang149d5c82019-12-30 09:47:39 +08007238 if (mRootWindowContainer != null) {
7239 mRootWindowContainer.rankTaskLayersIfNeeded();
Wale Ogunwale31913b52018-10-13 08:29:31 -07007240 }
7241 }
7242 }
7243
7244 @Override
7245 public void scheduleDestroyAllActivities(String reason) {
7246 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08007247 mRootWindowContainer.scheduleDestroyAllActivities(reason);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007248 }
7249 }
7250
7251 @Override
7252 public void removeUser(int userId) {
7253 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08007254 mRootWindowContainer.removeUser(userId);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007255 }
7256 }
7257
7258 @Override
7259 public boolean switchUser(int userId, UserState userState) {
7260 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08007261 return mRootWindowContainer.switchUser(userId, userState);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007262 }
7263 }
7264
7265 @Override
7266 public void onHandleAppCrash(WindowProcessController wpc) {
7267 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08007268 mRootWindowContainer.handleAppCrash(wpc);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007269 }
7270 }
Wale Ogunwale64258362018-10-16 15:13:37 -07007271
7272 @Override
7273 public int finishTopCrashedActivities(WindowProcessController crashedApp, String reason) {
7274 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08007275 return mRootWindowContainer.finishTopCrashedActivities(crashedApp, reason);
Wale Ogunwale64258362018-10-16 15:13:37 -07007276 }
7277 }
Wale Ogunwalebff2df42018-10-18 17:09:19 -07007278
Riddle Hsua0536432019-02-16 00:38:59 +08007279 @HotPath(caller = HotPath.OOM_ADJUSTMENT)
Wale Ogunwalebff2df42018-10-18 17:09:19 -07007280 @Override
7281 public void onUidActive(int uid, int procState) {
Riddle Hsua0536432019-02-16 00:38:59 +08007282 mActiveUids.onUidActive(uid, procState);
Wale Ogunwalebff2df42018-10-18 17:09:19 -07007283 }
7284
Riddle Hsua0536432019-02-16 00:38:59 +08007285 @HotPath(caller = HotPath.OOM_ADJUSTMENT)
Wale Ogunwalebff2df42018-10-18 17:09:19 -07007286 @Override
7287 public void onUidInactive(int uid) {
Riddle Hsua0536432019-02-16 00:38:59 +08007288 mActiveUids.onUidInactive(uid);
Wale Ogunwalebff2df42018-10-18 17:09:19 -07007289 }
7290
Riddle Hsua0536432019-02-16 00:38:59 +08007291 @HotPath(caller = HotPath.OOM_ADJUSTMENT)
Wale Ogunwalebff2df42018-10-18 17:09:19 -07007292 @Override
7293 public void onActiveUidsCleared() {
Riddle Hsua0536432019-02-16 00:38:59 +08007294 mActiveUids.onActiveUidsCleared();
Wale Ogunwalebff2df42018-10-18 17:09:19 -07007295 }
7296
Riddle Hsua0536432019-02-16 00:38:59 +08007297 @HotPath(caller = HotPath.OOM_ADJUSTMENT)
Wale Ogunwalebff2df42018-10-18 17:09:19 -07007298 @Override
7299 public void onUidProcStateChanged(int uid, int procState) {
Riddle Hsua0536432019-02-16 00:38:59 +08007300 mActiveUids.onUidProcStateChanged(uid, procState);
Wale Ogunwalebff2df42018-10-18 17:09:19 -07007301 }
Wale Ogunwale9de19442018-10-18 19:05:03 -07007302
7303 @Override
7304 public void onUidAddedToPendingTempWhitelist(int uid, String tag) {
Riddle Hsud7088f82019-01-30 13:04:50 +08007305 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale9de19442018-10-18 19:05:03 -07007306 mPendingTempWhitelist.put(uid, tag);
7307 }
7308 }
7309
7310 @Override
7311 public void onUidRemovedFromPendingTempWhitelist(int uid) {
Riddle Hsud7088f82019-01-30 13:04:50 +08007312 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale9de19442018-10-18 19:05:03 -07007313 mPendingTempWhitelist.remove(uid);
7314 }
7315 }
Wale Ogunwalee2172292018-10-25 10:11:10 -07007316
7317 @Override
7318 public boolean handleAppCrashInActivityController(String processName, int pid,
7319 String shortMsg, String longMsg, long timeMillis, String stackTrace,
7320 Runnable killCrashingAppCallback) {
7321 synchronized (mGlobalLock) {
7322 if (mController == null) {
7323 return false;
7324 }
7325
7326 try {
7327 if (!mController.appCrashed(processName, pid, shortMsg, longMsg, timeMillis,
7328 stackTrace)) {
7329 killCrashingAppCallback.run();
7330 return true;
7331 }
7332 } catch (RemoteException e) {
7333 mController = null;
7334 Watchdog.getInstance().setActivityController(null);
7335 }
7336 return false;
7337 }
7338 }
Wale Ogunwaled7889f52018-10-25 11:03:20 -07007339
7340 @Override
7341 public void removeRecentTasksByPackageName(String packageName, int userId) {
7342 synchronized (mGlobalLock) {
7343 mRecentTasks.removeTasksByPackageName(packageName, userId);
7344 }
7345 }
7346
7347 @Override
7348 public void cleanupRecentTasksForUser(int userId) {
7349 synchronized (mGlobalLock) {
7350 mRecentTasks.cleanupLocked(userId);
7351 }
7352 }
7353
7354 @Override
7355 public void loadRecentTasksForUser(int userId) {
7356 synchronized (mGlobalLock) {
7357 mRecentTasks.loadUserRecentsLocked(userId);
7358 }
7359 }
7360
7361 @Override
7362 public void onPackagesSuspendedChanged(String[] packages, boolean suspended, int userId) {
7363 synchronized (mGlobalLock) {
7364 mRecentTasks.onPackagesSuspendedChanged(packages, suspended, userId);
7365 }
7366 }
7367
7368 @Override
7369 public void flushRecentTasks() {
7370 mRecentTasks.flush();
7371 }
Wale Ogunwaled4d67d02018-10-25 18:09:39 -07007372
7373 @Override
7374 public WindowProcessController getHomeProcess() {
7375 synchronized (mGlobalLock) {
7376 return mHomeProcess;
7377 }
7378 }
7379
7380 @Override
7381 public WindowProcessController getPreviousProcess() {
7382 synchronized (mGlobalLock) {
7383 return mPreviousProcess;
7384 }
7385 }
Wale Ogunwale27c48ae2018-10-25 19:01:01 -07007386
7387 @Override
7388 public void clearLockedTasks(String reason) {
7389 synchronized (mGlobalLock) {
7390 getLockTaskController().clearLockedTasks(reason);
7391 }
7392 }
7393
7394 @Override
7395 public void updateUserConfiguration() {
7396 synchronized (mGlobalLock) {
7397 final Configuration configuration = new Configuration(getGlobalConfiguration());
7398 final int currentUserId = mAmInternal.getCurrentUserId();
7399 Settings.System.adjustConfigurationForUser(mContext.getContentResolver(),
7400 configuration, currentUserId, Settings.System.canWrite(mContext));
7401 updateConfigurationLocked(configuration, null /* starting */,
7402 false /* initLocale */, false /* persistent */, currentUserId,
7403 false /* deferResume */);
7404 }
7405 }
Wale Ogunwale387b34c2018-10-25 19:59:40 -07007406
7407 @Override
7408 public boolean canShowErrorDialogs() {
7409 synchronized (mGlobalLock) {
7410 return mShowDialogs && !mSleeping && !mShuttingDown
7411 && !mKeyguardController.isKeyguardOrAodShowing(DEFAULT_DISPLAY)
7412 && !hasUserRestriction(UserManager.DISALLOW_SYSTEM_ERROR_DIALOGS,
7413 mAmInternal.getCurrentUserId())
7414 && !(UserManager.isDeviceInDemoMode(mContext)
7415 && mAmInternal.getCurrentUser().isDemo());
7416 }
7417 }
Wale Ogunwale1f5e53d2018-11-05 05:12:46 -08007418
7419 @Override
7420 public void setProfileApp(String profileApp) {
7421 synchronized (mGlobalLock) {
7422 mProfileApp = profileApp;
7423 }
7424 }
7425
7426 @Override
7427 public void setProfileProc(WindowProcessController wpc) {
7428 synchronized (mGlobalLock) {
7429 mProfileProc = wpc;
7430 }
7431 }
7432
7433 @Override
7434 public void setProfilerInfo(ProfilerInfo profilerInfo) {
7435 synchronized (mGlobalLock) {
7436 mProfilerInfo = profilerInfo;
7437 }
7438 }
Igor Murashkinc0b47e42018-11-07 15:54:18 -08007439
7440 @Override
7441 public ActivityMetricsLaunchObserverRegistry getLaunchObserverRegistry() {
7442 synchronized (mGlobalLock) {
7443 return mStackSupervisor.getActivityMetricsLogger().getLaunchObserverRegistry();
7444 }
7445 }
Winson Chung3fb0f252019-01-08 17:41:55 -08007446
7447 @Override
Zak Cohen84b43182020-03-09 14:36:01 -07007448 public ActivityManager.TaskSnapshot getTaskSnapshotBlocking(
7449 int taskId, boolean isLowResolution) {
Peter Kalauskas4dc04602020-02-12 18:49:03 -08007450 return ActivityTaskManagerService.this.getTaskSnapshot(taskId, isLowResolution,
Zak Cohen84b43182020-03-09 14:36:01 -07007451 true /* restoreFromDisk */);
Winson Chung3fb0f252019-01-08 17:41:55 -08007452 }
Michal Karpinskicc88d7e2019-01-24 15:32:12 +00007453
7454 @Override
7455 public boolean isUidForeground(int uid) {
7456 synchronized (mGlobalLock) {
7457 return ActivityTaskManagerService.this.isUidForeground(uid);
7458 }
7459 }
Michal Karpinski4026cae2019-02-12 11:51:47 +00007460
7461 @Override
Ricky Wai96f5c352019-04-10 18:40:17 +01007462 public void setDeviceOwnerUid(int uid) {
Michal Karpinski4026cae2019-02-12 11:51:47 +00007463 synchronized (mGlobalLock) {
Ricky Wai96f5c352019-04-10 18:40:17 +01007464 ActivityTaskManagerService.this.setDeviceOwnerUid(uid);
Michal Karpinski4026cae2019-02-12 11:51:47 +00007465 }
7466 }
Ricky Wai2452e2d2019-03-18 19:19:08 +00007467
7468 @Override
7469 public void setCompanionAppPackages(int userId, Set<String> companionAppPackages) {
Michal Karpinskida34cd42019-04-02 19:46:52 +01007470 // Translate package names into UIDs
7471 final Set<Integer> result = new HashSet<>();
Ricky Wai2452e2d2019-03-18 19:19:08 +00007472 for (String pkg : companionAppPackages) {
Michal Karpinskida34cd42019-04-02 19:46:52 +01007473 final int uid = getPackageManagerInternalLocked().getPackageUid(pkg, 0, userId);
7474 if (uid >= 0) {
7475 result.add(uid);
7476 }
Ricky Wai2452e2d2019-03-18 19:19:08 +00007477 }
7478 synchronized (mGlobalLock) {
Michal Karpinskida34cd42019-04-02 19:46:52 +01007479 mCompanionAppUidsMap.put(userId, result);
Ricky Wai2452e2d2019-03-18 19:19:08 +00007480 }
7481 }
Wale Ogunwale6767eae2018-05-03 15:52:51 -07007482 }
Wale Ogunwaleb73f3962018-11-20 07:58:22 -08007483}